diff --git a/grammar.js b/grammar.js index 4c9e7cd..0b809a6 100644 --- a/grammar.js +++ b/grammar.js @@ -706,7 +706,7 @@ module.exports = grammar({ ), procedure_statement: $ => seq( - $._procedure_kind, + $.procedure_kind, optional(seq( '(', alias($.identifier, $.procedure_interface), ')' )), @@ -728,7 +728,7 @@ module.exports = grammar({ ), method_name: $ => alias($.identifier, 'method_name'), - _procedure_kind: $ => choice( + procedure_kind: $ => choice( caseInsensitive('generic'), caseInsensitive('initial'), caseInsensitive('procedure'), diff --git a/src/grammar.json b/src/grammar.json index d0f6434..d1a347c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -10662,7 +10662,7 @@ "members": [ { "type": "SYMBOL", - "name": "_procedure_kind" + "name": "procedure_kind" }, { "type": "CHOICE", @@ -10844,7 +10844,7 @@ "named": false, "value": "method_name" }, - "_procedure_kind": { + "procedure_kind": { "type": "CHOICE", "members": [ { diff --git a/src/node-types.json b/src/node-types.json index ebaca65..57d783e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -9727,6 +9727,11 @@ "named": true, "fields": {} }, + { + "type": "procedure_kind", + "named": true, + "fields": {} + }, { "type": "procedure_qualifier", "named": true, @@ -9753,7 +9758,7 @@ }, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "procedure_attribute", @@ -9762,6 +9767,10 @@ { "type": "procedure_interface", "named": true + }, + { + "type": "procedure_kind", + "named": true } ] } @@ -13357,11 +13366,11 @@ }, { "type": "none", - "named": false + "named": true }, { "type": "none", - "named": true + "named": false }, { "type": "nopass", diff --git a/src/parser.c b/src/parser.c index bf15038..2674227 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,7 +13,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8411 +#define STATE_COUNT 8412 #define LARGE_STATE_COUNT 3289 #define SYMBOL_COUNT 612 #define ALIAS_COUNT 25 @@ -119,10 +119,10 @@ enum ts_symbol_identifiers { aux_sym_abstract_specifier_token1 = 93, aux_sym_base_type_specifier_token1 = 94, aux_sym_end_type_statement_token1 = 95, - aux_sym__procedure_kind_token1 = 96, - aux_sym__procedure_kind_token2 = 97, - aux_sym__procedure_kind_token3 = 98, - aux_sym__procedure_kind_token4 = 99, + aux_sym_procedure_kind_token1 = 96, + aux_sym_procedure_kind_token2 = 97, + aux_sym_procedure_kind_token3 = 98, + aux_sym_procedure_kind_token4 = 99, aux_sym_procedure_attribute_token1 = 100, aux_sym_procedure_attribute_token2 = 101, aux_sym_procedure_attribute_token3 = 102, @@ -422,7 +422,7 @@ enum ts_symbol_identifiers { sym_binding_declarator = 396, sym_binding_name = 397, sym_method_name = 398, - sym__procedure_kind = 399, + sym_procedure_kind = 399, sym_procedure_attribute = 400, sym_variable_declaration = 401, sym_procedure_declaration = 402, @@ -759,10 +759,10 @@ static const char * const ts_symbol_names[] = { [aux_sym_abstract_specifier_token1] = "abstract", [aux_sym_base_type_specifier_token1] = "extends", [aux_sym_end_type_statement_token1] = "endtype", - [aux_sym__procedure_kind_token1] = "generic", - [aux_sym__procedure_kind_token2] = "initial", - [aux_sym__procedure_kind_token3] = "property", - [aux_sym__procedure_kind_token4] = "final", + [aux_sym_procedure_kind_token1] = "generic", + [aux_sym_procedure_kind_token2] = "initial", + [aux_sym_procedure_kind_token3] = "property", + [aux_sym_procedure_kind_token4] = "final", [aux_sym_procedure_attribute_token1] = "deferred", [aux_sym_procedure_attribute_token2] = "pass", [aux_sym_procedure_attribute_token3] = "nopass", @@ -1062,7 +1062,7 @@ static const char * const ts_symbol_names[] = { [sym_binding_declarator] = "binding_declarator", [sym_binding_name] = "binding_name", [sym_method_name] = "method_name", - [sym__procedure_kind] = "_procedure_kind", + [sym_procedure_kind] = "procedure_kind", [sym_procedure_attribute] = "procedure_attribute", [sym_variable_declaration] = "variable_declaration", [sym_procedure_declaration] = "procedure", @@ -1399,10 +1399,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_abstract_specifier_token1] = aux_sym_abstract_specifier_token1, [aux_sym_base_type_specifier_token1] = aux_sym_base_type_specifier_token1, [aux_sym_end_type_statement_token1] = aux_sym_end_type_statement_token1, - [aux_sym__procedure_kind_token1] = aux_sym__procedure_kind_token1, - [aux_sym__procedure_kind_token2] = aux_sym__procedure_kind_token2, - [aux_sym__procedure_kind_token3] = aux_sym__procedure_kind_token3, - [aux_sym__procedure_kind_token4] = aux_sym__procedure_kind_token4, + [aux_sym_procedure_kind_token1] = aux_sym_procedure_kind_token1, + [aux_sym_procedure_kind_token2] = aux_sym_procedure_kind_token2, + [aux_sym_procedure_kind_token3] = aux_sym_procedure_kind_token3, + [aux_sym_procedure_kind_token4] = aux_sym_procedure_kind_token4, [aux_sym_procedure_attribute_token1] = aux_sym_procedure_attribute_token1, [aux_sym_procedure_attribute_token2] = aux_sym_procedure_attribute_token2, [aux_sym_procedure_attribute_token3] = aux_sym_procedure_attribute_token3, @@ -1702,7 +1702,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_binding_declarator] = sym_binding_declarator, [sym_binding_name] = sym_binding_name, [sym_method_name] = sym_method_name, - [sym__procedure_kind] = sym__procedure_kind, + [sym_procedure_kind] = sym_procedure_kind, [sym_procedure_attribute] = sym_procedure_attribute, [sym_variable_declaration] = sym_variable_declaration, [sym_procedure_declaration] = sym_procedure_declaration, @@ -2327,19 +2327,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym__procedure_kind_token1] = { + [aux_sym_procedure_kind_token1] = { .visible = true, .named = false, }, - [aux_sym__procedure_kind_token2] = { + [aux_sym_procedure_kind_token2] = { .visible = true, .named = false, }, - [aux_sym__procedure_kind_token3] = { + [aux_sym_procedure_kind_token3] = { .visible = true, .named = false, }, - [aux_sym__procedure_kind_token4] = { + [aux_sym_procedure_kind_token4] = { .visible = true, .named = false, }, @@ -3539,8 +3539,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__procedure_kind] = { - .visible = false, + [sym_procedure_kind] = { + .visible = true, .named = true, }, [sym_procedure_attribute] = { @@ -5399,8 +5399,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 4, + [3] = 3, + [4] = 2, [5] = 2, [6] = 2, [7] = 2, @@ -5408,40 +5408,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [9] = 9, [10] = 10, [11] = 11, - [12] = 8, - [13] = 10, + [12] = 9, + [13] = 13, [14] = 14, - [15] = 14, + [15] = 9, [16] = 14, [17] = 8, - [18] = 10, - [19] = 14, - [20] = 8, - [21] = 10, - [22] = 22, + [18] = 8, + [19] = 9, + [20] = 14, + [21] = 14, + [22] = 9, [23] = 14, [24] = 8, - [25] = 10, + [25] = 8, [26] = 26, [27] = 27, [28] = 28, [29] = 29, [30] = 30, - [31] = 31, + [31] = 27, [32] = 32, - [33] = 27, + [33] = 33, [34] = 34, - [35] = 29, - [36] = 32, - [37] = 28, - [38] = 28, - [39] = 39, - [40] = 40, - [41] = 41, - [42] = 32, - [43] = 27, - [44] = 44, - [45] = 29, + [35] = 35, + [36] = 28, + [37] = 29, + [38] = 38, + [39] = 27, + [40] = 32, + [41] = 29, + [42] = 42, + [43] = 43, + [44] = 28, + [45] = 32, [46] = 46, [47] = 47, [48] = 48, @@ -5449,8 +5449,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [50] = 50, [51] = 46, [52] = 52, - [53] = 53, - [54] = 46, + [53] = 46, + [54] = 54, [55] = 55, [56] = 56, [57] = 56, @@ -5464,10 +5464,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [65] = 65, [66] = 66, [67] = 60, - [68] = 61, - [69] = 61, + [68] = 62, + [69] = 65, [70] = 62, - [71] = 62, + [71] = 65, [72] = 72, [73] = 73, [74] = 74, @@ -5478,120 +5478,120 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [79] = 79, [80] = 80, [81] = 81, - [82] = 81, - [83] = 81, - [84] = 81, + [82] = 80, + [83] = 80, + [84] = 80, [85] = 85, [86] = 86, [87] = 87, [88] = 88, - [89] = 86, - [90] = 87, - [91] = 86, - [92] = 87, + [89] = 87, + [90] = 88, + [91] = 87, + [92] = 88, [93] = 93, [94] = 85, - [95] = 88, + [95] = 86, [96] = 96, - [97] = 86, + [97] = 87, [98] = 98, - [99] = 99, - [100] = 96, - [101] = 93, + [99] = 96, + [100] = 100, + [101] = 101, [102] = 93, [103] = 98, [104] = 85, [105] = 105, - [106] = 106, - [107] = 88, + [106] = 86, + [107] = 107, [108] = 98, [109] = 96, - [110] = 87, - [111] = 111, - [112] = 93, - [113] = 85, - [114] = 88, - [115] = 115, - [116] = 98, - [117] = 96, - [118] = 118, + [110] = 88, + [111] = 93, + [112] = 112, + [113] = 93, + [114] = 85, + [115] = 86, + [116] = 116, + [117] = 98, + [118] = 96, [119] = 119, [120] = 120, [121] = 121, [122] = 122, [123] = 123, [124] = 124, - [125] = 125, - [126] = 120, - [127] = 121, - [128] = 120, - [129] = 121, - [130] = 123, - [131] = 122, - [132] = 124, - [133] = 125, - [134] = 120, - [135] = 120, + [125] = 121, + [126] = 124, + [127] = 120, + [128] = 128, + [129] = 120, + [130] = 120, + [131] = 128, + [132] = 122, + [133] = 128, + [134] = 123, + [135] = 121, [136] = 121, [137] = 124, - [138] = 121, - [139] = 124, - [140] = 122, - [141] = 123, - [142] = 125, - [143] = 124, - [144] = 123, + [138] = 120, + [139] = 128, + [140] = 124, + [141] = 121, + [142] = 122, + [143] = 123, + [144] = 122, [145] = 124, - [146] = 125, - [147] = 120, - [148] = 121, - [149] = 125, - [150] = 123, - [151] = 122, - [152] = 124, - [153] = 125, + [146] = 121, + [147] = 124, + [148] = 120, + [149] = 128, + [150] = 122, + [151] = 123, + [152] = 121, + [153] = 124, [154] = 120, - [155] = 121, - [156] = 123, - [157] = 122, - [158] = 124, - [159] = 125, + [155] = 128, + [156] = 122, + [157] = 123, + [158] = 121, + [159] = 124, [160] = 120, - [161] = 121, - [162] = 123, - [163] = 122, - [164] = 124, - [165] = 125, + [161] = 128, + [162] = 122, + [163] = 123, + [164] = 121, + [165] = 124, [166] = 120, - [167] = 121, - [168] = 123, - [169] = 122, - [170] = 124, - [171] = 125, + [167] = 128, + [168] = 122, + [169] = 123, + [170] = 121, + [171] = 124, [172] = 120, - [173] = 121, - [174] = 124, - [175] = 125, - [176] = 125, + [173] = 128, + [174] = 121, + [175] = 124, + [176] = 128, [177] = 121, [178] = 124, - [179] = 125, - [180] = 120, + [179] = 120, + [180] = 128, [181] = 121, [182] = 124, - [183] = 125, - [184] = 120, - [185] = 121, - [186] = 120, - [187] = 122, + [183] = 120, + [184] = 128, + [185] = 120, + [186] = 128, + [187] = 123, [188] = 188, - [189] = 188, + [189] = 189, [190] = 190, - [191] = 191, - [192] = 188, - [193] = 191, - [194] = 191, - [195] = 190, + [191] = 189, + [192] = 189, + [193] = 188, + [194] = 190, + [195] = 188, [196] = 190, [197] = 197, [198] = 198, @@ -5607,79 +5607,79 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [208] = 208, [209] = 209, [210] = 210, - [211] = 209, + [211] = 211, [212] = 212, [213] = 213, - [214] = 214, + [214] = 211, [215] = 215, - [216] = 216, - [217] = 212, - [218] = 210, - [219] = 214, - [220] = 212, - [221] = 210, - [222] = 222, - [223] = 209, - [224] = 214, + [216] = 212, + [217] = 217, + [218] = 215, + [219] = 210, + [220] = 211, + [221] = 221, + [222] = 212, + [223] = 215, + [224] = 210, [225] = 225, [226] = 226, [227] = 227, [228] = 228, - [229] = 229, - [230] = 229, + [229] = 228, + [230] = 227, [231] = 231, - [232] = 225, + [232] = 232, [233] = 233, - [234] = 226, - [235] = 225, - [236] = 229, - [237] = 231, - [238] = 226, + [234] = 232, + [235] = 231, + [236] = 228, + [237] = 227, + [238] = 232, [239] = 231, [240] = 240, [241] = 241, - [242] = 242, - [243] = 242, - [244] = 242, + [242] = 241, + [243] = 241, + [244] = 244, [245] = 245, [246] = 246, [247] = 247, [248] = 248, [249] = 249, - [250] = 245, - [251] = 246, - [252] = 252, + [250] = 250, + [251] = 247, + [252] = 248, [253] = 253, - [254] = 254, + [254] = 245, [255] = 255, - [256] = 249, + [256] = 256, [257] = 257, - [258] = 245, - [259] = 253, - [260] = 260, + [258] = 258, + [259] = 247, + [260] = 248, [261] = 261, - [262] = 260, - [263] = 263, - [264] = 255, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 269, + [262] = 255, + [263] = 256, + [264] = 264, + [265] = 261, + [266] = 255, + [267] = 256, + [268] = 264, + [269] = 264, [270] = 270, [271] = 271, - [272] = 246, - [273] = 252, - [274] = 255, + [272] = 272, + [273] = 261, + [274] = 274, [275] = 275, - [276] = 249, + [276] = 276, [277] = 277, - [278] = 253, - [279] = 260, - [280] = 252, + [278] = 278, + [279] = 279, + [280] = 245, [281] = 281, [282] = 281, - [283] = 281, + [283] = 283, [284] = 281, [285] = 281, [286] = 281, @@ -5689,7 +5689,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [290] = 281, [291] = 281, [292] = 281, - [293] = 293, + [293] = 281, [294] = 281, [295] = 281, [296] = 281, @@ -5704,240 +5704,240 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [305] = 305, [306] = 306, [307] = 307, - [308] = 308, + [308] = 306, [309] = 309, [310] = 310, - [311] = 311, + [311] = 303, [312] = 312, - [313] = 313, + [313] = 301, [314] = 314, [315] = 315, [316] = 316, [317] = 317, - [318] = 318, - [319] = 308, - [320] = 318, - [321] = 308, - [322] = 318, - [323] = 308, - [324] = 301, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, + [318] = 310, + [319] = 317, + [320] = 320, + [321] = 321, + [322] = 303, + [323] = 323, + [324] = 304, + [325] = 305, + [326] = 306, + [327] = 307, + [328] = 309, + [329] = 310, [330] = 330, [331] = 331, - [332] = 302, - [333] = 333, - [334] = 325, - [335] = 326, - [336] = 327, - [337] = 304, - [338] = 328, - [339] = 301, - [340] = 325, - [341] = 326, - [342] = 327, - [343] = 329, - [344] = 328, - [345] = 329, - [346] = 330, - [347] = 331, - [348] = 302, - [349] = 333, - [350] = 304, - [351] = 301, - [352] = 325, - [353] = 326, - [354] = 327, - [355] = 328, - [356] = 329, - [357] = 330, - [358] = 331, - [359] = 302, - [360] = 333, - [361] = 304, - [362] = 325, - [363] = 326, - [364] = 327, - [365] = 330, - [366] = 331, - [367] = 302, - [368] = 304, - [369] = 325, - [370] = 326, - [371] = 327, - [372] = 330, - [373] = 331, - [374] = 302, - [375] = 304, - [376] = 330, - [377] = 325, - [378] = 326, - [379] = 327, - [380] = 331, - [381] = 330, - [382] = 331, - [383] = 302, - [384] = 304, - [385] = 302, - [386] = 325, - [387] = 326, - [388] = 327, - [389] = 330, - [390] = 331, - [391] = 302, - [392] = 304, - [393] = 318, - [394] = 325, - [395] = 326, - [396] = 327, - [397] = 330, - [398] = 331, - [399] = 302, - [400] = 304, - [401] = 325, - [402] = 326, - [403] = 327, - [404] = 330, - [405] = 331, - [406] = 302, - [407] = 304, - [408] = 333, - [409] = 325, - [410] = 326, - [411] = 327, - [412] = 330, - [413] = 331, - [414] = 302, - [415] = 304, - [416] = 325, - [417] = 326, - [418] = 327, - [419] = 330, - [420] = 331, - [421] = 302, - [422] = 304, - [423] = 423, - [424] = 325, - [425] = 326, - [426] = 327, - [427] = 330, - [428] = 331, - [429] = 302, - [430] = 304, - [431] = 325, - [432] = 326, - [433] = 327, - [434] = 330, - [435] = 331, - [436] = 302, - [437] = 304, - [438] = 325, - [439] = 326, - [440] = 327, - [441] = 330, - [442] = 331, - [443] = 302, - [444] = 304, - [445] = 325, - [446] = 326, - [447] = 327, - [448] = 330, - [449] = 331, - [450] = 302, - [451] = 304, - [452] = 325, - [453] = 326, - [454] = 327, - [455] = 330, - [456] = 331, - [457] = 302, - [458] = 304, - [459] = 325, - [460] = 326, - [461] = 327, - [462] = 330, - [463] = 331, - [464] = 302, - [465] = 304, - [466] = 325, - [467] = 326, - [468] = 327, - [469] = 330, - [470] = 331, - [471] = 304, + [332] = 301, + [333] = 314, + [334] = 315, + [335] = 316, + [336] = 317, + [337] = 337, + [338] = 303, + [339] = 305, + [340] = 306, + [341] = 307, + [342] = 309, + [343] = 310, + [344] = 301, + [345] = 314, + [346] = 315, + [347] = 316, + [348] = 317, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 305, + [355] = 306, + [356] = 307, + [357] = 301, + [358] = 314, + [359] = 315, + [360] = 317, + [361] = 301, + [362] = 305, + [363] = 306, + [364] = 307, + [365] = 314, + [366] = 315, + [367] = 317, + [368] = 368, + [369] = 314, + [370] = 315, + [371] = 371, + [372] = 305, + [373] = 306, + [374] = 307, + [375] = 301, + [376] = 314, + [377] = 315, + [378] = 317, + [379] = 305, + [380] = 306, + [381] = 307, + [382] = 301, + [383] = 314, + [384] = 315, + [385] = 317, + [386] = 368, + [387] = 304, + [388] = 307, + [389] = 305, + [390] = 306, + [391] = 307, + [392] = 301, + [393] = 368, + [394] = 315, + [395] = 317, + [396] = 304, + [397] = 305, + [398] = 306, + [399] = 307, + [400] = 301, + [401] = 314, + [402] = 315, + [403] = 317, + [404] = 305, + [405] = 306, + [406] = 307, + [407] = 301, + [408] = 314, + [409] = 315, + [410] = 317, + [411] = 305, + [412] = 368, + [413] = 305, + [414] = 306, + [415] = 307, + [416] = 301, + [417] = 314, + [418] = 315, + [419] = 317, + [420] = 305, + [421] = 306, + [422] = 307, + [423] = 301, + [424] = 314, + [425] = 315, + [426] = 317, + [427] = 316, + [428] = 305, + [429] = 306, + [430] = 307, + [431] = 301, + [432] = 314, + [433] = 315, + [434] = 317, + [435] = 305, + [436] = 306, + [437] = 307, + [438] = 301, + [439] = 314, + [440] = 315, + [441] = 317, + [442] = 309, + [443] = 305, + [444] = 306, + [445] = 307, + [446] = 301, + [447] = 314, + [448] = 315, + [449] = 317, + [450] = 305, + [451] = 306, + [452] = 307, + [453] = 301, + [454] = 314, + [455] = 315, + [456] = 317, + [457] = 305, + [458] = 306, + [459] = 307, + [460] = 301, + [461] = 314, + [462] = 315, + [463] = 317, + [464] = 305, + [465] = 306, + [466] = 307, + [467] = 301, + [468] = 314, + [469] = 315, + [470] = 317, + [471] = 314, [472] = 472, - [473] = 472, - [474] = 472, - [475] = 475, + [473] = 473, + [474] = 474, + [475] = 472, [476] = 476, - [477] = 477, + [477] = 473, [478] = 478, - [479] = 476, - [480] = 475, + [479] = 473, + [480] = 476, [481] = 481, - [482] = 472, - [483] = 477, - [484] = 478, - [485] = 476, - [486] = 475, + [482] = 473, + [483] = 474, + [484] = 474, + [485] = 478, + [486] = 476, [487] = 481, [488] = 472, - [489] = 477, - [490] = 478, - [491] = 476, - [492] = 481, - [493] = 475, - [494] = 481, - [495] = 472, - [496] = 477, - [497] = 478, - [498] = 476, - [499] = 475, - [500] = 481, - [501] = 472, - [502] = 477, - [503] = 478, - [504] = 478, - [505] = 476, - [506] = 475, - [507] = 481, - [508] = 477, - [509] = 477, - [510] = 478, - [511] = 475, - [512] = 481, - [513] = 472, - [514] = 477, - [515] = 478, - [516] = 476, - [517] = 475, - [518] = 481, - [519] = 472, - [520] = 477, - [521] = 475, - [522] = 481, - [523] = 472, - [524] = 477, - [525] = 525, - [526] = 475, - [527] = 475, - [528] = 481, - [529] = 472, - [530] = 477, - [531] = 481, + [489] = 473, + [490] = 474, + [491] = 478, + [492] = 478, + [493] = 472, + [494] = 473, + [495] = 476, + [496] = 481, + [497] = 472, + [498] = 473, + [499] = 474, + [500] = 478, + [501] = 481, + [502] = 472, + [503] = 473, + [504] = 474, + [505] = 472, + [506] = 481, + [507] = 472, + [508] = 473, + [509] = 474, + [510] = 476, + [511] = 481, + [512] = 472, + [513] = 473, + [514] = 474, + [515] = 515, + [516] = 481, + [517] = 472, + [518] = 473, + [519] = 474, + [520] = 481, + [521] = 472, + [522] = 476, + [523] = 478, + [524] = 478, + [525] = 476, + [526] = 481, + [527] = 481, + [528] = 472, + [529] = 473, + [530] = 474, + [531] = 474, [532] = 472, - [533] = 477, - [534] = 475, + [533] = 473, + [534] = 474, [535] = 481, - [536] = 472, - [537] = 477, - [538] = 475, + [536] = 481, + [537] = 478, + [538] = 476, [539] = 481, - [540] = 476, - [541] = 525, + [540] = 474, + [541] = 541, [542] = 542, [543] = 543, [544] = 544, @@ -5945,7 +5945,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [546] = 546, [547] = 547, [548] = 548, - [549] = 525, + [549] = 549, [550] = 550, [551] = 551, [552] = 552, @@ -5960,63 +5960,63 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [561] = 561, [562] = 562, [563] = 563, - [564] = 564, - [565] = 565, + [564] = 515, + [565] = 515, [566] = 566, [567] = 567, [568] = 568, - [569] = 569, + [569] = 562, [570] = 570, [571] = 571, - [572] = 572, - [573] = 571, - [574] = 572, - [575] = 570, + [572] = 542, + [573] = 541, + [574] = 546, + [575] = 549, [576] = 576, [577] = 577, [578] = 578, - [579] = 572, - [580] = 562, - [581] = 571, - [582] = 582, - [583] = 564, - [584] = 560, + [579] = 579, + [580] = 556, + [581] = 581, + [582] = 557, + [583] = 583, + [584] = 584, [585] = 585, - [586] = 586, + [586] = 547, [587] = 587, - [588] = 563, - [589] = 589, + [588] = 588, + [589] = 555, [590] = 590, - [591] = 591, + [591] = 558, [592] = 592, - [593] = 554, - [594] = 555, - [595] = 595, - [596] = 596, - [597] = 597, + [593] = 593, + [594] = 581, + [595] = 566, + [596] = 553, + [597] = 581, [598] = 598, - [599] = 547, - [600] = 548, - [601] = 552, - [602] = 557, - [603] = 558, - [604] = 559, + [599] = 567, + [600] = 544, + [601] = 561, + [602] = 602, + [603] = 578, + [604] = 604, [605] = 605, [606] = 606, [607] = 607, - [608] = 567, - [609] = 568, - [610] = 542, - [611] = 543, - [612] = 544, - [613] = 545, - [614] = 614, - [615] = 550, - [616] = 551, - [617] = 617, - [618] = 618, - [619] = 525, - [620] = 570, + [608] = 608, + [609] = 560, + [610] = 552, + [611] = 568, + [612] = 515, + [613] = 613, + [614] = 548, + [615] = 545, + [616] = 578, + [617] = 570, + [618] = 570, + [619] = 619, + [620] = 620, [621] = 621, [622] = 622, [623] = 623, @@ -6024,139 +6024,139 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [625] = 625, [626] = 626, [627] = 627, - [628] = 627, + [628] = 628, [629] = 629, - [630] = 627, + [630] = 630, [631] = 631, [632] = 632, [633] = 633, [634] = 634, - [635] = 635, - [636] = 636, + [635] = 624, + [636] = 624, [637] = 637, [638] = 638, - [639] = 525, + [639] = 639, [640] = 640, - [641] = 525, + [641] = 641, [642] = 642, [643] = 643, - [644] = 644, + [644] = 515, [645] = 645, [646] = 646, [647] = 647, [648] = 648, - [649] = 649, + [649] = 515, [650] = 650, [651] = 651, [652] = 652, - [653] = 591, + [653] = 653, [654] = 654, - [655] = 622, - [656] = 587, - [657] = 589, - [658] = 658, - [659] = 590, - [660] = 660, - [661] = 605, - [662] = 606, - [663] = 525, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 515, + [659] = 515, + [660] = 515, + [661] = 515, + [662] = 662, + [663] = 663, [664] = 664, - [665] = 607, + [665] = 665, [666] = 666, - [667] = 525, - [668] = 525, + [667] = 577, + [668] = 621, [669] = 669, - [670] = 614, + [670] = 670, [671] = 671, [672] = 672, [673] = 673, [674] = 674, [675] = 675, - [676] = 585, - [677] = 598, - [678] = 678, - [679] = 679, + [676] = 613, + [677] = 677, + [678] = 590, + [679] = 592, [680] = 680, [681] = 681, [682] = 682, [683] = 683, [684] = 684, - [685] = 582, - [686] = 686, - [687] = 687, - [688] = 592, - [689] = 689, + [685] = 685, + [686] = 622, + [687] = 598, + [688] = 602, + [689] = 620, [690] = 690, - [691] = 691, - [692] = 595, - [693] = 693, - [694] = 596, + [691] = 579, + [692] = 593, + [693] = 583, + [694] = 606, [695] = 695, - [696] = 696, - [697] = 525, - [698] = 698, + [696] = 607, + [697] = 697, + [698] = 576, [699] = 699, [700] = 700, - [701] = 597, + [701] = 701, [702] = 702, - [703] = 703, - [704] = 552, - [705] = 525, - [706] = 563, - [707] = 547, - [708] = 548, - [709] = 622, - [710] = 557, - [711] = 525, - [712] = 558, - [713] = 713, - [714] = 590, - [715] = 525, - [716] = 559, - [717] = 525, - [718] = 605, - [719] = 589, - [720] = 591, - [721] = 525, - [722] = 592, - [723] = 587, - [724] = 606, - [725] = 607, - [726] = 567, - [727] = 727, - [728] = 525, - [729] = 568, - [730] = 554, - [731] = 542, - [732] = 543, - [733] = 544, - [734] = 545, - [735] = 614, - [736] = 555, - [737] = 550, - [738] = 595, + [703] = 605, + [704] = 515, + [705] = 515, + [706] = 515, + [707] = 515, + [708] = 515, + [709] = 515, + [710] = 545, + [711] = 577, + [712] = 557, + [713] = 547, + [714] = 621, + [715] = 613, + [716] = 605, + [717] = 542, + [718] = 590, + [719] = 592, + [720] = 622, + [721] = 598, + [722] = 567, + [723] = 544, + [724] = 602, + [725] = 620, + [726] = 579, + [727] = 593, + [728] = 566, + [729] = 548, + [730] = 552, + [731] = 553, + [732] = 732, + [733] = 556, + [734] = 583, + [735] = 606, + [736] = 607, + [737] = 560, + [738] = 738, [739] = 739, - [740] = 596, - [741] = 525, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 551, - [747] = 562, - [748] = 597, - [749] = 525, - [750] = 582, - [751] = 564, - [752] = 560, - [753] = 585, - [754] = 598, - [755] = 755, - [756] = 756, + [740] = 740, + [741] = 562, + [742] = 568, + [743] = 541, + [744] = 546, + [745] = 549, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 576, + [750] = 555, + [751] = 558, + [752] = 752, + [753] = 515, + [754] = 515, + [755] = 561, + [756] = 515, [757] = 757, [758] = 758, [759] = 759, - [760] = 525, + [760] = 760, [761] = 761, [762] = 762, [763] = 762, @@ -6180,24 +6180,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [781] = 781, [782] = 782, [783] = 783, - [784] = 777, - [785] = 785, - [786] = 777, - [787] = 785, - [788] = 777, - [789] = 777, - [790] = 777, - [791] = 785, + [784] = 784, + [785] = 773, + [786] = 773, + [787] = 775, + [788] = 773, + [789] = 775, + [790] = 773, + [791] = 773, [792] = 792, - [793] = 792, - [794] = 792, - [795] = 795, - [796] = 792, + [793] = 793, + [794] = 793, + [795] = 792, + [796] = 793, [797] = 792, [798] = 792, - [799] = 795, + [799] = 792, [800] = 792, - [801] = 795, + [801] = 792, [802] = 792, [803] = 792, [804] = 792, @@ -6221,17 +6221,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [822] = 822, [823] = 823, [824] = 824, - [825] = 814, + [825] = 825, [826] = 826, [827] = 827, - [828] = 816, + [828] = 817, [829] = 829, [830] = 830, - [831] = 823, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 820, + [831] = 831, + [832] = 825, + [833] = 826, + [834] = 827, + [835] = 835, [836] = 836, [837] = 837, [838] = 838, @@ -6250,12 +6250,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [851] = 851, [852] = 852, [853] = 853, - [854] = 840, + [854] = 854, [855] = 855, - [856] = 855, + [856] = 856, [857] = 857, [858] = 858, - [859] = 858, + [859] = 859, [860] = 860, [861] = 861, [862] = 862, @@ -6267,7 +6267,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [868] = 868, [869] = 869, [870] = 870, - [871] = 860, + [871] = 871, [872] = 872, [873] = 873, [874] = 874, @@ -6278,7 +6278,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [879] = 879, [880] = 880, [881] = 881, - [882] = 882, + [882] = 865, [883] = 883, [884] = 884, [885] = 885, @@ -6292,229 +6292,229 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [893] = 893, [894] = 894, [895] = 895, - [896] = 896, + [896] = 876, [897] = 897, [898] = 898, [899] = 899, - [900] = 900, + [900] = 880, [901] = 901, - [902] = 902, + [902] = 891, [903] = 903, [904] = 904, [905] = 905, [906] = 906, - [907] = 816, - [908] = 820, - [909] = 832, - [910] = 820, - [911] = 823, - [912] = 829, - [913] = 832, - [914] = 818, - [915] = 819, - [916] = 820, - [917] = 821, - [918] = 822, - [919] = 814, - [920] = 814, + [907] = 821, + [908] = 827, + [909] = 826, + [910] = 815, + [911] = 817, + [912] = 816, + [913] = 816, + [914] = 914, + [915] = 822, + [916] = 835, + [917] = 818, + [918] = 821, + [919] = 919, + [920] = 818, [921] = 819, - [922] = 815, - [923] = 815, - [924] = 830, - [925] = 925, - [926] = 821, - [927] = 829, - [928] = 830, - [929] = 834, - [930] = 930, - [931] = 833, - [932] = 816, - [933] = 822, - [934] = 930, - [935] = 818, - [936] = 834, - [937] = 823, - [938] = 814, - [939] = 823, - [940] = 833, - [941] = 816, - [942] = 898, - [943] = 877, - [944] = 879, - [945] = 869, - [946] = 863, - [947] = 870, - [948] = 872, - [949] = 906, - [950] = 878, - [951] = 887, - [952] = 890, - [953] = 892, - [954] = 893, - [955] = 894, - [956] = 895, - [957] = 896, - [958] = 897, - [959] = 840, - [960] = 861, - [961] = 880, - [962] = 846, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 847, - [967] = 848, - [968] = 849, - [969] = 850, - [970] = 852, - [971] = 853, - [972] = 906, - [973] = 878, - [974] = 883, - [975] = 884, - [976] = 867, - [977] = 963, - [978] = 964, - [979] = 965, - [980] = 885, - [981] = 886, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 901, - [986] = 899, - [987] = 987, - [988] = 890, - [989] = 897, - [990] = 855, - [991] = 857, - [992] = 862, - [993] = 882, - [994] = 870, - [995] = 900, - [996] = 996, - [997] = 845, - [998] = 860, - [999] = 873, - [1000] = 1000, - [1001] = 892, - [1002] = 893, + [922] = 823, + [923] = 826, + [924] = 822, + [925] = 817, + [926] = 836, + [927] = 827, + [928] = 825, + [929] = 820, + [930] = 815, + [931] = 826, + [932] = 835, + [933] = 836, + [934] = 819, + [935] = 820, + [936] = 823, + [937] = 919, + [938] = 825, + [939] = 817, + [940] = 827, + [941] = 825, + [942] = 862, + [943] = 898, + [944] = 867, + [945] = 879, + [946] = 883, + [947] = 865, + [948] = 884, + [949] = 848, + [950] = 880, + [951] = 855, + [952] = 856, + [953] = 876, + [954] = 880, + [955] = 898, + [956] = 899, + [957] = 901, + [958] = 878, + [959] = 881, + [960] = 890, + [961] = 891, + [962] = 903, + [963] = 857, + [964] = 864, + [965] = 877, + [966] = 885, + [967] = 886, + [968] = 887, + [969] = 904, + [970] = 865, + [971] = 899, + [972] = 904, + [973] = 905, + [974] = 873, + [975] = 838, + [976] = 839, + [977] = 840, + [978] = 891, + [979] = 888, + [980] = 841, + [981] = 842, + [982] = 843, + [983] = 844, + [984] = 845, + [985] = 846, + [986] = 847, + [987] = 889, + [988] = 842, + [989] = 892, + [990] = 893, + [991] = 843, + [992] = 868, + [993] = 891, + [994] = 892, + [995] = 893, + [996] = 854, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 850, + [1001] = 901, + [1002] = 841, [1003] = 1003, - [1004] = 858, - [1005] = 872, - [1006] = 837, - [1007] = 874, - [1008] = 864, - [1009] = 865, - [1010] = 894, - [1011] = 902, - [1012] = 889, - [1013] = 865, - [1014] = 982, - [1015] = 983, - [1016] = 881, - [1017] = 984, - [1018] = 866, - [1019] = 867, - [1020] = 887, - [1021] = 863, - [1022] = 839, - [1023] = 841, - [1024] = 842, - [1025] = 879, - [1026] = 843, - [1027] = 844, - [1028] = 851, - [1029] = 987, - [1030] = 1030, - [1031] = 1031, - [1032] = 903, - [1033] = 880, - [1034] = 868, - [1035] = 1035, - [1036] = 869, - [1037] = 876, - [1038] = 860, - [1039] = 877, - [1040] = 888, - [1041] = 895, - [1042] = 1042, - [1043] = 891, - [1044] = 861, - [1045] = 904, - [1046] = 888, - [1047] = 889, - [1048] = 891, - [1049] = 905, - [1050] = 875, - [1051] = 898, - [1052] = 899, - [1053] = 902, - [1054] = 838, - [1055] = 903, - [1056] = 873, - [1057] = 904, - [1058] = 905, - [1059] = 875, - [1060] = 838, - [1061] = 896, - [1062] = 866, - [1063] = 840, - [1064] = 868, - [1065] = 845, - [1066] = 846, - [1067] = 847, - [1068] = 848, - [1069] = 849, - [1070] = 850, - [1071] = 852, - [1072] = 853, - [1073] = 874, - [1074] = 881, - [1075] = 882, - [1076] = 840, - [1077] = 855, - [1078] = 858, - [1079] = 876, - [1080] = 837, - [1081] = 883, - [1082] = 884, - [1083] = 885, - [1084] = 886, - [1085] = 855, - [1086] = 858, - [1087] = 839, - [1088] = 841, - [1089] = 842, - [1090] = 843, - [1091] = 844, - [1092] = 851, - [1093] = 860, - [1094] = 857, - [1095] = 862, - [1096] = 900, - [1097] = 901, - [1098] = 864, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 869, + [1011] = 997, + [1012] = 998, + [1013] = 1003, + [1014] = 999, + [1015] = 903, + [1016] = 857, + [1017] = 870, + [1018] = 871, + [1019] = 872, + [1020] = 906, + [1021] = 864, + [1022] = 877, + [1023] = 874, + [1024] = 875, + [1025] = 838, + [1026] = 839, + [1027] = 848, + [1028] = 849, + [1029] = 850, + [1030] = 894, + [1031] = 851, + [1032] = 895, + [1033] = 852, + [1034] = 851, + [1035] = 855, + [1036] = 856, + [1037] = 844, + [1038] = 858, + [1039] = 897, + [1040] = 837, + [1041] = 853, + [1042] = 894, + [1043] = 895, + [1044] = 854, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 847, + [1049] = 876, + [1050] = 897, + [1051] = 888, + [1052] = 878, + [1053] = 881, + [1054] = 866, + [1055] = 858, + [1056] = 859, + [1057] = 860, + [1058] = 861, + [1059] = 862, + [1060] = 1060, + [1061] = 863, + [1062] = 880, + [1063] = 866, + [1064] = 905, + [1065] = 883, + [1066] = 859, + [1067] = 860, + [1068] = 861, + [1069] = 873, + [1070] = 867, + [1071] = 884, + [1072] = 863, + [1073] = 879, + [1074] = 852, + [1075] = 889, + [1076] = 865, + [1077] = 890, + [1078] = 868, + [1079] = 869, + [1080] = 870, + [1081] = 871, + [1082] = 872, + [1083] = 906, + [1084] = 874, + [1085] = 875, + [1086] = 853, + [1087] = 885, + [1088] = 876, + [1089] = 1004, + [1090] = 846, + [1091] = 1005, + [1092] = 1006, + [1093] = 886, + [1094] = 887, + [1095] = 840, + [1096] = 837, + [1097] = 845, + [1098] = 849, [1099] = 1099, - [1100] = 1100, + [1100] = 1099, [1101] = 1101, - [1102] = 1100, + [1102] = 1101, [1103] = 1103, - [1104] = 1099, - [1105] = 1101, + [1104] = 1101, + [1105] = 1105, [1106] = 1103, - [1107] = 1099, - [1108] = 1100, - [1109] = 1103, - [1110] = 1101, + [1107] = 1105, + [1108] = 1103, + [1109] = 1105, + [1110] = 1099, [1111] = 1111, [1112] = 1112, [1113] = 1113, [1114] = 1114, [1115] = 1115, [1116] = 1116, - [1117] = 1116, - [1118] = 1118, + [1117] = 1117, + [1118] = 1112, [1119] = 1119, [1120] = 1120, [1121] = 1121, @@ -6522,528 +6522,528 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1123] = 1123, [1124] = 1124, [1125] = 1125, - [1126] = 761, + [1126] = 1126, [1127] = 1127, - [1128] = 817, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 826, + [1128] = 829, + [1129] = 830, + [1130] = 814, + [1131] = 824, + [1132] = 1132, [1133] = 1133, - [1134] = 824, + [1134] = 1134, [1135] = 1135, [1136] = 1136, - [1137] = 827, + [1137] = 1137, [1138] = 1138, - [1139] = 1139, + [1139] = 761, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, [1144] = 1144, - [1145] = 1145, + [1145] = 831, [1146] = 1146, [1147] = 1147, [1148] = 1148, - [1149] = 836, + [1149] = 1149, [1150] = 1150, - [1151] = 1151, - [1152] = 890, - [1153] = 892, - [1154] = 893, - [1155] = 894, - [1156] = 895, - [1157] = 1119, - [1158] = 896, - [1159] = 897, - [1160] = 1136, - [1161] = 1144, - [1162] = 1145, - [1163] = 1150, - [1164] = 1141, - [1165] = 1120, - [1166] = 1123, - [1167] = 1146, - [1168] = 1148, - [1169] = 1129, - [1170] = 1133, - [1171] = 1139, - [1172] = 1143, - [1173] = 1130, + [1151] = 1146, + [1152] = 1133, + [1153] = 1121, + [1154] = 1122, + [1155] = 1150, + [1156] = 841, + [1157] = 1134, + [1158] = 1158, + [1159] = 842, + [1160] = 904, + [1161] = 843, + [1162] = 844, + [1163] = 905, + [1164] = 845, + [1165] = 846, + [1166] = 873, + [1167] = 847, + [1168] = 1135, + [1169] = 1148, + [1170] = 839, + [1171] = 1136, + [1172] = 1123, + [1173] = 840, [1174] = 1140, - [1175] = 1131, - [1176] = 1135, - [1177] = 863, - [1178] = 870, - [1179] = 872, - [1180] = 906, - [1181] = 878, - [1182] = 887, - [1183] = 1127, + [1175] = 1126, + [1176] = 1125, + [1177] = 1119, + [1178] = 1141, + [1179] = 1143, + [1180] = 1132, + [1181] = 1127, + [1182] = 1124, + [1183] = 838, [1184] = 1184, [1185] = 1185, [1186] = 1186, - [1187] = 1115, - [1188] = 1112, - [1189] = 1114, - [1190] = 1111, - [1191] = 1118, - [1192] = 1113, - [1193] = 1123, - [1194] = 1194, + [1187] = 1116, + [1188] = 1114, + [1189] = 1113, + [1190] = 1115, + [1191] = 1117, + [1192] = 1111, + [1193] = 1193, + [1194] = 1142, [1195] = 1195, - [1196] = 1196, + [1196] = 1193, [1197] = 1197, [1198] = 1198, - [1199] = 1143, - [1200] = 1200, - [1201] = 1150, - [1202] = 1202, - [1203] = 1203, - [1204] = 1198, - [1205] = 1196, + [1199] = 1115, + [1200] = 761, + [1201] = 1144, + [1202] = 1193, + [1203] = 1197, + [1204] = 1204, + [1205] = 1205, [1206] = 1206, - [1207] = 1207, + [1207] = 1206, [1208] = 1208, - [1209] = 1129, - [1210] = 1210, - [1211] = 1198, - [1212] = 1121, - [1213] = 1206, - [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1214, - [1218] = 1218, + [1209] = 1132, + [1210] = 1133, + [1211] = 1211, + [1212] = 1208, + [1213] = 1213, + [1214] = 1150, + [1215] = 1134, + [1216] = 1135, + [1217] = 1217, + [1218] = 1136, [1219] = 1219, - [1220] = 1220, - [1221] = 1197, - [1222] = 1210, - [1223] = 1215, - [1224] = 1114, - [1225] = 1206, - [1226] = 1226, - [1227] = 1195, - [1228] = 1196, - [1229] = 1229, - [1230] = 1198, - [1231] = 1197, - [1232] = 1206, - [1233] = 1115, + [1220] = 1138, + [1221] = 1117, + [1222] = 1140, + [1223] = 1119, + [1224] = 1224, + [1225] = 1225, + [1226] = 1141, + [1227] = 1213, + [1228] = 1143, + [1229] = 1217, + [1230] = 1219, + [1231] = 1147, + [1232] = 1148, + [1233] = 1233, [1234] = 1234, - [1235] = 1147, - [1236] = 1214, - [1237] = 1216, - [1238] = 1125, - [1239] = 1210, + [1235] = 1235, + [1236] = 1204, + [1237] = 1237, + [1238] = 1238, + [1239] = 1113, [1240] = 1240, - [1241] = 1124, - [1242] = 1120, - [1243] = 1133, - [1244] = 1244, - [1245] = 1210, + [1241] = 1224, + [1242] = 1225, + [1243] = 1120, + [1244] = 1233, + [1245] = 1235, [1246] = 1246, - [1247] = 1244, - [1248] = 1215, - [1249] = 1244, - [1250] = 1219, - [1251] = 1208, - [1252] = 1252, - [1253] = 1219, + [1247] = 1234, + [1248] = 1237, + [1249] = 1249, + [1250] = 1250, + [1251] = 1233, + [1252] = 1246, + [1253] = 1253, [1254] = 1254, - [1255] = 1216, - [1256] = 1218, - [1257] = 1254, - [1258] = 1219, - [1259] = 1203, - [1260] = 1229, - [1261] = 1146, - [1262] = 1218, - [1263] = 1118, - [1264] = 1246, - [1265] = 1240, - [1266] = 1112, - [1267] = 1220, - [1268] = 1254, - [1269] = 1226, - [1270] = 1215, - [1271] = 1208, - [1272] = 1202, - [1273] = 1200, - [1274] = 1220, - [1275] = 1240, - [1276] = 1130, - [1277] = 1131, - [1278] = 1244, - [1279] = 1279, - [1280] = 1203, - [1281] = 1202, - [1282] = 1135, - [1283] = 1252, - [1284] = 1113, - [1285] = 1142, - [1286] = 1208, - [1287] = 1254, - [1288] = 1138, - [1289] = 1229, - [1290] = 1200, - [1291] = 1220, - [1292] = 1279, - [1293] = 1136, - [1294] = 1196, - [1295] = 761, - [1296] = 1296, - [1297] = 1246, - [1298] = 1296, - [1299] = 1194, - [1300] = 1194, - [1301] = 1252, - [1302] = 1200, - [1303] = 1246, - [1304] = 1296, - [1305] = 1226, - [1306] = 1240, - [1307] = 1296, - [1308] = 1308, - [1309] = 1234, - [1310] = 1111, - [1311] = 1140, - [1312] = 1119, - [1313] = 1195, - [1314] = 1139, - [1315] = 1148, - [1316] = 1197, - [1317] = 1122, - [1318] = 1279, - [1319] = 1144, - [1320] = 1194, - [1321] = 1141, - [1322] = 1207, - [1323] = 1145, - [1324] = 1226, - [1325] = 1195, - [1326] = 1234, - [1327] = 1207, - [1328] = 1328, - [1329] = 1127, - [1330] = 1214, - [1331] = 1207, - [1332] = 1140, - [1333] = 1333, - [1334] = 1334, - [1335] = 836, - [1336] = 817, - [1337] = 826, - [1338] = 824, - [1339] = 827, - [1340] = 892, - [1341] = 893, - [1342] = 890, - [1343] = 892, - [1344] = 893, - [1345] = 894, - [1346] = 895, - [1347] = 896, - [1348] = 897, - [1349] = 890, - [1350] = 892, - [1351] = 893, - [1352] = 894, - [1353] = 895, - [1354] = 896, - [1355] = 897, - [1356] = 1150, - [1357] = 1141, - [1358] = 1358, - [1359] = 1120, - [1360] = 1123, - [1361] = 1146, - [1362] = 1148, - [1363] = 894, - [1364] = 1127, - [1365] = 1129, - [1366] = 1150, - [1367] = 1133, - [1368] = 1139, - [1369] = 1143, - [1370] = 870, - [1371] = 1141, - [1372] = 1127, - [1373] = 872, - [1374] = 1129, - [1375] = 1133, - [1376] = 1119, - [1377] = 1139, - [1378] = 895, - [1379] = 896, - [1380] = 1130, - [1381] = 1131, - [1382] = 863, - [1383] = 1150, - [1384] = 1141, - [1385] = 1385, - [1386] = 1135, - [1387] = 1136, - [1388] = 870, - [1389] = 872, - [1390] = 1120, - [1391] = 1123, - [1392] = 1146, - [1393] = 1148, - [1394] = 1140, - [1395] = 1119, - [1396] = 906, - [1397] = 878, - [1398] = 1127, - [1399] = 1129, - [1400] = 1133, - [1401] = 1139, - [1402] = 1144, - [1403] = 1145, - [1404] = 887, - [1405] = 1143, - [1406] = 906, - [1407] = 878, - [1408] = 1408, - [1409] = 1408, - [1410] = 1130, - [1411] = 1131, - [1412] = 863, - [1413] = 897, - [1414] = 1414, - [1415] = 1148, - [1416] = 1416, - [1417] = 1417, - [1418] = 1138, - [1419] = 1419, + [1255] = 1255, + [1256] = 1249, + [1257] = 1111, + [1258] = 1235, + [1259] = 1254, + [1260] = 1137, + [1261] = 1261, + [1262] = 1246, + [1263] = 1126, + [1264] = 1125, + [1265] = 1253, + [1266] = 1114, + [1267] = 1250, + [1268] = 1127, + [1269] = 1225, + [1270] = 1255, + [1271] = 1124, + [1272] = 1261, + [1273] = 1255, + [1274] = 1195, + [1275] = 1261, + [1276] = 1276, + [1277] = 1250, + [1278] = 1149, + [1279] = 1146, + [1280] = 1121, + [1281] = 1281, + [1282] = 1261, + [1283] = 1283, + [1284] = 1122, + [1285] = 1123, + [1286] = 1276, + [1287] = 1281, + [1288] = 1238, + [1289] = 1240, + [1290] = 1198, + [1291] = 1249, + [1292] = 1254, + [1293] = 1276, + [1294] = 1281, + [1295] = 1211, + [1296] = 1204, + [1297] = 1195, + [1298] = 1198, + [1299] = 1238, + [1300] = 1240, + [1301] = 1238, + [1302] = 1193, + [1303] = 1249, + [1304] = 1197, + [1305] = 1254, + [1306] = 1206, + [1307] = 1208, + [1308] = 1213, + [1309] = 1217, + [1310] = 1219, + [1311] = 1204, + [1312] = 1224, + [1313] = 1225, + [1314] = 1211, + [1315] = 1281, + [1316] = 1234, + [1317] = 1237, + [1318] = 1233, + [1319] = 1240, + [1320] = 1195, + [1321] = 1198, + [1322] = 1246, + [1323] = 1235, + [1324] = 1197, + [1325] = 1213, + [1326] = 1276, + [1327] = 1116, + [1328] = 1217, + [1329] = 1219, + [1330] = 1224, + [1331] = 1253, + [1332] = 1332, + [1333] = 904, + [1334] = 1127, + [1335] = 1335, + [1336] = 1124, + [1337] = 905, + [1338] = 1338, + [1339] = 873, + [1340] = 905, + [1341] = 1341, + [1342] = 873, + [1343] = 1343, + [1344] = 1344, + [1345] = 838, + [1346] = 1346, + [1347] = 839, + [1348] = 840, + [1349] = 1126, + [1350] = 1147, + [1351] = 844, + [1352] = 1352, + [1353] = 1127, + [1354] = 1146, + [1355] = 1121, + [1356] = 838, + [1357] = 839, + [1358] = 1127, + [1359] = 1359, + [1360] = 1124, + [1361] = 1361, + [1362] = 1146, + [1363] = 1121, + [1364] = 1120, + [1365] = 1122, + [1366] = 1140, + [1367] = 1119, + [1368] = 1141, + [1369] = 1123, + [1370] = 1143, + [1371] = 1127, + [1372] = 1343, + [1373] = 1124, + [1374] = 1344, + [1375] = 1346, + [1376] = 1124, + [1377] = 1122, + [1378] = 1123, + [1379] = 840, + [1380] = 1150, + [1381] = 1381, + [1382] = 1134, + [1383] = 1383, + [1384] = 1135, + [1385] = 1359, + [1386] = 1126, + [1387] = 1125, + [1388] = 1136, + [1389] = 1389, + [1390] = 1361, + [1391] = 1140, + [1392] = 1119, + [1393] = 1141, + [1394] = 1143, + [1395] = 1395, + [1396] = 1396, + [1397] = 1352, + [1398] = 1381, + [1399] = 1132, + [1400] = 1137, + [1401] = 1401, + [1402] = 1402, + [1403] = 841, + [1404] = 1404, + [1405] = 1383, + [1406] = 842, + [1407] = 1389, + [1408] = 843, + [1409] = 844, + [1410] = 1401, + [1411] = 1396, + [1412] = 1352, + [1413] = 1402, + [1414] = 845, + [1415] = 1381, + [1416] = 846, + [1417] = 847, + [1418] = 1395, + [1419] = 841, [1420] = 1420, - [1421] = 1414, - [1422] = 1135, - [1423] = 1136, - [1424] = 870, - [1425] = 872, - [1426] = 1426, - [1427] = 1427, - [1428] = 1428, + [1421] = 842, + [1422] = 1422, + [1423] = 1423, + [1424] = 843, + [1425] = 844, + [1426] = 845, + [1427] = 846, + [1428] = 847, [1429] = 1429, - [1430] = 1430, - [1431] = 1144, - [1432] = 1145, + [1430] = 1401, + [1431] = 1422, + [1432] = 1429, [1433] = 1433, - [1434] = 1433, - [1435] = 1140, - [1436] = 1119, - [1437] = 1417, - [1438] = 906, - [1439] = 878, - [1440] = 1426, - [1441] = 1428, - [1442] = 1427, - [1443] = 1443, - [1444] = 1443, - [1445] = 887, - [1446] = 1144, - [1447] = 1135, - [1448] = 1136, + [1434] = 1402, + [1435] = 1148, + [1436] = 1436, + [1437] = 1332, + [1438] = 1138, + [1439] = 1144, + [1440] = 1150, + [1441] = 1126, + [1442] = 1423, + [1443] = 1420, + [1444] = 1444, + [1445] = 1395, + [1446] = 1446, + [1447] = 1404, + [1448] = 1448, [1449] = 1449, - [1450] = 1145, - [1451] = 887, - [1452] = 1452, - [1453] = 1453, - [1454] = 1428, - [1455] = 1455, - [1456] = 1358, - [1457] = 1457, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1460, - [1462] = 1385, - [1463] = 1452, - [1464] = 1453, - [1465] = 1465, - [1466] = 890, - [1467] = 1465, - [1468] = 1120, - [1469] = 1334, - [1470] = 1457, + [1450] = 1134, + [1451] = 1423, + [1452] = 1135, + [1453] = 1422, + [1454] = 1136, + [1455] = 1122, + [1456] = 1123, + [1457] = 1429, + [1458] = 1125, + [1459] = 1150, + [1460] = 1433, + [1461] = 1461, + [1462] = 1338, + [1463] = 1142, + [1464] = 1134, + [1465] = 1135, + [1466] = 904, + [1467] = 841, + [1468] = 1132, + [1469] = 1422, + [1470] = 904, [1471] = 1429, - [1472] = 1123, - [1473] = 1473, - [1474] = 1334, - [1475] = 1385, - [1476] = 1476, - [1477] = 1477, - [1478] = 1455, - [1479] = 1479, - [1480] = 1480, - [1481] = 1430, - [1482] = 1457, - [1483] = 1455, - [1484] = 1459, - [1485] = 1143, - [1486] = 1458, - [1487] = 1458, - [1488] = 1419, - [1489] = 1420, - [1490] = 1414, - [1491] = 1430, - [1492] = 1429, - [1493] = 1493, - [1494] = 1429, - [1495] = 1430, - [1496] = 1426, - [1497] = 1427, - [1498] = 1333, - [1499] = 1408, - [1500] = 1426, - [1501] = 1427, - [1502] = 1443, - [1503] = 1419, - [1504] = 1452, - [1505] = 1453, - [1506] = 1150, - [1507] = 1443, - [1508] = 1141, - [1509] = 1125, - [1510] = 1124, - [1511] = 1120, - [1512] = 1476, - [1513] = 1123, - [1514] = 1460, - [1515] = 1142, - [1516] = 1146, - [1517] = 1479, - [1518] = 1148, - [1519] = 1455, - [1520] = 1358, - [1521] = 1458, - [1522] = 1459, - [1523] = 1452, - [1524] = 1127, - [1525] = 1453, - [1526] = 1129, - [1527] = 1465, - [1528] = 1133, - [1529] = 1139, - [1530] = 1419, - [1531] = 1420, - [1532] = 1146, - [1533] = 1414, - [1534] = 1420, - [1535] = 1143, - [1536] = 1473, - [1537] = 1493, - [1538] = 1459, - [1539] = 1122, - [1540] = 890, - [1541] = 863, - [1542] = 863, - [1543] = 892, - [1544] = 893, - [1545] = 1476, - [1546] = 1433, - [1547] = 894, - [1548] = 870, - [1549] = 872, - [1550] = 895, - [1551] = 896, - [1552] = 906, - [1553] = 878, - [1554] = 897, - [1555] = 887, - [1556] = 890, - [1557] = 1130, - [1558] = 1131, - [1559] = 1150, - [1560] = 1141, - [1561] = 1479, - [1562] = 892, - [1563] = 893, - [1564] = 894, - [1565] = 1135, - [1566] = 1136, - [1567] = 1120, - [1568] = 1123, - [1569] = 1146, - [1570] = 1148, - [1571] = 1334, - [1572] = 895, - [1573] = 896, - [1574] = 1140, - [1575] = 1119, - [1576] = 1127, - [1577] = 1129, - [1578] = 1133, - [1579] = 1147, - [1580] = 1139, - [1581] = 897, - [1582] = 1144, - [1583] = 1145, - [1584] = 1143, - [1585] = 863, - [1586] = 1417, - [1587] = 870, - [1588] = 872, - [1589] = 906, - [1590] = 878, - [1591] = 887, - [1592] = 1130, - [1593] = 1131, - [1594] = 1140, - [1595] = 1385, - [1596] = 1135, - [1597] = 1136, - [1598] = 1428, - [1599] = 1119, - [1600] = 1144, - [1601] = 1145, - [1602] = 1417, - [1603] = 1130, - [1604] = 1473, - [1605] = 1131, - [1606] = 1333, - [1607] = 1460, - [1608] = 1493, - [1609] = 1465, - [1610] = 1358, - [1611] = 1148, - [1612] = 892, - [1613] = 893, - [1614] = 894, - [1615] = 895, - [1616] = 896, - [1617] = 897, - [1618] = 1127, - [1619] = 1129, - [1620] = 1133, - [1621] = 1139, - [1622] = 1130, - [1623] = 1131, - [1624] = 863, - [1625] = 1146, - [1626] = 1135, - [1627] = 1136, - [1628] = 870, - [1629] = 872, - [1630] = 1140, - [1631] = 1119, - [1632] = 906, - [1633] = 878, - [1634] = 1144, - [1635] = 1145, - [1636] = 1123, - [1637] = 887, - [1638] = 1150, - [1639] = 1141, - [1640] = 890, - [1641] = 1143, - [1642] = 1120, + [1472] = 1146, + [1473] = 1121, + [1474] = 1420, + [1475] = 842, + [1476] = 843, + [1477] = 1133, + [1478] = 1133, + [1479] = 844, + [1480] = 1446, + [1481] = 1449, + [1482] = 845, + [1483] = 1433, + [1484] = 1332, + [1485] = 846, + [1486] = 905, + [1487] = 873, + [1488] = 1433, + [1489] = 1146, + [1490] = 1136, + [1491] = 845, + [1492] = 846, + [1493] = 1127, + [1494] = 1124, + [1495] = 1461, + [1496] = 831, + [1497] = 1448, + [1498] = 829, + [1499] = 830, + [1500] = 905, + [1501] = 814, + [1502] = 1132, + [1503] = 1133, + [1504] = 824, + [1505] = 1148, + [1506] = 1444, + [1507] = 838, + [1508] = 839, + [1509] = 1509, + [1510] = 1150, + [1511] = 847, + [1512] = 1134, + [1513] = 1135, + [1514] = 873, + [1515] = 1136, + [1516] = 1150, + [1517] = 1132, + [1518] = 1140, + [1519] = 1121, + [1520] = 1134, + [1521] = 1119, + [1522] = 1141, + [1523] = 1140, + [1524] = 1461, + [1525] = 1436, + [1526] = 1143, + [1527] = 1135, + [1528] = 1404, + [1529] = 1133, + [1530] = 1436, + [1531] = 1148, + [1532] = 841, + [1533] = 840, + [1534] = 1119, + [1535] = 1136, + [1536] = 904, + [1537] = 842, + [1538] = 1338, + [1539] = 843, + [1540] = 1146, + [1541] = 844, + [1542] = 1401, + [1543] = 1444, + [1544] = 1141, + [1545] = 905, + [1546] = 1546, + [1547] = 1121, + [1548] = 838, + [1549] = 1332, + [1550] = 873, + [1551] = 839, + [1552] = 845, + [1553] = 1140, + [1554] = 1448, + [1555] = 1119, + [1556] = 846, + [1557] = 838, + [1558] = 1141, + [1559] = 839, + [1560] = 847, + [1561] = 1143, + [1562] = 1562, + [1563] = 1122, + [1564] = 840, + [1565] = 841, + [1566] = 1343, + [1567] = 1344, + [1568] = 1436, + [1569] = 1346, + [1570] = 1143, + [1571] = 1123, + [1572] = 1126, + [1573] = 1404, + [1574] = 1125, + [1575] = 1132, + [1576] = 1359, + [1577] = 840, + [1578] = 1361, + [1579] = 1562, + [1580] = 1148, + [1581] = 1133, + [1582] = 1402, + [1583] = 842, + [1584] = 843, + [1585] = 1383, + [1586] = 1389, + [1587] = 847, + [1588] = 1396, + [1589] = 1352, + [1590] = 1381, + [1591] = 1338, + [1592] = 1444, + [1593] = 1449, + [1594] = 1396, + [1595] = 1126, + [1596] = 1448, + [1597] = 1125, + [1598] = 904, + [1599] = 1122, + [1600] = 1123, + [1601] = 1343, + [1602] = 1344, + [1603] = 1346, + [1604] = 1562, + [1605] = 1148, + [1606] = 1359, + [1607] = 1361, + [1608] = 1446, + [1609] = 1449, + [1610] = 1125, + [1611] = 844, + [1612] = 842, + [1613] = 843, + [1614] = 1119, + [1615] = 1135, + [1616] = 1141, + [1617] = 1136, + [1618] = 845, + [1619] = 846, + [1620] = 1146, + [1621] = 1127, + [1622] = 1121, + [1623] = 1132, + [1624] = 1126, + [1625] = 1125, + [1626] = 1140, + [1627] = 1123, + [1628] = 1122, + [1629] = 1150, + [1630] = 1143, + [1631] = 838, + [1632] = 840, + [1633] = 839, + [1634] = 1133, + [1635] = 1148, + [1636] = 904, + [1637] = 841, + [1638] = 905, + [1639] = 1124, + [1640] = 873, + [1641] = 847, + [1642] = 1134, [1643] = 1643, [1644] = 1644, [1645] = 1645, - [1646] = 1645, - [1647] = 1645, + [1646] = 1644, + [1647] = 1644, [1648] = 1648, [1649] = 1649, [1650] = 1650, @@ -7061,988 +7061,988 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1662] = 1662, [1663] = 1663, [1664] = 1664, - [1665] = 824, - [1666] = 1656, - [1667] = 1667, - [1668] = 1668, - [1669] = 1669, - [1670] = 1668, - [1671] = 1671, - [1672] = 1669, - [1673] = 1655, - [1674] = 1674, + [1665] = 1665, + [1666] = 1666, + [1667] = 1662, + [1668] = 1658, + [1669] = 1664, + [1670] = 1654, + [1671] = 1661, + [1672] = 1663, + [1673] = 1649, + [1674] = 1651, [1675] = 1675, [1676] = 1676, - [1677] = 890, + [1677] = 1677, [1678] = 1678, - [1679] = 1668, - [1680] = 1669, - [1681] = 892, + [1679] = 1679, + [1680] = 1680, + [1681] = 1681, [1682] = 1682, - [1683] = 893, + [1683] = 1683, [1684] = 1684, - [1685] = 894, - [1686] = 1686, + [1685] = 1685, + [1686] = 1665, [1687] = 1687, [1688] = 1688, [1689] = 1689, - [1690] = 1653, - [1691] = 1663, - [1692] = 1669, - [1693] = 817, - [1694] = 826, - [1695] = 1668, - [1696] = 1669, - [1697] = 827, - [1698] = 895, - [1699] = 896, - [1700] = 897, - [1701] = 1701, - [1702] = 1668, - [1703] = 1669, - [1704] = 836, - [1705] = 1656, - [1706] = 1662, - [1707] = 1707, - [1708] = 1668, - [1709] = 1669, - [1710] = 1657, - [1711] = 1668, - [1712] = 1669, - [1713] = 1652, - [1714] = 1654, - [1715] = 1659, - [1716] = 1660, - [1717] = 1664, - [1718] = 1649, - [1719] = 1662, - [1720] = 1720, - [1721] = 1654, + [1690] = 1657, + [1691] = 1653, + [1692] = 1660, + [1693] = 1650, + [1694] = 1652, + [1695] = 1655, + [1696] = 1656, + [1697] = 1659, + [1698] = 1698, + [1699] = 829, + [1700] = 830, + [1701] = 814, + [1702] = 824, + [1703] = 1703, + [1704] = 831, + [1705] = 1688, + [1706] = 1706, + [1707] = 1658, + [1708] = 1664, + [1709] = 1654, + [1710] = 1661, + [1711] = 1663, + [1712] = 1649, + [1713] = 1651, + [1714] = 1714, + [1715] = 1657, + [1716] = 1653, + [1717] = 1660, + [1718] = 1650, + [1719] = 1652, + [1720] = 1655, + [1721] = 1656, [1722] = 1659, - [1723] = 1660, - [1724] = 1664, - [1725] = 1649, - [1726] = 1650, - [1727] = 1651, - [1728] = 1650, - [1729] = 1658, - [1730] = 1651, - [1731] = 1668, - [1732] = 1732, - [1733] = 1668, - [1734] = 1669, - [1735] = 1735, - [1736] = 1661, - [1737] = 1655, - [1738] = 1653, - [1739] = 1663, - [1740] = 1657, - [1741] = 1652, - [1742] = 1658, - [1743] = 1661, - [1744] = 1744, - [1745] = 1654, - [1746] = 1655, - [1747] = 1653, - [1748] = 1707, - [1749] = 1749, - [1750] = 1689, - [1751] = 1707, - [1752] = 890, - [1753] = 1735, - [1754] = 1663, - [1755] = 1732, - [1756] = 1671, - [1757] = 1674, - [1758] = 895, - [1759] = 1676, - [1760] = 892, - [1761] = 1678, - [1762] = 1657, - [1763] = 1675, - [1764] = 1682, - [1765] = 1656, - [1766] = 1689, - [1767] = 1671, - [1768] = 1744, - [1769] = 1674, - [1770] = 1664, - [1771] = 1676, - [1772] = 1772, - [1773] = 1678, - [1774] = 1682, - [1775] = 1684, - [1776] = 895, - [1777] = 1686, - [1778] = 1687, - [1779] = 894, - [1780] = 1684, - [1781] = 897, - [1782] = 1688, - [1783] = 892, - [1784] = 1701, - [1785] = 1658, - [1786] = 896, - [1787] = 1787, - [1788] = 897, - [1789] = 1662, - [1790] = 1661, - [1791] = 893, - [1792] = 1649, - [1793] = 1686, - [1794] = 1787, - [1795] = 1749, - [1796] = 1687, - [1797] = 1732, - [1798] = 1659, - [1799] = 893, - [1800] = 1650, - [1801] = 1667, - [1802] = 1660, - [1803] = 894, - [1804] = 1744, - [1805] = 1720, - [1806] = 890, - [1807] = 1735, - [1808] = 1651, - [1809] = 1688, - [1810] = 896, - [1811] = 1701, - [1812] = 1720, - [1813] = 1667, - [1814] = 1675, - [1815] = 1652, - [1816] = 1684, - [1817] = 897, - [1818] = 1667, - [1819] = 890, - [1820] = 1732, - [1821] = 1675, - [1822] = 895, - [1823] = 1682, - [1824] = 1674, - [1825] = 1688, - [1826] = 892, - [1827] = 1707, - [1828] = 893, - [1829] = 1701, - [1830] = 896, - [1831] = 1671, - [1832] = 1676, - [1833] = 1744, - [1834] = 1678, - [1835] = 1720, - [1836] = 1689, - [1837] = 894, - [1838] = 1687, - [1839] = 1686, - [1840] = 1735, - [1841] = 1656, + [1723] = 841, + [1724] = 842, + [1725] = 843, + [1726] = 844, + [1727] = 845, + [1728] = 846, + [1729] = 847, + [1730] = 1665, + [1731] = 1688, + [1732] = 1688, + [1733] = 1665, + [1734] = 1688, + [1735] = 1665, + [1736] = 1688, + [1737] = 1665, + [1738] = 1688, + [1739] = 1665, + [1740] = 1688, + [1741] = 1665, + [1742] = 1688, + [1743] = 1665, + [1744] = 1662, + [1745] = 1683, + [1746] = 1746, + [1747] = 1682, + [1748] = 1675, + [1749] = 1679, + [1750] = 1683, + [1751] = 1685, + [1752] = 1684, + [1753] = 1687, + [1754] = 1689, + [1755] = 1698, + [1756] = 1703, + [1757] = 1706, + [1758] = 1676, + [1759] = 1759, + [1760] = 1714, + [1761] = 1666, + [1762] = 1676, + [1763] = 1677, + [1764] = 1677, + [1765] = 1678, + [1766] = 1680, + [1767] = 1681, + [1768] = 1678, + [1769] = 1682, + [1770] = 1684, + [1771] = 1714, + [1772] = 1666, + [1773] = 1675, + [1774] = 1679, + [1775] = 1680, + [1776] = 1685, + [1777] = 1687, + [1778] = 1689, + [1779] = 1698, + [1780] = 1703, + [1781] = 1706, + [1782] = 1662, + [1783] = 1658, + [1784] = 1664, + [1785] = 1654, + [1786] = 1661, + [1787] = 1663, + [1788] = 1649, + [1789] = 1651, + [1790] = 1657, + [1791] = 1653, + [1792] = 1660, + [1793] = 1650, + [1794] = 1652, + [1795] = 1655, + [1796] = 1656, + [1797] = 1659, + [1798] = 841, + [1799] = 842, + [1800] = 843, + [1801] = 844, + [1802] = 845, + [1803] = 846, + [1804] = 847, + [1805] = 841, + [1806] = 842, + [1807] = 843, + [1808] = 844, + [1809] = 845, + [1810] = 846, + [1811] = 847, + [1812] = 1681, + [1813] = 1746, + [1814] = 1814, + [1815] = 1814, + [1816] = 1678, + [1817] = 1680, + [1818] = 1681, + [1819] = 1682, + [1820] = 1683, + [1821] = 1684, + [1822] = 1675, + [1823] = 1679, + [1824] = 1685, + [1825] = 1687, + [1826] = 1689, + [1827] = 1698, + [1828] = 1703, + [1829] = 1706, + [1830] = 1714, + [1831] = 1666, + [1832] = 841, + [1833] = 842, + [1834] = 843, + [1835] = 844, + [1836] = 845, + [1837] = 846, + [1838] = 847, + [1839] = 1676, + [1840] = 1677, + [1841] = 1658, [1842] = 1656, - [1843] = 1662, - [1844] = 1654, - [1845] = 1659, - [1846] = 1660, + [1843] = 1659, + [1844] = 1650, + [1845] = 1662, + [1846] = 1652, [1847] = 1664, - [1848] = 1649, - [1849] = 1650, - [1850] = 1651, - [1851] = 1655, - [1852] = 1653, - [1853] = 1663, - [1854] = 1657, - [1855] = 1652, + [1848] = 1654, + [1849] = 1661, + [1850] = 1659, + [1851] = 1654, + [1852] = 1661, + [1853] = 1650, + [1854] = 1663, + [1855] = 1655, [1856] = 1658, - [1857] = 1661, - [1858] = 1662, - [1859] = 1654, - [1860] = 1659, - [1861] = 1660, - [1862] = 1664, - [1863] = 1649, - [1864] = 1650, + [1857] = 1664, + [1858] = 1652, + [1859] = 1651, + [1860] = 1655, + [1861] = 1657, + [1862] = 1656, + [1863] = 1653, + [1864] = 1649, [1865] = 1651, - [1866] = 1655, - [1867] = 1653, - [1868] = 1663, - [1869] = 1657, - [1870] = 1652, - [1871] = 1658, - [1872] = 1661, - [1873] = 1661, - [1874] = 1684, - [1875] = 1661, - [1876] = 1686, - [1877] = 1687, - [1878] = 1707, - [1879] = 1732, - [1880] = 1656, - [1881] = 1654, - [1882] = 1662, - [1883] = 1707, - [1884] = 1732, - [1885] = 1744, - [1886] = 1654, - [1887] = 1659, - [1888] = 1720, - [1889] = 1655, - [1890] = 1735, - [1891] = 1653, - [1892] = 1660, - [1893] = 1664, - [1894] = 1688, - [1895] = 1663, - [1896] = 1701, - [1897] = 1657, - [1898] = 1649, - [1899] = 1650, - [1900] = 1667, - [1901] = 1675, - [1902] = 1651, - [1903] = 1689, - [1904] = 1659, - [1905] = 1652, - [1906] = 1906, - [1907] = 1658, - [1908] = 1671, - [1909] = 1661, - [1910] = 1657, - [1911] = 1674, - [1912] = 1656, - [1913] = 1676, - [1914] = 1914, - [1915] = 1678, - [1916] = 1655, - [1917] = 1682, - [1918] = 1671, - [1919] = 1684, - [1920] = 1653, - [1921] = 1686, - [1922] = 1687, - [1923] = 1674, - [1924] = 1663, - [1925] = 1676, - [1926] = 1744, - [1927] = 1655, - [1928] = 1928, - [1929] = 1720, - [1930] = 1657, - [1931] = 1735, - [1932] = 1678, - [1933] = 1688, - [1934] = 1652, - [1935] = 1701, - [1936] = 1682, - [1937] = 1667, - [1938] = 1658, - [1939] = 1675, - [1940] = 1689, - [1941] = 1941, - [1942] = 1652, - [1943] = 1655, - [1944] = 1653, - [1945] = 1663, - [1946] = 1657, - [1947] = 1652, - [1948] = 1658, - [1949] = 1661, - [1950] = 1656, - [1951] = 1951, - [1952] = 1952, - [1953] = 1953, - [1954] = 1954, + [1866] = 1657, + [1867] = 1662, + [1868] = 1653, + [1869] = 1660, + [1870] = 1663, + [1871] = 1660, + [1872] = 1649, + [1873] = 1873, + [1874] = 1874, + [1875] = 1653, + [1876] = 1662, + [1877] = 1877, + [1878] = 1656, + [1879] = 1879, + [1880] = 1666, + [1881] = 1658, + [1882] = 1664, + [1883] = 1883, + [1884] = 1682, + [1885] = 1659, + [1886] = 1683, + [1887] = 1654, + [1888] = 1661, + [1889] = 1664, + [1890] = 1684, + [1891] = 1891, + [1892] = 1676, + [1893] = 1663, + [1894] = 1649, + [1895] = 1895, + [1896] = 1896, + [1897] = 1897, + [1898] = 1651, + [1899] = 1654, + [1900] = 1656, + [1901] = 1653, + [1902] = 1662, + [1903] = 1658, + [1904] = 1664, + [1905] = 1654, + [1906] = 1661, + [1907] = 1663, + [1908] = 1649, + [1909] = 1651, + [1910] = 1677, + [1911] = 1660, + [1912] = 1661, + [1913] = 1678, + [1914] = 1675, + [1915] = 1657, + [1916] = 1680, + [1917] = 1654, + [1918] = 1679, + [1919] = 1681, + [1920] = 1687, + [1921] = 1685, + [1922] = 1676, + [1923] = 1687, + [1924] = 1679, + [1925] = 1689, + [1926] = 1689, + [1927] = 1698, + [1928] = 1658, + [1929] = 1703, + [1930] = 1706, + [1931] = 1653, + [1932] = 1660, + [1933] = 1663, + [1934] = 1650, + [1935] = 841, + [1936] = 842, + [1937] = 843, + [1938] = 844, + [1939] = 845, + [1940] = 846, + [1941] = 1657, + [1942] = 847, + [1943] = 1653, + [1944] = 1660, + [1945] = 1650, + [1946] = 1652, + [1947] = 1655, + [1948] = 1656, + [1949] = 1659, + [1950] = 1657, + [1951] = 1653, + [1952] = 1660, + [1953] = 1650, + [1954] = 1652, [1955] = 1655, - [1956] = 1653, - [1957] = 1663, - [1958] = 1657, + [1956] = 1656, + [1957] = 1659, + [1958] = 1649, [1959] = 1652, - [1960] = 1658, - [1961] = 1961, - [1962] = 1656, - [1963] = 1963, - [1964] = 1662, - [1965] = 1965, - [1966] = 1654, - [1967] = 1659, - [1968] = 1968, - [1969] = 1969, - [1970] = 1660, - [1971] = 1664, - [1972] = 1649, - [1973] = 1973, - [1974] = 1651, - [1975] = 1662, - [1976] = 1654, - [1977] = 1659, - [1978] = 1660, - [1979] = 1664, - [1980] = 1649, - [1981] = 1650, - [1982] = 1651, - [1983] = 1983, - [1984] = 1984, - [1985] = 1985, - [1986] = 1961, - [1987] = 1928, - [1988] = 890, - [1989] = 892, - [1990] = 893, - [1991] = 894, - [1992] = 895, - [1993] = 896, - [1994] = 1655, - [1995] = 897, - [1996] = 1653, - [1997] = 1663, - [1998] = 1657, - [1999] = 1652, - [2000] = 1658, - [2001] = 1661, - [2002] = 1656, - [2003] = 1655, - [2004] = 1653, - [2005] = 1663, - [2006] = 1657, - [2007] = 1652, - [2008] = 1658, - [2009] = 1661, - [2010] = 1656, - [2011] = 1973, - [2012] = 1914, - [2013] = 1941, - [2014] = 890, - [2015] = 892, - [2016] = 893, - [2017] = 894, - [2018] = 895, - [2019] = 896, - [2020] = 897, - [2021] = 1660, - [2022] = 1664, - [2023] = 1658, - [2024] = 1661, - [2025] = 1928, - [2026] = 1941, - [2027] = 1951, - [2028] = 1952, - [2029] = 1953, - [2030] = 1954, - [2031] = 1951, - [2032] = 1952, - [2033] = 1953, - [2034] = 1954, - [2035] = 1649, - [2036] = 1662, - [2037] = 1650, - [2038] = 1963, - [2039] = 1656, - [2040] = 1965, - [2041] = 1653, - [2042] = 1968, - [2043] = 1969, - [2044] = 1983, - [2045] = 1984, - [2046] = 1985, - [2047] = 1961, - [2048] = 1973, - [2049] = 1914, - [2050] = 1963, - [2051] = 1663, - [2052] = 1965, - [2053] = 1968, - [2054] = 1969, - [2055] = 1651, - [2056] = 1983, - [2057] = 1984, - [2058] = 1985, - [2059] = 1650, - [2060] = 1663, - [2061] = 1654, - [2062] = 1659, - [2063] = 1688, + [1960] = 1661, + [1961] = 1657, + [1962] = 1653, + [1963] = 1660, + [1964] = 1650, + [1965] = 1652, + [1966] = 1655, + [1967] = 1656, + [1968] = 1659, + [1969] = 1650, + [1970] = 1677, + [1971] = 1971, + [1972] = 1972, + [1973] = 1675, + [1974] = 1873, + [1975] = 1975, + [1976] = 1650, + [1977] = 1655, + [1978] = 1652, + [1979] = 1655, + [1980] = 1678, + [1981] = 1981, + [1982] = 1982, + [1983] = 841, + [1984] = 842, + [1985] = 843, + [1986] = 844, + [1987] = 845, + [1988] = 846, + [1989] = 847, + [1990] = 1656, + [1991] = 1685, + [1992] = 1703, + [1993] = 1657, + [1994] = 1652, + [1995] = 1651, + [1996] = 1659, + [1997] = 1714, + [1998] = 1680, + [1999] = 1706, + [2000] = 1657, + [2001] = 1655, + [2002] = 1681, + [2003] = 1662, + [2004] = 1660, + [2005] = 1891, + [2006] = 1895, + [2007] = 1896, + [2008] = 1897, + [2009] = 1663, + [2010] = 1649, + [2011] = 1659, + [2012] = 1657, + [2013] = 1682, + [2014] = 1879, + [2015] = 1883, + [2016] = 1653, + [2017] = 1971, + [2018] = 1972, + [2019] = 1873, + [2020] = 1683, + [2021] = 1684, + [2022] = 1891, + [2023] = 1975, + [2024] = 1895, + [2025] = 1896, + [2026] = 1897, + [2027] = 1651, + [2028] = 1879, + [2029] = 1883, + [2030] = 1971, + [2031] = 1714, + [2032] = 1666, + [2033] = 1972, + [2034] = 1658, + [2035] = 1975, + [2036] = 2036, + [2037] = 1660, + [2038] = 1664, + [2039] = 2039, + [2040] = 2039, + [2041] = 2041, + [2042] = 1874, + [2043] = 1877, + [2044] = 2041, + [2045] = 1874, + [2046] = 1877, + [2047] = 1981, + [2048] = 2039, + [2049] = 1662, + [2050] = 1982, + [2051] = 1650, + [2052] = 1652, + [2053] = 1981, + [2054] = 1982, + [2055] = 1655, + [2056] = 1656, + [2057] = 1659, + [2058] = 2041, + [2059] = 1698, + [2060] = 1659, + [2061] = 1666, + [2062] = 1649, + [2063] = 1651, [2064] = 2064, - [2065] = 1701, - [2066] = 1720, - [2067] = 1662, - [2068] = 1667, - [2069] = 1653, - [2070] = 1675, - [2071] = 1689, - [2072] = 890, - [2073] = 1663, - [2074] = 892, - [2075] = 893, - [2076] = 894, - [2077] = 895, - [2078] = 896, - [2079] = 1735, - [2080] = 897, - [2081] = 1654, - [2082] = 1659, - [2083] = 1654, - [2084] = 1744, - [2085] = 1660, - [2086] = 1664, - [2087] = 1720, - [2088] = 1649, - [2089] = 1650, - [2090] = 1735, - [2091] = 1659, - [2092] = 1651, - [2093] = 1660, - [2094] = 1664, - [2095] = 1688, - [2096] = 1662, - [2097] = 1701, - [2098] = 1657, - [2099] = 1744, - [2100] = 1654, - [2101] = 1659, - [2102] = 1720, - [2103] = 1735, - [2104] = 1667, - [2105] = 1660, - [2106] = 1664, - [2107] = 1688, - [2108] = 1701, - [2109] = 1675, - [2110] = 1649, - [2111] = 1650, - [2112] = 1667, - [2113] = 1689, - [2114] = 1675, + [2065] = 1685, + [2066] = 1662, + [2067] = 2064, + [2068] = 2068, + [2069] = 2069, + [2070] = 1663, + [2071] = 1649, + [2072] = 1677, + [2073] = 1662, + [2074] = 1658, + [2075] = 1664, + [2076] = 1651, + [2077] = 1675, + [2078] = 1654, + [2079] = 1661, + [2080] = 1663, + [2081] = 1649, + [2082] = 1679, + [2083] = 1651, + [2084] = 1685, + [2085] = 1678, + [2086] = 1687, + [2087] = 1689, + [2088] = 1662, + [2089] = 1675, + [2090] = 1658, + [2091] = 1664, + [2092] = 1679, + [2093] = 1685, + [2094] = 1654, + [2095] = 1661, + [2096] = 1687, + [2097] = 1689, + [2098] = 1698, + [2099] = 1663, + [2100] = 1649, + [2101] = 1698, + [2102] = 1703, + [2103] = 1651, + [2104] = 1706, + [2105] = 1703, + [2106] = 1676, + [2107] = 2107, + [2108] = 1687, + [2109] = 2109, + [2110] = 1706, + [2111] = 2111, + [2112] = 2112, + [2113] = 1657, + [2114] = 841, [2115] = 1651, - [2116] = 1689, - [2117] = 1655, - [2118] = 1653, - [2119] = 1663, - [2120] = 2120, - [2121] = 2121, - [2122] = 1657, - [2123] = 1652, - [2124] = 1649, - [2125] = 1658, - [2126] = 1661, - [2127] = 1650, - [2128] = 1656, - [2129] = 1655, - [2130] = 1662, - [2131] = 1653, - [2132] = 1663, - [2133] = 1654, - [2134] = 1659, - [2135] = 1657, - [2136] = 1652, - [2137] = 1660, - [2138] = 1664, - [2139] = 1658, - [2140] = 1661, - [2141] = 1649, - [2142] = 1650, - [2143] = 1656, - [2144] = 1651, - [2145] = 1744, - [2146] = 1720, - [2147] = 1735, - [2148] = 1688, - [2149] = 2149, - [2150] = 1701, - [2151] = 2151, - [2152] = 1667, - [2153] = 1675, - [2154] = 1689, - [2155] = 1707, + [2116] = 1653, + [2117] = 1660, + [2118] = 1650, + [2119] = 1652, + [2120] = 842, + [2121] = 843, + [2122] = 844, + [2123] = 1655, + [2124] = 1656, + [2125] = 1659, + [2126] = 1657, + [2127] = 1662, + [2128] = 1653, + [2129] = 1660, + [2130] = 1658, + [2131] = 1664, + [2132] = 1650, + [2133] = 1652, + [2134] = 1654, + [2135] = 1661, + [2136] = 1655, + [2137] = 1656, + [2138] = 1663, + [2139] = 1649, + [2140] = 1659, + [2141] = 1651, + [2142] = 1689, + [2143] = 845, + [2144] = 2144, + [2145] = 846, + [2146] = 1675, + [2147] = 1679, + [2148] = 1685, + [2149] = 1687, + [2150] = 1689, + [2151] = 1698, + [2152] = 2152, + [2153] = 1703, + [2154] = 1706, + [2155] = 1714, [2156] = 2156, - [2157] = 1732, - [2158] = 1655, + [2157] = 2157, + [2158] = 1666, [2159] = 2159, - [2160] = 1671, - [2161] = 1662, - [2162] = 2162, - [2163] = 2163, - [2164] = 1653, - [2165] = 1674, - [2166] = 1663, - [2167] = 1676, - [2168] = 1651, - [2169] = 1678, - [2170] = 1652, - [2171] = 1682, - [2172] = 1684, - [2173] = 1660, - [2174] = 1686, - [2175] = 1687, - [2176] = 1707, - [2177] = 1732, - [2178] = 1655, - [2179] = 1653, - [2180] = 1657, - [2181] = 1671, - [2182] = 1657, - [2183] = 1652, - [2184] = 1674, + [2160] = 1658, + [2161] = 847, + [2162] = 1675, + [2163] = 1664, + [2164] = 1676, + [2165] = 1677, + [2166] = 1679, + [2167] = 1678, + [2168] = 1685, + [2169] = 1714, + [2170] = 1680, + [2171] = 1681, + [2172] = 1687, + [2173] = 1689, + [2174] = 1682, + [2175] = 1683, + [2176] = 1684, + [2177] = 1714, + [2178] = 1666, + [2179] = 1657, + [2180] = 1653, + [2181] = 1660, + [2182] = 1698, + [2183] = 1676, + [2184] = 1650, [2185] = 1652, - [2186] = 1676, - [2187] = 1658, - [2188] = 1661, - [2189] = 1678, - [2190] = 1664, - [2191] = 1682, - [2192] = 1656, - [2193] = 1684, - [2194] = 1658, - [2195] = 1686, - [2196] = 1687, - [2197] = 2197, - [2198] = 2198, - [2199] = 1658, - [2200] = 2200, - [2201] = 2201, - [2202] = 1661, - [2203] = 1661, - [2204] = 1649, - [2205] = 1656, - [2206] = 1662, - [2207] = 1650, - [2208] = 1744, - [2209] = 1654, - [2210] = 1659, - [2211] = 1720, - [2212] = 1656, - [2213] = 1735, - [2214] = 1660, - [2215] = 1664, - [2216] = 1688, - [2217] = 1701, - [2218] = 1649, - [2219] = 1650, - [2220] = 1667, - [2221] = 1675, - [2222] = 1651, + [2186] = 1677, + [2187] = 1703, + [2188] = 1678, + [2189] = 1655, + [2190] = 1656, + [2191] = 1680, + [2192] = 1681, + [2193] = 1657, + [2194] = 1659, + [2195] = 1682, + [2196] = 1706, + [2197] = 1683, + [2198] = 1684, + [2199] = 1657, + [2200] = 1659, + [2201] = 1662, + [2202] = 1675, + [2203] = 1658, + [2204] = 1664, + [2205] = 1679, + [2206] = 1685, + [2207] = 1654, + [2208] = 1661, + [2209] = 1687, + [2210] = 1689, + [2211] = 1663, + [2212] = 1649, + [2213] = 1698, + [2214] = 1653, + [2215] = 1703, + [2216] = 1651, + [2217] = 1706, + [2218] = 1660, + [2219] = 1675, + [2220] = 1679, + [2221] = 1685, + [2222] = 1687, [2223] = 1689, - [2224] = 1744, - [2225] = 1720, - [2226] = 1735, - [2227] = 1688, - [2228] = 1651, - [2229] = 1701, - [2230] = 1667, - [2231] = 1732, - [2232] = 1675, - [2233] = 1689, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 2064, - [2240] = 1655, - [2241] = 1653, - [2242] = 1663, - [2243] = 1657, - [2244] = 1652, - [2245] = 1658, - [2246] = 1661, - [2247] = 1656, - [2248] = 890, - [2249] = 892, - [2250] = 893, - [2251] = 894, - [2252] = 895, - [2253] = 896, - [2254] = 897, - [2255] = 890, - [2256] = 892, - [2257] = 893, - [2258] = 894, - [2259] = 895, - [2260] = 896, - [2261] = 897, - [2262] = 1671, - [2263] = 890, - [2264] = 892, - [2265] = 893, - [2266] = 894, - [2267] = 895, - [2268] = 896, - [2269] = 897, - [2270] = 890, - [2271] = 892, - [2272] = 893, - [2273] = 894, - [2274] = 895, - [2275] = 896, - [2276] = 897, - [2277] = 890, - [2278] = 892, - [2279] = 893, - [2280] = 894, - [2281] = 895, - [2282] = 896, - [2283] = 897, - [2284] = 890, - [2285] = 892, - [2286] = 893, - [2287] = 894, - [2288] = 895, - [2289] = 896, - [2290] = 897, - [2291] = 1707, - [2292] = 1674, - [2293] = 1676, - [2294] = 1655, - [2295] = 1688, - [2296] = 2235, - [2297] = 2151, - [2298] = 1662, - [2299] = 1701, - [2300] = 1653, - [2301] = 1674, - [2302] = 1663, - [2303] = 2149, - [2304] = 1654, - [2305] = 1659, - [2306] = 2151, - [2307] = 1657, - [2308] = 1652, - [2309] = 2236, - [2310] = 1676, - [2311] = 1660, - [2312] = 1664, - [2313] = 1655, + [2224] = 1698, + [2225] = 1703, + [2226] = 1706, + [2227] = 1679, + [2228] = 1650, + [2229] = 1652, + [2230] = 1655, + [2231] = 1656, + [2232] = 1662, + [2233] = 1657, + [2234] = 1653, + [2235] = 1660, + [2236] = 1650, + [2237] = 1652, + [2238] = 1655, + [2239] = 1656, + [2240] = 1649, + [2241] = 841, + [2242] = 842, + [2243] = 843, + [2244] = 844, + [2245] = 845, + [2246] = 846, + [2247] = 847, + [2248] = 841, + [2249] = 842, + [2250] = 843, + [2251] = 844, + [2252] = 845, + [2253] = 846, + [2254] = 847, + [2255] = 1653, + [2256] = 1659, + [2257] = 1660, + [2258] = 2258, + [2259] = 2259, + [2260] = 2260, + [2261] = 1654, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, + [2265] = 841, + [2266] = 842, + [2267] = 843, + [2268] = 844, + [2269] = 845, + [2270] = 846, + [2271] = 847, + [2272] = 1661, + [2273] = 841, + [2274] = 842, + [2275] = 843, + [2276] = 844, + [2277] = 845, + [2278] = 846, + [2279] = 847, + [2280] = 841, + [2281] = 842, + [2282] = 843, + [2283] = 844, + [2284] = 845, + [2285] = 846, + [2286] = 847, + [2287] = 841, + [2288] = 842, + [2289] = 843, + [2290] = 844, + [2291] = 845, + [2292] = 846, + [2293] = 847, + [2294] = 1657, + [2295] = 2064, + [2296] = 1662, + [2297] = 1675, + [2298] = 1653, + [2299] = 2068, + [2300] = 2069, + [2301] = 1660, + [2302] = 1680, + [2303] = 1681, + [2304] = 2152, + [2305] = 1658, + [2306] = 1664, + [2307] = 1698, + [2308] = 1650, + [2309] = 1703, + [2310] = 1652, + [2311] = 1654, + [2312] = 1661, + [2313] = 2107, [2314] = 1658, - [2315] = 1744, - [2316] = 2120, - [2317] = 2121, - [2318] = 1661, - [2319] = 1678, - [2320] = 2120, - [2321] = 2121, - [2322] = 1682, - [2323] = 1649, - [2324] = 1650, - [2325] = 1678, - [2326] = 1720, - [2327] = 1656, - [2328] = 1682, - [2329] = 1667, - [2330] = 2156, - [2331] = 2237, - [2332] = 1684, - [2333] = 2159, - [2334] = 1735, - [2335] = 1686, - [2336] = 2162, - [2337] = 2238, - [2338] = 2163, - [2339] = 1687, - [2340] = 1651, - [2341] = 1675, - [2342] = 2197, - [2343] = 2198, - [2344] = 1671, - [2345] = 2200, - [2346] = 2201, - [2347] = 2234, - [2348] = 2235, - [2349] = 2236, - [2350] = 2237, - [2351] = 2238, - [2352] = 2064, - [2353] = 2156, - [2354] = 1707, + [2315] = 1655, + [2316] = 2109, + [2317] = 1676, + [2318] = 2111, + [2319] = 1656, + [2320] = 1664, + [2321] = 2112, + [2322] = 1650, + [2323] = 1677, + [2324] = 2068, + [2325] = 2069, + [2326] = 1678, + [2327] = 1663, + [2328] = 1649, + [2329] = 1682, + [2330] = 1652, + [2331] = 1683, + [2332] = 1659, + [2333] = 1706, + [2334] = 2107, + [2335] = 1680, + [2336] = 1666, + [2337] = 2109, + [2338] = 2111, + [2339] = 1681, + [2340] = 2112, + [2341] = 1654, + [2342] = 1651, + [2343] = 1661, + [2344] = 2144, + [2345] = 1682, + [2346] = 2144, + [2347] = 1655, + [2348] = 2156, + [2349] = 2156, + [2350] = 1683, + [2351] = 2157, + [2352] = 2159, + [2353] = 1684, + [2354] = 2157, [2355] = 2159, - [2356] = 1655, - [2357] = 2162, - [2358] = 1662, - [2359] = 1744, - [2360] = 2163, - [2361] = 1653, - [2362] = 2149, - [2363] = 1663, - [2364] = 1684, - [2365] = 1654, - [2366] = 1659, - [2367] = 1686, - [2368] = 1657, - [2369] = 1689, - [2370] = 1652, - [2371] = 1660, - [2372] = 1664, - [2373] = 1658, - [2374] = 1661, - [2375] = 1649, - [2376] = 1650, - [2377] = 2197, - [2378] = 1656, - [2379] = 1651, - [2380] = 2198, - [2381] = 2200, - [2382] = 1732, - [2383] = 2201, - [2384] = 2234, - [2385] = 1687, - [2386] = 1662, - [2387] = 1744, - [2388] = 893, - [2389] = 1684, - [2390] = 1684, - [2391] = 2391, - [2392] = 1686, - [2393] = 1686, - [2394] = 1687, - [2395] = 894, - [2396] = 1684, - [2397] = 1689, - [2398] = 1687, - [2399] = 895, - [2400] = 890, - [2401] = 896, - [2402] = 892, - [2403] = 893, - [2404] = 1686, - [2405] = 894, - [2406] = 895, - [2407] = 890, - [2408] = 892, - [2409] = 893, - [2410] = 894, - [2411] = 895, - [2412] = 896, - [2413] = 897, - [2414] = 896, - [2415] = 1689, - [2416] = 1662, - [2417] = 897, - [2418] = 897, - [2419] = 1671, - [2420] = 1687, - [2421] = 1654, - [2422] = 1659, - [2423] = 1671, - [2424] = 1744, - [2425] = 1720, - [2426] = 1674, - [2427] = 1735, - [2428] = 1688, - [2429] = 1660, - [2430] = 1701, - [2431] = 1667, - [2432] = 1664, + [2356] = 1684, + [2357] = 2258, + [2358] = 2259, + [2359] = 1656, + [2360] = 2260, + [2361] = 2262, + [2362] = 2263, + [2363] = 2264, + [2364] = 2258, + [2365] = 2152, + [2366] = 2259, + [2367] = 2260, + [2368] = 1714, + [2369] = 2262, + [2370] = 1657, + [2371] = 2263, + [2372] = 2264, + [2373] = 1662, + [2374] = 1653, + [2375] = 1660, + [2376] = 1658, + [2377] = 1664, + [2378] = 1650, + [2379] = 1652, + [2380] = 1654, + [2381] = 1663, + [2382] = 1661, + [2383] = 1655, + [2384] = 1656, + [2385] = 1663, + [2386] = 1659, + [2387] = 1706, + [2388] = 1681, + [2389] = 1666, + [2390] = 1698, + [2391] = 1703, + [2392] = 1682, + [2393] = 1683, + [2394] = 1706, + [2395] = 1657, + [2396] = 1653, + [2397] = 1660, + [2398] = 1650, + [2399] = 2399, + [2400] = 1655, + [2401] = 1656, + [2402] = 1659, + [2403] = 1714, + [2404] = 1684, + [2405] = 1666, + [2406] = 1676, + [2407] = 1677, + [2408] = 1678, + [2409] = 841, + [2410] = 1680, + [2411] = 1681, + [2412] = 1714, + [2413] = 1682, + [2414] = 842, + [2415] = 1683, + [2416] = 843, + [2417] = 1684, + [2418] = 844, + [2419] = 1675, + [2420] = 1682, + [2421] = 1683, + [2422] = 1714, + [2423] = 841, + [2424] = 842, + [2425] = 843, + [2426] = 844, + [2427] = 845, + [2428] = 846, + [2429] = 847, + [2430] = 1679, + [2431] = 1666, + [2432] = 1685, [2433] = 1675, - [2434] = 1689, - [2435] = 1676, - [2436] = 1744, - [2437] = 1649, - [2438] = 1650, - [2439] = 1674, - [2440] = 1651, - [2441] = 1678, - [2442] = 1707, - [2443] = 1707, - [2444] = 890, - [2445] = 892, - [2446] = 893, - [2447] = 894, - [2448] = 895, - [2449] = 896, - [2450] = 897, - [2451] = 890, - [2452] = 892, - [2453] = 893, - [2454] = 894, - [2455] = 895, - [2456] = 896, - [2457] = 897, - [2458] = 1682, - [2459] = 1676, - [2460] = 1684, - [2461] = 890, - [2462] = 892, - [2463] = 893, - [2464] = 894, - [2465] = 895, - [2466] = 896, - [2467] = 897, - [2468] = 1678, - [2469] = 1735, - [2470] = 1686, - [2471] = 1687, - [2472] = 2472, - [2473] = 1744, - [2474] = 1684, - [2475] = 1686, - [2476] = 1682, - [2477] = 1674, - [2478] = 1671, - [2479] = 1744, - [2480] = 890, - [2481] = 1707, - [2482] = 1720, - [2483] = 890, - [2484] = 892, - [2485] = 893, - [2486] = 894, - [2487] = 895, - [2488] = 896, - [2489] = 897, - [2490] = 2490, - [2491] = 1684, - [2492] = 1732, - [2493] = 1735, - [2494] = 1732, - [2495] = 1720, - [2496] = 892, - [2497] = 1744, - [2498] = 1678, - [2499] = 1686, - [2500] = 1735, - [2501] = 1720, - [2502] = 1682, - [2503] = 1735, - [2504] = 2504, - [2505] = 1688, - [2506] = 1687, - [2507] = 1671, - [2508] = 1701, - [2509] = 1720, - [2510] = 1676, - [2511] = 1735, - [2512] = 1688, - [2513] = 1674, - [2514] = 1701, - [2515] = 1674, - [2516] = 1667, - [2517] = 1676, - [2518] = 893, - [2519] = 1675, - [2520] = 1688, - [2521] = 1689, - [2522] = 1688, - [2523] = 1667, - [2524] = 1701, - [2525] = 1707, - [2526] = 1675, - [2527] = 1732, - [2528] = 1676, - [2529] = 894, - [2530] = 1689, - [2531] = 1678, - [2532] = 1732, - [2533] = 1682, - [2534] = 1707, - [2535] = 1667, - [2536] = 1688, - [2537] = 1655, - [2538] = 1675, - [2539] = 1744, - [2540] = 1653, - [2541] = 1663, + [2434] = 1687, + [2435] = 1689, + [2436] = 2436, + [2437] = 1679, + [2438] = 1680, + [2439] = 1685, + [2440] = 1675, + [2441] = 1679, + [2442] = 1685, + [2443] = 1687, + [2444] = 845, + [2445] = 1689, + [2446] = 846, + [2447] = 1698, + [2448] = 1703, + [2449] = 1706, + [2450] = 1687, + [2451] = 1681, + [2452] = 1689, + [2453] = 1698, + [2454] = 1703, + [2455] = 1706, + [2456] = 1714, + [2457] = 1698, + [2458] = 1703, + [2459] = 1666, + [2460] = 1706, + [2461] = 1675, + [2462] = 841, + [2463] = 1677, + [2464] = 847, + [2465] = 841, + [2466] = 842, + [2467] = 843, + [2468] = 844, + [2469] = 845, + [2470] = 846, + [2471] = 847, + [2472] = 841, + [2473] = 842, + [2474] = 843, + [2475] = 844, + [2476] = 845, + [2477] = 846, + [2478] = 847, + [2479] = 1675, + [2480] = 1703, + [2481] = 1676, + [2482] = 1682, + [2483] = 1679, + [2484] = 1685, + [2485] = 1677, + [2486] = 1676, + [2487] = 842, + [2488] = 843, + [2489] = 844, + [2490] = 1678, + [2491] = 1678, + [2492] = 841, + [2493] = 842, + [2494] = 843, + [2495] = 844, + [2496] = 845, + [2497] = 846, + [2498] = 847, + [2499] = 1687, + [2500] = 1698, + [2501] = 1689, + [2502] = 1703, + [2503] = 1680, + [2504] = 1677, + [2505] = 1681, + [2506] = 1698, + [2507] = 1678, + [2508] = 1703, + [2509] = 1682, + [2510] = 1683, + [2511] = 1706, + [2512] = 1684, + [2513] = 841, + [2514] = 1683, + [2515] = 845, + [2516] = 846, + [2517] = 841, + [2518] = 842, + [2519] = 843, + [2520] = 844, + [2521] = 845, + [2522] = 846, + [2523] = 847, + [2524] = 2524, + [2525] = 1714, + [2526] = 1666, + [2527] = 842, + [2528] = 843, + [2529] = 2529, + [2530] = 844, + [2531] = 845, + [2532] = 846, + [2533] = 1675, + [2534] = 1680, + [2535] = 1662, + [2536] = 1676, + [2537] = 847, + [2538] = 1681, + [2539] = 847, + [2540] = 1679, + [2541] = 2541, [2542] = 2542, - [2543] = 1671, - [2544] = 1657, - [2545] = 1652, - [2546] = 1684, - [2547] = 1701, - [2548] = 1686, - [2549] = 1732, - [2550] = 1689, - [2551] = 2551, - [2552] = 1720, - [2553] = 1687, - [2554] = 1658, - [2555] = 1687, - [2556] = 1661, - [2557] = 1656, - [2558] = 1701, - [2559] = 1707, - [2560] = 2560, - [2561] = 1732, - [2562] = 1720, - [2563] = 1707, - [2564] = 1678, - [2565] = 1735, - [2566] = 1667, - [2567] = 1732, - [2568] = 895, - [2569] = 1675, - [2570] = 1682, - [2571] = 1674, - [2572] = 1744, - [2573] = 896, - [2574] = 1667, - [2575] = 1671, - [2576] = 1689, - [2577] = 1676, - [2578] = 1720, - [2579] = 1671, - [2580] = 1735, - [2581] = 1688, - [2582] = 1674, - [2583] = 1676, - [2584] = 1701, - [2585] = 1688, - [2586] = 1701, - [2587] = 890, - [2588] = 1678, - [2589] = 1674, - [2590] = 1682, - [2591] = 1678, - [2592] = 1667, - [2593] = 1676, - [2594] = 1671, - [2595] = 1675, - [2596] = 1684, - [2597] = 1682, - [2598] = 1686, - [2599] = 1675, - [2600] = 2600, - [2601] = 1689, - [2602] = 1687, - [2603] = 897, - [2604] = 892, - [2605] = 2605, - [2606] = 1678, - [2607] = 1667, - [2608] = 1707, - [2609] = 1682, - [2610] = 1732, - [2611] = 1675, - [2612] = 2612, - [2613] = 2613, - [2614] = 1701, - [2615] = 1667, + [2543] = 2543, + [2544] = 1685, + [2545] = 1658, + [2546] = 1677, + [2547] = 1678, + [2548] = 1664, + [2549] = 1687, + [2550] = 1698, + [2551] = 1682, + [2552] = 1654, + [2553] = 1689, + [2554] = 1661, + [2555] = 1676, + [2556] = 1682, + [2557] = 1679, + [2558] = 1663, + [2559] = 1649, + [2560] = 1685, + [2561] = 1683, + [2562] = 1683, + [2563] = 1680, + [2564] = 1684, + [2565] = 1681, + [2566] = 1651, + [2567] = 1698, + [2568] = 1703, + [2569] = 1706, + [2570] = 1684, + [2571] = 2571, + [2572] = 1677, + [2573] = 1714, + [2574] = 1682, + [2575] = 1683, + [2576] = 1678, + [2577] = 1706, + [2578] = 1687, + [2579] = 1676, + [2580] = 1684, + [2581] = 1689, + [2582] = 1666, + [2583] = 1684, + [2584] = 2584, + [2585] = 1666, + [2586] = 1714, + [2587] = 1680, + [2588] = 1684, + [2589] = 1666, + [2590] = 1676, + [2591] = 1681, + [2592] = 1677, + [2593] = 1675, + [2594] = 1675, + [2595] = 1678, + [2596] = 1676, + [2597] = 1679, + [2598] = 1679, + [2599] = 1714, + [2600] = 1685, + [2601] = 1685, + [2602] = 1677, + [2603] = 1678, + [2604] = 1687, + [2605] = 1689, + [2606] = 1687, + [2607] = 1680, + [2608] = 1680, + [2609] = 1681, + [2610] = 1689, + [2611] = 1652, + [2612] = 1689, + [2613] = 1676, + [2614] = 2614, + [2615] = 2615, [2616] = 1675, - [2617] = 1689, - [2618] = 1707, - [2619] = 2613, - [2620] = 1678, - [2621] = 1682, - [2622] = 1676, - [2623] = 2612, - [2624] = 1732, - [2625] = 2613, - [2626] = 1684, - [2627] = 1687, - [2628] = 1688, - [2629] = 1671, - [2630] = 1686, - [2631] = 890, - [2632] = 892, - [2633] = 893, - [2634] = 894, - [2635] = 895, - [2636] = 896, - [2637] = 897, - [2638] = 2612, - [2639] = 2639, - [2640] = 1744, - [2641] = 2613, - [2642] = 1720, - [2643] = 1674, - [2644] = 1735, - [2645] = 2612, - [2646] = 2613, + [2617] = 2614, + [2618] = 2615, + [2619] = 1677, + [2620] = 1687, + [2621] = 2615, + [2622] = 1678, + [2623] = 2623, + [2624] = 1679, + [2625] = 2614, + [2626] = 1666, + [2627] = 1680, + [2628] = 2615, + [2629] = 1706, + [2630] = 1698, + [2631] = 1714, + [2632] = 1685, + [2633] = 1703, + [2634] = 841, + [2635] = 842, + [2636] = 1682, + [2637] = 843, + [2638] = 1683, + [2639] = 844, + [2640] = 1684, + [2641] = 2615, + [2642] = 2614, + [2643] = 845, + [2644] = 846, + [2645] = 847, + [2646] = 1681, [2647] = 2647, [2648] = 2648, [2649] = 2649, @@ -8052,257 +8052,257 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2653] = 2653, [2654] = 2654, [2655] = 2655, - [2656] = 2656, + [2656] = 2653, [2657] = 2657, [2658] = 2658, [2659] = 2659, [2660] = 2660, [2661] = 2661, - [2662] = 2654, + [2662] = 2662, [2663] = 2663, [2664] = 2664, - [2665] = 2664, - [2666] = 2654, - [2667] = 2667, - [2668] = 2664, - [2669] = 2654, - [2670] = 2670, - [2671] = 2664, + [2665] = 2665, + [2666] = 2666, + [2667] = 2663, + [2668] = 2653, + [2669] = 2663, + [2670] = 2653, + [2671] = 2663, [2672] = 2672, - [2673] = 817, + [2673] = 2673, [2674] = 2674, [2675] = 2675, - [2676] = 2676, + [2676] = 831, [2677] = 2677, [2678] = 2678, [2679] = 2679, [2680] = 2680, [2681] = 2681, - [2682] = 2682, + [2682] = 824, [2683] = 2683, - [2684] = 2675, + [2684] = 2684, [2685] = 2685, [2686] = 2686, - [2687] = 2675, + [2687] = 2687, [2688] = 2688, - [2689] = 824, + [2689] = 2689, [2690] = 2690, - [2691] = 2691, - [2692] = 826, - [2693] = 2675, - [2694] = 2694, - [2695] = 2676, - [2696] = 836, - [2697] = 827, - [2698] = 2698, - [2699] = 2691, - [2700] = 2676, - [2701] = 2691, - [2702] = 1146, + [2691] = 2688, + [2692] = 829, + [2693] = 2678, + [2694] = 2688, + [2695] = 2695, + [2696] = 830, + [2697] = 2688, + [2698] = 2684, + [2699] = 814, + [2700] = 2678, + [2701] = 2684, + [2702] = 2702, [2703] = 2703, [2704] = 2704, [2705] = 2705, [2706] = 2706, [2707] = 2707, - [2708] = 1140, - [2709] = 1119, + [2708] = 1148, + [2709] = 2709, [2710] = 2710, [2711] = 2711, - [2712] = 1133, + [2712] = 840, [2713] = 2713, [2714] = 2714, - [2715] = 1139, - [2716] = 2716, - [2717] = 1144, - [2718] = 1145, - [2719] = 2719, - [2720] = 2720, - [2721] = 906, - [2722] = 2722, - [2723] = 878, - [2724] = 2711, - [2725] = 2713, - [2726] = 1127, - [2727] = 863, - [2728] = 2728, - [2729] = 1143, + [2715] = 1134, + [2716] = 2713, + [2717] = 2717, + [2718] = 2718, + [2719] = 841, + [2720] = 842, + [2721] = 2705, + [2722] = 843, + [2723] = 844, + [2724] = 845, + [2725] = 846, + [2726] = 847, + [2727] = 2727, + [2728] = 1135, + [2729] = 2714, [2730] = 2730, - [2731] = 2731, - [2732] = 2732, - [2733] = 2731, - [2734] = 2734, - [2735] = 887, - [2736] = 1150, - [2737] = 2732, - [2738] = 2719, - [2739] = 1129, - [2740] = 2740, - [2741] = 2740, - [2742] = 2706, - [2743] = 1141, - [2744] = 2744, - [2745] = 1148, - [2746] = 2734, + [2731] = 2706, + [2732] = 1140, + [2733] = 2733, + [2734] = 2718, + [2735] = 2735, + [2736] = 2736, + [2737] = 904, + [2738] = 2704, + [2739] = 2709, + [2740] = 1119, + [2741] = 2741, + [2742] = 2736, + [2743] = 873, + [2744] = 1126, + [2745] = 1125, + [2746] = 838, [2747] = 2747, - [2748] = 890, - [2749] = 892, - [2750] = 893, - [2751] = 894, - [2752] = 895, - [2753] = 896, - [2754] = 1130, - [2755] = 897, - [2756] = 1131, - [2757] = 2757, - [2758] = 870, - [2759] = 2759, - [2760] = 2722, - [2761] = 2730, - [2762] = 1120, - [2763] = 872, - [2764] = 1135, - [2765] = 1136, - [2766] = 1123, - [2767] = 2703, - [2768] = 2704, - [2769] = 2705, - [2770] = 2770, - [2771] = 2710, - [2772] = 2772, - [2773] = 2720, - [2774] = 2747, - [2775] = 1136, - [2776] = 2776, - [2777] = 1120, + [2748] = 2748, + [2749] = 2749, + [2750] = 2717, + [2751] = 2751, + [2752] = 1127, + [2753] = 2711, + [2754] = 2754, + [2755] = 1124, + [2756] = 2733, + [2757] = 1146, + [2758] = 1121, + [2759] = 1136, + [2760] = 1122, + [2761] = 1123, + [2762] = 2762, + [2763] = 2751, + [2764] = 905, + [2765] = 1132, + [2766] = 1133, + [2767] = 839, + [2768] = 2730, + [2769] = 1141, + [2770] = 2749, + [2771] = 2707, + [2772] = 1150, + [2773] = 1143, + [2774] = 2741, + [2775] = 1123, + [2776] = 838, + [2777] = 839, [2778] = 2778, - [2779] = 2776, - [2780] = 1123, - [2781] = 2781, - [2782] = 824, - [2783] = 2783, - [2784] = 2781, - [2785] = 1131, - [2786] = 1144, - [2787] = 2787, - [2788] = 827, - [2789] = 1119, + [2779] = 1121, + [2780] = 2780, + [2781] = 831, + [2782] = 2782, + [2783] = 824, + [2784] = 2784, + [2785] = 1148, + [2786] = 1148, + [2787] = 1150, + [2788] = 2788, + [2789] = 1127, [2790] = 2790, - [2791] = 2787, - [2792] = 1135, - [2793] = 2793, - [2794] = 2794, + [2791] = 2791, + [2792] = 1134, + [2793] = 829, + [2794] = 1124, [2795] = 2795, - [2796] = 890, - [2797] = 863, - [2798] = 2793, - [2799] = 2794, - [2800] = 893, - [2801] = 892, - [2802] = 893, - [2803] = 826, - [2804] = 894, - [2805] = 892, - [2806] = 870, - [2807] = 872, - [2808] = 894, - [2809] = 2744, + [2796] = 830, + [2797] = 2797, + [2798] = 830, + [2799] = 2790, + [2800] = 2800, + [2801] = 2801, + [2802] = 905, + [2803] = 1136, + [2804] = 2804, + [2805] = 2805, + [2806] = 2800, + [2807] = 2807, + [2808] = 2808, + [2809] = 2809, [2810] = 2810, - [2811] = 1135, - [2812] = 895, - [2813] = 896, - [2814] = 1145, - [2815] = 2815, - [2816] = 1146, - [2817] = 1148, - [2818] = 2818, - [2819] = 906, - [2820] = 878, - [2821] = 863, - [2822] = 1150, - [2823] = 897, - [2824] = 2824, - [2825] = 836, - [2826] = 2818, - [2827] = 2827, - [2828] = 870, - [2829] = 872, - [2830] = 2830, - [2831] = 2831, - [2832] = 1141, - [2833] = 887, - [2834] = 1143, - [2835] = 2835, - [2836] = 1150, - [2837] = 1120, - [2838] = 1123, - [2839] = 1129, - [2840] = 1146, - [2841] = 1148, - [2842] = 895, - [2843] = 896, - [2844] = 1130, - [2845] = 2845, - [2846] = 1133, - [2847] = 1130, - [2848] = 2831, - [2849] = 817, - [2850] = 2850, - [2851] = 1140, - [2852] = 1119, - [2853] = 826, - [2854] = 824, - [2855] = 2855, - [2856] = 906, - [2857] = 878, - [2858] = 827, - [2859] = 817, - [2860] = 1127, - [2861] = 2861, - [2862] = 836, - [2863] = 2863, - [2864] = 1129, - [2865] = 1133, - [2866] = 1139, - [2867] = 1131, - [2868] = 1648, - [2869] = 897, - [2870] = 2870, - [2871] = 2778, - [2872] = 2872, - [2873] = 2873, - [2874] = 2827, - [2875] = 2875, - [2876] = 2876, - [2877] = 2835, - [2878] = 2878, - [2879] = 1144, - [2880] = 1145, - [2881] = 2824, - [2882] = 2790, - [2883] = 2855, - [2884] = 2830, - [2885] = 2885, - [2886] = 2783, - [2887] = 1416, - [2888] = 887, - [2889] = 1136, - [2890] = 2890, - [2891] = 1143, - [2892] = 2861, - [2893] = 2795, - [2894] = 2815, - [2895] = 2895, - [2896] = 1141, - [2897] = 2897, - [2898] = 2863, - [2899] = 2899, - [2900] = 2900, - [2901] = 1140, - [2902] = 1127, - [2903] = 2890, - [2904] = 890, - [2905] = 1416, - [2906] = 1139, + [2811] = 2811, + [2812] = 2812, + [2813] = 2813, + [2814] = 2814, + [2815] = 2795, + [2816] = 2778, + [2817] = 2817, + [2818] = 1140, + [2819] = 2797, + [2820] = 814, + [2821] = 2821, + [2822] = 2822, + [2823] = 831, + [2824] = 1146, + [2825] = 2825, + [2826] = 1119, + [2827] = 1146, + [2828] = 2828, + [2829] = 2814, + [2830] = 1150, + [2831] = 1141, + [2832] = 841, + [2833] = 904, + [2834] = 2825, + [2835] = 842, + [2836] = 843, + [2837] = 2837, + [2838] = 844, + [2839] = 2839, + [2840] = 905, + [2841] = 873, + [2842] = 2805, + [2843] = 1143, + [2844] = 814, + [2845] = 1135, + [2846] = 840, + [2847] = 2839, + [2848] = 845, + [2849] = 846, + [2850] = 2817, + [2851] = 1121, + [2852] = 1134, + [2853] = 2837, + [2854] = 2854, + [2855] = 838, + [2856] = 839, + [2857] = 1140, + [2858] = 1119, + [2859] = 841, + [2860] = 847, + [2861] = 1341, + [2862] = 1648, + [2863] = 1141, + [2864] = 873, + [2865] = 840, + [2866] = 1126, + [2867] = 1126, + [2868] = 1125, + [2869] = 2869, + [2870] = 1125, + [2871] = 904, + [2872] = 1132, + [2873] = 1133, + [2874] = 2821, + [2875] = 1132, + [2876] = 846, + [2877] = 1143, + [2878] = 842, + [2879] = 1341, + [2880] = 2808, + [2881] = 2881, + [2882] = 2782, + [2883] = 1133, + [2884] = 2788, + [2885] = 847, + [2886] = 2811, + [2887] = 2801, + [2888] = 2804, + [2889] = 2889, + [2890] = 1135, + [2891] = 2891, + [2892] = 843, + [2893] = 1136, + [2894] = 824, + [2895] = 2780, + [2896] = 844, + [2897] = 2762, + [2898] = 1122, + [2899] = 1127, + [2900] = 1124, + [2901] = 845, + [2902] = 2828, + [2903] = 1122, + [2904] = 1123, + [2905] = 829, + [2906] = 2906, [2907] = 2907, [2908] = 2908, [2909] = 2909, @@ -8313,217 +8313,217 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2914] = 2914, [2915] = 2915, [2916] = 2916, - [2917] = 2917, - [2918] = 2907, + [2917] = 2913, + [2918] = 2918, [2919] = 2919, - [2920] = 2920, + [2920] = 2907, [2921] = 2921, [2922] = 2922, [2923] = 2923, [2924] = 2924, [2925] = 2925, - [2926] = 2926, - [2927] = 2927, - [2928] = 2928, - [2929] = 2929, - [2930] = 2930, - [2931] = 2931, - [2932] = 2932, + [2926] = 2908, + [2927] = 2909, + [2928] = 2910, + [2929] = 2911, + [2930] = 2912, + [2931] = 2913, + [2932] = 2914, [2933] = 2933, [2934] = 2934, - [2935] = 2916, - [2936] = 2936, - [2937] = 2917, - [2938] = 2907, + [2935] = 2935, + [2936] = 2914, + [2937] = 2937, + [2938] = 2915, [2939] = 2939, [2940] = 2940, - [2941] = 2919, - [2942] = 2936, - [2943] = 2920, - [2944] = 2921, - [2945] = 2922, - [2946] = 2923, - [2947] = 2947, - [2948] = 2911, - [2949] = 2913, - [2950] = 2916, - [2951] = 2917, - [2952] = 2919, - [2953] = 2920, - [2954] = 2921, - [2955] = 2922, - [2956] = 2923, - [2957] = 2924, - [2958] = 2915, - [2959] = 2924, - [2960] = 2928, - [2961] = 2911, - [2962] = 2912, - [2963] = 2913, - [2964] = 2916, - [2965] = 2917, - [2966] = 2907, - [2967] = 2919, - [2968] = 2920, - [2969] = 2921, - [2970] = 2922, - [2971] = 2923, - [2972] = 2924, + [2941] = 2941, + [2942] = 2942, + [2943] = 2943, + [2944] = 2944, + [2945] = 2945, + [2946] = 2915, + [2947] = 2916, + [2948] = 2916, + [2949] = 2918, + [2950] = 2950, + [2951] = 2909, + [2952] = 2910, + [2953] = 2953, + [2954] = 2954, + [2955] = 2955, + [2956] = 2956, + [2957] = 2957, + [2958] = 2958, + [2959] = 2959, + [2960] = 2939, + [2961] = 2961, + [2962] = 2908, + [2963] = 2915, + [2964] = 2964, + [2965] = 2916, + [2966] = 2918, + [2967] = 2950, + [2968] = 2968, + [2969] = 2969, + [2970] = 2939, + [2971] = 2915, + [2972] = 2916, [2973] = 2973, - [2974] = 2974, + [2974] = 2939, [2975] = 2975, - [2976] = 2930, - [2977] = 2913, - [2978] = 2978, + [2976] = 2915, + [2977] = 2915, + [2978] = 2916, [2979] = 2979, - [2980] = 2980, - [2981] = 2936, - [2982] = 2915, - [2983] = 2915, - [2984] = 2928, - [2985] = 2985, - [2986] = 2911, - [2987] = 2936, - [2988] = 2915, - [2989] = 2928, - [2990] = 2928, - [2991] = 2936, - [2992] = 2915, - [2993] = 2928, - [2994] = 2916, - [2995] = 2995, - [2996] = 2917, - [2997] = 2936, - [2998] = 2947, - [2999] = 2915, - [3000] = 2928, - [3001] = 3001, - [3002] = 2913, - [3003] = 2936, - [3004] = 3004, + [2980] = 2916, + [2981] = 2911, + [2982] = 2939, + [2983] = 2983, + [2984] = 2984, + [2985] = 2933, + [2986] = 2915, + [2987] = 2916, + [2988] = 2924, + [2989] = 2939, + [2990] = 2990, + [2991] = 2925, + [2992] = 2918, + [2993] = 2919, + [2994] = 2915, + [2995] = 2916, + [2996] = 2918, + [2997] = 2907, + [2998] = 2907, + [2999] = 2999, + [3000] = 3000, + [3001] = 2940, + [3002] = 3002, + [3003] = 2915, + [3004] = 2925, [3005] = 3005, - [3006] = 2911, - [3007] = 2915, - [3008] = 2928, - [3009] = 2913, - [3010] = 2907, - [3011] = 2936, - [3012] = 2940, - [3013] = 2919, - [3014] = 3004, - [3015] = 2915, - [3016] = 2928, - [3017] = 2920, - [3018] = 2921, - [3019] = 2922, - [3020] = 2923, - [3021] = 2924, - [3022] = 2915, - [3023] = 2915, - [3024] = 2928, - [3025] = 2911, - [3026] = 3026, - [3027] = 2915, - [3028] = 3028, - [3029] = 2928, - [3030] = 3030, - [3031] = 3031, - [3032] = 3032, - [3033] = 2915, - [3034] = 2928, - [3035] = 3035, - [3036] = 2909, - [3037] = 2916, - [3038] = 2917, - [3039] = 2907, - [3040] = 2919, - [3041] = 2920, - [3042] = 2921, - [3043] = 2922, - [3044] = 2923, - [3045] = 2924, - [3046] = 2908, - [3047] = 3047, - [3048] = 2995, - [3049] = 2914, - [3050] = 3032, - [3051] = 2928, - [3052] = 2995, - [3053] = 3053, - [3054] = 2914, - [3055] = 2912, - [3056] = 2911, - [3057] = 2914, - [3058] = 3058, - [3059] = 3059, - [3060] = 3060, - [3061] = 3061, - [3062] = 3062, - [3063] = 3063, - [3064] = 2947, - [3065] = 890, - [3066] = 1131, - [3067] = 3067, - [3068] = 1135, - [3069] = 1136, - [3070] = 1140, - [3071] = 1119, - [3072] = 1150, - [3073] = 1141, - [3074] = 3074, - [3075] = 1120, - [3076] = 1123, - [3077] = 1146, - [3078] = 1148, - [3079] = 1144, - [3080] = 887, - [3081] = 1130, - [3082] = 1145, - [3083] = 893, - [3084] = 894, - [3085] = 895, - [3086] = 896, - [3087] = 897, - [3088] = 863, - [3089] = 1127, - [3090] = 1129, - [3091] = 1133, - [3092] = 1139, - [3093] = 906, - [3094] = 878, - [3095] = 1143, - [3096] = 870, - [3097] = 872, - [3098] = 892, - [3099] = 2542, - [3100] = 2605, - [3101] = 2504, - [3102] = 2391, - [3103] = 2472, - [3104] = 3104, - [3105] = 2490, - [3106] = 2560, - [3107] = 2551, - [3108] = 2600, - [3109] = 1772, - [3110] = 3110, - [3111] = 3074, - [3112] = 2744, + [3006] = 2916, + [3007] = 2924, + [3008] = 2925, + [3009] = 2908, + [3010] = 2909, + [3011] = 2910, + [3012] = 3012, + [3013] = 2911, + [3014] = 2915, + [3015] = 2912, + [3016] = 2916, + [3017] = 2913, + [3018] = 2914, + [3019] = 3019, + [3020] = 2915, + [3021] = 2916, + [3022] = 2907, + [3023] = 3023, + [3024] = 2924, + [3025] = 2925, + [3026] = 2908, + [3027] = 2909, + [3028] = 2910, + [3029] = 2911, + [3030] = 2912, + [3031] = 2913, + [3032] = 2914, + [3033] = 3033, + [3034] = 2918, + [3035] = 2907, + [3036] = 2919, + [3037] = 2939, + [3038] = 2915, + [3039] = 2924, + [3040] = 2916, + [3041] = 2939, + [3042] = 2941, + [3043] = 2940, + [3044] = 3033, + [3045] = 2912, + [3046] = 2969, + [3047] = 2941, + [3048] = 2940, + [3049] = 2924, + [3050] = 2984, + [3051] = 3051, + [3052] = 2925, + [3053] = 2908, + [3054] = 2942, + [3055] = 2909, + [3056] = 2910, + [3057] = 2911, + [3058] = 2912, + [3059] = 2913, + [3060] = 2914, + [3061] = 2984, + [3062] = 3023, + [3063] = 2918, + [3064] = 3064, + [3065] = 839, + [3066] = 905, + [3067] = 873, + [3068] = 1126, + [3069] = 1125, + [3070] = 3070, + [3071] = 1132, + [3072] = 1127, + [3073] = 1124, + [3074] = 1133, + [3075] = 1146, + [3076] = 1121, + [3077] = 1122, + [3078] = 1123, + [3079] = 841, + [3080] = 1140, + [3081] = 1148, + [3082] = 3082, + [3083] = 1141, + [3084] = 838, + [3085] = 842, + [3086] = 1150, + [3087] = 904, + [3088] = 843, + [3089] = 1143, + [3090] = 844, + [3091] = 845, + [3092] = 846, + [3093] = 1134, + [3094] = 847, + [3095] = 840, + [3096] = 1135, + [3097] = 1136, + [3098] = 1119, + [3099] = 3099, + [3100] = 2524, + [3101] = 2584, + [3102] = 2541, + [3103] = 2542, + [3104] = 2529, + [3105] = 2571, + [3106] = 2436, + [3107] = 2543, + [3108] = 2399, + [3109] = 3109, + [3110] = 1759, + [3111] = 3082, + [3112] = 2762, [3113] = 3113, [3114] = 3114, [3115] = 3115, - [3116] = 1669, - [3117] = 1668, - [3118] = 3118, - [3119] = 3119, - [3120] = 1669, - [3121] = 1668, - [3122] = 1669, - [3123] = 3123, - [3124] = 1668, + [3116] = 1665, + [3117] = 3117, + [3118] = 1688, + [3119] = 1688, + [3120] = 1665, + [3121] = 1688, + [3122] = 1665, + [3123] = 1688, + [3124] = 3124, [3125] = 3125, - [3126] = 1668, - [3127] = 1669, + [3126] = 1665, + [3127] = 3127, [3128] = 3128, [3129] = 3129, [3130] = 3130, @@ -8531,46 +8531,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3132] = 3132, [3133] = 3133, [3134] = 824, - [3135] = 826, - [3136] = 817, - [3137] = 827, - [3138] = 836, + [3135] = 830, + [3136] = 829, + [3137] = 831, + [3138] = 814, [3139] = 3139, [3140] = 3140, [3141] = 3141, [3142] = 3142, - [3143] = 2560, + [3143] = 3143, [3144] = 3144, [3145] = 3145, - [3146] = 2542, - [3147] = 3147, - [3148] = 3141, - [3149] = 3149, - [3150] = 2647, - [3151] = 3141, + [3146] = 2399, + [3147] = 3139, + [3148] = 3148, + [3149] = 2647, + [3150] = 3150, + [3151] = 3151, [3152] = 3152, [3153] = 3153, - [3154] = 3154, + [3154] = 2571, [3155] = 3155, [3156] = 3156, - [3157] = 2605, + [3157] = 3157, [3158] = 3158, [3159] = 3159, [3160] = 3160, [3161] = 3161, [3162] = 3162, - [3163] = 3163, + [3163] = 3139, [3164] = 3164, [3165] = 3165, [3166] = 3166, [3167] = 3167, [3168] = 3168, - [3169] = 3169, + [3169] = 2543, [3170] = 3170, [3171] = 3171, [3172] = 3172, [3173] = 3173, - [3174] = 3173, + [3174] = 3174, [3175] = 3175, [3176] = 3176, [3177] = 3177, @@ -8588,85 +8588,85 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3189] = 3189, [3190] = 3190, [3191] = 3191, - [3192] = 3192, - [3193] = 3193, - [3194] = 3194, + [3192] = 3184, + [3193] = 3187, + [3194] = 3189, [3195] = 3195, - [3196] = 3196, + [3196] = 3191, [3197] = 3197, [3198] = 3198, [3199] = 3199, [3200] = 3200, [3201] = 3201, - [3202] = 3202, - [3203] = 3203, - [3204] = 3204, - [3205] = 3205, + [3202] = 3178, + [3203] = 3190, + [3204] = 3183, + [3205] = 3201, [3206] = 3206, [3207] = 3207, [3208] = 3208, - [3209] = 3176, - [3210] = 3210, - [3211] = 3197, + [3209] = 3209, + [3210] = 3199, + [3211] = 3211, [3212] = 3212, [3213] = 3213, - [3214] = 3184, - [3215] = 3185, - [3216] = 3186, + [3214] = 3214, + [3215] = 3215, + [3216] = 3216, [3217] = 3217, [3218] = 3218, - [3219] = 3188, - [3220] = 3212, - [3221] = 3190, - [3222] = 3191, + [3219] = 3219, + [3220] = 3200, + [3221] = 3221, + [3222] = 3222, [3223] = 3223, - [3224] = 3193, + [3224] = 3175, [3225] = 3225, - [3226] = 3194, + [3226] = 3226, [3227] = 3227, - [3228] = 3228, - [3229] = 3229, + [3228] = 3173, + [3229] = 3174, [3230] = 3230, - [3231] = 3196, + [3231] = 3231, [3232] = 3173, - [3233] = 3227, - [3234] = 3183, - [3235] = 3173, - [3236] = 3182, - [3237] = 3230, - [3238] = 3200, - [3239] = 3223, - [3240] = 3227, - [3241] = 3173, + [3233] = 3197, + [3234] = 3174, + [3235] = 3182, + [3236] = 3236, + [3237] = 3195, + [3238] = 3198, + [3239] = 3222, + [3240] = 3236, + [3241] = 3174, [3242] = 3182, - [3243] = 3230, - [3244] = 3200, - [3245] = 3223, - [3246] = 3246, - [3247] = 3227, - [3248] = 3173, - [3249] = 3230, - [3250] = 3200, - [3251] = 3227, - [3252] = 3173, - [3253] = 3230, - [3254] = 3173, - [3255] = 3230, - [3256] = 3173, - [3257] = 3230, - [3258] = 3173, - [3259] = 3230, - [3260] = 3173, - [3261] = 3173, - [3262] = 3173, - [3263] = 3173, - [3264] = 3173, - [3265] = 3173, - [3266] = 3173, - [3267] = 3173, - [3268] = 3173, + [3243] = 3236, + [3244] = 3195, + [3245] = 3198, + [3246] = 3173, + [3247] = 3174, + [3248] = 3236, + [3249] = 3195, + [3250] = 3173, + [3251] = 3174, + [3252] = 3236, + [3253] = 3174, + [3254] = 3236, + [3255] = 3174, + [3256] = 3236, + [3257] = 3174, + [3258] = 3236, + [3259] = 3174, + [3260] = 3174, + [3261] = 3174, + [3262] = 3174, + [3263] = 3174, + [3264] = 3174, + [3265] = 3174, + [3266] = 3174, + [3267] = 3174, + [3268] = 3174, [3269] = 3269, - [3270] = 2661, + [3270] = 2662, [3271] = 3271, [3272] = 3272, [3273] = 3273, @@ -8674,588 +8674,588 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3275] = 3275, [3276] = 3276, [3277] = 3277, - [3278] = 3278, - [3279] = 3279, - [3280] = 3275, - [3281] = 3278, - [3282] = 3282, + [3278] = 3276, + [3279] = 3275, + [3280] = 3277, + [3281] = 3281, + [3282] = 3281, [3283] = 3283, [3284] = 3283, - [3285] = 3282, - [3286] = 3279, + [3285] = 3285, + [3286] = 3286, [3287] = 3287, [3288] = 3287, [3289] = 3289, - [3290] = 824, + [3290] = 3290, [3291] = 3291, [3292] = 3292, - [3293] = 3293, - [3294] = 3294, + [3293] = 3289, + [3294] = 3289, [3295] = 3295, - [3296] = 3296, - [3297] = 3293, - [3298] = 3294, - [3299] = 3293, - [3300] = 3293, + [3296] = 3289, + [3297] = 3295, + [3298] = 3298, + [3299] = 3289, + [3300] = 3300, [3301] = 3301, - [3302] = 827, - [3303] = 817, - [3304] = 3295, - [3305] = 3296, - [3306] = 3291, - [3307] = 3307, + [3302] = 3295, + [3303] = 3289, + [3304] = 3290, + [3305] = 3291, + [3306] = 3306, + [3307] = 829, [3308] = 3308, - [3309] = 3293, - [3310] = 3293, - [3311] = 3294, - [3312] = 3312, - [3313] = 3294, - [3314] = 3294, - [3315] = 3293, - [3316] = 3294, - [3317] = 3293, - [3318] = 3294, - [3319] = 3296, - [3320] = 3320, - [3321] = 3320, - [3322] = 3293, - [3323] = 3294, + [3309] = 3295, + [3310] = 814, + [3311] = 3289, + [3312] = 3295, + [3313] = 3289, + [3314] = 824, + [3315] = 3289, + [3316] = 3301, + [3317] = 831, + [3318] = 3295, + [3319] = 3300, + [3320] = 3289, + [3321] = 3295, + [3322] = 3295, + [3323] = 3295, [3324] = 3324, [3325] = 3295, - [3326] = 3293, - [3327] = 3294, - [3328] = 3293, - [3329] = 3294, - [3330] = 3293, - [3331] = 836, - [3332] = 3294, - [3333] = 3293, - [3334] = 3293, - [3335] = 3294, - [3336] = 3336, - [3337] = 3294, - [3338] = 3294, - [3339] = 3312, + [3326] = 3289, + [3327] = 3327, + [3328] = 3328, + [3329] = 3291, + [3330] = 3289, + [3331] = 3295, + [3332] = 3295, + [3333] = 3289, + [3334] = 3334, + [3335] = 3289, + [3336] = 3295, + [3337] = 3290, + [3338] = 3295, + [3339] = 3339, [3340] = 3340, - [3341] = 3341, + [3341] = 3340, [3342] = 3342, [3343] = 3343, [3344] = 3344, - [3345] = 3345, + [3345] = 3298, [3346] = 3346, - [3347] = 3347, - [3348] = 3348, - [3349] = 3349, + [3347] = 3339, + [3348] = 3342, + [3349] = 3324, [3350] = 3350, [3351] = 3351, - [3352] = 3351, + [3352] = 3352, [3353] = 3353, - [3354] = 3354, - [3355] = 3355, - [3356] = 3350, - [3357] = 3348, - [3358] = 3347, + [3354] = 3353, + [3355] = 3343, + [3356] = 3356, + [3357] = 3357, + [3358] = 3358, [3359] = 3359, [3360] = 3360, - [3361] = 3301, - [3362] = 3362, - [3363] = 3345, + [3361] = 3352, + [3362] = 3359, + [3363] = 3363, [3364] = 3364, - [3365] = 3340, - [3366] = 3349, - [3367] = 3341, + [3365] = 3365, + [3366] = 3366, + [3367] = 3367, [3368] = 3368, - [3369] = 3369, + [3369] = 3351, [3370] = 3370, - [3371] = 3343, - [3372] = 2560, + [3371] = 3365, + [3372] = 2571, [3373] = 3373, - [3374] = 2605, + [3374] = 3374, [3375] = 3375, [3376] = 3376, - [3377] = 3376, + [3377] = 3377, [3378] = 3378, [3379] = 3379, - [3380] = 3380, - [3381] = 3381, - [3382] = 3378, - [3383] = 3383, - [3384] = 3380, + [3380] = 3376, + [3381] = 3375, + [3382] = 3377, + [3383] = 3378, + [3384] = 3378, [3385] = 3379, - [3386] = 2542, - [3387] = 3375, - [3388] = 3380, - [3389] = 3375, - [3390] = 3378, - [3391] = 3379, + [3386] = 3375, + [3387] = 3377, + [3388] = 3388, + [3389] = 2543, + [3390] = 3379, + [3391] = 2399, [3392] = 3392, [3393] = 3393, [3394] = 3394, - [3395] = 3395, - [3396] = 836, - [3397] = 817, - [3398] = 824, + [3395] = 814, + [3396] = 3396, + [3397] = 3397, + [3398] = 3398, [3399] = 3399, - [3400] = 3400, - [3401] = 827, - [3402] = 3402, + [3400] = 831, + [3401] = 3401, + [3402] = 3397, [3403] = 3403, - [3404] = 3404, + [3404] = 3397, [3405] = 3405, [3406] = 3406, - [3407] = 3407, - [3408] = 3408, - [3409] = 3409, - [3410] = 3410, - [3411] = 3411, - [3412] = 3412, + [3407] = 3398, + [3408] = 829, + [3409] = 3398, + [3410] = 3397, + [3411] = 3397, + [3412] = 3398, [3413] = 3413, - [3414] = 3404, - [3415] = 3411, - [3416] = 3400, - [3417] = 3417, - [3418] = 3413, - [3419] = 3395, - [3420] = 3402, - [3421] = 3413, - [3422] = 3395, - [3423] = 3404, - [3424] = 3413, - [3425] = 3395, - [3426] = 3402, - [3427] = 3413, - [3428] = 3395, + [3414] = 3397, + [3415] = 824, + [3416] = 3416, + [3417] = 3398, + [3418] = 3397, + [3419] = 3398, + [3420] = 3398, + [3421] = 3396, + [3422] = 3397, + [3423] = 3397, + [3424] = 830, + [3425] = 3405, + [3426] = 3397, + [3427] = 3427, + [3428] = 3401, [3429] = 3429, - [3430] = 3413, - [3431] = 3395, - [3432] = 3413, - [3433] = 3413, - [3434] = 3395, - [3435] = 3413, - [3436] = 3395, - [3437] = 3413, - [3438] = 3395, - [3439] = 3413, - [3440] = 3395, - [3441] = 3413, - [3442] = 3395, - [3443] = 3395, - [3444] = 3413, - [3445] = 3395, - [3446] = 3413, - [3447] = 3395, - [3448] = 3413, - [3449] = 3395, - [3450] = 3429, - [3451] = 826, + [3430] = 3405, + [3431] = 3431, + [3432] = 3398, + [3433] = 3433, + [3434] = 3434, + [3435] = 3397, + [3436] = 3397, + [3437] = 3437, + [3438] = 3398, + [3439] = 3416, + [3440] = 3397, + [3441] = 3397, + [3442] = 3398, + [3443] = 3398, + [3444] = 3398, + [3445] = 3399, + [3446] = 3397, + [3447] = 3416, + [3448] = 3398, + [3449] = 3449, + [3450] = 3398, + [3451] = 3398, [3452] = 3452, [3453] = 3453, - [3454] = 3453, + [3454] = 3454, [3455] = 3455, - [3456] = 3452, - [3457] = 3457, + [3456] = 3456, + [3457] = 3115, [3458] = 3458, - [3459] = 3452, - [3460] = 3074, + [3459] = 3459, + [3460] = 3460, [3461] = 3461, - [3462] = 3455, - [3463] = 3461, - [3464] = 3452, - [3465] = 3465, - [3466] = 3457, - [3467] = 3115, - [3468] = 3455, - [3469] = 3452, - [3470] = 3461, - [3471] = 3455, - [3472] = 3452, - [3473] = 3457, - [3474] = 3457, - [3475] = 3455, - [3476] = 3452, - [3477] = 3477, - [3478] = 3458, - [3479] = 3457, - [3480] = 3455, - [3481] = 3457, - [3482] = 3452, + [3462] = 3454, + [3463] = 3455, + [3464] = 3464, + [3465] = 3082, + [3466] = 3459, + [3467] = 3453, + [3468] = 3456, + [3469] = 3458, + [3470] = 3460, + [3471] = 3454, + [3472] = 3455, + [3473] = 3459, + [3474] = 3453, + [3475] = 3454, + [3476] = 3455, + [3477] = 3456, + [3478] = 3459, + [3479] = 3453, + [3480] = 3454, + [3481] = 3455, + [3482] = 3459, [3483] = 3453, - [3484] = 3455, - [3485] = 3457, - [3486] = 3455, - [3487] = 3452, - [3488] = 3465, - [3489] = 3465, - [3490] = 3457, - [3491] = 3457, - [3492] = 3453, - [3493] = 3493, - [3494] = 3457, - [3495] = 3452, - [3496] = 3453, + [3484] = 3454, + [3485] = 3455, + [3486] = 3459, + [3487] = 3453, + [3488] = 3454, + [3489] = 3455, + [3490] = 3459, + [3491] = 3453, + [3492] = 3458, + [3493] = 3454, + [3494] = 3455, + [3495] = 3459, + [3496] = 3460, [3497] = 3453, - [3498] = 3493, - [3499] = 3453, - [3500] = 3455, - [3501] = 3493, - [3502] = 3493, - [3503] = 3452, - [3504] = 3493, - [3505] = 3493, + [3498] = 3454, + [3499] = 3455, + [3500] = 3459, + [3501] = 3464, + [3502] = 3454, + [3503] = 3455, + [3504] = 3459, + [3505] = 3454, [3506] = 3455, - [3507] = 3493, - [3508] = 3457, - [3509] = 3452, - [3510] = 3493, - [3511] = 3493, - [3512] = 3512, - [3513] = 3457, - [3514] = 3493, - [3515] = 3457, - [3516] = 3493, - [3517] = 3493, - [3518] = 3493, - [3519] = 3455, - [3520] = 3493, - [3521] = 3493, - [3522] = 3493, - [3523] = 3493, - [3524] = 3493, - [3525] = 3493, - [3526] = 3493, - [3527] = 3493, - [3528] = 3493, - [3529] = 3493, - [3530] = 3493, - [3531] = 3493, - [3532] = 3493, - [3533] = 3493, - [3534] = 3493, - [3535] = 3493, - [3536] = 3493, - [3537] = 3493, - [3538] = 3493, - [3539] = 3493, - [3540] = 3493, - [3541] = 3493, - [3542] = 3493, - [3543] = 3493, - [3544] = 3493, - [3545] = 3493, - [3546] = 3493, - [3547] = 3493, - [3548] = 3493, - [3549] = 3493, - [3550] = 3493, - [3551] = 3493, - [3552] = 3493, - [3553] = 3553, - [3554] = 3553, - [3555] = 3453, - [3556] = 3455, - [3557] = 3455, + [3507] = 3459, + [3508] = 3452, + [3509] = 3455, + [3510] = 3459, + [3511] = 3459, + [3512] = 3452, + [3513] = 3454, + [3514] = 3455, + [3515] = 3452, + [3516] = 3452, + [3517] = 3452, + [3518] = 3452, + [3519] = 3519, + [3520] = 3452, + [3521] = 3452, + [3522] = 3452, + [3523] = 3452, + [3524] = 3452, + [3525] = 3452, + [3526] = 3452, + [3527] = 3452, + [3528] = 3452, + [3529] = 3452, + [3530] = 3452, + [3531] = 3452, + [3532] = 3452, + [3533] = 3452, + [3534] = 3452, + [3535] = 3452, + [3536] = 3452, + [3537] = 3452, + [3538] = 3452, + [3539] = 3452, + [3540] = 3452, + [3541] = 3452, + [3542] = 3452, + [3543] = 3452, + [3544] = 3452, + [3545] = 3452, + [3546] = 3452, + [3547] = 3452, + [3548] = 3452, + [3549] = 3452, + [3550] = 3452, + [3551] = 3452, + [3552] = 3452, + [3553] = 3452, + [3554] = 3452, + [3555] = 3452, + [3556] = 3452, + [3557] = 3452, [3558] = 3452, - [3559] = 3458, - [3560] = 3493, + [3559] = 3452, + [3560] = 3454, [3561] = 3561, [3562] = 3562, [3563] = 3563, - [3564] = 3562, + [3564] = 3564, [3565] = 3565, [3566] = 3566, [3567] = 3567, - [3568] = 3561, + [3568] = 3568, [3569] = 3569, - [3570] = 3569, + [3570] = 3567, [3571] = 3571, [3572] = 3572, - [3573] = 3573, + [3573] = 3565, [3574] = 3574, - [3575] = 3571, + [3575] = 3575, [3576] = 3576, - [3577] = 3567, - [3578] = 3578, - [3579] = 3562, - [3580] = 3561, - [3581] = 3566, - [3582] = 3571, - [3583] = 3583, - [3584] = 3574, - [3585] = 3585, - [3586] = 3561, - [3587] = 3572, - [3588] = 3572, - [3589] = 3589, - [3590] = 3590, - [3591] = 3562, - [3592] = 3561, - [3593] = 3573, - [3594] = 3590, + [3577] = 3562, + [3578] = 3563, + [3579] = 3576, + [3580] = 3566, + [3581] = 3581, + [3582] = 3582, + [3583] = 3567, + [3584] = 3571, + [3585] = 3572, + [3586] = 3565, + [3587] = 3574, + [3588] = 3562, + [3589] = 3576, + [3590] = 3562, + [3591] = 3563, + [3592] = 3592, + [3593] = 3566, + [3594] = 3576, [3595] = 3595, - [3596] = 3596, - [3597] = 3572, - [3598] = 3598, - [3599] = 3574, - [3600] = 3573, - [3601] = 3576, - [3602] = 3590, - [3603] = 3569, - [3604] = 3569, - [3605] = 3565, - [3606] = 3571, - [3607] = 3572, + [3596] = 3562, + [3597] = 3567, + [3598] = 3571, + [3599] = 3572, + [3600] = 3565, + [3601] = 3574, + [3602] = 3574, + [3603] = 3576, + [3604] = 3562, + [3605] = 3563, + [3606] = 3563, + [3607] = 3566, [3608] = 3608, - [3609] = 3609, - [3610] = 3573, - [3611] = 3562, - [3612] = 3612, - [3613] = 3613, + [3609] = 3566, + [3610] = 3567, + [3611] = 3571, + [3612] = 3572, + [3613] = 3565, [3614] = 3574, [3615] = 3615, [3616] = 3616, - [3617] = 3573, - [3618] = 3562, + [3617] = 3576, + [3618] = 3571, [3619] = 3562, - [3620] = 3562, - [3621] = 3561, - [3622] = 3561, - [3623] = 3573, + [3620] = 3620, + [3621] = 3563, + [3622] = 3286, + [3623] = 3566, [3624] = 3566, [3625] = 3625, - [3626] = 3626, - [3627] = 3562, - [3628] = 3628, + [3626] = 3567, + [3627] = 3571, + [3628] = 3572, [3629] = 3629, - [3630] = 3590, - [3631] = 3631, + [3630] = 3565, + [3631] = 3574, [3632] = 3632, - [3633] = 3613, - [3634] = 3590, - [3635] = 3571, - [3636] = 3574, - [3637] = 3571, - [3638] = 3569, - [3639] = 3569, - [3640] = 3574, - [3641] = 3641, - [3642] = 3565, - [3643] = 3571, - [3644] = 3612, - [3645] = 3608, - [3646] = 3572, - [3647] = 3566, - [3648] = 3569, - [3649] = 3649, + [3633] = 3576, + [3634] = 3562, + [3635] = 3563, + [3636] = 3636, + [3637] = 3576, + [3638] = 3566, + [3639] = 3639, + [3640] = 3640, + [3641] = 3567, + [3642] = 3571, + [3643] = 3562, + [3644] = 3576, + [3645] = 3562, + [3646] = 3646, + [3647] = 3563, + [3648] = 3648, + [3649] = 3566, [3650] = 3650, - [3651] = 3571, - [3652] = 3590, + [3651] = 3651, + [3652] = 3567, [3653] = 3653, - [3654] = 3561, - [3655] = 3615, - [3656] = 3572, - [3657] = 3650, - [3658] = 3583, - [3659] = 3569, - [3660] = 3573, - [3661] = 3613, - [3662] = 3590, - [3663] = 3573, - [3664] = 3629, - [3665] = 3615, - [3666] = 3571, - [3667] = 3650, - [3668] = 3626, - [3669] = 3569, + [3654] = 3576, + [3655] = 3562, + [3656] = 3563, + [3657] = 3657, + [3658] = 3566, + [3659] = 3659, + [3660] = 3646, + [3661] = 3567, + [3662] = 3571, + [3663] = 3576, + [3664] = 3562, + [3665] = 3563, + [3666] = 3572, + [3667] = 3566, + [3668] = 3567, + [3669] = 3571, [3670] = 3567, - [3671] = 3572, - [3672] = 3562, - [3673] = 3573, - [3674] = 3561, - [3675] = 3653, - [3676] = 3562, - [3677] = 3574, - [3678] = 3566, - [3679] = 3583, - [3680] = 3572, - [3681] = 3681, - [3682] = 3626, - [3683] = 3612, - [3684] = 3561, - [3685] = 3632, - [3686] = 3569, - [3687] = 3687, - [3688] = 3562, - [3689] = 3561, - [3690] = 3690, - [3691] = 3571, - [3692] = 3692, - [3693] = 3578, - [3694] = 3578, - [3695] = 3572, - [3696] = 3641, - [3697] = 3569, - [3698] = 3573, - [3699] = 3699, + [3671] = 3571, + [3672] = 3653, + [3673] = 3567, + [3674] = 3571, + [3675] = 3675, + [3676] = 3572, + [3677] = 3563, + [3678] = 3678, + [3679] = 3566, + [3680] = 3651, + [3681] = 3659, + [3682] = 3682, + [3683] = 3565, + [3684] = 3684, + [3685] = 3574, + [3686] = 3686, + [3687] = 3575, + [3688] = 3581, + [3689] = 3582, + [3690] = 3592, + [3691] = 3639, + [3692] = 3640, + [3693] = 3657, + [3694] = 3616, + [3695] = 3615, + [3696] = 3696, + [3697] = 3561, + [3698] = 3561, + [3699] = 3620, [3700] = 3700, - [3701] = 3571, - [3702] = 3702, - [3703] = 3572, - [3704] = 3566, - [3705] = 3573, - [3706] = 3571, - [3707] = 3566, - [3708] = 3589, - [3709] = 3276, - [3710] = 3572, - [3711] = 3711, - [3712] = 3561, - [3713] = 3590, - [3714] = 3632, - [3715] = 3574, - [3716] = 3566, - [3717] = 3641, - [3718] = 3569, - [3719] = 3571, - [3720] = 3572, - [3721] = 3569, - [3722] = 3653, - [3723] = 3573, - [3724] = 3562, - [3725] = 3576, - [3726] = 3608, - [3727] = 3629, - [3728] = 3561, - [3729] = 3573, - [3730] = 3730, + [3701] = 3576, + [3702] = 3562, + [3703] = 3563, + [3704] = 3704, + [3705] = 3566, + [3706] = 3706, + [3707] = 3646, + [3708] = 3563, + [3709] = 3567, + [3710] = 3571, + [3711] = 3657, + [3712] = 3653, + [3713] = 3572, + [3714] = 3651, + [3715] = 3659, + [3716] = 3565, + [3717] = 3616, + [3718] = 3574, + [3719] = 3620, + [3720] = 3615, + [3721] = 3575, + [3722] = 3581, + [3723] = 3582, + [3724] = 3592, + [3725] = 3639, + [3726] = 3640, + [3727] = 3576, + [3728] = 3629, + [3729] = 3729, + [3730] = 3571, [3731] = 3731, - [3732] = 3732, - [3733] = 3730, + [3732] = 3731, + [3733] = 3733, [3734] = 3734, - [3735] = 1772, + [3735] = 3735, [3736] = 3736, [3737] = 3737, [3738] = 3738, - [3739] = 3731, + [3739] = 3739, [3740] = 3740, - [3741] = 3731, + [3741] = 3741, [3742] = 3742, [3743] = 3743, - [3744] = 3742, - [3745] = 3731, - [3746] = 3746, - [3747] = 3747, - [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 3746, - [3752] = 3752, - [3753] = 3753, - [3754] = 3119, - [3755] = 3731, - [3756] = 3746, + [3744] = 3731, + [3745] = 3745, + [3746] = 3735, + [3747] = 3736, + [3748] = 3737, + [3749] = 3731, + [3750] = 3738, + [3751] = 3739, + [3752] = 3740, + [3753] = 3741, + [3754] = 3742, + [3755] = 3755, + [3756] = 3756, [3757] = 3757, - [3758] = 3746, - [3759] = 3759, - [3760] = 3753, - [3761] = 3731, - [3762] = 3730, - [3763] = 3763, - [3764] = 3731, - [3765] = 3765, - [3766] = 3766, + [3758] = 3735, + [3759] = 3736, + [3760] = 3737, + [3761] = 3738, + [3762] = 3739, + [3763] = 3740, + [3764] = 3764, + [3765] = 3741, + [3766] = 3742, [3767] = 3742, - [3768] = 3768, - [3769] = 3749, - [3770] = 3770, - [3771] = 3742, - [3772] = 3749, - [3773] = 3730, - [3774] = 3749, - [3775] = 3750, - [3776] = 3731, - [3777] = 3750, - [3778] = 3750, - [3779] = 3125, - [3780] = 3747, - [3781] = 3746, - [3782] = 3782, - [3783] = 3783, - [3784] = 3784, - [3785] = 3753, - [3786] = 3753, - [3787] = 3787, - [3788] = 3747, - [3789] = 3747, + [3768] = 3735, + [3769] = 3736, + [3770] = 3737, + [3771] = 2762, + [3772] = 3738, + [3773] = 3731, + [3774] = 3739, + [3775] = 3740, + [3776] = 3776, + [3777] = 3738, + [3778] = 3735, + [3779] = 3736, + [3780] = 3737, + [3781] = 3739, + [3782] = 3738, + [3783] = 3739, + [3784] = 3740, + [3785] = 3785, + [3786] = 3740, + [3787] = 3741, + [3788] = 3742, + [3789] = 3741, [3790] = 3790, - [3791] = 3746, - [3792] = 3730, - [3793] = 3770, - [3794] = 3794, - [3795] = 3753, - [3796] = 3750, - [3797] = 3797, - [3798] = 3743, - [3799] = 3770, - [3800] = 3770, - [3801] = 3801, + [3791] = 3791, + [3792] = 3792, + [3793] = 3742, + [3794] = 3731, + [3795] = 3795, + [3796] = 3742, + [3797] = 3731, + [3798] = 3742, + [3799] = 3731, + [3800] = 3731, + [3801] = 3125, [3802] = 3742, - [3803] = 3730, - [3804] = 3804, - [3805] = 3746, - [3806] = 3747, - [3807] = 3753, - [3808] = 3753, - [3809] = 3730, - [3810] = 3731, - [3811] = 3730, - [3812] = 3730, - [3813] = 3730, - [3814] = 3742, - [3815] = 3749, - [3816] = 3118, - [3817] = 3750, + [3803] = 3803, + [3804] = 3741, + [3805] = 3805, + [3806] = 3806, + [3807] = 3731, + [3808] = 3808, + [3809] = 3127, + [3810] = 3117, + [3811] = 3742, + [3812] = 3731, + [3813] = 3813, + [3814] = 3814, + [3815] = 3742, + [3816] = 3731, + [3817] = 3757, [3818] = 3818, - [3819] = 3742, - [3820] = 3820, - [3821] = 3821, - [3822] = 3822, - [3823] = 3823, - [3824] = 3824, - [3825] = 3731, - [3826] = 3747, - [3827] = 3746, - [3828] = 3753, - [3829] = 3747, - [3830] = 3830, + [3819] = 3735, + [3820] = 3736, + [3821] = 3737, + [3822] = 3731, + [3823] = 3735, + [3824] = 3756, + [3825] = 3738, + [3826] = 3739, + [3827] = 3740, + [3828] = 3736, + [3829] = 3737, + [3830] = 3741, [3831] = 3831, - [3832] = 3832, - [3833] = 3770, - [3834] = 3123, - [3835] = 3730, - [3836] = 3749, + [3832] = 3742, + [3833] = 3833, + [3834] = 3834, + [3835] = 3835, + [3836] = 3742, [3837] = 3731, - [3838] = 3730, - [3839] = 3750, - [3840] = 3770, - [3841] = 3730, - [3842] = 3842, - [3843] = 3731, - [3844] = 2744, - [3845] = 3731, - [3846] = 3749, - [3847] = 3847, - [3848] = 3750, - [3849] = 3770, - [3850] = 3749, - [3851] = 3851, - [3852] = 3852, - [3853] = 3731, - [3854] = 3770, - [3855] = 3742, - [3856] = 3765, - [3857] = 3730, - [3858] = 3747, - [3859] = 3859, + [3838] = 3838, + [3839] = 3839, + [3840] = 3840, + [3841] = 3841, + [3842] = 3735, + [3843] = 3736, + [3844] = 3737, + [3845] = 3845, + [3846] = 3738, + [3847] = 3739, + [3848] = 3740, + [3849] = 3849, + [3850] = 3850, + [3851] = 3741, + [3852] = 3742, + [3853] = 3853, + [3854] = 1759, + [3855] = 3855, + [3856] = 3856, + [3857] = 3857, + [3858] = 3858, + [3859] = 3124, [3860] = 3860, [3861] = 3861, [3862] = 3862, @@ -9265,7 +9265,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3866] = 3866, [3867] = 3867, [3868] = 3868, - [3869] = 3869, + [3869] = 3595, [3870] = 3870, [3871] = 3871, [3872] = 3872, @@ -9274,7 +9274,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3875] = 3875, [3876] = 3876, [3877] = 3877, - [3878] = 3878, + [3878] = 3729, [3879] = 3879, [3880] = 3880, [3881] = 3881, @@ -9282,301 +9282,301 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3883] = 3883, [3884] = 3884, [3885] = 3885, - [3886] = 3595, + [3886] = 3886, [3887] = 3887, [3888] = 3888, [3889] = 3889, [3890] = 3890, - [3891] = 3631, + [3891] = 3891, [3892] = 3892, [3893] = 3893, [3894] = 3894, [3895] = 3895, [3896] = 3896, [3897] = 3897, - [3898] = 3898, - [3899] = 3899, - [3900] = 3900, + [3898] = 3140, + [3899] = 3158, + [3900] = 3159, [3901] = 3901, - [3902] = 3902, - [3903] = 3903, - [3904] = 3757, + [3902] = 3743, + [3903] = 3358, + [3904] = 3364, [3905] = 3905, - [3906] = 3906, + [3906] = 3356, [3907] = 3907, [3908] = 3908, - [3909] = 3909, - [3910] = 3896, - [3911] = 3307, - [3912] = 3912, - [3913] = 2490, - [3914] = 2600, - [3915] = 2605, - [3916] = 3292, + [3909] = 2542, + [3910] = 3910, + [3911] = 3911, + [3912] = 3911, + [3913] = 3913, + [3914] = 3914, + [3915] = 3915, + [3916] = 3916, [3917] = 3917, - [3918] = 3353, + [3918] = 3918, [3919] = 3919, - [3920] = 3920, + [3920] = 2524, [3921] = 3921, - [3922] = 3354, + [3922] = 3913, [3923] = 3923, - [3924] = 3346, + [3924] = 3913, [3925] = 3925, [3926] = 3926, - [3927] = 3927, - [3928] = 3923, - [3929] = 3129, - [3930] = 3132, - [3931] = 2472, + [3927] = 3308, + [3928] = 3928, + [3929] = 3929, + [3930] = 3858, + [3931] = 3931, [3932] = 3932, - [3933] = 3128, - [3934] = 3131, - [3935] = 3130, + [3933] = 2584, + [3934] = 3934, + [3935] = 3935, [3936] = 3936, [3937] = 3937, - [3938] = 2542, - [3939] = 2504, - [3940] = 3171, - [3941] = 3158, - [3942] = 3153, - [3943] = 3166, - [3944] = 2560, - [3945] = 3161, - [3946] = 2551, - [3947] = 3368, - [3948] = 3359, + [3938] = 2529, + [3939] = 3939, + [3940] = 3940, + [3941] = 3941, + [3942] = 3942, + [3943] = 3943, + [3944] = 3130, + [3945] = 2571, + [3946] = 3946, + [3947] = 2543, + [3948] = 3948, [3949] = 3949, - [3950] = 3164, - [3951] = 3152, - [3952] = 3160, - [3953] = 3163, - [3954] = 3369, - [3955] = 3133, - [3956] = 3956, + [3950] = 2399, + [3951] = 3951, + [3952] = 3952, + [3953] = 3953, + [3954] = 3954, + [3955] = 3913, + [3956] = 3346, [3957] = 3957, - [3958] = 3958, + [3958] = 3128, [3959] = 3959, - [3960] = 3766, - [3961] = 2391, + [3960] = 3131, + [3961] = 3961, [3962] = 3962, [3963] = 3963, [3964] = 3964, - [3965] = 3965, + [3965] = 3306, [3966] = 3966, - [3967] = 3763, - [3968] = 3968, - [3969] = 3969, + [3967] = 3967, + [3968] = 3943, + [3969] = 2436, [3970] = 3970, - [3971] = 3971, - [3972] = 3972, + [3971] = 3957, + [3972] = 3366, [3973] = 3973, - [3974] = 3974, + [3974] = 3166, [3975] = 3975, [3976] = 3976, - [3977] = 3964, - [3978] = 3896, + [3977] = 3133, + [3978] = 3132, [3979] = 3979, - [3980] = 3896, - [3981] = 3981, - [3982] = 3982, - [3983] = 3983, - [3984] = 3976, - [3985] = 3985, - [3986] = 3986, - [3987] = 3987, - [3988] = 3156, - [3989] = 3989, + [3980] = 3171, + [3981] = 3164, + [3982] = 3795, + [3983] = 3160, + [3984] = 3145, + [3985] = 3151, + [3986] = 3144, + [3987] = 3129, + [3988] = 3363, + [3989] = 2541, [3990] = 3990, - [3991] = 3990, + [3991] = 3991, [3992] = 3992, [3993] = 3993, [3994] = 3994, - [3995] = 3995, - [3996] = 3993, + [3995] = 2584, + [3996] = 3996, [3997] = 3997, [3998] = 3998, [3999] = 3999, - [4000] = 4000, - [4001] = 4001, - [4002] = 3993, + [4000] = 3993, + [4001] = 2541, + [4002] = 4002, [4003] = 4003, - [4004] = 4004, + [4004] = 2436, [4005] = 4005, [4006] = 4006, [4007] = 4007, [4008] = 4008, [4009] = 4009, [4010] = 4010, - [4011] = 3995, + [4011] = 4011, [4012] = 4012, [4013] = 4013, [4014] = 4014, [4015] = 4015, [4016] = 4016, - [4017] = 4017, + [4017] = 4003, [4018] = 4018, [4019] = 4019, - [4020] = 4020, + [4020] = 2524, [4021] = 4021, - [4022] = 4022, + [4022] = 2542, [4023] = 4023, - [4024] = 4024, + [4024] = 2529, [4025] = 4025, [4026] = 4026, - [4027] = 4027, - [4028] = 4028, - [4029] = 4029, + [4027] = 3991, + [4028] = 3991, + [4029] = 3990, [4030] = 4030, [4031] = 4031, - [4032] = 2391, - [4033] = 3993, - [4034] = 3995, - [4035] = 2490, - [4036] = 3989, - [4037] = 3994, - [4038] = 4020, + [4032] = 4032, + [4033] = 3990, + [4034] = 4034, + [4035] = 4035, + [4036] = 4034, + [4037] = 4037, + [4038] = 4026, [4039] = 4039, - [4040] = 4009, - [4041] = 4000, - [4042] = 4016, - [4043] = 3992, - [4044] = 4010, - [4045] = 4001, - [4046] = 4021, - [4047] = 4008, - [4048] = 3863, - [4049] = 3864, - [4050] = 3865, - [4051] = 3989, - [4052] = 3994, - [4053] = 4020, - [4054] = 2600, - [4055] = 4000, - [4056] = 3992, - [4057] = 4010, - [4058] = 4001, + [4040] = 4035, + [4041] = 4041, + [4042] = 3994, + [4043] = 4030, + [4044] = 4005, + [4045] = 4045, + [4046] = 4046, + [4047] = 3996, + [4048] = 4048, + [4049] = 4049, + [4050] = 3884, + [4051] = 3861, + [4052] = 3867, + [4053] = 3990, + [4054] = 4034, + [4055] = 4035, + [4056] = 4026, + [4057] = 4041, + [4058] = 3994, [4059] = 4059, - [4060] = 4008, - [4061] = 3989, - [4062] = 3994, - [4063] = 4020, - [4064] = 4000, - [4065] = 4010, - [4066] = 4001, - [4067] = 2551, - [4068] = 3989, - [4069] = 3994, - [4070] = 4000, - [4071] = 4010, - [4072] = 3989, - [4073] = 4000, - [4074] = 4010, - [4075] = 3989, - [4076] = 4000, - [4077] = 4010, - [4078] = 3989, - [4079] = 4000, - [4080] = 4010, - [4081] = 3989, - [4082] = 4000, - [4083] = 3989, - [4084] = 4000, - [4085] = 3989, - [4086] = 4000, - [4087] = 3989, - [4088] = 3990, + [4060] = 3996, + [4061] = 3990, + [4062] = 4034, + [4063] = 4035, + [4064] = 4026, + [4065] = 3994, + [4066] = 4030, + [4067] = 3990, + [4068] = 4034, + [4069] = 4026, + [4070] = 3994, + [4071] = 4071, + [4072] = 3990, + [4073] = 4026, + [4074] = 3994, + [4075] = 4075, + [4076] = 3990, + [4077] = 4026, + [4078] = 3994, + [4079] = 3990, + [4080] = 4026, + [4081] = 3994, + [4082] = 3990, + [4083] = 4026, + [4084] = 3990, + [4085] = 4026, + [4086] = 4041, + [4087] = 3990, + [4088] = 4026, [4089] = 4089, - [4090] = 4000, - [4091] = 4091, - [4092] = 3989, - [4093] = 4000, - [4094] = 3989, - [4095] = 2472, - [4096] = 4000, - [4097] = 3989, - [4098] = 4000, - [4099] = 3989, - [4100] = 4000, - [4101] = 3989, - [4102] = 4000, - [4103] = 3989, - [4104] = 4000, - [4105] = 3989, - [4106] = 4000, - [4107] = 3989, - [4108] = 3989, - [4109] = 3989, - [4110] = 3989, - [4111] = 4111, - [4112] = 3989, - [4113] = 3989, - [4114] = 3989, - [4115] = 3989, - [4116] = 3989, - [4117] = 3989, - [4118] = 3989, - [4119] = 3989, - [4120] = 3989, - [4121] = 3989, - [4122] = 4122, - [4123] = 3989, - [4124] = 3989, - [4125] = 3989, - [4126] = 3989, - [4127] = 3989, - [4128] = 3989, - [4129] = 3989, - [4130] = 3989, - [4131] = 3989, - [4132] = 3989, - [4133] = 3989, - [4134] = 3989, - [4135] = 3989, - [4136] = 3989, - [4137] = 2504, - [4138] = 4138, - [4139] = 4139, - [4140] = 4140, - [4141] = 4003, - [4142] = 4140, - [4143] = 3864, - [4144] = 3863, - [4145] = 3865, - [4146] = 4146, - [4147] = 3865, - [4148] = 3863, + [4090] = 3990, + [4091] = 4026, + [4092] = 4037, + [4093] = 4093, + [4094] = 3990, + [4095] = 4026, + [4096] = 4096, + [4097] = 3990, + [4098] = 4026, + [4099] = 3998, + [4100] = 3990, + [4101] = 4026, + [4102] = 3990, + [4103] = 4026, + [4104] = 3990, + [4105] = 4026, + [4106] = 4106, + [4107] = 3990, + [4108] = 4026, + [4109] = 3990, + [4110] = 4026, + [4111] = 3990, + [4112] = 3990, + [4113] = 3990, + [4114] = 3990, + [4115] = 3990, + [4116] = 4003, + [4117] = 3990, + [4118] = 3990, + [4119] = 3990, + [4120] = 3990, + [4121] = 3990, + [4122] = 4046, + [4123] = 3990, + [4124] = 3990, + [4125] = 3990, + [4126] = 3990, + [4127] = 3990, + [4128] = 3990, + [4129] = 3990, + [4130] = 3990, + [4131] = 3990, + [4132] = 3990, + [4133] = 3990, + [4134] = 3990, + [4135] = 4039, + [4136] = 3990, + [4137] = 3990, + [4138] = 3990, + [4139] = 3993, + [4140] = 3990, + [4141] = 3990, + [4142] = 3993, + [4143] = 4030, + [4144] = 3861, + [4145] = 3867, + [4146] = 3884, + [4147] = 4147, + [4148] = 4148, [4149] = 4149, - [4150] = 3864, - [4151] = 3863, - [4152] = 3865, - [4153] = 3864, - [4154] = 3864, - [4155] = 3863, - [4156] = 3865, - [4157] = 3863, - [4158] = 4158, + [4150] = 4150, + [4151] = 4151, + [4152] = 4152, + [4153] = 4153, + [4154] = 4154, + [4155] = 3884, + [4156] = 3861, + [4157] = 4157, + [4158] = 3861, [4159] = 4159, [4160] = 4160, - [4161] = 4161, + [4161] = 3861, [4162] = 4162, - [4163] = 4163, - [4164] = 4164, - [4165] = 4165, - [4166] = 3864, - [4167] = 3865, - [4168] = 4168, - [4169] = 3865, - [4170] = 3865, - [4171] = 4171, - [4172] = 3863, - [4173] = 3864, - [4174] = 3864, + [4163] = 3884, + [4164] = 3867, + [4165] = 3884, + [4166] = 4166, + [4167] = 4167, + [4168] = 3884, + [4169] = 3867, + [4170] = 3867, + [4171] = 3884, + [4172] = 3861, + [4173] = 3861, + [4174] = 3867, [4175] = 4175, [4176] = 4176, - [4177] = 4177, - [4178] = 4178, - [4179] = 3863, - [4180] = 4180, + [4177] = 3884, + [4178] = 3867, + [4179] = 3867, + [4180] = 3861, [4181] = 4181, [4182] = 4182, [4183] = 4183, @@ -9594,142 +9594,142 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4195] = 4195, [4196] = 4196, [4197] = 4197, - [4198] = 3301, - [4199] = 3312, - [4200] = 4200, - [4201] = 4200, - [4202] = 4202, - [4203] = 4202, - [4204] = 4200, - [4205] = 4202, - [4206] = 4200, - [4207] = 4202, - [4208] = 4200, - [4209] = 4200, - [4210] = 4202, - [4211] = 4200, - [4212] = 4202, - [4213] = 4200, - [4214] = 4202, - [4215] = 4200, - [4216] = 4202, - [4217] = 4200, - [4218] = 4200, - [4219] = 4202, - [4220] = 4200, - [4221] = 4202, - [4222] = 4202, - [4223] = 4200, - [4224] = 4202, - [4225] = 4202, - [4226] = 4226, + [4198] = 4198, + [4199] = 3324, + [4200] = 3298, + [4201] = 4201, + [4202] = 4201, + [4203] = 4203, + [4204] = 4201, + [4205] = 4203, + [4206] = 4203, + [4207] = 4203, + [4208] = 4201, + [4209] = 4201, + [4210] = 4203, + [4211] = 4201, + [4212] = 4203, + [4213] = 4201, + [4214] = 4203, + [4215] = 4201, + [4216] = 4203, + [4217] = 4203, + [4218] = 4203, + [4219] = 4201, + [4220] = 4203, + [4221] = 4201, + [4222] = 4203, + [4223] = 4201, + [4224] = 4203, + [4225] = 4201, + [4226] = 4201, [4227] = 4227, [4228] = 4228, [4229] = 4229, [4230] = 4230, - [4231] = 4164, + [4231] = 4231, [4232] = 4232, - [4233] = 4233, - [4234] = 4159, - [4235] = 4160, + [4233] = 4148, + [4234] = 4234, + [4235] = 4235, [4236] = 4236, - [4237] = 4161, - [4238] = 4162, + [4237] = 4152, + [4238] = 4238, [4239] = 4239, - [4240] = 4163, + [4240] = 4240, [4241] = 4241, [4242] = 4242, [4243] = 4243, [4244] = 4244, [4245] = 4245, - [4246] = 4175, - [4247] = 4176, - [4248] = 4248, + [4246] = 4246, + [4247] = 4247, + [4248] = 4154, [4249] = 4249, [4250] = 4250, [4251] = 4251, [4252] = 4252, [4253] = 4253, - [4254] = 4146, - [4255] = 4178, - [4256] = 4165, - [4257] = 4257, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 4261, - [4262] = 3937, - [4263] = 3932, - [4264] = 4164, + [4254] = 4254, + [4255] = 4175, + [4256] = 4176, + [4257] = 4149, + [4258] = 4150, + [4259] = 4151, + [4260] = 4157, + [4261] = 4166, + [4262] = 4147, + [4263] = 3963, + [4264] = 3951, [4265] = 4265, - [4266] = 4176, - [4267] = 4265, - [4268] = 4268, - [4269] = 4159, - [4270] = 4160, - [4271] = 4161, - [4272] = 4162, - [4273] = 4163, - [4274] = 4164, - [4275] = 4146, - [4276] = 4178, - [4277] = 4165, - [4278] = 4278, - [4279] = 4175, - [4280] = 4280, - [4281] = 4159, - [4282] = 4280, - [4283] = 3932, - [4284] = 4160, - [4285] = 4158, - [4286] = 4286, - [4287] = 4280, + [4266] = 4152, + [4267] = 4267, + [4268] = 4154, + [4269] = 4157, + [4270] = 4166, + [4271] = 4175, + [4272] = 4176, + [4273] = 4147, + [4274] = 4149, + [4275] = 4148, + [4276] = 3951, + [4277] = 4150, + [4278] = 4159, + [4279] = 4151, + [4280] = 4154, + [4281] = 4157, + [4282] = 4282, + [4283] = 4283, + [4284] = 4166, + [4285] = 4285, + [4286] = 4147, + [4287] = 4287, [4288] = 4288, - [4289] = 4161, - [4290] = 4290, - [4291] = 4162, - [4292] = 4163, - [4293] = 4164, - [4294] = 4146, - [4295] = 3937, - [4296] = 4175, - [4297] = 4176, - [4298] = 4178, - [4299] = 4165, - [4300] = 4165, - [4301] = 4301, - [4302] = 4268, - [4303] = 4178, - [4304] = 4280, - [4305] = 4159, + [4289] = 4175, + [4290] = 4148, + [4291] = 4152, + [4292] = 4152, + [4293] = 4176, + [4294] = 4265, + [4295] = 4282, + [4296] = 4149, + [4297] = 3963, + [4298] = 4298, + [4299] = 4150, + [4300] = 4265, + [4301] = 4151, + [4302] = 4282, + [4303] = 4282, + [4304] = 4304, + [4305] = 4166, [4306] = 4306, - [4307] = 4268, - [4308] = 4308, - [4309] = 4265, - [4310] = 4310, + [4307] = 4307, + [4308] = 4154, + [4309] = 4309, + [4310] = 4157, [4311] = 4311, - [4312] = 4176, + [4312] = 4312, [4313] = 4313, - [4314] = 4314, - [4315] = 4268, - [4316] = 4160, - [4317] = 4317, - [4318] = 4161, + [4314] = 4265, + [4315] = 4148, + [4316] = 4282, + [4317] = 4147, + [4318] = 4318, [4319] = 4319, - [4320] = 4320, - [4321] = 4162, - [4322] = 4163, - [4323] = 4323, - [4324] = 4324, - [4325] = 4175, - [4326] = 4146, - [4327] = 4268, - [4328] = 4265, - [4329] = 4158, - [4330] = 817, - [4331] = 826, - [4332] = 824, - [4333] = 827, + [4320] = 4175, + [4321] = 4321, + [4322] = 4176, + [4323] = 4285, + [4324] = 4149, + [4325] = 4150, + [4326] = 4151, + [4327] = 4327, + [4328] = 4285, + [4329] = 4285, + [4330] = 4330, + [4331] = 4331, + [4332] = 4332, + [4333] = 814, [4334] = 4334, [4335] = 4335, [4336] = 4336, @@ -9737,745 +9737,745 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4338] = 4338, [4339] = 4339, [4340] = 4340, - [4341] = 4341, + [4341] = 4319, [4342] = 4342, [4343] = 4343, [4344] = 4344, - [4345] = 1645, - [4346] = 4338, + [4345] = 4345, + [4346] = 4346, [4347] = 4347, [4348] = 4348, [4349] = 4349, [4350] = 4350, - [4351] = 4338, - [4352] = 4352, - [4353] = 836, + [4351] = 824, + [4352] = 4350, + [4353] = 4353, [4354] = 4354, [4355] = 4355, [4356] = 4356, [4357] = 4357, [4358] = 4358, - [4359] = 4288, + [4359] = 4159, [4360] = 4360, [4361] = 4361, - [4362] = 4362, - [4363] = 4363, - [4364] = 4364, + [4362] = 1644, + [4363] = 829, + [4364] = 830, [4365] = 4365, - [4366] = 4366, + [4366] = 4162, [4367] = 4367, [4368] = 4368, - [4369] = 826, - [4370] = 4370, + [4369] = 831, + [4370] = 830, [4371] = 4371, [4372] = 4372, [4373] = 4373, [4374] = 4374, - [4375] = 4375, - [4376] = 4171, + [4375] = 4350, + [4376] = 4376, [4377] = 4377, [4378] = 4378, [4379] = 4379, [4380] = 4380, - [4381] = 3301, - [4382] = 4382, - [4383] = 862, + [4381] = 4381, + [4382] = 898, + [4383] = 4383, [4384] = 4384, - [4385] = 4385, - [4386] = 900, - [4387] = 4387, - [4388] = 4388, - [4389] = 4389, - [4390] = 4162, + [4385] = 4246, + [4386] = 4247, + [4387] = 4249, + [4388] = 4356, + [4389] = 901, + [4390] = 878, [4391] = 4391, - [4392] = 4163, - [4393] = 4164, - [4394] = 4146, - [4395] = 4395, - [4396] = 4178, - [4397] = 4165, - [4398] = 901, - [4399] = 4251, - [4400] = 4400, + [4392] = 4392, + [4393] = 4393, + [4394] = 4394, + [4395] = 881, + [4396] = 890, + [4397] = 903, + [4398] = 4398, + [4399] = 857, + [4400] = 864, [4401] = 4401, - [4402] = 881, - [4403] = 882, - [4404] = 883, - [4405] = 884, - [4406] = 885, - [4407] = 886, - [4408] = 890, + [4402] = 877, + [4403] = 4403, + [4404] = 4404, + [4405] = 4405, + [4406] = 4406, + [4407] = 4407, + [4408] = 4408, [4409] = 4409, [4410] = 4410, - [4411] = 839, - [4412] = 890, - [4413] = 841, - [4414] = 842, - [4415] = 843, + [4411] = 4411, + [4412] = 4412, + [4413] = 4413, + [4414] = 4414, + [4415] = 4415, [4416] = 4416, [4417] = 4417, - [4418] = 844, - [4419] = 851, + [4418] = 4418, + [4419] = 903, [4420] = 4420, - [4421] = 4421, + [4421] = 857, [4422] = 4422, - [4423] = 857, - [4424] = 862, - [4425] = 4258, - [4426] = 881, - [4427] = 900, - [4428] = 901, - [4429] = 882, - [4430] = 4430, - [4431] = 4175, - [4432] = 3312, - [4433] = 4257, - [4434] = 4236, - [4435] = 4435, - [4436] = 892, - [4437] = 4252, - [4438] = 893, - [4439] = 894, + [4423] = 4242, + [4424] = 4232, + [4425] = 864, + [4426] = 841, + [4427] = 877, + [4428] = 4428, + [4429] = 842, + [4430] = 843, + [4431] = 4240, + [4432] = 844, + [4433] = 4239, + [4434] = 4238, + [4435] = 4241, + [4436] = 845, + [4437] = 846, + [4438] = 4235, + [4439] = 847, [4440] = 4440, - [4441] = 892, + [4441] = 4441, [4442] = 4442, - [4443] = 893, + [4443] = 4443, [4444] = 4444, [4445] = 4445, - [4446] = 895, + [4446] = 856, [4447] = 4447, [4448] = 4448, [4449] = 4449, - [4450] = 4261, - [4451] = 4451, - [4452] = 4241, - [4453] = 896, - [4454] = 4176, + [4450] = 4450, + [4451] = 4391, + [4452] = 4452, + [4453] = 4453, + [4454] = 4236, [4455] = 4455, - [4456] = 4456, + [4456] = 4250, [4457] = 4457, - [4458] = 4458, - [4459] = 4459, - [4460] = 897, + [4458] = 3298, + [4459] = 855, + [4460] = 4460, [4461] = 4461, - [4462] = 4339, + [4462] = 879, [4463] = 4463, [4464] = 4464, - [4465] = 894, - [4466] = 4466, - [4467] = 4467, - [4468] = 895, - [4469] = 4469, + [4465] = 848, + [4466] = 899, + [4467] = 4251, + [4468] = 4252, + [4469] = 4253, [4470] = 4470, - [4471] = 4471, - [4472] = 4472, - [4473] = 896, - [4474] = 4249, - [4475] = 4475, - [4476] = 4476, - [4477] = 4250, - [4478] = 4478, - [4479] = 4479, - [4480] = 897, - [4481] = 4481, - [4482] = 4482, + [4471] = 4152, + [4472] = 4234, + [4473] = 4473, + [4474] = 4474, + [4475] = 901, + [4476] = 867, + [4477] = 3324, + [4478] = 878, + [4479] = 879, + [4480] = 4480, + [4481] = 881, + [4482] = 890, [4483] = 4483, - [4484] = 4248, - [4485] = 4159, - [4486] = 4486, - [4487] = 4487, - [4488] = 4160, - [4489] = 883, - [4490] = 4490, - [4491] = 4491, - [4492] = 884, - [4493] = 4244, + [4484] = 898, + [4485] = 4485, + [4486] = 4175, + [4487] = 4176, + [4488] = 4488, + [4489] = 4489, + [4490] = 899, + [4491] = 4149, + [4492] = 4492, + [4493] = 4493, [4494] = 4494, - [4495] = 885, - [4496] = 886, - [4497] = 4253, - [4498] = 4259, - [4499] = 4232, - [4500] = 4233, - [4501] = 4501, - [4502] = 4502, + [4495] = 4495, + [4496] = 4150, + [4497] = 4151, + [4498] = 4498, + [4499] = 4154, + [4500] = 4157, + [4501] = 4166, + [4502] = 4147, [4503] = 4503, [4504] = 4504, - [4505] = 4260, - [4506] = 4506, - [4507] = 4507, - [4508] = 4382, - [4509] = 857, - [4510] = 4510, - [4511] = 4511, + [4505] = 4505, + [4506] = 4244, + [4507] = 4243, + [4508] = 4254, + [4509] = 4245, + [4510] = 848, + [4511] = 849, [4512] = 4512, - [4513] = 4161, - [4514] = 4514, - [4515] = 839, - [4516] = 841, - [4517] = 842, - [4518] = 4243, - [4519] = 843, - [4520] = 844, - [4521] = 851, - [4522] = 4242, + [4513] = 855, + [4514] = 856, + [4515] = 841, + [4516] = 842, + [4517] = 849, + [4518] = 843, + [4519] = 844, + [4520] = 845, + [4521] = 846, + [4522] = 847, [4523] = 4523, - [4524] = 4245, + [4524] = 4524, [4525] = 4525, - [4526] = 4239, - [4527] = 4527, - [4528] = 4527, - [4529] = 4278, - [4530] = 3625, - [4531] = 4531, - [4532] = 4476, - [4533] = 4301, - [4534] = 4534, - [4535] = 4535, - [4536] = 3759, - [4537] = 836, - [4538] = 817, + [4526] = 867, + [4527] = 4148, + [4528] = 4283, + [4529] = 4529, + [4530] = 4530, + [4531] = 830, + [4532] = 3745, + [4533] = 4529, + [4534] = 4309, + [4535] = 4313, + [4536] = 831, + [4537] = 829, + [4538] = 814, [4539] = 824, - [4540] = 827, - [4541] = 4175, - [4542] = 4310, - [4543] = 4314, - [4544] = 4544, - [4545] = 4527, - [4546] = 4546, + [4540] = 4148, + [4541] = 4541, + [4542] = 4327, + [4543] = 4543, + [4544] = 4541, + [4545] = 4545, + [4546] = 4287, [4547] = 4547, - [4548] = 4548, - [4549] = 4549, - [4550] = 4317, - [4551] = 4551, - [4552] = 826, - [4553] = 4531, - [4554] = 4313, - [4555] = 4389, - [4556] = 4290, - [4557] = 4527, - [4558] = 1645, + [4548] = 4494, + [4549] = 3686, + [4550] = 4485, + [4551] = 4541, + [4552] = 4552, + [4553] = 4553, + [4554] = 4541, + [4555] = 4298, + [4556] = 4321, + [4557] = 4557, + [4558] = 4558, [4559] = 4559, [4560] = 4560, [4561] = 4561, - [4562] = 4562, - [4563] = 4563, - [4564] = 4311, - [4565] = 4561, - [4566] = 4561, - [4567] = 4567, + [4562] = 4267, + [4563] = 1644, + [4564] = 4564, + [4565] = 4565, + [4566] = 4566, + [4567] = 4267, [4568] = 4561, [4569] = 4569, - [4570] = 4308, - [4571] = 4308, - [4572] = 4572, - [4573] = 4573, + [4570] = 4561, + [4571] = 4561, + [4572] = 4311, + [4573] = 4346, [4574] = 4574, - [4575] = 4575, - [4576] = 4576, - [4577] = 1772, - [4578] = 3859, - [4579] = 3878, - [4580] = 3879, - [4581] = 3872, - [4582] = 3882, - [4583] = 3860, - [4584] = 3861, - [4585] = 3862, - [4586] = 4586, - [4587] = 3875, + [4575] = 3889, + [4576] = 3892, + [4577] = 3862, + [4578] = 4578, + [4579] = 4579, + [4580] = 3880, + [4581] = 4581, + [4582] = 4582, + [4583] = 4583, + [4584] = 4584, + [4585] = 4585, + [4586] = 4445, + [4587] = 1759, [4588] = 4588, - [4589] = 3873, - [4590] = 4362, - [4591] = 4350, - [4592] = 4354, - [4593] = 4358, - [4594] = 4594, - [4595] = 4364, - [4596] = 4367, - [4597] = 4370, - [4598] = 4372, - [4599] = 4334, - [4600] = 4335, - [4601] = 4337, - [4602] = 3889, - [4603] = 3890, - [4604] = 4344, - [4605] = 881, - [4606] = 882, - [4607] = 3312, + [4589] = 3894, + [4590] = 3882, + [4591] = 4591, + [4592] = 4360, + [4593] = 4343, + [4594] = 4345, + [4595] = 4595, + [4596] = 4347, + [4597] = 4376, + [4598] = 4377, + [4599] = 3881, + [4600] = 4378, + [4601] = 4380, + [4602] = 4340, + [4603] = 4348, + [4604] = 3887, + [4605] = 4368, + [4606] = 3888, + [4607] = 3860, [4608] = 4608, - [4609] = 883, - [4610] = 884, - [4611] = 885, - [4612] = 886, - [4613] = 4613, - [4614] = 4614, - [4615] = 839, - [4616] = 841, - [4617] = 842, - [4618] = 843, - [4619] = 844, - [4620] = 851, - [4621] = 857, - [4622] = 862, - [4623] = 900, + [4609] = 3896, + [4610] = 4610, + [4611] = 3886, + [4612] = 4612, + [4613] = 867, + [4614] = 879, + [4615] = 4615, + [4616] = 848, + [4617] = 849, + [4618] = 855, + [4619] = 856, + [4620] = 3745, + [4621] = 4621, + [4622] = 898, + [4623] = 899, [4624] = 901, - [4625] = 3881, - [4626] = 4466, - [4627] = 4627, - [4628] = 4628, - [4629] = 3883, - [4630] = 4416, - [4631] = 4417, - [4632] = 3301, - [4633] = 4633, - [4634] = 4634, + [4625] = 878, + [4626] = 881, + [4627] = 890, + [4628] = 903, + [4629] = 857, + [4630] = 864, + [4631] = 877, + [4632] = 3298, + [4633] = 4473, + [4634] = 4474, [4635] = 4635, - [4636] = 4636, - [4637] = 4637, + [4636] = 3324, + [4637] = 3891, [4638] = 4638, - [4639] = 3759, + [4639] = 4639, [4640] = 4640, - [4641] = 3866, - [4642] = 4401, - [4643] = 3312, - [4644] = 4350, - [4645] = 4350, - [4646] = 3301, - [4647] = 4354, - [4648] = 4358, - [4649] = 4354, - [4650] = 4445, - [4651] = 4358, - [4652] = 4444, - [4653] = 4364, - [4654] = 4367, - [4655] = 4456, - [4656] = 4458, - [4657] = 4370, - [4658] = 4467, - [4659] = 4372, - [4660] = 4660, - [4661] = 4478, - [4662] = 4334, - [4663] = 885, - [4664] = 4481, - [4665] = 4482, - [4666] = 4506, - [4667] = 4507, - [4668] = 4449, - [4669] = 4455, - [4670] = 4335, - [4671] = 4337, - [4672] = 4469, - [4673] = 4471, - [4674] = 4344, - [4675] = 4334, - [4676] = 4335, - [4677] = 4475, - [4678] = 4479, - [4679] = 4504, - [4680] = 4525, - [4681] = 4681, - [4682] = 4337, - [4683] = 4400, - [4684] = 4372, - [4685] = 4430, - [4686] = 886, - [4687] = 4344, - [4688] = 4362, - [4689] = 839, - [4690] = 4690, - [4691] = 890, - [4692] = 892, - [4693] = 893, - [4694] = 894, - [4695] = 895, - [4696] = 896, - [4697] = 4350, - [4698] = 4354, - [4699] = 4358, - [4700] = 4700, - [4701] = 4701, - [4702] = 897, - [4703] = 841, - [4704] = 3875, - [4705] = 842, - [4706] = 843, - [4707] = 844, - [4708] = 4362, - [4709] = 4362, - [4710] = 4350, - [4711] = 851, - [4712] = 4354, - [4713] = 4364, - [4714] = 883, - [4715] = 4370, - [4716] = 4372, - [4717] = 4350, - [4718] = 4354, - [4719] = 4358, - [4720] = 4364, - [4721] = 4367, - [4722] = 4370, - [4723] = 4372, - [4724] = 4334, - [4725] = 4335, - [4726] = 4337, - [4727] = 4334, - [4728] = 4335, - [4729] = 4344, - [4730] = 4337, - [4731] = 4731, - [4732] = 4344, - [4733] = 3875, - [4734] = 4358, - [4735] = 4364, - [4736] = 4367, - [4737] = 4370, - [4738] = 4738, - [4739] = 4372, - [4740] = 4344, - [4741] = 857, - [4742] = 4334, - [4743] = 4335, - [4744] = 4337, - [4745] = 4745, - [4746] = 4746, - [4747] = 4334, - [4748] = 4335, - [4749] = 4700, - [4750] = 1772, - [4751] = 4344, - [4752] = 4752, - [4753] = 4362, - [4754] = 4337, - [4755] = 862, - [4756] = 900, - [4757] = 4350, - [4758] = 4354, - [4759] = 4358, - [4760] = 901, - [4761] = 4362, - [4762] = 4762, - [4763] = 4364, - [4764] = 4367, - [4765] = 4362, - [4766] = 884, - [4767] = 4370, - [4768] = 881, - [4769] = 4364, - [4770] = 4367, - [4771] = 4370, - [4772] = 4372, - [4773] = 882, - [4774] = 4367, - [4775] = 842, - [4776] = 4445, - [4777] = 857, - [4778] = 862, - [4779] = 900, - [4780] = 901, - [4781] = 4430, - [4782] = 4782, - [4783] = 900, - [4784] = 901, - [4785] = 4444, - [4786] = 4456, - [4787] = 4458, + [4641] = 3875, + [4642] = 3872, + [4643] = 881, + [4644] = 4380, + [4645] = 4645, + [4646] = 4392, + [4647] = 4378, + [4648] = 4380, + [4649] = 4360, + [4650] = 4393, + [4651] = 4394, + [4652] = 4398, + [4653] = 4653, + [4654] = 4340, + [4655] = 4346, + [4656] = 4348, + [4657] = 877, + [4658] = 4401, + [4659] = 4368, + [4660] = 4377, + [4661] = 4403, + [4662] = 4404, + [4663] = 4406, + [4664] = 4407, + [4665] = 4665, + [4666] = 4409, + [4667] = 4410, + [4668] = 4668, + [4669] = 848, + [4670] = 4411, + [4671] = 4412, + [4672] = 4345, + [4673] = 4413, + [4674] = 4414, + [4675] = 899, + [4676] = 4360, + [4677] = 898, + [4678] = 4417, + [4679] = 4418, + [4680] = 4343, + [4681] = 4420, + [4682] = 4422, + [4683] = 4347, + [4684] = 4368, + [4685] = 4347, + [4686] = 4378, + [4687] = 4428, + [4688] = 4360, + [4689] = 3324, + [4690] = 4376, + [4691] = 4343, + [4692] = 4345, + [4693] = 4343, + [4694] = 4694, + [4695] = 4347, + [4696] = 4377, + [4697] = 4340, + [4698] = 4346, + [4699] = 4348, + [4700] = 4340, + [4701] = 4345, + [4702] = 4347, + [4703] = 903, + [4704] = 4380, + [4705] = 4348, + [4706] = 4360, + [4707] = 4368, + [4708] = 4345, + [4709] = 4709, + [4710] = 890, + [4711] = 856, + [4712] = 901, + [4713] = 4713, + [4714] = 4340, + [4715] = 4346, + [4716] = 4347, + [4717] = 4345, + [4718] = 4376, + [4719] = 4343, + [4720] = 4343, + [4721] = 4360, + [4722] = 4722, + [4723] = 4376, + [4724] = 4368, + [4725] = 4377, + [4726] = 855, + [4727] = 4343, + [4728] = 4348, + [4729] = 4345, + [4730] = 4347, + [4731] = 4376, + [4732] = 4377, + [4733] = 3891, + [4734] = 4378, + [4735] = 4380, + [4736] = 4736, + [4737] = 849, + [4738] = 3891, + [4739] = 857, + [4740] = 4368, + [4741] = 1759, + [4742] = 878, + [4743] = 4378, + [4744] = 4340, + [4745] = 4346, + [4746] = 3298, + [4747] = 867, + [4748] = 879, + [4749] = 4348, + [4750] = 4383, + [4751] = 864, + [4752] = 4376, + [4753] = 841, + [4754] = 842, + [4755] = 843, + [4756] = 844, + [4757] = 845, + [4758] = 846, + [4759] = 847, + [4760] = 4360, + [4761] = 4340, + [4762] = 4346, + [4763] = 4376, + [4764] = 4377, + [4765] = 4368, + [4766] = 4766, + [4767] = 4736, + [4768] = 4768, + [4769] = 4348, + [4770] = 4377, + [4771] = 4378, + [4772] = 4380, + [4773] = 4378, + [4774] = 4380, + [4775] = 4346, + [4776] = 4776, + [4777] = 841, + [4778] = 842, + [4779] = 4401, + [4780] = 846, + [4781] = 4403, + [4782] = 4404, + [4783] = 4406, + [4784] = 4407, + [4785] = 3298, + [4786] = 4786, + [4787] = 4383, [4788] = 4788, - [4789] = 4467, - [4790] = 4478, - [4791] = 4478, - [4792] = 4792, - [4793] = 4481, - [4794] = 4482, - [4795] = 4506, - [4796] = 4507, - [4797] = 4481, - [4798] = 4482, - [4799] = 4400, - [4800] = 4449, - [4801] = 4455, - [4802] = 3312, - [4803] = 4506, - [4804] = 4469, - [4805] = 4471, - [4806] = 890, - [4807] = 4807, - [4808] = 4808, - [4809] = 3301, - [4810] = 4475, - [4811] = 4479, - [4812] = 857, - [4813] = 4504, - [4814] = 4525, - [4815] = 892, - [4816] = 4400, - [4817] = 893, - [4818] = 894, - [4819] = 895, - [4820] = 4401, - [4821] = 3312, - [4822] = 862, - [4823] = 900, - [4824] = 901, - [4825] = 896, - [4826] = 4782, - [4827] = 4507, - [4828] = 4430, - [4829] = 897, - [4830] = 3301, - [4831] = 4449, - [4832] = 4444, - [4833] = 881, - [4834] = 882, - [4835] = 4455, - [4836] = 4456, - [4837] = 4458, - [4838] = 883, - [4839] = 884, - [4840] = 885, - [4841] = 886, - [4842] = 839, - [4843] = 841, - [4844] = 4507, - [4845] = 843, - [4846] = 844, - [4847] = 851, - [4848] = 4444, - [4849] = 4469, - [4850] = 857, - [4851] = 862, - [4852] = 900, - [4853] = 901, - [4854] = 4471, - [4855] = 4475, - [4856] = 4479, - [4857] = 4504, - [4858] = 4525, - [4859] = 4400, - [4860] = 4401, - [4861] = 4449, - [4862] = 4455, - [4863] = 881, - [4864] = 4469, - [4865] = 4471, - [4866] = 882, - [4867] = 4475, - [4868] = 4479, - [4869] = 4401, - [4870] = 4430, - [4871] = 4871, - [4872] = 4456, - [4873] = 3312, - [4874] = 3301, - [4875] = 4875, - [4876] = 4876, - [4877] = 4445, - [4878] = 881, - [4879] = 4504, - [4880] = 4525, - [4881] = 4458, - [4882] = 4400, - [4883] = 882, - [4884] = 4444, - [4885] = 883, - [4886] = 890, - [4887] = 4456, - [4888] = 4458, - [4889] = 4808, - [4890] = 892, - [4891] = 893, - [4892] = 4892, - [4893] = 894, - [4894] = 895, - [4895] = 896, - [4896] = 897, - [4897] = 890, - [4898] = 892, - [4899] = 893, - [4900] = 4445, - [4901] = 894, - [4902] = 895, - [4903] = 896, - [4904] = 897, - [4905] = 4467, - [4906] = 884, - [4907] = 4478, - [4908] = 4481, - [4909] = 4482, - [4910] = 4506, - [4911] = 4507, - [4912] = 4444, - [4913] = 839, - [4914] = 890, - [4915] = 4456, - [4916] = 4458, - [4917] = 4467, - [4918] = 892, - [4919] = 893, - [4920] = 4478, - [4921] = 894, - [4922] = 4449, - [4923] = 4455, - [4924] = 896, - [4925] = 4481, - [4926] = 897, - [4927] = 4469, - [4928] = 4471, - [4929] = 890, - [4930] = 4482, - [4931] = 4475, - [4932] = 4479, - [4933] = 4506, - [4934] = 4507, - [4935] = 4449, - [4936] = 4455, - [4937] = 892, - [4938] = 893, - [4939] = 4469, - [4940] = 4504, - [4941] = 4525, - [4942] = 894, - [4943] = 4400, - [4944] = 4471, - [4945] = 895, - [4946] = 896, - [4947] = 4475, - [4948] = 4479, - [4949] = 4430, - [4950] = 4504, - [4951] = 4525, - [4952] = 897, - [4953] = 4400, - [4954] = 4401, - [4955] = 4401, - [4956] = 4401, - [4957] = 885, - [4958] = 4430, - [4959] = 4681, - [4960] = 886, - [4961] = 4430, - [4962] = 4467, - [4963] = 4963, - [4964] = 839, - [4965] = 841, - [4966] = 842, - [4967] = 883, - [4968] = 4449, - [4969] = 884, - [4970] = 885, - [4971] = 886, - [4972] = 4455, - [4973] = 841, - [4974] = 4974, + [4789] = 4409, + [4790] = 4410, + [4791] = 857, + [4792] = 864, + [4793] = 4411, + [4794] = 4412, + [4795] = 877, + [4796] = 4413, + [4797] = 4414, + [4798] = 847, + [4799] = 4414, + [4800] = 4417, + [4801] = 4418, + [4802] = 843, + [4803] = 4420, + [4804] = 4422, + [4805] = 3324, + [4806] = 4428, + [4807] = 867, + [4808] = 879, + [4809] = 867, + [4810] = 879, + [4811] = 898, + [4812] = 848, + [4813] = 849, + [4814] = 855, + [4815] = 856, + [4816] = 848, + [4817] = 4817, + [4818] = 898, + [4819] = 849, + [4820] = 855, + [4821] = 898, + [4822] = 899, + [4823] = 856, + [4824] = 867, + [4825] = 901, + [4826] = 878, + [4827] = 881, + [4828] = 890, + [4829] = 4383, + [4830] = 879, + [4831] = 4422, + [4832] = 4398, + [4833] = 903, + [4834] = 857, + [4835] = 864, + [4836] = 877, + [4837] = 4392, + [4838] = 4401, + [4839] = 4393, + [4840] = 4394, + [4841] = 4398, + [4842] = 4417, + [4843] = 899, + [4844] = 4418, + [4845] = 901, + [4846] = 899, + [4847] = 4403, + [4848] = 898, + [4849] = 899, + [4850] = 4398, + [4851] = 901, + [4852] = 878, + [4853] = 881, + [4854] = 4401, + [4855] = 890, + [4856] = 4420, + [4857] = 878, + [4858] = 4401, + [4859] = 4403, + [4860] = 4403, + [4861] = 4404, + [4862] = 4404, + [4863] = 4406, + [4864] = 4406, + [4865] = 4407, + [4866] = 4407, + [4867] = 848, + [4868] = 4383, + [4869] = 4409, + [4870] = 4410, + [4871] = 849, + [4872] = 855, + [4873] = 4411, + [4874] = 4412, + [4875] = 856, + [4876] = 4413, + [4877] = 4414, + [4878] = 4417, + [4879] = 4418, + [4880] = 4420, + [4881] = 4422, + [4882] = 881, + [4883] = 3298, + [4884] = 890, + [4885] = 4404, + [4886] = 4406, + [4887] = 4407, + [4888] = 4428, + [4889] = 903, + [4890] = 857, + [4891] = 864, + [4892] = 877, + [4893] = 4392, + [4894] = 3324, + [4895] = 4392, + [4896] = 4393, + [4897] = 4394, + [4898] = 867, + [4899] = 879, + [4900] = 4900, + [4901] = 4422, + [4902] = 4392, + [4903] = 848, + [4904] = 849, + [4905] = 855, + [4906] = 856, + [4907] = 898, + [4908] = 899, + [4909] = 4393, + [4910] = 901, + [4911] = 878, + [4912] = 881, + [4913] = 848, + [4914] = 4394, + [4915] = 867, + [4916] = 890, + [4917] = 898, + [4918] = 899, + [4919] = 901, + [4920] = 878, + [4921] = 881, + [4922] = 890, + [4923] = 4398, + [4924] = 4817, + [4925] = 4401, + [4926] = 903, + [4927] = 4403, + [4928] = 857, + [4929] = 4404, + [4930] = 4406, + [4931] = 864, + [4932] = 877, + [4933] = 4407, + [4934] = 4653, + [4935] = 4393, + [4936] = 849, + [4937] = 855, + [4938] = 856, + [4939] = 903, + [4940] = 4940, + [4941] = 857, + [4942] = 864, + [4943] = 877, + [4944] = 901, + [4945] = 4394, + [4946] = 4428, + [4947] = 878, + [4948] = 903, + [4949] = 857, + [4950] = 3298, + [4951] = 864, + [4952] = 881, + [4953] = 3298, + [4954] = 4954, + [4955] = 3324, + [4956] = 877, + [4957] = 3298, + [4958] = 4409, + [4959] = 4410, + [4960] = 4411, + [4961] = 4412, + [4962] = 4413, + [4963] = 4414, + [4964] = 879, + [4965] = 4653, + [4966] = 841, + [4967] = 4967, + [4968] = 4409, + [4969] = 4410, + [4970] = 890, + [4971] = 3324, + [4972] = 841, + [4973] = 4383, + [4974] = 844, [4975] = 842, - [4976] = 843, - [4977] = 4977, - [4978] = 881, - [4979] = 882, - [4980] = 843, - [4981] = 844, - [4982] = 851, - [4983] = 4469, - [4984] = 881, - [4985] = 882, - [4986] = 883, - [4987] = 884, - [4988] = 885, - [4989] = 886, - [4990] = 4471, - [4991] = 839, - [4992] = 841, - [4993] = 842, - [4994] = 843, - [4995] = 844, - [4996] = 4445, - [4997] = 844, - [4998] = 851, - [4999] = 857, - [5000] = 862, - [5001] = 900, - [5002] = 901, - [5003] = 3312, - [5004] = 3301, - [5005] = 881, - [5006] = 882, - [5007] = 4504, - [5008] = 4475, - [5009] = 851, - [5010] = 883, - [5011] = 883, - [5012] = 884, - [5013] = 885, - [5014] = 886, - [5015] = 884, - [5016] = 885, - [5017] = 886, - [5018] = 4479, - [5019] = 890, - [5020] = 839, - [5021] = 841, - [5022] = 842, - [5023] = 843, - [5024] = 844, - [5025] = 851, - [5026] = 892, - [5027] = 4444, - [5028] = 857, - [5029] = 893, - [5030] = 862, - [5031] = 894, - [5032] = 900, - [5033] = 4456, - [5034] = 901, - [5035] = 4458, - [5036] = 895, - [5037] = 896, - [5038] = 3312, - [5039] = 5039, - [5040] = 897, - [5041] = 4467, - [5042] = 4445, - [5043] = 857, - [5044] = 4525, - [5045] = 4445, - [5046] = 3301, - [5047] = 4681, - [5048] = 4807, - [5049] = 4478, - [5050] = 839, - [5051] = 4506, - [5052] = 4467, - [5053] = 841, - [5054] = 842, - [5055] = 4478, - [5056] = 843, - [5057] = 844, - [5058] = 4481, - [5059] = 4482, - [5060] = 4506, - [5061] = 4507, - [5062] = 851, - [5063] = 862, - [5064] = 4481, - [5065] = 4482, - [5066] = 895, - [5067] = 5067, + [4976] = 4383, + [4977] = 843, + [4978] = 844, + [4979] = 845, + [4980] = 846, + [4981] = 847, + [4982] = 841, + [4983] = 842, + [4984] = 843, + [4985] = 844, + [4986] = 845, + [4987] = 846, + [4988] = 847, + [4989] = 4411, + [4990] = 4412, + [4991] = 4417, + [4992] = 4418, + [4993] = 3324, + [4994] = 4420, + [4995] = 842, + [4996] = 843, + [4997] = 4997, + [4998] = 4413, + [4999] = 4414, + [5000] = 4392, + [5001] = 844, + [5002] = 4393, + [5003] = 4394, + [5004] = 4422, + [5005] = 5005, + [5006] = 4398, + [5007] = 4383, + [5008] = 4428, + [5009] = 4401, + [5010] = 4403, + [5011] = 4404, + [5012] = 4406, + [5013] = 4407, + [5014] = 4997, + [5015] = 845, + [5016] = 846, + [5017] = 4392, + [5018] = 5018, + [5019] = 4409, + [5020] = 4410, + [5021] = 4411, + [5022] = 4428, + [5023] = 4412, + [5024] = 4393, + [5025] = 4394, + [5026] = 841, + [5027] = 842, + [5028] = 843, + [5029] = 844, + [5030] = 845, + [5031] = 846, + [5032] = 847, + [5033] = 841, + [5034] = 842, + [5035] = 843, + [5036] = 844, + [5037] = 845, + [5038] = 846, + [5039] = 847, + [5040] = 867, + [5041] = 879, + [5042] = 4409, + [5043] = 847, + [5044] = 4410, + [5045] = 4417, + [5046] = 848, + [5047] = 849, + [5048] = 855, + [5049] = 4413, + [5050] = 856, + [5051] = 5018, + [5052] = 4411, + [5053] = 4414, + [5054] = 4417, + [5055] = 4418, + [5056] = 4418, + [5057] = 4420, + [5058] = 4422, + [5059] = 5059, + [5060] = 4428, + [5061] = 903, + [5062] = 4412, + [5063] = 4398, + [5064] = 4420, + [5065] = 4413, + [5066] = 5066, + [5067] = 845, [5068] = 5068, [5069] = 5069, - [5070] = 5069, + [5070] = 5070, [5071] = 5071, [5072] = 5072, [5073] = 5073, - [5074] = 5074, - [5075] = 5075, + [5074] = 3285, + [5075] = 5071, [5076] = 5076, - [5077] = 3277, - [5078] = 5078, - [5079] = 5073, + [5077] = 5077, + [5078] = 5072, + [5079] = 5079, [5080] = 5080, [5081] = 5081, [5082] = 5082, @@ -10503,12 +10503,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5104] = 5104, [5105] = 5105, [5106] = 5106, - [5107] = 1144, - [5108] = 1131, - [5109] = 5109, - [5110] = 5110, - [5111] = 1145, - [5112] = 895, + [5107] = 1123, + [5108] = 5108, + [5109] = 845, + [5110] = 846, + [5111] = 5111, + [5112] = 5112, [5113] = 5113, [5114] = 5114, [5115] = 5115, @@ -10516,220 +10516,220 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5117] = 5117, [5118] = 5118, [5119] = 5119, - [5120] = 1135, + [5120] = 5120, [5121] = 5121, - [5122] = 1136, - [5123] = 896, - [5124] = 1119, - [5125] = 5125, + [5122] = 5122, + [5123] = 841, + [5124] = 5124, + [5125] = 847, [5126] = 5126, [5127] = 5127, - [5128] = 890, + [5128] = 5128, [5129] = 5129, [5130] = 5130, [5131] = 5131, [5132] = 5132, - [5133] = 5133, - [5134] = 5134, - [5135] = 5135, - [5136] = 5136, - [5137] = 1130, + [5133] = 842, + [5134] = 843, + [5135] = 1126, + [5136] = 1125, + [5137] = 5137, [5138] = 5138, [5139] = 5139, - [5140] = 892, + [5140] = 844, [5141] = 5141, [5142] = 5142, [5143] = 5143, [5144] = 5144, [5145] = 5145, - [5146] = 893, - [5147] = 5147, - [5148] = 897, - [5149] = 894, - [5150] = 5150, - [5151] = 5151, + [5146] = 1127, + [5147] = 1124, + [5148] = 5148, + [5149] = 5149, + [5150] = 1146, + [5151] = 1121, [5152] = 5152, [5153] = 5153, - [5154] = 1140, - [5155] = 5155, + [5154] = 5154, + [5155] = 1122, [5156] = 5156, [5157] = 3115, - [5158] = 3381, + [5158] = 3373, [5159] = 5159, - [5160] = 3392, + [5160] = 5160, [5161] = 3393, - [5162] = 3409, - [5163] = 3759, - [5164] = 3759, - [5165] = 3417, - [5166] = 5166, - [5167] = 5167, - [5168] = 3119, - [5169] = 3123, - [5170] = 3125, - [5171] = 5166, - [5172] = 3118, - [5173] = 3403, - [5174] = 3405, - [5175] = 5175, + [5162] = 3394, + [5163] = 5163, + [5164] = 5163, + [5165] = 3745, + [5166] = 3427, + [5167] = 3429, + [5168] = 3449, + [5169] = 3125, + [5170] = 3745, + [5171] = 3437, + [5172] = 3127, + [5173] = 3117, + [5174] = 5174, + [5175] = 3124, [5176] = 5176, [5177] = 5177, [5178] = 5178, [5179] = 5179, [5180] = 5180, [5181] = 5181, - [5182] = 836, - [5183] = 817, - [5184] = 826, - [5185] = 824, - [5186] = 827, + [5182] = 5182, + [5183] = 830, + [5184] = 824, + [5185] = 5176, + [5186] = 5186, [5187] = 5187, [5188] = 5188, - [5189] = 817, - [5190] = 826, - [5191] = 824, - [5192] = 827, - [5193] = 5193, + [5189] = 5189, + [5190] = 5190, + [5191] = 5191, + [5192] = 5192, + [5193] = 831, [5194] = 5194, [5195] = 5195, - [5196] = 5195, + [5196] = 5196, [5197] = 5197, [5198] = 5198, - [5199] = 5195, - [5200] = 836, - [5201] = 3512, - [5202] = 5202, - [5203] = 5203, - [5204] = 5204, - [5205] = 5205, - [5206] = 5206, + [5199] = 814, + [5200] = 831, + [5201] = 829, + [5202] = 830, + [5203] = 814, + [5204] = 824, + [5205] = 3519, + [5206] = 829, [5207] = 5207, - [5208] = 5208, - [5209] = 5209, + [5208] = 5176, + [5209] = 3144, [5210] = 5210, [5211] = 5211, - [5212] = 3881, - [5213] = 3881, + [5212] = 5212, + [5213] = 5213, [5214] = 5214, - [5215] = 5215, + [5215] = 3140, [5216] = 5216, [5217] = 5217, [5218] = 5218, - [5219] = 5219, + [5219] = 3872, [5220] = 5220, - [5221] = 3312, + [5221] = 5221, [5222] = 5222, - [5223] = 5223, + [5223] = 3298, [5224] = 5224, [5225] = 5225, - [5226] = 5226, - [5227] = 5227, - [5228] = 3129, - [5229] = 3132, - [5230] = 3301, + [5226] = 5210, + [5227] = 5211, + [5228] = 5212, + [5229] = 5214, + [5230] = 3171, [5231] = 5231, - [5232] = 3883, - [5233] = 5233, + [5232] = 5222, + [5233] = 3164, [5234] = 5234, - [5235] = 5235, + [5235] = 5212, [5236] = 5236, - [5237] = 3883, - [5238] = 5231, - [5239] = 3128, - [5240] = 3131, - [5241] = 3130, - [5242] = 5234, - [5243] = 5214, + [5237] = 3159, + [5238] = 5224, + [5239] = 3145, + [5240] = 3151, + [5241] = 5211, + [5242] = 5212, + [5243] = 5243, [5244] = 5244, [5245] = 5245, - [5246] = 5246, - [5247] = 5247, - [5248] = 3171, - [5249] = 3158, - [5250] = 3153, - [5251] = 3166, - [5252] = 3156, - [5253] = 3161, - [5254] = 5217, - [5255] = 3312, - [5256] = 5222, - [5257] = 5257, - [5258] = 5258, - [5259] = 5225, - [5260] = 5258, + [5246] = 3129, + [5247] = 5222, + [5248] = 5248, + [5249] = 5224, + [5250] = 5211, + [5251] = 3158, + [5252] = 5210, + [5253] = 5253, + [5254] = 5254, + [5255] = 5224, + [5256] = 5211, + [5257] = 5225, + [5258] = 5224, + [5259] = 5211, + [5260] = 5260, [5261] = 5261, - [5262] = 5246, - [5263] = 5263, - [5264] = 5264, - [5265] = 5265, - [5266] = 3152, - [5267] = 5267, - [5268] = 5268, + [5262] = 5224, + [5263] = 5211, + [5264] = 3133, + [5265] = 5245, + [5266] = 5236, + [5267] = 5222, + [5268] = 5224, [5269] = 5269, - [5270] = 5270, - [5271] = 3160, - [5272] = 5217, - [5273] = 5273, - [5274] = 3163, - [5275] = 5209, - [5276] = 5225, - [5277] = 5261, - [5278] = 5246, - [5279] = 5263, - [5280] = 5264, - [5281] = 5217, - [5282] = 5233, - [5283] = 5208, - [5284] = 5265, - [5285] = 5210, - [5286] = 5225, - [5287] = 5246, - [5288] = 5263, - [5289] = 5217, - [5290] = 5290, - [5291] = 5225, - [5292] = 5246, - [5293] = 3133, - [5294] = 5227, - [5295] = 3301, - [5296] = 5225, - [5297] = 5246, - [5298] = 5225, - [5299] = 5246, - [5300] = 5268, - [5301] = 5225, - [5302] = 5246, - [5303] = 5225, + [5270] = 3324, + [5271] = 5271, + [5272] = 5224, + [5273] = 3324, + [5274] = 3298, + [5275] = 3860, + [5276] = 5224, + [5277] = 5277, + [5278] = 5278, + [5279] = 5224, + [5280] = 5280, + [5281] = 5281, + [5282] = 5224, + [5283] = 5271, + [5284] = 5224, + [5285] = 5285, + [5286] = 3128, + [5287] = 5224, + [5288] = 5288, + [5289] = 5289, + [5290] = 5224, + [5291] = 3131, + [5292] = 5292, + [5293] = 5224, + [5294] = 5294, + [5295] = 3872, + [5296] = 5224, + [5297] = 5297, + [5298] = 5224, + [5299] = 5299, + [5300] = 3130, + [5301] = 5231, + [5302] = 5302, + [5303] = 5294, [5304] = 5304, - [5305] = 5225, - [5306] = 5225, - [5307] = 5225, - [5308] = 5225, - [5309] = 5225, - [5310] = 5225, - [5311] = 5264, - [5312] = 5225, - [5313] = 5225, - [5314] = 5225, - [5315] = 5225, - [5316] = 5263, + [5305] = 3166, + [5306] = 5221, + [5307] = 5307, + [5308] = 3160, + [5309] = 5309, + [5310] = 5310, + [5311] = 5218, + [5312] = 5222, + [5313] = 5260, + [5314] = 5213, + [5315] = 5211, + [5316] = 3860, [5317] = 5317, [5318] = 5318, - [5319] = 5319, + [5319] = 5214, [5320] = 5320, - [5321] = 5261, - [5322] = 5223, - [5323] = 5323, - [5324] = 5324, - [5325] = 5245, - [5326] = 5257, - [5327] = 5267, - [5328] = 5328, - [5329] = 5269, - [5330] = 5270, - [5331] = 5273, - [5332] = 3164, - [5333] = 5333, + [5321] = 3132, + [5322] = 5224, + [5323] = 5261, + [5324] = 5216, + [5325] = 5234, + [5326] = 5224, + [5327] = 5280, + [5328] = 5244, + [5329] = 5329, + [5330] = 5292, + [5331] = 5307, + [5332] = 5320, + [5333] = 5248, [5334] = 5334, [5335] = 5335, [5336] = 5336, @@ -10746,13 +10746,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5347] = 5347, [5348] = 5348, [5349] = 5349, - [5350] = 5350, + [5350] = 5337, [5351] = 5351, [5352] = 5352, [5353] = 5353, [5354] = 5354, [5355] = 5355, - [5356] = 5351, + [5356] = 5356, [5357] = 5357, [5358] = 5358, [5359] = 5359, @@ -10787,14 +10787,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5388] = 5388, [5389] = 5389, [5390] = 5390, - [5391] = 897, - [5392] = 894, - [5393] = 893, - [5394] = 895, - [5395] = 896, - [5396] = 890, - [5397] = 892, - [5398] = 5398, + [5391] = 5391, + [5392] = 847, + [5393] = 846, + [5394] = 842, + [5395] = 843, + [5396] = 841, + [5397] = 844, + [5398] = 845, [5399] = 5399, [5400] = 5400, [5401] = 5401, @@ -10817,101 +10817,101 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5418] = 5418, [5419] = 5419, [5420] = 5420, - [5421] = 5421, + [5421] = 5415, [5422] = 5422, - [5423] = 5423, + [5423] = 5420, [5424] = 5424, [5425] = 5425, [5426] = 5426, - [5427] = 5426, + [5427] = 5427, [5428] = 5428, - [5429] = 5429, + [5429] = 5427, [5430] = 5430, - [5431] = 5423, + [5431] = 5431, [5432] = 5432, [5433] = 5433, [5434] = 5434, - [5435] = 5433, + [5435] = 5435, [5436] = 5436, - [5437] = 5437, - [5438] = 5413, + [5437] = 5422, + [5438] = 5415, [5439] = 5439, - [5440] = 5440, - [5441] = 5441, - [5442] = 5442, - [5443] = 5443, + [5440] = 5435, + [5441] = 5436, + [5442] = 5418, + [5443] = 5417, [5444] = 5444, - [5445] = 5441, + [5445] = 5439, [5446] = 5446, [5447] = 5447, [5448] = 5448, [5449] = 5449, [5450] = 5450, - [5451] = 5451, - [5452] = 5413, + [5451] = 5435, + [5452] = 5452, [5453] = 5453, - [5454] = 5439, - [5455] = 5440, - [5456] = 5426, - [5457] = 5414, - [5458] = 5448, - [5459] = 5449, + [5454] = 5430, + [5455] = 5430, + [5456] = 5456, + [5457] = 5457, + [5458] = 5436, + [5459] = 5459, [5460] = 5460, - [5461] = 5430, + [5461] = 5461, [5462] = 5462, - [5463] = 5439, - [5464] = 5423, - [5465] = 5433, + [5463] = 5446, + [5464] = 5464, + [5465] = 5465, [5466] = 5466, [5467] = 5467, - [5468] = 5468, - [5469] = 5414, - [5470] = 5436, + [5468] = 5422, + [5469] = 5417, + [5470] = 5470, [5471] = 5471, - [5472] = 5437, - [5473] = 5473, - [5474] = 5448, - [5475] = 5436, - [5476] = 5441, + [5472] = 5472, + [5473] = 5446, + [5474] = 5444, + [5475] = 5457, + [5476] = 5447, [5477] = 5477, - [5478] = 5437, - [5479] = 5450, - [5480] = 5440, - [5481] = 5449, - [5482] = 5482, - [5483] = 5430, + [5478] = 5478, + [5479] = 5444, + [5480] = 5418, + [5481] = 5420, + [5482] = 5427, + [5483] = 5483, [5484] = 5484, [5485] = 5485, [5486] = 5486, [5487] = 5487, - [5488] = 5450, - [5489] = 5489, - [5490] = 5490, - [5491] = 5491, + [5488] = 5488, + [5489] = 5457, + [5490] = 5439, + [5491] = 5447, [5492] = 5492, [5493] = 5493, - [5494] = 1136, - [5495] = 5495, - [5496] = 1144, - [5497] = 1145, + [5494] = 5494, + [5495] = 1122, + [5496] = 5496, + [5497] = 5497, [5498] = 5498, [5499] = 5499, [5500] = 5500, - [5501] = 1130, + [5501] = 5501, [5502] = 5502, [5503] = 5503, - [5504] = 1140, + [5504] = 5504, [5505] = 5505, [5506] = 5506, - [5507] = 5507, - [5508] = 1119, + [5507] = 1126, + [5508] = 1125, [5509] = 5509, - [5510] = 1131, - [5511] = 5511, - [5512] = 5512, - [5513] = 1135, + [5510] = 1123, + [5511] = 1124, + [5512] = 1127, + [5513] = 1146, [5514] = 5514, - [5515] = 5515, + [5515] = 1121, [5516] = 5516, [5517] = 5517, [5518] = 5518, @@ -10920,7 +10920,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5521] = 5521, [5522] = 5522, [5523] = 5523, - [5524] = 5524, + [5524] = 5519, [5525] = 5525, [5526] = 5526, [5527] = 5527, @@ -10938,41 +10938,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5539] = 5539, [5540] = 5540, [5541] = 5541, - [5542] = 5529, + [5542] = 5542, [5543] = 5543, [5544] = 5544, [5545] = 5545, [5546] = 5546, - [5547] = 5547, - [5548] = 5548, + [5547] = 5528, + [5548] = 5519, [5549] = 5549, - [5550] = 5550, - [5551] = 5531, - [5552] = 5552, - [5553] = 5553, + [5550] = 5542, + [5551] = 5551, + [5552] = 5543, + [5553] = 5551, [5554] = 5554, - [5555] = 5532, + [5555] = 5555, [5556] = 5556, - [5557] = 5557, + [5557] = 5551, [5558] = 5558, [5559] = 5559, - [5560] = 5560, - [5561] = 5524, - [5562] = 5554, + [5560] = 5528, + [5561] = 5543, + [5562] = 5562, [5563] = 5563, - [5564] = 5529, - [5565] = 5531, - [5566] = 5532, - [5567] = 5554, - [5568] = 5558, - [5569] = 5524, - [5570] = 5570, + [5564] = 5564, + [5565] = 5565, + [5566] = 5542, + [5567] = 5567, + [5568] = 5568, + [5569] = 5569, + [5570] = 5539, [5571] = 5571, [5572] = 5572, [5573] = 5573, [5574] = 5574, [5575] = 5575, - [5576] = 5558, + [5576] = 5539, [5577] = 5577, [5578] = 5578, [5579] = 5579, @@ -11005,229 +11005,229 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5606] = 5606, [5607] = 5607, [5608] = 5608, - [5609] = 5607, + [5609] = 5609, [5610] = 5610, [5611] = 5611, [5612] = 5612, - [5613] = 5611, - [5614] = 5610, - [5615] = 5615, + [5613] = 5613, + [5614] = 5614, + [5615] = 5608, [5616] = 5616, - [5617] = 5617, - [5618] = 5618, + [5617] = 5609, + [5618] = 5610, [5619] = 5619, [5620] = 5620, - [5621] = 5620, + [5621] = 5621, [5622] = 5622, [5623] = 5623, - [5624] = 5618, + [5624] = 5624, [5625] = 5625, [5626] = 5626, [5627] = 5627, - [5628] = 5620, - [5629] = 5622, - [5630] = 5623, + [5628] = 5628, + [5629] = 5624, + [5630] = 5630, [5631] = 5631, - [5632] = 5618, - [5633] = 5625, - [5634] = 5626, - [5635] = 5620, + [5632] = 5632, + [5633] = 5633, + [5634] = 5634, + [5635] = 5635, [5636] = 5636, - [5637] = 5620, - [5638] = 5622, - [5639] = 5623, - [5640] = 5622, - [5641] = 5618, - [5642] = 5625, - [5643] = 5626, + [5637] = 5637, + [5638] = 5638, + [5639] = 5639, + [5640] = 5628, + [5641] = 5632, + [5642] = 5639, + [5643] = 5643, [5644] = 5644, - [5645] = 5645, - [5646] = 5646, + [5645] = 5619, + [5646] = 5635, [5647] = 5647, - [5648] = 5648, - [5649] = 5622, - [5650] = 5620, - [5651] = 5622, - [5652] = 5652, - [5653] = 5623, + [5648] = 5625, + [5649] = 5649, + [5650] = 5650, + [5651] = 5651, + [5652] = 5638, + [5653] = 5653, [5654] = 5654, - [5655] = 5618, - [5656] = 5625, - [5657] = 5619, - [5658] = 5658, - [5659] = 5620, - [5660] = 5623, - [5661] = 5618, - [5662] = 5662, - [5663] = 5623, + [5655] = 5655, + [5656] = 5656, + [5657] = 5657, + [5658] = 5620, + [5659] = 5623, + [5660] = 5624, + [5661] = 5625, + [5662] = 5643, + [5663] = 5663, [5664] = 5664, - [5665] = 5620, - [5666] = 5666, - [5667] = 5636, - [5668] = 5668, - [5669] = 5620, - [5670] = 5622, - [5671] = 5648, - [5672] = 5622, - [5673] = 5673, + [5665] = 5631, + [5666] = 5633, + [5667] = 5634, + [5668] = 5636, + [5669] = 5628, + [5670] = 5632, + [5671] = 5639, + [5672] = 5619, + [5673] = 5620, [5674] = 5623, - [5675] = 5623, - [5676] = 5666, - [5677] = 5618, - [5678] = 5678, - [5679] = 5622, - [5680] = 5680, - [5681] = 5623, - [5682] = 5682, - [5683] = 5683, + [5675] = 5624, + [5676] = 5625, + [5677] = 5631, + [5678] = 5633, + [5679] = 5634, + [5680] = 5636, + [5681] = 5628, + [5682] = 5632, + [5683] = 5639, [5684] = 5619, - [5685] = 5685, + [5685] = 5619, [5686] = 5686, - [5687] = 5687, - [5688] = 5658, - [5689] = 5625, - [5690] = 5690, - [5691] = 5618, - [5692] = 5685, - [5693] = 5625, - [5694] = 5620, - [5695] = 5626, - [5696] = 5625, - [5697] = 5697, - [5698] = 5626, - [5699] = 5626, - [5700] = 5700, + [5687] = 5620, + [5688] = 5688, + [5689] = 5689, + [5690] = 5623, + [5691] = 5691, + [5692] = 5692, + [5693] = 5631, + [5694] = 5694, + [5695] = 5633, + [5696] = 5628, + [5697] = 5632, + [5698] = 5619, + [5699] = 5699, + [5700] = 5623, [5701] = 5701, - [5702] = 5702, - [5703] = 5703, - [5704] = 5704, - [5705] = 5705, - [5706] = 5706, - [5707] = 5623, + [5702] = 5631, + [5703] = 5633, + [5704] = 5628, + [5705] = 5632, + [5706] = 5619, + [5707] = 5707, [5708] = 5708, - [5709] = 5618, + [5709] = 5622, [5710] = 5710, - [5711] = 5620, - [5712] = 5712, - [5713] = 5636, - [5714] = 5622, - [5715] = 5625, - [5716] = 5683, - [5717] = 5620, - [5718] = 5622, - [5719] = 5623, - [5720] = 5708, - [5721] = 5683, - [5722] = 5722, - [5723] = 5723, - [5724] = 5620, - [5725] = 5658, - [5726] = 5682, - [5727] = 5626, - [5728] = 5622, - [5729] = 5729, + [5711] = 5623, + [5712] = 5631, + [5713] = 5713, + [5714] = 5633, + [5715] = 5628, + [5716] = 5632, + [5717] = 5619, + [5718] = 5637, + [5719] = 5719, + [5720] = 5720, + [5721] = 5721, + [5722] = 5626, + [5723] = 5635, + [5724] = 5623, + [5725] = 5627, + [5726] = 5631, + [5727] = 5633, + [5728] = 5628, + [5729] = 5632, [5730] = 5730, [5731] = 5623, - [5732] = 5732, - [5733] = 5733, - [5734] = 5626, - [5735] = 5620, - [5736] = 5706, - [5737] = 5737, - [5738] = 5738, - [5739] = 5625, - [5740] = 5623, - [5741] = 5618, - [5742] = 5623, - [5743] = 5743, - [5744] = 5744, - [5745] = 5625, - [5746] = 5626, - [5747] = 5618, - [5748] = 5618, - [5749] = 5658, - [5750] = 5625, - [5751] = 5636, - [5752] = 5697, - [5753] = 5618, + [5732] = 5631, + [5733] = 5633, + [5734] = 5628, + [5735] = 5632, + [5736] = 5619, + [5737] = 5623, + [5738] = 5631, + [5739] = 5739, + [5740] = 5633, + [5741] = 5628, + [5742] = 5742, + [5743] = 5632, + [5744] = 5619, + [5745] = 5745, + [5746] = 5746, + [5747] = 5623, + [5748] = 5631, + [5749] = 5633, + [5750] = 5628, + [5751] = 5632, + [5752] = 5619, + [5753] = 5753, [5754] = 5754, - [5755] = 5733, - [5756] = 5625, - [5757] = 5757, - [5758] = 5758, - [5759] = 5626, - [5760] = 5682, - [5761] = 5702, + [5755] = 5755, + [5756] = 5623, + [5757] = 5631, + [5758] = 5633, + [5759] = 5628, + [5760] = 5632, + [5761] = 5619, [5762] = 5762, - [5763] = 5625, - [5764] = 5626, + [5763] = 5623, + [5764] = 5631, [5765] = 5765, - [5766] = 5766, - [5767] = 5626, - [5768] = 5620, - [5769] = 5769, - [5770] = 5622, - [5771] = 5623, - [5772] = 5626, - [5773] = 5618, - [5774] = 5625, - [5775] = 5626, - [5776] = 5697, - [5777] = 5683, - [5778] = 5620, - [5779] = 5622, - [5780] = 5780, - [5781] = 5648, - [5782] = 5782, - [5783] = 5626, - [5784] = 5784, - [5785] = 5785, - [5786] = 5619, - [5787] = 5702, - [5788] = 5622, - [5789] = 5789, + [5766] = 5633, + [5767] = 5628, + [5768] = 5632, + [5769] = 5619, + [5770] = 5623, + [5771] = 5631, + [5772] = 5633, + [5773] = 5628, + [5774] = 5632, + [5775] = 5619, + [5776] = 5623, + [5777] = 5631, + [5778] = 5633, + [5779] = 5628, + [5780] = 5632, + [5781] = 5619, + [5782] = 5623, + [5783] = 5631, + [5784] = 5633, + [5785] = 5628, + [5786] = 5632, + [5787] = 5619, + [5788] = 5631, + [5789] = 5623, [5790] = 5790, - [5791] = 5791, - [5792] = 5623, - [5793] = 5793, - [5794] = 5620, - [5795] = 5626, - [5796] = 5702, - [5797] = 5797, - [5798] = 5798, - [5799] = 5618, - [5800] = 5622, - [5801] = 5625, - [5802] = 5620, - [5803] = 5626, - [5804] = 5623, - [5805] = 5618, - [5806] = 5622, - [5807] = 5807, - [5808] = 5620, - [5809] = 5809, - [5810] = 5625, - [5811] = 5623, - [5812] = 5622, - [5813] = 5618, - [5814] = 5625, - [5815] = 5626, - [5816] = 5697, - [5817] = 5732, - [5818] = 5625, - [5819] = 5648, - [5820] = 5618, - [5821] = 5623, + [5791] = 5631, + [5792] = 5633, + [5793] = 5628, + [5794] = 5632, + [5795] = 5619, + [5796] = 5623, + [5797] = 5631, + [5798] = 5633, + [5799] = 5628, + [5800] = 5632, + [5801] = 5619, + [5802] = 5633, + [5803] = 5623, + [5804] = 5631, + [5805] = 5633, + [5806] = 5628, + [5807] = 5632, + [5808] = 5619, + [5809] = 5622, + [5810] = 5810, + [5811] = 5622, + [5812] = 5812, + [5813] = 5813, + [5814] = 5814, + [5815] = 5815, + [5816] = 5634, + [5817] = 5817, + [5818] = 5818, + [5819] = 5635, + [5820] = 5820, + [5821] = 5821, [5822] = 5822, [5823] = 5823, - [5824] = 5625, - [5825] = 5825, - [5826] = 5626, - [5827] = 5827, - [5828] = 5618, - [5829] = 5682, - [5830] = 5622, - [5831] = 5831, + [5824] = 5824, + [5825] = 5636, + [5826] = 5826, + [5827] = 5621, + [5828] = 5828, + [5829] = 5829, + [5830] = 5830, + [5831] = 5623, [5832] = 5832, [5833] = 5833, [5834] = 5834, @@ -11248,68 +11248,68 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5849] = 5849, [5850] = 5850, [5851] = 5851, - [5852] = 5852, + [5852] = 3298, [5853] = 5853, - [5854] = 5854, + [5854] = 3324, [5855] = 5855, - [5856] = 3312, - [5857] = 3301, + [5856] = 5856, + [5857] = 5857, [5858] = 5858, [5859] = 5859, - [5860] = 5167, - [5861] = 827, + [5860] = 5860, + [5861] = 5861, [5862] = 5862, [5863] = 5863, - [5864] = 5862, + [5864] = 5864, [5865] = 5865, - [5866] = 5865, + [5866] = 5866, [5867] = 5867, [5868] = 5868, - [5869] = 5862, - [5870] = 5862, - [5871] = 5865, - [5872] = 3115, - [5873] = 5865, - [5874] = 5862, - [5875] = 5862, - [5876] = 5862, - [5877] = 5862, - [5878] = 5865, - [5879] = 5865, + [5869] = 830, + [5870] = 5870, + [5871] = 5871, + [5872] = 5872, + [5873] = 5873, + [5874] = 831, + [5875] = 829, + [5876] = 814, + [5877] = 3115, + [5878] = 824, + [5879] = 5879, [5880] = 5880, - [5881] = 5865, - [5882] = 5882, - [5883] = 824, - [5884] = 5865, - [5885] = 5865, - [5886] = 5886, - [5887] = 5887, - [5888] = 5888, - [5889] = 5889, - [5890] = 5862, - [5891] = 836, - [5892] = 5892, - [5893] = 5862, - [5894] = 5865, - [5895] = 5895, - [5896] = 5862, - [5897] = 5897, - [5898] = 5898, - [5899] = 5862, - [5900] = 5900, - [5901] = 5865, - [5902] = 826, - [5903] = 5903, + [5881] = 5860, + [5882] = 5174, + [5883] = 5879, + [5884] = 5884, + [5885] = 5879, + [5886] = 5860, + [5887] = 5879, + [5888] = 5860, + [5889] = 5879, + [5890] = 5860, + [5891] = 5879, + [5892] = 5860, + [5893] = 5879, + [5894] = 5860, + [5895] = 5879, + [5896] = 5860, + [5897] = 5879, + [5898] = 5860, + [5899] = 5879, + [5900] = 5860, + [5901] = 5879, + [5902] = 5860, + [5903] = 5879, [5904] = 5904, - [5905] = 5905, + [5905] = 5860, [5906] = 5906, - [5907] = 817, - [5908] = 5862, - [5909] = 5865, + [5907] = 5907, + [5908] = 5908, + [5909] = 5860, [5910] = 5910, [5911] = 5911, - [5912] = 5865, - [5913] = 5913, + [5912] = 5912, + [5913] = 5879, [5914] = 5914, [5915] = 5915, [5916] = 5916, @@ -11318,334 +11318,334 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5919] = 5919, [5920] = 5920, [5921] = 5921, - [5922] = 5922, + [5922] = 5914, [5923] = 5923, [5924] = 5924, [5925] = 5925, [5926] = 5926, [5927] = 5927, [5928] = 5928, - [5929] = 5929, - [5930] = 5930, - [5931] = 5931, - [5932] = 5932, + [5929] = 5917, + [5930] = 5917, + [5931] = 5919, + [5932] = 5920, [5933] = 5933, - [5934] = 5934, + [5934] = 5915, [5935] = 5935, [5936] = 5936, - [5937] = 5937, - [5938] = 5938, - [5939] = 5939, - [5940] = 5940, - [5941] = 5941, - [5942] = 5942, - [5943] = 5943, - [5944] = 5944, + [5937] = 5915, + [5938] = 5916, + [5939] = 5917, + [5940] = 5918, + [5941] = 5919, + [5942] = 5920, + [5943] = 5914, + [5944] = 5923, [5945] = 5945, - [5946] = 5922, - [5947] = 5923, - [5948] = 5944, - [5949] = 5924, - [5950] = 5945, - [5951] = 5176, + [5946] = 5946, + [5947] = 5914, + [5948] = 5914, + [5949] = 5949, + [5950] = 5923, + [5951] = 5916, [5952] = 5952, - [5953] = 5953, - [5954] = 5954, - [5955] = 3628, - [5956] = 5956, - [5957] = 5933, - [5958] = 5934, - [5959] = 5938, - [5960] = 5939, - [5961] = 5940, - [5962] = 5941, - [5963] = 5944, - [5964] = 5945, - [5965] = 5933, - [5966] = 5934, - [5967] = 5938, - [5968] = 5939, - [5969] = 5940, - [5970] = 5941, - [5971] = 5944, - [5972] = 5945, - [5973] = 5933, - [5974] = 5934, - [5975] = 5938, - [5976] = 5939, - [5977] = 5940, - [5978] = 5941, - [5979] = 5944, - [5980] = 5945, - [5981] = 5926, - [5982] = 5933, - [5983] = 5934, - [5984] = 5938, - [5985] = 5939, - [5986] = 5940, - [5987] = 5941, - [5988] = 5944, - [5989] = 5945, - [5990] = 5927, - [5991] = 5933, - [5992] = 5934, - [5993] = 5938, - [5994] = 5939, - [5995] = 5940, - [5996] = 5941, - [5997] = 5944, - [5998] = 5945, - [5999] = 3563, - [6000] = 5936, - [6001] = 5937, + [5953] = 5915, + [5954] = 5916, + [5955] = 5917, + [5956] = 5918, + [5957] = 5919, + [5958] = 5920, + [5959] = 5914, + [5960] = 5923, + [5961] = 5961, + [5962] = 5914, + [5963] = 5923, + [5964] = 5923, + [5965] = 5965, + [5966] = 5966, + [5967] = 5967, + [5968] = 5915, + [5969] = 5916, + [5970] = 5917, + [5971] = 5918, + [5972] = 5919, + [5973] = 5920, + [5974] = 5914, + [5975] = 5923, + [5976] = 5915, + [5977] = 5916, + [5978] = 5935, + [5979] = 5936, + [5980] = 3678, + [5981] = 5915, + [5982] = 5916, + [5983] = 5917, + [5984] = 5918, + [5985] = 5919, + [5986] = 5920, + [5987] = 5914, + [5988] = 5923, + [5989] = 5989, + [5990] = 5191, + [5991] = 5991, + [5992] = 5992, + [5993] = 5915, + [5994] = 5916, + [5995] = 5917, + [5996] = 5918, + [5997] = 5919, + [5998] = 5920, + [5999] = 5914, + [6000] = 5923, + [6001] = 6001, [6002] = 6002, - [6003] = 5933, - [6004] = 5934, - [6005] = 5938, - [6006] = 5939, - [6007] = 5940, - [6008] = 5941, - [6009] = 5944, - [6010] = 5945, - [6011] = 5938, - [6012] = 5933, - [6013] = 5934, - [6014] = 5939, - [6015] = 1772, - [6016] = 5938, - [6017] = 5939, - [6018] = 5940, - [6019] = 5941, - [6020] = 5944, - [6021] = 5945, - [6022] = 5940, - [6023] = 5941, - [6024] = 6024, - [6025] = 5933, - [6026] = 5934, - [6027] = 6027, - [6028] = 6028, - [6029] = 5918, - [6030] = 5939, - [6031] = 5940, - [6032] = 5941, - [6033] = 5944, - [6034] = 5945, - [6035] = 5933, - [6036] = 5919, - [6037] = 5920, - [6038] = 5934, - [6039] = 5928, - [6040] = 5929, - [6041] = 5921, - [6042] = 5933, - [6043] = 5934, - [6044] = 6044, - [6045] = 5938, - [6046] = 5939, - [6047] = 5940, - [6048] = 5941, - [6049] = 5944, - [6050] = 5945, - [6051] = 5942, - [6052] = 5933, - [6053] = 5934, - [6054] = 5938, - [6055] = 5939, - [6056] = 5940, - [6057] = 5941, - [6058] = 5943, - [6059] = 5944, - [6060] = 5945, - [6061] = 5933, - [6062] = 5934, - [6063] = 5938, - [6064] = 5939, - [6065] = 5940, - [6066] = 5941, - [6067] = 5944, - [6068] = 5945, - [6069] = 5933, - [6070] = 5934, - [6071] = 5938, - [6072] = 5939, - [6073] = 5940, - [6074] = 5941, - [6075] = 5944, - [6076] = 5945, - [6077] = 5930, + [6003] = 6003, + [6004] = 6004, + [6005] = 6005, + [6006] = 5966, + [6007] = 5915, + [6008] = 5916, + [6009] = 5917, + [6010] = 5918, + [6011] = 5919, + [6012] = 5920, + [6013] = 6013, + [6014] = 5914, + [6015] = 5923, + [6016] = 6003, + [6017] = 6017, + [6018] = 6018, + [6019] = 5915, + [6020] = 5916, + [6021] = 6021, + [6022] = 5915, + [6023] = 5916, + [6024] = 5917, + [6025] = 5918, + [6026] = 5919, + [6027] = 5920, + [6028] = 5923, + [6029] = 5917, + [6030] = 5918, + [6031] = 5919, + [6032] = 5920, + [6033] = 6033, + [6034] = 5925, + [6035] = 5914, + [6036] = 5923, + [6037] = 5928, + [6038] = 6038, + [6039] = 6039, + [6040] = 6040, + [6041] = 5925, + [6042] = 5928, + [6043] = 5949, + [6044] = 5961, + [6045] = 5965, + [6046] = 5918, + [6047] = 5917, + [6048] = 5917, + [6049] = 6049, + [6050] = 5918, + [6051] = 5919, + [6052] = 6052, + [6053] = 5918, + [6054] = 5919, + [6055] = 5920, + [6056] = 5920, + [6057] = 6057, + [6058] = 6058, + [6059] = 5933, + [6060] = 5915, + [6061] = 5916, + [6062] = 5991, + [6063] = 6063, + [6064] = 5917, + [6065] = 5918, + [6066] = 5919, + [6067] = 5919, + [6068] = 5920, + [6069] = 5914, + [6070] = 6018, + [6071] = 6021, + [6072] = 5915, + [6073] = 5923, + [6074] = 5992, + [6075] = 6001, + [6076] = 6002, + [6077] = 5916, [6078] = 6078, - [6079] = 6079, - [6080] = 6080, - [6081] = 6081, - [6082] = 6082, + [6079] = 6038, + [6080] = 5920, + [6081] = 5945, + [6082] = 5917, [6083] = 6083, - [6084] = 1416, - [6085] = 5914, + [6084] = 5918, + [6085] = 5919, [6086] = 6086, - [6087] = 6087, - [6088] = 5933, - [6089] = 5934, - [6090] = 5915, - [6091] = 5916, - [6092] = 5936, - [6093] = 5937, - [6094] = 5938, - [6095] = 5939, - [6096] = 5940, - [6097] = 5941, - [6098] = 5942, - [6099] = 5943, - [6100] = 6100, - [6101] = 6101, - [6102] = 6102, - [6103] = 6103, - [6104] = 6102, - [6105] = 5944, - [6106] = 5945, - [6107] = 3687, - [6108] = 5931, - [6109] = 5932, - [6110] = 5935, - [6111] = 6101, - [6112] = 6103, - [6113] = 6113, - [6114] = 5938, - [6115] = 6115, + [6087] = 5920, + [6088] = 6083, + [6089] = 5914, + [6090] = 5923, + [6091] = 1341, + [6092] = 6092, + [6093] = 6093, + [6094] = 6094, + [6095] = 5915, + [6096] = 6096, + [6097] = 5916, + [6098] = 5924, + [6099] = 5914, + [6100] = 5933, + [6101] = 3684, + [6102] = 5926, + [6103] = 5927, + [6104] = 5945, + [6105] = 5923, + [6106] = 3675, + [6107] = 6107, + [6108] = 6108, + [6109] = 1759, + [6110] = 6108, + [6111] = 5915, + [6112] = 5916, + [6113] = 5921, + [6114] = 5946, + [6115] = 5918, [6116] = 6116, - [6117] = 6115, - [6118] = 6118, - [6119] = 6119, - [6120] = 6120, - [6121] = 6121, - [6122] = 6122, - [6123] = 4301, - [6124] = 6124, - [6125] = 6115, - [6126] = 5320, - [6127] = 4313, - [6128] = 5218, - [6129] = 6129, - [6130] = 6130, - [6131] = 5219, - [6132] = 4290, - [6133] = 6133, - [6134] = 6134, - [6135] = 6135, - [6136] = 6115, - [6137] = 6137, - [6138] = 6115, - [6139] = 6139, - [6140] = 3292, - [6141] = 6115, - [6142] = 6142, - [6143] = 6143, + [6117] = 6117, + [6118] = 6117, + [6119] = 6117, + [6120] = 6117, + [6121] = 6117, + [6122] = 6117, + [6123] = 6117, + [6124] = 6117, + [6125] = 6117, + [6126] = 6117, + [6127] = 6117, + [6128] = 6117, + [6129] = 6117, + [6130] = 6117, + [6131] = 6117, + [6132] = 6117, + [6133] = 6117, + [6134] = 6117, + [6135] = 6117, + [6136] = 6117, + [6137] = 6117, + [6138] = 6117, + [6139] = 6117, + [6140] = 6117, + [6141] = 6117, + [6142] = 6117, + [6143] = 6117, [6144] = 6144, - [6145] = 6115, + [6145] = 6145, [6146] = 6146, [6147] = 6147, [6148] = 6148, - [6149] = 6149, + [6149] = 4298, [6150] = 6150, [6151] = 6151, - [6152] = 6115, - [6153] = 6115, - [6154] = 6154, + [6152] = 6117, + [6153] = 6153, + [6154] = 4327, [6155] = 6155, - [6156] = 6115, - [6157] = 6115, - [6158] = 6115, + [6156] = 6156, + [6157] = 6157, + [6158] = 6117, [6159] = 6159, - [6160] = 6115, + [6160] = 5309, [6161] = 6161, - [6162] = 3115, - [6163] = 6163, + [6162] = 5318, + [6163] = 5254, [6164] = 6164, - [6165] = 6115, - [6166] = 6115, - [6167] = 5317, - [6168] = 6115, - [6169] = 6115, - [6170] = 6115, - [6171] = 6115, - [6172] = 6115, - [6173] = 6115, - [6174] = 6115, - [6175] = 6115, - [6176] = 6115, - [6177] = 6115, - [6178] = 6115, - [6179] = 6115, - [6180] = 6115, - [6181] = 6115, - [6182] = 6115, - [6183] = 6115, - [6184] = 6115, - [6185] = 6115, - [6186] = 4278, - [6187] = 6187, - [6188] = 6115, - [6189] = 6115, - [6190] = 6115, - [6191] = 6115, - [6192] = 6115, - [6193] = 6115, - [6194] = 6115, - [6195] = 6115, + [6165] = 5304, + [6166] = 6166, + [6167] = 6117, + [6168] = 6117, + [6169] = 6166, + [6170] = 6170, + [6171] = 6171, + [6172] = 6172, + [6173] = 6117, + [6174] = 6174, + [6175] = 4309, + [6176] = 6176, + [6177] = 3306, + [6178] = 6093, + [6179] = 5253, + [6180] = 6117, + [6181] = 6181, + [6182] = 4287, + [6183] = 6183, + [6184] = 6117, + [6185] = 4313, + [6186] = 6117, + [6187] = 6117, + [6188] = 6117, + [6189] = 6189, + [6190] = 3115, + [6191] = 6191, + [6192] = 6192, + [6193] = 6193, + [6194] = 6194, + [6195] = 6195, [6196] = 6196, [6197] = 6197, - [6198] = 6198, + [6198] = 6117, [6199] = 6199, - [6200] = 6200, + [6200] = 6117, [6201] = 6201, [6202] = 6202, - [6203] = 6203, - [6204] = 6204, - [6205] = 6115, + [6203] = 6117, + [6204] = 6117, + [6205] = 6205, [6206] = 6206, - [6207] = 3925, - [6208] = 4310, + [6207] = 6207, + [6208] = 6166, [6209] = 6209, - [6210] = 6115, + [6210] = 6210, [6211] = 6211, - [6212] = 6133, - [6213] = 4314, + [6212] = 6212, + [6213] = 6213, [6214] = 6214, - [6215] = 6078, + [6215] = 6166, [6216] = 6216, - [6217] = 6217, + [6217] = 4321, [6218] = 6218, [6219] = 6219, [6220] = 6220, - [6221] = 5220, - [6222] = 6115, - [6223] = 3307, - [6224] = 6133, + [6221] = 6117, + [6222] = 4283, + [6223] = 6223, + [6224] = 6224, [6225] = 6225, - [6226] = 6226, - [6227] = 5319, + [6226] = 3907, + [6227] = 6227, [6228] = 6228, - [6229] = 6229, + [6229] = 6117, [6230] = 6230, [6231] = 6231, [6232] = 6232, - [6233] = 4317, - [6234] = 6115, + [6233] = 6233, + [6234] = 6117, [6235] = 6235, [6236] = 6236, [6237] = 6237, [6238] = 6238, [6239] = 6239, - [6240] = 6133, + [6240] = 6240, [6241] = 6241, - [6242] = 6242, + [6242] = 6117, [6243] = 6243, - [6244] = 6115, + [6244] = 6244, [6245] = 6245, - [6246] = 6246, - [6247] = 6247, - [6248] = 6115, - [6249] = 6249, + [6246] = 3308, + [6247] = 6117, + [6248] = 5302, + [6249] = 6117, [6250] = 6250, [6251] = 6251, [6252] = 6252, @@ -11657,1106 +11657,1106 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6258] = 6258, [6259] = 6259, [6260] = 6260, - [6261] = 6255, + [6261] = 6261, [6262] = 6262, [6263] = 6263, [6264] = 6264, - [6265] = 6265, + [6265] = 6252, [6266] = 6266, - [6267] = 6249, + [6267] = 6267, [6268] = 6268, [6269] = 6269, - [6270] = 6258, + [6270] = 6270, [6271] = 6271, [6272] = 6272, - [6273] = 6273, + [6273] = 6262, [6274] = 6274, [6275] = 6275, [6276] = 6276, [6277] = 6277, [6278] = 6278, - [6279] = 6253, - [6280] = 6280, + [6279] = 6264, + [6280] = 6252, [6281] = 6281, [6282] = 6282, [6283] = 6283, - [6284] = 6284, - [6285] = 6285, - [6286] = 6286, - [6287] = 6258, - [6288] = 6259, - [6289] = 6289, - [6290] = 6290, + [6284] = 6268, + [6285] = 6253, + [6286] = 6256, + [6287] = 6262, + [6288] = 6264, + [6289] = 6252, + [6290] = 6268, [6291] = 6291, [6292] = 6292, - [6293] = 6293, + [6293] = 6292, [6294] = 6294, [6295] = 6295, - [6296] = 6296, + [6296] = 6276, [6297] = 6297, - [6298] = 6262, + [6298] = 6298, [6299] = 6299, [6300] = 6300, - [6301] = 6301, - [6302] = 6302, - [6303] = 6264, - [6304] = 6304, + [6301] = 6255, + [6302] = 6294, + [6303] = 6303, + [6304] = 6295, [6305] = 6305, [6306] = 6306, - [6307] = 6266, + [6307] = 6307, [6308] = 6308, [6309] = 6309, [6310] = 6310, - [6311] = 6311, - [6312] = 6312, - [6313] = 6313, + [6311] = 6276, + [6312] = 6299, + [6313] = 6297, [6314] = 6314, - [6315] = 6315, - [6316] = 6249, + [6315] = 6268, + [6316] = 6316, [6317] = 6317, - [6318] = 6250, - [6319] = 6251, - [6320] = 6320, - [6321] = 6253, + [6318] = 6318, + [6319] = 6319, + [6320] = 6297, + [6321] = 6321, [6322] = 6322, - [6323] = 6255, - [6324] = 6258, + [6323] = 6323, + [6324] = 6324, [6325] = 6325, - [6326] = 6259, - [6327] = 6262, + [6326] = 6251, + [6327] = 6327, [6328] = 6328, - [6329] = 6264, - [6330] = 6266, - [6331] = 6249, - [6332] = 6268, - [6333] = 6269, + [6329] = 6329, + [6330] = 6255, + [6331] = 6331, + [6332] = 6332, + [6333] = 6258, [6334] = 6334, - [6335] = 6271, - [6336] = 6272, - [6337] = 6273, - [6338] = 6255, - [6339] = 6275, - [6340] = 6276, - [6341] = 6268, - [6342] = 6269, - [6343] = 6343, - [6344] = 6280, - [6345] = 6345, - [6346] = 6281, - [6347] = 6283, - [6348] = 6284, - [6349] = 6285, - [6350] = 6253, - [6351] = 6351, - [6352] = 6296, - [6353] = 6271, - [6354] = 6292, + [6335] = 6260, + [6336] = 6336, + [6337] = 6337, + [6338] = 6338, + [6339] = 6266, + [6340] = 6267, + [6341] = 6341, + [6342] = 3306, + [6343] = 6270, + [6344] = 6271, + [6345] = 6322, + [6346] = 6274, + [6347] = 6305, + [6348] = 6348, + [6349] = 6307, + [6350] = 6278, + [6351] = 6308, + [6352] = 6309, + [6353] = 6281, + [6354] = 6282, [6355] = 6355, - [6356] = 6293, - [6357] = 6294, - [6358] = 6295, + [6356] = 6253, + [6357] = 6357, + [6358] = 6256, [6359] = 6359, - [6360] = 6259, - [6361] = 6302, - [6362] = 6362, - [6363] = 6363, + [6360] = 6262, + [6361] = 6264, + [6362] = 6252, + [6363] = 6268, [6364] = 6364, - [6365] = 6304, - [6366] = 6366, - [6367] = 6367, + [6365] = 6292, + [6366] = 6294, + [6367] = 6295, [6368] = 6368, - [6369] = 6369, - [6370] = 6370, - [6371] = 6309, - [6372] = 6310, + [6369] = 6276, + [6370] = 6297, + [6371] = 6371, + [6372] = 6372, [6373] = 6373, [6374] = 6374, [6375] = 6375, - [6376] = 6376, - [6377] = 6314, - [6378] = 6315, - [6379] = 6379, - [6380] = 6250, - [6381] = 6251, - [6382] = 6253, - [6383] = 6255, - [6384] = 6272, - [6385] = 6258, - [6386] = 6273, - [6387] = 6259, - [6388] = 6262, + [6376] = 6305, + [6377] = 6307, + [6378] = 6308, + [6379] = 6309, + [6380] = 6300, + [6381] = 6381, + [6382] = 6382, + [6383] = 6383, + [6384] = 6314, + [6385] = 6385, + [6386] = 6316, + [6387] = 6317, + [6388] = 6318, [6389] = 6389, - [6390] = 6264, - [6391] = 6266, - [6392] = 6249, - [6393] = 6268, - [6394] = 6269, - [6395] = 6271, - [6396] = 6396, - [6397] = 6272, - [6398] = 6273, - [6399] = 6275, - [6400] = 6276, - [6401] = 6401, - [6402] = 6275, - [6403] = 6403, - [6404] = 6280, + [6390] = 6390, + [6391] = 6322, + [6392] = 6322, + [6393] = 6324, + [6394] = 6294, + [6395] = 6278, + [6396] = 6329, + [6397] = 6364, + [6398] = 6398, + [6399] = 6251, + [6400] = 6255, + [6401] = 6314, + [6402] = 6402, + [6403] = 6316, + [6404] = 6404, [6405] = 6405, - [6406] = 6406, + [6406] = 6258, [6407] = 6407, - [6408] = 6281, - [6409] = 6283, - [6410] = 6284, - [6411] = 6285, - [6412] = 6276, - [6413] = 6413, + [6408] = 6260, + [6409] = 6317, + [6410] = 6318, + [6411] = 6398, + [6412] = 6266, + [6413] = 6267, [6414] = 6414, - [6415] = 6415, - [6416] = 6292, - [6417] = 6293, - [6418] = 6294, - [6419] = 6295, - [6420] = 6420, - [6421] = 6255, - [6422] = 6422, - [6423] = 6302, - [6424] = 6424, - [6425] = 6425, - [6426] = 6426, - [6427] = 6314, + [6415] = 6372, + [6416] = 6416, + [6417] = 6270, + [6418] = 6271, + [6419] = 6274, + [6420] = 6278, + [6421] = 6421, + [6422] = 6281, + [6423] = 6423, + [6424] = 6282, + [6425] = 6383, + [6426] = 6253, + [6427] = 6256, [6428] = 6428, - [6429] = 6304, - [6430] = 6430, - [6431] = 6431, - [6432] = 6432, - [6433] = 6433, - [6434] = 6434, - [6435] = 6309, - [6436] = 6280, - [6437] = 6310, - [6438] = 6315, - [6439] = 6314, - [6440] = 6315, + [6429] = 6262, + [6430] = 6264, + [6431] = 6252, + [6432] = 6268, + [6433] = 5347, + [6434] = 6292, + [6435] = 6435, + [6436] = 6295, + [6437] = 6437, + [6438] = 6276, + [6439] = 6297, + [6440] = 6440, [6441] = 6441, - [6442] = 6250, - [6443] = 6251, - [6444] = 6283, - [6445] = 6253, - [6446] = 6446, - [6447] = 6255, - [6448] = 6281, - [6449] = 6449, - [6450] = 6258, - [6451] = 6259, + [6442] = 5357, + [6443] = 6443, + [6444] = 6444, + [6445] = 6445, + [6446] = 6305, + [6447] = 6307, + [6448] = 6308, + [6449] = 6309, + [6450] = 6450, + [6451] = 6451, [6452] = 6452, - [6453] = 6262, - [6454] = 6264, + [6453] = 6355, + [6454] = 6314, [6455] = 6455, - [6456] = 6266, - [6457] = 6249, - [6458] = 6268, - [6459] = 6269, - [6460] = 6271, - [6461] = 6272, - [6462] = 6273, - [6463] = 6275, - [6464] = 6276, - [6465] = 6465, + [6456] = 6316, + [6457] = 6317, + [6458] = 6318, + [6459] = 6357, + [6460] = 6383, + [6461] = 6322, + [6462] = 6462, + [6463] = 6463, + [6464] = 6464, + [6465] = 6322, [6466] = 6466, - [6467] = 6283, - [6468] = 6281, - [6469] = 6469, - [6470] = 6283, - [6471] = 6284, - [6472] = 6285, - [6473] = 6284, - [6474] = 6285, - [6475] = 6475, - [6476] = 6301, - [6477] = 6292, - [6478] = 6293, - [6479] = 6294, - [6480] = 6295, - [6481] = 6481, - [6482] = 6482, - [6483] = 6483, - [6484] = 6302, - [6485] = 6485, - [6486] = 6262, - [6487] = 6487, - [6488] = 6488, - [6489] = 6304, - [6490] = 6490, - [6491] = 6491, - [6492] = 6492, - [6493] = 6351, - [6494] = 6309, - [6495] = 6495, - [6496] = 6310, - [6497] = 6497, - [6498] = 6498, - [6499] = 6499, - [6500] = 6314, - [6501] = 6315, + [6467] = 6271, + [6468] = 6468, + [6469] = 6372, + [6470] = 6305, + [6471] = 6471, + [6472] = 6472, + [6473] = 6473, + [6474] = 6270, + [6475] = 6271, + [6476] = 6274, + [6477] = 6256, + [6478] = 6262, + [6479] = 6278, + [6480] = 6451, + [6481] = 6281, + [6482] = 6463, + [6483] = 6282, + [6484] = 6264, + [6485] = 6253, + [6486] = 6256, + [6487] = 6281, + [6488] = 6262, + [6489] = 6264, + [6490] = 6252, + [6491] = 6268, + [6492] = 4311, + [6493] = 6252, + [6494] = 6494, + [6495] = 6295, + [6496] = 6292, + [6497] = 6276, + [6498] = 6297, + [6499] = 6307, + [6500] = 6308, + [6501] = 6251, [6502] = 6502, - [6503] = 6250, - [6504] = 6251, - [6505] = 6253, - [6506] = 6506, - [6507] = 6255, + [6503] = 6268, + [6504] = 6305, + [6505] = 6307, + [6506] = 6309, + [6507] = 3929, [6508] = 6508, - [6509] = 6355, - [6510] = 6510, - [6511] = 6258, - [6512] = 6259, - [6513] = 6262, - [6514] = 6514, - [6515] = 6264, - [6516] = 6266, - [6517] = 6249, - [6518] = 6268, - [6519] = 6269, - [6520] = 6271, + [6509] = 6309, + [6510] = 6251, + [6511] = 6314, + [6512] = 6316, + [6513] = 6317, + [6514] = 6318, + [6515] = 6295, + [6516] = 6516, + [6517] = 6322, + [6518] = 6518, + [6519] = 6519, + [6520] = 6520, [6521] = 6521, - [6522] = 6273, - [6523] = 6275, - [6524] = 6276, - [6525] = 6482, + [6522] = 6522, + [6523] = 6523, + [6524] = 6524, + [6525] = 6525, [6526] = 6526, - [6527] = 6527, - [6528] = 6528, + [6527] = 6270, + [6528] = 6451, [6529] = 6529, - [6530] = 6281, - [6531] = 6283, - [6532] = 6284, - [6533] = 6285, - [6534] = 6534, - [6535] = 6535, - [6536] = 6308, - [6537] = 6537, - [6538] = 6292, - [6539] = 6293, - [6540] = 6294, - [6541] = 6295, - [6542] = 6542, - [6543] = 6543, - [6544] = 6290, - [6545] = 6302, - [6546] = 6546, - [6547] = 6547, - [6548] = 6284, + [6530] = 6270, + [6531] = 6271, + [6532] = 6355, + [6533] = 6274, + [6534] = 6258, + [6535] = 6278, + [6536] = 6536, + [6537] = 6281, + [6538] = 6282, + [6539] = 6539, + [6540] = 6540, + [6541] = 6253, + [6542] = 6260, + [6543] = 6256, + [6544] = 6521, + [6545] = 6262, + [6546] = 6264, + [6547] = 6252, + [6548] = 6268, [6549] = 6549, - [6550] = 6550, + [6550] = 6295, [6551] = 6551, - [6552] = 6552, - [6553] = 6553, - [6554] = 6292, - [6555] = 6250, - [6556] = 6251, - [6557] = 6557, + [6552] = 6276, + [6553] = 6297, + [6554] = 6522, + [6555] = 6555, + [6556] = 6523, + [6557] = 6251, [6558] = 6558, - [6559] = 6253, + [6559] = 6524, [6560] = 6560, - [6561] = 6375, - [6562] = 6255, - [6563] = 6563, - [6564] = 6275, - [6565] = 6258, - [6566] = 6292, - [6567] = 6259, + [6561] = 6305, + [6562] = 6562, + [6563] = 6307, + [6564] = 6309, + [6565] = 6565, + [6566] = 6566, + [6567] = 6567, [6568] = 6568, - [6569] = 6262, - [6570] = 6264, - [6571] = 6571, - [6572] = 6266, - [6573] = 6573, - [6574] = 6268, - [6575] = 6269, - [6576] = 6403, - [6577] = 6273, - [6578] = 6275, - [6579] = 6276, - [6580] = 6293, - [6581] = 6294, - [6582] = 6299, - [6583] = 836, - [6584] = 6295, - [6585] = 6251, - [6586] = 6586, - [6587] = 6281, - [6588] = 6283, - [6589] = 6285, - [6590] = 6317, - [6591] = 6264, - [6592] = 6592, - [6593] = 6322, - [6594] = 6292, - [6595] = 6595, - [6596] = 6293, - [6597] = 6294, - [6598] = 6295, - [6599] = 6599, - [6600] = 6305, - [6601] = 6526, - [6602] = 6302, + [6569] = 6314, + [6570] = 6316, + [6571] = 6317, + [6572] = 6318, + [6573] = 6282, + [6574] = 6574, + [6575] = 6322, + [6576] = 6357, + [6577] = 6577, + [6578] = 6578, + [6579] = 831, + [6580] = 6266, + [6581] = 6267, + [6582] = 6582, + [6583] = 6263, + [6584] = 6270, + [6585] = 6271, + [6586] = 6274, + [6587] = 6587, + [6588] = 6278, + [6589] = 6589, + [6590] = 6281, + [6591] = 6591, + [6592] = 6282, + [6593] = 6303, + [6594] = 6306, + [6595] = 6253, + [6596] = 6327, + [6597] = 6256, + [6598] = 6262, + [6599] = 6264, + [6600] = 6252, + [6601] = 6268, + [6602] = 6602, [6603] = 6603, - [6604] = 6466, - [6605] = 6250, - [6606] = 6606, + [6604] = 6295, + [6605] = 6276, + [6606] = 6297, [6607] = 6607, - [6608] = 6250, - [6609] = 6251, - [6610] = 6253, - [6611] = 6611, + [6608] = 6608, + [6609] = 6609, + [6610] = 6602, + [6611] = 6324, [6612] = 6612, - [6613] = 6255, - [6614] = 6614, - [6615] = 6251, - [6616] = 6258, - [6617] = 6259, - [6618] = 6618, - [6619] = 6262, - [6620] = 1416, - [6621] = 6264, - [6622] = 6266, - [6623] = 6249, - [6624] = 6268, - [6625] = 6269, - [6626] = 6273, - [6627] = 6275, - [6628] = 6276, - [6629] = 6629, - [6630] = 6250, + [6613] = 6305, + [6614] = 6307, + [6615] = 6309, + [6616] = 6603, + [6617] = 6617, + [6618] = 6270, + [6619] = 6271, + [6620] = 6620, + [6621] = 6316, + [6622] = 6317, + [6623] = 6318, + [6624] = 6274, + [6625] = 6625, + [6626] = 6322, + [6627] = 6627, + [6628] = 6628, + [6629] = 6278, + [6630] = 1341, [6631] = 6631, [6632] = 6632, - [6633] = 6300, - [6634] = 6309, - [6635] = 6281, - [6636] = 6359, - [6637] = 6283, - [6638] = 6285, - [6639] = 6258, - [6640] = 6302, - [6641] = 6259, - [6642] = 6254, - [6643] = 6292, - [6644] = 6293, - [6645] = 6294, - [6646] = 6295, - [6647] = 6631, - [6648] = 6310, - [6649] = 6302, - [6650] = 6650, - [6651] = 6252, - [6652] = 6652, - [6653] = 6653, - [6654] = 6262, - [6655] = 6514, + [6633] = 6281, + [6634] = 6282, + [6635] = 6635, + [6636] = 6270, + [6637] = 6271, + [6638] = 6638, + [6639] = 6639, + [6640] = 6640, + [6641] = 6295, + [6642] = 6276, + [6643] = 6297, + [6644] = 6253, + [6645] = 6256, + [6646] = 6258, + [6647] = 6647, + [6648] = 6648, + [6649] = 6305, + [6650] = 6307, + [6651] = 6309, + [6652] = 6262, + [6653] = 6264, + [6654] = 6252, + [6655] = 6268, [6656] = 6656, - [6657] = 6599, - [6658] = 6658, - [6659] = 6250, - [6660] = 6251, - [6661] = 6492, - [6662] = 6253, - [6663] = 6663, - [6664] = 6255, + [6657] = 6316, + [6658] = 6317, + [6659] = 6318, + [6660] = 6660, + [6661] = 6661, + [6662] = 6292, + [6663] = 6322, + [6664] = 6664, [6665] = 6665, - [6666] = 6258, - [6667] = 6259, - [6668] = 6262, - [6669] = 6264, - [6670] = 6266, - [6671] = 6249, - [6672] = 6268, - [6673] = 6269, - [6674] = 6674, - [6675] = 6675, - [6676] = 6676, - [6677] = 6273, - [6678] = 6275, - [6679] = 6276, + [6666] = 6294, + [6667] = 6295, + [6668] = 6668, + [6669] = 6276, + [6670] = 6297, + [6671] = 6260, + [6672] = 6672, + [6673] = 6270, + [6674] = 6271, + [6675] = 6316, + [6676] = 6276, + [6677] = 6297, + [6678] = 6258, + [6679] = 6255, [6680] = 6680, - [6681] = 6264, - [6682] = 6682, - [6683] = 6683, - [6684] = 6684, - [6685] = 6281, - [6686] = 6652, - [6687] = 6283, - [6688] = 6285, - [6689] = 6304, - [6690] = 6379, - [6691] = 6272, - [6692] = 6692, - [6693] = 6293, - [6694] = 6294, - [6695] = 6295, + [6681] = 6307, + [6682] = 6305, + [6683] = 6253, + [6684] = 6565, + [6685] = 6307, + [6686] = 6308, + [6687] = 6309, + [6688] = 6688, + [6689] = 6689, + [6690] = 6274, + [6691] = 6318, + [6692] = 6292, + [6693] = 6253, + [6694] = 6364, + [6695] = 6398, [6696] = 6696, - [6697] = 6697, - [6698] = 6302, - [6699] = 6699, - [6700] = 6253, - [6701] = 6701, - [6702] = 6702, - [6703] = 6703, - [6704] = 6255, - [6705] = 6705, - [6706] = 6250, - [6707] = 6251, - [6708] = 6293, - [6709] = 6296, - [6710] = 6301, - [6711] = 6273, - [6712] = 6712, - [6713] = 6713, - [6714] = 6276, - [6715] = 6466, - [6716] = 6631, - [6717] = 6717, - [6718] = 6676, - [6719] = 6281, - [6720] = 6283, - [6721] = 6285, - [6722] = 6302, - [6723] = 6723, - [6724] = 6724, - [6725] = 4311, + [6697] = 6314, + [6698] = 6698, + [6699] = 6266, + [6700] = 6316, + [6701] = 6276, + [6702] = 6297, + [6703] = 6317, + [6704] = 6318, + [6705] = 6267, + [6706] = 6307, + [6707] = 6282, + [6708] = 6402, + [6709] = 6709, + [6710] = 6710, + [6711] = 6711, + [6712] = 6355, + [6713] = 6357, + [6714] = 6714, + [6715] = 6322, + [6716] = 6716, + [6717] = 6266, + [6718] = 6718, + [6719] = 6267, + [6720] = 6364, + [6721] = 6276, + [6722] = 6297, + [6723] = 6263, + [6724] = 6307, + [6725] = 6305, [6726] = 6726, - [6727] = 6293, - [6728] = 6294, - [6729] = 6295, - [6730] = 6730, - [6731] = 6309, - [6732] = 6310, - [6733] = 6302, - [6734] = 6734, - [6735] = 6735, - [6736] = 6285, - [6737] = 6737, - [6738] = 6738, - [6739] = 3920, - [6740] = 6250, - [6741] = 6251, - [6742] = 6275, - [6743] = 6276, + [6727] = 6451, + [6728] = 6728, + [6729] = 6260, + [6730] = 6251, + [6731] = 6303, + [6732] = 6732, + [6733] = 6306, + [6734] = 6276, + [6735] = 6297, + [6736] = 6327, + [6737] = 6307, + [6738] = 6274, + [6739] = 6398, + [6740] = 6740, + [6741] = 6521, + [6742] = 6742, + [6743] = 6522, [6744] = 6744, - [6745] = 6614, - [6746] = 6746, - [6747] = 6283, - [6748] = 5334, - [6749] = 5335, - [6750] = 6281, - [6751] = 6751, + [6745] = 6300, + [6746] = 6258, + [6747] = 6276, + [6748] = 6297, + [6749] = 6278, + [6750] = 6307, + [6751] = 6260, [6752] = 6752, [6753] = 6753, - [6754] = 6297, + [6754] = 6754, [6755] = 6755, - [6756] = 6756, - [6757] = 6537, - [6758] = 6758, - [6759] = 6275, + [6756] = 6602, + [6757] = 6744, + [6758] = 6603, + [6759] = 6565, [6760] = 6276, - [6761] = 6309, + [6761] = 6297, [6762] = 6762, - [6763] = 6763, - [6764] = 6283, - [6765] = 6314, - [6766] = 6315, - [6767] = 6475, - [6768] = 6768, - [6769] = 6351, - [6770] = 6355, - [6771] = 3307, - [6772] = 6772, - [6773] = 6482, - [6774] = 6632, - [6775] = 6775, - [6776] = 6275, - [6777] = 6276, - [6778] = 6778, - [6779] = 6283, - [6780] = 6780, - [6781] = 4314, - [6782] = 6275, - [6783] = 6276, - [6784] = 6317, - [6785] = 6283, - [6786] = 6786, - [6787] = 6787, - [6788] = 6271, - [6789] = 6276, - [6790] = 6275, - [6791] = 6276, - [6792] = 6322, - [6793] = 6283, - [6794] = 6794, - [6795] = 6795, - [6796] = 6258, - [6797] = 6250, - [6798] = 6251, - [6799] = 6253, - [6800] = 6800, - [6801] = 6801, - [6802] = 6802, - [6803] = 6275, - [6804] = 6276, - [6805] = 6255, - [6806] = 6283, - [6807] = 6259, - [6808] = 6295, - [6809] = 6305, - [6810] = 6262, - [6811] = 6811, - [6812] = 6314, - [6813] = 6258, - [6814] = 817, - [6815] = 6276, - [6816] = 6259, - [6817] = 6276, - [6818] = 6818, - [6819] = 6276, - [6820] = 6262, + [6763] = 6307, + [6764] = 6266, + [6765] = 6765, + [6766] = 6267, + [6767] = 6767, + [6768] = 6314, + [6769] = 6294, + [6770] = 6770, + [6771] = 6270, + [6772] = 6297, + [6773] = 6271, + [6774] = 6297, + [6775] = 6402, + [6776] = 6297, + [6777] = 6274, + [6778] = 6297, + [6779] = 6779, + [6780] = 6297, + [6781] = 6781, + [6782] = 6297, + [6783] = 6278, + [6784] = 6297, + [6785] = 6785, + [6786] = 6297, + [6787] = 6281, + [6788] = 6297, + [6789] = 6282, + [6790] = 6297, + [6791] = 6791, + [6792] = 6297, + [6793] = 6253, + [6794] = 6297, + [6795] = 6316, + [6796] = 6297, + [6797] = 6256, + [6798] = 6297, + [6799] = 6799, + [6800] = 6297, + [6801] = 6262, + [6802] = 6297, + [6803] = 6264, + [6804] = 6297, + [6805] = 6252, + [6806] = 6297, + [6807] = 6268, + [6808] = 6297, + [6809] = 6578, + [6810] = 6297, + [6811] = 6292, + [6812] = 6297, + [6813] = 6813, + [6814] = 6297, + [6815] = 6294, + [6816] = 6297, + [6817] = 6295, + [6818] = 6297, + [6819] = 6317, + [6820] = 6297, [6821] = 6276, - [6822] = 6599, - [6823] = 6276, - [6824] = 6264, - [6825] = 6276, - [6826] = 6413, - [6827] = 6276, - [6828] = 6266, + [6822] = 6297, + [6823] = 6297, + [6824] = 6297, + [6825] = 6567, + [6826] = 6297, + [6827] = 6827, + [6828] = 6828, [6829] = 6276, - [6830] = 6249, - [6831] = 6276, - [6832] = 6268, - [6833] = 6276, - [6834] = 6269, - [6835] = 6276, + [6830] = 6799, + [6831] = 6827, + [6832] = 6255, + [6833] = 6348, + [6834] = 6374, + [6835] = 6835, [6836] = 6836, - [6837] = 6276, - [6838] = 6271, - [6839] = 6276, + [6837] = 6305, + [6838] = 6307, + [6839] = 6308, [6840] = 6840, - [6841] = 6276, - [6842] = 6272, - [6843] = 6276, - [6844] = 6273, - [6845] = 6276, - [6846] = 6275, - [6847] = 6276, - [6848] = 6276, - [6849] = 6276, - [6850] = 6308, - [6851] = 6276, + [6841] = 6841, + [6842] = 6842, + [6843] = 6309, + [6844] = 6844, + [6845] = 6845, + [6846] = 6627, + [6847] = 6847, + [6848] = 6848, + [6849] = 6849, + [6850] = 6850, + [6851] = 6851, [6852] = 6852, - [6853] = 6276, - [6854] = 6854, - [6855] = 6276, - [6856] = 6250, - [6857] = 6276, - [6858] = 6280, - [6859] = 6276, - [6860] = 6860, - [6861] = 6276, + [6853] = 6318, + [6854] = 6525, + [6855] = 6371, + [6856] = 6398, + [6857] = 3308, + [6858] = 6314, + [6859] = 6316, + [6860] = 6317, + [6861] = 6318, [6862] = 6862, - [6863] = 6276, + [6863] = 6714, [6864] = 6864, - [6865] = 6276, - [6866] = 6281, - [6867] = 6276, - [6868] = 6413, - [6869] = 6276, - [6870] = 6551, - [6871] = 6264, - [6872] = 826, - [6873] = 824, - [6874] = 6283, - [6875] = 827, - [6876] = 6682, - [6877] = 6618, - [6878] = 6315, - [6879] = 6284, - [6880] = 6285, - [6881] = 6252, - [6882] = 6290, - [6883] = 6273, - [6884] = 6884, - [6885] = 6434, - [6886] = 6558, - [6887] = 6571, - [6888] = 6271, - [6889] = 3393, - [6890] = 6611, - [6891] = 6299, - [6892] = 6526, - [6893] = 6379, - [6894] = 6272, - [6895] = 6895, - [6896] = 6273, - [6897] = 6275, - [6898] = 6403, - [6899] = 6251, - [6900] = 6900, - [6901] = 6276, - [6902] = 6537, - [6903] = 6903, - [6904] = 6904, - [6905] = 6905, - [6906] = 6280, - [6907] = 6272, - [6908] = 6290, - [6909] = 6292, - [6910] = 6293, - [6911] = 6682, - [6912] = 6618, - [6913] = 6425, + [6865] = 6357, + [6866] = 6270, + [6867] = 6322, + [6868] = 6868, + [6869] = 6294, + [6870] = 4313, + [6871] = 6871, + [6872] = 6348, + [6873] = 6374, + [6874] = 6710, + [6875] = 6627, + [6876] = 6251, + [6877] = 6525, + [6878] = 6321, + [6879] = 6879, + [6880] = 6880, + [6881] = 6382, + [6882] = 6271, + [6883] = 6883, + [6884] = 6348, + [6885] = 6374, + [6886] = 6317, + [6887] = 6463, + [6888] = 6627, + [6889] = 6258, + [6890] = 6525, + [6891] = 6281, + [6892] = 6892, + [6893] = 6893, + [6894] = 6894, + [6895] = 6348, + [6896] = 6374, + [6897] = 6260, + [6898] = 6898, + [6899] = 6627, + [6900] = 6262, + [6901] = 6295, + [6902] = 6902, + [6903] = 6525, + [6904] = 6348, + [6905] = 6374, + [6906] = 6266, + [6907] = 6292, + [6908] = 6627, + [6909] = 6267, + [6910] = 6910, + [6911] = 6911, + [6912] = 6525, + [6913] = 6913, [6914] = 6914, - [6915] = 6884, - [6916] = 6916, - [6917] = 6558, - [6918] = 6434, - [6919] = 6280, - [6920] = 6611, - [6921] = 6294, + [6915] = 6915, + [6916] = 6348, + [6917] = 6374, + [6918] = 6282, + [6919] = 6627, + [6920] = 6920, + [6921] = 6270, [6922] = 6922, - [6923] = 6923, - [6924] = 6295, - [6925] = 6281, - [6926] = 6266, - [6927] = 6927, - [6928] = 6266, - [6929] = 6682, - [6930] = 6618, - [6931] = 6283, - [6932] = 6284, - [6933] = 6285, - [6934] = 6514, - [6935] = 6249, - [6936] = 6558, + [6923] = 6525, + [6924] = 829, + [6925] = 830, + [6926] = 814, + [6927] = 824, + [6928] = 6928, + [6929] = 6348, + [6930] = 6374, + [6931] = 6271, + [6932] = 6932, + [6933] = 6297, + [6934] = 6627, + [6935] = 6935, + [6936] = 6274, [6937] = 6937, - [6938] = 6611, - [6939] = 6652, - [6940] = 6268, - [6941] = 6941, + [6938] = 6525, + [6939] = 6578, + [6940] = 6940, + [6941] = 6253, [6942] = 6942, - [6943] = 6682, - [6944] = 6618, - [6945] = 6269, - [6946] = 6558, - [6947] = 6611, - [6948] = 6800, + [6943] = 6348, + [6944] = 6374, + [6945] = 6945, + [6946] = 6375, + [6947] = 6947, + [6948] = 6627, [6949] = 6949, - [6950] = 6682, - [6951] = 6618, - [6952] = 6558, - [6953] = 6953, - [6954] = 6954, - [6955] = 6955, - [6956] = 6611, - [6957] = 6957, - [6958] = 6632, - [6959] = 6682, - [6960] = 6618, - [6961] = 6300, - [6962] = 6249, - [6963] = 6268, - [6964] = 6558, - [6965] = 6302, - [6966] = 6966, - [6967] = 6611, - [6968] = 6968, - [6969] = 6969, - [6970] = 6537, - [6971] = 6682, - [6972] = 6618, - [6973] = 6973, - [6974] = 6310, - [6975] = 6558, - [6976] = 6290, - [6977] = 6611, - [6978] = 6269, + [6950] = 6278, + [6951] = 3394, + [6952] = 6256, + [6953] = 6274, + [6954] = 6348, + [6955] = 6374, + [6956] = 6956, + [6957] = 6281, + [6958] = 6627, + [6959] = 6282, + [6960] = 6253, + [6961] = 6961, + [6962] = 6962, + [6963] = 6256, + [6964] = 6964, + [6965] = 6348, + [6966] = 6374, + [6967] = 6262, + [6968] = 6627, + [6969] = 6264, + [6970] = 6970, + [6971] = 6844, + [6972] = 6348, + [6973] = 6374, + [6974] = 6252, + [6975] = 6268, + [6976] = 6976, + [6977] = 6292, + [6978] = 6567, [6979] = 6979, [6980] = 6980, - [6981] = 6682, - [6982] = 6618, - [6983] = 6983, - [6984] = 6984, - [6985] = 6558, - [6986] = 6986, - [6987] = 6292, + [6981] = 6294, + [6982] = 6348, + [6983] = 6374, + [6984] = 6295, + [6985] = 6799, + [6986] = 6276, + [6987] = 6297, [6988] = 6988, - [6989] = 6492, - [6990] = 6990, - [6991] = 6375, - [6992] = 6682, - [6993] = 6618, - [6994] = 6994, - [6995] = 6293, - [6996] = 6304, - [6997] = 6558, - [6998] = 6294, + [6989] = 6989, + [6990] = 6565, + [6991] = 6278, + [6992] = 6255, + [6993] = 6521, + [6994] = 6522, + [6995] = 6307, + [6996] = 6996, + [6997] = 6997, + [6998] = 6308, [6999] = 6999, - [7000] = 6295, - [7001] = 7001, + [7000] = 7000, + [7001] = 6710, [7002] = 7002, - [7003] = 6682, - [7004] = 6618, + [7003] = 7003, + [7004] = 7004, [7005] = 7005, [7006] = 7006, - [7007] = 6558, + [7007] = 7007, [7008] = 7008, - [7009] = 6425, - [7010] = 6682, - [7011] = 6618, + [7009] = 6305, + [7010] = 6321, + [7011] = 6307, [7012] = 7012, - [7013] = 7013, - [7014] = 6682, - [7015] = 6618, - [7016] = 7016, + [7013] = 6308, + [7014] = 7014, + [7015] = 6827, + [7016] = 6309, [7017] = 7017, - [7018] = 6266, - [7019] = 3292, - [7020] = 6271, - [7021] = 7021, + [7018] = 6382, + [7019] = 6309, + [7020] = 7020, + [7021] = 6299, [7022] = 7022, - [7023] = 6249, + [7023] = 7023, [7024] = 7024, - [7025] = 6268, - [7026] = 6614, - [7027] = 6300, - [7028] = 6296, - [7029] = 6301, - [7030] = 6269, - [7031] = 6632, - [7032] = 6300, - [7033] = 6475, - [7034] = 6663, - [7035] = 7035, - [7036] = 7036, - [7037] = 6309, - [7038] = 6310, - [7039] = 6359, - [7040] = 6302, - [7041] = 6297, - [7042] = 6551, - [7043] = 6254, - [7044] = 6614, - [7045] = 7045, - [7046] = 6304, - [7047] = 7047, - [7048] = 7048, - [7049] = 6492, - [7050] = 6294, - [7051] = 6983, - [7052] = 6676, - [7053] = 6314, + [7025] = 6314, + [7026] = 7026, + [7027] = 6836, + [7028] = 7028, + [7029] = 6836, + [7030] = 6848, + [7031] = 7031, + [7032] = 6852, + [7033] = 7033, + [7034] = 6862, + [7035] = 6848, + [7036] = 6316, + [7037] = 6317, + [7038] = 6271, + [7039] = 6714, + [7040] = 7040, + [7041] = 6270, + [7042] = 7042, + [7043] = 7043, + [7044] = 6274, + [7045] = 6318, + [7046] = 7046, + [7047] = 6329, + [7048] = 6281, + [7049] = 6278, + [7050] = 7050, + [7051] = 6523, + [7052] = 7052, + [7053] = 7053, [7054] = 7054, - [7055] = 7055, - [7056] = 6315, - [7057] = 7057, - [7058] = 7058, - [7059] = 7059, - [7060] = 7060, + [7055] = 6322, + [7056] = 7056, + [7057] = 6264, + [7058] = 6314, + [7059] = 6282, + [7060] = 6524, [7061] = 7061, - [7062] = 7062, - [7063] = 6304, - [7064] = 7064, + [7062] = 6852, + [7063] = 7063, + [7064] = 6862, [7065] = 7065, [7066] = 7066, - [7067] = 7067, + [7067] = 6281, [7068] = 7068, - [7069] = 6800, - [7070] = 6253, + [7069] = 7069, + [7070] = 7070, [7071] = 7071, [7072] = 7072, - [7073] = 6275, - [7074] = 7074, + [7073] = 7073, + [7074] = 6256, [7075] = 7075, [7076] = 7076, - [7077] = 7077, + [7077] = 5384, [7078] = 7078, [7079] = 7079, [7080] = 7080, [7081] = 7081, [7082] = 7082, - [7083] = 7083, + [7083] = 5501, [7084] = 7084, [7085] = 7085, [7086] = 7086, - [7087] = 7077, + [7087] = 7087, [7088] = 7088, [7089] = 7089, - [7090] = 7077, + [7090] = 7090, [7091] = 7091, [7092] = 7092, - [7093] = 7077, + [7093] = 7087, [7094] = 7094, [7095] = 7095, [7096] = 7096, - [7097] = 7097, + [7097] = 7078, [7098] = 7098, [7099] = 7099, - [7100] = 7075, + [7100] = 7100, [7101] = 7101, - [7102] = 2728, - [7103] = 7103, - [7104] = 7104, + [7102] = 7102, + [7103] = 7087, + [7104] = 7076, [7105] = 7105, - [7106] = 7075, + [7106] = 7106, [7107] = 7107, - [7108] = 826, + [7108] = 7108, [7109] = 7109, [7110] = 7110, [7111] = 7111, [7112] = 7112, - [7113] = 5374, + [7113] = 7113, [7114] = 7114, - [7115] = 7115, - [7116] = 7116, + [7115] = 2754, + [7116] = 7087, [7117] = 7117, - [7118] = 7077, - [7119] = 824, + [7118] = 7118, + [7119] = 7119, [7120] = 7120, [7121] = 7121, [7122] = 7122, [7123] = 7123, [7124] = 7124, - [7125] = 3925, + [7125] = 7125, [7126] = 7126, [7127] = 7127, - [7128] = 5375, - [7129] = 7075, + [7128] = 7078, + [7129] = 7129, [7130] = 7130, - [7131] = 7131, - [7132] = 7091, - [7133] = 7133, - [7134] = 7134, + [7131] = 7089, + [7132] = 7132, + [7133] = 7087, + [7134] = 7078, [7135] = 7135, [7136] = 7136, - [7137] = 7137, + [7137] = 7121, [7138] = 7138, [7139] = 7139, - [7140] = 827, + [7140] = 7140, [7141] = 7141, - [7142] = 4416, - [7143] = 3925, + [7142] = 7142, + [7143] = 7143, [7144] = 7144, [7145] = 7145, [7146] = 7146, - [7147] = 7077, + [7147] = 7089, [7148] = 7148, - [7149] = 7149, - [7150] = 7150, - [7151] = 7151, - [7152] = 4417, + [7149] = 5391, + [7150] = 7087, + [7151] = 7078, + [7152] = 2710, [7153] = 7153, - [7154] = 5376, - [7155] = 7075, - [7156] = 7104, + [7154] = 7154, + [7155] = 7078, + [7156] = 7078, [7157] = 7157, - [7158] = 7158, + [7158] = 5375, [7159] = 7159, - [7160] = 7160, - [7161] = 7161, - [7162] = 7077, + [7160] = 5374, + [7161] = 7076, + [7162] = 7162, [7163] = 7163, - [7164] = 7077, - [7165] = 7165, + [7164] = 3907, + [7165] = 7087, [7166] = 7166, [7167] = 7167, [7168] = 7168, - [7169] = 7075, - [7170] = 7170, - [7171] = 7075, - [7172] = 7172, + [7169] = 7169, + [7170] = 7078, + [7171] = 7171, + [7172] = 7109, [7173] = 7173, - [7174] = 7174, - [7175] = 7175, + [7174] = 4445, + [7175] = 7087, [7176] = 7176, [7177] = 7177, - [7178] = 7077, + [7178] = 7178, [7179] = 7179, - [7180] = 7075, + [7180] = 7180, [7181] = 7181, - [7182] = 7182, - [7183] = 7183, - [7184] = 2770, + [7182] = 7087, + [7183] = 2727, + [7184] = 7078, [7185] = 7185, [7186] = 7186, [7187] = 7187, [7188] = 7188, [7189] = 7189, - [7190] = 7077, + [7190] = 7190, [7191] = 7191, [7192] = 7192, - [7193] = 7193, - [7194] = 7075, - [7195] = 7195, + [7193] = 7087, + [7194] = 7194, + [7195] = 7087, [7196] = 7196, [7197] = 7197, - [7198] = 7198, + [7198] = 7078, [7199] = 7199, [7200] = 7200, [7201] = 7201, - [7202] = 7077, + [7202] = 7202, [7203] = 7203, [7204] = 7204, - [7205] = 7075, + [7205] = 7087, [7206] = 7206, - [7207] = 7207, + [7207] = 7078, [7208] = 7208, - [7209] = 7077, - [7210] = 7075, - [7211] = 7075, - [7212] = 7212, + [7209] = 7209, + [7210] = 7078, + [7211] = 7211, + [7212] = 7087, [7213] = 7213, - [7214] = 836, - [7215] = 7215, + [7214] = 7214, + [7215] = 7078, [7216] = 7216, - [7217] = 7077, + [7217] = 7217, [7218] = 7218, - [7219] = 7219, - [7220] = 7075, + [7219] = 7087, + [7220] = 7220, [7221] = 7221, - [7222] = 7222, + [7222] = 7078, [7223] = 7223, [7224] = 7224, - [7225] = 7225, - [7226] = 7077, + [7225] = 4473, + [7226] = 7226, [7227] = 7227, - [7228] = 7075, - [7229] = 7229, + [7228] = 4474, + [7229] = 7087, [7230] = 7230, - [7231] = 7231, + [7231] = 7078, [7232] = 7232, [7233] = 7233, [7234] = 7234, - [7235] = 7235, - [7236] = 7077, - [7237] = 7075, - [7238] = 7077, - [7239] = 2757, - [7240] = 7075, - [7241] = 7077, - [7242] = 7195, - [7243] = 7075, - [7244] = 7077, - [7245] = 7077, - [7246] = 7246, - [7247] = 7075, - [7248] = 7077, - [7249] = 7249, - [7250] = 7075, - [7251] = 7077, - [7252] = 7252, - [7253] = 7075, - [7254] = 7077, - [7255] = 7255, - [7256] = 7256, - [7257] = 7075, - [7258] = 7077, - [7259] = 7075, - [7260] = 7077, - [7261] = 7077, - [7262] = 7075, - [7263] = 7077, + [7235] = 7087, + [7236] = 7236, + [7237] = 7078, + [7238] = 7087, + [7239] = 7078, + [7240] = 7087, + [7241] = 7241, + [7242] = 7078, + [7243] = 7087, + [7244] = 7078, + [7245] = 7087, + [7246] = 7078, + [7247] = 7087, + [7248] = 7248, + [7249] = 7078, + [7250] = 7087, + [7251] = 7251, + [7252] = 7078, + [7253] = 7087, + [7254] = 7078, + [7255] = 7087, + [7256] = 7078, + [7257] = 7087, + [7258] = 7258, + [7259] = 7078, + [7260] = 7087, + [7261] = 7261, + [7262] = 7078, + [7263] = 7087, [7264] = 7264, - [7265] = 7075, - [7266] = 7077, - [7267] = 2707, - [7268] = 7075, - [7269] = 7077, - [7270] = 7270, - [7271] = 7075, - [7272] = 7077, - [7273] = 7075, - [7274] = 7077, - [7275] = 7275, - [7276] = 7075, - [7277] = 7077, - [7278] = 7278, - [7279] = 7075, - [7280] = 7077, - [7281] = 7281, - [7282] = 7208, - [7283] = 7075, - [7284] = 7077, - [7285] = 7075, - [7286] = 7077, - [7287] = 7075, - [7288] = 7075, - [7289] = 7077, + [7265] = 7265, + [7266] = 7078, + [7267] = 7087, + [7268] = 7268, + [7269] = 7078, + [7270] = 7087, + [7271] = 7078, + [7272] = 7087, + [7273] = 7078, + [7274] = 7087, + [7275] = 7078, + [7276] = 7087, + [7277] = 7277, + [7278] = 7078, + [7279] = 7087, + [7280] = 7280, + [7281] = 7078, + [7282] = 7087, + [7283] = 7283, + [7284] = 7087, + [7285] = 7285, + [7286] = 7078, + [7287] = 7087, + [7288] = 7078, + [7289] = 7087, [7290] = 7290, - [7291] = 7075, - [7292] = 7077, + [7291] = 7078, + [7292] = 7087, [7293] = 7293, - [7294] = 7075, - [7295] = 7077, + [7294] = 7078, + [7295] = 7087, [7296] = 7296, - [7297] = 7075, - [7298] = 7077, - [7299] = 7299, - [7300] = 7075, - [7301] = 7077, - [7302] = 7075, - [7303] = 7077, - [7304] = 7075, - [7305] = 7077, + [7297] = 7078, + [7298] = 7087, + [7299] = 7078, + [7300] = 7087, + [7301] = 7087, + [7302] = 7078, + [7303] = 7087, + [7304] = 7078, + [7305] = 7087, [7306] = 7306, - [7307] = 7075, - [7308] = 7077, + [7307] = 7078, + [7308] = 7308, [7309] = 7309, [7310] = 7310, - [7311] = 7075, - [7312] = 7077, - [7313] = 7075, - [7314] = 7077, - [7315] = 7075, - [7316] = 7075, - [7317] = 4430, - [7318] = 7318, - [7319] = 7319, + [7311] = 7311, + [7312] = 7312, + [7313] = 7313, + [7314] = 7314, + [7315] = 7078, + [7316] = 7316, + [7317] = 7317, + [7318] = 829, + [7319] = 830, [7320] = 7320, [7321] = 7321, [7322] = 7322, [7323] = 7323, [7324] = 7324, [7325] = 7325, - [7326] = 7326, + [7326] = 7320, [7327] = 7327, - [7328] = 7328, - [7329] = 7077, - [7330] = 6768, - [7331] = 817, + [7328] = 5388, + [7329] = 7329, + [7330] = 7330, + [7331] = 7331, [7332] = 7332, [7333] = 7333, [7334] = 7334, [7335] = 7335, [7336] = 7336, - [7337] = 7130, + [7337] = 814, [7338] = 7338, - [7339] = 7339, - [7340] = 7340, - [7341] = 7186, - [7342] = 7321, - [7343] = 7343, - [7344] = 7075, + [7339] = 7320, + [7340] = 7321, + [7341] = 824, + [7342] = 7342, + [7343] = 7321, + [7344] = 7344, [7345] = 7345, [7346] = 7346, - [7347] = 7104, + [7347] = 7347, [7348] = 7348, [7349] = 7349, - [7350] = 7091, + [7350] = 7350, [7351] = 7351, [7352] = 7352, [7353] = 7353, - [7354] = 7195, + [7354] = 7354, [7355] = 7355, - [7356] = 7270, + [7356] = 7356, [7357] = 7357, [7358] = 7358, - [7359] = 7186, - [7360] = 7321, + [7359] = 831, + [7360] = 7360, [7361] = 7361, [7362] = 7362, [7363] = 7363, @@ -12764,27 +12764,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7365] = 7365, [7366] = 7366, [7367] = 7367, - [7368] = 7077, + [7368] = 7368, [7369] = 7369, - [7370] = 7075, - [7371] = 7371, - [7372] = 7372, - [7373] = 7373, + [7370] = 7370, + [7371] = 7076, + [7372] = 6508, + [7373] = 7087, [7374] = 7374, [7375] = 7375, [7376] = 7376, [7377] = 7377, [7378] = 7378, - [7379] = 7195, - [7380] = 7380, + [7379] = 7370, + [7380] = 7078, [7381] = 7381, [7382] = 7382, [7383] = 7383, - [7384] = 7075, + [7384] = 7384, [7385] = 7385, [7386] = 7386, - [7387] = 7387, - [7388] = 7338, + [7387] = 7121, + [7388] = 7388, [7389] = 7389, [7390] = 7390, [7391] = 7391, @@ -12796,9 +12796,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7397] = 7397, [7398] = 7398, [7399] = 7399, - [7400] = 7400, + [7400] = 7087, [7401] = 7401, - [7402] = 7402, + [7402] = 7316, [7403] = 7403, [7404] = 7404, [7405] = 7405, @@ -12807,51 +12807,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7408] = 7408, [7409] = 7409, [7410] = 7410, - [7411] = 7411, - [7412] = 4466, - [7413] = 7413, + [7411] = 5386, + [7412] = 7412, + [7413] = 7121, [7414] = 7414, [7415] = 7415, [7416] = 7416, - [7417] = 5514, + [7417] = 7417, [7418] = 7418, [7419] = 7419, - [7420] = 7420, - [7421] = 7421, + [7420] = 7078, + [7421] = 7159, [7422] = 7422, [7423] = 7423, [7424] = 7424, [7425] = 7425, [7426] = 7426, [7427] = 7427, - [7428] = 7428, - [7429] = 7336, - [7430] = 7430, - [7431] = 7431, + [7428] = 7384, + [7429] = 7429, + [7430] = 3907, + [7431] = 4428, [7432] = 7432, [7433] = 7433, - [7434] = 7103, + [7434] = 7434, [7435] = 7435, - [7436] = 7436, - [7437] = 5382, + [7436] = 2703, + [7437] = 7437, [7438] = 7438, [7439] = 7439, - [7440] = 7440, + [7440] = 7087, [7441] = 7441, [7442] = 7442, - [7443] = 7077, + [7443] = 7443, [7444] = 7444, [7445] = 7445, - [7446] = 5378, - [7447] = 5385, - [7448] = 7448, + [7446] = 7446, + [7447] = 7447, + [7448] = 7078, [7449] = 7449, [7450] = 7450, [7451] = 7451, [7452] = 7452, - [7453] = 7208, - [7454] = 7104, - [7455] = 7455, + [7453] = 7335, + [7454] = 7335, + [7455] = 7078, [7456] = 7456, [7457] = 7457, [7458] = 7458, @@ -12864,949 +12864,950 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7465] = 7465, [7466] = 7466, [7467] = 7467, - [7468] = 7458, - [7469] = 5268, + [7468] = 7468, + [7469] = 7469, [7470] = 7470, [7471] = 7471, [7472] = 7472, - [7473] = 7473, - [7474] = 7473, + [7473] = 7456, + [7474] = 7474, [7475] = 7475, [7476] = 7476, [7477] = 7477, - [7478] = 7457, - [7479] = 7460, - [7480] = 7463, - [7481] = 7473, + [7478] = 7478, + [7479] = 7479, + [7480] = 7480, + [7481] = 7481, [7482] = 7482, [7483] = 7483, - [7484] = 7484, - [7485] = 7485, - [7486] = 7486, - [7487] = 7473, - [7488] = 7482, + [7484] = 7479, + [7485] = 7479, + [7486] = 7480, + [7487] = 7481, + [7488] = 7488, [7489] = 7489, [7490] = 7490, [7491] = 7491, - [7492] = 7492, + [7492] = 7479, [7493] = 7493, [7494] = 7494, - [7495] = 7495, - [7496] = 7496, - [7497] = 7457, - [7498] = 7460, + [7495] = 7459, + [7496] = 7491, + [7497] = 7497, + [7498] = 7480, [7499] = 7499, - [7500] = 7463, + [7500] = 7500, [7501] = 7501, [7502] = 7502, - [7503] = 7461, + [7503] = 7480, [7504] = 7462, - [7505] = 7470, + [7505] = 7463, [7506] = 7506, - [7507] = 7465, - [7508] = 7508, - [7509] = 7463, + [7507] = 7507, + [7508] = 7466, + [7509] = 7481, [7510] = 7510, - [7511] = 7470, - [7512] = 7512, - [7513] = 7472, - [7514] = 7496, + [7511] = 7511, + [7512] = 7471, + [7513] = 7488, + [7514] = 7456, [7515] = 7515, - [7516] = 7473, - [7517] = 7517, - [7518] = 7482, - [7519] = 7457, - [7520] = 7460, - [7521] = 7463, - [7522] = 7494, - [7523] = 7495, + [7516] = 7516, + [7517] = 7489, + [7518] = 7481, + [7519] = 7462, + [7520] = 7479, + [7521] = 7480, + [7522] = 7481, + [7523] = 7463, [7524] = 7524, [7525] = 7525, [7526] = 7526, [7527] = 7527, - [7528] = 7473, - [7529] = 7482, - [7530] = 7530, + [7528] = 7466, + [7529] = 7488, + [7530] = 7489, [7531] = 7531, - [7532] = 7532, + [7532] = 7462, [7533] = 7533, [7534] = 7534, - [7535] = 7494, - [7536] = 7495, - [7537] = 7537, + [7535] = 7479, + [7536] = 7459, + [7537] = 7491, [7538] = 7538, [7539] = 7539, - [7540] = 7499, - [7541] = 7541, - [7542] = 7472, - [7543] = 7543, - [7544] = 7462, - [7545] = 7545, - [7546] = 7494, - [7547] = 7465, - [7548] = 7548, - [7549] = 7470, - [7550] = 7495, - [7551] = 7472, - [7552] = 6396, - [7553] = 7457, - [7554] = 7460, - [7555] = 7463, - [7556] = 7461, + [7540] = 7469, + [7541] = 7500, + [7542] = 7542, + [7543] = 7459, + [7544] = 7544, + [7545] = 7463, + [7546] = 7491, + [7547] = 7547, + [7548] = 7466, + [7549] = 7549, + [7550] = 7471, + [7551] = 7494, + [7552] = 7456, + [7553] = 7480, + [7554] = 7479, + [7555] = 7480, + [7556] = 7481, [7557] = 7557, [7558] = 7558, - [7559] = 7470, - [7560] = 7473, - [7561] = 7482, - [7562] = 7562, - [7563] = 7462, + [7559] = 7559, + [7560] = 7506, + [7561] = 7488, + [7562] = 7489, + [7563] = 7471, [7564] = 7564, - [7565] = 7565, - [7566] = 3312, - [7567] = 7494, - [7568] = 7495, - [7569] = 7569, - [7570] = 7570, + [7565] = 7481, + [7566] = 7500, + [7567] = 7567, + [7568] = 7459, + [7569] = 7491, + [7570] = 7456, [7571] = 7571, - [7572] = 7499, - [7573] = 7573, - [7574] = 7499, + [7572] = 7572, + [7573] = 7500, + [7574] = 7542, [7575] = 7575, - [7576] = 7462, - [7577] = 6405, - [7578] = 7499, - [7579] = 7465, - [7580] = 7571, - [7581] = 7470, - [7582] = 7582, - [7583] = 7472, - [7584] = 7584, - [7585] = 7457, - [7586] = 7460, - [7587] = 7463, - [7588] = 7473, + [7576] = 7576, + [7577] = 7463, + [7578] = 7578, + [7579] = 7579, + [7580] = 7466, + [7581] = 7581, + [7582] = 7471, + [7583] = 7583, + [7584] = 7456, + [7585] = 7585, + [7586] = 7479, + [7587] = 7480, + [7588] = 7481, [7589] = 7589, - [7590] = 7590, + [7590] = 7524, [7591] = 7591, - [7592] = 7473, - [7593] = 7482, - [7594] = 7594, - [7595] = 7595, - [7596] = 7482, + [7592] = 7510, + [7593] = 7488, + [7594] = 7489, + [7595] = 7500, + [7596] = 7479, [7597] = 7597, - [7598] = 7598, - [7599] = 7494, - [7600] = 7495, - [7601] = 6406, - [7602] = 7602, - [7603] = 7501, - [7604] = 7499, - [7605] = 7605, - [7606] = 7606, - [7607] = 7607, - [7608] = 7462, - [7609] = 7508, + [7598] = 7480, + [7599] = 7488, + [7600] = 7459, + [7601] = 7491, + [7602] = 7481, + [7603] = 7603, + [7604] = 7604, + [7605] = 7500, + [7606] = 7488, + [7607] = 7500, + [7608] = 7608, + [7609] = 7463, [7610] = 7610, - [7611] = 7465, - [7612] = 7612, - [7613] = 7470, - [7614] = 7614, - [7615] = 7472, - [7616] = 7616, - [7617] = 7457, - [7618] = 7460, - [7619] = 7463, - [7620] = 7594, + [7611] = 7611, + [7612] = 7466, + [7613] = 7466, + [7614] = 7471, + [7615] = 7615, + [7616] = 7456, + [7617] = 7617, + [7618] = 7479, + [7619] = 7480, + [7620] = 7481, [7621] = 7621, [7622] = 7622, [7623] = 7623, - [7624] = 7473, - [7625] = 7482, - [7626] = 7494, + [7624] = 7624, + [7625] = 7488, + [7626] = 7489, [7627] = 7627, - [7628] = 7494, + [7628] = 7628, [7629] = 7629, - [7630] = 7630, - [7631] = 7494, - [7632] = 7495, - [7633] = 7633, + [7630] = 7488, + [7631] = 7489, + [7632] = 7459, + [7633] = 7491, [7634] = 7634, - [7635] = 7607, - [7636] = 7499, - [7637] = 7495, + [7635] = 7635, + [7636] = 7608, + [7637] = 7500, [7638] = 7638, - [7639] = 7639, - [7640] = 7462, - [7641] = 7641, + [7639] = 7489, + [7640] = 7488, + [7641] = 7463, [7642] = 7642, - [7643] = 7465, - [7644] = 7644, - [7645] = 7470, - [7646] = 7646, - [7647] = 7472, - [7648] = 7472, - [7649] = 7457, - [7650] = 7460, - [7651] = 7463, - [7652] = 7652, + [7643] = 7643, + [7644] = 7466, + [7645] = 7645, + [7646] = 7471, + [7647] = 7516, + [7648] = 7456, + [7649] = 7649, + [7650] = 7479, + [7651] = 7480, + [7652] = 7481, [7653] = 7653, - [7654] = 7598, - [7655] = 7464, - [7656] = 7473, - [7657] = 7482, - [7658] = 7658, + [7654] = 7654, + [7655] = 7481, + [7656] = 7656, + [7657] = 7488, + [7658] = 7489, [7659] = 7659, [7660] = 7660, - [7661] = 7457, - [7662] = 7460, - [7663] = 7494, - [7664] = 7495, - [7665] = 7665, + [7661] = 7661, + [7662] = 7662, + [7663] = 7663, + [7664] = 7459, + [7665] = 7491, [7666] = 7666, [7667] = 7667, - [7668] = 7499, - [7669] = 7669, - [7670] = 7463, - [7671] = 7462, - [7672] = 7672, - [7673] = 7673, - [7674] = 7465, - [7675] = 7470, - [7676] = 7676, - [7677] = 7472, - [7678] = 7457, - [7679] = 7460, - [7680] = 7463, - [7681] = 7473, - [7682] = 7482, - [7683] = 7494, - [7684] = 7495, - [7685] = 7499, - [7686] = 7495, - [7687] = 7462, - [7688] = 7688, - [7689] = 7470, - [7690] = 7465, - [7691] = 7470, - [7692] = 5222, - [7693] = 7472, - [7694] = 7457, - [7695] = 7460, - [7696] = 7463, - [7697] = 7473, - [7698] = 7482, - [7699] = 7494, - [7700] = 7495, - [7701] = 7499, - [7702] = 7702, - [7703] = 7462, - [7704] = 7499, - [7705] = 7705, - [7706] = 7465, - [7707] = 7470, - [7708] = 7708, - [7709] = 7472, - [7710] = 7457, - [7711] = 7460, - [7712] = 7463, - [7713] = 7473, - [7714] = 7482, - [7715] = 7494, - [7716] = 7495, - [7717] = 7499, - [7718] = 7718, - [7719] = 7462, - [7720] = 7720, + [7668] = 7459, + [7669] = 7500, + [7670] = 7491, + [7671] = 7671, + [7672] = 7463, + [7673] = 7506, + [7674] = 7674, + [7675] = 7466, + [7676] = 7471, + [7677] = 7677, + [7678] = 7456, + [7679] = 7479, + [7680] = 7480, + [7681] = 7481, + [7682] = 7488, + [7683] = 7489, + [7684] = 7459, + [7685] = 7491, + [7686] = 7500, + [7687] = 7687, + [7688] = 7463, + [7689] = 7689, + [7690] = 7524, + [7691] = 7466, + [7692] = 7471, + [7693] = 7693, + [7694] = 7456, + [7695] = 7479, + [7696] = 7480, + [7697] = 7481, + [7698] = 7488, + [7699] = 7489, + [7700] = 7459, + [7701] = 7491, + [7702] = 7500, + [7703] = 7703, + [7704] = 7463, + [7705] = 7459, + [7706] = 7510, + [7707] = 7466, + [7708] = 7471, + [7709] = 7709, + [7710] = 7456, + [7711] = 7479, + [7712] = 7480, + [7713] = 7481, + [7714] = 7488, + [7715] = 7489, + [7716] = 7459, + [7717] = 7491, + [7718] = 7500, + [7719] = 7491, + [7720] = 7463, [7721] = 7721, - [7722] = 7465, - [7723] = 7470, - [7724] = 7461, - [7725] = 7457, - [7726] = 7462, - [7727] = 7462, - [7728] = 7728, - [7729] = 7465, - [7730] = 7465, - [7731] = 7470, - [7732] = 7732, - [7733] = 7457, - [7734] = 7465, - [7735] = 7462, - [7736] = 7736, - [7737] = 7499, - [7738] = 7465, - [7739] = 7470, - [7740] = 7740, - [7741] = 7457, - [7742] = 7458, - [7743] = 7462, - [7744] = 7744, - [7745] = 7745, - [7746] = 7465, - [7747] = 7470, - [7748] = 7473, - [7749] = 7457, - [7750] = 7482, - [7751] = 7462, - [7752] = 7752, - [7753] = 7461, - [7754] = 7465, - [7755] = 7470, - [7756] = 7756, - [7757] = 7457, - [7758] = 7758, - [7759] = 7462, - [7760] = 7462, - [7761] = 7486, - [7762] = 7465, - [7763] = 7470, - [7764] = 7764, - [7765] = 7457, - [7766] = 7470, - [7767] = 7462, - [7768] = 7768, - [7769] = 7465, - [7770] = 7465, - [7771] = 7470, - [7772] = 7472, - [7773] = 7457, - [7774] = 7774, - [7775] = 7462, - [7776] = 7470, - [7777] = 7460, - [7778] = 7465, - [7779] = 7470, - [7780] = 7780, - [7781] = 7457, - [7782] = 7482, - [7783] = 7462, - [7784] = 7784, - [7785] = 7458, - [7786] = 7465, - [7787] = 7470, - [7788] = 7788, - [7789] = 7457, - [7790] = 7790, - [7791] = 7462, - [7792] = 7792, - [7793] = 7484, - [7794] = 7465, - [7795] = 7470, - [7796] = 7796, - [7797] = 7457, - [7798] = 7607, - [7799] = 7462, - [7800] = 7800, - [7801] = 7801, - [7802] = 7465, - [7803] = 7470, - [7804] = 7457, - [7805] = 7457, - [7806] = 7460, - [7807] = 7462, - [7808] = 7808, - [7809] = 7463, - [7810] = 7465, - [7811] = 7470, - [7812] = 7812, - [7813] = 7457, - [7814] = 7814, - [7815] = 7462, - [7816] = 7494, - [7817] = 7495, - [7818] = 7465, - [7819] = 7470, - [7820] = 7820, - [7821] = 7457, - [7822] = 7527, - [7823] = 7462, - [7824] = 7461, - [7825] = 7470, - [7826] = 7465, - [7827] = 7470, - [7828] = 7828, - [7829] = 7457, - [7830] = 7473, - [7831] = 7462, - [7832] = 7482, - [7833] = 7472, - [7834] = 7465, - [7835] = 7470, - [7836] = 7836, - [7837] = 7457, - [7838] = 7838, - [7839] = 7462, - [7840] = 7462, + [7722] = 7722, + [7723] = 7466, + [7724] = 7471, + [7725] = 7725, + [7726] = 7479, + [7727] = 7635, + [7728] = 7463, + [7729] = 7489, + [7730] = 7730, + [7731] = 7466, + [7732] = 7471, + [7733] = 7488, + [7734] = 7479, + [7735] = 7735, + [7736] = 7463, + [7737] = 7737, + [7738] = 7462, + [7739] = 7466, + [7740] = 7471, + [7741] = 7463, + [7742] = 7479, + [7743] = 7743, + [7744] = 7463, + [7745] = 7500, + [7746] = 7500, + [7747] = 7466, + [7748] = 7471, + [7749] = 7466, + [7750] = 7479, + [7751] = 7643, + [7752] = 7463, + [7753] = 7627, + [7754] = 7502, + [7755] = 7466, + [7756] = 7471, + [7757] = 7462, + [7758] = 7479, + [7759] = 7469, + [7760] = 7463, + [7761] = 7642, + [7762] = 7500, + [7763] = 7466, + [7764] = 7471, + [7765] = 7463, + [7766] = 7479, + [7767] = 7767, + [7768] = 7463, + [7769] = 7769, + [7770] = 7615, + [7771] = 7466, + [7772] = 7471, + [7773] = 7773, + [7774] = 7479, + [7775] = 7638, + [7776] = 7463, + [7777] = 7671, + [7778] = 7643, + [7779] = 7466, + [7780] = 7471, + [7781] = 7781, + [7782] = 7479, + [7783] = 7456, + [7784] = 7463, + [7785] = 7471, + [7786] = 7786, + [7787] = 7466, + [7788] = 7471, + [7789] = 7456, + [7790] = 7479, + [7791] = 7466, + [7792] = 7463, + [7793] = 7793, + [7794] = 7794, + [7795] = 7466, + [7796] = 7471, + [7797] = 7797, + [7798] = 7479, + [7799] = 7799, + [7800] = 7463, + [7801] = 7769, + [7802] = 7479, + [7803] = 7466, + [7804] = 7471, + [7805] = 7769, + [7806] = 7479, + [7807] = 7807, + [7808] = 7463, + [7809] = 7809, + [7810] = 7810, + [7811] = 7466, + [7812] = 7471, + [7813] = 7813, + [7814] = 7479, + [7815] = 7815, + [7816] = 7463, + [7817] = 7817, + [7818] = 7818, + [7819] = 7466, + [7820] = 7471, + [7821] = 7821, + [7822] = 7479, + [7823] = 7823, + [7824] = 7463, + [7825] = 7479, + [7826] = 7608, + [7827] = 7466, + [7828] = 7471, + [7829] = 7480, + [7830] = 7479, + [7831] = 7481, + [7832] = 7463, + [7833] = 7833, + [7834] = 7834, + [7835] = 7466, + [7836] = 7471, + [7837] = 7837, + [7838] = 7479, + [7839] = 7839, + [7840] = 7463, [7841] = 7841, - [7842] = 7465, - [7843] = 7470, - [7844] = 7534, - [7845] = 7457, - [7846] = 7846, - [7847] = 7462, - [7848] = 7494, - [7849] = 7849, - [7850] = 7465, - [7851] = 7470, - [7852] = 7495, - [7853] = 7457, - [7854] = 7854, - [7855] = 7462, - [7856] = 7465, + [7842] = 7842, + [7843] = 7466, + [7844] = 7471, + [7845] = 7845, + [7846] = 7479, + [7847] = 7847, + [7848] = 7463, + [7849] = 7547, + [7850] = 7850, + [7851] = 7466, + [7852] = 7471, + [7853] = 7853, + [7854] = 7479, + [7855] = 7488, + [7856] = 7463, [7857] = 7857, - [7858] = 7465, - [7859] = 7470, - [7860] = 7458, - [7861] = 7457, - [7862] = 7499, - [7863] = 7462, - [7864] = 7864, - [7865] = 7495, - [7866] = 7465, - [7867] = 7470, - [7868] = 7606, - [7869] = 7457, - [7870] = 7476, - [7871] = 7462, - [7872] = 7464, + [7858] = 7809, + [7859] = 7466, + [7860] = 7471, + [7861] = 7489, + [7862] = 7479, + [7863] = 7608, + [7864] = 7463, + [7865] = 7457, + [7866] = 7866, + [7867] = 7466, + [7868] = 7471, + [7869] = 7869, + [7870] = 7479, + [7871] = 7871, + [7872] = 7463, [7873] = 7873, - [7874] = 7465, - [7875] = 7470, - [7876] = 7876, - [7877] = 7457, - [7878] = 7472, - [7879] = 7462, - [7880] = 7457, - [7881] = 7460, - [7882] = 7465, - [7883] = 7470, - [7884] = 7884, - [7885] = 7457, - [7886] = 7886, - [7887] = 7462, + [7874] = 7874, + [7875] = 7466, + [7876] = 7471, + [7877] = 7459, + [7878] = 7479, + [7879] = 7491, + [7880] = 7463, + [7881] = 7881, + [7882] = 7469, + [7883] = 7466, + [7884] = 7471, + [7885] = 7885, + [7886] = 7479, + [7887] = 7887, [7888] = 7463, [7889] = 7889, - [7890] = 7465, - [7891] = 7470, - [7892] = 7892, - [7893] = 7457, - [7894] = 7894, + [7890] = 7479, + [7891] = 7466, + [7892] = 7471, + [7893] = 7500, + [7894] = 7479, [7895] = 7462, - [7896] = 7896, + [7896] = 7463, [7897] = 7897, - [7898] = 7465, - [7899] = 7470, - [7900] = 7900, - [7901] = 7457, - [7902] = 7499, - [7903] = 7462, - [7904] = 7904, - [7905] = 7780, - [7906] = 7465, - [7907] = 7470, - [7908] = 7908, - [7909] = 7457, - [7910] = 7910, - [7911] = 7462, - [7912] = 7458, - [7913] = 7571, - [7914] = 7465, - [7915] = 7470, - [7916] = 7916, - [7917] = 7457, - [7918] = 7676, + [7898] = 7661, + [7899] = 7466, + [7900] = 7471, + [7901] = 7463, + [7902] = 7479, + [7903] = 7635, + [7904] = 7463, + [7905] = 7905, + [7906] = 7842, + [7907] = 7466, + [7908] = 7471, + [7909] = 7871, + [7910] = 7479, + [7911] = 7488, + [7912] = 7463, + [7913] = 7913, + [7914] = 7459, + [7915] = 7466, + [7916] = 7471, + [7917] = 7469, + [7918] = 7479, [7919] = 7919, - [7920] = 7598, - [7921] = 7473, - [7922] = 7482, - [7923] = 7466, - [7924] = 7494, - [7925] = 7925, - [7926] = 7486, - [7927] = 7455, - [7928] = 7928, - [7929] = 7571, - [7930] = 7930, - [7931] = 7931, - [7932] = 7527, - [7933] = 7494, - [7934] = 7623, + [7920] = 7920, + [7921] = 7921, + [7922] = 7919, + [7923] = 7493, + [7924] = 7462, + [7925] = 7463, + [7926] = 7873, + [7927] = 7474, + [7928] = 7466, + [7929] = 7929, + [7930] = 7491, + [7931] = 7466, + [7932] = 7493, + [7933] = 7469, + [7934] = 7934, [7935] = 7935, [7936] = 7936, [7937] = 7937, - [7938] = 7508, - [7939] = 7638, - [7940] = 7457, + [7938] = 7938, + [7939] = 7939, + [7940] = 7475, [7941] = 7941, - [7942] = 7942, + [7942] = 5218, [7943] = 7943, - [7944] = 7534, - [7945] = 7945, - [7946] = 7946, - [7947] = 7517, - [7948] = 7534, - [7949] = 7598, - [7950] = 7889, - [7951] = 7951, - [7952] = 7461, - [7953] = 7758, - [7954] = 7774, - [7955] = 7462, - [7956] = 7646, - [7957] = 7908, - [7958] = 7958, - [7959] = 7896, - [7960] = 7960, - [7961] = 7494, + [7944] = 7703, + [7945] = 7501, + [7946] = 7534, + [7947] = 7947, + [7948] = 7483, + [7949] = 7949, + [7950] = 7471, + [7951] = 7881, + [7952] = 7952, + [7953] = 7456, + [7954] = 7954, + [7955] = 7955, + [7956] = 7956, + [7957] = 7957, + [7958] = 7547, + [7959] = 7959, + [7960] = 7494, + [7961] = 7961, [7962] = 7962, [7963] = 7963, - [7964] = 7495, - [7965] = 7527, + [7964] = 7463, + [7965] = 7494, [7966] = 7966, [7967] = 7967, - [7968] = 7968, - [7969] = 7534, - [7970] = 7652, - [7971] = 7465, - [7972] = 7972, + [7968] = 7469, + [7969] = 7480, + [7970] = 7970, + [7971] = 7853, + [7972] = 7506, [7973] = 7973, - [7974] = 7974, + [7974] = 7957, [7975] = 7975, - [7976] = 7458, - [7977] = 7977, - [7978] = 7470, - [7979] = 7472, - [7980] = 7980, - [7981] = 7981, + [7976] = 7976, + [7977] = 7887, + [7978] = 7480, + [7979] = 7722, + [7980] = 7905, + [7981] = 7737, [7982] = 7982, - [7983] = 7983, - [7984] = 7984, - [7985] = 7985, + [7983] = 7947, + [7984] = 7479, + [7985] = 7459, [7986] = 7986, [7987] = 7987, - [7988] = 7988, - [7989] = 7594, - [7990] = 7990, - [7991] = 7991, - [7992] = 7992, + [7988] = 7921, + [7989] = 7583, + [7990] = 7489, + [7991] = 7527, + [7992] = 7671, [7993] = 7993, [7994] = 7994, - [7995] = 7461, - [7996] = 7996, - [7997] = 7997, - [7998] = 7836, - [7999] = 7846, - [8000] = 8000, - [8001] = 7462, - [8002] = 8002, - [8003] = 8003, - [8004] = 8004, - [8005] = 8005, - [8006] = 7499, - [8007] = 7465, - [8008] = 7571, + [7995] = 7995, + [7996] = 7480, + [7997] = 7481, + [7998] = 7591, + [7999] = 7464, + [8000] = 7468, + [8001] = 8001, + [8002] = 7524, + [8003] = 7642, + [8004] = 7677, + [8005] = 7471, + [8006] = 7471, + [8007] = 8007, + [8008] = 8008, [8009] = 8009, - [8010] = 7462, - [8011] = 7598, - [8012] = 7676, - [8013] = 7641, - [8014] = 8014, - [8015] = 7472, - [8016] = 7756, - [8017] = 7508, + [8010] = 8010, + [8011] = 7502, + [8012] = 8012, + [8013] = 7919, + [8014] = 7627, + [8015] = 8015, + [8016] = 8016, + [8017] = 8017, [8018] = 8018, - [8019] = 7470, - [8020] = 7623, - [8021] = 7545, - [8022] = 7472, + [8019] = 8019, + [8020] = 8020, + [8021] = 7488, + [8022] = 8022, [8023] = 8023, - [8024] = 7541, - [8025] = 7565, + [8024] = 8024, + [8025] = 8025, [8026] = 8026, [8027] = 8027, [8028] = 8028, - [8029] = 7943, - [8030] = 8030, - [8031] = 8031, - [8032] = 7801, - [8033] = 7889, - [8034] = 8027, - [8035] = 7508, - [8036] = 7997, - [8037] = 8037, - [8038] = 7458, + [8029] = 8029, + [8030] = 7703, + [8031] = 7489, + [8032] = 7466, + [8033] = 8033, + [8034] = 7881, + [8035] = 8035, + [8036] = 8036, + [8037] = 7462, + [8038] = 8038, [8039] = 8039, - [8040] = 8040, - [8041] = 7476, - [8042] = 8042, - [8043] = 8043, - [8044] = 8044, + [8040] = 7608, + [8041] = 8041, + [8042] = 7463, + [8043] = 7456, + [8044] = 7497, [8045] = 8045, - [8046] = 8046, - [8047] = 7980, - [8048] = 8048, - [8049] = 8049, - [8050] = 7988, - [8051] = 7623, - [8052] = 7990, - [8053] = 7642, - [8054] = 7992, + [8046] = 7466, + [8047] = 8047, + [8048] = 7737, + [8049] = 7642, + [8050] = 8050, + [8051] = 7583, + [8052] = 8052, + [8053] = 7527, + [8054] = 8054, [8055] = 7993, [8056] = 7994, - [8057] = 7997, - [8058] = 7836, - [8059] = 7846, - [8060] = 7457, - [8061] = 7676, - [8062] = 7665, - [8063] = 8063, + [8057] = 7995, + [8058] = 7591, + [8059] = 7464, + [8060] = 7468, + [8061] = 8061, + [8062] = 7919, + [8063] = 7661, [8064] = 8064, [8065] = 8065, - [8066] = 7672, + [8066] = 8066, [8067] = 8067, [8068] = 8068, - [8069] = 7897, - [8070] = 7460, - [8071] = 7461, - [8072] = 8072, + [8069] = 7469, + [8070] = 7905, + [8071] = 5231, + [8072] = 7510, [8073] = 8073, [8074] = 8074, - [8075] = 8075, - [8076] = 7457, - [8077] = 7889, - [8078] = 7460, - [8079] = 5245, - [8080] = 7463, - [8081] = 7457, - [8082] = 7462, - [8083] = 7672, - [8084] = 7499, - [8085] = 7980, - [8086] = 8086, - [8087] = 7764, - [8088] = 7990, - [8089] = 7470, - [8090] = 7676, - [8091] = 7466, - [8092] = 7780, - [8093] = 7458, - [8094] = 8094, - [8095] = 7460, - [8096] = 7475, + [8075] = 7666, + [8076] = 7635, + [8077] = 7483, + [8078] = 7881, + [8079] = 7471, + [8080] = 7459, + [8081] = 7491, + [8082] = 8082, + [8083] = 8083, + [8084] = 7506, + [8085] = 8085, + [8086] = 7737, + [8087] = 8087, + [8088] = 8088, + [8089] = 7527, + [8090] = 8090, + [8091] = 7919, + [8092] = 8092, + [8093] = 7471, + [8094] = 7608, + [8095] = 7524, + [8096] = 7500, [8097] = 8097, - [8098] = 8098, - [8099] = 7499, - [8100] = 7457, - [8101] = 7473, + [8098] = 7615, + [8099] = 3298, + [8100] = 8100, + [8101] = 7474, [8102] = 8102, [8103] = 8103, - [8104] = 7889, - [8105] = 8105, + [8104] = 7515, + [8105] = 7881, [8106] = 8106, - [8107] = 8107, - [8108] = 7482, - [8109] = 7980, - [8110] = 7990, - [8111] = 8111, - [8112] = 7676, - [8113] = 7702, - [8114] = 7465, - [8115] = 7461, - [8116] = 7462, - [8117] = 7630, - [8118] = 7641, - [8119] = 7472, - [8120] = 8120, - [8121] = 7463, - [8122] = 7992, - [8123] = 7465, - [8124] = 7764, - [8125] = 8125, - [8126] = 7768, - [8127] = 7458, - [8128] = 7980, - [8129] = 7990, - [8130] = 8130, - [8131] = 7676, - [8132] = 7461, - [8133] = 7736, - [8134] = 7494, + [8107] = 7456, + [8108] = 7491, + [8109] = 8109, + [8110] = 7737, + [8111] = 7527, + [8112] = 7459, + [8113] = 7919, + [8114] = 8114, + [8115] = 8115, + [8116] = 7929, + [8117] = 7500, + [8118] = 8118, + [8119] = 7627, + [8120] = 7677, + [8121] = 7479, + [8122] = 7642, + [8123] = 7516, + [8124] = 7481, + [8125] = 7936, + [8126] = 7671, + [8127] = 7480, + [8128] = 8128, + [8129] = 7737, + [8130] = 7527, + [8131] = 8131, + [8132] = 7919, + [8133] = 7666, + [8134] = 7481, [8135] = 8135, - [8136] = 7495, - [8137] = 7499, - [8138] = 7531, - [8139] = 7702, - [8140] = 7463, - [8141] = 8141, - [8142] = 7908, - [8143] = 7470, + [8136] = 7929, + [8137] = 8137, + [8138] = 7479, + [8139] = 7480, + [8140] = 8140, + [8141] = 7481, + [8142] = 7767, + [8143] = 7627, [8144] = 8144, - [8145] = 8145, - [8146] = 7980, - [8147] = 7990, - [8148] = 7472, - [8149] = 7676, - [8150] = 7484, - [8151] = 8151, + [8145] = 8135, + [8146] = 7642, + [8147] = 7737, + [8148] = 7527, + [8149] = 8149, + [8150] = 7919, + [8151] = 7456, [8152] = 8152, - [8153] = 8153, - [8154] = 7659, - [8155] = 8155, - [8156] = 7499, - [8157] = 7458, - [8158] = 7508, + [8153] = 7456, + [8154] = 8154, + [8155] = 7666, + [8156] = 8156, + [8157] = 8157, + [8158] = 8158, [8159] = 8159, [8160] = 8160, - [8161] = 8161, - [8162] = 7960, - [8163] = 7962, - [8164] = 7980, - [8165] = 7990, - [8166] = 7993, - [8167] = 7676, - [8168] = 7471, - [8169] = 7457, - [8170] = 7460, - [8171] = 7463, - [8172] = 7473, - [8173] = 7482, - [8174] = 8174, + [8161] = 7722, + [8162] = 7671, + [8163] = 8152, + [8164] = 7475, + [8165] = 7737, + [8166] = 7527, + [8167] = 8156, + [8168] = 7919, + [8169] = 6272, + [8170] = 7921, + [8171] = 7959, + [8172] = 8118, + [8173] = 8173, + [8174] = 7621, [8175] = 8175, - [8176] = 8176, - [8177] = 8177, - [8178] = 7475, - [8179] = 7980, - [8180] = 7857, - [8181] = 7676, - [8182] = 8182, - [8183] = 7768, - [8184] = 7473, - [8185] = 7482, - [8186] = 8186, - [8187] = 7462, - [8188] = 7486, - [8189] = 7482, - [8190] = 7458, - [8191] = 8191, - [8192] = 8176, - [8193] = 7980, - [8194] = 7982, - [8195] = 7676, - [8196] = 7896, - [8197] = 7527, - [8198] = 7461, - [8199] = 8199, - [8200] = 7764, - [8201] = 8201, - [8202] = 7988, - [8203] = 7462, - [8204] = 7718, - [8205] = 7494, - [8206] = 8206, - [8207] = 7980, - [8208] = 7495, - [8209] = 7676, - [8210] = 7461, - [8211] = 7462, - [8212] = 7527, - [8213] = 8213, - [8214] = 7465, - [8215] = 7943, - [8216] = 7465, - [8217] = 7534, - [8218] = 7510, - [8219] = 7457, - [8220] = 7980, - [8221] = 8221, - [8222] = 7676, - [8223] = 7967, - [8224] = 7665, - [8225] = 7571, - [8226] = 7736, - [8227] = 7672, - [8228] = 7460, - [8229] = 7458, - [8230] = 7486, + [8176] = 7671, + [8177] = 7467, + [8178] = 7525, + [8179] = 7462, + [8180] = 7737, + [8181] = 7463, + [8182] = 7919, + [8183] = 7525, + [8184] = 8184, + [8185] = 8185, + [8186] = 7466, + [8187] = 7488, + [8188] = 7489, + [8189] = 7462, + [8190] = 7469, + [8191] = 7489, + [8192] = 8192, + [8193] = 7490, + [8194] = 7737, + [8195] = 8195, + [8196] = 7919, + [8197] = 7507, + [8198] = 8198, + [8199] = 7936, + [8200] = 8200, + [8201] = 7549, + [8202] = 8202, + [8203] = 8203, + [8204] = 7471, + [8205] = 8205, + [8206] = 7463, + [8207] = 7456, + [8208] = 7737, + [8209] = 7459, + [8210] = 7919, + [8211] = 7491, + [8212] = 8212, + [8213] = 7730, + [8214] = 8214, + [8215] = 7722, + [8216] = 7558, + [8217] = 8217, + [8218] = 7500, + [8219] = 7488, + [8220] = 7466, + [8221] = 7737, + [8222] = 8222, + [8223] = 7919, + [8224] = 8224, + [8225] = 7479, + [8226] = 7480, + [8227] = 7481, + [8228] = 7615, + [8229] = 7462, + [8230] = 7489, [8231] = 8231, - [8232] = 8232, - [8233] = 7980, - [8234] = 8234, - [8235] = 7676, - [8236] = 7486, - [8237] = 7458, + [8232] = 7463, + [8233] = 7572, + [8234] = 7737, + [8235] = 8235, + [8236] = 7919, + [8237] = 8237, [8238] = 8238, - [8239] = 7531, - [8240] = 7702, - [8241] = 7463, - [8242] = 7980, - [8243] = 8243, - [8244] = 7676, - [8245] = 8245, + [8239] = 7474, + [8240] = 8240, + [8241] = 8241, + [8242] = 7488, + [8243] = 7737, + [8244] = 7489, + [8245] = 7919, [8246] = 8246, - [8247] = 8247, - [8248] = 8248, - [8249] = 8249, - [8250] = 8250, - [8251] = 7980, - [8252] = 7499, - [8253] = 7571, - [8254] = 7465, - [8255] = 7838, - [8256] = 7489, - [8257] = 7980, - [8258] = 7539, - [8259] = 8259, - [8260] = 7621, - [8261] = 7629, - [8262] = 8159, - [8263] = 7980, - [8264] = 7598, + [8247] = 6277, + [8248] = 7608, + [8249] = 7469, + [8250] = 7608, + [8251] = 7954, + [8252] = 7737, + [8253] = 8253, + [8254] = 8254, + [8255] = 7955, + [8256] = 8256, + [8257] = 7687, + [8258] = 7737, + [8259] = 7976, + [8260] = 8260, + [8261] = 8261, + [8262] = 7469, + [8263] = 7542, + [8264] = 7737, [8265] = 8265, - [8266] = 7857, - [8267] = 8176, - [8268] = 7946, - [8269] = 7980, - [8270] = 7461, - [8271] = 8043, - [8272] = 7470, - [8273] = 7465, - [8274] = 7980, - [8275] = 7508, - [8276] = 7472, + [8266] = 7462, + [8267] = 8152, + [8268] = 7463, + [8269] = 7638, + [8270] = 7737, + [8271] = 8271, + [8272] = 8272, + [8273] = 3324, + [8274] = 8274, + [8275] = 7737, + [8276] = 7459, [8277] = 8277, - [8278] = 7946, - [8279] = 8043, + [8278] = 7491, + [8279] = 7506, [8280] = 8280, - [8281] = 8281, - [8282] = 7732, - [8283] = 7460, + [8281] = 7466, + [8282] = 7491, + [8283] = 7524, [8284] = 8284, - [8285] = 3301, + [8285] = 7506, [8286] = 8286, - [8287] = 8287, - [8288] = 8288, - [8289] = 7571, + [8287] = 7469, + [8288] = 7489, + [8289] = 8289, [8290] = 8290, - [8291] = 8291, + [8291] = 7874, [8292] = 8292, - [8293] = 8221, - [8294] = 7980, - [8295] = 7990, - [8296] = 8296, + [8293] = 7767, + [8294] = 7572, + [8295] = 8295, + [8296] = 7471, [8297] = 8297, [8298] = 8298, - [8299] = 7598, - [8300] = 7638, - [8301] = 7545, - [8302] = 7470, - [8303] = 8303, + [8299] = 8299, + [8300] = 8300, + [8301] = 7500, + [8302] = 8238, + [8303] = 7627, [8304] = 8304, - [8305] = 8305, - [8306] = 7607, - [8307] = 7471, - [8308] = 7473, - [8309] = 7486, - [8310] = 7496, - [8311] = 7472, - [8312] = 7594, - [8313] = 7457, - [8314] = 7460, - [8315] = 8315, + [8305] = 7671, + [8306] = 7642, + [8307] = 7462, + [8308] = 7463, + [8309] = 7459, + [8310] = 5225, + [8311] = 7671, + [8312] = 7491, + [8313] = 7471, + [8314] = 8314, + [8315] = 7730, [8316] = 8316, - [8317] = 8317, + [8317] = 7456, [8318] = 8318, - [8319] = 8319, - [8320] = 7463, - [8321] = 7494, - [8322] = 7975, - [8323] = 8323, - [8324] = 7768, - [8325] = 8325, - [8326] = 7482, - [8327] = 7838, - [8328] = 8328, - [8329] = 5231, - [8330] = 7508, + [8319] = 7466, + [8320] = 7506, + [8321] = 8321, + [8322] = 8156, + [8323] = 7627, + [8324] = 7549, + [8325] = 8205, + [8326] = 8175, + [8327] = 7558, + [8328] = 7524, + [8329] = 8265, + [8330] = 7469, [8331] = 8331, - [8332] = 8044, - [8333] = 7633, - [8334] = 8086, - [8335] = 8002, - [8336] = 7744, - [8337] = 8337, - [8338] = 7477, - [8339] = 8068, - [8340] = 7994, - [8341] = 7896, + [8332] = 7456, + [8333] = 8256, + [8334] = 8334, + [8335] = 8314, + [8336] = 7823, + [8337] = 8137, + [8338] = 7959, + [8339] = 7850, + [8340] = 8100, + [8341] = 8341, [8342] = 8342, - [8343] = 8191, - [8344] = 8344, - [8345] = 7464, + [8343] = 8054, + [8344] = 8271, + [8345] = 6298, [8346] = 8346, - [8347] = 8347, - [8348] = 7545, - [8349] = 7936, - [8350] = 7598, - [8351] = 7495, - [8352] = 7983, - [8353] = 8353, - [8354] = 8354, + [8347] = 7479, + [8348] = 7480, + [8349] = 8349, + [8350] = 8350, + [8351] = 8351, + [8352] = 7469, + [8353] = 7481, + [8354] = 7502, [8355] = 8355, - [8356] = 7517, - [8357] = 8026, - [8358] = 7473, - [8359] = 8044, - [8360] = 8086, - [8361] = 8361, - [8362] = 7482, - [8363] = 8363, - [8364] = 7495, - [8365] = 7527, - [8366] = 7606, + [8356] = 7524, + [8357] = 8357, + [8358] = 8358, + [8359] = 7982, + [8360] = 8256, + [8361] = 8314, + [8362] = 7516, + [8363] = 8350, + [8364] = 8364, + [8365] = 7993, + [8366] = 7994, [8367] = 8367, [8368] = 8368, - [8369] = 8369, - [8370] = 7967, + [8369] = 7500, + [8370] = 8370, [8371] = 8371, - [8372] = 8372, - [8373] = 8044, - [8374] = 8374, - [8375] = 7471, - [8376] = 8376, - [8377] = 7486, - [8378] = 8378, - [8379] = 8379, - [8380] = 7494, - [8381] = 7534, - [8382] = 7630, - [8383] = 7495, - [8384] = 7527, - [8385] = 7718, - [8386] = 7470, - [8387] = 8387, + [8372] = 7488, + [8373] = 7460, + [8374] = 8256, + [8375] = 7995, + [8376] = 5271, + [8377] = 7489, + [8378] = 7627, + [8379] = 7471, + [8380] = 8380, + [8381] = 8381, + [8382] = 8382, + [8383] = 7642, + [8384] = 8384, + [8385] = 7459, + [8386] = 7491, + [8387] = 7471, [8388] = 8388, - [8389] = 7499, - [8390] = 7461, + [8389] = 7456, + [8390] = 7471, [8391] = 7462, - [8392] = 7534, - [8393] = 7463, - [8394] = 7641, - [8395] = 8288, + [8392] = 7463, + [8393] = 7500, + [8394] = 7515, + [8395] = 7767, [8396] = 8396, - [8397] = 7465, - [8398] = 7589, - [8399] = 7591, - [8400] = 8145, - [8401] = 8174, - [8402] = 7589, - [8403] = 7591, - [8404] = 8145, - [8405] = 8174, - [8406] = 7570, - [8407] = 8407, - [8408] = 7570, - [8409] = 7472, - [8410] = 7642, + [8397] = 7466, + [8398] = 7661, + [8399] = 8027, + [8400] = 8028, + [8401] = 8184, + [8402] = 8253, + [8403] = 8027, + [8404] = 8028, + [8405] = 8184, + [8406] = 8253, + [8407] = 8016, + [8408] = 7905, + [8409] = 8016, + [8410] = 8410, + [8411] = 8054, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -14087,17 +14088,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(55); END_STATE(); case 57: - if (lookahead == '\n') SKIP(218); + if (lookahead == '\n') SKIP(214); END_STATE(); case 58: - if (lookahead == '\n') SKIP(218); + if (lookahead == '\n') SKIP(214); if (lookahead == '\r') SKIP(57); END_STATE(); case 59: - if (lookahead == '\n') SKIP(214); + if (lookahead == '\n') SKIP(218); END_STATE(); case 60: - if (lookahead == '\n') SKIP(214); + if (lookahead == '\n') SKIP(218); if (lookahead == '\r') SKIP(59); END_STATE(); case 61: @@ -14143,17 +14144,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(71); END_STATE(); case 73: - if (lookahead == '\n') SKIP(297); + if (lookahead == '\n') SKIP(291); END_STATE(); case 74: - if (lookahead == '\n') SKIP(297); + if (lookahead == '\n') SKIP(291); if (lookahead == '\r') SKIP(73); END_STATE(); case 75: - if (lookahead == '\n') SKIP(291); + if (lookahead == '\n') SKIP(297); END_STATE(); case 76: - if (lookahead == '\n') SKIP(291); + if (lookahead == '\n') SKIP(297); if (lookahead == '\r') SKIP(75); END_STATE(); case 77: @@ -14185,13 +14186,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(83); END_STATE(); case 85: - if (lookahead == '\n') SKIP(205); - END_STATE(); - case 86: - if (lookahead == '\n') SKIP(205); - if (lookahead == '\r') SKIP(85); - END_STATE(); - case 87: ADVANCE_MAP( '\n', 1231, '!', 2539, @@ -14206,14 +14200,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 328, '>', 1310, ); - if (lookahead == '\\') SKIP(91); + if (lookahead == '\\') SKIP(89); if (lookahead == '^') ADVANCE(1302); if (lookahead == '_') ADVANCE(1723); if (lookahead == '|') ADVANCE(1301); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(88); + lookahead == ' ') SKIP(86); END_STATE(); - case 88: + case 86: ADVANCE_MAP( '\n', 1231, '!', 2539, @@ -14228,25 +14222,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 328, '>', 1310, ); - if (lookahead == '\\') SKIP(91); + if (lookahead == '\\') SKIP(89); if (lookahead == '^') ADVANCE(1302); if (lookahead == '|') ADVANCE(1301); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(88); + lookahead == ' ') SKIP(86); END_STATE(); - case 89: + case 87: if (lookahead == '\n') ADVANCE(1231); if (lookahead == '!') ADVANCE(2540); if (lookahead == '&') ADVANCE(1303); if (lookahead == '\\') SKIP(131); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(89); + lookahead == ' ') SKIP(87); + END_STATE(); + case 88: + if (lookahead == '\n') SKIP(86); + END_STATE(); + case 89: + if (lookahead == '\n') SKIP(86); + if (lookahead == '\r') SKIP(88); END_STATE(); case 90: - if (lookahead == '\n') SKIP(88); + if (lookahead == '\n') SKIP(205); END_STATE(); case 91: - if (lookahead == '\n') SKIP(88); + if (lookahead == '\n') SKIP(205); if (lookahead == '\r') SKIP(90); END_STATE(); case 92: @@ -14419,10 +14420,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(128); END_STATE(); case 130: - if (lookahead == '\n') SKIP(89); + if (lookahead == '\n') SKIP(87); END_STATE(); case 131: - if (lookahead == '\n') SKIP(89); + if (lookahead == '\n') SKIP(87); if (lookahead == '\r') SKIP(130); END_STATE(); case 132: @@ -14510,38 +14511,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(154); END_STATE(); case 156: - if (lookahead == '\n') SKIP(259); + if (lookahead == '\n') SKIP(245); END_STATE(); case 157: - if (lookahead == '\n') SKIP(259); + if (lookahead == '\n') SKIP(245); if (lookahead == '\r') SKIP(156); END_STATE(); case 158: - if (lookahead == '\n') SKIP(226); + if (lookahead == '\n') SKIP(259); END_STATE(); case 159: - if (lookahead == '\n') SKIP(226); + if (lookahead == '\n') SKIP(259); if (lookahead == '\r') SKIP(158); END_STATE(); case 160: - if (lookahead == '\n') SKIP(260); + if (lookahead == '\n') SKIP(226); END_STATE(); case 161: - if (lookahead == '\n') SKIP(260); + if (lookahead == '\n') SKIP(226); if (lookahead == '\r') SKIP(160); END_STATE(); case 162: - if (lookahead == '\n') SKIP(211); + if (lookahead == '\n') SKIP(260); END_STATE(); case 163: - if (lookahead == '\n') SKIP(211); + if (lookahead == '\n') SKIP(260); if (lookahead == '\r') SKIP(162); END_STATE(); case 164: - if (lookahead == '\n') SKIP(279); + if (lookahead == '\n') SKIP(211); END_STATE(); case 165: - if (lookahead == '\n') SKIP(279); + if (lookahead == '\n') SKIP(211); if (lookahead == '\r') SKIP(164); END_STATE(); case 166: @@ -14573,80 +14574,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(172); END_STATE(); case 174: - if (lookahead == '\n') SKIP(245); + if (lookahead == '\n') SKIP(279); END_STATE(); case 175: - if (lookahead == '\n') SKIP(245); + if (lookahead == '\n') SKIP(279); if (lookahead == '\r') SKIP(174); END_STATE(); case 176: - if (lookahead == '\n') SKIP(229); + if (lookahead == '\n') SKIP(246); END_STATE(); case 177: - if (lookahead == '\n') SKIP(229); + if (lookahead == '\n') SKIP(246); if (lookahead == '\r') SKIP(176); END_STATE(); case 178: - if (lookahead == '\n') SKIP(230); + if (lookahead == '\n') SKIP(229); END_STATE(); case 179: - if (lookahead == '\n') SKIP(230); + if (lookahead == '\n') SKIP(229); if (lookahead == '\r') SKIP(178); END_STATE(); case 180: - if (lookahead == '\n') SKIP(212); + if (lookahead == '\n') SKIP(230); END_STATE(); case 181: - if (lookahead == '\n') SKIP(212); + if (lookahead == '\n') SKIP(230); if (lookahead == '\r') SKIP(180); END_STATE(); case 182: - if (lookahead == '\n') SKIP(231); + if (lookahead == '\n') SKIP(212); END_STATE(); case 183: - if (lookahead == '\n') SKIP(231); + if (lookahead == '\n') SKIP(212); if (lookahead == '\r') SKIP(182); END_STATE(); case 184: - if (lookahead == '\n') SKIP(246); + if (lookahead == '\n') SKIP(231); END_STATE(); case 185: - if (lookahead == '\n') SKIP(246); + if (lookahead == '\n') SKIP(231); if (lookahead == '\r') SKIP(184); END_STATE(); case 186: - if (lookahead == '\n') SKIP(232); + if (lookahead == '\n') SKIP(247); END_STATE(); case 187: - if (lookahead == '\n') SKIP(232); + if (lookahead == '\n') SKIP(247); if (lookahead == '\r') SKIP(186); END_STATE(); case 188: - if (lookahead == '\n') SKIP(233); + if (lookahead == '\n') SKIP(232); END_STATE(); case 189: - if (lookahead == '\n') SKIP(233); + if (lookahead == '\n') SKIP(232); if (lookahead == '\r') SKIP(188); END_STATE(); case 190: - if (lookahead == '\n') SKIP(247); + if (lookahead == '\n') SKIP(233); END_STATE(); case 191: - if (lookahead == '\n') SKIP(247); + if (lookahead == '\n') SKIP(233); if (lookahead == '\r') SKIP(190); END_STATE(); case 192: - if (lookahead == '\n') SKIP(234); + if (lookahead == '\n') SKIP(248); END_STATE(); case 193: - if (lookahead == '\n') SKIP(234); + if (lookahead == '\n') SKIP(248); if (lookahead == '\r') SKIP(192); END_STATE(); case 194: - if (lookahead == '\n') SKIP(248); + if (lookahead == '\n') SKIP(234); END_STATE(); case 195: - if (lookahead == '\n') SKIP(248); + if (lookahead == '\n') SKIP(234); if (lookahead == '\r') SKIP(194); END_STATE(); case 196: @@ -14693,7 +14694,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 328, '>', 1310, ); - if (lookahead == '\\') SKIP(86); + if (lookahead == '\\') SKIP(91); if (lookahead == '^') ADVANCE(1302); if (lookahead == '_') ADVANCE(1723); if (lookahead == '|') ADVANCE(1301); @@ -14716,7 +14717,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 328, '>', 1310, ); - if (lookahead == '\\') SKIP(86); + if (lookahead == '\\') SKIP(91); if (lookahead == '^') ADVANCE(1302); if (lookahead == '|') ADVANCE(1301); if (('\t' <= lookahead && lookahead <= '\r') || @@ -14748,17 +14749,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(820); + lookahead == 'e') ADVANCE(819); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(850); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1188); if (lookahead == 'R' || @@ -15023,7 +15024,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(163); + if (lookahead == '\\') SKIP(165); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -15081,7 +15082,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(181); + if (lookahead == '\\') SKIP(183); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -15139,17 +15140,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(823); + lookahead == 'e') ADVANCE(821); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(850); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1188); if (lookahead == 'R' || @@ -15181,34 +15182,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 1311, '[', 1719, ); - if (lookahead == '\\') SKIP(60); + if (lookahead == '\\') SKIP(58); if (lookahead == ']') ADVANCE(1720); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); + lookahead == 'a') ADVANCE(809); if (lookahead == 'B' || lookahead == 'b') ADVANCE(1207); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(698); + lookahead == 'c') ADVANCE(434); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(823); + lookahead == 'e') ADVANCE(821); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1157); + lookahead == 'f') ADVANCE(974); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(847); + lookahead == 'i') ADVANCE(846); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || lookahead == 'm') ADVANCE(607); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(963); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(884); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1188); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(603); + lookahead == 'r') ADVANCE(382); if (lookahead == 'S' || lookahead == 's') ADVANCE(1160); if (lookahead == 'T' || lookahead == 't') ADVANCE(636); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(887); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(214); END_STATE(); @@ -15303,15 +15310,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(1086); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(771); + lookahead == 'b') ADVANCE(770); if (lookahead == 'C' || lookahead == 'c') ADVANCE(699); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(934); + lookahead == 'd') ADVANCE(933); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(906); + lookahead == 'e') ADVANCE(905); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(967); + lookahead == 'f') ADVANCE(966); if (lookahead == 'I' || lookahead == 'i') ADVANCE(673); if (lookahead == 'O' || @@ -15349,15 +15356,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(1086); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(771); + lookahead == 'b') ADVANCE(770); if (lookahead == 'C' || lookahead == 'c') ADVANCE(699); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(934); + lookahead == 'd') ADVANCE(933); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(906); + lookahead == 'e') ADVANCE(905); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(967); + lookahead == 'f') ADVANCE(966); if (lookahead == 'I' || lookahead == 'i') ADVANCE(673); if (lookahead == 'O' || @@ -15391,15 +15398,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 1308, '[', 1719, ); - if (lookahead == '\\') SKIP(58); + if (lookahead == '\\') SKIP(60); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); + lookahead == 'a') ADVANCE(1113); if (lookahead == 'B' || lookahead == 'b') ADVANCE(1207); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(434); + lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || lookahead == 'e') ADVANCE(822); if (lookahead == 'F' || @@ -15407,25 +15414,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(612); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(849); + lookahead == 'i') ADVANCE(848); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(964); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(885); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(999); + lookahead == 'p') ADVANCE(1000); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(382); + lookahead == 'r') ADVANCE(603); if (lookahead == 'S' || lookahead == 's') ADVANCE(1160); if (lookahead == 'T' || lookahead == 't') ADVANCE(1210); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(888); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(218); END_STATE(); @@ -15852,7 +15853,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(159); + if (lookahead == '\\') SKIP(161); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -15980,7 +15981,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'D' || lookahead == 'd') ADVANCE(1800); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2233); + lookahead == 'e') ADVANCE(2219); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1786); if (lookahead == 'G' || @@ -16028,7 +16029,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(177); + if (lookahead == '\\') SKIP(179); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -16086,7 +16087,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(179); + if (lookahead == '\\') SKIP(181); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -16144,7 +16145,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(183); + if (lookahead == '\\') SKIP(185); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -16154,7 +16155,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'D' || lookahead == 'd') ADVANCE(1800); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2219); + lookahead == 'e') ADVANCE(2233); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1786); if (lookahead == 'G' || @@ -16202,7 +16203,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(187); + if (lookahead == '\\') SKIP(189); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -16260,7 +16261,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(189); + if (lookahead == '\\') SKIP(191); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -16318,7 +16319,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(193); + if (lookahead == '\\') SKIP(195); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -16676,7 +16677,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'F' || lookahead == 'f') ADVANCE(1784); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2034); + lookahead == 'g') ADVANCE(2035); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2066); if (lookahead == 'K' || @@ -16773,17 +16774,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(824); + lookahead == 'e') ADVANCE(823); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(850); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1188); if (lookahead == 'R' || @@ -16806,15 +16807,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(697); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(905); + lookahead == 'e') ADVANCE(904); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(882); + lookahead == 'i') ADVANCE(881); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1000); + lookahead == 'p') ADVANCE(999); if (lookahead == 'R' || lookahead == 'r') ADVANCE(664); if (lookahead == 'S' || @@ -16833,7 +16834,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(435); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(907); + lookahead == 'e') ADVANCE(906); if (lookahead == 'R' || lookahead == 'r') ADVANCE(380); if (lookahead == 'T' || @@ -16846,7 +16847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(340); if (lookahead == '&') ADVANCE(1303); if (lookahead == '/') ADVANCE(308); - if (lookahead == '\\') SKIP(175); + if (lookahead == '\\') SKIP(157); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1113); if (lookahead == 'B' || @@ -16854,17 +16855,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(825); + lookahead == 'e') ADVANCE(828); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(850); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1188); if (lookahead == 'R' || @@ -16881,7 +16882,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(340); if (lookahead == '&') ADVANCE(1303); if (lookahead == '/') ADVANCE(308); - if (lookahead == '\\') SKIP(185); + if (lookahead == '\\') SKIP(177); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1113); if (lookahead == 'B' || @@ -16889,17 +16890,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(829); + lookahead == 'e') ADVANCE(824); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(850); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1188); if (lookahead == 'R' || @@ -16916,7 +16917,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(340); if (lookahead == '&') ADVANCE(1303); if (lookahead == '/') ADVANCE(308); - if (lookahead == '\\') SKIP(191); + if (lookahead == '\\') SKIP(187); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1113); if (lookahead == 'B' || @@ -16924,17 +16925,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(826); + lookahead == 'e') ADVANCE(827); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(850); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1188); if (lookahead == 'R' || @@ -16951,7 +16952,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(340); if (lookahead == '&') ADVANCE(1303); if (lookahead == '/') ADVANCE(308); - if (lookahead == '\\') SKIP(195); + if (lookahead == '\\') SKIP(193); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1113); if (lookahead == 'B' || @@ -16959,17 +16960,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(828); + lookahead == 'e') ADVANCE(825); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(850); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1188); if (lookahead == 'R' || @@ -17008,29 +17009,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(447); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(738); + lookahead == 'b') ADVANCE(737); if (lookahead == 'C' || lookahead == 'c') ADVANCE(433); if (lookahead == 'D' || lookahead == 'd') ADVANCE(545); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(821); + lookahead == 'e') ADVANCE(820); if (lookahead == 'F' || lookahead == 'f') ADVANCE(386); if (lookahead == 'G' || lookahead == 'g') ADVANCE(613); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(957); + lookahead == 'h') ADVANCE(956); if (lookahead == 'I' || lookahead == 'i') ADVANCE(672); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(741); + lookahead == 'k') ADVANCE(740); if (lookahead == 'L' || lookahead == 'l') ADVANCE(617); if (lookahead == 'M' || lookahead == 'm') ADVANCE(377); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(931); + lookahead == 'n') ADVANCE(930); if (lookahead == 'O' || lookahead == 'o') ADVANCE(980); if (lookahead == 'P' || @@ -17077,29 +17078,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(447); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(738); + lookahead == 'b') ADVANCE(737); if (lookahead == 'C' || lookahead == 'c') ADVANCE(433); if (lookahead == 'D' || lookahead == 'd') ADVANCE(545); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(821); + lookahead == 'e') ADVANCE(820); if (lookahead == 'F' || lookahead == 'f') ADVANCE(386); if (lookahead == 'G' || lookahead == 'g') ADVANCE(613); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(957); + lookahead == 'h') ADVANCE(956); if (lookahead == 'I' || lookahead == 'i') ADVANCE(672); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(741); + lookahead == 'k') ADVANCE(740); if (lookahead == 'L' || lookahead == 'l') ADVANCE(617); if (lookahead == 'M' || lookahead == 'm') ADVANCE(377); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(931); + lookahead == 'n') ADVANCE(930); if (lookahead == 'O' || lookahead == 'o') ADVANCE(980); if (lookahead == 'P' || @@ -17196,7 +17197,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'F' || lookahead == 'f') ADVANCE(1784); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2034); + lookahead == 'g') ADVANCE(2035); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2066); if (lookahead == 'K' || @@ -17235,7 +17236,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(1303); if (lookahead == '\\') SKIP(93); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(903); + lookahead == 'e') ADVANCE(900); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(253); END_STATE(); @@ -17252,19 +17253,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(827); + lookahead == 'e') ADVANCE(826); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(704); + lookahead == 'f') ADVANCE(703); if (lookahead == 'G' || lookahead == 'g') ADVANCE(612); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(849); + lookahead == 'i') ADVANCE(848); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1002); if (lookahead == 'R' || @@ -17527,7 +17528,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(157); + if (lookahead == '\\') SKIP(159); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -17585,7 +17586,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 1572, '[', 1719, ); - if (lookahead == '\\') SKIP(161); + if (lookahead == '\\') SKIP(163); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2166); if (lookahead == 'B' || @@ -17643,17 +17644,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(698); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(943); + lookahead == 'd') ADVANCE(942); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(823); + lookahead == 'e') ADVANCE(821); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(850); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'l') ADVANCE(937); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(930); + lookahead == 'm') ADVANCE(929); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1188); if (lookahead == 'R' || @@ -18572,11 +18573,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'O' || lookahead == 'o') ADVANCE(2357); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1821); + lookahead == 'p') ADVANCE(1825); if (lookahead == 'R' || lookahead == 'r') ADVANCE(2036); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1783); + lookahead == 's') ADVANCE(1781); if (lookahead == 'T' || lookahead == 't') ADVANCE(1796); if (lookahead == 'U' || @@ -18610,67 +18611,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '[', 1719, ); if (lookahead == '\\') SKIP(121); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2246); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2183); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2096); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1799); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2232); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1788); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2067); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2127); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2014); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2510); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2357); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1825); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2036); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1781); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1796); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2305); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1792); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2403); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(277); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(2535); - END_STATE(); - case 278: - ADVANCE_MAP( - '!', 2540, - '%', 1298, - '&', 1303, - '(', 1282, - '*', 1290, - '+', 1287, - '-', 1288, - '.', 1713, - '/', 1297, - ':', 1366, - ';', 1572, - '<', 1317, - '=', 1377, - '>', 1308, - '[', 1719, - ); - if (lookahead == '\\') SKIP(137); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2246); if (lookahead == 'B' || @@ -18707,6 +18647,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'v') ADVANCE(1792); if (lookahead == 'W' || lookahead == 'w') ADVANCE(2403); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(277); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(2535); + END_STATE(); + case 278: + ADVANCE_MAP( + '!', 2540, + '%', 1298, + '&', 1303, + '(', 1282, + '*', 1290, + '+', 1287, + '-', 1288, + '.', 1713, + '/', 1297, + ':', 1366, + ';', 1572, + '<', 1317, + '=', 1377, + '>', 1308, + '[', 1719, + ); + if (lookahead == '\\') SKIP(137); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2246); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2183); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2096); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1799); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2232); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1788); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2067); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2127); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2014); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2510); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2357); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1821); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2036); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1783); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1796); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2305); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1792); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2403); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(278); if (('G' <= lookahead && lookahead <= 'Z') || @@ -18731,7 +18732,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 1308, '[', 1719, ); - if (lookahead == '\\') SKIP(165); + if (lookahead == '\\') SKIP(175); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2246); if (lookahead == 'B' || @@ -18963,7 +18964,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'D' || lookahead == 'd') ADVANCE(1800); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2213); + lookahead == 'e') ADVANCE(2224); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1786); if (lookahead == 'G' || @@ -18985,7 +18986,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S' || lookahead == 's') ADVANCE(1780); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1793); + lookahead == 't') ADVANCE(1794); if (lookahead == 'U' || lookahead == 'u') ADVANCE(2305); if (lookahead == 'V' || @@ -19016,7 +19017,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'D' || lookahead == 'd') ADVANCE(1800); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2224); + lookahead == 'e') ADVANCE(2213); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1786); if (lookahead == 'G' || @@ -19038,7 +19039,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S' || lookahead == 's') ADVANCE(1780); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1794); + lookahead == 't') ADVANCE(1793); if (lookahead == 'U' || lookahead == 'u') ADVANCE(2305); if (lookahead == 'V' || @@ -19322,7 +19323,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(1303); if (lookahead == ')') ADVANCE(1228); if (lookahead == '.') ADVANCE(325); - if (lookahead == '\\') SKIP(76); + if (lookahead == '\\') SKIP(74); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2246); if (lookahead == 'B' || @@ -19610,7 +19611,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 297: if (lookahead == '!') ADVANCE(2540); if (lookahead == '&') ADVANCE(1303); - if (lookahead == '\\') SKIP(74); + if (lookahead == '\\') SKIP(76); if (lookahead == 'A' || lookahead == 'a') ADVANCE(2246); if (lookahead == 'B' || @@ -19658,7 +19659,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(1303); if (lookahead == '\\') SKIP(97); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(835); + lookahead == 'e') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(298); END_STATE(); @@ -19667,9 +19668,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(1303); if (lookahead == '\\') SKIP(104); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(907); + lookahead == 'e') ADVANCE(906); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(970); + lookahead == 'f') ADVANCE(969); if (lookahead == 'T' || lookahead == 't') ADVANCE(1210); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19715,7 +19716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(1303); if (lookahead == '\\') SKIP(167); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(836); + lookahead == 'e') ADVANCE(835); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(304); END_STATE(); @@ -19834,10 +19835,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'F') ADVANCE(422); if (lookahead == 'f') ADVANCE(360); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(712); + lookahead == 'v') ADVANCE(711); END_STATE(); case 334: - if (lookahead == '_') ADVANCE(733); + if (lookahead == '_') ADVANCE(732); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1427); END_STATE(); @@ -19980,8 +19981,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'A', 1194, 'a', 1194, - 'E', 839, - 'e', 839, + 'E', 838, + 'e', 838, 'H', 383, 'h', 383, 'T', 441, @@ -19992,13 +19993,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 366: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(919); + lookahead == 'a') ADVANCE(918); END_STATE(); case 367: if (lookahead == 'A' || lookahead == 'a') ADVANCE(686); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(832); + lookahead == 'p') ADVANCE(831); END_STATE(); case 368: ADVANCE_MAP( @@ -20010,8 +20011,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 's', 1172, 'T', 1171, 't', 1171, - 'W', 746, - 'w', 746, + 'W', 745, + 'w', 745, ); END_STATE(); case 369: @@ -20022,10 +20023,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'A', 1005, 'a', 1005, - 'I', 916, - 'i', 916, - 'O', 740, - 'o', 740, + 'I', 915, + 'i', 915, + 'O', 739, + 'o', 739, 'R', 615, 'r', 615, 'U', 450, @@ -20044,19 +20045,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 373: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(842); + lookahead == 'a') ADVANCE(841); END_STATE(); case 374: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(842); + lookahead == 'a') ADVANCE(841); if (lookahead == 'X' || lookahead == 'x') ADVANCE(1140); END_STATE(); case 375: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(830); + lookahead == 'a') ADVANCE(829); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(795); + lookahead == 'o') ADVANCE(794); END_STATE(); case 376: ADVANCE_MAP( @@ -20074,31 +20075,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 377: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(889); + lookahead == 'a') ADVANCE(888); if (lookahead == 'O' || lookahead == 'o') ADVANCE(531); END_STATE(); case 378: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(831); + lookahead == 'a') ADVANCE(830); END_STATE(); case 379: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(844); + lookahead == 'a') ADVANCE(843); END_STATE(); case 380: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(884); + lookahead == 'a') ADVANCE(883); END_STATE(); case 381: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(884); + lookahead == 'a') ADVANCE(883); if (lookahead == 'E' || lookahead == 'e') ADVANCE(407); END_STATE(); case 382: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(884); + lookahead == 'a') ADVANCE(883); if (lookahead == 'E' || lookahead == 'e') ADVANCE(406); END_STATE(); @@ -20108,35 +20109,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 384: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(845); + lookahead == 'a') ADVANCE(844); END_STATE(); case 385: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(846); + lookahead == 'a') ADVANCE(845); END_STATE(); case 386: ADVANCE_MAP( - 'A', 852, - 'a', 852, - 'I', 915, - 'i', 915, + 'A', 851, + 'a', 851, + 'I', 914, + 'i', 914, 'O', 997, 'o', 997, - 'U', 886, - 'u', 886, + 'U', 885, + 'u', 885, ); END_STATE(); case 387: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + lookahead == 'a') ADVANCE(777); END_STATE(); case 388: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(779); + lookahead == 'a') ADVANCE(778); END_STATE(); case 389: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(779); + lookahead == 'a') ADVANCE(778); if (lookahead == 'K' || lookahead == 'k') ADVANCE(1744); END_STATE(); @@ -20146,7 +20147,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 391: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(781); + lookahead == 'a') ADVANCE(780); END_STATE(); case 392: if (lookahead == 'A' || @@ -20154,31 +20155,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 393: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(834); + lookahead == 'a') ADVANCE(833); END_STATE(); case 394: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(893); + lookahead == 'a') ADVANCE(892); END_STATE(); case 395: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(782); + lookahead == 'a') ADVANCE(781); END_STATE(); case 396: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(783); + lookahead == 'a') ADVANCE(782); END_STATE(); case 397: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(784); + lookahead == 'a') ADVANCE(783); END_STATE(); case 398: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(785); + lookahead == 'a') ADVANCE(784); END_STATE(); case 399: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(786); + lookahead == 'a') ADVANCE(785); END_STATE(); case 400: if (lookahead == 'A' || @@ -20186,33 +20187,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 401: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(787); + lookahead == 'a') ADVANCE(786); END_STATE(); case 402: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(918); + lookahead == 'a') ADVANCE(917); END_STATE(); case 403: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(789); + lookahead == 'a') ADVANCE(788); END_STATE(); case 404: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(790); + lookahead == 'a') ADVANCE(789); END_STATE(); case 405: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(777); + lookahead == 'a') ADVANCE(776); END_STATE(); case 406: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(777); + lookahead == 'a') ADVANCE(776); if (lookahead == 'C' || lookahead == 'c') ADVANCE(1169); END_STATE(); case 407: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(777); + lookahead == 'a') ADVANCE(776); if (lookahead == 'C' || lookahead == 'c') ADVANCE(1169); if (lookahead == 'S' || @@ -20224,23 +20225,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 409: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(725); + lookahead == 'a') ADVANCE(724); if (lookahead == 'H' || lookahead == 'h') ADVANCE(647); END_STATE(); case 410: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(802); + lookahead == 'a') ADVANCE(801); END_STATE(); case 411: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(802); + lookahead == 'a') ADVANCE(801); if (lookahead == 'M' || lookahead == 'm') ADVANCE(1732); END_STATE(); case 412: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(802); + lookahead == 'a') ADVANCE(801); if (lookahead == 'M' || lookahead == 'm') ADVANCE(392); END_STATE(); @@ -20250,11 +20251,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 414: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(734); + lookahead == 'a') ADVANCE(733); END_STATE(); case 415: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(734); + lookahead == 'a') ADVANCE(733); if (lookahead == 'I' || lookahead == 'i') ADVANCE(684); END_STATE(); @@ -20268,11 +20269,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 418: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(857); + lookahead == 'a') ADVANCE(856); END_STATE(); case 419: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(807); + lookahead == 'a') ADVANCE(806); END_STATE(); case 420: if (lookahead == 'A' || @@ -20314,7 +20315,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 429: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(909); + lookahead == 'a') ADVANCE(908); END_STATE(); case 430: if (lookahead == 'A' || @@ -20324,7 +20325,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(691); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(946); + lookahead == 'p') ADVANCE(945); END_STATE(); case 432: if (lookahead == 'A' || @@ -20340,8 +20341,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'l', 425, 'O', 533, 'o', 533, - 'R', 713, - 'r', 713, + 'R', 712, + 'r', 712, ); END_STATE(); case 434: @@ -20352,8 +20353,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'h', 442, 'L', 425, 'l', 425, - 'O', 862, - 'o', 862, + 'O', 861, + 'o', 861, ); END_STATE(); case 435: @@ -20363,15 +20364,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'l') ADVANCE(371); END_STATE(); case 436: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(491); - END_STATE(); - case 437: if (lookahead == 'A' || lookahead == 'a') ADVANCE(692); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1177); END_STATE(); + case 437: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(491); + END_STATE(); case 438: if (lookahead == 'A' || lookahead == 'a') ADVANCE(1135); @@ -20416,8 +20417,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'B', 1078, 'b', 1078, - 'L', 800, - 'l', 800, + 'L', 799, + 'l', 799, 'S', 1085, 's', 1085, 'T', 1119, @@ -20428,21 +20429,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 448: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(867); + lookahead == 'b') ADVANCE(866); END_STATE(); case 449: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(833); + lookahead == 'b') ADVANCE(832); END_STATE(); case 450: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(833); + lookahead == 'b') ADVANCE(832); if (lookahead == 'R' || lookahead == 'r') ADVANCE(555); END_STATE(); case 451: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(868); + lookahead == 'b') ADVANCE(867); END_STATE(); case 452: if (lookahead == 'B' || @@ -20458,11 +20459,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 455: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(806); + lookahead == 'b') ADVANCE(805); END_STATE(); case 456: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(816); + lookahead == 'b') ADVANCE(815); END_STATE(); case 457: if (lookahead == 'B' || @@ -20470,7 +20471,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 458: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(819); + lookahead == 'b') ADVANCE(818); END_STATE(); case 459: if (lookahead == 'B' || @@ -20478,17 +20479,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 460: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(869); + lookahead == 'b') ADVANCE(868); END_STATE(); case 461: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(770); + lookahead == 'c') ADVANCE(769); END_STATE(); case 462: if (lookahead == 'C' || lookahead == 'c') ADVANCE(389); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(715); + lookahead == 'g') ADVANCE(714); END_STATE(); case 463: if (lookahead == 'C' || @@ -20520,33 +20521,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 470: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(766); + lookahead == 'c') ADVANCE(765); END_STATE(); case 471: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(767); + lookahead == 'c') ADVANCE(766); END_STATE(); case 472: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(768); + lookahead == 'c') ADVANCE(767); END_STATE(); case 473: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(799); + lookahead == 'c') ADVANCE(798); END_STATE(); case 474: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(794); + lookahead == 'c') ADVANCE(793); if (lookahead == 'T' || - lookahead == 't') ADVANCE(656); + lookahead == 't') ADVANCE(658); END_STATE(); case 475: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(762); + lookahead == 'c') ADVANCE(761); END_STATE(); case 476: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(758); + lookahead == 'c') ADVANCE(757); END_STATE(); case 477: if (lookahead == 'C' || @@ -20644,7 +20645,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 496: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(736); + lookahead == 'c') ADVANCE(735); END_STATE(); case 497: if (lookahead == 'C' || @@ -20662,7 +20663,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(388); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(715); + lookahead == 'g') ADVANCE(714); END_STATE(); case 501: if (lookahead == 'C' || @@ -20674,11 +20675,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 503: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(760); + lookahead == 'c') ADVANCE(759); END_STATE(); case 504: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(763); + lookahead == 'c') ADVANCE(762); END_STATE(); case 505: if (lookahead == 'C' || @@ -20696,7 +20697,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T' || lookahead == 't') ADVANCE(998); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(841); + lookahead == 'u') ADVANCE(840); END_STATE(); case 508: if (lookahead == 'D' || @@ -20748,11 +20749,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'D' || lookahead == 'd') ADVANCE(1333); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(860); + lookahead == 'u') ADVANCE(859); END_STATE(); case 520: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1349); + lookahead == 'd') ADVANCE(1351); END_STATE(); case 521: if (lookahead == 'D' || @@ -20760,15 +20761,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 522: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1351); + lookahead == 'd') ADVANCE(1349); END_STATE(); case 523: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1343); + lookahead == 'd') ADVANCE(1353); END_STATE(); case 524: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1353); + lookahead == 'd') ADVANCE(1343); END_STATE(); case 525: if (lookahead == 'D' || @@ -20800,15 +20801,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 532: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(764); + lookahead == 'd') ADVANCE(763); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(850); + lookahead == 'm') ADVANCE(849); if (lookahead == 'N' || lookahead == 'n') ADVANCE(493); END_STATE(); case 533: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(764); + lookahead == 'd') ADVANCE(763); if (lookahead == 'M' || lookahead == 'm') ADVANCE(983); if (lookahead == 'N' || @@ -20862,7 +20863,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E' || lookahead == 'e') ADVANCE(674); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(856); + lookahead == 'i') ADVANCE(855); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1156); END_STATE(); @@ -20902,7 +20903,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E' || lookahead == 'e') ADVANCE(696); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(731); + lookahead == 'r') ADVANCE(730); END_STATE(); case 554: if (lookahead == 'E' || @@ -21118,15 +21119,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 607: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(855); + lookahead == 'e') ADVANCE(854); if (lookahead == 'O' || lookahead == 'o') ADVANCE(531); END_STATE(); case 608: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(872); + lookahead == 'e') ADVANCE(871); if (lookahead == 'T' || - lookahead == 't') ADVANCE(718); + lookahead == 't') ADVANCE(717); END_STATE(); case 609: if (lookahead == 'E' || @@ -21140,19 +21141,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 611: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(892); + lookahead == 'e') ADVANCE(891); END_STATE(); case 612: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(894); + lookahead == 'e') ADVANCE(893); END_STATE(); case 613: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(894); + lookahead == 'e') ADVANCE(893); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(936); + lookahead == 'l') ADVANCE(935); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(707); + lookahead == 'r') ADVANCE(706); END_STATE(); case 614: if (lookahead == 'E' || @@ -21178,7 +21179,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 617: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(870); + lookahead == 'e') ADVANCE(869); if (lookahead == 'O' || lookahead == 'o') ADVANCE(500); END_STATE(); @@ -21188,11 +21189,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 619: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(899); + lookahead == 'e') ADVANCE(898); END_STATE(); case 620: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(873); + lookahead == 'e') ADVANCE(872); END_STATE(); case 621: if (lookahead == 'E' || @@ -21204,7 +21205,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 623: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(895); + lookahead == 'e') ADVANCE(894); END_STATE(); case 624: if (lookahead == 'E' || @@ -21242,7 +21243,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 632: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(801); + lookahead == 'e') ADVANCE(800); END_STATE(); case 633: if (lookahead == 'E' || @@ -21310,7 +21311,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E' || lookahead == 'e') ADVANCE(1020); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(804); + lookahead == 'i') ADVANCE(803); END_STATE(); case 649: if (lookahead == 'E' || @@ -21322,15 +21323,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 651: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(917); + lookahead == 'e') ADVANCE(916); END_STATE(); case 652: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(908); + lookahead == 'e') ADVANCE(907); END_STATE(); case 653: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(921); + lookahead == 'e') ADVANCE(920); END_STATE(); case 654: if (lookahead == 'E' || @@ -21338,19 +21339,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 655: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(910); + lookahead == 'e') ADVANCE(909); END_STATE(); case 656: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(695); + lookahead == 'e') ADVANCE(485); END_STATE(); case 657: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(485); + lookahead == 'e') ADVANCE(910); END_STATE(); case 658: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(911); + lookahead == 'e') ADVANCE(695); END_STATE(); case 659: if (lookahead == 'E' || @@ -21362,11 +21363,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 661: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(838); + lookahead == 'e') ADVANCE(837); END_STATE(); case 662: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(838); + lookahead == 'e') ADVANCE(837); if (lookahead == 'U' || lookahead == 'u') ADVANCE(460); END_STATE(); @@ -21380,17 +21381,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 665: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(861); + lookahead == 'e') ADVANCE(860); END_STATE(); case 666: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(861); + lookahead == 'e') ADVANCE(860); if (lookahead == 'S' || lookahead == 's') ADVANCE(552); END_STATE(); case 667: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(797); + lookahead == 'e') ADVANCE(796); END_STATE(); case 668: if (lookahead == 'E' || @@ -21398,7 +21399,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 669: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(929); + lookahead == 'e') ADVANCE(928); END_STATE(); case 670: if (lookahead == 'E' || @@ -21414,8 +21415,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'f', 1612, 'M', 431, 'm', 431, - 'N', 719, - 'n', 719, + 'N', 718, + 'n', 718, 'S', 1651, 's', 1651, ); @@ -21430,7 +21431,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'F' || lookahead == 'f') ADVANCE(422); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(712); + lookahead == 'v') ADVANCE(711); END_STATE(); case 675: if (lookahead == 'F' || @@ -21452,13 +21453,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 679: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(949); + lookahead == 'f') ADVANCE(948); END_STATE(); case 680: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(949); + lookahead == 'f') ADVANCE(948); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(962); + lookahead == 'l') ADVANCE(961); END_STATE(); case 681: if (lookahead == 'F' || @@ -21466,7 +21467,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 682: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(436); + lookahead == 'f') ADVANCE(437); END_STATE(); case 683: if (lookahead == 'G' || @@ -21480,7 +21481,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 685: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(928); + lookahead == 'g') ADVANCE(927); END_STATE(); case 686: if (lookahead == 'G' || @@ -21488,7 +21489,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 687: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(840); + lookahead == 'g') ADVANCE(839); END_STATE(); case 688: if (lookahead == 'G' || @@ -21512,7 +21513,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 693: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(715); + lookahead == 'g') ADVANCE(714); END_STATE(); case 694: if (lookahead == 'G' || @@ -21536,7 +21537,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'L' || lookahead == 'l') ADVANCE(425); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(863); + lookahead == 'o') ADVANCE(862); END_STATE(); case 698: if (lookahead == 'H' || @@ -21544,7 +21545,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'L' || lookahead == 'l') ADVANCE(425); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(862); + lookahead == 'o') ADVANCE(861); END_STATE(); case 699: if (lookahead == 'H' || @@ -21552,7 +21553,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'L' || lookahead == 'l') ADVANCE(371); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(713); + lookahead == 'r') ADVANCE(712); END_STATE(); case 700: if (lookahead == 'H' || @@ -21568,517 +21569,509 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 703: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(915); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1046); + lookahead == 'i') ADVANCE(914); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(886); + lookahead == 'u') ADVANCE(885); END_STATE(); case 704: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(915); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(886); - END_STATE(); - case 705: if (lookahead == 'I' || lookahead == 'i') ADVANCE(685); if (lookahead == 'O' || lookahead == 'o') ADVANCE(476); END_STATE(); - case 706: + case 705: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1197); END_STATE(); - case 707: + case 706: if (lookahead == 'I' || lookahead == 'i') ADVANCE(509); END_STATE(); - case 708: + case 707: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1196); if (lookahead == 'O' || lookahead == 'o') ADVANCE(479); END_STATE(); - case 709: + case 708: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1196); if (lookahead == 'O' || lookahead == 'o') ADVANCE(477); END_STATE(); - case 710: + case 709: if (lookahead == 'I' || lookahead == 'i') ADVANCE(454); END_STATE(); - case 711: + case 710: if (lookahead == 'I' || lookahead == 'i') ADVANCE(683); END_STATE(); - case 712: + case 711: if (lookahead == 'I' || lookahead == 'i') ADVANCE(483); END_STATE(); - case 713: + case 712: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1152); END_STATE(); - case 714: + case 713: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1088); if (lookahead == 'T' || lookahead == 't') ADVANCE(611); END_STATE(); - case 715: + case 714: if (lookahead == 'I' || lookahead == 'i') ADVANCE(497); END_STATE(); - case 716: + case 715: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(775); + lookahead == 'i') ADVANCE(774); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(728); + lookahead == 'm') ADVANCE(727); END_STATE(); - case 717: + case 716: if (lookahead == 'I' || lookahead == 'i') ADVANCE(496); END_STATE(); - case 718: + case 717: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(968); + lookahead == 'i') ADVANCE(967); END_STATE(); - case 719: + case 718: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1124); if (lookahead == 'T' || lookahead == 't') ADVANCE(553); END_STATE(); - case 720: + case 719: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1124); if (lookahead == 'T' || - lookahead == 't') ADVANCE(656); + lookahead == 't') ADVANCE(658); END_STATE(); - case 721: + case 720: if (lookahead == 'I' || lookahead == 'i') ADVANCE(464); END_STATE(); - case 722: + case 721: if (lookahead == 'I' || lookahead == 'i') ADVANCE(634); END_STATE(); - case 723: + case 722: if (lookahead == 'I' || lookahead == 'i') ADVANCE(465); END_STATE(); - case 724: + case 723: if (lookahead == 'I' || lookahead == 'i') ADVANCE(466); END_STATE(); - case 725: + case 724: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1091); END_STATE(); - case 726: + case 725: if (lookahead == 'I' || lookahead == 'i') ADVANCE(467); END_STATE(); - case 727: + case 726: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1129); END_STATE(); + case 727: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(791); + END_STATE(); case 728: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(792); + lookahead == 'i') ADVANCE(468); END_STATE(); case 729: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(468); + lookahead == 'i') ADVANCE(536); END_STATE(); case 730: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(536); + lookahead == 'i') ADVANCE(897); END_STATE(); case 731: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(898); + lookahead == 'i') ADVANCE(469); END_STATE(); case 732: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(469); + lookahead == 'i') ADVANCE(923); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1198); END_STATE(); case 733: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(924); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1198); + lookahead == 'i') ADVANCE(899); END_STATE(); case 734: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(900); + lookahead == 'i') ADVANCE(919); END_STATE(); case 735: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(920); - END_STATE(); - case 736: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1105); END_STATE(); - case 737: + case 736: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1110); END_STATE(); - case 738: + case 737: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(887); + lookahead == 'i') ADVANCE(886); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(958); + lookahead == 'l') ADVANCE(957); if (lookahead == 'Y' || lookahead == 'y') ADVANCE(1116); END_STATE(); - case 739: + case 738: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(948); + lookahead == 'i') ADVANCE(947); END_STATE(); - case 740: + case 739: if (lookahead == 'I' || lookahead == 'i') ADVANCE(901); if (lookahead == 'S' || lookahead == 's') ADVANCE(1090); END_STATE(); + case 740: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(890); + END_STATE(); case 741: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(891); + lookahead == 'i') ADVANCE(1073); END_STATE(); case 742: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1073); + lookahead == 'i') ADVANCE(1195); END_STATE(); case 743: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1195); + lookahead == 'i') ADVANCE(911); END_STATE(); case 744: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(912); + lookahead == 'i') ADVANCE(949); END_STATE(); case 745: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(950); + lookahead == 'i') ADVANCE(896); END_STATE(); case 746: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(897); + lookahead == 'i') ADVANCE(912); END_STATE(); case 747: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(913); + lookahead == 'i') ADVANCE(950); END_STATE(); case 748: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(951); + lookahead == 'i') ADVANCE(395); END_STATE(); case 749: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(395); + lookahead == 'i') ADVANCE(951); END_STATE(); case 750: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(952); + lookahead == 'i') ADVANCE(1025); END_STATE(); case 751: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(952); END_STATE(); case 752: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(953); - END_STATE(); - case 753: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(811); + lookahead == 'i') ADVANCE(810); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1038); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(927); + lookahead == 'u') ADVANCE(926); + END_STATE(); + case 753: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(953); END_STATE(); case 754: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(954); + lookahead == 'i') ADVANCE(812); END_STATE(); case 755: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(813); + lookahead == 'i') ADVANCE(498); END_STATE(); case 756: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(498); + lookahead == 'i') ADVANCE(924); END_STATE(); case 757: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(925); + lookahead == 'i') ADVANCE(430); END_STATE(); case 758: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(430); + lookahead == 'i') ADVANCE(499); END_STATE(); case 759: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(499); + lookahead == 'i') ADVANCE(438); END_STATE(); case 760: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(438); + lookahead == 'i') ADVANCE(1153); END_STATE(); case 761: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1153); + lookahead == 'i') ADVANCE(1082); END_STATE(); case 762: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1082); + lookahead == 'i') ADVANCE(1084); END_STATE(); case 763: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1084); + lookahead == 'i') ADVANCE(865); END_STATE(); case 764: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(866); - END_STATE(); - case 765: if (lookahead == 'K' || lookahead == 'k') ADVANCE(1645); END_STATE(); - case 766: + case 765: if (lookahead == 'K' || lookahead == 'k') ADVANCE(1658); END_STATE(); - case 767: + case 766: if (lookahead == 'K' || lookahead == 'k') ADVANCE(1746); END_STATE(); - case 768: + case 767: if (lookahead == 'K' || lookahead == 'k') ADVANCE(1660); END_STATE(); - case 769: + case 768: if (lookahead == 'K' || lookahead == 'k') ADVANCE(1647); END_STATE(); - case 770: + case 769: if (lookahead == 'K' || lookahead == 'k') ADVANCE(1061); END_STATE(); - case 771: + case 770: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(958); + lookahead == 'l') ADVANCE(957); END_STATE(); - case 772: + case 771: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1471); END_STATE(); - case 773: + case 772: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1202); END_STATE(); - case 774: + case 773: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1578); END_STATE(); - case 775: + case 774: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1736); END_STATE(); - case 776: + case 775: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1727); END_STATE(); - case 777: + case 776: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1507); END_STATE(); - case 778: + case 777: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1484); END_STATE(); - case 779: + case 778: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1609); END_STATE(); - case 780: + case 779: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1631); END_STATE(); - case 781: + case 780: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1406); END_STATE(); - case 782: + case 781: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1480); END_STATE(); - case 783: + case 782: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1519); END_STATE(); - case 784: + case 783: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1752); END_STATE(); - case 785: + case 784: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1432); END_STATE(); - case 786: + case 785: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1544); END_STATE(); - case 787: + case 786: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1562); END_STATE(); - case 788: + case 787: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1633); END_STATE(); - case 789: + case 788: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1754); END_STATE(); - case 790: + case 789: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1410); END_STATE(); - case 791: + case 790: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1470); END_STATE(); - case 792: + case 791: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1204); END_STATE(); - case 793: + case 792: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(774); + lookahead == 'l') ADVANCE(773); if (lookahead == 'S' || lookahead == 's') ADVANCE(551); END_STATE(); - case 794: + case 793: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1164); END_STATE(); - case 795: + case 794: if (lookahead == 'L' || lookahead == 'l') ADVANCE(390); END_STATE(); - case 796: + case 795: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(776); + lookahead == 'l') ADVANCE(775); END_STATE(); - case 797: + case 796: if (lookahead == 'L' || lookahead == 'l') ADVANCE(646); END_STATE(); - case 798: + case 797: if (lookahead == 'L' || lookahead == 'l') ADVANCE(646); if (lookahead == 'Q' || lookahead == 'q') ADVANCE(1180); END_STATE(); - case 799: + case 798: if (lookahead == 'L' || lookahead == 'l') ADVANCE(559); END_STATE(); + case 799: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(960); + END_STATE(); case 800: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(961); + lookahead == 'l') ADVANCE(741); END_STATE(); case 801: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(742); + lookahead == 'l') ADVANCE(779); END_STATE(); case 802: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(780); + lookahead == 'l') ADVANCE(1099); END_STATE(); case 803: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1099); + lookahead == 'l') ADVANCE(564); END_STATE(); case 804: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(564); + lookahead == 'l') ADVANCE(1102); END_STATE(); case 805: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1102); + lookahead == 'l') ADVANCE(567); END_STATE(); case 806: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(567); + lookahead == 'l') ADVANCE(787); END_STATE(); case 807: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(788); - END_STATE(); - case 808: if (lookahead == 'L' || lookahead == 'l') ADVANCE(569); END_STATE(); - case 809: + case 808: if (lookahead == 'L' || lookahead == 'l') ADVANCE(571); END_STATE(); - case 810: + case 809: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(791); + lookahead == 'l') ADVANCE(790); if (lookahead == 'T' || lookahead == 't') ADVANCE(1119); END_STATE(); - case 811: + case 810: if (lookahead == 'L' || lookahead == 'l') ADVANCE(572); END_STATE(); - case 812: + case 811: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1111); END_STATE(); - case 813: + case 812: if (lookahead == 'L' || lookahead == 'l') ADVANCE(581); END_STATE(); - case 814: + case 813: if (lookahead == 'L' || lookahead == 'l') ADVANCE(585); END_STATE(); - case 815: + case 814: if (lookahead == 'L' || lookahead == 'l') ADVANCE(589); END_STATE(); - case 816: + case 815: if (lookahead == 'L' || lookahead == 'l') ADVANCE(593); END_STATE(); - case 817: + case 816: if (lookahead == 'L' || lookahead == 'l') ADVANCE(609); END_STATE(); - case 818: + case 817: if (lookahead == 'L' || lookahead == 'l') ADVANCE(598); END_STATE(); - case 819: + case 818: if (lookahead == 'L' || lookahead == 'l') ADVANCE(600); END_STATE(); - case 820: + case 819: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || lookahead == 'n') ADVANCE(519); END_STATE(); - case 821: + case 820: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || @@ -22086,367 +22079,371 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X' || lookahead == 'x') ADVANCE(1120); END_STATE(); - case 822: + case 821: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || lookahead == 'n') ADVANCE(520); END_STATE(); - case 823: + case 822: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || lookahead == 'n') ADVANCE(522); END_STATE(); - case 824: + case 823: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || lookahead == 'n') ADVANCE(523); END_STATE(); - case 825: + case 824: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || lookahead == 'n') ADVANCE(524); END_STATE(); - case 826: + case 825: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || lookahead == 'n') ADVANCE(525); END_STATE(); - case 827: + case 826: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || lookahead == 'n') ADVANCE(526); END_STATE(); - case 828: + case 827: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || lookahead == 'n') ADVANCE(538); END_STATE(); - case 829: + case 828: if (lookahead == 'L' || lookahead == 'l') ADVANCE(665); if (lookahead == 'N' || lookahead == 'n') ADVANCE(539); END_STATE(); - case 830: + case 829: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1174); END_STATE(); - case 831: + case 830: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1072); END_STATE(); - case 832: + case 831: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(717); + lookahead == 'l') ADVANCE(716); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1017); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1023); END_STATE(); - case 833: + case 832: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(721); + lookahead == 'l') ADVANCE(720); END_STATE(); - case 834: + case 833: if (lookahead == 'L' || lookahead == 'l') ADVANCE(653); END_STATE(); - case 835: + case 834: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1075); if (lookahead == 'N' || lookahead == 'n') ADVANCE(529); END_STATE(); - case 836: + case 835: if (lookahead == 'L' || lookahead == 'l') ADVANCE(1076); if (lookahead == 'N' || lookahead == 'n') ADVANCE(528); END_STATE(); - case 837: + case 836: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(963); + lookahead == 'l') ADVANCE(962); END_STATE(); - case 838: + case 837: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(657); + lookahead == 'l') ADVANCE(656); END_STATE(); - case 839: + case 838: if (lookahead == 'L' || lookahead == 'l') ADVANCE(659); if (lookahead == 'Q' || lookahead == 'q') ADVANCE(1180); END_STATE(); - case 840: + case 839: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(966); + lookahead == 'l') ADVANCE(965); END_STATE(); - case 841: + case 840: if (lookahead == 'M' || lookahead == 'm') ADVANCE(1679); END_STATE(); - case 842: + case 841: if (lookahead == 'M' || lookahead == 'm') ADVANCE(1735); END_STATE(); - case 843: + case 842: if (lookahead == 'M' || lookahead == 'm') ADVANCE(1682); END_STATE(); - case 844: + case 843: if (lookahead == 'M' || lookahead == 'm') ADVANCE(1750); END_STATE(); - case 845: + case 844: if (lookahead == 'M' || lookahead == 'm') ADVANCE(1324); END_STATE(); - case 846: + case 845: if (lookahead == 'M' || lookahead == 'm') ADVANCE(1358); END_STATE(); - case 847: + case 846: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(437); + lookahead == 'm') ADVANCE(436); if (lookahead == 'N' || lookahead == 'n') ADVANCE(474); END_STATE(); - case 848: + case 847: if (lookahead == 'M' || lookahead == 'm') ADVANCE(985); END_STATE(); - case 849: + case 848: if (lookahead == 'M' || lookahead == 'm') ADVANCE(976); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(720); + lookahead == 'n') ADVANCE(719); END_STATE(); - case 850: + case 849: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(945); + lookahead == 'm') ADVANCE(944); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(808); + lookahead == 'p') ADVANCE(807); END_STATE(); - case 851: + case 850: if (lookahead == 'M' || lookahead == 'm') ADVANCE(984); if (lookahead == 'N' || lookahead == 'n') ADVANCE(474); END_STATE(); + case 851: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(727); + END_STATE(); case 852: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(728); + lookahead == 'm') ADVANCE(632); END_STATE(); case 853: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(632); + lookahead == 'm') ADVANCE(446); END_STATE(); case 854: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(446); + lookahead == 'm') ADVANCE(946); END_STATE(); case 855: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(947); + lookahead == 'm') ADVANCE(623); END_STATE(); case 856: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(623); + lookahead == 'm') ADVANCE(668); END_STATE(); case 857: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(668); + lookahead == 'm') ADVANCE(408); END_STATE(); case 858: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(408); + lookahead == 'm') ADVANCE(392); END_STATE(); case 859: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(392); + lookahead == 'm') ADVANCE(637); END_STATE(); case 860: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(637); + lookahead == 'm') ADVANCE(652); END_STATE(); case 861: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(652); + lookahead == 'm') ADVANCE(983); END_STATE(); case 862: if (lookahead == 'M' || lookahead == 'm') ADVANCE(983); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1128); END_STATE(); case 863: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(983); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1128); + lookahead == 'm') ADVANCE(443); END_STATE(); case 864: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(443); + lookahead == 'm') ADVANCE(655); END_STATE(); case 865: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(655); + lookahead == 'm') ADVANCE(669); END_STATE(); case 866: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(669); + lookahead == 'm') ADVANCE(972); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(958); END_STATE(); case 867: if (lookahead == 'M' || lookahead == 'm') ADVANCE(973); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(959); END_STATE(); case 868: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(974); - END_STATE(); - case 869: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(974); + lookahead == 'm') ADVANCE(973); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(971); + lookahead == 'r') ADVANCE(970); END_STATE(); - case 870: + case 869: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1560); END_STATE(); - case 871: + case 870: if (lookahead == 'N' || lookahead == 'n') ADVANCE(334); if (lookahead == 'P' || lookahead == 'p') ADVANCE(420); END_STATE(); - case 872: + case 871: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1673); if (lookahead == 'R' || lookahead == 'r') ADVANCE(413); END_STATE(); - case 873: + case 872: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1614); END_STATE(); - case 874: + case 873: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1442); END_STATE(); - case 875: + case 874: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1593); END_STATE(); - case 876: + case 875: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1400); END_STATE(); - case 877: + case 876: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1534); END_STATE(); - case 878: + case 877: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1512); END_STATE(); - case 879: + case 878: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1532); END_STATE(); - case 880: + case 879: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1411); END_STATE(); - case 881: + case 880: if (lookahead == 'N' || lookahead == 'n') ADVANCE(1513); END_STATE(); - case 882: + case 881: if (lookahead == 'N' || lookahead == 'n') ADVANCE(474); END_STATE(); - case 883: + case 882: if (lookahead == 'N' || lookahead == 'n') ADVANCE(534); END_STATE(); + case 883: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(764); + END_STATE(); case 884: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(765); + lookahead == 'n') ADVANCE(772); END_STATE(); case 885: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(773); + lookahead == 'n') ADVANCE(492); END_STATE(); case 886: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(492); + lookahead == 'n') ADVANCE(508); END_STATE(); case 887: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(508); + lookahead == 'n') ADVANCE(679); END_STATE(); case 888: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(679); + lookahead == 'n') ADVANCE(424); END_STATE(); case 889: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(424); + lookahead == 'n') ADVANCE(463); END_STATE(); case 890: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(463); + lookahead == 'n') ADVANCE(510); END_STATE(); case 891: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(510); + lookahead == 'n') ADVANCE(535); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(921); END_STATE(); case 892: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(922); + lookahead == 'n') ADVANCE(768); END_STATE(); case 893: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(769); + lookahead == 'n') ADVANCE(628); END_STATE(); case 894: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(628); + lookahead == 'n') ADVANCE(1081); END_STATE(); case 895: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1081); + lookahead == 'n') ADVANCE(1161); END_STATE(); case 896: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1161); + lookahead == 'n') ADVANCE(513); END_STATE(); case 897: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(513); + lookahead == 'n') ADVANCE(1079); END_STATE(); case 898: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1079); + lookahead == 'n') ADVANCE(1092); END_STATE(); case 899: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1092); + lookahead == 'n') ADVANCE(1057); END_STATE(); case 900: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1057); + lookahead == 'n') ADVANCE(520); END_STATE(); case 901: if (lookahead == 'N' || @@ -22460,195 +22457,195 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 903: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(522); + lookahead == 'n') ADVANCE(618); END_STATE(); case 904: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(618); + lookahead == 'n') ADVANCE(526); END_STATE(); case 905: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(526); + lookahead == 'n') ADVANCE(527); END_STATE(); case 906: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(527); + lookahead == 'n') ADVANCE(530); END_STATE(); case 907: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(530); + lookahead == 'n') ADVANCE(1150); END_STATE(); case 908: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1150); + lookahead == 'n') ADVANCE(1104); END_STATE(); case 909: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1104); + lookahead == 'n') ADVANCE(1108); END_STATE(); case 910: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1108); + lookahead == 'n') ADVANCE(1109); END_STATE(); case 911: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); + lookahead == 'n') ADVANCE(592); END_STATE(); case 912: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(592); + lookahead == 'n') ADVANCE(599); END_STATE(); case 913: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(599); + lookahead == 'n') ADVANCE(554); END_STATE(); case 914: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(554); + lookahead == 'n') ADVANCE(387); END_STATE(); case 915: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(387); + lookahead == 'n') ADVANCE(903); END_STATE(); case 916: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(904); + lookahead == 'n') ADVANCE(487); END_STATE(); case 917: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(487); + lookahead == 'n') ADVANCE(689); END_STATE(); case 918: if (lookahead == 'N' || lookahead == 'n') ADVANCE(689); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(421); END_STATE(); case 919: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(689); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(421); + lookahead == 'n') ADVANCE(736); END_STATE(); case 920: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(737); + lookahead == 'n') ADVANCE(490); END_STATE(); case 921: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(490); + lookahead == 'n') ADVANCE(398); END_STATE(); case 922: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(398); + lookahead == 'n') ADVANCE(399); END_STATE(); case 923: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(399); + lookahead == 'n') ADVANCE(1137); END_STATE(); case 924: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1137); + lookahead == 'n') ADVANCE(1080); END_STATE(); case 925: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1080); + lookahead == 'n') ADVANCE(1144); END_STATE(); case 926: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1144); + lookahead == 'n') ADVANCE(501); END_STATE(); case 927: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(501); + lookahead == 'n') ADVANCE(864); END_STATE(); case 928: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(865); + lookahead == 'n') ADVANCE(1083); END_STATE(); case 929: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1083); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(531); END_STATE(); case 930: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(531); + lookahead == 'o') ADVANCE(870); END_STATE(); case 931: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(871); + lookahead == 'o') ADVANCE(1591); END_STATE(); case 932: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1591); + lookahead == 'o') ADVANCE(1603); END_STATE(); case 933: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1603); + lookahead == 'o') ADVANCE(1599); END_STATE(); case 934: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1599); + lookahead == 'o') ADVANCE(506); END_STATE(); case 935: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(506); + lookahead == 'o') ADVANCE(452); END_STATE(); case 936: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(452); + lookahead == 'o') ADVANCE(853); END_STATE(); case 937: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(854); + lookahead == 'o') ADVANCE(693); END_STATE(); case 938: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(693); + lookahead == 'o') ADVANCE(1122); END_STATE(); case 939: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1122); + lookahead == 'o') ADVANCE(688); END_STATE(); case 940: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(688); + lookahead == 'o') ADVANCE(847); END_STATE(); case 941: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(848); + lookahead == 'o') ADVANCE(1170); END_STATE(); case 942: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1170); + lookahead == 'o') ADVANCE(1156); END_STATE(); case 943: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1156); + lookahead == 'o') ADVANCE(989); END_STATE(); case 944: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(989); + lookahead == 'o') ADVANCE(873); END_STATE(); case 945: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(874); - END_STATE(); - case 946: if (lookahead == 'O' || lookahead == 'o') ADVANCE(1017); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1023); END_STATE(); - case 947: + case 946: if (lookahead == 'O' || lookahead == 'o') ADVANCE(1003); END_STATE(); + case 947: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(875); + END_STATE(); case 948: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(876); + lookahead == 'o') ADVANCE(1034); END_STATE(); case 949: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1034); + lookahead == 'o') ADVANCE(876); END_STATE(); case 950: if (lookahead == 'O' || @@ -22668,87 +22665,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 954: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(881); + lookahead == 'o') ADVANCE(992); END_STATE(); case 955: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(992); + lookahead == 'o') ADVANCE(995); END_STATE(); case 956: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(995); + lookahead == 'o') ADVANCE(1064); END_STATE(); case 957: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1064); + lookahead == 'o') ADVANCE(470); END_STATE(); case 958: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(470); + lookahead == 'o') ADVANCE(1178); END_STATE(); case 959: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1178); + lookahead == 'o') ADVANCE(476); END_STATE(); case 960: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(476); + lookahead == 'o') ADVANCE(481); END_STATE(); case 961: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(481); + lookahead == 'o') ADVANCE(471); END_STATE(); case 962: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(471); + lookahead == 'o') ADVANCE(472); END_STATE(); case 963: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(472); + lookahead == 'o') ADVANCE(913); END_STATE(); case 964: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(914); + lookahead == 'o') ADVANCE(505); END_STATE(); case 965: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(505); + lookahead == 'o') ADVANCE(457); END_STATE(); case 966: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(457); + lookahead == 'o') ADVANCE(1039); END_STATE(); case 967: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1039); + lookahead == 'o') ADVANCE(922); END_STATE(); case 968: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(923); + lookahead == 'o') ADVANCE(540); END_STATE(); case 969: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(540); + lookahead == 'o') ADVANCE(1041); END_STATE(); case 970: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1041); + lookahead == 'o') ADVANCE(1190); END_STATE(); case 971: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1190); + lookahead == 'o') ADVANCE(503); END_STATE(); case 972: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(503); + lookahead == 'o') ADVANCE(542); END_STATE(); case 973: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(542); + lookahead == 'o') ADVANCE(544); END_STATE(); case 974: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(544); + lookahead == 'o') ADVANCE(1046); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(885); END_STATE(); case 975: if (lookahead == 'P' || @@ -22756,7 +22755,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 976: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(946); + lookahead == 'p') ADVANCE(945); END_STATE(); case 977: if (lookahead == 'P' || @@ -22786,7 +22785,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 983: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(808); + lookahead == 'p') ADVANCE(807); END_STATE(); case 984: if (lookahead == 'P' || @@ -22794,7 +22793,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 985: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(817); + lookahead == 'p') ADVANCE(816); END_STATE(); case 986: if (lookahead == 'Q' || @@ -22850,23 +22849,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 999: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(616); + lookahead == 'r') ADVANCE(708); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1008); + lookahead == 'u') ADVANCE(449); END_STATE(); case 1000: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(709); + lookahead == 'r') ADVANCE(616); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(449); + lookahead == 'u') ADVANCE(1008); END_STATE(); case 1001: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(944); + lookahead == 'r') ADVANCE(943); END_STATE(); case 1002: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(708); + lookahead == 'r') ADVANCE(707); if (lookahead == 'U' || lookahead == 'u') ADVANCE(450); END_STATE(); @@ -22902,15 +22901,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1009: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(959); + lookahead == 'r') ADVANCE(958); END_STATE(); case 1010: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(710); + lookahead == 'r') ADVANCE(709); END_STATE(); case 1011: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(935); + lookahead == 'r') ADVANCE(934); END_STATE(); case 1012: if (lookahead == 'R' || @@ -22918,7 +22917,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1013: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(875); + lookahead == 'r') ADVANCE(874); END_STATE(); case 1014: if (lookahead == 'R' || @@ -22926,7 +22925,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1015: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(940); + lookahead == 'r') ADVANCE(939); END_STATE(); case 1016: if (lookahead == 'R' || @@ -22938,7 +22937,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1018: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(965); + lookahead == 'r') ADVANCE(964); END_STATE(); case 1019: if (lookahead == 'R' || @@ -22998,11 +22997,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1033: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(730); + lookahead == 'r') ADVANCE(729); END_STATE(); case 1034: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(858); + lookahead == 'r') ADVANCE(857); END_STATE(); case 1035: if (lookahead == 'R' || @@ -23014,7 +23013,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1037: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(724); + lookahead == 'r') ADVANCE(723); END_STATE(); case 1038: if (lookahead == 'R' || @@ -23030,11 +23029,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1041: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(859); + lookahead == 'r') ADVANCE(858); END_STATE(); case 1042: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(658); + lookahead == 'r') ADVANCE(657); END_STATE(); case 1043: if (lookahead == 'R' || @@ -23046,23 +23045,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1045: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(757); + lookahead == 'r') ADVANCE(756); END_STATE(); case 1046: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(864); + lookahead == 'r') ADVANCE(863); END_STATE(); case 1047: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(761); + lookahead == 'r') ADVANCE(760); END_STATE(); case 1048: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(971); + lookahead == 'r') ADVANCE(970); END_STATE(); case 1049: if (lookahead == 'S' || - lookahead == 's') ADVANCE(705); + lookahead == 's') ADVANCE(704); END_STATE(); case 1050: if (lookahead == 'S' || @@ -23134,7 +23133,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1067: if (lookahead == 'S' || - lookahead == 's') ADVANCE(972); + lookahead == 's') ADVANCE(971); END_STATE(); case 1068: if (lookahead == 'S' || @@ -23146,7 +23145,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1070: if (lookahead == 'S' || - lookahead == 's') ADVANCE(743); + lookahead == 's') ADVANCE(742); END_STATE(); case 1071: if (lookahead == 'S' || @@ -23176,7 +23175,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S' || lookahead == 's') ADVANCE(1125); if (lookahead == 'T' || - lookahead == 't') ADVANCE(711); + lookahead == 't') ADVANCE(710); END_STATE(); case 1078: if (lookahead == 'S' || @@ -23184,31 +23183,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1079: if (lookahead == 'S' || - lookahead == 's') ADVANCE(729); + lookahead == 's') ADVANCE(728); END_STATE(); case 1080: if (lookahead == 'S' || - lookahead == 's') ADVANCE(732); + lookahead == 's') ADVANCE(731); END_STATE(); case 1081: if (lookahead == 'S' || - lookahead == 's') ADVANCE(745); + lookahead == 's') ADVANCE(744); END_STATE(); case 1082: if (lookahead == 'S' || - lookahead == 's') ADVANCE(748); + lookahead == 's') ADVANCE(747); END_STATE(); case 1083: if (lookahead == 'S' || - lookahead == 's') ADVANCE(750); + lookahead == 's') ADVANCE(749); END_STATE(); case 1084: if (lookahead == 'S' || - lookahead == 's') ADVANCE(754); + lookahead == 's') ADVANCE(753); END_STATE(); case 1085: if (lookahead == 'S' || - lookahead == 's') ADVANCE(960); + lookahead == 's') ADVANCE(959); END_STATE(); case 1086: if (lookahead == 'S' || @@ -23328,7 +23327,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1115: if (lookahead == 'T' || - lookahead == 't') ADVANCE(937); + lookahead == 't') ADVANCE(936); END_STATE(); case 1116: if (lookahead == 'T' || @@ -23352,7 +23351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1121: if (lookahead == 'T' || - lookahead == 't') ADVANCE(718); + lookahead == 't') ADVANCE(717); END_STATE(); case 1122: if (lookahead == 'T' || @@ -23364,7 +23363,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1124: if (lookahead == 'T' || - lookahead == 't') ADVANCE(749); + lookahead == 't') ADVANCE(748); END_STATE(); case 1125: if (lookahead == 'T' || @@ -23372,11 +23371,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1126: if (lookahead == 'T' || - lookahead == 't') ADVANCE(739); + lookahead == 't') ADVANCE(738); END_STATE(); case 1127: if (lookahead == 'T' || - lookahead == 't') ADVANCE(744); + lookahead == 't') ADVANCE(743); END_STATE(); case 1128: if (lookahead == 'T' || @@ -23420,11 +23419,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1138: if (lookahead == 'T' || - lookahead == 't') ADVANCE(755); + lookahead == 't') ADVANCE(754); END_STATE(); case 1139: if (lookahead == 'T' || - lookahead == 't') ADVANCE(955); + lookahead == 't') ADVANCE(954); END_STATE(); case 1140: if (lookahead == 'T' || @@ -23432,11 +23431,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1141: if (lookahead == 'T' || - lookahead == 't') ADVANCE(956); + lookahead == 't') ADVANCE(955); END_STATE(); case 1142: if (lookahead == 'T' || - lookahead == 't') ADVANCE(723); + lookahead == 't') ADVANCE(722); END_STATE(); case 1143: if (lookahead == 'T' || @@ -23452,7 +23451,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1146: if (lookahead == 'T' || - lookahead == 't') ADVANCE(726); + lookahead == 't') ADVANCE(725); END_STATE(); case 1147: if (lookahead == 'T' || @@ -23472,19 +23471,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1151: if (lookahead == 'T' || - lookahead == 't') ADVANCE(747); + lookahead == 't') ADVANCE(746); END_STATE(); case 1152: if (lookahead == 'T' || - lookahead == 't') ADVANCE(756); + lookahead == 't') ADVANCE(755); END_STATE(); case 1153: if (lookahead == 'T' || - lookahead == 't') ADVANCE(759); + lookahead == 't') ADVANCE(758); END_STATE(); case 1154: if (lookahead == 'T' || - lookahead == 't') ADVANCE(752); + lookahead == 't') ADVANCE(751); END_STATE(); case 1155: if (lookahead == 'T' || @@ -23496,11 +23495,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1157: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(886); + lookahead == 'u') ADVANCE(885); END_STATE(); case 1158: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(722); + lookahead == 'u') ADVANCE(721); END_STATE(); case 1159: if (lookahead == 'U' || @@ -23512,11 +23511,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1161: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(843); + lookahead == 'u') ADVANCE(842); END_STATE(); case 1162: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(706); + lookahead == 'u') ADVANCE(705); END_STATE(); case 1163: if (lookahead == 'U' || @@ -23528,11 +23527,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1165: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(751); + lookahead == 'u') ADVANCE(750); END_STATE(); case 1166: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(942); + lookahead == 'u') ADVANCE(941); END_STATE(); case 1167: if (lookahead == 'U' || @@ -23556,7 +23555,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1172: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(803); + lookahead == 'u') ADVANCE(802); END_STATE(); case 1173: if (lookahead == 'U' || @@ -23572,7 +23571,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1176: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(805); + lookahead == 'u') ADVANCE(804); END_STATE(); case 1177: if (lookahead == 'U' || @@ -23584,7 +23583,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1179: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(812); + lookahead == 'u') ADVANCE(811); END_STATE(); case 1180: if (lookahead == 'U' || @@ -23592,7 +23591,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1181: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(809); + lookahead == 'u') ADVANCE(808); END_STATE(); case 1182: if (lookahead == 'U' || @@ -23604,7 +23603,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1184: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(814); + lookahead == 'u') ADVANCE(813); END_STATE(); case 1185: if (lookahead == 'U' || @@ -23612,7 +23611,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1186: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(815); + lookahead == 'u') ADVANCE(814); END_STATE(); case 1187: if (lookahead == 'U' || @@ -23624,7 +23623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1189: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(818); + lookahead == 'u') ADVANCE(817); END_STATE(); case 1190: if (lookahead == 'U' || @@ -23632,7 +23631,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1191: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(927); + lookahead == 'u') ADVANCE(926); END_STATE(); case 1192: if (lookahead == 'U' || @@ -24505,20 +24504,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'A', 1065, 'a', 1065, - 'B', 837, - 'b', 837, + 'B', 836, + 'b', 836, 'C', 1047, 'c', 1047, - 'D', 933, - 'd', 933, - 'E', 896, - 'e', 896, - 'F', 753, - 'f', 753, + 'D', 932, + 'd', 932, + 'E', 895, + 'e', 895, + 'F', 752, + 'f', 752, 'I', 676, 'i', 676, - 'M', 969, - 'm', 969, + 'M', 968, + 'm', 968, 'P', 1011, 'p', 1011, 'S', 662, @@ -24558,7 +24557,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1330: ACCEPT_TOKEN(aux_sym_end_program_statement_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(933); + lookahead == 'd') ADVANCE(932); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_end_program_statement_token1); @@ -24589,7 +24588,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1333: ACCEPT_TOKEN(aux_sym_end_program_statement_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(896); + lookahead == 'e') ADVANCE(895); END_STATE(); case 1334: ACCEPT_TOKEN(aux_sym_end_program_statement_token1); @@ -24672,7 +24671,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I' || lookahead == 'i') ADVANCE(2073); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2035); + lookahead == 't') ADVANCE(2034); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -24712,7 +24711,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I' || lookahead == 'i') ADVANCE(2073); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2347); + lookahead == 'm') ADVANCE(2346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -24755,12 +24754,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1349: ACCEPT_TOKEN(aux_sym_end_program_statement_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(926); + lookahead == 'i') ADVANCE(925); END_STATE(); case 1350: ACCEPT_TOKEN(aux_sym_end_program_statement_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(969); + lookahead == 'm') ADVANCE(968); END_STATE(); case 1351: ACCEPT_TOKEN(aux_sym_end_program_statement_token1); @@ -25230,8 +25229,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'e', 333, 'A', 1117, 'a', 1117, - 'I', 856, - 'i', 856, + 'I', 855, + 'i', 855, 'O', 1600, 'o', 1600, ); @@ -25243,8 +25242,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'a', 1117, 'E', 674, 'e', 674, - 'I', 856, - 'i', 856, + 'I', 855, + 'i', 855, 'O', 1600, 'o', 1600, ); @@ -25254,10 +25253,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'A', 461, 'a', 461, - 'I', 887, - 'i', 887, - 'L', 958, - 'l', 958, + 'I', 886, + 'i', 886, + 'L', 957, + 'l', 957, 'Y', 1116, 'y', 1116, ); @@ -25265,16 +25264,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1448: ACCEPT_TOKEN(aux_sym_implicit_range_token1); ADVANCE_MAP( - 'A', 793, - 'a', 793, + 'A', 792, + 'a', 792, 'H', 366, 'h', 366, 'L', 372, 'l', 372, 'O', 532, 'o', 532, - 'R', 713, - 'r', 713, + 'R', 712, + 'r', 712, 'Y', 473, 'y', 473, ); @@ -25282,14 +25281,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1449: ACCEPT_TOKEN(aux_sym_implicit_range_token1); ADVANCE_MAP( - 'A', 716, - 'a', 716, - 'I', 915, - 'i', 915, + 'A', 715, + 'a', 715, + 'I', 914, + 'i', 914, 'O', 988, 'o', 988, - 'U', 886, - 'u', 886, + 'U', 885, + 'u', 885, ); END_STATE(); case 1450: @@ -25297,10 +25296,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'A', 1006, 'a', 1006, - 'I', 916, - 'i', 916, - 'O', 740, - 'o', 740, + 'I', 915, + 'i', 915, + 'O', 739, + 'o', 739, 'R', 614, 'r', 614, 'U', 450, @@ -25312,24 +25311,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'A', 1194, 'a', 1194, - 'E', 798, - 'e', 798, + 'E', 797, + 'e', 797, 'H', 383, 'h', 383, 'T', 441, 't', 441, 'U', 448, 'u', 448, - 'Y', 890, - 'y', 890, + 'Y', 889, + 'y', 889, ); END_STATE(); case 1452: ACCEPT_TOKEN(aux_sym_implicit_range_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(830); + lookahead == 'a') ADVANCE(829); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(795); + lookahead == 'o') ADVANCE(794); END_STATE(); case 1453: ACCEPT_TOKEN(aux_sym_implicit_range_token1); @@ -25349,44 +25348,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1454: ACCEPT_TOKEN(aux_sym_implicit_range_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(889); + lookahead == 'a') ADVANCE(888); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(855); + lookahead == 'e') ADVANCE(854); if (lookahead == 'O' || lookahead == 'o') ADVANCE(531); END_STATE(); case 1455: ACCEPT_TOKEN(aux_sym_implicit_range_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(884); + lookahead == 'a') ADVANCE(883); if (lookahead == 'E' || lookahead == 'e') ADVANCE(368); END_STATE(); case 1456: ACCEPT_TOKEN(aux_sym_implicit_range_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(853); + lookahead == 'a') ADVANCE(852); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(871); + lookahead == 'o') ADVANCE(870); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(796); + lookahead == 'u') ADVANCE(795); END_STATE(); case 1457: ACCEPT_TOKEN(aux_sym_implicit_range_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(725); + lookahead == 'a') ADVANCE(724); if (lookahead == 'H' || lookahead == 'h') ADVANCE(648); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(727); + lookahead == 'r') ADVANCE(726); END_STATE(); case 1458: ACCEPT_TOKEN(aux_sym_implicit_range_token1); ADVANCE_MAP( 'B', 1078, 'b', 1078, - 'L', 772, - 'l', 772, + 'L', 771, + 'l', 771, 'S', 1049, 's', 1049, 'T', 1119, @@ -25398,20 +25397,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1459: ACCEPT_TOKEN(aux_sym_implicit_range_token1); ADVANCE_MAP( - 'E', 894, - 'e', 894, - 'L', 936, - 'l', 936, + 'E', 893, + 'e', 893, + 'L', 935, + 'l', 935, 'O', 1588, 'o', 1588, - 'R', 707, - 'r', 707, + 'R', 706, + 'r', 706, ); END_STATE(); case 1460: ACCEPT_TOKEN(aux_sym_implicit_range_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(870); + lookahead == 'e') ADVANCE(869); if (lookahead == 'O' || lookahead == 'o') ADVANCE(462); END_STATE(); @@ -25431,7 +25430,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1462: ACCEPT_TOKEN(aux_sym_implicit_range_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(891); + lookahead == 'i') ADVANCE(890); END_STATE(); case 1463: ACCEPT_TOKEN(aux_sym_implicit_range_token1); @@ -25446,8 +25445,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'r', 1001, 'V', 619, 'v', 619, - 'X', 714, - 'x', 714, + 'X', 713, + 'x', 713, ); END_STATE(); case 1464: @@ -25460,7 +25459,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1465: ACCEPT_TOKEN(aux_sym_implicit_range_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(773); + lookahead == 'n') ADVANCE(772); if (lookahead == 'P' || lookahead == 'p') ADVANCE(608); if (lookahead == 'U' || @@ -25474,7 +25473,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1467: ACCEPT_TOKEN(aux_sym_implicit_range_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(722); + lookahead == 'u') ADVANCE(721); END_STATE(); case 1468: ACCEPT_TOKEN(aux_sym_import_statement_token1); @@ -25521,40 +25520,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_end_type_statement_token1); END_STATE(); case 1478: - ACCEPT_TOKEN(aux_sym__procedure_kind_token1); + ACCEPT_TOKEN(aux_sym_procedure_kind_token1); END_STATE(); case 1479: - ACCEPT_TOKEN(aux_sym__procedure_kind_token1); + ACCEPT_TOKEN(aux_sym_procedure_kind_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2535); END_STATE(); case 1480: - ACCEPT_TOKEN(aux_sym__procedure_kind_token2); + ACCEPT_TOKEN(aux_sym_procedure_kind_token2); END_STATE(); case 1481: - ACCEPT_TOKEN(aux_sym__procedure_kind_token2); + ACCEPT_TOKEN(aux_sym_procedure_kind_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2535); END_STATE(); case 1482: - ACCEPT_TOKEN(aux_sym__procedure_kind_token3); + ACCEPT_TOKEN(aux_sym_procedure_kind_token3); END_STATE(); case 1483: - ACCEPT_TOKEN(aux_sym__procedure_kind_token3); + ACCEPT_TOKEN(aux_sym_procedure_kind_token3); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2535); END_STATE(); case 1484: - ACCEPT_TOKEN(aux_sym__procedure_kind_token4); + ACCEPT_TOKEN(aux_sym_procedure_kind_token4); END_STATE(); case 1485: - ACCEPT_TOKEN(aux_sym__procedure_kind_token4); + ACCEPT_TOKEN(aux_sym_procedure_kind_token4); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -25679,7 +25678,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1510: ACCEPT_TOKEN(aux_sym__intrinsic_type_token4); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(941); + lookahead == 'c') ADVANCE(940); if (lookahead == 'P' || lookahead == 'p') ADVANCE(1028); END_STATE(); @@ -25838,8 +25837,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1540: ACCEPT_TOKEN(aux_sym__standalone_type_qualifier_token7); ADVANCE_MAP( - 'C', 794, - 'c', 794, + 'C', 793, + 'c', 793, 'I', 1124, 'i', 1124, 'O', 1168, @@ -26076,7 +26075,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1588: ACCEPT_TOKEN(aux_sym_keyword_statement_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(932); + lookahead == 't') ADVANCE(931); END_STATE(); case 1589: ACCEPT_TOKEN(aux_sym_keyword_statement_token4); @@ -26188,7 +26187,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1609: ACCEPT_TOKEN(aux_sym_concurrent_locality_token1); - if (lookahead == '_') ADVANCE(735); + if (lookahead == '_') ADVANCE(734); END_STATE(); case 1610: ACCEPT_TOKEN(aux_sym_concurrent_locality_token2); @@ -26693,8 +26692,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_DOT); ADVANCE_MAP( '.', 1716, - 'A', 883, - 'a', 883, + 'A', 882, + 'a', 882, 'E', 986, 'e', 986, 'F', 378, @@ -26717,15 +26716,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'F' || lookahead == 'f') ADVANCE(378); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(939); + lookahead == 'n') ADVANCE(938); if (lookahead == 'T' || lookahead == 't') ADVANCE(996); END_STATE(); case 1712: ACCEPT_TOKEN(anon_sym_DOT); ADVANCE_MAP( - 'A', 883, - 'a', 883, + 'A', 882, + 'a', 882, 'E', 986, 'e', 986, 'F', 378, @@ -26745,8 +26744,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1713: ACCEPT_TOKEN(anon_sym_DOT); ADVANCE_MAP( - 'A', 883, - 'a', 883, + 'A', 882, + 'a', 882, 'E', 986, 'e', 986, 'G', 546, @@ -26764,7 +26763,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'F' || lookahead == 'f') ADVANCE(378); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(939); + lookahead == 'n') ADVANCE(938); if (lookahead == 'T' || lookahead == 't') ADVANCE(996); END_STATE(); @@ -28948,7 +28947,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1930: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1329); + lookahead == 'd') ADVANCE(1340); if (lookahead == 'T' || lookahead == 't') ADVANCE(2370); if (('0' <= lookahead && lookahead <= '9') || @@ -28959,7 +28958,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1931: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1326); + lookahead == 'd') ADVANCE(1329); if (lookahead == 'T' || lookahead == 't') ADVANCE(2370); if (('0' <= lookahead && lookahead <= '9') || @@ -28970,7 +28969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1932: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1340); + lookahead == 'd') ADVANCE(1326); if (lookahead == 'T' || lookahead == 't') ADVANCE(2370); if (('0' <= lookahead && lookahead <= '9') || @@ -29005,7 +29004,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1935: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1345); + lookahead == 'd') ADVANCE(1344); if (lookahead == 'T' || lookahead == 't') ADVANCE(2370); if (lookahead == 'U' || @@ -29018,7 +29017,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1936: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1344); + lookahead == 'd') ADVANCE(1345); if (lookahead == 'T' || lookahead == 't') ADVANCE(2370); if (lookahead == 'U' || @@ -29683,7 +29682,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2005: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1369); + lookahead == 'e') ADVANCE(1363); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -29692,7 +29691,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2006: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1363); + lookahead == 'e') ADVANCE(1369); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -29954,7 +29953,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2034: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2313); + lookahead == 'e') ADVANCE(1806); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -29963,7 +29962,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2035: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1806); + lookahead == 'e') ADVANCE(2313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -31849,8 +31848,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'L', 2421, 'l', 2421, - 'N', 1925, - 'n', 1925, + 'N', 1939, + 'n', 1939, 'R', 2377, 'r', 2377, 'V', 2017, @@ -31889,8 +31888,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'L', 2421, 'l', 2421, - 'N', 1939, - 'n', 1939, + 'N', 1925, + 'n', 1925, 'R', 2377, 'r', 2377, 'V', 2017, @@ -32030,8 +32029,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'L', 2421, 'l', 2421, - 'N', 1930, - 'n', 1930, + 'N', 1927, + 'n', 1927, 'R', 2377, 'r', 2377, 'V', 2017, @@ -32049,8 +32048,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'L', 2421, 'l', 2421, - 'N', 1931, - 'n', 1931, + 'N', 1930, + 'n', 1930, 'R', 2377, 'r', 2377, 'V', 2017, @@ -32068,8 +32067,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'L', 2421, 'l', 2421, - 'N', 1932, - 'n', 1932, + 'N', 1931, + 'n', 1931, 'R', 2377, 'r', 2377, 'V', 2017, @@ -32106,8 +32105,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'L', 2421, 'l', 2421, - 'N', 1927, - 'n', 1927, + 'N', 1932, + 'n', 1932, 'R', 2377, 'r', 2377, 'V', 2017, @@ -32500,7 +32499,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2264: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2346); + lookahead == 'm') ADVANCE(2347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -35067,8 +35066,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [51] = {.lex_state = 1218, .external_lex_state = 2}, [52] = {.lex_state = 255, .external_lex_state = 2}, [53] = {.lex_state = 255, .external_lex_state = 2}, - [54] = {.lex_state = 255, .external_lex_state = 2}, - [55] = {.lex_state = 1218, .external_lex_state = 2}, + [54] = {.lex_state = 1218, .external_lex_state = 2}, + [55] = {.lex_state = 255, .external_lex_state = 2}, [56] = {.lex_state = 208, .external_lex_state = 2}, [57] = {.lex_state = 208, .external_lex_state = 2}, [58] = {.lex_state = 208, .external_lex_state = 2}, @@ -35134,34 +35133,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [118] = {.lex_state = 208, .external_lex_state = 2}, [119] = {.lex_state = 208, .external_lex_state = 2}, [120] = {.lex_state = 219, .external_lex_state = 2}, - [121] = {.lex_state = 227, .external_lex_state = 2}, + [121] = {.lex_state = 219, .external_lex_state = 2}, [122] = {.lex_state = 220, .external_lex_state = 2}, [123] = {.lex_state = 220, .external_lex_state = 2}, - [124] = {.lex_state = 219, .external_lex_state = 2}, - [125] = {.lex_state = 227, .external_lex_state = 2}, - [126] = {.lex_state = 219, .external_lex_state = 2}, - [127] = {.lex_state = 227, .external_lex_state = 2}, - [128] = {.lex_state = 219, .external_lex_state = 2}, - [129] = {.lex_state = 227, .external_lex_state = 2}, - [130] = {.lex_state = 220, .external_lex_state = 2}, - [131] = {.lex_state = 220, .external_lex_state = 2}, - [132] = {.lex_state = 219, .external_lex_state = 2}, + [124] = {.lex_state = 227, .external_lex_state = 2}, + [125] = {.lex_state = 219, .external_lex_state = 2}, + [126] = {.lex_state = 227, .external_lex_state = 2}, + [127] = {.lex_state = 219, .external_lex_state = 2}, + [128] = {.lex_state = 227, .external_lex_state = 2}, + [129] = {.lex_state = 219, .external_lex_state = 2}, + [130] = {.lex_state = 219, .external_lex_state = 2}, + [131] = {.lex_state = 227, .external_lex_state = 2}, + [132] = {.lex_state = 220, .external_lex_state = 2}, [133] = {.lex_state = 227, .external_lex_state = 2}, - [134] = {.lex_state = 219, .external_lex_state = 2}, + [134] = {.lex_state = 220, .external_lex_state = 2}, [135] = {.lex_state = 219, .external_lex_state = 2}, - [136] = {.lex_state = 227, .external_lex_state = 2}, - [137] = {.lex_state = 219, .external_lex_state = 2}, - [138] = {.lex_state = 227, .external_lex_state = 2}, - [139] = {.lex_state = 219, .external_lex_state = 2}, - [140] = {.lex_state = 220, .external_lex_state = 2}, - [141] = {.lex_state = 220, .external_lex_state = 2}, - [142] = {.lex_state = 227, .external_lex_state = 2}, - [143] = {.lex_state = 219, .external_lex_state = 2}, + [136] = {.lex_state = 219, .external_lex_state = 2}, + [137] = {.lex_state = 227, .external_lex_state = 2}, + [138] = {.lex_state = 219, .external_lex_state = 2}, + [139] = {.lex_state = 227, .external_lex_state = 2}, + [140] = {.lex_state = 227, .external_lex_state = 2}, + [141] = {.lex_state = 219, .external_lex_state = 2}, + [142] = {.lex_state = 220, .external_lex_state = 2}, + [143] = {.lex_state = 220, .external_lex_state = 2}, [144] = {.lex_state = 220, .external_lex_state = 2}, - [145] = {.lex_state = 219, .external_lex_state = 2}, - [146] = {.lex_state = 227, .external_lex_state = 2}, - [147] = {.lex_state = 219, .external_lex_state = 2}, - [148] = {.lex_state = 227, .external_lex_state = 2}, + [145] = {.lex_state = 227, .external_lex_state = 2}, + [146] = {.lex_state = 219, .external_lex_state = 2}, + [147] = {.lex_state = 227, .external_lex_state = 2}, + [148] = {.lex_state = 219, .external_lex_state = 2}, [149] = {.lex_state = 227, .external_lex_state = 2}, [150] = {.lex_state = 220, .external_lex_state = 2}, [151] = {.lex_state = 220, .external_lex_state = 2}, @@ -35190,16 +35189,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [174] = {.lex_state = 219, .external_lex_state = 2}, [175] = {.lex_state = 227, .external_lex_state = 2}, [176] = {.lex_state = 227, .external_lex_state = 2}, - [177] = {.lex_state = 227, .external_lex_state = 2}, - [178] = {.lex_state = 219, .external_lex_state = 2}, - [179] = {.lex_state = 227, .external_lex_state = 2}, - [180] = {.lex_state = 219, .external_lex_state = 2}, - [181] = {.lex_state = 227, .external_lex_state = 2}, - [182] = {.lex_state = 219, .external_lex_state = 2}, - [183] = {.lex_state = 227, .external_lex_state = 2}, - [184] = {.lex_state = 219, .external_lex_state = 2}, - [185] = {.lex_state = 227, .external_lex_state = 2}, - [186] = {.lex_state = 219, .external_lex_state = 2}, + [177] = {.lex_state = 219, .external_lex_state = 2}, + [178] = {.lex_state = 227, .external_lex_state = 2}, + [179] = {.lex_state = 219, .external_lex_state = 2}, + [180] = {.lex_state = 227, .external_lex_state = 2}, + [181] = {.lex_state = 219, .external_lex_state = 2}, + [182] = {.lex_state = 227, .external_lex_state = 2}, + [183] = {.lex_state = 219, .external_lex_state = 2}, + [184] = {.lex_state = 227, .external_lex_state = 2}, + [185] = {.lex_state = 219, .external_lex_state = 2}, + [186] = {.lex_state = 227, .external_lex_state = 2}, [187] = {.lex_state = 220, .external_lex_state = 2}, [188] = {.lex_state = 238, .external_lex_state = 2}, [189] = {.lex_state = 238, .external_lex_state = 2}, @@ -35486,142 +35485,142 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [470] = {.lex_state = 209, .external_lex_state = 2}, [471] = {.lex_state = 209, .external_lex_state = 2}, [472] = {.lex_state = 221, .external_lex_state = 2}, - [473] = {.lex_state = 221, .external_lex_state = 2}, + [473] = {.lex_state = 228, .external_lex_state = 2}, [474] = {.lex_state = 221, .external_lex_state = 2}, [475] = {.lex_state = 221, .external_lex_state = 2}, - [476] = {.lex_state = 228, .external_lex_state = 2}, - [477] = {.lex_state = 231, .external_lex_state = 2}, - [478] = {.lex_state = 228, .external_lex_state = 2}, + [476] = {.lex_state = 231, .external_lex_state = 2}, + [477] = {.lex_state = 228, .external_lex_state = 2}, + [478] = {.lex_state = 231, .external_lex_state = 2}, [479] = {.lex_state = 228, .external_lex_state = 2}, - [480] = {.lex_state = 221, .external_lex_state = 2}, - [481] = {.lex_state = 231, .external_lex_state = 2}, - [482] = {.lex_state = 221, .external_lex_state = 2}, - [483] = {.lex_state = 231, .external_lex_state = 2}, - [484] = {.lex_state = 228, .external_lex_state = 2}, - [485] = {.lex_state = 228, .external_lex_state = 2}, - [486] = {.lex_state = 221, .external_lex_state = 2}, - [487] = {.lex_state = 231, .external_lex_state = 2}, + [480] = {.lex_state = 231, .external_lex_state = 2}, + [481] = {.lex_state = 228, .external_lex_state = 2}, + [482] = {.lex_state = 228, .external_lex_state = 2}, + [483] = {.lex_state = 221, .external_lex_state = 2}, + [484] = {.lex_state = 221, .external_lex_state = 2}, + [485] = {.lex_state = 231, .external_lex_state = 2}, + [486] = {.lex_state = 231, .external_lex_state = 2}, + [487] = {.lex_state = 228, .external_lex_state = 2}, [488] = {.lex_state = 221, .external_lex_state = 2}, - [489] = {.lex_state = 231, .external_lex_state = 2}, - [490] = {.lex_state = 228, .external_lex_state = 2}, - [491] = {.lex_state = 228, .external_lex_state = 2}, + [489] = {.lex_state = 228, .external_lex_state = 2}, + [490] = {.lex_state = 221, .external_lex_state = 2}, + [491] = {.lex_state = 231, .external_lex_state = 2}, [492] = {.lex_state = 231, .external_lex_state = 2}, [493] = {.lex_state = 221, .external_lex_state = 2}, - [494] = {.lex_state = 231, .external_lex_state = 2}, - [495] = {.lex_state = 221, .external_lex_state = 2}, - [496] = {.lex_state = 231, .external_lex_state = 2}, - [497] = {.lex_state = 228, .external_lex_state = 2}, + [494] = {.lex_state = 228, .external_lex_state = 2}, + [495] = {.lex_state = 231, .external_lex_state = 2}, + [496] = {.lex_state = 228, .external_lex_state = 2}, + [497] = {.lex_state = 221, .external_lex_state = 2}, [498] = {.lex_state = 228, .external_lex_state = 2}, [499] = {.lex_state = 221, .external_lex_state = 2}, [500] = {.lex_state = 231, .external_lex_state = 2}, - [501] = {.lex_state = 221, .external_lex_state = 2}, - [502] = {.lex_state = 231, .external_lex_state = 2}, + [501] = {.lex_state = 228, .external_lex_state = 2}, + [502] = {.lex_state = 221, .external_lex_state = 2}, [503] = {.lex_state = 228, .external_lex_state = 2}, - [504] = {.lex_state = 228, .external_lex_state = 2}, - [505] = {.lex_state = 228, .external_lex_state = 2}, - [506] = {.lex_state = 221, .external_lex_state = 2}, - [507] = {.lex_state = 231, .external_lex_state = 2}, - [508] = {.lex_state = 231, .external_lex_state = 2}, - [509] = {.lex_state = 231, .external_lex_state = 2}, - [510] = {.lex_state = 228, .external_lex_state = 2}, - [511] = {.lex_state = 221, .external_lex_state = 2}, - [512] = {.lex_state = 231, .external_lex_state = 2}, - [513] = {.lex_state = 221, .external_lex_state = 2}, - [514] = {.lex_state = 231, .external_lex_state = 2}, - [515] = {.lex_state = 228, .external_lex_state = 2}, + [504] = {.lex_state = 221, .external_lex_state = 2}, + [505] = {.lex_state = 221, .external_lex_state = 2}, + [506] = {.lex_state = 228, .external_lex_state = 2}, + [507] = {.lex_state = 221, .external_lex_state = 2}, + [508] = {.lex_state = 228, .external_lex_state = 2}, + [509] = {.lex_state = 221, .external_lex_state = 2}, + [510] = {.lex_state = 231, .external_lex_state = 2}, + [511] = {.lex_state = 228, .external_lex_state = 2}, + [512] = {.lex_state = 221, .external_lex_state = 2}, + [513] = {.lex_state = 228, .external_lex_state = 2}, + [514] = {.lex_state = 221, .external_lex_state = 2}, + [515] = {.lex_state = 211, .external_lex_state = 2}, [516] = {.lex_state = 228, .external_lex_state = 2}, [517] = {.lex_state = 221, .external_lex_state = 2}, - [518] = {.lex_state = 231, .external_lex_state = 2}, + [518] = {.lex_state = 228, .external_lex_state = 2}, [519] = {.lex_state = 221, .external_lex_state = 2}, - [520] = {.lex_state = 231, .external_lex_state = 2}, + [520] = {.lex_state = 228, .external_lex_state = 2}, [521] = {.lex_state = 221, .external_lex_state = 2}, [522] = {.lex_state = 231, .external_lex_state = 2}, - [523] = {.lex_state = 221, .external_lex_state = 2}, + [523] = {.lex_state = 231, .external_lex_state = 2}, [524] = {.lex_state = 231, .external_lex_state = 2}, - [525] = {.lex_state = 211, .external_lex_state = 2}, - [526] = {.lex_state = 221, .external_lex_state = 2}, - [527] = {.lex_state = 221, .external_lex_state = 2}, - [528] = {.lex_state = 231, .external_lex_state = 2}, - [529] = {.lex_state = 221, .external_lex_state = 2}, - [530] = {.lex_state = 231, .external_lex_state = 2}, - [531] = {.lex_state = 231, .external_lex_state = 2}, + [525] = {.lex_state = 231, .external_lex_state = 2}, + [526] = {.lex_state = 228, .external_lex_state = 2}, + [527] = {.lex_state = 228, .external_lex_state = 2}, + [528] = {.lex_state = 221, .external_lex_state = 2}, + [529] = {.lex_state = 228, .external_lex_state = 2}, + [530] = {.lex_state = 221, .external_lex_state = 2}, + [531] = {.lex_state = 221, .external_lex_state = 2}, [532] = {.lex_state = 221, .external_lex_state = 2}, - [533] = {.lex_state = 231, .external_lex_state = 2}, + [533] = {.lex_state = 228, .external_lex_state = 2}, [534] = {.lex_state = 221, .external_lex_state = 2}, - [535] = {.lex_state = 231, .external_lex_state = 2}, - [536] = {.lex_state = 221, .external_lex_state = 2}, + [535] = {.lex_state = 228, .external_lex_state = 2}, + [536] = {.lex_state = 228, .external_lex_state = 2}, [537] = {.lex_state = 231, .external_lex_state = 2}, - [538] = {.lex_state = 221, .external_lex_state = 2}, - [539] = {.lex_state = 231, .external_lex_state = 2}, - [540] = {.lex_state = 228, .external_lex_state = 2}, + [538] = {.lex_state = 231, .external_lex_state = 2}, + [539] = {.lex_state = 228, .external_lex_state = 2}, + [540] = {.lex_state = 221, .external_lex_state = 2}, [541] = {.lex_state = 222, .external_lex_state = 2}, [542] = {.lex_state = 222, .external_lex_state = 2}, - [543] = {.lex_state = 222, .external_lex_state = 2}, + [543] = {.lex_state = 225, .external_lex_state = 2}, [544] = {.lex_state = 222, .external_lex_state = 2}, [545] = {.lex_state = 222, .external_lex_state = 2}, - [546] = {.lex_state = 257, .external_lex_state = 2}, + [546] = {.lex_state = 222, .external_lex_state = 2}, [547] = {.lex_state = 222, .external_lex_state = 2}, [548] = {.lex_state = 222, .external_lex_state = 2}, - [549] = {.lex_state = 209, .external_lex_state = 2}, - [550] = {.lex_state = 222, .external_lex_state = 2}, - [551] = {.lex_state = 222, .external_lex_state = 2}, + [549] = {.lex_state = 222, .external_lex_state = 2}, + [550] = {.lex_state = 225, .external_lex_state = 2}, + [551] = {.lex_state = 257, .external_lex_state = 2}, [552] = {.lex_state = 222, .external_lex_state = 2}, - [553] = {.lex_state = 257, .external_lex_state = 2}, - [554] = {.lex_state = 222, .external_lex_state = 2}, + [553] = {.lex_state = 222, .external_lex_state = 2}, + [554] = {.lex_state = 225, .external_lex_state = 2}, [555] = {.lex_state = 222, .external_lex_state = 2}, - [556] = {.lex_state = 225, .external_lex_state = 2}, + [556] = {.lex_state = 222, .external_lex_state = 2}, [557] = {.lex_state = 222, .external_lex_state = 2}, [558] = {.lex_state = 222, .external_lex_state = 2}, - [559] = {.lex_state = 222, .external_lex_state = 2}, + [559] = {.lex_state = 225, .external_lex_state = 2}, [560] = {.lex_state = 222, .external_lex_state = 2}, - [561] = {.lex_state = 225, .external_lex_state = 2}, + [561] = {.lex_state = 222, .external_lex_state = 2}, [562] = {.lex_state = 222, .external_lex_state = 2}, - [563] = {.lex_state = 222, .external_lex_state = 2}, + [563] = {.lex_state = 257, .external_lex_state = 2}, [564] = {.lex_state = 222, .external_lex_state = 2}, - [565] = {.lex_state = 225, .external_lex_state = 2}, - [566] = {.lex_state = 225, .external_lex_state = 2}, + [565] = {.lex_state = 209, .external_lex_state = 2}, + [566] = {.lex_state = 222, .external_lex_state = 2}, [567] = {.lex_state = 222, .external_lex_state = 2}, [568] = {.lex_state = 222, .external_lex_state = 2}, - [569] = {.lex_state = 226, .external_lex_state = 2}, + [569] = {.lex_state = 212, .external_lex_state = 2}, [570] = {.lex_state = 233, .external_lex_state = 2}, - [571] = {.lex_state = 233, .external_lex_state = 2}, - [572] = {.lex_state = 233, .external_lex_state = 2}, - [573] = {.lex_state = 233, .external_lex_state = 2}, - [574] = {.lex_state = 233, .external_lex_state = 2}, - [575] = {.lex_state = 233, .external_lex_state = 2}, - [576] = {.lex_state = 226, .external_lex_state = 2}, - [577] = {.lex_state = 226, .external_lex_state = 2}, - [578] = {.lex_state = 259, .external_lex_state = 2}, - [579] = {.lex_state = 233, .external_lex_state = 2}, + [571] = {.lex_state = 226, .external_lex_state = 2}, + [572] = {.lex_state = 212, .external_lex_state = 2}, + [573] = {.lex_state = 212, .external_lex_state = 2}, + [574] = {.lex_state = 212, .external_lex_state = 2}, + [575] = {.lex_state = 212, .external_lex_state = 2}, + [576] = {.lex_state = 212, .external_lex_state = 2}, + [577] = {.lex_state = 212, .external_lex_state = 2}, + [578] = {.lex_state = 233, .external_lex_state = 2}, + [579] = {.lex_state = 212, .external_lex_state = 2}, [580] = {.lex_state = 212, .external_lex_state = 2}, [581] = {.lex_state = 233, .external_lex_state = 2}, [582] = {.lex_state = 212, .external_lex_state = 2}, [583] = {.lex_state = 212, .external_lex_state = 2}, - [584] = {.lex_state = 212, .external_lex_state = 2}, - [585] = {.lex_state = 212, .external_lex_state = 2}, - [586] = {.lex_state = 226, .external_lex_state = 2}, - [587] = {.lex_state = 212, .external_lex_state = 2}, - [588] = {.lex_state = 212, .external_lex_state = 2}, + [584] = {.lex_state = 226, .external_lex_state = 2}, + [585] = {.lex_state = 259, .external_lex_state = 2}, + [586] = {.lex_state = 212, .external_lex_state = 2}, + [587] = {.lex_state = 226, .external_lex_state = 2}, + [588] = {.lex_state = 226, .external_lex_state = 2}, [589] = {.lex_state = 212, .external_lex_state = 2}, [590] = {.lex_state = 212, .external_lex_state = 2}, [591] = {.lex_state = 212, .external_lex_state = 2}, [592] = {.lex_state = 212, .external_lex_state = 2}, [593] = {.lex_state = 212, .external_lex_state = 2}, - [594] = {.lex_state = 212, .external_lex_state = 2}, + [594] = {.lex_state = 233, .external_lex_state = 2}, [595] = {.lex_state = 212, .external_lex_state = 2}, [596] = {.lex_state = 212, .external_lex_state = 2}, - [597] = {.lex_state = 212, .external_lex_state = 2}, + [597] = {.lex_state = 233, .external_lex_state = 2}, [598] = {.lex_state = 212, .external_lex_state = 2}, [599] = {.lex_state = 212, .external_lex_state = 2}, [600] = {.lex_state = 212, .external_lex_state = 2}, [601] = {.lex_state = 212, .external_lex_state = 2}, [602] = {.lex_state = 212, .external_lex_state = 2}, - [603] = {.lex_state = 212, .external_lex_state = 2}, - [604] = {.lex_state = 212, .external_lex_state = 2}, + [603] = {.lex_state = 233, .external_lex_state = 2}, + [604] = {.lex_state = 226, .external_lex_state = 2}, [605] = {.lex_state = 212, .external_lex_state = 2}, [606] = {.lex_state = 212, .external_lex_state = 2}, [607] = {.lex_state = 212, .external_lex_state = 2}, - [608] = {.lex_state = 212, .external_lex_state = 2}, + [608] = {.lex_state = 226, .external_lex_state = 2}, [609] = {.lex_state = 212, .external_lex_state = 2}, [610] = {.lex_state = 212, .external_lex_state = 2}, [611] = {.lex_state = 212, .external_lex_state = 2}, @@ -35629,35 +35628,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [613] = {.lex_state = 212, .external_lex_state = 2}, [614] = {.lex_state = 212, .external_lex_state = 2}, [615] = {.lex_state = 212, .external_lex_state = 2}, - [616] = {.lex_state = 212, .external_lex_state = 2}, - [617] = {.lex_state = 226, .external_lex_state = 2}, - [618] = {.lex_state = 226, .external_lex_state = 2}, - [619] = {.lex_state = 212, .external_lex_state = 2}, - [620] = {.lex_state = 233, .external_lex_state = 2}, - [621] = {.lex_state = 259, .external_lex_state = 2}, + [616] = {.lex_state = 233, .external_lex_state = 2}, + [617] = {.lex_state = 233, .external_lex_state = 2}, + [618] = {.lex_state = 233, .external_lex_state = 2}, + [619] = {.lex_state = 259, .external_lex_state = 2}, + [620] = {.lex_state = 212, .external_lex_state = 2}, + [621] = {.lex_state = 212, .external_lex_state = 2}, [622] = {.lex_state = 212, .external_lex_state = 2}, [623] = {.lex_state = 259, .external_lex_state = 2}, - [624] = {.lex_state = 259, .external_lex_state = 2}, + [624] = {.lex_state = 228, .external_lex_state = 2}, [625] = {.lex_state = 259, .external_lex_state = 2}, [626] = {.lex_state = 259, .external_lex_state = 2}, - [627] = {.lex_state = 221, .external_lex_state = 2}, - [628] = {.lex_state = 231, .external_lex_state = 2}, + [627] = {.lex_state = 259, .external_lex_state = 2}, + [628] = {.lex_state = 259, .external_lex_state = 2}, [629] = {.lex_state = 259, .external_lex_state = 2}, - [630] = {.lex_state = 228, .external_lex_state = 2}, + [630] = {.lex_state = 259, .external_lex_state = 2}, [631] = {.lex_state = 259, .external_lex_state = 2}, [632] = {.lex_state = 259, .external_lex_state = 2}, [633] = {.lex_state = 259, .external_lex_state = 2}, [634] = {.lex_state = 259, .external_lex_state = 2}, - [635] = {.lex_state = 259, .external_lex_state = 2}, - [636] = {.lex_state = 259, .external_lex_state = 2}, + [635] = {.lex_state = 231, .external_lex_state = 2}, + [636] = {.lex_state = 221, .external_lex_state = 2}, [637] = {.lex_state = 259, .external_lex_state = 2}, [638] = {.lex_state = 259, .external_lex_state = 2}, [639] = {.lex_state = 225, .external_lex_state = 2}, [640] = {.lex_state = 225, .external_lex_state = 2}, - [641] = {.lex_state = 257, .external_lex_state = 2}, + [641] = {.lex_state = 225, .external_lex_state = 2}, [642] = {.lex_state = 225, .external_lex_state = 2}, [643] = {.lex_state = 225, .external_lex_state = 2}, - [644] = {.lex_state = 225, .external_lex_state = 2}, + [644] = {.lex_state = 257, .external_lex_state = 2}, [645] = {.lex_state = 225, .external_lex_state = 2}, [646] = {.lex_state = 225, .external_lex_state = 2}, [647] = {.lex_state = 225, .external_lex_state = 2}, @@ -35666,71 +35665,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [650] = {.lex_state = 225, .external_lex_state = 2}, [651] = {.lex_state = 225, .external_lex_state = 2}, [652] = {.lex_state = 225, .external_lex_state = 2}, - [653] = {.lex_state = 223, .external_lex_state = 2}, - [654] = {.lex_state = 229, .external_lex_state = 2}, - [655] = {.lex_state = 223, .external_lex_state = 2}, - [656] = {.lex_state = 223, .external_lex_state = 2}, - [657] = {.lex_state = 224, .external_lex_state = 2}, - [658] = {.lex_state = 232, .external_lex_state = 2}, - [659] = {.lex_state = 224, .external_lex_state = 2}, - [660] = {.lex_state = 234, .external_lex_state = 2}, + [653] = {.lex_state = 229, .external_lex_state = 2}, + [654] = {.lex_state = 232, .external_lex_state = 2}, + [655] = {.lex_state = 234, .external_lex_state = 2}, + [656] = {.lex_state = 235, .external_lex_state = 2}, + [657] = {.lex_state = 236, .external_lex_state = 2}, + [658] = {.lex_state = 233, .external_lex_state = 2}, + [659] = {.lex_state = 259, .external_lex_state = 2}, + [660] = {.lex_state = 223, .external_lex_state = 2}, [661] = {.lex_state = 224, .external_lex_state = 2}, - [662] = {.lex_state = 224, .external_lex_state = 2}, - [663] = {.lex_state = 259, .external_lex_state = 2}, + [662] = {.lex_state = 229, .external_lex_state = 2}, + [663] = {.lex_state = 229, .external_lex_state = 2}, [664] = {.lex_state = 232, .external_lex_state = 2}, - [665] = {.lex_state = 223, .external_lex_state = 2}, - [666] = {.lex_state = 229, .external_lex_state = 2}, + [665] = {.lex_state = 234, .external_lex_state = 2}, + [666] = {.lex_state = 235, .external_lex_state = 2}, [667] = {.lex_state = 223, .external_lex_state = 2}, [668] = {.lex_state = 224, .external_lex_state = 2}, - [669] = {.lex_state = 234, .external_lex_state = 2}, - [670] = {.lex_state = 224, .external_lex_state = 2}, - [671] = {.lex_state = 235, .external_lex_state = 2}, - [672] = {.lex_state = 229, .external_lex_state = 2}, + [669] = {.lex_state = 237, .external_lex_state = 2}, + [670] = {.lex_state = 237, .external_lex_state = 2}, + [671] = {.lex_state = 229, .external_lex_state = 2}, + [672] = {.lex_state = 234, .external_lex_state = 2}, [673] = {.lex_state = 235, .external_lex_state = 2}, - [674] = {.lex_state = 234, .external_lex_state = 2}, + [674] = {.lex_state = 236, .external_lex_state = 2}, [675] = {.lex_state = 229, .external_lex_state = 2}, - [676] = {.lex_state = 224, .external_lex_state = 2}, - [677] = {.lex_state = 223, .external_lex_state = 2}, - [678] = {.lex_state = 234, .external_lex_state = 2}, - [679] = {.lex_state = 232, .external_lex_state = 2}, - [680] = {.lex_state = 229, .external_lex_state = 2}, - [681] = {.lex_state = 236, .external_lex_state = 2}, - [682] = {.lex_state = 229, .external_lex_state = 2}, + [676] = {.lex_state = 223, .external_lex_state = 2}, + [677] = {.lex_state = 229, .external_lex_state = 2}, + [678] = {.lex_state = 224, .external_lex_state = 2}, + [679] = {.lex_state = 224, .external_lex_state = 2}, + [680] = {.lex_state = 237, .external_lex_state = 2}, + [681] = {.lex_state = 229, .external_lex_state = 2}, + [682] = {.lex_state = 232, .external_lex_state = 2}, [683] = {.lex_state = 237, .external_lex_state = 2}, - [684] = {.lex_state = 236, .external_lex_state = 2}, - [685] = {.lex_state = 223, .external_lex_state = 2}, - [686] = {.lex_state = 232, .external_lex_state = 2}, - [687] = {.lex_state = 236, .external_lex_state = 2}, - [688] = {.lex_state = 223, .external_lex_state = 2}, - [689] = {.lex_state = 229, .external_lex_state = 2}, - [690] = {.lex_state = 232, .external_lex_state = 2}, - [691] = {.lex_state = 236, .external_lex_state = 2}, - [692] = {.lex_state = 224, .external_lex_state = 2}, - [693] = {.lex_state = 229, .external_lex_state = 2}, + [684] = {.lex_state = 235, .external_lex_state = 2}, + [685] = {.lex_state = 235, .external_lex_state = 2}, + [686] = {.lex_state = 223, .external_lex_state = 2}, + [687] = {.lex_state = 223, .external_lex_state = 2}, + [688] = {.lex_state = 224, .external_lex_state = 2}, + [689] = {.lex_state = 224, .external_lex_state = 2}, + [690] = {.lex_state = 237, .external_lex_state = 2}, + [691] = {.lex_state = 223, .external_lex_state = 2}, + [692] = {.lex_state = 223, .external_lex_state = 2}, + [693] = {.lex_state = 224, .external_lex_state = 2}, [694] = {.lex_state = 224, .external_lex_state = 2}, - [695] = {.lex_state = 234, .external_lex_state = 2}, - [696] = {.lex_state = 237, .external_lex_state = 2}, - [697] = {.lex_state = 233, .external_lex_state = 2}, - [698] = {.lex_state = 235, .external_lex_state = 2}, - [699] = {.lex_state = 232, .external_lex_state = 2}, - [700] = {.lex_state = 237, .external_lex_state = 2}, - [701] = {.lex_state = 223, .external_lex_state = 2}, - [702] = {.lex_state = 235, .external_lex_state = 2}, - [703] = {.lex_state = 234, .external_lex_state = 2}, - [704] = {.lex_state = 260, .external_lex_state = 2}, - [705] = {.lex_state = 235, .external_lex_state = 2}, - [706] = {.lex_state = 260, .external_lex_state = 2}, - [707] = {.lex_state = 260, .external_lex_state = 2}, - [708] = {.lex_state = 260, .external_lex_state = 2}, + [695] = {.lex_state = 235, .external_lex_state = 2}, + [696] = {.lex_state = 223, .external_lex_state = 2}, + [697] = {.lex_state = 229, .external_lex_state = 2}, + [698] = {.lex_state = 224, .external_lex_state = 2}, + [699] = {.lex_state = 237, .external_lex_state = 2}, + [700] = {.lex_state = 234, .external_lex_state = 2}, + [701] = {.lex_state = 236, .external_lex_state = 2}, + [702] = {.lex_state = 236, .external_lex_state = 2}, + [703] = {.lex_state = 223, .external_lex_state = 2}, + [704] = {.lex_state = 229, .external_lex_state = 2}, + [705] = {.lex_state = 236, .external_lex_state = 2}, + [706] = {.lex_state = 226, .external_lex_state = 2}, + [707] = {.lex_state = 234, .external_lex_state = 2}, + [708] = {.lex_state = 237, .external_lex_state = 2}, [709] = {.lex_state = 260, .external_lex_state = 2}, [710] = {.lex_state = 260, .external_lex_state = 2}, - [711] = {.lex_state = 236, .external_lex_state = 2}, + [711] = {.lex_state = 260, .external_lex_state = 2}, [712] = {.lex_state = 260, .external_lex_state = 2}, - [713] = {.lex_state = 226, .external_lex_state = 2}, + [713] = {.lex_state = 260, .external_lex_state = 2}, [714] = {.lex_state = 260, .external_lex_state = 2}, - [715] = {.lex_state = 234, .external_lex_state = 2}, + [715] = {.lex_state = 260, .external_lex_state = 2}, [716] = {.lex_state = 260, .external_lex_state = 2}, - [717] = {.lex_state = 232, .external_lex_state = 2}, + [717] = {.lex_state = 260, .external_lex_state = 2}, [718] = {.lex_state = 260, .external_lex_state = 2}, [719] = {.lex_state = 260, .external_lex_state = 2}, [720] = {.lex_state = 260, .external_lex_state = 2}, @@ -35740,71 +35739,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [724] = {.lex_state = 260, .external_lex_state = 2}, [725] = {.lex_state = 260, .external_lex_state = 2}, [726] = {.lex_state = 260, .external_lex_state = 2}, - [727] = {.lex_state = 226, .external_lex_state = 2}, - [728] = {.lex_state = 226, .external_lex_state = 2}, + [727] = {.lex_state = 260, .external_lex_state = 2}, + [728] = {.lex_state = 260, .external_lex_state = 2}, [729] = {.lex_state = 260, .external_lex_state = 2}, [730] = {.lex_state = 260, .external_lex_state = 2}, [731] = {.lex_state = 260, .external_lex_state = 2}, - [732] = {.lex_state = 260, .external_lex_state = 2}, + [732] = {.lex_state = 226, .external_lex_state = 2}, [733] = {.lex_state = 260, .external_lex_state = 2}, [734] = {.lex_state = 260, .external_lex_state = 2}, [735] = {.lex_state = 260, .external_lex_state = 2}, [736] = {.lex_state = 260, .external_lex_state = 2}, [737] = {.lex_state = 260, .external_lex_state = 2}, - [738] = {.lex_state = 260, .external_lex_state = 2}, + [738] = {.lex_state = 226, .external_lex_state = 2}, [739] = {.lex_state = 226, .external_lex_state = 2}, - [740] = {.lex_state = 260, .external_lex_state = 2}, - [741] = {.lex_state = 229, .external_lex_state = 2}, - [742] = {.lex_state = 226, .external_lex_state = 2}, - [743] = {.lex_state = 226, .external_lex_state = 2}, - [744] = {.lex_state = 226, .external_lex_state = 2}, - [745] = {.lex_state = 226, .external_lex_state = 2}, - [746] = {.lex_state = 260, .external_lex_state = 2}, - [747] = {.lex_state = 260, .external_lex_state = 2}, - [748] = {.lex_state = 260, .external_lex_state = 2}, - [749] = {.lex_state = 237, .external_lex_state = 2}, + [740] = {.lex_state = 226, .external_lex_state = 2}, + [741] = {.lex_state = 260, .external_lex_state = 2}, + [742] = {.lex_state = 260, .external_lex_state = 2}, + [743] = {.lex_state = 260, .external_lex_state = 2}, + [744] = {.lex_state = 260, .external_lex_state = 2}, + [745] = {.lex_state = 260, .external_lex_state = 2}, + [746] = {.lex_state = 226, .external_lex_state = 2}, + [747] = {.lex_state = 226, .external_lex_state = 2}, + [748] = {.lex_state = 226, .external_lex_state = 2}, + [749] = {.lex_state = 260, .external_lex_state = 2}, [750] = {.lex_state = 260, .external_lex_state = 2}, [751] = {.lex_state = 260, .external_lex_state = 2}, - [752] = {.lex_state = 260, .external_lex_state = 2}, - [753] = {.lex_state = 260, .external_lex_state = 2}, - [754] = {.lex_state = 260, .external_lex_state = 2}, - [755] = {.lex_state = 226, .external_lex_state = 2}, + [752] = {.lex_state = 226, .external_lex_state = 2}, + [753] = {.lex_state = 232, .external_lex_state = 2}, + [754] = {.lex_state = 235, .external_lex_state = 2}, + [755] = {.lex_state = 260, .external_lex_state = 2}, [756] = {.lex_state = 230, .external_lex_state = 2}, [757] = {.lex_state = 230, .external_lex_state = 2}, [758] = {.lex_state = 230, .external_lex_state = 2}, [759] = {.lex_state = 230, .external_lex_state = 2}, [760] = {.lex_state = 230, .external_lex_state = 2}, [761] = {.lex_state = 208, .external_lex_state = 2}, - [762] = {.lex_state = 238, .external_lex_state = 2}, - [763] = {.lex_state = 220, .external_lex_state = 2}, - [764] = {.lex_state = 219, .external_lex_state = 2}, - [765] = {.lex_state = 227, .external_lex_state = 2}, + [762] = {.lex_state = 219, .external_lex_state = 2}, + [763] = {.lex_state = 227, .external_lex_state = 2}, + [764] = {.lex_state = 220, .external_lex_state = 2}, + [765] = {.lex_state = 238, .external_lex_state = 2}, [766] = {.lex_state = 256, .external_lex_state = 2}, [767] = {.lex_state = 239, .external_lex_state = 2}, - [768] = {.lex_state = 212, .external_lex_state = 3}, + [768] = {.lex_state = 251, .external_lex_state = 2}, [769] = {.lex_state = 212, .external_lex_state = 3}, [770] = {.lex_state = 251, .external_lex_state = 2}, [771] = {.lex_state = 251, .external_lex_state = 2}, - [772] = {.lex_state = 251, .external_lex_state = 2}, - [773] = {.lex_state = 229, .external_lex_state = 2}, - [774] = {.lex_state = 283, .external_lex_state = 2}, - [775] = {.lex_state = 229, .external_lex_state = 2}, + [772] = {.lex_state = 212, .external_lex_state = 3}, + [773] = {.lex_state = 283, .external_lex_state = 2}, + [774] = {.lex_state = 229, .external_lex_state = 2}, + [775] = {.lex_state = 283, .external_lex_state = 2}, [776] = {.lex_state = 229, .external_lex_state = 2}, - [777] = {.lex_state = 284, .external_lex_state = 2}, + [777] = {.lex_state = 229, .external_lex_state = 2}, [778] = {.lex_state = 229, .external_lex_state = 2}, [779] = {.lex_state = 229, .external_lex_state = 2}, [780] = {.lex_state = 229, .external_lex_state = 2}, [781] = {.lex_state = 229, .external_lex_state = 2}, [782] = {.lex_state = 229, .external_lex_state = 2}, - [783] = {.lex_state = 229, .external_lex_state = 2}, - [784] = {.lex_state = 284, .external_lex_state = 2}, - [785] = {.lex_state = 284, .external_lex_state = 2}, - [786] = {.lex_state = 284, .external_lex_state = 2}, - [787] = {.lex_state = 284, .external_lex_state = 2}, - [788] = {.lex_state = 284, .external_lex_state = 2}, - [789] = {.lex_state = 284, .external_lex_state = 2}, - [790] = {.lex_state = 284, .external_lex_state = 2}, - [791] = {.lex_state = 284, .external_lex_state = 2}, + [783] = {.lex_state = 284, .external_lex_state = 2}, + [784] = {.lex_state = 229, .external_lex_state = 2}, + [785] = {.lex_state = 283, .external_lex_state = 2}, + [786] = {.lex_state = 283, .external_lex_state = 2}, + [787] = {.lex_state = 283, .external_lex_state = 2}, + [788] = {.lex_state = 283, .external_lex_state = 2}, + [789] = {.lex_state = 283, .external_lex_state = 2}, + [790] = {.lex_state = 283, .external_lex_state = 2}, + [791] = {.lex_state = 283, .external_lex_state = 2}, [792] = {.lex_state = 229, .external_lex_state = 2}, [793] = {.lex_state = 229, .external_lex_state = 2}, [794] = {.lex_state = 229, .external_lex_state = 2}, @@ -35921,42 +35920,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 207, .external_lex_state = 2}, [906] = {.lex_state = 207, .external_lex_state = 2}, [907] = {.lex_state = 1218, .external_lex_state = 2}, - [908] = {.lex_state = 1218, .external_lex_state = 2}, - [909] = {.lex_state = 255, .external_lex_state = 2}, - [910] = {.lex_state = 255, .external_lex_state = 2}, + [908] = {.lex_state = 255, .external_lex_state = 2}, + [909] = {.lex_state = 1218, .external_lex_state = 2}, + [910] = {.lex_state = 1218, .external_lex_state = 2}, [911] = {.lex_state = 255, .external_lex_state = 2}, [912] = {.lex_state = 255, .external_lex_state = 2}, [913] = {.lex_state = 1218, .external_lex_state = 2}, - [914] = {.lex_state = 255, .external_lex_state = 2}, - [915] = {.lex_state = 255, .external_lex_state = 2}, + [914] = {.lex_state = 262, .external_lex_state = 4}, + [915] = {.lex_state = 1218, .external_lex_state = 2}, [916] = {.lex_state = 255, .external_lex_state = 2}, - [917] = {.lex_state = 255, .external_lex_state = 2}, + [917] = {.lex_state = 1218, .external_lex_state = 2}, [918] = {.lex_state = 255, .external_lex_state = 2}, - [919] = {.lex_state = 255, .external_lex_state = 2}, - [920] = {.lex_state = 1218, .external_lex_state = 2}, - [921] = {.lex_state = 1218, .external_lex_state = 2}, - [922] = {.lex_state = 255, .external_lex_state = 2}, - [923] = {.lex_state = 1218, .external_lex_state = 2}, + [919] = {.lex_state = 262, .external_lex_state = 4}, + [920] = {.lex_state = 255, .external_lex_state = 2}, + [921] = {.lex_state = 255, .external_lex_state = 2}, + [922] = {.lex_state = 1218, .external_lex_state = 2}, + [923] = {.lex_state = 255, .external_lex_state = 2}, [924] = {.lex_state = 255, .external_lex_state = 2}, - [925] = {.lex_state = 262, .external_lex_state = 4}, - [926] = {.lex_state = 1218, .external_lex_state = 2}, + [925] = {.lex_state = 1218, .external_lex_state = 2}, + [926] = {.lex_state = 255, .external_lex_state = 2}, [927] = {.lex_state = 1218, .external_lex_state = 2}, [928] = {.lex_state = 1218, .external_lex_state = 2}, - [929] = {.lex_state = 1218, .external_lex_state = 2}, - [930] = {.lex_state = 262, .external_lex_state = 4}, - [931] = {.lex_state = 1218, .external_lex_state = 2}, - [932] = {.lex_state = 255, .external_lex_state = 2}, + [929] = {.lex_state = 255, .external_lex_state = 2}, + [930] = {.lex_state = 255, .external_lex_state = 2}, + [931] = {.lex_state = 255, .external_lex_state = 2}, + [932] = {.lex_state = 1218, .external_lex_state = 2}, [933] = {.lex_state = 1218, .external_lex_state = 2}, - [934] = {.lex_state = 262, .external_lex_state = 4}, + [934] = {.lex_state = 1218, .external_lex_state = 2}, [935] = {.lex_state = 1218, .external_lex_state = 2}, [936] = {.lex_state = 255, .external_lex_state = 2}, - [937] = {.lex_state = 255, .external_lex_state = 2}, + [937] = {.lex_state = 262, .external_lex_state = 4}, [938] = {.lex_state = 255, .external_lex_state = 2}, - [939] = {.lex_state = 1218, .external_lex_state = 2}, + [939] = {.lex_state = 255, .external_lex_state = 2}, [940] = {.lex_state = 255, .external_lex_state = 2}, [941] = {.lex_state = 255, .external_lex_state = 2}, - [942] = {.lex_state = 1218, .external_lex_state = 2}, - [943] = {.lex_state = 255, .external_lex_state = 2}, + [942] = {.lex_state = 255, .external_lex_state = 2}, + [943] = {.lex_state = 1218, .external_lex_state = 2}, [944] = {.lex_state = 255, .external_lex_state = 2}, [945] = {.lex_state = 255, .external_lex_state = 2}, [946] = {.lex_state = 255, .external_lex_state = 2}, @@ -35972,65 +35971,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [956] = {.lex_state = 255, .external_lex_state = 2}, [957] = {.lex_state = 255, .external_lex_state = 2}, [958] = {.lex_state = 255, .external_lex_state = 2}, - [959] = {.lex_state = 1218, .external_lex_state = 2}, - [960] = {.lex_state = 1218, .external_lex_state = 2}, + [959] = {.lex_state = 255, .external_lex_state = 2}, + [960] = {.lex_state = 255, .external_lex_state = 2}, [961] = {.lex_state = 255, .external_lex_state = 2}, - [962] = {.lex_state = 1218, .external_lex_state = 2}, - [963] = {.lex_state = 262, .external_lex_state = 4}, - [964] = {.lex_state = 262, .external_lex_state = 4}, - [965] = {.lex_state = 262, .external_lex_state = 4}, - [966] = {.lex_state = 1218, .external_lex_state = 2}, - [967] = {.lex_state = 1218, .external_lex_state = 2}, - [968] = {.lex_state = 1218, .external_lex_state = 2}, + [962] = {.lex_state = 255, .external_lex_state = 2}, + [963] = {.lex_state = 255, .external_lex_state = 2}, + [964] = {.lex_state = 255, .external_lex_state = 2}, + [965] = {.lex_state = 255, .external_lex_state = 2}, + [966] = {.lex_state = 255, .external_lex_state = 2}, + [967] = {.lex_state = 255, .external_lex_state = 2}, + [968] = {.lex_state = 255, .external_lex_state = 2}, [969] = {.lex_state = 1218, .external_lex_state = 2}, [970] = {.lex_state = 1218, .external_lex_state = 2}, [971] = {.lex_state = 1218, .external_lex_state = 2}, - [972] = {.lex_state = 1218, .external_lex_state = 2}, - [973] = {.lex_state = 1218, .external_lex_state = 2}, - [974] = {.lex_state = 1218, .external_lex_state = 2}, - [975] = {.lex_state = 1218, .external_lex_state = 2}, + [972] = {.lex_state = 255, .external_lex_state = 2}, + [973] = {.lex_state = 255, .external_lex_state = 2}, + [974] = {.lex_state = 255, .external_lex_state = 2}, + [975] = {.lex_state = 255, .external_lex_state = 2}, [976] = {.lex_state = 255, .external_lex_state = 2}, - [977] = {.lex_state = 262, .external_lex_state = 4}, - [978] = {.lex_state = 262, .external_lex_state = 4}, - [979] = {.lex_state = 262, .external_lex_state = 4}, - [980] = {.lex_state = 1218, .external_lex_state = 2}, - [981] = {.lex_state = 1218, .external_lex_state = 2}, - [982] = {.lex_state = 262, .external_lex_state = 4}, - [983] = {.lex_state = 262, .external_lex_state = 4}, - [984] = {.lex_state = 262, .external_lex_state = 4}, - [985] = {.lex_state = 1218, .external_lex_state = 2}, - [986] = {.lex_state = 1218, .external_lex_state = 2}, - [987] = {.lex_state = 262, .external_lex_state = 4}, + [977] = {.lex_state = 255, .external_lex_state = 2}, + [978] = {.lex_state = 1218, .external_lex_state = 2}, + [979] = {.lex_state = 255, .external_lex_state = 2}, + [980] = {.lex_state = 255, .external_lex_state = 2}, + [981] = {.lex_state = 255, .external_lex_state = 2}, + [982] = {.lex_state = 255, .external_lex_state = 2}, + [983] = {.lex_state = 255, .external_lex_state = 2}, + [984] = {.lex_state = 255, .external_lex_state = 2}, + [985] = {.lex_state = 255, .external_lex_state = 2}, + [986] = {.lex_state = 255, .external_lex_state = 2}, + [987] = {.lex_state = 255, .external_lex_state = 2}, [988] = {.lex_state = 1218, .external_lex_state = 2}, [989] = {.lex_state = 1218, .external_lex_state = 2}, [990] = {.lex_state = 1218, .external_lex_state = 2}, [991] = {.lex_state = 1218, .external_lex_state = 2}, [992] = {.lex_state = 1218, .external_lex_state = 2}, - [993] = {.lex_state = 1218, .external_lex_state = 2}, - [994] = {.lex_state = 1218, .external_lex_state = 2}, - [995] = {.lex_state = 1218, .external_lex_state = 2}, - [996] = {.lex_state = 262, .external_lex_state = 4}, - [997] = {.lex_state = 1218, .external_lex_state = 2}, - [998] = {.lex_state = 255, .external_lex_state = 2}, - [999] = {.lex_state = 255, .external_lex_state = 2}, - [1000] = {.lex_state = 262, .external_lex_state = 4}, + [993] = {.lex_state = 255, .external_lex_state = 2}, + [994] = {.lex_state = 255, .external_lex_state = 2}, + [995] = {.lex_state = 255, .external_lex_state = 2}, + [996] = {.lex_state = 1218, .external_lex_state = 2}, + [997] = {.lex_state = 262, .external_lex_state = 4}, + [998] = {.lex_state = 262, .external_lex_state = 4}, + [999] = {.lex_state = 262, .external_lex_state = 4}, + [1000] = {.lex_state = 1218, .external_lex_state = 2}, [1001] = {.lex_state = 1218, .external_lex_state = 2}, [1002] = {.lex_state = 1218, .external_lex_state = 2}, [1003] = {.lex_state = 262, .external_lex_state = 4}, - [1004] = {.lex_state = 1218, .external_lex_state = 2}, - [1005] = {.lex_state = 1218, .external_lex_state = 2}, - [1006] = {.lex_state = 1218, .external_lex_state = 2}, - [1007] = {.lex_state = 255, .external_lex_state = 2}, - [1008] = {.lex_state = 1218, .external_lex_state = 2}, - [1009] = {.lex_state = 255, .external_lex_state = 2}, + [1004] = {.lex_state = 262, .external_lex_state = 4}, + [1005] = {.lex_state = 262, .external_lex_state = 4}, + [1006] = {.lex_state = 262, .external_lex_state = 4}, + [1007] = {.lex_state = 262, .external_lex_state = 4}, + [1008] = {.lex_state = 262, .external_lex_state = 4}, + [1009] = {.lex_state = 262, .external_lex_state = 4}, [1010] = {.lex_state = 1218, .external_lex_state = 2}, - [1011] = {.lex_state = 1218, .external_lex_state = 2}, - [1012] = {.lex_state = 1218, .external_lex_state = 2}, - [1013] = {.lex_state = 1218, .external_lex_state = 2}, + [1011] = {.lex_state = 262, .external_lex_state = 4}, + [1012] = {.lex_state = 262, .external_lex_state = 4}, + [1013] = {.lex_state = 262, .external_lex_state = 4}, [1014] = {.lex_state = 262, .external_lex_state = 4}, - [1015] = {.lex_state = 262, .external_lex_state = 4}, + [1015] = {.lex_state = 1218, .external_lex_state = 2}, [1016] = {.lex_state = 1218, .external_lex_state = 2}, - [1017] = {.lex_state = 262, .external_lex_state = 4}, + [1017] = {.lex_state = 1218, .external_lex_state = 2}, [1018] = {.lex_state = 1218, .external_lex_state = 2}, [1019] = {.lex_state = 1218, .external_lex_state = 2}, [1020] = {.lex_state = 1218, .external_lex_state = 2}, @@ -36042,55 +36041,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1026] = {.lex_state = 1218, .external_lex_state = 2}, [1027] = {.lex_state = 1218, .external_lex_state = 2}, [1028] = {.lex_state = 1218, .external_lex_state = 2}, - [1029] = {.lex_state = 262, .external_lex_state = 4}, - [1030] = {.lex_state = 262, .external_lex_state = 4}, - [1031] = {.lex_state = 262, .external_lex_state = 4}, + [1029] = {.lex_state = 255, .external_lex_state = 2}, + [1030] = {.lex_state = 1218, .external_lex_state = 2}, + [1031] = {.lex_state = 255, .external_lex_state = 2}, [1032] = {.lex_state = 1218, .external_lex_state = 2}, - [1033] = {.lex_state = 1218, .external_lex_state = 2}, + [1033] = {.lex_state = 255, .external_lex_state = 2}, [1034] = {.lex_state = 1218, .external_lex_state = 2}, - [1035] = {.lex_state = 262, .external_lex_state = 4}, + [1035] = {.lex_state = 1218, .external_lex_state = 2}, [1036] = {.lex_state = 1218, .external_lex_state = 2}, [1037] = {.lex_state = 1218, .external_lex_state = 2}, [1038] = {.lex_state = 1218, .external_lex_state = 2}, [1039] = {.lex_state = 1218, .external_lex_state = 2}, - [1040] = {.lex_state = 1218, .external_lex_state = 2}, - [1041] = {.lex_state = 1218, .external_lex_state = 2}, - [1042] = {.lex_state = 262, .external_lex_state = 4}, - [1043] = {.lex_state = 1218, .external_lex_state = 2}, + [1040] = {.lex_state = 255, .external_lex_state = 2}, + [1041] = {.lex_state = 255, .external_lex_state = 2}, + [1042] = {.lex_state = 255, .external_lex_state = 2}, + [1043] = {.lex_state = 255, .external_lex_state = 2}, [1044] = {.lex_state = 255, .external_lex_state = 2}, - [1045] = {.lex_state = 1218, .external_lex_state = 2}, - [1046] = {.lex_state = 255, .external_lex_state = 2}, - [1047] = {.lex_state = 255, .external_lex_state = 2}, - [1048] = {.lex_state = 255, .external_lex_state = 2}, + [1045] = {.lex_state = 262, .external_lex_state = 4}, + [1046] = {.lex_state = 262, .external_lex_state = 4}, + [1047] = {.lex_state = 262, .external_lex_state = 4}, + [1048] = {.lex_state = 1218, .external_lex_state = 2}, [1049] = {.lex_state = 1218, .external_lex_state = 2}, - [1050] = {.lex_state = 1218, .external_lex_state = 2}, - [1051] = {.lex_state = 255, .external_lex_state = 2}, - [1052] = {.lex_state = 255, .external_lex_state = 2}, - [1053] = {.lex_state = 255, .external_lex_state = 2}, + [1050] = {.lex_state = 255, .external_lex_state = 2}, + [1051] = {.lex_state = 1218, .external_lex_state = 2}, + [1052] = {.lex_state = 1218, .external_lex_state = 2}, + [1053] = {.lex_state = 1218, .external_lex_state = 2}, [1054] = {.lex_state = 1218, .external_lex_state = 2}, [1055] = {.lex_state = 255, .external_lex_state = 2}, [1056] = {.lex_state = 1218, .external_lex_state = 2}, - [1057] = {.lex_state = 255, .external_lex_state = 2}, - [1058] = {.lex_state = 255, .external_lex_state = 2}, - [1059] = {.lex_state = 255, .external_lex_state = 2}, - [1060] = {.lex_state = 255, .external_lex_state = 2}, + [1057] = {.lex_state = 1218, .external_lex_state = 2}, + [1058] = {.lex_state = 1218, .external_lex_state = 2}, + [1059] = {.lex_state = 1218, .external_lex_state = 2}, + [1060] = {.lex_state = 262, .external_lex_state = 4}, [1061] = {.lex_state = 1218, .external_lex_state = 2}, - [1062] = {.lex_state = 255, .external_lex_state = 2}, + [1062] = {.lex_state = 1218, .external_lex_state = 2}, [1063] = {.lex_state = 255, .external_lex_state = 2}, - [1064] = {.lex_state = 255, .external_lex_state = 2}, - [1065] = {.lex_state = 255, .external_lex_state = 2}, + [1064] = {.lex_state = 1218, .external_lex_state = 2}, + [1065] = {.lex_state = 1218, .external_lex_state = 2}, [1066] = {.lex_state = 255, .external_lex_state = 2}, [1067] = {.lex_state = 255, .external_lex_state = 2}, [1068] = {.lex_state = 255, .external_lex_state = 2}, - [1069] = {.lex_state = 255, .external_lex_state = 2}, - [1070] = {.lex_state = 255, .external_lex_state = 2}, - [1071] = {.lex_state = 255, .external_lex_state = 2}, + [1069] = {.lex_state = 1218, .external_lex_state = 2}, + [1070] = {.lex_state = 1218, .external_lex_state = 2}, + [1071] = {.lex_state = 1218, .external_lex_state = 2}, [1072] = {.lex_state = 255, .external_lex_state = 2}, [1073] = {.lex_state = 1218, .external_lex_state = 2}, - [1074] = {.lex_state = 255, .external_lex_state = 2}, - [1075] = {.lex_state = 255, .external_lex_state = 2}, + [1074] = {.lex_state = 1218, .external_lex_state = 2}, + [1075] = {.lex_state = 1218, .external_lex_state = 2}, [1076] = {.lex_state = 255, .external_lex_state = 2}, - [1077] = {.lex_state = 255, .external_lex_state = 2}, + [1077] = {.lex_state = 1218, .external_lex_state = 2}, [1078] = {.lex_state = 255, .external_lex_state = 2}, [1079] = {.lex_state = 255, .external_lex_state = 2}, [1080] = {.lex_state = 255, .external_lex_state = 2}, @@ -36099,39 +36098,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1083] = {.lex_state = 255, .external_lex_state = 2}, [1084] = {.lex_state = 255, .external_lex_state = 2}, [1085] = {.lex_state = 255, .external_lex_state = 2}, - [1086] = {.lex_state = 255, .external_lex_state = 2}, - [1087] = {.lex_state = 255, .external_lex_state = 2}, + [1086] = {.lex_state = 1218, .external_lex_state = 2}, + [1087] = {.lex_state = 1218, .external_lex_state = 2}, [1088] = {.lex_state = 255, .external_lex_state = 2}, - [1089] = {.lex_state = 255, .external_lex_state = 2}, - [1090] = {.lex_state = 255, .external_lex_state = 2}, - [1091] = {.lex_state = 255, .external_lex_state = 2}, - [1092] = {.lex_state = 255, .external_lex_state = 2}, - [1093] = {.lex_state = 255, .external_lex_state = 2}, - [1094] = {.lex_state = 255, .external_lex_state = 2}, - [1095] = {.lex_state = 255, .external_lex_state = 2}, - [1096] = {.lex_state = 255, .external_lex_state = 2}, - [1097] = {.lex_state = 255, .external_lex_state = 2}, + [1089] = {.lex_state = 262, .external_lex_state = 4}, + [1090] = {.lex_state = 1218, .external_lex_state = 2}, + [1091] = {.lex_state = 262, .external_lex_state = 4}, + [1092] = {.lex_state = 262, .external_lex_state = 4}, + [1093] = {.lex_state = 1218, .external_lex_state = 2}, + [1094] = {.lex_state = 1218, .external_lex_state = 2}, + [1095] = {.lex_state = 1218, .external_lex_state = 2}, + [1096] = {.lex_state = 1218, .external_lex_state = 2}, + [1097] = {.lex_state = 1218, .external_lex_state = 2}, [1098] = {.lex_state = 255, .external_lex_state = 2}, [1099] = {.lex_state = 215, .external_lex_state = 4}, [1100] = {.lex_state = 215, .external_lex_state = 4}, [1101] = {.lex_state = 241, .external_lex_state = 4}, - [1102] = {.lex_state = 215, .external_lex_state = 4}, - [1103] = {.lex_state = 241, .external_lex_state = 4}, - [1104] = {.lex_state = 215, .external_lex_state = 4}, + [1102] = {.lex_state = 241, .external_lex_state = 4}, + [1103] = {.lex_state = 215, .external_lex_state = 4}, + [1104] = {.lex_state = 241, .external_lex_state = 4}, [1105] = {.lex_state = 241, .external_lex_state = 4}, - [1106] = {.lex_state = 241, .external_lex_state = 4}, - [1107] = {.lex_state = 215, .external_lex_state = 4}, + [1106] = {.lex_state = 215, .external_lex_state = 4}, + [1107] = {.lex_state = 241, .external_lex_state = 4}, [1108] = {.lex_state = 215, .external_lex_state = 4}, [1109] = {.lex_state = 241, .external_lex_state = 4}, - [1110] = {.lex_state = 241, .external_lex_state = 4}, + [1110] = {.lex_state = 215, .external_lex_state = 4}, [1111] = {.lex_state = 210, .external_lex_state = 2}, - [1112] = {.lex_state = 210, .external_lex_state = 2}, + [1112] = {.lex_state = 241, .external_lex_state = 4}, [1113] = {.lex_state = 210, .external_lex_state = 2}, [1114] = {.lex_state = 210, .external_lex_state = 2}, [1115] = {.lex_state = 210, .external_lex_state = 2}, - [1116] = {.lex_state = 241, .external_lex_state = 4}, - [1117] = {.lex_state = 215, .external_lex_state = 4}, - [1118] = {.lex_state = 210, .external_lex_state = 2}, + [1116] = {.lex_state = 210, .external_lex_state = 2}, + [1117] = {.lex_state = 210, .external_lex_state = 2}, + [1118] = {.lex_state = 215, .external_lex_state = 4}, [1119] = {.lex_state = 210, .external_lex_state = 2}, [1120] = {.lex_state = 210, .external_lex_state = 2}, [1121] = {.lex_state = 210, .external_lex_state = 2}, @@ -36139,39 +36138,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1123] = {.lex_state = 210, .external_lex_state = 2}, [1124] = {.lex_state = 210, .external_lex_state = 2}, [1125] = {.lex_state = 210, .external_lex_state = 2}, - [1126] = {.lex_state = 262, .external_lex_state = 4}, + [1126] = {.lex_state = 210, .external_lex_state = 2}, [1127] = {.lex_state = 210, .external_lex_state = 2}, [1128] = {.lex_state = 208, .external_lex_state = 2}, - [1129] = {.lex_state = 210, .external_lex_state = 2}, - [1130] = {.lex_state = 210, .external_lex_state = 2}, - [1131] = {.lex_state = 210, .external_lex_state = 2}, - [1132] = {.lex_state = 208, .external_lex_state = 2}, + [1129] = {.lex_state = 208, .external_lex_state = 2}, + [1130] = {.lex_state = 208, .external_lex_state = 2}, + [1131] = {.lex_state = 208, .external_lex_state = 2}, + [1132] = {.lex_state = 210, .external_lex_state = 2}, [1133] = {.lex_state = 210, .external_lex_state = 2}, - [1134] = {.lex_state = 208, .external_lex_state = 2}, + [1134] = {.lex_state = 210, .external_lex_state = 2}, [1135] = {.lex_state = 210, .external_lex_state = 2}, [1136] = {.lex_state = 210, .external_lex_state = 2}, - [1137] = {.lex_state = 208, .external_lex_state = 2}, + [1137] = {.lex_state = 210, .external_lex_state = 2}, [1138] = {.lex_state = 210, .external_lex_state = 2}, - [1139] = {.lex_state = 210, .external_lex_state = 2}, + [1139] = {.lex_state = 262, .external_lex_state = 4}, [1140] = {.lex_state = 210, .external_lex_state = 2}, [1141] = {.lex_state = 210, .external_lex_state = 2}, [1142] = {.lex_state = 210, .external_lex_state = 2}, [1143] = {.lex_state = 210, .external_lex_state = 2}, [1144] = {.lex_state = 210, .external_lex_state = 2}, - [1145] = {.lex_state = 210, .external_lex_state = 2}, + [1145] = {.lex_state = 208, .external_lex_state = 2}, [1146] = {.lex_state = 210, .external_lex_state = 2}, [1147] = {.lex_state = 210, .external_lex_state = 2}, [1148] = {.lex_state = 210, .external_lex_state = 2}, - [1149] = {.lex_state = 208, .external_lex_state = 2}, + [1149] = {.lex_state = 210, .external_lex_state = 2}, [1150] = {.lex_state = 210, .external_lex_state = 2}, - [1151] = {.lex_state = 263, .external_lex_state = 4}, + [1151] = {.lex_state = 208, .external_lex_state = 2}, [1152] = {.lex_state = 208, .external_lex_state = 2}, [1153] = {.lex_state = 208, .external_lex_state = 2}, [1154] = {.lex_state = 208, .external_lex_state = 2}, [1155] = {.lex_state = 208, .external_lex_state = 2}, [1156] = {.lex_state = 208, .external_lex_state = 2}, [1157] = {.lex_state = 208, .external_lex_state = 2}, - [1158] = {.lex_state = 208, .external_lex_state = 2}, + [1158] = {.lex_state = 263, .external_lex_state = 4}, [1159] = {.lex_state = 208, .external_lex_state = 2}, [1160] = {.lex_state = 208, .external_lex_state = 2}, [1161] = {.lex_state = 208, .external_lex_state = 2}, @@ -36206,424 +36205,424 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1190] = {.lex_state = 258, .external_lex_state = 2}, [1191] = {.lex_state = 258, .external_lex_state = 2}, [1192] = {.lex_state = 258, .external_lex_state = 2}, - [1193] = {.lex_state = 258, .external_lex_state = 2}, - [1194] = {.lex_state = 219, .external_lex_state = 2}, - [1195] = {.lex_state = 220, .external_lex_state = 2}, - [1196] = {.lex_state = 219, .external_lex_state = 2}, - [1197] = {.lex_state = 219, .external_lex_state = 2}, + [1193] = {.lex_state = 220, .external_lex_state = 2}, + [1194] = {.lex_state = 258, .external_lex_state = 2}, + [1195] = {.lex_state = 227, .external_lex_state = 2}, + [1196] = {.lex_state = 238, .external_lex_state = 2}, + [1197] = {.lex_state = 238, .external_lex_state = 2}, [1198] = {.lex_state = 227, .external_lex_state = 2}, - [1199] = {.lex_state = 258, .external_lex_state = 2}, - [1200] = {.lex_state = 238, .external_lex_state = 2}, + [1199] = {.lex_state = 238, .external_lex_state = 2}, + [1200] = {.lex_state = 263, .external_lex_state = 4}, [1201] = {.lex_state = 258, .external_lex_state = 2}, [1202] = {.lex_state = 227, .external_lex_state = 2}, [1203] = {.lex_state = 227, .external_lex_state = 2}, - [1204] = {.lex_state = 219, .external_lex_state = 2}, - [1205] = {.lex_state = 220, .external_lex_state = 2}, - [1206] = {.lex_state = 219, .external_lex_state = 2}, - [1207] = {.lex_state = 238, .external_lex_state = 2}, - [1208] = {.lex_state = 220, .external_lex_state = 2}, + [1204] = {.lex_state = 238, .external_lex_state = 2}, + [1205] = {.lex_state = 238, .external_lex_state = 2}, + [1206] = {.lex_state = 220, .external_lex_state = 2}, + [1207] = {.lex_state = 219, .external_lex_state = 2}, + [1208] = {.lex_state = 219, .external_lex_state = 2}, [1209] = {.lex_state = 258, .external_lex_state = 2}, - [1210] = {.lex_state = 219, .external_lex_state = 2}, - [1211] = {.lex_state = 238, .external_lex_state = 2}, - [1212] = {.lex_state = 258, .external_lex_state = 2}, + [1210] = {.lex_state = 258, .external_lex_state = 2}, + [1211] = {.lex_state = 220, .external_lex_state = 2}, + [1212] = {.lex_state = 220, .external_lex_state = 2}, [1213] = {.lex_state = 238, .external_lex_state = 2}, - [1214] = {.lex_state = 220, .external_lex_state = 2}, - [1215] = {.lex_state = 220, .external_lex_state = 2}, - [1216] = {.lex_state = 227, .external_lex_state = 2}, + [1214] = {.lex_state = 258, .external_lex_state = 2}, + [1215] = {.lex_state = 258, .external_lex_state = 2}, + [1216] = {.lex_state = 258, .external_lex_state = 2}, [1217] = {.lex_state = 238, .external_lex_state = 2}, - [1218] = {.lex_state = 227, .external_lex_state = 2}, - [1219] = {.lex_state = 219, .external_lex_state = 2}, - [1220] = {.lex_state = 220, .external_lex_state = 2}, - [1221] = {.lex_state = 220, .external_lex_state = 2}, - [1222] = {.lex_state = 238, .external_lex_state = 2}, - [1223] = {.lex_state = 238, .external_lex_state = 2}, + [1218] = {.lex_state = 258, .external_lex_state = 2}, + [1219] = {.lex_state = 238, .external_lex_state = 2}, + [1220] = {.lex_state = 258, .external_lex_state = 2}, + [1221] = {.lex_state = 238, .external_lex_state = 2}, + [1222] = {.lex_state = 258, .external_lex_state = 2}, + [1223] = {.lex_state = 258, .external_lex_state = 2}, [1224] = {.lex_state = 238, .external_lex_state = 2}, - [1225] = {.lex_state = 227, .external_lex_state = 2}, - [1226] = {.lex_state = 238, .external_lex_state = 2}, - [1227] = {.lex_state = 238, .external_lex_state = 2}, - [1228] = {.lex_state = 227, .external_lex_state = 2}, + [1225] = {.lex_state = 238, .external_lex_state = 2}, + [1226] = {.lex_state = 258, .external_lex_state = 2}, + [1227] = {.lex_state = 227, .external_lex_state = 2}, + [1228] = {.lex_state = 258, .external_lex_state = 2}, [1229] = {.lex_state = 227, .external_lex_state = 2}, - [1230] = {.lex_state = 220, .external_lex_state = 2}, - [1231] = {.lex_state = 227, .external_lex_state = 2}, - [1232] = {.lex_state = 220, .external_lex_state = 2}, - [1233] = {.lex_state = 238, .external_lex_state = 2}, + [1230] = {.lex_state = 227, .external_lex_state = 2}, + [1231] = {.lex_state = 258, .external_lex_state = 2}, + [1232] = {.lex_state = 258, .external_lex_state = 2}, + [1233] = {.lex_state = 220, .external_lex_state = 2}, [1234] = {.lex_state = 219, .external_lex_state = 2}, - [1235] = {.lex_state = 258, .external_lex_state = 2}, - [1236] = {.lex_state = 219, .external_lex_state = 2}, + [1235] = {.lex_state = 220, .external_lex_state = 2}, + [1236] = {.lex_state = 227, .external_lex_state = 2}, [1237] = {.lex_state = 219, .external_lex_state = 2}, - [1238] = {.lex_state = 258, .external_lex_state = 2}, - [1239] = {.lex_state = 220, .external_lex_state = 2}, - [1240] = {.lex_state = 220, .external_lex_state = 2}, - [1241] = {.lex_state = 258, .external_lex_state = 2}, - [1242] = {.lex_state = 258, .external_lex_state = 2}, + [1238] = {.lex_state = 238, .external_lex_state = 2}, + [1239] = {.lex_state = 238, .external_lex_state = 2}, + [1240] = {.lex_state = 238, .external_lex_state = 2}, + [1241] = {.lex_state = 227, .external_lex_state = 2}, + [1242] = {.lex_state = 227, .external_lex_state = 2}, [1243] = {.lex_state = 258, .external_lex_state = 2}, - [1244] = {.lex_state = 219, .external_lex_state = 2}, - [1245] = {.lex_state = 227, .external_lex_state = 2}, - [1246] = {.lex_state = 219, .external_lex_state = 2}, - [1247] = {.lex_state = 227, .external_lex_state = 2}, - [1248] = {.lex_state = 227, .external_lex_state = 2}, - [1249] = {.lex_state = 220, .external_lex_state = 2}, - [1250] = {.lex_state = 220, .external_lex_state = 2}, - [1251] = {.lex_state = 238, .external_lex_state = 2}, + [1244] = {.lex_state = 238, .external_lex_state = 2}, + [1245] = {.lex_state = 238, .external_lex_state = 2}, + [1246] = {.lex_state = 238, .external_lex_state = 2}, + [1247] = {.lex_state = 220, .external_lex_state = 2}, + [1248] = {.lex_state = 220, .external_lex_state = 2}, + [1249] = {.lex_state = 227, .external_lex_state = 2}, + [1250] = {.lex_state = 227, .external_lex_state = 2}, + [1251] = {.lex_state = 227, .external_lex_state = 2}, [1252] = {.lex_state = 220, .external_lex_state = 2}, - [1253] = {.lex_state = 238, .external_lex_state = 2}, - [1254] = {.lex_state = 219, .external_lex_state = 2}, - [1255] = {.lex_state = 220, .external_lex_state = 2}, - [1256] = {.lex_state = 220, .external_lex_state = 2}, + [1253] = {.lex_state = 219, .external_lex_state = 2}, + [1254] = {.lex_state = 227, .external_lex_state = 2}, + [1255] = {.lex_state = 219, .external_lex_state = 2}, + [1256] = {.lex_state = 238, .external_lex_state = 2}, [1257] = {.lex_state = 238, .external_lex_state = 2}, [1258] = {.lex_state = 227, .external_lex_state = 2}, - [1259] = {.lex_state = 219, .external_lex_state = 2}, - [1260] = {.lex_state = 219, .external_lex_state = 2}, - [1261] = {.lex_state = 258, .external_lex_state = 2}, - [1262] = {.lex_state = 219, .external_lex_state = 2}, - [1263] = {.lex_state = 238, .external_lex_state = 2}, - [1264] = {.lex_state = 238, .external_lex_state = 2}, - [1265] = {.lex_state = 219, .external_lex_state = 2}, + [1259] = {.lex_state = 238, .external_lex_state = 2}, + [1260] = {.lex_state = 258, .external_lex_state = 2}, + [1261] = {.lex_state = 238, .external_lex_state = 2}, + [1262] = {.lex_state = 227, .external_lex_state = 2}, + [1263] = {.lex_state = 258, .external_lex_state = 2}, + [1264] = {.lex_state = 258, .external_lex_state = 2}, + [1265] = {.lex_state = 227, .external_lex_state = 2}, [1266] = {.lex_state = 238, .external_lex_state = 2}, - [1267] = {.lex_state = 238, .external_lex_state = 2}, - [1268] = {.lex_state = 220, .external_lex_state = 2}, + [1267] = {.lex_state = 219, .external_lex_state = 2}, + [1268] = {.lex_state = 258, .external_lex_state = 2}, [1269] = {.lex_state = 220, .external_lex_state = 2}, - [1270] = {.lex_state = 219, .external_lex_state = 2}, - [1271] = {.lex_state = 227, .external_lex_state = 2}, - [1272] = {.lex_state = 220, .external_lex_state = 2}, - [1273] = {.lex_state = 220, .external_lex_state = 2}, - [1274] = {.lex_state = 227, .external_lex_state = 2}, - [1275] = {.lex_state = 238, .external_lex_state = 2}, - [1276] = {.lex_state = 258, .external_lex_state = 2}, - [1277] = {.lex_state = 258, .external_lex_state = 2}, - [1278] = {.lex_state = 238, .external_lex_state = 2}, - [1279] = {.lex_state = 227, .external_lex_state = 2}, - [1280] = {.lex_state = 220, .external_lex_state = 2}, - [1281] = {.lex_state = 219, .external_lex_state = 2}, - [1282] = {.lex_state = 258, .external_lex_state = 2}, - [1283] = {.lex_state = 219, .external_lex_state = 2}, - [1284] = {.lex_state = 238, .external_lex_state = 2}, + [1270] = {.lex_state = 220, .external_lex_state = 2}, + [1271] = {.lex_state = 258, .external_lex_state = 2}, + [1272] = {.lex_state = 227, .external_lex_state = 2}, + [1273] = {.lex_state = 227, .external_lex_state = 2}, + [1274] = {.lex_state = 238, .external_lex_state = 2}, + [1275] = {.lex_state = 219, .external_lex_state = 2}, + [1276] = {.lex_state = 227, .external_lex_state = 2}, + [1277] = {.lex_state = 220, .external_lex_state = 2}, + [1278] = {.lex_state = 258, .external_lex_state = 2}, + [1279] = {.lex_state = 258, .external_lex_state = 2}, + [1280] = {.lex_state = 258, .external_lex_state = 2}, + [1281] = {.lex_state = 227, .external_lex_state = 2}, + [1282] = {.lex_state = 220, .external_lex_state = 2}, + [1283] = {.lex_state = 238, .external_lex_state = 2}, + [1284] = {.lex_state = 258, .external_lex_state = 2}, [1285] = {.lex_state = 258, .external_lex_state = 2}, [1286] = {.lex_state = 219, .external_lex_state = 2}, - [1287] = {.lex_state = 227, .external_lex_state = 2}, - [1288] = {.lex_state = 258, .external_lex_state = 2}, - [1289] = {.lex_state = 220, .external_lex_state = 2}, - [1290] = {.lex_state = 227, .external_lex_state = 2}, + [1287] = {.lex_state = 219, .external_lex_state = 2}, + [1288] = {.lex_state = 219, .external_lex_state = 2}, + [1289] = {.lex_state = 219, .external_lex_state = 2}, + [1290] = {.lex_state = 238, .external_lex_state = 2}, [1291] = {.lex_state = 219, .external_lex_state = 2}, [1292] = {.lex_state = 219, .external_lex_state = 2}, - [1293] = {.lex_state = 258, .external_lex_state = 2}, - [1294] = {.lex_state = 238, .external_lex_state = 2}, - [1295] = {.lex_state = 263, .external_lex_state = 4}, - [1296] = {.lex_state = 227, .external_lex_state = 2}, - [1297] = {.lex_state = 220, .external_lex_state = 2}, - [1298] = {.lex_state = 220, .external_lex_state = 2}, - [1299] = {.lex_state = 227, .external_lex_state = 2}, + [1293] = {.lex_state = 220, .external_lex_state = 2}, + [1294] = {.lex_state = 220, .external_lex_state = 2}, + [1295] = {.lex_state = 227, .external_lex_state = 2}, + [1296] = {.lex_state = 219, .external_lex_state = 2}, + [1297] = {.lex_state = 219, .external_lex_state = 2}, + [1298] = {.lex_state = 219, .external_lex_state = 2}, + [1299] = {.lex_state = 220, .external_lex_state = 2}, [1300] = {.lex_state = 220, .external_lex_state = 2}, [1301] = {.lex_state = 227, .external_lex_state = 2}, [1302] = {.lex_state = 219, .external_lex_state = 2}, - [1303] = {.lex_state = 227, .external_lex_state = 2}, + [1303] = {.lex_state = 220, .external_lex_state = 2}, [1304] = {.lex_state = 219, .external_lex_state = 2}, - [1305] = {.lex_state = 227, .external_lex_state = 2}, + [1305] = {.lex_state = 220, .external_lex_state = 2}, [1306] = {.lex_state = 227, .external_lex_state = 2}, - [1307] = {.lex_state = 238, .external_lex_state = 2}, - [1308] = {.lex_state = 238, .external_lex_state = 2}, - [1309] = {.lex_state = 227, .external_lex_state = 2}, - [1310] = {.lex_state = 238, .external_lex_state = 2}, - [1311] = {.lex_state = 258, .external_lex_state = 2}, - [1312] = {.lex_state = 258, .external_lex_state = 2}, - [1313] = {.lex_state = 227, .external_lex_state = 2}, - [1314] = {.lex_state = 258, .external_lex_state = 2}, - [1315] = {.lex_state = 258, .external_lex_state = 2}, - [1316] = {.lex_state = 238, .external_lex_state = 2}, - [1317] = {.lex_state = 258, .external_lex_state = 2}, - [1318] = {.lex_state = 220, .external_lex_state = 2}, - [1319] = {.lex_state = 258, .external_lex_state = 2}, - [1320] = {.lex_state = 238, .external_lex_state = 2}, - [1321] = {.lex_state = 258, .external_lex_state = 2}, + [1307] = {.lex_state = 227, .external_lex_state = 2}, + [1308] = {.lex_state = 219, .external_lex_state = 2}, + [1309] = {.lex_state = 219, .external_lex_state = 2}, + [1310] = {.lex_state = 219, .external_lex_state = 2}, + [1311] = {.lex_state = 220, .external_lex_state = 2}, + [1312] = {.lex_state = 219, .external_lex_state = 2}, + [1313] = {.lex_state = 219, .external_lex_state = 2}, + [1314] = {.lex_state = 219, .external_lex_state = 2}, + [1315] = {.lex_state = 238, .external_lex_state = 2}, + [1316] = {.lex_state = 227, .external_lex_state = 2}, + [1317] = {.lex_state = 227, .external_lex_state = 2}, + [1318] = {.lex_state = 219, .external_lex_state = 2}, + [1319] = {.lex_state = 227, .external_lex_state = 2}, + [1320] = {.lex_state = 220, .external_lex_state = 2}, + [1321] = {.lex_state = 220, .external_lex_state = 2}, [1322] = {.lex_state = 219, .external_lex_state = 2}, - [1323] = {.lex_state = 258, .external_lex_state = 2}, - [1324] = {.lex_state = 219, .external_lex_state = 2}, - [1325] = {.lex_state = 219, .external_lex_state = 2}, - [1326] = {.lex_state = 220, .external_lex_state = 2}, - [1327] = {.lex_state = 220, .external_lex_state = 2}, - [1328] = {.lex_state = 238, .external_lex_state = 2}, - [1329] = {.lex_state = 258, .external_lex_state = 2}, - [1330] = {.lex_state = 227, .external_lex_state = 2}, - [1331] = {.lex_state = 227, .external_lex_state = 2}, + [1323] = {.lex_state = 219, .external_lex_state = 2}, + [1324] = {.lex_state = 220, .external_lex_state = 2}, + [1325] = {.lex_state = 220, .external_lex_state = 2}, + [1326] = {.lex_state = 238, .external_lex_state = 2}, + [1327] = {.lex_state = 238, .external_lex_state = 2}, + [1328] = {.lex_state = 220, .external_lex_state = 2}, + [1329] = {.lex_state = 220, .external_lex_state = 2}, + [1330] = {.lex_state = 220, .external_lex_state = 2}, + [1331] = {.lex_state = 220, .external_lex_state = 2}, [1332] = {.lex_state = 220, .external_lex_state = 2}, [1333] = {.lex_state = 220, .external_lex_state = 2}, - [1334] = {.lex_state = 220, .external_lex_state = 2}, + [1334] = {.lex_state = 227, .external_lex_state = 2}, [1335] = {.lex_state = 238, .external_lex_state = 2}, - [1336] = {.lex_state = 238, .external_lex_state = 2}, - [1337] = {.lex_state = 238, .external_lex_state = 2}, - [1338] = {.lex_state = 238, .external_lex_state = 2}, - [1339] = {.lex_state = 238, .external_lex_state = 2}, - [1340] = {.lex_state = 238, .external_lex_state = 2}, + [1336] = {.lex_state = 227, .external_lex_state = 2}, + [1337] = {.lex_state = 227, .external_lex_state = 2}, + [1338] = {.lex_state = 227, .external_lex_state = 2}, + [1339] = {.lex_state = 227, .external_lex_state = 2}, + [1340] = {.lex_state = 220, .external_lex_state = 2}, [1341] = {.lex_state = 238, .external_lex_state = 2}, - [1342] = {.lex_state = 256, .external_lex_state = 2}, - [1343] = {.lex_state = 256, .external_lex_state = 2}, - [1344] = {.lex_state = 256, .external_lex_state = 2}, - [1345] = {.lex_state = 256, .external_lex_state = 2}, - [1346] = {.lex_state = 256, .external_lex_state = 2}, - [1347] = {.lex_state = 256, .external_lex_state = 2}, - [1348] = {.lex_state = 256, .external_lex_state = 2}, + [1342] = {.lex_state = 220, .external_lex_state = 2}, + [1343] = {.lex_state = 238, .external_lex_state = 2}, + [1344] = {.lex_state = 238, .external_lex_state = 2}, + [1345] = {.lex_state = 220, .external_lex_state = 2}, + [1346] = {.lex_state = 238, .external_lex_state = 2}, + [1347] = {.lex_state = 220, .external_lex_state = 2}, + [1348] = {.lex_state = 220, .external_lex_state = 2}, [1349] = {.lex_state = 220, .external_lex_state = 2}, - [1350] = {.lex_state = 220, .external_lex_state = 2}, - [1351] = {.lex_state = 220, .external_lex_state = 2}, + [1350] = {.lex_state = 238, .external_lex_state = 2}, + [1351] = {.lex_state = 227, .external_lex_state = 2}, [1352] = {.lex_state = 220, .external_lex_state = 2}, - [1353] = {.lex_state = 220, .external_lex_state = 2}, - [1354] = {.lex_state = 220, .external_lex_state = 2}, - [1355] = {.lex_state = 220, .external_lex_state = 2}, - [1356] = {.lex_state = 219, .external_lex_state = 2}, - [1357] = {.lex_state = 219, .external_lex_state = 2}, - [1358] = {.lex_state = 238, .external_lex_state = 2}, - [1359] = {.lex_state = 219, .external_lex_state = 2}, - [1360] = {.lex_state = 219, .external_lex_state = 2}, - [1361] = {.lex_state = 219, .external_lex_state = 2}, - [1362] = {.lex_state = 219, .external_lex_state = 2}, - [1363] = {.lex_state = 238, .external_lex_state = 2}, - [1364] = {.lex_state = 219, .external_lex_state = 2}, - [1365] = {.lex_state = 219, .external_lex_state = 2}, + [1353] = {.lex_state = 256, .external_lex_state = 2}, + [1354] = {.lex_state = 227, .external_lex_state = 2}, + [1355] = {.lex_state = 227, .external_lex_state = 2}, + [1356] = {.lex_state = 227, .external_lex_state = 2}, + [1357] = {.lex_state = 227, .external_lex_state = 2}, + [1358] = {.lex_state = 220, .external_lex_state = 2}, + [1359] = {.lex_state = 238, .external_lex_state = 2}, + [1360] = {.lex_state = 220, .external_lex_state = 2}, + [1361] = {.lex_state = 238, .external_lex_state = 2}, + [1362] = {.lex_state = 220, .external_lex_state = 2}, + [1363] = {.lex_state = 220, .external_lex_state = 2}, + [1364] = {.lex_state = 238, .external_lex_state = 2}, + [1365] = {.lex_state = 220, .external_lex_state = 2}, [1366] = {.lex_state = 238, .external_lex_state = 2}, - [1367] = {.lex_state = 219, .external_lex_state = 2}, - [1368] = {.lex_state = 219, .external_lex_state = 2}, - [1369] = {.lex_state = 219, .external_lex_state = 2}, + [1367] = {.lex_state = 238, .external_lex_state = 2}, + [1368] = {.lex_state = 238, .external_lex_state = 2}, + [1369] = {.lex_state = 220, .external_lex_state = 2}, [1370] = {.lex_state = 238, .external_lex_state = 2}, [1371] = {.lex_state = 238, .external_lex_state = 2}, - [1372] = {.lex_state = 238, .external_lex_state = 2}, + [1372] = {.lex_state = 227, .external_lex_state = 2}, [1373] = {.lex_state = 238, .external_lex_state = 2}, - [1374] = {.lex_state = 238, .external_lex_state = 2}, - [1375] = {.lex_state = 238, .external_lex_state = 2}, - [1376] = {.lex_state = 238, .external_lex_state = 2}, - [1377] = {.lex_state = 238, .external_lex_state = 2}, - [1378] = {.lex_state = 238, .external_lex_state = 2}, - [1379] = {.lex_state = 238, .external_lex_state = 2}, + [1374] = {.lex_state = 227, .external_lex_state = 2}, + [1375] = {.lex_state = 227, .external_lex_state = 2}, + [1376] = {.lex_state = 256, .external_lex_state = 2}, + [1377] = {.lex_state = 227, .external_lex_state = 2}, + [1378] = {.lex_state = 227, .external_lex_state = 2}, + [1379] = {.lex_state = 227, .external_lex_state = 2}, [1380] = {.lex_state = 219, .external_lex_state = 2}, - [1381] = {.lex_state = 219, .external_lex_state = 2}, + [1381] = {.lex_state = 220, .external_lex_state = 2}, [1382] = {.lex_state = 219, .external_lex_state = 2}, - [1383] = {.lex_state = 227, .external_lex_state = 2}, - [1384] = {.lex_state = 227, .external_lex_state = 2}, - [1385] = {.lex_state = 220, .external_lex_state = 2}, - [1386] = {.lex_state = 219, .external_lex_state = 2}, - [1387] = {.lex_state = 219, .external_lex_state = 2}, + [1383] = {.lex_state = 219, .external_lex_state = 2}, + [1384] = {.lex_state = 219, .external_lex_state = 2}, + [1385] = {.lex_state = 227, .external_lex_state = 2}, + [1386] = {.lex_state = 238, .external_lex_state = 2}, + [1387] = {.lex_state = 238, .external_lex_state = 2}, [1388] = {.lex_state = 219, .external_lex_state = 2}, [1389] = {.lex_state = 219, .external_lex_state = 2}, [1390] = {.lex_state = 227, .external_lex_state = 2}, - [1391] = {.lex_state = 227, .external_lex_state = 2}, - [1392] = {.lex_state = 227, .external_lex_state = 2}, - [1393] = {.lex_state = 227, .external_lex_state = 2}, + [1391] = {.lex_state = 219, .external_lex_state = 2}, + [1392] = {.lex_state = 219, .external_lex_state = 2}, + [1393] = {.lex_state = 219, .external_lex_state = 2}, [1394] = {.lex_state = 219, .external_lex_state = 2}, - [1395] = {.lex_state = 219, .external_lex_state = 2}, - [1396] = {.lex_state = 219, .external_lex_state = 2}, - [1397] = {.lex_state = 219, .external_lex_state = 2}, - [1398] = {.lex_state = 227, .external_lex_state = 2}, - [1399] = {.lex_state = 227, .external_lex_state = 2}, - [1400] = {.lex_state = 227, .external_lex_state = 2}, - [1401] = {.lex_state = 227, .external_lex_state = 2}, - [1402] = {.lex_state = 219, .external_lex_state = 2}, - [1403] = {.lex_state = 219, .external_lex_state = 2}, - [1404] = {.lex_state = 219, .external_lex_state = 2}, - [1405] = {.lex_state = 227, .external_lex_state = 2}, - [1406] = {.lex_state = 238, .external_lex_state = 2}, - [1407] = {.lex_state = 238, .external_lex_state = 2}, - [1408] = {.lex_state = 219, .external_lex_state = 2}, - [1409] = {.lex_state = 220, .external_lex_state = 2}, - [1410] = {.lex_state = 227, .external_lex_state = 2}, + [1395] = {.lex_state = 227, .external_lex_state = 2}, + [1396] = {.lex_state = 238, .external_lex_state = 2}, + [1397] = {.lex_state = 238, .external_lex_state = 2}, + [1398] = {.lex_state = 238, .external_lex_state = 2}, + [1399] = {.lex_state = 238, .external_lex_state = 2}, + [1400] = {.lex_state = 238, .external_lex_state = 2}, + [1401] = {.lex_state = 238, .external_lex_state = 2}, + [1402] = {.lex_state = 238, .external_lex_state = 2}, + [1403] = {.lex_state = 256, .external_lex_state = 2}, + [1404] = {.lex_state = 227, .external_lex_state = 2}, + [1405] = {.lex_state = 220, .external_lex_state = 2}, + [1406] = {.lex_state = 256, .external_lex_state = 2}, + [1407] = {.lex_state = 220, .external_lex_state = 2}, + [1408] = {.lex_state = 256, .external_lex_state = 2}, + [1409] = {.lex_state = 256, .external_lex_state = 2}, + [1410] = {.lex_state = 220, .external_lex_state = 2}, [1411] = {.lex_state = 227, .external_lex_state = 2}, [1412] = {.lex_state = 227, .external_lex_state = 2}, - [1413] = {.lex_state = 238, .external_lex_state = 2}, - [1414] = {.lex_state = 227, .external_lex_state = 2}, - [1415] = {.lex_state = 238, .external_lex_state = 2}, - [1416] = {.lex_state = 238, .external_lex_state = 2}, - [1417] = {.lex_state = 238, .external_lex_state = 2}, - [1418] = {.lex_state = 238, .external_lex_state = 2}, + [1413] = {.lex_state = 220, .external_lex_state = 2}, + [1414] = {.lex_state = 256, .external_lex_state = 2}, + [1415] = {.lex_state = 227, .external_lex_state = 2}, + [1416] = {.lex_state = 256, .external_lex_state = 2}, + [1417] = {.lex_state = 256, .external_lex_state = 2}, + [1418] = {.lex_state = 219, .external_lex_state = 2}, [1419] = {.lex_state = 220, .external_lex_state = 2}, - [1420] = {.lex_state = 220, .external_lex_state = 2}, + [1420] = {.lex_state = 227, .external_lex_state = 2}, [1421] = {.lex_state = 220, .external_lex_state = 2}, - [1422] = {.lex_state = 227, .external_lex_state = 2}, - [1423] = {.lex_state = 227, .external_lex_state = 2}, - [1424] = {.lex_state = 227, .external_lex_state = 2}, - [1425] = {.lex_state = 227, .external_lex_state = 2}, - [1426] = {.lex_state = 227, .external_lex_state = 2}, - [1427] = {.lex_state = 227, .external_lex_state = 2}, - [1428] = {.lex_state = 238, .external_lex_state = 2}, + [1422] = {.lex_state = 220, .external_lex_state = 2}, + [1423] = {.lex_state = 219, .external_lex_state = 2}, + [1424] = {.lex_state = 220, .external_lex_state = 2}, + [1425] = {.lex_state = 220, .external_lex_state = 2}, + [1426] = {.lex_state = 220, .external_lex_state = 2}, + [1427] = {.lex_state = 220, .external_lex_state = 2}, + [1428] = {.lex_state = 220, .external_lex_state = 2}, [1429] = {.lex_state = 220, .external_lex_state = 2}, - [1430] = {.lex_state = 220, .external_lex_state = 2}, + [1430] = {.lex_state = 227, .external_lex_state = 2}, [1431] = {.lex_state = 238, .external_lex_state = 2}, [1432] = {.lex_state = 238, .external_lex_state = 2}, - [1433] = {.lex_state = 220, .external_lex_state = 2}, - [1434] = {.lex_state = 219, .external_lex_state = 2}, - [1435] = {.lex_state = 227, .external_lex_state = 2}, - [1436] = {.lex_state = 227, .external_lex_state = 2}, - [1437] = {.lex_state = 219, .external_lex_state = 2}, - [1438] = {.lex_state = 227, .external_lex_state = 2}, - [1439] = {.lex_state = 227, .external_lex_state = 2}, + [1433] = {.lex_state = 238, .external_lex_state = 2}, + [1434] = {.lex_state = 227, .external_lex_state = 2}, + [1435] = {.lex_state = 219, .external_lex_state = 2}, + [1436] = {.lex_state = 238, .external_lex_state = 2}, + [1437] = {.lex_state = 238, .external_lex_state = 2}, + [1438] = {.lex_state = 238, .external_lex_state = 2}, + [1439] = {.lex_state = 238, .external_lex_state = 2}, [1440] = {.lex_state = 220, .external_lex_state = 2}, [1441] = {.lex_state = 219, .external_lex_state = 2}, - [1442] = {.lex_state = 220, .external_lex_state = 2}, - [1443] = {.lex_state = 220, .external_lex_state = 2}, + [1442] = {.lex_state = 227, .external_lex_state = 2}, + [1443] = {.lex_state = 219, .external_lex_state = 2}, [1444] = {.lex_state = 227, .external_lex_state = 2}, - [1445] = {.lex_state = 238, .external_lex_state = 2}, - [1446] = {.lex_state = 227, .external_lex_state = 2}, + [1445] = {.lex_state = 220, .external_lex_state = 2}, + [1446] = {.lex_state = 219, .external_lex_state = 2}, [1447] = {.lex_state = 238, .external_lex_state = 2}, [1448] = {.lex_state = 238, .external_lex_state = 2}, [1449] = {.lex_state = 238, .external_lex_state = 2}, - [1450] = {.lex_state = 227, .external_lex_state = 2}, - [1451] = {.lex_state = 227, .external_lex_state = 2}, + [1450] = {.lex_state = 220, .external_lex_state = 2}, + [1451] = {.lex_state = 220, .external_lex_state = 2}, [1452] = {.lex_state = 220, .external_lex_state = 2}, - [1453] = {.lex_state = 220, .external_lex_state = 2}, - [1454] = {.lex_state = 227, .external_lex_state = 2}, - [1455] = {.lex_state = 220, .external_lex_state = 2}, - [1456] = {.lex_state = 220, .external_lex_state = 2}, - [1457] = {.lex_state = 220, .external_lex_state = 2}, - [1458] = {.lex_state = 220, .external_lex_state = 2}, - [1459] = {.lex_state = 220, .external_lex_state = 2}, - [1460] = {.lex_state = 219, .external_lex_state = 2}, - [1461] = {.lex_state = 227, .external_lex_state = 2}, - [1462] = {.lex_state = 227, .external_lex_state = 2}, - [1463] = {.lex_state = 227, .external_lex_state = 2}, - [1464] = {.lex_state = 227, .external_lex_state = 2}, - [1465] = {.lex_state = 219, .external_lex_state = 2}, - [1466] = {.lex_state = 238, .external_lex_state = 2}, - [1467] = {.lex_state = 227, .external_lex_state = 2}, - [1468] = {.lex_state = 238, .external_lex_state = 2}, - [1469] = {.lex_state = 227, .external_lex_state = 2}, - [1470] = {.lex_state = 219, .external_lex_state = 2}, - [1471] = {.lex_state = 227, .external_lex_state = 2}, + [1453] = {.lex_state = 227, .external_lex_state = 2}, + [1454] = {.lex_state = 220, .external_lex_state = 2}, + [1455] = {.lex_state = 238, .external_lex_state = 2}, + [1456] = {.lex_state = 238, .external_lex_state = 2}, + [1457] = {.lex_state = 227, .external_lex_state = 2}, + [1458] = {.lex_state = 219, .external_lex_state = 2}, + [1459] = {.lex_state = 238, .external_lex_state = 2}, + [1460] = {.lex_state = 227, .external_lex_state = 2}, + [1461] = {.lex_state = 219, .external_lex_state = 2}, + [1462] = {.lex_state = 238, .external_lex_state = 2}, + [1463] = {.lex_state = 238, .external_lex_state = 2}, + [1464] = {.lex_state = 238, .external_lex_state = 2}, + [1465] = {.lex_state = 238, .external_lex_state = 2}, + [1466] = {.lex_state = 219, .external_lex_state = 2}, + [1467] = {.lex_state = 238, .external_lex_state = 2}, + [1468] = {.lex_state = 227, .external_lex_state = 2}, + [1469] = {.lex_state = 219, .external_lex_state = 2}, + [1470] = {.lex_state = 238, .external_lex_state = 2}, + [1471] = {.lex_state = 219, .external_lex_state = 2}, [1472] = {.lex_state = 238, .external_lex_state = 2}, - [1473] = {.lex_state = 219, .external_lex_state = 2}, - [1474] = {.lex_state = 219, .external_lex_state = 2}, - [1475] = {.lex_state = 219, .external_lex_state = 2}, - [1476] = {.lex_state = 220, .external_lex_state = 2}, - [1477] = {.lex_state = 238, .external_lex_state = 2}, + [1473] = {.lex_state = 238, .external_lex_state = 2}, + [1474] = {.lex_state = 220, .external_lex_state = 2}, + [1475] = {.lex_state = 238, .external_lex_state = 2}, + [1476] = {.lex_state = 238, .external_lex_state = 2}, + [1477] = {.lex_state = 227, .external_lex_state = 2}, [1478] = {.lex_state = 238, .external_lex_state = 2}, - [1479] = {.lex_state = 220, .external_lex_state = 2}, - [1480] = {.lex_state = 238, .external_lex_state = 2}, + [1479] = {.lex_state = 238, .external_lex_state = 2}, + [1480] = {.lex_state = 220, .external_lex_state = 2}, [1481] = {.lex_state = 227, .external_lex_state = 2}, [1482] = {.lex_state = 227, .external_lex_state = 2}, - [1483] = {.lex_state = 227, .external_lex_state = 2}, + [1483] = {.lex_state = 219, .external_lex_state = 2}, [1484] = {.lex_state = 227, .external_lex_state = 2}, - [1485] = {.lex_state = 238, .external_lex_state = 2}, + [1485] = {.lex_state = 227, .external_lex_state = 2}, [1486] = {.lex_state = 238, .external_lex_state = 2}, - [1487] = {.lex_state = 227, .external_lex_state = 2}, - [1488] = {.lex_state = 219, .external_lex_state = 2}, - [1489] = {.lex_state = 219, .external_lex_state = 2}, - [1490] = {.lex_state = 219, .external_lex_state = 2}, + [1487] = {.lex_state = 238, .external_lex_state = 2}, + [1488] = {.lex_state = 220, .external_lex_state = 2}, + [1489] = {.lex_state = 256, .external_lex_state = 2}, + [1490] = {.lex_state = 238, .external_lex_state = 2}, [1491] = {.lex_state = 238, .external_lex_state = 2}, [1492] = {.lex_state = 238, .external_lex_state = 2}, [1493] = {.lex_state = 219, .external_lex_state = 2}, [1494] = {.lex_state = 219, .external_lex_state = 2}, - [1495] = {.lex_state = 219, .external_lex_state = 2}, + [1495] = {.lex_state = 220, .external_lex_state = 2}, [1496] = {.lex_state = 238, .external_lex_state = 2}, - [1497] = {.lex_state = 238, .external_lex_state = 2}, - [1498] = {.lex_state = 227, .external_lex_state = 2}, - [1499] = {.lex_state = 227, .external_lex_state = 2}, + [1497] = {.lex_state = 227, .external_lex_state = 2}, + [1498] = {.lex_state = 238, .external_lex_state = 2}, + [1499] = {.lex_state = 238, .external_lex_state = 2}, [1500] = {.lex_state = 219, .external_lex_state = 2}, - [1501] = {.lex_state = 219, .external_lex_state = 2}, - [1502] = {.lex_state = 219, .external_lex_state = 2}, - [1503] = {.lex_state = 227, .external_lex_state = 2}, - [1504] = {.lex_state = 219, .external_lex_state = 2}, - [1505] = {.lex_state = 219, .external_lex_state = 2}, - [1506] = {.lex_state = 256, .external_lex_state = 2}, + [1501] = {.lex_state = 238, .external_lex_state = 2}, + [1502] = {.lex_state = 256, .external_lex_state = 2}, + [1503] = {.lex_state = 256, .external_lex_state = 2}, + [1504] = {.lex_state = 238, .external_lex_state = 2}, + [1505] = {.lex_state = 238, .external_lex_state = 2}, + [1506] = {.lex_state = 238, .external_lex_state = 2}, [1507] = {.lex_state = 238, .external_lex_state = 2}, - [1508] = {.lex_state = 256, .external_lex_state = 2}, + [1508] = {.lex_state = 238, .external_lex_state = 2}, [1509] = {.lex_state = 238, .external_lex_state = 2}, - [1510] = {.lex_state = 238, .external_lex_state = 2}, - [1511] = {.lex_state = 256, .external_lex_state = 2}, - [1512] = {.lex_state = 227, .external_lex_state = 2}, + [1510] = {.lex_state = 256, .external_lex_state = 2}, + [1511] = {.lex_state = 238, .external_lex_state = 2}, + [1512] = {.lex_state = 256, .external_lex_state = 2}, [1513] = {.lex_state = 256, .external_lex_state = 2}, - [1514] = {.lex_state = 238, .external_lex_state = 2}, - [1515] = {.lex_state = 238, .external_lex_state = 2}, - [1516] = {.lex_state = 256, .external_lex_state = 2}, - [1517] = {.lex_state = 227, .external_lex_state = 2}, + [1514] = {.lex_state = 219, .external_lex_state = 2}, + [1515] = {.lex_state = 256, .external_lex_state = 2}, + [1516] = {.lex_state = 227, .external_lex_state = 2}, + [1517] = {.lex_state = 219, .external_lex_state = 2}, [1518] = {.lex_state = 256, .external_lex_state = 2}, - [1519] = {.lex_state = 219, .external_lex_state = 2}, - [1520] = {.lex_state = 219, .external_lex_state = 2}, - [1521] = {.lex_state = 219, .external_lex_state = 2}, - [1522] = {.lex_state = 238, .external_lex_state = 2}, - [1523] = {.lex_state = 238, .external_lex_state = 2}, - [1524] = {.lex_state = 256, .external_lex_state = 2}, - [1525] = {.lex_state = 238, .external_lex_state = 2}, + [1519] = {.lex_state = 256, .external_lex_state = 2}, + [1520] = {.lex_state = 227, .external_lex_state = 2}, + [1521] = {.lex_state = 256, .external_lex_state = 2}, + [1522] = {.lex_state = 256, .external_lex_state = 2}, + [1523] = {.lex_state = 220, .external_lex_state = 2}, + [1524] = {.lex_state = 227, .external_lex_state = 2}, + [1525] = {.lex_state = 219, .external_lex_state = 2}, [1526] = {.lex_state = 256, .external_lex_state = 2}, - [1527] = {.lex_state = 238, .external_lex_state = 2}, - [1528] = {.lex_state = 256, .external_lex_state = 2}, - [1529] = {.lex_state = 256, .external_lex_state = 2}, - [1530] = {.lex_state = 238, .external_lex_state = 2}, - [1531] = {.lex_state = 238, .external_lex_state = 2}, - [1532] = {.lex_state = 238, .external_lex_state = 2}, + [1527] = {.lex_state = 227, .external_lex_state = 2}, + [1528] = {.lex_state = 219, .external_lex_state = 2}, + [1529] = {.lex_state = 219, .external_lex_state = 2}, + [1530] = {.lex_state = 227, .external_lex_state = 2}, + [1531] = {.lex_state = 256, .external_lex_state = 2}, + [1532] = {.lex_state = 219, .external_lex_state = 2}, [1533] = {.lex_state = 238, .external_lex_state = 2}, - [1534] = {.lex_state = 227, .external_lex_state = 2}, - [1535] = {.lex_state = 256, .external_lex_state = 2}, - [1536] = {.lex_state = 227, .external_lex_state = 2}, - [1537] = {.lex_state = 227, .external_lex_state = 2}, + [1534] = {.lex_state = 220, .external_lex_state = 2}, + [1535] = {.lex_state = 227, .external_lex_state = 2}, + [1536] = {.lex_state = 256, .external_lex_state = 2}, + [1537] = {.lex_state = 219, .external_lex_state = 2}, [1538] = {.lex_state = 219, .external_lex_state = 2}, - [1539] = {.lex_state = 238, .external_lex_state = 2}, + [1539] = {.lex_state = 219, .external_lex_state = 2}, [1540] = {.lex_state = 219, .external_lex_state = 2}, - [1541] = {.lex_state = 256, .external_lex_state = 2}, - [1542] = {.lex_state = 238, .external_lex_state = 2}, + [1541] = {.lex_state = 219, .external_lex_state = 2}, + [1542] = {.lex_state = 219, .external_lex_state = 2}, [1543] = {.lex_state = 219, .external_lex_state = 2}, - [1544] = {.lex_state = 219, .external_lex_state = 2}, - [1545] = {.lex_state = 219, .external_lex_state = 2}, - [1546] = {.lex_state = 227, .external_lex_state = 2}, + [1544] = {.lex_state = 220, .external_lex_state = 2}, + [1545] = {.lex_state = 256, .external_lex_state = 2}, + [1546] = {.lex_state = 238, .external_lex_state = 2}, [1547] = {.lex_state = 219, .external_lex_state = 2}, - [1548] = {.lex_state = 256, .external_lex_state = 2}, - [1549] = {.lex_state = 256, .external_lex_state = 2}, - [1550] = {.lex_state = 219, .external_lex_state = 2}, + [1548] = {.lex_state = 219, .external_lex_state = 2}, + [1549] = {.lex_state = 219, .external_lex_state = 2}, + [1550] = {.lex_state = 256, .external_lex_state = 2}, [1551] = {.lex_state = 219, .external_lex_state = 2}, - [1552] = {.lex_state = 256, .external_lex_state = 2}, - [1553] = {.lex_state = 256, .external_lex_state = 2}, + [1552] = {.lex_state = 219, .external_lex_state = 2}, + [1553] = {.lex_state = 227, .external_lex_state = 2}, [1554] = {.lex_state = 219, .external_lex_state = 2}, - [1555] = {.lex_state = 256, .external_lex_state = 2}, - [1556] = {.lex_state = 227, .external_lex_state = 2}, + [1555] = {.lex_state = 227, .external_lex_state = 2}, + [1556] = {.lex_state = 219, .external_lex_state = 2}, [1557] = {.lex_state = 256, .external_lex_state = 2}, - [1558] = {.lex_state = 256, .external_lex_state = 2}, - [1559] = {.lex_state = 220, .external_lex_state = 2}, - [1560] = {.lex_state = 220, .external_lex_state = 2}, - [1561] = {.lex_state = 219, .external_lex_state = 2}, + [1558] = {.lex_state = 227, .external_lex_state = 2}, + [1559] = {.lex_state = 256, .external_lex_state = 2}, + [1560] = {.lex_state = 219, .external_lex_state = 2}, + [1561] = {.lex_state = 227, .external_lex_state = 2}, [1562] = {.lex_state = 227, .external_lex_state = 2}, - [1563] = {.lex_state = 227, .external_lex_state = 2}, - [1564] = {.lex_state = 227, .external_lex_state = 2}, - [1565] = {.lex_state = 256, .external_lex_state = 2}, - [1566] = {.lex_state = 256, .external_lex_state = 2}, - [1567] = {.lex_state = 220, .external_lex_state = 2}, + [1563] = {.lex_state = 219, .external_lex_state = 2}, + [1564] = {.lex_state = 256, .external_lex_state = 2}, + [1565] = {.lex_state = 227, .external_lex_state = 2}, + [1566] = {.lex_state = 219, .external_lex_state = 2}, + [1567] = {.lex_state = 219, .external_lex_state = 2}, [1568] = {.lex_state = 220, .external_lex_state = 2}, - [1569] = {.lex_state = 220, .external_lex_state = 2}, + [1569] = {.lex_state = 219, .external_lex_state = 2}, [1570] = {.lex_state = 220, .external_lex_state = 2}, - [1571] = {.lex_state = 238, .external_lex_state = 2}, - [1572] = {.lex_state = 227, .external_lex_state = 2}, - [1573] = {.lex_state = 227, .external_lex_state = 2}, + [1571] = {.lex_state = 219, .external_lex_state = 2}, + [1572] = {.lex_state = 256, .external_lex_state = 2}, + [1573] = {.lex_state = 220, .external_lex_state = 2}, [1574] = {.lex_state = 256, .external_lex_state = 2}, - [1575] = {.lex_state = 256, .external_lex_state = 2}, - [1576] = {.lex_state = 220, .external_lex_state = 2}, - [1577] = {.lex_state = 220, .external_lex_state = 2}, - [1578] = {.lex_state = 220, .external_lex_state = 2}, - [1579] = {.lex_state = 238, .external_lex_state = 2}, - [1580] = {.lex_state = 220, .external_lex_state = 2}, - [1581] = {.lex_state = 227, .external_lex_state = 2}, - [1582] = {.lex_state = 256, .external_lex_state = 2}, - [1583] = {.lex_state = 256, .external_lex_state = 2}, - [1584] = {.lex_state = 220, .external_lex_state = 2}, - [1585] = {.lex_state = 220, .external_lex_state = 2}, - [1586] = {.lex_state = 220, .external_lex_state = 2}, - [1587] = {.lex_state = 220, .external_lex_state = 2}, - [1588] = {.lex_state = 220, .external_lex_state = 2}, - [1589] = {.lex_state = 220, .external_lex_state = 2}, - [1590] = {.lex_state = 220, .external_lex_state = 2}, + [1575] = {.lex_state = 220, .external_lex_state = 2}, + [1576] = {.lex_state = 219, .external_lex_state = 2}, + [1577] = {.lex_state = 219, .external_lex_state = 2}, + [1578] = {.lex_state = 219, .external_lex_state = 2}, + [1579] = {.lex_state = 219, .external_lex_state = 2}, + [1580] = {.lex_state = 227, .external_lex_state = 2}, + [1581] = {.lex_state = 220, .external_lex_state = 2}, + [1582] = {.lex_state = 219, .external_lex_state = 2}, + [1583] = {.lex_state = 227, .external_lex_state = 2}, + [1584] = {.lex_state = 227, .external_lex_state = 2}, + [1585] = {.lex_state = 227, .external_lex_state = 2}, + [1586] = {.lex_state = 227, .external_lex_state = 2}, + [1587] = {.lex_state = 227, .external_lex_state = 2}, + [1588] = {.lex_state = 219, .external_lex_state = 2}, + [1589] = {.lex_state = 219, .external_lex_state = 2}, + [1590] = {.lex_state = 219, .external_lex_state = 2}, [1591] = {.lex_state = 220, .external_lex_state = 2}, [1592] = {.lex_state = 220, .external_lex_state = 2}, [1593] = {.lex_state = 220, .external_lex_state = 2}, - [1594] = {.lex_state = 238, .external_lex_state = 2}, - [1595] = {.lex_state = 238, .external_lex_state = 2}, + [1594] = {.lex_state = 220, .external_lex_state = 2}, + [1595] = {.lex_state = 227, .external_lex_state = 2}, [1596] = {.lex_state = 220, .external_lex_state = 2}, - [1597] = {.lex_state = 220, .external_lex_state = 2}, - [1598] = {.lex_state = 220, .external_lex_state = 2}, - [1599] = {.lex_state = 220, .external_lex_state = 2}, - [1600] = {.lex_state = 220, .external_lex_state = 2}, + [1597] = {.lex_state = 227, .external_lex_state = 2}, + [1598] = {.lex_state = 227, .external_lex_state = 2}, + [1599] = {.lex_state = 256, .external_lex_state = 2}, + [1600] = {.lex_state = 256, .external_lex_state = 2}, [1601] = {.lex_state = 220, .external_lex_state = 2}, - [1602] = {.lex_state = 227, .external_lex_state = 2}, - [1603] = {.lex_state = 238, .external_lex_state = 2}, + [1602] = {.lex_state = 220, .external_lex_state = 2}, + [1603] = {.lex_state = 220, .external_lex_state = 2}, [1604] = {.lex_state = 220, .external_lex_state = 2}, - [1605] = {.lex_state = 238, .external_lex_state = 2}, - [1606] = {.lex_state = 219, .external_lex_state = 2}, + [1605] = {.lex_state = 220, .external_lex_state = 2}, + [1606] = {.lex_state = 220, .external_lex_state = 2}, [1607] = {.lex_state = 220, .external_lex_state = 2}, - [1608] = {.lex_state = 220, .external_lex_state = 2}, - [1609] = {.lex_state = 220, .external_lex_state = 2}, - [1610] = {.lex_state = 227, .external_lex_state = 2}, + [1608] = {.lex_state = 227, .external_lex_state = 2}, + [1609] = {.lex_state = 219, .external_lex_state = 2}, + [1610] = {.lex_state = 220, .external_lex_state = 2}, [1611] = {.lex_state = 239, .external_lex_state = 2}, [1612] = {.lex_state = 239, .external_lex_state = 2}, [1613] = {.lex_state = 239, .external_lex_state = 2}, @@ -36657,8 +36656,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1641] = {.lex_state = 239, .external_lex_state = 2}, [1642] = {.lex_state = 239, .external_lex_state = 2}, [1643] = {.lex_state = 264, .external_lex_state = 2}, - [1644] = {.lex_state = 264, .external_lex_state = 3}, - [1645] = {.lex_state = 265, .external_lex_state = 2}, + [1644] = {.lex_state = 265, .external_lex_state = 2}, + [1645] = {.lex_state = 264, .external_lex_state = 3}, [1646] = {.lex_state = 267, .external_lex_state = 2}, [1647] = {.lex_state = 269, .external_lex_state = 2}, [1648] = {.lex_state = 264, .external_lex_state = 2}, @@ -36678,157 +36677,157 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1662] = {.lex_state = 211, .external_lex_state = 2}, [1663] = {.lex_state = 211, .external_lex_state = 2}, [1664] = {.lex_state = 211, .external_lex_state = 2}, - [1665] = {.lex_state = 209, .external_lex_state = 2}, - [1666] = {.lex_state = 209, .external_lex_state = 2}, - [1667] = {.lex_state = 211, .external_lex_state = 2}, - [1668] = {.lex_state = 275, .external_lex_state = 5}, - [1669] = {.lex_state = 275, .external_lex_state = 5}, - [1670] = {.lex_state = 275, .external_lex_state = 5}, - [1671] = {.lex_state = 211, .external_lex_state = 2}, - [1672] = {.lex_state = 275, .external_lex_state = 5}, + [1665] = {.lex_state = 275, .external_lex_state = 5}, + [1666] = {.lex_state = 211, .external_lex_state = 2}, + [1667] = {.lex_state = 209, .external_lex_state = 2}, + [1668] = {.lex_state = 209, .external_lex_state = 2}, + [1669] = {.lex_state = 209, .external_lex_state = 2}, + [1670] = {.lex_state = 209, .external_lex_state = 2}, + [1671] = {.lex_state = 209, .external_lex_state = 2}, + [1672] = {.lex_state = 209, .external_lex_state = 2}, [1673] = {.lex_state = 209, .external_lex_state = 2}, - [1674] = {.lex_state = 211, .external_lex_state = 2}, + [1674] = {.lex_state = 209, .external_lex_state = 2}, [1675] = {.lex_state = 211, .external_lex_state = 2}, [1676] = {.lex_state = 211, .external_lex_state = 2}, [1677] = {.lex_state = 211, .external_lex_state = 2}, [1678] = {.lex_state = 211, .external_lex_state = 2}, - [1679] = {.lex_state = 275, .external_lex_state = 5}, - [1680] = {.lex_state = 275, .external_lex_state = 5}, + [1679] = {.lex_state = 211, .external_lex_state = 2}, + [1680] = {.lex_state = 211, .external_lex_state = 2}, [1681] = {.lex_state = 211, .external_lex_state = 2}, [1682] = {.lex_state = 211, .external_lex_state = 2}, [1683] = {.lex_state = 211, .external_lex_state = 2}, [1684] = {.lex_state = 211, .external_lex_state = 2}, [1685] = {.lex_state = 211, .external_lex_state = 2}, - [1686] = {.lex_state = 211, .external_lex_state = 2}, + [1686] = {.lex_state = 275, .external_lex_state = 5}, [1687] = {.lex_state = 211, .external_lex_state = 2}, - [1688] = {.lex_state = 211, .external_lex_state = 2}, + [1688] = {.lex_state = 275, .external_lex_state = 5}, [1689] = {.lex_state = 211, .external_lex_state = 2}, [1690] = {.lex_state = 209, .external_lex_state = 2}, [1691] = {.lex_state = 209, .external_lex_state = 2}, - [1692] = {.lex_state = 275, .external_lex_state = 5}, + [1692] = {.lex_state = 209, .external_lex_state = 2}, [1693] = {.lex_state = 209, .external_lex_state = 2}, [1694] = {.lex_state = 209, .external_lex_state = 2}, - [1695] = {.lex_state = 275, .external_lex_state = 5}, - [1696] = {.lex_state = 275, .external_lex_state = 5}, + [1695] = {.lex_state = 209, .external_lex_state = 2}, + [1696] = {.lex_state = 209, .external_lex_state = 2}, [1697] = {.lex_state = 209, .external_lex_state = 2}, [1698] = {.lex_state = 211, .external_lex_state = 2}, - [1699] = {.lex_state = 211, .external_lex_state = 2}, - [1700] = {.lex_state = 211, .external_lex_state = 2}, - [1701] = {.lex_state = 211, .external_lex_state = 2}, - [1702] = {.lex_state = 275, .external_lex_state = 5}, - [1703] = {.lex_state = 275, .external_lex_state = 5}, + [1699] = {.lex_state = 209, .external_lex_state = 2}, + [1700] = {.lex_state = 209, .external_lex_state = 2}, + [1701] = {.lex_state = 209, .external_lex_state = 2}, + [1702] = {.lex_state = 209, .external_lex_state = 2}, + [1703] = {.lex_state = 211, .external_lex_state = 2}, [1704] = {.lex_state = 209, .external_lex_state = 2}, - [1705] = {.lex_state = 222, .external_lex_state = 2}, - [1706] = {.lex_state = 209, .external_lex_state = 2}, - [1707] = {.lex_state = 211, .external_lex_state = 2}, - [1708] = {.lex_state = 275, .external_lex_state = 5}, - [1709] = {.lex_state = 275, .external_lex_state = 5}, - [1710] = {.lex_state = 209, .external_lex_state = 2}, - [1711] = {.lex_state = 275, .external_lex_state = 5}, - [1712] = {.lex_state = 275, .external_lex_state = 5}, - [1713] = {.lex_state = 209, .external_lex_state = 2}, - [1714] = {.lex_state = 209, .external_lex_state = 2}, - [1715] = {.lex_state = 209, .external_lex_state = 2}, - [1716] = {.lex_state = 209, .external_lex_state = 2}, - [1717] = {.lex_state = 209, .external_lex_state = 2}, - [1718] = {.lex_state = 209, .external_lex_state = 2}, + [1705] = {.lex_state = 275, .external_lex_state = 5}, + [1706] = {.lex_state = 211, .external_lex_state = 2}, + [1707] = {.lex_state = 222, .external_lex_state = 2}, + [1708] = {.lex_state = 222, .external_lex_state = 2}, + [1709] = {.lex_state = 222, .external_lex_state = 2}, + [1710] = {.lex_state = 222, .external_lex_state = 2}, + [1711] = {.lex_state = 222, .external_lex_state = 2}, + [1712] = {.lex_state = 222, .external_lex_state = 2}, + [1713] = {.lex_state = 222, .external_lex_state = 2}, + [1714] = {.lex_state = 211, .external_lex_state = 2}, + [1715] = {.lex_state = 222, .external_lex_state = 2}, + [1716] = {.lex_state = 222, .external_lex_state = 2}, + [1717] = {.lex_state = 222, .external_lex_state = 2}, + [1718] = {.lex_state = 222, .external_lex_state = 2}, [1719] = {.lex_state = 222, .external_lex_state = 2}, - [1720] = {.lex_state = 211, .external_lex_state = 2}, + [1720] = {.lex_state = 222, .external_lex_state = 2}, [1721] = {.lex_state = 222, .external_lex_state = 2}, [1722] = {.lex_state = 222, .external_lex_state = 2}, - [1723] = {.lex_state = 222, .external_lex_state = 2}, - [1724] = {.lex_state = 222, .external_lex_state = 2}, - [1725] = {.lex_state = 222, .external_lex_state = 2}, - [1726] = {.lex_state = 222, .external_lex_state = 2}, - [1727] = {.lex_state = 222, .external_lex_state = 2}, - [1728] = {.lex_state = 209, .external_lex_state = 2}, - [1729] = {.lex_state = 209, .external_lex_state = 2}, - [1730] = {.lex_state = 209, .external_lex_state = 2}, + [1723] = {.lex_state = 211, .external_lex_state = 2}, + [1724] = {.lex_state = 211, .external_lex_state = 2}, + [1725] = {.lex_state = 211, .external_lex_state = 2}, + [1726] = {.lex_state = 211, .external_lex_state = 2}, + [1727] = {.lex_state = 211, .external_lex_state = 2}, + [1728] = {.lex_state = 211, .external_lex_state = 2}, + [1729] = {.lex_state = 211, .external_lex_state = 2}, + [1730] = {.lex_state = 275, .external_lex_state = 5}, [1731] = {.lex_state = 275, .external_lex_state = 5}, - [1732] = {.lex_state = 211, .external_lex_state = 2}, + [1732] = {.lex_state = 275, .external_lex_state = 5}, [1733] = {.lex_state = 275, .external_lex_state = 5}, [1734] = {.lex_state = 275, .external_lex_state = 5}, - [1735] = {.lex_state = 211, .external_lex_state = 2}, - [1736] = {.lex_state = 209, .external_lex_state = 2}, - [1737] = {.lex_state = 222, .external_lex_state = 2}, - [1738] = {.lex_state = 222, .external_lex_state = 2}, - [1739] = {.lex_state = 222, .external_lex_state = 2}, - [1740] = {.lex_state = 222, .external_lex_state = 2}, - [1741] = {.lex_state = 222, .external_lex_state = 2}, - [1742] = {.lex_state = 222, .external_lex_state = 2}, - [1743] = {.lex_state = 222, .external_lex_state = 2}, - [1744] = {.lex_state = 211, .external_lex_state = 2}, - [1745] = {.lex_state = 212, .external_lex_state = 2}, - [1746] = {.lex_state = 212, .external_lex_state = 2}, - [1747] = {.lex_state = 212, .external_lex_state = 2}, - [1748] = {.lex_state = 222, .external_lex_state = 2}, - [1749] = {.lex_state = 285, .external_lex_state = 2}, - [1750] = {.lex_state = 222, .external_lex_state = 2}, + [1735] = {.lex_state = 275, .external_lex_state = 5}, + [1736] = {.lex_state = 275, .external_lex_state = 5}, + [1737] = {.lex_state = 275, .external_lex_state = 5}, + [1738] = {.lex_state = 275, .external_lex_state = 5}, + [1739] = {.lex_state = 275, .external_lex_state = 5}, + [1740] = {.lex_state = 275, .external_lex_state = 5}, + [1741] = {.lex_state = 275, .external_lex_state = 5}, + [1742] = {.lex_state = 275, .external_lex_state = 5}, + [1743] = {.lex_state = 275, .external_lex_state = 5}, + [1744] = {.lex_state = 222, .external_lex_state = 2}, + [1745] = {.lex_state = 222, .external_lex_state = 2}, + [1746] = {.lex_state = 285, .external_lex_state = 2}, + [1747] = {.lex_state = 209, .external_lex_state = 2}, + [1748] = {.lex_state = 209, .external_lex_state = 2}, + [1749] = {.lex_state = 209, .external_lex_state = 2}, + [1750] = {.lex_state = 209, .external_lex_state = 2}, [1751] = {.lex_state = 209, .external_lex_state = 2}, [1752] = {.lex_state = 209, .external_lex_state = 2}, [1753] = {.lex_state = 209, .external_lex_state = 2}, - [1754] = {.lex_state = 212, .external_lex_state = 2}, - [1755] = {.lex_state = 222, .external_lex_state = 2}, + [1754] = {.lex_state = 209, .external_lex_state = 2}, + [1755] = {.lex_state = 209, .external_lex_state = 2}, [1756] = {.lex_state = 209, .external_lex_state = 2}, [1757] = {.lex_state = 209, .external_lex_state = 2}, - [1758] = {.lex_state = 222, .external_lex_state = 2}, - [1759] = {.lex_state = 209, .external_lex_state = 2}, + [1758] = {.lex_state = 209, .external_lex_state = 2}, + [1759] = {.lex_state = 271, .external_lex_state = 6}, [1760] = {.lex_state = 222, .external_lex_state = 2}, - [1761] = {.lex_state = 209, .external_lex_state = 2}, - [1762] = {.lex_state = 212, .external_lex_state = 2}, - [1763] = {.lex_state = 209, .external_lex_state = 2}, + [1761] = {.lex_state = 222, .external_lex_state = 2}, + [1762] = {.lex_state = 222, .external_lex_state = 2}, + [1763] = {.lex_state = 222, .external_lex_state = 2}, [1764] = {.lex_state = 209, .external_lex_state = 2}, - [1765] = {.lex_state = 212, .external_lex_state = 2}, - [1766] = {.lex_state = 209, .external_lex_state = 2}, + [1765] = {.lex_state = 222, .external_lex_state = 2}, + [1766] = {.lex_state = 222, .external_lex_state = 2}, [1767] = {.lex_state = 222, .external_lex_state = 2}, [1768] = {.lex_state = 209, .external_lex_state = 2}, [1769] = {.lex_state = 222, .external_lex_state = 2}, - [1770] = {.lex_state = 212, .external_lex_state = 2}, - [1771] = {.lex_state = 222, .external_lex_state = 2}, - [1772] = {.lex_state = 271, .external_lex_state = 6}, + [1770] = {.lex_state = 222, .external_lex_state = 2}, + [1771] = {.lex_state = 209, .external_lex_state = 2}, + [1772] = {.lex_state = 209, .external_lex_state = 2}, [1773] = {.lex_state = 222, .external_lex_state = 2}, [1774] = {.lex_state = 222, .external_lex_state = 2}, - [1775] = {.lex_state = 222, .external_lex_state = 2}, - [1776] = {.lex_state = 209, .external_lex_state = 2}, + [1775] = {.lex_state = 209, .external_lex_state = 2}, + [1776] = {.lex_state = 222, .external_lex_state = 2}, [1777] = {.lex_state = 222, .external_lex_state = 2}, [1778] = {.lex_state = 222, .external_lex_state = 2}, - [1779] = {.lex_state = 209, .external_lex_state = 2}, - [1780] = {.lex_state = 209, .external_lex_state = 2}, + [1779] = {.lex_state = 222, .external_lex_state = 2}, + [1780] = {.lex_state = 222, .external_lex_state = 2}, [1781] = {.lex_state = 222, .external_lex_state = 2}, - [1782] = {.lex_state = 209, .external_lex_state = 2}, - [1783] = {.lex_state = 209, .external_lex_state = 2}, - [1784] = {.lex_state = 209, .external_lex_state = 2}, + [1782] = {.lex_state = 212, .external_lex_state = 2}, + [1783] = {.lex_state = 212, .external_lex_state = 2}, + [1784] = {.lex_state = 212, .external_lex_state = 2}, [1785] = {.lex_state = 212, .external_lex_state = 2}, - [1786] = {.lex_state = 209, .external_lex_state = 2}, - [1787] = {.lex_state = 285, .external_lex_state = 2}, - [1788] = {.lex_state = 209, .external_lex_state = 2}, + [1786] = {.lex_state = 212, .external_lex_state = 2}, + [1787] = {.lex_state = 212, .external_lex_state = 2}, + [1788] = {.lex_state = 212, .external_lex_state = 2}, [1789] = {.lex_state = 212, .external_lex_state = 2}, [1790] = {.lex_state = 212, .external_lex_state = 2}, - [1791] = {.lex_state = 222, .external_lex_state = 2}, + [1791] = {.lex_state = 212, .external_lex_state = 2}, [1792] = {.lex_state = 212, .external_lex_state = 2}, - [1793] = {.lex_state = 209, .external_lex_state = 2}, - [1794] = {.lex_state = 285, .external_lex_state = 2}, - [1795] = {.lex_state = 285, .external_lex_state = 2}, - [1796] = {.lex_state = 209, .external_lex_state = 2}, - [1797] = {.lex_state = 209, .external_lex_state = 2}, - [1798] = {.lex_state = 212, .external_lex_state = 2}, + [1793] = {.lex_state = 212, .external_lex_state = 2}, + [1794] = {.lex_state = 212, .external_lex_state = 2}, + [1795] = {.lex_state = 212, .external_lex_state = 2}, + [1796] = {.lex_state = 212, .external_lex_state = 2}, + [1797] = {.lex_state = 212, .external_lex_state = 2}, + [1798] = {.lex_state = 209, .external_lex_state = 2}, [1799] = {.lex_state = 209, .external_lex_state = 2}, - [1800] = {.lex_state = 212, .external_lex_state = 2}, + [1800] = {.lex_state = 209, .external_lex_state = 2}, [1801] = {.lex_state = 209, .external_lex_state = 2}, - [1802] = {.lex_state = 212, .external_lex_state = 2}, - [1803] = {.lex_state = 222, .external_lex_state = 2}, - [1804] = {.lex_state = 222, .external_lex_state = 2}, + [1802] = {.lex_state = 209, .external_lex_state = 2}, + [1803] = {.lex_state = 209, .external_lex_state = 2}, + [1804] = {.lex_state = 209, .external_lex_state = 2}, [1805] = {.lex_state = 222, .external_lex_state = 2}, [1806] = {.lex_state = 222, .external_lex_state = 2}, [1807] = {.lex_state = 222, .external_lex_state = 2}, - [1808] = {.lex_state = 212, .external_lex_state = 2}, + [1808] = {.lex_state = 222, .external_lex_state = 2}, [1809] = {.lex_state = 222, .external_lex_state = 2}, [1810] = {.lex_state = 222, .external_lex_state = 2}, [1811] = {.lex_state = 222, .external_lex_state = 2}, [1812] = {.lex_state = 209, .external_lex_state = 2}, - [1813] = {.lex_state = 222, .external_lex_state = 2}, - [1814] = {.lex_state = 222, .external_lex_state = 2}, - [1815] = {.lex_state = 212, .external_lex_state = 2}, + [1813] = {.lex_state = 285, .external_lex_state = 2}, + [1814] = {.lex_state = 285, .external_lex_state = 2}, + [1815] = {.lex_state = 285, .external_lex_state = 2}, [1816] = {.lex_state = 212, .external_lex_state = 2}, [1817] = {.lex_state = 212, .external_lex_state = 2}, [1818] = {.lex_state = 212, .external_lex_state = 2}, @@ -36854,413 +36853,413 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1838] = {.lex_state = 212, .external_lex_state = 2}, [1839] = {.lex_state = 212, .external_lex_state = 2}, [1840] = {.lex_state = 212, .external_lex_state = 2}, - [1841] = {.lex_state = 257, .external_lex_state = 2}, - [1842] = {.lex_state = 225, .external_lex_state = 2}, + [1841] = {.lex_state = 225, .external_lex_state = 2}, + [1842] = {.lex_state = 257, .external_lex_state = 2}, [1843] = {.lex_state = 225, .external_lex_state = 2}, - [1844] = {.lex_state = 225, .external_lex_state = 2}, - [1845] = {.lex_state = 225, .external_lex_state = 2}, - [1846] = {.lex_state = 225, .external_lex_state = 2}, + [1844] = {.lex_state = 257, .external_lex_state = 2}, + [1845] = {.lex_state = 257, .external_lex_state = 2}, + [1846] = {.lex_state = 257, .external_lex_state = 2}, [1847] = {.lex_state = 225, .external_lex_state = 2}, - [1848] = {.lex_state = 225, .external_lex_state = 2}, - [1849] = {.lex_state = 225, .external_lex_state = 2}, - [1850] = {.lex_state = 225, .external_lex_state = 2}, - [1851] = {.lex_state = 257, .external_lex_state = 2}, - [1852] = {.lex_state = 257, .external_lex_state = 2}, - [1853] = {.lex_state = 257, .external_lex_state = 2}, - [1854] = {.lex_state = 257, .external_lex_state = 2}, + [1848] = {.lex_state = 257, .external_lex_state = 2}, + [1849] = {.lex_state = 257, .external_lex_state = 2}, + [1850] = {.lex_state = 257, .external_lex_state = 2}, + [1851] = {.lex_state = 225, .external_lex_state = 2}, + [1852] = {.lex_state = 225, .external_lex_state = 2}, + [1853] = {.lex_state = 225, .external_lex_state = 2}, + [1854] = {.lex_state = 225, .external_lex_state = 2}, [1855] = {.lex_state = 257, .external_lex_state = 2}, [1856] = {.lex_state = 257, .external_lex_state = 2}, [1857] = {.lex_state = 257, .external_lex_state = 2}, - [1858] = {.lex_state = 257, .external_lex_state = 2}, + [1858] = {.lex_state = 225, .external_lex_state = 2}, [1859] = {.lex_state = 257, .external_lex_state = 2}, - [1860] = {.lex_state = 257, .external_lex_state = 2}, - [1861] = {.lex_state = 257, .external_lex_state = 2}, - [1862] = {.lex_state = 257, .external_lex_state = 2}, - [1863] = {.lex_state = 257, .external_lex_state = 2}, - [1864] = {.lex_state = 257, .external_lex_state = 2}, - [1865] = {.lex_state = 257, .external_lex_state = 2}, - [1866] = {.lex_state = 225, .external_lex_state = 2}, + [1860] = {.lex_state = 225, .external_lex_state = 2}, + [1861] = {.lex_state = 225, .external_lex_state = 2}, + [1862] = {.lex_state = 225, .external_lex_state = 2}, + [1863] = {.lex_state = 225, .external_lex_state = 2}, + [1864] = {.lex_state = 225, .external_lex_state = 2}, + [1865] = {.lex_state = 225, .external_lex_state = 2}, + [1866] = {.lex_state = 257, .external_lex_state = 2}, [1867] = {.lex_state = 225, .external_lex_state = 2}, - [1868] = {.lex_state = 225, .external_lex_state = 2}, - [1869] = {.lex_state = 225, .external_lex_state = 2}, - [1870] = {.lex_state = 225, .external_lex_state = 2}, + [1868] = {.lex_state = 257, .external_lex_state = 2}, + [1869] = {.lex_state = 257, .external_lex_state = 2}, + [1870] = {.lex_state = 257, .external_lex_state = 2}, [1871] = {.lex_state = 225, .external_lex_state = 2}, - [1872] = {.lex_state = 225, .external_lex_state = 2}, - [1873] = {.lex_state = 228, .external_lex_state = 2}, - [1874] = {.lex_state = 225, .external_lex_state = 2}, - [1875] = {.lex_state = 221, .external_lex_state = 2}, - [1876] = {.lex_state = 225, .external_lex_state = 2}, - [1877] = {.lex_state = 225, .external_lex_state = 2}, - [1878] = {.lex_state = 225, .external_lex_state = 2}, - [1879] = {.lex_state = 225, .external_lex_state = 2}, - [1880] = {.lex_state = 221, .external_lex_state = 2}, - [1881] = {.lex_state = 233, .external_lex_state = 2}, - [1882] = {.lex_state = 259, .external_lex_state = 2}, - [1883] = {.lex_state = 257, .external_lex_state = 2}, + [1872] = {.lex_state = 257, .external_lex_state = 2}, + [1873] = {.lex_state = 231, .external_lex_state = 2}, + [1874] = {.lex_state = 221, .external_lex_state = 2}, + [1875] = {.lex_state = 228, .external_lex_state = 2}, + [1876] = {.lex_state = 223, .external_lex_state = 2}, + [1877] = {.lex_state = 221, .external_lex_state = 2}, + [1878] = {.lex_state = 228, .external_lex_state = 2}, + [1879] = {.lex_state = 228, .external_lex_state = 2}, + [1880] = {.lex_state = 257, .external_lex_state = 2}, + [1881] = {.lex_state = 223, .external_lex_state = 2}, + [1882] = {.lex_state = 223, .external_lex_state = 2}, + [1883] = {.lex_state = 228, .external_lex_state = 2}, [1884] = {.lex_state = 257, .external_lex_state = 2}, - [1885] = {.lex_state = 257, .external_lex_state = 2}, - [1886] = {.lex_state = 259, .external_lex_state = 2}, - [1887] = {.lex_state = 259, .external_lex_state = 2}, - [1888] = {.lex_state = 257, .external_lex_state = 2}, - [1889] = {.lex_state = 231, .external_lex_state = 2}, + [1885] = {.lex_state = 228, .external_lex_state = 2}, + [1886] = {.lex_state = 257, .external_lex_state = 2}, + [1887] = {.lex_state = 223, .external_lex_state = 2}, + [1888] = {.lex_state = 223, .external_lex_state = 2}, + [1889] = {.lex_state = 259, .external_lex_state = 2}, [1890] = {.lex_state = 257, .external_lex_state = 2}, - [1891] = {.lex_state = 231, .external_lex_state = 2}, - [1892] = {.lex_state = 259, .external_lex_state = 2}, - [1893] = {.lex_state = 259, .external_lex_state = 2}, - [1894] = {.lex_state = 257, .external_lex_state = 2}, - [1895] = {.lex_state = 231, .external_lex_state = 2}, - [1896] = {.lex_state = 257, .external_lex_state = 2}, - [1897] = {.lex_state = 231, .external_lex_state = 2}, - [1898] = {.lex_state = 259, .external_lex_state = 2}, + [1891] = {.lex_state = 221, .external_lex_state = 2}, + [1892] = {.lex_state = 225, .external_lex_state = 2}, + [1893] = {.lex_state = 223, .external_lex_state = 2}, + [1894] = {.lex_state = 223, .external_lex_state = 2}, + [1895] = {.lex_state = 221, .external_lex_state = 2}, + [1896] = {.lex_state = 221, .external_lex_state = 2}, + [1897] = {.lex_state = 221, .external_lex_state = 2}, + [1898] = {.lex_state = 223, .external_lex_state = 2}, [1899] = {.lex_state = 259, .external_lex_state = 2}, - [1900] = {.lex_state = 257, .external_lex_state = 2}, - [1901] = {.lex_state = 257, .external_lex_state = 2}, - [1902] = {.lex_state = 259, .external_lex_state = 2}, - [1903] = {.lex_state = 257, .external_lex_state = 2}, - [1904] = {.lex_state = 233, .external_lex_state = 2}, - [1905] = {.lex_state = 231, .external_lex_state = 2}, - [1906] = {.lex_state = 282, .external_lex_state = 2}, - [1907] = {.lex_state = 231, .external_lex_state = 2}, - [1908] = {.lex_state = 257, .external_lex_state = 2}, - [1909] = {.lex_state = 231, .external_lex_state = 2}, - [1910] = {.lex_state = 233, .external_lex_state = 2}, - [1911] = {.lex_state = 257, .external_lex_state = 2}, - [1912] = {.lex_state = 231, .external_lex_state = 2}, - [1913] = {.lex_state = 257, .external_lex_state = 2}, - [1914] = {.lex_state = 221, .external_lex_state = 2}, - [1915] = {.lex_state = 257, .external_lex_state = 2}, - [1916] = {.lex_state = 221, .external_lex_state = 2}, - [1917] = {.lex_state = 257, .external_lex_state = 2}, + [1900] = {.lex_state = 233, .external_lex_state = 2}, + [1901] = {.lex_state = 233, .external_lex_state = 2}, + [1902] = {.lex_state = 224, .external_lex_state = 2}, + [1903] = {.lex_state = 224, .external_lex_state = 2}, + [1904] = {.lex_state = 224, .external_lex_state = 2}, + [1905] = {.lex_state = 224, .external_lex_state = 2}, + [1906] = {.lex_state = 224, .external_lex_state = 2}, + [1907] = {.lex_state = 224, .external_lex_state = 2}, + [1908] = {.lex_state = 224, .external_lex_state = 2}, + [1909] = {.lex_state = 224, .external_lex_state = 2}, + [1910] = {.lex_state = 225, .external_lex_state = 2}, + [1911] = {.lex_state = 228, .external_lex_state = 2}, + [1912] = {.lex_state = 259, .external_lex_state = 2}, + [1913] = {.lex_state = 225, .external_lex_state = 2}, + [1914] = {.lex_state = 225, .external_lex_state = 2}, + [1915] = {.lex_state = 221, .external_lex_state = 2}, + [1916] = {.lex_state = 225, .external_lex_state = 2}, + [1917] = {.lex_state = 233, .external_lex_state = 2}, [1918] = {.lex_state = 225, .external_lex_state = 2}, - [1919] = {.lex_state = 257, .external_lex_state = 2}, - [1920] = {.lex_state = 221, .external_lex_state = 2}, - [1921] = {.lex_state = 257, .external_lex_state = 2}, + [1919] = {.lex_state = 225, .external_lex_state = 2}, + [1920] = {.lex_state = 257, .external_lex_state = 2}, + [1921] = {.lex_state = 225, .external_lex_state = 2}, [1922] = {.lex_state = 257, .external_lex_state = 2}, [1923] = {.lex_state = 225, .external_lex_state = 2}, - [1924] = {.lex_state = 221, .external_lex_state = 2}, + [1924] = {.lex_state = 257, .external_lex_state = 2}, [1925] = {.lex_state = 225, .external_lex_state = 2}, - [1926] = {.lex_state = 225, .external_lex_state = 2}, - [1927] = {.lex_state = 233, .external_lex_state = 2}, - [1928] = {.lex_state = 231, .external_lex_state = 2}, + [1926] = {.lex_state = 257, .external_lex_state = 2}, + [1927] = {.lex_state = 225, .external_lex_state = 2}, + [1928] = {.lex_state = 259, .external_lex_state = 2}, [1929] = {.lex_state = 225, .external_lex_state = 2}, - [1930] = {.lex_state = 221, .external_lex_state = 2}, - [1931] = {.lex_state = 225, .external_lex_state = 2}, - [1932] = {.lex_state = 225, .external_lex_state = 2}, - [1933] = {.lex_state = 225, .external_lex_state = 2}, + [1930] = {.lex_state = 225, .external_lex_state = 2}, + [1931] = {.lex_state = 221, .external_lex_state = 2}, + [1932] = {.lex_state = 221, .external_lex_state = 2}, + [1933] = {.lex_state = 259, .external_lex_state = 2}, [1934] = {.lex_state = 221, .external_lex_state = 2}, [1935] = {.lex_state = 225, .external_lex_state = 2}, [1936] = {.lex_state = 225, .external_lex_state = 2}, [1937] = {.lex_state = 225, .external_lex_state = 2}, - [1938] = {.lex_state = 221, .external_lex_state = 2}, + [1938] = {.lex_state = 225, .external_lex_state = 2}, [1939] = {.lex_state = 225, .external_lex_state = 2}, [1940] = {.lex_state = 225, .external_lex_state = 2}, - [1941] = {.lex_state = 231, .external_lex_state = 2}, - [1942] = {.lex_state = 233, .external_lex_state = 2}, - [1943] = {.lex_state = 259, .external_lex_state = 2}, - [1944] = {.lex_state = 259, .external_lex_state = 2}, - [1945] = {.lex_state = 259, .external_lex_state = 2}, - [1946] = {.lex_state = 259, .external_lex_state = 2}, - [1947] = {.lex_state = 259, .external_lex_state = 2}, - [1948] = {.lex_state = 259, .external_lex_state = 2}, - [1949] = {.lex_state = 259, .external_lex_state = 2}, - [1950] = {.lex_state = 259, .external_lex_state = 2}, - [1951] = {.lex_state = 231, .external_lex_state = 2}, - [1952] = {.lex_state = 231, .external_lex_state = 2}, - [1953] = {.lex_state = 231, .external_lex_state = 2}, - [1954] = {.lex_state = 231, .external_lex_state = 2}, - [1955] = {.lex_state = 228, .external_lex_state = 2}, - [1956] = {.lex_state = 228, .external_lex_state = 2}, - [1957] = {.lex_state = 228, .external_lex_state = 2}, - [1958] = {.lex_state = 228, .external_lex_state = 2}, - [1959] = {.lex_state = 228, .external_lex_state = 2}, - [1960] = {.lex_state = 228, .external_lex_state = 2}, - [1961] = {.lex_state = 221, .external_lex_state = 2}, - [1962] = {.lex_state = 228, .external_lex_state = 2}, - [1963] = {.lex_state = 231, .external_lex_state = 2}, - [1964] = {.lex_state = 223, .external_lex_state = 2}, - [1965] = {.lex_state = 231, .external_lex_state = 2}, - [1966] = {.lex_state = 223, .external_lex_state = 2}, - [1967] = {.lex_state = 223, .external_lex_state = 2}, - [1968] = {.lex_state = 231, .external_lex_state = 2}, - [1969] = {.lex_state = 231, .external_lex_state = 2}, - [1970] = {.lex_state = 223, .external_lex_state = 2}, - [1971] = {.lex_state = 223, .external_lex_state = 2}, - [1972] = {.lex_state = 223, .external_lex_state = 2}, - [1973] = {.lex_state = 221, .external_lex_state = 2}, - [1974] = {.lex_state = 223, .external_lex_state = 2}, - [1975] = {.lex_state = 224, .external_lex_state = 2}, - [1976] = {.lex_state = 224, .external_lex_state = 2}, - [1977] = {.lex_state = 224, .external_lex_state = 2}, - [1978] = {.lex_state = 224, .external_lex_state = 2}, - [1979] = {.lex_state = 224, .external_lex_state = 2}, - [1980] = {.lex_state = 224, .external_lex_state = 2}, - [1981] = {.lex_state = 224, .external_lex_state = 2}, - [1982] = {.lex_state = 224, .external_lex_state = 2}, - [1983] = {.lex_state = 231, .external_lex_state = 2}, - [1984] = {.lex_state = 231, .external_lex_state = 2}, - [1985] = {.lex_state = 231, .external_lex_state = 2}, - [1986] = {.lex_state = 231, .external_lex_state = 2}, - [1987] = {.lex_state = 221, .external_lex_state = 2}, - [1988] = {.lex_state = 225, .external_lex_state = 2}, - [1989] = {.lex_state = 225, .external_lex_state = 2}, - [1990] = {.lex_state = 225, .external_lex_state = 2}, - [1991] = {.lex_state = 225, .external_lex_state = 2}, - [1992] = {.lex_state = 225, .external_lex_state = 2}, - [1993] = {.lex_state = 225, .external_lex_state = 2}, - [1994] = {.lex_state = 223, .external_lex_state = 2}, - [1995] = {.lex_state = 225, .external_lex_state = 2}, - [1996] = {.lex_state = 223, .external_lex_state = 2}, - [1997] = {.lex_state = 223, .external_lex_state = 2}, - [1998] = {.lex_state = 223, .external_lex_state = 2}, - [1999] = {.lex_state = 223, .external_lex_state = 2}, - [2000] = {.lex_state = 223, .external_lex_state = 2}, - [2001] = {.lex_state = 223, .external_lex_state = 2}, - [2002] = {.lex_state = 223, .external_lex_state = 2}, - [2003] = {.lex_state = 224, .external_lex_state = 2}, - [2004] = {.lex_state = 224, .external_lex_state = 2}, - [2005] = {.lex_state = 224, .external_lex_state = 2}, - [2006] = {.lex_state = 224, .external_lex_state = 2}, - [2007] = {.lex_state = 224, .external_lex_state = 2}, - [2008] = {.lex_state = 224, .external_lex_state = 2}, - [2009] = {.lex_state = 224, .external_lex_state = 2}, - [2010] = {.lex_state = 224, .external_lex_state = 2}, - [2011] = {.lex_state = 231, .external_lex_state = 2}, + [1941] = {.lex_state = 223, .external_lex_state = 2}, + [1942] = {.lex_state = 225, .external_lex_state = 2}, + [1943] = {.lex_state = 223, .external_lex_state = 2}, + [1944] = {.lex_state = 223, .external_lex_state = 2}, + [1945] = {.lex_state = 223, .external_lex_state = 2}, + [1946] = {.lex_state = 223, .external_lex_state = 2}, + [1947] = {.lex_state = 223, .external_lex_state = 2}, + [1948] = {.lex_state = 223, .external_lex_state = 2}, + [1949] = {.lex_state = 223, .external_lex_state = 2}, + [1950] = {.lex_state = 224, .external_lex_state = 2}, + [1951] = {.lex_state = 224, .external_lex_state = 2}, + [1952] = {.lex_state = 224, .external_lex_state = 2}, + [1953] = {.lex_state = 224, .external_lex_state = 2}, + [1954] = {.lex_state = 224, .external_lex_state = 2}, + [1955] = {.lex_state = 224, .external_lex_state = 2}, + [1956] = {.lex_state = 224, .external_lex_state = 2}, + [1957] = {.lex_state = 224, .external_lex_state = 2}, + [1958] = {.lex_state = 259, .external_lex_state = 2}, + [1959] = {.lex_state = 221, .external_lex_state = 2}, + [1960] = {.lex_state = 233, .external_lex_state = 2}, + [1961] = {.lex_state = 259, .external_lex_state = 2}, + [1962] = {.lex_state = 259, .external_lex_state = 2}, + [1963] = {.lex_state = 259, .external_lex_state = 2}, + [1964] = {.lex_state = 259, .external_lex_state = 2}, + [1965] = {.lex_state = 259, .external_lex_state = 2}, + [1966] = {.lex_state = 259, .external_lex_state = 2}, + [1967] = {.lex_state = 259, .external_lex_state = 2}, + [1968] = {.lex_state = 259, .external_lex_state = 2}, + [1969] = {.lex_state = 233, .external_lex_state = 2}, + [1970] = {.lex_state = 257, .external_lex_state = 2}, + [1971] = {.lex_state = 221, .external_lex_state = 2}, + [1972] = {.lex_state = 221, .external_lex_state = 2}, + [1973] = {.lex_state = 257, .external_lex_state = 2}, + [1974] = {.lex_state = 221, .external_lex_state = 2}, + [1975] = {.lex_state = 221, .external_lex_state = 2}, + [1976] = {.lex_state = 228, .external_lex_state = 2}, + [1977] = {.lex_state = 233, .external_lex_state = 2}, + [1978] = {.lex_state = 228, .external_lex_state = 2}, + [1979] = {.lex_state = 221, .external_lex_state = 2}, + [1980] = {.lex_state = 257, .external_lex_state = 2}, + [1981] = {.lex_state = 221, .external_lex_state = 2}, + [1982] = {.lex_state = 221, .external_lex_state = 2}, + [1983] = {.lex_state = 257, .external_lex_state = 2}, + [1984] = {.lex_state = 257, .external_lex_state = 2}, + [1985] = {.lex_state = 257, .external_lex_state = 2}, + [1986] = {.lex_state = 257, .external_lex_state = 2}, + [1987] = {.lex_state = 257, .external_lex_state = 2}, + [1988] = {.lex_state = 257, .external_lex_state = 2}, + [1989] = {.lex_state = 257, .external_lex_state = 2}, + [1990] = {.lex_state = 221, .external_lex_state = 2}, + [1991] = {.lex_state = 257, .external_lex_state = 2}, + [1992] = {.lex_state = 257, .external_lex_state = 2}, + [1993] = {.lex_state = 233, .external_lex_state = 2}, + [1994] = {.lex_state = 233, .external_lex_state = 2}, + [1995] = {.lex_state = 259, .external_lex_state = 2}, + [1996] = {.lex_state = 221, .external_lex_state = 2}, + [1997] = {.lex_state = 257, .external_lex_state = 2}, + [1998] = {.lex_state = 257, .external_lex_state = 2}, + [1999] = {.lex_state = 257, .external_lex_state = 2}, + [2000] = {.lex_state = 228, .external_lex_state = 2}, + [2001] = {.lex_state = 228, .external_lex_state = 2}, + [2002] = {.lex_state = 257, .external_lex_state = 2}, + [2003] = {.lex_state = 233, .external_lex_state = 2}, + [2004] = {.lex_state = 233, .external_lex_state = 2}, + [2005] = {.lex_state = 228, .external_lex_state = 2}, + [2006] = {.lex_state = 228, .external_lex_state = 2}, + [2007] = {.lex_state = 228, .external_lex_state = 2}, + [2008] = {.lex_state = 228, .external_lex_state = 2}, + [2009] = {.lex_state = 233, .external_lex_state = 2}, + [2010] = {.lex_state = 233, .external_lex_state = 2}, + [2011] = {.lex_state = 233, .external_lex_state = 2}, [2012] = {.lex_state = 231, .external_lex_state = 2}, - [2013] = {.lex_state = 221, .external_lex_state = 2}, - [2014] = {.lex_state = 257, .external_lex_state = 2}, - [2015] = {.lex_state = 257, .external_lex_state = 2}, - [2016] = {.lex_state = 257, .external_lex_state = 2}, - [2017] = {.lex_state = 257, .external_lex_state = 2}, - [2018] = {.lex_state = 257, .external_lex_state = 2}, - [2019] = {.lex_state = 257, .external_lex_state = 2}, - [2020] = {.lex_state = 257, .external_lex_state = 2}, - [2021] = {.lex_state = 233, .external_lex_state = 2}, - [2022] = {.lex_state = 233, .external_lex_state = 2}, - [2023] = {.lex_state = 233, .external_lex_state = 2}, - [2024] = {.lex_state = 233, .external_lex_state = 2}, - [2025] = {.lex_state = 228, .external_lex_state = 2}, - [2026] = {.lex_state = 228, .external_lex_state = 2}, - [2027] = {.lex_state = 221, .external_lex_state = 2}, + [2013] = {.lex_state = 225, .external_lex_state = 2}, + [2014] = {.lex_state = 231, .external_lex_state = 2}, + [2015] = {.lex_state = 231, .external_lex_state = 2}, + [2016] = {.lex_state = 231, .external_lex_state = 2}, + [2017] = {.lex_state = 228, .external_lex_state = 2}, + [2018] = {.lex_state = 228, .external_lex_state = 2}, + [2019] = {.lex_state = 228, .external_lex_state = 2}, + [2020] = {.lex_state = 225, .external_lex_state = 2}, + [2021] = {.lex_state = 225, .external_lex_state = 2}, + [2022] = {.lex_state = 231, .external_lex_state = 2}, + [2023] = {.lex_state = 228, .external_lex_state = 2}, + [2024] = {.lex_state = 231, .external_lex_state = 2}, + [2025] = {.lex_state = 231, .external_lex_state = 2}, + [2026] = {.lex_state = 231, .external_lex_state = 2}, + [2027] = {.lex_state = 233, .external_lex_state = 2}, [2028] = {.lex_state = 221, .external_lex_state = 2}, [2029] = {.lex_state = 221, .external_lex_state = 2}, - [2030] = {.lex_state = 221, .external_lex_state = 2}, - [2031] = {.lex_state = 228, .external_lex_state = 2}, - [2032] = {.lex_state = 228, .external_lex_state = 2}, - [2033] = {.lex_state = 228, .external_lex_state = 2}, - [2034] = {.lex_state = 228, .external_lex_state = 2}, - [2035] = {.lex_state = 233, .external_lex_state = 2}, - [2036] = {.lex_state = 233, .external_lex_state = 2}, - [2037] = {.lex_state = 233, .external_lex_state = 2}, - [2038] = {.lex_state = 228, .external_lex_state = 2}, - [2039] = {.lex_state = 233, .external_lex_state = 2}, - [2040] = {.lex_state = 228, .external_lex_state = 2}, - [2041] = {.lex_state = 233, .external_lex_state = 2}, - [2042] = {.lex_state = 228, .external_lex_state = 2}, - [2043] = {.lex_state = 228, .external_lex_state = 2}, + [2030] = {.lex_state = 231, .external_lex_state = 2}, + [2031] = {.lex_state = 225, .external_lex_state = 2}, + [2032] = {.lex_state = 225, .external_lex_state = 2}, + [2033] = {.lex_state = 231, .external_lex_state = 2}, + [2034] = {.lex_state = 233, .external_lex_state = 2}, + [2035] = {.lex_state = 231, .external_lex_state = 2}, + [2036] = {.lex_state = 282, .external_lex_state = 2}, + [2037] = {.lex_state = 231, .external_lex_state = 2}, + [2038] = {.lex_state = 233, .external_lex_state = 2}, + [2039] = {.lex_state = 228, .external_lex_state = 2}, + [2040] = {.lex_state = 231, .external_lex_state = 2}, + [2041] = {.lex_state = 231, .external_lex_state = 2}, + [2042] = {.lex_state = 231, .external_lex_state = 2}, + [2043] = {.lex_state = 231, .external_lex_state = 2}, [2044] = {.lex_state = 228, .external_lex_state = 2}, [2045] = {.lex_state = 228, .external_lex_state = 2}, [2046] = {.lex_state = 228, .external_lex_state = 2}, - [2047] = {.lex_state = 228, .external_lex_state = 2}, - [2048] = {.lex_state = 228, .external_lex_state = 2}, - [2049] = {.lex_state = 228, .external_lex_state = 2}, - [2050] = {.lex_state = 221, .external_lex_state = 2}, - [2051] = {.lex_state = 233, .external_lex_state = 2}, - [2052] = {.lex_state = 221, .external_lex_state = 2}, - [2053] = {.lex_state = 221, .external_lex_state = 2}, - [2054] = {.lex_state = 221, .external_lex_state = 2}, - [2055] = {.lex_state = 233, .external_lex_state = 2}, - [2056] = {.lex_state = 221, .external_lex_state = 2}, - [2057] = {.lex_state = 221, .external_lex_state = 2}, + [2047] = {.lex_state = 231, .external_lex_state = 2}, + [2048] = {.lex_state = 221, .external_lex_state = 2}, + [2049] = {.lex_state = 259, .external_lex_state = 2}, + [2050] = {.lex_state = 231, .external_lex_state = 2}, + [2051] = {.lex_state = 231, .external_lex_state = 2}, + [2052] = {.lex_state = 231, .external_lex_state = 2}, + [2053] = {.lex_state = 228, .external_lex_state = 2}, + [2054] = {.lex_state = 228, .external_lex_state = 2}, + [2055] = {.lex_state = 231, .external_lex_state = 2}, + [2056] = {.lex_state = 231, .external_lex_state = 2}, + [2057] = {.lex_state = 231, .external_lex_state = 2}, [2058] = {.lex_state = 221, .external_lex_state = 2}, - [2059] = {.lex_state = 223, .external_lex_state = 2}, - [2060] = {.lex_state = 234, .external_lex_state = 2}, - [2061] = {.lex_state = 229, .external_lex_state = 2}, - [2062] = {.lex_state = 229, .external_lex_state = 2}, - [2063] = {.lex_state = 221, .external_lex_state = 2}, + [2059] = {.lex_state = 257, .external_lex_state = 2}, + [2060] = {.lex_state = 235, .external_lex_state = 2}, + [2061] = {.lex_state = 259, .external_lex_state = 2}, + [2062] = {.lex_state = 236, .external_lex_state = 2}, + [2063] = {.lex_state = 236, .external_lex_state = 2}, [2064] = {.lex_state = 221, .external_lex_state = 2}, - [2065] = {.lex_state = 221, .external_lex_state = 2}, - [2066] = {.lex_state = 233, .external_lex_state = 2}, - [2067] = {.lex_state = 236, .external_lex_state = 2}, + [2065] = {.lex_state = 233, .external_lex_state = 2}, + [2066] = {.lex_state = 229, .external_lex_state = 2}, + [2067] = {.lex_state = 228, .external_lex_state = 2}, [2068] = {.lex_state = 221, .external_lex_state = 2}, - [2069] = {.lex_state = 232, .external_lex_state = 2}, - [2070] = {.lex_state = 221, .external_lex_state = 2}, - [2071] = {.lex_state = 221, .external_lex_state = 2}, + [2069] = {.lex_state = 221, .external_lex_state = 2}, + [2070] = {.lex_state = 229, .external_lex_state = 2}, + [2071] = {.lex_state = 229, .external_lex_state = 2}, [2072] = {.lex_state = 233, .external_lex_state = 2}, - [2073] = {.lex_state = 232, .external_lex_state = 2}, - [2074] = {.lex_state = 233, .external_lex_state = 2}, - [2075] = {.lex_state = 233, .external_lex_state = 2}, - [2076] = {.lex_state = 233, .external_lex_state = 2}, - [2077] = {.lex_state = 233, .external_lex_state = 2}, - [2078] = {.lex_state = 233, .external_lex_state = 2}, - [2079] = {.lex_state = 233, .external_lex_state = 2}, - [2080] = {.lex_state = 233, .external_lex_state = 2}, + [2073] = {.lex_state = 226, .external_lex_state = 2}, + [2074] = {.lex_state = 226, .external_lex_state = 2}, + [2075] = {.lex_state = 226, .external_lex_state = 2}, + [2076] = {.lex_state = 235, .external_lex_state = 2}, + [2077] = {.lex_state = 228, .external_lex_state = 2}, + [2078] = {.lex_state = 226, .external_lex_state = 2}, + [2079] = {.lex_state = 226, .external_lex_state = 2}, + [2080] = {.lex_state = 226, .external_lex_state = 2}, [2081] = {.lex_state = 226, .external_lex_state = 2}, - [2082] = {.lex_state = 226, .external_lex_state = 2}, - [2083] = {.lex_state = 236, .external_lex_state = 2}, - [2084] = {.lex_state = 231, .external_lex_state = 2}, - [2085] = {.lex_state = 226, .external_lex_state = 2}, - [2086] = {.lex_state = 226, .external_lex_state = 2}, - [2087] = {.lex_state = 231, .external_lex_state = 2}, - [2088] = {.lex_state = 226, .external_lex_state = 2}, - [2089] = {.lex_state = 226, .external_lex_state = 2}, - [2090] = {.lex_state = 231, .external_lex_state = 2}, - [2091] = {.lex_state = 236, .external_lex_state = 2}, - [2092] = {.lex_state = 226, .external_lex_state = 2}, - [2093] = {.lex_state = 229, .external_lex_state = 2}, - [2094] = {.lex_state = 229, .external_lex_state = 2}, - [2095] = {.lex_state = 231, .external_lex_state = 2}, - [2096] = {.lex_state = 235, .external_lex_state = 2}, - [2097] = {.lex_state = 231, .external_lex_state = 2}, - [2098] = {.lex_state = 232, .external_lex_state = 2}, - [2099] = {.lex_state = 259, .external_lex_state = 2}, - [2100] = {.lex_state = 235, .external_lex_state = 2}, - [2101] = {.lex_state = 235, .external_lex_state = 2}, + [2082] = {.lex_state = 228, .external_lex_state = 2}, + [2083] = {.lex_state = 226, .external_lex_state = 2}, + [2084] = {.lex_state = 228, .external_lex_state = 2}, + [2085] = {.lex_state = 233, .external_lex_state = 2}, + [2086] = {.lex_state = 228, .external_lex_state = 2}, + [2087] = {.lex_state = 228, .external_lex_state = 2}, + [2088] = {.lex_state = 234, .external_lex_state = 2}, + [2089] = {.lex_state = 259, .external_lex_state = 2}, + [2090] = {.lex_state = 234, .external_lex_state = 2}, + [2091] = {.lex_state = 234, .external_lex_state = 2}, + [2092] = {.lex_state = 259, .external_lex_state = 2}, + [2093] = {.lex_state = 259, .external_lex_state = 2}, + [2094] = {.lex_state = 234, .external_lex_state = 2}, + [2095] = {.lex_state = 234, .external_lex_state = 2}, + [2096] = {.lex_state = 259, .external_lex_state = 2}, + [2097] = {.lex_state = 259, .external_lex_state = 2}, + [2098] = {.lex_state = 228, .external_lex_state = 2}, + [2099] = {.lex_state = 234, .external_lex_state = 2}, + [2100] = {.lex_state = 234, .external_lex_state = 2}, + [2101] = {.lex_state = 259, .external_lex_state = 2}, [2102] = {.lex_state = 259, .external_lex_state = 2}, - [2103] = {.lex_state = 259, .external_lex_state = 2}, - [2104] = {.lex_state = 231, .external_lex_state = 2}, - [2105] = {.lex_state = 235, .external_lex_state = 2}, - [2106] = {.lex_state = 235, .external_lex_state = 2}, - [2107] = {.lex_state = 259, .external_lex_state = 2}, - [2108] = {.lex_state = 259, .external_lex_state = 2}, - [2109] = {.lex_state = 231, .external_lex_state = 2}, - [2110] = {.lex_state = 235, .external_lex_state = 2}, - [2111] = {.lex_state = 235, .external_lex_state = 2}, - [2112] = {.lex_state = 259, .external_lex_state = 2}, - [2113] = {.lex_state = 231, .external_lex_state = 2}, - [2114] = {.lex_state = 259, .external_lex_state = 2}, - [2115] = {.lex_state = 235, .external_lex_state = 2}, - [2116] = {.lex_state = 259, .external_lex_state = 2}, + [2103] = {.lex_state = 234, .external_lex_state = 2}, + [2104] = {.lex_state = 259, .external_lex_state = 2}, + [2105] = {.lex_state = 228, .external_lex_state = 2}, + [2106] = {.lex_state = 233, .external_lex_state = 2}, + [2107] = {.lex_state = 221, .external_lex_state = 2}, + [2108] = {.lex_state = 233, .external_lex_state = 2}, + [2109] = {.lex_state = 221, .external_lex_state = 2}, + [2110] = {.lex_state = 228, .external_lex_state = 2}, + [2111] = {.lex_state = 221, .external_lex_state = 2}, + [2112] = {.lex_state = 221, .external_lex_state = 2}, + [2113] = {.lex_state = 226, .external_lex_state = 2}, + [2114] = {.lex_state = 233, .external_lex_state = 2}, + [2115] = {.lex_state = 229, .external_lex_state = 2}, + [2116] = {.lex_state = 226, .external_lex_state = 2}, [2117] = {.lex_state = 226, .external_lex_state = 2}, [2118] = {.lex_state = 226, .external_lex_state = 2}, [2119] = {.lex_state = 226, .external_lex_state = 2}, - [2120] = {.lex_state = 231, .external_lex_state = 2}, - [2121] = {.lex_state = 231, .external_lex_state = 2}, - [2122] = {.lex_state = 226, .external_lex_state = 2}, + [2120] = {.lex_state = 233, .external_lex_state = 2}, + [2121] = {.lex_state = 233, .external_lex_state = 2}, + [2122] = {.lex_state = 233, .external_lex_state = 2}, [2123] = {.lex_state = 226, .external_lex_state = 2}, - [2124] = {.lex_state = 229, .external_lex_state = 2}, + [2124] = {.lex_state = 226, .external_lex_state = 2}, [2125] = {.lex_state = 226, .external_lex_state = 2}, - [2126] = {.lex_state = 226, .external_lex_state = 2}, - [2127] = {.lex_state = 229, .external_lex_state = 2}, - [2128] = {.lex_state = 226, .external_lex_state = 2}, - [2129] = {.lex_state = 235, .external_lex_state = 2}, - [2130] = {.lex_state = 234, .external_lex_state = 2}, - [2131] = {.lex_state = 235, .external_lex_state = 2}, - [2132] = {.lex_state = 235, .external_lex_state = 2}, + [2126] = {.lex_state = 234, .external_lex_state = 2}, + [2127] = {.lex_state = 237, .external_lex_state = 2}, + [2128] = {.lex_state = 234, .external_lex_state = 2}, + [2129] = {.lex_state = 234, .external_lex_state = 2}, + [2130] = {.lex_state = 237, .external_lex_state = 2}, + [2131] = {.lex_state = 237, .external_lex_state = 2}, + [2132] = {.lex_state = 234, .external_lex_state = 2}, [2133] = {.lex_state = 234, .external_lex_state = 2}, - [2134] = {.lex_state = 234, .external_lex_state = 2}, - [2135] = {.lex_state = 235, .external_lex_state = 2}, - [2136] = {.lex_state = 235, .external_lex_state = 2}, + [2134] = {.lex_state = 237, .external_lex_state = 2}, + [2135] = {.lex_state = 237, .external_lex_state = 2}, + [2136] = {.lex_state = 234, .external_lex_state = 2}, [2137] = {.lex_state = 234, .external_lex_state = 2}, - [2138] = {.lex_state = 234, .external_lex_state = 2}, - [2139] = {.lex_state = 235, .external_lex_state = 2}, - [2140] = {.lex_state = 235, .external_lex_state = 2}, - [2141] = {.lex_state = 234, .external_lex_state = 2}, - [2142] = {.lex_state = 234, .external_lex_state = 2}, - [2143] = {.lex_state = 235, .external_lex_state = 2}, - [2144] = {.lex_state = 234, .external_lex_state = 2}, - [2145] = {.lex_state = 228, .external_lex_state = 2}, - [2146] = {.lex_state = 228, .external_lex_state = 2}, - [2147] = {.lex_state = 228, .external_lex_state = 2}, - [2148] = {.lex_state = 228, .external_lex_state = 2}, - [2149] = {.lex_state = 221, .external_lex_state = 2}, - [2150] = {.lex_state = 228, .external_lex_state = 2}, + [2138] = {.lex_state = 237, .external_lex_state = 2}, + [2139] = {.lex_state = 237, .external_lex_state = 2}, + [2140] = {.lex_state = 234, .external_lex_state = 2}, + [2141] = {.lex_state = 237, .external_lex_state = 2}, + [2142] = {.lex_state = 233, .external_lex_state = 2}, + [2143] = {.lex_state = 233, .external_lex_state = 2}, + [2144] = {.lex_state = 221, .external_lex_state = 2}, + [2145] = {.lex_state = 233, .external_lex_state = 2}, + [2146] = {.lex_state = 231, .external_lex_state = 2}, + [2147] = {.lex_state = 231, .external_lex_state = 2}, + [2148] = {.lex_state = 231, .external_lex_state = 2}, + [2149] = {.lex_state = 231, .external_lex_state = 2}, + [2150] = {.lex_state = 231, .external_lex_state = 2}, [2151] = {.lex_state = 231, .external_lex_state = 2}, - [2152] = {.lex_state = 228, .external_lex_state = 2}, - [2153] = {.lex_state = 228, .external_lex_state = 2}, - [2154] = {.lex_state = 228, .external_lex_state = 2}, + [2152] = {.lex_state = 221, .external_lex_state = 2}, + [2153] = {.lex_state = 231, .external_lex_state = 2}, + [2154] = {.lex_state = 231, .external_lex_state = 2}, [2155] = {.lex_state = 223, .external_lex_state = 2}, - [2156] = {.lex_state = 231, .external_lex_state = 2}, - [2157] = {.lex_state = 223, .external_lex_state = 2}, - [2158] = {.lex_state = 236, .external_lex_state = 2}, - [2159] = {.lex_state = 231, .external_lex_state = 2}, - [2160] = {.lex_state = 223, .external_lex_state = 2}, - [2161] = {.lex_state = 229, .external_lex_state = 2}, - [2162] = {.lex_state = 231, .external_lex_state = 2}, - [2163] = {.lex_state = 231, .external_lex_state = 2}, - [2164] = {.lex_state = 236, .external_lex_state = 2}, + [2156] = {.lex_state = 221, .external_lex_state = 2}, + [2157] = {.lex_state = 221, .external_lex_state = 2}, + [2158] = {.lex_state = 223, .external_lex_state = 2}, + [2159] = {.lex_state = 221, .external_lex_state = 2}, + [2160] = {.lex_state = 229, .external_lex_state = 2}, + [2161] = {.lex_state = 233, .external_lex_state = 2}, + [2162] = {.lex_state = 221, .external_lex_state = 2}, + [2163] = {.lex_state = 229, .external_lex_state = 2}, + [2164] = {.lex_state = 223, .external_lex_state = 2}, [2165] = {.lex_state = 223, .external_lex_state = 2}, - [2166] = {.lex_state = 236, .external_lex_state = 2}, + [2166] = {.lex_state = 221, .external_lex_state = 2}, [2167] = {.lex_state = 223, .external_lex_state = 2}, - [2168] = {.lex_state = 229, .external_lex_state = 2}, - [2169] = {.lex_state = 223, .external_lex_state = 2}, - [2170] = {.lex_state = 232, .external_lex_state = 2}, + [2168] = {.lex_state = 221, .external_lex_state = 2}, + [2169] = {.lex_state = 233, .external_lex_state = 2}, + [2170] = {.lex_state = 223, .external_lex_state = 2}, [2171] = {.lex_state = 223, .external_lex_state = 2}, - [2172] = {.lex_state = 223, .external_lex_state = 2}, - [2173] = {.lex_state = 236, .external_lex_state = 2}, + [2172] = {.lex_state = 221, .external_lex_state = 2}, + [2173] = {.lex_state = 221, .external_lex_state = 2}, [2174] = {.lex_state = 223, .external_lex_state = 2}, [2175] = {.lex_state = 223, .external_lex_state = 2}, - [2176] = {.lex_state = 224, .external_lex_state = 2}, + [2176] = {.lex_state = 223, .external_lex_state = 2}, [2177] = {.lex_state = 224, .external_lex_state = 2}, - [2178] = {.lex_state = 234, .external_lex_state = 2}, - [2179] = {.lex_state = 234, .external_lex_state = 2}, - [2180] = {.lex_state = 236, .external_lex_state = 2}, - [2181] = {.lex_state = 224, .external_lex_state = 2}, - [2182] = {.lex_state = 234, .external_lex_state = 2}, - [2183] = {.lex_state = 234, .external_lex_state = 2}, - [2184] = {.lex_state = 224, .external_lex_state = 2}, - [2185] = {.lex_state = 236, .external_lex_state = 2}, + [2178] = {.lex_state = 224, .external_lex_state = 2}, + [2179] = {.lex_state = 237, .external_lex_state = 2}, + [2180] = {.lex_state = 237, .external_lex_state = 2}, + [2181] = {.lex_state = 237, .external_lex_state = 2}, + [2182] = {.lex_state = 221, .external_lex_state = 2}, + [2183] = {.lex_state = 224, .external_lex_state = 2}, + [2184] = {.lex_state = 237, .external_lex_state = 2}, + [2185] = {.lex_state = 237, .external_lex_state = 2}, [2186] = {.lex_state = 224, .external_lex_state = 2}, - [2187] = {.lex_state = 234, .external_lex_state = 2}, - [2188] = {.lex_state = 234, .external_lex_state = 2}, - [2189] = {.lex_state = 224, .external_lex_state = 2}, - [2190] = {.lex_state = 236, .external_lex_state = 2}, + [2187] = {.lex_state = 221, .external_lex_state = 2}, + [2188] = {.lex_state = 224, .external_lex_state = 2}, + [2189] = {.lex_state = 237, .external_lex_state = 2}, + [2190] = {.lex_state = 237, .external_lex_state = 2}, [2191] = {.lex_state = 224, .external_lex_state = 2}, - [2192] = {.lex_state = 234, .external_lex_state = 2}, - [2193] = {.lex_state = 224, .external_lex_state = 2}, - [2194] = {.lex_state = 232, .external_lex_state = 2}, + [2192] = {.lex_state = 224, .external_lex_state = 2}, + [2193] = {.lex_state = 235, .external_lex_state = 2}, + [2194] = {.lex_state = 237, .external_lex_state = 2}, [2195] = {.lex_state = 224, .external_lex_state = 2}, - [2196] = {.lex_state = 224, .external_lex_state = 2}, - [2197] = {.lex_state = 231, .external_lex_state = 2}, - [2198] = {.lex_state = 231, .external_lex_state = 2}, + [2196] = {.lex_state = 221, .external_lex_state = 2}, + [2197] = {.lex_state = 224, .external_lex_state = 2}, + [2198] = {.lex_state = 224, .external_lex_state = 2}, [2199] = {.lex_state = 236, .external_lex_state = 2}, - [2200] = {.lex_state = 231, .external_lex_state = 2}, - [2201] = {.lex_state = 231, .external_lex_state = 2}, - [2202] = {.lex_state = 236, .external_lex_state = 2}, - [2203] = {.lex_state = 232, .external_lex_state = 2}, - [2204] = {.lex_state = 236, .external_lex_state = 2}, - [2205] = {.lex_state = 236, .external_lex_state = 2}, - [2206] = {.lex_state = 260, .external_lex_state = 2}, - [2207] = {.lex_state = 236, .external_lex_state = 2}, - [2208] = {.lex_state = 223, .external_lex_state = 2}, - [2209] = {.lex_state = 260, .external_lex_state = 2}, - [2210] = {.lex_state = 260, .external_lex_state = 2}, - [2211] = {.lex_state = 223, .external_lex_state = 2}, - [2212] = {.lex_state = 232, .external_lex_state = 2}, + [2200] = {.lex_state = 232, .external_lex_state = 2}, + [2201] = {.lex_state = 260, .external_lex_state = 2}, + [2202] = {.lex_state = 223, .external_lex_state = 2}, + [2203] = {.lex_state = 260, .external_lex_state = 2}, + [2204] = {.lex_state = 260, .external_lex_state = 2}, + [2205] = {.lex_state = 223, .external_lex_state = 2}, + [2206] = {.lex_state = 223, .external_lex_state = 2}, + [2207] = {.lex_state = 260, .external_lex_state = 2}, + [2208] = {.lex_state = 260, .external_lex_state = 2}, + [2209] = {.lex_state = 223, .external_lex_state = 2}, + [2210] = {.lex_state = 223, .external_lex_state = 2}, + [2211] = {.lex_state = 260, .external_lex_state = 2}, + [2212] = {.lex_state = 260, .external_lex_state = 2}, [2213] = {.lex_state = 223, .external_lex_state = 2}, - [2214] = {.lex_state = 260, .external_lex_state = 2}, - [2215] = {.lex_state = 260, .external_lex_state = 2}, - [2216] = {.lex_state = 223, .external_lex_state = 2}, + [2214] = {.lex_state = 236, .external_lex_state = 2}, + [2215] = {.lex_state = 223, .external_lex_state = 2}, + [2216] = {.lex_state = 260, .external_lex_state = 2}, [2217] = {.lex_state = 223, .external_lex_state = 2}, - [2218] = {.lex_state = 260, .external_lex_state = 2}, - [2219] = {.lex_state = 260, .external_lex_state = 2}, - [2220] = {.lex_state = 223, .external_lex_state = 2}, - [2221] = {.lex_state = 223, .external_lex_state = 2}, - [2222] = {.lex_state = 260, .external_lex_state = 2}, - [2223] = {.lex_state = 223, .external_lex_state = 2}, + [2218] = {.lex_state = 236, .external_lex_state = 2}, + [2219] = {.lex_state = 224, .external_lex_state = 2}, + [2220] = {.lex_state = 224, .external_lex_state = 2}, + [2221] = {.lex_state = 224, .external_lex_state = 2}, + [2222] = {.lex_state = 224, .external_lex_state = 2}, + [2223] = {.lex_state = 224, .external_lex_state = 2}, [2224] = {.lex_state = 224, .external_lex_state = 2}, [2225] = {.lex_state = 224, .external_lex_state = 2}, [2226] = {.lex_state = 224, .external_lex_state = 2}, - [2227] = {.lex_state = 224, .external_lex_state = 2}, + [2227] = {.lex_state = 233, .external_lex_state = 2}, [2228] = {.lex_state = 236, .external_lex_state = 2}, - [2229] = {.lex_state = 224, .external_lex_state = 2}, - [2230] = {.lex_state = 224, .external_lex_state = 2}, - [2231] = {.lex_state = 233, .external_lex_state = 2}, - [2232] = {.lex_state = 224, .external_lex_state = 2}, - [2233] = {.lex_state = 224, .external_lex_state = 2}, - [2234] = {.lex_state = 231, .external_lex_state = 2}, - [2235] = {.lex_state = 231, .external_lex_state = 2}, - [2236] = {.lex_state = 231, .external_lex_state = 2}, - [2237] = {.lex_state = 231, .external_lex_state = 2}, - [2238] = {.lex_state = 231, .external_lex_state = 2}, - [2239] = {.lex_state = 231, .external_lex_state = 2}, - [2240] = {.lex_state = 260, .external_lex_state = 2}, - [2241] = {.lex_state = 260, .external_lex_state = 2}, - [2242] = {.lex_state = 260, .external_lex_state = 2}, - [2243] = {.lex_state = 260, .external_lex_state = 2}, - [2244] = {.lex_state = 260, .external_lex_state = 2}, - [2245] = {.lex_state = 260, .external_lex_state = 2}, - [2246] = {.lex_state = 260, .external_lex_state = 2}, - [2247] = {.lex_state = 260, .external_lex_state = 2}, + [2229] = {.lex_state = 236, .external_lex_state = 2}, + [2230] = {.lex_state = 236, .external_lex_state = 2}, + [2231] = {.lex_state = 236, .external_lex_state = 2}, + [2232] = {.lex_state = 236, .external_lex_state = 2}, + [2233] = {.lex_state = 260, .external_lex_state = 2}, + [2234] = {.lex_state = 260, .external_lex_state = 2}, + [2235] = {.lex_state = 260, .external_lex_state = 2}, + [2236] = {.lex_state = 260, .external_lex_state = 2}, + [2237] = {.lex_state = 260, .external_lex_state = 2}, + [2238] = {.lex_state = 260, .external_lex_state = 2}, + [2239] = {.lex_state = 260, .external_lex_state = 2}, + [2240] = {.lex_state = 235, .external_lex_state = 2}, + [2241] = {.lex_state = 228, .external_lex_state = 2}, + [2242] = {.lex_state = 228, .external_lex_state = 2}, + [2243] = {.lex_state = 228, .external_lex_state = 2}, + [2244] = {.lex_state = 228, .external_lex_state = 2}, + [2245] = {.lex_state = 228, .external_lex_state = 2}, + [2246] = {.lex_state = 228, .external_lex_state = 2}, + [2247] = {.lex_state = 228, .external_lex_state = 2}, [2248] = {.lex_state = 221, .external_lex_state = 2}, [2249] = {.lex_state = 221, .external_lex_state = 2}, [2250] = {.lex_state = 221, .external_lex_state = 2}, @@ -37268,380 +37267,380 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2252] = {.lex_state = 221, .external_lex_state = 2}, [2253] = {.lex_state = 221, .external_lex_state = 2}, [2254] = {.lex_state = 221, .external_lex_state = 2}, - [2255] = {.lex_state = 231, .external_lex_state = 2}, - [2256] = {.lex_state = 231, .external_lex_state = 2}, - [2257] = {.lex_state = 231, .external_lex_state = 2}, - [2258] = {.lex_state = 231, .external_lex_state = 2}, - [2259] = {.lex_state = 231, .external_lex_state = 2}, - [2260] = {.lex_state = 231, .external_lex_state = 2}, - [2261] = {.lex_state = 231, .external_lex_state = 2}, - [2262] = {.lex_state = 259, .external_lex_state = 2}, - [2263] = {.lex_state = 259, .external_lex_state = 2}, - [2264] = {.lex_state = 259, .external_lex_state = 2}, + [2255] = {.lex_state = 235, .external_lex_state = 2}, + [2256] = {.lex_state = 236, .external_lex_state = 2}, + [2257] = {.lex_state = 235, .external_lex_state = 2}, + [2258] = {.lex_state = 221, .external_lex_state = 2}, + [2259] = {.lex_state = 221, .external_lex_state = 2}, + [2260] = {.lex_state = 221, .external_lex_state = 2}, + [2261] = {.lex_state = 229, .external_lex_state = 2}, + [2262] = {.lex_state = 221, .external_lex_state = 2}, + [2263] = {.lex_state = 221, .external_lex_state = 2}, + [2264] = {.lex_state = 221, .external_lex_state = 2}, [2265] = {.lex_state = 259, .external_lex_state = 2}, [2266] = {.lex_state = 259, .external_lex_state = 2}, [2267] = {.lex_state = 259, .external_lex_state = 2}, [2268] = {.lex_state = 259, .external_lex_state = 2}, [2269] = {.lex_state = 259, .external_lex_state = 2}, - [2270] = {.lex_state = 228, .external_lex_state = 2}, - [2271] = {.lex_state = 228, .external_lex_state = 2}, - [2272] = {.lex_state = 228, .external_lex_state = 2}, - [2273] = {.lex_state = 228, .external_lex_state = 2}, - [2274] = {.lex_state = 228, .external_lex_state = 2}, - [2275] = {.lex_state = 228, .external_lex_state = 2}, - [2276] = {.lex_state = 228, .external_lex_state = 2}, - [2277] = {.lex_state = 223, .external_lex_state = 2}, - [2278] = {.lex_state = 223, .external_lex_state = 2}, - [2279] = {.lex_state = 223, .external_lex_state = 2}, + [2270] = {.lex_state = 259, .external_lex_state = 2}, + [2271] = {.lex_state = 259, .external_lex_state = 2}, + [2272] = {.lex_state = 229, .external_lex_state = 2}, + [2273] = {.lex_state = 231, .external_lex_state = 2}, + [2274] = {.lex_state = 231, .external_lex_state = 2}, + [2275] = {.lex_state = 231, .external_lex_state = 2}, + [2276] = {.lex_state = 231, .external_lex_state = 2}, + [2277] = {.lex_state = 231, .external_lex_state = 2}, + [2278] = {.lex_state = 231, .external_lex_state = 2}, + [2279] = {.lex_state = 231, .external_lex_state = 2}, [2280] = {.lex_state = 223, .external_lex_state = 2}, [2281] = {.lex_state = 223, .external_lex_state = 2}, [2282] = {.lex_state = 223, .external_lex_state = 2}, [2283] = {.lex_state = 223, .external_lex_state = 2}, - [2284] = {.lex_state = 224, .external_lex_state = 2}, - [2285] = {.lex_state = 224, .external_lex_state = 2}, - [2286] = {.lex_state = 224, .external_lex_state = 2}, + [2284] = {.lex_state = 223, .external_lex_state = 2}, + [2285] = {.lex_state = 223, .external_lex_state = 2}, + [2286] = {.lex_state = 223, .external_lex_state = 2}, [2287] = {.lex_state = 224, .external_lex_state = 2}, [2288] = {.lex_state = 224, .external_lex_state = 2}, [2289] = {.lex_state = 224, .external_lex_state = 2}, [2290] = {.lex_state = 224, .external_lex_state = 2}, - [2291] = {.lex_state = 233, .external_lex_state = 2}, - [2292] = {.lex_state = 233, .external_lex_state = 2}, - [2293] = {.lex_state = 233, .external_lex_state = 2}, + [2291] = {.lex_state = 224, .external_lex_state = 2}, + [2292] = {.lex_state = 224, .external_lex_state = 2}, + [2293] = {.lex_state = 224, .external_lex_state = 2}, [2294] = {.lex_state = 229, .external_lex_state = 2}, - [2295] = {.lex_state = 233, .external_lex_state = 2}, - [2296] = {.lex_state = 221, .external_lex_state = 2}, - [2297] = {.lex_state = 228, .external_lex_state = 2}, - [2298] = {.lex_state = 237, .external_lex_state = 2}, - [2299] = {.lex_state = 233, .external_lex_state = 2}, - [2300] = {.lex_state = 229, .external_lex_state = 2}, - [2301] = {.lex_state = 259, .external_lex_state = 2}, - [2302] = {.lex_state = 229, .external_lex_state = 2}, - [2303] = {.lex_state = 228, .external_lex_state = 2}, - [2304] = {.lex_state = 237, .external_lex_state = 2}, - [2305] = {.lex_state = 237, .external_lex_state = 2}, - [2306] = {.lex_state = 221, .external_lex_state = 2}, - [2307] = {.lex_state = 229, .external_lex_state = 2}, + [2295] = {.lex_state = 231, .external_lex_state = 2}, + [2296] = {.lex_state = 232, .external_lex_state = 2}, + [2297] = {.lex_state = 233, .external_lex_state = 2}, + [2298] = {.lex_state = 229, .external_lex_state = 2}, + [2299] = {.lex_state = 228, .external_lex_state = 2}, + [2300] = {.lex_state = 228, .external_lex_state = 2}, + [2301] = {.lex_state = 229, .external_lex_state = 2}, + [2302] = {.lex_state = 233, .external_lex_state = 2}, + [2303] = {.lex_state = 233, .external_lex_state = 2}, + [2304] = {.lex_state = 231, .external_lex_state = 2}, + [2305] = {.lex_state = 232, .external_lex_state = 2}, + [2306] = {.lex_state = 232, .external_lex_state = 2}, + [2307] = {.lex_state = 233, .external_lex_state = 2}, [2308] = {.lex_state = 229, .external_lex_state = 2}, - [2309] = {.lex_state = 221, .external_lex_state = 2}, - [2310] = {.lex_state = 259, .external_lex_state = 2}, - [2311] = {.lex_state = 237, .external_lex_state = 2}, - [2312] = {.lex_state = 237, .external_lex_state = 2}, - [2313] = {.lex_state = 232, .external_lex_state = 2}, - [2314] = {.lex_state = 229, .external_lex_state = 2}, - [2315] = {.lex_state = 221, .external_lex_state = 2}, - [2316] = {.lex_state = 221, .external_lex_state = 2}, - [2317] = {.lex_state = 221, .external_lex_state = 2}, - [2318] = {.lex_state = 229, .external_lex_state = 2}, - [2319] = {.lex_state = 259, .external_lex_state = 2}, - [2320] = {.lex_state = 228, .external_lex_state = 2}, + [2309] = {.lex_state = 233, .external_lex_state = 2}, + [2310] = {.lex_state = 229, .external_lex_state = 2}, + [2311] = {.lex_state = 232, .external_lex_state = 2}, + [2312] = {.lex_state = 232, .external_lex_state = 2}, + [2313] = {.lex_state = 228, .external_lex_state = 2}, + [2314] = {.lex_state = 236, .external_lex_state = 2}, + [2315] = {.lex_state = 229, .external_lex_state = 2}, + [2316] = {.lex_state = 228, .external_lex_state = 2}, + [2317] = {.lex_state = 259, .external_lex_state = 2}, + [2318] = {.lex_state = 228, .external_lex_state = 2}, + [2319] = {.lex_state = 229, .external_lex_state = 2}, + [2320] = {.lex_state = 236, .external_lex_state = 2}, [2321] = {.lex_state = 228, .external_lex_state = 2}, - [2322] = {.lex_state = 259, .external_lex_state = 2}, - [2323] = {.lex_state = 237, .external_lex_state = 2}, - [2324] = {.lex_state = 237, .external_lex_state = 2}, - [2325] = {.lex_state = 233, .external_lex_state = 2}, - [2326] = {.lex_state = 221, .external_lex_state = 2}, - [2327] = {.lex_state = 229, .external_lex_state = 2}, - [2328] = {.lex_state = 233, .external_lex_state = 2}, + [2322] = {.lex_state = 235, .external_lex_state = 2}, + [2323] = {.lex_state = 259, .external_lex_state = 2}, + [2324] = {.lex_state = 231, .external_lex_state = 2}, + [2325] = {.lex_state = 231, .external_lex_state = 2}, + [2326] = {.lex_state = 259, .external_lex_state = 2}, + [2327] = {.lex_state = 232, .external_lex_state = 2}, + [2328] = {.lex_state = 232, .external_lex_state = 2}, [2329] = {.lex_state = 233, .external_lex_state = 2}, - [2330] = {.lex_state = 228, .external_lex_state = 2}, - [2331] = {.lex_state = 221, .external_lex_state = 2}, - [2332] = {.lex_state = 259, .external_lex_state = 2}, - [2333] = {.lex_state = 228, .external_lex_state = 2}, - [2334] = {.lex_state = 221, .external_lex_state = 2}, + [2330] = {.lex_state = 235, .external_lex_state = 2}, + [2331] = {.lex_state = 233, .external_lex_state = 2}, + [2332] = {.lex_state = 229, .external_lex_state = 2}, + [2333] = {.lex_state = 233, .external_lex_state = 2}, + [2334] = {.lex_state = 231, .external_lex_state = 2}, [2335] = {.lex_state = 259, .external_lex_state = 2}, - [2336] = {.lex_state = 228, .external_lex_state = 2}, - [2337] = {.lex_state = 221, .external_lex_state = 2}, - [2338] = {.lex_state = 228, .external_lex_state = 2}, + [2336] = {.lex_state = 233, .external_lex_state = 2}, + [2337] = {.lex_state = 231, .external_lex_state = 2}, + [2338] = {.lex_state = 231, .external_lex_state = 2}, [2339] = {.lex_state = 259, .external_lex_state = 2}, - [2340] = {.lex_state = 237, .external_lex_state = 2}, - [2341] = {.lex_state = 233, .external_lex_state = 2}, - [2342] = {.lex_state = 228, .external_lex_state = 2}, - [2343] = {.lex_state = 228, .external_lex_state = 2}, - [2344] = {.lex_state = 233, .external_lex_state = 2}, - [2345] = {.lex_state = 228, .external_lex_state = 2}, - [2346] = {.lex_state = 228, .external_lex_state = 2}, - [2347] = {.lex_state = 228, .external_lex_state = 2}, + [2340] = {.lex_state = 231, .external_lex_state = 2}, + [2341] = {.lex_state = 236, .external_lex_state = 2}, + [2342] = {.lex_state = 232, .external_lex_state = 2}, + [2343] = {.lex_state = 236, .external_lex_state = 2}, + [2344] = {.lex_state = 228, .external_lex_state = 2}, + [2345] = {.lex_state = 259, .external_lex_state = 2}, + [2346] = {.lex_state = 231, .external_lex_state = 2}, + [2347] = {.lex_state = 235, .external_lex_state = 2}, [2348] = {.lex_state = 228, .external_lex_state = 2}, - [2349] = {.lex_state = 228, .external_lex_state = 2}, - [2350] = {.lex_state = 228, .external_lex_state = 2}, - [2351] = {.lex_state = 228, .external_lex_state = 2}, - [2352] = {.lex_state = 228, .external_lex_state = 2}, - [2353] = {.lex_state = 221, .external_lex_state = 2}, - [2354] = {.lex_state = 259, .external_lex_state = 2}, - [2355] = {.lex_state = 221, .external_lex_state = 2}, - [2356] = {.lex_state = 237, .external_lex_state = 2}, - [2357] = {.lex_state = 221, .external_lex_state = 2}, - [2358] = {.lex_state = 232, .external_lex_state = 2}, - [2359] = {.lex_state = 233, .external_lex_state = 2}, - [2360] = {.lex_state = 221, .external_lex_state = 2}, - [2361] = {.lex_state = 237, .external_lex_state = 2}, + [2349] = {.lex_state = 231, .external_lex_state = 2}, + [2350] = {.lex_state = 259, .external_lex_state = 2}, + [2351] = {.lex_state = 231, .external_lex_state = 2}, + [2352] = {.lex_state = 231, .external_lex_state = 2}, + [2353] = {.lex_state = 259, .external_lex_state = 2}, + [2354] = {.lex_state = 228, .external_lex_state = 2}, + [2355] = {.lex_state = 228, .external_lex_state = 2}, + [2356] = {.lex_state = 233, .external_lex_state = 2}, + [2357] = {.lex_state = 231, .external_lex_state = 2}, + [2358] = {.lex_state = 231, .external_lex_state = 2}, + [2359] = {.lex_state = 235, .external_lex_state = 2}, + [2360] = {.lex_state = 231, .external_lex_state = 2}, + [2361] = {.lex_state = 231, .external_lex_state = 2}, [2362] = {.lex_state = 231, .external_lex_state = 2}, - [2363] = {.lex_state = 237, .external_lex_state = 2}, - [2364] = {.lex_state = 233, .external_lex_state = 2}, - [2365] = {.lex_state = 232, .external_lex_state = 2}, - [2366] = {.lex_state = 232, .external_lex_state = 2}, - [2367] = {.lex_state = 233, .external_lex_state = 2}, - [2368] = {.lex_state = 237, .external_lex_state = 2}, - [2369] = {.lex_state = 233, .external_lex_state = 2}, - [2370] = {.lex_state = 237, .external_lex_state = 2}, - [2371] = {.lex_state = 232, .external_lex_state = 2}, - [2372] = {.lex_state = 232, .external_lex_state = 2}, - [2373] = {.lex_state = 237, .external_lex_state = 2}, - [2374] = {.lex_state = 237, .external_lex_state = 2}, + [2363] = {.lex_state = 231, .external_lex_state = 2}, + [2364] = {.lex_state = 228, .external_lex_state = 2}, + [2365] = {.lex_state = 228, .external_lex_state = 2}, + [2366] = {.lex_state = 228, .external_lex_state = 2}, + [2367] = {.lex_state = 228, .external_lex_state = 2}, + [2368] = {.lex_state = 259, .external_lex_state = 2}, + [2369] = {.lex_state = 228, .external_lex_state = 2}, + [2370] = {.lex_state = 232, .external_lex_state = 2}, + [2371] = {.lex_state = 228, .external_lex_state = 2}, + [2372] = {.lex_state = 228, .external_lex_state = 2}, + [2373] = {.lex_state = 235, .external_lex_state = 2}, + [2374] = {.lex_state = 232, .external_lex_state = 2}, [2375] = {.lex_state = 232, .external_lex_state = 2}, - [2376] = {.lex_state = 232, .external_lex_state = 2}, - [2377] = {.lex_state = 221, .external_lex_state = 2}, - [2378] = {.lex_state = 237, .external_lex_state = 2}, + [2376] = {.lex_state = 235, .external_lex_state = 2}, + [2377] = {.lex_state = 235, .external_lex_state = 2}, + [2378] = {.lex_state = 232, .external_lex_state = 2}, [2379] = {.lex_state = 232, .external_lex_state = 2}, - [2380] = {.lex_state = 221, .external_lex_state = 2}, - [2381] = {.lex_state = 221, .external_lex_state = 2}, - [2382] = {.lex_state = 259, .external_lex_state = 2}, - [2383] = {.lex_state = 221, .external_lex_state = 2}, - [2384] = {.lex_state = 221, .external_lex_state = 2}, - [2385] = {.lex_state = 233, .external_lex_state = 2}, - [2386] = {.lex_state = 226, .external_lex_state = 2}, + [2380] = {.lex_state = 235, .external_lex_state = 2}, + [2381] = {.lex_state = 236, .external_lex_state = 2}, + [2382] = {.lex_state = 235, .external_lex_state = 2}, + [2383] = {.lex_state = 232, .external_lex_state = 2}, + [2384] = {.lex_state = 232, .external_lex_state = 2}, + [2385] = {.lex_state = 235, .external_lex_state = 2}, + [2386] = {.lex_state = 260, .external_lex_state = 2}, [2387] = {.lex_state = 229, .external_lex_state = 2}, - [2388] = {.lex_state = 229, .external_lex_state = 2}, - [2389] = {.lex_state = 234, .external_lex_state = 2}, - [2390] = {.lex_state = 260, .external_lex_state = 2}, - [2391] = {.lex_state = 272, .external_lex_state = 6}, - [2392] = {.lex_state = 260, .external_lex_state = 2}, + [2388] = {.lex_state = 234, .external_lex_state = 2}, + [2389] = {.lex_state = 236, .external_lex_state = 2}, + [2390] = {.lex_state = 237, .external_lex_state = 2}, + [2391] = {.lex_state = 237, .external_lex_state = 2}, + [2392] = {.lex_state = 234, .external_lex_state = 2}, [2393] = {.lex_state = 234, .external_lex_state = 2}, - [2394] = {.lex_state = 260, .external_lex_state = 2}, - [2395] = {.lex_state = 229, .external_lex_state = 2}, - [2396] = {.lex_state = 236, .external_lex_state = 2}, - [2397] = {.lex_state = 235, .external_lex_state = 2}, - [2398] = {.lex_state = 234, .external_lex_state = 2}, - [2399] = {.lex_state = 229, .external_lex_state = 2}, - [2400] = {.lex_state = 236, .external_lex_state = 2}, - [2401] = {.lex_state = 229, .external_lex_state = 2}, - [2402] = {.lex_state = 236, .external_lex_state = 2}, - [2403] = {.lex_state = 236, .external_lex_state = 2}, - [2404] = {.lex_state = 236, .external_lex_state = 2}, - [2405] = {.lex_state = 236, .external_lex_state = 2}, - [2406] = {.lex_state = 236, .external_lex_state = 2}, - [2407] = {.lex_state = 237, .external_lex_state = 2}, - [2408] = {.lex_state = 237, .external_lex_state = 2}, - [2409] = {.lex_state = 237, .external_lex_state = 2}, - [2410] = {.lex_state = 237, .external_lex_state = 2}, - [2411] = {.lex_state = 237, .external_lex_state = 2}, - [2412] = {.lex_state = 237, .external_lex_state = 2}, - [2413] = {.lex_state = 237, .external_lex_state = 2}, - [2414] = {.lex_state = 236, .external_lex_state = 2}, - [2415] = {.lex_state = 232, .external_lex_state = 2}, - [2416] = {.lex_state = 230, .external_lex_state = 2}, - [2417] = {.lex_state = 236, .external_lex_state = 2}, - [2418] = {.lex_state = 229, .external_lex_state = 2}, - [2419] = {.lex_state = 229, .external_lex_state = 2}, - [2420] = {.lex_state = 236, .external_lex_state = 2}, - [2421] = {.lex_state = 230, .external_lex_state = 2}, - [2422] = {.lex_state = 230, .external_lex_state = 2}, - [2423] = {.lex_state = 226, .external_lex_state = 2}, - [2424] = {.lex_state = 260, .external_lex_state = 2}, - [2425] = {.lex_state = 260, .external_lex_state = 2}, - [2426] = {.lex_state = 235, .external_lex_state = 2}, - [2427] = {.lex_state = 260, .external_lex_state = 2}, - [2428] = {.lex_state = 260, .external_lex_state = 2}, - [2429] = {.lex_state = 230, .external_lex_state = 2}, - [2430] = {.lex_state = 260, .external_lex_state = 2}, - [2431] = {.lex_state = 260, .external_lex_state = 2}, - [2432] = {.lex_state = 230, .external_lex_state = 2}, - [2433] = {.lex_state = 260, .external_lex_state = 2}, - [2434] = {.lex_state = 260, .external_lex_state = 2}, - [2435] = {.lex_state = 235, .external_lex_state = 2}, - [2436] = {.lex_state = 232, .external_lex_state = 2}, - [2437] = {.lex_state = 230, .external_lex_state = 2}, - [2438] = {.lex_state = 230, .external_lex_state = 2}, + [2394] = {.lex_state = 237, .external_lex_state = 2}, + [2395] = {.lex_state = 230, .external_lex_state = 2}, + [2396] = {.lex_state = 230, .external_lex_state = 2}, + [2397] = {.lex_state = 230, .external_lex_state = 2}, + [2398] = {.lex_state = 230, .external_lex_state = 2}, + [2399] = {.lex_state = 272, .external_lex_state = 6}, + [2400] = {.lex_state = 230, .external_lex_state = 2}, + [2401] = {.lex_state = 230, .external_lex_state = 2}, + [2402] = {.lex_state = 230, .external_lex_state = 2}, + [2403] = {.lex_state = 260, .external_lex_state = 2}, + [2404] = {.lex_state = 234, .external_lex_state = 2}, + [2405] = {.lex_state = 260, .external_lex_state = 2}, + [2406] = {.lex_state = 260, .external_lex_state = 2}, + [2407] = {.lex_state = 260, .external_lex_state = 2}, + [2408] = {.lex_state = 260, .external_lex_state = 2}, + [2409] = {.lex_state = 235, .external_lex_state = 2}, + [2410] = {.lex_state = 260, .external_lex_state = 2}, + [2411] = {.lex_state = 260, .external_lex_state = 2}, + [2412] = {.lex_state = 226, .external_lex_state = 2}, + [2413] = {.lex_state = 260, .external_lex_state = 2}, + [2414] = {.lex_state = 235, .external_lex_state = 2}, + [2415] = {.lex_state = 260, .external_lex_state = 2}, + [2416] = {.lex_state = 235, .external_lex_state = 2}, + [2417] = {.lex_state = 260, .external_lex_state = 2}, + [2418] = {.lex_state = 235, .external_lex_state = 2}, + [2419] = {.lex_state = 236, .external_lex_state = 2}, + [2420] = {.lex_state = 229, .external_lex_state = 2}, + [2421] = {.lex_state = 229, .external_lex_state = 2}, + [2422] = {.lex_state = 235, .external_lex_state = 2}, + [2423] = {.lex_state = 232, .external_lex_state = 2}, + [2424] = {.lex_state = 232, .external_lex_state = 2}, + [2425] = {.lex_state = 232, .external_lex_state = 2}, + [2426] = {.lex_state = 232, .external_lex_state = 2}, + [2427] = {.lex_state = 232, .external_lex_state = 2}, + [2428] = {.lex_state = 232, .external_lex_state = 2}, + [2429] = {.lex_state = 232, .external_lex_state = 2}, + [2430] = {.lex_state = 236, .external_lex_state = 2}, + [2431] = {.lex_state = 226, .external_lex_state = 2}, + [2432] = {.lex_state = 236, .external_lex_state = 2}, + [2433] = {.lex_state = 226, .external_lex_state = 2}, + [2434] = {.lex_state = 236, .external_lex_state = 2}, + [2435] = {.lex_state = 236, .external_lex_state = 2}, + [2436] = {.lex_state = 272, .external_lex_state = 6}, + [2437] = {.lex_state = 226, .external_lex_state = 2}, + [2438] = {.lex_state = 229, .external_lex_state = 2}, [2439] = {.lex_state = 226, .external_lex_state = 2}, - [2440] = {.lex_state = 230, .external_lex_state = 2}, - [2441] = {.lex_state = 235, .external_lex_state = 2}, - [2442] = {.lex_state = 229, .external_lex_state = 2}, - [2443] = {.lex_state = 236, .external_lex_state = 2}, - [2444] = {.lex_state = 226, .external_lex_state = 2}, - [2445] = {.lex_state = 226, .external_lex_state = 2}, - [2446] = {.lex_state = 226, .external_lex_state = 2}, - [2447] = {.lex_state = 226, .external_lex_state = 2}, - [2448] = {.lex_state = 226, .external_lex_state = 2}, - [2449] = {.lex_state = 226, .external_lex_state = 2}, + [2440] = {.lex_state = 260, .external_lex_state = 2}, + [2441] = {.lex_state = 260, .external_lex_state = 2}, + [2442] = {.lex_state = 260, .external_lex_state = 2}, + [2443] = {.lex_state = 260, .external_lex_state = 2}, + [2444] = {.lex_state = 235, .external_lex_state = 2}, + [2445] = {.lex_state = 260, .external_lex_state = 2}, + [2446] = {.lex_state = 235, .external_lex_state = 2}, + [2447] = {.lex_state = 260, .external_lex_state = 2}, + [2448] = {.lex_state = 260, .external_lex_state = 2}, + [2449] = {.lex_state = 260, .external_lex_state = 2}, [2450] = {.lex_state = 226, .external_lex_state = 2}, - [2451] = {.lex_state = 235, .external_lex_state = 2}, - [2452] = {.lex_state = 235, .external_lex_state = 2}, - [2453] = {.lex_state = 235, .external_lex_state = 2}, - [2454] = {.lex_state = 235, .external_lex_state = 2}, - [2455] = {.lex_state = 235, .external_lex_state = 2}, - [2456] = {.lex_state = 235, .external_lex_state = 2}, - [2457] = {.lex_state = 235, .external_lex_state = 2}, - [2458] = {.lex_state = 235, .external_lex_state = 2}, - [2459] = {.lex_state = 226, .external_lex_state = 2}, - [2460] = {.lex_state = 235, .external_lex_state = 2}, - [2461] = {.lex_state = 234, .external_lex_state = 2}, - [2462] = {.lex_state = 234, .external_lex_state = 2}, - [2463] = {.lex_state = 234, .external_lex_state = 2}, - [2464] = {.lex_state = 234, .external_lex_state = 2}, - [2465] = {.lex_state = 234, .external_lex_state = 2}, - [2466] = {.lex_state = 234, .external_lex_state = 2}, - [2467] = {.lex_state = 234, .external_lex_state = 2}, + [2451] = {.lex_state = 229, .external_lex_state = 2}, + [2452] = {.lex_state = 226, .external_lex_state = 2}, + [2453] = {.lex_state = 226, .external_lex_state = 2}, + [2454] = {.lex_state = 226, .external_lex_state = 2}, + [2455] = {.lex_state = 226, .external_lex_state = 2}, + [2456] = {.lex_state = 237, .external_lex_state = 2}, + [2457] = {.lex_state = 236, .external_lex_state = 2}, + [2458] = {.lex_state = 236, .external_lex_state = 2}, + [2459] = {.lex_state = 237, .external_lex_state = 2}, + [2460] = {.lex_state = 236, .external_lex_state = 2}, + [2461] = {.lex_state = 235, .external_lex_state = 2}, + [2462] = {.lex_state = 229, .external_lex_state = 2}, + [2463] = {.lex_state = 229, .external_lex_state = 2}, + [2464] = {.lex_state = 235, .external_lex_state = 2}, + [2465] = {.lex_state = 226, .external_lex_state = 2}, + [2466] = {.lex_state = 226, .external_lex_state = 2}, + [2467] = {.lex_state = 226, .external_lex_state = 2}, [2468] = {.lex_state = 226, .external_lex_state = 2}, - [2469] = {.lex_state = 232, .external_lex_state = 2}, - [2470] = {.lex_state = 235, .external_lex_state = 2}, - [2471] = {.lex_state = 235, .external_lex_state = 2}, - [2472] = {.lex_state = 272, .external_lex_state = 6}, - [2473] = {.lex_state = 236, .external_lex_state = 2}, - [2474] = {.lex_state = 229, .external_lex_state = 2}, - [2475] = {.lex_state = 229, .external_lex_state = 2}, - [2476] = {.lex_state = 226, .external_lex_state = 2}, - [2477] = {.lex_state = 236, .external_lex_state = 2}, - [2478] = {.lex_state = 236, .external_lex_state = 2}, - [2479] = {.lex_state = 226, .external_lex_state = 2}, + [2469] = {.lex_state = 226, .external_lex_state = 2}, + [2470] = {.lex_state = 226, .external_lex_state = 2}, + [2471] = {.lex_state = 226, .external_lex_state = 2}, + [2472] = {.lex_state = 234, .external_lex_state = 2}, + [2473] = {.lex_state = 234, .external_lex_state = 2}, + [2474] = {.lex_state = 234, .external_lex_state = 2}, + [2475] = {.lex_state = 234, .external_lex_state = 2}, + [2476] = {.lex_state = 234, .external_lex_state = 2}, + [2477] = {.lex_state = 234, .external_lex_state = 2}, + [2478] = {.lex_state = 234, .external_lex_state = 2}, + [2479] = {.lex_state = 234, .external_lex_state = 2}, [2480] = {.lex_state = 232, .external_lex_state = 2}, - [2481] = {.lex_state = 226, .external_lex_state = 2}, - [2482] = {.lex_state = 226, .external_lex_state = 2}, - [2483] = {.lex_state = 260, .external_lex_state = 2}, - [2484] = {.lex_state = 260, .external_lex_state = 2}, - [2485] = {.lex_state = 260, .external_lex_state = 2}, - [2486] = {.lex_state = 260, .external_lex_state = 2}, - [2487] = {.lex_state = 260, .external_lex_state = 2}, - [2488] = {.lex_state = 260, .external_lex_state = 2}, - [2489] = {.lex_state = 260, .external_lex_state = 2}, - [2490] = {.lex_state = 272, .external_lex_state = 6}, - [2491] = {.lex_state = 226, .external_lex_state = 2}, - [2492] = {.lex_state = 229, .external_lex_state = 2}, - [2493] = {.lex_state = 226, .external_lex_state = 2}, - [2494] = {.lex_state = 236, .external_lex_state = 2}, - [2495] = {.lex_state = 236, .external_lex_state = 2}, - [2496] = {.lex_state = 232, .external_lex_state = 2}, - [2497] = {.lex_state = 234, .external_lex_state = 2}, - [2498] = {.lex_state = 229, .external_lex_state = 2}, - [2499] = {.lex_state = 226, .external_lex_state = 2}, - [2500] = {.lex_state = 236, .external_lex_state = 2}, + [2481] = {.lex_state = 237, .external_lex_state = 2}, + [2482] = {.lex_state = 235, .external_lex_state = 2}, + [2483] = {.lex_state = 234, .external_lex_state = 2}, + [2484] = {.lex_state = 234, .external_lex_state = 2}, + [2485] = {.lex_state = 237, .external_lex_state = 2}, + [2486] = {.lex_state = 226, .external_lex_state = 2}, + [2487] = {.lex_state = 229, .external_lex_state = 2}, + [2488] = {.lex_state = 229, .external_lex_state = 2}, + [2489] = {.lex_state = 229, .external_lex_state = 2}, + [2490] = {.lex_state = 229, .external_lex_state = 2}, + [2491] = {.lex_state = 237, .external_lex_state = 2}, + [2492] = {.lex_state = 237, .external_lex_state = 2}, + [2493] = {.lex_state = 237, .external_lex_state = 2}, + [2494] = {.lex_state = 237, .external_lex_state = 2}, + [2495] = {.lex_state = 237, .external_lex_state = 2}, + [2496] = {.lex_state = 237, .external_lex_state = 2}, + [2497] = {.lex_state = 237, .external_lex_state = 2}, + [2498] = {.lex_state = 237, .external_lex_state = 2}, + [2499] = {.lex_state = 234, .external_lex_state = 2}, + [2500] = {.lex_state = 235, .external_lex_state = 2}, [2501] = {.lex_state = 234, .external_lex_state = 2}, - [2502] = {.lex_state = 229, .external_lex_state = 2}, - [2503] = {.lex_state = 234, .external_lex_state = 2}, - [2504] = {.lex_state = 272, .external_lex_state = 6}, - [2505] = {.lex_state = 226, .external_lex_state = 2}, - [2506] = {.lex_state = 226, .external_lex_state = 2}, - [2507] = {.lex_state = 237, .external_lex_state = 2}, - [2508] = {.lex_state = 226, .external_lex_state = 2}, - [2509] = {.lex_state = 229, .external_lex_state = 2}, - [2510] = {.lex_state = 236, .external_lex_state = 2}, - [2511] = {.lex_state = 229, .external_lex_state = 2}, - [2512] = {.lex_state = 234, .external_lex_state = 2}, - [2513] = {.lex_state = 229, .external_lex_state = 2}, - [2514] = {.lex_state = 234, .external_lex_state = 2}, - [2515] = {.lex_state = 237, .external_lex_state = 2}, - [2516] = {.lex_state = 226, .external_lex_state = 2}, - [2517] = {.lex_state = 237, .external_lex_state = 2}, - [2518] = {.lex_state = 232, .external_lex_state = 2}, - [2519] = {.lex_state = 226, .external_lex_state = 2}, - [2520] = {.lex_state = 229, .external_lex_state = 2}, - [2521] = {.lex_state = 226, .external_lex_state = 2}, - [2522] = {.lex_state = 232, .external_lex_state = 2}, - [2523] = {.lex_state = 234, .external_lex_state = 2}, - [2524] = {.lex_state = 229, .external_lex_state = 2}, - [2525] = {.lex_state = 234, .external_lex_state = 2}, - [2526] = {.lex_state = 234, .external_lex_state = 2}, - [2527] = {.lex_state = 234, .external_lex_state = 2}, - [2528] = {.lex_state = 229, .external_lex_state = 2}, - [2529] = {.lex_state = 232, .external_lex_state = 2}, - [2530] = {.lex_state = 234, .external_lex_state = 2}, - [2531] = {.lex_state = 237, .external_lex_state = 2}, - [2532] = {.lex_state = 226, .external_lex_state = 2}, - [2533] = {.lex_state = 237, .external_lex_state = 2}, - [2534] = {.lex_state = 235, .external_lex_state = 2}, - [2535] = {.lex_state = 229, .external_lex_state = 2}, - [2536] = {.lex_state = 236, .external_lex_state = 2}, - [2537] = {.lex_state = 230, .external_lex_state = 2}, - [2538] = {.lex_state = 229, .external_lex_state = 2}, - [2539] = {.lex_state = 235, .external_lex_state = 2}, - [2540] = {.lex_state = 230, .external_lex_state = 2}, - [2541] = {.lex_state = 230, .external_lex_state = 2}, + [2502] = {.lex_state = 235, .external_lex_state = 2}, + [2503] = {.lex_state = 237, .external_lex_state = 2}, + [2504] = {.lex_state = 226, .external_lex_state = 2}, + [2505] = {.lex_state = 237, .external_lex_state = 2}, + [2506] = {.lex_state = 234, .external_lex_state = 2}, + [2507] = {.lex_state = 226, .external_lex_state = 2}, + [2508] = {.lex_state = 234, .external_lex_state = 2}, + [2509] = {.lex_state = 237, .external_lex_state = 2}, + [2510] = {.lex_state = 237, .external_lex_state = 2}, + [2511] = {.lex_state = 234, .external_lex_state = 2}, + [2512] = {.lex_state = 237, .external_lex_state = 2}, + [2513] = {.lex_state = 236, .external_lex_state = 2}, + [2514] = {.lex_state = 235, .external_lex_state = 2}, + [2515] = {.lex_state = 229, .external_lex_state = 2}, + [2516] = {.lex_state = 229, .external_lex_state = 2}, + [2517] = {.lex_state = 260, .external_lex_state = 2}, + [2518] = {.lex_state = 260, .external_lex_state = 2}, + [2519] = {.lex_state = 260, .external_lex_state = 2}, + [2520] = {.lex_state = 260, .external_lex_state = 2}, + [2521] = {.lex_state = 260, .external_lex_state = 2}, + [2522] = {.lex_state = 260, .external_lex_state = 2}, + [2523] = {.lex_state = 260, .external_lex_state = 2}, + [2524] = {.lex_state = 272, .external_lex_state = 6}, + [2525] = {.lex_state = 229, .external_lex_state = 2}, + [2526] = {.lex_state = 229, .external_lex_state = 2}, + [2527] = {.lex_state = 236, .external_lex_state = 2}, + [2528] = {.lex_state = 236, .external_lex_state = 2}, + [2529] = {.lex_state = 272, .external_lex_state = 6}, + [2530] = {.lex_state = 236, .external_lex_state = 2}, + [2531] = {.lex_state = 236, .external_lex_state = 2}, + [2532] = {.lex_state = 236, .external_lex_state = 2}, + [2533] = {.lex_state = 229, .external_lex_state = 2}, + [2534] = {.lex_state = 226, .external_lex_state = 2}, + [2535] = {.lex_state = 230, .external_lex_state = 2}, + [2536] = {.lex_state = 232, .external_lex_state = 2}, + [2537] = {.lex_state = 236, .external_lex_state = 2}, + [2538] = {.lex_state = 226, .external_lex_state = 2}, + [2539] = {.lex_state = 229, .external_lex_state = 2}, + [2540] = {.lex_state = 229, .external_lex_state = 2}, + [2541] = {.lex_state = 272, .external_lex_state = 6}, [2542] = {.lex_state = 272, .external_lex_state = 6}, - [2543] = {.lex_state = 234, .external_lex_state = 2}, - [2544] = {.lex_state = 230, .external_lex_state = 2}, + [2543] = {.lex_state = 272, .external_lex_state = 6}, + [2544] = {.lex_state = 229, .external_lex_state = 2}, [2545] = {.lex_state = 230, .external_lex_state = 2}, - [2546] = {.lex_state = 237, .external_lex_state = 2}, - [2547] = {.lex_state = 236, .external_lex_state = 2}, - [2548] = {.lex_state = 237, .external_lex_state = 2}, - [2549] = {.lex_state = 235, .external_lex_state = 2}, - [2550] = {.lex_state = 229, .external_lex_state = 2}, - [2551] = {.lex_state = 272, .external_lex_state = 6}, - [2552] = {.lex_state = 235, .external_lex_state = 2}, + [2546] = {.lex_state = 232, .external_lex_state = 2}, + [2547] = {.lex_state = 232, .external_lex_state = 2}, + [2548] = {.lex_state = 230, .external_lex_state = 2}, + [2549] = {.lex_state = 229, .external_lex_state = 2}, + [2550] = {.lex_state = 232, .external_lex_state = 2}, + [2551] = {.lex_state = 236, .external_lex_state = 2}, + [2552] = {.lex_state = 230, .external_lex_state = 2}, [2553] = {.lex_state = 229, .external_lex_state = 2}, [2554] = {.lex_state = 230, .external_lex_state = 2}, - [2555] = {.lex_state = 237, .external_lex_state = 2}, - [2556] = {.lex_state = 230, .external_lex_state = 2}, - [2557] = {.lex_state = 230, .external_lex_state = 2}, - [2558] = {.lex_state = 232, .external_lex_state = 2}, - [2559] = {.lex_state = 237, .external_lex_state = 2}, - [2560] = {.lex_state = 272, .external_lex_state = 6}, - [2561] = {.lex_state = 237, .external_lex_state = 2}, - [2562] = {.lex_state = 232, .external_lex_state = 2}, - [2563] = {.lex_state = 260, .external_lex_state = 2}, - [2564] = {.lex_state = 236, .external_lex_state = 2}, - [2565] = {.lex_state = 235, .external_lex_state = 2}, - [2566] = {.lex_state = 236, .external_lex_state = 2}, - [2567] = {.lex_state = 260, .external_lex_state = 2}, - [2568] = {.lex_state = 232, .external_lex_state = 2}, - [2569] = {.lex_state = 236, .external_lex_state = 2}, - [2570] = {.lex_state = 236, .external_lex_state = 2}, - [2571] = {.lex_state = 234, .external_lex_state = 2}, - [2572] = {.lex_state = 237, .external_lex_state = 2}, - [2573] = {.lex_state = 232, .external_lex_state = 2}, + [2555] = {.lex_state = 236, .external_lex_state = 2}, + [2556] = {.lex_state = 226, .external_lex_state = 2}, + [2557] = {.lex_state = 235, .external_lex_state = 2}, + [2558] = {.lex_state = 230, .external_lex_state = 2}, + [2559] = {.lex_state = 230, .external_lex_state = 2}, + [2560] = {.lex_state = 235, .external_lex_state = 2}, + [2561] = {.lex_state = 226, .external_lex_state = 2}, + [2562] = {.lex_state = 236, .external_lex_state = 2}, + [2563] = {.lex_state = 232, .external_lex_state = 2}, + [2564] = {.lex_state = 226, .external_lex_state = 2}, + [2565] = {.lex_state = 232, .external_lex_state = 2}, + [2566] = {.lex_state = 230, .external_lex_state = 2}, + [2567] = {.lex_state = 229, .external_lex_state = 2}, + [2568] = {.lex_state = 229, .external_lex_state = 2}, + [2569] = {.lex_state = 232, .external_lex_state = 2}, + [2570] = {.lex_state = 235, .external_lex_state = 2}, + [2571] = {.lex_state = 272, .external_lex_state = 6}, + [2572] = {.lex_state = 236, .external_lex_state = 2}, + [2573] = {.lex_state = 234, .external_lex_state = 2}, [2574] = {.lex_state = 232, .external_lex_state = 2}, [2575] = {.lex_state = 232, .external_lex_state = 2}, [2576] = {.lex_state = 236, .external_lex_state = 2}, - [2577] = {.lex_state = 234, .external_lex_state = 2}, - [2578] = {.lex_state = 237, .external_lex_state = 2}, - [2579] = {.lex_state = 260, .external_lex_state = 2}, - [2580] = {.lex_state = 237, .external_lex_state = 2}, + [2577] = {.lex_state = 235, .external_lex_state = 2}, + [2578] = {.lex_state = 235, .external_lex_state = 2}, + [2579] = {.lex_state = 229, .external_lex_state = 2}, + [2580] = {.lex_state = 236, .external_lex_state = 2}, [2581] = {.lex_state = 235, .external_lex_state = 2}, - [2582] = {.lex_state = 232, .external_lex_state = 2}, + [2582] = {.lex_state = 234, .external_lex_state = 2}, [2583] = {.lex_state = 232, .external_lex_state = 2}, - [2584] = {.lex_state = 235, .external_lex_state = 2}, - [2585] = {.lex_state = 237, .external_lex_state = 2}, - [2586] = {.lex_state = 237, .external_lex_state = 2}, - [2587] = {.lex_state = 229, .external_lex_state = 2}, - [2588] = {.lex_state = 232, .external_lex_state = 2}, - [2589] = {.lex_state = 260, .external_lex_state = 2}, - [2590] = {.lex_state = 232, .external_lex_state = 2}, - [2591] = {.lex_state = 234, .external_lex_state = 2}, - [2592] = {.lex_state = 237, .external_lex_state = 2}, - [2593] = {.lex_state = 260, .external_lex_state = 2}, - [2594] = {.lex_state = 235, .external_lex_state = 2}, - [2595] = {.lex_state = 237, .external_lex_state = 2}, - [2596] = {.lex_state = 232, .external_lex_state = 2}, - [2597] = {.lex_state = 234, .external_lex_state = 2}, + [2584] = {.lex_state = 272, .external_lex_state = 6}, + [2585] = {.lex_state = 235, .external_lex_state = 2}, + [2586] = {.lex_state = 232, .external_lex_state = 2}, + [2587] = {.lex_state = 236, .external_lex_state = 2}, + [2588] = {.lex_state = 229, .external_lex_state = 2}, + [2589] = {.lex_state = 232, .external_lex_state = 2}, + [2590] = {.lex_state = 234, .external_lex_state = 2}, + [2591] = {.lex_state = 236, .external_lex_state = 2}, + [2592] = {.lex_state = 234, .external_lex_state = 2}, + [2593] = {.lex_state = 237, .external_lex_state = 2}, + [2594] = {.lex_state = 232, .external_lex_state = 2}, + [2595] = {.lex_state = 234, .external_lex_state = 2}, + [2596] = {.lex_state = 235, .external_lex_state = 2}, + [2597] = {.lex_state = 237, .external_lex_state = 2}, [2598] = {.lex_state = 232, .external_lex_state = 2}, - [2599] = {.lex_state = 232, .external_lex_state = 2}, - [2600] = {.lex_state = 272, .external_lex_state = 6}, + [2599] = {.lex_state = 236, .external_lex_state = 2}, + [2600] = {.lex_state = 232, .external_lex_state = 2}, [2601] = {.lex_state = 237, .external_lex_state = 2}, - [2602] = {.lex_state = 232, .external_lex_state = 2}, - [2603] = {.lex_state = 232, .external_lex_state = 2}, - [2604] = {.lex_state = 229, .external_lex_state = 2}, - [2605] = {.lex_state = 272, .external_lex_state = 6}, - [2606] = {.lex_state = 260, .external_lex_state = 2}, + [2602] = {.lex_state = 235, .external_lex_state = 2}, + [2603] = {.lex_state = 235, .external_lex_state = 2}, + [2604] = {.lex_state = 232, .external_lex_state = 2}, + [2605] = {.lex_state = 232, .external_lex_state = 2}, + [2606] = {.lex_state = 237, .external_lex_state = 2}, [2607] = {.lex_state = 235, .external_lex_state = 2}, - [2608] = {.lex_state = 232, .external_lex_state = 2}, - [2609] = {.lex_state = 260, .external_lex_state = 2}, - [2610] = {.lex_state = 232, .external_lex_state = 2}, - [2611] = {.lex_state = 235, .external_lex_state = 2}, - [2612] = {.lex_state = 281, .external_lex_state = 2}, - [2613] = {.lex_state = 281, .external_lex_state = 2}, - [2614] = {.lex_state = 230, .external_lex_state = 2}, - [2615] = {.lex_state = 230, .external_lex_state = 2}, + [2608] = {.lex_state = 234, .external_lex_state = 2}, + [2609] = {.lex_state = 235, .external_lex_state = 2}, + [2610] = {.lex_state = 237, .external_lex_state = 2}, + [2611] = {.lex_state = 230, .external_lex_state = 2}, + [2612] = {.lex_state = 230, .external_lex_state = 2}, + [2613] = {.lex_state = 230, .external_lex_state = 2}, + [2614] = {.lex_state = 281, .external_lex_state = 2}, + [2615] = {.lex_state = 281, .external_lex_state = 2}, [2616] = {.lex_state = 230, .external_lex_state = 2}, - [2617] = {.lex_state = 230, .external_lex_state = 2}, - [2618] = {.lex_state = 230, .external_lex_state = 2}, - [2619] = {.lex_state = 281, .external_lex_state = 2}, + [2617] = {.lex_state = 281, .external_lex_state = 2}, + [2618] = {.lex_state = 281, .external_lex_state = 2}, + [2619] = {.lex_state = 230, .external_lex_state = 2}, [2620] = {.lex_state = 230, .external_lex_state = 2}, - [2621] = {.lex_state = 230, .external_lex_state = 2}, + [2621] = {.lex_state = 281, .external_lex_state = 2}, [2622] = {.lex_state = 230, .external_lex_state = 2}, - [2623] = {.lex_state = 281, .external_lex_state = 2}, + [2623] = {.lex_state = 272, .external_lex_state = 5}, [2624] = {.lex_state = 230, .external_lex_state = 2}, [2625] = {.lex_state = 281, .external_lex_state = 2}, [2626] = {.lex_state = 230, .external_lex_state = 2}, [2627] = {.lex_state = 230, .external_lex_state = 2}, - [2628] = {.lex_state = 230, .external_lex_state = 2}, + [2628] = {.lex_state = 281, .external_lex_state = 2}, [2629] = {.lex_state = 230, .external_lex_state = 2}, [2630] = {.lex_state = 230, .external_lex_state = 2}, [2631] = {.lex_state = 230, .external_lex_state = 2}, @@ -37651,31 +37650,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2635] = {.lex_state = 230, .external_lex_state = 2}, [2636] = {.lex_state = 230, .external_lex_state = 2}, [2637] = {.lex_state = 230, .external_lex_state = 2}, - [2638] = {.lex_state = 281, .external_lex_state = 2}, - [2639] = {.lex_state = 272, .external_lex_state = 5}, + [2638] = {.lex_state = 230, .external_lex_state = 2}, + [2639] = {.lex_state = 230, .external_lex_state = 2}, [2640] = {.lex_state = 230, .external_lex_state = 2}, [2641] = {.lex_state = 281, .external_lex_state = 2}, - [2642] = {.lex_state = 230, .external_lex_state = 2}, + [2642] = {.lex_state = 281, .external_lex_state = 2}, [2643] = {.lex_state = 230, .external_lex_state = 2}, [2644] = {.lex_state = 230, .external_lex_state = 2}, - [2645] = {.lex_state = 281, .external_lex_state = 2}, - [2646] = {.lex_state = 281, .external_lex_state = 2}, + [2645] = {.lex_state = 230, .external_lex_state = 2}, + [2646] = {.lex_state = 230, .external_lex_state = 2}, [2647] = {.lex_state = 272, .external_lex_state = 6}, - [2648] = {.lex_state = 280, .external_lex_state = 2}, - [2649] = {.lex_state = 281, .external_lex_state = 2}, + [2648] = {.lex_state = 281, .external_lex_state = 2}, + [2649] = {.lex_state = 280, .external_lex_state = 2}, [2650] = {.lex_state = 280, .external_lex_state = 2}, [2651] = {.lex_state = 280, .external_lex_state = 2}, [2652] = {.lex_state = 280, .external_lex_state = 2}, [2653] = {.lex_state = 280, .external_lex_state = 2}, - [2654] = {.lex_state = 280, .external_lex_state = 2}, - [2655] = {.lex_state = 280, .external_lex_state = 3}, + [2654] = {.lex_state = 272, .external_lex_state = 6}, + [2655] = {.lex_state = 280, .external_lex_state = 2}, [2656] = {.lex_state = 280, .external_lex_state = 2}, [2657] = {.lex_state = 280, .external_lex_state = 2}, [2658] = {.lex_state = 280, .external_lex_state = 2}, - [2659] = {.lex_state = 272, .external_lex_state = 6}, - [2660] = {.lex_state = 280, .external_lex_state = 2}, - [2661] = {.lex_state = 272, .external_lex_state = 6}, - [2662] = {.lex_state = 280, .external_lex_state = 2}, + [2659] = {.lex_state = 280, .external_lex_state = 2}, + [2660] = {.lex_state = 280, .external_lex_state = 3}, + [2661] = {.lex_state = 280, .external_lex_state = 2}, + [2662] = {.lex_state = 272, .external_lex_state = 6}, [2663] = {.lex_state = 280, .external_lex_state = 2}, [2664] = {.lex_state = 280, .external_lex_state = 2}, [2665] = {.lex_state = 280, .external_lex_state = 2}, @@ -37685,238 +37684,238 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2669] = {.lex_state = 280, .external_lex_state = 2}, [2670] = {.lex_state = 280, .external_lex_state = 2}, [2671] = {.lex_state = 280, .external_lex_state = 2}, - [2672] = {.lex_state = 280, .external_lex_state = 3}, - [2673] = {.lex_state = 262, .external_lex_state = 4}, - [2674] = {.lex_state = 280, .external_lex_state = 3}, + [2672] = {.lex_state = 280, .external_lex_state = 2}, + [2673] = {.lex_state = 280, .external_lex_state = 2}, + [2674] = {.lex_state = 280, .external_lex_state = 2}, [2675] = {.lex_state = 280, .external_lex_state = 2}, - [2676] = {.lex_state = 280, .external_lex_state = 2}, + [2676] = {.lex_state = 262, .external_lex_state = 4}, [2677] = {.lex_state = 280, .external_lex_state = 2}, [2678] = {.lex_state = 280, .external_lex_state = 2}, [2679] = {.lex_state = 280, .external_lex_state = 2}, [2680] = {.lex_state = 280, .external_lex_state = 2}, - [2681] = {.lex_state = 280, .external_lex_state = 2}, - [2682] = {.lex_state = 280, .external_lex_state = 2}, + [2681] = {.lex_state = 280, .external_lex_state = 3}, + [2682] = {.lex_state = 262, .external_lex_state = 4}, [2683] = {.lex_state = 280, .external_lex_state = 2}, [2684] = {.lex_state = 280, .external_lex_state = 2}, - [2685] = {.lex_state = 280, .external_lex_state = 3}, + [2685] = {.lex_state = 280, .external_lex_state = 2}, [2686] = {.lex_state = 280, .external_lex_state = 3}, - [2687] = {.lex_state = 280, .external_lex_state = 2}, + [2687] = {.lex_state = 280, .external_lex_state = 3}, [2688] = {.lex_state = 280, .external_lex_state = 2}, - [2689] = {.lex_state = 262, .external_lex_state = 4}, + [2689] = {.lex_state = 280, .external_lex_state = 3}, [2690] = {.lex_state = 280, .external_lex_state = 2}, [2691] = {.lex_state = 280, .external_lex_state = 2}, [2692] = {.lex_state = 262, .external_lex_state = 4}, [2693] = {.lex_state = 280, .external_lex_state = 2}, [2694] = {.lex_state = 280, .external_lex_state = 2}, - [2695] = {.lex_state = 280, .external_lex_state = 2}, + [2695] = {.lex_state = 280, .external_lex_state = 3}, [2696] = {.lex_state = 262, .external_lex_state = 4}, - [2697] = {.lex_state = 262, .external_lex_state = 4}, - [2698] = {.lex_state = 280, .external_lex_state = 3}, - [2699] = {.lex_state = 280, .external_lex_state = 2}, + [2697] = {.lex_state = 280, .external_lex_state = 2}, + [2698] = {.lex_state = 280, .external_lex_state = 2}, + [2699] = {.lex_state = 262, .external_lex_state = 4}, [2700] = {.lex_state = 280, .external_lex_state = 2}, [2701] = {.lex_state = 280, .external_lex_state = 2}, - [2702] = {.lex_state = 262, .external_lex_state = 4}, - [2703] = {.lex_state = 241, .external_lex_state = 4}, + [2702] = {.lex_state = 280, .external_lex_state = 2}, + [2703] = {.lex_state = 212, .external_lex_state = 3}, [2704] = {.lex_state = 241, .external_lex_state = 4}, [2705] = {.lex_state = 241, .external_lex_state = 4}, [2706] = {.lex_state = 241, .external_lex_state = 4}, - [2707] = {.lex_state = 212, .external_lex_state = 3}, + [2707] = {.lex_state = 241, .external_lex_state = 4}, [2708] = {.lex_state = 262, .external_lex_state = 4}, - [2709] = {.lex_state = 262, .external_lex_state = 4}, - [2710] = {.lex_state = 215, .external_lex_state = 4}, + [2709] = {.lex_state = 241, .external_lex_state = 4}, + [2710] = {.lex_state = 212, .external_lex_state = 3}, [2711] = {.lex_state = 241, .external_lex_state = 4}, [2712] = {.lex_state = 262, .external_lex_state = 4}, - [2713] = {.lex_state = 241, .external_lex_state = 4}, - [2714] = {.lex_state = 280, .external_lex_state = 2}, + [2713] = {.lex_state = 215, .external_lex_state = 4}, + [2714] = {.lex_state = 215, .external_lex_state = 4}, [2715] = {.lex_state = 262, .external_lex_state = 4}, - [2716] = {.lex_state = 280, .external_lex_state = 2}, - [2717] = {.lex_state = 262, .external_lex_state = 4}, - [2718] = {.lex_state = 262, .external_lex_state = 4}, - [2719] = {.lex_state = 215, .external_lex_state = 4}, - [2720] = {.lex_state = 215, .external_lex_state = 4}, - [2721] = {.lex_state = 262, .external_lex_state = 4}, - [2722] = {.lex_state = 215, .external_lex_state = 4}, + [2716] = {.lex_state = 241, .external_lex_state = 4}, + [2717] = {.lex_state = 241, .external_lex_state = 4}, + [2718] = {.lex_state = 215, .external_lex_state = 4}, + [2719] = {.lex_state = 262, .external_lex_state = 4}, + [2720] = {.lex_state = 262, .external_lex_state = 4}, + [2721] = {.lex_state = 215, .external_lex_state = 4}, + [2722] = {.lex_state = 262, .external_lex_state = 4}, [2723] = {.lex_state = 262, .external_lex_state = 4}, - [2724] = {.lex_state = 215, .external_lex_state = 4}, - [2725] = {.lex_state = 215, .external_lex_state = 4}, + [2724] = {.lex_state = 262, .external_lex_state = 4}, + [2725] = {.lex_state = 262, .external_lex_state = 4}, [2726] = {.lex_state = 262, .external_lex_state = 4}, - [2727] = {.lex_state = 262, .external_lex_state = 4}, - [2728] = {.lex_state = 212, .external_lex_state = 3}, - [2729] = {.lex_state = 262, .external_lex_state = 4}, + [2727] = {.lex_state = 212, .external_lex_state = 3}, + [2728] = {.lex_state = 262, .external_lex_state = 4}, + [2729] = {.lex_state = 241, .external_lex_state = 4}, [2730] = {.lex_state = 215, .external_lex_state = 4}, - [2731] = {.lex_state = 241, .external_lex_state = 4}, - [2732] = {.lex_state = 215, .external_lex_state = 4}, - [2733] = {.lex_state = 215, .external_lex_state = 4}, + [2731] = {.lex_state = 215, .external_lex_state = 4}, + [2732] = {.lex_state = 262, .external_lex_state = 4}, + [2733] = {.lex_state = 241, .external_lex_state = 4}, [2734] = {.lex_state = 241, .external_lex_state = 4}, - [2735] = {.lex_state = 262, .external_lex_state = 4}, - [2736] = {.lex_state = 262, .external_lex_state = 4}, - [2737] = {.lex_state = 241, .external_lex_state = 4}, - [2738] = {.lex_state = 241, .external_lex_state = 4}, - [2739] = {.lex_state = 262, .external_lex_state = 4}, - [2740] = {.lex_state = 215, .external_lex_state = 4}, - [2741] = {.lex_state = 241, .external_lex_state = 4}, - [2742] = {.lex_state = 215, .external_lex_state = 4}, + [2735] = {.lex_state = 280, .external_lex_state = 2}, + [2736] = {.lex_state = 215, .external_lex_state = 4}, + [2737] = {.lex_state = 262, .external_lex_state = 4}, + [2738] = {.lex_state = 215, .external_lex_state = 4}, + [2739] = {.lex_state = 215, .external_lex_state = 4}, + [2740] = {.lex_state = 262, .external_lex_state = 4}, + [2741] = {.lex_state = 215, .external_lex_state = 4}, + [2742] = {.lex_state = 241, .external_lex_state = 4}, [2743] = {.lex_state = 262, .external_lex_state = 4}, - [2744] = {.lex_state = 212, .external_lex_state = 3}, + [2744] = {.lex_state = 262, .external_lex_state = 4}, [2745] = {.lex_state = 262, .external_lex_state = 4}, - [2746] = {.lex_state = 215, .external_lex_state = 4}, - [2747] = {.lex_state = 215, .external_lex_state = 4}, - [2748] = {.lex_state = 262, .external_lex_state = 4}, - [2749] = {.lex_state = 262, .external_lex_state = 4}, - [2750] = {.lex_state = 262, .external_lex_state = 4}, - [2751] = {.lex_state = 262, .external_lex_state = 4}, + [2746] = {.lex_state = 262, .external_lex_state = 4}, + [2747] = {.lex_state = 280, .external_lex_state = 2}, + [2748] = {.lex_state = 280, .external_lex_state = 2}, + [2749] = {.lex_state = 215, .external_lex_state = 4}, + [2750] = {.lex_state = 215, .external_lex_state = 4}, + [2751] = {.lex_state = 215, .external_lex_state = 4}, [2752] = {.lex_state = 262, .external_lex_state = 4}, - [2753] = {.lex_state = 262, .external_lex_state = 4}, - [2754] = {.lex_state = 262, .external_lex_state = 4}, + [2753] = {.lex_state = 215, .external_lex_state = 4}, + [2754] = {.lex_state = 212, .external_lex_state = 3}, [2755] = {.lex_state = 262, .external_lex_state = 4}, - [2756] = {.lex_state = 262, .external_lex_state = 4}, - [2757] = {.lex_state = 212, .external_lex_state = 3}, + [2756] = {.lex_state = 215, .external_lex_state = 4}, + [2757] = {.lex_state = 262, .external_lex_state = 4}, [2758] = {.lex_state = 262, .external_lex_state = 4}, - [2759] = {.lex_state = 280, .external_lex_state = 2}, - [2760] = {.lex_state = 241, .external_lex_state = 4}, - [2761] = {.lex_state = 241, .external_lex_state = 4}, - [2762] = {.lex_state = 262, .external_lex_state = 4}, - [2763] = {.lex_state = 262, .external_lex_state = 4}, + [2759] = {.lex_state = 262, .external_lex_state = 4}, + [2760] = {.lex_state = 262, .external_lex_state = 4}, + [2761] = {.lex_state = 262, .external_lex_state = 4}, + [2762] = {.lex_state = 212, .external_lex_state = 3}, + [2763] = {.lex_state = 241, .external_lex_state = 4}, [2764] = {.lex_state = 262, .external_lex_state = 4}, [2765] = {.lex_state = 262, .external_lex_state = 4}, [2766] = {.lex_state = 262, .external_lex_state = 4}, - [2767] = {.lex_state = 215, .external_lex_state = 4}, - [2768] = {.lex_state = 215, .external_lex_state = 4}, - [2769] = {.lex_state = 215, .external_lex_state = 4}, - [2770] = {.lex_state = 212, .external_lex_state = 3}, - [2771] = {.lex_state = 241, .external_lex_state = 4}, - [2772] = {.lex_state = 280, .external_lex_state = 2}, - [2773] = {.lex_state = 241, .external_lex_state = 4}, + [2767] = {.lex_state = 262, .external_lex_state = 4}, + [2768] = {.lex_state = 241, .external_lex_state = 4}, + [2769] = {.lex_state = 262, .external_lex_state = 4}, + [2770] = {.lex_state = 241, .external_lex_state = 4}, + [2771] = {.lex_state = 215, .external_lex_state = 4}, + [2772] = {.lex_state = 262, .external_lex_state = 4}, + [2773] = {.lex_state = 262, .external_lex_state = 4}, [2774] = {.lex_state = 241, .external_lex_state = 4}, [2775] = {.lex_state = 215, .external_lex_state = 4}, - [2776] = {.lex_state = 241, .external_lex_state = 4}, - [2777] = {.lex_state = 241, .external_lex_state = 4}, - [2778] = {.lex_state = 215, .external_lex_state = 4}, + [2776] = {.lex_state = 215, .external_lex_state = 4}, + [2777] = {.lex_state = 215, .external_lex_state = 4}, + [2778] = {.lex_state = 241, .external_lex_state = 4}, [2779] = {.lex_state = 215, .external_lex_state = 4}, [2780] = {.lex_state = 241, .external_lex_state = 4}, - [2781] = {.lex_state = 241, .external_lex_state = 4}, - [2782] = {.lex_state = 241, .external_lex_state = 4}, - [2783] = {.lex_state = 280, .external_lex_state = 2}, - [2784] = {.lex_state = 215, .external_lex_state = 4}, + [2781] = {.lex_state = 215, .external_lex_state = 4}, + [2782] = {.lex_state = 280, .external_lex_state = 2}, + [2783] = {.lex_state = 241, .external_lex_state = 4}, + [2784] = {.lex_state = 280, .external_lex_state = 2}, [2785] = {.lex_state = 215, .external_lex_state = 4}, [2786] = {.lex_state = 241, .external_lex_state = 4}, [2787] = {.lex_state = 241, .external_lex_state = 4}, - [2788] = {.lex_state = 241, .external_lex_state = 4}, - [2789] = {.lex_state = 241, .external_lex_state = 4}, - [2790] = {.lex_state = 280, .external_lex_state = 2}, - [2791] = {.lex_state = 215, .external_lex_state = 4}, + [2788] = {.lex_state = 280, .external_lex_state = 2}, + [2789] = {.lex_state = 215, .external_lex_state = 4}, + [2790] = {.lex_state = 215, .external_lex_state = 4}, + [2791] = {.lex_state = 280, .external_lex_state = 2}, [2792] = {.lex_state = 241, .external_lex_state = 4}, - [2793] = {.lex_state = 241, .external_lex_state = 4}, - [2794] = {.lex_state = 241, .external_lex_state = 4}, + [2793] = {.lex_state = 215, .external_lex_state = 4}, + [2794] = {.lex_state = 215, .external_lex_state = 4}, [2795] = {.lex_state = 241, .external_lex_state = 4}, [2796] = {.lex_state = 215, .external_lex_state = 4}, [2797] = {.lex_state = 215, .external_lex_state = 4}, - [2798] = {.lex_state = 215, .external_lex_state = 4}, - [2799] = {.lex_state = 215, .external_lex_state = 4}, - [2800] = {.lex_state = 241, .external_lex_state = 4}, + [2798] = {.lex_state = 241, .external_lex_state = 4}, + [2799] = {.lex_state = 241, .external_lex_state = 4}, + [2800] = {.lex_state = 215, .external_lex_state = 4}, [2801] = {.lex_state = 215, .external_lex_state = 4}, [2802] = {.lex_state = 215, .external_lex_state = 4}, - [2803] = {.lex_state = 241, .external_lex_state = 4}, - [2804] = {.lex_state = 215, .external_lex_state = 4}, - [2805] = {.lex_state = 241, .external_lex_state = 4}, - [2806] = {.lex_state = 215, .external_lex_state = 4}, - [2807] = {.lex_state = 215, .external_lex_state = 4}, - [2808] = {.lex_state = 241, .external_lex_state = 4}, - [2809] = {.lex_state = 283, .external_lex_state = 2}, + [2803] = {.lex_state = 215, .external_lex_state = 4}, + [2804] = {.lex_state = 280, .external_lex_state = 2}, + [2805] = {.lex_state = 215, .external_lex_state = 4}, + [2806] = {.lex_state = 241, .external_lex_state = 4}, + [2807] = {.lex_state = 280, .external_lex_state = 2}, + [2808] = {.lex_state = 215, .external_lex_state = 4}, + [2809] = {.lex_state = 280, .external_lex_state = 2}, [2810] = {.lex_state = 280, .external_lex_state = 2}, - [2811] = {.lex_state = 215, .external_lex_state = 4}, - [2812] = {.lex_state = 215, .external_lex_state = 4}, - [2813] = {.lex_state = 215, .external_lex_state = 4}, - [2814] = {.lex_state = 241, .external_lex_state = 4}, - [2815] = {.lex_state = 241, .external_lex_state = 4}, - [2816] = {.lex_state = 241, .external_lex_state = 4}, - [2817] = {.lex_state = 241, .external_lex_state = 4}, - [2818] = {.lex_state = 215, .external_lex_state = 4}, - [2819] = {.lex_state = 215, .external_lex_state = 4}, - [2820] = {.lex_state = 215, .external_lex_state = 4}, + [2811] = {.lex_state = 280, .external_lex_state = 2}, + [2812] = {.lex_state = 280, .external_lex_state = 2}, + [2813] = {.lex_state = 280, .external_lex_state = 2}, + [2814] = {.lex_state = 215, .external_lex_state = 4}, + [2815] = {.lex_state = 215, .external_lex_state = 4}, + [2816] = {.lex_state = 215, .external_lex_state = 4}, + [2817] = {.lex_state = 215, .external_lex_state = 4}, + [2818] = {.lex_state = 241, .external_lex_state = 4}, + [2819] = {.lex_state = 241, .external_lex_state = 4}, + [2820] = {.lex_state = 241, .external_lex_state = 4}, [2821] = {.lex_state = 241, .external_lex_state = 4}, - [2822] = {.lex_state = 241, .external_lex_state = 4}, - [2823] = {.lex_state = 215, .external_lex_state = 4}, - [2824] = {.lex_state = 280, .external_lex_state = 2}, + [2822] = {.lex_state = 215, .external_lex_state = 4}, + [2823] = {.lex_state = 241, .external_lex_state = 4}, + [2824] = {.lex_state = 215, .external_lex_state = 4}, [2825] = {.lex_state = 241, .external_lex_state = 4}, [2826] = {.lex_state = 241, .external_lex_state = 4}, [2827] = {.lex_state = 241, .external_lex_state = 4}, [2828] = {.lex_state = 241, .external_lex_state = 4}, [2829] = {.lex_state = 241, .external_lex_state = 4}, - [2830] = {.lex_state = 280, .external_lex_state = 2}, - [2831] = {.lex_state = 215, .external_lex_state = 4}, + [2830] = {.lex_state = 215, .external_lex_state = 4}, + [2831] = {.lex_state = 241, .external_lex_state = 4}, [2832] = {.lex_state = 241, .external_lex_state = 4}, - [2833] = {.lex_state = 215, .external_lex_state = 4}, - [2834] = {.lex_state = 241, .external_lex_state = 4}, + [2833] = {.lex_state = 241, .external_lex_state = 4}, + [2834] = {.lex_state = 215, .external_lex_state = 4}, [2835] = {.lex_state = 241, .external_lex_state = 4}, - [2836] = {.lex_state = 215, .external_lex_state = 4}, + [2836] = {.lex_state = 241, .external_lex_state = 4}, [2837] = {.lex_state = 215, .external_lex_state = 4}, - [2838] = {.lex_state = 215, .external_lex_state = 4}, + [2838] = {.lex_state = 241, .external_lex_state = 4}, [2839] = {.lex_state = 241, .external_lex_state = 4}, - [2840] = {.lex_state = 215, .external_lex_state = 4}, - [2841] = {.lex_state = 215, .external_lex_state = 4}, + [2840] = {.lex_state = 241, .external_lex_state = 4}, + [2841] = {.lex_state = 241, .external_lex_state = 4}, [2842] = {.lex_state = 241, .external_lex_state = 4}, [2843] = {.lex_state = 241, .external_lex_state = 4}, - [2844] = {.lex_state = 241, .external_lex_state = 4}, - [2845] = {.lex_state = 280, .external_lex_state = 2}, - [2846] = {.lex_state = 241, .external_lex_state = 4}, + [2844] = {.lex_state = 215, .external_lex_state = 4}, + [2845] = {.lex_state = 215, .external_lex_state = 4}, + [2846] = {.lex_state = 215, .external_lex_state = 4}, [2847] = {.lex_state = 215, .external_lex_state = 4}, [2848] = {.lex_state = 241, .external_lex_state = 4}, - [2849] = {.lex_state = 215, .external_lex_state = 4}, - [2850] = {.lex_state = 215, .external_lex_state = 4}, - [2851] = {.lex_state = 215, .external_lex_state = 4}, + [2849] = {.lex_state = 241, .external_lex_state = 4}, + [2850] = {.lex_state = 241, .external_lex_state = 4}, + [2851] = {.lex_state = 241, .external_lex_state = 4}, [2852] = {.lex_state = 215, .external_lex_state = 4}, - [2853] = {.lex_state = 215, .external_lex_state = 4}, - [2854] = {.lex_state = 215, .external_lex_state = 4}, + [2853] = {.lex_state = 241, .external_lex_state = 4}, + [2854] = {.lex_state = 280, .external_lex_state = 2}, [2855] = {.lex_state = 241, .external_lex_state = 4}, [2856] = {.lex_state = 241, .external_lex_state = 4}, - [2857] = {.lex_state = 241, .external_lex_state = 4}, + [2857] = {.lex_state = 215, .external_lex_state = 4}, [2858] = {.lex_state = 215, .external_lex_state = 4}, - [2859] = {.lex_state = 241, .external_lex_state = 4}, - [2860] = {.lex_state = 215, .external_lex_state = 4}, - [2861] = {.lex_state = 241, .external_lex_state = 4}, - [2862] = {.lex_state = 215, .external_lex_state = 4}, - [2863] = {.lex_state = 241, .external_lex_state = 4}, + [2859] = {.lex_state = 215, .external_lex_state = 4}, + [2860] = {.lex_state = 241, .external_lex_state = 4}, + [2861] = {.lex_state = 215, .external_lex_state = 4}, + [2862] = {.lex_state = 280, .external_lex_state = 2}, + [2863] = {.lex_state = 215, .external_lex_state = 4}, [2864] = {.lex_state = 215, .external_lex_state = 4}, - [2865] = {.lex_state = 215, .external_lex_state = 4}, + [2865] = {.lex_state = 241, .external_lex_state = 4}, [2866] = {.lex_state = 215, .external_lex_state = 4}, [2867] = {.lex_state = 241, .external_lex_state = 4}, - [2868] = {.lex_state = 280, .external_lex_state = 2}, - [2869] = {.lex_state = 241, .external_lex_state = 4}, - [2870] = {.lex_state = 280, .external_lex_state = 2}, - [2871] = {.lex_state = 241, .external_lex_state = 4}, - [2872] = {.lex_state = 280, .external_lex_state = 2}, - [2873] = {.lex_state = 280, .external_lex_state = 2}, + [2868] = {.lex_state = 241, .external_lex_state = 4}, + [2869] = {.lex_state = 280, .external_lex_state = 2}, + [2870] = {.lex_state = 215, .external_lex_state = 4}, + [2871] = {.lex_state = 215, .external_lex_state = 4}, + [2872] = {.lex_state = 241, .external_lex_state = 4}, + [2873] = {.lex_state = 241, .external_lex_state = 4}, [2874] = {.lex_state = 215, .external_lex_state = 4}, [2875] = {.lex_state = 215, .external_lex_state = 4}, - [2876] = {.lex_state = 280, .external_lex_state = 2}, + [2876] = {.lex_state = 215, .external_lex_state = 4}, [2877] = {.lex_state = 215, .external_lex_state = 4}, - [2878] = {.lex_state = 280, .external_lex_state = 2}, - [2879] = {.lex_state = 215, .external_lex_state = 4}, - [2880] = {.lex_state = 215, .external_lex_state = 4}, + [2878] = {.lex_state = 215, .external_lex_state = 4}, + [2879] = {.lex_state = 241, .external_lex_state = 4}, + [2880] = {.lex_state = 241, .external_lex_state = 4}, [2881] = {.lex_state = 280, .external_lex_state = 2}, [2882] = {.lex_state = 280, .external_lex_state = 2}, [2883] = {.lex_state = 215, .external_lex_state = 4}, [2884] = {.lex_state = 280, .external_lex_state = 2}, - [2885] = {.lex_state = 280, .external_lex_state = 2}, + [2885] = {.lex_state = 215, .external_lex_state = 4}, [2886] = {.lex_state = 280, .external_lex_state = 2}, - [2887] = {.lex_state = 215, .external_lex_state = 4}, - [2888] = {.lex_state = 241, .external_lex_state = 4}, + [2887] = {.lex_state = 241, .external_lex_state = 4}, + [2888] = {.lex_state = 280, .external_lex_state = 2}, [2889] = {.lex_state = 241, .external_lex_state = 4}, [2890] = {.lex_state = 241, .external_lex_state = 4}, - [2891] = {.lex_state = 215, .external_lex_state = 4}, + [2891] = {.lex_state = 280, .external_lex_state = 2}, [2892] = {.lex_state = 215, .external_lex_state = 4}, - [2893] = {.lex_state = 215, .external_lex_state = 4}, + [2893] = {.lex_state = 241, .external_lex_state = 4}, [2894] = {.lex_state = 215, .external_lex_state = 4}, - [2895] = {.lex_state = 241, .external_lex_state = 4}, + [2895] = {.lex_state = 215, .external_lex_state = 4}, [2896] = {.lex_state = 215, .external_lex_state = 4}, - [2897] = {.lex_state = 280, .external_lex_state = 2}, + [2897] = {.lex_state = 284, .external_lex_state = 2}, [2898] = {.lex_state = 215, .external_lex_state = 4}, - [2899] = {.lex_state = 280, .external_lex_state = 2}, - [2900] = {.lex_state = 280, .external_lex_state = 2}, - [2901] = {.lex_state = 241, .external_lex_state = 4}, - [2902] = {.lex_state = 241, .external_lex_state = 4}, - [2903] = {.lex_state = 215, .external_lex_state = 4}, + [2899] = {.lex_state = 241, .external_lex_state = 4}, + [2900] = {.lex_state = 241, .external_lex_state = 4}, + [2901] = {.lex_state = 215, .external_lex_state = 4}, + [2902] = {.lex_state = 215, .external_lex_state = 4}, + [2903] = {.lex_state = 241, .external_lex_state = 4}, [2904] = {.lex_state = 241, .external_lex_state = 4}, [2905] = {.lex_state = 241, .external_lex_state = 4}, [2906] = {.lex_state = 241, .external_lex_state = 4}, @@ -37925,14 +37924,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2909] = {.lex_state = 280, .external_lex_state = 2}, [2910] = {.lex_state = 280, .external_lex_state = 2}, [2911] = {.lex_state = 280, .external_lex_state = 2}, - [2912] = {.lex_state = 276, .external_lex_state = 5}, + [2912] = {.lex_state = 280, .external_lex_state = 2}, [2913] = {.lex_state = 280, .external_lex_state = 2}, [2914] = {.lex_state = 280, .external_lex_state = 2}, - [2915] = {.lex_state = 277, .external_lex_state = 5}, - [2916] = {.lex_state = 280, .external_lex_state = 2}, + [2915] = {.lex_state = 276, .external_lex_state = 5}, + [2916] = {.lex_state = 277, .external_lex_state = 5}, [2917] = {.lex_state = 280, .external_lex_state = 2}, [2918] = {.lex_state = 280, .external_lex_state = 2}, - [2919] = {.lex_state = 280, .external_lex_state = 2}, + [2919] = {.lex_state = 278, .external_lex_state = 5}, [2920] = {.lex_state = 280, .external_lex_state = 2}, [2921] = {.lex_state = 280, .external_lex_state = 2}, [2922] = {.lex_state = 280, .external_lex_state = 2}, @@ -37941,7 +37940,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2925] = {.lex_state = 280, .external_lex_state = 2}, [2926] = {.lex_state = 280, .external_lex_state = 2}, [2927] = {.lex_state = 280, .external_lex_state = 2}, - [2928] = {.lex_state = 278, .external_lex_state = 5}, + [2928] = {.lex_state = 280, .external_lex_state = 2}, [2929] = {.lex_state = 280, .external_lex_state = 2}, [2930] = {.lex_state = 280, .external_lex_state = 2}, [2931] = {.lex_state = 280, .external_lex_state = 2}, @@ -37949,19 +37948,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2933] = {.lex_state = 280, .external_lex_state = 2}, [2934] = {.lex_state = 280, .external_lex_state = 2}, [2935] = {.lex_state = 280, .external_lex_state = 2}, - [2936] = {.lex_state = 279, .external_lex_state = 5}, + [2936] = {.lex_state = 280, .external_lex_state = 2}, [2937] = {.lex_state = 280, .external_lex_state = 2}, - [2938] = {.lex_state = 280, .external_lex_state = 2}, - [2939] = {.lex_state = 280, .external_lex_state = 2}, + [2938] = {.lex_state = 276, .external_lex_state = 5}, + [2939] = {.lex_state = 279, .external_lex_state = 5}, [2940] = {.lex_state = 280, .external_lex_state = 2}, [2941] = {.lex_state = 280, .external_lex_state = 2}, - [2942] = {.lex_state = 279, .external_lex_state = 5}, + [2942] = {.lex_state = 280, .external_lex_state = 2}, [2943] = {.lex_state = 280, .external_lex_state = 2}, [2944] = {.lex_state = 280, .external_lex_state = 2}, [2945] = {.lex_state = 280, .external_lex_state = 2}, - [2946] = {.lex_state = 280, .external_lex_state = 2}, - [2947] = {.lex_state = 280, .external_lex_state = 2}, - [2948] = {.lex_state = 280, .external_lex_state = 2}, + [2946] = {.lex_state = 276, .external_lex_state = 5}, + [2947] = {.lex_state = 277, .external_lex_state = 5}, + [2948] = {.lex_state = 277, .external_lex_state = 5}, [2949] = {.lex_state = 280, .external_lex_state = 2}, [2950] = {.lex_state = 280, .external_lex_state = 2}, [2951] = {.lex_state = 280, .external_lex_state = 2}, @@ -37971,90 +37970,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2955] = {.lex_state = 280, .external_lex_state = 2}, [2956] = {.lex_state = 280, .external_lex_state = 2}, [2957] = {.lex_state = 280, .external_lex_state = 2}, - [2958] = {.lex_state = 277, .external_lex_state = 5}, + [2958] = {.lex_state = 280, .external_lex_state = 2}, [2959] = {.lex_state = 280, .external_lex_state = 2}, - [2960] = {.lex_state = 278, .external_lex_state = 5}, + [2960] = {.lex_state = 279, .external_lex_state = 5}, [2961] = {.lex_state = 280, .external_lex_state = 2}, - [2962] = {.lex_state = 276, .external_lex_state = 5}, - [2963] = {.lex_state = 280, .external_lex_state = 2}, + [2962] = {.lex_state = 280, .external_lex_state = 2}, + [2963] = {.lex_state = 276, .external_lex_state = 5}, [2964] = {.lex_state = 280, .external_lex_state = 2}, - [2965] = {.lex_state = 280, .external_lex_state = 2}, + [2965] = {.lex_state = 277, .external_lex_state = 5}, [2966] = {.lex_state = 280, .external_lex_state = 2}, [2967] = {.lex_state = 280, .external_lex_state = 2}, [2968] = {.lex_state = 280, .external_lex_state = 2}, [2969] = {.lex_state = 280, .external_lex_state = 2}, - [2970] = {.lex_state = 280, .external_lex_state = 2}, - [2971] = {.lex_state = 280, .external_lex_state = 2}, - [2972] = {.lex_state = 280, .external_lex_state = 2}, + [2970] = {.lex_state = 279, .external_lex_state = 5}, + [2971] = {.lex_state = 276, .external_lex_state = 5}, + [2972] = {.lex_state = 277, .external_lex_state = 5}, [2973] = {.lex_state = 280, .external_lex_state = 2}, - [2974] = {.lex_state = 280, .external_lex_state = 2}, + [2974] = {.lex_state = 279, .external_lex_state = 5}, [2975] = {.lex_state = 280, .external_lex_state = 2}, - [2976] = {.lex_state = 280, .external_lex_state = 2}, - [2977] = {.lex_state = 280, .external_lex_state = 2}, - [2978] = {.lex_state = 280, .external_lex_state = 2}, + [2976] = {.lex_state = 276, .external_lex_state = 5}, + [2977] = {.lex_state = 276, .external_lex_state = 5}, + [2978] = {.lex_state = 277, .external_lex_state = 5}, [2979] = {.lex_state = 280, .external_lex_state = 2}, - [2980] = {.lex_state = 280, .external_lex_state = 2}, - [2981] = {.lex_state = 279, .external_lex_state = 5}, - [2982] = {.lex_state = 277, .external_lex_state = 5}, - [2983] = {.lex_state = 277, .external_lex_state = 5}, - [2984] = {.lex_state = 278, .external_lex_state = 5}, + [2980] = {.lex_state = 277, .external_lex_state = 5}, + [2981] = {.lex_state = 280, .external_lex_state = 2}, + [2982] = {.lex_state = 279, .external_lex_state = 5}, + [2983] = {.lex_state = 280, .external_lex_state = 2}, + [2984] = {.lex_state = 280, .external_lex_state = 2}, [2985] = {.lex_state = 280, .external_lex_state = 2}, - [2986] = {.lex_state = 280, .external_lex_state = 2}, - [2987] = {.lex_state = 279, .external_lex_state = 5}, - [2988] = {.lex_state = 277, .external_lex_state = 5}, - [2989] = {.lex_state = 278, .external_lex_state = 5}, - [2990] = {.lex_state = 278, .external_lex_state = 5}, - [2991] = {.lex_state = 279, .external_lex_state = 5}, - [2992] = {.lex_state = 277, .external_lex_state = 5}, + [2986] = {.lex_state = 276, .external_lex_state = 5}, + [2987] = {.lex_state = 277, .external_lex_state = 5}, + [2988] = {.lex_state = 280, .external_lex_state = 2}, + [2989] = {.lex_state = 279, .external_lex_state = 5}, + [2990] = {.lex_state = 280, .external_lex_state = 2}, + [2991] = {.lex_state = 280, .external_lex_state = 2}, + [2992] = {.lex_state = 280, .external_lex_state = 2}, [2993] = {.lex_state = 278, .external_lex_state = 5}, - [2994] = {.lex_state = 280, .external_lex_state = 2}, - [2995] = {.lex_state = 280, .external_lex_state = 2}, + [2994] = {.lex_state = 276, .external_lex_state = 5}, + [2995] = {.lex_state = 277, .external_lex_state = 5}, [2996] = {.lex_state = 280, .external_lex_state = 2}, - [2997] = {.lex_state = 279, .external_lex_state = 5}, + [2997] = {.lex_state = 280, .external_lex_state = 2}, [2998] = {.lex_state = 280, .external_lex_state = 2}, - [2999] = {.lex_state = 277, .external_lex_state = 5}, - [3000] = {.lex_state = 278, .external_lex_state = 5}, + [2999] = {.lex_state = 280, .external_lex_state = 2}, + [3000] = {.lex_state = 280, .external_lex_state = 2}, [3001] = {.lex_state = 280, .external_lex_state = 2}, [3002] = {.lex_state = 280, .external_lex_state = 2}, - [3003] = {.lex_state = 279, .external_lex_state = 5}, + [3003] = {.lex_state = 276, .external_lex_state = 5}, [3004] = {.lex_state = 280, .external_lex_state = 2}, [3005] = {.lex_state = 280, .external_lex_state = 2}, - [3006] = {.lex_state = 280, .external_lex_state = 2}, - [3007] = {.lex_state = 277, .external_lex_state = 5}, - [3008] = {.lex_state = 278, .external_lex_state = 5}, + [3006] = {.lex_state = 277, .external_lex_state = 5}, + [3007] = {.lex_state = 280, .external_lex_state = 2}, + [3008] = {.lex_state = 280, .external_lex_state = 2}, [3009] = {.lex_state = 280, .external_lex_state = 2}, [3010] = {.lex_state = 280, .external_lex_state = 2}, - [3011] = {.lex_state = 279, .external_lex_state = 5}, + [3011] = {.lex_state = 280, .external_lex_state = 2}, [3012] = {.lex_state = 280, .external_lex_state = 2}, [3013] = {.lex_state = 280, .external_lex_state = 2}, - [3014] = {.lex_state = 280, .external_lex_state = 2}, - [3015] = {.lex_state = 277, .external_lex_state = 5}, - [3016] = {.lex_state = 278, .external_lex_state = 5}, + [3014] = {.lex_state = 276, .external_lex_state = 5}, + [3015] = {.lex_state = 280, .external_lex_state = 2}, + [3016] = {.lex_state = 277, .external_lex_state = 5}, [3017] = {.lex_state = 280, .external_lex_state = 2}, [3018] = {.lex_state = 280, .external_lex_state = 2}, [3019] = {.lex_state = 280, .external_lex_state = 2}, - [3020] = {.lex_state = 280, .external_lex_state = 2}, - [3021] = {.lex_state = 280, .external_lex_state = 2}, - [3022] = {.lex_state = 277, .external_lex_state = 5}, - [3023] = {.lex_state = 277, .external_lex_state = 5}, - [3024] = {.lex_state = 278, .external_lex_state = 5}, + [3020] = {.lex_state = 276, .external_lex_state = 5}, + [3021] = {.lex_state = 277, .external_lex_state = 5}, + [3022] = {.lex_state = 280, .external_lex_state = 2}, + [3023] = {.lex_state = 280, .external_lex_state = 2}, + [3024] = {.lex_state = 280, .external_lex_state = 2}, [3025] = {.lex_state = 280, .external_lex_state = 2}, [3026] = {.lex_state = 280, .external_lex_state = 2}, - [3027] = {.lex_state = 277, .external_lex_state = 5}, + [3027] = {.lex_state = 280, .external_lex_state = 2}, [3028] = {.lex_state = 280, .external_lex_state = 2}, - [3029] = {.lex_state = 278, .external_lex_state = 5}, + [3029] = {.lex_state = 280, .external_lex_state = 2}, [3030] = {.lex_state = 280, .external_lex_state = 2}, [3031] = {.lex_state = 280, .external_lex_state = 2}, [3032] = {.lex_state = 280, .external_lex_state = 2}, - [3033] = {.lex_state = 277, .external_lex_state = 5}, - [3034] = {.lex_state = 278, .external_lex_state = 5}, + [3033] = {.lex_state = 280, .external_lex_state = 2}, + [3034] = {.lex_state = 280, .external_lex_state = 2}, [3035] = {.lex_state = 280, .external_lex_state = 2}, - [3036] = {.lex_state = 280, .external_lex_state = 2}, - [3037] = {.lex_state = 280, .external_lex_state = 2}, - [3038] = {.lex_state = 280, .external_lex_state = 2}, + [3036] = {.lex_state = 278, .external_lex_state = 5}, + [3037] = {.lex_state = 279, .external_lex_state = 5}, + [3038] = {.lex_state = 276, .external_lex_state = 5}, [3039] = {.lex_state = 280, .external_lex_state = 2}, - [3040] = {.lex_state = 280, .external_lex_state = 2}, - [3041] = {.lex_state = 280, .external_lex_state = 2}, + [3040] = {.lex_state = 277, .external_lex_state = 5}, + [3041] = {.lex_state = 279, .external_lex_state = 5}, [3042] = {.lex_state = 280, .external_lex_state = 2}, [3043] = {.lex_state = 280, .external_lex_state = 2}, [3044] = {.lex_state = 280, .external_lex_state = 2}, @@ -38064,11 +38063,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3048] = {.lex_state = 280, .external_lex_state = 2}, [3049] = {.lex_state = 280, .external_lex_state = 2}, [3050] = {.lex_state = 280, .external_lex_state = 2}, - [3051] = {.lex_state = 278, .external_lex_state = 5}, + [3051] = {.lex_state = 280, .external_lex_state = 2}, [3052] = {.lex_state = 280, .external_lex_state = 2}, [3053] = {.lex_state = 280, .external_lex_state = 2}, [3054] = {.lex_state = 280, .external_lex_state = 2}, - [3055] = {.lex_state = 276, .external_lex_state = 5}, + [3055] = {.lex_state = 280, .external_lex_state = 2}, [3056] = {.lex_state = 280, .external_lex_state = 2}, [3057] = {.lex_state = 280, .external_lex_state = 2}, [3058] = {.lex_state = 280, .external_lex_state = 2}, @@ -38080,14 +38079,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3064] = {.lex_state = 280, .external_lex_state = 2}, [3065] = {.lex_state = 263, .external_lex_state = 4}, [3066] = {.lex_state = 263, .external_lex_state = 4}, - [3067] = {.lex_state = 274, .external_lex_state = 5}, + [3067] = {.lex_state = 263, .external_lex_state = 4}, [3068] = {.lex_state = 263, .external_lex_state = 4}, [3069] = {.lex_state = 263, .external_lex_state = 4}, - [3070] = {.lex_state = 263, .external_lex_state = 4}, + [3070] = {.lex_state = 274, .external_lex_state = 5}, [3071] = {.lex_state = 263, .external_lex_state = 4}, [3072] = {.lex_state = 263, .external_lex_state = 4}, [3073] = {.lex_state = 263, .external_lex_state = 4}, - [3074] = {.lex_state = 240, .external_lex_state = 6}, + [3074] = {.lex_state = 263, .external_lex_state = 4}, [3075] = {.lex_state = 263, .external_lex_state = 4}, [3076] = {.lex_state = 263, .external_lex_state = 4}, [3077] = {.lex_state = 263, .external_lex_state = 4}, @@ -38095,7 +38094,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3079] = {.lex_state = 263, .external_lex_state = 4}, [3080] = {.lex_state = 263, .external_lex_state = 4}, [3081] = {.lex_state = 263, .external_lex_state = 4}, - [3082] = {.lex_state = 263, .external_lex_state = 4}, + [3082] = {.lex_state = 240, .external_lex_state = 6}, [3083] = {.lex_state = 263, .external_lex_state = 4}, [3084] = {.lex_state = 263, .external_lex_state = 4}, [3085] = {.lex_state = 263, .external_lex_state = 4}, @@ -38122,25 +38121,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3106] = {.lex_state = 274, .external_lex_state = 5}, [3107] = {.lex_state = 274, .external_lex_state = 5}, [3108] = {.lex_state = 274, .external_lex_state = 5}, - [3109] = {.lex_state = 273, .external_lex_state = 6}, - [3110] = {.lex_state = 274, .external_lex_state = 6}, + [3109] = {.lex_state = 274, .external_lex_state = 6}, + [3110] = {.lex_state = 273, .external_lex_state = 6}, [3111] = {.lex_state = 252, .external_lex_state = 6}, [3112] = {.lex_state = 274, .external_lex_state = 5}, - [3113] = {.lex_state = 294, .external_lex_state = 6}, - [3114] = {.lex_state = 271, .external_lex_state = 6}, + [3113] = {.lex_state = 271, .external_lex_state = 6}, + [3114] = {.lex_state = 294, .external_lex_state = 6}, [3115] = {.lex_state = 271, .external_lex_state = 6}, [3116] = {.lex_state = 275, .external_lex_state = 5}, - [3117] = {.lex_state = 275, .external_lex_state = 5}, - [3118] = {.lex_state = 271, .external_lex_state = 6}, - [3119] = {.lex_state = 271, .external_lex_state = 6}, + [3117] = {.lex_state = 271, .external_lex_state = 6}, + [3118] = {.lex_state = 275, .external_lex_state = 5}, + [3119] = {.lex_state = 275, .external_lex_state = 5}, [3120] = {.lex_state = 275, .external_lex_state = 5}, [3121] = {.lex_state = 275, .external_lex_state = 5}, [3122] = {.lex_state = 275, .external_lex_state = 5}, - [3123] = {.lex_state = 271, .external_lex_state = 6}, - [3124] = {.lex_state = 275, .external_lex_state = 5}, + [3123] = {.lex_state = 275, .external_lex_state = 5}, + [3124] = {.lex_state = 271, .external_lex_state = 6}, [3125] = {.lex_state = 271, .external_lex_state = 6}, [3126] = {.lex_state = 275, .external_lex_state = 5}, - [3127] = {.lex_state = 275, .external_lex_state = 5}, + [3127] = {.lex_state = 271, .external_lex_state = 6}, [3128] = {.lex_state = 271, .external_lex_state = 6}, [3129] = {.lex_state = 271, .external_lex_state = 6}, [3130] = {.lex_state = 271, .external_lex_state = 6}, @@ -38153,36 +38152,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3137] = {.lex_state = 249, .external_lex_state = 6}, [3138] = {.lex_state = 249, .external_lex_state = 6}, [3139] = {.lex_state = 287, .external_lex_state = 7}, - [3140] = {.lex_state = 287, .external_lex_state = 7}, + [3140] = {.lex_state = 271, .external_lex_state = 6}, [3141] = {.lex_state = 287, .external_lex_state = 7}, - [3142] = {.lex_state = 272, .external_lex_state = 6}, - [3143] = {.lex_state = 271, .external_lex_state = 6}, - [3144] = {.lex_state = 287, .external_lex_state = 7}, - [3145] = {.lex_state = 287, .external_lex_state = 7}, + [3142] = {.lex_state = 287, .external_lex_state = 7}, + [3143] = {.lex_state = 287, .external_lex_state = 7}, + [3144] = {.lex_state = 271, .external_lex_state = 6}, + [3145] = {.lex_state = 271, .external_lex_state = 6}, [3146] = {.lex_state = 271, .external_lex_state = 6}, [3147] = {.lex_state = 287, .external_lex_state = 7}, [3148] = {.lex_state = 287, .external_lex_state = 7}, - [3149] = {.lex_state = 287, .external_lex_state = 7}, - [3150] = {.lex_state = 272, .external_lex_state = 5}, - [3151] = {.lex_state = 287, .external_lex_state = 7}, - [3152] = {.lex_state = 271, .external_lex_state = 6}, - [3153] = {.lex_state = 271, .external_lex_state = 6}, - [3154] = {.lex_state = 287, .external_lex_state = 7}, + [3149] = {.lex_state = 272, .external_lex_state = 5}, + [3150] = {.lex_state = 287, .external_lex_state = 7}, + [3151] = {.lex_state = 271, .external_lex_state = 6}, + [3152] = {.lex_state = 287, .external_lex_state = 7}, + [3153] = {.lex_state = 287, .external_lex_state = 7}, + [3154] = {.lex_state = 271, .external_lex_state = 6}, [3155] = {.lex_state = 287, .external_lex_state = 7}, - [3156] = {.lex_state = 271, .external_lex_state = 6}, - [3157] = {.lex_state = 271, .external_lex_state = 6}, + [3156] = {.lex_state = 272, .external_lex_state = 6}, + [3157] = {.lex_state = 287, .external_lex_state = 7}, [3158] = {.lex_state = 271, .external_lex_state = 6}, [3159] = {.lex_state = 271, .external_lex_state = 6}, [3160] = {.lex_state = 271, .external_lex_state = 6}, - [3161] = {.lex_state = 271, .external_lex_state = 6}, + [3161] = {.lex_state = 287, .external_lex_state = 7}, [3162] = {.lex_state = 287, .external_lex_state = 7}, - [3163] = {.lex_state = 271, .external_lex_state = 6}, + [3163] = {.lex_state = 287, .external_lex_state = 7}, [3164] = {.lex_state = 271, .external_lex_state = 6}, [3165] = {.lex_state = 287, .external_lex_state = 7}, [3166] = {.lex_state = 271, .external_lex_state = 6}, - [3167] = {.lex_state = 287, .external_lex_state = 7}, + [3167] = {.lex_state = 271, .external_lex_state = 6}, [3168] = {.lex_state = 287, .external_lex_state = 7}, - [3169] = {.lex_state = 287, .external_lex_state = 7}, + [3169] = {.lex_state = 271, .external_lex_state = 6}, [3170] = {.lex_state = 287, .external_lex_state = 7}, [3171] = {.lex_state = 271, .external_lex_state = 6}, [3172] = {.lex_state = 287, .external_lex_state = 7}, @@ -38191,7 +38190,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3175] = {.lex_state = 287, .external_lex_state = 7}, [3176] = {.lex_state = 287, .external_lex_state = 7}, [3177] = {.lex_state = 287, .external_lex_state = 7}, - [3178] = {.lex_state = 280, .external_lex_state = 3}, + [3178] = {.lex_state = 287, .external_lex_state = 7}, [3179] = {.lex_state = 287, .external_lex_state = 7}, [3180] = {.lex_state = 287, .external_lex_state = 7}, [3181] = {.lex_state = 287, .external_lex_state = 7}, @@ -38201,8 +38200,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3185] = {.lex_state = 287, .external_lex_state = 7}, [3186] = {.lex_state = 287, .external_lex_state = 7}, [3187] = {.lex_state = 287, .external_lex_state = 7}, - [3188] = {.lex_state = 287, .external_lex_state = 7}, - [3189] = {.lex_state = 280, .external_lex_state = 3}, + [3188] = {.lex_state = 280, .external_lex_state = 3}, + [3189] = {.lex_state = 287, .external_lex_state = 7}, [3190] = {.lex_state = 287, .external_lex_state = 7}, [3191] = {.lex_state = 287, .external_lex_state = 7}, [3192] = {.lex_state = 287, .external_lex_state = 7}, @@ -38212,24 +38211,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3196] = {.lex_state = 287, .external_lex_state = 7}, [3197] = {.lex_state = 287, .external_lex_state = 7}, [3198] = {.lex_state = 287, .external_lex_state = 7}, - [3199] = {.lex_state = 280, .external_lex_state = 3}, + [3199] = {.lex_state = 287, .external_lex_state = 7}, [3200] = {.lex_state = 287, .external_lex_state = 7}, [3201] = {.lex_state = 287, .external_lex_state = 7}, [3202] = {.lex_state = 287, .external_lex_state = 7}, [3203] = {.lex_state = 287, .external_lex_state = 7}, - [3204] = {.lex_state = 280, .external_lex_state = 3}, - [3205] = {.lex_state = 280, .external_lex_state = 3}, + [3204] = {.lex_state = 287, .external_lex_state = 7}, + [3205] = {.lex_state = 287, .external_lex_state = 7}, [3206] = {.lex_state = 287, .external_lex_state = 7}, - [3207] = {.lex_state = 287, .external_lex_state = 7}, + [3207] = {.lex_state = 280, .external_lex_state = 3}, [3208] = {.lex_state = 287, .external_lex_state = 7}, [3209] = {.lex_state = 287, .external_lex_state = 7}, [3210] = {.lex_state = 287, .external_lex_state = 7}, [3211] = {.lex_state = 287, .external_lex_state = 7}, - [3212] = {.lex_state = 287, .external_lex_state = 7}, + [3212] = {.lex_state = 280, .external_lex_state = 3}, [3213] = {.lex_state = 287, .external_lex_state = 7}, - [3214] = {.lex_state = 287, .external_lex_state = 7}, + [3214] = {.lex_state = 280, .external_lex_state = 3}, [3215] = {.lex_state = 287, .external_lex_state = 7}, - [3216] = {.lex_state = 287, .external_lex_state = 7}, + [3216] = {.lex_state = 280, .external_lex_state = 3}, [3217] = {.lex_state = 287, .external_lex_state = 7}, [3218] = {.lex_state = 287, .external_lex_state = 7}, [3219] = {.lex_state = 287, .external_lex_state = 7}, @@ -38238,8 +38237,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3222] = {.lex_state = 287, .external_lex_state = 7}, [3223] = {.lex_state = 287, .external_lex_state = 7}, [3224] = {.lex_state = 287, .external_lex_state = 7}, - [3225] = {.lex_state = 280, .external_lex_state = 3}, - [3226] = {.lex_state = 287, .external_lex_state = 7}, + [3225] = {.lex_state = 287, .external_lex_state = 7}, + [3226] = {.lex_state = 280, .external_lex_state = 3}, [3227] = {.lex_state = 287, .external_lex_state = 7}, [3228] = {.lex_state = 287, .external_lex_state = 7}, [3229] = {.lex_state = 287, .external_lex_state = 7}, @@ -38286,11 +38285,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3270] = {.lex_state = 272, .external_lex_state = 5}, [3271] = {.lex_state = 280, .external_lex_state = 2}, [3272] = {.lex_state = 272, .external_lex_state = 6}, - [3273] = {.lex_state = 293, .external_lex_state = 8}, - [3274] = {.lex_state = 280, .external_lex_state = 2}, + [3273] = {.lex_state = 280, .external_lex_state = 2}, + [3274] = {.lex_state = 293, .external_lex_state = 8}, [3275] = {.lex_state = 288, .external_lex_state = 6}, - [3276] = {.lex_state = 272, .external_lex_state = 6}, - [3277] = {.lex_state = 274, .external_lex_state = 5}, + [3276] = {.lex_state = 288, .external_lex_state = 6}, + [3277] = {.lex_state = 288, .external_lex_state = 6}, [3278] = {.lex_state = 288, .external_lex_state = 6}, [3279] = {.lex_state = 288, .external_lex_state = 6}, [3280] = {.lex_state = 288, .external_lex_state = 6}, @@ -38298,241 +38297,241 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3282] = {.lex_state = 288, .external_lex_state = 6}, [3283] = {.lex_state = 288, .external_lex_state = 6}, [3284] = {.lex_state = 288, .external_lex_state = 6}, - [3285] = {.lex_state = 288, .external_lex_state = 6}, - [3286] = {.lex_state = 288, .external_lex_state = 6}, + [3285] = {.lex_state = 274, .external_lex_state = 5}, + [3286] = {.lex_state = 272, .external_lex_state = 6}, [3287] = {.lex_state = 288, .external_lex_state = 6}, [3288] = {.lex_state = 288, .external_lex_state = 6}, - [3289] = {.lex_state = 293, .external_lex_state = 5}, - [3290] = {.lex_state = 218, .external_lex_state = 6}, - [3291] = {.lex_state = 288, .external_lex_state = 5}, - [3292] = {.lex_state = 272, .external_lex_state = 6}, + [3289] = {.lex_state = 288, .external_lex_state = 5}, + [3290] = {.lex_state = 282, .external_lex_state = 6}, + [3291] = {.lex_state = 282, .external_lex_state = 6}, + [3292] = {.lex_state = 288, .external_lex_state = 5}, [3293] = {.lex_state = 288, .external_lex_state = 5}, [3294] = {.lex_state = 288, .external_lex_state = 5}, - [3295] = {.lex_state = 282, .external_lex_state = 6}, - [3296] = {.lex_state = 282, .external_lex_state = 6}, + [3295] = {.lex_state = 288, .external_lex_state = 5}, + [3296] = {.lex_state = 288, .external_lex_state = 5}, [3297] = {.lex_state = 288, .external_lex_state = 5}, - [3298] = {.lex_state = 288, .external_lex_state = 5}, + [3298] = {.lex_state = 214, .external_lex_state = 6}, [3299] = {.lex_state = 288, .external_lex_state = 5}, [3300] = {.lex_state = 288, .external_lex_state = 5}, - [3301] = {.lex_state = 214, .external_lex_state = 6}, - [3302] = {.lex_state = 218, .external_lex_state = 6}, - [3303] = {.lex_state = 218, .external_lex_state = 6}, + [3301] = {.lex_state = 288, .external_lex_state = 5}, + [3302] = {.lex_state = 288, .external_lex_state = 5}, + [3303] = {.lex_state = 288, .external_lex_state = 5}, [3304] = {.lex_state = 282, .external_lex_state = 6}, [3305] = {.lex_state = 282, .external_lex_state = 6}, - [3306] = {.lex_state = 288, .external_lex_state = 5}, - [3307] = {.lex_state = 272, .external_lex_state = 6}, - [3308] = {.lex_state = 288, .external_lex_state = 5}, + [3306] = {.lex_state = 272, .external_lex_state = 6}, + [3307] = {.lex_state = 218, .external_lex_state = 6}, + [3308] = {.lex_state = 272, .external_lex_state = 6}, [3309] = {.lex_state = 288, .external_lex_state = 5}, - [3310] = {.lex_state = 288, .external_lex_state = 5}, + [3310] = {.lex_state = 218, .external_lex_state = 6}, [3311] = {.lex_state = 288, .external_lex_state = 5}, - [3312] = {.lex_state = 214, .external_lex_state = 6}, + [3312] = {.lex_state = 288, .external_lex_state = 5}, [3313] = {.lex_state = 288, .external_lex_state = 5}, - [3314] = {.lex_state = 288, .external_lex_state = 5}, + [3314] = {.lex_state = 218, .external_lex_state = 6}, [3315] = {.lex_state = 288, .external_lex_state = 5}, [3316] = {.lex_state = 288, .external_lex_state = 5}, - [3317] = {.lex_state = 288, .external_lex_state = 5}, + [3317] = {.lex_state = 218, .external_lex_state = 6}, [3318] = {.lex_state = 288, .external_lex_state = 5}, - [3319] = {.lex_state = 282, .external_lex_state = 6}, + [3319] = {.lex_state = 288, .external_lex_state = 5}, [3320] = {.lex_state = 288, .external_lex_state = 5}, [3321] = {.lex_state = 288, .external_lex_state = 5}, [3322] = {.lex_state = 288, .external_lex_state = 5}, [3323] = {.lex_state = 288, .external_lex_state = 5}, - [3324] = {.lex_state = 288, .external_lex_state = 5}, - [3325] = {.lex_state = 282, .external_lex_state = 6}, + [3324] = {.lex_state = 214, .external_lex_state = 6}, + [3325] = {.lex_state = 288, .external_lex_state = 5}, [3326] = {.lex_state = 288, .external_lex_state = 5}, - [3327] = {.lex_state = 288, .external_lex_state = 5}, + [3327] = {.lex_state = 295, .external_lex_state = 6}, [3328] = {.lex_state = 288, .external_lex_state = 5}, - [3329] = {.lex_state = 288, .external_lex_state = 5}, + [3329] = {.lex_state = 282, .external_lex_state = 6}, [3330] = {.lex_state = 288, .external_lex_state = 5}, - [3331] = {.lex_state = 218, .external_lex_state = 6}, + [3331] = {.lex_state = 288, .external_lex_state = 5}, [3332] = {.lex_state = 288, .external_lex_state = 5}, [3333] = {.lex_state = 288, .external_lex_state = 5}, - [3334] = {.lex_state = 288, .external_lex_state = 5}, + [3334] = {.lex_state = 293, .external_lex_state = 5}, [3335] = {.lex_state = 288, .external_lex_state = 5}, - [3336] = {.lex_state = 295, .external_lex_state = 6}, - [3337] = {.lex_state = 288, .external_lex_state = 5}, + [3336] = {.lex_state = 288, .external_lex_state = 5}, + [3337] = {.lex_state = 282, .external_lex_state = 6}, [3338] = {.lex_state = 288, .external_lex_state = 5}, - [3339] = {.lex_state = 206, .external_lex_state = 6}, - [3340] = {.lex_state = 292, .external_lex_state = 9}, + [3339] = {.lex_state = 273, .external_lex_state = 6}, + [3340] = {.lex_state = 288, .external_lex_state = 6}, [3341] = {.lex_state = 288, .external_lex_state = 6}, - [3342] = {.lex_state = 272, .external_lex_state = 6}, + [3342] = {.lex_state = 288, .external_lex_state = 6}, [3343] = {.lex_state = 288, .external_lex_state = 6}, [3344] = {.lex_state = 293, .external_lex_state = 5}, - [3345] = {.lex_state = 273, .external_lex_state = 6}, + [3345] = {.lex_state = 206, .external_lex_state = 6}, [3346] = {.lex_state = 272, .external_lex_state = 6}, - [3347] = {.lex_state = 288, .external_lex_state = 6}, + [3347] = {.lex_state = 273, .external_lex_state = 6}, [3348] = {.lex_state = 288, .external_lex_state = 6}, - [3349] = {.lex_state = 273, .external_lex_state = 6}, - [3350] = {.lex_state = 288, .external_lex_state = 6}, + [3349] = {.lex_state = 206, .external_lex_state = 6}, + [3350] = {.lex_state = 293, .external_lex_state = 5}, [3351] = {.lex_state = 288, .external_lex_state = 6}, [3352] = {.lex_state = 288, .external_lex_state = 6}, - [3353] = {.lex_state = 272, .external_lex_state = 6}, - [3354] = {.lex_state = 272, .external_lex_state = 6}, + [3353] = {.lex_state = 273, .external_lex_state = 6}, + [3354] = {.lex_state = 273, .external_lex_state = 6}, [3355] = {.lex_state = 288, .external_lex_state = 6}, - [3356] = {.lex_state = 288, .external_lex_state = 6}, + [3356] = {.lex_state = 272, .external_lex_state = 6}, [3357] = {.lex_state = 288, .external_lex_state = 6}, - [3358] = {.lex_state = 288, .external_lex_state = 6}, - [3359] = {.lex_state = 272, .external_lex_state = 6}, - [3360] = {.lex_state = 282, .external_lex_state = 6}, - [3361] = {.lex_state = 206, .external_lex_state = 6}, - [3362] = {.lex_state = 272, .external_lex_state = 6}, - [3363] = {.lex_state = 273, .external_lex_state = 6}, - [3364] = {.lex_state = 293, .external_lex_state = 5}, - [3365] = {.lex_state = 292, .external_lex_state = 9}, - [3366] = {.lex_state = 273, .external_lex_state = 6}, - [3367] = {.lex_state = 288, .external_lex_state = 6}, - [3368] = {.lex_state = 272, .external_lex_state = 6}, - [3369] = {.lex_state = 272, .external_lex_state = 6}, - [3370] = {.lex_state = 288, .external_lex_state = 5}, + [3358] = {.lex_state = 272, .external_lex_state = 6}, + [3359] = {.lex_state = 292, .external_lex_state = 9}, + [3360] = {.lex_state = 288, .external_lex_state = 5}, + [3361] = {.lex_state = 288, .external_lex_state = 6}, + [3362] = {.lex_state = 292, .external_lex_state = 9}, + [3363] = {.lex_state = 272, .external_lex_state = 6}, + [3364] = {.lex_state = 272, .external_lex_state = 6}, + [3365] = {.lex_state = 288, .external_lex_state = 6}, + [3366] = {.lex_state = 272, .external_lex_state = 6}, + [3367] = {.lex_state = 272, .external_lex_state = 6}, + [3368] = {.lex_state = 282, .external_lex_state = 6}, + [3369] = {.lex_state = 288, .external_lex_state = 6}, + [3370] = {.lex_state = 272, .external_lex_state = 6}, [3371] = {.lex_state = 288, .external_lex_state = 6}, [3372] = {.lex_state = 249, .external_lex_state = 6}, - [3373] = {.lex_state = 264, .external_lex_state = 5}, - [3374] = {.lex_state = 249, .external_lex_state = 6}, + [3373] = {.lex_state = 274, .external_lex_state = 5}, + [3374] = {.lex_state = 264, .external_lex_state = 5}, [3375] = {.lex_state = 282, .external_lex_state = 6}, [3376] = {.lex_state = 273, .external_lex_state = 6}, - [3377] = {.lex_state = 273, .external_lex_state = 6}, + [3377] = {.lex_state = 282, .external_lex_state = 6}, [3378] = {.lex_state = 282, .external_lex_state = 6}, [3379] = {.lex_state = 282, .external_lex_state = 6}, - [3380] = {.lex_state = 282, .external_lex_state = 6}, - [3381] = {.lex_state = 274, .external_lex_state = 5}, + [3380] = {.lex_state = 273, .external_lex_state = 6}, + [3381] = {.lex_state = 282, .external_lex_state = 6}, [3382] = {.lex_state = 282, .external_lex_state = 6}, - [3383] = {.lex_state = 264, .external_lex_state = 5}, + [3383] = {.lex_state = 282, .external_lex_state = 6}, [3384] = {.lex_state = 282, .external_lex_state = 6}, [3385] = {.lex_state = 282, .external_lex_state = 6}, - [3386] = {.lex_state = 249, .external_lex_state = 6}, + [3386] = {.lex_state = 282, .external_lex_state = 6}, [3387] = {.lex_state = 282, .external_lex_state = 6}, - [3388] = {.lex_state = 282, .external_lex_state = 6}, - [3389] = {.lex_state = 282, .external_lex_state = 6}, + [3388] = {.lex_state = 264, .external_lex_state = 5}, + [3389] = {.lex_state = 249, .external_lex_state = 6}, [3390] = {.lex_state = 282, .external_lex_state = 6}, - [3391] = {.lex_state = 282, .external_lex_state = 6}, - [3392] = {.lex_state = 274, .external_lex_state = 5}, - [3393] = {.lex_state = 264, .external_lex_state = 5}, - [3394] = {.lex_state = 288, .external_lex_state = 6}, - [3395] = {.lex_state = 288, .external_lex_state = 6}, - [3396] = {.lex_state = 274, .external_lex_state = 5}, - [3397] = {.lex_state = 274, .external_lex_state = 5}, - [3398] = {.lex_state = 274, .external_lex_state = 5}, - [3399] = {.lex_state = 288, .external_lex_state = 6}, - [3400] = {.lex_state = 264, .external_lex_state = 6}, - [3401] = {.lex_state = 274, .external_lex_state = 5}, - [3402] = {.lex_state = 289, .external_lex_state = 5}, - [3403] = {.lex_state = 264, .external_lex_state = 5}, - [3404] = {.lex_state = 290, .external_lex_state = 5}, - [3405] = {.lex_state = 264, .external_lex_state = 5}, - [3406] = {.lex_state = 264, .external_lex_state = 6}, - [3407] = {.lex_state = 274, .external_lex_state = 5}, + [3391] = {.lex_state = 249, .external_lex_state = 6}, + [3392] = {.lex_state = 288, .external_lex_state = 6}, + [3393] = {.lex_state = 274, .external_lex_state = 5}, + [3394] = {.lex_state = 264, .external_lex_state = 5}, + [3395] = {.lex_state = 274, .external_lex_state = 5}, + [3396] = {.lex_state = 264, .external_lex_state = 6}, + [3397] = {.lex_state = 288, .external_lex_state = 6}, + [3398] = {.lex_state = 288, .external_lex_state = 6}, + [3399] = {.lex_state = 264, .external_lex_state = 6}, + [3400] = {.lex_state = 274, .external_lex_state = 5}, + [3401] = {.lex_state = 264, .external_lex_state = 6}, + [3402] = {.lex_state = 288, .external_lex_state = 6}, + [3403] = {.lex_state = 274, .external_lex_state = 5}, + [3404] = {.lex_state = 288, .external_lex_state = 6}, + [3405] = {.lex_state = 289, .external_lex_state = 5}, + [3406] = {.lex_state = 274, .external_lex_state = 5}, + [3407] = {.lex_state = 288, .external_lex_state = 6}, [3408] = {.lex_state = 274, .external_lex_state = 5}, - [3409] = {.lex_state = 264, .external_lex_state = 5}, - [3410] = {.lex_state = 274, .external_lex_state = 5}, - [3411] = {.lex_state = 264, .external_lex_state = 6}, - [3412] = {.lex_state = 274, .external_lex_state = 5}, - [3413] = {.lex_state = 288, .external_lex_state = 6}, - [3414] = {.lex_state = 290, .external_lex_state = 5}, - [3415] = {.lex_state = 264, .external_lex_state = 6}, - [3416] = {.lex_state = 264, .external_lex_state = 6}, - [3417] = {.lex_state = 264, .external_lex_state = 5}, + [3409] = {.lex_state = 288, .external_lex_state = 6}, + [3410] = {.lex_state = 288, .external_lex_state = 6}, + [3411] = {.lex_state = 288, .external_lex_state = 6}, + [3412] = {.lex_state = 288, .external_lex_state = 6}, + [3413] = {.lex_state = 274, .external_lex_state = 5}, + [3414] = {.lex_state = 288, .external_lex_state = 6}, + [3415] = {.lex_state = 274, .external_lex_state = 5}, + [3416] = {.lex_state = 290, .external_lex_state = 5}, + [3417] = {.lex_state = 288, .external_lex_state = 6}, [3418] = {.lex_state = 288, .external_lex_state = 6}, [3419] = {.lex_state = 288, .external_lex_state = 6}, - [3420] = {.lex_state = 289, .external_lex_state = 5}, - [3421] = {.lex_state = 288, .external_lex_state = 6}, + [3420] = {.lex_state = 288, .external_lex_state = 6}, + [3421] = {.lex_state = 264, .external_lex_state = 6}, [3422] = {.lex_state = 288, .external_lex_state = 6}, - [3423] = {.lex_state = 290, .external_lex_state = 5}, - [3424] = {.lex_state = 288, .external_lex_state = 6}, - [3425] = {.lex_state = 288, .external_lex_state = 6}, - [3426] = {.lex_state = 289, .external_lex_state = 5}, - [3427] = {.lex_state = 288, .external_lex_state = 6}, - [3428] = {.lex_state = 288, .external_lex_state = 6}, - [3429] = {.lex_state = 264, .external_lex_state = 6}, - [3430] = {.lex_state = 288, .external_lex_state = 6}, - [3431] = {.lex_state = 288, .external_lex_state = 6}, + [3423] = {.lex_state = 288, .external_lex_state = 6}, + [3424] = {.lex_state = 274, .external_lex_state = 5}, + [3425] = {.lex_state = 289, .external_lex_state = 5}, + [3426] = {.lex_state = 288, .external_lex_state = 6}, + [3427] = {.lex_state = 264, .external_lex_state = 5}, + [3428] = {.lex_state = 264, .external_lex_state = 6}, + [3429] = {.lex_state = 264, .external_lex_state = 5}, + [3430] = {.lex_state = 289, .external_lex_state = 5}, + [3431] = {.lex_state = 274, .external_lex_state = 5}, [3432] = {.lex_state = 288, .external_lex_state = 6}, - [3433] = {.lex_state = 288, .external_lex_state = 6}, + [3433] = {.lex_state = 264, .external_lex_state = 6}, [3434] = {.lex_state = 288, .external_lex_state = 6}, [3435] = {.lex_state = 288, .external_lex_state = 6}, [3436] = {.lex_state = 288, .external_lex_state = 6}, - [3437] = {.lex_state = 288, .external_lex_state = 6}, + [3437] = {.lex_state = 264, .external_lex_state = 5}, [3438] = {.lex_state = 288, .external_lex_state = 6}, - [3439] = {.lex_state = 288, .external_lex_state = 6}, + [3439] = {.lex_state = 290, .external_lex_state = 5}, [3440] = {.lex_state = 288, .external_lex_state = 6}, [3441] = {.lex_state = 288, .external_lex_state = 6}, [3442] = {.lex_state = 288, .external_lex_state = 6}, [3443] = {.lex_state = 288, .external_lex_state = 6}, [3444] = {.lex_state = 288, .external_lex_state = 6}, - [3445] = {.lex_state = 288, .external_lex_state = 6}, + [3445] = {.lex_state = 264, .external_lex_state = 6}, [3446] = {.lex_state = 288, .external_lex_state = 6}, - [3447] = {.lex_state = 288, .external_lex_state = 6}, + [3447] = {.lex_state = 290, .external_lex_state = 5}, [3448] = {.lex_state = 288, .external_lex_state = 6}, - [3449] = {.lex_state = 288, .external_lex_state = 6}, - [3450] = {.lex_state = 264, .external_lex_state = 6}, - [3451] = {.lex_state = 274, .external_lex_state = 5}, - [3452] = {.lex_state = 278, .external_lex_state = 5}, + [3449] = {.lex_state = 264, .external_lex_state = 5}, + [3450] = {.lex_state = 288, .external_lex_state = 6}, + [3451] = {.lex_state = 288, .external_lex_state = 6}, + [3452] = {.lex_state = 281, .external_lex_state = 10}, [3453] = {.lex_state = 279, .external_lex_state = 5}, - [3454] = {.lex_state = 279, .external_lex_state = 5}, + [3454] = {.lex_state = 276, .external_lex_state = 5}, [3455] = {.lex_state = 277, .external_lex_state = 5}, [3456] = {.lex_state = 278, .external_lex_state = 5}, - [3457] = {.lex_state = 296, .external_lex_state = 5}, - [3458] = {.lex_state = 276, .external_lex_state = 5}, - [3459] = {.lex_state = 278, .external_lex_state = 5}, - [3460] = {.lex_state = 273, .external_lex_state = 5}, - [3461] = {.lex_state = 289, .external_lex_state = 5}, - [3462] = {.lex_state = 277, .external_lex_state = 5}, - [3463] = {.lex_state = 289, .external_lex_state = 5}, - [3464] = {.lex_state = 278, .external_lex_state = 5}, - [3465] = {.lex_state = 290, .external_lex_state = 5}, + [3457] = {.lex_state = 273, .external_lex_state = 6}, + [3458] = {.lex_state = 289, .external_lex_state = 5}, + [3459] = {.lex_state = 296, .external_lex_state = 5}, + [3460] = {.lex_state = 290, .external_lex_state = 5}, + [3461] = {.lex_state = 273, .external_lex_state = 6}, + [3462] = {.lex_state = 276, .external_lex_state = 5}, + [3463] = {.lex_state = 277, .external_lex_state = 5}, + [3464] = {.lex_state = 264, .external_lex_state = 6}, + [3465] = {.lex_state = 273, .external_lex_state = 5}, [3466] = {.lex_state = 296, .external_lex_state = 5}, - [3467] = {.lex_state = 273, .external_lex_state = 6}, - [3468] = {.lex_state = 277, .external_lex_state = 5}, - [3469] = {.lex_state = 278, .external_lex_state = 5}, - [3470] = {.lex_state = 289, .external_lex_state = 5}, - [3471] = {.lex_state = 277, .external_lex_state = 5}, - [3472] = {.lex_state = 278, .external_lex_state = 5}, + [3467] = {.lex_state = 279, .external_lex_state = 5}, + [3468] = {.lex_state = 278, .external_lex_state = 5}, + [3469] = {.lex_state = 289, .external_lex_state = 5}, + [3470] = {.lex_state = 290, .external_lex_state = 5}, + [3471] = {.lex_state = 276, .external_lex_state = 5}, + [3472] = {.lex_state = 277, .external_lex_state = 5}, [3473] = {.lex_state = 296, .external_lex_state = 5}, - [3474] = {.lex_state = 296, .external_lex_state = 5}, - [3475] = {.lex_state = 277, .external_lex_state = 5}, - [3476] = {.lex_state = 278, .external_lex_state = 5}, - [3477] = {.lex_state = 273, .external_lex_state = 6}, - [3478] = {.lex_state = 276, .external_lex_state = 5}, - [3479] = {.lex_state = 296, .external_lex_state = 5}, - [3480] = {.lex_state = 277, .external_lex_state = 5}, - [3481] = {.lex_state = 296, .external_lex_state = 5}, - [3482] = {.lex_state = 278, .external_lex_state = 5}, + [3474] = {.lex_state = 279, .external_lex_state = 5}, + [3475] = {.lex_state = 276, .external_lex_state = 5}, + [3476] = {.lex_state = 277, .external_lex_state = 5}, + [3477] = {.lex_state = 278, .external_lex_state = 5}, + [3478] = {.lex_state = 296, .external_lex_state = 5}, + [3479] = {.lex_state = 279, .external_lex_state = 5}, + [3480] = {.lex_state = 276, .external_lex_state = 5}, + [3481] = {.lex_state = 277, .external_lex_state = 5}, + [3482] = {.lex_state = 296, .external_lex_state = 5}, [3483] = {.lex_state = 279, .external_lex_state = 5}, - [3484] = {.lex_state = 277, .external_lex_state = 5}, - [3485] = {.lex_state = 296, .external_lex_state = 5}, - [3486] = {.lex_state = 277, .external_lex_state = 5}, - [3487] = {.lex_state = 278, .external_lex_state = 5}, - [3488] = {.lex_state = 290, .external_lex_state = 5}, - [3489] = {.lex_state = 290, .external_lex_state = 5}, + [3484] = {.lex_state = 276, .external_lex_state = 5}, + [3485] = {.lex_state = 277, .external_lex_state = 5}, + [3486] = {.lex_state = 296, .external_lex_state = 5}, + [3487] = {.lex_state = 279, .external_lex_state = 5}, + [3488] = {.lex_state = 276, .external_lex_state = 5}, + [3489] = {.lex_state = 277, .external_lex_state = 5}, [3490] = {.lex_state = 296, .external_lex_state = 5}, - [3491] = {.lex_state = 296, .external_lex_state = 5}, - [3492] = {.lex_state = 279, .external_lex_state = 5}, - [3493] = {.lex_state = 281, .external_lex_state = 10}, - [3494] = {.lex_state = 296, .external_lex_state = 5}, - [3495] = {.lex_state = 278, .external_lex_state = 5}, - [3496] = {.lex_state = 279, .external_lex_state = 5}, + [3491] = {.lex_state = 279, .external_lex_state = 5}, + [3492] = {.lex_state = 289, .external_lex_state = 5}, + [3493] = {.lex_state = 276, .external_lex_state = 5}, + [3494] = {.lex_state = 277, .external_lex_state = 5}, + [3495] = {.lex_state = 296, .external_lex_state = 5}, + [3496] = {.lex_state = 290, .external_lex_state = 5}, [3497] = {.lex_state = 279, .external_lex_state = 5}, - [3498] = {.lex_state = 281, .external_lex_state = 10}, - [3499] = {.lex_state = 279, .external_lex_state = 5}, - [3500] = {.lex_state = 277, .external_lex_state = 5}, - [3501] = {.lex_state = 281, .external_lex_state = 10}, - [3502] = {.lex_state = 281, .external_lex_state = 10}, - [3503] = {.lex_state = 278, .external_lex_state = 5}, - [3504] = {.lex_state = 281, .external_lex_state = 10}, - [3505] = {.lex_state = 281, .external_lex_state = 10}, + [3498] = {.lex_state = 276, .external_lex_state = 5}, + [3499] = {.lex_state = 277, .external_lex_state = 5}, + [3500] = {.lex_state = 296, .external_lex_state = 5}, + [3501] = {.lex_state = 264, .external_lex_state = 6}, + [3502] = {.lex_state = 276, .external_lex_state = 5}, + [3503] = {.lex_state = 277, .external_lex_state = 5}, + [3504] = {.lex_state = 296, .external_lex_state = 5}, + [3505] = {.lex_state = 276, .external_lex_state = 5}, [3506] = {.lex_state = 277, .external_lex_state = 5}, - [3507] = {.lex_state = 281, .external_lex_state = 10}, - [3508] = {.lex_state = 296, .external_lex_state = 5}, - [3509] = {.lex_state = 278, .external_lex_state = 5}, - [3510] = {.lex_state = 281, .external_lex_state = 10}, - [3511] = {.lex_state = 281, .external_lex_state = 10}, - [3512] = {.lex_state = 264, .external_lex_state = 5}, - [3513] = {.lex_state = 296, .external_lex_state = 5}, - [3514] = {.lex_state = 281, .external_lex_state = 10}, - [3515] = {.lex_state = 296, .external_lex_state = 5}, + [3507] = {.lex_state = 296, .external_lex_state = 5}, + [3508] = {.lex_state = 281, .external_lex_state = 10}, + [3509] = {.lex_state = 277, .external_lex_state = 5}, + [3510] = {.lex_state = 296, .external_lex_state = 5}, + [3511] = {.lex_state = 296, .external_lex_state = 5}, + [3512] = {.lex_state = 281, .external_lex_state = 10}, + [3513] = {.lex_state = 276, .external_lex_state = 5}, + [3514] = {.lex_state = 277, .external_lex_state = 5}, + [3515] = {.lex_state = 281, .external_lex_state = 10}, [3516] = {.lex_state = 281, .external_lex_state = 10}, [3517] = {.lex_state = 281, .external_lex_state = 10}, [3518] = {.lex_state = 281, .external_lex_state = 10}, - [3519] = {.lex_state = 277, .external_lex_state = 5}, + [3519] = {.lex_state = 264, .external_lex_state = 5}, [3520] = {.lex_state = 281, .external_lex_state = 10}, [3521] = {.lex_state = 281, .external_lex_state = 10}, [3522] = {.lex_state = 281, .external_lex_state = 10}, @@ -38566,26 +38565,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3550] = {.lex_state = 281, .external_lex_state = 10}, [3551] = {.lex_state = 281, .external_lex_state = 10}, [3552] = {.lex_state = 281, .external_lex_state = 10}, - [3553] = {.lex_state = 264, .external_lex_state = 6}, - [3554] = {.lex_state = 264, .external_lex_state = 6}, - [3555] = {.lex_state = 279, .external_lex_state = 5}, - [3556] = {.lex_state = 277, .external_lex_state = 5}, - [3557] = {.lex_state = 277, .external_lex_state = 5}, - [3558] = {.lex_state = 278, .external_lex_state = 5}, - [3559] = {.lex_state = 276, .external_lex_state = 5}, - [3560] = {.lex_state = 281, .external_lex_state = 10}, + [3553] = {.lex_state = 281, .external_lex_state = 10}, + [3554] = {.lex_state = 281, .external_lex_state = 10}, + [3555] = {.lex_state = 281, .external_lex_state = 10}, + [3556] = {.lex_state = 281, .external_lex_state = 10}, + [3557] = {.lex_state = 281, .external_lex_state = 10}, + [3558] = {.lex_state = 281, .external_lex_state = 10}, + [3559] = {.lex_state = 281, .external_lex_state = 10}, + [3560] = {.lex_state = 276, .external_lex_state = 5}, [3561] = {.lex_state = 264, .external_lex_state = 5}, [3562] = {.lex_state = 264, .external_lex_state = 5}, [3563] = {.lex_state = 264, .external_lex_state = 5}, - [3564] = {.lex_state = 264, .external_lex_state = 5}, + [3564] = {.lex_state = 206, .external_lex_state = 6}, [3565] = {.lex_state = 264, .external_lex_state = 5}, - [3566] = {.lex_state = 206, .external_lex_state = 6}, + [3566] = {.lex_state = 264, .external_lex_state = 5}, [3567] = {.lex_state = 264, .external_lex_state = 5}, [3568] = {.lex_state = 264, .external_lex_state = 5}, - [3569] = {.lex_state = 264, .external_lex_state = 5}, + [3569] = {.lex_state = 288, .external_lex_state = 6}, [3570] = {.lex_state = 264, .external_lex_state = 5}, [3571] = {.lex_state = 264, .external_lex_state = 5}, - [3572] = {.lex_state = 264, .external_lex_state = 5}, + [3572] = {.lex_state = 206, .external_lex_state = 6}, [3573] = {.lex_state = 264, .external_lex_state = 5}, [3574] = {.lex_state = 264, .external_lex_state = 5}, [3575] = {.lex_state = 264, .external_lex_state = 5}, @@ -38594,25 +38593,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3578] = {.lex_state = 264, .external_lex_state = 5}, [3579] = {.lex_state = 264, .external_lex_state = 5}, [3580] = {.lex_state = 264, .external_lex_state = 5}, - [3581] = {.lex_state = 206, .external_lex_state = 6}, + [3581] = {.lex_state = 264, .external_lex_state = 5}, [3582] = {.lex_state = 264, .external_lex_state = 5}, [3583] = {.lex_state = 264, .external_lex_state = 5}, [3584] = {.lex_state = 264, .external_lex_state = 5}, - [3585] = {.lex_state = 264, .external_lex_state = 5}, + [3585] = {.lex_state = 206, .external_lex_state = 6}, [3586] = {.lex_state = 264, .external_lex_state = 5}, [3587] = {.lex_state = 264, .external_lex_state = 5}, [3588] = {.lex_state = 264, .external_lex_state = 5}, - [3589] = {.lex_state = 273, .external_lex_state = 6}, + [3589] = {.lex_state = 264, .external_lex_state = 5}, [3590] = {.lex_state = 264, .external_lex_state = 5}, [3591] = {.lex_state = 264, .external_lex_state = 5}, [3592] = {.lex_state = 264, .external_lex_state = 5}, [3593] = {.lex_state = 264, .external_lex_state = 5}, [3594] = {.lex_state = 264, .external_lex_state = 5}, [3595] = {.lex_state = 288, .external_lex_state = 6}, - [3596] = {.lex_state = 264, .external_lex_state = 6}, + [3596] = {.lex_state = 264, .external_lex_state = 5}, [3597] = {.lex_state = 264, .external_lex_state = 5}, [3598] = {.lex_state = 264, .external_lex_state = 5}, - [3599] = {.lex_state = 264, .external_lex_state = 5}, + [3599] = {.lex_state = 206, .external_lex_state = 6}, [3600] = {.lex_state = 264, .external_lex_state = 5}, [3601] = {.lex_state = 264, .external_lex_state = 5}, [3602] = {.lex_state = 264, .external_lex_state = 5}, @@ -38622,30 +38621,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3606] = {.lex_state = 264, .external_lex_state = 5}, [3607] = {.lex_state = 264, .external_lex_state = 5}, [3608] = {.lex_state = 264, .external_lex_state = 5}, - [3609] = {.lex_state = 264, .external_lex_state = 6}, + [3609] = {.lex_state = 264, .external_lex_state = 5}, [3610] = {.lex_state = 264, .external_lex_state = 5}, [3611] = {.lex_state = 264, .external_lex_state = 5}, - [3612] = {.lex_state = 264, .external_lex_state = 5}, + [3612] = {.lex_state = 206, .external_lex_state = 6}, [3613] = {.lex_state = 264, .external_lex_state = 5}, [3614] = {.lex_state = 264, .external_lex_state = 5}, [3615] = {.lex_state = 264, .external_lex_state = 5}, - [3616] = {.lex_state = 206, .external_lex_state = 6}, + [3616] = {.lex_state = 264, .external_lex_state = 5}, [3617] = {.lex_state = 264, .external_lex_state = 5}, [3618] = {.lex_state = 264, .external_lex_state = 5}, [3619] = {.lex_state = 264, .external_lex_state = 5}, [3620] = {.lex_state = 264, .external_lex_state = 5}, [3621] = {.lex_state = 264, .external_lex_state = 5}, - [3622] = {.lex_state = 264, .external_lex_state = 5}, + [3622] = {.lex_state = 273, .external_lex_state = 6}, [3623] = {.lex_state = 264, .external_lex_state = 5}, - [3624] = {.lex_state = 206, .external_lex_state = 6}, - [3625] = {.lex_state = 249, .external_lex_state = 6}, + [3624] = {.lex_state = 264, .external_lex_state = 5}, + [3625] = {.lex_state = 264, .external_lex_state = 5}, [3626] = {.lex_state = 264, .external_lex_state = 5}, [3627] = {.lex_state = 264, .external_lex_state = 5}, - [3628] = {.lex_state = 264, .external_lex_state = 5}, - [3629] = {.lex_state = 264, .external_lex_state = 5}, + [3628] = {.lex_state = 206, .external_lex_state = 6}, + [3629] = {.lex_state = 273, .external_lex_state = 6}, [3630] = {.lex_state = 264, .external_lex_state = 5}, - [3631] = {.lex_state = 288, .external_lex_state = 6}, - [3632] = {.lex_state = 264, .external_lex_state = 5}, + [3631] = {.lex_state = 264, .external_lex_state = 5}, + [3632] = {.lex_state = 264, .external_lex_state = 6}, [3633] = {.lex_state = 264, .external_lex_state = 5}, [3634] = {.lex_state = 264, .external_lex_state = 5}, [3635] = {.lex_state = 264, .external_lex_state = 5}, @@ -38660,7 +38659,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3644] = {.lex_state = 264, .external_lex_state = 5}, [3645] = {.lex_state = 264, .external_lex_state = 5}, [3646] = {.lex_state = 264, .external_lex_state = 5}, - [3647] = {.lex_state = 206, .external_lex_state = 6}, + [3647] = {.lex_state = 264, .external_lex_state = 5}, [3648] = {.lex_state = 264, .external_lex_state = 5}, [3649] = {.lex_state = 264, .external_lex_state = 5}, [3650] = {.lex_state = 264, .external_lex_state = 5}, @@ -38679,7 +38678,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3663] = {.lex_state = 264, .external_lex_state = 5}, [3664] = {.lex_state = 264, .external_lex_state = 5}, [3665] = {.lex_state = 264, .external_lex_state = 5}, - [3666] = {.lex_state = 264, .external_lex_state = 5}, + [3666] = {.lex_state = 206, .external_lex_state = 6}, [3667] = {.lex_state = 264, .external_lex_state = 5}, [3668] = {.lex_state = 264, .external_lex_state = 5}, [3669] = {.lex_state = 264, .external_lex_state = 5}, @@ -38689,9 +38688,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3673] = {.lex_state = 264, .external_lex_state = 5}, [3674] = {.lex_state = 264, .external_lex_state = 5}, [3675] = {.lex_state = 264, .external_lex_state = 5}, - [3676] = {.lex_state = 264, .external_lex_state = 5}, + [3676] = {.lex_state = 206, .external_lex_state = 6}, [3677] = {.lex_state = 264, .external_lex_state = 5}, - [3678] = {.lex_state = 206, .external_lex_state = 6}, + [3678] = {.lex_state = 264, .external_lex_state = 5}, [3679] = {.lex_state = 264, .external_lex_state = 5}, [3680] = {.lex_state = 264, .external_lex_state = 5}, [3681] = {.lex_state = 264, .external_lex_state = 5}, @@ -38699,7 +38698,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3683] = {.lex_state = 264, .external_lex_state = 5}, [3684] = {.lex_state = 264, .external_lex_state = 5}, [3685] = {.lex_state = 264, .external_lex_state = 5}, - [3686] = {.lex_state = 264, .external_lex_state = 5}, + [3686] = {.lex_state = 249, .external_lex_state = 6}, [3687] = {.lex_state = 264, .external_lex_state = 5}, [3688] = {.lex_state = 264, .external_lex_state = 5}, [3689] = {.lex_state = 264, .external_lex_state = 5}, @@ -38709,27 +38708,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3693] = {.lex_state = 264, .external_lex_state = 5}, [3694] = {.lex_state = 264, .external_lex_state = 5}, [3695] = {.lex_state = 264, .external_lex_state = 5}, - [3696] = {.lex_state = 264, .external_lex_state = 5}, + [3696] = {.lex_state = 264, .external_lex_state = 6}, [3697] = {.lex_state = 264, .external_lex_state = 5}, [3698] = {.lex_state = 264, .external_lex_state = 5}, [3699] = {.lex_state = 264, .external_lex_state = 5}, [3700] = {.lex_state = 264, .external_lex_state = 5}, [3701] = {.lex_state = 264, .external_lex_state = 5}, - [3702] = {.lex_state = 288, .external_lex_state = 6}, + [3702] = {.lex_state = 264, .external_lex_state = 5}, [3703] = {.lex_state = 264, .external_lex_state = 5}, - [3704] = {.lex_state = 206, .external_lex_state = 6}, + [3704] = {.lex_state = 288, .external_lex_state = 6}, [3705] = {.lex_state = 264, .external_lex_state = 5}, [3706] = {.lex_state = 264, .external_lex_state = 5}, - [3707] = {.lex_state = 206, .external_lex_state = 6}, - [3708] = {.lex_state = 273, .external_lex_state = 6}, - [3709] = {.lex_state = 273, .external_lex_state = 6}, + [3707] = {.lex_state = 264, .external_lex_state = 5}, + [3708] = {.lex_state = 264, .external_lex_state = 5}, + [3709] = {.lex_state = 264, .external_lex_state = 5}, [3710] = {.lex_state = 264, .external_lex_state = 5}, [3711] = {.lex_state = 264, .external_lex_state = 5}, [3712] = {.lex_state = 264, .external_lex_state = 5}, - [3713] = {.lex_state = 264, .external_lex_state = 5}, + [3713] = {.lex_state = 206, .external_lex_state = 6}, [3714] = {.lex_state = 264, .external_lex_state = 5}, [3715] = {.lex_state = 264, .external_lex_state = 5}, - [3716] = {.lex_state = 206, .external_lex_state = 6}, + [3716] = {.lex_state = 264, .external_lex_state = 5}, [3717] = {.lex_state = 264, .external_lex_state = 5}, [3718] = {.lex_state = 264, .external_lex_state = 5}, [3719] = {.lex_state = 264, .external_lex_state = 5}, @@ -38741,283 +38740,283 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3725] = {.lex_state = 264, .external_lex_state = 5}, [3726] = {.lex_state = 264, .external_lex_state = 5}, [3727] = {.lex_state = 264, .external_lex_state = 5}, - [3728] = {.lex_state = 264, .external_lex_state = 5}, - [3729] = {.lex_state = 264, .external_lex_state = 5}, - [3730] = {.lex_state = 218, .external_lex_state = 6}, + [3728] = {.lex_state = 273, .external_lex_state = 6}, + [3729] = {.lex_state = 288, .external_lex_state = 6}, + [3730] = {.lex_state = 264, .external_lex_state = 5}, [3731] = {.lex_state = 218, .external_lex_state = 6}, - [3732] = {.lex_state = 264, .external_lex_state = 5}, - [3733] = {.lex_state = 218, .external_lex_state = 6}, - [3734] = {.lex_state = 206, .external_lex_state = 6}, - [3735] = {.lex_state = 273, .external_lex_state = 6}, + [3732] = {.lex_state = 218, .external_lex_state = 6}, + [3733] = {.lex_state = 264, .external_lex_state = 6}, + [3734] = {.lex_state = 264, .external_lex_state = 5}, + [3735] = {.lex_state = 206, .external_lex_state = 6}, [3736] = {.lex_state = 206, .external_lex_state = 6}, [3737] = {.lex_state = 206, .external_lex_state = 6}, - [3738] = {.lex_state = 264, .external_lex_state = 5}, - [3739] = {.lex_state = 218, .external_lex_state = 6}, - [3740] = {.lex_state = 264, .external_lex_state = 5}, - [3741] = {.lex_state = 218, .external_lex_state = 6}, - [3742] = {.lex_state = 206, .external_lex_state = 6}, - [3743] = {.lex_state = 264, .external_lex_state = 6}, - [3744] = {.lex_state = 206, .external_lex_state = 6}, - [3745] = {.lex_state = 218, .external_lex_state = 6}, + [3738] = {.lex_state = 206, .external_lex_state = 6}, + [3739] = {.lex_state = 206, .external_lex_state = 6}, + [3740] = {.lex_state = 206, .external_lex_state = 6}, + [3741] = {.lex_state = 206, .external_lex_state = 6}, + [3742] = {.lex_state = 218, .external_lex_state = 6}, + [3743] = {.lex_state = 288, .external_lex_state = 6}, + [3744] = {.lex_state = 218, .external_lex_state = 6}, + [3745] = {.lex_state = 249, .external_lex_state = 6}, [3746] = {.lex_state = 206, .external_lex_state = 6}, [3747] = {.lex_state = 206, .external_lex_state = 6}, - [3748] = {.lex_state = 264, .external_lex_state = 5}, - [3749] = {.lex_state = 206, .external_lex_state = 6}, + [3748] = {.lex_state = 206, .external_lex_state = 6}, + [3749] = {.lex_state = 218, .external_lex_state = 6}, [3750] = {.lex_state = 206, .external_lex_state = 6}, [3751] = {.lex_state = 206, .external_lex_state = 6}, - [3752] = {.lex_state = 264, .external_lex_state = 5}, + [3752] = {.lex_state = 206, .external_lex_state = 6}, [3753] = {.lex_state = 206, .external_lex_state = 6}, - [3754] = {.lex_state = 273, .external_lex_state = 6}, - [3755] = {.lex_state = 218, .external_lex_state = 6}, - [3756] = {.lex_state = 206, .external_lex_state = 6}, - [3757] = {.lex_state = 288, .external_lex_state = 6}, + [3754] = {.lex_state = 218, .external_lex_state = 6}, + [3755] = {.lex_state = 206, .external_lex_state = 6}, + [3756] = {.lex_state = 264, .external_lex_state = 6}, + [3757] = {.lex_state = 264, .external_lex_state = 6}, [3758] = {.lex_state = 206, .external_lex_state = 6}, - [3759] = {.lex_state = 249, .external_lex_state = 6}, + [3759] = {.lex_state = 206, .external_lex_state = 6}, [3760] = {.lex_state = 206, .external_lex_state = 6}, - [3761] = {.lex_state = 218, .external_lex_state = 6}, - [3762] = {.lex_state = 218, .external_lex_state = 6}, - [3763] = {.lex_state = 288, .external_lex_state = 6}, - [3764] = {.lex_state = 218, .external_lex_state = 6}, - [3765] = {.lex_state = 264, .external_lex_state = 6}, - [3766] = {.lex_state = 288, .external_lex_state = 6}, - [3767] = {.lex_state = 206, .external_lex_state = 6}, + [3761] = {.lex_state = 206, .external_lex_state = 6}, + [3762] = {.lex_state = 206, .external_lex_state = 6}, + [3763] = {.lex_state = 206, .external_lex_state = 6}, + [3764] = {.lex_state = 264, .external_lex_state = 5}, + [3765] = {.lex_state = 206, .external_lex_state = 6}, + [3766] = {.lex_state = 218, .external_lex_state = 6}, + [3767] = {.lex_state = 218, .external_lex_state = 6}, [3768] = {.lex_state = 206, .external_lex_state = 6}, [3769] = {.lex_state = 206, .external_lex_state = 6}, [3770] = {.lex_state = 206, .external_lex_state = 6}, - [3771] = {.lex_state = 206, .external_lex_state = 6}, + [3771] = {.lex_state = 249, .external_lex_state = 6}, [3772] = {.lex_state = 206, .external_lex_state = 6}, [3773] = {.lex_state = 218, .external_lex_state = 6}, [3774] = {.lex_state = 206, .external_lex_state = 6}, [3775] = {.lex_state = 206, .external_lex_state = 6}, - [3776] = {.lex_state = 218, .external_lex_state = 6}, + [3776] = {.lex_state = 264, .external_lex_state = 5}, [3777] = {.lex_state = 206, .external_lex_state = 6}, [3778] = {.lex_state = 206, .external_lex_state = 6}, - [3779] = {.lex_state = 273, .external_lex_state = 6}, + [3779] = {.lex_state = 206, .external_lex_state = 6}, [3780] = {.lex_state = 206, .external_lex_state = 6}, [3781] = {.lex_state = 206, .external_lex_state = 6}, - [3782] = {.lex_state = 264, .external_lex_state = 5}, - [3783] = {.lex_state = 273, .external_lex_state = 6}, - [3784] = {.lex_state = 264, .external_lex_state = 5}, - [3785] = {.lex_state = 206, .external_lex_state = 6}, + [3782] = {.lex_state = 206, .external_lex_state = 6}, + [3783] = {.lex_state = 206, .external_lex_state = 6}, + [3784] = {.lex_state = 206, .external_lex_state = 6}, + [3785] = {.lex_state = 264, .external_lex_state = 5}, [3786] = {.lex_state = 206, .external_lex_state = 6}, - [3787] = {.lex_state = 264, .external_lex_state = 5}, - [3788] = {.lex_state = 206, .external_lex_state = 6}, + [3787] = {.lex_state = 206, .external_lex_state = 6}, + [3788] = {.lex_state = 218, .external_lex_state = 6}, [3789] = {.lex_state = 206, .external_lex_state = 6}, [3790] = {.lex_state = 264, .external_lex_state = 5}, - [3791] = {.lex_state = 206, .external_lex_state = 6}, - [3792] = {.lex_state = 218, .external_lex_state = 6}, - [3793] = {.lex_state = 206, .external_lex_state = 6}, - [3794] = {.lex_state = 206, .external_lex_state = 6}, - [3795] = {.lex_state = 206, .external_lex_state = 6}, - [3796] = {.lex_state = 206, .external_lex_state = 6}, - [3797] = {.lex_state = 264, .external_lex_state = 5}, - [3798] = {.lex_state = 264, .external_lex_state = 6}, - [3799] = {.lex_state = 206, .external_lex_state = 6}, - [3800] = {.lex_state = 206, .external_lex_state = 6}, - [3801] = {.lex_state = 264, .external_lex_state = 5}, - [3802] = {.lex_state = 206, .external_lex_state = 6}, - [3803] = {.lex_state = 218, .external_lex_state = 6}, - [3804] = {.lex_state = 264, .external_lex_state = 5}, + [3791] = {.lex_state = 264, .external_lex_state = 5}, + [3792] = {.lex_state = 273, .external_lex_state = 6}, + [3793] = {.lex_state = 218, .external_lex_state = 6}, + [3794] = {.lex_state = 218, .external_lex_state = 6}, + [3795] = {.lex_state = 288, .external_lex_state = 6}, + [3796] = {.lex_state = 218, .external_lex_state = 6}, + [3797] = {.lex_state = 218, .external_lex_state = 6}, + [3798] = {.lex_state = 218, .external_lex_state = 6}, + [3799] = {.lex_state = 218, .external_lex_state = 6}, + [3800] = {.lex_state = 218, .external_lex_state = 6}, + [3801] = {.lex_state = 273, .external_lex_state = 6}, + [3802] = {.lex_state = 218, .external_lex_state = 6}, + [3803] = {.lex_state = 264, .external_lex_state = 5}, + [3804] = {.lex_state = 206, .external_lex_state = 6}, [3805] = {.lex_state = 206, .external_lex_state = 6}, [3806] = {.lex_state = 206, .external_lex_state = 6}, - [3807] = {.lex_state = 206, .external_lex_state = 6}, + [3807] = {.lex_state = 218, .external_lex_state = 6}, [3808] = {.lex_state = 206, .external_lex_state = 6}, - [3809] = {.lex_state = 218, .external_lex_state = 6}, - [3810] = {.lex_state = 218, .external_lex_state = 6}, + [3809] = {.lex_state = 273, .external_lex_state = 6}, + [3810] = {.lex_state = 273, .external_lex_state = 6}, [3811] = {.lex_state = 218, .external_lex_state = 6}, [3812] = {.lex_state = 218, .external_lex_state = 6}, - [3813] = {.lex_state = 218, .external_lex_state = 6}, - [3814] = {.lex_state = 206, .external_lex_state = 6}, - [3815] = {.lex_state = 206, .external_lex_state = 6}, - [3816] = {.lex_state = 273, .external_lex_state = 6}, - [3817] = {.lex_state = 206, .external_lex_state = 6}, - [3818] = {.lex_state = 264, .external_lex_state = 6}, + [3813] = {.lex_state = 264, .external_lex_state = 5}, + [3814] = {.lex_state = 264, .external_lex_state = 5}, + [3815] = {.lex_state = 218, .external_lex_state = 6}, + [3816] = {.lex_state = 218, .external_lex_state = 6}, + [3817] = {.lex_state = 264, .external_lex_state = 6}, + [3818] = {.lex_state = 264, .external_lex_state = 5}, [3819] = {.lex_state = 206, .external_lex_state = 6}, - [3820] = {.lex_state = 264, .external_lex_state = 5}, - [3821] = {.lex_state = 264, .external_lex_state = 6}, - [3822] = {.lex_state = 264, .external_lex_state = 5}, - [3823] = {.lex_state = 264, .external_lex_state = 5}, - [3824] = {.lex_state = 264, .external_lex_state = 5}, - [3825] = {.lex_state = 218, .external_lex_state = 6}, + [3820] = {.lex_state = 206, .external_lex_state = 6}, + [3821] = {.lex_state = 206, .external_lex_state = 6}, + [3822] = {.lex_state = 218, .external_lex_state = 6}, + [3823] = {.lex_state = 206, .external_lex_state = 6}, + [3824] = {.lex_state = 264, .external_lex_state = 6}, + [3825] = {.lex_state = 206, .external_lex_state = 6}, [3826] = {.lex_state = 206, .external_lex_state = 6}, [3827] = {.lex_state = 206, .external_lex_state = 6}, [3828] = {.lex_state = 206, .external_lex_state = 6}, [3829] = {.lex_state = 206, .external_lex_state = 6}, - [3830] = {.lex_state = 264, .external_lex_state = 5}, + [3830] = {.lex_state = 206, .external_lex_state = 6}, [3831] = {.lex_state = 264, .external_lex_state = 5}, - [3832] = {.lex_state = 264, .external_lex_state = 5}, - [3833] = {.lex_state = 206, .external_lex_state = 6}, - [3834] = {.lex_state = 273, .external_lex_state = 6}, - [3835] = {.lex_state = 218, .external_lex_state = 6}, - [3836] = {.lex_state = 206, .external_lex_state = 6}, + [3832] = {.lex_state = 218, .external_lex_state = 6}, + [3833] = {.lex_state = 264, .external_lex_state = 5}, + [3834] = {.lex_state = 264, .external_lex_state = 5}, + [3835] = {.lex_state = 264, .external_lex_state = 5}, + [3836] = {.lex_state = 218, .external_lex_state = 6}, [3837] = {.lex_state = 218, .external_lex_state = 6}, - [3838] = {.lex_state = 218, .external_lex_state = 6}, - [3839] = {.lex_state = 206, .external_lex_state = 6}, - [3840] = {.lex_state = 206, .external_lex_state = 6}, - [3841] = {.lex_state = 218, .external_lex_state = 6}, - [3842] = {.lex_state = 264, .external_lex_state = 5}, - [3843] = {.lex_state = 218, .external_lex_state = 6}, - [3844] = {.lex_state = 249, .external_lex_state = 6}, - [3845] = {.lex_state = 218, .external_lex_state = 6}, + [3838] = {.lex_state = 264, .external_lex_state = 5}, + [3839] = {.lex_state = 264, .external_lex_state = 5}, + [3840] = {.lex_state = 264, .external_lex_state = 5}, + [3841] = {.lex_state = 264, .external_lex_state = 5}, + [3842] = {.lex_state = 206, .external_lex_state = 6}, + [3843] = {.lex_state = 206, .external_lex_state = 6}, + [3844] = {.lex_state = 206, .external_lex_state = 6}, + [3845] = {.lex_state = 264, .external_lex_state = 6}, [3846] = {.lex_state = 206, .external_lex_state = 6}, - [3847] = {.lex_state = 264, .external_lex_state = 5}, + [3847] = {.lex_state = 206, .external_lex_state = 6}, [3848] = {.lex_state = 206, .external_lex_state = 6}, [3849] = {.lex_state = 206, .external_lex_state = 6}, [3850] = {.lex_state = 206, .external_lex_state = 6}, [3851] = {.lex_state = 206, .external_lex_state = 6}, - [3852] = {.lex_state = 206, .external_lex_state = 6}, - [3853] = {.lex_state = 218, .external_lex_state = 6}, - [3854] = {.lex_state = 206, .external_lex_state = 6}, - [3855] = {.lex_state = 206, .external_lex_state = 6}, - [3856] = {.lex_state = 264, .external_lex_state = 6}, - [3857] = {.lex_state = 218, .external_lex_state = 6}, - [3858] = {.lex_state = 206, .external_lex_state = 6}, - [3859] = {.lex_state = 249, .external_lex_state = 6}, + [3852] = {.lex_state = 218, .external_lex_state = 6}, + [3853] = {.lex_state = 206, .external_lex_state = 6}, + [3854] = {.lex_state = 273, .external_lex_state = 6}, + [3855] = {.lex_state = 264, .external_lex_state = 5}, + [3856] = {.lex_state = 264, .external_lex_state = 5}, + [3857] = {.lex_state = 264, .external_lex_state = 5}, + [3858] = {.lex_state = 288, .external_lex_state = 6}, + [3859] = {.lex_state = 273, .external_lex_state = 6}, [3860] = {.lex_state = 249, .external_lex_state = 6}, - [3861] = {.lex_state = 249, .external_lex_state = 6}, + [3861] = {.lex_state = 213, .external_lex_state = 6}, [3862] = {.lex_state = 249, .external_lex_state = 6}, - [3863] = {.lex_state = 213, .external_lex_state = 6}, - [3864] = {.lex_state = 213, .external_lex_state = 6}, - [3865] = {.lex_state = 213, .external_lex_state = 6}, - [3866] = {.lex_state = 249, .external_lex_state = 6}, - [3867] = {.lex_state = 273, .external_lex_state = 6}, - [3868] = {.lex_state = 273, .external_lex_state = 6}, - [3869] = {.lex_state = 297, .external_lex_state = 6}, - [3870] = {.lex_state = 264, .external_lex_state = 6}, - [3871] = {.lex_state = 218, .external_lex_state = 6}, + [3863] = {.lex_state = 273, .external_lex_state = 6}, + [3864] = {.lex_state = 264, .external_lex_state = 6}, + [3865] = {.lex_state = 264, .external_lex_state = 6}, + [3866] = {.lex_state = 291, .external_lex_state = 6}, + [3867] = {.lex_state = 213, .external_lex_state = 6}, + [3868] = {.lex_state = 218, .external_lex_state = 6}, + [3869] = {.lex_state = 273, .external_lex_state = 6}, + [3870] = {.lex_state = 273, .external_lex_state = 6}, + [3871] = {.lex_state = 297, .external_lex_state = 6}, [3872] = {.lex_state = 249, .external_lex_state = 6}, - [3873] = {.lex_state = 249, .external_lex_state = 6}, + [3873] = {.lex_state = 297, .external_lex_state = 6}, [3874] = {.lex_state = 273, .external_lex_state = 6}, [3875] = {.lex_state = 249, .external_lex_state = 6}, [3876] = {.lex_state = 273, .external_lex_state = 6}, - [3877] = {.lex_state = 297, .external_lex_state = 6}, - [3878] = {.lex_state = 249, .external_lex_state = 6}, - [3879] = {.lex_state = 249, .external_lex_state = 6}, - [3880] = {.lex_state = 273, .external_lex_state = 6}, + [3877] = {.lex_state = 273, .external_lex_state = 6}, + [3878] = {.lex_state = 273, .external_lex_state = 6}, + [3879] = {.lex_state = 273, .external_lex_state = 6}, + [3880] = {.lex_state = 249, .external_lex_state = 6}, [3881] = {.lex_state = 249, .external_lex_state = 6}, [3882] = {.lex_state = 249, .external_lex_state = 6}, - [3883] = {.lex_state = 249, .external_lex_state = 6}, - [3884] = {.lex_state = 264, .external_lex_state = 6}, - [3885] = {.lex_state = 291, .external_lex_state = 6}, - [3886] = {.lex_state = 273, .external_lex_state = 6}, - [3887] = {.lex_state = 273, .external_lex_state = 6}, - [3888] = {.lex_state = 297, .external_lex_state = 6}, + [3883] = {.lex_state = 273, .external_lex_state = 6}, + [3884] = {.lex_state = 213, .external_lex_state = 6}, + [3885] = {.lex_state = 264, .external_lex_state = 6}, + [3886] = {.lex_state = 249, .external_lex_state = 6}, + [3887] = {.lex_state = 249, .external_lex_state = 6}, + [3888] = {.lex_state = 249, .external_lex_state = 6}, [3889] = {.lex_state = 249, .external_lex_state = 6}, - [3890] = {.lex_state = 249, .external_lex_state = 6}, - [3891] = {.lex_state = 273, .external_lex_state = 6}, - [3892] = {.lex_state = 273, .external_lex_state = 6}, + [3890] = {.lex_state = 297, .external_lex_state = 6}, + [3891] = {.lex_state = 249, .external_lex_state = 6}, + [3892] = {.lex_state = 249, .external_lex_state = 6}, [3893] = {.lex_state = 273, .external_lex_state = 6}, - [3894] = {.lex_state = 273, .external_lex_state = 6}, - [3895] = {.lex_state = 264, .external_lex_state = 6}, - [3896] = {.lex_state = 264, .external_lex_state = 6}, + [3894] = {.lex_state = 249, .external_lex_state = 6}, + [3895] = {.lex_state = 273, .external_lex_state = 6}, + [3896] = {.lex_state = 249, .external_lex_state = 6}, [3897] = {.lex_state = 264, .external_lex_state = 6}, - [3898] = {.lex_state = 264, .external_lex_state = 6}, - [3899] = {.lex_state = 264, .external_lex_state = 6}, - [3900] = {.lex_state = 264, .external_lex_state = 6}, + [3898] = {.lex_state = 273, .external_lex_state = 6}, + [3899] = {.lex_state = 273, .external_lex_state = 6}, + [3900] = {.lex_state = 273, .external_lex_state = 6}, [3901] = {.lex_state = 264, .external_lex_state = 6}, - [3902] = {.lex_state = 264, .external_lex_state = 6}, - [3903] = {.lex_state = 264, .external_lex_state = 6}, + [3902] = {.lex_state = 273, .external_lex_state = 6}, + [3903] = {.lex_state = 273, .external_lex_state = 6}, [3904] = {.lex_state = 273, .external_lex_state = 6}, [3905] = {.lex_state = 264, .external_lex_state = 6}, - [3906] = {.lex_state = 264, .external_lex_state = 6}, + [3906] = {.lex_state = 273, .external_lex_state = 6}, [3907] = {.lex_state = 264, .external_lex_state = 6}, - [3908] = {.lex_state = 264, .external_lex_state = 6}, + [3908] = {.lex_state = 273, .external_lex_state = 6}, [3909] = {.lex_state = 273, .external_lex_state = 6}, - [3910] = {.lex_state = 264, .external_lex_state = 6}, - [3911] = {.lex_state = 273, .external_lex_state = 6}, + [3910] = {.lex_state = 264, .external_lex_state = 5}, + [3911] = {.lex_state = 264, .external_lex_state = 6}, [3912] = {.lex_state = 264, .external_lex_state = 6}, - [3913] = {.lex_state = 273, .external_lex_state = 6}, - [3914] = {.lex_state = 273, .external_lex_state = 6}, + [3913] = {.lex_state = 264, .external_lex_state = 6}, + [3914] = {.lex_state = 264, .external_lex_state = 6}, [3915] = {.lex_state = 273, .external_lex_state = 6}, - [3916] = {.lex_state = 273, .external_lex_state = 6}, + [3916] = {.lex_state = 264, .external_lex_state = 6}, [3917] = {.lex_state = 264, .external_lex_state = 6}, - [3918] = {.lex_state = 273, .external_lex_state = 6}, + [3918] = {.lex_state = 264, .external_lex_state = 6}, [3919] = {.lex_state = 264, .external_lex_state = 5}, - [3920] = {.lex_state = 264, .external_lex_state = 6}, + [3920] = {.lex_state = 273, .external_lex_state = 6}, [3921] = {.lex_state = 264, .external_lex_state = 6}, - [3922] = {.lex_state = 273, .external_lex_state = 6}, - [3923] = {.lex_state = 274, .external_lex_state = 6}, - [3924] = {.lex_state = 273, .external_lex_state = 6}, + [3922] = {.lex_state = 264, .external_lex_state = 6}, + [3923] = {.lex_state = 264, .external_lex_state = 6}, + [3924] = {.lex_state = 264, .external_lex_state = 6}, [3925] = {.lex_state = 264, .external_lex_state = 6}, [3926] = {.lex_state = 264, .external_lex_state = 6}, - [3927] = {.lex_state = 264, .external_lex_state = 6}, - [3928] = {.lex_state = 274, .external_lex_state = 6}, - [3929] = {.lex_state = 273, .external_lex_state = 6}, + [3927] = {.lex_state = 273, .external_lex_state = 6}, + [3928] = {.lex_state = 264, .external_lex_state = 6}, + [3929] = {.lex_state = 264, .external_lex_state = 6}, [3930] = {.lex_state = 273, .external_lex_state = 6}, - [3931] = {.lex_state = 273, .external_lex_state = 6}, - [3932] = {.lex_state = 249, .external_lex_state = 6}, + [3931] = {.lex_state = 291, .external_lex_state = 6}, + [3932] = {.lex_state = 264, .external_lex_state = 6}, [3933] = {.lex_state = 273, .external_lex_state = 6}, - [3934] = {.lex_state = 273, .external_lex_state = 6}, - [3935] = {.lex_state = 273, .external_lex_state = 6}, + [3934] = {.lex_state = 264, .external_lex_state = 6}, + [3935] = {.lex_state = 264, .external_lex_state = 6}, [3936] = {.lex_state = 264, .external_lex_state = 6}, - [3937] = {.lex_state = 249, .external_lex_state = 6}, + [3937] = {.lex_state = 273, .external_lex_state = 6}, [3938] = {.lex_state = 273, .external_lex_state = 6}, - [3939] = {.lex_state = 273, .external_lex_state = 6}, - [3940] = {.lex_state = 273, .external_lex_state = 6}, - [3941] = {.lex_state = 273, .external_lex_state = 6}, - [3942] = {.lex_state = 273, .external_lex_state = 6}, - [3943] = {.lex_state = 273, .external_lex_state = 6}, + [3939] = {.lex_state = 264, .external_lex_state = 6}, + [3940] = {.lex_state = 264, .external_lex_state = 6}, + [3941] = {.lex_state = 264, .external_lex_state = 6}, + [3942] = {.lex_state = 264, .external_lex_state = 6}, + [3943] = {.lex_state = 274, .external_lex_state = 6}, [3944] = {.lex_state = 273, .external_lex_state = 6}, [3945] = {.lex_state = 273, .external_lex_state = 6}, - [3946] = {.lex_state = 273, .external_lex_state = 6}, + [3946] = {.lex_state = 264, .external_lex_state = 6}, [3947] = {.lex_state = 273, .external_lex_state = 6}, [3948] = {.lex_state = 273, .external_lex_state = 6}, [3949] = {.lex_state = 264, .external_lex_state = 6}, [3950] = {.lex_state = 273, .external_lex_state = 6}, - [3951] = {.lex_state = 273, .external_lex_state = 6}, - [3952] = {.lex_state = 273, .external_lex_state = 6}, + [3951] = {.lex_state = 249, .external_lex_state = 6}, + [3952] = {.lex_state = 264, .external_lex_state = 6}, [3953] = {.lex_state = 273, .external_lex_state = 6}, - [3954] = {.lex_state = 273, .external_lex_state = 6}, - [3955] = {.lex_state = 273, .external_lex_state = 6}, - [3956] = {.lex_state = 264, .external_lex_state = 6}, - [3957] = {.lex_state = 291, .external_lex_state = 6}, - [3958] = {.lex_state = 264, .external_lex_state = 6}, + [3954] = {.lex_state = 264, .external_lex_state = 6}, + [3955] = {.lex_state = 264, .external_lex_state = 6}, + [3956] = {.lex_state = 273, .external_lex_state = 6}, + [3957] = {.lex_state = 264, .external_lex_state = 6}, + [3958] = {.lex_state = 273, .external_lex_state = 6}, [3959] = {.lex_state = 264, .external_lex_state = 6}, [3960] = {.lex_state = 273, .external_lex_state = 6}, - [3961] = {.lex_state = 273, .external_lex_state = 6}, + [3961] = {.lex_state = 264, .external_lex_state = 6}, [3962] = {.lex_state = 264, .external_lex_state = 6}, - [3963] = {.lex_state = 273, .external_lex_state = 6}, + [3963] = {.lex_state = 249, .external_lex_state = 6}, [3964] = {.lex_state = 264, .external_lex_state = 6}, - [3965] = {.lex_state = 264, .external_lex_state = 6}, + [3965] = {.lex_state = 273, .external_lex_state = 6}, [3966] = {.lex_state = 264, .external_lex_state = 6}, - [3967] = {.lex_state = 273, .external_lex_state = 6}, - [3968] = {.lex_state = 273, .external_lex_state = 6}, + [3967] = {.lex_state = 264, .external_lex_state = 6}, + [3968] = {.lex_state = 274, .external_lex_state = 6}, [3969] = {.lex_state = 273, .external_lex_state = 6}, [3970] = {.lex_state = 264, .external_lex_state = 6}, [3971] = {.lex_state = 264, .external_lex_state = 6}, - [3972] = {.lex_state = 264, .external_lex_state = 6}, + [3972] = {.lex_state = 273, .external_lex_state = 6}, [3973] = {.lex_state = 264, .external_lex_state = 6}, - [3974] = {.lex_state = 264, .external_lex_state = 6}, - [3975] = {.lex_state = 264, .external_lex_state = 5}, + [3974] = {.lex_state = 273, .external_lex_state = 6}, + [3975] = {.lex_state = 264, .external_lex_state = 6}, [3976] = {.lex_state = 264, .external_lex_state = 6}, - [3977] = {.lex_state = 264, .external_lex_state = 6}, - [3978] = {.lex_state = 264, .external_lex_state = 6}, + [3977] = {.lex_state = 273, .external_lex_state = 6}, + [3978] = {.lex_state = 273, .external_lex_state = 6}, [3979] = {.lex_state = 264, .external_lex_state = 6}, - [3980] = {.lex_state = 264, .external_lex_state = 6}, - [3981] = {.lex_state = 264, .external_lex_state = 6}, - [3982] = {.lex_state = 264, .external_lex_state = 6}, - [3983] = {.lex_state = 264, .external_lex_state = 6}, - [3984] = {.lex_state = 264, .external_lex_state = 6}, + [3980] = {.lex_state = 273, .external_lex_state = 6}, + [3981] = {.lex_state = 273, .external_lex_state = 6}, + [3982] = {.lex_state = 273, .external_lex_state = 6}, + [3983] = {.lex_state = 273, .external_lex_state = 6}, + [3984] = {.lex_state = 273, .external_lex_state = 6}, [3985] = {.lex_state = 273, .external_lex_state = 6}, - [3986] = {.lex_state = 264, .external_lex_state = 6}, - [3987] = {.lex_state = 264, .external_lex_state = 6}, + [3986] = {.lex_state = 273, .external_lex_state = 6}, + [3987] = {.lex_state = 273, .external_lex_state = 6}, [3988] = {.lex_state = 273, .external_lex_state = 6}, - [3989] = {.lex_state = 264, .external_lex_state = 6}, + [3989] = {.lex_state = 273, .external_lex_state = 6}, [3990] = {.lex_state = 264, .external_lex_state = 6}, [3991] = {.lex_state = 264, .external_lex_state = 6}, [3992] = {.lex_state = 264, .external_lex_state = 6}, [3993] = {.lex_state = 264, .external_lex_state = 6}, [3994] = {.lex_state = 264, .external_lex_state = 6}, - [3995] = {.lex_state = 264, .external_lex_state = 6}, + [3995] = {.lex_state = 249, .external_lex_state = 6}, [3996] = {.lex_state = 264, .external_lex_state = 6}, [3997] = {.lex_state = 264, .external_lex_state = 6}, [3998] = {.lex_state = 264, .external_lex_state = 6}, [3999] = {.lex_state = 264, .external_lex_state = 6}, [4000] = {.lex_state = 264, .external_lex_state = 6}, - [4001] = {.lex_state = 264, .external_lex_state = 6}, + [4001] = {.lex_state = 249, .external_lex_state = 6}, [4002] = {.lex_state = 264, .external_lex_state = 6}, [4003] = {.lex_state = 264, .external_lex_state = 6}, - [4004] = {.lex_state = 264, .external_lex_state = 6}, + [4004] = {.lex_state = 249, .external_lex_state = 6}, [4005] = {.lex_state = 264, .external_lex_state = 6}, [4006] = {.lex_state = 264, .external_lex_state = 6}, [4007] = {.lex_state = 264, .external_lex_state = 6}, @@ -39033,11 +39032,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4017] = {.lex_state = 264, .external_lex_state = 6}, [4018] = {.lex_state = 264, .external_lex_state = 6}, [4019] = {.lex_state = 264, .external_lex_state = 6}, - [4020] = {.lex_state = 264, .external_lex_state = 6}, + [4020] = {.lex_state = 249, .external_lex_state = 6}, [4021] = {.lex_state = 264, .external_lex_state = 6}, - [4022] = {.lex_state = 264, .external_lex_state = 6}, + [4022] = {.lex_state = 249, .external_lex_state = 6}, [4023] = {.lex_state = 264, .external_lex_state = 6}, - [4024] = {.lex_state = 264, .external_lex_state = 6}, + [4024] = {.lex_state = 249, .external_lex_state = 6}, [4025] = {.lex_state = 264, .external_lex_state = 6}, [4026] = {.lex_state = 264, .external_lex_state = 6}, [4027] = {.lex_state = 264, .external_lex_state = 6}, @@ -39045,10 +39044,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4029] = {.lex_state = 264, .external_lex_state = 6}, [4030] = {.lex_state = 264, .external_lex_state = 6}, [4031] = {.lex_state = 264, .external_lex_state = 6}, - [4032] = {.lex_state = 249, .external_lex_state = 6}, + [4032] = {.lex_state = 264, .external_lex_state = 6}, [4033] = {.lex_state = 264, .external_lex_state = 6}, [4034] = {.lex_state = 264, .external_lex_state = 6}, - [4035] = {.lex_state = 249, .external_lex_state = 6}, + [4035] = {.lex_state = 264, .external_lex_state = 6}, [4036] = {.lex_state = 264, .external_lex_state = 6}, [4037] = {.lex_state = 264, .external_lex_state = 6}, [4038] = {.lex_state = 264, .external_lex_state = 6}, @@ -39061,13 +39060,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4045] = {.lex_state = 264, .external_lex_state = 6}, [4046] = {.lex_state = 264, .external_lex_state = 6}, [4047] = {.lex_state = 264, .external_lex_state = 6}, - [4048] = {.lex_state = 206, .external_lex_state = 6}, - [4049] = {.lex_state = 206, .external_lex_state = 6}, + [4048] = {.lex_state = 264, .external_lex_state = 6}, + [4049] = {.lex_state = 264, .external_lex_state = 6}, [4050] = {.lex_state = 206, .external_lex_state = 6}, - [4051] = {.lex_state = 264, .external_lex_state = 6}, - [4052] = {.lex_state = 264, .external_lex_state = 6}, + [4051] = {.lex_state = 206, .external_lex_state = 6}, + [4052] = {.lex_state = 206, .external_lex_state = 6}, [4053] = {.lex_state = 264, .external_lex_state = 6}, - [4054] = {.lex_state = 249, .external_lex_state = 6}, + [4054] = {.lex_state = 264, .external_lex_state = 6}, [4055] = {.lex_state = 264, .external_lex_state = 6}, [4056] = {.lex_state = 264, .external_lex_state = 6}, [4057] = {.lex_state = 264, .external_lex_state = 6}, @@ -39080,7 +39079,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4064] = {.lex_state = 264, .external_lex_state = 6}, [4065] = {.lex_state = 264, .external_lex_state = 6}, [4066] = {.lex_state = 264, .external_lex_state = 6}, - [4067] = {.lex_state = 249, .external_lex_state = 6}, + [4067] = {.lex_state = 264, .external_lex_state = 6}, [4068] = {.lex_state = 264, .external_lex_state = 6}, [4069] = {.lex_state = 264, .external_lex_state = 6}, [4070] = {.lex_state = 264, .external_lex_state = 6}, @@ -39108,7 +39107,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4092] = {.lex_state = 264, .external_lex_state = 6}, [4093] = {.lex_state = 264, .external_lex_state = 6}, [4094] = {.lex_state = 264, .external_lex_state = 6}, - [4095] = {.lex_state = 249, .external_lex_state = 6}, + [4095] = {.lex_state = 264, .external_lex_state = 6}, [4096] = {.lex_state = 264, .external_lex_state = 6}, [4097] = {.lex_state = 264, .external_lex_state = 6}, [4098] = {.lex_state = 264, .external_lex_state = 6}, @@ -39150,70 +39149,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4134] = {.lex_state = 264, .external_lex_state = 6}, [4135] = {.lex_state = 264, .external_lex_state = 6}, [4136] = {.lex_state = 264, .external_lex_state = 6}, - [4137] = {.lex_state = 249, .external_lex_state = 6}, + [4137] = {.lex_state = 264, .external_lex_state = 6}, [4138] = {.lex_state = 264, .external_lex_state = 6}, [4139] = {.lex_state = 264, .external_lex_state = 6}, [4140] = {.lex_state = 264, .external_lex_state = 6}, [4141] = {.lex_state = 264, .external_lex_state = 6}, [4142] = {.lex_state = 264, .external_lex_state = 6}, - [4143] = {.lex_state = 261, .external_lex_state = 6}, + [4143] = {.lex_state = 264, .external_lex_state = 6}, [4144] = {.lex_state = 261, .external_lex_state = 6}, [4145] = {.lex_state = 261, .external_lex_state = 6}, - [4146] = {.lex_state = 249, .external_lex_state = 6}, - [4147] = {.lex_state = 242, .external_lex_state = 6}, - [4148] = {.lex_state = 245, .external_lex_state = 6}, + [4146] = {.lex_state = 261, .external_lex_state = 6}, + [4147] = {.lex_state = 249, .external_lex_state = 6}, + [4148] = {.lex_state = 249, .external_lex_state = 6}, [4149] = {.lex_state = 249, .external_lex_state = 6}, - [4150] = {.lex_state = 245, .external_lex_state = 6}, - [4151] = {.lex_state = 246, .external_lex_state = 6}, - [4152] = {.lex_state = 245, .external_lex_state = 6}, - [4153] = {.lex_state = 247, .external_lex_state = 6}, - [4154] = {.lex_state = 246, .external_lex_state = 6}, - [4155] = {.lex_state = 248, .external_lex_state = 6}, - [4156] = {.lex_state = 248, .external_lex_state = 6}, - [4157] = {.lex_state = 247, .external_lex_state = 6}, - [4158] = {.lex_state = 249, .external_lex_state = 6}, + [4150] = {.lex_state = 249, .external_lex_state = 6}, + [4151] = {.lex_state = 249, .external_lex_state = 6}, + [4152] = {.lex_state = 249, .external_lex_state = 6}, + [4153] = {.lex_state = 249, .external_lex_state = 6}, + [4154] = {.lex_state = 249, .external_lex_state = 6}, + [4155] = {.lex_state = 242, .external_lex_state = 6}, + [4156] = {.lex_state = 245, .external_lex_state = 6}, + [4157] = {.lex_state = 249, .external_lex_state = 6}, + [4158] = {.lex_state = 246, .external_lex_state = 6}, [4159] = {.lex_state = 249, .external_lex_state = 6}, [4160] = {.lex_state = 249, .external_lex_state = 6}, - [4161] = {.lex_state = 249, .external_lex_state = 6}, + [4161] = {.lex_state = 214, .external_lex_state = 6}, [4162] = {.lex_state = 249, .external_lex_state = 6}, - [4163] = {.lex_state = 249, .external_lex_state = 6}, - [4164] = {.lex_state = 249, .external_lex_state = 6}, - [4165] = {.lex_state = 249, .external_lex_state = 6}, - [4166] = {.lex_state = 248, .external_lex_state = 6}, - [4167] = {.lex_state = 246, .external_lex_state = 6}, - [4168] = {.lex_state = 249, .external_lex_state = 6}, - [4169] = {.lex_state = 214, .external_lex_state = 6}, - [4170] = {.lex_state = 247, .external_lex_state = 6}, - [4171] = {.lex_state = 249, .external_lex_state = 6}, + [4163] = {.lex_state = 245, .external_lex_state = 6}, + [4164] = {.lex_state = 214, .external_lex_state = 6}, + [4165] = {.lex_state = 246, .external_lex_state = 6}, + [4166] = {.lex_state = 249, .external_lex_state = 6}, + [4167] = {.lex_state = 261, .external_lex_state = 6}, + [4168] = {.lex_state = 247, .external_lex_state = 6}, + [4169] = {.lex_state = 242, .external_lex_state = 6}, + [4170] = {.lex_state = 245, .external_lex_state = 6}, + [4171] = {.lex_state = 214, .external_lex_state = 6}, [4172] = {.lex_state = 242, .external_lex_state = 6}, - [4173] = {.lex_state = 214, .external_lex_state = 6}, - [4174] = {.lex_state = 242, .external_lex_state = 6}, + [4173] = {.lex_state = 248, .external_lex_state = 6}, + [4174] = {.lex_state = 247, .external_lex_state = 6}, [4175] = {.lex_state = 249, .external_lex_state = 6}, [4176] = {.lex_state = 249, .external_lex_state = 6}, - [4177] = {.lex_state = 261, .external_lex_state = 6}, - [4178] = {.lex_state = 249, .external_lex_state = 6}, - [4179] = {.lex_state = 214, .external_lex_state = 6}, - [4180] = {.lex_state = 249, .external_lex_state = 6}, + [4177] = {.lex_state = 248, .external_lex_state = 6}, + [4178] = {.lex_state = 246, .external_lex_state = 6}, + [4179] = {.lex_state = 248, .external_lex_state = 6}, + [4180] = {.lex_state = 247, .external_lex_state = 6}, [4181] = {.lex_state = 249, .external_lex_state = 6}, [4182] = {.lex_state = 249, .external_lex_state = 6}, - [4183] = {.lex_state = 261, .external_lex_state = 6}, + [4183] = {.lex_state = 249, .external_lex_state = 6}, [4184] = {.lex_state = 249, .external_lex_state = 6}, [4185] = {.lex_state = 249, .external_lex_state = 6}, [4186] = {.lex_state = 249, .external_lex_state = 6}, - [4187] = {.lex_state = 249, .external_lex_state = 6}, - [4188] = {.lex_state = 249, .external_lex_state = 6}, + [4187] = {.lex_state = 261, .external_lex_state = 6}, + [4188] = {.lex_state = 261, .external_lex_state = 6}, [4189] = {.lex_state = 249, .external_lex_state = 6}, [4190] = {.lex_state = 249, .external_lex_state = 6}, [4191] = {.lex_state = 249, .external_lex_state = 6}, [4192] = {.lex_state = 249, .external_lex_state = 6}, [4193] = {.lex_state = 249, .external_lex_state = 6}, - [4194] = {.lex_state = 261, .external_lex_state = 6}, - [4195] = {.lex_state = 261, .external_lex_state = 6}, - [4196] = {.lex_state = 249, .external_lex_state = 6}, + [4194] = {.lex_state = 249, .external_lex_state = 6}, + [4195] = {.lex_state = 249, .external_lex_state = 6}, + [4196] = {.lex_state = 261, .external_lex_state = 6}, [4197] = {.lex_state = 249, .external_lex_state = 6}, [4198] = {.lex_state = 249, .external_lex_state = 6}, [4199] = {.lex_state = 249, .external_lex_state = 6}, - [4200] = {.lex_state = 243, .external_lex_state = 6}, + [4200] = {.lex_state = 249, .external_lex_state = 6}, [4201] = {.lex_state = 243, .external_lex_state = 6}, [4202] = {.lex_state = 243, .external_lex_state = 6}, [4203] = {.lex_state = 243, .external_lex_state = 6}, @@ -39239,396 +39238,396 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4223] = {.lex_state = 243, .external_lex_state = 6}, [4224] = {.lex_state = 243, .external_lex_state = 6}, [4225] = {.lex_state = 243, .external_lex_state = 6}, - [4226] = {.lex_state = 249, .external_lex_state = 6}, + [4226] = {.lex_state = 243, .external_lex_state = 6}, [4227] = {.lex_state = 249, .external_lex_state = 6}, [4228] = {.lex_state = 249, .external_lex_state = 6}, [4229] = {.lex_state = 249, .external_lex_state = 6}, - [4230] = {.lex_state = 243, .external_lex_state = 6}, - [4231] = {.lex_state = 262, .external_lex_state = 6}, + [4230] = {.lex_state = 249, .external_lex_state = 6}, + [4231] = {.lex_state = 243, .external_lex_state = 6}, [4232] = {.lex_state = 254, .external_lex_state = 6}, - [4233] = {.lex_state = 254, .external_lex_state = 6}, - [4234] = {.lex_state = 262, .external_lex_state = 6}, - [4235] = {.lex_state = 262, .external_lex_state = 6}, + [4233] = {.lex_state = 262, .external_lex_state = 6}, + [4234] = {.lex_state = 254, .external_lex_state = 6}, + [4235] = {.lex_state = 254, .external_lex_state = 6}, [4236] = {.lex_state = 254, .external_lex_state = 6}, [4237] = {.lex_state = 262, .external_lex_state = 6}, - [4238] = {.lex_state = 262, .external_lex_state = 6}, + [4238] = {.lex_state = 254, .external_lex_state = 6}, [4239] = {.lex_state = 254, .external_lex_state = 6}, - [4240] = {.lex_state = 262, .external_lex_state = 6}, + [4240] = {.lex_state = 254, .external_lex_state = 6}, [4241] = {.lex_state = 254, .external_lex_state = 6}, [4242] = {.lex_state = 254, .external_lex_state = 6}, [4243] = {.lex_state = 254, .external_lex_state = 6}, [4244] = {.lex_state = 254, .external_lex_state = 6}, [4245] = {.lex_state = 254, .external_lex_state = 6}, - [4246] = {.lex_state = 262, .external_lex_state = 6}, - [4247] = {.lex_state = 262, .external_lex_state = 6}, - [4248] = {.lex_state = 254, .external_lex_state = 6}, + [4246] = {.lex_state = 254, .external_lex_state = 6}, + [4247] = {.lex_state = 254, .external_lex_state = 6}, + [4248] = {.lex_state = 262, .external_lex_state = 6}, [4249] = {.lex_state = 254, .external_lex_state = 6}, [4250] = {.lex_state = 254, .external_lex_state = 6}, [4251] = {.lex_state = 254, .external_lex_state = 6}, [4252] = {.lex_state = 254, .external_lex_state = 6}, [4253] = {.lex_state = 254, .external_lex_state = 6}, - [4254] = {.lex_state = 262, .external_lex_state = 6}, + [4254] = {.lex_state = 254, .external_lex_state = 6}, [4255] = {.lex_state = 262, .external_lex_state = 6}, [4256] = {.lex_state = 262, .external_lex_state = 6}, - [4257] = {.lex_state = 254, .external_lex_state = 6}, - [4258] = {.lex_state = 254, .external_lex_state = 6}, - [4259] = {.lex_state = 254, .external_lex_state = 6}, - [4260] = {.lex_state = 254, .external_lex_state = 6}, - [4261] = {.lex_state = 254, .external_lex_state = 6}, + [4257] = {.lex_state = 262, .external_lex_state = 6}, + [4258] = {.lex_state = 262, .external_lex_state = 6}, + [4259] = {.lex_state = 262, .external_lex_state = 6}, + [4260] = {.lex_state = 262, .external_lex_state = 6}, + [4261] = {.lex_state = 262, .external_lex_state = 6}, [4262] = {.lex_state = 262, .external_lex_state = 6}, [4263] = {.lex_state = 262, .external_lex_state = 6}, - [4264] = {.lex_state = 249, .external_lex_state = 6}, + [4264] = {.lex_state = 262, .external_lex_state = 6}, [4265] = {.lex_state = 262, .external_lex_state = 6}, - [4266] = {.lex_state = 262, .external_lex_state = 5}, - [4267] = {.lex_state = 262, .external_lex_state = 6}, + [4266] = {.lex_state = 249, .external_lex_state = 6}, + [4267] = {.lex_state = 249, .external_lex_state = 6}, [4268] = {.lex_state = 262, .external_lex_state = 6}, [4269] = {.lex_state = 262, .external_lex_state = 6}, [4270] = {.lex_state = 262, .external_lex_state = 6}, - [4271] = {.lex_state = 262, .external_lex_state = 6}, - [4272] = {.lex_state = 262, .external_lex_state = 6}, + [4271] = {.lex_state = 262, .external_lex_state = 5}, + [4272] = {.lex_state = 262, .external_lex_state = 5}, [4273] = {.lex_state = 262, .external_lex_state = 6}, - [4274] = {.lex_state = 262, .external_lex_state = 6}, - [4275] = {.lex_state = 262, .external_lex_state = 6}, - [4276] = {.lex_state = 262, .external_lex_state = 6}, - [4277] = {.lex_state = 262, .external_lex_state = 6}, - [4278] = {.lex_state = 218, .external_lex_state = 6}, - [4279] = {.lex_state = 262, .external_lex_state = 6}, - [4280] = {.lex_state = 262, .external_lex_state = 6}, + [4274] = {.lex_state = 262, .external_lex_state = 5}, + [4275] = {.lex_state = 262, .external_lex_state = 5}, + [4276] = {.lex_state = 262, .external_lex_state = 5}, + [4277] = {.lex_state = 262, .external_lex_state = 5}, + [4278] = {.lex_state = 249, .external_lex_state = 6}, + [4279] = {.lex_state = 262, .external_lex_state = 5}, + [4280] = {.lex_state = 262, .external_lex_state = 5}, [4281] = {.lex_state = 262, .external_lex_state = 5}, [4282] = {.lex_state = 262, .external_lex_state = 6}, - [4283] = {.lex_state = 262, .external_lex_state = 5}, + [4283] = {.lex_state = 218, .external_lex_state = 6}, [4284] = {.lex_state = 262, .external_lex_state = 5}, - [4285] = {.lex_state = 249, .external_lex_state = 6}, - [4286] = {.lex_state = 262, .external_lex_state = 6}, - [4287] = {.lex_state = 262, .external_lex_state = 6}, - [4288] = {.lex_state = 262, .external_lex_state = 6}, - [4289] = {.lex_state = 262, .external_lex_state = 5}, - [4290] = {.lex_state = 218, .external_lex_state = 6}, - [4291] = {.lex_state = 262, .external_lex_state = 5}, + [4285] = {.lex_state = 262, .external_lex_state = 6}, + [4286] = {.lex_state = 262, .external_lex_state = 5}, + [4287] = {.lex_state = 218, .external_lex_state = 6}, + [4288] = {.lex_state = 262, .external_lex_state = 5}, + [4289] = {.lex_state = 249, .external_lex_state = 6}, + [4290] = {.lex_state = 262, .external_lex_state = 6}, + [4291] = {.lex_state = 262, .external_lex_state = 6}, [4292] = {.lex_state = 262, .external_lex_state = 5}, - [4293] = {.lex_state = 262, .external_lex_state = 5}, - [4294] = {.lex_state = 262, .external_lex_state = 5}, - [4295] = {.lex_state = 262, .external_lex_state = 5}, + [4293] = {.lex_state = 249, .external_lex_state = 6}, + [4294] = {.lex_state = 262, .external_lex_state = 6}, + [4295] = {.lex_state = 262, .external_lex_state = 6}, [4296] = {.lex_state = 249, .external_lex_state = 6}, - [4297] = {.lex_state = 249, .external_lex_state = 6}, - [4298] = {.lex_state = 262, .external_lex_state = 5}, - [4299] = {.lex_state = 262, .external_lex_state = 5}, - [4300] = {.lex_state = 249, .external_lex_state = 6}, - [4301] = {.lex_state = 218, .external_lex_state = 6}, + [4297] = {.lex_state = 262, .external_lex_state = 5}, + [4298] = {.lex_state = 218, .external_lex_state = 6}, + [4299] = {.lex_state = 249, .external_lex_state = 6}, + [4300] = {.lex_state = 262, .external_lex_state = 6}, + [4301] = {.lex_state = 249, .external_lex_state = 6}, [4302] = {.lex_state = 262, .external_lex_state = 6}, - [4303] = {.lex_state = 249, .external_lex_state = 6}, + [4303] = {.lex_state = 262, .external_lex_state = 6}, [4304] = {.lex_state = 262, .external_lex_state = 6}, [4305] = {.lex_state = 249, .external_lex_state = 6}, [4306] = {.lex_state = 262, .external_lex_state = 6}, - [4307] = {.lex_state = 262, .external_lex_state = 6}, + [4307] = {.lex_state = 262, .external_lex_state = 5}, [4308] = {.lex_state = 249, .external_lex_state = 6}, - [4309] = {.lex_state = 262, .external_lex_state = 6}, - [4310] = {.lex_state = 218, .external_lex_state = 6}, + [4309] = {.lex_state = 218, .external_lex_state = 6}, + [4310] = {.lex_state = 249, .external_lex_state = 6}, [4311] = {.lex_state = 218, .external_lex_state = 6}, [4312] = {.lex_state = 262, .external_lex_state = 6}, [4313] = {.lex_state = 218, .external_lex_state = 6}, - [4314] = {.lex_state = 218, .external_lex_state = 6}, - [4315] = {.lex_state = 262, .external_lex_state = 6}, - [4316] = {.lex_state = 249, .external_lex_state = 6}, - [4317] = {.lex_state = 218, .external_lex_state = 6}, - [4318] = {.lex_state = 249, .external_lex_state = 6}, + [4314] = {.lex_state = 262, .external_lex_state = 6}, + [4315] = {.lex_state = 249, .external_lex_state = 6}, + [4316] = {.lex_state = 262, .external_lex_state = 6}, + [4317] = {.lex_state = 249, .external_lex_state = 6}, + [4318] = {.lex_state = 262, .external_lex_state = 5}, [4319] = {.lex_state = 262, .external_lex_state = 6}, - [4320] = {.lex_state = 262, .external_lex_state = 5}, - [4321] = {.lex_state = 249, .external_lex_state = 6}, - [4322] = {.lex_state = 249, .external_lex_state = 6}, - [4323] = {.lex_state = 262, .external_lex_state = 5}, - [4324] = {.lex_state = 262, .external_lex_state = 5}, - [4325] = {.lex_state = 262, .external_lex_state = 5}, - [4326] = {.lex_state = 249, .external_lex_state = 6}, - [4327] = {.lex_state = 262, .external_lex_state = 6}, + [4320] = {.lex_state = 262, .external_lex_state = 6}, + [4321] = {.lex_state = 218, .external_lex_state = 6}, + [4322] = {.lex_state = 262, .external_lex_state = 6}, + [4323] = {.lex_state = 262, .external_lex_state = 6}, + [4324] = {.lex_state = 262, .external_lex_state = 6}, + [4325] = {.lex_state = 262, .external_lex_state = 6}, + [4326] = {.lex_state = 262, .external_lex_state = 6}, + [4327] = {.lex_state = 218, .external_lex_state = 6}, [4328] = {.lex_state = 262, .external_lex_state = 6}, - [4329] = {.lex_state = 262, .external_lex_state = 5}, - [4330] = {.lex_state = 249, .external_lex_state = 5}, - [4331] = {.lex_state = 249, .external_lex_state = 5}, - [4332] = {.lex_state = 249, .external_lex_state = 5}, + [4329] = {.lex_state = 262, .external_lex_state = 6}, + [4330] = {.lex_state = 262, .external_lex_state = 6}, + [4331] = {.lex_state = 262, .external_lex_state = 6}, + [4332] = {.lex_state = 218, .external_lex_state = 6}, [4333] = {.lex_state = 249, .external_lex_state = 5}, - [4334] = {.lex_state = 213, .external_lex_state = 6}, - [4335] = {.lex_state = 213, .external_lex_state = 6}, + [4334] = {.lex_state = 262, .external_lex_state = 6}, + [4335] = {.lex_state = 218, .external_lex_state = 6}, [4336] = {.lex_state = 262, .external_lex_state = 6}, - [4337] = {.lex_state = 213, .external_lex_state = 6}, + [4337] = {.lex_state = 262, .external_lex_state = 6}, [4338] = {.lex_state = 262, .external_lex_state = 6}, - [4339] = {.lex_state = 262, .external_lex_state = 5}, - [4340] = {.lex_state = 262, .external_lex_state = 6}, - [4341] = {.lex_state = 262, .external_lex_state = 6}, - [4342] = {.lex_state = 262, .external_lex_state = 6}, - [4343] = {.lex_state = 262, .external_lex_state = 6}, - [4344] = {.lex_state = 213, .external_lex_state = 6}, - [4345] = {.lex_state = 216, .external_lex_state = 6}, - [4346] = {.lex_state = 262, .external_lex_state = 6}, - [4347] = {.lex_state = 218, .external_lex_state = 6}, - [4348] = {.lex_state = 262, .external_lex_state = 6}, - [4349] = {.lex_state = 262, .external_lex_state = 5}, - [4350] = {.lex_state = 213, .external_lex_state = 6}, - [4351] = {.lex_state = 262, .external_lex_state = 6}, - [4352] = {.lex_state = 218, .external_lex_state = 6}, - [4353] = {.lex_state = 249, .external_lex_state = 5}, - [4354] = {.lex_state = 213, .external_lex_state = 6}, - [4355] = {.lex_state = 218, .external_lex_state = 6}, - [4356] = {.lex_state = 218, .external_lex_state = 6}, - [4357] = {.lex_state = 262, .external_lex_state = 5}, - [4358] = {.lex_state = 213, .external_lex_state = 6}, + [4339] = {.lex_state = 218, .external_lex_state = 6}, + [4340] = {.lex_state = 213, .external_lex_state = 6}, + [4341] = {.lex_state = 262, .external_lex_state = 5}, + [4342] = {.lex_state = 218, .external_lex_state = 6}, + [4343] = {.lex_state = 213, .external_lex_state = 6}, + [4344] = {.lex_state = 262, .external_lex_state = 6}, + [4345] = {.lex_state = 213, .external_lex_state = 6}, + [4346] = {.lex_state = 213, .external_lex_state = 6}, + [4347] = {.lex_state = 213, .external_lex_state = 6}, + [4348] = {.lex_state = 213, .external_lex_state = 6}, + [4349] = {.lex_state = 262, .external_lex_state = 6}, + [4350] = {.lex_state = 262, .external_lex_state = 6}, + [4351] = {.lex_state = 249, .external_lex_state = 5}, + [4352] = {.lex_state = 262, .external_lex_state = 6}, + [4353] = {.lex_state = 262, .external_lex_state = 5}, + [4354] = {.lex_state = 218, .external_lex_state = 6}, + [4355] = {.lex_state = 262, .external_lex_state = 6}, + [4356] = {.lex_state = 262, .external_lex_state = 5}, + [4357] = {.lex_state = 218, .external_lex_state = 6}, + [4358] = {.lex_state = 262, .external_lex_state = 5}, [4359] = {.lex_state = 262, .external_lex_state = 5}, - [4360] = {.lex_state = 218, .external_lex_state = 6}, - [4361] = {.lex_state = 262, .external_lex_state = 5}, - [4362] = {.lex_state = 213, .external_lex_state = 6}, - [4363] = {.lex_state = 218, .external_lex_state = 6}, - [4364] = {.lex_state = 213, .external_lex_state = 6}, - [4365] = {.lex_state = 218, .external_lex_state = 6}, - [4366] = {.lex_state = 218, .external_lex_state = 6}, - [4367] = {.lex_state = 213, .external_lex_state = 6}, - [4368] = {.lex_state = 262, .external_lex_state = 6}, - [4369] = {.lex_state = 218, .external_lex_state = 6}, - [4370] = {.lex_state = 213, .external_lex_state = 6}, - [4371] = {.lex_state = 262, .external_lex_state = 6}, - [4372] = {.lex_state = 213, .external_lex_state = 6}, + [4360] = {.lex_state = 213, .external_lex_state = 6}, + [4361] = {.lex_state = 218, .external_lex_state = 6}, + [4362] = {.lex_state = 216, .external_lex_state = 6}, + [4363] = {.lex_state = 249, .external_lex_state = 5}, + [4364] = {.lex_state = 218, .external_lex_state = 6}, + [4365] = {.lex_state = 262, .external_lex_state = 6}, + [4366] = {.lex_state = 262, .external_lex_state = 5}, + [4367] = {.lex_state = 218, .external_lex_state = 6}, + [4368] = {.lex_state = 213, .external_lex_state = 6}, + [4369] = {.lex_state = 249, .external_lex_state = 5}, + [4370] = {.lex_state = 249, .external_lex_state = 5}, + [4371] = {.lex_state = 218, .external_lex_state = 6}, + [4372] = {.lex_state = 262, .external_lex_state = 6}, [4373] = {.lex_state = 218, .external_lex_state = 6}, [4374] = {.lex_state = 218, .external_lex_state = 6}, - [4375] = {.lex_state = 218, .external_lex_state = 6}, - [4376] = {.lex_state = 262, .external_lex_state = 5}, - [4377] = {.lex_state = 262, .external_lex_state = 6}, - [4378] = {.lex_state = 262, .external_lex_state = 6}, - [4379] = {.lex_state = 262, .external_lex_state = 6}, - [4380] = {.lex_state = 218, .external_lex_state = 6}, - [4381] = {.lex_state = 213, .external_lex_state = 6}, - [4382] = {.lex_state = 249, .external_lex_state = 6}, - [4383] = {.lex_state = 218, .external_lex_state = 6}, - [4384] = {.lex_state = 262, .external_lex_state = 6}, + [4375] = {.lex_state = 262, .external_lex_state = 6}, + [4376] = {.lex_state = 213, .external_lex_state = 6}, + [4377] = {.lex_state = 213, .external_lex_state = 6}, + [4378] = {.lex_state = 213, .external_lex_state = 6}, + [4379] = {.lex_state = 262, .external_lex_state = 5}, + [4380] = {.lex_state = 213, .external_lex_state = 6}, + [4381] = {.lex_state = 218, .external_lex_state = 6}, + [4382] = {.lex_state = 213, .external_lex_state = 6}, + [4383] = {.lex_state = 213, .external_lex_state = 6}, + [4384] = {.lex_state = 218, .external_lex_state = 6}, [4385] = {.lex_state = 218, .external_lex_state = 6}, [4386] = {.lex_state = 218, .external_lex_state = 6}, - [4387] = {.lex_state = 262, .external_lex_state = 5}, + [4387] = {.lex_state = 218, .external_lex_state = 6}, [4388] = {.lex_state = 262, .external_lex_state = 6}, - [4389] = {.lex_state = 262, .external_lex_state = 5}, - [4390] = {.lex_state = 262, .external_lex_state = 6}, - [4391] = {.lex_state = 262, .external_lex_state = 5}, - [4392] = {.lex_state = 262, .external_lex_state = 6}, - [4393] = {.lex_state = 262, .external_lex_state = 6}, - [4394] = {.lex_state = 262, .external_lex_state = 6}, - [4395] = {.lex_state = 262, .external_lex_state = 5}, - [4396] = {.lex_state = 262, .external_lex_state = 6}, - [4397] = {.lex_state = 262, .external_lex_state = 6}, - [4398] = {.lex_state = 218, .external_lex_state = 6}, - [4399] = {.lex_state = 218, .external_lex_state = 6}, + [4389] = {.lex_state = 218, .external_lex_state = 6}, + [4390] = {.lex_state = 218, .external_lex_state = 6}, + [4391] = {.lex_state = 249, .external_lex_state = 6}, + [4392] = {.lex_state = 213, .external_lex_state = 6}, + [4393] = {.lex_state = 213, .external_lex_state = 6}, + [4394] = {.lex_state = 213, .external_lex_state = 6}, + [4395] = {.lex_state = 218, .external_lex_state = 6}, + [4396] = {.lex_state = 218, .external_lex_state = 6}, + [4397] = {.lex_state = 213, .external_lex_state = 6}, + [4398] = {.lex_state = 213, .external_lex_state = 6}, + [4399] = {.lex_state = 213, .external_lex_state = 6}, [4400] = {.lex_state = 213, .external_lex_state = 6}, [4401] = {.lex_state = 213, .external_lex_state = 6}, [4402] = {.lex_state = 213, .external_lex_state = 6}, [4403] = {.lex_state = 213, .external_lex_state = 6}, [4404] = {.lex_state = 213, .external_lex_state = 6}, - [4405] = {.lex_state = 213, .external_lex_state = 6}, + [4405] = {.lex_state = 218, .external_lex_state = 6}, [4406] = {.lex_state = 213, .external_lex_state = 6}, [4407] = {.lex_state = 213, .external_lex_state = 6}, - [4408] = {.lex_state = 218, .external_lex_state = 6}, - [4409] = {.lex_state = 262, .external_lex_state = 6}, - [4410] = {.lex_state = 262, .external_lex_state = 6}, + [4408] = {.lex_state = 262, .external_lex_state = 6}, + [4409] = {.lex_state = 213, .external_lex_state = 6}, + [4410] = {.lex_state = 213, .external_lex_state = 6}, [4411] = {.lex_state = 213, .external_lex_state = 6}, [4412] = {.lex_state = 213, .external_lex_state = 6}, [4413] = {.lex_state = 213, .external_lex_state = 6}, [4414] = {.lex_state = 213, .external_lex_state = 6}, - [4415] = {.lex_state = 213, .external_lex_state = 6}, - [4416] = {.lex_state = 218, .external_lex_state = 6}, - [4417] = {.lex_state = 218, .external_lex_state = 6}, + [4415] = {.lex_state = 218, .external_lex_state = 6}, + [4416] = {.lex_state = 249, .external_lex_state = 6}, + [4417] = {.lex_state = 213, .external_lex_state = 6}, [4418] = {.lex_state = 213, .external_lex_state = 6}, - [4419] = {.lex_state = 213, .external_lex_state = 6}, - [4420] = {.lex_state = 262, .external_lex_state = 5}, - [4421] = {.lex_state = 262, .external_lex_state = 6}, - [4422] = {.lex_state = 262, .external_lex_state = 5}, - [4423] = {.lex_state = 213, .external_lex_state = 6}, - [4424] = {.lex_state = 213, .external_lex_state = 6}, + [4419] = {.lex_state = 218, .external_lex_state = 6}, + [4420] = {.lex_state = 213, .external_lex_state = 6}, + [4421] = {.lex_state = 218, .external_lex_state = 6}, + [4422] = {.lex_state = 213, .external_lex_state = 6}, + [4423] = {.lex_state = 218, .external_lex_state = 6}, + [4424] = {.lex_state = 218, .external_lex_state = 6}, [4425] = {.lex_state = 218, .external_lex_state = 6}, [4426] = {.lex_state = 218, .external_lex_state = 6}, - [4427] = {.lex_state = 213, .external_lex_state = 6}, + [4427] = {.lex_state = 218, .external_lex_state = 6}, [4428] = {.lex_state = 213, .external_lex_state = 6}, [4429] = {.lex_state = 218, .external_lex_state = 6}, - [4430] = {.lex_state = 213, .external_lex_state = 6}, - [4431] = {.lex_state = 262, .external_lex_state = 6}, - [4432] = {.lex_state = 213, .external_lex_state = 6}, + [4430] = {.lex_state = 218, .external_lex_state = 6}, + [4431] = {.lex_state = 218, .external_lex_state = 6}, + [4432] = {.lex_state = 218, .external_lex_state = 6}, [4433] = {.lex_state = 218, .external_lex_state = 6}, [4434] = {.lex_state = 218, .external_lex_state = 6}, - [4435] = {.lex_state = 214, .external_lex_state = 6}, + [4435] = {.lex_state = 218, .external_lex_state = 6}, [4436] = {.lex_state = 218, .external_lex_state = 6}, [4437] = {.lex_state = 218, .external_lex_state = 6}, [4438] = {.lex_state = 218, .external_lex_state = 6}, [4439] = {.lex_state = 218, .external_lex_state = 6}, - [4440] = {.lex_state = 218, .external_lex_state = 6}, - [4441] = {.lex_state = 213, .external_lex_state = 6}, - [4442] = {.lex_state = 218, .external_lex_state = 6}, - [4443] = {.lex_state = 213, .external_lex_state = 6}, - [4444] = {.lex_state = 213, .external_lex_state = 6}, - [4445] = {.lex_state = 213, .external_lex_state = 6}, - [4446] = {.lex_state = 218, .external_lex_state = 6}, - [4447] = {.lex_state = 218, .external_lex_state = 6}, - [4448] = {.lex_state = 218, .external_lex_state = 6}, - [4449] = {.lex_state = 213, .external_lex_state = 6}, + [4440] = {.lex_state = 262, .external_lex_state = 5}, + [4441] = {.lex_state = 262, .external_lex_state = 6}, + [4442] = {.lex_state = 262, .external_lex_state = 6}, + [4443] = {.lex_state = 262, .external_lex_state = 5}, + [4444] = {.lex_state = 262, .external_lex_state = 5}, + [4445] = {.lex_state = 218, .external_lex_state = 6}, + [4446] = {.lex_state = 213, .external_lex_state = 6}, + [4447] = {.lex_state = 262, .external_lex_state = 5}, + [4448] = {.lex_state = 262, .external_lex_state = 6}, + [4449] = {.lex_state = 218, .external_lex_state = 6}, [4450] = {.lex_state = 218, .external_lex_state = 6}, - [4451] = {.lex_state = 262, .external_lex_state = 6}, + [4451] = {.lex_state = 249, .external_lex_state = 6}, [4452] = {.lex_state = 218, .external_lex_state = 6}, [4453] = {.lex_state = 218, .external_lex_state = 6}, - [4454] = {.lex_state = 262, .external_lex_state = 6}, - [4455] = {.lex_state = 213, .external_lex_state = 6}, - [4456] = {.lex_state = 213, .external_lex_state = 6}, - [4457] = {.lex_state = 218, .external_lex_state = 6}, + [4454] = {.lex_state = 218, .external_lex_state = 6}, + [4455] = {.lex_state = 262, .external_lex_state = 6}, + [4456] = {.lex_state = 218, .external_lex_state = 6}, + [4457] = {.lex_state = 262, .external_lex_state = 6}, [4458] = {.lex_state = 213, .external_lex_state = 6}, - [4459] = {.lex_state = 262, .external_lex_state = 6}, + [4459] = {.lex_state = 213, .external_lex_state = 6}, [4460] = {.lex_state = 218, .external_lex_state = 6}, - [4461] = {.lex_state = 262, .external_lex_state = 6}, - [4462] = {.lex_state = 262, .external_lex_state = 6}, - [4463] = {.lex_state = 262, .external_lex_state = 6}, - [4464] = {.lex_state = 262, .external_lex_state = 5}, + [4461] = {.lex_state = 218, .external_lex_state = 6}, + [4462] = {.lex_state = 213, .external_lex_state = 6}, + [4463] = {.lex_state = 218, .external_lex_state = 6}, + [4464] = {.lex_state = 218, .external_lex_state = 6}, [4465] = {.lex_state = 213, .external_lex_state = 6}, - [4466] = {.lex_state = 218, .external_lex_state = 6}, - [4467] = {.lex_state = 213, .external_lex_state = 6}, - [4468] = {.lex_state = 213, .external_lex_state = 6}, - [4469] = {.lex_state = 213, .external_lex_state = 6}, - [4470] = {.lex_state = 218, .external_lex_state = 6}, - [4471] = {.lex_state = 213, .external_lex_state = 6}, - [4472] = {.lex_state = 262, .external_lex_state = 5}, - [4473] = {.lex_state = 213, .external_lex_state = 6}, + [4466] = {.lex_state = 213, .external_lex_state = 6}, + [4467] = {.lex_state = 218, .external_lex_state = 6}, + [4468] = {.lex_state = 218, .external_lex_state = 6}, + [4469] = {.lex_state = 218, .external_lex_state = 6}, + [4470] = {.lex_state = 214, .external_lex_state = 6}, + [4471] = {.lex_state = 262, .external_lex_state = 6}, + [4472] = {.lex_state = 218, .external_lex_state = 6}, + [4473] = {.lex_state = 218, .external_lex_state = 6}, [4474] = {.lex_state = 218, .external_lex_state = 6}, [4475] = {.lex_state = 213, .external_lex_state = 6}, - [4476] = {.lex_state = 262, .external_lex_state = 5}, - [4477] = {.lex_state = 218, .external_lex_state = 6}, + [4476] = {.lex_state = 218, .external_lex_state = 6}, + [4477] = {.lex_state = 213, .external_lex_state = 6}, [4478] = {.lex_state = 213, .external_lex_state = 6}, - [4479] = {.lex_state = 213, .external_lex_state = 6}, - [4480] = {.lex_state = 213, .external_lex_state = 6}, + [4479] = {.lex_state = 218, .external_lex_state = 6}, + [4480] = {.lex_state = 218, .external_lex_state = 6}, [4481] = {.lex_state = 213, .external_lex_state = 6}, [4482] = {.lex_state = 213, .external_lex_state = 6}, - [4483] = {.lex_state = 218, .external_lex_state = 6}, + [4483] = {.lex_state = 262, .external_lex_state = 5}, [4484] = {.lex_state = 218, .external_lex_state = 6}, - [4485] = {.lex_state = 262, .external_lex_state = 6}, - [4486] = {.lex_state = 218, .external_lex_state = 6}, - [4487] = {.lex_state = 218, .external_lex_state = 6}, + [4485] = {.lex_state = 262, .external_lex_state = 5}, + [4486] = {.lex_state = 262, .external_lex_state = 6}, + [4487] = {.lex_state = 262, .external_lex_state = 6}, [4488] = {.lex_state = 262, .external_lex_state = 6}, - [4489] = {.lex_state = 218, .external_lex_state = 6}, + [4489] = {.lex_state = 262, .external_lex_state = 6}, [4490] = {.lex_state = 218, .external_lex_state = 6}, - [4491] = {.lex_state = 218, .external_lex_state = 6}, - [4492] = {.lex_state = 218, .external_lex_state = 6}, - [4493] = {.lex_state = 218, .external_lex_state = 6}, - [4494] = {.lex_state = 218, .external_lex_state = 6}, - [4495] = {.lex_state = 218, .external_lex_state = 6}, - [4496] = {.lex_state = 218, .external_lex_state = 6}, - [4497] = {.lex_state = 218, .external_lex_state = 6}, - [4498] = {.lex_state = 218, .external_lex_state = 6}, - [4499] = {.lex_state = 218, .external_lex_state = 6}, - [4500] = {.lex_state = 218, .external_lex_state = 6}, - [4501] = {.lex_state = 218, .external_lex_state = 6}, - [4502] = {.lex_state = 249, .external_lex_state = 6}, - [4503] = {.lex_state = 262, .external_lex_state = 6}, - [4504] = {.lex_state = 213, .external_lex_state = 6}, + [4491] = {.lex_state = 262, .external_lex_state = 6}, + [4492] = {.lex_state = 262, .external_lex_state = 5}, + [4493] = {.lex_state = 262, .external_lex_state = 6}, + [4494] = {.lex_state = 262, .external_lex_state = 5}, + [4495] = {.lex_state = 262, .external_lex_state = 5}, + [4496] = {.lex_state = 262, .external_lex_state = 6}, + [4497] = {.lex_state = 262, .external_lex_state = 6}, + [4498] = {.lex_state = 262, .external_lex_state = 5}, + [4499] = {.lex_state = 262, .external_lex_state = 6}, + [4500] = {.lex_state = 262, .external_lex_state = 6}, + [4501] = {.lex_state = 262, .external_lex_state = 6}, + [4502] = {.lex_state = 262, .external_lex_state = 6}, + [4503] = {.lex_state = 218, .external_lex_state = 6}, + [4504] = {.lex_state = 218, .external_lex_state = 6}, [4505] = {.lex_state = 218, .external_lex_state = 6}, - [4506] = {.lex_state = 213, .external_lex_state = 6}, - [4507] = {.lex_state = 213, .external_lex_state = 6}, - [4508] = {.lex_state = 249, .external_lex_state = 6}, + [4506] = {.lex_state = 218, .external_lex_state = 6}, + [4507] = {.lex_state = 218, .external_lex_state = 6}, + [4508] = {.lex_state = 218, .external_lex_state = 6}, [4509] = {.lex_state = 218, .external_lex_state = 6}, - [4510] = {.lex_state = 262, .external_lex_state = 5}, - [4511] = {.lex_state = 262, .external_lex_state = 6}, - [4512] = {.lex_state = 262, .external_lex_state = 6}, - [4513] = {.lex_state = 262, .external_lex_state = 6}, + [4510] = {.lex_state = 218, .external_lex_state = 6}, + [4511] = {.lex_state = 218, .external_lex_state = 6}, + [4512] = {.lex_state = 262, .external_lex_state = 5}, + [4513] = {.lex_state = 218, .external_lex_state = 6}, [4514] = {.lex_state = 218, .external_lex_state = 6}, - [4515] = {.lex_state = 218, .external_lex_state = 6}, - [4516] = {.lex_state = 218, .external_lex_state = 6}, - [4517] = {.lex_state = 218, .external_lex_state = 6}, - [4518] = {.lex_state = 218, .external_lex_state = 6}, - [4519] = {.lex_state = 218, .external_lex_state = 6}, - [4520] = {.lex_state = 218, .external_lex_state = 6}, - [4521] = {.lex_state = 218, .external_lex_state = 6}, - [4522] = {.lex_state = 218, .external_lex_state = 6}, - [4523] = {.lex_state = 262, .external_lex_state = 5}, - [4524] = {.lex_state = 218, .external_lex_state = 6}, - [4525] = {.lex_state = 213, .external_lex_state = 6}, - [4526] = {.lex_state = 218, .external_lex_state = 6}, + [4515] = {.lex_state = 213, .external_lex_state = 6}, + [4516] = {.lex_state = 213, .external_lex_state = 6}, + [4517] = {.lex_state = 213, .external_lex_state = 6}, + [4518] = {.lex_state = 213, .external_lex_state = 6}, + [4519] = {.lex_state = 213, .external_lex_state = 6}, + [4520] = {.lex_state = 213, .external_lex_state = 6}, + [4521] = {.lex_state = 213, .external_lex_state = 6}, + [4522] = {.lex_state = 213, .external_lex_state = 6}, + [4523] = {.lex_state = 262, .external_lex_state = 6}, + [4524] = {.lex_state = 262, .external_lex_state = 6}, + [4525] = {.lex_state = 262, .external_lex_state = 6}, + [4526] = {.lex_state = 213, .external_lex_state = 6}, [4527] = {.lex_state = 262, .external_lex_state = 6}, - [4528] = {.lex_state = 262, .external_lex_state = 6}, - [4529] = {.lex_state = 249, .external_lex_state = 6}, - [4530] = {.lex_state = 249, .external_lex_state = 5}, - [4531] = {.lex_state = 262, .external_lex_state = 6}, - [4532] = {.lex_state = 262, .external_lex_state = 6}, - [4533] = {.lex_state = 249, .external_lex_state = 6}, - [4534] = {.lex_state = 262, .external_lex_state = 6}, - [4535] = {.lex_state = 262, .external_lex_state = 6}, - [4536] = {.lex_state = 249, .external_lex_state = 5}, + [4528] = {.lex_state = 249, .external_lex_state = 6}, + [4529] = {.lex_state = 262, .external_lex_state = 6}, + [4530] = {.lex_state = 262, .external_lex_state = 6}, + [4531] = {.lex_state = 206, .external_lex_state = 6}, + [4532] = {.lex_state = 249, .external_lex_state = 5}, + [4533] = {.lex_state = 262, .external_lex_state = 6}, + [4534] = {.lex_state = 249, .external_lex_state = 6}, + [4535] = {.lex_state = 249, .external_lex_state = 6}, + [4536] = {.lex_state = 206, .external_lex_state = 6}, [4537] = {.lex_state = 206, .external_lex_state = 6}, [4538] = {.lex_state = 206, .external_lex_state = 6}, [4539] = {.lex_state = 206, .external_lex_state = 6}, - [4540] = {.lex_state = 206, .external_lex_state = 6}, + [4540] = {.lex_state = 262, .external_lex_state = 6}, [4541] = {.lex_state = 262, .external_lex_state = 6}, [4542] = {.lex_state = 249, .external_lex_state = 6}, [4543] = {.lex_state = 249, .external_lex_state = 6}, - [4544] = {.lex_state = 249, .external_lex_state = 6}, + [4544] = {.lex_state = 262, .external_lex_state = 6}, [4545] = {.lex_state = 262, .external_lex_state = 6}, - [4546] = {.lex_state = 262, .external_lex_state = 6}, - [4547] = {.lex_state = 262, .external_lex_state = 6}, + [4546] = {.lex_state = 249, .external_lex_state = 6}, + [4547] = {.lex_state = 262, .external_lex_state = 5}, [4548] = {.lex_state = 262, .external_lex_state = 6}, - [4549] = {.lex_state = 262, .external_lex_state = 5}, - [4550] = {.lex_state = 249, .external_lex_state = 6}, + [4549] = {.lex_state = 249, .external_lex_state = 5}, + [4550] = {.lex_state = 262, .external_lex_state = 6}, [4551] = {.lex_state = 262, .external_lex_state = 6}, - [4552] = {.lex_state = 206, .external_lex_state = 6}, + [4552] = {.lex_state = 262, .external_lex_state = 6}, [4553] = {.lex_state = 262, .external_lex_state = 6}, - [4554] = {.lex_state = 249, .external_lex_state = 6}, - [4555] = {.lex_state = 262, .external_lex_state = 6}, + [4554] = {.lex_state = 262, .external_lex_state = 6}, + [4555] = {.lex_state = 249, .external_lex_state = 6}, [4556] = {.lex_state = 249, .external_lex_state = 6}, [4557] = {.lex_state = 262, .external_lex_state = 6}, - [4558] = {.lex_state = 249, .external_lex_state = 5}, + [4558] = {.lex_state = 262, .external_lex_state = 6}, [4559] = {.lex_state = 249, .external_lex_state = 6}, [4560] = {.lex_state = 216, .external_lex_state = 6}, [4561] = {.lex_state = 262, .external_lex_state = 6}, - [4562] = {.lex_state = 262, .external_lex_state = 6}, - [4563] = {.lex_state = 216, .external_lex_state = 6}, - [4564] = {.lex_state = 249, .external_lex_state = 6}, + [4562] = {.lex_state = 249, .external_lex_state = 6}, + [4563] = {.lex_state = 249, .external_lex_state = 5}, + [4564] = {.lex_state = 262, .external_lex_state = 6}, [4565] = {.lex_state = 262, .external_lex_state = 6}, [4566] = {.lex_state = 262, .external_lex_state = 6}, - [4567] = {.lex_state = 262, .external_lex_state = 6}, + [4567] = {.lex_state = 218, .external_lex_state = 6}, [4568] = {.lex_state = 262, .external_lex_state = 6}, - [4569] = {.lex_state = 262, .external_lex_state = 6}, - [4570] = {.lex_state = 249, .external_lex_state = 6}, - [4571] = {.lex_state = 218, .external_lex_state = 6}, + [4569] = {.lex_state = 216, .external_lex_state = 6}, + [4570] = {.lex_state = 262, .external_lex_state = 6}, + [4571] = {.lex_state = 262, .external_lex_state = 6}, [4572] = {.lex_state = 249, .external_lex_state = 6}, - [4573] = {.lex_state = 262, .external_lex_state = 5}, + [4573] = {.lex_state = 261, .external_lex_state = 6}, [4574] = {.lex_state = 262, .external_lex_state = 6}, - [4575] = {.lex_state = 216, .external_lex_state = 6}, - [4576] = {.lex_state = 216, .external_lex_state = 6}, - [4577] = {.lex_state = 215, .external_lex_state = 6}, - [4578] = {.lex_state = 262, .external_lex_state = 5}, - [4579] = {.lex_state = 262, .external_lex_state = 5}, + [4575] = {.lex_state = 262, .external_lex_state = 5}, + [4576] = {.lex_state = 262, .external_lex_state = 5}, + [4577] = {.lex_state = 262, .external_lex_state = 5}, + [4578] = {.lex_state = 249, .external_lex_state = 6}, + [4579] = {.lex_state = 249, .external_lex_state = 6}, [4580] = {.lex_state = 262, .external_lex_state = 5}, - [4581] = {.lex_state = 262, .external_lex_state = 5}, - [4582] = {.lex_state = 262, .external_lex_state = 5}, - [4583] = {.lex_state = 262, .external_lex_state = 5}, - [4584] = {.lex_state = 262, .external_lex_state = 5}, - [4585] = {.lex_state = 262, .external_lex_state = 5}, - [4586] = {.lex_state = 215, .external_lex_state = 6}, - [4587] = {.lex_state = 262, .external_lex_state = 5}, + [4581] = {.lex_state = 249, .external_lex_state = 6}, + [4582] = {.lex_state = 249, .external_lex_state = 6}, + [4583] = {.lex_state = 262, .external_lex_state = 6}, + [4584] = {.lex_state = 249, .external_lex_state = 6}, + [4585] = {.lex_state = 215, .external_lex_state = 6}, + [4586] = {.lex_state = 249, .external_lex_state = 6}, + [4587] = {.lex_state = 215, .external_lex_state = 6}, [4588] = {.lex_state = 262, .external_lex_state = 6}, [4589] = {.lex_state = 262, .external_lex_state = 5}, - [4590] = {.lex_state = 261, .external_lex_state = 6}, - [4591] = {.lex_state = 261, .external_lex_state = 6}, + [4590] = {.lex_state = 262, .external_lex_state = 5}, + [4591] = {.lex_state = 262, .external_lex_state = 6}, [4592] = {.lex_state = 261, .external_lex_state = 6}, [4593] = {.lex_state = 261, .external_lex_state = 6}, - [4594] = {.lex_state = 249, .external_lex_state = 6}, - [4595] = {.lex_state = 261, .external_lex_state = 6}, + [4594] = {.lex_state = 261, .external_lex_state = 6}, + [4595] = {.lex_state = 262, .external_lex_state = 5}, [4596] = {.lex_state = 261, .external_lex_state = 6}, [4597] = {.lex_state = 261, .external_lex_state = 6}, [4598] = {.lex_state = 261, .external_lex_state = 6}, - [4599] = {.lex_state = 261, .external_lex_state = 6}, + [4599] = {.lex_state = 262, .external_lex_state = 5}, [4600] = {.lex_state = 261, .external_lex_state = 6}, [4601] = {.lex_state = 261, .external_lex_state = 6}, - [4602] = {.lex_state = 262, .external_lex_state = 5}, - [4603] = {.lex_state = 262, .external_lex_state = 5}, - [4604] = {.lex_state = 261, .external_lex_state = 6}, - [4605] = {.lex_state = 249, .external_lex_state = 6}, - [4606] = {.lex_state = 249, .external_lex_state = 6}, + [4602] = {.lex_state = 261, .external_lex_state = 6}, + [4603] = {.lex_state = 261, .external_lex_state = 6}, + [4604] = {.lex_state = 262, .external_lex_state = 5}, + [4605] = {.lex_state = 261, .external_lex_state = 6}, + [4606] = {.lex_state = 262, .external_lex_state = 5}, [4607] = {.lex_state = 262, .external_lex_state = 5}, - [4608] = {.lex_state = 249, .external_lex_state = 6}, - [4609] = {.lex_state = 249, .external_lex_state = 6}, + [4608] = {.lex_state = 216, .external_lex_state = 6}, + [4609] = {.lex_state = 262, .external_lex_state = 5}, [4610] = {.lex_state = 249, .external_lex_state = 6}, - [4611] = {.lex_state = 249, .external_lex_state = 6}, + [4611] = {.lex_state = 262, .external_lex_state = 5}, [4612] = {.lex_state = 249, .external_lex_state = 6}, [4613] = {.lex_state = 249, .external_lex_state = 6}, - [4614] = {.lex_state = 262, .external_lex_state = 6}, - [4615] = {.lex_state = 249, .external_lex_state = 6}, + [4614] = {.lex_state = 249, .external_lex_state = 6}, + [4615] = {.lex_state = 262, .external_lex_state = 6}, [4616] = {.lex_state = 249, .external_lex_state = 6}, [4617] = {.lex_state = 249, .external_lex_state = 6}, [4618] = {.lex_state = 249, .external_lex_state = 6}, @@ -39638,494 +39637,494 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4622] = {.lex_state = 249, .external_lex_state = 6}, [4623] = {.lex_state = 249, .external_lex_state = 6}, [4624] = {.lex_state = 249, .external_lex_state = 6}, - [4625] = {.lex_state = 262, .external_lex_state = 5}, + [4625] = {.lex_state = 249, .external_lex_state = 6}, [4626] = {.lex_state = 249, .external_lex_state = 6}, [4627] = {.lex_state = 249, .external_lex_state = 6}, - [4628] = {.lex_state = 262, .external_lex_state = 6}, - [4629] = {.lex_state = 262, .external_lex_state = 5}, + [4628] = {.lex_state = 249, .external_lex_state = 6}, + [4629] = {.lex_state = 249, .external_lex_state = 6}, [4630] = {.lex_state = 249, .external_lex_state = 6}, [4631] = {.lex_state = 249, .external_lex_state = 6}, [4632] = {.lex_state = 262, .external_lex_state = 5}, [4633] = {.lex_state = 249, .external_lex_state = 6}, [4634] = {.lex_state = 249, .external_lex_state = 6}, [4635] = {.lex_state = 249, .external_lex_state = 6}, - [4636] = {.lex_state = 262, .external_lex_state = 6}, - [4637] = {.lex_state = 249, .external_lex_state = 6}, + [4636] = {.lex_state = 262, .external_lex_state = 5}, + [4637] = {.lex_state = 262, .external_lex_state = 5}, [4638] = {.lex_state = 216, .external_lex_state = 6}, - [4639] = {.lex_state = 249, .external_lex_state = 6}, + [4639] = {.lex_state = 216, .external_lex_state = 6}, [4640] = {.lex_state = 249, .external_lex_state = 6}, [4641] = {.lex_state = 262, .external_lex_state = 5}, - [4642] = {.lex_state = 261, .external_lex_state = 6}, + [4642] = {.lex_state = 262, .external_lex_state = 5}, [4643] = {.lex_state = 261, .external_lex_state = 6}, - [4644] = {.lex_state = 248, .external_lex_state = 6}, - [4645] = {.lex_state = 214, .external_lex_state = 6}, + [4644] = {.lex_state = 246, .external_lex_state = 6}, + [4645] = {.lex_state = 262, .external_lex_state = 6}, [4646] = {.lex_state = 261, .external_lex_state = 6}, [4647] = {.lex_state = 214, .external_lex_state = 6}, [4648] = {.lex_state = 214, .external_lex_state = 6}, - [4649] = {.lex_state = 248, .external_lex_state = 6}, + [4649] = {.lex_state = 242, .external_lex_state = 6}, [4650] = {.lex_state = 261, .external_lex_state = 6}, - [4651] = {.lex_state = 248, .external_lex_state = 6}, + [4651] = {.lex_state = 261, .external_lex_state = 6}, [4652] = {.lex_state = 261, .external_lex_state = 6}, - [4653] = {.lex_state = 248, .external_lex_state = 6}, - [4654] = {.lex_state = 248, .external_lex_state = 6}, - [4655] = {.lex_state = 261, .external_lex_state = 6}, - [4656] = {.lex_state = 261, .external_lex_state = 6}, - [4657] = {.lex_state = 248, .external_lex_state = 6}, + [4653] = {.lex_state = 262, .external_lex_state = 5}, + [4654] = {.lex_state = 246, .external_lex_state = 6}, + [4655] = {.lex_state = 246, .external_lex_state = 6}, + [4656] = {.lex_state = 246, .external_lex_state = 6}, + [4657] = {.lex_state = 261, .external_lex_state = 6}, [4658] = {.lex_state = 261, .external_lex_state = 6}, - [4659] = {.lex_state = 248, .external_lex_state = 6}, - [4660] = {.lex_state = 262, .external_lex_state = 6}, + [4659] = {.lex_state = 246, .external_lex_state = 6}, + [4660] = {.lex_state = 248, .external_lex_state = 6}, [4661] = {.lex_state = 261, .external_lex_state = 6}, - [4662] = {.lex_state = 248, .external_lex_state = 6}, + [4662] = {.lex_state = 261, .external_lex_state = 6}, [4663] = {.lex_state = 261, .external_lex_state = 6}, [4664] = {.lex_state = 261, .external_lex_state = 6}, - [4665] = {.lex_state = 261, .external_lex_state = 6}, + [4665] = {.lex_state = 262, .external_lex_state = 6}, [4666] = {.lex_state = 261, .external_lex_state = 6}, [4667] = {.lex_state = 261, .external_lex_state = 6}, - [4668] = {.lex_state = 261, .external_lex_state = 6}, + [4668] = {.lex_state = 262, .external_lex_state = 6}, [4669] = {.lex_state = 261, .external_lex_state = 6}, - [4670] = {.lex_state = 248, .external_lex_state = 6}, - [4671] = {.lex_state = 248, .external_lex_state = 6}, - [4672] = {.lex_state = 261, .external_lex_state = 6}, + [4670] = {.lex_state = 261, .external_lex_state = 6}, + [4671] = {.lex_state = 261, .external_lex_state = 6}, + [4672] = {.lex_state = 246, .external_lex_state = 6}, [4673] = {.lex_state = 261, .external_lex_state = 6}, - [4674] = {.lex_state = 248, .external_lex_state = 6}, - [4675] = {.lex_state = 214, .external_lex_state = 6}, - [4676] = {.lex_state = 214, .external_lex_state = 6}, + [4674] = {.lex_state = 261, .external_lex_state = 6}, + [4675] = {.lex_state = 261, .external_lex_state = 6}, + [4676] = {.lex_state = 248, .external_lex_state = 6}, [4677] = {.lex_state = 261, .external_lex_state = 6}, [4678] = {.lex_state = 261, .external_lex_state = 6}, [4679] = {.lex_state = 261, .external_lex_state = 6}, - [4680] = {.lex_state = 261, .external_lex_state = 6}, - [4681] = {.lex_state = 262, .external_lex_state = 5}, - [4682] = {.lex_state = 214, .external_lex_state = 6}, - [4683] = {.lex_state = 261, .external_lex_state = 6}, - [4684] = {.lex_state = 214, .external_lex_state = 6}, - [4685] = {.lex_state = 261, .external_lex_state = 6}, - [4686] = {.lex_state = 261, .external_lex_state = 6}, - [4687] = {.lex_state = 214, .external_lex_state = 6}, + [4680] = {.lex_state = 214, .external_lex_state = 6}, + [4681] = {.lex_state = 261, .external_lex_state = 6}, + [4682] = {.lex_state = 261, .external_lex_state = 6}, + [4683] = {.lex_state = 246, .external_lex_state = 6}, + [4684] = {.lex_state = 248, .external_lex_state = 6}, + [4685] = {.lex_state = 248, .external_lex_state = 6}, + [4686] = {.lex_state = 248, .external_lex_state = 6}, + [4687] = {.lex_state = 261, .external_lex_state = 6}, [4688] = {.lex_state = 247, .external_lex_state = 6}, [4689] = {.lex_state = 261, .external_lex_state = 6}, - [4690] = {.lex_state = 262, .external_lex_state = 6}, - [4691] = {.lex_state = 261, .external_lex_state = 6}, - [4692] = {.lex_state = 261, .external_lex_state = 6}, - [4693] = {.lex_state = 261, .external_lex_state = 6}, - [4694] = {.lex_state = 261, .external_lex_state = 6}, - [4695] = {.lex_state = 261, .external_lex_state = 6}, - [4696] = {.lex_state = 261, .external_lex_state = 6}, - [4697] = {.lex_state = 247, .external_lex_state = 6}, - [4698] = {.lex_state = 247, .external_lex_state = 6}, - [4699] = {.lex_state = 247, .external_lex_state = 6}, - [4700] = {.lex_state = 262, .external_lex_state = 6}, - [4701] = {.lex_state = 262, .external_lex_state = 6}, - [4702] = {.lex_state = 261, .external_lex_state = 6}, + [4690] = {.lex_state = 214, .external_lex_state = 6}, + [4691] = {.lex_state = 242, .external_lex_state = 6}, + [4692] = {.lex_state = 242, .external_lex_state = 6}, + [4693] = {.lex_state = 247, .external_lex_state = 6}, + [4694] = {.lex_state = 262, .external_lex_state = 6}, + [4695] = {.lex_state = 242, .external_lex_state = 6}, + [4696] = {.lex_state = 214, .external_lex_state = 6}, + [4697] = {.lex_state = 242, .external_lex_state = 6}, + [4698] = {.lex_state = 242, .external_lex_state = 6}, + [4699] = {.lex_state = 242, .external_lex_state = 6}, + [4700] = {.lex_state = 247, .external_lex_state = 6}, + [4701] = {.lex_state = 247, .external_lex_state = 6}, + [4702] = {.lex_state = 247, .external_lex_state = 6}, [4703] = {.lex_state = 261, .external_lex_state = 6}, - [4704] = {.lex_state = 262, .external_lex_state = 5}, - [4705] = {.lex_state = 261, .external_lex_state = 6}, - [4706] = {.lex_state = 261, .external_lex_state = 6}, - [4707] = {.lex_state = 261, .external_lex_state = 6}, - [4708] = {.lex_state = 246, .external_lex_state = 6}, - [4709] = {.lex_state = 242, .external_lex_state = 6}, - [4710] = {.lex_state = 242, .external_lex_state = 6}, + [4704] = {.lex_state = 248, .external_lex_state = 6}, + [4705] = {.lex_state = 247, .external_lex_state = 6}, + [4706] = {.lex_state = 214, .external_lex_state = 6}, + [4707] = {.lex_state = 214, .external_lex_state = 6}, + [4708] = {.lex_state = 214, .external_lex_state = 6}, + [4709] = {.lex_state = 262, .external_lex_state = 5}, + [4710] = {.lex_state = 261, .external_lex_state = 6}, [4711] = {.lex_state = 261, .external_lex_state = 6}, - [4712] = {.lex_state = 242, .external_lex_state = 6}, - [4713] = {.lex_state = 247, .external_lex_state = 6}, - [4714] = {.lex_state = 261, .external_lex_state = 6}, + [4712] = {.lex_state = 261, .external_lex_state = 6}, + [4713] = {.lex_state = 262, .external_lex_state = 6}, + [4714] = {.lex_state = 214, .external_lex_state = 6}, [4715] = {.lex_state = 247, .external_lex_state = 6}, - [4716] = {.lex_state = 247, .external_lex_state = 6}, - [4717] = {.lex_state = 246, .external_lex_state = 6}, - [4718] = {.lex_state = 246, .external_lex_state = 6}, - [4719] = {.lex_state = 246, .external_lex_state = 6}, + [4716] = {.lex_state = 214, .external_lex_state = 6}, + [4717] = {.lex_state = 248, .external_lex_state = 6}, + [4718] = {.lex_state = 248, .external_lex_state = 6}, + [4719] = {.lex_state = 248, .external_lex_state = 6}, [4720] = {.lex_state = 246, .external_lex_state = 6}, - [4721] = {.lex_state = 246, .external_lex_state = 6}, - [4722] = {.lex_state = 246, .external_lex_state = 6}, + [4721] = {.lex_state = 245, .external_lex_state = 6}, + [4722] = {.lex_state = 262, .external_lex_state = 6}, [4723] = {.lex_state = 246, .external_lex_state = 6}, - [4724] = {.lex_state = 247, .external_lex_state = 6}, - [4725] = {.lex_state = 247, .external_lex_state = 6}, - [4726] = {.lex_state = 247, .external_lex_state = 6}, - [4727] = {.lex_state = 246, .external_lex_state = 6}, - [4728] = {.lex_state = 246, .external_lex_state = 6}, - [4729] = {.lex_state = 247, .external_lex_state = 6}, - [4730] = {.lex_state = 246, .external_lex_state = 6}, - [4731] = {.lex_state = 262, .external_lex_state = 6}, - [4732] = {.lex_state = 246, .external_lex_state = 6}, + [4724] = {.lex_state = 242, .external_lex_state = 6}, + [4725] = {.lex_state = 246, .external_lex_state = 6}, + [4726] = {.lex_state = 261, .external_lex_state = 6}, + [4727] = {.lex_state = 245, .external_lex_state = 6}, + [4728] = {.lex_state = 214, .external_lex_state = 6}, + [4729] = {.lex_state = 245, .external_lex_state = 6}, + [4730] = {.lex_state = 245, .external_lex_state = 6}, + [4731] = {.lex_state = 245, .external_lex_state = 6}, + [4732] = {.lex_state = 245, .external_lex_state = 6}, [4733] = {.lex_state = 215, .external_lex_state = 6}, - [4734] = {.lex_state = 242, .external_lex_state = 6}, - [4735] = {.lex_state = 242, .external_lex_state = 6}, - [4736] = {.lex_state = 242, .external_lex_state = 6}, - [4737] = {.lex_state = 242, .external_lex_state = 6}, - [4738] = {.lex_state = 262, .external_lex_state = 6}, - [4739] = {.lex_state = 242, .external_lex_state = 6}, - [4740] = {.lex_state = 245, .external_lex_state = 6}, - [4741] = {.lex_state = 261, .external_lex_state = 6}, - [4742] = {.lex_state = 242, .external_lex_state = 6}, - [4743] = {.lex_state = 242, .external_lex_state = 6}, - [4744] = {.lex_state = 242, .external_lex_state = 6}, - [4745] = {.lex_state = 262, .external_lex_state = 6}, - [4746] = {.lex_state = 262, .external_lex_state = 6}, - [4747] = {.lex_state = 245, .external_lex_state = 6}, - [4748] = {.lex_state = 245, .external_lex_state = 6}, - [4749] = {.lex_state = 262, .external_lex_state = 6}, - [4750] = {.lex_state = 215, .external_lex_state = 6}, - [4751] = {.lex_state = 242, .external_lex_state = 6}, - [4752] = {.lex_state = 262, .external_lex_state = 5}, - [4753] = {.lex_state = 245, .external_lex_state = 6}, - [4754] = {.lex_state = 245, .external_lex_state = 6}, + [4734] = {.lex_state = 245, .external_lex_state = 6}, + [4735] = {.lex_state = 245, .external_lex_state = 6}, + [4736] = {.lex_state = 262, .external_lex_state = 6}, + [4737] = {.lex_state = 261, .external_lex_state = 6}, + [4738] = {.lex_state = 262, .external_lex_state = 5}, + [4739] = {.lex_state = 261, .external_lex_state = 6}, + [4740] = {.lex_state = 247, .external_lex_state = 6}, + [4741] = {.lex_state = 215, .external_lex_state = 6}, + [4742] = {.lex_state = 261, .external_lex_state = 6}, + [4743] = {.lex_state = 246, .external_lex_state = 6}, + [4744] = {.lex_state = 245, .external_lex_state = 6}, + [4745] = {.lex_state = 245, .external_lex_state = 6}, + [4746] = {.lex_state = 261, .external_lex_state = 6}, + [4747] = {.lex_state = 261, .external_lex_state = 6}, + [4748] = {.lex_state = 261, .external_lex_state = 6}, + [4749] = {.lex_state = 245, .external_lex_state = 6}, + [4750] = {.lex_state = 261, .external_lex_state = 6}, + [4751] = {.lex_state = 261, .external_lex_state = 6}, + [4752] = {.lex_state = 247, .external_lex_state = 6}, + [4753] = {.lex_state = 261, .external_lex_state = 6}, + [4754] = {.lex_state = 261, .external_lex_state = 6}, [4755] = {.lex_state = 261, .external_lex_state = 6}, [4756] = {.lex_state = 261, .external_lex_state = 6}, - [4757] = {.lex_state = 245, .external_lex_state = 6}, - [4758] = {.lex_state = 245, .external_lex_state = 6}, - [4759] = {.lex_state = 245, .external_lex_state = 6}, - [4760] = {.lex_state = 261, .external_lex_state = 6}, - [4761] = {.lex_state = 214, .external_lex_state = 6}, - [4762] = {.lex_state = 262, .external_lex_state = 6}, - [4763] = {.lex_state = 214, .external_lex_state = 6}, - [4764] = {.lex_state = 214, .external_lex_state = 6}, - [4765] = {.lex_state = 248, .external_lex_state = 6}, - [4766] = {.lex_state = 261, .external_lex_state = 6}, - [4767] = {.lex_state = 214, .external_lex_state = 6}, - [4768] = {.lex_state = 261, .external_lex_state = 6}, - [4769] = {.lex_state = 245, .external_lex_state = 6}, - [4770] = {.lex_state = 245, .external_lex_state = 6}, - [4771] = {.lex_state = 245, .external_lex_state = 6}, - [4772] = {.lex_state = 245, .external_lex_state = 6}, - [4773] = {.lex_state = 261, .external_lex_state = 6}, + [4757] = {.lex_state = 261, .external_lex_state = 6}, + [4758] = {.lex_state = 261, .external_lex_state = 6}, + [4759] = {.lex_state = 261, .external_lex_state = 6}, + [4760] = {.lex_state = 246, .external_lex_state = 6}, + [4761] = {.lex_state = 248, .external_lex_state = 6}, + [4762] = {.lex_state = 248, .external_lex_state = 6}, + [4763] = {.lex_state = 242, .external_lex_state = 6}, + [4764] = {.lex_state = 242, .external_lex_state = 6}, + [4765] = {.lex_state = 245, .external_lex_state = 6}, + [4766] = {.lex_state = 262, .external_lex_state = 6}, + [4767] = {.lex_state = 262, .external_lex_state = 6}, + [4768] = {.lex_state = 262, .external_lex_state = 6}, + [4769] = {.lex_state = 248, .external_lex_state = 6}, + [4770] = {.lex_state = 247, .external_lex_state = 6}, + [4771] = {.lex_state = 242, .external_lex_state = 6}, + [4772] = {.lex_state = 242, .external_lex_state = 6}, + [4773] = {.lex_state = 247, .external_lex_state = 6}, [4774] = {.lex_state = 247, .external_lex_state = 6}, - [4775] = {.lex_state = 245, .external_lex_state = 6}, - [4776] = {.lex_state = 242, .external_lex_state = 6}, - [4777] = {.lex_state = 247, .external_lex_state = 6}, - [4778] = {.lex_state = 247, .external_lex_state = 6}, + [4775] = {.lex_state = 214, .external_lex_state = 6}, + [4776] = {.lex_state = 262, .external_lex_state = 6}, + [4777] = {.lex_state = 245, .external_lex_state = 6}, + [4778] = {.lex_state = 245, .external_lex_state = 6}, [4779] = {.lex_state = 247, .external_lex_state = 6}, - [4780] = {.lex_state = 247, .external_lex_state = 6}, - [4781] = {.lex_state = 214, .external_lex_state = 6}, - [4782] = {.lex_state = 262, .external_lex_state = 6}, - [4783] = {.lex_state = 246, .external_lex_state = 6}, - [4784] = {.lex_state = 246, .external_lex_state = 6}, - [4785] = {.lex_state = 242, .external_lex_state = 6}, - [4786] = {.lex_state = 242, .external_lex_state = 6}, - [4787] = {.lex_state = 242, .external_lex_state = 6}, + [4780] = {.lex_state = 245, .external_lex_state = 6}, + [4781] = {.lex_state = 247, .external_lex_state = 6}, + [4782] = {.lex_state = 247, .external_lex_state = 6}, + [4783] = {.lex_state = 247, .external_lex_state = 6}, + [4784] = {.lex_state = 247, .external_lex_state = 6}, + [4785] = {.lex_state = 247, .external_lex_state = 6}, + [4786] = {.lex_state = 262, .external_lex_state = 6}, + [4787] = {.lex_state = 214, .external_lex_state = 6}, [4788] = {.lex_state = 262, .external_lex_state = 6}, - [4789] = {.lex_state = 242, .external_lex_state = 6}, - [4790] = {.lex_state = 248, .external_lex_state = 6}, - [4791] = {.lex_state = 242, .external_lex_state = 6}, - [4792] = {.lex_state = 262, .external_lex_state = 6}, - [4793] = {.lex_state = 242, .external_lex_state = 6}, - [4794] = {.lex_state = 242, .external_lex_state = 6}, - [4795] = {.lex_state = 242, .external_lex_state = 6}, - [4796] = {.lex_state = 242, .external_lex_state = 6}, - [4797] = {.lex_state = 248, .external_lex_state = 6}, - [4798] = {.lex_state = 248, .external_lex_state = 6}, - [4799] = {.lex_state = 245, .external_lex_state = 6}, - [4800] = {.lex_state = 242, .external_lex_state = 6}, - [4801] = {.lex_state = 242, .external_lex_state = 6}, - [4802] = {.lex_state = 246, .external_lex_state = 6}, - [4803] = {.lex_state = 248, .external_lex_state = 6}, - [4804] = {.lex_state = 242, .external_lex_state = 6}, - [4805] = {.lex_state = 242, .external_lex_state = 6}, - [4806] = {.lex_state = 214, .external_lex_state = 6}, - [4807] = {.lex_state = 262, .external_lex_state = 6}, - [4808] = {.lex_state = 262, .external_lex_state = 6}, - [4809] = {.lex_state = 246, .external_lex_state = 6}, - [4810] = {.lex_state = 242, .external_lex_state = 6}, - [4811] = {.lex_state = 242, .external_lex_state = 6}, - [4812] = {.lex_state = 214, .external_lex_state = 6}, - [4813] = {.lex_state = 242, .external_lex_state = 6}, - [4814] = {.lex_state = 242, .external_lex_state = 6}, - [4815] = {.lex_state = 214, .external_lex_state = 6}, - [4816] = {.lex_state = 242, .external_lex_state = 6}, - [4817] = {.lex_state = 214, .external_lex_state = 6}, - [4818] = {.lex_state = 214, .external_lex_state = 6}, - [4819] = {.lex_state = 214, .external_lex_state = 6}, - [4820] = {.lex_state = 242, .external_lex_state = 6}, - [4821] = {.lex_state = 247, .external_lex_state = 6}, - [4822] = {.lex_state = 214, .external_lex_state = 6}, - [4823] = {.lex_state = 214, .external_lex_state = 6}, - [4824] = {.lex_state = 214, .external_lex_state = 6}, - [4825] = {.lex_state = 214, .external_lex_state = 6}, - [4826] = {.lex_state = 262, .external_lex_state = 5}, + [4789] = {.lex_state = 247, .external_lex_state = 6}, + [4790] = {.lex_state = 247, .external_lex_state = 6}, + [4791] = {.lex_state = 214, .external_lex_state = 6}, + [4792] = {.lex_state = 214, .external_lex_state = 6}, + [4793] = {.lex_state = 247, .external_lex_state = 6}, + [4794] = {.lex_state = 247, .external_lex_state = 6}, + [4795] = {.lex_state = 214, .external_lex_state = 6}, + [4796] = {.lex_state = 247, .external_lex_state = 6}, + [4797] = {.lex_state = 247, .external_lex_state = 6}, + [4798] = {.lex_state = 245, .external_lex_state = 6}, + [4799] = {.lex_state = 248, .external_lex_state = 6}, + [4800] = {.lex_state = 247, .external_lex_state = 6}, + [4801] = {.lex_state = 247, .external_lex_state = 6}, + [4802] = {.lex_state = 245, .external_lex_state = 6}, + [4803] = {.lex_state = 247, .external_lex_state = 6}, + [4804] = {.lex_state = 247, .external_lex_state = 6}, + [4805] = {.lex_state = 247, .external_lex_state = 6}, + [4806] = {.lex_state = 247, .external_lex_state = 6}, + [4807] = {.lex_state = 246, .external_lex_state = 6}, + [4808] = {.lex_state = 246, .external_lex_state = 6}, + [4809] = {.lex_state = 248, .external_lex_state = 6}, + [4810] = {.lex_state = 248, .external_lex_state = 6}, + [4811] = {.lex_state = 214, .external_lex_state = 6}, + [4812] = {.lex_state = 248, .external_lex_state = 6}, + [4813] = {.lex_state = 248, .external_lex_state = 6}, + [4814] = {.lex_state = 248, .external_lex_state = 6}, + [4815] = {.lex_state = 248, .external_lex_state = 6}, + [4816] = {.lex_state = 246, .external_lex_state = 6}, + [4817] = {.lex_state = 262, .external_lex_state = 6}, + [4818] = {.lex_state = 247, .external_lex_state = 6}, + [4819] = {.lex_state = 246, .external_lex_state = 6}, + [4820] = {.lex_state = 246, .external_lex_state = 6}, + [4821] = {.lex_state = 248, .external_lex_state = 6}, + [4822] = {.lex_state = 248, .external_lex_state = 6}, + [4823] = {.lex_state = 246, .external_lex_state = 6}, + [4824] = {.lex_state = 245, .external_lex_state = 6}, + [4825] = {.lex_state = 248, .external_lex_state = 6}, + [4826] = {.lex_state = 248, .external_lex_state = 6}, [4827] = {.lex_state = 248, .external_lex_state = 6}, - [4828] = {.lex_state = 242, .external_lex_state = 6}, - [4829] = {.lex_state = 214, .external_lex_state = 6}, - [4830] = {.lex_state = 247, .external_lex_state = 6}, + [4828] = {.lex_state = 248, .external_lex_state = 6}, + [4829] = {.lex_state = 246, .external_lex_state = 6}, + [4830] = {.lex_state = 245, .external_lex_state = 6}, [4831] = {.lex_state = 248, .external_lex_state = 6}, - [4832] = {.lex_state = 214, .external_lex_state = 6}, - [4833] = {.lex_state = 245, .external_lex_state = 6}, - [4834] = {.lex_state = 245, .external_lex_state = 6}, + [4832] = {.lex_state = 248, .external_lex_state = 6}, + [4833] = {.lex_state = 248, .external_lex_state = 6}, + [4834] = {.lex_state = 248, .external_lex_state = 6}, [4835] = {.lex_state = 248, .external_lex_state = 6}, - [4836] = {.lex_state = 214, .external_lex_state = 6}, - [4837] = {.lex_state = 214, .external_lex_state = 6}, - [4838] = {.lex_state = 245, .external_lex_state = 6}, - [4839] = {.lex_state = 245, .external_lex_state = 6}, - [4840] = {.lex_state = 245, .external_lex_state = 6}, - [4841] = {.lex_state = 245, .external_lex_state = 6}, - [4842] = {.lex_state = 245, .external_lex_state = 6}, - [4843] = {.lex_state = 245, .external_lex_state = 6}, + [4836] = {.lex_state = 248, .external_lex_state = 6}, + [4837] = {.lex_state = 246, .external_lex_state = 6}, + [4838] = {.lex_state = 248, .external_lex_state = 6}, + [4839] = {.lex_state = 246, .external_lex_state = 6}, + [4840] = {.lex_state = 246, .external_lex_state = 6}, + [4841] = {.lex_state = 214, .external_lex_state = 6}, + [4842] = {.lex_state = 214, .external_lex_state = 6}, + [4843] = {.lex_state = 247, .external_lex_state = 6}, [4844] = {.lex_state = 214, .external_lex_state = 6}, - [4845] = {.lex_state = 245, .external_lex_state = 6}, - [4846] = {.lex_state = 245, .external_lex_state = 6}, - [4847] = {.lex_state = 245, .external_lex_state = 6}, - [4848] = {.lex_state = 248, .external_lex_state = 6}, - [4849] = {.lex_state = 248, .external_lex_state = 6}, - [4850] = {.lex_state = 245, .external_lex_state = 6}, - [4851] = {.lex_state = 245, .external_lex_state = 6}, - [4852] = {.lex_state = 245, .external_lex_state = 6}, - [4853] = {.lex_state = 245, .external_lex_state = 6}, - [4854] = {.lex_state = 248, .external_lex_state = 6}, - [4855] = {.lex_state = 248, .external_lex_state = 6}, - [4856] = {.lex_state = 248, .external_lex_state = 6}, - [4857] = {.lex_state = 248, .external_lex_state = 6}, - [4858] = {.lex_state = 248, .external_lex_state = 6}, - [4859] = {.lex_state = 248, .external_lex_state = 6}, - [4860] = {.lex_state = 248, .external_lex_state = 6}, - [4861] = {.lex_state = 214, .external_lex_state = 6}, + [4845] = {.lex_state = 247, .external_lex_state = 6}, + [4846] = {.lex_state = 214, .external_lex_state = 6}, + [4847] = {.lex_state = 248, .external_lex_state = 6}, + [4848] = {.lex_state = 246, .external_lex_state = 6}, + [4849] = {.lex_state = 246, .external_lex_state = 6}, + [4850] = {.lex_state = 246, .external_lex_state = 6}, + [4851] = {.lex_state = 246, .external_lex_state = 6}, + [4852] = {.lex_state = 247, .external_lex_state = 6}, + [4853] = {.lex_state = 247, .external_lex_state = 6}, + [4854] = {.lex_state = 246, .external_lex_state = 6}, + [4855] = {.lex_state = 247, .external_lex_state = 6}, + [4856] = {.lex_state = 214, .external_lex_state = 6}, + [4857] = {.lex_state = 246, .external_lex_state = 6}, + [4858] = {.lex_state = 214, .external_lex_state = 6}, + [4859] = {.lex_state = 214, .external_lex_state = 6}, + [4860] = {.lex_state = 246, .external_lex_state = 6}, + [4861] = {.lex_state = 246, .external_lex_state = 6}, [4862] = {.lex_state = 214, .external_lex_state = 6}, [4863] = {.lex_state = 246, .external_lex_state = 6}, [4864] = {.lex_state = 214, .external_lex_state = 6}, - [4865] = {.lex_state = 214, .external_lex_state = 6}, - [4866] = {.lex_state = 246, .external_lex_state = 6}, - [4867] = {.lex_state = 214, .external_lex_state = 6}, - [4868] = {.lex_state = 214, .external_lex_state = 6}, - [4869] = {.lex_state = 245, .external_lex_state = 6}, - [4870] = {.lex_state = 248, .external_lex_state = 6}, - [4871] = {.lex_state = 262, .external_lex_state = 6}, - [4872] = {.lex_state = 248, .external_lex_state = 6}, - [4873] = {.lex_state = 245, .external_lex_state = 6}, - [4874] = {.lex_state = 245, .external_lex_state = 6}, - [4875] = {.lex_state = 262, .external_lex_state = 6}, - [4876] = {.lex_state = 262, .external_lex_state = 6}, - [4877] = {.lex_state = 247, .external_lex_state = 6}, - [4878] = {.lex_state = 247, .external_lex_state = 6}, - [4879] = {.lex_state = 214, .external_lex_state = 6}, - [4880] = {.lex_state = 214, .external_lex_state = 6}, - [4881] = {.lex_state = 248, .external_lex_state = 6}, - [4882] = {.lex_state = 214, .external_lex_state = 6}, - [4883] = {.lex_state = 247, .external_lex_state = 6}, - [4884] = {.lex_state = 247, .external_lex_state = 6}, - [4885] = {.lex_state = 246, .external_lex_state = 6}, - [4886] = {.lex_state = 247, .external_lex_state = 6}, - [4887] = {.lex_state = 247, .external_lex_state = 6}, - [4888] = {.lex_state = 247, .external_lex_state = 6}, - [4889] = {.lex_state = 262, .external_lex_state = 6}, - [4890] = {.lex_state = 247, .external_lex_state = 6}, - [4891] = {.lex_state = 247, .external_lex_state = 6}, - [4892] = {.lex_state = 262, .external_lex_state = 6}, - [4893] = {.lex_state = 247, .external_lex_state = 6}, - [4894] = {.lex_state = 247, .external_lex_state = 6}, - [4895] = {.lex_state = 247, .external_lex_state = 6}, - [4896] = {.lex_state = 247, .external_lex_state = 6}, - [4897] = {.lex_state = 245, .external_lex_state = 6}, - [4898] = {.lex_state = 245, .external_lex_state = 6}, - [4899] = {.lex_state = 245, .external_lex_state = 6}, - [4900] = {.lex_state = 246, .external_lex_state = 6}, - [4901] = {.lex_state = 245, .external_lex_state = 6}, - [4902] = {.lex_state = 245, .external_lex_state = 6}, - [4903] = {.lex_state = 245, .external_lex_state = 6}, - [4904] = {.lex_state = 245, .external_lex_state = 6}, - [4905] = {.lex_state = 247, .external_lex_state = 6}, - [4906] = {.lex_state = 246, .external_lex_state = 6}, - [4907] = {.lex_state = 247, .external_lex_state = 6}, - [4908] = {.lex_state = 247, .external_lex_state = 6}, - [4909] = {.lex_state = 247, .external_lex_state = 6}, - [4910] = {.lex_state = 247, .external_lex_state = 6}, - [4911] = {.lex_state = 247, .external_lex_state = 6}, - [4912] = {.lex_state = 246, .external_lex_state = 6}, - [4913] = {.lex_state = 214, .external_lex_state = 6}, - [4914] = {.lex_state = 248, .external_lex_state = 6}, - [4915] = {.lex_state = 246, .external_lex_state = 6}, - [4916] = {.lex_state = 246, .external_lex_state = 6}, - [4917] = {.lex_state = 246, .external_lex_state = 6}, - [4918] = {.lex_state = 248, .external_lex_state = 6}, - [4919] = {.lex_state = 248, .external_lex_state = 6}, - [4920] = {.lex_state = 246, .external_lex_state = 6}, - [4921] = {.lex_state = 248, .external_lex_state = 6}, - [4922] = {.lex_state = 247, .external_lex_state = 6}, - [4923] = {.lex_state = 247, .external_lex_state = 6}, - [4924] = {.lex_state = 248, .external_lex_state = 6}, - [4925] = {.lex_state = 246, .external_lex_state = 6}, - [4926] = {.lex_state = 248, .external_lex_state = 6}, - [4927] = {.lex_state = 247, .external_lex_state = 6}, - [4928] = {.lex_state = 247, .external_lex_state = 6}, + [4865] = {.lex_state = 246, .external_lex_state = 6}, + [4866] = {.lex_state = 214, .external_lex_state = 6}, + [4867] = {.lex_state = 245, .external_lex_state = 6}, + [4868] = {.lex_state = 242, .external_lex_state = 6}, + [4869] = {.lex_state = 246, .external_lex_state = 6}, + [4870] = {.lex_state = 246, .external_lex_state = 6}, + [4871] = {.lex_state = 245, .external_lex_state = 6}, + [4872] = {.lex_state = 245, .external_lex_state = 6}, + [4873] = {.lex_state = 246, .external_lex_state = 6}, + [4874] = {.lex_state = 246, .external_lex_state = 6}, + [4875] = {.lex_state = 245, .external_lex_state = 6}, + [4876] = {.lex_state = 246, .external_lex_state = 6}, + [4877] = {.lex_state = 246, .external_lex_state = 6}, + [4878] = {.lex_state = 246, .external_lex_state = 6}, + [4879] = {.lex_state = 246, .external_lex_state = 6}, + [4880] = {.lex_state = 246, .external_lex_state = 6}, + [4881] = {.lex_state = 246, .external_lex_state = 6}, + [4882] = {.lex_state = 246, .external_lex_state = 6}, + [4883] = {.lex_state = 248, .external_lex_state = 6}, + [4884] = {.lex_state = 246, .external_lex_state = 6}, + [4885] = {.lex_state = 248, .external_lex_state = 6}, + [4886] = {.lex_state = 248, .external_lex_state = 6}, + [4887] = {.lex_state = 248, .external_lex_state = 6}, + [4888] = {.lex_state = 246, .external_lex_state = 6}, + [4889] = {.lex_state = 246, .external_lex_state = 6}, + [4890] = {.lex_state = 246, .external_lex_state = 6}, + [4891] = {.lex_state = 246, .external_lex_state = 6}, + [4892] = {.lex_state = 246, .external_lex_state = 6}, + [4893] = {.lex_state = 214, .external_lex_state = 6}, + [4894] = {.lex_state = 248, .external_lex_state = 6}, + [4895] = {.lex_state = 242, .external_lex_state = 6}, + [4896] = {.lex_state = 242, .external_lex_state = 6}, + [4897] = {.lex_state = 242, .external_lex_state = 6}, + [4898] = {.lex_state = 242, .external_lex_state = 6}, + [4899] = {.lex_state = 242, .external_lex_state = 6}, + [4900] = {.lex_state = 262, .external_lex_state = 6}, + [4901] = {.lex_state = 214, .external_lex_state = 6}, + [4902] = {.lex_state = 248, .external_lex_state = 6}, + [4903] = {.lex_state = 242, .external_lex_state = 6}, + [4904] = {.lex_state = 242, .external_lex_state = 6}, + [4905] = {.lex_state = 242, .external_lex_state = 6}, + [4906] = {.lex_state = 242, .external_lex_state = 6}, + [4907] = {.lex_state = 245, .external_lex_state = 6}, + [4908] = {.lex_state = 245, .external_lex_state = 6}, + [4909] = {.lex_state = 214, .external_lex_state = 6}, + [4910] = {.lex_state = 245, .external_lex_state = 6}, + [4911] = {.lex_state = 245, .external_lex_state = 6}, + [4912] = {.lex_state = 245, .external_lex_state = 6}, + [4913] = {.lex_state = 247, .external_lex_state = 6}, + [4914] = {.lex_state = 214, .external_lex_state = 6}, + [4915] = {.lex_state = 247, .external_lex_state = 6}, + [4916] = {.lex_state = 245, .external_lex_state = 6}, + [4917] = {.lex_state = 242, .external_lex_state = 6}, + [4918] = {.lex_state = 242, .external_lex_state = 6}, + [4919] = {.lex_state = 242, .external_lex_state = 6}, + [4920] = {.lex_state = 242, .external_lex_state = 6}, + [4921] = {.lex_state = 242, .external_lex_state = 6}, + [4922] = {.lex_state = 242, .external_lex_state = 6}, + [4923] = {.lex_state = 242, .external_lex_state = 6}, + [4924] = {.lex_state = 262, .external_lex_state = 6}, + [4925] = {.lex_state = 242, .external_lex_state = 6}, + [4926] = {.lex_state = 242, .external_lex_state = 6}, + [4927] = {.lex_state = 242, .external_lex_state = 6}, + [4928] = {.lex_state = 242, .external_lex_state = 6}, [4929] = {.lex_state = 242, .external_lex_state = 6}, - [4930] = {.lex_state = 246, .external_lex_state = 6}, - [4931] = {.lex_state = 247, .external_lex_state = 6}, - [4932] = {.lex_state = 247, .external_lex_state = 6}, - [4933] = {.lex_state = 246, .external_lex_state = 6}, - [4934] = {.lex_state = 246, .external_lex_state = 6}, - [4935] = {.lex_state = 246, .external_lex_state = 6}, - [4936] = {.lex_state = 246, .external_lex_state = 6}, - [4937] = {.lex_state = 242, .external_lex_state = 6}, - [4938] = {.lex_state = 242, .external_lex_state = 6}, - [4939] = {.lex_state = 246, .external_lex_state = 6}, - [4940] = {.lex_state = 247, .external_lex_state = 6}, - [4941] = {.lex_state = 247, .external_lex_state = 6}, - [4942] = {.lex_state = 242, .external_lex_state = 6}, - [4943] = {.lex_state = 247, .external_lex_state = 6}, - [4944] = {.lex_state = 246, .external_lex_state = 6}, - [4945] = {.lex_state = 242, .external_lex_state = 6}, - [4946] = {.lex_state = 242, .external_lex_state = 6}, - [4947] = {.lex_state = 246, .external_lex_state = 6}, - [4948] = {.lex_state = 246, .external_lex_state = 6}, - [4949] = {.lex_state = 245, .external_lex_state = 6}, - [4950] = {.lex_state = 246, .external_lex_state = 6}, - [4951] = {.lex_state = 246, .external_lex_state = 6}, - [4952] = {.lex_state = 242, .external_lex_state = 6}, + [4930] = {.lex_state = 242, .external_lex_state = 6}, + [4931] = {.lex_state = 242, .external_lex_state = 6}, + [4932] = {.lex_state = 242, .external_lex_state = 6}, + [4933] = {.lex_state = 242, .external_lex_state = 6}, + [4934] = {.lex_state = 262, .external_lex_state = 6}, + [4935] = {.lex_state = 248, .external_lex_state = 6}, + [4936] = {.lex_state = 247, .external_lex_state = 6}, + [4937] = {.lex_state = 247, .external_lex_state = 6}, + [4938] = {.lex_state = 247, .external_lex_state = 6}, + [4939] = {.lex_state = 245, .external_lex_state = 6}, + [4940] = {.lex_state = 262, .external_lex_state = 6}, + [4941] = {.lex_state = 245, .external_lex_state = 6}, + [4942] = {.lex_state = 245, .external_lex_state = 6}, + [4943] = {.lex_state = 245, .external_lex_state = 6}, + [4944] = {.lex_state = 214, .external_lex_state = 6}, + [4945] = {.lex_state = 248, .external_lex_state = 6}, + [4946] = {.lex_state = 248, .external_lex_state = 6}, + [4947] = {.lex_state = 214, .external_lex_state = 6}, + [4948] = {.lex_state = 247, .external_lex_state = 6}, + [4949] = {.lex_state = 247, .external_lex_state = 6}, + [4950] = {.lex_state = 242, .external_lex_state = 6}, + [4951] = {.lex_state = 247, .external_lex_state = 6}, + [4952] = {.lex_state = 214, .external_lex_state = 6}, [4953] = {.lex_state = 246, .external_lex_state = 6}, - [4954] = {.lex_state = 247, .external_lex_state = 6}, - [4955] = {.lex_state = 246, .external_lex_state = 6}, - [4956] = {.lex_state = 214, .external_lex_state = 6}, - [4957] = {.lex_state = 246, .external_lex_state = 6}, - [4958] = {.lex_state = 246, .external_lex_state = 6}, - [4959] = {.lex_state = 262, .external_lex_state = 6}, - [4960] = {.lex_state = 246, .external_lex_state = 6}, - [4961] = {.lex_state = 247, .external_lex_state = 6}, - [4962] = {.lex_state = 248, .external_lex_state = 6}, - [4963] = {.lex_state = 262, .external_lex_state = 6}, - [4964] = {.lex_state = 246, .external_lex_state = 6}, - [4965] = {.lex_state = 246, .external_lex_state = 6}, - [4966] = {.lex_state = 246, .external_lex_state = 6}, - [4967] = {.lex_state = 247, .external_lex_state = 6}, - [4968] = {.lex_state = 245, .external_lex_state = 6}, - [4969] = {.lex_state = 247, .external_lex_state = 6}, - [4970] = {.lex_state = 247, .external_lex_state = 6}, - [4971] = {.lex_state = 247, .external_lex_state = 6}, - [4972] = {.lex_state = 245, .external_lex_state = 6}, - [4973] = {.lex_state = 214, .external_lex_state = 6}, - [4974] = {.lex_state = 262, .external_lex_state = 6}, - [4975] = {.lex_state = 214, .external_lex_state = 6}, - [4976] = {.lex_state = 214, .external_lex_state = 6}, - [4977] = {.lex_state = 262, .external_lex_state = 6}, - [4978] = {.lex_state = 214, .external_lex_state = 6}, - [4979] = {.lex_state = 214, .external_lex_state = 6}, - [4980] = {.lex_state = 246, .external_lex_state = 6}, - [4981] = {.lex_state = 214, .external_lex_state = 6}, - [4982] = {.lex_state = 214, .external_lex_state = 6}, - [4983] = {.lex_state = 245, .external_lex_state = 6}, - [4984] = {.lex_state = 248, .external_lex_state = 6}, - [4985] = {.lex_state = 248, .external_lex_state = 6}, - [4986] = {.lex_state = 248, .external_lex_state = 6}, - [4987] = {.lex_state = 248, .external_lex_state = 6}, - [4988] = {.lex_state = 248, .external_lex_state = 6}, - [4989] = {.lex_state = 248, .external_lex_state = 6}, - [4990] = {.lex_state = 245, .external_lex_state = 6}, - [4991] = {.lex_state = 248, .external_lex_state = 6}, - [4992] = {.lex_state = 248, .external_lex_state = 6}, - [4993] = {.lex_state = 248, .external_lex_state = 6}, - [4994] = {.lex_state = 248, .external_lex_state = 6}, - [4995] = {.lex_state = 246, .external_lex_state = 6}, - [4996] = {.lex_state = 245, .external_lex_state = 6}, - [4997] = {.lex_state = 248, .external_lex_state = 6}, - [4998] = {.lex_state = 248, .external_lex_state = 6}, - [4999] = {.lex_state = 248, .external_lex_state = 6}, - [5000] = {.lex_state = 248, .external_lex_state = 6}, - [5001] = {.lex_state = 248, .external_lex_state = 6}, - [5002] = {.lex_state = 248, .external_lex_state = 6}, - [5003] = {.lex_state = 248, .external_lex_state = 6}, - [5004] = {.lex_state = 248, .external_lex_state = 6}, - [5005] = {.lex_state = 242, .external_lex_state = 6}, - [5006] = {.lex_state = 242, .external_lex_state = 6}, - [5007] = {.lex_state = 245, .external_lex_state = 6}, - [5008] = {.lex_state = 245, .external_lex_state = 6}, - [5009] = {.lex_state = 246, .external_lex_state = 6}, - [5010] = {.lex_state = 214, .external_lex_state = 6}, - [5011] = {.lex_state = 242, .external_lex_state = 6}, - [5012] = {.lex_state = 242, .external_lex_state = 6}, - [5013] = {.lex_state = 242, .external_lex_state = 6}, - [5014] = {.lex_state = 242, .external_lex_state = 6}, + [4954] = {.lex_state = 262, .external_lex_state = 6}, + [4955] = {.lex_state = 242, .external_lex_state = 6}, + [4956] = {.lex_state = 247, .external_lex_state = 6}, + [4957] = {.lex_state = 245, .external_lex_state = 6}, + [4958] = {.lex_state = 242, .external_lex_state = 6}, + [4959] = {.lex_state = 242, .external_lex_state = 6}, + [4960] = {.lex_state = 242, .external_lex_state = 6}, + [4961] = {.lex_state = 242, .external_lex_state = 6}, + [4962] = {.lex_state = 242, .external_lex_state = 6}, + [4963] = {.lex_state = 242, .external_lex_state = 6}, + [4964] = {.lex_state = 247, .external_lex_state = 6}, + [4965] = {.lex_state = 262, .external_lex_state = 6}, + [4966] = {.lex_state = 214, .external_lex_state = 6}, + [4967] = {.lex_state = 262, .external_lex_state = 6}, + [4968] = {.lex_state = 214, .external_lex_state = 6}, + [4969] = {.lex_state = 214, .external_lex_state = 6}, + [4970] = {.lex_state = 214, .external_lex_state = 6}, + [4971] = {.lex_state = 246, .external_lex_state = 6}, + [4972] = {.lex_state = 248, .external_lex_state = 6}, + [4973] = {.lex_state = 247, .external_lex_state = 6}, + [4974] = {.lex_state = 245, .external_lex_state = 6}, + [4975] = {.lex_state = 248, .external_lex_state = 6}, + [4976] = {.lex_state = 245, .external_lex_state = 6}, + [4977] = {.lex_state = 248, .external_lex_state = 6}, + [4978] = {.lex_state = 248, .external_lex_state = 6}, + [4979] = {.lex_state = 248, .external_lex_state = 6}, + [4980] = {.lex_state = 248, .external_lex_state = 6}, + [4981] = {.lex_state = 248, .external_lex_state = 6}, + [4982] = {.lex_state = 242, .external_lex_state = 6}, + [4983] = {.lex_state = 242, .external_lex_state = 6}, + [4984] = {.lex_state = 242, .external_lex_state = 6}, + [4985] = {.lex_state = 242, .external_lex_state = 6}, + [4986] = {.lex_state = 242, .external_lex_state = 6}, + [4987] = {.lex_state = 242, .external_lex_state = 6}, + [4988] = {.lex_state = 242, .external_lex_state = 6}, + [4989] = {.lex_state = 214, .external_lex_state = 6}, + [4990] = {.lex_state = 214, .external_lex_state = 6}, + [4991] = {.lex_state = 242, .external_lex_state = 6}, + [4992] = {.lex_state = 242, .external_lex_state = 6}, + [4993] = {.lex_state = 245, .external_lex_state = 6}, + [4994] = {.lex_state = 242, .external_lex_state = 6}, + [4995] = {.lex_state = 214, .external_lex_state = 6}, + [4996] = {.lex_state = 214, .external_lex_state = 6}, + [4997] = {.lex_state = 262, .external_lex_state = 5}, + [4998] = {.lex_state = 214, .external_lex_state = 6}, + [4999] = {.lex_state = 214, .external_lex_state = 6}, + [5000] = {.lex_state = 245, .external_lex_state = 6}, + [5001] = {.lex_state = 214, .external_lex_state = 6}, + [5002] = {.lex_state = 245, .external_lex_state = 6}, + [5003] = {.lex_state = 245, .external_lex_state = 6}, + [5004] = {.lex_state = 242, .external_lex_state = 6}, + [5005] = {.lex_state = 262, .external_lex_state = 6}, + [5006] = {.lex_state = 245, .external_lex_state = 6}, + [5007] = {.lex_state = 248, .external_lex_state = 6}, + [5008] = {.lex_state = 214, .external_lex_state = 6}, + [5009] = {.lex_state = 245, .external_lex_state = 6}, + [5010] = {.lex_state = 245, .external_lex_state = 6}, + [5011] = {.lex_state = 245, .external_lex_state = 6}, + [5012] = {.lex_state = 245, .external_lex_state = 6}, + [5013] = {.lex_state = 245, .external_lex_state = 6}, + [5014] = {.lex_state = 262, .external_lex_state = 6}, [5015] = {.lex_state = 214, .external_lex_state = 6}, [5016] = {.lex_state = 214, .external_lex_state = 6}, - [5017] = {.lex_state = 214, .external_lex_state = 6}, - [5018] = {.lex_state = 245, .external_lex_state = 6}, - [5019] = {.lex_state = 246, .external_lex_state = 6}, - [5020] = {.lex_state = 242, .external_lex_state = 6}, - [5021] = {.lex_state = 242, .external_lex_state = 6}, + [5017] = {.lex_state = 247, .external_lex_state = 6}, + [5018] = {.lex_state = 262, .external_lex_state = 6}, + [5019] = {.lex_state = 245, .external_lex_state = 6}, + [5020] = {.lex_state = 245, .external_lex_state = 6}, + [5021] = {.lex_state = 245, .external_lex_state = 6}, [5022] = {.lex_state = 242, .external_lex_state = 6}, - [5023] = {.lex_state = 242, .external_lex_state = 6}, - [5024] = {.lex_state = 242, .external_lex_state = 6}, - [5025] = {.lex_state = 242, .external_lex_state = 6}, - [5026] = {.lex_state = 246, .external_lex_state = 6}, - [5027] = {.lex_state = 245, .external_lex_state = 6}, - [5028] = {.lex_state = 242, .external_lex_state = 6}, - [5029] = {.lex_state = 246, .external_lex_state = 6}, - [5030] = {.lex_state = 242, .external_lex_state = 6}, - [5031] = {.lex_state = 246, .external_lex_state = 6}, - [5032] = {.lex_state = 242, .external_lex_state = 6}, - [5033] = {.lex_state = 245, .external_lex_state = 6}, - [5034] = {.lex_state = 242, .external_lex_state = 6}, - [5035] = {.lex_state = 245, .external_lex_state = 6}, + [5023] = {.lex_state = 245, .external_lex_state = 6}, + [5024] = {.lex_state = 247, .external_lex_state = 6}, + [5025] = {.lex_state = 247, .external_lex_state = 6}, + [5026] = {.lex_state = 247, .external_lex_state = 6}, + [5027] = {.lex_state = 247, .external_lex_state = 6}, + [5028] = {.lex_state = 247, .external_lex_state = 6}, + [5029] = {.lex_state = 247, .external_lex_state = 6}, + [5030] = {.lex_state = 247, .external_lex_state = 6}, + [5031] = {.lex_state = 247, .external_lex_state = 6}, + [5032] = {.lex_state = 247, .external_lex_state = 6}, + [5033] = {.lex_state = 246, .external_lex_state = 6}, + [5034] = {.lex_state = 246, .external_lex_state = 6}, + [5035] = {.lex_state = 246, .external_lex_state = 6}, [5036] = {.lex_state = 246, .external_lex_state = 6}, [5037] = {.lex_state = 246, .external_lex_state = 6}, - [5038] = {.lex_state = 242, .external_lex_state = 6}, - [5039] = {.lex_state = 262, .external_lex_state = 6}, - [5040] = {.lex_state = 246, .external_lex_state = 6}, + [5038] = {.lex_state = 246, .external_lex_state = 6}, + [5039] = {.lex_state = 246, .external_lex_state = 6}, + [5040] = {.lex_state = 214, .external_lex_state = 6}, [5041] = {.lex_state = 214, .external_lex_state = 6}, - [5042] = {.lex_state = 214, .external_lex_state = 6}, - [5043] = {.lex_state = 246, .external_lex_state = 6}, - [5044] = {.lex_state = 245, .external_lex_state = 6}, + [5042] = {.lex_state = 248, .external_lex_state = 6}, + [5043] = {.lex_state = 214, .external_lex_state = 6}, + [5044] = {.lex_state = 248, .external_lex_state = 6}, [5045] = {.lex_state = 248, .external_lex_state = 6}, - [5046] = {.lex_state = 242, .external_lex_state = 6}, - [5047] = {.lex_state = 262, .external_lex_state = 6}, - [5048] = {.lex_state = 262, .external_lex_state = 6}, - [5049] = {.lex_state = 214, .external_lex_state = 6}, - [5050] = {.lex_state = 247, .external_lex_state = 6}, - [5051] = {.lex_state = 214, .external_lex_state = 6}, - [5052] = {.lex_state = 245, .external_lex_state = 6}, - [5053] = {.lex_state = 247, .external_lex_state = 6}, - [5054] = {.lex_state = 247, .external_lex_state = 6}, + [5046] = {.lex_state = 214, .external_lex_state = 6}, + [5047] = {.lex_state = 214, .external_lex_state = 6}, + [5048] = {.lex_state = 214, .external_lex_state = 6}, + [5049] = {.lex_state = 245, .external_lex_state = 6}, + [5050] = {.lex_state = 214, .external_lex_state = 6}, + [5051] = {.lex_state = 262, .external_lex_state = 6}, + [5052] = {.lex_state = 248, .external_lex_state = 6}, + [5053] = {.lex_state = 245, .external_lex_state = 6}, + [5054] = {.lex_state = 245, .external_lex_state = 6}, [5055] = {.lex_state = 245, .external_lex_state = 6}, - [5056] = {.lex_state = 247, .external_lex_state = 6}, - [5057] = {.lex_state = 247, .external_lex_state = 6}, + [5056] = {.lex_state = 248, .external_lex_state = 6}, + [5057] = {.lex_state = 245, .external_lex_state = 6}, [5058] = {.lex_state = 245, .external_lex_state = 6}, - [5059] = {.lex_state = 245, .external_lex_state = 6}, + [5059] = {.lex_state = 262, .external_lex_state = 6}, [5060] = {.lex_state = 245, .external_lex_state = 6}, - [5061] = {.lex_state = 245, .external_lex_state = 6}, - [5062] = {.lex_state = 247, .external_lex_state = 6}, - [5063] = {.lex_state = 246, .external_lex_state = 6}, - [5064] = {.lex_state = 214, .external_lex_state = 6}, - [5065] = {.lex_state = 214, .external_lex_state = 6}, - [5066] = {.lex_state = 248, .external_lex_state = 6}, - [5067] = {.lex_state = 249, .external_lex_state = 6}, + [5061] = {.lex_state = 214, .external_lex_state = 6}, + [5062] = {.lex_state = 248, .external_lex_state = 6}, + [5063] = {.lex_state = 247, .external_lex_state = 6}, + [5064] = {.lex_state = 248, .external_lex_state = 6}, + [5065] = {.lex_state = 248, .external_lex_state = 6}, + [5066] = {.lex_state = 262, .external_lex_state = 6}, + [5067] = {.lex_state = 245, .external_lex_state = 6}, [5068] = {.lex_state = 262, .external_lex_state = 6}, - [5069] = {.lex_state = 262, .external_lex_state = 6}, + [5069] = {.lex_state = 249, .external_lex_state = 6}, [5070] = {.lex_state = 262, .external_lex_state = 6}, [5071] = {.lex_state = 262, .external_lex_state = 6}, [5072] = {.lex_state = 262, .external_lex_state = 6}, [5073] = {.lex_state = 262, .external_lex_state = 6}, - [5074] = {.lex_state = 262, .external_lex_state = 6}, + [5074] = {.lex_state = 249, .external_lex_state = 6}, [5075] = {.lex_state = 262, .external_lex_state = 6}, - [5076] = {.lex_state = 249, .external_lex_state = 6}, + [5076] = {.lex_state = 262, .external_lex_state = 6}, [5077] = {.lex_state = 249, .external_lex_state = 6}, [5078] = {.lex_state = 262, .external_lex_state = 6}, [5079] = {.lex_state = 262, .external_lex_state = 6}, - [5080] = {.lex_state = 249, .external_lex_state = 6}, + [5080] = {.lex_state = 262, .external_lex_state = 6}, [5081] = {.lex_state = 249, .external_lex_state = 6}, - [5082] = {.lex_state = 249, .external_lex_state = 6}, - [5083] = {.lex_state = 243, .external_lex_state = 6}, + [5082] = {.lex_state = 243, .external_lex_state = 6}, + [5083] = {.lex_state = 249, .external_lex_state = 6}, [5084] = {.lex_state = 243, .external_lex_state = 6}, [5085] = {.lex_state = 243, .external_lex_state = 6}, [5086] = {.lex_state = 249, .external_lex_state = 6}, - [5087] = {.lex_state = 249, .external_lex_state = 6}, + [5087] = {.lex_state = 243, .external_lex_state = 6}, [5088] = {.lex_state = 249, .external_lex_state = 6}, - [5089] = {.lex_state = 243, .external_lex_state = 6}, + [5089] = {.lex_state = 249, .external_lex_state = 6}, [5090] = {.lex_state = 249, .external_lex_state = 6}, - [5091] = {.lex_state = 249, .external_lex_state = 6}, - [5092] = {.lex_state = 243, .external_lex_state = 6}, - [5093] = {.lex_state = 249, .external_lex_state = 6}, + [5091] = {.lex_state = 243, .external_lex_state = 6}, + [5092] = {.lex_state = 249, .external_lex_state = 6}, + [5093] = {.lex_state = 243, .external_lex_state = 6}, [5094] = {.lex_state = 243, .external_lex_state = 6}, - [5095] = {.lex_state = 249, .external_lex_state = 6}, + [5095] = {.lex_state = 243, .external_lex_state = 6}, [5096] = {.lex_state = 243, .external_lex_state = 6}, [5097] = {.lex_state = 249, .external_lex_state = 6}, - [5098] = {.lex_state = 243, .external_lex_state = 6}, + [5098] = {.lex_state = 249, .external_lex_state = 6}, [5099] = {.lex_state = 249, .external_lex_state = 6}, [5100] = {.lex_state = 243, .external_lex_state = 6}, [5101] = {.lex_state = 243, .external_lex_state = 6}, - [5102] = {.lex_state = 243, .external_lex_state = 6}, + [5102] = {.lex_state = 249, .external_lex_state = 6}, [5103] = {.lex_state = 249, .external_lex_state = 6}, [5104] = {.lex_state = 249, .external_lex_state = 6}, - [5105] = {.lex_state = 243, .external_lex_state = 6}, + [5105] = {.lex_state = 249, .external_lex_state = 6}, [5106] = {.lex_state = 243, .external_lex_state = 6}, [5107] = {.lex_state = 243, .external_lex_state = 6}, [5108] = {.lex_state = 243, .external_lex_state = 6}, [5109] = {.lex_state = 243, .external_lex_state = 6}, [5110] = {.lex_state = 243, .external_lex_state = 6}, [5111] = {.lex_state = 243, .external_lex_state = 6}, - [5112] = {.lex_state = 243, .external_lex_state = 6}, + [5112] = {.lex_state = 244, .external_lex_state = 4}, [5113] = {.lex_state = 243, .external_lex_state = 6}, [5114] = {.lex_state = 244, .external_lex_state = 4}, [5115] = {.lex_state = 243, .external_lex_state = 6}, @@ -40133,17 +40132,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5117] = {.lex_state = 243, .external_lex_state = 6}, [5118] = {.lex_state = 243, .external_lex_state = 6}, [5119] = {.lex_state = 243, .external_lex_state = 6}, - [5120] = {.lex_state = 243, .external_lex_state = 6}, + [5120] = {.lex_state = 244, .external_lex_state = 4}, [5121] = {.lex_state = 243, .external_lex_state = 6}, [5122] = {.lex_state = 243, .external_lex_state = 6}, [5123] = {.lex_state = 243, .external_lex_state = 6}, - [5124] = {.lex_state = 243, .external_lex_state = 6}, + [5124] = {.lex_state = 249, .external_lex_state = 6}, [5125] = {.lex_state = 243, .external_lex_state = 6}, [5126] = {.lex_state = 243, .external_lex_state = 6}, [5127] = {.lex_state = 243, .external_lex_state = 6}, - [5128] = {.lex_state = 243, .external_lex_state = 6}, - [5129] = {.lex_state = 249, .external_lex_state = 6}, - [5130] = {.lex_state = 249, .external_lex_state = 6}, + [5128] = {.lex_state = 249, .external_lex_state = 6}, + [5129] = {.lex_state = 243, .external_lex_state = 6}, + [5130] = {.lex_state = 243, .external_lex_state = 6}, [5131] = {.lex_state = 243, .external_lex_state = 6}, [5132] = {.lex_state = 243, .external_lex_state = 6}, [5133] = {.lex_state = 243, .external_lex_state = 6}, @@ -40151,14 +40150,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5135] = {.lex_state = 243, .external_lex_state = 6}, [5136] = {.lex_state = 243, .external_lex_state = 6}, [5137] = {.lex_state = 243, .external_lex_state = 6}, - [5138] = {.lex_state = 249, .external_lex_state = 6}, - [5139] = {.lex_state = 244, .external_lex_state = 4}, + [5138] = {.lex_state = 243, .external_lex_state = 6}, + [5139] = {.lex_state = 243, .external_lex_state = 6}, [5140] = {.lex_state = 243, .external_lex_state = 6}, - [5141] = {.lex_state = 243, .external_lex_state = 6}, - [5142] = {.lex_state = 244, .external_lex_state = 4}, + [5141] = {.lex_state = 249, .external_lex_state = 6}, + [5142] = {.lex_state = 243, .external_lex_state = 6}, [5143] = {.lex_state = 243, .external_lex_state = 6}, [5144] = {.lex_state = 243, .external_lex_state = 6}, - [5145] = {.lex_state = 244, .external_lex_state = 4}, + [5145] = {.lex_state = 243, .external_lex_state = 6}, [5146] = {.lex_state = 243, .external_lex_state = 6}, [5147] = {.lex_state = 243, .external_lex_state = 6}, [5148] = {.lex_state = 243, .external_lex_state = 6}, @@ -40167,224 +40166,224 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5151] = {.lex_state = 243, .external_lex_state = 6}, [5152] = {.lex_state = 243, .external_lex_state = 6}, [5153] = {.lex_state = 243, .external_lex_state = 6}, - [5154] = {.lex_state = 243, .external_lex_state = 6}, + [5154] = {.lex_state = 244, .external_lex_state = 4}, [5155] = {.lex_state = 243, .external_lex_state = 6}, - [5156] = {.lex_state = 249, .external_lex_state = 6}, + [5156] = {.lex_state = 243, .external_lex_state = 6}, [5157] = {.lex_state = 249, .external_lex_state = 6}, [5158] = {.lex_state = 249, .external_lex_state = 6}, [5159] = {.lex_state = 244, .external_lex_state = 4}, [5160] = {.lex_state = 249, .external_lex_state = 6}, [5161] = {.lex_state = 249, .external_lex_state = 6}, [5162] = {.lex_state = 249, .external_lex_state = 6}, - [5163] = {.lex_state = 204, .external_lex_state = 6}, - [5164] = {.lex_state = 87, .external_lex_state = 6}, - [5165] = {.lex_state = 249, .external_lex_state = 6}, - [5166] = {.lex_state = 204, .external_lex_state = 6}, + [5163] = {.lex_state = 85, .external_lex_state = 6}, + [5164] = {.lex_state = 204, .external_lex_state = 6}, + [5165] = {.lex_state = 204, .external_lex_state = 6}, + [5166] = {.lex_state = 249, .external_lex_state = 6}, [5167] = {.lex_state = 249, .external_lex_state = 6}, [5168] = {.lex_state = 249, .external_lex_state = 6}, [5169] = {.lex_state = 249, .external_lex_state = 6}, - [5170] = {.lex_state = 249, .external_lex_state = 6}, - [5171] = {.lex_state = 87, .external_lex_state = 6}, + [5170] = {.lex_state = 85, .external_lex_state = 6}, + [5171] = {.lex_state = 249, .external_lex_state = 6}, [5172] = {.lex_state = 249, .external_lex_state = 6}, [5173] = {.lex_state = 249, .external_lex_state = 6}, [5174] = {.lex_state = 249, .external_lex_state = 6}, - [5175] = {.lex_state = 254, .external_lex_state = 6}, - [5176] = {.lex_state = 249, .external_lex_state = 6}, + [5175] = {.lex_state = 249, .external_lex_state = 6}, + [5176] = {.lex_state = 204, .external_lex_state = 6}, [5177] = {.lex_state = 216, .external_lex_state = 6}, - [5178] = {.lex_state = 254, .external_lex_state = 6}, - [5179] = {.lex_state = 244, .external_lex_state = 4}, - [5180] = {.lex_state = 216, .external_lex_state = 6}, - [5181] = {.lex_state = 244, .external_lex_state = 4}, - [5182] = {.lex_state = 204, .external_lex_state = 6}, - [5183] = {.lex_state = 204, .external_lex_state = 6}, - [5184] = {.lex_state = 204, .external_lex_state = 6}, + [5178] = {.lex_state = 244, .external_lex_state = 4}, + [5179] = {.lex_state = 254, .external_lex_state = 6}, + [5180] = {.lex_state = 254, .external_lex_state = 6}, + [5181] = {.lex_state = 216, .external_lex_state = 6}, + [5182] = {.lex_state = 254, .external_lex_state = 6}, + [5183] = {.lex_state = 85, .external_lex_state = 6}, + [5184] = {.lex_state = 85, .external_lex_state = 6}, [5185] = {.lex_state = 204, .external_lex_state = 6}, - [5186] = {.lex_state = 204, .external_lex_state = 6}, - [5187] = {.lex_state = 244, .external_lex_state = 4}, + [5186] = {.lex_state = 244, .external_lex_state = 4}, + [5187] = {.lex_state = 249, .external_lex_state = 6}, [5188] = {.lex_state = 244, .external_lex_state = 4}, - [5189] = {.lex_state = 87, .external_lex_state = 6}, - [5190] = {.lex_state = 87, .external_lex_state = 6}, - [5191] = {.lex_state = 87, .external_lex_state = 6}, - [5192] = {.lex_state = 87, .external_lex_state = 6}, - [5193] = {.lex_state = 216, .external_lex_state = 6}, - [5194] = {.lex_state = 254, .external_lex_state = 6}, - [5195] = {.lex_state = 204, .external_lex_state = 6}, - [5196] = {.lex_state = 204, .external_lex_state = 6}, - [5197] = {.lex_state = 244, .external_lex_state = 4}, - [5198] = {.lex_state = 244, .external_lex_state = 4}, - [5199] = {.lex_state = 204, .external_lex_state = 6}, - [5200] = {.lex_state = 87, .external_lex_state = 6}, - [5201] = {.lex_state = 249, .external_lex_state = 6}, - [5202] = {.lex_state = 249, .external_lex_state = 6}, - [5203] = {.lex_state = 249, .external_lex_state = 6}, - [5204] = {.lex_state = 249, .external_lex_state = 6}, - [5205] = {.lex_state = 244, .external_lex_state = 4}, - [5206] = {.lex_state = 216, .external_lex_state = 6}, - [5207] = {.lex_state = 249, .external_lex_state = 6}, + [5189] = {.lex_state = 249, .external_lex_state = 6}, + [5190] = {.lex_state = 244, .external_lex_state = 4}, + [5191] = {.lex_state = 249, .external_lex_state = 6}, + [5192] = {.lex_state = 244, .external_lex_state = 4}, + [5193] = {.lex_state = 85, .external_lex_state = 6}, + [5194] = {.lex_state = 244, .external_lex_state = 4}, + [5195] = {.lex_state = 249, .external_lex_state = 6}, + [5196] = {.lex_state = 216, .external_lex_state = 6}, + [5197] = {.lex_state = 216, .external_lex_state = 6}, + [5198] = {.lex_state = 249, .external_lex_state = 6}, + [5199] = {.lex_state = 85, .external_lex_state = 6}, + [5200] = {.lex_state = 204, .external_lex_state = 6}, + [5201] = {.lex_state = 204, .external_lex_state = 6}, + [5202] = {.lex_state = 204, .external_lex_state = 6}, + [5203] = {.lex_state = 204, .external_lex_state = 6}, + [5204] = {.lex_state = 204, .external_lex_state = 6}, + [5205] = {.lex_state = 249, .external_lex_state = 6}, + [5206] = {.lex_state = 85, .external_lex_state = 6}, + [5207] = {.lex_state = 244, .external_lex_state = 4}, [5208] = {.lex_state = 204, .external_lex_state = 6}, - [5209] = {.lex_state = 204, .external_lex_state = 6}, - [5210] = {.lex_state = 204, .external_lex_state = 6}, - [5211] = {.lex_state = 204, .external_lex_state = 6}, - [5212] = {.lex_state = 204, .external_lex_state = 6}, - [5213] = {.lex_state = 87, .external_lex_state = 6}, - [5214] = {.lex_state = 87, .external_lex_state = 6}, + [5209] = {.lex_state = 249, .external_lex_state = 6}, + [5210] = {.lex_state = 85, .external_lex_state = 6}, + [5211] = {.lex_state = 85, .external_lex_state = 6}, + [5212] = {.lex_state = 85, .external_lex_state = 6}, + [5213] = {.lex_state = 204, .external_lex_state = 6}, + [5214] = {.lex_state = 85, .external_lex_state = 6}, [5215] = {.lex_state = 249, .external_lex_state = 6}, - [5216] = {.lex_state = 249, .external_lex_state = 6}, - [5217] = {.lex_state = 87, .external_lex_state = 6}, - [5218] = {.lex_state = 249, .external_lex_state = 6}, - [5219] = {.lex_state = 249, .external_lex_state = 6}, - [5220] = {.lex_state = 249, .external_lex_state = 6}, - [5221] = {.lex_state = 87, .external_lex_state = 6}, - [5222] = {.lex_state = 87, .external_lex_state = 6}, + [5216] = {.lex_state = 85, .external_lex_state = 6}, + [5217] = {.lex_state = 249, .external_lex_state = 6}, + [5218] = {.lex_state = 85, .external_lex_state = 6}, + [5219] = {.lex_state = 85, .external_lex_state = 6}, + [5220] = {.lex_state = 85, .external_lex_state = 6}, + [5221] = {.lex_state = 204, .external_lex_state = 6}, + [5222] = {.lex_state = 85, .external_lex_state = 6}, [5223] = {.lex_state = 204, .external_lex_state = 6}, - [5224] = {.lex_state = 87, .external_lex_state = 6}, - [5225] = {.lex_state = 87, .external_lex_state = 6}, - [5226] = {.lex_state = 87, .external_lex_state = 6}, - [5227] = {.lex_state = 204, .external_lex_state = 6}, - [5228] = {.lex_state = 249, .external_lex_state = 6}, - [5229] = {.lex_state = 249, .external_lex_state = 6}, - [5230] = {.lex_state = 87, .external_lex_state = 6}, + [5224] = {.lex_state = 85, .external_lex_state = 6}, + [5225] = {.lex_state = 204, .external_lex_state = 6}, + [5226] = {.lex_state = 85, .external_lex_state = 6}, + [5227] = {.lex_state = 85, .external_lex_state = 6}, + [5228] = {.lex_state = 85, .external_lex_state = 6}, + [5229] = {.lex_state = 85, .external_lex_state = 6}, + [5230] = {.lex_state = 249, .external_lex_state = 6}, [5231] = {.lex_state = 204, .external_lex_state = 6}, - [5232] = {.lex_state = 87, .external_lex_state = 6}, - [5233] = {.lex_state = 204, .external_lex_state = 6}, - [5234] = {.lex_state = 87, .external_lex_state = 6}, - [5235] = {.lex_state = 87, .external_lex_state = 6}, - [5236] = {.lex_state = 87, .external_lex_state = 6}, - [5237] = {.lex_state = 204, .external_lex_state = 6}, - [5238] = {.lex_state = 87, .external_lex_state = 6}, + [5232] = {.lex_state = 85, .external_lex_state = 6}, + [5233] = {.lex_state = 249, .external_lex_state = 6}, + [5234] = {.lex_state = 85, .external_lex_state = 6}, + [5235] = {.lex_state = 85, .external_lex_state = 6}, + [5236] = {.lex_state = 204, .external_lex_state = 6}, + [5237] = {.lex_state = 249, .external_lex_state = 6}, + [5238] = {.lex_state = 85, .external_lex_state = 6}, [5239] = {.lex_state = 249, .external_lex_state = 6}, [5240] = {.lex_state = 249, .external_lex_state = 6}, - [5241] = {.lex_state = 249, .external_lex_state = 6}, - [5242] = {.lex_state = 204, .external_lex_state = 6}, + [5241] = {.lex_state = 85, .external_lex_state = 6}, + [5242] = {.lex_state = 85, .external_lex_state = 6}, [5243] = {.lex_state = 204, .external_lex_state = 6}, - [5244] = {.lex_state = 87, .external_lex_state = 6}, + [5244] = {.lex_state = 85, .external_lex_state = 6}, [5245] = {.lex_state = 204, .external_lex_state = 6}, - [5246] = {.lex_state = 87, .external_lex_state = 6}, - [5247] = {.lex_state = 87, .external_lex_state = 6}, - [5248] = {.lex_state = 249, .external_lex_state = 6}, - [5249] = {.lex_state = 249, .external_lex_state = 6}, - [5250] = {.lex_state = 249, .external_lex_state = 6}, + [5246] = {.lex_state = 249, .external_lex_state = 6}, + [5247] = {.lex_state = 85, .external_lex_state = 6}, + [5248] = {.lex_state = 85, .external_lex_state = 6}, + [5249] = {.lex_state = 85, .external_lex_state = 6}, + [5250] = {.lex_state = 85, .external_lex_state = 6}, [5251] = {.lex_state = 249, .external_lex_state = 6}, - [5252] = {.lex_state = 249, .external_lex_state = 6}, + [5252] = {.lex_state = 85, .external_lex_state = 6}, [5253] = {.lex_state = 249, .external_lex_state = 6}, - [5254] = {.lex_state = 87, .external_lex_state = 6}, - [5255] = {.lex_state = 204, .external_lex_state = 6}, - [5256] = {.lex_state = 204, .external_lex_state = 6}, - [5257] = {.lex_state = 87, .external_lex_state = 6}, - [5258] = {.lex_state = 87, .external_lex_state = 6}, - [5259] = {.lex_state = 87, .external_lex_state = 6}, - [5260] = {.lex_state = 87, .external_lex_state = 6}, - [5261] = {.lex_state = 87, .external_lex_state = 6}, - [5262] = {.lex_state = 87, .external_lex_state = 6}, - [5263] = {.lex_state = 87, .external_lex_state = 6}, - [5264] = {.lex_state = 87, .external_lex_state = 6}, - [5265] = {.lex_state = 204, .external_lex_state = 6}, - [5266] = {.lex_state = 249, .external_lex_state = 6}, - [5267] = {.lex_state = 87, .external_lex_state = 6}, - [5268] = {.lex_state = 87, .external_lex_state = 6}, - [5269] = {.lex_state = 87, .external_lex_state = 6}, - [5270] = {.lex_state = 87, .external_lex_state = 6}, - [5271] = {.lex_state = 249, .external_lex_state = 6}, - [5272] = {.lex_state = 87, .external_lex_state = 6}, - [5273] = {.lex_state = 87, .external_lex_state = 6}, - [5274] = {.lex_state = 249, .external_lex_state = 6}, - [5275] = {.lex_state = 87, .external_lex_state = 6}, - [5276] = {.lex_state = 87, .external_lex_state = 6}, - [5277] = {.lex_state = 87, .external_lex_state = 6}, - [5278] = {.lex_state = 87, .external_lex_state = 6}, - [5279] = {.lex_state = 87, .external_lex_state = 6}, - [5280] = {.lex_state = 87, .external_lex_state = 6}, - [5281] = {.lex_state = 87, .external_lex_state = 6}, - [5282] = {.lex_state = 87, .external_lex_state = 6}, - [5283] = {.lex_state = 87, .external_lex_state = 6}, - [5284] = {.lex_state = 87, .external_lex_state = 6}, - [5285] = {.lex_state = 87, .external_lex_state = 6}, - [5286] = {.lex_state = 87, .external_lex_state = 6}, - [5287] = {.lex_state = 87, .external_lex_state = 6}, - [5288] = {.lex_state = 87, .external_lex_state = 6}, - [5289] = {.lex_state = 87, .external_lex_state = 6}, - [5290] = {.lex_state = 87, .external_lex_state = 6}, - [5291] = {.lex_state = 87, .external_lex_state = 6}, - [5292] = {.lex_state = 87, .external_lex_state = 6}, - [5293] = {.lex_state = 249, .external_lex_state = 6}, - [5294] = {.lex_state = 87, .external_lex_state = 6}, + [5254] = {.lex_state = 249, .external_lex_state = 6}, + [5255] = {.lex_state = 85, .external_lex_state = 6}, + [5256] = {.lex_state = 85, .external_lex_state = 6}, + [5257] = {.lex_state = 85, .external_lex_state = 6}, + [5258] = {.lex_state = 85, .external_lex_state = 6}, + [5259] = {.lex_state = 85, .external_lex_state = 6}, + [5260] = {.lex_state = 204, .external_lex_state = 6}, + [5261] = {.lex_state = 85, .external_lex_state = 6}, + [5262] = {.lex_state = 85, .external_lex_state = 6}, + [5263] = {.lex_state = 85, .external_lex_state = 6}, + [5264] = {.lex_state = 249, .external_lex_state = 6}, + [5265] = {.lex_state = 85, .external_lex_state = 6}, + [5266] = {.lex_state = 85, .external_lex_state = 6}, + [5267] = {.lex_state = 85, .external_lex_state = 6}, + [5268] = {.lex_state = 85, .external_lex_state = 6}, + [5269] = {.lex_state = 249, .external_lex_state = 6}, + [5270] = {.lex_state = 85, .external_lex_state = 6}, + [5271] = {.lex_state = 204, .external_lex_state = 6}, + [5272] = {.lex_state = 85, .external_lex_state = 6}, + [5273] = {.lex_state = 204, .external_lex_state = 6}, + [5274] = {.lex_state = 85, .external_lex_state = 6}, + [5275] = {.lex_state = 204, .external_lex_state = 6}, + [5276] = {.lex_state = 85, .external_lex_state = 6}, + [5277] = {.lex_state = 249, .external_lex_state = 6}, + [5278] = {.lex_state = 249, .external_lex_state = 6}, + [5279] = {.lex_state = 85, .external_lex_state = 6}, + [5280] = {.lex_state = 85, .external_lex_state = 6}, + [5281] = {.lex_state = 85, .external_lex_state = 6}, + [5282] = {.lex_state = 85, .external_lex_state = 6}, + [5283] = {.lex_state = 85, .external_lex_state = 6}, + [5284] = {.lex_state = 85, .external_lex_state = 6}, + [5285] = {.lex_state = 85, .external_lex_state = 6}, + [5286] = {.lex_state = 249, .external_lex_state = 6}, + [5287] = {.lex_state = 85, .external_lex_state = 6}, + [5288] = {.lex_state = 249, .external_lex_state = 6}, + [5289] = {.lex_state = 85, .external_lex_state = 6}, + [5290] = {.lex_state = 85, .external_lex_state = 6}, + [5291] = {.lex_state = 249, .external_lex_state = 6}, + [5292] = {.lex_state = 85, .external_lex_state = 6}, + [5293] = {.lex_state = 85, .external_lex_state = 6}, + [5294] = {.lex_state = 85, .external_lex_state = 6}, [5295] = {.lex_state = 204, .external_lex_state = 6}, - [5296] = {.lex_state = 87, .external_lex_state = 6}, - [5297] = {.lex_state = 87, .external_lex_state = 6}, - [5298] = {.lex_state = 87, .external_lex_state = 6}, - [5299] = {.lex_state = 87, .external_lex_state = 6}, - [5300] = {.lex_state = 204, .external_lex_state = 6}, - [5301] = {.lex_state = 87, .external_lex_state = 6}, - [5302] = {.lex_state = 87, .external_lex_state = 6}, - [5303] = {.lex_state = 87, .external_lex_state = 6}, + [5296] = {.lex_state = 85, .external_lex_state = 6}, + [5297] = {.lex_state = 249, .external_lex_state = 6}, + [5298] = {.lex_state = 85, .external_lex_state = 6}, + [5299] = {.lex_state = 85, .external_lex_state = 6}, + [5300] = {.lex_state = 249, .external_lex_state = 6}, + [5301] = {.lex_state = 85, .external_lex_state = 6}, + [5302] = {.lex_state = 249, .external_lex_state = 6}, + [5303] = {.lex_state = 204, .external_lex_state = 6}, [5304] = {.lex_state = 249, .external_lex_state = 6}, - [5305] = {.lex_state = 87, .external_lex_state = 6}, - [5306] = {.lex_state = 87, .external_lex_state = 6}, - [5307] = {.lex_state = 87, .external_lex_state = 6}, - [5308] = {.lex_state = 87, .external_lex_state = 6}, - [5309] = {.lex_state = 87, .external_lex_state = 6}, - [5310] = {.lex_state = 87, .external_lex_state = 6}, - [5311] = {.lex_state = 87, .external_lex_state = 6}, - [5312] = {.lex_state = 87, .external_lex_state = 6}, - [5313] = {.lex_state = 87, .external_lex_state = 6}, - [5314] = {.lex_state = 87, .external_lex_state = 6}, - [5315] = {.lex_state = 87, .external_lex_state = 6}, - [5316] = {.lex_state = 87, .external_lex_state = 6}, - [5317] = {.lex_state = 249, .external_lex_state = 6}, + [5305] = {.lex_state = 249, .external_lex_state = 6}, + [5306] = {.lex_state = 85, .external_lex_state = 6}, + [5307] = {.lex_state = 204, .external_lex_state = 6}, + [5308] = {.lex_state = 249, .external_lex_state = 6}, + [5309] = {.lex_state = 249, .external_lex_state = 6}, + [5310] = {.lex_state = 85, .external_lex_state = 6}, + [5311] = {.lex_state = 204, .external_lex_state = 6}, + [5312] = {.lex_state = 85, .external_lex_state = 6}, + [5313] = {.lex_state = 85, .external_lex_state = 6}, + [5314] = {.lex_state = 85, .external_lex_state = 6}, + [5315] = {.lex_state = 85, .external_lex_state = 6}, + [5316] = {.lex_state = 85, .external_lex_state = 6}, + [5317] = {.lex_state = 85, .external_lex_state = 6}, [5318] = {.lex_state = 249, .external_lex_state = 6}, - [5319] = {.lex_state = 249, .external_lex_state = 6}, - [5320] = {.lex_state = 249, .external_lex_state = 6}, - [5321] = {.lex_state = 87, .external_lex_state = 6}, - [5322] = {.lex_state = 87, .external_lex_state = 6}, - [5323] = {.lex_state = 249, .external_lex_state = 6}, - [5324] = {.lex_state = 249, .external_lex_state = 6}, - [5325] = {.lex_state = 87, .external_lex_state = 6}, - [5326] = {.lex_state = 204, .external_lex_state = 6}, + [5319] = {.lex_state = 85, .external_lex_state = 6}, + [5320] = {.lex_state = 204, .external_lex_state = 6}, + [5321] = {.lex_state = 249, .external_lex_state = 6}, + [5322] = {.lex_state = 85, .external_lex_state = 6}, + [5323] = {.lex_state = 85, .external_lex_state = 6}, + [5324] = {.lex_state = 204, .external_lex_state = 6}, + [5325] = {.lex_state = 204, .external_lex_state = 6}, + [5326] = {.lex_state = 85, .external_lex_state = 6}, [5327] = {.lex_state = 204, .external_lex_state = 6}, - [5328] = {.lex_state = 249, .external_lex_state = 6}, - [5329] = {.lex_state = 204, .external_lex_state = 6}, + [5328] = {.lex_state = 204, .external_lex_state = 6}, + [5329] = {.lex_state = 249, .external_lex_state = 6}, [5330] = {.lex_state = 204, .external_lex_state = 6}, - [5331] = {.lex_state = 204, .external_lex_state = 6}, - [5332] = {.lex_state = 249, .external_lex_state = 6}, - [5333] = {.lex_state = 87, .external_lex_state = 6}, - [5334] = {.lex_state = 249, .external_lex_state = 6}, - [5335] = {.lex_state = 249, .external_lex_state = 6}, - [5336] = {.lex_state = 244, .external_lex_state = 4}, - [5337] = {.lex_state = 87, .external_lex_state = 6}, - [5338] = {.lex_state = 87, .external_lex_state = 6}, - [5339] = {.lex_state = 87, .external_lex_state = 6}, - [5340] = {.lex_state = 249, .external_lex_state = 6}, - [5341] = {.lex_state = 87, .external_lex_state = 6}, - [5342] = {.lex_state = 87, .external_lex_state = 6}, - [5343] = {.lex_state = 87, .external_lex_state = 6}, - [5344] = {.lex_state = 87, .external_lex_state = 6}, - [5345] = {.lex_state = 249, .external_lex_state = 6}, - [5346] = {.lex_state = 87, .external_lex_state = 6}, - [5347] = {.lex_state = 87, .external_lex_state = 6}, - [5348] = {.lex_state = 87, .external_lex_state = 6}, - [5349] = {.lex_state = 87, .external_lex_state = 6}, - [5350] = {.lex_state = 87, .external_lex_state = 6}, - [5351] = {.lex_state = 204, .external_lex_state = 6}, - [5352] = {.lex_state = 87, .external_lex_state = 6}, - [5353] = {.lex_state = 87, .external_lex_state = 6}, - [5354] = {.lex_state = 87, .external_lex_state = 6}, - [5355] = {.lex_state = 87, .external_lex_state = 6}, - [5356] = {.lex_state = 204, .external_lex_state = 6}, - [5357] = {.lex_state = 87, .external_lex_state = 6}, - [5358] = {.lex_state = 87, .external_lex_state = 6}, - [5359] = {.lex_state = 87, .external_lex_state = 6}, - [5360] = {.lex_state = 244, .external_lex_state = 4}, - [5361] = {.lex_state = 87, .external_lex_state = 6}, - [5362] = {.lex_state = 87, .external_lex_state = 6}, - [5363] = {.lex_state = 87, .external_lex_state = 6}, - [5364] = {.lex_state = 87, .external_lex_state = 6}, - [5365] = {.lex_state = 87, .external_lex_state = 6}, - [5366] = {.lex_state = 87, .external_lex_state = 6}, - [5367] = {.lex_state = 87, .external_lex_state = 6}, - [5368] = {.lex_state = 87, .external_lex_state = 6}, - [5369] = {.lex_state = 87, .external_lex_state = 6}, - [5370] = {.lex_state = 87, .external_lex_state = 6}, - [5371] = {.lex_state = 249, .external_lex_state = 6}, + [5331] = {.lex_state = 85, .external_lex_state = 6}, + [5332] = {.lex_state = 85, .external_lex_state = 6}, + [5333] = {.lex_state = 204, .external_lex_state = 6}, + [5334] = {.lex_state = 85, .external_lex_state = 6}, + [5335] = {.lex_state = 85, .external_lex_state = 6}, + [5336] = {.lex_state = 249, .external_lex_state = 6}, + [5337] = {.lex_state = 204, .external_lex_state = 6}, + [5338] = {.lex_state = 85, .external_lex_state = 6}, + [5339] = {.lex_state = 244, .external_lex_state = 4}, + [5340] = {.lex_state = 85, .external_lex_state = 6}, + [5341] = {.lex_state = 85, .external_lex_state = 6}, + [5342] = {.lex_state = 85, .external_lex_state = 6}, + [5343] = {.lex_state = 249, .external_lex_state = 6}, + [5344] = {.lex_state = 85, .external_lex_state = 6}, + [5345] = {.lex_state = 85, .external_lex_state = 6}, + [5346] = {.lex_state = 85, .external_lex_state = 6}, + [5347] = {.lex_state = 249, .external_lex_state = 6}, + [5348] = {.lex_state = 85, .external_lex_state = 6}, + [5349] = {.lex_state = 85, .external_lex_state = 6}, + [5350] = {.lex_state = 204, .external_lex_state = 6}, + [5351] = {.lex_state = 85, .external_lex_state = 6}, + [5352] = {.lex_state = 85, .external_lex_state = 6}, + [5353] = {.lex_state = 85, .external_lex_state = 6}, + [5354] = {.lex_state = 85, .external_lex_state = 6}, + [5355] = {.lex_state = 85, .external_lex_state = 6}, + [5356] = {.lex_state = 85, .external_lex_state = 6}, + [5357] = {.lex_state = 249, .external_lex_state = 6}, + [5358] = {.lex_state = 85, .external_lex_state = 6}, + [5359] = {.lex_state = 85, .external_lex_state = 6}, + [5360] = {.lex_state = 85, .external_lex_state = 6}, + [5361] = {.lex_state = 85, .external_lex_state = 6}, + [5362] = {.lex_state = 85, .external_lex_state = 6}, + [5363] = {.lex_state = 85, .external_lex_state = 6}, + [5364] = {.lex_state = 85, .external_lex_state = 6}, + [5365] = {.lex_state = 244, .external_lex_state = 4}, + [5366] = {.lex_state = 85, .external_lex_state = 6}, + [5367] = {.lex_state = 85, .external_lex_state = 6}, + [5368] = {.lex_state = 85, .external_lex_state = 6}, + [5369] = {.lex_state = 85, .external_lex_state = 6}, + [5370] = {.lex_state = 85, .external_lex_state = 6}, + [5371] = {.lex_state = 85, .external_lex_state = 6}, [5372] = {.lex_state = 249, .external_lex_state = 6}, [5373] = {.lex_state = 249, .external_lex_state = 6}, [5374] = {.lex_state = 249, .external_lex_state = 6}, @@ -40404,7 +40403,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5388] = {.lex_state = 249, .external_lex_state = 6}, [5389] = {.lex_state = 249, .external_lex_state = 6}, [5390] = {.lex_state = 249, .external_lex_state = 6}, - [5391] = {.lex_state = 244, .external_lex_state = 4}, + [5391] = {.lex_state = 249, .external_lex_state = 6}, [5392] = {.lex_state = 244, .external_lex_state = 4}, [5393] = {.lex_state = 244, .external_lex_state = 4}, [5394] = {.lex_state = 244, .external_lex_state = 4}, @@ -40412,111 +40411,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5396] = {.lex_state = 244, .external_lex_state = 4}, [5397] = {.lex_state = 244, .external_lex_state = 4}, [5398] = {.lex_state = 244, .external_lex_state = 4}, - [5399] = {.lex_state = 218, .external_lex_state = 6}, - [5400] = {.lex_state = 218, .external_lex_state = 6}, - [5401] = {.lex_state = 244, .external_lex_state = 4}, + [5399] = {.lex_state = 214, .external_lex_state = 6}, + [5400] = {.lex_state = 244, .external_lex_state = 4}, + [5401] = {.lex_state = 214, .external_lex_state = 6}, [5402] = {.lex_state = 244, .external_lex_state = 4}, - [5403] = {.lex_state = 218, .external_lex_state = 6}, - [5404] = {.lex_state = 218, .external_lex_state = 6}, - [5405] = {.lex_state = 218, .external_lex_state = 6}, - [5406] = {.lex_state = 244, .external_lex_state = 4}, - [5407] = {.lex_state = 218, .external_lex_state = 6}, + [5403] = {.lex_state = 214, .external_lex_state = 6}, + [5404] = {.lex_state = 214, .external_lex_state = 6}, + [5405] = {.lex_state = 214, .external_lex_state = 6}, + [5406] = {.lex_state = 214, .external_lex_state = 6}, + [5407] = {.lex_state = 214, .external_lex_state = 6}, [5408] = {.lex_state = 244, .external_lex_state = 4}, - [5409] = {.lex_state = 218, .external_lex_state = 6}, + [5409] = {.lex_state = 244, .external_lex_state = 4}, [5410] = {.lex_state = 244, .external_lex_state = 4}, [5411] = {.lex_state = 244, .external_lex_state = 4}, [5412] = {.lex_state = 244, .external_lex_state = 4}, - [5413] = {.lex_state = 253, .external_lex_state = 6}, + [5413] = {.lex_state = 244, .external_lex_state = 4}, [5414] = {.lex_state = 251, .external_lex_state = 6}, - [5415] = {.lex_state = 254, .external_lex_state = 6}, + [5415] = {.lex_state = 253, .external_lex_state = 6}, [5416] = {.lex_state = 254, .external_lex_state = 6}, - [5417] = {.lex_state = 244, .external_lex_state = 4}, - [5418] = {.lex_state = 254, .external_lex_state = 6}, - [5419] = {.lex_state = 244, .external_lex_state = 4}, - [5420] = {.lex_state = 253, .external_lex_state = 6}, - [5421] = {.lex_state = 244, .external_lex_state = 4}, - [5422] = {.lex_state = 253, .external_lex_state = 6}, + [5417] = {.lex_state = 253, .external_lex_state = 6}, + [5418] = {.lex_state = 251, .external_lex_state = 6}, + [5419] = {.lex_state = 254, .external_lex_state = 6}, + [5420] = {.lex_state = 251, .external_lex_state = 6}, + [5421] = {.lex_state = 253, .external_lex_state = 6}, + [5422] = {.lex_state = 251, .external_lex_state = 6}, [5423] = {.lex_state = 251, .external_lex_state = 6}, - [5424] = {.lex_state = 249, .external_lex_state = 6}, + [5424] = {.lex_state = 253, .external_lex_state = 6}, [5425] = {.lex_state = 251, .external_lex_state = 6}, [5426] = {.lex_state = 253, .external_lex_state = 6}, - [5427] = {.lex_state = 253, .external_lex_state = 6}, - [5428] = {.lex_state = 244, .external_lex_state = 4}, - [5429] = {.lex_state = 244, .external_lex_state = 4}, + [5427] = {.lex_state = 251, .external_lex_state = 6}, + [5428] = {.lex_state = 253, .external_lex_state = 6}, + [5429] = {.lex_state = 251, .external_lex_state = 6}, [5430] = {.lex_state = 253, .external_lex_state = 6}, [5431] = {.lex_state = 251, .external_lex_state = 6}, - [5432] = {.lex_state = 254, .external_lex_state = 6}, - [5433] = {.lex_state = 251, .external_lex_state = 6}, - [5434] = {.lex_state = 244, .external_lex_state = 4}, - [5435] = {.lex_state = 251, .external_lex_state = 6}, - [5436] = {.lex_state = 251, .external_lex_state = 6}, + [5432] = {.lex_state = 251, .external_lex_state = 6}, + [5433] = {.lex_state = 253, .external_lex_state = 6}, + [5434] = {.lex_state = 251, .external_lex_state = 6}, + [5435] = {.lex_state = 253, .external_lex_state = 6}, + [5436] = {.lex_state = 253, .external_lex_state = 6}, [5437] = {.lex_state = 251, .external_lex_state = 6}, [5438] = {.lex_state = 253, .external_lex_state = 6}, [5439] = {.lex_state = 253, .external_lex_state = 6}, [5440] = {.lex_state = 253, .external_lex_state = 6}, - [5441] = {.lex_state = 251, .external_lex_state = 6}, - [5442] = {.lex_state = 254, .external_lex_state = 6}, - [5443] = {.lex_state = 254, .external_lex_state = 6}, - [5444] = {.lex_state = 253, .external_lex_state = 6}, - [5445] = {.lex_state = 251, .external_lex_state = 6}, - [5446] = {.lex_state = 251, .external_lex_state = 6}, - [5447] = {.lex_state = 251, .external_lex_state = 6}, - [5448] = {.lex_state = 253, .external_lex_state = 6}, + [5441] = {.lex_state = 253, .external_lex_state = 6}, + [5442] = {.lex_state = 251, .external_lex_state = 6}, + [5443] = {.lex_state = 253, .external_lex_state = 6}, + [5444] = {.lex_state = 251, .external_lex_state = 6}, + [5445] = {.lex_state = 253, .external_lex_state = 6}, + [5446] = {.lex_state = 253, .external_lex_state = 6}, + [5447] = {.lex_state = 253, .external_lex_state = 6}, + [5448] = {.lex_state = 251, .external_lex_state = 6}, [5449] = {.lex_state = 253, .external_lex_state = 6}, [5450] = {.lex_state = 253, .external_lex_state = 6}, [5451] = {.lex_state = 253, .external_lex_state = 6}, [5452] = {.lex_state = 253, .external_lex_state = 6}, - [5453] = {.lex_state = 244, .external_lex_state = 4}, + [5453] = {.lex_state = 254, .external_lex_state = 6}, [5454] = {.lex_state = 253, .external_lex_state = 6}, [5455] = {.lex_state = 253, .external_lex_state = 6}, - [5456] = {.lex_state = 253, .external_lex_state = 6}, + [5456] = {.lex_state = 249, .external_lex_state = 6}, [5457] = {.lex_state = 251, .external_lex_state = 6}, [5458] = {.lex_state = 253, .external_lex_state = 6}, - [5459] = {.lex_state = 253, .external_lex_state = 6}, - [5460] = {.lex_state = 253, .external_lex_state = 6}, - [5461] = {.lex_state = 253, .external_lex_state = 6}, - [5462] = {.lex_state = 253, .external_lex_state = 6}, + [5459] = {.lex_state = 244, .external_lex_state = 4}, + [5460] = {.lex_state = 254, .external_lex_state = 6}, + [5461] = {.lex_state = 244, .external_lex_state = 4}, + [5462] = {.lex_state = 254, .external_lex_state = 6}, [5463] = {.lex_state = 253, .external_lex_state = 6}, - [5464] = {.lex_state = 251, .external_lex_state = 6}, - [5465] = {.lex_state = 251, .external_lex_state = 6}, - [5466] = {.lex_state = 251, .external_lex_state = 6}, - [5467] = {.lex_state = 251, .external_lex_state = 6}, + [5464] = {.lex_state = 254, .external_lex_state = 6}, + [5465] = {.lex_state = 244, .external_lex_state = 4}, + [5466] = {.lex_state = 244, .external_lex_state = 4}, + [5467] = {.lex_state = 244, .external_lex_state = 4}, [5468] = {.lex_state = 251, .external_lex_state = 6}, - [5469] = {.lex_state = 251, .external_lex_state = 6}, - [5470] = {.lex_state = 251, .external_lex_state = 6}, + [5469] = {.lex_state = 253, .external_lex_state = 6}, + [5470] = {.lex_state = 254, .external_lex_state = 6}, [5471] = {.lex_state = 244, .external_lex_state = 4}, - [5472] = {.lex_state = 251, .external_lex_state = 6}, + [5472] = {.lex_state = 253, .external_lex_state = 6}, [5473] = {.lex_state = 253, .external_lex_state = 6}, - [5474] = {.lex_state = 253, .external_lex_state = 6}, + [5474] = {.lex_state = 251, .external_lex_state = 6}, [5475] = {.lex_state = 251, .external_lex_state = 6}, - [5476] = {.lex_state = 251, .external_lex_state = 6}, - [5477] = {.lex_state = 251, .external_lex_state = 6}, - [5478] = {.lex_state = 251, .external_lex_state = 6}, - [5479] = {.lex_state = 253, .external_lex_state = 6}, - [5480] = {.lex_state = 253, .external_lex_state = 6}, - [5481] = {.lex_state = 253, .external_lex_state = 6}, - [5482] = {.lex_state = 254, .external_lex_state = 6}, - [5483] = {.lex_state = 253, .external_lex_state = 6}, - [5484] = {.lex_state = 253, .external_lex_state = 6}, + [5476] = {.lex_state = 253, .external_lex_state = 6}, + [5477] = {.lex_state = 254, .external_lex_state = 6}, + [5478] = {.lex_state = 244, .external_lex_state = 4}, + [5479] = {.lex_state = 251, .external_lex_state = 6}, + [5480] = {.lex_state = 251, .external_lex_state = 6}, + [5481] = {.lex_state = 251, .external_lex_state = 6}, + [5482] = {.lex_state = 251, .external_lex_state = 6}, + [5483] = {.lex_state = 254, .external_lex_state = 6}, + [5484] = {.lex_state = 251, .external_lex_state = 6}, [5485] = {.lex_state = 254, .external_lex_state = 6}, - [5486] = {.lex_state = 254, .external_lex_state = 6}, + [5486] = {.lex_state = 244, .external_lex_state = 4}, [5487] = {.lex_state = 254, .external_lex_state = 6}, - [5488] = {.lex_state = 253, .external_lex_state = 6}, - [5489] = {.lex_state = 254, .external_lex_state = 6}, - [5490] = {.lex_state = 254, .external_lex_state = 6}, - [5491] = {.lex_state = 254, .external_lex_state = 6}, - [5492] = {.lex_state = 249, .external_lex_state = 6}, - [5493] = {.lex_state = 249, .external_lex_state = 6}, + [5488] = {.lex_state = 254, .external_lex_state = 6}, + [5489] = {.lex_state = 251, .external_lex_state = 6}, + [5490] = {.lex_state = 253, .external_lex_state = 6}, + [5491] = {.lex_state = 253, .external_lex_state = 6}, + [5492] = {.lex_state = 254, .external_lex_state = 6}, + [5493] = {.lex_state = 254, .external_lex_state = 6}, [5494] = {.lex_state = 254, .external_lex_state = 6}, [5495] = {.lex_state = 254, .external_lex_state = 6}, [5496] = {.lex_state = 254, .external_lex_state = 6}, [5497] = {.lex_state = 254, .external_lex_state = 6}, [5498] = {.lex_state = 254, .external_lex_state = 6}, [5499] = {.lex_state = 254, .external_lex_state = 6}, - [5500] = {.lex_state = 254, .external_lex_state = 6}, + [5500] = {.lex_state = 249, .external_lex_state = 6}, [5501] = {.lex_state = 254, .external_lex_state = 6}, - [5502] = {.lex_state = 254, .external_lex_state = 6}, - [5503] = {.lex_state = 254, .external_lex_state = 6}, + [5502] = {.lex_state = 216, .external_lex_state = 6}, + [5503] = {.lex_state = 249, .external_lex_state = 6}, [5504] = {.lex_state = 254, .external_lex_state = 6}, [5505] = {.lex_state = 254, .external_lex_state = 6}, [5506] = {.lex_state = 254, .external_lex_state = 6}, @@ -40525,113 +40524,113 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5509] = {.lex_state = 254, .external_lex_state = 6}, [5510] = {.lex_state = 254, .external_lex_state = 6}, [5511] = {.lex_state = 254, .external_lex_state = 6}, - [5512] = {.lex_state = 216, .external_lex_state = 6}, + [5512] = {.lex_state = 254, .external_lex_state = 6}, [5513] = {.lex_state = 254, .external_lex_state = 6}, [5514] = {.lex_state = 254, .external_lex_state = 6}, - [5515] = {.lex_state = 249, .external_lex_state = 6}, + [5515] = {.lex_state = 254, .external_lex_state = 6}, [5516] = {.lex_state = 216, .external_lex_state = 6}, [5517] = {.lex_state = 249, .external_lex_state = 6}, - [5518] = {.lex_state = 251, .external_lex_state = 6}, + [5518] = {.lex_state = 249, .external_lex_state = 6}, [5519] = {.lex_state = 251, .external_lex_state = 6}, - [5520] = {.lex_state = 251, .external_lex_state = 6}, + [5520] = {.lex_state = 244, .external_lex_state = 4}, [5521] = {.lex_state = 244, .external_lex_state = 4}, - [5522] = {.lex_state = 251, .external_lex_state = 6}, - [5523] = {.lex_state = 251, .external_lex_state = 6}, + [5522] = {.lex_state = 244, .external_lex_state = 4}, + [5523] = {.lex_state = 244, .external_lex_state = 4}, [5524] = {.lex_state = 251, .external_lex_state = 6}, [5525] = {.lex_state = 244, .external_lex_state = 4}, [5526] = {.lex_state = 244, .external_lex_state = 4}, [5527] = {.lex_state = 244, .external_lex_state = 4}, - [5528] = {.lex_state = 244, .external_lex_state = 4}, - [5529] = {.lex_state = 251, .external_lex_state = 6}, - [5530] = {.lex_state = 286, .external_lex_state = 10}, - [5531] = {.lex_state = 251, .external_lex_state = 6}, + [5528] = {.lex_state = 251, .external_lex_state = 6}, + [5529] = {.lex_state = 244, .external_lex_state = 4}, + [5530] = {.lex_state = 251, .external_lex_state = 6}, + [5531] = {.lex_state = 286, .external_lex_state = 10}, [5532] = {.lex_state = 251, .external_lex_state = 6}, [5533] = {.lex_state = 244, .external_lex_state = 4}, - [5534] = {.lex_state = 244, .external_lex_state = 4}, + [5534] = {.lex_state = 251, .external_lex_state = 6}, [5535] = {.lex_state = 251, .external_lex_state = 6}, - [5536] = {.lex_state = 244, .external_lex_state = 4}, + [5536] = {.lex_state = 251, .external_lex_state = 6}, [5537] = {.lex_state = 286, .external_lex_state = 10}, [5538] = {.lex_state = 251, .external_lex_state = 6}, [5539] = {.lex_state = 251, .external_lex_state = 6}, - [5540] = {.lex_state = 251, .external_lex_state = 6}, + [5540] = {.lex_state = 244, .external_lex_state = 4}, [5541] = {.lex_state = 251, .external_lex_state = 6}, [5542] = {.lex_state = 251, .external_lex_state = 6}, [5543] = {.lex_state = 251, .external_lex_state = 6}, - [5544] = {.lex_state = 244, .external_lex_state = 4}, + [5544] = {.lex_state = 251, .external_lex_state = 6}, [5545] = {.lex_state = 251, .external_lex_state = 6}, - [5546] = {.lex_state = 249, .external_lex_state = 6}, + [5546] = {.lex_state = 251, .external_lex_state = 6}, [5547] = {.lex_state = 251, .external_lex_state = 6}, - [5548] = {.lex_state = 244, .external_lex_state = 4}, + [5548] = {.lex_state = 251, .external_lex_state = 6}, [5549] = {.lex_state = 244, .external_lex_state = 4}, [5550] = {.lex_state = 251, .external_lex_state = 6}, [5551] = {.lex_state = 251, .external_lex_state = 6}, [5552] = {.lex_state = 251, .external_lex_state = 6}, [5553] = {.lex_state = 251, .external_lex_state = 6}, [5554] = {.lex_state = 251, .external_lex_state = 6}, - [5555] = {.lex_state = 251, .external_lex_state = 6}, - [5556] = {.lex_state = 251, .external_lex_state = 6}, - [5557] = {.lex_state = 286, .external_lex_state = 10}, + [5555] = {.lex_state = 286, .external_lex_state = 10}, + [5556] = {.lex_state = 244, .external_lex_state = 4}, + [5557] = {.lex_state = 251, .external_lex_state = 6}, [5558] = {.lex_state = 251, .external_lex_state = 6}, [5559] = {.lex_state = 251, .external_lex_state = 6}, - [5560] = {.lex_state = 244, .external_lex_state = 4}, + [5560] = {.lex_state = 251, .external_lex_state = 6}, [5561] = {.lex_state = 251, .external_lex_state = 6}, - [5562] = {.lex_state = 251, .external_lex_state = 6}, - [5563] = {.lex_state = 244, .external_lex_state = 4}, + [5562] = {.lex_state = 244, .external_lex_state = 4}, + [5563] = {.lex_state = 251, .external_lex_state = 6}, [5564] = {.lex_state = 251, .external_lex_state = 6}, - [5565] = {.lex_state = 251, .external_lex_state = 6}, + [5565] = {.lex_state = 244, .external_lex_state = 4}, [5566] = {.lex_state = 251, .external_lex_state = 6}, - [5567] = {.lex_state = 251, .external_lex_state = 6}, - [5568] = {.lex_state = 251, .external_lex_state = 6}, + [5567] = {.lex_state = 244, .external_lex_state = 4}, + [5568] = {.lex_state = 244, .external_lex_state = 4}, [5569] = {.lex_state = 251, .external_lex_state = 6}, [5570] = {.lex_state = 251, .external_lex_state = 6}, - [5571] = {.lex_state = 244, .external_lex_state = 4}, + [5571] = {.lex_state = 251, .external_lex_state = 6}, [5572] = {.lex_state = 249, .external_lex_state = 6}, - [5573] = {.lex_state = 244, .external_lex_state = 4}, - [5574] = {.lex_state = 244, .external_lex_state = 4}, - [5575] = {.lex_state = 251, .external_lex_state = 6}, + [5573] = {.lex_state = 251, .external_lex_state = 6}, + [5574] = {.lex_state = 251, .external_lex_state = 6}, + [5575] = {.lex_state = 249, .external_lex_state = 6}, [5576] = {.lex_state = 251, .external_lex_state = 6}, - [5577] = {.lex_state = 249, .external_lex_state = 6}, + [5577] = {.lex_state = 251, .external_lex_state = 6}, [5578] = {.lex_state = 244, .external_lex_state = 4}, [5579] = {.lex_state = 298, .external_lex_state = 4}, - [5580] = {.lex_state = 249, .external_lex_state = 6}, - [5581] = {.lex_state = 249, .external_lex_state = 6}, - [5582] = {.lex_state = 249, .external_lex_state = 6}, - [5583] = {.lex_state = 298, .external_lex_state = 4}, - [5584] = {.lex_state = 298, .external_lex_state = 4}, + [5580] = {.lex_state = 249, .external_lex_state = 5}, + [5581] = {.lex_state = 249, .external_lex_state = 5}, + [5582] = {.lex_state = 298, .external_lex_state = 4}, + [5583] = {.lex_state = 244, .external_lex_state = 4}, + [5584] = {.lex_state = 249, .external_lex_state = 6}, [5585] = {.lex_state = 244, .external_lex_state = 4}, [5586] = {.lex_state = 244, .external_lex_state = 4}, - [5587] = {.lex_state = 244, .external_lex_state = 4}, + [5587] = {.lex_state = 298, .external_lex_state = 4}, [5588] = {.lex_state = 244, .external_lex_state = 4}, [5589] = {.lex_state = 244, .external_lex_state = 4}, [5590] = {.lex_state = 244, .external_lex_state = 4}, - [5591] = {.lex_state = 249, .external_lex_state = 5}, + [5591] = {.lex_state = 244, .external_lex_state = 4}, [5592] = {.lex_state = 244, .external_lex_state = 4}, - [5593] = {.lex_state = 298, .external_lex_state = 4}, - [5594] = {.lex_state = 244, .external_lex_state = 4}, + [5593] = {.lex_state = 244, .external_lex_state = 4}, + [5594] = {.lex_state = 249, .external_lex_state = 6}, [5595] = {.lex_state = 244, .external_lex_state = 4}, [5596] = {.lex_state = 244, .external_lex_state = 4}, - [5597] = {.lex_state = 249, .external_lex_state = 5}, + [5597] = {.lex_state = 244, .external_lex_state = 4}, [5598] = {.lex_state = 249, .external_lex_state = 6}, - [5599] = {.lex_state = 244, .external_lex_state = 4}, - [5600] = {.lex_state = 249, .external_lex_state = 5}, - [5601] = {.lex_state = 244, .external_lex_state = 4}, + [5599] = {.lex_state = 249, .external_lex_state = 6}, + [5600] = {.lex_state = 244, .external_lex_state = 4}, + [5601] = {.lex_state = 249, .external_lex_state = 6}, [5602] = {.lex_state = 244, .external_lex_state = 4}, - [5603] = {.lex_state = 244, .external_lex_state = 4}, - [5604] = {.lex_state = 244, .external_lex_state = 4}, - [5605] = {.lex_state = 249, .external_lex_state = 6}, - [5606] = {.lex_state = 249, .external_lex_state = 6}, - [5607] = {.lex_state = 249, .external_lex_state = 6}, - [5608] = {.lex_state = 286, .external_lex_state = 10}, + [5603] = {.lex_state = 249, .external_lex_state = 5}, + [5604] = {.lex_state = 249, .external_lex_state = 6}, + [5605] = {.lex_state = 244, .external_lex_state = 4}, + [5606] = {.lex_state = 298, .external_lex_state = 4}, + [5607] = {.lex_state = 286, .external_lex_state = 10}, + [5608] = {.lex_state = 249, .external_lex_state = 6}, [5609] = {.lex_state = 249, .external_lex_state = 6}, [5610] = {.lex_state = 249, .external_lex_state = 6}, - [5611] = {.lex_state = 249, .external_lex_state = 6}, - [5612] = {.lex_state = 286, .external_lex_state = 10}, + [5611] = {.lex_state = 286, .external_lex_state = 10}, + [5612] = {.lex_state = 249, .external_lex_state = 6}, [5613] = {.lex_state = 249, .external_lex_state = 6}, [5614] = {.lex_state = 249, .external_lex_state = 6}, [5615] = {.lex_state = 249, .external_lex_state = 6}, [5616] = {.lex_state = 249, .external_lex_state = 6}, [5617] = {.lex_state = 249, .external_lex_state = 6}, - [5618] = {.lex_state = 251, .external_lex_state = 6}, + [5618] = {.lex_state = 249, .external_lex_state = 6}, [5619] = {.lex_state = 251, .external_lex_state = 6}, [5620] = {.lex_state = 251, .external_lex_state = 6}, [5621] = {.lex_state = 251, .external_lex_state = 6}, @@ -40640,7 +40639,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5624] = {.lex_state = 251, .external_lex_state = 6}, [5625] = {.lex_state = 251, .external_lex_state = 6}, [5626] = {.lex_state = 251, .external_lex_state = 6}, - [5627] = {.lex_state = 286, .external_lex_state = 10}, + [5627] = {.lex_state = 251, .external_lex_state = 6}, [5628] = {.lex_state = 251, .external_lex_state = 6}, [5629] = {.lex_state = 251, .external_lex_state = 6}, [5630] = {.lex_state = 251, .external_lex_state = 6}, @@ -40668,7 +40667,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5652] = {.lex_state = 251, .external_lex_state = 6}, [5653] = {.lex_state = 251, .external_lex_state = 6}, [5654] = {.lex_state = 251, .external_lex_state = 6}, - [5655] = {.lex_state = 251, .external_lex_state = 6}, + [5655] = {.lex_state = 216, .external_lex_state = 6}, [5656] = {.lex_state = 251, .external_lex_state = 6}, [5657] = {.lex_state = 251, .external_lex_state = 6}, [5658] = {.lex_state = 251, .external_lex_state = 6}, @@ -40691,7 +40690,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5675] = {.lex_state = 251, .external_lex_state = 6}, [5676] = {.lex_state = 251, .external_lex_state = 6}, [5677] = {.lex_state = 251, .external_lex_state = 6}, - [5678] = {.lex_state = 216, .external_lex_state = 6}, + [5678] = {.lex_state = 251, .external_lex_state = 6}, [5679] = {.lex_state = 251, .external_lex_state = 6}, [5680] = {.lex_state = 251, .external_lex_state = 6}, [5681] = {.lex_state = 251, .external_lex_state = 6}, @@ -40702,8 +40701,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5686] = {.lex_state = 251, .external_lex_state = 6}, [5687] = {.lex_state = 251, .external_lex_state = 6}, [5688] = {.lex_state = 251, .external_lex_state = 6}, - [5689] = {.lex_state = 251, .external_lex_state = 6}, - [5690] = {.lex_state = 216, .external_lex_state = 6}, + [5689] = {.lex_state = 216, .external_lex_state = 6}, + [5690] = {.lex_state = 251, .external_lex_state = 6}, [5691] = {.lex_state = 251, .external_lex_state = 6}, [5692] = {.lex_state = 251, .external_lex_state = 6}, [5693] = {.lex_state = 251, .external_lex_state = 6}, @@ -40721,12 +40720,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5705] = {.lex_state = 251, .external_lex_state = 6}, [5706] = {.lex_state = 251, .external_lex_state = 6}, [5707] = {.lex_state = 251, .external_lex_state = 6}, - [5708] = {.lex_state = 251, .external_lex_state = 6}, + [5708] = {.lex_state = 216, .external_lex_state = 6}, [5709] = {.lex_state = 251, .external_lex_state = 6}, [5710] = {.lex_state = 251, .external_lex_state = 6}, [5711] = {.lex_state = 251, .external_lex_state = 6}, [5712] = {.lex_state = 251, .external_lex_state = 6}, - [5713] = {.lex_state = 251, .external_lex_state = 6}, + [5713] = {.lex_state = 249, .external_lex_state = 5}, [5714] = {.lex_state = 251, .external_lex_state = 6}, [5715] = {.lex_state = 251, .external_lex_state = 6}, [5716] = {.lex_state = 251, .external_lex_state = 6}, @@ -40743,7 +40742,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5727] = {.lex_state = 251, .external_lex_state = 6}, [5728] = {.lex_state = 251, .external_lex_state = 6}, [5729] = {.lex_state = 251, .external_lex_state = 6}, - [5730] = {.lex_state = 249, .external_lex_state = 5}, + [5730] = {.lex_state = 251, .external_lex_state = 6}, [5731] = {.lex_state = 251, .external_lex_state = 6}, [5732] = {.lex_state = 251, .external_lex_state = 6}, [5733] = {.lex_state = 251, .external_lex_state = 6}, @@ -40768,10 +40767,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5752] = {.lex_state = 251, .external_lex_state = 6}, [5753] = {.lex_state = 251, .external_lex_state = 6}, [5754] = {.lex_state = 251, .external_lex_state = 6}, - [5755] = {.lex_state = 251, .external_lex_state = 6}, + [5755] = {.lex_state = 249, .external_lex_state = 5}, [5756] = {.lex_state = 251, .external_lex_state = 6}, [5757] = {.lex_state = 251, .external_lex_state = 6}, - [5758] = {.lex_state = 249, .external_lex_state = 5}, + [5758] = {.lex_state = 251, .external_lex_state = 6}, [5759] = {.lex_state = 251, .external_lex_state = 6}, [5760] = {.lex_state = 251, .external_lex_state = 6}, [5761] = {.lex_state = 251, .external_lex_state = 6}, @@ -40779,7 +40778,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5763] = {.lex_state = 251, .external_lex_state = 6}, [5764] = {.lex_state = 251, .external_lex_state = 6}, [5765] = {.lex_state = 251, .external_lex_state = 6}, - [5766] = {.lex_state = 249, .external_lex_state = 5}, + [5766] = {.lex_state = 251, .external_lex_state = 6}, [5767] = {.lex_state = 251, .external_lex_state = 6}, [5768] = {.lex_state = 251, .external_lex_state = 6}, [5769] = {.lex_state = 251, .external_lex_state = 6}, @@ -40795,7 +40794,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5779] = {.lex_state = 251, .external_lex_state = 6}, [5780] = {.lex_state = 251, .external_lex_state = 6}, [5781] = {.lex_state = 251, .external_lex_state = 6}, - [5782] = {.lex_state = 216, .external_lex_state = 6}, + [5782] = {.lex_state = 251, .external_lex_state = 6}, [5783] = {.lex_state = 251, .external_lex_state = 6}, [5784] = {.lex_state = 251, .external_lex_state = 6}, [5785] = {.lex_state = 251, .external_lex_state = 6}, @@ -40803,7 +40802,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5787] = {.lex_state = 251, .external_lex_state = 6}, [5788] = {.lex_state = 251, .external_lex_state = 6}, [5789] = {.lex_state = 251, .external_lex_state = 6}, - [5790] = {.lex_state = 251, .external_lex_state = 6}, + [5790] = {.lex_state = 249, .external_lex_state = 5}, [5791] = {.lex_state = 251, .external_lex_state = 6}, [5792] = {.lex_state = 251, .external_lex_state = 6}, [5793] = {.lex_state = 251, .external_lex_state = 6}, @@ -40837,100 +40836,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5821] = {.lex_state = 251, .external_lex_state = 6}, [5822] = {.lex_state = 251, .external_lex_state = 6}, [5823] = {.lex_state = 251, .external_lex_state = 6}, - [5824] = {.lex_state = 251, .external_lex_state = 6}, + [5824] = {.lex_state = 286, .external_lex_state = 10}, [5825] = {.lex_state = 251, .external_lex_state = 6}, [5826] = {.lex_state = 251, .external_lex_state = 6}, [5827] = {.lex_state = 251, .external_lex_state = 6}, [5828] = {.lex_state = 251, .external_lex_state = 6}, [5829] = {.lex_state = 251, .external_lex_state = 6}, [5830] = {.lex_state = 251, .external_lex_state = 6}, - [5831] = {.lex_state = 304, .external_lex_state = 6}, + [5831] = {.lex_state = 251, .external_lex_state = 6}, [5832] = {.lex_state = 216, .external_lex_state = 6}, - [5833] = {.lex_state = 249, .external_lex_state = 5}, + [5833] = {.lex_state = 304, .external_lex_state = 6}, [5834] = {.lex_state = 249, .external_lex_state = 5}, [5835] = {.lex_state = 216, .external_lex_state = 6}, - [5836] = {.lex_state = 249, .external_lex_state = 5}, + [5836] = {.lex_state = 216, .external_lex_state = 6}, [5837] = {.lex_state = 262, .external_lex_state = 5}, - [5838] = {.lex_state = 249, .external_lex_state = 5}, - [5839] = {.lex_state = 249, .external_lex_state = 5}, - [5840] = {.lex_state = 249, .external_lex_state = 5}, - [5841] = {.lex_state = 216, .external_lex_state = 6}, + [5838] = {.lex_state = 216, .external_lex_state = 6}, + [5839] = {.lex_state = 286, .external_lex_state = 10}, + [5840] = {.lex_state = 216, .external_lex_state = 6}, + [5841] = {.lex_state = 249, .external_lex_state = 5}, [5842] = {.lex_state = 249, .external_lex_state = 5}, [5843] = {.lex_state = 286, .external_lex_state = 10}, - [5844] = {.lex_state = 249, .external_lex_state = 5}, - [5845] = {.lex_state = 216, .external_lex_state = 6}, - [5846] = {.lex_state = 304, .external_lex_state = 6}, - [5847] = {.lex_state = 304, .external_lex_state = 6}, - [5848] = {.lex_state = 216, .external_lex_state = 6}, - [5849] = {.lex_state = 216, .external_lex_state = 6}, - [5850] = {.lex_state = 262, .external_lex_state = 5}, + [5844] = {.lex_state = 286, .external_lex_state = 10}, + [5845] = {.lex_state = 249, .external_lex_state = 5}, + [5846] = {.lex_state = 249, .external_lex_state = 5}, + [5847] = {.lex_state = 249, .external_lex_state = 5}, + [5848] = {.lex_state = 249, .external_lex_state = 5}, + [5849] = {.lex_state = 249, .external_lex_state = 5}, + [5850] = {.lex_state = 304, .external_lex_state = 6}, [5851] = {.lex_state = 298, .external_lex_state = 4}, [5852] = {.lex_state = 286, .external_lex_state = 10}, - [5853] = {.lex_state = 216, .external_lex_state = 6}, - [5854] = {.lex_state = 249, .external_lex_state = 5}, - [5855] = {.lex_state = 286, .external_lex_state = 10}, - [5856] = {.lex_state = 286, .external_lex_state = 10}, - [5857] = {.lex_state = 286, .external_lex_state = 10}, - [5858] = {.lex_state = 249, .external_lex_state = 5}, - [5859] = {.lex_state = 304, .external_lex_state = 6}, - [5860] = {.lex_state = 1218, .external_lex_state = 5}, - [5861] = {.lex_state = 216, .external_lex_state = 6}, - [5862] = {.lex_state = 249, .external_lex_state = 6}, - [5863] = {.lex_state = 262, .external_lex_state = 5}, - [5864] = {.lex_state = 249, .external_lex_state = 6}, - [5865] = {.lex_state = 249, .external_lex_state = 6}, - [5866] = {.lex_state = 249, .external_lex_state = 6}, - [5867] = {.lex_state = 262, .external_lex_state = 5}, - [5868] = {.lex_state = 249, .external_lex_state = 5}, - [5869] = {.lex_state = 249, .external_lex_state = 6}, - [5870] = {.lex_state = 249, .external_lex_state = 6}, - [5871] = {.lex_state = 249, .external_lex_state = 6}, - [5872] = {.lex_state = 215, .external_lex_state = 6}, - [5873] = {.lex_state = 249, .external_lex_state = 6}, - [5874] = {.lex_state = 249, .external_lex_state = 6}, - [5875] = {.lex_state = 249, .external_lex_state = 6}, - [5876] = {.lex_state = 249, .external_lex_state = 6}, - [5877] = {.lex_state = 249, .external_lex_state = 6}, - [5878] = {.lex_state = 249, .external_lex_state = 6}, + [5853] = {.lex_state = 304, .external_lex_state = 6}, + [5854] = {.lex_state = 286, .external_lex_state = 10}, + [5855] = {.lex_state = 262, .external_lex_state = 5}, + [5856] = {.lex_state = 216, .external_lex_state = 6}, + [5857] = {.lex_state = 249, .external_lex_state = 5}, + [5858] = {.lex_state = 216, .external_lex_state = 6}, + [5859] = {.lex_state = 249, .external_lex_state = 5}, + [5860] = {.lex_state = 249, .external_lex_state = 6}, + [5861] = {.lex_state = 262, .external_lex_state = 5}, + [5862] = {.lex_state = 249, .external_lex_state = 5}, + [5863] = {.lex_state = 249, .external_lex_state = 5}, + [5864] = {.lex_state = 249, .external_lex_state = 5}, + [5865] = {.lex_state = 262, .external_lex_state = 5}, + [5866] = {.lex_state = 262, .external_lex_state = 5}, + [5867] = {.lex_state = 249, .external_lex_state = 5}, + [5868] = {.lex_state = 262, .external_lex_state = 5}, + [5869] = {.lex_state = 216, .external_lex_state = 6}, + [5870] = {.lex_state = 249, .external_lex_state = 5}, + [5871] = {.lex_state = 262, .external_lex_state = 5}, + [5872] = {.lex_state = 304, .external_lex_state = 6}, + [5873] = {.lex_state = 262, .external_lex_state = 5}, + [5874] = {.lex_state = 216, .external_lex_state = 6}, + [5875] = {.lex_state = 216, .external_lex_state = 6}, + [5876] = {.lex_state = 216, .external_lex_state = 6}, + [5877] = {.lex_state = 215, .external_lex_state = 6}, + [5878] = {.lex_state = 216, .external_lex_state = 6}, [5879] = {.lex_state = 249, .external_lex_state = 6}, - [5880] = {.lex_state = 249, .external_lex_state = 6}, + [5880] = {.lex_state = 249, .external_lex_state = 5}, [5881] = {.lex_state = 249, .external_lex_state = 6}, - [5882] = {.lex_state = 249, .external_lex_state = 5}, - [5883] = {.lex_state = 216, .external_lex_state = 6}, - [5884] = {.lex_state = 249, .external_lex_state = 6}, + [5882] = {.lex_state = 1218, .external_lex_state = 5}, + [5883] = {.lex_state = 249, .external_lex_state = 6}, + [5884] = {.lex_state = 249, .external_lex_state = 5}, [5885] = {.lex_state = 249, .external_lex_state = 6}, - [5886] = {.lex_state = 249, .external_lex_state = 5}, - [5887] = {.lex_state = 249, .external_lex_state = 5}, - [5888] = {.lex_state = 262, .external_lex_state = 5}, - [5889] = {.lex_state = 249, .external_lex_state = 5}, + [5886] = {.lex_state = 249, .external_lex_state = 6}, + [5887] = {.lex_state = 249, .external_lex_state = 6}, + [5888] = {.lex_state = 249, .external_lex_state = 6}, + [5889] = {.lex_state = 249, .external_lex_state = 6}, [5890] = {.lex_state = 249, .external_lex_state = 6}, - [5891] = {.lex_state = 216, .external_lex_state = 6}, - [5892] = {.lex_state = 249, .external_lex_state = 5}, + [5891] = {.lex_state = 249, .external_lex_state = 6}, + [5892] = {.lex_state = 249, .external_lex_state = 6}, [5893] = {.lex_state = 249, .external_lex_state = 6}, [5894] = {.lex_state = 249, .external_lex_state = 6}, - [5895] = {.lex_state = 262, .external_lex_state = 5}, + [5895] = {.lex_state = 249, .external_lex_state = 6}, [5896] = {.lex_state = 249, .external_lex_state = 6}, - [5897] = {.lex_state = 262, .external_lex_state = 5}, - [5898] = {.lex_state = 262, .external_lex_state = 5}, + [5897] = {.lex_state = 249, .external_lex_state = 6}, + [5898] = {.lex_state = 249, .external_lex_state = 6}, [5899] = {.lex_state = 249, .external_lex_state = 6}, - [5900] = {.lex_state = 249, .external_lex_state = 5}, + [5900] = {.lex_state = 249, .external_lex_state = 6}, [5901] = {.lex_state = 249, .external_lex_state = 6}, - [5902] = {.lex_state = 216, .external_lex_state = 6}, - [5903] = {.lex_state = 262, .external_lex_state = 5}, + [5902] = {.lex_state = 249, .external_lex_state = 6}, + [5903] = {.lex_state = 249, .external_lex_state = 6}, [5904] = {.lex_state = 262, .external_lex_state = 5}, - [5905] = {.lex_state = 249, .external_lex_state = 5}, + [5905] = {.lex_state = 249, .external_lex_state = 6}, [5906] = {.lex_state = 249, .external_lex_state = 5}, - [5907] = {.lex_state = 216, .external_lex_state = 6}, - [5908] = {.lex_state = 249, .external_lex_state = 6}, + [5907] = {.lex_state = 249, .external_lex_state = 5}, + [5908] = {.lex_state = 249, .external_lex_state = 5}, [5909] = {.lex_state = 249, .external_lex_state = 6}, - [5910] = {.lex_state = 249, .external_lex_state = 5}, - [5911] = {.lex_state = 249, .external_lex_state = 5}, - [5912] = {.lex_state = 249, .external_lex_state = 6}, + [5910] = {.lex_state = 249, .external_lex_state = 6}, + [5911] = {.lex_state = 262, .external_lex_state = 5}, + [5912] = {.lex_state = 249, .external_lex_state = 5}, [5913] = {.lex_state = 249, .external_lex_state = 6}, [5914] = {.lex_state = 1218, .external_lex_state = 5}, [5915] = {.lex_state = 1218, .external_lex_state = 5}, [5916] = {.lex_state = 1218, .external_lex_state = 5}, - [5917] = {.lex_state = 262, .external_lex_state = 5}, + [5917] = {.lex_state = 1218, .external_lex_state = 5}, [5918] = {.lex_state = 1218, .external_lex_state = 5}, [5919] = {.lex_state = 1218, .external_lex_state = 5}, [5920] = {.lex_state = 1218, .external_lex_state = 5}, @@ -40938,38 +40937,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5922] = {.lex_state = 1218, .external_lex_state = 5}, [5923] = {.lex_state = 1218, .external_lex_state = 5}, [5924] = {.lex_state = 1218, .external_lex_state = 5}, - [5925] = {.lex_state = 298, .external_lex_state = 4}, + [5925] = {.lex_state = 262, .external_lex_state = 6}, [5926] = {.lex_state = 1218, .external_lex_state = 5}, [5927] = {.lex_state = 1218, .external_lex_state = 5}, - [5928] = {.lex_state = 1218, .external_lex_state = 5}, + [5928] = {.lex_state = 262, .external_lex_state = 6}, [5929] = {.lex_state = 1218, .external_lex_state = 5}, [5930] = {.lex_state = 1218, .external_lex_state = 5}, [5931] = {.lex_state = 1218, .external_lex_state = 5}, [5932] = {.lex_state = 1218, .external_lex_state = 5}, - [5933] = {.lex_state = 1218, .external_lex_state = 5}, + [5933] = {.lex_state = 262, .external_lex_state = 6}, [5934] = {.lex_state = 1218, .external_lex_state = 5}, - [5935] = {.lex_state = 262, .external_lex_state = 5}, - [5936] = {.lex_state = 262, .external_lex_state = 6}, - [5937] = {.lex_state = 262, .external_lex_state = 6}, + [5935] = {.lex_state = 1218, .external_lex_state = 5}, + [5936] = {.lex_state = 1218, .external_lex_state = 5}, + [5937] = {.lex_state = 1218, .external_lex_state = 5}, [5938] = {.lex_state = 1218, .external_lex_state = 5}, [5939] = {.lex_state = 1218, .external_lex_state = 5}, [5940] = {.lex_state = 1218, .external_lex_state = 5}, [5941] = {.lex_state = 1218, .external_lex_state = 5}, - [5942] = {.lex_state = 262, .external_lex_state = 6}, - [5943] = {.lex_state = 262, .external_lex_state = 6}, + [5942] = {.lex_state = 1218, .external_lex_state = 5}, + [5943] = {.lex_state = 1218, .external_lex_state = 5}, [5944] = {.lex_state = 1218, .external_lex_state = 5}, - [5945] = {.lex_state = 1218, .external_lex_state = 5}, + [5945] = {.lex_state = 262, .external_lex_state = 6}, [5946] = {.lex_state = 1218, .external_lex_state = 5}, [5947] = {.lex_state = 1218, .external_lex_state = 5}, [5948] = {.lex_state = 1218, .external_lex_state = 5}, [5949] = {.lex_state = 1218, .external_lex_state = 5}, [5950] = {.lex_state = 1218, .external_lex_state = 5}, [5951] = {.lex_state = 1218, .external_lex_state = 5}, - [5952] = {.lex_state = 298, .external_lex_state = 4}, - [5953] = {.lex_state = 249, .external_lex_state = 6}, - [5954] = {.lex_state = 249, .external_lex_state = 6}, + [5952] = {.lex_state = 262, .external_lex_state = 5}, + [5953] = {.lex_state = 1218, .external_lex_state = 5}, + [5954] = {.lex_state = 1218, .external_lex_state = 5}, [5955] = {.lex_state = 1218, .external_lex_state = 5}, - [5956] = {.lex_state = 249, .external_lex_state = 6}, + [5956] = {.lex_state = 1218, .external_lex_state = 5}, [5957] = {.lex_state = 1218, .external_lex_state = 5}, [5958] = {.lex_state = 1218, .external_lex_state = 5}, [5959] = {.lex_state = 1218, .external_lex_state = 5}, @@ -41002,7 +41001,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5986] = {.lex_state = 1218, .external_lex_state = 5}, [5987] = {.lex_state = 1218, .external_lex_state = 5}, [5988] = {.lex_state = 1218, .external_lex_state = 5}, - [5989] = {.lex_state = 1218, .external_lex_state = 5}, + [5989] = {.lex_state = 1218, .external_lex_state = 11}, [5990] = {.lex_state = 1218, .external_lex_state = 5}, [5991] = {.lex_state = 1218, .external_lex_state = 5}, [5992] = {.lex_state = 1218, .external_lex_state = 5}, @@ -41013,12 +41012,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5997] = {.lex_state = 1218, .external_lex_state = 5}, [5998] = {.lex_state = 1218, .external_lex_state = 5}, [5999] = {.lex_state = 1218, .external_lex_state = 5}, - [6000] = {.lex_state = 262, .external_lex_state = 6}, - [6001] = {.lex_state = 262, .external_lex_state = 6}, - [6002] = {.lex_state = 298, .external_lex_state = 4}, + [6000] = {.lex_state = 1218, .external_lex_state = 5}, + [6001] = {.lex_state = 1218, .external_lex_state = 5}, + [6002] = {.lex_state = 1218, .external_lex_state = 5}, [6003] = {.lex_state = 1218, .external_lex_state = 5}, - [6004] = {.lex_state = 1218, .external_lex_state = 5}, - [6005] = {.lex_state = 1218, .external_lex_state = 5}, + [6004] = {.lex_state = 249, .external_lex_state = 6}, + [6005] = {.lex_state = 249, .external_lex_state = 6}, [6006] = {.lex_state = 1218, .external_lex_state = 5}, [6007] = {.lex_state = 1218, .external_lex_state = 5}, [6008] = {.lex_state = 1218, .external_lex_state = 5}, @@ -41026,11 +41025,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6010] = {.lex_state = 1218, .external_lex_state = 5}, [6011] = {.lex_state = 1218, .external_lex_state = 5}, [6012] = {.lex_state = 1218, .external_lex_state = 5}, - [6013] = {.lex_state = 1218, .external_lex_state = 5}, + [6013] = {.lex_state = 249, .external_lex_state = 6}, [6014] = {.lex_state = 1218, .external_lex_state = 5}, - [6015] = {.lex_state = 215, .external_lex_state = 6}, + [6015] = {.lex_state = 1218, .external_lex_state = 5}, [6016] = {.lex_state = 1218, .external_lex_state = 5}, - [6017] = {.lex_state = 1218, .external_lex_state = 5}, + [6017] = {.lex_state = 249, .external_lex_state = 6}, [6018] = {.lex_state = 1218, .external_lex_state = 5}, [6019] = {.lex_state = 1218, .external_lex_state = 5}, [6020] = {.lex_state = 1218, .external_lex_state = 5}, @@ -41040,39 +41039,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6024] = {.lex_state = 1218, .external_lex_state = 5}, [6025] = {.lex_state = 1218, .external_lex_state = 5}, [6026] = {.lex_state = 1218, .external_lex_state = 5}, - [6027] = {.lex_state = 298, .external_lex_state = 4}, - [6028] = {.lex_state = 1218, .external_lex_state = 6}, + [6027] = {.lex_state = 1218, .external_lex_state = 5}, + [6028] = {.lex_state = 1218, .external_lex_state = 5}, [6029] = {.lex_state = 1218, .external_lex_state = 5}, [6030] = {.lex_state = 1218, .external_lex_state = 5}, [6031] = {.lex_state = 1218, .external_lex_state = 5}, [6032] = {.lex_state = 1218, .external_lex_state = 5}, - [6033] = {.lex_state = 1218, .external_lex_state = 5}, - [6034] = {.lex_state = 1218, .external_lex_state = 5}, + [6033] = {.lex_state = 249, .external_lex_state = 6}, + [6034] = {.lex_state = 262, .external_lex_state = 6}, [6035] = {.lex_state = 1218, .external_lex_state = 5}, [6036] = {.lex_state = 1218, .external_lex_state = 5}, - [6037] = {.lex_state = 1218, .external_lex_state = 5}, + [6037] = {.lex_state = 262, .external_lex_state = 6}, [6038] = {.lex_state = 1218, .external_lex_state = 5}, - [6039] = {.lex_state = 1218, .external_lex_state = 5}, - [6040] = {.lex_state = 1218, .external_lex_state = 5}, - [6041] = {.lex_state = 1218, .external_lex_state = 5}, - [6042] = {.lex_state = 1218, .external_lex_state = 5}, + [6039] = {.lex_state = 249, .external_lex_state = 6}, + [6040] = {.lex_state = 298, .external_lex_state = 4}, + [6041] = {.lex_state = 262, .external_lex_state = 6}, + [6042] = {.lex_state = 262, .external_lex_state = 6}, [6043] = {.lex_state = 1218, .external_lex_state = 5}, - [6044] = {.lex_state = 249, .external_lex_state = 6}, + [6044] = {.lex_state = 1218, .external_lex_state = 5}, [6045] = {.lex_state = 1218, .external_lex_state = 5}, [6046] = {.lex_state = 1218, .external_lex_state = 5}, [6047] = {.lex_state = 1218, .external_lex_state = 5}, [6048] = {.lex_state = 1218, .external_lex_state = 5}, - [6049] = {.lex_state = 1218, .external_lex_state = 5}, + [6049] = {.lex_state = 249, .external_lex_state = 6}, [6050] = {.lex_state = 1218, .external_lex_state = 5}, - [6051] = {.lex_state = 262, .external_lex_state = 6}, - [6052] = {.lex_state = 1218, .external_lex_state = 5}, + [6051] = {.lex_state = 1218, .external_lex_state = 5}, + [6052] = {.lex_state = 1218, .external_lex_state = 6}, [6053] = {.lex_state = 1218, .external_lex_state = 5}, [6054] = {.lex_state = 1218, .external_lex_state = 5}, [6055] = {.lex_state = 1218, .external_lex_state = 5}, [6056] = {.lex_state = 1218, .external_lex_state = 5}, - [6057] = {.lex_state = 1218, .external_lex_state = 5}, - [6058] = {.lex_state = 262, .external_lex_state = 6}, - [6059] = {.lex_state = 1218, .external_lex_state = 5}, + [6057] = {.lex_state = 298, .external_lex_state = 4}, + [6058] = {.lex_state = 262, .external_lex_state = 5}, + [6059] = {.lex_state = 262, .external_lex_state = 6}, [6060] = {.lex_state = 1218, .external_lex_state = 5}, [6061] = {.lex_state = 1218, .external_lex_state = 5}, [6062] = {.lex_state = 1218, .external_lex_state = 5}, @@ -41091,1214 +41090,1214 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6075] = {.lex_state = 1218, .external_lex_state = 5}, [6076] = {.lex_state = 1218, .external_lex_state = 5}, [6077] = {.lex_state = 1218, .external_lex_state = 5}, - [6078] = {.lex_state = 1218, .external_lex_state = 6}, - [6079] = {.lex_state = 1218, .external_lex_state = 6}, - [6080] = {.lex_state = 249, .external_lex_state = 6}, - [6081] = {.lex_state = 249, .external_lex_state = 6}, - [6082] = {.lex_state = 298, .external_lex_state = 4}, + [6078] = {.lex_state = 249, .external_lex_state = 6}, + [6079] = {.lex_state = 1218, .external_lex_state = 5}, + [6080] = {.lex_state = 1218, .external_lex_state = 5}, + [6081] = {.lex_state = 262, .external_lex_state = 6}, + [6082] = {.lex_state = 1218, .external_lex_state = 5}, [6083] = {.lex_state = 1218, .external_lex_state = 5}, - [6084] = {.lex_state = 249, .external_lex_state = 5}, + [6084] = {.lex_state = 1218, .external_lex_state = 5}, [6085] = {.lex_state = 1218, .external_lex_state = 5}, - [6086] = {.lex_state = 1218, .external_lex_state = 5}, - [6087] = {.lex_state = 262, .external_lex_state = 5}, + [6086] = {.lex_state = 1218, .external_lex_state = 6}, + [6087] = {.lex_state = 1218, .external_lex_state = 5}, [6088] = {.lex_state = 1218, .external_lex_state = 5}, [6089] = {.lex_state = 1218, .external_lex_state = 5}, [6090] = {.lex_state = 1218, .external_lex_state = 5}, - [6091] = {.lex_state = 1218, .external_lex_state = 5}, - [6092] = {.lex_state = 262, .external_lex_state = 6}, - [6093] = {.lex_state = 262, .external_lex_state = 6}, - [6094] = {.lex_state = 1218, .external_lex_state = 5}, + [6091] = {.lex_state = 249, .external_lex_state = 5}, + [6092] = {.lex_state = 298, .external_lex_state = 4}, + [6093] = {.lex_state = 1218, .external_lex_state = 6}, + [6094] = {.lex_state = 298, .external_lex_state = 4}, [6095] = {.lex_state = 1218, .external_lex_state = 5}, [6096] = {.lex_state = 1218, .external_lex_state = 5}, [6097] = {.lex_state = 1218, .external_lex_state = 5}, - [6098] = {.lex_state = 262, .external_lex_state = 6}, - [6099] = {.lex_state = 262, .external_lex_state = 6}, - [6100] = {.lex_state = 1218, .external_lex_state = 11}, + [6098] = {.lex_state = 1218, .external_lex_state = 5}, + [6099] = {.lex_state = 1218, .external_lex_state = 5}, + [6100] = {.lex_state = 262, .external_lex_state = 6}, [6101] = {.lex_state = 1218, .external_lex_state = 5}, [6102] = {.lex_state = 1218, .external_lex_state = 5}, [6103] = {.lex_state = 1218, .external_lex_state = 5}, - [6104] = {.lex_state = 1218, .external_lex_state = 5}, + [6104] = {.lex_state = 262, .external_lex_state = 6}, [6105] = {.lex_state = 1218, .external_lex_state = 5}, [6106] = {.lex_state = 1218, .external_lex_state = 5}, - [6107] = {.lex_state = 1218, .external_lex_state = 5}, - [6108] = {.lex_state = 1218, .external_lex_state = 5}, - [6109] = {.lex_state = 1218, .external_lex_state = 5}, + [6107] = {.lex_state = 298, .external_lex_state = 4}, + [6108] = {.lex_state = 262, .external_lex_state = 5}, + [6109] = {.lex_state = 215, .external_lex_state = 6}, [6110] = {.lex_state = 262, .external_lex_state = 5}, [6111] = {.lex_state = 1218, .external_lex_state = 5}, [6112] = {.lex_state = 1218, .external_lex_state = 5}, - [6113] = {.lex_state = 249, .external_lex_state = 6}, + [6113] = {.lex_state = 1218, .external_lex_state = 5}, [6114] = {.lex_state = 1218, .external_lex_state = 5}, - [6115] = {.lex_state = 98, .external_lex_state = 6}, - [6116] = {.lex_state = 1218, .external_lex_state = 5}, + [6115] = {.lex_state = 1218, .external_lex_state = 5}, + [6116] = {.lex_state = 1218, .external_lex_state = 6}, [6117] = {.lex_state = 98, .external_lex_state = 6}, - [6118] = {.lex_state = 1218, .external_lex_state = 6}, - [6119] = {.lex_state = 1218, .external_lex_state = 5}, - [6120] = {.lex_state = 1218, .external_lex_state = 5}, - [6121] = {.lex_state = 1218, .external_lex_state = 5}, - [6122] = {.lex_state = 249, .external_lex_state = 5}, - [6123] = {.lex_state = 1218, .external_lex_state = 5}, - [6124] = {.lex_state = 1218, .external_lex_state = 5}, + [6118] = {.lex_state = 98, .external_lex_state = 6}, + [6119] = {.lex_state = 98, .external_lex_state = 6}, + [6120] = {.lex_state = 98, .external_lex_state = 6}, + [6121] = {.lex_state = 98, .external_lex_state = 6}, + [6122] = {.lex_state = 98, .external_lex_state = 6}, + [6123] = {.lex_state = 98, .external_lex_state = 6}, + [6124] = {.lex_state = 98, .external_lex_state = 6}, [6125] = {.lex_state = 98, .external_lex_state = 6}, - [6126] = {.lex_state = 1218, .external_lex_state = 5}, - [6127] = {.lex_state = 1218, .external_lex_state = 5}, - [6128] = {.lex_state = 1218, .external_lex_state = 5}, - [6129] = {.lex_state = 1218, .external_lex_state = 5}, - [6130] = {.lex_state = 1218, .external_lex_state = 5}, - [6131] = {.lex_state = 1218, .external_lex_state = 5}, - [6132] = {.lex_state = 1218, .external_lex_state = 5}, - [6133] = {.lex_state = 262, .external_lex_state = 6}, - [6134] = {.lex_state = 1218, .external_lex_state = 5}, - [6135] = {.lex_state = 1218, .external_lex_state = 5}, + [6126] = {.lex_state = 98, .external_lex_state = 6}, + [6127] = {.lex_state = 98, .external_lex_state = 6}, + [6128] = {.lex_state = 98, .external_lex_state = 6}, + [6129] = {.lex_state = 98, .external_lex_state = 6}, + [6130] = {.lex_state = 98, .external_lex_state = 6}, + [6131] = {.lex_state = 98, .external_lex_state = 6}, + [6132] = {.lex_state = 98, .external_lex_state = 6}, + [6133] = {.lex_state = 98, .external_lex_state = 6}, + [6134] = {.lex_state = 98, .external_lex_state = 6}, + [6135] = {.lex_state = 98, .external_lex_state = 6}, [6136] = {.lex_state = 98, .external_lex_state = 6}, - [6137] = {.lex_state = 1218, .external_lex_state = 5}, + [6137] = {.lex_state = 98, .external_lex_state = 6}, [6138] = {.lex_state = 98, .external_lex_state = 6}, - [6139] = {.lex_state = 1218, .external_lex_state = 5}, - [6140] = {.lex_state = 249, .external_lex_state = 5}, + [6139] = {.lex_state = 98, .external_lex_state = 6}, + [6140] = {.lex_state = 98, .external_lex_state = 6}, [6141] = {.lex_state = 98, .external_lex_state = 6}, - [6142] = {.lex_state = 1218, .external_lex_state = 5}, - [6143] = {.lex_state = 1218, .external_lex_state = 5}, + [6142] = {.lex_state = 98, .external_lex_state = 6}, + [6143] = {.lex_state = 98, .external_lex_state = 6}, [6144] = {.lex_state = 1218, .external_lex_state = 5}, - [6145] = {.lex_state = 98, .external_lex_state = 6}, - [6146] = {.lex_state = 1218, .external_lex_state = 5}, - [6147] = {.lex_state = 1218, .external_lex_state = 5}, + [6145] = {.lex_state = 1218, .external_lex_state = 5}, + [6146] = {.lex_state = 1218, .external_lex_state = 6}, + [6147] = {.lex_state = 1218, .external_lex_state = 6}, [6148] = {.lex_state = 1218, .external_lex_state = 5}, [6149] = {.lex_state = 1218, .external_lex_state = 5}, [6150] = {.lex_state = 1218, .external_lex_state = 5}, [6151] = {.lex_state = 1218, .external_lex_state = 5}, [6152] = {.lex_state = 98, .external_lex_state = 6}, - [6153] = {.lex_state = 98, .external_lex_state = 6}, + [6153] = {.lex_state = 1218, .external_lex_state = 5}, [6154] = {.lex_state = 1218, .external_lex_state = 5}, - [6155] = {.lex_state = 253, .external_lex_state = 6}, - [6156] = {.lex_state = 98, .external_lex_state = 6}, - [6157] = {.lex_state = 98, .external_lex_state = 6}, + [6155] = {.lex_state = 1218, .external_lex_state = 5}, + [6156] = {.lex_state = 249, .external_lex_state = 6}, + [6157] = {.lex_state = 253, .external_lex_state = 6}, [6158] = {.lex_state = 98, .external_lex_state = 6}, [6159] = {.lex_state = 1218, .external_lex_state = 5}, - [6160] = {.lex_state = 98, .external_lex_state = 6}, - [6161] = {.lex_state = 1218, .external_lex_state = 6}, - [6162] = {.lex_state = 262, .external_lex_state = 6}, - [6163] = {.lex_state = 253, .external_lex_state = 6}, - [6164] = {.lex_state = 249, .external_lex_state = 6}, - [6165] = {.lex_state = 98, .external_lex_state = 6}, - [6166] = {.lex_state = 98, .external_lex_state = 6}, - [6167] = {.lex_state = 1218, .external_lex_state = 5}, + [6160] = {.lex_state = 1218, .external_lex_state = 5}, + [6161] = {.lex_state = 249, .external_lex_state = 6}, + [6162] = {.lex_state = 1218, .external_lex_state = 5}, + [6163] = {.lex_state = 1218, .external_lex_state = 5}, + [6164] = {.lex_state = 262, .external_lex_state = 4}, + [6165] = {.lex_state = 1218, .external_lex_state = 5}, + [6166] = {.lex_state = 262, .external_lex_state = 6}, + [6167] = {.lex_state = 98, .external_lex_state = 6}, [6168] = {.lex_state = 98, .external_lex_state = 6}, - [6169] = {.lex_state = 98, .external_lex_state = 6}, - [6170] = {.lex_state = 98, .external_lex_state = 6}, - [6171] = {.lex_state = 98, .external_lex_state = 6}, - [6172] = {.lex_state = 98, .external_lex_state = 6}, + [6169] = {.lex_state = 262, .external_lex_state = 6}, + [6170] = {.lex_state = 1218, .external_lex_state = 5}, + [6171] = {.lex_state = 1218, .external_lex_state = 5}, + [6172] = {.lex_state = 253, .external_lex_state = 6}, [6173] = {.lex_state = 98, .external_lex_state = 6}, - [6174] = {.lex_state = 98, .external_lex_state = 6}, - [6175] = {.lex_state = 98, .external_lex_state = 6}, - [6176] = {.lex_state = 98, .external_lex_state = 6}, - [6177] = {.lex_state = 98, .external_lex_state = 6}, - [6178] = {.lex_state = 98, .external_lex_state = 6}, - [6179] = {.lex_state = 98, .external_lex_state = 6}, + [6174] = {.lex_state = 1218, .external_lex_state = 5}, + [6175] = {.lex_state = 1218, .external_lex_state = 5}, + [6176] = {.lex_state = 1218, .external_lex_state = 5}, + [6177] = {.lex_state = 249, .external_lex_state = 5}, + [6178] = {.lex_state = 1218, .external_lex_state = 5}, + [6179] = {.lex_state = 1218, .external_lex_state = 5}, [6180] = {.lex_state = 98, .external_lex_state = 6}, - [6181] = {.lex_state = 98, .external_lex_state = 6}, - [6182] = {.lex_state = 98, .external_lex_state = 6}, - [6183] = {.lex_state = 98, .external_lex_state = 6}, + [6181] = {.lex_state = 1218, .external_lex_state = 5}, + [6182] = {.lex_state = 1218, .external_lex_state = 5}, + [6183] = {.lex_state = 1218, .external_lex_state = 5}, [6184] = {.lex_state = 98, .external_lex_state = 6}, - [6185] = {.lex_state = 98, .external_lex_state = 6}, - [6186] = {.lex_state = 1218, .external_lex_state = 5}, - [6187] = {.lex_state = 1218, .external_lex_state = 5}, + [6185] = {.lex_state = 1218, .external_lex_state = 5}, + [6186] = {.lex_state = 98, .external_lex_state = 6}, + [6187] = {.lex_state = 98, .external_lex_state = 6}, [6188] = {.lex_state = 98, .external_lex_state = 6}, - [6189] = {.lex_state = 98, .external_lex_state = 6}, - [6190] = {.lex_state = 98, .external_lex_state = 6}, - [6191] = {.lex_state = 98, .external_lex_state = 6}, - [6192] = {.lex_state = 98, .external_lex_state = 6}, - [6193] = {.lex_state = 98, .external_lex_state = 6}, - [6194] = {.lex_state = 98, .external_lex_state = 6}, - [6195] = {.lex_state = 98, .external_lex_state = 6}, - [6196] = {.lex_state = 1218, .external_lex_state = 6}, - [6197] = {.lex_state = 262, .external_lex_state = 4}, - [6198] = {.lex_state = 1218, .external_lex_state = 5}, + [6189] = {.lex_state = 1218, .external_lex_state = 5}, + [6190] = {.lex_state = 262, .external_lex_state = 6}, + [6191] = {.lex_state = 249, .external_lex_state = 6}, + [6192] = {.lex_state = 249, .external_lex_state = 5}, + [6193] = {.lex_state = 1218, .external_lex_state = 5}, + [6194] = {.lex_state = 1218, .external_lex_state = 5}, + [6195] = {.lex_state = 253, .external_lex_state = 6}, + [6196] = {.lex_state = 1218, .external_lex_state = 5}, + [6197] = {.lex_state = 249, .external_lex_state = 5}, + [6198] = {.lex_state = 98, .external_lex_state = 6}, [6199] = {.lex_state = 1218, .external_lex_state = 5}, - [6200] = {.lex_state = 1218, .external_lex_state = 5}, - [6201] = {.lex_state = 262, .external_lex_state = 5}, - [6202] = {.lex_state = 1218, .external_lex_state = 5}, - [6203] = {.lex_state = 1218, .external_lex_state = 5}, - [6204] = {.lex_state = 1218, .external_lex_state = 5}, - [6205] = {.lex_state = 98, .external_lex_state = 6}, + [6200] = {.lex_state = 98, .external_lex_state = 6}, + [6201] = {.lex_state = 1218, .external_lex_state = 6}, + [6202] = {.lex_state = 249, .external_lex_state = 5}, + [6203] = {.lex_state = 98, .external_lex_state = 6}, + [6204] = {.lex_state = 98, .external_lex_state = 6}, + [6205] = {.lex_state = 1218, .external_lex_state = 5}, [6206] = {.lex_state = 1218, .external_lex_state = 5}, - [6207] = {.lex_state = 299, .external_lex_state = 6}, - [6208] = {.lex_state = 1218, .external_lex_state = 5}, + [6207] = {.lex_state = 1218, .external_lex_state = 5}, + [6208] = {.lex_state = 262, .external_lex_state = 6}, [6209] = {.lex_state = 1218, .external_lex_state = 5}, - [6210] = {.lex_state = 98, .external_lex_state = 6}, - [6211] = {.lex_state = 262, .external_lex_state = 4}, - [6212] = {.lex_state = 262, .external_lex_state = 6}, + [6210] = {.lex_state = 1218, .external_lex_state = 5}, + [6211] = {.lex_state = 1218, .external_lex_state = 5}, + [6212] = {.lex_state = 249, .external_lex_state = 5}, [6213] = {.lex_state = 1218, .external_lex_state = 5}, [6214] = {.lex_state = 1218, .external_lex_state = 5}, - [6215] = {.lex_state = 1218, .external_lex_state = 5}, + [6215] = {.lex_state = 262, .external_lex_state = 6}, [6216] = {.lex_state = 1218, .external_lex_state = 5}, [6217] = {.lex_state = 1218, .external_lex_state = 5}, [6218] = {.lex_state = 1218, .external_lex_state = 5}, - [6219] = {.lex_state = 253, .external_lex_state = 6}, - [6220] = {.lex_state = 249, .external_lex_state = 6}, - [6221] = {.lex_state = 1218, .external_lex_state = 5}, - [6222] = {.lex_state = 98, .external_lex_state = 6}, - [6223] = {.lex_state = 249, .external_lex_state = 5}, - [6224] = {.lex_state = 262, .external_lex_state = 6}, - [6225] = {.lex_state = 1218, .external_lex_state = 6}, - [6226] = {.lex_state = 1218, .external_lex_state = 5}, + [6219] = {.lex_state = 1218, .external_lex_state = 5}, + [6220] = {.lex_state = 1218, .external_lex_state = 5}, + [6221] = {.lex_state = 98, .external_lex_state = 6}, + [6222] = {.lex_state = 1218, .external_lex_state = 5}, + [6223] = {.lex_state = 253, .external_lex_state = 6}, + [6224] = {.lex_state = 1218, .external_lex_state = 6}, + [6225] = {.lex_state = 1218, .external_lex_state = 5}, + [6226] = {.lex_state = 299, .external_lex_state = 6}, [6227] = {.lex_state = 1218, .external_lex_state = 5}, [6228] = {.lex_state = 1218, .external_lex_state = 5}, - [6229] = {.lex_state = 1218, .external_lex_state = 5}, - [6230] = {.lex_state = 1218, .external_lex_state = 6}, + [6229] = {.lex_state = 98, .external_lex_state = 6}, + [6230] = {.lex_state = 1218, .external_lex_state = 5}, [6231] = {.lex_state = 1218, .external_lex_state = 5}, - [6232] = {.lex_state = 1218, .external_lex_state = 5}, + [6232] = {.lex_state = 262, .external_lex_state = 5}, [6233] = {.lex_state = 1218, .external_lex_state = 5}, [6234] = {.lex_state = 98, .external_lex_state = 6}, - [6235] = {.lex_state = 253, .external_lex_state = 6}, + [6235] = {.lex_state = 262, .external_lex_state = 4}, [6236] = {.lex_state = 1218, .external_lex_state = 5}, [6237] = {.lex_state = 1218, .external_lex_state = 5}, - [6238] = {.lex_state = 249, .external_lex_state = 5}, - [6239] = {.lex_state = 249, .external_lex_state = 5}, - [6240] = {.lex_state = 262, .external_lex_state = 6}, + [6238] = {.lex_state = 1218, .external_lex_state = 5}, + [6239] = {.lex_state = 1218, .external_lex_state = 5}, + [6240] = {.lex_state = 1218, .external_lex_state = 5}, [6241] = {.lex_state = 1218, .external_lex_state = 5}, - [6242] = {.lex_state = 249, .external_lex_state = 5}, + [6242] = {.lex_state = 98, .external_lex_state = 6}, [6243] = {.lex_state = 1218, .external_lex_state = 5}, - [6244] = {.lex_state = 98, .external_lex_state = 6}, + [6244] = {.lex_state = 1218, .external_lex_state = 5}, [6245] = {.lex_state = 1218, .external_lex_state = 5}, - [6246] = {.lex_state = 249, .external_lex_state = 6}, - [6247] = {.lex_state = 1218, .external_lex_state = 5}, - [6248] = {.lex_state = 98, .external_lex_state = 6}, - [6249] = {.lex_state = 248, .external_lex_state = 6}, - [6250] = {.lex_state = 1218, .external_lex_state = 5}, - [6251] = {.lex_state = 1218, .external_lex_state = 5}, + [6246] = {.lex_state = 249, .external_lex_state = 5}, + [6247] = {.lex_state = 98, .external_lex_state = 6}, + [6248] = {.lex_state = 1218, .external_lex_state = 5}, + [6249] = {.lex_state = 98, .external_lex_state = 6}, + [6250] = {.lex_state = 1218, .external_lex_state = 6}, + [6251] = {.lex_state = 245, .external_lex_state = 6}, [6252] = {.lex_state = 1218, .external_lex_state = 5}, - [6253] = {.lex_state = 248, .external_lex_state = 6}, + [6253] = {.lex_state = 1218, .external_lex_state = 5}, [6254] = {.lex_state = 1218, .external_lex_state = 6}, - [6255] = {.lex_state = 242, .external_lex_state = 6}, - [6256] = {.lex_state = 1218, .external_lex_state = 6}, + [6255] = {.lex_state = 1218, .external_lex_state = 5}, + [6256] = {.lex_state = 246, .external_lex_state = 6}, [6257] = {.lex_state = 1218, .external_lex_state = 6}, [6258] = {.lex_state = 1218, .external_lex_state = 5}, - [6259] = {.lex_state = 248, .external_lex_state = 6}, - [6260] = {.lex_state = 298, .external_lex_state = 6}, - [6261] = {.lex_state = 242, .external_lex_state = 6}, + [6259] = {.lex_state = 249, .external_lex_state = 6}, + [6260] = {.lex_state = 245, .external_lex_state = 6}, + [6261] = {.lex_state = 1218, .external_lex_state = 6}, [6262] = {.lex_state = 1218, .external_lex_state = 5}, - [6263] = {.lex_state = 262, .external_lex_state = 5}, - [6264] = {.lex_state = 242, .external_lex_state = 6}, + [6263] = {.lex_state = 1218, .external_lex_state = 5}, + [6264] = {.lex_state = 247, .external_lex_state = 6}, [6265] = {.lex_state = 1218, .external_lex_state = 5}, [6266] = {.lex_state = 1218, .external_lex_state = 5}, - [6267] = {.lex_state = 248, .external_lex_state = 6}, - [6268] = {.lex_state = 1218, .external_lex_state = 5}, - [6269] = {.lex_state = 242, .external_lex_state = 6}, + [6267] = {.lex_state = 245, .external_lex_state = 6}, + [6268] = {.lex_state = 246, .external_lex_state = 6}, + [6269] = {.lex_state = 1218, .external_lex_state = 6}, [6270] = {.lex_state = 1218, .external_lex_state = 5}, - [6271] = {.lex_state = 1218, .external_lex_state = 10}, + [6271] = {.lex_state = 1218, .external_lex_state = 5}, [6272] = {.lex_state = 1218, .external_lex_state = 5}, [6273] = {.lex_state = 1218, .external_lex_state = 5}, - [6274] = {.lex_state = 1218, .external_lex_state = 6}, - [6275] = {.lex_state = 1218, .external_lex_state = 5}, - [6276] = {.lex_state = 107, .external_lex_state = 6}, - [6277] = {.lex_state = 1218, .external_lex_state = 6}, - [6278] = {.lex_state = 1218, .external_lex_state = 5}, - [6279] = {.lex_state = 248, .external_lex_state = 6}, + [6274] = {.lex_state = 247, .external_lex_state = 6}, + [6275] = {.lex_state = 1218, .external_lex_state = 6}, + [6276] = {.lex_state = 1218, .external_lex_state = 5}, + [6277] = {.lex_state = 1218, .external_lex_state = 5}, + [6278] = {.lex_state = 246, .external_lex_state = 6}, + [6279] = {.lex_state = 247, .external_lex_state = 6}, [6280] = {.lex_state = 1218, .external_lex_state = 5}, - [6281] = {.lex_state = 243, .external_lex_state = 6}, - [6282] = {.lex_state = 1218, .external_lex_state = 6}, - [6283] = {.lex_state = 1218, .external_lex_state = 5}, - [6284] = {.lex_state = 1218, .external_lex_state = 5}, + [6281] = {.lex_state = 1218, .external_lex_state = 5}, + [6282] = {.lex_state = 247, .external_lex_state = 6}, + [6283] = {.lex_state = 298, .external_lex_state = 6}, + [6284] = {.lex_state = 246, .external_lex_state = 6}, [6285] = {.lex_state = 1218, .external_lex_state = 5}, - [6286] = {.lex_state = 1218, .external_lex_state = 6}, + [6286] = {.lex_state = 246, .external_lex_state = 6}, [6287] = {.lex_state = 1218, .external_lex_state = 5}, - [6288] = {.lex_state = 248, .external_lex_state = 6}, - [6289] = {.lex_state = 244, .external_lex_state = 6}, - [6290] = {.lex_state = 1218, .external_lex_state = 6}, - [6291] = {.lex_state = 1218, .external_lex_state = 5}, - [6292] = {.lex_state = 1218, .external_lex_state = 5}, - [6293] = {.lex_state = 1218, .external_lex_state = 5}, - [6294] = {.lex_state = 243, .external_lex_state = 6}, + [6288] = {.lex_state = 247, .external_lex_state = 6}, + [6289] = {.lex_state = 1218, .external_lex_state = 5}, + [6290] = {.lex_state = 246, .external_lex_state = 6}, + [6291] = {.lex_state = 1218, .external_lex_state = 6}, + [6292] = {.lex_state = 1218, .external_lex_state = 10}, + [6293] = {.lex_state = 1218, .external_lex_state = 10}, + [6294] = {.lex_state = 1218, .external_lex_state = 5}, [6295] = {.lex_state = 1218, .external_lex_state = 5}, - [6296] = {.lex_state = 1218, .external_lex_state = 6}, - [6297] = {.lex_state = 1218, .external_lex_state = 5}, + [6296] = {.lex_state = 1218, .external_lex_state = 5}, + [6297] = {.lex_state = 107, .external_lex_state = 6}, [6298] = {.lex_state = 1218, .external_lex_state = 5}, [6299] = {.lex_state = 1218, .external_lex_state = 5}, - [6300] = {.lex_state = 1218, .external_lex_state = 6}, - [6301] = {.lex_state = 1218, .external_lex_state = 6}, + [6300] = {.lex_state = 214, .external_lex_state = 6}, + [6301] = {.lex_state = 1218, .external_lex_state = 5}, [6302] = {.lex_state = 1218, .external_lex_state = 5}, - [6303] = {.lex_state = 242, .external_lex_state = 6}, - [6304] = {.lex_state = 246, .external_lex_state = 6}, - [6305] = {.lex_state = 1218, .external_lex_state = 5}, + [6303] = {.lex_state = 1218, .external_lex_state = 5}, + [6304] = {.lex_state = 1218, .external_lex_state = 5}, + [6305] = {.lex_state = 243, .external_lex_state = 6}, [6306] = {.lex_state = 1218, .external_lex_state = 5}, [6307] = {.lex_state = 1218, .external_lex_state = 5}, - [6308] = {.lex_state = 245, .external_lex_state = 6}, + [6308] = {.lex_state = 1218, .external_lex_state = 5}, [6309] = {.lex_state = 1218, .external_lex_state = 5}, - [6310] = {.lex_state = 246, .external_lex_state = 6}, - [6311] = {.lex_state = 1218, .external_lex_state = 4}, + [6310] = {.lex_state = 1218, .external_lex_state = 6}, + [6311] = {.lex_state = 1218, .external_lex_state = 5}, [6312] = {.lex_state = 1218, .external_lex_state = 5}, - [6313] = {.lex_state = 1218, .external_lex_state = 6}, + [6313] = {.lex_state = 107, .external_lex_state = 6}, [6314] = {.lex_state = 1218, .external_lex_state = 5}, [6315] = {.lex_state = 246, .external_lex_state = 6}, - [6316] = {.lex_state = 248, .external_lex_state = 6}, - [6317] = {.lex_state = 1218, .external_lex_state = 5}, + [6316] = {.lex_state = 1218, .external_lex_state = 5}, + [6317] = {.lex_state = 243, .external_lex_state = 6}, [6318] = {.lex_state = 1218, .external_lex_state = 5}, [6319] = {.lex_state = 1218, .external_lex_state = 5}, - [6320] = {.lex_state = 1218, .external_lex_state = 6}, - [6321] = {.lex_state = 248, .external_lex_state = 6}, + [6320] = {.lex_state = 107, .external_lex_state = 6}, + [6321] = {.lex_state = 1218, .external_lex_state = 5}, [6322] = {.lex_state = 1218, .external_lex_state = 5}, - [6323] = {.lex_state = 242, .external_lex_state = 6}, - [6324] = {.lex_state = 1218, .external_lex_state = 5}, - [6325] = {.lex_state = 1218, .external_lex_state = 6}, - [6326] = {.lex_state = 248, .external_lex_state = 6}, + [6323] = {.lex_state = 1218, .external_lex_state = 6}, + [6324] = {.lex_state = 214, .external_lex_state = 6}, + [6325] = {.lex_state = 249, .external_lex_state = 6}, + [6326] = {.lex_state = 245, .external_lex_state = 6}, [6327] = {.lex_state = 1218, .external_lex_state = 5}, [6328] = {.lex_state = 1218, .external_lex_state = 6}, - [6329] = {.lex_state = 242, .external_lex_state = 6}, + [6329] = {.lex_state = 214, .external_lex_state = 6}, [6330] = {.lex_state = 1218, .external_lex_state = 5}, - [6331] = {.lex_state = 248, .external_lex_state = 6}, - [6332] = {.lex_state = 1218, .external_lex_state = 5}, - [6333] = {.lex_state = 242, .external_lex_state = 6}, + [6331] = {.lex_state = 1218, .external_lex_state = 6}, + [6332] = {.lex_state = 1218, .external_lex_state = 6}, + [6333] = {.lex_state = 1218, .external_lex_state = 5}, [6334] = {.lex_state = 1218, .external_lex_state = 6}, - [6335] = {.lex_state = 1218, .external_lex_state = 10}, - [6336] = {.lex_state = 1218, .external_lex_state = 5}, - [6337] = {.lex_state = 1218, .external_lex_state = 5}, - [6338] = {.lex_state = 242, .external_lex_state = 6}, + [6335] = {.lex_state = 245, .external_lex_state = 6}, + [6336] = {.lex_state = 1218, .external_lex_state = 6}, + [6337] = {.lex_state = 1218, .external_lex_state = 6}, + [6338] = {.lex_state = 1218, .external_lex_state = 5}, [6339] = {.lex_state = 1218, .external_lex_state = 5}, - [6340] = {.lex_state = 107, .external_lex_state = 6}, - [6341] = {.lex_state = 1218, .external_lex_state = 5}, - [6342] = {.lex_state = 242, .external_lex_state = 6}, - [6343] = {.lex_state = 207, .external_lex_state = 6}, + [6340] = {.lex_state = 245, .external_lex_state = 6}, + [6341] = {.lex_state = 1218, .external_lex_state = 6}, + [6342] = {.lex_state = 249, .external_lex_state = 6}, + [6343] = {.lex_state = 1218, .external_lex_state = 5}, [6344] = {.lex_state = 1218, .external_lex_state = 5}, - [6345] = {.lex_state = 1218, .external_lex_state = 6}, - [6346] = {.lex_state = 243, .external_lex_state = 6}, - [6347] = {.lex_state = 1218, .external_lex_state = 5}, + [6345] = {.lex_state = 1218, .external_lex_state = 5}, + [6346] = {.lex_state = 247, .external_lex_state = 6}, + [6347] = {.lex_state = 243, .external_lex_state = 6}, [6348] = {.lex_state = 1218, .external_lex_state = 5}, [6349] = {.lex_state = 1218, .external_lex_state = 5}, - [6350] = {.lex_state = 248, .external_lex_state = 6}, + [6350] = {.lex_state = 246, .external_lex_state = 6}, [6351] = {.lex_state = 1218, .external_lex_state = 5}, - [6352] = {.lex_state = 1218, .external_lex_state = 6}, - [6353] = {.lex_state = 1218, .external_lex_state = 10}, - [6354] = {.lex_state = 1218, .external_lex_state = 5}, - [6355] = {.lex_state = 1218, .external_lex_state = 5}, + [6352] = {.lex_state = 1218, .external_lex_state = 5}, + [6353] = {.lex_state = 1218, .external_lex_state = 5}, + [6354] = {.lex_state = 247, .external_lex_state = 6}, + [6355] = {.lex_state = 1218, .external_lex_state = 6}, [6356] = {.lex_state = 1218, .external_lex_state = 5}, - [6357] = {.lex_state = 243, .external_lex_state = 6}, - [6358] = {.lex_state = 1218, .external_lex_state = 5}, - [6359] = {.lex_state = 1218, .external_lex_state = 5}, - [6360] = {.lex_state = 248, .external_lex_state = 6}, - [6361] = {.lex_state = 1218, .external_lex_state = 5}, - [6362] = {.lex_state = 249, .external_lex_state = 6}, - [6363] = {.lex_state = 1218, .external_lex_state = 6}, - [6364] = {.lex_state = 1218, .external_lex_state = 4}, - [6365] = {.lex_state = 246, .external_lex_state = 6}, - [6366] = {.lex_state = 262, .external_lex_state = 5}, - [6367] = {.lex_state = 1218, .external_lex_state = 6}, - [6368] = {.lex_state = 1218, .external_lex_state = 6}, - [6369] = {.lex_state = 1218, .external_lex_state = 6}, - [6370] = {.lex_state = 1218, .external_lex_state = 6}, - [6371] = {.lex_state = 1218, .external_lex_state = 5}, - [6372] = {.lex_state = 246, .external_lex_state = 6}, + [6357] = {.lex_state = 1218, .external_lex_state = 6}, + [6358] = {.lex_state = 246, .external_lex_state = 6}, + [6359] = {.lex_state = 1218, .external_lex_state = 6}, + [6360] = {.lex_state = 1218, .external_lex_state = 5}, + [6361] = {.lex_state = 247, .external_lex_state = 6}, + [6362] = {.lex_state = 1218, .external_lex_state = 5}, + [6363] = {.lex_state = 246, .external_lex_state = 6}, + [6364] = {.lex_state = 1218, .external_lex_state = 6}, + [6365] = {.lex_state = 1218, .external_lex_state = 10}, + [6366] = {.lex_state = 1218, .external_lex_state = 5}, + [6367] = {.lex_state = 1218, .external_lex_state = 5}, + [6368] = {.lex_state = 249, .external_lex_state = 6}, + [6369] = {.lex_state = 1218, .external_lex_state = 5}, + [6370] = {.lex_state = 107, .external_lex_state = 6}, + [6371] = {.lex_state = 1218, .external_lex_state = 6}, + [6372] = {.lex_state = 1218, .external_lex_state = 6}, [6373] = {.lex_state = 1218, .external_lex_state = 6}, - [6374] = {.lex_state = 1218, .external_lex_state = 6}, - [6375] = {.lex_state = 1218, .external_lex_state = 5}, - [6376] = {.lex_state = 1218, .external_lex_state = 5}, + [6374] = {.lex_state = 1218, .external_lex_state = 5}, + [6375] = {.lex_state = 262, .external_lex_state = 5}, + [6376] = {.lex_state = 243, .external_lex_state = 6}, [6377] = {.lex_state = 1218, .external_lex_state = 5}, - [6378] = {.lex_state = 246, .external_lex_state = 6}, - [6379] = {.lex_state = 214, .external_lex_state = 6}, - [6380] = {.lex_state = 1218, .external_lex_state = 5}, + [6378] = {.lex_state = 1218, .external_lex_state = 5}, + [6379] = {.lex_state = 1218, .external_lex_state = 5}, + [6380] = {.lex_state = 214, .external_lex_state = 6}, [6381] = {.lex_state = 1218, .external_lex_state = 5}, - [6382] = {.lex_state = 248, .external_lex_state = 6}, - [6383] = {.lex_state = 242, .external_lex_state = 6}, + [6382] = {.lex_state = 1218, .external_lex_state = 5}, + [6383] = {.lex_state = 1218, .external_lex_state = 5}, [6384] = {.lex_state = 1218, .external_lex_state = 5}, - [6385] = {.lex_state = 1218, .external_lex_state = 5}, + [6385] = {.lex_state = 1218, .external_lex_state = 6}, [6386] = {.lex_state = 1218, .external_lex_state = 5}, - [6387] = {.lex_state = 248, .external_lex_state = 6}, + [6387] = {.lex_state = 243, .external_lex_state = 6}, [6388] = {.lex_state = 1218, .external_lex_state = 5}, [6389] = {.lex_state = 1218, .external_lex_state = 6}, - [6390] = {.lex_state = 242, .external_lex_state = 6}, + [6390] = {.lex_state = 1218, .external_lex_state = 5}, [6391] = {.lex_state = 1218, .external_lex_state = 5}, - [6392] = {.lex_state = 248, .external_lex_state = 6}, - [6393] = {.lex_state = 1218, .external_lex_state = 5}, - [6394] = {.lex_state = 242, .external_lex_state = 6}, - [6395] = {.lex_state = 1218, .external_lex_state = 10}, - [6396] = {.lex_state = 1218, .external_lex_state = 5}, - [6397] = {.lex_state = 1218, .external_lex_state = 5}, - [6398] = {.lex_state = 1218, .external_lex_state = 5}, - [6399] = {.lex_state = 1218, .external_lex_state = 5}, - [6400] = {.lex_state = 107, .external_lex_state = 6}, - [6401] = {.lex_state = 1218, .external_lex_state = 6}, + [6392] = {.lex_state = 1218, .external_lex_state = 5}, + [6393] = {.lex_state = 214, .external_lex_state = 6}, + [6394] = {.lex_state = 1218, .external_lex_state = 5}, + [6395] = {.lex_state = 246, .external_lex_state = 6}, + [6396] = {.lex_state = 214, .external_lex_state = 6}, + [6397] = {.lex_state = 1218, .external_lex_state = 6}, + [6398] = {.lex_state = 1218, .external_lex_state = 6}, + [6399] = {.lex_state = 245, .external_lex_state = 6}, + [6400] = {.lex_state = 1218, .external_lex_state = 5}, + [6401] = {.lex_state = 1218, .external_lex_state = 5}, [6402] = {.lex_state = 1218, .external_lex_state = 5}, [6403] = {.lex_state = 1218, .external_lex_state = 5}, - [6404] = {.lex_state = 1218, .external_lex_state = 5}, - [6405] = {.lex_state = 1218, .external_lex_state = 5}, + [6404] = {.lex_state = 1218, .external_lex_state = 6}, + [6405] = {.lex_state = 1218, .external_lex_state = 6}, [6406] = {.lex_state = 1218, .external_lex_state = 5}, [6407] = {.lex_state = 1218, .external_lex_state = 6}, - [6408] = {.lex_state = 243, .external_lex_state = 6}, - [6409] = {.lex_state = 1218, .external_lex_state = 5}, + [6408] = {.lex_state = 245, .external_lex_state = 6}, + [6409] = {.lex_state = 243, .external_lex_state = 6}, [6410] = {.lex_state = 1218, .external_lex_state = 5}, - [6411] = {.lex_state = 1218, .external_lex_state = 5}, - [6412] = {.lex_state = 107, .external_lex_state = 6}, - [6413] = {.lex_state = 1218, .external_lex_state = 5}, - [6414] = {.lex_state = 1218, .external_lex_state = 5}, + [6411] = {.lex_state = 1218, .external_lex_state = 6}, + [6412] = {.lex_state = 1218, .external_lex_state = 5}, + [6413] = {.lex_state = 245, .external_lex_state = 6}, + [6414] = {.lex_state = 1218, .external_lex_state = 6}, [6415] = {.lex_state = 1218, .external_lex_state = 6}, - [6416] = {.lex_state = 1218, .external_lex_state = 5}, + [6416] = {.lex_state = 207, .external_lex_state = 6}, [6417] = {.lex_state = 1218, .external_lex_state = 5}, - [6418] = {.lex_state = 243, .external_lex_state = 6}, - [6419] = {.lex_state = 1218, .external_lex_state = 5}, - [6420] = {.lex_state = 1218, .external_lex_state = 6}, - [6421] = {.lex_state = 242, .external_lex_state = 6}, - [6422] = {.lex_state = 1218, .external_lex_state = 6}, - [6423] = {.lex_state = 1218, .external_lex_state = 5}, - [6424] = {.lex_state = 1218, .external_lex_state = 6}, - [6425] = {.lex_state = 218, .external_lex_state = 6}, - [6426] = {.lex_state = 1218, .external_lex_state = 6}, - [6427] = {.lex_state = 1218, .external_lex_state = 5}, - [6428] = {.lex_state = 1218, .external_lex_state = 6}, - [6429] = {.lex_state = 246, .external_lex_state = 6}, - [6430] = {.lex_state = 1218, .external_lex_state = 6}, + [6418] = {.lex_state = 1218, .external_lex_state = 5}, + [6419] = {.lex_state = 247, .external_lex_state = 6}, + [6420] = {.lex_state = 246, .external_lex_state = 6}, + [6421] = {.lex_state = 1218, .external_lex_state = 5}, + [6422] = {.lex_state = 1218, .external_lex_state = 5}, + [6423] = {.lex_state = 1218, .external_lex_state = 6}, + [6424] = {.lex_state = 247, .external_lex_state = 6}, + [6425] = {.lex_state = 1218, .external_lex_state = 5}, + [6426] = {.lex_state = 1218, .external_lex_state = 5}, + [6427] = {.lex_state = 246, .external_lex_state = 6}, + [6428] = {.lex_state = 1218, .external_lex_state = 5}, + [6429] = {.lex_state = 1218, .external_lex_state = 5}, + [6430] = {.lex_state = 247, .external_lex_state = 6}, [6431] = {.lex_state = 1218, .external_lex_state = 5}, - [6432] = {.lex_state = 1218, .external_lex_state = 6}, - [6433] = {.lex_state = 1218, .external_lex_state = 6}, - [6434] = {.lex_state = 214, .external_lex_state = 6}, + [6432] = {.lex_state = 246, .external_lex_state = 6}, + [6433] = {.lex_state = 1218, .external_lex_state = 5}, + [6434] = {.lex_state = 1218, .external_lex_state = 10}, [6435] = {.lex_state = 1218, .external_lex_state = 5}, [6436] = {.lex_state = 1218, .external_lex_state = 5}, - [6437] = {.lex_state = 246, .external_lex_state = 6}, - [6438] = {.lex_state = 246, .external_lex_state = 6}, - [6439] = {.lex_state = 1218, .external_lex_state = 5}, - [6440] = {.lex_state = 246, .external_lex_state = 6}, - [6441] = {.lex_state = 249, .external_lex_state = 6}, + [6437] = {.lex_state = 1218, .external_lex_state = 6}, + [6438] = {.lex_state = 1218, .external_lex_state = 5}, + [6439] = {.lex_state = 107, .external_lex_state = 6}, + [6440] = {.lex_state = 249, .external_lex_state = 6}, + [6441] = {.lex_state = 244, .external_lex_state = 6}, [6442] = {.lex_state = 1218, .external_lex_state = 5}, [6443] = {.lex_state = 1218, .external_lex_state = 5}, - [6444] = {.lex_state = 1218, .external_lex_state = 5}, - [6445] = {.lex_state = 248, .external_lex_state = 6}, - [6446] = {.lex_state = 1218, .external_lex_state = 6}, - [6447] = {.lex_state = 242, .external_lex_state = 6}, - [6448] = {.lex_state = 243, .external_lex_state = 6}, - [6449] = {.lex_state = 1218, .external_lex_state = 6}, - [6450] = {.lex_state = 1218, .external_lex_state = 5}, - [6451] = {.lex_state = 248, .external_lex_state = 6}, - [6452] = {.lex_state = 1218, .external_lex_state = 6}, - [6453] = {.lex_state = 1218, .external_lex_state = 5}, - [6454] = {.lex_state = 242, .external_lex_state = 6}, - [6455] = {.lex_state = 207, .external_lex_state = 6}, + [6444] = {.lex_state = 1218, .external_lex_state = 6}, + [6445] = {.lex_state = 244, .external_lex_state = 6}, + [6446] = {.lex_state = 243, .external_lex_state = 6}, + [6447] = {.lex_state = 1218, .external_lex_state = 5}, + [6448] = {.lex_state = 1218, .external_lex_state = 5}, + [6449] = {.lex_state = 1218, .external_lex_state = 5}, + [6450] = {.lex_state = 1218, .external_lex_state = 6}, + [6451] = {.lex_state = 1218, .external_lex_state = 6}, + [6452] = {.lex_state = 1218, .external_lex_state = 5}, + [6453] = {.lex_state = 1218, .external_lex_state = 6}, + [6454] = {.lex_state = 1218, .external_lex_state = 5}, + [6455] = {.lex_state = 1218, .external_lex_state = 5}, [6456] = {.lex_state = 1218, .external_lex_state = 5}, - [6457] = {.lex_state = 248, .external_lex_state = 6}, + [6457] = {.lex_state = 243, .external_lex_state = 6}, [6458] = {.lex_state = 1218, .external_lex_state = 5}, - [6459] = {.lex_state = 242, .external_lex_state = 6}, - [6460] = {.lex_state = 1218, .external_lex_state = 10}, + [6459] = {.lex_state = 1218, .external_lex_state = 6}, + [6460] = {.lex_state = 1218, .external_lex_state = 5}, [6461] = {.lex_state = 1218, .external_lex_state = 5}, [6462] = {.lex_state = 1218, .external_lex_state = 5}, [6463] = {.lex_state = 1218, .external_lex_state = 5}, - [6464] = {.lex_state = 107, .external_lex_state = 6}, - [6465] = {.lex_state = 249, .external_lex_state = 6}, + [6464] = {.lex_state = 1218, .external_lex_state = 6}, + [6465] = {.lex_state = 1218, .external_lex_state = 5}, [6466] = {.lex_state = 1218, .external_lex_state = 5}, [6467] = {.lex_state = 1218, .external_lex_state = 5}, - [6468] = {.lex_state = 243, .external_lex_state = 6}, + [6468] = {.lex_state = 1218, .external_lex_state = 6}, [6469] = {.lex_state = 1218, .external_lex_state = 6}, - [6470] = {.lex_state = 1218, .external_lex_state = 5}, - [6471] = {.lex_state = 1218, .external_lex_state = 5}, - [6472] = {.lex_state = 1218, .external_lex_state = 5}, - [6473] = {.lex_state = 1218, .external_lex_state = 5}, + [6470] = {.lex_state = 243, .external_lex_state = 6}, + [6471] = {.lex_state = 1218, .external_lex_state = 6}, + [6472] = {.lex_state = 1218, .external_lex_state = 6}, + [6473] = {.lex_state = 1218, .external_lex_state = 6}, [6474] = {.lex_state = 1218, .external_lex_state = 5}, [6475] = {.lex_state = 1218, .external_lex_state = 5}, - [6476] = {.lex_state = 1218, .external_lex_state = 6}, - [6477] = {.lex_state = 1218, .external_lex_state = 5}, + [6476] = {.lex_state = 247, .external_lex_state = 6}, + [6477] = {.lex_state = 246, .external_lex_state = 6}, [6478] = {.lex_state = 1218, .external_lex_state = 5}, - [6479] = {.lex_state = 243, .external_lex_state = 6}, - [6480] = {.lex_state = 1218, .external_lex_state = 5}, - [6481] = {.lex_state = 1218, .external_lex_state = 6}, + [6479] = {.lex_state = 246, .external_lex_state = 6}, + [6480] = {.lex_state = 1218, .external_lex_state = 6}, + [6481] = {.lex_state = 1218, .external_lex_state = 5}, [6482] = {.lex_state = 1218, .external_lex_state = 5}, - [6483] = {.lex_state = 1218, .external_lex_state = 5}, - [6484] = {.lex_state = 1218, .external_lex_state = 5}, + [6483] = {.lex_state = 247, .external_lex_state = 6}, + [6484] = {.lex_state = 247, .external_lex_state = 6}, [6485] = {.lex_state = 1218, .external_lex_state = 5}, - [6486] = {.lex_state = 1218, .external_lex_state = 5}, - [6487] = {.lex_state = 207, .external_lex_state = 6}, - [6488] = {.lex_state = 1218, .external_lex_state = 6}, - [6489] = {.lex_state = 246, .external_lex_state = 6}, - [6490] = {.lex_state = 1218, .external_lex_state = 6}, - [6491] = {.lex_state = 1218, .external_lex_state = 6}, - [6492] = {.lex_state = 1218, .external_lex_state = 6}, + [6486] = {.lex_state = 246, .external_lex_state = 6}, + [6487] = {.lex_state = 1218, .external_lex_state = 5}, + [6488] = {.lex_state = 1218, .external_lex_state = 5}, + [6489] = {.lex_state = 247, .external_lex_state = 6}, + [6490] = {.lex_state = 1218, .external_lex_state = 5}, + [6491] = {.lex_state = 246, .external_lex_state = 6}, + [6492] = {.lex_state = 1218, .external_lex_state = 5}, [6493] = {.lex_state = 1218, .external_lex_state = 5}, - [6494] = {.lex_state = 1218, .external_lex_state = 5}, - [6495] = {.lex_state = 1218, .external_lex_state = 6}, - [6496] = {.lex_state = 246, .external_lex_state = 6}, - [6497] = {.lex_state = 1218, .external_lex_state = 6}, - [6498] = {.lex_state = 1218, .external_lex_state = 6}, - [6499] = {.lex_state = 1218, .external_lex_state = 6}, + [6494] = {.lex_state = 207, .external_lex_state = 6}, + [6495] = {.lex_state = 1218, .external_lex_state = 5}, + [6496] = {.lex_state = 1218, .external_lex_state = 10}, + [6497] = {.lex_state = 1218, .external_lex_state = 5}, + [6498] = {.lex_state = 107, .external_lex_state = 6}, + [6499] = {.lex_state = 1218, .external_lex_state = 5}, [6500] = {.lex_state = 1218, .external_lex_state = 5}, - [6501] = {.lex_state = 246, .external_lex_state = 6}, - [6502] = {.lex_state = 1218, .external_lex_state = 6}, - [6503] = {.lex_state = 1218, .external_lex_state = 5}, - [6504] = {.lex_state = 1218, .external_lex_state = 5}, - [6505] = {.lex_state = 248, .external_lex_state = 6}, + [6501] = {.lex_state = 245, .external_lex_state = 6}, + [6502] = {.lex_state = 1218, .external_lex_state = 5}, + [6503] = {.lex_state = 246, .external_lex_state = 6}, + [6504] = {.lex_state = 243, .external_lex_state = 6}, + [6505] = {.lex_state = 1218, .external_lex_state = 5}, [6506] = {.lex_state = 1218, .external_lex_state = 5}, - [6507] = {.lex_state = 242, .external_lex_state = 6}, - [6508] = {.lex_state = 1218, .external_lex_state = 6}, + [6507] = {.lex_state = 1218, .external_lex_state = 5}, + [6508] = {.lex_state = 1218, .external_lex_state = 5}, [6509] = {.lex_state = 1218, .external_lex_state = 5}, - [6510] = {.lex_state = 1218, .external_lex_state = 6}, + [6510] = {.lex_state = 245, .external_lex_state = 6}, [6511] = {.lex_state = 1218, .external_lex_state = 5}, - [6512] = {.lex_state = 248, .external_lex_state = 6}, - [6513] = {.lex_state = 1218, .external_lex_state = 5}, - [6514] = {.lex_state = 247, .external_lex_state = 6}, - [6515] = {.lex_state = 242, .external_lex_state = 6}, - [6516] = {.lex_state = 1218, .external_lex_state = 5}, - [6517] = {.lex_state = 248, .external_lex_state = 6}, + [6512] = {.lex_state = 1218, .external_lex_state = 5}, + [6513] = {.lex_state = 243, .external_lex_state = 6}, + [6514] = {.lex_state = 1218, .external_lex_state = 5}, + [6515] = {.lex_state = 1218, .external_lex_state = 5}, + [6516] = {.lex_state = 207, .external_lex_state = 6}, + [6517] = {.lex_state = 1218, .external_lex_state = 5}, [6518] = {.lex_state = 1218, .external_lex_state = 5}, - [6519] = {.lex_state = 242, .external_lex_state = 6}, - [6520] = {.lex_state = 1218, .external_lex_state = 10}, + [6519] = {.lex_state = 1218, .external_lex_state = 5}, + [6520] = {.lex_state = 1218, .external_lex_state = 4}, [6521] = {.lex_state = 1218, .external_lex_state = 6}, - [6522] = {.lex_state = 1218, .external_lex_state = 5}, + [6522] = {.lex_state = 1218, .external_lex_state = 6}, [6523] = {.lex_state = 1218, .external_lex_state = 5}, - [6524] = {.lex_state = 107, .external_lex_state = 6}, + [6524] = {.lex_state = 1218, .external_lex_state = 5}, [6525] = {.lex_state = 1218, .external_lex_state = 5}, [6526] = {.lex_state = 1218, .external_lex_state = 5}, [6527] = {.lex_state = 1218, .external_lex_state = 5}, - [6528] = {.lex_state = 1218, .external_lex_state = 5}, + [6528] = {.lex_state = 1218, .external_lex_state = 6}, [6529] = {.lex_state = 1218, .external_lex_state = 6}, - [6530] = {.lex_state = 243, .external_lex_state = 6}, + [6530] = {.lex_state = 1218, .external_lex_state = 5}, [6531] = {.lex_state = 1218, .external_lex_state = 5}, - [6532] = {.lex_state = 1218, .external_lex_state = 5}, - [6533] = {.lex_state = 1218, .external_lex_state = 5}, + [6532] = {.lex_state = 1218, .external_lex_state = 6}, + [6533] = {.lex_state = 247, .external_lex_state = 6}, [6534] = {.lex_state = 1218, .external_lex_state = 5}, - [6535] = {.lex_state = 298, .external_lex_state = 6}, - [6536] = {.lex_state = 245, .external_lex_state = 6}, - [6537] = {.lex_state = 1218, .external_lex_state = 6}, - [6538] = {.lex_state = 1218, .external_lex_state = 5}, + [6535] = {.lex_state = 246, .external_lex_state = 6}, + [6536] = {.lex_state = 1218, .external_lex_state = 6}, + [6537] = {.lex_state = 1218, .external_lex_state = 5}, + [6538] = {.lex_state = 247, .external_lex_state = 6}, [6539] = {.lex_state = 1218, .external_lex_state = 5}, - [6540] = {.lex_state = 243, .external_lex_state = 6}, + [6540] = {.lex_state = 1218, .external_lex_state = 6}, [6541] = {.lex_state = 1218, .external_lex_state = 5}, - [6542] = {.lex_state = 262, .external_lex_state = 5}, - [6543] = {.lex_state = 1218, .external_lex_state = 6}, + [6542] = {.lex_state = 245, .external_lex_state = 6}, + [6543] = {.lex_state = 246, .external_lex_state = 6}, [6544] = {.lex_state = 1218, .external_lex_state = 6}, [6545] = {.lex_state = 1218, .external_lex_state = 5}, - [6546] = {.lex_state = 1218, .external_lex_state = 6}, - [6547] = {.lex_state = 1218, .external_lex_state = 6}, - [6548] = {.lex_state = 1218, .external_lex_state = 5}, - [6549] = {.lex_state = 1218, .external_lex_state = 5}, - [6550] = {.lex_state = 1218, .external_lex_state = 6}, - [6551] = {.lex_state = 214, .external_lex_state = 6}, + [6546] = {.lex_state = 247, .external_lex_state = 6}, + [6547] = {.lex_state = 1218, .external_lex_state = 5}, + [6548] = {.lex_state = 246, .external_lex_state = 6}, + [6549] = {.lex_state = 298, .external_lex_state = 6}, + [6550] = {.lex_state = 1218, .external_lex_state = 5}, + [6551] = {.lex_state = 1218, .external_lex_state = 5}, [6552] = {.lex_state = 1218, .external_lex_state = 5}, - [6553] = {.lex_state = 1218, .external_lex_state = 6}, - [6554] = {.lex_state = 1218, .external_lex_state = 5}, - [6555] = {.lex_state = 1218, .external_lex_state = 5}, + [6553] = {.lex_state = 107, .external_lex_state = 6}, + [6554] = {.lex_state = 1218, .external_lex_state = 6}, + [6555] = {.lex_state = 1218, .external_lex_state = 6}, [6556] = {.lex_state = 1218, .external_lex_state = 5}, - [6557] = {.lex_state = 1218, .external_lex_state = 5}, - [6558] = {.lex_state = 249, .external_lex_state = 6}, - [6559] = {.lex_state = 248, .external_lex_state = 6}, + [6557] = {.lex_state = 245, .external_lex_state = 6}, + [6558] = {.lex_state = 1218, .external_lex_state = 5}, + [6559] = {.lex_state = 1218, .external_lex_state = 5}, [6560] = {.lex_state = 1218, .external_lex_state = 6}, - [6561] = {.lex_state = 1218, .external_lex_state = 5}, - [6562] = {.lex_state = 242, .external_lex_state = 6}, - [6563] = {.lex_state = 1218, .external_lex_state = 6}, + [6561] = {.lex_state = 243, .external_lex_state = 6}, + [6562] = {.lex_state = 1218, .external_lex_state = 5}, + [6563] = {.lex_state = 1218, .external_lex_state = 5}, [6564] = {.lex_state = 1218, .external_lex_state = 5}, - [6565] = {.lex_state = 1218, .external_lex_state = 5}, + [6565] = {.lex_state = 1218, .external_lex_state = 6}, [6566] = {.lex_state = 1218, .external_lex_state = 5}, [6567] = {.lex_state = 248, .external_lex_state = 6}, - [6568] = {.lex_state = 1218, .external_lex_state = 5}, + [6568] = {.lex_state = 249, .external_lex_state = 6}, [6569] = {.lex_state = 1218, .external_lex_state = 5}, - [6570] = {.lex_state = 242, .external_lex_state = 6}, - [6571] = {.lex_state = 262, .external_lex_state = 5}, + [6570] = {.lex_state = 1218, .external_lex_state = 5}, + [6571] = {.lex_state = 243, .external_lex_state = 6}, [6572] = {.lex_state = 1218, .external_lex_state = 5}, - [6573] = {.lex_state = 1218, .external_lex_state = 6}, - [6574] = {.lex_state = 1218, .external_lex_state = 5}, - [6575] = {.lex_state = 242, .external_lex_state = 6}, - [6576] = {.lex_state = 1218, .external_lex_state = 5}, + [6573] = {.lex_state = 247, .external_lex_state = 6}, + [6574] = {.lex_state = 1218, .external_lex_state = 6}, + [6575] = {.lex_state = 1218, .external_lex_state = 5}, + [6576] = {.lex_state = 1218, .external_lex_state = 6}, [6577] = {.lex_state = 1218, .external_lex_state = 5}, [6578] = {.lex_state = 1218, .external_lex_state = 5}, - [6579] = {.lex_state = 107, .external_lex_state = 6}, + [6579] = {.lex_state = 98, .external_lex_state = 6}, [6580] = {.lex_state = 1218, .external_lex_state = 5}, - [6581] = {.lex_state = 243, .external_lex_state = 6}, + [6581] = {.lex_state = 245, .external_lex_state = 6}, [6582] = {.lex_state = 1218, .external_lex_state = 5}, - [6583] = {.lex_state = 98, .external_lex_state = 6}, + [6583] = {.lex_state = 1218, .external_lex_state = 5}, [6584] = {.lex_state = 1218, .external_lex_state = 5}, [6585] = {.lex_state = 1218, .external_lex_state = 5}, - [6586] = {.lex_state = 1218, .external_lex_state = 6}, - [6587] = {.lex_state = 243, .external_lex_state = 6}, - [6588] = {.lex_state = 1218, .external_lex_state = 5}, + [6586] = {.lex_state = 247, .external_lex_state = 6}, + [6587] = {.lex_state = 1218, .external_lex_state = 6}, + [6588] = {.lex_state = 246, .external_lex_state = 6}, [6589] = {.lex_state = 1218, .external_lex_state = 5}, [6590] = {.lex_state = 1218, .external_lex_state = 5}, - [6591] = {.lex_state = 242, .external_lex_state = 6}, - [6592] = {.lex_state = 1218, .external_lex_state = 6}, + [6591] = {.lex_state = 1218, .external_lex_state = 6}, + [6592] = {.lex_state = 247, .external_lex_state = 6}, [6593] = {.lex_state = 1218, .external_lex_state = 5}, [6594] = {.lex_state = 1218, .external_lex_state = 5}, - [6595] = {.lex_state = 1218, .external_lex_state = 6}, + [6595] = {.lex_state = 1218, .external_lex_state = 5}, [6596] = {.lex_state = 1218, .external_lex_state = 5}, - [6597] = {.lex_state = 243, .external_lex_state = 6}, + [6597] = {.lex_state = 246, .external_lex_state = 6}, [6598] = {.lex_state = 1218, .external_lex_state = 5}, [6599] = {.lex_state = 247, .external_lex_state = 6}, [6600] = {.lex_state = 1218, .external_lex_state = 5}, - [6601] = {.lex_state = 1218, .external_lex_state = 5}, + [6601] = {.lex_state = 246, .external_lex_state = 6}, [6602] = {.lex_state = 1218, .external_lex_state = 5}, [6603] = {.lex_state = 1218, .external_lex_state = 5}, [6604] = {.lex_state = 1218, .external_lex_state = 5}, [6605] = {.lex_state = 1218, .external_lex_state = 5}, - [6606] = {.lex_state = 1218, .external_lex_state = 4}, + [6606] = {.lex_state = 107, .external_lex_state = 6}, [6607] = {.lex_state = 1218, .external_lex_state = 6}, - [6608] = {.lex_state = 1218, .external_lex_state = 5}, - [6609] = {.lex_state = 1218, .external_lex_state = 5}, - [6610] = {.lex_state = 248, .external_lex_state = 6}, - [6611] = {.lex_state = 1218, .external_lex_state = 5}, + [6608] = {.lex_state = 1218, .external_lex_state = 6}, + [6609] = {.lex_state = 1218, .external_lex_state = 6}, + [6610] = {.lex_state = 1218, .external_lex_state = 5}, + [6611] = {.lex_state = 214, .external_lex_state = 6}, [6612] = {.lex_state = 1218, .external_lex_state = 6}, - [6613] = {.lex_state = 242, .external_lex_state = 6}, - [6614] = {.lex_state = 1218, .external_lex_state = 6}, + [6613] = {.lex_state = 243, .external_lex_state = 6}, + [6614] = {.lex_state = 1218, .external_lex_state = 5}, [6615] = {.lex_state = 1218, .external_lex_state = 5}, [6616] = {.lex_state = 1218, .external_lex_state = 5}, - [6617] = {.lex_state = 248, .external_lex_state = 6}, + [6617] = {.lex_state = 1218, .external_lex_state = 6}, [6618] = {.lex_state = 1218, .external_lex_state = 5}, [6619] = {.lex_state = 1218, .external_lex_state = 5}, - [6620] = {.lex_state = 1218, .external_lex_state = 6}, - [6621] = {.lex_state = 242, .external_lex_state = 6}, - [6622] = {.lex_state = 1218, .external_lex_state = 5}, - [6623] = {.lex_state = 248, .external_lex_state = 6}, - [6624] = {.lex_state = 1218, .external_lex_state = 5}, - [6625] = {.lex_state = 242, .external_lex_state = 6}, + [6620] = {.lex_state = 1218, .external_lex_state = 4}, + [6621] = {.lex_state = 1218, .external_lex_state = 5}, + [6622] = {.lex_state = 243, .external_lex_state = 6}, + [6623] = {.lex_state = 1218, .external_lex_state = 5}, + [6624] = {.lex_state = 247, .external_lex_state = 6}, + [6625] = {.lex_state = 1218, .external_lex_state = 5}, [6626] = {.lex_state = 1218, .external_lex_state = 5}, - [6627] = {.lex_state = 1218, .external_lex_state = 5}, - [6628] = {.lex_state = 107, .external_lex_state = 6}, - [6629] = {.lex_state = 1218, .external_lex_state = 5}, - [6630] = {.lex_state = 1218, .external_lex_state = 5}, - [6631] = {.lex_state = 1218, .external_lex_state = 5}, + [6627] = {.lex_state = 249, .external_lex_state = 6}, + [6628] = {.lex_state = 1218, .external_lex_state = 6}, + [6629] = {.lex_state = 246, .external_lex_state = 6}, + [6630] = {.lex_state = 1218, .external_lex_state = 6}, + [6631] = {.lex_state = 262, .external_lex_state = 5}, [6632] = {.lex_state = 1218, .external_lex_state = 6}, - [6633] = {.lex_state = 1218, .external_lex_state = 6}, - [6634] = {.lex_state = 1218, .external_lex_state = 5}, - [6635] = {.lex_state = 243, .external_lex_state = 6}, + [6633] = {.lex_state = 1218, .external_lex_state = 5}, + [6634] = {.lex_state = 247, .external_lex_state = 6}, + [6635] = {.lex_state = 1218, .external_lex_state = 5}, [6636] = {.lex_state = 1218, .external_lex_state = 5}, [6637] = {.lex_state = 1218, .external_lex_state = 5}, [6638] = {.lex_state = 1218, .external_lex_state = 5}, - [6639] = {.lex_state = 1218, .external_lex_state = 5}, + [6639] = {.lex_state = 1218, .external_lex_state = 6}, [6640] = {.lex_state = 1218, .external_lex_state = 5}, - [6641] = {.lex_state = 248, .external_lex_state = 6}, - [6642] = {.lex_state = 1218, .external_lex_state = 6}, - [6643] = {.lex_state = 1218, .external_lex_state = 5}, + [6641] = {.lex_state = 1218, .external_lex_state = 5}, + [6642] = {.lex_state = 1218, .external_lex_state = 5}, + [6643] = {.lex_state = 107, .external_lex_state = 6}, [6644] = {.lex_state = 1218, .external_lex_state = 5}, - [6645] = {.lex_state = 243, .external_lex_state = 6}, + [6645] = {.lex_state = 246, .external_lex_state = 6}, [6646] = {.lex_state = 1218, .external_lex_state = 5}, - [6647] = {.lex_state = 1218, .external_lex_state = 5}, - [6648] = {.lex_state = 246, .external_lex_state = 6}, - [6649] = {.lex_state = 1218, .external_lex_state = 5}, + [6647] = {.lex_state = 1218, .external_lex_state = 6}, + [6648] = {.lex_state = 1218, .external_lex_state = 6}, + [6649] = {.lex_state = 243, .external_lex_state = 6}, [6650] = {.lex_state = 1218, .external_lex_state = 5}, [6651] = {.lex_state = 1218, .external_lex_state = 5}, - [6652] = {.lex_state = 245, .external_lex_state = 6}, - [6653] = {.lex_state = 1218, .external_lex_state = 5}, + [6652] = {.lex_state = 1218, .external_lex_state = 5}, + [6653] = {.lex_state = 247, .external_lex_state = 6}, [6654] = {.lex_state = 1218, .external_lex_state = 5}, - [6655] = {.lex_state = 247, .external_lex_state = 6}, + [6655] = {.lex_state = 246, .external_lex_state = 6}, [6656] = {.lex_state = 1218, .external_lex_state = 6}, - [6657] = {.lex_state = 247, .external_lex_state = 6}, - [6658] = {.lex_state = 1218, .external_lex_state = 5}, + [6657] = {.lex_state = 1218, .external_lex_state = 5}, + [6658] = {.lex_state = 243, .external_lex_state = 6}, [6659] = {.lex_state = 1218, .external_lex_state = 5}, - [6660] = {.lex_state = 1218, .external_lex_state = 5}, + [6660] = {.lex_state = 207, .external_lex_state = 6}, [6661] = {.lex_state = 1218, .external_lex_state = 6}, - [6662] = {.lex_state = 248, .external_lex_state = 6}, - [6663] = {.lex_state = 1218, .external_lex_state = 6}, - [6664] = {.lex_state = 242, .external_lex_state = 6}, - [6665] = {.lex_state = 1218, .external_lex_state = 6}, + [6662] = {.lex_state = 1218, .external_lex_state = 10}, + [6663] = {.lex_state = 1218, .external_lex_state = 5}, + [6664] = {.lex_state = 1218, .external_lex_state = 5}, + [6665] = {.lex_state = 1218, .external_lex_state = 5}, [6666] = {.lex_state = 1218, .external_lex_state = 5}, - [6667] = {.lex_state = 248, .external_lex_state = 6}, - [6668] = {.lex_state = 1218, .external_lex_state = 5}, - [6669] = {.lex_state = 242, .external_lex_state = 6}, - [6670] = {.lex_state = 1218, .external_lex_state = 5}, - [6671] = {.lex_state = 248, .external_lex_state = 6}, - [6672] = {.lex_state = 1218, .external_lex_state = 5}, - [6673] = {.lex_state = 242, .external_lex_state = 6}, + [6667] = {.lex_state = 1218, .external_lex_state = 5}, + [6668] = {.lex_state = 1218, .external_lex_state = 6}, + [6669] = {.lex_state = 1218, .external_lex_state = 5}, + [6670] = {.lex_state = 107, .external_lex_state = 6}, + [6671] = {.lex_state = 245, .external_lex_state = 6}, + [6672] = {.lex_state = 1218, .external_lex_state = 6}, + [6673] = {.lex_state = 1218, .external_lex_state = 5}, [6674] = {.lex_state = 1218, .external_lex_state = 5}, [6675] = {.lex_state = 1218, .external_lex_state = 5}, [6676] = {.lex_state = 1218, .external_lex_state = 5}, - [6677] = {.lex_state = 1218, .external_lex_state = 5}, + [6677] = {.lex_state = 107, .external_lex_state = 6}, [6678] = {.lex_state = 1218, .external_lex_state = 5}, - [6679] = {.lex_state = 107, .external_lex_state = 6}, - [6680] = {.lex_state = 1218, .external_lex_state = 5}, - [6681] = {.lex_state = 242, .external_lex_state = 6}, - [6682] = {.lex_state = 1218, .external_lex_state = 5}, - [6683] = {.lex_state = 249, .external_lex_state = 6}, + [6679] = {.lex_state = 1218, .external_lex_state = 5}, + [6680] = {.lex_state = 207, .external_lex_state = 6}, + [6681] = {.lex_state = 1218, .external_lex_state = 5}, + [6682] = {.lex_state = 243, .external_lex_state = 6}, + [6683] = {.lex_state = 1218, .external_lex_state = 5}, [6684] = {.lex_state = 1218, .external_lex_state = 6}, - [6685] = {.lex_state = 243, .external_lex_state = 6}, - [6686] = {.lex_state = 245, .external_lex_state = 6}, + [6685] = {.lex_state = 1218, .external_lex_state = 5}, + [6686] = {.lex_state = 1218, .external_lex_state = 5}, [6687] = {.lex_state = 1218, .external_lex_state = 5}, - [6688] = {.lex_state = 1218, .external_lex_state = 5}, - [6689] = {.lex_state = 246, .external_lex_state = 6}, - [6690] = {.lex_state = 214, .external_lex_state = 6}, + [6688] = {.lex_state = 1218, .external_lex_state = 6}, + [6689] = {.lex_state = 1218, .external_lex_state = 6}, + [6690] = {.lex_state = 247, .external_lex_state = 6}, [6691] = {.lex_state = 1218, .external_lex_state = 5}, - [6692] = {.lex_state = 1218, .external_lex_state = 5}, + [6692] = {.lex_state = 1218, .external_lex_state = 10}, [6693] = {.lex_state = 1218, .external_lex_state = 5}, - [6694] = {.lex_state = 243, .external_lex_state = 6}, - [6695] = {.lex_state = 1218, .external_lex_state = 5}, + [6694] = {.lex_state = 1218, .external_lex_state = 6}, + [6695] = {.lex_state = 1218, .external_lex_state = 6}, [6696] = {.lex_state = 1218, .external_lex_state = 5}, [6697] = {.lex_state = 1218, .external_lex_state = 5}, [6698] = {.lex_state = 1218, .external_lex_state = 5}, - [6699] = {.lex_state = 244, .external_lex_state = 6}, - [6700] = {.lex_state = 248, .external_lex_state = 6}, + [6699] = {.lex_state = 1218, .external_lex_state = 5}, + [6700] = {.lex_state = 1218, .external_lex_state = 5}, [6701] = {.lex_state = 1218, .external_lex_state = 5}, - [6702] = {.lex_state = 1218, .external_lex_state = 5}, - [6703] = {.lex_state = 1218, .external_lex_state = 6}, - [6704] = {.lex_state = 242, .external_lex_state = 6}, - [6705] = {.lex_state = 1218, .external_lex_state = 5}, + [6702] = {.lex_state = 107, .external_lex_state = 6}, + [6703] = {.lex_state = 243, .external_lex_state = 6}, + [6704] = {.lex_state = 1218, .external_lex_state = 5}, + [6705] = {.lex_state = 245, .external_lex_state = 6}, [6706] = {.lex_state = 1218, .external_lex_state = 5}, - [6707] = {.lex_state = 1218, .external_lex_state = 5}, + [6707] = {.lex_state = 247, .external_lex_state = 6}, [6708] = {.lex_state = 1218, .external_lex_state = 5}, [6709] = {.lex_state = 1218, .external_lex_state = 6}, - [6710] = {.lex_state = 1218, .external_lex_state = 6}, - [6711] = {.lex_state = 1218, .external_lex_state = 5}, + [6710] = {.lex_state = 214, .external_lex_state = 6}, + [6711] = {.lex_state = 1218, .external_lex_state = 6}, [6712] = {.lex_state = 1218, .external_lex_state = 6}, - [6713] = {.lex_state = 1218, .external_lex_state = 5}, - [6714] = {.lex_state = 107, .external_lex_state = 6}, + [6713] = {.lex_state = 1218, .external_lex_state = 6}, + [6714] = {.lex_state = 242, .external_lex_state = 6}, [6715] = {.lex_state = 1218, .external_lex_state = 5}, - [6716] = {.lex_state = 1218, .external_lex_state = 5}, - [6717] = {.lex_state = 1218, .external_lex_state = 6}, + [6716] = {.lex_state = 262, .external_lex_state = 6}, + [6717] = {.lex_state = 1218, .external_lex_state = 5}, [6718] = {.lex_state = 1218, .external_lex_state = 5}, - [6719] = {.lex_state = 243, .external_lex_state = 6}, - [6720] = {.lex_state = 1218, .external_lex_state = 5}, + [6719] = {.lex_state = 245, .external_lex_state = 6}, + [6720] = {.lex_state = 1218, .external_lex_state = 6}, [6721] = {.lex_state = 1218, .external_lex_state = 5}, - [6722] = {.lex_state = 1218, .external_lex_state = 5}, - [6723] = {.lex_state = 1218, .external_lex_state = 6}, + [6722] = {.lex_state = 107, .external_lex_state = 6}, + [6723] = {.lex_state = 1218, .external_lex_state = 5}, [6724] = {.lex_state = 1218, .external_lex_state = 5}, - [6725] = {.lex_state = 1218, .external_lex_state = 5}, + [6725] = {.lex_state = 243, .external_lex_state = 6}, [6726] = {.lex_state = 1218, .external_lex_state = 6}, - [6727] = {.lex_state = 1218, .external_lex_state = 5}, - [6728] = {.lex_state = 243, .external_lex_state = 6}, - [6729] = {.lex_state = 1218, .external_lex_state = 5}, - [6730] = {.lex_state = 244, .external_lex_state = 6}, + [6727] = {.lex_state = 1218, .external_lex_state = 6}, + [6728] = {.lex_state = 1218, .external_lex_state = 6}, + [6729] = {.lex_state = 245, .external_lex_state = 6}, + [6730] = {.lex_state = 245, .external_lex_state = 6}, [6731] = {.lex_state = 1218, .external_lex_state = 5}, - [6732] = {.lex_state = 246, .external_lex_state = 6}, + [6732] = {.lex_state = 1218, .external_lex_state = 5}, [6733] = {.lex_state = 1218, .external_lex_state = 5}, - [6734] = {.lex_state = 298, .external_lex_state = 6}, - [6735] = {.lex_state = 1218, .external_lex_state = 5}, + [6734] = {.lex_state = 1218, .external_lex_state = 5}, + [6735] = {.lex_state = 107, .external_lex_state = 6}, [6736] = {.lex_state = 1218, .external_lex_state = 5}, - [6737] = {.lex_state = 244, .external_lex_state = 6}, - [6738] = {.lex_state = 244, .external_lex_state = 6}, - [6739] = {.lex_state = 1218, .external_lex_state = 5}, + [6737] = {.lex_state = 1218, .external_lex_state = 5}, + [6738] = {.lex_state = 247, .external_lex_state = 6}, + [6739] = {.lex_state = 1218, .external_lex_state = 6}, [6740] = {.lex_state = 1218, .external_lex_state = 5}, - [6741] = {.lex_state = 1218, .external_lex_state = 5}, - [6742] = {.lex_state = 1218, .external_lex_state = 5}, - [6743] = {.lex_state = 107, .external_lex_state = 6}, + [6741] = {.lex_state = 1218, .external_lex_state = 6}, + [6742] = {.lex_state = 216, .external_lex_state = 6}, + [6743] = {.lex_state = 1218, .external_lex_state = 6}, [6744] = {.lex_state = 1218, .external_lex_state = 6}, - [6745] = {.lex_state = 1218, .external_lex_state = 6}, - [6746] = {.lex_state = 1218, .external_lex_state = 6}, + [6745] = {.lex_state = 214, .external_lex_state = 6}, + [6746] = {.lex_state = 1218, .external_lex_state = 5}, [6747] = {.lex_state = 1218, .external_lex_state = 5}, - [6748] = {.lex_state = 1218, .external_lex_state = 5}, - [6749] = {.lex_state = 1218, .external_lex_state = 5}, - [6750] = {.lex_state = 243, .external_lex_state = 6}, - [6751] = {.lex_state = 1218, .external_lex_state = 5}, - [6752] = {.lex_state = 1218, .external_lex_state = 6}, - [6753] = {.lex_state = 1218, .external_lex_state = 6}, + [6748] = {.lex_state = 107, .external_lex_state = 6}, + [6749] = {.lex_state = 246, .external_lex_state = 6}, + [6750] = {.lex_state = 1218, .external_lex_state = 5}, + [6751] = {.lex_state = 245, .external_lex_state = 6}, + [6752] = {.lex_state = 1218, .external_lex_state = 5}, + [6753] = {.lex_state = 262, .external_lex_state = 6}, [6754] = {.lex_state = 1218, .external_lex_state = 5}, - [6755] = {.lex_state = 249, .external_lex_state = 6}, + [6755] = {.lex_state = 1218, .external_lex_state = 5}, [6756] = {.lex_state = 1218, .external_lex_state = 5}, [6757] = {.lex_state = 1218, .external_lex_state = 6}, - [6758] = {.lex_state = 244, .external_lex_state = 6}, - [6759] = {.lex_state = 1218, .external_lex_state = 5}, - [6760] = {.lex_state = 107, .external_lex_state = 6}, - [6761] = {.lex_state = 1218, .external_lex_state = 5}, - [6762] = {.lex_state = 1218, .external_lex_state = 6}, - [6763] = {.lex_state = 207, .external_lex_state = 6}, + [6758] = {.lex_state = 1218, .external_lex_state = 5}, + [6759] = {.lex_state = 1218, .external_lex_state = 6}, + [6760] = {.lex_state = 1218, .external_lex_state = 5}, + [6761] = {.lex_state = 107, .external_lex_state = 6}, + [6762] = {.lex_state = 1218, .external_lex_state = 5}, + [6763] = {.lex_state = 1218, .external_lex_state = 5}, [6764] = {.lex_state = 1218, .external_lex_state = 5}, - [6765] = {.lex_state = 1218, .external_lex_state = 5}, - [6766] = {.lex_state = 246, .external_lex_state = 6}, + [6765] = {.lex_state = 1218, .external_lex_state = 4}, + [6766] = {.lex_state = 245, .external_lex_state = 6}, [6767] = {.lex_state = 1218, .external_lex_state = 5}, [6768] = {.lex_state = 1218, .external_lex_state = 5}, [6769] = {.lex_state = 1218, .external_lex_state = 5}, - [6770] = {.lex_state = 1218, .external_lex_state = 5}, - [6771] = {.lex_state = 249, .external_lex_state = 6}, - [6772] = {.lex_state = 1218, .external_lex_state = 6}, + [6770] = {.lex_state = 262, .external_lex_state = 5}, + [6771] = {.lex_state = 1218, .external_lex_state = 5}, + [6772] = {.lex_state = 107, .external_lex_state = 6}, [6773] = {.lex_state = 1218, .external_lex_state = 5}, - [6774] = {.lex_state = 1218, .external_lex_state = 6}, + [6774] = {.lex_state = 107, .external_lex_state = 6}, [6775] = {.lex_state = 1218, .external_lex_state = 5}, - [6776] = {.lex_state = 1218, .external_lex_state = 5}, - [6777] = {.lex_state = 107, .external_lex_state = 6}, - [6778] = {.lex_state = 1218, .external_lex_state = 6}, - [6779] = {.lex_state = 1218, .external_lex_state = 5}, - [6780] = {.lex_state = 1218, .external_lex_state = 6}, - [6781] = {.lex_state = 1218, .external_lex_state = 6}, - [6782] = {.lex_state = 1218, .external_lex_state = 5}, - [6783] = {.lex_state = 107, .external_lex_state = 6}, - [6784] = {.lex_state = 1218, .external_lex_state = 5}, - [6785] = {.lex_state = 1218, .external_lex_state = 5}, - [6786] = {.lex_state = 1218, .external_lex_state = 6}, - [6787] = {.lex_state = 1218, .external_lex_state = 6}, - [6788] = {.lex_state = 1218, .external_lex_state = 10}, - [6789] = {.lex_state = 107, .external_lex_state = 6}, - [6790] = {.lex_state = 1218, .external_lex_state = 5}, - [6791] = {.lex_state = 107, .external_lex_state = 6}, - [6792] = {.lex_state = 1218, .external_lex_state = 5}, + [6776] = {.lex_state = 107, .external_lex_state = 6}, + [6777] = {.lex_state = 247, .external_lex_state = 6}, + [6778] = {.lex_state = 107, .external_lex_state = 6}, + [6779] = {.lex_state = 244, .external_lex_state = 6}, + [6780] = {.lex_state = 107, .external_lex_state = 6}, + [6781] = {.lex_state = 244, .external_lex_state = 6}, + [6782] = {.lex_state = 107, .external_lex_state = 6}, + [6783] = {.lex_state = 246, .external_lex_state = 6}, + [6784] = {.lex_state = 107, .external_lex_state = 6}, + [6785] = {.lex_state = 244, .external_lex_state = 6}, + [6786] = {.lex_state = 107, .external_lex_state = 6}, + [6787] = {.lex_state = 1218, .external_lex_state = 5}, + [6788] = {.lex_state = 107, .external_lex_state = 6}, + [6789] = {.lex_state = 247, .external_lex_state = 6}, + [6790] = {.lex_state = 107, .external_lex_state = 6}, + [6791] = {.lex_state = 1218, .external_lex_state = 6}, + [6792] = {.lex_state = 107, .external_lex_state = 6}, [6793] = {.lex_state = 1218, .external_lex_state = 5}, - [6794] = {.lex_state = 298, .external_lex_state = 6}, - [6795] = {.lex_state = 1218, .external_lex_state = 6}, - [6796] = {.lex_state = 1218, .external_lex_state = 5}, - [6797] = {.lex_state = 1218, .external_lex_state = 5}, - [6798] = {.lex_state = 1218, .external_lex_state = 5}, - [6799] = {.lex_state = 248, .external_lex_state = 6}, - [6800] = {.lex_state = 214, .external_lex_state = 6}, - [6801] = {.lex_state = 1218, .external_lex_state = 6}, - [6802] = {.lex_state = 1218, .external_lex_state = 5}, - [6803] = {.lex_state = 1218, .external_lex_state = 5}, + [6794] = {.lex_state = 107, .external_lex_state = 6}, + [6795] = {.lex_state = 1218, .external_lex_state = 5}, + [6796] = {.lex_state = 107, .external_lex_state = 6}, + [6797] = {.lex_state = 246, .external_lex_state = 6}, + [6798] = {.lex_state = 107, .external_lex_state = 6}, + [6799] = {.lex_state = 242, .external_lex_state = 6}, + [6800] = {.lex_state = 107, .external_lex_state = 6}, + [6801] = {.lex_state = 1218, .external_lex_state = 5}, + [6802] = {.lex_state = 107, .external_lex_state = 6}, + [6803] = {.lex_state = 247, .external_lex_state = 6}, [6804] = {.lex_state = 107, .external_lex_state = 6}, - [6805] = {.lex_state = 242, .external_lex_state = 6}, - [6806] = {.lex_state = 1218, .external_lex_state = 5}, - [6807] = {.lex_state = 248, .external_lex_state = 6}, - [6808] = {.lex_state = 1218, .external_lex_state = 5}, + [6805] = {.lex_state = 1218, .external_lex_state = 5}, + [6806] = {.lex_state = 107, .external_lex_state = 6}, + [6807] = {.lex_state = 246, .external_lex_state = 6}, + [6808] = {.lex_state = 107, .external_lex_state = 6}, [6809] = {.lex_state = 1218, .external_lex_state = 5}, - [6810] = {.lex_state = 1218, .external_lex_state = 5}, - [6811] = {.lex_state = 1218, .external_lex_state = 6}, - [6812] = {.lex_state = 1218, .external_lex_state = 5}, + [6810] = {.lex_state = 107, .external_lex_state = 6}, + [6811] = {.lex_state = 1218, .external_lex_state = 10}, + [6812] = {.lex_state = 107, .external_lex_state = 6}, [6813] = {.lex_state = 1218, .external_lex_state = 5}, - [6814] = {.lex_state = 98, .external_lex_state = 6}, - [6815] = {.lex_state = 107, .external_lex_state = 6}, - [6816] = {.lex_state = 248, .external_lex_state = 6}, - [6817] = {.lex_state = 107, .external_lex_state = 6}, - [6818] = {.lex_state = 1218, .external_lex_state = 5}, - [6819] = {.lex_state = 107, .external_lex_state = 6}, - [6820] = {.lex_state = 1218, .external_lex_state = 5}, - [6821] = {.lex_state = 107, .external_lex_state = 6}, - [6822] = {.lex_state = 247, .external_lex_state = 6}, + [6814] = {.lex_state = 107, .external_lex_state = 6}, + [6815] = {.lex_state = 1218, .external_lex_state = 5}, + [6816] = {.lex_state = 107, .external_lex_state = 6}, + [6817] = {.lex_state = 1218, .external_lex_state = 5}, + [6818] = {.lex_state = 107, .external_lex_state = 6}, + [6819] = {.lex_state = 243, .external_lex_state = 6}, + [6820] = {.lex_state = 107, .external_lex_state = 6}, + [6821] = {.lex_state = 1218, .external_lex_state = 5}, + [6822] = {.lex_state = 107, .external_lex_state = 6}, [6823] = {.lex_state = 107, .external_lex_state = 6}, - [6824] = {.lex_state = 242, .external_lex_state = 6}, - [6825] = {.lex_state = 107, .external_lex_state = 6}, - [6826] = {.lex_state = 1218, .external_lex_state = 5}, - [6827] = {.lex_state = 107, .external_lex_state = 6}, + [6824] = {.lex_state = 107, .external_lex_state = 6}, + [6825] = {.lex_state = 248, .external_lex_state = 6}, + [6826] = {.lex_state = 107, .external_lex_state = 6}, + [6827] = {.lex_state = 1218, .external_lex_state = 5}, [6828] = {.lex_state = 1218, .external_lex_state = 5}, - [6829] = {.lex_state = 107, .external_lex_state = 6}, - [6830] = {.lex_state = 248, .external_lex_state = 6}, - [6831] = {.lex_state = 107, .external_lex_state = 6}, + [6829] = {.lex_state = 1218, .external_lex_state = 5}, + [6830] = {.lex_state = 242, .external_lex_state = 6}, + [6831] = {.lex_state = 1218, .external_lex_state = 5}, [6832] = {.lex_state = 1218, .external_lex_state = 5}, - [6833] = {.lex_state = 107, .external_lex_state = 6}, - [6834] = {.lex_state = 242, .external_lex_state = 6}, - [6835] = {.lex_state = 107, .external_lex_state = 6}, - [6836] = {.lex_state = 262, .external_lex_state = 6}, - [6837] = {.lex_state = 107, .external_lex_state = 6}, - [6838] = {.lex_state = 1218, .external_lex_state = 10}, - [6839] = {.lex_state = 107, .external_lex_state = 6}, + [6833] = {.lex_state = 1218, .external_lex_state = 5}, + [6834] = {.lex_state = 1218, .external_lex_state = 5}, + [6835] = {.lex_state = 249, .external_lex_state = 6}, + [6836] = {.lex_state = 214, .external_lex_state = 6}, + [6837] = {.lex_state = 243, .external_lex_state = 6}, + [6838] = {.lex_state = 1218, .external_lex_state = 5}, + [6839] = {.lex_state = 1218, .external_lex_state = 5}, [6840] = {.lex_state = 1218, .external_lex_state = 5}, - [6841] = {.lex_state = 107, .external_lex_state = 6}, - [6842] = {.lex_state = 1218, .external_lex_state = 5}, - [6843] = {.lex_state = 107, .external_lex_state = 6}, - [6844] = {.lex_state = 1218, .external_lex_state = 5}, - [6845] = {.lex_state = 107, .external_lex_state = 6}, - [6846] = {.lex_state = 1218, .external_lex_state = 5}, - [6847] = {.lex_state = 107, .external_lex_state = 6}, - [6848] = {.lex_state = 107, .external_lex_state = 6}, - [6849] = {.lex_state = 107, .external_lex_state = 6}, - [6850] = {.lex_state = 245, .external_lex_state = 6}, - [6851] = {.lex_state = 107, .external_lex_state = 6}, - [6852] = {.lex_state = 1218, .external_lex_state = 5}, - [6853] = {.lex_state = 107, .external_lex_state = 6}, - [6854] = {.lex_state = 262, .external_lex_state = 6}, - [6855] = {.lex_state = 107, .external_lex_state = 6}, - [6856] = {.lex_state = 1218, .external_lex_state = 5}, - [6857] = {.lex_state = 107, .external_lex_state = 6}, + [6841] = {.lex_state = 1218, .external_lex_state = 5}, + [6842] = {.lex_state = 1218, .external_lex_state = 6}, + [6843] = {.lex_state = 1218, .external_lex_state = 5}, + [6844] = {.lex_state = 216, .external_lex_state = 6}, + [6845] = {.lex_state = 1218, .external_lex_state = 6}, + [6846] = {.lex_state = 249, .external_lex_state = 6}, + [6847] = {.lex_state = 244, .external_lex_state = 6}, + [6848] = {.lex_state = 1218, .external_lex_state = 5}, + [6849] = {.lex_state = 1218, .external_lex_state = 6}, + [6850] = {.lex_state = 1218, .external_lex_state = 5}, + [6851] = {.lex_state = 1218, .external_lex_state = 6}, + [6852] = {.lex_state = 248, .external_lex_state = 6}, + [6853] = {.lex_state = 1218, .external_lex_state = 5}, + [6854] = {.lex_state = 1218, .external_lex_state = 5}, + [6855] = {.lex_state = 1218, .external_lex_state = 6}, + [6856] = {.lex_state = 1218, .external_lex_state = 6}, + [6857] = {.lex_state = 249, .external_lex_state = 6}, [6858] = {.lex_state = 1218, .external_lex_state = 5}, - [6859] = {.lex_state = 107, .external_lex_state = 6}, - [6860] = {.lex_state = 1218, .external_lex_state = 5}, - [6861] = {.lex_state = 107, .external_lex_state = 6}, + [6859] = {.lex_state = 1218, .external_lex_state = 5}, + [6860] = {.lex_state = 243, .external_lex_state = 6}, + [6861] = {.lex_state = 1218, .external_lex_state = 5}, [6862] = {.lex_state = 1218, .external_lex_state = 5}, - [6863] = {.lex_state = 107, .external_lex_state = 6}, + [6863] = {.lex_state = 242, .external_lex_state = 6}, [6864] = {.lex_state = 1218, .external_lex_state = 5}, - [6865] = {.lex_state = 107, .external_lex_state = 6}, - [6866] = {.lex_state = 243, .external_lex_state = 6}, - [6867] = {.lex_state = 107, .external_lex_state = 6}, - [6868] = {.lex_state = 1218, .external_lex_state = 5}, - [6869] = {.lex_state = 107, .external_lex_state = 6}, - [6870] = {.lex_state = 214, .external_lex_state = 6}, - [6871] = {.lex_state = 242, .external_lex_state = 6}, - [6872] = {.lex_state = 98, .external_lex_state = 6}, - [6873] = {.lex_state = 98, .external_lex_state = 6}, - [6874] = {.lex_state = 1218, .external_lex_state = 5}, - [6875] = {.lex_state = 98, .external_lex_state = 6}, - [6876] = {.lex_state = 1218, .external_lex_state = 5}, + [6865] = {.lex_state = 1218, .external_lex_state = 6}, + [6866] = {.lex_state = 1218, .external_lex_state = 5}, + [6867] = {.lex_state = 1218, .external_lex_state = 5}, + [6868] = {.lex_state = 1218, .external_lex_state = 6}, + [6869] = {.lex_state = 1218, .external_lex_state = 5}, + [6870] = {.lex_state = 1218, .external_lex_state = 6}, + [6871] = {.lex_state = 1218, .external_lex_state = 6}, + [6872] = {.lex_state = 1218, .external_lex_state = 5}, + [6873] = {.lex_state = 1218, .external_lex_state = 5}, + [6874] = {.lex_state = 214, .external_lex_state = 6}, + [6875] = {.lex_state = 249, .external_lex_state = 6}, + [6876] = {.lex_state = 245, .external_lex_state = 6}, [6877] = {.lex_state = 1218, .external_lex_state = 5}, - [6878] = {.lex_state = 246, .external_lex_state = 6}, - [6879] = {.lex_state = 1218, .external_lex_state = 5}, + [6878] = {.lex_state = 1218, .external_lex_state = 5}, + [6879] = {.lex_state = 298, .external_lex_state = 6}, [6880] = {.lex_state = 1218, .external_lex_state = 5}, [6881] = {.lex_state = 1218, .external_lex_state = 5}, - [6882] = {.lex_state = 1218, .external_lex_state = 6}, - [6883] = {.lex_state = 1218, .external_lex_state = 5}, - [6884] = {.lex_state = 216, .external_lex_state = 6}, - [6885] = {.lex_state = 214, .external_lex_state = 6}, - [6886] = {.lex_state = 249, .external_lex_state = 6}, - [6887] = {.lex_state = 262, .external_lex_state = 6}, - [6888] = {.lex_state = 1218, .external_lex_state = 10}, - [6889] = {.lex_state = 1218, .external_lex_state = 6}, + [6882] = {.lex_state = 1218, .external_lex_state = 5}, + [6883] = {.lex_state = 1218, .external_lex_state = 6}, + [6884] = {.lex_state = 1218, .external_lex_state = 5}, + [6885] = {.lex_state = 1218, .external_lex_state = 5}, + [6886] = {.lex_state = 243, .external_lex_state = 6}, + [6887] = {.lex_state = 1218, .external_lex_state = 5}, + [6888] = {.lex_state = 249, .external_lex_state = 6}, + [6889] = {.lex_state = 1218, .external_lex_state = 5}, [6890] = {.lex_state = 1218, .external_lex_state = 5}, [6891] = {.lex_state = 1218, .external_lex_state = 5}, - [6892] = {.lex_state = 1218, .external_lex_state = 5}, - [6893] = {.lex_state = 214, .external_lex_state = 6}, - [6894] = {.lex_state = 1218, .external_lex_state = 5}, - [6895] = {.lex_state = 1218, .external_lex_state = 6}, + [6892] = {.lex_state = 1218, .external_lex_state = 6}, + [6893] = {.lex_state = 1218, .external_lex_state = 5}, + [6894] = {.lex_state = 1218, .external_lex_state = 6}, + [6895] = {.lex_state = 1218, .external_lex_state = 5}, [6896] = {.lex_state = 1218, .external_lex_state = 5}, - [6897] = {.lex_state = 1218, .external_lex_state = 5}, - [6898] = {.lex_state = 1218, .external_lex_state = 5}, - [6899] = {.lex_state = 1218, .external_lex_state = 5}, + [6897] = {.lex_state = 245, .external_lex_state = 6}, + [6898] = {.lex_state = 244, .external_lex_state = 6}, + [6899] = {.lex_state = 249, .external_lex_state = 6}, [6900] = {.lex_state = 1218, .external_lex_state = 5}, - [6901] = {.lex_state = 107, .external_lex_state = 6}, - [6902] = {.lex_state = 1218, .external_lex_state = 6}, + [6901] = {.lex_state = 1218, .external_lex_state = 5}, + [6902] = {.lex_state = 249, .external_lex_state = 6}, [6903] = {.lex_state = 1218, .external_lex_state = 5}, [6904] = {.lex_state = 1218, .external_lex_state = 5}, [6905] = {.lex_state = 1218, .external_lex_state = 5}, [6906] = {.lex_state = 1218, .external_lex_state = 5}, - [6907] = {.lex_state = 1218, .external_lex_state = 5}, - [6908] = {.lex_state = 1218, .external_lex_state = 6}, - [6909] = {.lex_state = 1218, .external_lex_state = 5}, - [6910] = {.lex_state = 1218, .external_lex_state = 5}, - [6911] = {.lex_state = 1218, .external_lex_state = 5}, + [6907] = {.lex_state = 1218, .external_lex_state = 10}, + [6908] = {.lex_state = 249, .external_lex_state = 6}, + [6909] = {.lex_state = 245, .external_lex_state = 6}, + [6910] = {.lex_state = 1218, .external_lex_state = 6}, + [6911] = {.lex_state = 1218, .external_lex_state = 6}, [6912] = {.lex_state = 1218, .external_lex_state = 5}, - [6913] = {.lex_state = 218, .external_lex_state = 6}, + [6913] = {.lex_state = 1218, .external_lex_state = 6}, [6914] = {.lex_state = 1218, .external_lex_state = 5}, - [6915] = {.lex_state = 216, .external_lex_state = 6}, - [6916] = {.lex_state = 1218, .external_lex_state = 4}, - [6917] = {.lex_state = 249, .external_lex_state = 6}, - [6918] = {.lex_state = 214, .external_lex_state = 6}, - [6919] = {.lex_state = 1218, .external_lex_state = 5}, + [6915] = {.lex_state = 1218, .external_lex_state = 5}, + [6916] = {.lex_state = 1218, .external_lex_state = 5}, + [6917] = {.lex_state = 1218, .external_lex_state = 5}, + [6918] = {.lex_state = 247, .external_lex_state = 6}, + [6919] = {.lex_state = 249, .external_lex_state = 6}, [6920] = {.lex_state = 1218, .external_lex_state = 5}, - [6921] = {.lex_state = 243, .external_lex_state = 6}, + [6921] = {.lex_state = 1218, .external_lex_state = 5}, [6922] = {.lex_state = 1218, .external_lex_state = 6}, - [6923] = {.lex_state = 1218, .external_lex_state = 6}, - [6924] = {.lex_state = 1218, .external_lex_state = 5}, - [6925] = {.lex_state = 243, .external_lex_state = 6}, - [6926] = {.lex_state = 1218, .external_lex_state = 5}, - [6927] = {.lex_state = 298, .external_lex_state = 6}, - [6928] = {.lex_state = 1218, .external_lex_state = 5}, + [6923] = {.lex_state = 1218, .external_lex_state = 5}, + [6924] = {.lex_state = 98, .external_lex_state = 6}, + [6925] = {.lex_state = 98, .external_lex_state = 6}, + [6926] = {.lex_state = 98, .external_lex_state = 6}, + [6927] = {.lex_state = 98, .external_lex_state = 6}, + [6928] = {.lex_state = 1218, .external_lex_state = 6}, [6929] = {.lex_state = 1218, .external_lex_state = 5}, [6930] = {.lex_state = 1218, .external_lex_state = 5}, [6931] = {.lex_state = 1218, .external_lex_state = 5}, - [6932] = {.lex_state = 1218, .external_lex_state = 5}, - [6933] = {.lex_state = 1218, .external_lex_state = 5}, - [6934] = {.lex_state = 247, .external_lex_state = 6}, - [6935] = {.lex_state = 248, .external_lex_state = 6}, - [6936] = {.lex_state = 249, .external_lex_state = 6}, + [6932] = {.lex_state = 1218, .external_lex_state = 6}, + [6933] = {.lex_state = 107, .external_lex_state = 6}, + [6934] = {.lex_state = 249, .external_lex_state = 6}, + [6935] = {.lex_state = 249, .external_lex_state = 6}, + [6936] = {.lex_state = 247, .external_lex_state = 6}, [6937] = {.lex_state = 1218, .external_lex_state = 6}, [6938] = {.lex_state = 1218, .external_lex_state = 5}, - [6939] = {.lex_state = 245, .external_lex_state = 6}, - [6940] = {.lex_state = 1218, .external_lex_state = 5}, - [6941] = {.lex_state = 1218, .external_lex_state = 6}, + [6939] = {.lex_state = 1218, .external_lex_state = 5}, + [6940] = {.lex_state = 1218, .external_lex_state = 6}, + [6941] = {.lex_state = 1218, .external_lex_state = 5}, [6942] = {.lex_state = 1218, .external_lex_state = 6}, [6943] = {.lex_state = 1218, .external_lex_state = 5}, [6944] = {.lex_state = 1218, .external_lex_state = 5}, - [6945] = {.lex_state = 242, .external_lex_state = 6}, - [6946] = {.lex_state = 249, .external_lex_state = 6}, - [6947] = {.lex_state = 1218, .external_lex_state = 5}, - [6948] = {.lex_state = 214, .external_lex_state = 6}, + [6945] = {.lex_state = 1218, .external_lex_state = 6}, + [6946] = {.lex_state = 262, .external_lex_state = 6}, + [6947] = {.lex_state = 1218, .external_lex_state = 6}, + [6948] = {.lex_state = 249, .external_lex_state = 6}, [6949] = {.lex_state = 1218, .external_lex_state = 5}, - [6950] = {.lex_state = 1218, .external_lex_state = 5}, - [6951] = {.lex_state = 1218, .external_lex_state = 5}, - [6952] = {.lex_state = 249, .external_lex_state = 6}, - [6953] = {.lex_state = 1218, .external_lex_state = 6}, - [6954] = {.lex_state = 1218, .external_lex_state = 6}, - [6955] = {.lex_state = 1218, .external_lex_state = 6}, - [6956] = {.lex_state = 1218, .external_lex_state = 5}, - [6957] = {.lex_state = 1218, .external_lex_state = 6}, - [6958] = {.lex_state = 1218, .external_lex_state = 6}, - [6959] = {.lex_state = 1218, .external_lex_state = 5}, + [6950] = {.lex_state = 246, .external_lex_state = 6}, + [6951] = {.lex_state = 1218, .external_lex_state = 6}, + [6952] = {.lex_state = 246, .external_lex_state = 6}, + [6953] = {.lex_state = 247, .external_lex_state = 6}, + [6954] = {.lex_state = 1218, .external_lex_state = 5}, + [6955] = {.lex_state = 1218, .external_lex_state = 5}, + [6956] = {.lex_state = 262, .external_lex_state = 6}, + [6957] = {.lex_state = 1218, .external_lex_state = 5}, + [6958] = {.lex_state = 249, .external_lex_state = 6}, + [6959] = {.lex_state = 247, .external_lex_state = 6}, [6960] = {.lex_state = 1218, .external_lex_state = 5}, - [6961] = {.lex_state = 1218, .external_lex_state = 6}, - [6962] = {.lex_state = 248, .external_lex_state = 6}, - [6963] = {.lex_state = 1218, .external_lex_state = 5}, - [6964] = {.lex_state = 249, .external_lex_state = 6}, + [6961] = {.lex_state = 244, .external_lex_state = 6}, + [6962] = {.lex_state = 1218, .external_lex_state = 5}, + [6963] = {.lex_state = 246, .external_lex_state = 6}, + [6964] = {.lex_state = 1218, .external_lex_state = 5}, [6965] = {.lex_state = 1218, .external_lex_state = 5}, [6966] = {.lex_state = 1218, .external_lex_state = 5}, [6967] = {.lex_state = 1218, .external_lex_state = 5}, - [6968] = {.lex_state = 262, .external_lex_state = 6}, - [6969] = {.lex_state = 1218, .external_lex_state = 5}, + [6968] = {.lex_state = 249, .external_lex_state = 6}, + [6969] = {.lex_state = 247, .external_lex_state = 6}, [6970] = {.lex_state = 1218, .external_lex_state = 6}, - [6971] = {.lex_state = 1218, .external_lex_state = 5}, + [6971] = {.lex_state = 216, .external_lex_state = 6}, [6972] = {.lex_state = 1218, .external_lex_state = 5}, - [6973] = {.lex_state = 1218, .external_lex_state = 6}, - [6974] = {.lex_state = 246, .external_lex_state = 6}, - [6975] = {.lex_state = 249, .external_lex_state = 6}, - [6976] = {.lex_state = 1218, .external_lex_state = 6}, - [6977] = {.lex_state = 1218, .external_lex_state = 5}, - [6978] = {.lex_state = 242, .external_lex_state = 6}, - [6979] = {.lex_state = 1218, .external_lex_state = 5}, - [6980] = {.lex_state = 1218, .external_lex_state = 4}, + [6973] = {.lex_state = 1218, .external_lex_state = 5}, + [6974] = {.lex_state = 1218, .external_lex_state = 5}, + [6975] = {.lex_state = 246, .external_lex_state = 6}, + [6976] = {.lex_state = 1218, .external_lex_state = 5}, + [6977] = {.lex_state = 1218, .external_lex_state = 10}, + [6978] = {.lex_state = 248, .external_lex_state = 6}, + [6979] = {.lex_state = 1218, .external_lex_state = 6}, + [6980] = {.lex_state = 1218, .external_lex_state = 5}, [6981] = {.lex_state = 1218, .external_lex_state = 5}, [6982] = {.lex_state = 1218, .external_lex_state = 5}, - [6983] = {.lex_state = 1218, .external_lex_state = 6}, - [6984] = {.lex_state = 249, .external_lex_state = 6}, - [6985] = {.lex_state = 249, .external_lex_state = 6}, - [6986] = {.lex_state = 1218, .external_lex_state = 6}, - [6987] = {.lex_state = 1218, .external_lex_state = 5}, - [6988] = {.lex_state = 1218, .external_lex_state = 5}, - [6989] = {.lex_state = 1218, .external_lex_state = 6}, - [6990] = {.lex_state = 1218, .external_lex_state = 5}, - [6991] = {.lex_state = 1218, .external_lex_state = 5}, + [6983] = {.lex_state = 1218, .external_lex_state = 5}, + [6984] = {.lex_state = 1218, .external_lex_state = 5}, + [6985] = {.lex_state = 242, .external_lex_state = 6}, + [6986] = {.lex_state = 1218, .external_lex_state = 5}, + [6987] = {.lex_state = 107, .external_lex_state = 6}, + [6988] = {.lex_state = 1218, .external_lex_state = 6}, + [6989] = {.lex_state = 1218, .external_lex_state = 5}, + [6990] = {.lex_state = 1218, .external_lex_state = 6}, + [6991] = {.lex_state = 246, .external_lex_state = 6}, [6992] = {.lex_state = 1218, .external_lex_state = 5}, - [6993] = {.lex_state = 1218, .external_lex_state = 5}, + [6993] = {.lex_state = 1218, .external_lex_state = 6}, [6994] = {.lex_state = 1218, .external_lex_state = 6}, [6995] = {.lex_state = 1218, .external_lex_state = 5}, - [6996] = {.lex_state = 246, .external_lex_state = 6}, - [6997] = {.lex_state = 249, .external_lex_state = 6}, - [6998] = {.lex_state = 243, .external_lex_state = 6}, - [6999] = {.lex_state = 244, .external_lex_state = 6}, - [7000] = {.lex_state = 1218, .external_lex_state = 5}, - [7001] = {.lex_state = 1218, .external_lex_state = 5}, - [7002] = {.lex_state = 1218, .external_lex_state = 5}, + [6996] = {.lex_state = 1218, .external_lex_state = 6}, + [6997] = {.lex_state = 1218, .external_lex_state = 5}, + [6998] = {.lex_state = 1218, .external_lex_state = 5}, + [6999] = {.lex_state = 1218, .external_lex_state = 5}, + [7000] = {.lex_state = 1218, .external_lex_state = 6}, + [7001] = {.lex_state = 214, .external_lex_state = 6}, + [7002] = {.lex_state = 262, .external_lex_state = 5}, [7003] = {.lex_state = 1218, .external_lex_state = 5}, [7004] = {.lex_state = 1218, .external_lex_state = 5}, - [7005] = {.lex_state = 244, .external_lex_state = 6}, + [7005] = {.lex_state = 1218, .external_lex_state = 6}, [7006] = {.lex_state = 1218, .external_lex_state = 5}, - [7007] = {.lex_state = 249, .external_lex_state = 6}, - [7008] = {.lex_state = 244, .external_lex_state = 6}, - [7009] = {.lex_state = 218, .external_lex_state = 6}, + [7007] = {.lex_state = 1218, .external_lex_state = 5}, + [7008] = {.lex_state = 1218, .external_lex_state = 6}, + [7009] = {.lex_state = 243, .external_lex_state = 6}, [7010] = {.lex_state = 1218, .external_lex_state = 5}, [7011] = {.lex_state = 1218, .external_lex_state = 5}, [7012] = {.lex_state = 1218, .external_lex_state = 6}, - [7013] = {.lex_state = 1218, .external_lex_state = 6}, - [7014] = {.lex_state = 1218, .external_lex_state = 5}, + [7013] = {.lex_state = 1218, .external_lex_state = 5}, + [7014] = {.lex_state = 1218, .external_lex_state = 6}, [7015] = {.lex_state = 1218, .external_lex_state = 5}, [7016] = {.lex_state = 1218, .external_lex_state = 5}, [7017] = {.lex_state = 1218, .external_lex_state = 6}, [7018] = {.lex_state = 1218, .external_lex_state = 5}, - [7019] = {.lex_state = 249, .external_lex_state = 6}, - [7020] = {.lex_state = 1218, .external_lex_state = 10}, + [7019] = {.lex_state = 1218, .external_lex_state = 5}, + [7020] = {.lex_state = 1218, .external_lex_state = 6}, [7021] = {.lex_state = 1218, .external_lex_state = 5}, - [7022] = {.lex_state = 1218, .external_lex_state = 6}, - [7023] = {.lex_state = 248, .external_lex_state = 6}, - [7024] = {.lex_state = 249, .external_lex_state = 6}, + [7022] = {.lex_state = 1218, .external_lex_state = 5}, + [7023] = {.lex_state = 1218, .external_lex_state = 5}, + [7024] = {.lex_state = 298, .external_lex_state = 6}, [7025] = {.lex_state = 1218, .external_lex_state = 5}, - [7026] = {.lex_state = 1218, .external_lex_state = 6}, - [7027] = {.lex_state = 1218, .external_lex_state = 6}, - [7028] = {.lex_state = 1218, .external_lex_state = 6}, - [7029] = {.lex_state = 1218, .external_lex_state = 6}, - [7030] = {.lex_state = 242, .external_lex_state = 6}, - [7031] = {.lex_state = 1218, .external_lex_state = 6}, - [7032] = {.lex_state = 1218, .external_lex_state = 6}, - [7033] = {.lex_state = 1218, .external_lex_state = 5}, - [7034] = {.lex_state = 1218, .external_lex_state = 6}, - [7035] = {.lex_state = 1218, .external_lex_state = 6}, - [7036] = {.lex_state = 1218, .external_lex_state = 6}, - [7037] = {.lex_state = 1218, .external_lex_state = 5}, - [7038] = {.lex_state = 246, .external_lex_state = 6}, - [7039] = {.lex_state = 1218, .external_lex_state = 5}, - [7040] = {.lex_state = 1218, .external_lex_state = 5}, + [7026] = {.lex_state = 1218, .external_lex_state = 4}, + [7027] = {.lex_state = 214, .external_lex_state = 6}, + [7028] = {.lex_state = 1218, .external_lex_state = 5}, + [7029] = {.lex_state = 214, .external_lex_state = 6}, + [7030] = {.lex_state = 1218, .external_lex_state = 5}, + [7031] = {.lex_state = 1218, .external_lex_state = 5}, + [7032] = {.lex_state = 248, .external_lex_state = 6}, + [7033] = {.lex_state = 298, .external_lex_state = 6}, + [7034] = {.lex_state = 1218, .external_lex_state = 5}, + [7035] = {.lex_state = 1218, .external_lex_state = 5}, + [7036] = {.lex_state = 1218, .external_lex_state = 5}, + [7037] = {.lex_state = 243, .external_lex_state = 6}, + [7038] = {.lex_state = 1218, .external_lex_state = 5}, + [7039] = {.lex_state = 242, .external_lex_state = 6}, + [7040] = {.lex_state = 244, .external_lex_state = 6}, [7041] = {.lex_state = 1218, .external_lex_state = 5}, - [7042] = {.lex_state = 214, .external_lex_state = 6}, - [7043] = {.lex_state = 1218, .external_lex_state = 6}, - [7044] = {.lex_state = 1218, .external_lex_state = 6}, - [7045] = {.lex_state = 216, .external_lex_state = 6}, - [7046] = {.lex_state = 246, .external_lex_state = 6}, - [7047] = {.lex_state = 1218, .external_lex_state = 6}, - [7048] = {.lex_state = 249, .external_lex_state = 6}, - [7049] = {.lex_state = 1218, .external_lex_state = 6}, - [7050] = {.lex_state = 243, .external_lex_state = 6}, - [7051] = {.lex_state = 1218, .external_lex_state = 6}, - [7052] = {.lex_state = 1218, .external_lex_state = 5}, + [7042] = {.lex_state = 244, .external_lex_state = 6}, + [7043] = {.lex_state = 244, .external_lex_state = 6}, + [7044] = {.lex_state = 247, .external_lex_state = 6}, + [7045] = {.lex_state = 1218, .external_lex_state = 5}, + [7046] = {.lex_state = 1218, .external_lex_state = 6}, + [7047] = {.lex_state = 214, .external_lex_state = 6}, + [7048] = {.lex_state = 1218, .external_lex_state = 5}, + [7049] = {.lex_state = 246, .external_lex_state = 6}, + [7050] = {.lex_state = 1218, .external_lex_state = 6}, + [7051] = {.lex_state = 1218, .external_lex_state = 5}, + [7052] = {.lex_state = 1218, .external_lex_state = 4}, [7053] = {.lex_state = 1218, .external_lex_state = 5}, [7054] = {.lex_state = 1218, .external_lex_state = 6}, [7055] = {.lex_state = 1218, .external_lex_state = 5}, - [7056] = {.lex_state = 246, .external_lex_state = 6}, - [7057] = {.lex_state = 1218, .external_lex_state = 6}, + [7056] = {.lex_state = 1218, .external_lex_state = 5}, + [7057] = {.lex_state = 247, .external_lex_state = 6}, [7058] = {.lex_state = 1218, .external_lex_state = 5}, - [7059] = {.lex_state = 1218, .external_lex_state = 6}, - [7060] = {.lex_state = 1218, .external_lex_state = 6}, - [7061] = {.lex_state = 1218, .external_lex_state = 5}, - [7062] = {.lex_state = 244, .external_lex_state = 6}, - [7063] = {.lex_state = 246, .external_lex_state = 6}, + [7059] = {.lex_state = 247, .external_lex_state = 6}, + [7060] = {.lex_state = 1218, .external_lex_state = 5}, + [7061] = {.lex_state = 1218, .external_lex_state = 6}, + [7062] = {.lex_state = 248, .external_lex_state = 6}, + [7063] = {.lex_state = 1218, .external_lex_state = 6}, [7064] = {.lex_state = 1218, .external_lex_state = 5}, - [7065] = {.lex_state = 1218, .external_lex_state = 5}, - [7066] = {.lex_state = 1218, .external_lex_state = 5}, - [7067] = {.lex_state = 207, .external_lex_state = 6}, - [7068] = {.lex_state = 1218, .external_lex_state = 5}, - [7069] = {.lex_state = 214, .external_lex_state = 6}, - [7070] = {.lex_state = 248, .external_lex_state = 6}, - [7071] = {.lex_state = 1218, .external_lex_state = 5}, - [7072] = {.lex_state = 244, .external_lex_state = 6}, - [7073] = {.lex_state = 1218, .external_lex_state = 5}, - [7074] = {.lex_state = 1218, .external_lex_state = 5}, - [7075] = {.lex_state = 99, .external_lex_state = 6}, - [7076] = {.lex_state = 1218, .external_lex_state = 5}, - [7077] = {.lex_state = 99, .external_lex_state = 6}, - [7078] = {.lex_state = 262, .external_lex_state = 6}, - [7079] = {.lex_state = 1218, .external_lex_state = 5}, - [7080] = {.lex_state = 1218, .external_lex_state = 6}, - [7081] = {.lex_state = 1218, .external_lex_state = 5}, + [7065] = {.lex_state = 1218, .external_lex_state = 6}, + [7066] = {.lex_state = 1218, .external_lex_state = 6}, + [7067] = {.lex_state = 1218, .external_lex_state = 5}, + [7068] = {.lex_state = 1218, .external_lex_state = 6}, + [7069] = {.lex_state = 1218, .external_lex_state = 6}, + [7070] = {.lex_state = 1218, .external_lex_state = 6}, + [7071] = {.lex_state = 1218, .external_lex_state = 6}, + [7072] = {.lex_state = 1218, .external_lex_state = 6}, + [7073] = {.lex_state = 1218, .external_lex_state = 6}, + [7074] = {.lex_state = 246, .external_lex_state = 6}, + [7075] = {.lex_state = 216, .external_lex_state = 6}, + [7076] = {.lex_state = 1218, .external_lex_state = 6}, + [7077] = {.lex_state = 1218, .external_lex_state = 5}, + [7078] = {.lex_state = 99, .external_lex_state = 6}, + [7079] = {.lex_state = 1218, .external_lex_state = 6}, + [7080] = {.lex_state = 1218, .external_lex_state = 5}, + [7081] = {.lex_state = 262, .external_lex_state = 6}, [7082] = {.lex_state = 1218, .external_lex_state = 5}, - [7083] = {.lex_state = 99, .external_lex_state = 6}, + [7083] = {.lex_state = 1218, .external_lex_state = 5}, [7084] = {.lex_state = 1218, .external_lex_state = 5}, - [7085] = {.lex_state = 249, .external_lex_state = 6}, + [7085] = {.lex_state = 1218, .external_lex_state = 5}, [7086] = {.lex_state = 262, .external_lex_state = 6}, [7087] = {.lex_state = 99, .external_lex_state = 6}, - [7088] = {.lex_state = 262, .external_lex_state = 6}, - [7089] = {.lex_state = 1218, .external_lex_state = 5}, - [7090] = {.lex_state = 99, .external_lex_state = 6}, - [7091] = {.lex_state = 249, .external_lex_state = 6}, - [7092] = {.lex_state = 1218, .external_lex_state = 6}, + [7088] = {.lex_state = 249, .external_lex_state = 6}, + [7089] = {.lex_state = 249, .external_lex_state = 6}, + [7090] = {.lex_state = 1218, .external_lex_state = 5}, + [7091] = {.lex_state = 1218, .external_lex_state = 5}, + [7092] = {.lex_state = 1218, .external_lex_state = 5}, [7093] = {.lex_state = 99, .external_lex_state = 6}, [7094] = {.lex_state = 1218, .external_lex_state = 5}, [7095] = {.lex_state = 1218, .external_lex_state = 5}, [7096] = {.lex_state = 1218, .external_lex_state = 5}, - [7097] = {.lex_state = 249, .external_lex_state = 6}, - [7098] = {.lex_state = 262, .external_lex_state = 6}, + [7097] = {.lex_state = 99, .external_lex_state = 6}, + [7098] = {.lex_state = 1218, .external_lex_state = 5}, [7099] = {.lex_state = 1218, .external_lex_state = 5}, - [7100] = {.lex_state = 99, .external_lex_state = 6}, + [7100] = {.lex_state = 1218, .external_lex_state = 5}, [7101] = {.lex_state = 1218, .external_lex_state = 5}, - [7102] = {.lex_state = 1218, .external_lex_state = 5}, - [7103] = {.lex_state = 1218, .external_lex_state = 6}, - [7104] = {.lex_state = 301, .external_lex_state = 6}, + [7102] = {.lex_state = 1218, .external_lex_state = 6}, + [7103] = {.lex_state = 99, .external_lex_state = 6}, + [7104] = {.lex_state = 1218, .external_lex_state = 6}, [7105] = {.lex_state = 1218, .external_lex_state = 5}, - [7106] = {.lex_state = 99, .external_lex_state = 6}, + [7106] = {.lex_state = 1218, .external_lex_state = 5}, [7107] = {.lex_state = 1218, .external_lex_state = 5}, - [7108] = {.lex_state = 107, .external_lex_state = 6}, - [7109] = {.lex_state = 1218, .external_lex_state = 5}, + [7108] = {.lex_state = 262, .external_lex_state = 6}, + [7109] = {.lex_state = 1218, .external_lex_state = 6}, [7110] = {.lex_state = 1218, .external_lex_state = 5}, - [7111] = {.lex_state = 1218, .external_lex_state = 5}, + [7111] = {.lex_state = 1218, .external_lex_state = 6}, [7112] = {.lex_state = 1218, .external_lex_state = 5}, [7113] = {.lex_state = 1218, .external_lex_state = 5}, [7114] = {.lex_state = 1218, .external_lex_state = 5}, - [7115] = {.lex_state = 262, .external_lex_state = 6}, - [7116] = {.lex_state = 249, .external_lex_state = 6}, - [7117] = {.lex_state = 1218, .external_lex_state = 6}, - [7118] = {.lex_state = 99, .external_lex_state = 6}, - [7119] = {.lex_state = 107, .external_lex_state = 6}, + [7115] = {.lex_state = 1218, .external_lex_state = 5}, + [7116] = {.lex_state = 99, .external_lex_state = 6}, + [7117] = {.lex_state = 1218, .external_lex_state = 5}, + [7118] = {.lex_state = 1218, .external_lex_state = 5}, + [7119] = {.lex_state = 1218, .external_lex_state = 6}, [7120] = {.lex_state = 1218, .external_lex_state = 5}, - [7121] = {.lex_state = 1218, .external_lex_state = 5}, + [7121] = {.lex_state = 301, .external_lex_state = 6}, [7122] = {.lex_state = 1218, .external_lex_state = 5}, - [7123] = {.lex_state = 1218, .external_lex_state = 6}, - [7124] = {.lex_state = 1218, .external_lex_state = 6}, - [7125] = {.lex_state = 1218, .external_lex_state = 5}, + [7123] = {.lex_state = 1218, .external_lex_state = 5}, + [7124] = {.lex_state = 1218, .external_lex_state = 5}, + [7125] = {.lex_state = 262, .external_lex_state = 6}, [7126] = {.lex_state = 1218, .external_lex_state = 5}, - [7127] = {.lex_state = 249, .external_lex_state = 6}, - [7128] = {.lex_state = 1218, .external_lex_state = 5}, - [7129] = {.lex_state = 99, .external_lex_state = 6}, - [7130] = {.lex_state = 218, .external_lex_state = 6}, + [7127] = {.lex_state = 1218, .external_lex_state = 5}, + [7128] = {.lex_state = 99, .external_lex_state = 6}, + [7129] = {.lex_state = 1218, .external_lex_state = 5}, + [7130] = {.lex_state = 262, .external_lex_state = 6}, [7131] = {.lex_state = 249, .external_lex_state = 6}, - [7132] = {.lex_state = 249, .external_lex_state = 6}, - [7133] = {.lex_state = 1218, .external_lex_state = 5}, - [7134] = {.lex_state = 262, .external_lex_state = 6}, + [7132] = {.lex_state = 1218, .external_lex_state = 5}, + [7133] = {.lex_state = 99, .external_lex_state = 6}, + [7134] = {.lex_state = 99, .external_lex_state = 6}, [7135] = {.lex_state = 1218, .external_lex_state = 5}, [7136] = {.lex_state = 1218, .external_lex_state = 5}, - [7137] = {.lex_state = 1218, .external_lex_state = 5}, - [7138] = {.lex_state = 1218, .external_lex_state = 5}, - [7139] = {.lex_state = 1218, .external_lex_state = 6}, - [7140] = {.lex_state = 107, .external_lex_state = 6}, - [7141] = {.lex_state = 249, .external_lex_state = 6}, + [7137] = {.lex_state = 301, .external_lex_state = 6}, + [7138] = {.lex_state = 249, .external_lex_state = 6}, + [7139] = {.lex_state = 249, .external_lex_state = 6}, + [7140] = {.lex_state = 262, .external_lex_state = 6}, + [7141] = {.lex_state = 1218, .external_lex_state = 5}, [7142] = {.lex_state = 1218, .external_lex_state = 5}, - [7143] = {.lex_state = 298, .external_lex_state = 6}, + [7143] = {.lex_state = 1218, .external_lex_state = 5}, [7144] = {.lex_state = 1218, .external_lex_state = 5}, [7145] = {.lex_state = 1218, .external_lex_state = 5}, - [7146] = {.lex_state = 1218, .external_lex_state = 6}, - [7147] = {.lex_state = 99, .external_lex_state = 6}, - [7148] = {.lex_state = 1218, .external_lex_state = 5}, + [7146] = {.lex_state = 1218, .external_lex_state = 5}, + [7147] = {.lex_state = 249, .external_lex_state = 6}, + [7148] = {.lex_state = 249, .external_lex_state = 6}, [7149] = {.lex_state = 1218, .external_lex_state = 5}, - [7150] = {.lex_state = 262, .external_lex_state = 6}, - [7151] = {.lex_state = 262, .external_lex_state = 6}, + [7150] = {.lex_state = 99, .external_lex_state = 6}, + [7151] = {.lex_state = 99, .external_lex_state = 6}, [7152] = {.lex_state = 1218, .external_lex_state = 5}, [7153] = {.lex_state = 1218, .external_lex_state = 5}, [7154] = {.lex_state = 1218, .external_lex_state = 5}, [7155] = {.lex_state = 99, .external_lex_state = 6}, - [7156] = {.lex_state = 301, .external_lex_state = 6}, + [7156] = {.lex_state = 99, .external_lex_state = 6}, [7157] = {.lex_state = 1218, .external_lex_state = 5}, [7158] = {.lex_state = 1218, .external_lex_state = 5}, - [7159] = {.lex_state = 1218, .external_lex_state = 5}, - [7160] = {.lex_state = 249, .external_lex_state = 6}, - [7161] = {.lex_state = 1218, .external_lex_state = 5}, - [7162] = {.lex_state = 99, .external_lex_state = 6}, - [7163] = {.lex_state = 1218, .external_lex_state = 5}, - [7164] = {.lex_state = 99, .external_lex_state = 6}, - [7165] = {.lex_state = 249, .external_lex_state = 6}, + [7159] = {.lex_state = 249, .external_lex_state = 6}, + [7160] = {.lex_state = 1218, .external_lex_state = 5}, + [7161] = {.lex_state = 1218, .external_lex_state = 6}, + [7162] = {.lex_state = 249, .external_lex_state = 6}, + [7163] = {.lex_state = 249, .external_lex_state = 6}, + [7164] = {.lex_state = 298, .external_lex_state = 6}, + [7165] = {.lex_state = 99, .external_lex_state = 6}, [7166] = {.lex_state = 1218, .external_lex_state = 5}, [7167] = {.lex_state = 1218, .external_lex_state = 5}, [7168] = {.lex_state = 1218, .external_lex_state = 5}, - [7169] = {.lex_state = 99, .external_lex_state = 6}, - [7170] = {.lex_state = 1218, .external_lex_state = 5}, - [7171] = {.lex_state = 99, .external_lex_state = 6}, - [7172] = {.lex_state = 1218, .external_lex_state = 5}, + [7169] = {.lex_state = 1218, .external_lex_state = 5}, + [7170] = {.lex_state = 99, .external_lex_state = 6}, + [7171] = {.lex_state = 1218, .external_lex_state = 5}, + [7172] = {.lex_state = 1218, .external_lex_state = 6}, [7173] = {.lex_state = 1218, .external_lex_state = 5}, [7174] = {.lex_state = 1218, .external_lex_state = 5}, - [7175] = {.lex_state = 1218, .external_lex_state = 5}, - [7176] = {.lex_state = 1218, .external_lex_state = 5}, + [7175] = {.lex_state = 99, .external_lex_state = 6}, + [7176] = {.lex_state = 1218, .external_lex_state = 6}, [7177] = {.lex_state = 1218, .external_lex_state = 5}, - [7178] = {.lex_state = 99, .external_lex_state = 6}, + [7178] = {.lex_state = 1218, .external_lex_state = 5}, [7179] = {.lex_state = 1218, .external_lex_state = 5}, - [7180] = {.lex_state = 99, .external_lex_state = 6}, + [7180] = {.lex_state = 1218, .external_lex_state = 5}, [7181] = {.lex_state = 1218, .external_lex_state = 5}, - [7182] = {.lex_state = 249, .external_lex_state = 6}, - [7183] = {.lex_state = 249, .external_lex_state = 6}, - [7184] = {.lex_state = 1218, .external_lex_state = 5}, - [7185] = {.lex_state = 1218, .external_lex_state = 5}, + [7182] = {.lex_state = 99, .external_lex_state = 6}, + [7183] = {.lex_state = 1218, .external_lex_state = 5}, + [7184] = {.lex_state = 99, .external_lex_state = 6}, + [7185] = {.lex_state = 262, .external_lex_state = 6}, [7186] = {.lex_state = 249, .external_lex_state = 6}, - [7187] = {.lex_state = 1218, .external_lex_state = 5}, - [7188] = {.lex_state = 1218, .external_lex_state = 5}, + [7187] = {.lex_state = 99, .external_lex_state = 6}, + [7188] = {.lex_state = 302, .external_lex_state = 6}, [7189] = {.lex_state = 1218, .external_lex_state = 5}, - [7190] = {.lex_state = 99, .external_lex_state = 6}, - [7191] = {.lex_state = 1218, .external_lex_state = 5}, + [7190] = {.lex_state = 1218, .external_lex_state = 5}, + [7191] = {.lex_state = 1218, .external_lex_state = 6}, [7192] = {.lex_state = 1218, .external_lex_state = 5}, - [7193] = {.lex_state = 1218, .external_lex_state = 5}, - [7194] = {.lex_state = 99, .external_lex_state = 6}, - [7195] = {.lex_state = 1218, .external_lex_state = 6}, - [7196] = {.lex_state = 249, .external_lex_state = 6}, + [7193] = {.lex_state = 99, .external_lex_state = 6}, + [7194] = {.lex_state = 249, .external_lex_state = 6}, + [7195] = {.lex_state = 99, .external_lex_state = 6}, + [7196] = {.lex_state = 1218, .external_lex_state = 5}, [7197] = {.lex_state = 1218, .external_lex_state = 5}, - [7198] = {.lex_state = 1218, .external_lex_state = 5}, - [7199] = {.lex_state = 1218, .external_lex_state = 6}, + [7198] = {.lex_state = 99, .external_lex_state = 6}, + [7199] = {.lex_state = 1218, .external_lex_state = 5}, [7200] = {.lex_state = 1218, .external_lex_state = 5}, [7201] = {.lex_state = 1218, .external_lex_state = 5}, - [7202] = {.lex_state = 99, .external_lex_state = 6}, + [7202] = {.lex_state = 1218, .external_lex_state = 5}, [7203] = {.lex_state = 1218, .external_lex_state = 5}, [7204] = {.lex_state = 1218, .external_lex_state = 5}, [7205] = {.lex_state = 99, .external_lex_state = 6}, - [7206] = {.lex_state = 1218, .external_lex_state = 5}, - [7207] = {.lex_state = 1218, .external_lex_state = 5}, - [7208] = {.lex_state = 249, .external_lex_state = 6}, - [7209] = {.lex_state = 99, .external_lex_state = 6}, + [7206] = {.lex_state = 1218, .external_lex_state = 6}, + [7207] = {.lex_state = 99, .external_lex_state = 6}, + [7208] = {.lex_state = 1218, .external_lex_state = 5}, + [7209] = {.lex_state = 1218, .external_lex_state = 5}, [7210] = {.lex_state = 99, .external_lex_state = 6}, - [7211] = {.lex_state = 99, .external_lex_state = 6}, - [7212] = {.lex_state = 1218, .external_lex_state = 5}, - [7213] = {.lex_state = 1218, .external_lex_state = 5}, - [7214] = {.lex_state = 107, .external_lex_state = 6}, - [7215] = {.lex_state = 1218, .external_lex_state = 5}, + [7211] = {.lex_state = 1218, .external_lex_state = 5}, + [7212] = {.lex_state = 99, .external_lex_state = 6}, + [7213] = {.lex_state = 302, .external_lex_state = 6}, + [7214] = {.lex_state = 1218, .external_lex_state = 5}, + [7215] = {.lex_state = 99, .external_lex_state = 6}, [7216] = {.lex_state = 1218, .external_lex_state = 5}, - [7217] = {.lex_state = 99, .external_lex_state = 6}, + [7217] = {.lex_state = 1218, .external_lex_state = 5}, [7218] = {.lex_state = 1218, .external_lex_state = 5}, - [7219] = {.lex_state = 1218, .external_lex_state = 5}, - [7220] = {.lex_state = 99, .external_lex_state = 6}, - [7221] = {.lex_state = 262, .external_lex_state = 6}, - [7222] = {.lex_state = 1218, .external_lex_state = 5}, - [7223] = {.lex_state = 249, .external_lex_state = 6}, - [7224] = {.lex_state = 1218, .external_lex_state = 6}, - [7225] = {.lex_state = 302, .external_lex_state = 6}, - [7226] = {.lex_state = 99, .external_lex_state = 6}, - [7227] = {.lex_state = 1218, .external_lex_state = 6}, - [7228] = {.lex_state = 99, .external_lex_state = 6}, - [7229] = {.lex_state = 1218, .external_lex_state = 5}, + [7219] = {.lex_state = 99, .external_lex_state = 6}, + [7220] = {.lex_state = 1218, .external_lex_state = 5}, + [7221] = {.lex_state = 1218, .external_lex_state = 5}, + [7222] = {.lex_state = 99, .external_lex_state = 6}, + [7223] = {.lex_state = 1218, .external_lex_state = 5}, + [7224] = {.lex_state = 1218, .external_lex_state = 5}, + [7225] = {.lex_state = 1218, .external_lex_state = 5}, + [7226] = {.lex_state = 1218, .external_lex_state = 5}, + [7227] = {.lex_state = 262, .external_lex_state = 6}, + [7228] = {.lex_state = 1218, .external_lex_state = 5}, + [7229] = {.lex_state = 99, .external_lex_state = 6}, [7230] = {.lex_state = 1218, .external_lex_state = 5}, - [7231] = {.lex_state = 1218, .external_lex_state = 5}, - [7232] = {.lex_state = 99, .external_lex_state = 6}, - [7233] = {.lex_state = 1218, .external_lex_state = 5}, + [7231] = {.lex_state = 99, .external_lex_state = 6}, + [7232] = {.lex_state = 1218, .external_lex_state = 5}, + [7233] = {.lex_state = 262, .external_lex_state = 6}, [7234] = {.lex_state = 1218, .external_lex_state = 5}, - [7235] = {.lex_state = 249, .external_lex_state = 6}, - [7236] = {.lex_state = 99, .external_lex_state = 6}, + [7235] = {.lex_state = 99, .external_lex_state = 6}, + [7236] = {.lex_state = 249, .external_lex_state = 6}, [7237] = {.lex_state = 99, .external_lex_state = 6}, [7238] = {.lex_state = 99, .external_lex_state = 6}, - [7239] = {.lex_state = 1218, .external_lex_state = 5}, + [7239] = {.lex_state = 99, .external_lex_state = 6}, [7240] = {.lex_state = 99, .external_lex_state = 6}, - [7241] = {.lex_state = 99, .external_lex_state = 6}, - [7242] = {.lex_state = 1218, .external_lex_state = 6}, + [7241] = {.lex_state = 1218, .external_lex_state = 5}, + [7242] = {.lex_state = 99, .external_lex_state = 6}, [7243] = {.lex_state = 99, .external_lex_state = 6}, [7244] = {.lex_state = 99, .external_lex_state = 6}, [7245] = {.lex_state = 99, .external_lex_state = 6}, - [7246] = {.lex_state = 1218, .external_lex_state = 5}, + [7246] = {.lex_state = 99, .external_lex_state = 6}, [7247] = {.lex_state = 99, .external_lex_state = 6}, - [7248] = {.lex_state = 99, .external_lex_state = 6}, - [7249] = {.lex_state = 249, .external_lex_state = 6}, + [7248] = {.lex_state = 1218, .external_lex_state = 5}, + [7249] = {.lex_state = 99, .external_lex_state = 6}, [7250] = {.lex_state = 99, .external_lex_state = 6}, - [7251] = {.lex_state = 99, .external_lex_state = 6}, - [7252] = {.lex_state = 1218, .external_lex_state = 5}, + [7251] = {.lex_state = 1218, .external_lex_state = 5}, + [7252] = {.lex_state = 99, .external_lex_state = 6}, [7253] = {.lex_state = 99, .external_lex_state = 6}, [7254] = {.lex_state = 99, .external_lex_state = 6}, - [7255] = {.lex_state = 302, .external_lex_state = 6}, - [7256] = {.lex_state = 1218, .external_lex_state = 5}, + [7255] = {.lex_state = 99, .external_lex_state = 6}, + [7256] = {.lex_state = 99, .external_lex_state = 6}, [7257] = {.lex_state = 99, .external_lex_state = 6}, - [7258] = {.lex_state = 99, .external_lex_state = 6}, + [7258] = {.lex_state = 207, .external_lex_state = 6}, [7259] = {.lex_state = 99, .external_lex_state = 6}, [7260] = {.lex_state = 99, .external_lex_state = 6}, - [7261] = {.lex_state = 99, .external_lex_state = 6}, + [7261] = {.lex_state = 1218, .external_lex_state = 6}, [7262] = {.lex_state = 99, .external_lex_state = 6}, [7263] = {.lex_state = 99, .external_lex_state = 6}, - [7264] = {.lex_state = 1218, .external_lex_state = 5}, - [7265] = {.lex_state = 99, .external_lex_state = 6}, + [7264] = {.lex_state = 1218, .external_lex_state = 6}, + [7265] = {.lex_state = 262, .external_lex_state = 6}, [7266] = {.lex_state = 99, .external_lex_state = 6}, - [7267] = {.lex_state = 1218, .external_lex_state = 5}, - [7268] = {.lex_state = 99, .external_lex_state = 6}, + [7267] = {.lex_state = 99, .external_lex_state = 6}, + [7268] = {.lex_state = 1218, .external_lex_state = 5}, [7269] = {.lex_state = 99, .external_lex_state = 6}, - [7270] = {.lex_state = 1218, .external_lex_state = 5}, + [7270] = {.lex_state = 99, .external_lex_state = 6}, [7271] = {.lex_state = 99, .external_lex_state = 6}, [7272] = {.lex_state = 99, .external_lex_state = 6}, [7273] = {.lex_state = 99, .external_lex_state = 6}, [7274] = {.lex_state = 99, .external_lex_state = 6}, - [7275] = {.lex_state = 1218, .external_lex_state = 6}, + [7275] = {.lex_state = 99, .external_lex_state = 6}, [7276] = {.lex_state = 99, .external_lex_state = 6}, - [7277] = {.lex_state = 99, .external_lex_state = 6}, - [7278] = {.lex_state = 1218, .external_lex_state = 5}, + [7277] = {.lex_state = 1218, .external_lex_state = 5}, + [7278] = {.lex_state = 99, .external_lex_state = 6}, [7279] = {.lex_state = 99, .external_lex_state = 6}, - [7280] = {.lex_state = 99, .external_lex_state = 6}, - [7281] = {.lex_state = 1218, .external_lex_state = 5}, - [7282] = {.lex_state = 249, .external_lex_state = 6}, - [7283] = {.lex_state = 99, .external_lex_state = 6}, + [7280] = {.lex_state = 1218, .external_lex_state = 5}, + [7281] = {.lex_state = 99, .external_lex_state = 6}, + [7282] = {.lex_state = 99, .external_lex_state = 6}, + [7283] = {.lex_state = 262, .external_lex_state = 6}, [7284] = {.lex_state = 99, .external_lex_state = 6}, - [7285] = {.lex_state = 99, .external_lex_state = 6}, + [7285] = {.lex_state = 1218, .external_lex_state = 5}, [7286] = {.lex_state = 99, .external_lex_state = 6}, [7287] = {.lex_state = 99, .external_lex_state = 6}, [7288] = {.lex_state = 99, .external_lex_state = 6}, @@ -42312,7 +42311,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7296] = {.lex_state = 1218, .external_lex_state = 6}, [7297] = {.lex_state = 99, .external_lex_state = 6}, [7298] = {.lex_state = 99, .external_lex_state = 6}, - [7299] = {.lex_state = 1218, .external_lex_state = 5}, + [7299] = {.lex_state = 99, .external_lex_state = 6}, [7300] = {.lex_state = 99, .external_lex_state = 6}, [7301] = {.lex_state = 99, .external_lex_state = 6}, [7302] = {.lex_state = 99, .external_lex_state = 6}, @@ -42321,320 +42320,320 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7305] = {.lex_state = 99, .external_lex_state = 6}, [7306] = {.lex_state = 1218, .external_lex_state = 5}, [7307] = {.lex_state = 99, .external_lex_state = 6}, - [7308] = {.lex_state = 99, .external_lex_state = 6}, - [7309] = {.lex_state = 262, .external_lex_state = 6}, - [7310] = {.lex_state = 207, .external_lex_state = 6}, - [7311] = {.lex_state = 99, .external_lex_state = 6}, - [7312] = {.lex_state = 99, .external_lex_state = 6}, - [7313] = {.lex_state = 99, .external_lex_state = 6}, + [7308] = {.lex_state = 1218, .external_lex_state = 5}, + [7309] = {.lex_state = 1218, .external_lex_state = 5}, + [7310] = {.lex_state = 1218, .external_lex_state = 5}, + [7311] = {.lex_state = 1218, .external_lex_state = 5}, + [7312] = {.lex_state = 1218, .external_lex_state = 5}, + [7313] = {.lex_state = 1218, .external_lex_state = 6}, [7314] = {.lex_state = 99, .external_lex_state = 6}, [7315] = {.lex_state = 99, .external_lex_state = 6}, - [7316] = {.lex_state = 99, .external_lex_state = 6}, - [7317] = {.lex_state = 1218, .external_lex_state = 5}, - [7318] = {.lex_state = 1218, .external_lex_state = 6}, - [7319] = {.lex_state = 1218, .external_lex_state = 5}, - [7320] = {.lex_state = 1218, .external_lex_state = 5}, + [7316] = {.lex_state = 214, .external_lex_state = 6}, + [7317] = {.lex_state = 249, .external_lex_state = 6}, + [7318] = {.lex_state = 107, .external_lex_state = 6}, + [7319] = {.lex_state = 107, .external_lex_state = 6}, + [7320] = {.lex_state = 249, .external_lex_state = 6}, [7321] = {.lex_state = 249, .external_lex_state = 6}, - [7322] = {.lex_state = 1218, .external_lex_state = 5}, + [7322] = {.lex_state = 1218, .external_lex_state = 6}, [7323] = {.lex_state = 1218, .external_lex_state = 5}, [7324] = {.lex_state = 1218, .external_lex_state = 5}, [7325] = {.lex_state = 1218, .external_lex_state = 5}, - [7326] = {.lex_state = 1218, .external_lex_state = 5}, - [7327] = {.lex_state = 1218, .external_lex_state = 5}, + [7326] = {.lex_state = 249, .external_lex_state = 6}, + [7327] = {.lex_state = 249, .external_lex_state = 6}, [7328] = {.lex_state = 1218, .external_lex_state = 5}, - [7329] = {.lex_state = 99, .external_lex_state = 6}, - [7330] = {.lex_state = 1218, .external_lex_state = 6}, - [7331] = {.lex_state = 107, .external_lex_state = 6}, + [7329] = {.lex_state = 1218, .external_lex_state = 5}, + [7330] = {.lex_state = 1218, .external_lex_state = 5}, + [7331] = {.lex_state = 1218, .external_lex_state = 5}, [7332] = {.lex_state = 1218, .external_lex_state = 5}, [7333] = {.lex_state = 1218, .external_lex_state = 5}, [7334] = {.lex_state = 1218, .external_lex_state = 5}, - [7335] = {.lex_state = 1218, .external_lex_state = 5}, - [7336] = {.lex_state = 1218, .external_lex_state = 6}, - [7337] = {.lex_state = 218, .external_lex_state = 6}, - [7338] = {.lex_state = 249, .external_lex_state = 6}, - [7339] = {.lex_state = 1218, .external_lex_state = 6}, - [7340] = {.lex_state = 1218, .external_lex_state = 5}, - [7341] = {.lex_state = 249, .external_lex_state = 6}, - [7342] = {.lex_state = 249, .external_lex_state = 6}, - [7343] = {.lex_state = 1218, .external_lex_state = 5}, - [7344] = {.lex_state = 99, .external_lex_state = 6}, - [7345] = {.lex_state = 262, .external_lex_state = 6}, - [7346] = {.lex_state = 207, .external_lex_state = 6}, - [7347] = {.lex_state = 301, .external_lex_state = 6}, + [7335] = {.lex_state = 249, .external_lex_state = 6}, + [7336] = {.lex_state = 249, .external_lex_state = 6}, + [7337] = {.lex_state = 107, .external_lex_state = 6}, + [7338] = {.lex_state = 1218, .external_lex_state = 5}, + [7339] = {.lex_state = 249, .external_lex_state = 6}, + [7340] = {.lex_state = 249, .external_lex_state = 6}, + [7341] = {.lex_state = 107, .external_lex_state = 6}, + [7342] = {.lex_state = 1218, .external_lex_state = 5}, + [7343] = {.lex_state = 249, .external_lex_state = 6}, + [7344] = {.lex_state = 1218, .external_lex_state = 5}, + [7345] = {.lex_state = 1218, .external_lex_state = 5}, + [7346] = {.lex_state = 1218, .external_lex_state = 5}, + [7347] = {.lex_state = 1218, .external_lex_state = 5}, [7348] = {.lex_state = 1218, .external_lex_state = 5}, - [7349] = {.lex_state = 262, .external_lex_state = 6}, - [7350] = {.lex_state = 249, .external_lex_state = 6}, + [7349] = {.lex_state = 1218, .external_lex_state = 5}, + [7350] = {.lex_state = 1218, .external_lex_state = 6}, [7351] = {.lex_state = 1218, .external_lex_state = 5}, - [7352] = {.lex_state = 99, .external_lex_state = 6}, + [7352] = {.lex_state = 1218, .external_lex_state = 5}, [7353] = {.lex_state = 1218, .external_lex_state = 5}, - [7354] = {.lex_state = 1218, .external_lex_state = 6}, + [7354] = {.lex_state = 1218, .external_lex_state = 5}, [7355] = {.lex_state = 1218, .external_lex_state = 5}, - [7356] = {.lex_state = 1218, .external_lex_state = 6}, - [7357] = {.lex_state = 249, .external_lex_state = 6}, + [7356] = {.lex_state = 1218, .external_lex_state = 5}, + [7357] = {.lex_state = 1218, .external_lex_state = 5}, [7358] = {.lex_state = 1218, .external_lex_state = 5}, - [7359] = {.lex_state = 249, .external_lex_state = 6}, - [7360] = {.lex_state = 249, .external_lex_state = 6}, - [7361] = {.lex_state = 302, .external_lex_state = 6}, - [7362] = {.lex_state = 207, .external_lex_state = 6}, - [7363] = {.lex_state = 262, .external_lex_state = 6}, + [7359] = {.lex_state = 107, .external_lex_state = 6}, + [7360] = {.lex_state = 1218, .external_lex_state = 5}, + [7361] = {.lex_state = 1218, .external_lex_state = 5}, + [7362] = {.lex_state = 1218, .external_lex_state = 5}, + [7363] = {.lex_state = 1218, .external_lex_state = 5}, [7364] = {.lex_state = 1218, .external_lex_state = 5}, [7365] = {.lex_state = 1218, .external_lex_state = 5}, [7366] = {.lex_state = 1218, .external_lex_state = 6}, - [7367] = {.lex_state = 1218, .external_lex_state = 5}, - [7368] = {.lex_state = 99, .external_lex_state = 6}, + [7367] = {.lex_state = 1218, .external_lex_state = 6}, + [7368] = {.lex_state = 262, .external_lex_state = 6}, [7369] = {.lex_state = 1218, .external_lex_state = 5}, - [7370] = {.lex_state = 99, .external_lex_state = 6}, - [7371] = {.lex_state = 1218, .external_lex_state = 5}, - [7372] = {.lex_state = 1218, .external_lex_state = 5}, - [7373] = {.lex_state = 1218, .external_lex_state = 5}, + [7370] = {.lex_state = 1218, .external_lex_state = 5}, + [7371] = {.lex_state = 1218, .external_lex_state = 6}, + [7372] = {.lex_state = 1218, .external_lex_state = 6}, + [7373] = {.lex_state = 99, .external_lex_state = 6}, [7374] = {.lex_state = 1218, .external_lex_state = 5}, - [7375] = {.lex_state = 1218, .external_lex_state = 5}, - [7376] = {.lex_state = 1218, .external_lex_state = 6}, + [7375] = {.lex_state = 1218, .external_lex_state = 6}, + [7376] = {.lex_state = 1218, .external_lex_state = 5}, [7377] = {.lex_state = 1218, .external_lex_state = 5}, - [7378] = {.lex_state = 1218, .external_lex_state = 5}, + [7378] = {.lex_state = 1218, .external_lex_state = 6}, [7379] = {.lex_state = 1218, .external_lex_state = 6}, - [7380] = {.lex_state = 1218, .external_lex_state = 5}, + [7380] = {.lex_state = 99, .external_lex_state = 6}, [7381] = {.lex_state = 1218, .external_lex_state = 5}, - [7382] = {.lex_state = 1218, .external_lex_state = 5}, + [7382] = {.lex_state = 1218, .external_lex_state = 6}, [7383] = {.lex_state = 1218, .external_lex_state = 6}, - [7384] = {.lex_state = 99, .external_lex_state = 6}, - [7385] = {.lex_state = 1218, .external_lex_state = 6}, - [7386] = {.lex_state = 249, .external_lex_state = 6}, - [7387] = {.lex_state = 1218, .external_lex_state = 5}, + [7384] = {.lex_state = 1218, .external_lex_state = 6}, + [7385] = {.lex_state = 1218, .external_lex_state = 5}, + [7386] = {.lex_state = 1218, .external_lex_state = 5}, + [7387] = {.lex_state = 301, .external_lex_state = 6}, [7388] = {.lex_state = 249, .external_lex_state = 6}, [7389] = {.lex_state = 1218, .external_lex_state = 5}, - [7390] = {.lex_state = 1218, .external_lex_state = 5}, - [7391] = {.lex_state = 207, .external_lex_state = 6}, + [7390] = {.lex_state = 207, .external_lex_state = 6}, + [7391] = {.lex_state = 1218, .external_lex_state = 5}, [7392] = {.lex_state = 1218, .external_lex_state = 5}, - [7393] = {.lex_state = 207, .external_lex_state = 6}, + [7393] = {.lex_state = 1218, .external_lex_state = 6}, [7394] = {.lex_state = 1218, .external_lex_state = 5}, - [7395] = {.lex_state = 1218, .external_lex_state = 5}, - [7396] = {.lex_state = 216, .external_lex_state = 6}, - [7397] = {.lex_state = 1218, .external_lex_state = 6}, + [7395] = {.lex_state = 1218, .external_lex_state = 6}, + [7396] = {.lex_state = 1218, .external_lex_state = 6}, + [7397] = {.lex_state = 1218, .external_lex_state = 5}, [7398] = {.lex_state = 1218, .external_lex_state = 5}, [7399] = {.lex_state = 1218, .external_lex_state = 5}, - [7400] = {.lex_state = 1218, .external_lex_state = 5}, - [7401] = {.lex_state = 1218, .external_lex_state = 5}, - [7402] = {.lex_state = 1218, .external_lex_state = 5}, + [7400] = {.lex_state = 99, .external_lex_state = 6}, + [7401] = {.lex_state = 302, .external_lex_state = 6}, + [7402] = {.lex_state = 214, .external_lex_state = 6}, [7403] = {.lex_state = 1218, .external_lex_state = 5}, - [7404] = {.lex_state = 1218, .external_lex_state = 5}, - [7405] = {.lex_state = 1218, .external_lex_state = 5}, - [7406] = {.lex_state = 1218, .external_lex_state = 5}, + [7404] = {.lex_state = 1218, .external_lex_state = 6}, + [7405] = {.lex_state = 262, .external_lex_state = 6}, + [7406] = {.lex_state = 207, .external_lex_state = 6}, [7407] = {.lex_state = 1218, .external_lex_state = 5}, [7408] = {.lex_state = 1218, .external_lex_state = 5}, [7409] = {.lex_state = 1218, .external_lex_state = 5}, [7410] = {.lex_state = 1218, .external_lex_state = 5}, [7411] = {.lex_state = 1218, .external_lex_state = 5}, - [7412] = {.lex_state = 1218, .external_lex_state = 5}, - [7413] = {.lex_state = 1218, .external_lex_state = 5}, - [7414] = {.lex_state = 262, .external_lex_state = 6}, - [7415] = {.lex_state = 1218, .external_lex_state = 5}, - [7416] = {.lex_state = 1218, .external_lex_state = 5}, + [7412] = {.lex_state = 262, .external_lex_state = 6}, + [7413] = {.lex_state = 301, .external_lex_state = 6}, + [7414] = {.lex_state = 1218, .external_lex_state = 5}, + [7415] = {.lex_state = 262, .external_lex_state = 6}, + [7416] = {.lex_state = 262, .external_lex_state = 6}, [7417] = {.lex_state = 1218, .external_lex_state = 5}, [7418] = {.lex_state = 1218, .external_lex_state = 5}, - [7419] = {.lex_state = 1218, .external_lex_state = 5}, - [7420] = {.lex_state = 1218, .external_lex_state = 5}, + [7419] = {.lex_state = 207, .external_lex_state = 6}, + [7420] = {.lex_state = 99, .external_lex_state = 6}, [7421] = {.lex_state = 249, .external_lex_state = 6}, - [7422] = {.lex_state = 262, .external_lex_state = 6}, + [7422] = {.lex_state = 1218, .external_lex_state = 5}, [7423] = {.lex_state = 1218, .external_lex_state = 5}, - [7424] = {.lex_state = 1218, .external_lex_state = 6}, - [7425] = {.lex_state = 262, .external_lex_state = 6}, - [7426] = {.lex_state = 1218, .external_lex_state = 5}, - [7427] = {.lex_state = 1218, .external_lex_state = 5}, - [7428] = {.lex_state = 1218, .external_lex_state = 5}, - [7429] = {.lex_state = 1218, .external_lex_state = 6}, - [7430] = {.lex_state = 262, .external_lex_state = 6}, + [7424] = {.lex_state = 1218, .external_lex_state = 5}, + [7425] = {.lex_state = 1218, .external_lex_state = 5}, + [7426] = {.lex_state = 249, .external_lex_state = 6}, + [7427] = {.lex_state = 249, .external_lex_state = 6}, + [7428] = {.lex_state = 1218, .external_lex_state = 6}, + [7429] = {.lex_state = 1218, .external_lex_state = 5}, + [7430] = {.lex_state = 1218, .external_lex_state = 5}, [7431] = {.lex_state = 1218, .external_lex_state = 5}, - [7432] = {.lex_state = 262, .external_lex_state = 6}, + [7432] = {.lex_state = 1218, .external_lex_state = 5}, [7433] = {.lex_state = 1218, .external_lex_state = 5}, - [7434] = {.lex_state = 1218, .external_lex_state = 6}, - [7435] = {.lex_state = 1218, .external_lex_state = 5}, + [7434] = {.lex_state = 207, .external_lex_state = 6}, + [7435] = {.lex_state = 207, .external_lex_state = 6}, [7436] = {.lex_state = 1218, .external_lex_state = 5}, [7437] = {.lex_state = 1218, .external_lex_state = 5}, - [7438] = {.lex_state = 207, .external_lex_state = 6}, - [7439] = {.lex_state = 1218, .external_lex_state = 5}, - [7440] = {.lex_state = 1218, .external_lex_state = 5}, - [7441] = {.lex_state = 1218, .external_lex_state = 6}, - [7442] = {.lex_state = 262, .external_lex_state = 6}, - [7443] = {.lex_state = 99, .external_lex_state = 6}, - [7444] = {.lex_state = 1218, .external_lex_state = 6}, + [7438] = {.lex_state = 249, .external_lex_state = 6}, + [7439] = {.lex_state = 249, .external_lex_state = 6}, + [7440] = {.lex_state = 99, .external_lex_state = 6}, + [7441] = {.lex_state = 1218, .external_lex_state = 5}, + [7442] = {.lex_state = 99, .external_lex_state = 6}, + [7443] = {.lex_state = 1218, .external_lex_state = 5}, + [7444] = {.lex_state = 262, .external_lex_state = 6}, [7445] = {.lex_state = 1218, .external_lex_state = 5}, - [7446] = {.lex_state = 1218, .external_lex_state = 5}, + [7446] = {.lex_state = 262, .external_lex_state = 6}, [7447] = {.lex_state = 1218, .external_lex_state = 5}, - [7448] = {.lex_state = 262, .external_lex_state = 6}, + [7448] = {.lex_state = 99, .external_lex_state = 6}, [7449] = {.lex_state = 1218, .external_lex_state = 5}, - [7450] = {.lex_state = 1218, .external_lex_state = 6}, + [7450] = {.lex_state = 262, .external_lex_state = 6}, [7451] = {.lex_state = 1218, .external_lex_state = 5}, - [7452] = {.lex_state = 1218, .external_lex_state = 5}, + [7452] = {.lex_state = 262, .external_lex_state = 6}, [7453] = {.lex_state = 249, .external_lex_state = 6}, - [7454] = {.lex_state = 301, .external_lex_state = 6}, - [7455] = {.lex_state = 1218, .external_lex_state = 6}, + [7454] = {.lex_state = 249, .external_lex_state = 6}, + [7455] = {.lex_state = 99, .external_lex_state = 6}, [7456] = {.lex_state = 251, .external_lex_state = 6}, - [7457] = {.lex_state = 100, .external_lex_state = 6}, - [7458] = {.lex_state = 249, .external_lex_state = 6}, - [7459] = {.lex_state = 1218, .external_lex_state = 6}, + [7457] = {.lex_state = 1218, .external_lex_state = 6}, + [7458] = {.lex_state = 251, .external_lex_state = 6}, + [7459] = {.lex_state = 251, .external_lex_state = 6}, [7460] = {.lex_state = 251, .external_lex_state = 6}, - [7461] = {.lex_state = 1218, .external_lex_state = 12}, - [7462] = {.lex_state = 107, .external_lex_state = 6}, - [7463] = {.lex_state = 251, .external_lex_state = 6}, - [7464] = {.lex_state = 251, .external_lex_state = 6}, - [7465] = {.lex_state = 100, .external_lex_state = 6}, - [7466] = {.lex_state = 251, .external_lex_state = 6}, - [7467] = {.lex_state = 251, .external_lex_state = 6}, - [7468] = {.lex_state = 249, .external_lex_state = 6}, - [7469] = {.lex_state = 107, .external_lex_state = 6}, - [7470] = {.lex_state = 100, .external_lex_state = 6}, - [7471] = {.lex_state = 251, .external_lex_state = 6}, + [7461] = {.lex_state = 251, .external_lex_state = 6}, + [7462] = {.lex_state = 1218, .external_lex_state = 12}, + [7463] = {.lex_state = 107, .external_lex_state = 6}, + [7464] = {.lex_state = 1218, .external_lex_state = 6}, + [7465] = {.lex_state = 251, .external_lex_state = 6}, + [7466] = {.lex_state = 100, .external_lex_state = 6}, + [7467] = {.lex_state = 1218, .external_lex_state = 6}, + [7468] = {.lex_state = 1218, .external_lex_state = 6}, + [7469] = {.lex_state = 249, .external_lex_state = 6}, + [7470] = {.lex_state = 251, .external_lex_state = 6}, + [7471] = {.lex_state = 100, .external_lex_state = 6}, [7472] = {.lex_state = 251, .external_lex_state = 6}, [7473] = {.lex_state = 251, .external_lex_state = 6}, [7474] = {.lex_state = 251, .external_lex_state = 6}, [7475] = {.lex_state = 251, .external_lex_state = 6}, [7476] = {.lex_state = 251, .external_lex_state = 6}, - [7477] = {.lex_state = 262, .external_lex_state = 6}, - [7478] = {.lex_state = 100, .external_lex_state = 6}, - [7479] = {.lex_state = 251, .external_lex_state = 6}, + [7477] = {.lex_state = 1218, .external_lex_state = 6}, + [7478] = {.lex_state = 1218, .external_lex_state = 6}, + [7479] = {.lex_state = 100, .external_lex_state = 6}, [7480] = {.lex_state = 251, .external_lex_state = 6}, [7481] = {.lex_state = 251, .external_lex_state = 6}, - [7482] = {.lex_state = 251, .external_lex_state = 6}, + [7482] = {.lex_state = 1218, .external_lex_state = 6}, [7483] = {.lex_state = 251, .external_lex_state = 6}, - [7484] = {.lex_state = 1218, .external_lex_state = 6}, - [7485] = {.lex_state = 1218, .external_lex_state = 6}, + [7484] = {.lex_state = 100, .external_lex_state = 6}, + [7485] = {.lex_state = 100, .external_lex_state = 6}, [7486] = {.lex_state = 251, .external_lex_state = 6}, [7487] = {.lex_state = 251, .external_lex_state = 6}, [7488] = {.lex_state = 251, .external_lex_state = 6}, - [7489] = {.lex_state = 1218, .external_lex_state = 6}, - [7490] = {.lex_state = 251, .external_lex_state = 6}, + [7489] = {.lex_state = 251, .external_lex_state = 6}, + [7490] = {.lex_state = 1218, .external_lex_state = 6}, [7491] = {.lex_state = 251, .external_lex_state = 6}, - [7492] = {.lex_state = 251, .external_lex_state = 6}, + [7492] = {.lex_state = 100, .external_lex_state = 6}, [7493] = {.lex_state = 251, .external_lex_state = 6}, [7494] = {.lex_state = 251, .external_lex_state = 6}, [7495] = {.lex_state = 251, .external_lex_state = 6}, [7496] = {.lex_state = 251, .external_lex_state = 6}, - [7497] = {.lex_state = 100, .external_lex_state = 6}, + [7497] = {.lex_state = 1218, .external_lex_state = 6}, [7498] = {.lex_state = 251, .external_lex_state = 6}, [7499] = {.lex_state = 251, .external_lex_state = 6}, [7500] = {.lex_state = 251, .external_lex_state = 6}, - [7501] = {.lex_state = 251, .external_lex_state = 6}, - [7502] = {.lex_state = 262, .external_lex_state = 6}, - [7503] = {.lex_state = 1218, .external_lex_state = 12}, - [7504] = {.lex_state = 107, .external_lex_state = 6}, - [7505] = {.lex_state = 100, .external_lex_state = 6}, + [7501] = {.lex_state = 1218, .external_lex_state = 6}, + [7502] = {.lex_state = 1218, .external_lex_state = 6}, + [7503] = {.lex_state = 251, .external_lex_state = 6}, + [7504] = {.lex_state = 1218, .external_lex_state = 12}, + [7505] = {.lex_state = 107, .external_lex_state = 6}, [7506] = {.lex_state = 251, .external_lex_state = 6}, - [7507] = {.lex_state = 100, .external_lex_state = 6}, - [7508] = {.lex_state = 251, .external_lex_state = 6}, + [7507] = {.lex_state = 1218, .external_lex_state = 6}, + [7508] = {.lex_state = 100, .external_lex_state = 6}, [7509] = {.lex_state = 251, .external_lex_state = 6}, [7510] = {.lex_state = 251, .external_lex_state = 6}, - [7511] = {.lex_state = 100, .external_lex_state = 6}, - [7512] = {.lex_state = 251, .external_lex_state = 6}, + [7511] = {.lex_state = 249, .external_lex_state = 6}, + [7512] = {.lex_state = 100, .external_lex_state = 6}, [7513] = {.lex_state = 251, .external_lex_state = 6}, [7514] = {.lex_state = 251, .external_lex_state = 6}, [7515] = {.lex_state = 251, .external_lex_state = 6}, [7516] = {.lex_state = 251, .external_lex_state = 6}, [7517] = {.lex_state = 251, .external_lex_state = 6}, [7518] = {.lex_state = 251, .external_lex_state = 6}, - [7519] = {.lex_state = 100, .external_lex_state = 6}, - [7520] = {.lex_state = 251, .external_lex_state = 6}, + [7519] = {.lex_state = 1218, .external_lex_state = 12}, + [7520] = {.lex_state = 100, .external_lex_state = 6}, [7521] = {.lex_state = 251, .external_lex_state = 6}, [7522] = {.lex_state = 251, .external_lex_state = 6}, - [7523] = {.lex_state = 251, .external_lex_state = 6}, + [7523] = {.lex_state = 107, .external_lex_state = 6}, [7524] = {.lex_state = 251, .external_lex_state = 6}, - [7525] = {.lex_state = 262, .external_lex_state = 6}, + [7525] = {.lex_state = 251, .external_lex_state = 6}, [7526] = {.lex_state = 251, .external_lex_state = 6}, - [7527] = {.lex_state = 251, .external_lex_state = 6}, - [7528] = {.lex_state = 251, .external_lex_state = 6}, + [7527] = {.lex_state = 87, .external_lex_state = 6}, + [7528] = {.lex_state = 100, .external_lex_state = 6}, [7529] = {.lex_state = 251, .external_lex_state = 6}, [7530] = {.lex_state = 251, .external_lex_state = 6}, - [7531] = {.lex_state = 251, .external_lex_state = 6}, - [7532] = {.lex_state = 262, .external_lex_state = 6}, - [7533] = {.lex_state = 1218, .external_lex_state = 6}, - [7534] = {.lex_state = 251, .external_lex_state = 6}, - [7535] = {.lex_state = 251, .external_lex_state = 6}, + [7531] = {.lex_state = 302, .external_lex_state = 6}, + [7532] = {.lex_state = 1218, .external_lex_state = 12}, + [7533] = {.lex_state = 251, .external_lex_state = 6}, + [7534] = {.lex_state = 1218, .external_lex_state = 6}, + [7535] = {.lex_state = 100, .external_lex_state = 6}, [7536] = {.lex_state = 251, .external_lex_state = 6}, [7537] = {.lex_state = 251, .external_lex_state = 6}, - [7538] = {.lex_state = 207, .external_lex_state = 6}, - [7539] = {.lex_state = 1218, .external_lex_state = 6}, - [7540] = {.lex_state = 251, .external_lex_state = 6}, - [7541] = {.lex_state = 1218, .external_lex_state = 6}, - [7542] = {.lex_state = 251, .external_lex_state = 6}, + [7538] = {.lex_state = 1218, .external_lex_state = 6}, + [7539] = {.lex_state = 251, .external_lex_state = 6}, + [7540] = {.lex_state = 249, .external_lex_state = 6}, + [7541] = {.lex_state = 251, .external_lex_state = 6}, + [7542] = {.lex_state = 1218, .external_lex_state = 6}, [7543] = {.lex_state = 251, .external_lex_state = 6}, - [7544] = {.lex_state = 107, .external_lex_state = 6}, - [7545] = {.lex_state = 251, .external_lex_state = 6}, + [7544] = {.lex_state = 251, .external_lex_state = 6}, + [7545] = {.lex_state = 107, .external_lex_state = 6}, [7546] = {.lex_state = 251, .external_lex_state = 6}, - [7547] = {.lex_state = 100, .external_lex_state = 6}, - [7548] = {.lex_state = 216, .external_lex_state = 6}, - [7549] = {.lex_state = 100, .external_lex_state = 6}, - [7550] = {.lex_state = 251, .external_lex_state = 6}, + [7547] = {.lex_state = 1218, .external_lex_state = 6}, + [7548] = {.lex_state = 100, .external_lex_state = 6}, + [7549] = {.lex_state = 1218, .external_lex_state = 6}, + [7550] = {.lex_state = 100, .external_lex_state = 6}, [7551] = {.lex_state = 251, .external_lex_state = 6}, - [7552] = {.lex_state = 1218, .external_lex_state = 6}, - [7553] = {.lex_state = 100, .external_lex_state = 6}, - [7554] = {.lex_state = 251, .external_lex_state = 6}, + [7552] = {.lex_state = 251, .external_lex_state = 6}, + [7553] = {.lex_state = 251, .external_lex_state = 6}, + [7554] = {.lex_state = 100, .external_lex_state = 6}, [7555] = {.lex_state = 251, .external_lex_state = 6}, - [7556] = {.lex_state = 1218, .external_lex_state = 12}, - [7557] = {.lex_state = 251, .external_lex_state = 6}, - [7558] = {.lex_state = 251, .external_lex_state = 6}, - [7559] = {.lex_state = 100, .external_lex_state = 6}, + [7556] = {.lex_state = 251, .external_lex_state = 6}, + [7557] = {.lex_state = 207, .external_lex_state = 6}, + [7558] = {.lex_state = 1218, .external_lex_state = 6}, + [7559] = {.lex_state = 251, .external_lex_state = 6}, [7560] = {.lex_state = 251, .external_lex_state = 6}, [7561] = {.lex_state = 251, .external_lex_state = 6}, [7562] = {.lex_state = 251, .external_lex_state = 6}, - [7563] = {.lex_state = 107, .external_lex_state = 6}, - [7564] = {.lex_state = 251, .external_lex_state = 6}, - [7565] = {.lex_state = 1218, .external_lex_state = 6}, - [7566] = {.lex_state = 107, .external_lex_state = 6}, + [7563] = {.lex_state = 100, .external_lex_state = 6}, + [7564] = {.lex_state = 1218, .external_lex_state = 6}, + [7565] = {.lex_state = 251, .external_lex_state = 6}, + [7566] = {.lex_state = 251, .external_lex_state = 6}, [7567] = {.lex_state = 251, .external_lex_state = 6}, [7568] = {.lex_state = 251, .external_lex_state = 6}, [7569] = {.lex_state = 251, .external_lex_state = 6}, - [7570] = {.lex_state = 249, .external_lex_state = 6}, + [7570] = {.lex_state = 251, .external_lex_state = 6}, [7571] = {.lex_state = 251, .external_lex_state = 6}, - [7572] = {.lex_state = 251, .external_lex_state = 6}, + [7572] = {.lex_state = 1218, .external_lex_state = 6}, [7573] = {.lex_state = 251, .external_lex_state = 6}, - [7574] = {.lex_state = 251, .external_lex_state = 6}, - [7575] = {.lex_state = 249, .external_lex_state = 6}, - [7576] = {.lex_state = 107, .external_lex_state = 6}, - [7577] = {.lex_state = 1218, .external_lex_state = 6}, - [7578] = {.lex_state = 251, .external_lex_state = 6}, - [7579] = {.lex_state = 100, .external_lex_state = 6}, - [7580] = {.lex_state = 251, .external_lex_state = 6}, - [7581] = {.lex_state = 100, .external_lex_state = 6}, - [7582] = {.lex_state = 1218, .external_lex_state = 6}, - [7583] = {.lex_state = 251, .external_lex_state = 6}, - [7584] = {.lex_state = 1218, .external_lex_state = 6}, - [7585] = {.lex_state = 100, .external_lex_state = 6}, - [7586] = {.lex_state = 251, .external_lex_state = 6}, + [7574] = {.lex_state = 1218, .external_lex_state = 6}, + [7575] = {.lex_state = 251, .external_lex_state = 6}, + [7576] = {.lex_state = 251, .external_lex_state = 6}, + [7577] = {.lex_state = 107, .external_lex_state = 6}, + [7578] = {.lex_state = 1218, .external_lex_state = 6}, + [7579] = {.lex_state = 249, .external_lex_state = 6}, + [7580] = {.lex_state = 100, .external_lex_state = 6}, + [7581] = {.lex_state = 251, .external_lex_state = 6}, + [7582] = {.lex_state = 100, .external_lex_state = 6}, + [7583] = {.lex_state = 87, .external_lex_state = 6}, + [7584] = {.lex_state = 251, .external_lex_state = 6}, + [7585] = {.lex_state = 1218, .external_lex_state = 6}, + [7586] = {.lex_state = 100, .external_lex_state = 6}, [7587] = {.lex_state = 251, .external_lex_state = 6}, [7588] = {.lex_state = 251, .external_lex_state = 6}, - [7589] = {.lex_state = 262, .external_lex_state = 6}, - [7590] = {.lex_state = 1218, .external_lex_state = 6}, - [7591] = {.lex_state = 262, .external_lex_state = 6}, + [7589] = {.lex_state = 249, .external_lex_state = 6}, + [7590] = {.lex_state = 251, .external_lex_state = 6}, + [7591] = {.lex_state = 87, .external_lex_state = 6}, [7592] = {.lex_state = 251, .external_lex_state = 6}, [7593] = {.lex_state = 251, .external_lex_state = 6}, [7594] = {.lex_state = 251, .external_lex_state = 6}, [7595] = {.lex_state = 251, .external_lex_state = 6}, - [7596] = {.lex_state = 251, .external_lex_state = 6}, + [7596] = {.lex_state = 100, .external_lex_state = 6}, [7597] = {.lex_state = 1218, .external_lex_state = 6}, [7598] = {.lex_state = 251, .external_lex_state = 6}, [7599] = {.lex_state = 251, .external_lex_state = 6}, [7600] = {.lex_state = 251, .external_lex_state = 6}, - [7601] = {.lex_state = 1218, .external_lex_state = 6}, + [7601] = {.lex_state = 251, .external_lex_state = 6}, [7602] = {.lex_state = 251, .external_lex_state = 6}, [7603] = {.lex_state = 251, .external_lex_state = 6}, [7604] = {.lex_state = 251, .external_lex_state = 6}, - [7605] = {.lex_state = 1218, .external_lex_state = 6}, + [7605] = {.lex_state = 251, .external_lex_state = 6}, [7606] = {.lex_state = 251, .external_lex_state = 6}, - [7607] = {.lex_state = 89, .external_lex_state = 6}, - [7608] = {.lex_state = 107, .external_lex_state = 6}, - [7609] = {.lex_state = 251, .external_lex_state = 6}, + [7607] = {.lex_state = 251, .external_lex_state = 6}, + [7608] = {.lex_state = 251, .external_lex_state = 6}, + [7609] = {.lex_state = 107, .external_lex_state = 6}, [7610] = {.lex_state = 251, .external_lex_state = 6}, - [7611] = {.lex_state = 100, .external_lex_state = 6}, - [7612] = {.lex_state = 251, .external_lex_state = 6}, + [7611] = {.lex_state = 251, .external_lex_state = 6}, + [7612] = {.lex_state = 100, .external_lex_state = 6}, [7613] = {.lex_state = 100, .external_lex_state = 6}, - [7614] = {.lex_state = 251, .external_lex_state = 6}, + [7614] = {.lex_state = 100, .external_lex_state = 6}, [7615] = {.lex_state = 251, .external_lex_state = 6}, [7616] = {.lex_state = 251, .external_lex_state = 6}, - [7617] = {.lex_state = 100, .external_lex_state = 6}, - [7618] = {.lex_state = 251, .external_lex_state = 6}, + [7617] = {.lex_state = 251, .external_lex_state = 6}, + [7618] = {.lex_state = 100, .external_lex_state = 6}, [7619] = {.lex_state = 251, .external_lex_state = 6}, [7620] = {.lex_state = 251, .external_lex_state = 6}, - [7621] = {.lex_state = 1218, .external_lex_state = 6}, + [7621] = {.lex_state = 251, .external_lex_state = 6}, [7622] = {.lex_state = 251, .external_lex_state = 6}, [7623] = {.lex_state = 251, .external_lex_state = 6}, [7624] = {.lex_state = 251, .external_lex_state = 6}, @@ -42642,57 +42641,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7626] = {.lex_state = 251, .external_lex_state = 6}, [7627] = {.lex_state = 251, .external_lex_state = 6}, [7628] = {.lex_state = 251, .external_lex_state = 6}, - [7629] = {.lex_state = 1218, .external_lex_state = 6}, + [7629] = {.lex_state = 251, .external_lex_state = 6}, [7630] = {.lex_state = 251, .external_lex_state = 6}, [7631] = {.lex_state = 251, .external_lex_state = 6}, [7632] = {.lex_state = 251, .external_lex_state = 6}, - [7633] = {.lex_state = 1218, .external_lex_state = 6}, + [7633] = {.lex_state = 251, .external_lex_state = 6}, [7634] = {.lex_state = 251, .external_lex_state = 6}, - [7635] = {.lex_state = 89, .external_lex_state = 6}, + [7635] = {.lex_state = 251, .external_lex_state = 6}, [7636] = {.lex_state = 251, .external_lex_state = 6}, [7637] = {.lex_state = 251, .external_lex_state = 6}, - [7638] = {.lex_state = 251, .external_lex_state = 6}, - [7639] = {.lex_state = 249, .external_lex_state = 6}, - [7640] = {.lex_state = 107, .external_lex_state = 6}, - [7641] = {.lex_state = 251, .external_lex_state = 6}, - [7642] = {.lex_state = 1218, .external_lex_state = 6}, - [7643] = {.lex_state = 100, .external_lex_state = 6}, - [7644] = {.lex_state = 251, .external_lex_state = 6}, - [7645] = {.lex_state = 100, .external_lex_state = 6}, - [7646] = {.lex_state = 1218, .external_lex_state = 6}, + [7638] = {.lex_state = 1218, .external_lex_state = 6}, + [7639] = {.lex_state = 251, .external_lex_state = 6}, + [7640] = {.lex_state = 251, .external_lex_state = 6}, + [7641] = {.lex_state = 107, .external_lex_state = 6}, + [7642] = {.lex_state = 251, .external_lex_state = 6}, + [7643] = {.lex_state = 251, .external_lex_state = 6}, + [7644] = {.lex_state = 100, .external_lex_state = 6}, + [7645] = {.lex_state = 251, .external_lex_state = 6}, + [7646] = {.lex_state = 100, .external_lex_state = 6}, [7647] = {.lex_state = 251, .external_lex_state = 6}, [7648] = {.lex_state = 251, .external_lex_state = 6}, - [7649] = {.lex_state = 100, .external_lex_state = 6}, - [7650] = {.lex_state = 251, .external_lex_state = 6}, + [7649] = {.lex_state = 251, .external_lex_state = 6}, + [7650] = {.lex_state = 100, .external_lex_state = 6}, [7651] = {.lex_state = 251, .external_lex_state = 6}, - [7652] = {.lex_state = 1218, .external_lex_state = 6}, - [7653] = {.lex_state = 251, .external_lex_state = 6}, + [7652] = {.lex_state = 251, .external_lex_state = 6}, + [7653] = {.lex_state = 249, .external_lex_state = 6}, [7654] = {.lex_state = 251, .external_lex_state = 6}, [7655] = {.lex_state = 251, .external_lex_state = 6}, - [7656] = {.lex_state = 251, .external_lex_state = 6}, + [7656] = {.lex_state = 1218, .external_lex_state = 6}, [7657] = {.lex_state = 251, .external_lex_state = 6}, - [7658] = {.lex_state = 249, .external_lex_state = 6}, + [7658] = {.lex_state = 251, .external_lex_state = 6}, [7659] = {.lex_state = 251, .external_lex_state = 6}, - [7660] = {.lex_state = 262, .external_lex_state = 6}, - [7661] = {.lex_state = 100, .external_lex_state = 6}, - [7662] = {.lex_state = 251, .external_lex_state = 6}, + [7660] = {.lex_state = 251, .external_lex_state = 6}, + [7661] = {.lex_state = 87, .external_lex_state = 6}, + [7662] = {.lex_state = 249, .external_lex_state = 6}, [7663] = {.lex_state = 251, .external_lex_state = 6}, [7664] = {.lex_state = 251, .external_lex_state = 6}, [7665] = {.lex_state = 251, .external_lex_state = 6}, [7666] = {.lex_state = 251, .external_lex_state = 6}, - [7667] = {.lex_state = 249, .external_lex_state = 6}, + [7667] = {.lex_state = 251, .external_lex_state = 6}, [7668] = {.lex_state = 251, .external_lex_state = 6}, [7669] = {.lex_state = 251, .external_lex_state = 6}, [7670] = {.lex_state = 251, .external_lex_state = 6}, - [7671] = {.lex_state = 107, .external_lex_state = 6}, - [7672] = {.lex_state = 251, .external_lex_state = 6}, + [7671] = {.lex_state = 251, .external_lex_state = 6}, + [7672] = {.lex_state = 107, .external_lex_state = 6}, [7673] = {.lex_state = 251, .external_lex_state = 6}, - [7674] = {.lex_state = 100, .external_lex_state = 6}, + [7674] = {.lex_state = 1218, .external_lex_state = 6}, [7675] = {.lex_state = 100, .external_lex_state = 6}, - [7676] = {.lex_state = 249, .external_lex_state = 6}, + [7676] = {.lex_state = 100, .external_lex_state = 6}, [7677] = {.lex_state = 251, .external_lex_state = 6}, - [7678] = {.lex_state = 100, .external_lex_state = 6}, - [7679] = {.lex_state = 251, .external_lex_state = 6}, + [7678] = {.lex_state = 251, .external_lex_state = 6}, + [7679] = {.lex_state = 100, .external_lex_state = 6}, [7680] = {.lex_state = 251, .external_lex_state = 6}, [7681] = {.lex_state = 251, .external_lex_state = 6}, [7682] = {.lex_state = 251, .external_lex_state = 6}, @@ -42700,15 +42699,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7684] = {.lex_state = 251, .external_lex_state = 6}, [7685] = {.lex_state = 251, .external_lex_state = 6}, [7686] = {.lex_state = 251, .external_lex_state = 6}, - [7687] = {.lex_state = 107, .external_lex_state = 6}, - [7688] = {.lex_state = 251, .external_lex_state = 6}, - [7689] = {.lex_state = 100, .external_lex_state = 6}, - [7690] = {.lex_state = 100, .external_lex_state = 6}, + [7687] = {.lex_state = 251, .external_lex_state = 6}, + [7688] = {.lex_state = 107, .external_lex_state = 6}, + [7689] = {.lex_state = 251, .external_lex_state = 6}, + [7690] = {.lex_state = 251, .external_lex_state = 6}, [7691] = {.lex_state = 100, .external_lex_state = 6}, - [7692] = {.lex_state = 107, .external_lex_state = 6}, + [7692] = {.lex_state = 100, .external_lex_state = 6}, [7693] = {.lex_state = 251, .external_lex_state = 6}, - [7694] = {.lex_state = 100, .external_lex_state = 6}, - [7695] = {.lex_state = 251, .external_lex_state = 6}, + [7694] = {.lex_state = 251, .external_lex_state = 6}, + [7695] = {.lex_state = 100, .external_lex_state = 6}, [7696] = {.lex_state = 251, .external_lex_state = 6}, [7697] = {.lex_state = 251, .external_lex_state = 6}, [7698] = {.lex_state = 251, .external_lex_state = 6}, @@ -42716,15 +42715,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7700] = {.lex_state = 251, .external_lex_state = 6}, [7701] = {.lex_state = 251, .external_lex_state = 6}, [7702] = {.lex_state = 251, .external_lex_state = 6}, - [7703] = {.lex_state = 107, .external_lex_state = 6}, - [7704] = {.lex_state = 251, .external_lex_state = 6}, + [7703] = {.lex_state = 262, .external_lex_state = 6}, + [7704] = {.lex_state = 107, .external_lex_state = 6}, [7705] = {.lex_state = 251, .external_lex_state = 6}, - [7706] = {.lex_state = 100, .external_lex_state = 6}, + [7706] = {.lex_state = 251, .external_lex_state = 6}, [7707] = {.lex_state = 100, .external_lex_state = 6}, - [7708] = {.lex_state = 251, .external_lex_state = 6}, - [7709] = {.lex_state = 251, .external_lex_state = 6}, - [7710] = {.lex_state = 100, .external_lex_state = 6}, - [7711] = {.lex_state = 251, .external_lex_state = 6}, + [7708] = {.lex_state = 100, .external_lex_state = 6}, + [7709] = {.lex_state = 262, .external_lex_state = 6}, + [7710] = {.lex_state = 251, .external_lex_state = 6}, + [7711] = {.lex_state = 100, .external_lex_state = 6}, [7712] = {.lex_state = 251, .external_lex_state = 6}, [7713] = {.lex_state = 251, .external_lex_state = 6}, [7714] = {.lex_state = 251, .external_lex_state = 6}, @@ -42732,686 +42731,686 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7716] = {.lex_state = 251, .external_lex_state = 6}, [7717] = {.lex_state = 251, .external_lex_state = 6}, [7718] = {.lex_state = 251, .external_lex_state = 6}, - [7719] = {.lex_state = 107, .external_lex_state = 6}, - [7720] = {.lex_state = 251, .external_lex_state = 6}, - [7721] = {.lex_state = 262, .external_lex_state = 6}, - [7722] = {.lex_state = 100, .external_lex_state = 6}, + [7719] = {.lex_state = 251, .external_lex_state = 6}, + [7720] = {.lex_state = 107, .external_lex_state = 6}, + [7721] = {.lex_state = 1218, .external_lex_state = 6}, + [7722] = {.lex_state = 251, .external_lex_state = 6}, [7723] = {.lex_state = 100, .external_lex_state = 6}, - [7724] = {.lex_state = 1218, .external_lex_state = 12}, - [7725] = {.lex_state = 100, .external_lex_state = 6}, - [7726] = {.lex_state = 107, .external_lex_state = 6}, - [7727] = {.lex_state = 107, .external_lex_state = 6}, - [7728] = {.lex_state = 1218, .external_lex_state = 6}, - [7729] = {.lex_state = 100, .external_lex_state = 6}, - [7730] = {.lex_state = 100, .external_lex_state = 6}, + [7724] = {.lex_state = 100, .external_lex_state = 6}, + [7725] = {.lex_state = 1218, .external_lex_state = 6}, + [7726] = {.lex_state = 100, .external_lex_state = 6}, + [7727] = {.lex_state = 251, .external_lex_state = 6}, + [7728] = {.lex_state = 107, .external_lex_state = 6}, + [7729] = {.lex_state = 251, .external_lex_state = 6}, + [7730] = {.lex_state = 251, .external_lex_state = 6}, [7731] = {.lex_state = 100, .external_lex_state = 6}, - [7732] = {.lex_state = 1218, .external_lex_state = 6}, - [7733] = {.lex_state = 100, .external_lex_state = 6}, + [7732] = {.lex_state = 100, .external_lex_state = 6}, + [7733] = {.lex_state = 251, .external_lex_state = 6}, [7734] = {.lex_state = 100, .external_lex_state = 6}, - [7735] = {.lex_state = 107, .external_lex_state = 6}, - [7736] = {.lex_state = 1218, .external_lex_state = 6}, - [7737] = {.lex_state = 251, .external_lex_state = 6}, - [7738] = {.lex_state = 100, .external_lex_state = 6}, + [7735] = {.lex_state = 1218, .external_lex_state = 6}, + [7736] = {.lex_state = 107, .external_lex_state = 6}, + [7737] = {.lex_state = 87, .external_lex_state = 6}, + [7738] = {.lex_state = 1218, .external_lex_state = 12}, [7739] = {.lex_state = 100, .external_lex_state = 6}, - [7740] = {.lex_state = 251, .external_lex_state = 6}, - [7741] = {.lex_state = 100, .external_lex_state = 6}, - [7742] = {.lex_state = 249, .external_lex_state = 6}, - [7743] = {.lex_state = 107, .external_lex_state = 6}, - [7744] = {.lex_state = 262, .external_lex_state = 6}, - [7745] = {.lex_state = 1218, .external_lex_state = 6}, - [7746] = {.lex_state = 100, .external_lex_state = 6}, + [7740] = {.lex_state = 100, .external_lex_state = 6}, + [7741] = {.lex_state = 107, .external_lex_state = 6}, + [7742] = {.lex_state = 100, .external_lex_state = 6}, + [7743] = {.lex_state = 262, .external_lex_state = 6}, + [7744] = {.lex_state = 107, .external_lex_state = 6}, + [7745] = {.lex_state = 251, .external_lex_state = 6}, + [7746] = {.lex_state = 251, .external_lex_state = 6}, [7747] = {.lex_state = 100, .external_lex_state = 6}, - [7748] = {.lex_state = 251, .external_lex_state = 6}, + [7748] = {.lex_state = 100, .external_lex_state = 6}, [7749] = {.lex_state = 100, .external_lex_state = 6}, - [7750] = {.lex_state = 251, .external_lex_state = 6}, - [7751] = {.lex_state = 107, .external_lex_state = 6}, - [7752] = {.lex_state = 89, .external_lex_state = 6}, - [7753] = {.lex_state = 1218, .external_lex_state = 12}, - [7754] = {.lex_state = 100, .external_lex_state = 6}, + [7750] = {.lex_state = 100, .external_lex_state = 6}, + [7751] = {.lex_state = 251, .external_lex_state = 6}, + [7752] = {.lex_state = 107, .external_lex_state = 6}, + [7753] = {.lex_state = 251, .external_lex_state = 6}, + [7754] = {.lex_state = 1218, .external_lex_state = 6}, [7755] = {.lex_state = 100, .external_lex_state = 6}, - [7756] = {.lex_state = 251, .external_lex_state = 6}, - [7757] = {.lex_state = 100, .external_lex_state = 6}, - [7758] = {.lex_state = 1218, .external_lex_state = 6}, - [7759] = {.lex_state = 107, .external_lex_state = 6}, + [7756] = {.lex_state = 100, .external_lex_state = 6}, + [7757] = {.lex_state = 1218, .external_lex_state = 12}, + [7758] = {.lex_state = 100, .external_lex_state = 6}, + [7759] = {.lex_state = 249, .external_lex_state = 6}, [7760] = {.lex_state = 107, .external_lex_state = 6}, [7761] = {.lex_state = 251, .external_lex_state = 6}, - [7762] = {.lex_state = 100, .external_lex_state = 6}, + [7762] = {.lex_state = 251, .external_lex_state = 6}, [7763] = {.lex_state = 100, .external_lex_state = 6}, - [7764] = {.lex_state = 251, .external_lex_state = 6}, - [7765] = {.lex_state = 100, .external_lex_state = 6}, + [7764] = {.lex_state = 100, .external_lex_state = 6}, + [7765] = {.lex_state = 107, .external_lex_state = 6}, [7766] = {.lex_state = 100, .external_lex_state = 6}, - [7767] = {.lex_state = 107, .external_lex_state = 6}, - [7768] = {.lex_state = 251, .external_lex_state = 6}, - [7769] = {.lex_state = 100, .external_lex_state = 6}, - [7770] = {.lex_state = 100, .external_lex_state = 6}, + [7767] = {.lex_state = 251, .external_lex_state = 6}, + [7768] = {.lex_state = 107, .external_lex_state = 6}, + [7769] = {.lex_state = 251, .external_lex_state = 6}, + [7770] = {.lex_state = 251, .external_lex_state = 6}, [7771] = {.lex_state = 100, .external_lex_state = 6}, - [7772] = {.lex_state = 251, .external_lex_state = 6}, - [7773] = {.lex_state = 100, .external_lex_state = 6}, - [7774] = {.lex_state = 306, .external_lex_state = 6}, - [7775] = {.lex_state = 107, .external_lex_state = 6}, - [7776] = {.lex_state = 100, .external_lex_state = 6}, + [7772] = {.lex_state = 100, .external_lex_state = 6}, + [7773] = {.lex_state = 251, .external_lex_state = 6}, + [7774] = {.lex_state = 100, .external_lex_state = 6}, + [7775] = {.lex_state = 1218, .external_lex_state = 6}, + [7776] = {.lex_state = 107, .external_lex_state = 6}, [7777] = {.lex_state = 251, .external_lex_state = 6}, - [7778] = {.lex_state = 100, .external_lex_state = 6}, + [7778] = {.lex_state = 251, .external_lex_state = 6}, [7779] = {.lex_state = 100, .external_lex_state = 6}, - [7780] = {.lex_state = 251, .external_lex_state = 6}, - [7781] = {.lex_state = 100, .external_lex_state = 6}, - [7782] = {.lex_state = 251, .external_lex_state = 6}, - [7783] = {.lex_state = 107, .external_lex_state = 6}, - [7784] = {.lex_state = 251, .external_lex_state = 6}, - [7785] = {.lex_state = 249, .external_lex_state = 6}, - [7786] = {.lex_state = 100, .external_lex_state = 6}, + [7780] = {.lex_state = 100, .external_lex_state = 6}, + [7781] = {.lex_state = 249, .external_lex_state = 6}, + [7782] = {.lex_state = 100, .external_lex_state = 6}, + [7783] = {.lex_state = 251, .external_lex_state = 6}, + [7784] = {.lex_state = 107, .external_lex_state = 6}, + [7785] = {.lex_state = 100, .external_lex_state = 6}, + [7786] = {.lex_state = 249, .external_lex_state = 6}, [7787] = {.lex_state = 100, .external_lex_state = 6}, - [7788] = {.lex_state = 1218, .external_lex_state = 6}, - [7789] = {.lex_state = 100, .external_lex_state = 6}, - [7790] = {.lex_state = 251, .external_lex_state = 6}, - [7791] = {.lex_state = 107, .external_lex_state = 6}, - [7792] = {.lex_state = 89, .external_lex_state = 6}, - [7793] = {.lex_state = 1218, .external_lex_state = 6}, - [7794] = {.lex_state = 100, .external_lex_state = 6}, + [7788] = {.lex_state = 100, .external_lex_state = 6}, + [7789] = {.lex_state = 251, .external_lex_state = 6}, + [7790] = {.lex_state = 100, .external_lex_state = 6}, + [7791] = {.lex_state = 100, .external_lex_state = 6}, + [7792] = {.lex_state = 107, .external_lex_state = 6}, + [7793] = {.lex_state = 251, .external_lex_state = 6}, + [7794] = {.lex_state = 251, .external_lex_state = 6}, [7795] = {.lex_state = 100, .external_lex_state = 6}, - [7796] = {.lex_state = 251, .external_lex_state = 6}, - [7797] = {.lex_state = 100, .external_lex_state = 6}, - [7798] = {.lex_state = 89, .external_lex_state = 6}, - [7799] = {.lex_state = 107, .external_lex_state = 6}, - [7800] = {.lex_state = 1218, .external_lex_state = 6}, + [7796] = {.lex_state = 100, .external_lex_state = 6}, + [7797] = {.lex_state = 251, .external_lex_state = 6}, + [7798] = {.lex_state = 100, .external_lex_state = 6}, + [7799] = {.lex_state = 251, .external_lex_state = 6}, + [7800] = {.lex_state = 107, .external_lex_state = 6}, [7801] = {.lex_state = 251, .external_lex_state = 6}, [7802] = {.lex_state = 100, .external_lex_state = 6}, [7803] = {.lex_state = 100, .external_lex_state = 6}, [7804] = {.lex_state = 100, .external_lex_state = 6}, - [7805] = {.lex_state = 100, .external_lex_state = 6}, - [7806] = {.lex_state = 251, .external_lex_state = 6}, - [7807] = {.lex_state = 107, .external_lex_state = 6}, - [7808] = {.lex_state = 251, .external_lex_state = 6}, + [7805] = {.lex_state = 251, .external_lex_state = 6}, + [7806] = {.lex_state = 100, .external_lex_state = 6}, + [7807] = {.lex_state = 251, .external_lex_state = 6}, + [7808] = {.lex_state = 107, .external_lex_state = 6}, [7809] = {.lex_state = 251, .external_lex_state = 6}, - [7810] = {.lex_state = 100, .external_lex_state = 6}, + [7810] = {.lex_state = 251, .external_lex_state = 6}, [7811] = {.lex_state = 100, .external_lex_state = 6}, - [7812] = {.lex_state = 251, .external_lex_state = 6}, - [7813] = {.lex_state = 100, .external_lex_state = 6}, - [7814] = {.lex_state = 251, .external_lex_state = 6}, - [7815] = {.lex_state = 107, .external_lex_state = 6}, - [7816] = {.lex_state = 251, .external_lex_state = 6}, + [7812] = {.lex_state = 100, .external_lex_state = 6}, + [7813] = {.lex_state = 207, .external_lex_state = 6}, + [7814] = {.lex_state = 100, .external_lex_state = 6}, + [7815] = {.lex_state = 251, .external_lex_state = 6}, + [7816] = {.lex_state = 107, .external_lex_state = 6}, [7817] = {.lex_state = 251, .external_lex_state = 6}, - [7818] = {.lex_state = 100, .external_lex_state = 6}, + [7818] = {.lex_state = 251, .external_lex_state = 6}, [7819] = {.lex_state = 100, .external_lex_state = 6}, - [7820] = {.lex_state = 262, .external_lex_state = 6}, - [7821] = {.lex_state = 100, .external_lex_state = 6}, - [7822] = {.lex_state = 251, .external_lex_state = 6}, - [7823] = {.lex_state = 107, .external_lex_state = 6}, - [7824] = {.lex_state = 1218, .external_lex_state = 12}, + [7820] = {.lex_state = 100, .external_lex_state = 6}, + [7821] = {.lex_state = 251, .external_lex_state = 6}, + [7822] = {.lex_state = 100, .external_lex_state = 6}, + [7823] = {.lex_state = 262, .external_lex_state = 6}, + [7824] = {.lex_state = 107, .external_lex_state = 6}, [7825] = {.lex_state = 100, .external_lex_state = 6}, - [7826] = {.lex_state = 100, .external_lex_state = 6}, + [7826] = {.lex_state = 251, .external_lex_state = 6}, [7827] = {.lex_state = 100, .external_lex_state = 6}, - [7828] = {.lex_state = 262, .external_lex_state = 6}, - [7829] = {.lex_state = 100, .external_lex_state = 6}, - [7830] = {.lex_state = 251, .external_lex_state = 6}, - [7831] = {.lex_state = 107, .external_lex_state = 6}, - [7832] = {.lex_state = 251, .external_lex_state = 6}, + [7828] = {.lex_state = 100, .external_lex_state = 6}, + [7829] = {.lex_state = 251, .external_lex_state = 6}, + [7830] = {.lex_state = 100, .external_lex_state = 6}, + [7831] = {.lex_state = 251, .external_lex_state = 6}, + [7832] = {.lex_state = 107, .external_lex_state = 6}, [7833] = {.lex_state = 251, .external_lex_state = 6}, - [7834] = {.lex_state = 100, .external_lex_state = 6}, + [7834] = {.lex_state = 251, .external_lex_state = 6}, [7835] = {.lex_state = 100, .external_lex_state = 6}, - [7836] = {.lex_state = 1218, .external_lex_state = 6}, - [7837] = {.lex_state = 100, .external_lex_state = 6}, - [7838] = {.lex_state = 251, .external_lex_state = 6}, - [7839] = {.lex_state = 107, .external_lex_state = 6}, + [7836] = {.lex_state = 100, .external_lex_state = 6}, + [7837] = {.lex_state = 1218, .external_lex_state = 6}, + [7838] = {.lex_state = 100, .external_lex_state = 6}, + [7839] = {.lex_state = 251, .external_lex_state = 6}, [7840] = {.lex_state = 107, .external_lex_state = 6}, [7841] = {.lex_state = 251, .external_lex_state = 6}, - [7842] = {.lex_state = 100, .external_lex_state = 6}, + [7842] = {.lex_state = 1218, .external_lex_state = 6}, [7843] = {.lex_state = 100, .external_lex_state = 6}, - [7844] = {.lex_state = 251, .external_lex_state = 6}, - [7845] = {.lex_state = 100, .external_lex_state = 6}, - [7846] = {.lex_state = 1218, .external_lex_state = 6}, - [7847] = {.lex_state = 107, .external_lex_state = 6}, - [7848] = {.lex_state = 251, .external_lex_state = 6}, - [7849] = {.lex_state = 249, .external_lex_state = 6}, - [7850] = {.lex_state = 100, .external_lex_state = 6}, + [7844] = {.lex_state = 100, .external_lex_state = 6}, + [7845] = {.lex_state = 251, .external_lex_state = 6}, + [7846] = {.lex_state = 100, .external_lex_state = 6}, + [7847] = {.lex_state = 251, .external_lex_state = 6}, + [7848] = {.lex_state = 107, .external_lex_state = 6}, + [7849] = {.lex_state = 1218, .external_lex_state = 6}, + [7850] = {.lex_state = 262, .external_lex_state = 6}, [7851] = {.lex_state = 100, .external_lex_state = 6}, - [7852] = {.lex_state = 251, .external_lex_state = 6}, - [7853] = {.lex_state = 100, .external_lex_state = 6}, - [7854] = {.lex_state = 251, .external_lex_state = 6}, - [7855] = {.lex_state = 107, .external_lex_state = 6}, - [7856] = {.lex_state = 100, .external_lex_state = 6}, - [7857] = {.lex_state = 1218, .external_lex_state = 6}, - [7858] = {.lex_state = 100, .external_lex_state = 6}, + [7852] = {.lex_state = 100, .external_lex_state = 6}, + [7853] = {.lex_state = 1218, .external_lex_state = 6}, + [7854] = {.lex_state = 100, .external_lex_state = 6}, + [7855] = {.lex_state = 251, .external_lex_state = 6}, + [7856] = {.lex_state = 107, .external_lex_state = 6}, + [7857] = {.lex_state = 251, .external_lex_state = 6}, + [7858] = {.lex_state = 251, .external_lex_state = 6}, [7859] = {.lex_state = 100, .external_lex_state = 6}, - [7860] = {.lex_state = 249, .external_lex_state = 6}, - [7861] = {.lex_state = 100, .external_lex_state = 6}, - [7862] = {.lex_state = 251, .external_lex_state = 6}, - [7863] = {.lex_state = 107, .external_lex_state = 6}, - [7864] = {.lex_state = 251, .external_lex_state = 6}, - [7865] = {.lex_state = 251, .external_lex_state = 6}, - [7866] = {.lex_state = 100, .external_lex_state = 6}, + [7860] = {.lex_state = 100, .external_lex_state = 6}, + [7861] = {.lex_state = 251, .external_lex_state = 6}, + [7862] = {.lex_state = 100, .external_lex_state = 6}, + [7863] = {.lex_state = 251, .external_lex_state = 6}, + [7864] = {.lex_state = 107, .external_lex_state = 6}, + [7865] = {.lex_state = 1218, .external_lex_state = 6}, + [7866] = {.lex_state = 251, .external_lex_state = 6}, [7867] = {.lex_state = 100, .external_lex_state = 6}, - [7868] = {.lex_state = 251, .external_lex_state = 6}, - [7869] = {.lex_state = 100, .external_lex_state = 6}, - [7870] = {.lex_state = 251, .external_lex_state = 6}, - [7871] = {.lex_state = 107, .external_lex_state = 6}, - [7872] = {.lex_state = 251, .external_lex_state = 6}, - [7873] = {.lex_state = 1218, .external_lex_state = 6}, - [7874] = {.lex_state = 100, .external_lex_state = 6}, + [7868] = {.lex_state = 100, .external_lex_state = 6}, + [7869] = {.lex_state = 251, .external_lex_state = 6}, + [7870] = {.lex_state = 100, .external_lex_state = 6}, + [7871] = {.lex_state = 1218, .external_lex_state = 6}, + [7872] = {.lex_state = 107, .external_lex_state = 6}, + [7873] = {.lex_state = 251, .external_lex_state = 6}, + [7874] = {.lex_state = 1218, .external_lex_state = 6}, [7875] = {.lex_state = 100, .external_lex_state = 6}, - [7876] = {.lex_state = 251, .external_lex_state = 6}, - [7877] = {.lex_state = 100, .external_lex_state = 6}, - [7878] = {.lex_state = 251, .external_lex_state = 6}, - [7879] = {.lex_state = 107, .external_lex_state = 6}, - [7880] = {.lex_state = 100, .external_lex_state = 6}, - [7881] = {.lex_state = 251, .external_lex_state = 6}, - [7882] = {.lex_state = 100, .external_lex_state = 6}, + [7876] = {.lex_state = 100, .external_lex_state = 6}, + [7877] = {.lex_state = 251, .external_lex_state = 6}, + [7878] = {.lex_state = 100, .external_lex_state = 6}, + [7879] = {.lex_state = 251, .external_lex_state = 6}, + [7880] = {.lex_state = 107, .external_lex_state = 6}, + [7881] = {.lex_state = 87, .external_lex_state = 6}, + [7882] = {.lex_state = 249, .external_lex_state = 6}, [7883] = {.lex_state = 100, .external_lex_state = 6}, - [7884] = {.lex_state = 251, .external_lex_state = 6}, - [7885] = {.lex_state = 100, .external_lex_state = 6}, - [7886] = {.lex_state = 249, .external_lex_state = 6}, - [7887] = {.lex_state = 107, .external_lex_state = 6}, - [7888] = {.lex_state = 251, .external_lex_state = 6}, - [7889] = {.lex_state = 89, .external_lex_state = 6}, + [7884] = {.lex_state = 100, .external_lex_state = 6}, + [7885] = {.lex_state = 251, .external_lex_state = 6}, + [7886] = {.lex_state = 100, .external_lex_state = 6}, + [7887] = {.lex_state = 1218, .external_lex_state = 6}, + [7888] = {.lex_state = 107, .external_lex_state = 6}, + [7889] = {.lex_state = 1218, .external_lex_state = 6}, [7890] = {.lex_state = 100, .external_lex_state = 6}, [7891] = {.lex_state = 100, .external_lex_state = 6}, - [7892] = {.lex_state = 251, .external_lex_state = 6}, - [7893] = {.lex_state = 100, .external_lex_state = 6}, - [7894] = {.lex_state = 1218, .external_lex_state = 6}, - [7895] = {.lex_state = 107, .external_lex_state = 6}, - [7896] = {.lex_state = 1218, .external_lex_state = 6}, - [7897] = {.lex_state = 1218, .external_lex_state = 6}, - [7898] = {.lex_state = 100, .external_lex_state = 6}, + [7892] = {.lex_state = 100, .external_lex_state = 6}, + [7893] = {.lex_state = 251, .external_lex_state = 6}, + [7894] = {.lex_state = 100, .external_lex_state = 6}, + [7895] = {.lex_state = 1218, .external_lex_state = 12}, + [7896] = {.lex_state = 107, .external_lex_state = 6}, + [7897] = {.lex_state = 251, .external_lex_state = 6}, + [7898] = {.lex_state = 87, .external_lex_state = 6}, [7899] = {.lex_state = 100, .external_lex_state = 6}, - [7900] = {.lex_state = 207, .external_lex_state = 6}, - [7901] = {.lex_state = 100, .external_lex_state = 6}, - [7902] = {.lex_state = 251, .external_lex_state = 6}, - [7903] = {.lex_state = 107, .external_lex_state = 6}, - [7904] = {.lex_state = 251, .external_lex_state = 6}, + [7900] = {.lex_state = 100, .external_lex_state = 6}, + [7901] = {.lex_state = 107, .external_lex_state = 6}, + [7902] = {.lex_state = 100, .external_lex_state = 6}, + [7903] = {.lex_state = 251, .external_lex_state = 6}, + [7904] = {.lex_state = 107, .external_lex_state = 6}, [7905] = {.lex_state = 251, .external_lex_state = 6}, - [7906] = {.lex_state = 100, .external_lex_state = 6}, + [7906] = {.lex_state = 1218, .external_lex_state = 6}, [7907] = {.lex_state = 100, .external_lex_state = 6}, - [7908] = {.lex_state = 1218, .external_lex_state = 6}, - [7909] = {.lex_state = 100, .external_lex_state = 6}, - [7910] = {.lex_state = 89, .external_lex_state = 6}, - [7911] = {.lex_state = 107, .external_lex_state = 6}, - [7912] = {.lex_state = 249, .external_lex_state = 6}, + [7908] = {.lex_state = 100, .external_lex_state = 6}, + [7909] = {.lex_state = 1218, .external_lex_state = 6}, + [7910] = {.lex_state = 100, .external_lex_state = 6}, + [7911] = {.lex_state = 251, .external_lex_state = 6}, + [7912] = {.lex_state = 107, .external_lex_state = 6}, [7913] = {.lex_state = 251, .external_lex_state = 6}, - [7914] = {.lex_state = 100, .external_lex_state = 6}, + [7914] = {.lex_state = 251, .external_lex_state = 6}, [7915] = {.lex_state = 100, .external_lex_state = 6}, - [7916] = {.lex_state = 251, .external_lex_state = 6}, - [7917] = {.lex_state = 100, .external_lex_state = 6}, - [7918] = {.lex_state = 249, .external_lex_state = 6}, - [7919] = {.lex_state = 251, .external_lex_state = 6}, - [7920] = {.lex_state = 251, .external_lex_state = 6}, + [7916] = {.lex_state = 100, .external_lex_state = 6}, + [7917] = {.lex_state = 249, .external_lex_state = 6}, + [7918] = {.lex_state = 100, .external_lex_state = 6}, + [7919] = {.lex_state = 249, .external_lex_state = 6}, + [7920] = {.lex_state = 249, .external_lex_state = 6}, [7921] = {.lex_state = 251, .external_lex_state = 6}, - [7922] = {.lex_state = 251, .external_lex_state = 6}, + [7922] = {.lex_state = 249, .external_lex_state = 6}, [7923] = {.lex_state = 251, .external_lex_state = 6}, - [7924] = {.lex_state = 251, .external_lex_state = 6}, - [7925] = {.lex_state = 251, .external_lex_state = 6}, + [7924] = {.lex_state = 1218, .external_lex_state = 12}, + [7925] = {.lex_state = 107, .external_lex_state = 6}, [7926] = {.lex_state = 251, .external_lex_state = 6}, - [7927] = {.lex_state = 1218, .external_lex_state = 6}, - [7928] = {.lex_state = 251, .external_lex_state = 6}, + [7927] = {.lex_state = 251, .external_lex_state = 6}, + [7928] = {.lex_state = 100, .external_lex_state = 6}, [7929] = {.lex_state = 251, .external_lex_state = 6}, [7930] = {.lex_state = 251, .external_lex_state = 6}, - [7931] = {.lex_state = 251, .external_lex_state = 6}, + [7931] = {.lex_state = 100, .external_lex_state = 6}, [7932] = {.lex_state = 251, .external_lex_state = 6}, - [7933] = {.lex_state = 251, .external_lex_state = 6}, + [7933] = {.lex_state = 249, .external_lex_state = 6}, [7934] = {.lex_state = 251, .external_lex_state = 6}, [7935] = {.lex_state = 251, .external_lex_state = 6}, - [7936] = {.lex_state = 1218, .external_lex_state = 6}, + [7936] = {.lex_state = 251, .external_lex_state = 6}, [7937] = {.lex_state = 251, .external_lex_state = 6}, [7938] = {.lex_state = 251, .external_lex_state = 6}, - [7939] = {.lex_state = 251, .external_lex_state = 6}, - [7940] = {.lex_state = 100, .external_lex_state = 6}, + [7939] = {.lex_state = 262, .external_lex_state = 6}, + [7940] = {.lex_state = 251, .external_lex_state = 6}, [7941] = {.lex_state = 251, .external_lex_state = 6}, - [7942] = {.lex_state = 251, .external_lex_state = 6}, - [7943] = {.lex_state = 262, .external_lex_state = 6}, - [7944] = {.lex_state = 251, .external_lex_state = 6}, + [7942] = {.lex_state = 107, .external_lex_state = 6}, + [7943] = {.lex_state = 251, .external_lex_state = 6}, + [7944] = {.lex_state = 262, .external_lex_state = 6}, [7945] = {.lex_state = 1218, .external_lex_state = 6}, [7946] = {.lex_state = 1218, .external_lex_state = 6}, - [7947] = {.lex_state = 251, .external_lex_state = 6}, + [7947] = {.lex_state = 1218, .external_lex_state = 6}, [7948] = {.lex_state = 251, .external_lex_state = 6}, - [7949] = {.lex_state = 251, .external_lex_state = 6}, - [7950] = {.lex_state = 89, .external_lex_state = 6}, - [7951] = {.lex_state = 1218, .external_lex_state = 6}, - [7952] = {.lex_state = 1218, .external_lex_state = 12}, - [7953] = {.lex_state = 1218, .external_lex_state = 6}, - [7954] = {.lex_state = 306, .external_lex_state = 6}, - [7955] = {.lex_state = 107, .external_lex_state = 6}, - [7956] = {.lex_state = 1218, .external_lex_state = 6}, + [7949] = {.lex_state = 262, .external_lex_state = 6}, + [7950] = {.lex_state = 100, .external_lex_state = 6}, + [7951] = {.lex_state = 87, .external_lex_state = 6}, + [7952] = {.lex_state = 251, .external_lex_state = 6}, + [7953] = {.lex_state = 251, .external_lex_state = 6}, + [7954] = {.lex_state = 1218, .external_lex_state = 6}, + [7955] = {.lex_state = 306, .external_lex_state = 6}, + [7956] = {.lex_state = 251, .external_lex_state = 6}, [7957] = {.lex_state = 1218, .external_lex_state = 6}, - [7958] = {.lex_state = 251, .external_lex_state = 6}, + [7958] = {.lex_state = 1218, .external_lex_state = 6}, [7959] = {.lex_state = 1218, .external_lex_state = 6}, - [7960] = {.lex_state = 1218, .external_lex_state = 6}, + [7960] = {.lex_state = 251, .external_lex_state = 6}, [7961] = {.lex_state = 251, .external_lex_state = 6}, - [7962] = {.lex_state = 1218, .external_lex_state = 6}, - [7963] = {.lex_state = 251, .external_lex_state = 6}, - [7964] = {.lex_state = 251, .external_lex_state = 6}, + [7962] = {.lex_state = 251, .external_lex_state = 6}, + [7963] = {.lex_state = 1218, .external_lex_state = 6}, + [7964] = {.lex_state = 107, .external_lex_state = 6}, [7965] = {.lex_state = 251, .external_lex_state = 6}, [7966] = {.lex_state = 251, .external_lex_state = 6}, - [7967] = {.lex_state = 251, .external_lex_state = 6}, - [7968] = {.lex_state = 251, .external_lex_state = 6}, + [7967] = {.lex_state = 216, .external_lex_state = 6}, + [7968] = {.lex_state = 249, .external_lex_state = 6}, [7969] = {.lex_state = 251, .external_lex_state = 6}, - [7970] = {.lex_state = 1218, .external_lex_state = 6}, - [7971] = {.lex_state = 100, .external_lex_state = 6}, - [7972] = {.lex_state = 1218, .external_lex_state = 6}, + [7970] = {.lex_state = 251, .external_lex_state = 6}, + [7971] = {.lex_state = 1218, .external_lex_state = 6}, + [7972] = {.lex_state = 251, .external_lex_state = 6}, [7973] = {.lex_state = 251, .external_lex_state = 6}, - [7974] = {.lex_state = 251, .external_lex_state = 6}, - [7975] = {.lex_state = 89, .external_lex_state = 6}, - [7976] = {.lex_state = 249, .external_lex_state = 6}, - [7977] = {.lex_state = 251, .external_lex_state = 6}, - [7978] = {.lex_state = 100, .external_lex_state = 6}, + [7974] = {.lex_state = 1218, .external_lex_state = 6}, + [7975] = {.lex_state = 241, .external_lex_state = 6}, + [7976] = {.lex_state = 87, .external_lex_state = 6}, + [7977] = {.lex_state = 1218, .external_lex_state = 6}, + [7978] = {.lex_state = 251, .external_lex_state = 6}, [7979] = {.lex_state = 251, .external_lex_state = 6}, - [7980] = {.lex_state = 89, .external_lex_state = 6}, - [7981] = {.lex_state = 249, .external_lex_state = 6}, - [7982] = {.lex_state = 1218, .external_lex_state = 6}, - [7983] = {.lex_state = 251, .external_lex_state = 6}, - [7984] = {.lex_state = 262, .external_lex_state = 6}, + [7980] = {.lex_state = 251, .external_lex_state = 6}, + [7981] = {.lex_state = 87, .external_lex_state = 6}, + [7982] = {.lex_state = 251, .external_lex_state = 6}, + [7983] = {.lex_state = 1218, .external_lex_state = 6}, + [7984] = {.lex_state = 100, .external_lex_state = 6}, [7985] = {.lex_state = 251, .external_lex_state = 6}, - [7986] = {.lex_state = 241, .external_lex_state = 6}, + [7986] = {.lex_state = 1218, .external_lex_state = 6}, [7987] = {.lex_state = 249, .external_lex_state = 6}, - [7988] = {.lex_state = 89, .external_lex_state = 6}, - [7989] = {.lex_state = 251, .external_lex_state = 6}, - [7990] = {.lex_state = 89, .external_lex_state = 6}, - [7991] = {.lex_state = 251, .external_lex_state = 6}, - [7992] = {.lex_state = 1218, .external_lex_state = 6}, + [7988] = {.lex_state = 251, .external_lex_state = 6}, + [7989] = {.lex_state = 87, .external_lex_state = 6}, + [7990] = {.lex_state = 251, .external_lex_state = 6}, + [7991] = {.lex_state = 87, .external_lex_state = 6}, + [7992] = {.lex_state = 251, .external_lex_state = 6}, [7993] = {.lex_state = 1218, .external_lex_state = 6}, [7994] = {.lex_state = 1218, .external_lex_state = 6}, - [7995] = {.lex_state = 1218, .external_lex_state = 12}, + [7995] = {.lex_state = 1218, .external_lex_state = 6}, [7996] = {.lex_state = 251, .external_lex_state = 6}, - [7997] = {.lex_state = 89, .external_lex_state = 6}, - [7998] = {.lex_state = 1218, .external_lex_state = 6}, + [7997] = {.lex_state = 251, .external_lex_state = 6}, + [7998] = {.lex_state = 87, .external_lex_state = 6}, [7999] = {.lex_state = 1218, .external_lex_state = 6}, [8000] = {.lex_state = 1218, .external_lex_state = 6}, - [8001] = {.lex_state = 107, .external_lex_state = 6}, - [8002] = {.lex_state = 262, .external_lex_state = 6}, - [8003] = {.lex_state = 249, .external_lex_state = 6}, + [8001] = {.lex_state = 251, .external_lex_state = 6}, + [8002] = {.lex_state = 251, .external_lex_state = 6}, + [8003] = {.lex_state = 251, .external_lex_state = 6}, [8004] = {.lex_state = 251, .external_lex_state = 6}, - [8005] = {.lex_state = 251, .external_lex_state = 6}, - [8006] = {.lex_state = 251, .external_lex_state = 6}, - [8007] = {.lex_state = 100, .external_lex_state = 6}, + [8005] = {.lex_state = 100, .external_lex_state = 6}, + [8006] = {.lex_state = 100, .external_lex_state = 6}, + [8007] = {.lex_state = 87, .external_lex_state = 6}, [8008] = {.lex_state = 251, .external_lex_state = 6}, - [8009] = {.lex_state = 249, .external_lex_state = 6}, - [8010] = {.lex_state = 107, .external_lex_state = 6}, - [8011] = {.lex_state = 251, .external_lex_state = 6}, - [8012] = {.lex_state = 249, .external_lex_state = 6}, - [8013] = {.lex_state = 251, .external_lex_state = 6}, + [8009] = {.lex_state = 251, .external_lex_state = 6}, + [8010] = {.lex_state = 251, .external_lex_state = 6}, + [8011] = {.lex_state = 1218, .external_lex_state = 6}, + [8012] = {.lex_state = 251, .external_lex_state = 6}, + [8013] = {.lex_state = 249, .external_lex_state = 6}, [8014] = {.lex_state = 251, .external_lex_state = 6}, [8015] = {.lex_state = 251, .external_lex_state = 6}, - [8016] = {.lex_state = 251, .external_lex_state = 6}, + [8016] = {.lex_state = 249, .external_lex_state = 6}, [8017] = {.lex_state = 251, .external_lex_state = 6}, [8018] = {.lex_state = 251, .external_lex_state = 6}, - [8019] = {.lex_state = 100, .external_lex_state = 6}, + [8019] = {.lex_state = 262, .external_lex_state = 6}, [8020] = {.lex_state = 251, .external_lex_state = 6}, [8021] = {.lex_state = 251, .external_lex_state = 6}, [8022] = {.lex_state = 251, .external_lex_state = 6}, - [8023] = {.lex_state = 249, .external_lex_state = 6}, - [8024] = {.lex_state = 1218, .external_lex_state = 6}, - [8025] = {.lex_state = 1218, .external_lex_state = 6}, - [8026] = {.lex_state = 251, .external_lex_state = 6}, - [8027] = {.lex_state = 1218, .external_lex_state = 6}, - [8028] = {.lex_state = 251, .external_lex_state = 6}, - [8029] = {.lex_state = 262, .external_lex_state = 6}, - [8030] = {.lex_state = 1218, .external_lex_state = 6}, - [8031] = {.lex_state = 207, .external_lex_state = 6}, - [8032] = {.lex_state = 251, .external_lex_state = 6}, - [8033] = {.lex_state = 89, .external_lex_state = 6}, - [8034] = {.lex_state = 1218, .external_lex_state = 6}, + [8023] = {.lex_state = 251, .external_lex_state = 6}, + [8024] = {.lex_state = 251, .external_lex_state = 6}, + [8025] = {.lex_state = 251, .external_lex_state = 6}, + [8026] = {.lex_state = 249, .external_lex_state = 6}, + [8027] = {.lex_state = 262, .external_lex_state = 6}, + [8028] = {.lex_state = 262, .external_lex_state = 6}, + [8029] = {.lex_state = 1218, .external_lex_state = 6}, + [8030] = {.lex_state = 262, .external_lex_state = 6}, + [8031] = {.lex_state = 251, .external_lex_state = 6}, + [8032] = {.lex_state = 100, .external_lex_state = 6}, + [8033] = {.lex_state = 251, .external_lex_state = 6}, + [8034] = {.lex_state = 87, .external_lex_state = 6}, [8035] = {.lex_state = 251, .external_lex_state = 6}, - [8036] = {.lex_state = 89, .external_lex_state = 6}, - [8037] = {.lex_state = 262, .external_lex_state = 6}, - [8038] = {.lex_state = 249, .external_lex_state = 6}, - [8039] = {.lex_state = 1218, .external_lex_state = 6}, - [8040] = {.lex_state = 1218, .external_lex_state = 6}, + [8036] = {.lex_state = 251, .external_lex_state = 6}, + [8037] = {.lex_state = 1218, .external_lex_state = 12}, + [8038] = {.lex_state = 251, .external_lex_state = 6}, + [8039] = {.lex_state = 251, .external_lex_state = 6}, + [8040] = {.lex_state = 251, .external_lex_state = 6}, [8041] = {.lex_state = 251, .external_lex_state = 6}, - [8042] = {.lex_state = 249, .external_lex_state = 6}, - [8043] = {.lex_state = 1218, .external_lex_state = 6}, - [8044] = {.lex_state = 262, .external_lex_state = 6}, - [8045] = {.lex_state = 302, .external_lex_state = 6}, - [8046] = {.lex_state = 251, .external_lex_state = 6}, - [8047] = {.lex_state = 89, .external_lex_state = 6}, - [8048] = {.lex_state = 1218, .external_lex_state = 6}, - [8049] = {.lex_state = 1218, .external_lex_state = 6}, - [8050] = {.lex_state = 89, .external_lex_state = 6}, - [8051] = {.lex_state = 251, .external_lex_state = 6}, - [8052] = {.lex_state = 89, .external_lex_state = 6}, - [8053] = {.lex_state = 1218, .external_lex_state = 6}, + [8042] = {.lex_state = 107, .external_lex_state = 6}, + [8043] = {.lex_state = 251, .external_lex_state = 6}, + [8044] = {.lex_state = 1218, .external_lex_state = 6}, + [8045] = {.lex_state = 262, .external_lex_state = 6}, + [8046] = {.lex_state = 100, .external_lex_state = 6}, + [8047] = {.lex_state = 1218, .external_lex_state = 6}, + [8048] = {.lex_state = 87, .external_lex_state = 6}, + [8049] = {.lex_state = 251, .external_lex_state = 6}, + [8050] = {.lex_state = 251, .external_lex_state = 6}, + [8051] = {.lex_state = 87, .external_lex_state = 6}, + [8052] = {.lex_state = 251, .external_lex_state = 6}, + [8053] = {.lex_state = 87, .external_lex_state = 6}, [8054] = {.lex_state = 1218, .external_lex_state = 6}, [8055] = {.lex_state = 1218, .external_lex_state = 6}, [8056] = {.lex_state = 1218, .external_lex_state = 6}, - [8057] = {.lex_state = 89, .external_lex_state = 6}, - [8058] = {.lex_state = 1218, .external_lex_state = 6}, + [8057] = {.lex_state = 1218, .external_lex_state = 6}, + [8058] = {.lex_state = 87, .external_lex_state = 6}, [8059] = {.lex_state = 1218, .external_lex_state = 6}, - [8060] = {.lex_state = 100, .external_lex_state = 6}, - [8061] = {.lex_state = 249, .external_lex_state = 6}, - [8062] = {.lex_state = 251, .external_lex_state = 6}, - [8063] = {.lex_state = 251, .external_lex_state = 6}, + [8060] = {.lex_state = 1218, .external_lex_state = 6}, + [8061] = {.lex_state = 262, .external_lex_state = 6}, + [8062] = {.lex_state = 249, .external_lex_state = 6}, + [8063] = {.lex_state = 87, .external_lex_state = 6}, [8064] = {.lex_state = 251, .external_lex_state = 6}, - [8065] = {.lex_state = 1218, .external_lex_state = 6}, + [8065] = {.lex_state = 251, .external_lex_state = 6}, [8066] = {.lex_state = 251, .external_lex_state = 6}, - [8067] = {.lex_state = 251, .external_lex_state = 6}, - [8068] = {.lex_state = 262, .external_lex_state = 6}, - [8069] = {.lex_state = 1218, .external_lex_state = 6}, + [8067] = {.lex_state = 262, .external_lex_state = 6}, + [8068] = {.lex_state = 251, .external_lex_state = 6}, + [8069] = {.lex_state = 249, .external_lex_state = 6}, [8070] = {.lex_state = 251, .external_lex_state = 6}, - [8071] = {.lex_state = 1218, .external_lex_state = 12}, - [8072] = {.lex_state = 1218, .external_lex_state = 6}, - [8073] = {.lex_state = 89, .external_lex_state = 6}, + [8071] = {.lex_state = 107, .external_lex_state = 6}, + [8072] = {.lex_state = 251, .external_lex_state = 6}, + [8073] = {.lex_state = 251, .external_lex_state = 6}, [8074] = {.lex_state = 251, .external_lex_state = 6}, [8075] = {.lex_state = 251, .external_lex_state = 6}, - [8076] = {.lex_state = 100, .external_lex_state = 6}, - [8077] = {.lex_state = 89, .external_lex_state = 6}, - [8078] = {.lex_state = 251, .external_lex_state = 6}, - [8079] = {.lex_state = 107, .external_lex_state = 6}, + [8076] = {.lex_state = 251, .external_lex_state = 6}, + [8077] = {.lex_state = 251, .external_lex_state = 6}, + [8078] = {.lex_state = 87, .external_lex_state = 6}, + [8079] = {.lex_state = 100, .external_lex_state = 6}, [8080] = {.lex_state = 251, .external_lex_state = 6}, - [8081] = {.lex_state = 100, .external_lex_state = 6}, - [8082] = {.lex_state = 107, .external_lex_state = 6}, + [8081] = {.lex_state = 251, .external_lex_state = 6}, + [8082] = {.lex_state = 251, .external_lex_state = 6}, [8083] = {.lex_state = 251, .external_lex_state = 6}, [8084] = {.lex_state = 251, .external_lex_state = 6}, - [8085] = {.lex_state = 89, .external_lex_state = 6}, - [8086] = {.lex_state = 262, .external_lex_state = 6}, - [8087] = {.lex_state = 251, .external_lex_state = 6}, - [8088] = {.lex_state = 89, .external_lex_state = 6}, - [8089] = {.lex_state = 100, .external_lex_state = 6}, - [8090] = {.lex_state = 249, .external_lex_state = 6}, - [8091] = {.lex_state = 251, .external_lex_state = 6}, + [8085] = {.lex_state = 1218, .external_lex_state = 6}, + [8086] = {.lex_state = 87, .external_lex_state = 6}, + [8087] = {.lex_state = 1218, .external_lex_state = 6}, + [8088] = {.lex_state = 251, .external_lex_state = 6}, + [8089] = {.lex_state = 87, .external_lex_state = 6}, + [8090] = {.lex_state = 251, .external_lex_state = 6}, + [8091] = {.lex_state = 249, .external_lex_state = 6}, [8092] = {.lex_state = 251, .external_lex_state = 6}, - [8093] = {.lex_state = 249, .external_lex_state = 6}, + [8093] = {.lex_state = 100, .external_lex_state = 6}, [8094] = {.lex_state = 251, .external_lex_state = 6}, [8095] = {.lex_state = 251, .external_lex_state = 6}, [8096] = {.lex_state = 251, .external_lex_state = 6}, - [8097] = {.lex_state = 251, .external_lex_state = 6}, - [8098] = {.lex_state = 249, .external_lex_state = 6}, - [8099] = {.lex_state = 251, .external_lex_state = 6}, - [8100] = {.lex_state = 100, .external_lex_state = 6}, + [8097] = {.lex_state = 1218, .external_lex_state = 6}, + [8098] = {.lex_state = 251, .external_lex_state = 6}, + [8099] = {.lex_state = 107, .external_lex_state = 6}, + [8100] = {.lex_state = 262, .external_lex_state = 6}, [8101] = {.lex_state = 251, .external_lex_state = 6}, [8102] = {.lex_state = 251, .external_lex_state = 6}, [8103] = {.lex_state = 251, .external_lex_state = 6}, - [8104] = {.lex_state = 89, .external_lex_state = 6}, - [8105] = {.lex_state = 251, .external_lex_state = 6}, - [8106] = {.lex_state = 251, .external_lex_state = 6}, + [8104] = {.lex_state = 251, .external_lex_state = 6}, + [8105] = {.lex_state = 87, .external_lex_state = 6}, + [8106] = {.lex_state = 1218, .external_lex_state = 6}, [8107] = {.lex_state = 251, .external_lex_state = 6}, [8108] = {.lex_state = 251, .external_lex_state = 6}, - [8109] = {.lex_state = 89, .external_lex_state = 6}, - [8110] = {.lex_state = 89, .external_lex_state = 6}, - [8111] = {.lex_state = 1218, .external_lex_state = 6}, - [8112] = {.lex_state = 249, .external_lex_state = 6}, - [8113] = {.lex_state = 251, .external_lex_state = 6}, - [8114] = {.lex_state = 100, .external_lex_state = 6}, - [8115] = {.lex_state = 1218, .external_lex_state = 12}, - [8116] = {.lex_state = 107, .external_lex_state = 6}, + [8109] = {.lex_state = 251, .external_lex_state = 6}, + [8110] = {.lex_state = 87, .external_lex_state = 6}, + [8111] = {.lex_state = 87, .external_lex_state = 6}, + [8112] = {.lex_state = 251, .external_lex_state = 6}, + [8113] = {.lex_state = 249, .external_lex_state = 6}, + [8114] = {.lex_state = 1218, .external_lex_state = 6}, + [8115] = {.lex_state = 1218, .external_lex_state = 6}, + [8116] = {.lex_state = 251, .external_lex_state = 6}, [8117] = {.lex_state = 251, .external_lex_state = 6}, - [8118] = {.lex_state = 251, .external_lex_state = 6}, + [8118] = {.lex_state = 1218, .external_lex_state = 6}, [8119] = {.lex_state = 251, .external_lex_state = 6}, [8120] = {.lex_state = 251, .external_lex_state = 6}, - [8121] = {.lex_state = 251, .external_lex_state = 6}, - [8122] = {.lex_state = 1218, .external_lex_state = 6}, - [8123] = {.lex_state = 100, .external_lex_state = 6}, + [8121] = {.lex_state = 100, .external_lex_state = 6}, + [8122] = {.lex_state = 251, .external_lex_state = 6}, + [8123] = {.lex_state = 251, .external_lex_state = 6}, [8124] = {.lex_state = 251, .external_lex_state = 6}, [8125] = {.lex_state = 251, .external_lex_state = 6}, [8126] = {.lex_state = 251, .external_lex_state = 6}, - [8127] = {.lex_state = 249, .external_lex_state = 6}, - [8128] = {.lex_state = 89, .external_lex_state = 6}, - [8129] = {.lex_state = 89, .external_lex_state = 6}, - [8130] = {.lex_state = 251, .external_lex_state = 6}, - [8131] = {.lex_state = 249, .external_lex_state = 6}, - [8132] = {.lex_state = 1218, .external_lex_state = 12}, - [8133] = {.lex_state = 1218, .external_lex_state = 6}, + [8127] = {.lex_state = 251, .external_lex_state = 6}, + [8128] = {.lex_state = 262, .external_lex_state = 6}, + [8129] = {.lex_state = 87, .external_lex_state = 6}, + [8130] = {.lex_state = 87, .external_lex_state = 6}, + [8131] = {.lex_state = 207, .external_lex_state = 6}, + [8132] = {.lex_state = 249, .external_lex_state = 6}, + [8133] = {.lex_state = 251, .external_lex_state = 6}, [8134] = {.lex_state = 251, .external_lex_state = 6}, - [8135] = {.lex_state = 249, .external_lex_state = 6}, + [8135] = {.lex_state = 251, .external_lex_state = 6}, [8136] = {.lex_state = 251, .external_lex_state = 6}, - [8137] = {.lex_state = 251, .external_lex_state = 6}, - [8138] = {.lex_state = 251, .external_lex_state = 6}, + [8137] = {.lex_state = 262, .external_lex_state = 6}, + [8138] = {.lex_state = 100, .external_lex_state = 6}, [8139] = {.lex_state = 251, .external_lex_state = 6}, [8140] = {.lex_state = 251, .external_lex_state = 6}, [8141] = {.lex_state = 251, .external_lex_state = 6}, - [8142] = {.lex_state = 1218, .external_lex_state = 6}, - [8143] = {.lex_state = 100, .external_lex_state = 6}, - [8144] = {.lex_state = 1218, .external_lex_state = 6}, - [8145] = {.lex_state = 262, .external_lex_state = 6}, - [8146] = {.lex_state = 89, .external_lex_state = 6}, - [8147] = {.lex_state = 89, .external_lex_state = 6}, - [8148] = {.lex_state = 251, .external_lex_state = 6}, - [8149] = {.lex_state = 249, .external_lex_state = 6}, - [8150] = {.lex_state = 1218, .external_lex_state = 6}, + [8142] = {.lex_state = 251, .external_lex_state = 6}, + [8143] = {.lex_state = 251, .external_lex_state = 6}, + [8144] = {.lex_state = 251, .external_lex_state = 6}, + [8145] = {.lex_state = 251, .external_lex_state = 6}, + [8146] = {.lex_state = 251, .external_lex_state = 6}, + [8147] = {.lex_state = 87, .external_lex_state = 6}, + [8148] = {.lex_state = 87, .external_lex_state = 6}, + [8149] = {.lex_state = 251, .external_lex_state = 6}, + [8150] = {.lex_state = 249, .external_lex_state = 6}, [8151] = {.lex_state = 251, .external_lex_state = 6}, [8152] = {.lex_state = 251, .external_lex_state = 6}, - [8153] = {.lex_state = 1218, .external_lex_state = 6}, + [8153] = {.lex_state = 251, .external_lex_state = 6}, [8154] = {.lex_state = 251, .external_lex_state = 6}, [8155] = {.lex_state = 251, .external_lex_state = 6}, [8156] = {.lex_state = 251, .external_lex_state = 6}, - [8157] = {.lex_state = 249, .external_lex_state = 6}, + [8157] = {.lex_state = 251, .external_lex_state = 6}, [8158] = {.lex_state = 251, .external_lex_state = 6}, - [8159] = {.lex_state = 1218, .external_lex_state = 6}, - [8160] = {.lex_state = 251, .external_lex_state = 6}, + [8159] = {.lex_state = 251, .external_lex_state = 6}, + [8160] = {.lex_state = 1218, .external_lex_state = 6}, [8161] = {.lex_state = 251, .external_lex_state = 6}, - [8162] = {.lex_state = 1218, .external_lex_state = 6}, - [8163] = {.lex_state = 1218, .external_lex_state = 6}, - [8164] = {.lex_state = 89, .external_lex_state = 6}, - [8165] = {.lex_state = 89, .external_lex_state = 6}, - [8166] = {.lex_state = 1218, .external_lex_state = 6}, - [8167] = {.lex_state = 249, .external_lex_state = 6}, - [8168] = {.lex_state = 251, .external_lex_state = 6}, - [8169] = {.lex_state = 100, .external_lex_state = 6}, + [8162] = {.lex_state = 251, .external_lex_state = 6}, + [8163] = {.lex_state = 251, .external_lex_state = 6}, + [8164] = {.lex_state = 251, .external_lex_state = 6}, + [8165] = {.lex_state = 87, .external_lex_state = 6}, + [8166] = {.lex_state = 87, .external_lex_state = 6}, + [8167] = {.lex_state = 251, .external_lex_state = 6}, + [8168] = {.lex_state = 249, .external_lex_state = 6}, + [8169] = {.lex_state = 1218, .external_lex_state = 6}, [8170] = {.lex_state = 251, .external_lex_state = 6}, - [8171] = {.lex_state = 251, .external_lex_state = 6}, - [8172] = {.lex_state = 251, .external_lex_state = 6}, + [8171] = {.lex_state = 1218, .external_lex_state = 6}, + [8172] = {.lex_state = 1218, .external_lex_state = 6}, [8173] = {.lex_state = 251, .external_lex_state = 6}, - [8174] = {.lex_state = 262, .external_lex_state = 6}, - [8175] = {.lex_state = 262, .external_lex_state = 6}, - [8176] = {.lex_state = 1218, .external_lex_state = 6}, - [8177] = {.lex_state = 207, .external_lex_state = 6}, + [8174] = {.lex_state = 251, .external_lex_state = 6}, + [8175] = {.lex_state = 1218, .external_lex_state = 6}, + [8176] = {.lex_state = 251, .external_lex_state = 6}, + [8177] = {.lex_state = 1218, .external_lex_state = 6}, [8178] = {.lex_state = 251, .external_lex_state = 6}, - [8179] = {.lex_state = 89, .external_lex_state = 6}, - [8180] = {.lex_state = 1218, .external_lex_state = 6}, - [8181] = {.lex_state = 249, .external_lex_state = 6}, - [8182] = {.lex_state = 251, .external_lex_state = 6}, + [8179] = {.lex_state = 1218, .external_lex_state = 12}, + [8180] = {.lex_state = 87, .external_lex_state = 6}, + [8181] = {.lex_state = 107, .external_lex_state = 6}, + [8182] = {.lex_state = 249, .external_lex_state = 6}, [8183] = {.lex_state = 251, .external_lex_state = 6}, - [8184] = {.lex_state = 251, .external_lex_state = 6}, - [8185] = {.lex_state = 251, .external_lex_state = 6}, - [8186] = {.lex_state = 1218, .external_lex_state = 6}, - [8187] = {.lex_state = 107, .external_lex_state = 6}, + [8184] = {.lex_state = 262, .external_lex_state = 6}, + [8185] = {.lex_state = 1218, .external_lex_state = 6}, + [8186] = {.lex_state = 100, .external_lex_state = 6}, + [8187] = {.lex_state = 251, .external_lex_state = 6}, [8188] = {.lex_state = 251, .external_lex_state = 6}, - [8189] = {.lex_state = 251, .external_lex_state = 6}, + [8189] = {.lex_state = 1218, .external_lex_state = 12}, [8190] = {.lex_state = 249, .external_lex_state = 6}, - [8191] = {.lex_state = 1218, .external_lex_state = 6}, - [8192] = {.lex_state = 1218, .external_lex_state = 6}, - [8193] = {.lex_state = 89, .external_lex_state = 6}, - [8194] = {.lex_state = 1218, .external_lex_state = 6}, - [8195] = {.lex_state = 249, .external_lex_state = 6}, - [8196] = {.lex_state = 1218, .external_lex_state = 6}, - [8197] = {.lex_state = 251, .external_lex_state = 6}, - [8198] = {.lex_state = 1218, .external_lex_state = 12}, - [8199] = {.lex_state = 1218, .external_lex_state = 6}, - [8200] = {.lex_state = 251, .external_lex_state = 6}, - [8201] = {.lex_state = 251, .external_lex_state = 6}, - [8202] = {.lex_state = 89, .external_lex_state = 6}, - [8203] = {.lex_state = 107, .external_lex_state = 6}, - [8204] = {.lex_state = 251, .external_lex_state = 6}, - [8205] = {.lex_state = 251, .external_lex_state = 6}, - [8206] = {.lex_state = 251, .external_lex_state = 6}, - [8207] = {.lex_state = 89, .external_lex_state = 6}, - [8208] = {.lex_state = 251, .external_lex_state = 6}, - [8209] = {.lex_state = 249, .external_lex_state = 6}, - [8210] = {.lex_state = 1218, .external_lex_state = 12}, - [8211] = {.lex_state = 107, .external_lex_state = 6}, + [8191] = {.lex_state = 251, .external_lex_state = 6}, + [8192] = {.lex_state = 251, .external_lex_state = 6}, + [8193] = {.lex_state = 1218, .external_lex_state = 6}, + [8194] = {.lex_state = 87, .external_lex_state = 6}, + [8195] = {.lex_state = 251, .external_lex_state = 6}, + [8196] = {.lex_state = 249, .external_lex_state = 6}, + [8197] = {.lex_state = 1218, .external_lex_state = 6}, + [8198] = {.lex_state = 251, .external_lex_state = 6}, + [8199] = {.lex_state = 251, .external_lex_state = 6}, + [8200] = {.lex_state = 207, .external_lex_state = 6}, + [8201] = {.lex_state = 1218, .external_lex_state = 6}, + [8202] = {.lex_state = 251, .external_lex_state = 6}, + [8203] = {.lex_state = 251, .external_lex_state = 6}, + [8204] = {.lex_state = 100, .external_lex_state = 6}, + [8205] = {.lex_state = 1218, .external_lex_state = 6}, + [8206] = {.lex_state = 107, .external_lex_state = 6}, + [8207] = {.lex_state = 251, .external_lex_state = 6}, + [8208] = {.lex_state = 87, .external_lex_state = 6}, + [8209] = {.lex_state = 251, .external_lex_state = 6}, + [8210] = {.lex_state = 249, .external_lex_state = 6}, + [8211] = {.lex_state = 251, .external_lex_state = 6}, [8212] = {.lex_state = 251, .external_lex_state = 6}, [8213] = {.lex_state = 251, .external_lex_state = 6}, - [8214] = {.lex_state = 100, .external_lex_state = 6}, - [8215] = {.lex_state = 262, .external_lex_state = 6}, - [8216] = {.lex_state = 100, .external_lex_state = 6}, + [8214] = {.lex_state = 1218, .external_lex_state = 6}, + [8215] = {.lex_state = 251, .external_lex_state = 6}, + [8216] = {.lex_state = 1218, .external_lex_state = 6}, [8217] = {.lex_state = 251, .external_lex_state = 6}, [8218] = {.lex_state = 251, .external_lex_state = 6}, - [8219] = {.lex_state = 100, .external_lex_state = 6}, - [8220] = {.lex_state = 89, .external_lex_state = 6}, - [8221] = {.lex_state = 1218, .external_lex_state = 6}, - [8222] = {.lex_state = 249, .external_lex_state = 6}, - [8223] = {.lex_state = 251, .external_lex_state = 6}, + [8219] = {.lex_state = 251, .external_lex_state = 6}, + [8220] = {.lex_state = 100, .external_lex_state = 6}, + [8221] = {.lex_state = 87, .external_lex_state = 6}, + [8222] = {.lex_state = 1218, .external_lex_state = 6}, + [8223] = {.lex_state = 249, .external_lex_state = 6}, [8224] = {.lex_state = 251, .external_lex_state = 6}, - [8225] = {.lex_state = 251, .external_lex_state = 6}, - [8226] = {.lex_state = 1218, .external_lex_state = 6}, + [8225] = {.lex_state = 100, .external_lex_state = 6}, + [8226] = {.lex_state = 251, .external_lex_state = 6}, [8227] = {.lex_state = 251, .external_lex_state = 6}, [8228] = {.lex_state = 251, .external_lex_state = 6}, - [8229] = {.lex_state = 249, .external_lex_state = 6}, + [8229] = {.lex_state = 1218, .external_lex_state = 12}, [8230] = {.lex_state = 251, .external_lex_state = 6}, [8231] = {.lex_state = 251, .external_lex_state = 6}, - [8232] = {.lex_state = 1218, .external_lex_state = 6}, - [8233] = {.lex_state = 89, .external_lex_state = 6}, - [8234] = {.lex_state = 1218, .external_lex_state = 6}, - [8235] = {.lex_state = 249, .external_lex_state = 6}, - [8236] = {.lex_state = 251, .external_lex_state = 6}, - [8237] = {.lex_state = 249, .external_lex_state = 6}, + [8232] = {.lex_state = 107, .external_lex_state = 6}, + [8233] = {.lex_state = 1218, .external_lex_state = 6}, + [8234] = {.lex_state = 87, .external_lex_state = 6}, + [8235] = {.lex_state = 303, .external_lex_state = 6}, + [8236] = {.lex_state = 249, .external_lex_state = 6}, + [8237] = {.lex_state = 251, .external_lex_state = 6}, [8238] = {.lex_state = 1218, .external_lex_state = 6}, [8239] = {.lex_state = 251, .external_lex_state = 6}, - [8240] = {.lex_state = 251, .external_lex_state = 6}, + [8240] = {.lex_state = 1218, .external_lex_state = 6}, [8241] = {.lex_state = 251, .external_lex_state = 6}, - [8242] = {.lex_state = 89, .external_lex_state = 6}, - [8243] = {.lex_state = 262, .external_lex_state = 6}, - [8244] = {.lex_state = 249, .external_lex_state = 6}, - [8245] = {.lex_state = 262, .external_lex_state = 6}, - [8246] = {.lex_state = 251, .external_lex_state = 6}, - [8247] = {.lex_state = 251, .external_lex_state = 6}, + [8242] = {.lex_state = 251, .external_lex_state = 6}, + [8243] = {.lex_state = 87, .external_lex_state = 6}, + [8244] = {.lex_state = 251, .external_lex_state = 6}, + [8245] = {.lex_state = 249, .external_lex_state = 6}, + [8246] = {.lex_state = 87, .external_lex_state = 6}, + [8247] = {.lex_state = 1218, .external_lex_state = 6}, [8248] = {.lex_state = 251, .external_lex_state = 6}, - [8249] = {.lex_state = 262, .external_lex_state = 6}, + [8249] = {.lex_state = 249, .external_lex_state = 6}, [8250] = {.lex_state = 251, .external_lex_state = 6}, - [8251] = {.lex_state = 89, .external_lex_state = 6}, - [8252] = {.lex_state = 251, .external_lex_state = 6}, - [8253] = {.lex_state = 251, .external_lex_state = 6}, - [8254] = {.lex_state = 100, .external_lex_state = 6}, - [8255] = {.lex_state = 251, .external_lex_state = 6}, - [8256] = {.lex_state = 1218, .external_lex_state = 6}, - [8257] = {.lex_state = 89, .external_lex_state = 6}, - [8258] = {.lex_state = 1218, .external_lex_state = 6}, - [8259] = {.lex_state = 1218, .external_lex_state = 6}, + [8251] = {.lex_state = 1218, .external_lex_state = 6}, + [8252] = {.lex_state = 87, .external_lex_state = 6}, + [8253] = {.lex_state = 262, .external_lex_state = 6}, + [8254] = {.lex_state = 1218, .external_lex_state = 6}, + [8255] = {.lex_state = 306, .external_lex_state = 6}, + [8256] = {.lex_state = 262, .external_lex_state = 6}, + [8257] = {.lex_state = 251, .external_lex_state = 6}, + [8258] = {.lex_state = 87, .external_lex_state = 6}, + [8259] = {.lex_state = 87, .external_lex_state = 6}, [8260] = {.lex_state = 1218, .external_lex_state = 6}, - [8261] = {.lex_state = 1218, .external_lex_state = 6}, - [8262] = {.lex_state = 1218, .external_lex_state = 6}, - [8263] = {.lex_state = 89, .external_lex_state = 6}, - [8264] = {.lex_state = 251, .external_lex_state = 6}, - [8265] = {.lex_state = 262, .external_lex_state = 6}, - [8266] = {.lex_state = 1218, .external_lex_state = 6}, - [8267] = {.lex_state = 1218, .external_lex_state = 6}, - [8268] = {.lex_state = 1218, .external_lex_state = 6}, - [8269] = {.lex_state = 89, .external_lex_state = 6}, - [8270] = {.lex_state = 1218, .external_lex_state = 12}, - [8271] = {.lex_state = 1218, .external_lex_state = 6}, - [8272] = {.lex_state = 100, .external_lex_state = 6}, - [8273] = {.lex_state = 100, .external_lex_state = 6}, - [8274] = {.lex_state = 89, .external_lex_state = 6}, - [8275] = {.lex_state = 251, .external_lex_state = 6}, + [8261] = {.lex_state = 251, .external_lex_state = 6}, + [8262] = {.lex_state = 249, .external_lex_state = 6}, + [8263] = {.lex_state = 1218, .external_lex_state = 6}, + [8264] = {.lex_state = 87, .external_lex_state = 6}, + [8265] = {.lex_state = 1218, .external_lex_state = 6}, + [8266] = {.lex_state = 1218, .external_lex_state = 12}, + [8267] = {.lex_state = 251, .external_lex_state = 6}, + [8268] = {.lex_state = 107, .external_lex_state = 6}, + [8269] = {.lex_state = 1218, .external_lex_state = 6}, + [8270] = {.lex_state = 87, .external_lex_state = 6}, + [8271] = {.lex_state = 251, .external_lex_state = 6}, + [8272] = {.lex_state = 1218, .external_lex_state = 6}, + [8273] = {.lex_state = 107, .external_lex_state = 6}, + [8274] = {.lex_state = 251, .external_lex_state = 6}, + [8275] = {.lex_state = 87, .external_lex_state = 6}, [8276] = {.lex_state = 251, .external_lex_state = 6}, - [8277] = {.lex_state = 251, .external_lex_state = 6}, - [8278] = {.lex_state = 1218, .external_lex_state = 6}, - [8279] = {.lex_state = 1218, .external_lex_state = 6}, + [8277] = {.lex_state = 1218, .external_lex_state = 6}, + [8278] = {.lex_state = 251, .external_lex_state = 6}, + [8279] = {.lex_state = 251, .external_lex_state = 6}, [8280] = {.lex_state = 251, .external_lex_state = 6}, - [8281] = {.lex_state = 251, .external_lex_state = 6}, - [8282] = {.lex_state = 1218, .external_lex_state = 6}, + [8281] = {.lex_state = 100, .external_lex_state = 6}, + [8282] = {.lex_state = 251, .external_lex_state = 6}, [8283] = {.lex_state = 251, .external_lex_state = 6}, [8284] = {.lex_state = 251, .external_lex_state = 6}, - [8285] = {.lex_state = 107, .external_lex_state = 6}, - [8286] = {.lex_state = 89, .external_lex_state = 6}, - [8287] = {.lex_state = 251, .external_lex_state = 6}, + [8285] = {.lex_state = 251, .external_lex_state = 6}, + [8286] = {.lex_state = 251, .external_lex_state = 6}, + [8287] = {.lex_state = 249, .external_lex_state = 6}, [8288] = {.lex_state = 251, .external_lex_state = 6}, [8289] = {.lex_state = 251, .external_lex_state = 6}, - [8290] = {.lex_state = 251, .external_lex_state = 6}, - [8291] = {.lex_state = 251, .external_lex_state = 6}, - [8292] = {.lex_state = 262, .external_lex_state = 6}, - [8293] = {.lex_state = 1218, .external_lex_state = 6}, - [8294] = {.lex_state = 89, .external_lex_state = 6}, - [8295] = {.lex_state = 89, .external_lex_state = 6}, - [8296] = {.lex_state = 251, .external_lex_state = 6}, - [8297] = {.lex_state = 251, .external_lex_state = 6}, - [8298] = {.lex_state = 251, .external_lex_state = 6}, - [8299] = {.lex_state = 251, .external_lex_state = 6}, - [8300] = {.lex_state = 251, .external_lex_state = 6}, + [8290] = {.lex_state = 249, .external_lex_state = 6}, + [8291] = {.lex_state = 1218, .external_lex_state = 6}, + [8292] = {.lex_state = 251, .external_lex_state = 6}, + [8293] = {.lex_state = 251, .external_lex_state = 6}, + [8294] = {.lex_state = 1218, .external_lex_state = 6}, + [8295] = {.lex_state = 251, .external_lex_state = 6}, + [8296] = {.lex_state = 100, .external_lex_state = 6}, + [8297] = {.lex_state = 249, .external_lex_state = 6}, + [8298] = {.lex_state = 249, .external_lex_state = 6}, + [8299] = {.lex_state = 249, .external_lex_state = 6}, + [8300] = {.lex_state = 87, .external_lex_state = 6}, [8301] = {.lex_state = 251, .external_lex_state = 6}, - [8302] = {.lex_state = 100, .external_lex_state = 6}, - [8303] = {.lex_state = 249, .external_lex_state = 6}, + [8302] = {.lex_state = 1218, .external_lex_state = 6}, + [8303] = {.lex_state = 251, .external_lex_state = 6}, [8304] = {.lex_state = 251, .external_lex_state = 6}, [8305] = {.lex_state = 251, .external_lex_state = 6}, - [8306] = {.lex_state = 89, .external_lex_state = 6}, - [8307] = {.lex_state = 251, .external_lex_state = 6}, - [8308] = {.lex_state = 251, .external_lex_state = 6}, + [8306] = {.lex_state = 251, .external_lex_state = 6}, + [8307] = {.lex_state = 1218, .external_lex_state = 12}, + [8308] = {.lex_state = 107, .external_lex_state = 6}, [8309] = {.lex_state = 251, .external_lex_state = 6}, - [8310] = {.lex_state = 251, .external_lex_state = 6}, + [8310] = {.lex_state = 107, .external_lex_state = 6}, [8311] = {.lex_state = 251, .external_lex_state = 6}, [8312] = {.lex_state = 251, .external_lex_state = 6}, [8313] = {.lex_state = 100, .external_lex_state = 6}, - [8314] = {.lex_state = 251, .external_lex_state = 6}, - [8315] = {.lex_state = 249, .external_lex_state = 6}, - [8316] = {.lex_state = 251, .external_lex_state = 6}, - [8317] = {.lex_state = 1218, .external_lex_state = 6}, + [8314] = {.lex_state = 262, .external_lex_state = 6}, + [8315] = {.lex_state = 251, .external_lex_state = 6}, + [8316] = {.lex_state = 249, .external_lex_state = 6}, + [8317] = {.lex_state = 251, .external_lex_state = 6}, [8318] = {.lex_state = 251, .external_lex_state = 6}, - [8319] = {.lex_state = 251, .external_lex_state = 6}, + [8319] = {.lex_state = 100, .external_lex_state = 6}, [8320] = {.lex_state = 251, .external_lex_state = 6}, - [8321] = {.lex_state = 251, .external_lex_state = 6}, - [8322] = {.lex_state = 89, .external_lex_state = 6}, + [8321] = {.lex_state = 262, .external_lex_state = 6}, + [8322] = {.lex_state = 251, .external_lex_state = 6}, [8323] = {.lex_state = 251, .external_lex_state = 6}, - [8324] = {.lex_state = 251, .external_lex_state = 6}, - [8325] = {.lex_state = 303, .external_lex_state = 6}, - [8326] = {.lex_state = 251, .external_lex_state = 6}, - [8327] = {.lex_state = 251, .external_lex_state = 6}, + [8324] = {.lex_state = 1218, .external_lex_state = 6}, + [8325] = {.lex_state = 1218, .external_lex_state = 6}, + [8326] = {.lex_state = 1218, .external_lex_state = 6}, + [8327] = {.lex_state = 1218, .external_lex_state = 6}, [8328] = {.lex_state = 251, .external_lex_state = 6}, - [8329] = {.lex_state = 107, .external_lex_state = 6}, - [8330] = {.lex_state = 251, .external_lex_state = 6}, - [8331] = {.lex_state = 251, .external_lex_state = 6}, - [8332] = {.lex_state = 262, .external_lex_state = 6}, - [8333] = {.lex_state = 1218, .external_lex_state = 6}, - [8334] = {.lex_state = 262, .external_lex_state = 6}, + [8329] = {.lex_state = 1218, .external_lex_state = 6}, + [8330] = {.lex_state = 249, .external_lex_state = 6}, + [8331] = {.lex_state = 262, .external_lex_state = 6}, + [8332] = {.lex_state = 251, .external_lex_state = 6}, + [8333] = {.lex_state = 262, .external_lex_state = 6}, + [8334] = {.lex_state = 87, .external_lex_state = 6}, [8335] = {.lex_state = 262, .external_lex_state = 6}, [8336] = {.lex_state = 262, .external_lex_state = 6}, - [8337] = {.lex_state = 251, .external_lex_state = 6}, - [8338] = {.lex_state = 262, .external_lex_state = 6}, + [8337] = {.lex_state = 262, .external_lex_state = 6}, + [8338] = {.lex_state = 1218, .external_lex_state = 6}, [8339] = {.lex_state = 262, .external_lex_state = 6}, - [8340] = {.lex_state = 1218, .external_lex_state = 6}, - [8341] = {.lex_state = 1218, .external_lex_state = 6}, - [8342] = {.lex_state = 1218, .external_lex_state = 6}, + [8340] = {.lex_state = 262, .external_lex_state = 6}, + [8341] = {.lex_state = 251, .external_lex_state = 6}, + [8342] = {.lex_state = 251, .external_lex_state = 6}, [8343] = {.lex_state = 1218, .external_lex_state = 6}, - [8344] = {.lex_state = 262, .external_lex_state = 6}, - [8345] = {.lex_state = 251, .external_lex_state = 6}, - [8346] = {.lex_state = 251, .external_lex_state = 6}, - [8347] = {.lex_state = 251, .external_lex_state = 6}, + [8344] = {.lex_state = 251, .external_lex_state = 6}, + [8345] = {.lex_state = 1218, .external_lex_state = 6}, + [8346] = {.lex_state = 262, .external_lex_state = 6}, + [8347] = {.lex_state = 100, .external_lex_state = 6}, [8348] = {.lex_state = 251, .external_lex_state = 6}, - [8349] = {.lex_state = 1218, .external_lex_state = 6}, - [8350] = {.lex_state = 251, .external_lex_state = 6}, - [8351] = {.lex_state = 251, .external_lex_state = 6}, - [8352] = {.lex_state = 251, .external_lex_state = 6}, + [8349] = {.lex_state = 87, .external_lex_state = 6}, + [8350] = {.lex_state = 1218, .external_lex_state = 6}, + [8351] = {.lex_state = 1218, .external_lex_state = 6}, + [8352] = {.lex_state = 249, .external_lex_state = 6}, [8353] = {.lex_state = 251, .external_lex_state = 6}, - [8354] = {.lex_state = 251, .external_lex_state = 6}, - [8355] = {.lex_state = 251, .external_lex_state = 6}, + [8354] = {.lex_state = 1218, .external_lex_state = 6}, + [8355] = {.lex_state = 1218, .external_lex_state = 6}, [8356] = {.lex_state = 251, .external_lex_state = 6}, - [8357] = {.lex_state = 251, .external_lex_state = 6}, - [8358] = {.lex_state = 251, .external_lex_state = 6}, - [8359] = {.lex_state = 262, .external_lex_state = 6}, + [8357] = {.lex_state = 87, .external_lex_state = 6}, + [8358] = {.lex_state = 1218, .external_lex_state = 6}, + [8359] = {.lex_state = 251, .external_lex_state = 6}, [8360] = {.lex_state = 262, .external_lex_state = 6}, - [8361] = {.lex_state = 1218, .external_lex_state = 6}, + [8361] = {.lex_state = 262, .external_lex_state = 6}, [8362] = {.lex_state = 251, .external_lex_state = 6}, - [8363] = {.lex_state = 89, .external_lex_state = 6}, + [8363] = {.lex_state = 1218, .external_lex_state = 6}, [8364] = {.lex_state = 251, .external_lex_state = 6}, - [8365] = {.lex_state = 251, .external_lex_state = 6}, - [8366] = {.lex_state = 251, .external_lex_state = 6}, - [8367] = {.lex_state = 251, .external_lex_state = 6}, + [8365] = {.lex_state = 1218, .external_lex_state = 6}, + [8366] = {.lex_state = 1218, .external_lex_state = 6}, + [8367] = {.lex_state = 262, .external_lex_state = 6}, [8368] = {.lex_state = 251, .external_lex_state = 6}, [8369] = {.lex_state = 251, .external_lex_state = 6}, [8370] = {.lex_state = 251, .external_lex_state = 6}, - [8371] = {.lex_state = 251, .external_lex_state = 6}, + [8371] = {.lex_state = 87, .external_lex_state = 6}, [8372] = {.lex_state = 251, .external_lex_state = 6}, - [8373] = {.lex_state = 262, .external_lex_state = 6}, - [8374] = {.lex_state = 251, .external_lex_state = 6}, - [8375] = {.lex_state = 251, .external_lex_state = 6}, - [8376] = {.lex_state = 251, .external_lex_state = 6}, + [8373] = {.lex_state = 251, .external_lex_state = 6}, + [8374] = {.lex_state = 262, .external_lex_state = 6}, + [8375] = {.lex_state = 1218, .external_lex_state = 6}, + [8376] = {.lex_state = 107, .external_lex_state = 6}, [8377] = {.lex_state = 251, .external_lex_state = 6}, [8378] = {.lex_state = 251, .external_lex_state = 6}, - [8379] = {.lex_state = 251, .external_lex_state = 6}, - [8380] = {.lex_state = 251, .external_lex_state = 6}, + [8379] = {.lex_state = 100, .external_lex_state = 6}, + [8380] = {.lex_state = 249, .external_lex_state = 6}, [8381] = {.lex_state = 251, .external_lex_state = 6}, - [8382] = {.lex_state = 251, .external_lex_state = 6}, + [8382] = {.lex_state = 262, .external_lex_state = 6}, [8383] = {.lex_state = 251, .external_lex_state = 6}, [8384] = {.lex_state = 251, .external_lex_state = 6}, [8385] = {.lex_state = 251, .external_lex_state = 6}, - [8386] = {.lex_state = 100, .external_lex_state = 6}, - [8387] = {.lex_state = 251, .external_lex_state = 6}, - [8388] = {.lex_state = 251, .external_lex_state = 6}, + [8386] = {.lex_state = 251, .external_lex_state = 6}, + [8387] = {.lex_state = 100, .external_lex_state = 6}, + [8388] = {.lex_state = 262, .external_lex_state = 6}, [8389] = {.lex_state = 251, .external_lex_state = 6}, - [8390] = {.lex_state = 1218, .external_lex_state = 12}, - [8391] = {.lex_state = 107, .external_lex_state = 6}, - [8392] = {.lex_state = 251, .external_lex_state = 6}, + [8390] = {.lex_state = 100, .external_lex_state = 6}, + [8391] = {.lex_state = 1218, .external_lex_state = 12}, + [8392] = {.lex_state = 107, .external_lex_state = 6}, [8393] = {.lex_state = 251, .external_lex_state = 6}, [8394] = {.lex_state = 251, .external_lex_state = 6}, [8395] = {.lex_state = 251, .external_lex_state = 6}, - [8396] = {.lex_state = 251, .external_lex_state = 6}, + [8396] = {.lex_state = 262, .external_lex_state = 6}, [8397] = {.lex_state = 100, .external_lex_state = 6}, - [8398] = {.lex_state = 262, .external_lex_state = 6}, + [8398] = {.lex_state = 87, .external_lex_state = 6}, [8399] = {.lex_state = 262, .external_lex_state = 6}, [8400] = {.lex_state = 262, .external_lex_state = 6}, [8401] = {.lex_state = 262, .external_lex_state = 6}, @@ -43419,11 +43418,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8403] = {.lex_state = 262, .external_lex_state = 6}, [8404] = {.lex_state = 262, .external_lex_state = 6}, [8405] = {.lex_state = 262, .external_lex_state = 6}, - [8406] = {.lex_state = 249, .external_lex_state = 6}, - [8407] = {.lex_state = 89, .external_lex_state = 6}, - [8408] = {.lex_state = 249, .external_lex_state = 6}, - [8409] = {.lex_state = 251, .external_lex_state = 6}, - [8410] = {.lex_state = 1218, .external_lex_state = 6}, + [8406] = {.lex_state = 262, .external_lex_state = 6}, + [8407] = {.lex_state = 249, .external_lex_state = 6}, + [8408] = {.lex_state = 251, .external_lex_state = 6}, + [8409] = {.lex_state = 249, .external_lex_state = 6}, + [8410] = {.lex_state = 251, .external_lex_state = 6}, + [8411] = {.lex_state = 1218, .external_lex_state = 6}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -43516,10 +43516,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_abstract_specifier_token1] = ACTIONS(1), [aux_sym_base_type_specifier_token1] = ACTIONS(1), [aux_sym_end_type_statement_token1] = ACTIONS(1), - [aux_sym__procedure_kind_token1] = ACTIONS(1), - [aux_sym__procedure_kind_token2] = ACTIONS(1), - [aux_sym__procedure_kind_token3] = ACTIONS(1), - [aux_sym__procedure_kind_token4] = ACTIONS(1), + [aux_sym_procedure_kind_token1] = ACTIONS(1), + [aux_sym_procedure_kind_token2] = ACTIONS(1), + [aux_sym_procedure_kind_token3] = ACTIONS(1), + [aux_sym_procedure_kind_token4] = ACTIONS(1), [aux_sym_procedure_attribute_token1] = ACTIONS(1), [aux_sym_procedure_attribute_token2] = ACTIONS(1), [aux_sym_procedure_attribute_token3] = ACTIONS(1), @@ -43679,130 +43679,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__preproc_unary_operator] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(8153), - [sym_preproc_include] = STATE(55), - [sym_preproc_def] = STATE(55), - [sym_preproc_function_def] = STATE(55), - [sym_preproc_call] = STATE(55), - [sym_preproc_if] = STATE(55), - [sym_preproc_ifdef] = STATE(55), - [sym_preproc_if_in_specification_part] = STATE(193), - [sym_preproc_ifdef_in_specification_part] = STATE(193), - [sym_preproc_if_in_statements] = STATE(575), - [sym_preproc_ifdef_in_statements] = STATE(575), - [sym_program] = STATE(55), - [sym_program_statement] = STATE(192), - [sym_end_program_statement] = STATE(960), - [sym_module] = STATE(55), - [sym_module_statement] = STATE(1110), - [sym_submodule] = STATE(55), - [sym_submodule_statement] = STATE(1100), - [sym_interface] = STATE(55), - [sym_interface_statement] = STATE(3843), - [sym_subroutine] = STATE(55), - [sym_subroutine_statement] = STATE(6682), - [sym_function] = STATE(55), - [sym_function_statement] = STATE(6618), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6690), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(193), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(193), - [sym_public_statement] = STATE(193), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(193), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_translation_unit] = STATE(8260), + [sym_preproc_include] = STATE(54), + [sym_preproc_def] = STATE(54), + [sym_preproc_function_def] = STATE(54), + [sym_preproc_call] = STATE(54), + [sym_preproc_if] = STATE(54), + [sym_preproc_ifdef] = STATE(54), + [sym_preproc_if_in_specification_part] = STATE(196), + [sym_preproc_ifdef_in_specification_part] = STATE(196), + [sym_preproc_if_in_statements] = STATE(578), + [sym_preproc_ifdef_in_statements] = STATE(578), + [sym_program] = STATE(54), + [sym_program_statement] = STATE(191), + [sym_end_program_statement] = STATE(1000), + [sym_module] = STATE(54), + [sym_module_statement] = STATE(1106), + [sym_submodule] = STATE(54), + [sym_submodule_statement] = STATE(1107), + [sym_interface] = STATE(54), + [sym_interface_statement] = STATE(3822), + [sym_subroutine] = STATE(54), + [sym_subroutine_statement] = STATE(6348), + [sym_function] = STATE(54), + [sym_function_statement] = STATE(6374), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6380), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(196), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(196), + [sym_public_statement] = STATE(196), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(196), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6576), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(193), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(55), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(575), - [aux_sym_program_repeat1] = STATE(193), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(7021), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(196), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(54), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(578), + [aux_sym_program_repeat1] = STATE(196), + [aux_sym_variable_modification_repeat1] = STATE(3156), [ts_builtin_sym_end] = ACTIONS(5), [aux_sym_preproc_include_token1] = ACTIONS(7), [aux_sym_preproc_def_token1] = ACTIONS(9), @@ -43944,133 +43944,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(36), [sym_preproc_if] = STATE(36), [sym_preproc_ifdef] = STATE(36), - [sym_preproc_else] = STATE(8382), - [sym_preproc_elif] = STATE(8382), - [sym_preproc_elifdef] = STATE(8382), + [sym_preproc_else] = STATE(8120), + [sym_preproc_elif] = STATE(8120), + [sym_preproc_elifdef] = STATE(8120), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8394), - [sym_preproc_elif_in_specification_part] = STATE(8394), - [sym_preproc_elifdef_in_specification_part] = STATE(8394), - [sym_preproc_if_in_statements] = STATE(235), - [sym_preproc_ifdef_in_statements] = STATE(235), - [sym_preproc_else_in_statements] = STATE(7979), - [sym_preproc_elif_in_statements] = STATE(7979), - [sym_preproc_elifdef_in_statements] = STATE(7979), + [sym_preproc_else_in_specification_part] = STATE(8293), + [sym_preproc_elif_in_specification_part] = STATE(8293), + [sym_preproc_elifdef_in_specification_part] = STATE(8293), + [sym_preproc_if_in_statements] = STATE(227), + [sym_preproc_ifdef_in_statements] = STATE(227), + [sym_preproc_else_in_statements] = STATE(8332), + [sym_preproc_elif_in_statements] = STATE(8332), + [sym_preproc_elifdef_in_statements] = STATE(8332), [sym_program] = STATE(36), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(36), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(36), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(36), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(36), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(36), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5456), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5439), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym_preproc_if_in_module_repeat1] = STATE(101), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(235), + [aux_sym_preproc_if_in_module_repeat1] = STATE(111), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(227), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -44211,139 +44211,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [3] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(7630), - [sym_preproc_elif] = STATE(7630), - [sym_preproc_elifdef] = STATE(7630), + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_preproc_else] = STATE(7544), + [sym_preproc_elif] = STATE(7544), + [sym_preproc_elifdef] = STATE(7544), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8394), - [sym_preproc_elif_in_specification_part] = STATE(8394), - [sym_preproc_elifdef_in_specification_part] = STATE(8394), - [sym_preproc_if_in_statements] = STATE(235), - [sym_preproc_ifdef_in_statements] = STATE(235), - [sym_preproc_else_in_statements] = STATE(7979), - [sym_preproc_elif_in_statements] = STATE(7979), - [sym_preproc_elifdef_in_statements] = STATE(7979), - [sym_program] = STATE(32), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(32), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(32), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(32), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(32), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(32), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5456), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(7559), + [sym_preproc_elif_in_specification_part] = STATE(7559), + [sym_preproc_elifdef_in_specification_part] = STATE(7559), + [sym_preproc_if_in_statements] = STATE(225), + [sym_preproc_ifdef_in_statements] = STATE(225), + [sym_preproc_else_in_statements] = STATE(7576), + [sym_preproc_elif_in_statements] = STATE(7576), + [sym_preproc_elifdef_in_statements] = STATE(7576), + [sym_program] = STATE(30), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(30), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(30), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(30), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(30), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(30), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5449), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym_preproc_if_in_module_repeat1] = STATE(101), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(235), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym_preproc_if_in_module_repeat1] = STATE(116), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(225), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -44424,7 +44424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(219), + [anon_sym_SEMI] = ACTIONS(225), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -44484,143 +44484,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [4] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_preproc_else] = STATE(7973), - [sym_preproc_elif] = STATE(7973), - [sym_preproc_elifdef] = STATE(7973), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(7677), + [sym_preproc_elif] = STATE(7677), + [sym_preproc_elifdef] = STATE(7677), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7974), - [sym_preproc_elif_in_specification_part] = STATE(7974), - [sym_preproc_elifdef_in_specification_part] = STATE(7974), - [sym_preproc_if_in_statements] = STATE(233), - [sym_preproc_ifdef_in_statements] = STATE(233), - [sym_preproc_else_in_statements] = STATE(7985), - [sym_preproc_elif_in_statements] = STATE(7985), - [sym_preproc_elifdef_in_statements] = STATE(7985), - [sym_program] = STATE(34), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(34), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(34), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(34), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(34), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(34), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5473), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8293), + [sym_preproc_elif_in_specification_part] = STATE(8293), + [sym_preproc_elifdef_in_specification_part] = STATE(8293), + [sym_preproc_if_in_statements] = STATE(230), + [sym_preproc_ifdef_in_statements] = STATE(230), + [sym_preproc_else_in_statements] = STATE(7783), + [sym_preproc_elif_in_statements] = STATE(7783), + [sym_preproc_elifdef_in_statements] = STATE(7783), + [sym_program] = STATE(28), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(28), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(28), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(28), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(28), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(28), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5445), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym_preproc_if_in_module_repeat1] = STATE(118), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(233), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym_preproc_if_in_module_repeat1] = STATE(111), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(230), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(225), + [aux_sym_preproc_if_token2] = ACTIONS(227), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -44629,7 +44629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token2] = ACTIONS(205), [sym_preproc_directive] = ACTIONS(207), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(227), + [sym_preproc_comment] = ACTIONS(229), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -44697,7 +44697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(231), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -44757,143 +44757,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [5] = { - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_preproc_else] = STATE(8117), - [sym_preproc_elif] = STATE(8117), - [sym_preproc_elifdef] = STATE(8117), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_preproc_else] = STATE(8120), + [sym_preproc_elif] = STATE(8120), + [sym_preproc_elifdef] = STATE(8120), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8394), - [sym_preproc_elif_in_specification_part] = STATE(8394), - [sym_preproc_elifdef_in_specification_part] = STATE(8394), - [sym_preproc_if_in_statements] = STATE(225), - [sym_preproc_ifdef_in_statements] = STATE(225), - [sym_preproc_else_in_statements] = STATE(8119), - [sym_preproc_elif_in_statements] = STATE(8119), - [sym_preproc_elifdef_in_statements] = STATE(8119), - [sym_program] = STATE(42), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(42), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(42), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(42), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(42), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(42), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5426), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8293), + [sym_preproc_elif_in_specification_part] = STATE(8293), + [sym_preproc_elifdef_in_specification_part] = STATE(8293), + [sym_preproc_if_in_statements] = STATE(237), + [sym_preproc_ifdef_in_statements] = STATE(237), + [sym_preproc_else_in_statements] = STATE(8153), + [sym_preproc_elif_in_statements] = STATE(8153), + [sym_preproc_elifdef_in_statements] = STATE(8153), + [sym_program] = STATE(36), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(36), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(36), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(36), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(36), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(36), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5490), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym_preproc_if_in_module_repeat1] = STATE(101), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(225), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym_preproc_if_in_module_repeat1] = STATE(111), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(237), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(233), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -44902,7 +44902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token2] = ACTIONS(205), [sym_preproc_directive] = ACTIONS(207), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(233), + [sym_preproc_comment] = ACTIONS(235), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -44970,7 +44970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(237), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -45030,143 +45030,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [6] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(7630), - [sym_preproc_elif] = STATE(7630), - [sym_preproc_elifdef] = STATE(7630), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(7677), + [sym_preproc_elif] = STATE(7677), + [sym_preproc_elifdef] = STATE(7677), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8394), - [sym_preproc_elif_in_specification_part] = STATE(8394), - [sym_preproc_elifdef_in_specification_part] = STATE(8394), - [sym_preproc_if_in_statements] = STATE(232), - [sym_preproc_ifdef_in_statements] = STATE(232), - [sym_preproc_else_in_statements] = STATE(7878), - [sym_preproc_elif_in_statements] = STATE(7878), - [sym_preproc_elifdef_in_statements] = STATE(7878), - [sym_program] = STATE(32), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(32), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(32), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(32), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(32), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(32), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5427), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8293), + [sym_preproc_elif_in_specification_part] = STATE(8293), + [sym_preproc_elifdef_in_specification_part] = STATE(8293), + [sym_preproc_if_in_statements] = STATE(227), + [sym_preproc_ifdef_in_statements] = STATE(227), + [sym_preproc_else_in_statements] = STATE(8332), + [sym_preproc_elif_in_statements] = STATE(8332), + [sym_preproc_elifdef_in_statements] = STATE(8332), + [sym_program] = STATE(28), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(28), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(28), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(28), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(28), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(28), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5439), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym_preproc_if_in_module_repeat1] = STATE(101), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(232), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym_preproc_if_in_module_repeat1] = STATE(111), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(227), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(237), + [aux_sym_preproc_if_token2] = ACTIONS(239), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -45175,7 +45175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token2] = ACTIONS(205), [sym_preproc_directive] = ACTIONS(207), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(239), + [sym_preproc_comment] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -45243,7 +45243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_SEMI] = ACTIONS(219), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -45303,139 +45303,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [7] = { - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_preproc_else] = STATE(8117), - [sym_preproc_elif] = STATE(8117), - [sym_preproc_elifdef] = STATE(8117), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_preproc_else] = STATE(8004), + [sym_preproc_elif] = STATE(8004), + [sym_preproc_elifdef] = STATE(8004), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8394), - [sym_preproc_elif_in_specification_part] = STATE(8394), - [sym_preproc_elifdef_in_specification_part] = STATE(8394), - [sym_preproc_if_in_statements] = STATE(235), - [sym_preproc_ifdef_in_statements] = STATE(235), - [sym_preproc_else_in_statements] = STATE(7979), - [sym_preproc_elif_in_statements] = STATE(7979), - [sym_preproc_elifdef_in_statements] = STATE(7979), - [sym_program] = STATE(42), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(42), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(42), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(42), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(42), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(42), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5456), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8293), + [sym_preproc_elif_in_specification_part] = STATE(8293), + [sym_preproc_elifdef_in_specification_part] = STATE(8293), + [sym_preproc_if_in_statements] = STATE(227), + [sym_preproc_ifdef_in_statements] = STATE(227), + [sym_preproc_else_in_statements] = STATE(8332), + [sym_preproc_elif_in_statements] = STATE(8332), + [sym_preproc_elifdef_in_statements] = STATE(8332), + [sym_program] = STATE(44), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(44), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(44), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(44), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(44), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(44), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5439), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym_preproc_if_in_module_repeat1] = STATE(101), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(235), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym_preproc_if_in_module_repeat1] = STATE(111), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(227), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -45576,139 +45576,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [8] = { - [sym_preproc_include] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_preproc_else] = STATE(8239), - [sym_preproc_elif] = STATE(8239), - [sym_preproc_elifdef] = STATE(8239), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_preproc_else] = STATE(7932), + [sym_preproc_elif] = STATE(7932), + [sym_preproc_elifdef] = STATE(7932), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(238), - [sym_preproc_ifdef_in_statements] = STATE(238), - [sym_preproc_else_in_statements] = STATE(8241), - [sym_preproc_elif_in_statements] = STATE(8241), - [sym_preproc_elifdef_in_statements] = STATE(8241), - [sym_program] = STATE(45), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(45), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(45), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(45), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(45), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(45), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5439), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(7965), + [sym_preproc_elif_in_specification_part] = STATE(7965), + [sym_preproc_elifdef_in_specification_part] = STATE(7965), + [sym_preproc_if_in_statements] = STATE(234), + [sym_preproc_ifdef_in_statements] = STATE(234), + [sym_preproc_else_in_statements] = STATE(7969), + [sym_preproc_elif_in_statements] = STATE(7969), + [sym_preproc_elifdef_in_statements] = STATE(7969), + [sym_program] = STATE(29), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(29), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(29), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(29), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(29), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(29), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5455), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(45), - [aux_sym_preproc_if_in_module_repeat1] = STATE(88), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(238), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym_preproc_if_in_module_repeat1] = STATE(85), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(234), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -45848,139 +45848,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [9] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(8305), - [sym_preproc_elif] = STATE(8305), - [sym_preproc_elifdef] = STATE(8305), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_preproc_else] = STATE(7515), + [sym_preproc_elif] = STATE(7515), + [sym_preproc_elifdef] = STATE(7515), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7612), - [sym_preproc_elif_in_specification_part] = STATE(7612), - [sym_preproc_elifdef_in_specification_part] = STATE(7612), - [sym_preproc_if_in_statements] = STATE(227), - [sym_preproc_ifdef_in_statements] = STATE(227), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_program] = STATE(40), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(40), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(40), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(40), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(40), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(40), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5460), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(228), + [sym_preproc_ifdef_in_statements] = STATE(228), + [sym_preproc_else_in_statements] = STATE(7565), + [sym_preproc_elif_in_statements] = STATE(7565), + [sym_preproc_elifdef_in_statements] = STATE(7565), + [sym_program] = STATE(39), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(39), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(39), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(39), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(39), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(39), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5440), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(40), - [aux_sym_preproc_if_in_module_repeat1] = STATE(119), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(227), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym_preproc_if_in_module_repeat1] = STATE(86), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(228), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -46120,139 +46120,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [10] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(8310), - [sym_preproc_elif] = STATE(8310), - [sym_preproc_elifdef] = STATE(8310), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_preproc_else] = STATE(8017), + [sym_preproc_elif] = STATE(8017), + [sym_preproc_elifdef] = STATE(8017), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(239), - [sym_preproc_ifdef_in_statements] = STATE(239), - [sym_preproc_else_in_statements] = STATE(8308), - [sym_preproc_elif_in_statements] = STATE(8308), - [sym_preproc_elifdef_in_statements] = STATE(8308), - [sym_program] = STATE(28), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(28), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(28), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(28), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(28), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(28), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5449), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8022), + [sym_preproc_elif_in_specification_part] = STATE(8022), + [sym_preproc_elifdef_in_specification_part] = STATE(8022), + [sym_preproc_if_in_statements] = STATE(226), + [sym_preproc_ifdef_in_statements] = STATE(226), + [sym_preproc_else_in_statements] = STATE(8025), + [sym_preproc_elif_in_statements] = STATE(8025), + [sym_preproc_elifdef_in_statements] = STATE(8025), + [sym_program] = STATE(33), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(33), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(33), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(33), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(33), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(33), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5428), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym_preproc_if_in_module_repeat1] = STATE(103), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(239), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym_preproc_if_in_module_repeat1] = STATE(100), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(226), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -46392,139 +46392,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [11] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_preproc_else] = STATE(8103), - [sym_preproc_elif] = STATE(8103), - [sym_preproc_elifdef] = STATE(8103), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_preproc_else] = STATE(8033), + [sym_preproc_elif] = STATE(8033), + [sym_preproc_elifdef] = STATE(8033), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8105), - [sym_preproc_elif_in_specification_part] = STATE(8105), - [sym_preproc_elifdef_in_specification_part] = STATE(8105), - [sym_preproc_if_in_statements] = STATE(228), - [sym_preproc_ifdef_in_statements] = STATE(228), - [sym_preproc_else_in_statements] = STATE(8107), - [sym_preproc_elif_in_statements] = STATE(8107), - [sym_preproc_elifdef_in_statements] = STATE(8107), - [sym_program] = STATE(30), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(30), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(30), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(30), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(30), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(30), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5484), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8035), + [sym_preproc_elif_in_specification_part] = STATE(8035), + [sym_preproc_elifdef_in_specification_part] = STATE(8035), + [sym_preproc_if_in_statements] = STATE(233), + [sym_preproc_ifdef_in_statements] = STATE(233), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_program] = STATE(34), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(34), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(34), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(34), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(34), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(34), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5433), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(30), - [aux_sym_preproc_if_in_module_repeat1] = STATE(111), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(228), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym_preproc_if_in_module_repeat1] = STATE(119), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(233), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -46664,139 +46664,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [12] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_preproc_else] = STATE(7531), - [sym_preproc_elif] = STATE(7531), - [sym_preproc_elifdef] = STATE(7531), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(8394), + [sym_preproc_elif] = STATE(8394), + [sym_preproc_elifdef] = STATE(8394), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(226), - [sym_preproc_ifdef_in_statements] = STATE(226), - [sym_preproc_else_in_statements] = STATE(7509), - [sym_preproc_elif_in_statements] = STATE(7509), - [sym_preproc_elifdef_in_statements] = STATE(7509), - [sym_program] = STATE(29), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(29), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(29), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(29), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(29), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(29), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5463), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(228), + [sym_preproc_ifdef_in_statements] = STATE(228), + [sym_preproc_else_in_statements] = STATE(7565), + [sym_preproc_elif_in_statements] = STATE(7565), + [sym_preproc_elifdef_in_statements] = STATE(7565), + [sym_program] = STATE(27), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(27), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(27), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(27), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(27), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(27), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5440), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym_preproc_if_in_module_repeat1] = STATE(88), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(226), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym_preproc_if_in_module_repeat1] = STATE(86), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(228), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -46876,7 +46876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(253), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -46936,143 +46936,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [13] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_preproc_else] = STATE(7514), - [sym_preproc_elif] = STATE(7514), - [sym_preproc_elifdef] = STATE(7514), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_preproc_else] = STATE(7634), + [sym_preproc_elif] = STATE(7634), + [sym_preproc_elifdef] = STATE(7634), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(231), - [sym_preproc_ifdef_in_statements] = STATE(231), - [sym_preproc_else_in_statements] = STATE(7473), - [sym_preproc_elif_in_statements] = STATE(7473), - [sym_preproc_elifdef_in_statements] = STATE(7473), - [sym_program] = STATE(38), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(38), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(38), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(38), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(38), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(38), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5459), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(7654), + [sym_preproc_elif_in_specification_part] = STATE(7654), + [sym_preproc_elifdef_in_specification_part] = STATE(7654), + [sym_preproc_if_in_statements] = STATE(240), + [sym_preproc_ifdef_in_statements] = STATE(240), + [sym_preproc_else_in_statements] = STATE(7794), + [sym_preproc_elif_in_statements] = STATE(7794), + [sym_preproc_elifdef_in_statements] = STATE(7794), + [sym_program] = STATE(42), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(42), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(42), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(42), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(42), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(42), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5424), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym_preproc_if_in_module_repeat1] = STATE(103), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(231), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(42), + [aux_sym_preproc_if_in_module_repeat1] = STATE(112), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(240), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(267), + [aux_sym_preproc_if_token2] = ACTIONS(265), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -47148,7 +47148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(267), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -47208,143 +47208,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [14] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(8224), - [sym_preproc_elif] = STATE(8224), - [sym_preproc_elifdef] = STATE(8224), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_preproc_else] = STATE(7643), + [sym_preproc_elif] = STATE(7643), + [sym_preproc_elifdef] = STATE(7643), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7672), - [sym_preproc_elif_in_specification_part] = STATE(7672), - [sym_preproc_elifdef_in_specification_part] = STATE(7672), - [sym_preproc_if_in_statements] = STATE(236), - [sym_preproc_ifdef_in_statements] = STATE(236), - [sym_preproc_else_in_statements] = STATE(8228), - [sym_preproc_elif_in_statements] = STATE(8228), - [sym_preproc_elifdef_in_statements] = STATE(8228), - [sym_program] = STATE(27), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(27), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(27), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(27), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(27), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(27), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5438), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(231), + [sym_preproc_ifdef_in_statements] = STATE(231), + [sym_preproc_else_in_statements] = STATE(7606), + [sym_preproc_elif_in_statements] = STATE(7606), + [sym_preproc_elifdef_in_statements] = STATE(7606), + [sym_program] = STATE(40), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(40), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(40), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(40), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(40), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(40), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5491), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym_preproc_if_in_module_repeat1] = STATE(85), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(236), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(40), + [aux_sym_preproc_if_in_module_repeat1] = STATE(103), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(231), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(271), + [aux_sym_preproc_if_token2] = ACTIONS(269), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -47420,7 +47420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(273), + [anon_sym_SEMI] = ACTIONS(271), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -47480,143 +47480,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [15] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_preproc_else] = STATE(7665), - [sym_preproc_elif] = STATE(7665), - [sym_preproc_elifdef] = STATE(7665), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_preproc_else] = STATE(8104), + [sym_preproc_elif] = STATE(8104), + [sym_preproc_elifdef] = STATE(8104), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7672), - [sym_preproc_elif_in_specification_part] = STATE(7672), - [sym_preproc_elifdef_in_specification_part] = STATE(7672), - [sym_preproc_if_in_statements] = STATE(230), - [sym_preproc_ifdef_in_statements] = STATE(230), - [sym_preproc_else_in_statements] = STATE(7777), - [sym_preproc_elif_in_statements] = STATE(7777), - [sym_preproc_elifdef_in_statements] = STATE(7777), - [sym_program] = STATE(43), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(43), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(43), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(43), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(43), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(43), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5452), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(229), + [sym_preproc_ifdef_in_statements] = STATE(229), + [sym_preproc_else_in_statements] = STATE(8124), + [sym_preproc_elif_in_statements] = STATE(8124), + [sym_preproc_elifdef_in_statements] = STATE(8124), + [sym_program] = STATE(31), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(31), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(31), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(31), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(31), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(31), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5451), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym_preproc_if_in_module_repeat1] = STATE(85), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(230), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym_preproc_if_in_module_repeat1] = STATE(86), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(229), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(275), + [aux_sym_preproc_if_token2] = ACTIONS(273), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -47692,7 +47692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(275), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -47752,143 +47752,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [16] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8062), - [sym_preproc_elif] = STATE(8062), - [sym_preproc_elifdef] = STATE(8062), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_preproc_else] = STATE(7751), + [sym_preproc_elif] = STATE(7751), + [sym_preproc_elifdef] = STATE(7751), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7672), - [sym_preproc_elif_in_specification_part] = STATE(7672), - [sym_preproc_elifdef_in_specification_part] = STATE(7672), - [sym_preproc_if_in_statements] = STATE(229), - [sym_preproc_ifdef_in_statements] = STATE(229), - [sym_preproc_else_in_statements] = STATE(8283), - [sym_preproc_elif_in_statements] = STATE(8283), - [sym_preproc_elifdef_in_statements] = STATE(8283), - [sym_program] = STATE(33), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(33), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(33), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(33), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(33), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(33), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5413), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(235), + [sym_preproc_ifdef_in_statements] = STATE(235), + [sym_preproc_else_in_statements] = STATE(7733), + [sym_preproc_elif_in_statements] = STATE(7733), + [sym_preproc_elifdef_in_statements] = STATE(7733), + [sym_program] = STATE(32), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(32), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(32), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(32), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(32), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(32), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5447), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym_preproc_if_in_module_repeat1] = STATE(85), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(229), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym_preproc_if_in_module_repeat1] = STATE(103), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(235), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(279), + [aux_sym_preproc_if_token2] = ACTIONS(277), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -47964,7 +47964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_SEMI] = ACTIONS(279), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -48024,139 +48024,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [17] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_preproc_else] = STATE(8138), - [sym_preproc_elif] = STATE(8138), - [sym_preproc_elifdef] = STATE(8138), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_preproc_else] = STATE(7923), + [sym_preproc_elif] = STATE(7923), + [sym_preproc_elifdef] = STATE(7923), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), + [sym_preproc_else_in_specification_part] = STATE(7965), + [sym_preproc_elif_in_specification_part] = STATE(7965), + [sym_preproc_elifdef_in_specification_part] = STATE(7965), [sym_preproc_if_in_statements] = STATE(234), [sym_preproc_ifdef_in_statements] = STATE(234), - [sym_preproc_else_in_statements] = STATE(8393), - [sym_preproc_elif_in_statements] = STATE(8393), - [sym_preproc_elifdef_in_statements] = STATE(8393), - [sym_program] = STATE(35), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(35), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(35), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(35), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(35), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(35), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5454), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_statements] = STATE(7969), + [sym_preproc_elif_in_statements] = STATE(7969), + [sym_preproc_elifdef_in_statements] = STATE(7969), + [sym_program] = STATE(41), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(41), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(41), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(41), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(41), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(41), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5455), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym_preproc_if_in_module_repeat1] = STATE(88), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym_preproc_if_in_module_repeat1] = STATE(85), [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(234), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(191), + [aux_sym_preproc_def_token1] = ACTIONS(193), + [aux_sym_preproc_if_token1] = ACTIONS(195), + [aux_sym_preproc_if_token2] = ACTIONS(281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(199), + [aux_sym_preproc_else_token1] = ACTIONS(201), + [aux_sym_preproc_elif_token1] = ACTIONS(203), + [aux_sym_preproc_elifdef_token1] = ACTIONS(205), + [aux_sym_preproc_elifdef_token2] = ACTIONS(205), + [sym_preproc_directive] = ACTIONS(207), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(23), + [aux_sym_end_program_statement_token1] = ACTIONS(211), + [aux_sym_end_program_statement_token2] = ACTIONS(213), + [aux_sym_module_statement_token1] = ACTIONS(29), + [aux_sym_submodule_statement_token1] = ACTIONS(31), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_subroutine_statement_token1] = ACTIONS(39), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_function_statement_token1] = ACTIONS(43), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(47), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(57), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(215), + [aux_sym_public_statement_token1] = ACTIONS(217), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(75), + [aux_sym__intrinsic_type_token2] = ACTIONS(77), + [aux_sym__intrinsic_type_token3] = ACTIONS(75), + [aux_sym__intrinsic_type_token4] = ACTIONS(79), + [aux_sym__intrinsic_type_token6] = ACTIONS(77), + [aux_sym__intrinsic_type_token7] = ACTIONS(77), + [aux_sym__intrinsic_type_token8] = ACTIONS(81), + [aux_sym__intrinsic_type_token9] = ACTIONS(77), + [aux_sym__intrinsic_type_token10] = ACTIONS(77), + [aux_sym_derived_type_token1] = ACTIONS(83), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_procedure_qualifier_token1] = ACTIONS(95), + [aux_sym_procedure_qualifier_token2] = ACTIONS(95), + [aux_sym_procedure_qualifier_token3] = ACTIONS(95), + [aux_sym_procedure_qualifier_token4] = ACTIONS(95), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(249), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(117), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(183), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [18] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(7493), + [sym_preproc_elif] = STATE(7493), + [sym_preproc_elifdef] = STATE(7493), + [sym_preproc_if_in_specification_part] = STATE(194), + [sym_preproc_ifdef_in_specification_part] = STATE(194), + [sym_preproc_else_in_specification_part] = STATE(7965), + [sym_preproc_elif_in_specification_part] = STATE(7965), + [sym_preproc_elifdef_in_specification_part] = STATE(7965), + [sym_preproc_if_in_statements] = STATE(238), + [sym_preproc_ifdef_in_statements] = STATE(238), + [sym_preproc_else_in_statements] = STATE(7503), + [sym_preproc_elif_in_statements] = STATE(7503), + [sym_preproc_elifdef_in_statements] = STATE(7503), + [sym_program] = STATE(37), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(37), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(37), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(37), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(37), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(37), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5430), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3115), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym_preproc_if_in_module_repeat1] = STATE(85), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(238), + [aux_sym_program_repeat1] = STATE(194), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -48295,140 +48567,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [18] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_preproc_else] = STATE(7496), - [sym_preproc_elif] = STATE(7496), - [sym_preproc_elifdef] = STATE(7496), + [19] = { + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_preproc_else] = STATE(7515), + [sym_preproc_elif] = STATE(7515), + [sym_preproc_elifdef] = STATE(7515), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(237), - [sym_preproc_ifdef_in_statements] = STATE(237), - [sym_preproc_else_in_statements] = STATE(7588), - [sym_preproc_elif_in_statements] = STATE(7588), - [sym_preproc_elifdef_in_statements] = STATE(7588), - [sym_program] = STATE(37), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(37), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(37), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(37), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(37), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(37), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5481), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(236), + [sym_preproc_ifdef_in_statements] = STATE(236), + [sym_preproc_else_in_statements] = STATE(7509), + [sym_preproc_elif_in_statements] = STATE(7509), + [sym_preproc_elifdef_in_statements] = STATE(7509), + [sym_program] = STATE(39), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(39), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(39), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(39), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(39), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(39), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5435), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym_preproc_if_in_module_repeat1] = STATE(103), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(237), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym_preproc_if_in_module_repeat1] = STATE(86), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(236), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -48567,140 +48839,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [19] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(8224), - [sym_preproc_elif] = STATE(8224), - [sym_preproc_elifdef] = STATE(8224), + [20] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_preproc_else] = STATE(7643), + [sym_preproc_elif] = STATE(7643), + [sym_preproc_elifdef] = STATE(7643), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7672), - [sym_preproc_elif_in_specification_part] = STATE(7672), - [sym_preproc_elifdef_in_specification_part] = STATE(7672), - [sym_preproc_if_in_statements] = STATE(230), - [sym_preproc_ifdef_in_statements] = STATE(230), - [sym_preproc_else_in_statements] = STATE(7777), - [sym_preproc_elif_in_statements] = STATE(7777), - [sym_preproc_elifdef_in_statements] = STATE(7777), - [sym_program] = STATE(27), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(27), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(27), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(27), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(27), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(27), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5452), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(239), + [sym_preproc_ifdef_in_statements] = STATE(239), + [sym_preproc_else_in_statements] = STATE(7599), + [sym_preproc_elif_in_statements] = STATE(7599), + [sym_preproc_elifdef_in_statements] = STATE(7599), + [sym_program] = STATE(40), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(40), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(40), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(40), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(40), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(40), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5476), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym_preproc_if_in_module_repeat1] = STATE(85), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(230), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(40), + [aux_sym_preproc_if_in_module_repeat1] = STATE(103), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(239), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -48780,7 +49052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(293), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -48839,144 +49111,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [20] = { + [21] = { [sym_preproc_include] = STATE(45), [sym_preproc_def] = STATE(45), [sym_preproc_function_def] = STATE(45), [sym_preproc_call] = STATE(45), [sym_preproc_if] = STATE(45), [sym_preproc_ifdef] = STATE(45), - [sym_preproc_else] = STATE(8239), - [sym_preproc_elif] = STATE(8239), - [sym_preproc_elifdef] = STATE(8239), + [sym_preproc_else] = STATE(7778), + [sym_preproc_elif] = STATE(7778), + [sym_preproc_elifdef] = STATE(7778), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(226), - [sym_preproc_ifdef_in_statements] = STATE(226), - [sym_preproc_else_in_statements] = STATE(7509), - [sym_preproc_elif_in_statements] = STATE(7509), - [sym_preproc_elifdef_in_statements] = STATE(7509), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(231), + [sym_preproc_ifdef_in_statements] = STATE(231), + [sym_preproc_else_in_statements] = STATE(7606), + [sym_preproc_elif_in_statements] = STATE(7606), + [sym_preproc_elifdef_in_statements] = STATE(7606), [sym_program] = STATE(45), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(45), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(45), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(45), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(45), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(45), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5463), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5491), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(45), - [aux_sym_preproc_if_in_module_repeat1] = STATE(88), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(226), + [aux_sym_preproc_if_in_module_repeat1] = STATE(103), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(231), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(293), + [aux_sym_preproc_if_token2] = ACTIONS(295), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -49052,7 +49324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(271), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -49111,144 +49383,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [21] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(8310), - [sym_preproc_elif] = STATE(8310), - [sym_preproc_elifdef] = STATE(8310), + [22] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_preproc_else] = STATE(8104), + [sym_preproc_elif] = STATE(8104), + [sym_preproc_elifdef] = STATE(8104), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(231), - [sym_preproc_ifdef_in_statements] = STATE(231), - [sym_preproc_else_in_statements] = STATE(7473), - [sym_preproc_elif_in_statements] = STATE(7473), - [sym_preproc_elifdef_in_statements] = STATE(7473), - [sym_program] = STATE(28), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(28), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(28), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(28), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(28), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(28), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5459), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(228), + [sym_preproc_ifdef_in_statements] = STATE(228), + [sym_preproc_else_in_statements] = STATE(7565), + [sym_preproc_elif_in_statements] = STATE(7565), + [sym_preproc_elifdef_in_statements] = STATE(7565), + [sym_program] = STATE(31), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(31), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(31), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(31), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(31), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(31), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5440), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym_preproc_if_in_module_repeat1] = STATE(103), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(231), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym_preproc_if_in_module_repeat1] = STATE(86), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(228), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(295), + [aux_sym_preproc_if_token2] = ACTIONS(297), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -49324,7 +49596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(253), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -49383,144 +49655,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [22] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_preproc_else] = STATE(8161), - [sym_preproc_elif] = STATE(8161), - [sym_preproc_elifdef] = STATE(8161), + [23] = { + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_preproc_else] = STATE(7751), + [sym_preproc_elif] = STATE(7751), + [sym_preproc_elifdef] = STATE(7751), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8155), - [sym_preproc_elif_in_specification_part] = STATE(8155), - [sym_preproc_elifdef_in_specification_part] = STATE(8155), - [sym_preproc_if_in_statements] = STATE(240), - [sym_preproc_ifdef_in_statements] = STATE(240), - [sym_preproc_else_in_statements] = STATE(7790), - [sym_preproc_elif_in_statements] = STATE(7790), - [sym_preproc_elifdef_in_statements] = STATE(7790), - [sym_program] = STATE(39), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(39), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(39), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(39), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(39), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(39), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5451), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(231), + [sym_preproc_ifdef_in_statements] = STATE(231), + [sym_preproc_else_in_statements] = STATE(7606), + [sym_preproc_elif_in_statements] = STATE(7606), + [sym_preproc_elifdef_in_statements] = STATE(7606), + [sym_program] = STATE(32), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(32), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(32), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(32), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(32), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(32), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5491), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym_preproc_if_in_module_repeat1] = STATE(99), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(240), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym_preproc_if_in_module_repeat1] = STATE(103), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(231), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(297), + [aux_sym_preproc_if_token2] = ACTIONS(299), [aux_sym_preproc_ifdef_token1] = ACTIONS(199), [aux_sym_preproc_ifdef_token2] = ACTIONS(199), [aux_sym_preproc_else_token1] = ACTIONS(201), @@ -49596,7 +49868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(271), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -49655,140 +49927,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [23] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8062), - [sym_preproc_elif] = STATE(8062), - [sym_preproc_elifdef] = STATE(8062), + [24] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(7493), + [sym_preproc_elif] = STATE(7493), + [sym_preproc_elifdef] = STATE(7493), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7672), - [sym_preproc_elif_in_specification_part] = STATE(7672), - [sym_preproc_elifdef_in_specification_part] = STATE(7672), - [sym_preproc_if_in_statements] = STATE(230), - [sym_preproc_ifdef_in_statements] = STATE(230), - [sym_preproc_else_in_statements] = STATE(7777), - [sym_preproc_elif_in_statements] = STATE(7777), - [sym_preproc_elifdef_in_statements] = STATE(7777), - [sym_program] = STATE(33), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(33), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(33), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(33), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(33), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(33), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5452), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(7965), + [sym_preproc_elif_in_specification_part] = STATE(7965), + [sym_preproc_elifdef_in_specification_part] = STATE(7965), + [sym_preproc_if_in_statements] = STATE(234), + [sym_preproc_ifdef_in_statements] = STATE(234), + [sym_preproc_else_in_statements] = STATE(7969), + [sym_preproc_elif_in_statements] = STATE(7969), + [sym_preproc_elifdef_in_statements] = STATE(7969), + [sym_program] = STATE(37), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(37), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(37), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(37), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(37), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(37), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5455), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(33), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym_preproc_if_in_module_repeat1] = STATE(85), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(230), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(234), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -49868,7 +50140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(249), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -49927,140 +50199,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [24] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_preproc_else] = STATE(8138), - [sym_preproc_elif] = STATE(8138), - [sym_preproc_elifdef] = STATE(8138), + [25] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_preproc_else] = STATE(7932), + [sym_preproc_elif] = STATE(7932), + [sym_preproc_elifdef] = STATE(7932), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(226), - [sym_preproc_ifdef_in_statements] = STATE(226), - [sym_preproc_else_in_statements] = STATE(7509), - [sym_preproc_elif_in_statements] = STATE(7509), - [sym_preproc_elifdef_in_statements] = STATE(7509), - [sym_program] = STATE(35), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(35), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(35), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(35), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(35), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(35), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5463), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_else_in_specification_part] = STATE(7965), + [sym_preproc_elif_in_specification_part] = STATE(7965), + [sym_preproc_elifdef_in_specification_part] = STATE(7965), + [sym_preproc_if_in_statements] = STATE(232), + [sym_preproc_ifdef_in_statements] = STATE(232), + [sym_preproc_else_in_statements] = STATE(7978), + [sym_preproc_elif_in_statements] = STATE(7978), + [sym_preproc_elifdef_in_statements] = STATE(7978), + [sym_program] = STATE(29), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(29), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(29), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(29), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(29), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(29), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(5454), + [sym_contains_statement] = STATE(6666), + [sym__specification_part] = STATE(1149), + [sym_use_statement] = STATE(6667), + [sym_implicit_statement] = STATE(6667), + [sym_save_statement] = STATE(6667), + [sym_private_statement] = STATE(1149), + [sym_public_statement] = STATE(1149), + [sym_namelist_statement] = STATE(6667), + [sym_common_statement] = STATE(6667), + [sym_import_statement] = STATE(6667), + [sym_derived_type_definition] = STATE(1149), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4208), + [sym_variable_declaration] = STATE(6667), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6667), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym_preproc_if_in_module_repeat1] = STATE(88), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(226), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6667), + [sym_equivalence_statement] = STATE(6667), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(786), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6667), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_enum] = STATE(1149), + [sym_enum_statement] = STATE(5885), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_statement_function] = STATE(6667), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym_preproc_if_in_module_repeat1] = STATE(85), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(232), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(195), @@ -50140,7 +50412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(305), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -50199,152 +50471,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [25] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_preproc_else] = STATE(7496), - [sym_preproc_elif] = STATE(7496), - [sym_preproc_elifdef] = STATE(7496), + [26] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_preproc_else] = STATE(7544), + [sym_preproc_elif] = STATE(7544), + [sym_preproc_elifdef] = STATE(7544), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(231), - [sym_preproc_ifdef_in_statements] = STATE(231), - [sym_preproc_else_in_statements] = STATE(7473), - [sym_preproc_elif_in_statements] = STATE(7473), - [sym_preproc_elifdef_in_statements] = STATE(7473), - [sym_program] = STATE(37), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(37), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(37), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(37), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(37), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(37), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(5459), - [sym_contains_statement] = STATE(6842), - [sym__specification_part] = STATE(1121), - [sym_use_statement] = STATE(6844), - [sym_implicit_statement] = STATE(6844), - [sym_save_statement] = STATE(6844), - [sym_private_statement] = STATE(1121), - [sym_public_statement] = STATE(1121), - [sym_namelist_statement] = STATE(6844), - [sym_common_statement] = STATE(6844), - [sym_import_statement] = STATE(6844), - [sym_derived_type_definition] = STATE(1121), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4218), - [sym_variable_declaration] = STATE(6844), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), + [sym_program] = STATE(30), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(30), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(30), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(30), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(30), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(30), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(194), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(194), + [sym_public_statement] = STATE(194), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(194), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6844), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6844), - [sym_equivalence_statement] = STATE(6844), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(784), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6844), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_enum] = STATE(1121), - [sym_enum_statement] = STATE(5869), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_statement_function] = STATE(6844), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym_preproc_if_in_module_repeat1] = STATE(103), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(231), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(194), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), - [aux_sym_preproc_if_token1] = ACTIONS(195), - [aux_sym_preproc_if_token2] = ACTIONS(305), - [aux_sym_preproc_ifdef_token1] = ACTIONS(199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(199), - [aux_sym_preproc_else_token1] = ACTIONS(201), - [aux_sym_preproc_elif_token1] = ACTIONS(203), - [aux_sym_preproc_elifdef_token1] = ACTIONS(205), - [aux_sym_preproc_elifdef_token2] = ACTIONS(205), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_if_token2] = ACTIONS(309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(311), + [aux_sym_preproc_else_token1] = ACTIONS(313), + [aux_sym_preproc_elif_token1] = ACTIONS(315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(317), [sym_preproc_directive] = ACTIONS(207), [anon_sym_LPAREN2] = ACTIONS(17), + [sym_preproc_comment] = ACTIONS(319), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -50369,8 +50635,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(57), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(215), - [aux_sym_public_statement_token1] = ACTIONS(217), + [aux_sym_private_statement_token1] = ACTIONS(61), + [aux_sym_public_statement_token1] = ACTIONS(63), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -50412,7 +50678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(321), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -50471,137 +50737,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [26] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_preproc_else] = STATE(7973), - [sym_preproc_elif] = STATE(7973), - [sym_preproc_elifdef] = STATE(7973), + [27] = { + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_preproc_else] = STATE(8213), + [sym_preproc_elif] = STATE(8213), + [sym_preproc_elifdef] = STATE(8213), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), - [sym_program] = STATE(34), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(34), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(34), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(34), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(34), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(34), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), + [sym_program] = STATE(46), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(46), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(46), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(46), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(46), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(46), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(46), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(309), + [aux_sym_preproc_if_token2] = ACTIONS(323), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -50610,7 +50876,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token2] = ACTIONS(317), [sym_preproc_directive] = ACTIONS(207), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(319), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -50737,137 +51002,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [27] = { + [28] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8310), - [sym_preproc_elif] = STATE(8310), - [sym_preproc_elifdef] = STATE(8310), + [sym_preproc_else] = STATE(8104), + [sym_preproc_elif] = STATE(8104), + [sym_preproc_elifdef] = STATE(8104), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(323), + [aux_sym_preproc_if_token2] = ACTIONS(325), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -51002,137 +51267,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [28] = { + [29] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(7939), - [sym_preproc_elif] = STATE(7939), - [sym_preproc_elifdef] = STATE(7939), + [sym_preproc_else] = STATE(7751), + [sym_preproc_elif] = STATE(7751), + [sym_preproc_elifdef] = STATE(7751), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(325), + [aux_sym_preproc_if_token2] = ACTIONS(327), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -51267,137 +51532,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [29] = { + [30] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8255), - [sym_preproc_elif] = STATE(8255), - [sym_preproc_elifdef] = STATE(8255), + [sym_preproc_else] = STATE(8033), + [sym_preproc_elif] = STATE(8033), + [sym_preproc_elifdef] = STATE(8033), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(327), + [aux_sym_preproc_if_token2] = ACTIONS(329), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -51532,137 +51797,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [30] = { + [31] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8319), - [sym_preproc_elif] = STATE(8319), - [sym_preproc_elifdef] = STATE(8319), + [sym_preproc_else] = STATE(8315), + [sym_preproc_elif] = STATE(8315), + [sym_preproc_elifdef] = STATE(8315), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(329), + [aux_sym_preproc_if_token2] = ACTIONS(331), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -51797,137 +52062,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [31] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_preproc_else] = STATE(8103), - [sym_preproc_elif] = STATE(8103), - [sym_preproc_elifdef] = STATE(8103), + [32] = { + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_preproc_else] = STATE(8170), + [sym_preproc_elif] = STATE(8170), + [sym_preproc_elifdef] = STATE(8170), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), - [sym_program] = STATE(30), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(30), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(30), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(30), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(30), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(30), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), + [sym_program] = STATE(46), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(46), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(46), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(46), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(46), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(46), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(30), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(46), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(331), + [aux_sym_preproc_if_token2] = ACTIONS(333), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -52062,137 +52327,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [32] = { + [33] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8138), - [sym_preproc_elif] = STATE(8138), - [sym_preproc_elifdef] = STATE(8138), + [sym_preproc_else] = STATE(7943), + [sym_preproc_elif] = STATE(7943), + [sym_preproc_elifdef] = STATE(7943), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(333), + [aux_sym_preproc_if_token2] = ACTIONS(335), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -52327,137 +52592,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [33] = { + [34] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(7496), - [sym_preproc_elif] = STATE(7496), - [sym_preproc_elifdef] = STATE(7496), + [sym_preproc_else] = STATE(8103), + [sym_preproc_elif] = STATE(8103), + [sym_preproc_elifdef] = STATE(8103), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(335), + [aux_sym_preproc_if_token2] = ACTIONS(337), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -52592,137 +52857,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [34] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8305), - [sym_preproc_elif] = STATE(8305), - [sym_preproc_elifdef] = STATE(8305), + [35] = { + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_preproc_else] = STATE(8017), + [sym_preproc_elif] = STATE(8017), + [sym_preproc_elifdef] = STATE(8017), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), - [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), + [sym_program] = STATE(33), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(33), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(33), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(33), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(33), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(33), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(339), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -52857,137 +53122,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [35] = { + [36] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(7838), - [sym_preproc_elif] = STATE(7838), - [sym_preproc_elifdef] = STATE(7838), + [sym_preproc_else] = STATE(7515), + [sym_preproc_elif] = STATE(7515), + [sym_preproc_elifdef] = STATE(7515), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(339), + [aux_sym_preproc_if_token2] = ACTIONS(341), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -53122,137 +53387,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [36] = { + [37] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(7531), - [sym_preproc_elif] = STATE(7531), - [sym_preproc_elifdef] = STATE(7531), + [sym_preproc_else] = STATE(7643), + [sym_preproc_elif] = STATE(7643), + [sym_preproc_elifdef] = STATE(7643), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(341), + [aux_sym_preproc_if_token2] = ACTIONS(343), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -53387,137 +53652,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [37] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(7638), - [sym_preproc_elif] = STATE(7638), - [sym_preproc_elifdef] = STATE(7638), + [38] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_preproc_else] = STATE(8033), + [sym_preproc_elif] = STATE(8033), + [sym_preproc_elifdef] = STATE(8033), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), - [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), + [sym_program] = STATE(34), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(34), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(34), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(34), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(34), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(34), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(343), + [aux_sym_preproc_if_token2] = ACTIONS(329), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -53652,133 +53917,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [38] = { + [39] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8300), - [sym_preproc_elif] = STATE(8300), - [sym_preproc_elifdef] = STATE(8300), + [sym_preproc_else] = STATE(7730), + [sym_preproc_elif] = STATE(7730), + [sym_preproc_elifdef] = STATE(7730), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), @@ -53917,133 +54182,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [39] = { + [40] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8298), - [sym_preproc_elif] = STATE(8298), - [sym_preproc_elifdef] = STATE(8298), + [sym_preproc_else] = STATE(7921), + [sym_preproc_elif] = STATE(7921), + [sym_preproc_elifdef] = STATE(7921), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), @@ -54182,133 +54447,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [40] = { + [41] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), [sym_preproc_function_def] = STATE(46), [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8374), - [sym_preproc_elif] = STATE(8374), - [sym_preproc_elifdef] = STATE(8374), + [sym_preproc_else] = STATE(7778), + [sym_preproc_elif] = STATE(7778), + [sym_preproc_elifdef] = STATE(7778), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), @@ -54447,271 +54712,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [41] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_preproc_else] = STATE(8161), - [sym_preproc_elif] = STATE(8161), - [sym_preproc_elifdef] = STATE(8161), - [sym_preproc_if_in_specification_part] = STATE(194), - [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), - [sym_program] = STATE(39), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(39), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(39), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(39), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(39), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(39), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(194), - [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), - [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(191), - [aux_sym_preproc_def_token1] = ACTIONS(193), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(311), - [aux_sym_preproc_else_token1] = ACTIONS(313), - [aux_sym_preproc_elif_token1] = ACTIONS(315), - [aux_sym_preproc_elifdef_token1] = ACTIONS(317), - [aux_sym_preproc_elifdef_token2] = ACTIONS(317), - [sym_preproc_directive] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(23), - [aux_sym_end_program_statement_token1] = ACTIONS(211), - [aux_sym_end_program_statement_token2] = ACTIONS(213), - [aux_sym_module_statement_token1] = ACTIONS(29), - [aux_sym_submodule_statement_token1] = ACTIONS(31), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_subroutine_statement_token1] = ACTIONS(39), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_function_statement_token1] = ACTIONS(43), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(47), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(57), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(61), - [aux_sym_public_statement_token1] = ACTIONS(63), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(75), - [aux_sym__intrinsic_type_token2] = ACTIONS(77), - [aux_sym__intrinsic_type_token3] = ACTIONS(75), - [aux_sym__intrinsic_type_token4] = ACTIONS(79), - [aux_sym__intrinsic_type_token6] = ACTIONS(77), - [aux_sym__intrinsic_type_token7] = ACTIONS(77), - [aux_sym__intrinsic_type_token8] = ACTIONS(81), - [aux_sym__intrinsic_type_token9] = ACTIONS(77), - [aux_sym__intrinsic_type_token10] = ACTIONS(77), - [aux_sym_derived_type_token1] = ACTIONS(83), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_procedure_qualifier_token1] = ACTIONS(95), - [aux_sym_procedure_qualifier_token2] = ACTIONS(95), - [aux_sym_procedure_qualifier_token3] = ACTIONS(95), - [aux_sym_procedure_qualifier_token4] = ACTIONS(95), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(321), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(117), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(183), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, [42] = { [sym_preproc_include] = STATE(46), [sym_preproc_def] = STATE(46), @@ -54719,130 +54719,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8239), - [sym_preproc_elif] = STATE(8239), - [sym_preproc_elifdef] = STATE(8239), + [sym_preproc_else] = STATE(8237), + [sym_preproc_elif] = STATE(8237), + [sym_preproc_elifdef] = STATE(8237), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(353), + [aux_sym_preproc_if_token2] = ACTIONS(351), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -54978,136 +54978,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [43] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(7514), - [sym_preproc_elif] = STATE(7514), - [sym_preproc_elifdef] = STATE(7514), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_preproc_else] = STATE(7634), + [sym_preproc_elif] = STATE(7634), + [sym_preproc_elifdef] = STATE(7634), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), - [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), + [sym_program] = STATE(42), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(42), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(42), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(42), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(42), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(42), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(42), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(355), + [aux_sym_preproc_if_token2] = ACTIONS(353), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -55243,136 +55243,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [44] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(8305), - [sym_preproc_elif] = STATE(8305), - [sym_preproc_elifdef] = STATE(8305), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_preproc_else] = STATE(8394), + [sym_preproc_elif] = STATE(8394), + [sym_preproc_elifdef] = STATE(8394), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), - [sym_program] = STATE(40), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), - [sym_module] = STATE(40), - [sym_module_statement] = STATE(1101), - [sym_submodule] = STATE(40), - [sym_submodule_statement] = STATE(1102), - [sym_interface] = STATE(40), - [sym_interface_statement] = STATE(3739), - [sym_subroutine] = STATE(40), - [sym_subroutine_statement] = STATE(6911), - [sym_function] = STATE(40), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), + [sym_program] = STATE(46), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), + [sym_module] = STATE(46), + [sym_module_statement] = STATE(1108), + [sym_submodule] = STATE(46), + [sym_submodule_statement] = STATE(1109), + [sym_interface] = STATE(46), + [sym_interface_statement] = STATE(3732), + [sym_subroutine] = STATE(46), + [sym_subroutine_statement] = STATE(6872), + [sym_function] = STATE(46), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(40), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(46), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(355), [aux_sym_preproc_ifdef_token1] = ACTIONS(311), [aux_sym_preproc_ifdef_token2] = ACTIONS(311), [aux_sym_preproc_else_token1] = ACTIONS(313), @@ -55514,126 +55514,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(46), [sym_preproc_if] = STATE(46), [sym_preproc_ifdef] = STATE(46), - [sym_preproc_else] = STATE(8327), - [sym_preproc_elif] = STATE(8327), - [sym_preproc_elifdef] = STATE(8327), + [sym_preproc_else] = STATE(7988), + [sym_preproc_elif] = STATE(7988), + [sym_preproc_elifdef] = STATE(7988), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(191), [aux_sym_preproc_def_token1] = ACTIONS(193), [aux_sym_preproc_if_token1] = ACTIONS(307), @@ -55781,121 +55781,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_ifdef] = STATE(46), [sym_preproc_if_in_specification_part] = STATE(194), [sym_preproc_ifdef_in_specification_part] = STATE(194), - [sym_preproc_if_in_statements] = STATE(620), - [sym_preproc_ifdef_in_statements] = STATE(620), + [sym_preproc_if_in_statements] = STATE(603), + [sym_preproc_ifdef_in_statements] = STATE(603), [sym_program] = STATE(46), - [sym_program_statement] = STATE(189), - [sym_end_program_statement] = STATE(861), + [sym_program_statement] = STATE(192), + [sym_end_program_statement] = STATE(850), [sym_module] = STATE(46), - [sym_module_statement] = STATE(1101), + [sym_module_statement] = STATE(1108), [sym_submodule] = STATE(46), - [sym_submodule_statement] = STATE(1102), + [sym_submodule_statement] = STATE(1109), [sym_interface] = STATE(46), - [sym_interface_statement] = STATE(3739), + [sym_interface_statement] = STATE(3732), [sym_subroutine] = STATE(46), - [sym_subroutine_statement] = STATE(6911), + [sym_subroutine_statement] = STATE(6872), [sym_function] = STATE(46), - [sym_function_statement] = STATE(6912), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6893), - [sym_contains_statement] = STATE(6691), + [sym_function_statement] = STATE(6873), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6745), + [sym_contains_statement] = STATE(6394), [sym__specification_part] = STATE(194), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(194), [sym_public_statement] = STATE(194), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(194), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6898), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6299), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), [sym_enum] = STATE(194), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(603), [aux_sym_program_repeat1] = STATE(194), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(362), [aux_sym_preproc_if_token1] = ACTIONS(365), @@ -56041,124 +56041,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(50), [sym_preproc_if] = STATE(50), [sym_preproc_ifdef] = STATE(50), - [sym_preproc_if_in_specification_part] = STATE(191), - [sym_preproc_ifdef_in_specification_part] = STATE(191), - [sym_preproc_if_in_statements] = STATE(546), - [sym_preproc_ifdef_in_statements] = STATE(546), + [sym_preproc_if_in_specification_part] = STATE(190), + [sym_preproc_ifdef_in_specification_part] = STATE(190), + [sym_preproc_if_in_statements] = STATE(563), + [sym_preproc_ifdef_in_statements] = STATE(563), [sym_program] = STATE(50), - [sym_program_statement] = STATE(188), - [sym_end_program_statement] = STATE(1044), + [sym_program_statement] = STATE(189), + [sym_end_program_statement] = STATE(1029), [sym_module] = STATE(50), - [sym_module_statement] = STATE(1105), + [sym_module_statement] = STATE(1103), [sym_submodule] = STATE(50), - [sym_submodule_statement] = STATE(1108), + [sym_submodule_statement] = STATE(1105), [sym_interface] = STATE(50), - [sym_interface_statement] = STATE(3741), + [sym_interface_statement] = STATE(3794), [sym_subroutine] = STATE(50), - [sym_subroutine_statement] = STATE(6943), + [sym_subroutine_statement] = STATE(6895), [sym_function] = STATE(50), - [sym_function_statement] = STATE(6944), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6219), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(1212), - [sym_use_statement] = STATE(6462), - [sym_implicit_statement] = STATE(6462), - [sym_save_statement] = STATE(6462), - [sym_private_statement] = STATE(1212), - [sym_public_statement] = STATE(1212), - [sym_namelist_statement] = STATE(6462), - [sym_common_statement] = STATE(6462), - [sym_import_statement] = STATE(6462), - [sym_derived_type_definition] = STATE(1212), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4204), - [sym_variable_declaration] = STATE(6462), + [sym_function_statement] = STATE(6896), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6157), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(1278), + [sym_use_statement] = STATE(6367), + [sym_implicit_statement] = STATE(6367), + [sym_save_statement] = STATE(6367), + [sym_private_statement] = STATE(1278), + [sym_public_statement] = STATE(1278), + [sym_namelist_statement] = STATE(6367), + [sym_common_statement] = STATE(6367), + [sym_import_statement] = STATE(6367), + [sym_derived_type_definition] = STATE(1278), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4221), + [sym_variable_declaration] = STATE(6367), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6462), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6367), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6462), - [sym_equivalence_statement] = STATE(6462), - [sym__statements] = STATE(6399), - [sym_statement_label] = STATE(788), - [sym_stop_statement] = STATE(6399), - [sym_assignment_statement] = STATE(6399), - [sym_pointer_association_statement] = STATE(6399), - [sym_subroutine_call] = STATE(6399), - [sym_keyword_statement] = STATE(6399), - [sym_include_statement] = STATE(6403), - [sym_data_statement] = STATE(6462), - [sym_do_loop_statement] = STATE(6399), - [sym_do_label_statement] = STATE(6399), - [sym_end_do_label_statement] = STATE(6399), - [sym_if_statement] = STATE(6399), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6399), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6399), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6399), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6399), - [sym_select_type_statement] = STATE(6399), - [sym_select_rank_statement] = STATE(6399), - [sym_block_construct] = STATE(6399), - [sym_associate_statement] = STATE(6399), - [sym_format_statement] = STATE(6399), - [sym_read_statement] = STATE(6399), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6399), - [sym_open_statement] = STATE(6399), - [sym_close_statement] = STATE(6399), - [sym_write_statement] = STATE(6399), - [sym_inquire_statement] = STATE(6399), - [sym_enum] = STATE(1212), - [sym_enum_statement] = STATE(5908), - [sym_file_position_statement] = STATE(6399), - [sym_allocate_statement] = STATE(6399), - [sym_statement_function] = STATE(6462), - [sym_entry_statement] = STATE(6399), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6399), - [sym_coarray_team_statement] = STATE(6399), - [sym_coarray_critical_statement] = STATE(6399), - [sym_identifier] = STATE(4574), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6367), + [sym_equivalence_statement] = STATE(6367), + [sym__statements] = STATE(6296), + [sym_statement_label] = STATE(790), + [sym_stop_statement] = STATE(6296), + [sym_assignment_statement] = STATE(6296), + [sym_pointer_association_statement] = STATE(6296), + [sym_subroutine_call] = STATE(6296), + [sym_keyword_statement] = STATE(6296), + [sym_include_statement] = STATE(6312), + [sym_data_statement] = STATE(6367), + [sym_do_loop_statement] = STATE(6296), + [sym_do_label_statement] = STATE(6296), + [sym_end_do_label_statement] = STATE(6296), + [sym_if_statement] = STATE(6296), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6296), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6296), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6296), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6296), + [sym_select_type_statement] = STATE(6296), + [sym_select_rank_statement] = STATE(6296), + [sym_block_construct] = STATE(6296), + [sym_associate_statement] = STATE(6296), + [sym_format_statement] = STATE(6296), + [sym_read_statement] = STATE(6296), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6296), + [sym_open_statement] = STATE(6296), + [sym_close_statement] = STATE(6296), + [sym_write_statement] = STATE(6296), + [sym_inquire_statement] = STATE(6296), + [sym_enum] = STATE(1278), + [sym_enum_statement] = STATE(5893), + [sym_file_position_statement] = STATE(6296), + [sym_allocate_statement] = STATE(6296), + [sym_statement_function] = STATE(6367), + [sym_entry_statement] = STATE(6296), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6296), + [sym_coarray_team_statement] = STATE(6296), + [sym_coarray_critical_statement] = STATE(6296), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym_preproc_if_in_module_repeat1] = STATE(203), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(546), - [aux_sym_program_repeat1] = STATE(191), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_module_repeat1] = STATE(202), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(563), + [aux_sym_program_repeat1] = STATE(190), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(634), [aux_sym_preproc_def_token1] = ACTIONS(636), [aux_sym_preproc_if_token1] = ACTIONS(638), @@ -56295,138 +56295,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [48] = { - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_preproc_if_in_specification_part] = STATE(191), - [sym_preproc_ifdef_in_specification_part] = STATE(191), - [sym_preproc_if_in_statements] = STATE(553), - [sym_preproc_ifdef_in_statements] = STATE(553), - [sym_program] = STATE(52), - [sym_program_statement] = STATE(188), - [sym_end_program_statement] = STATE(1044), - [sym_module] = STATE(52), - [sym_module_statement] = STATE(1105), - [sym_submodule] = STATE(52), - [sym_submodule_statement] = STATE(1108), - [sym_interface] = STATE(52), - [sym_interface_statement] = STATE(3741), - [sym_subroutine] = STATE(52), - [sym_subroutine_statement] = STATE(6943), - [sym_function] = STATE(52), - [sym_function_statement] = STATE(6944), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6155), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(1212), - [sym_use_statement] = STATE(6462), - [sym_implicit_statement] = STATE(6462), - [sym_save_statement] = STATE(6462), - [sym_private_statement] = STATE(1212), - [sym_public_statement] = STATE(1212), - [sym_namelist_statement] = STATE(6462), - [sym_common_statement] = STATE(6462), - [sym_import_statement] = STATE(6462), - [sym_derived_type_definition] = STATE(1212), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4204), - [sym_variable_declaration] = STATE(6462), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_preproc_if_in_specification_part] = STATE(190), + [sym_preproc_ifdef_in_specification_part] = STATE(190), + [sym_preproc_if_in_statements] = STATE(616), + [sym_preproc_ifdef_in_statements] = STATE(616), + [sym_program] = STATE(50), + [sym_program_statement] = STATE(189), + [sym_end_program_statement] = STATE(1029), + [sym_module] = STATE(50), + [sym_module_statement] = STATE(1103), + [sym_submodule] = STATE(50), + [sym_submodule_statement] = STATE(1105), + [sym_interface] = STATE(50), + [sym_interface_statement] = STATE(3794), + [sym_subroutine] = STATE(50), + [sym_subroutine_statement] = STATE(6895), + [sym_function] = STATE(50), + [sym_function_statement] = STATE(6896), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6300), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(190), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(190), + [sym_public_statement] = STATE(190), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(190), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6462), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6462), - [sym_equivalence_statement] = STATE(6462), - [sym__statements] = STATE(6399), - [sym_statement_label] = STATE(788), - [sym_stop_statement] = STATE(6399), - [sym_assignment_statement] = STATE(6399), - [sym_pointer_association_statement] = STATE(6399), - [sym_subroutine_call] = STATE(6399), - [sym_keyword_statement] = STATE(6399), - [sym_include_statement] = STATE(6403), - [sym_data_statement] = STATE(6462), - [sym_do_loop_statement] = STATE(6399), - [sym_do_label_statement] = STATE(6399), - [sym_end_do_label_statement] = STATE(6399), - [sym_if_statement] = STATE(6399), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6399), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6399), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6399), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6399), - [sym_select_type_statement] = STATE(6399), - [sym_select_rank_statement] = STATE(6399), - [sym_block_construct] = STATE(6399), - [sym_associate_statement] = STATE(6399), - [sym_format_statement] = STATE(6399), - [sym_read_statement] = STATE(6399), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6399), - [sym_open_statement] = STATE(6399), - [sym_close_statement] = STATE(6399), - [sym_write_statement] = STATE(6399), - [sym_inquire_statement] = STATE(6399), - [sym_enum] = STATE(1212), - [sym_enum_statement] = STATE(5908), - [sym_file_position_statement] = STATE(6399), - [sym_allocate_statement] = STATE(6399), - [sym_statement_function] = STATE(6462), - [sym_entry_statement] = STATE(6399), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6399), - [sym_coarray_team_statement] = STATE(6399), - [sym_coarray_critical_statement] = STATE(6399), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym_preproc_if_in_module_repeat1] = STATE(200), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(553), - [aux_sym_program_repeat1] = STATE(191), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6312), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(190), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(616), + [aux_sym_program_repeat1] = STATE(190), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(634), [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(638), - [aux_sym_preproc_if_token2] = ACTIONS(658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(642), + [aux_sym_preproc_if_token1] = ACTIONS(658), + [aux_sym_preproc_if_token2] = ACTIONS(660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(662), [sym_preproc_directive] = ACTIONS(644), [anon_sym_LPAREN2] = ACTIONS(17), + [sym_preproc_comment] = ACTIONS(664), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -56451,8 +56451,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(57), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(652), - [aux_sym_public_statement_token1] = ACTIONS(654), + [aux_sym_private_statement_token1] = ACTIONS(61), + [aux_sym_public_statement_token1] = ACTIONS(63), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -56494,7 +56494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_SEMI] = ACTIONS(666), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -56554,138 +56554,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [49] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_preproc_if_in_specification_part] = STATE(191), - [sym_preproc_ifdef_in_specification_part] = STATE(191), - [sym_preproc_if_in_statements] = STATE(570), - [sym_preproc_ifdef_in_statements] = STATE(570), - [sym_program] = STATE(50), - [sym_program_statement] = STATE(188), - [sym_end_program_statement] = STATE(1044), - [sym_module] = STATE(50), - [sym_module_statement] = STATE(1105), - [sym_submodule] = STATE(50), - [sym_submodule_statement] = STATE(1108), - [sym_interface] = STATE(50), - [sym_interface_statement] = STATE(3741), - [sym_subroutine] = STATE(50), - [sym_subroutine_statement] = STATE(6943), - [sym_function] = STATE(50), - [sym_function_statement] = STATE(6944), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6379), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(191), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(191), - [sym_public_statement] = STATE(191), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(191), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_preproc_if_in_specification_part] = STATE(190), + [sym_preproc_ifdef_in_specification_part] = STATE(190), + [sym_preproc_if_in_statements] = STATE(551), + [sym_preproc_ifdef_in_statements] = STATE(551), + [sym_program] = STATE(52), + [sym_program_statement] = STATE(189), + [sym_end_program_statement] = STATE(1029), + [sym_module] = STATE(52), + [sym_module_statement] = STATE(1103), + [sym_submodule] = STATE(52), + [sym_submodule_statement] = STATE(1105), + [sym_interface] = STATE(52), + [sym_interface_statement] = STATE(3794), + [sym_subroutine] = STATE(52), + [sym_subroutine_statement] = STATE(6895), + [sym_function] = STATE(52), + [sym_function_statement] = STATE(6896), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6195), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(1278), + [sym_use_statement] = STATE(6367), + [sym_implicit_statement] = STATE(6367), + [sym_save_statement] = STATE(6367), + [sym_private_statement] = STATE(1278), + [sym_public_statement] = STATE(1278), + [sym_namelist_statement] = STATE(6367), + [sym_common_statement] = STATE(6367), + [sym_import_statement] = STATE(6367), + [sym_derived_type_definition] = STATE(1278), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4221), + [sym_variable_declaration] = STATE(6367), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6367), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6403), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(191), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(570), - [aux_sym_program_repeat1] = STATE(191), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6367), + [sym_equivalence_statement] = STATE(6367), + [sym__statements] = STATE(6296), + [sym_statement_label] = STATE(790), + [sym_stop_statement] = STATE(6296), + [sym_assignment_statement] = STATE(6296), + [sym_pointer_association_statement] = STATE(6296), + [sym_subroutine_call] = STATE(6296), + [sym_keyword_statement] = STATE(6296), + [sym_include_statement] = STATE(6312), + [sym_data_statement] = STATE(6367), + [sym_do_loop_statement] = STATE(6296), + [sym_do_label_statement] = STATE(6296), + [sym_end_do_label_statement] = STATE(6296), + [sym_if_statement] = STATE(6296), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6296), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6296), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6296), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6296), + [sym_select_type_statement] = STATE(6296), + [sym_select_rank_statement] = STATE(6296), + [sym_block_construct] = STATE(6296), + [sym_associate_statement] = STATE(6296), + [sym_format_statement] = STATE(6296), + [sym_read_statement] = STATE(6296), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6296), + [sym_open_statement] = STATE(6296), + [sym_close_statement] = STATE(6296), + [sym_write_statement] = STATE(6296), + [sym_inquire_statement] = STATE(6296), + [sym_enum] = STATE(1278), + [sym_enum_statement] = STATE(5893), + [sym_file_position_statement] = STATE(6296), + [sym_allocate_statement] = STATE(6296), + [sym_statement_function] = STATE(6367), + [sym_entry_statement] = STATE(6296), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6296), + [sym_coarray_team_statement] = STATE(6296), + [sym_coarray_critical_statement] = STATE(6296), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym_preproc_if_in_module_repeat1] = STATE(200), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(551), + [aux_sym_program_repeat1] = STATE(190), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(634), [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(662), - [aux_sym_preproc_if_token2] = ACTIONS(664), - [aux_sym_preproc_ifdef_token1] = ACTIONS(666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(666), + [aux_sym_preproc_if_token1] = ACTIONS(638), + [aux_sym_preproc_if_token2] = ACTIONS(668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(642), + [aux_sym_preproc_ifdef_token2] = ACTIONS(642), [sym_preproc_directive] = ACTIONS(644), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(668), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -56710,8 +56710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(57), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(61), - [aux_sym_public_statement_token1] = ACTIONS(63), + [aux_sym_private_statement_token1] = ACTIONS(652), + [aux_sym_public_statement_token1] = ACTIONS(654), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -56813,135 +56813,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [50] = { - [sym_preproc_include] = STATE(54), - [sym_preproc_def] = STATE(54), - [sym_preproc_function_def] = STATE(54), - [sym_preproc_call] = STATE(54), - [sym_preproc_if] = STATE(54), - [sym_preproc_ifdef] = STATE(54), - [sym_preproc_if_in_specification_part] = STATE(191), - [sym_preproc_ifdef_in_specification_part] = STATE(191), - [sym_preproc_if_in_statements] = STATE(570), - [sym_preproc_ifdef_in_statements] = STATE(570), - [sym_program] = STATE(54), - [sym_program_statement] = STATE(188), - [sym_end_program_statement] = STATE(1044), - [sym_module] = STATE(54), - [sym_module_statement] = STATE(1105), - [sym_submodule] = STATE(54), - [sym_submodule_statement] = STATE(1108), - [sym_interface] = STATE(54), - [sym_interface_statement] = STATE(3741), - [sym_subroutine] = STATE(54), - [sym_subroutine_statement] = STATE(6943), - [sym_function] = STATE(54), - [sym_function_statement] = STATE(6944), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6379), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(191), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(191), - [sym_public_statement] = STATE(191), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(191), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_preproc_if_in_specification_part] = STATE(190), + [sym_preproc_ifdef_in_specification_part] = STATE(190), + [sym_preproc_if_in_statements] = STATE(616), + [sym_preproc_ifdef_in_statements] = STATE(616), + [sym_program] = STATE(53), + [sym_program_statement] = STATE(189), + [sym_end_program_statement] = STATE(1029), + [sym_module] = STATE(53), + [sym_module_statement] = STATE(1103), + [sym_submodule] = STATE(53), + [sym_submodule_statement] = STATE(1105), + [sym_interface] = STATE(53), + [sym_interface_statement] = STATE(3794), + [sym_subroutine] = STATE(53), + [sym_subroutine_statement] = STATE(6895), + [sym_function] = STATE(53), + [sym_function_statement] = STATE(6896), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6300), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(190), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(190), + [sym_public_statement] = STATE(190), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(190), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6403), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(191), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(54), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(570), - [aux_sym_program_repeat1] = STATE(191), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6312), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(190), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(616), + [aux_sym_program_repeat1] = STATE(190), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(634), [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(662), + [aux_sym_preproc_if_token1] = ACTIONS(658), [aux_sym_preproc_if_token2] = ACTIONS(672), - [aux_sym_preproc_ifdef_token1] = ACTIONS(666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(662), [sym_preproc_directive] = ACTIONS(644), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -57011,7 +57011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(666), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -57077,123 +57077,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(51), [sym_preproc_if] = STATE(51), [sym_preproc_ifdef] = STATE(51), - [sym_preproc_if_in_specification_part] = STATE(193), - [sym_preproc_ifdef_in_specification_part] = STATE(193), - [sym_preproc_if_in_statements] = STATE(575), - [sym_preproc_ifdef_in_statements] = STATE(575), + [sym_preproc_if_in_specification_part] = STATE(196), + [sym_preproc_ifdef_in_specification_part] = STATE(196), + [sym_preproc_if_in_statements] = STATE(578), + [sym_preproc_ifdef_in_statements] = STATE(578), [sym_program] = STATE(51), - [sym_program_statement] = STATE(192), - [sym_end_program_statement] = STATE(960), + [sym_program_statement] = STATE(191), + [sym_end_program_statement] = STATE(1000), [sym_module] = STATE(51), - [sym_module_statement] = STATE(1110), + [sym_module_statement] = STATE(1106), [sym_submodule] = STATE(51), - [sym_submodule_statement] = STATE(1100), + [sym_submodule_statement] = STATE(1107), [sym_interface] = STATE(51), - [sym_interface_statement] = STATE(3843), + [sym_interface_statement] = STATE(3822), [sym_subroutine] = STATE(51), - [sym_subroutine_statement] = STATE(6682), + [sym_subroutine_statement] = STATE(6348), [sym_function] = STATE(51), - [sym_function_statement] = STATE(6618), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6690), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(193), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(193), - [sym_public_statement] = STATE(193), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(193), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_function_statement] = STATE(6374), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6380), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(196), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(196), + [sym_public_statement] = STATE(196), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(196), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6576), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(193), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(7021), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(196), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(51), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(575), - [aux_sym_program_repeat1] = STATE(193), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(578), + [aux_sym_program_repeat1] = STATE(196), + [aux_sym_variable_modification_repeat1] = STATE(3156), [ts_builtin_sym_end] = ACTIONS(674), [aux_sym_preproc_include_token1] = ACTIONS(676), [aux_sym_preproc_def_token1] = ACTIONS(679), @@ -57329,135 +57329,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(631), }, [52] = { - [sym_preproc_include] = STATE(54), - [sym_preproc_def] = STATE(54), - [sym_preproc_function_def] = STATE(54), - [sym_preproc_call] = STATE(54), - [sym_preproc_if] = STATE(54), - [sym_preproc_ifdef] = STATE(54), - [sym_preproc_if_in_specification_part] = STATE(191), - [sym_preproc_ifdef_in_specification_part] = STATE(191), - [sym_preproc_if_in_statements] = STATE(570), - [sym_preproc_ifdef_in_statements] = STATE(570), - [sym_program] = STATE(54), - [sym_program_statement] = STATE(188), - [sym_end_program_statement] = STATE(1044), - [sym_module] = STATE(54), - [sym_module_statement] = STATE(1105), - [sym_submodule] = STATE(54), - [sym_submodule_statement] = STATE(1108), - [sym_interface] = STATE(54), - [sym_interface_statement] = STATE(3741), - [sym_subroutine] = STATE(54), - [sym_subroutine_statement] = STATE(6943), - [sym_function] = STATE(54), - [sym_function_statement] = STATE(6944), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6379), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(191), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(191), - [sym_public_statement] = STATE(191), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(191), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_preproc_if_in_specification_part] = STATE(190), + [sym_preproc_ifdef_in_specification_part] = STATE(190), + [sym_preproc_if_in_statements] = STATE(616), + [sym_preproc_ifdef_in_statements] = STATE(616), + [sym_program] = STATE(53), + [sym_program_statement] = STATE(189), + [sym_end_program_statement] = STATE(1029), + [sym_module] = STATE(53), + [sym_module_statement] = STATE(1103), + [sym_submodule] = STATE(53), + [sym_submodule_statement] = STATE(1105), + [sym_interface] = STATE(53), + [sym_interface_statement] = STATE(3794), + [sym_subroutine] = STATE(53), + [sym_subroutine_statement] = STATE(6895), + [sym_function] = STATE(53), + [sym_function_statement] = STATE(6896), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6300), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(190), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(190), + [sym_public_statement] = STATE(190), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(190), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6403), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(191), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(54), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(570), - [aux_sym_program_repeat1] = STATE(191), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6312), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(190), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(616), + [aux_sym_program_repeat1] = STATE(190), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(634), [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(662), + [aux_sym_preproc_if_token1] = ACTIONS(658), [aux_sym_preproc_if_token2] = ACTIONS(700), - [aux_sym_preproc_ifdef_token1] = ACTIONS(666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(662), [sym_preproc_directive] = ACTIONS(644), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -57527,7 +57527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_procedure_qualifier_token3] = ACTIONS(95), [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(666), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -57587,387 +57587,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [53] = { - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_preproc_if_in_specification_part] = STATE(191), - [sym_preproc_ifdef_in_specification_part] = STATE(191), - [sym_preproc_if_in_statements] = STATE(570), - [sym_preproc_ifdef_in_statements] = STATE(570), - [sym_program] = STATE(52), - [sym_program_statement] = STATE(188), - [sym_end_program_statement] = STATE(1044), - [sym_module] = STATE(52), - [sym_module_statement] = STATE(1105), - [sym_submodule] = STATE(52), - [sym_submodule_statement] = STATE(1108), - [sym_interface] = STATE(52), - [sym_interface_statement] = STATE(3741), - [sym_subroutine] = STATE(52), - [sym_subroutine_statement] = STATE(6943), - [sym_function] = STATE(52), - [sym_function_statement] = STATE(6944), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6379), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(191), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(191), - [sym_public_statement] = STATE(191), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(191), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6403), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(191), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(570), - [aux_sym_program_repeat1] = STATE(191), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(634), - [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(662), - [aux_sym_preproc_if_token2] = ACTIONS(672), - [aux_sym_preproc_ifdef_token1] = ACTIONS(666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(666), - [sym_preproc_directive] = ACTIONS(644), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(23), - [aux_sym_end_program_statement_token1] = ACTIONS(648), - [aux_sym_end_program_statement_token2] = ACTIONS(650), - [aux_sym_module_statement_token1] = ACTIONS(29), - [aux_sym_submodule_statement_token1] = ACTIONS(31), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_subroutine_statement_token1] = ACTIONS(39), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_function_statement_token1] = ACTIONS(43), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(47), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(57), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(61), - [aux_sym_public_statement_token1] = ACTIONS(63), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(75), - [aux_sym__intrinsic_type_token2] = ACTIONS(77), - [aux_sym__intrinsic_type_token3] = ACTIONS(75), - [aux_sym__intrinsic_type_token4] = ACTIONS(79), - [aux_sym__intrinsic_type_token6] = ACTIONS(77), - [aux_sym__intrinsic_type_token7] = ACTIONS(77), - [aux_sym__intrinsic_type_token8] = ACTIONS(81), - [aux_sym__intrinsic_type_token9] = ACTIONS(77), - [aux_sym__intrinsic_type_token10] = ACTIONS(77), - [aux_sym_derived_type_token1] = ACTIONS(83), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_procedure_qualifier_token1] = ACTIONS(95), - [aux_sym_procedure_qualifier_token2] = ACTIONS(95), - [aux_sym_procedure_qualifier_token3] = ACTIONS(95), - [aux_sym_procedure_qualifier_token4] = ACTIONS(95), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(670), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(117), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(183), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [54] = { - [sym_preproc_include] = STATE(54), - [sym_preproc_def] = STATE(54), - [sym_preproc_function_def] = STATE(54), - [sym_preproc_call] = STATE(54), - [sym_preproc_if] = STATE(54), - [sym_preproc_ifdef] = STATE(54), - [sym_preproc_if_in_specification_part] = STATE(191), - [sym_preproc_ifdef_in_specification_part] = STATE(191), - [sym_preproc_if_in_statements] = STATE(570), - [sym_preproc_ifdef_in_statements] = STATE(570), - [sym_program] = STATE(54), - [sym_program_statement] = STATE(188), - [sym_end_program_statement] = STATE(1044), - [sym_module] = STATE(54), - [sym_module_statement] = STATE(1105), - [sym_submodule] = STATE(54), - [sym_submodule_statement] = STATE(1108), - [sym_interface] = STATE(54), - [sym_interface_statement] = STATE(3741), - [sym_subroutine] = STATE(54), - [sym_subroutine_statement] = STATE(6943), - [sym_function] = STATE(54), - [sym_function_statement] = STATE(6944), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6379), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(191), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(191), - [sym_public_statement] = STATE(191), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(191), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_preproc_if_in_specification_part] = STATE(190), + [sym_preproc_ifdef_in_specification_part] = STATE(190), + [sym_preproc_if_in_statements] = STATE(616), + [sym_preproc_ifdef_in_statements] = STATE(616), + [sym_program] = STATE(53), + [sym_program_statement] = STATE(189), + [sym_end_program_statement] = STATE(1029), + [sym_module] = STATE(53), + [sym_module_statement] = STATE(1103), + [sym_submodule] = STATE(53), + [sym_submodule_statement] = STATE(1105), + [sym_interface] = STATE(53), + [sym_interface_statement] = STATE(3794), + [sym_subroutine] = STATE(53), + [sym_subroutine_statement] = STATE(6895), + [sym_function] = STATE(53), + [sym_function_statement] = STATE(6896), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6300), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(190), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(190), + [sym_public_statement] = STATE(190), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(190), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6403), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(191), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_translation_unit_repeat1] = STATE(54), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(570), - [aux_sym_program_repeat1] = STATE(191), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6312), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(190), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(616), + [aux_sym_program_repeat1] = STATE(190), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(702), [aux_sym_preproc_def_token1] = ACTIONS(705), [aux_sym_preproc_if_token1] = ACTIONS(708), @@ -58102,130 +57844,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(628), [sym__string_literal_kind] = ACTIONS(631), }, - [55] = { + [54] = { [sym_preproc_include] = STATE(51), [sym_preproc_def] = STATE(51), [sym_preproc_function_def] = STATE(51), [sym_preproc_call] = STATE(51), [sym_preproc_if] = STATE(51), [sym_preproc_ifdef] = STATE(51), - [sym_preproc_if_in_specification_part] = STATE(193), - [sym_preproc_ifdef_in_specification_part] = STATE(193), - [sym_preproc_if_in_statements] = STATE(575), - [sym_preproc_ifdef_in_statements] = STATE(575), + [sym_preproc_if_in_specification_part] = STATE(196), + [sym_preproc_ifdef_in_specification_part] = STATE(196), + [sym_preproc_if_in_statements] = STATE(578), + [sym_preproc_ifdef_in_statements] = STATE(578), [sym_program] = STATE(51), - [sym_program_statement] = STATE(192), - [sym_end_program_statement] = STATE(960), + [sym_program_statement] = STATE(191), + [sym_end_program_statement] = STATE(1000), [sym_module] = STATE(51), - [sym_module_statement] = STATE(1110), + [sym_module_statement] = STATE(1106), [sym_submodule] = STATE(51), - [sym_submodule_statement] = STATE(1100), + [sym_submodule_statement] = STATE(1107), [sym_interface] = STATE(51), - [sym_interface_statement] = STATE(3843), + [sym_interface_statement] = STATE(3822), [sym_subroutine] = STATE(51), - [sym_subroutine_statement] = STATE(6682), + [sym_subroutine_statement] = STATE(6348), [sym_function] = STATE(51), - [sym_function_statement] = STATE(6618), - [sym_language_binding] = STATE(3142), - [aux_sym__callable_interface_qualifers] = STATE(5138), - [sym_procedure_attributes] = STATE(5138), - [sym_internal_procedures] = STATE(6690), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(193), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(193), - [sym_public_statement] = STATE(193), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(193), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [sym_function_statement] = STATE(6374), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6380), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(196), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(196), + [sym_public_statement] = STATE(196), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(196), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), [sym__intrinsic_type] = STATE(3115), - [sym_intrinsic_type] = STATE(3114), - [sym_derived_type] = STATE(3114), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_procedure_qualifier] = STATE(5138), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6576), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(193), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(7021), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(196), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), [aux_sym_translation_unit_repeat1] = STATE(51), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(575), - [aux_sym_program_repeat1] = STATE(193), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(578), + [aux_sym_program_repeat1] = STATE(196), + [aux_sym_variable_modification_repeat1] = STATE(3156), [ts_builtin_sym_end] = ACTIONS(726), [aux_sym_preproc_include_token1] = ACTIONS(7), [aux_sym_preproc_def_token1] = ACTIONS(9), @@ -58360,153 +58102,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [56] = { - [sym_preproc_include] = STATE(112), - [sym_preproc_def] = STATE(112), - [sym_preproc_function_def] = STATE(112), - [sym_preproc_call] = STATE(112), - [sym_preproc_else_in_specification_part] = STATE(8013), - [sym_preproc_elif_in_specification_part] = STATE(8013), - [sym_preproc_elifdef_in_specification_part] = STATE(8013), - [sym_preproc_if_in_statements] = STATE(210), - [sym_preproc_ifdef_in_statements] = STATE(210), - [sym_preproc_else_in_statements] = STATE(7513), - [sym_preproc_elif_in_statements] = STATE(7513), - [sym_preproc_elifdef_in_statements] = STATE(7513), - [sym_preproc_else_in_procedure_statements] = STATE(7967), - [sym_preproc_elif_in_procedure_statements] = STATE(7967), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7967), - [sym_interface] = STATE(112), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5414), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(112), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(112), - [sym_public_statement] = STATE(112), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(112), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [55] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_preproc_if_in_specification_part] = STATE(190), + [sym_preproc_ifdef_in_specification_part] = STATE(190), + [sym_preproc_if_in_statements] = STATE(616), + [sym_preproc_ifdef_in_statements] = STATE(616), + [sym_program] = STATE(52), + [sym_program_statement] = STATE(189), + [sym_end_program_statement] = STATE(1029), + [sym_module] = STATE(52), + [sym_module_statement] = STATE(1103), + [sym_submodule] = STATE(52), + [sym_submodule_statement] = STATE(1105), + [sym_interface] = STATE(52), + [sym_interface_statement] = STATE(3794), + [sym_subroutine] = STATE(52), + [sym_subroutine_statement] = STATE(6895), + [sym_function] = STATE(52), + [sym_function_statement] = STATE(6896), + [sym_language_binding] = STATE(3156), + [aux_sym__callable_interface_qualifers] = STATE(5141), + [sym_procedure_attributes] = STATE(5141), + [sym_internal_procedures] = STATE(6300), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(190), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(190), + [sym_public_statement] = STATE(190), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(190), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(112), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(112), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(210), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(728), - [aux_sym_preproc_def_token1] = ACTIONS(730), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(738), - [aux_sym_preproc_elif_token1] = ACTIONS(740), - [aux_sym_preproc_elifdef_token1] = ACTIONS(742), - [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(744), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3115), + [sym_intrinsic_type] = STATE(3113), + [sym_derived_type] = STATE(3113), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_procedure_qualifier] = STATE(5141), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6312), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(190), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(616), + [aux_sym_program_repeat1] = STATE(190), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(634), + [aux_sym_preproc_def_token1] = ACTIONS(636), + [aux_sym_preproc_if_token1] = ACTIONS(658), + [aux_sym_preproc_if_token2] = ACTIONS(672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(662), + [sym_preproc_directive] = ACTIONS(644), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(746), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_program_statement_token1] = ACTIONS(23), + [aux_sym_end_program_statement_token1] = ACTIONS(648), + [aux_sym_end_program_statement_token2] = ACTIONS(650), + [aux_sym_module_statement_token1] = ACTIONS(29), + [aux_sym_submodule_statement_token1] = ACTIONS(31), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_subroutine_statement_token1] = ACTIONS(39), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_function_statement_token1] = ACTIONS(43), [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token1] = ACTIONS(47), [aux_sym_procedure_attributes_token3] = ACTIONS(49), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token3] = ACTIONS(57), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(754), - [aux_sym_public_statement_token1] = ACTIONS(756), + [aux_sym_private_statement_token1] = ACTIONS(61), + [aux_sym_public_statement_token1] = ACTIONS(63), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -58518,16 +58271,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(758), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(758), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__intrinsic_type_token1] = ACTIONS(75), + [aux_sym__intrinsic_type_token2] = ACTIONS(77), + [aux_sym__intrinsic_type_token3] = ACTIONS(75), + [aux_sym__intrinsic_type_token4] = ACTIONS(79), + [aux_sym__intrinsic_type_token6] = ACTIONS(77), + [aux_sym__intrinsic_type_token7] = ACTIONS(77), + [aux_sym__intrinsic_type_token8] = ACTIONS(81), + [aux_sym__intrinsic_type_token9] = ACTIONS(77), + [aux_sym__intrinsic_type_token10] = ACTIONS(77), + [aux_sym_derived_type_token1] = ACTIONS(83), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), @@ -58543,8 +58296,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_procedure_qualifier_token1] = ACTIONS(95), + [aux_sym_procedure_qualifier_token2] = ACTIONS(95), + [aux_sym_procedure_qualifier_token3] = ACTIONS(95), + [aux_sym_procedure_qualifier_token4] = ACTIONS(95), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(666), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -58603,124 +58360,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [57] = { - [sym_preproc_include] = STATE(102), - [sym_preproc_def] = STATE(102), - [sym_preproc_function_def] = STATE(102), - [sym_preproc_call] = STATE(102), - [sym_preproc_else_in_specification_part] = STATE(7641), - [sym_preproc_elif_in_specification_part] = STATE(7641), - [sym_preproc_elifdef_in_specification_part] = STATE(7641), - [sym_preproc_if_in_statements] = STATE(218), - [sym_preproc_ifdef_in_statements] = STATE(218), - [sym_preproc_else_in_statements] = STATE(7833), - [sym_preproc_elif_in_statements] = STATE(7833), - [sym_preproc_elifdef_in_statements] = STATE(7833), - [sym_preproc_else_in_procedure_statements] = STATE(8370), - [sym_preproc_elif_in_procedure_statements] = STATE(8370), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8370), - [sym_interface] = STATE(102), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), + [56] = { + [sym_preproc_include] = STATE(113), + [sym_preproc_def] = STATE(113), + [sym_preproc_function_def] = STATE(113), + [sym_preproc_call] = STATE(113), + [sym_preproc_else_in_specification_part] = STATE(8395), + [sym_preproc_elif_in_specification_part] = STATE(8395), + [sym_preproc_elifdef_in_specification_part] = STATE(8395), + [sym_preproc_if_in_statements] = STATE(216), + [sym_preproc_ifdef_in_statements] = STATE(216), + [sym_preproc_else_in_statements] = STATE(7514), + [sym_preproc_elif_in_statements] = STATE(7514), + [sym_preproc_elifdef_in_statements] = STATE(7514), + [sym_preproc_else_in_procedure_statements] = STATE(7801), + [sym_preproc_elif_in_procedure_statements] = STATE(7801), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7801), + [sym_interface] = STATE(113), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), [sym_internal_procedures] = STATE(5457), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(102), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(102), - [sym_public_statement] = STATE(102), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(102), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(113), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(113), + [sym_public_statement] = STATE(113), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(113), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(102), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(102), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(218), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(113), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(113), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(216), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(770), + [aux_sym_preproc_if_token2] = ACTIONS(734), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -58729,7 +58486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token2] = ACTIONS(742), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(772), + [sym_preproc_comment] = ACTIONS(746), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -58787,7 +58544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(768), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -58846,124 +58603,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [58] = { - [sym_preproc_include] = STATE(118), - [sym_preproc_def] = STATE(118), - [sym_preproc_function_def] = STATE(118), - [sym_preproc_call] = STATE(118), - [sym_preproc_else_in_specification_part] = STATE(7974), - [sym_preproc_elif_in_specification_part] = STATE(7974), - [sym_preproc_elifdef_in_specification_part] = STATE(7974), + [57] = { + [sym_preproc_include] = STATE(102), + [sym_preproc_def] = STATE(102), + [sym_preproc_function_def] = STATE(102), + [sym_preproc_call] = STATE(102), + [sym_preproc_else_in_specification_part] = STATE(8142), + [sym_preproc_elif_in_specification_part] = STATE(8142), + [sym_preproc_elifdef_in_specification_part] = STATE(8142), [sym_preproc_if_in_statements] = STATE(222), [sym_preproc_ifdef_in_statements] = STATE(222), - [sym_preproc_else_in_statements] = STATE(7985), - [sym_preproc_elif_in_statements] = STATE(7985), - [sym_preproc_elifdef_in_statements] = STATE(7985), - [sym_preproc_else_in_procedure_statements] = STATE(8231), - [sym_preproc_elif_in_procedure_statements] = STATE(8231), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8231), - [sym_interface] = STATE(118), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5477), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(118), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(118), - [sym_public_statement] = STATE(118), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(118), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_else_in_statements] = STATE(7953), + [sym_preproc_elif_in_statements] = STATE(7953), + [sym_preproc_elifdef_in_statements] = STATE(7953), + [sym_preproc_else_in_procedure_statements] = STATE(7805), + [sym_preproc_elif_in_procedure_statements] = STATE(7805), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7805), + [sym_interface] = STATE(102), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5475), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(102), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(102), + [sym_public_statement] = STATE(102), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(102), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(118), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(118), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(102), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(102), [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(222), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(225), + [aux_sym_preproc_if_token2] = ACTIONS(770), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -58972,7 +58729,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token2] = ACTIONS(742), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(776), + [sym_preproc_comment] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(754), + [aux_sym_public_statement_token1] = ACTIONS(756), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(758), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(758), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(774), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(117), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(183), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [58] = { + [sym_preproc_include] = STATE(116), + [sym_preproc_def] = STATE(116), + [sym_preproc_function_def] = STATE(116), + [sym_preproc_call] = STATE(116), + [sym_preproc_else_in_specification_part] = STATE(7559), + [sym_preproc_elif_in_specification_part] = STATE(7559), + [sym_preproc_elifdef_in_specification_part] = STATE(7559), + [sym_preproc_if_in_statements] = STATE(217), + [sym_preproc_ifdef_in_statements] = STATE(217), + [sym_preproc_else_in_statements] = STATE(7576), + [sym_preproc_elif_in_statements] = STATE(7576), + [sym_preproc_elifdef_in_statements] = STATE(7576), + [sym_preproc_else_in_procedure_statements] = STATE(8173), + [sym_preproc_elif_in_procedure_statements] = STATE(8173), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8173), + [sym_interface] = STATE(116), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5414), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(116), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(116), + [sym_public_statement] = STATE(116), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(116), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(116), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(116), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(217), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(728), + [aux_sym_preproc_def_token1] = ACTIONS(730), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(738), + [aux_sym_preproc_elif_token1] = ACTIONS(740), + [aux_sym_preproc_elifdef_token1] = ACTIONS(742), + [aux_sym_preproc_elifdef_token2] = ACTIONS(742), + [sym_preproc_directive] = ACTIONS(744), + [anon_sym_LPAREN2] = ACTIONS(17), + [sym_preproc_comment] = ACTIONS(776), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -59094,115 +59094,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(93), [sym_preproc_function_def] = STATE(93), [sym_preproc_call] = STATE(93), - [sym_preproc_else_in_specification_part] = STATE(8118), - [sym_preproc_elif_in_specification_part] = STATE(8118), - [sym_preproc_elifdef_in_specification_part] = STATE(8118), - [sym_preproc_if_in_statements] = STATE(221), - [sym_preproc_ifdef_in_statements] = STATE(221), - [sym_preproc_else_in_statements] = STATE(8311), - [sym_preproc_elif_in_statements] = STATE(8311), - [sym_preproc_elifdef_in_statements] = STATE(8311), - [sym_preproc_else_in_procedure_statements] = STATE(8223), - [sym_preproc_elif_in_procedure_statements] = STATE(8223), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8223), + [sym_preproc_else_in_specification_part] = STATE(7767), + [sym_preproc_elif_in_specification_part] = STATE(7767), + [sym_preproc_elifdef_in_specification_part] = STATE(7767), + [sym_preproc_if_in_statements] = STATE(212), + [sym_preproc_ifdef_in_statements] = STATE(212), + [sym_preproc_else_in_statements] = STATE(7570), + [sym_preproc_elif_in_statements] = STATE(7570), + [sym_preproc_elifdef_in_statements] = STATE(7570), + [sym_preproc_else_in_procedure_statements] = STATE(7769), + [sym_preproc_elif_in_procedure_statements] = STATE(7769), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7769), [sym_interface] = STATE(93), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5469), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5489), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(93), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(93), [sym_public_statement] = STATE(93), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(93), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(93), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(93), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(221), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(212), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -59337,115 +59337,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(98), [sym_preproc_function_def] = STATE(98), [sym_preproc_call] = STATE(98), - [sym_preproc_else_in_specification_part] = STATE(8307), - [sym_preproc_elif_in_specification_part] = STATE(8307), - [sym_preproc_elifdef_in_specification_part] = STATE(8307), - [sym_preproc_if_in_statements] = STATE(217), - [sym_preproc_ifdef_in_statements] = STATE(217), - [sym_preproc_else_in_statements] = STATE(7481), - [sym_preproc_elif_in_statements] = STATE(7481), - [sym_preproc_elifdef_in_statements] = STATE(7481), - [sym_preproc_else_in_procedure_statements] = STATE(8096), - [sym_preproc_elif_in_procedure_statements] = STATE(8096), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8096), + [sym_preproc_else_in_specification_part] = STATE(7727), + [sym_preproc_elif_in_specification_part] = STATE(7727), + [sym_preproc_elifdef_in_specification_part] = STATE(7727), + [sym_preproc_if_in_statements] = STATE(223), + [sym_preproc_ifdef_in_statements] = STATE(223), + [sym_preproc_else_in_statements] = STATE(7630), + [sym_preproc_elif_in_statements] = STATE(7630), + [sym_preproc_elifdef_in_statements] = STATE(7630), + [sym_preproc_else_in_procedure_statements] = STATE(8136), + [sym_preproc_elif_in_procedure_statements] = STATE(8136), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8136), [sym_interface] = STATE(98), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5475), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5420), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(98), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(98), [sym_public_statement] = STATE(98), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(98), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(98), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(98), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(217), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(223), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -59575,123 +59575,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [61] = { - [sym_preproc_include] = STATE(104), - [sym_preproc_def] = STATE(104), - [sym_preproc_function_def] = STATE(104), - [sym_preproc_call] = STATE(104), - [sym_preproc_else_in_specification_part] = STATE(8066), - [sym_preproc_elif_in_specification_part] = STATE(8066), - [sym_preproc_elifdef_in_specification_part] = STATE(8066), - [sym_preproc_if_in_statements] = STATE(214), - [sym_preproc_ifdef_in_statements] = STATE(214), - [sym_preproc_else_in_statements] = STATE(7881), - [sym_preproc_elif_in_statements] = STATE(7881), - [sym_preproc_elifdef_in_statements] = STATE(7881), - [sym_preproc_else_in_procedure_statements] = STATE(7905), - [sym_preproc_elif_in_procedure_statements] = STATE(7905), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7905), - [sym_interface] = STATE(104), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5464), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(104), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(104), - [sym_public_statement] = STATE(104), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(104), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(100), + [sym_preproc_def] = STATE(100), + [sym_preproc_function_def] = STATE(100), + [sym_preproc_call] = STATE(100), + [sym_preproc_else_in_specification_part] = STATE(8022), + [sym_preproc_elif_in_specification_part] = STATE(8022), + [sym_preproc_elifdef_in_specification_part] = STATE(8022), + [sym_preproc_if_in_statements] = STATE(221), + [sym_preproc_ifdef_in_statements] = STATE(221), + [sym_preproc_else_in_statements] = STATE(8025), + [sym_preproc_elif_in_statements] = STATE(8025), + [sym_preproc_elifdef_in_statements] = STATE(8025), + [sym_preproc_else_in_procedure_statements] = STATE(8284), + [sym_preproc_elif_in_procedure_statements] = STATE(8284), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8284), + [sym_interface] = STATE(100), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5425), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(100), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(100), + [sym_public_statement] = STATE(100), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(100), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(104), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(104), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(214), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(100), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(100), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(221), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(790), + [aux_sym_preproc_if_token2] = ACTIONS(255), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -59757,7 +59757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(790), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -59817,123 +59817,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [62] = { - [sym_preproc_include] = STATE(107), - [sym_preproc_def] = STATE(107), - [sym_preproc_function_def] = STATE(107), - [sym_preproc_call] = STATE(107), - [sym_preproc_else_in_specification_part] = STATE(8139), - [sym_preproc_elif_in_specification_part] = STATE(8139), - [sym_preproc_elifdef_in_specification_part] = STATE(8139), - [sym_preproc_if_in_statements] = STATE(209), - [sym_preproc_ifdef_in_statements] = STATE(209), - [sym_preproc_else_in_statements] = STATE(7888), - [sym_preproc_elif_in_statements] = STATE(7888), - [sym_preproc_elifdef_in_statements] = STATE(7888), - [sym_preproc_else_in_procedure_statements] = STATE(7606), - [sym_preproc_elif_in_procedure_statements] = STATE(7606), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7606), - [sym_interface] = STATE(107), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5465), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(107), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(107), - [sym_public_statement] = STATE(107), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(107), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(106), + [sym_preproc_def] = STATE(106), + [sym_preproc_function_def] = STATE(106), + [sym_preproc_call] = STATE(106), + [sym_preproc_else_in_specification_part] = STATE(7516), + [sym_preproc_elif_in_specification_part] = STATE(7516), + [sym_preproc_elifdef_in_specification_part] = STATE(7516), + [sym_preproc_if_in_statements] = STATE(220), + [sym_preproc_ifdef_in_statements] = STATE(220), + [sym_preproc_else_in_statements] = STATE(7997), + [sym_preproc_elif_in_statements] = STATE(7997), + [sym_preproc_elifdef_in_statements] = STATE(7997), + [sym_preproc_else_in_procedure_statements] = STATE(7483), + [sym_preproc_elif_in_procedure_statements] = STATE(7483), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7483), + [sym_interface] = STATE(106), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5474), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(106), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(106), + [sym_public_statement] = STATE(106), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(106), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(107), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(107), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(209), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(106), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(106), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(220), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(794), + [aux_sym_preproc_if_token2] = ACTIONS(792), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -59999,7 +59999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(794), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -60063,119 +60063,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(108), [sym_preproc_function_def] = STATE(108), [sym_preproc_call] = STATE(108), - [sym_preproc_else_in_specification_part] = STATE(7471), - [sym_preproc_elif_in_specification_part] = STATE(7471), - [sym_preproc_elifdef_in_specification_part] = STATE(7471), - [sym_preproc_if_in_statements] = STATE(220), - [sym_preproc_ifdef_in_statements] = STATE(220), - [sym_preproc_else_in_statements] = STATE(7921), - [sym_preproc_elif_in_statements] = STATE(7921), - [sym_preproc_elifdef_in_statements] = STATE(7921), - [sym_preproc_else_in_procedure_statements] = STATE(7475), - [sym_preproc_elif_in_procedure_statements] = STATE(7475), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7475), + [sym_preproc_else_in_specification_part] = STATE(7635), + [sym_preproc_elif_in_specification_part] = STATE(7635), + [sym_preproc_elifdef_in_specification_part] = STATE(7635), + [sym_preproc_if_in_statements] = STATE(218), + [sym_preproc_ifdef_in_statements] = STATE(218), + [sym_preproc_else_in_statements] = STATE(8021), + [sym_preproc_elif_in_statements] = STATE(8021), + [sym_preproc_elifdef_in_statements] = STATE(8021), + [sym_preproc_else_in_procedure_statements] = STATE(7929), + [sym_preproc_elif_in_procedure_statements] = STATE(7929), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7929), [sym_interface] = STATE(108), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5470), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5423), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(108), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(108), [sym_public_statement] = STATE(108), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(108), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(108), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(108), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(220), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(218), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(798), + [aux_sym_preproc_if_token2] = ACTIONS(796), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -60241,7 +60241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(798), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -60301,123 +60301,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [64] = { - [sym_preproc_include] = STATE(99), - [sym_preproc_def] = STATE(99), - [sym_preproc_function_def] = STATE(99), - [sym_preproc_call] = STATE(99), - [sym_preproc_else_in_specification_part] = STATE(8155), - [sym_preproc_elif_in_specification_part] = STATE(8155), - [sym_preproc_elifdef_in_specification_part] = STATE(8155), + [sym_preproc_include] = STATE(119), + [sym_preproc_def] = STATE(119), + [sym_preproc_function_def] = STATE(119), + [sym_preproc_call] = STATE(119), + [sym_preproc_else_in_specification_part] = STATE(8035), + [sym_preproc_elif_in_specification_part] = STATE(8035), + [sym_preproc_elifdef_in_specification_part] = STATE(8035), [sym_preproc_if_in_statements] = STATE(213), [sym_preproc_ifdef_in_statements] = STATE(213), - [sym_preproc_else_in_statements] = STATE(7790), - [sym_preproc_elif_in_statements] = STATE(7790), - [sym_preproc_elifdef_in_statements] = STATE(7790), - [sym_preproc_else_in_procedure_statements] = STATE(8367), - [sym_preproc_elif_in_procedure_statements] = STATE(8367), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8367), - [sym_interface] = STATE(99), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5446), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(99), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(99), - [sym_public_statement] = STATE(99), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(99), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_preproc_else_in_procedure_statements] = STATE(8292), + [sym_preproc_elif_in_procedure_statements] = STATE(8292), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8292), + [sym_interface] = STATE(119), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5434), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(119), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(119), + [sym_public_statement] = STATE(119), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(119), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(99), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(99), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(119), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(119), [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(213), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(297), + [aux_sym_preproc_if_token2] = ACTIONS(259), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -60483,7 +60483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(800), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -60543,123 +60543,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [65] = { - [sym_preproc_include] = STATE(119), - [sym_preproc_def] = STATE(119), - [sym_preproc_function_def] = STATE(119), - [sym_preproc_call] = STATE(119), - [sym_preproc_else_in_specification_part] = STATE(7612), - [sym_preproc_elif_in_specification_part] = STATE(7612), - [sym_preproc_elifdef_in_specification_part] = STATE(7612), - [sym_preproc_if_in_statements] = STATE(216), - [sym_preproc_ifdef_in_statements] = STATE(216), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_preproc_else_in_procedure_statements] = STATE(7602), - [sym_preproc_elif_in_procedure_statements] = STATE(7602), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7602), - [sym_interface] = STATE(119), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5447), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(119), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(119), - [sym_public_statement] = STATE(119), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(119), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(104), + [sym_preproc_def] = STATE(104), + [sym_preproc_function_def] = STATE(104), + [sym_preproc_call] = STATE(104), + [sym_preproc_else_in_specification_part] = STATE(7494), + [sym_preproc_elif_in_specification_part] = STATE(7494), + [sym_preproc_elifdef_in_specification_part] = STATE(7494), + [sym_preproc_if_in_statements] = STATE(219), + [sym_preproc_ifdef_in_statements] = STATE(219), + [sym_preproc_else_in_statements] = STATE(7996), + [sym_preproc_elif_in_statements] = STATE(7996), + [sym_preproc_elifdef_in_statements] = STATE(7996), + [sym_preproc_else_in_procedure_statements] = STATE(7475), + [sym_preproc_elif_in_procedure_statements] = STATE(7475), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7475), + [sym_interface] = STATE(104), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5418), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(104), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(104), + [sym_public_statement] = STATE(104), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(104), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(119), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(119), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(216), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(104), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(104), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(219), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_if_token2] = ACTIONS(802), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -60785,123 +60785,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [66] = { - [sym_preproc_include] = STATE(111), - [sym_preproc_def] = STATE(111), - [sym_preproc_function_def] = STATE(111), - [sym_preproc_call] = STATE(111), - [sym_preproc_else_in_specification_part] = STATE(8105), - [sym_preproc_elif_in_specification_part] = STATE(8105), - [sym_preproc_elifdef_in_specification_part] = STATE(8105), - [sym_preproc_if_in_statements] = STATE(215), - [sym_preproc_ifdef_in_statements] = STATE(215), - [sym_preproc_else_in_statements] = STATE(8107), - [sym_preproc_elif_in_statements] = STATE(8107), - [sym_preproc_elifdef_in_statements] = STATE(8107), - [sym_preproc_else_in_procedure_statements] = STATE(7968), - [sym_preproc_elif_in_procedure_statements] = STATE(7968), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7968), - [sym_interface] = STATE(111), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5466), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(111), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(111), - [sym_public_statement] = STATE(111), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(111), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(112), + [sym_preproc_def] = STATE(112), + [sym_preproc_function_def] = STATE(112), + [sym_preproc_call] = STATE(112), + [sym_preproc_else_in_specification_part] = STATE(7654), + [sym_preproc_elif_in_specification_part] = STATE(7654), + [sym_preproc_elifdef_in_specification_part] = STATE(7654), + [sym_preproc_if_in_statements] = STATE(209), + [sym_preproc_ifdef_in_statements] = STATE(209), + [sym_preproc_else_in_statements] = STATE(7794), + [sym_preproc_elif_in_statements] = STATE(7794), + [sym_preproc_elifdef_in_statements] = STATE(7794), + [sym_preproc_else_in_procedure_statements] = STATE(7526), + [sym_preproc_elif_in_procedure_statements] = STATE(7526), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7526), + [sym_interface] = STATE(112), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5484), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(112), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(112), + [sym_public_statement] = STATE(112), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(112), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(111), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(111), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(215), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(112), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(112), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(209), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(259), + [aux_sym_preproc_if_token2] = ACTIONS(265), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -61027,119 +61027,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [67] = { - [sym_preproc_include] = STATE(116), - [sym_preproc_def] = STATE(116), - [sym_preproc_function_def] = STATE(116), - [sym_preproc_call] = STATE(116), - [sym_preproc_else_in_specification_part] = STATE(8168), - [sym_preproc_elif_in_specification_part] = STATE(8168), - [sym_preproc_elifdef_in_specification_part] = STATE(8168), - [sym_preproc_if_in_statements] = STATE(212), - [sym_preproc_ifdef_in_statements] = STATE(212), - [sym_preproc_else_in_statements] = STATE(7528), - [sym_preproc_elif_in_statements] = STATE(7528), - [sym_preproc_elifdef_in_statements] = STATE(7528), - [sym_preproc_else_in_procedure_statements] = STATE(8178), - [sym_preproc_elif_in_procedure_statements] = STATE(8178), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8178), - [sym_interface] = STATE(116), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5436), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(116), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(116), - [sym_public_statement] = STATE(116), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(116), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(117), + [sym_preproc_def] = STATE(117), + [sym_preproc_function_def] = STATE(117), + [sym_preproc_call] = STATE(117), + [sym_preproc_else_in_specification_part] = STATE(7903), + [sym_preproc_elif_in_specification_part] = STATE(7903), + [sym_preproc_elifdef_in_specification_part] = STATE(7903), + [sym_preproc_if_in_statements] = STATE(215), + [sym_preproc_ifdef_in_statements] = STATE(215), + [sym_preproc_else_in_statements] = STATE(7529), + [sym_preproc_elif_in_statements] = STATE(7529), + [sym_preproc_elifdef_in_statements] = STATE(7529), + [sym_preproc_else_in_procedure_statements] = STATE(8116), + [sym_preproc_elif_in_procedure_statements] = STATE(8116), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8116), + [sym_interface] = STATE(117), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5481), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(117), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(117), + [sym_public_statement] = STATE(117), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(117), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(116), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(116), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(212), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(117), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(117), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(215), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -61269,119 +61269,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [68] = { - [sym_preproc_include] = STATE(94), - [sym_preproc_def] = STATE(94), - [sym_preproc_function_def] = STATE(94), - [sym_preproc_call] = STATE(94), - [sym_preproc_else_in_specification_part] = STATE(8227), - [sym_preproc_elif_in_specification_part] = STATE(8227), - [sym_preproc_elifdef_in_specification_part] = STATE(8227), - [sym_preproc_if_in_statements] = STATE(219), - [sym_preproc_ifdef_in_statements] = STATE(219), - [sym_preproc_else_in_statements] = STATE(7460), - [sym_preproc_elif_in_statements] = STATE(7460), - [sym_preproc_elifdef_in_statements] = STATE(7460), - [sym_preproc_else_in_procedure_statements] = STATE(8092), - [sym_preproc_elif_in_procedure_statements] = STATE(8092), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8092), - [sym_interface] = STATE(94), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5423), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(94), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(94), - [sym_public_statement] = STATE(94), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(94), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(95), + [sym_preproc_def] = STATE(95), + [sym_preproc_function_def] = STATE(95), + [sym_preproc_call] = STATE(95), + [sym_preproc_else_in_specification_part] = STATE(8123), + [sym_preproc_elif_in_specification_part] = STATE(8123), + [sym_preproc_elifdef_in_specification_part] = STATE(8123), + [sym_preproc_if_in_statements] = STATE(211), + [sym_preproc_ifdef_in_statements] = STATE(211), + [sym_preproc_else_in_statements] = STATE(7602), + [sym_preproc_elif_in_statements] = STATE(7602), + [sym_preproc_elifdef_in_statements] = STATE(7602), + [sym_preproc_else_in_procedure_statements] = STATE(8077), + [sym_preproc_elif_in_procedure_statements] = STATE(8077), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8077), + [sym_interface] = STATE(95), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5479), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(95), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(95), + [sym_public_statement] = STATE(95), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(95), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(94), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(94), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(219), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(95), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(95), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(211), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -61511,365 +61511,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [69] = { - [sym_preproc_include] = STATE(113), - [sym_preproc_def] = STATE(113), - [sym_preproc_function_def] = STATE(113), - [sym_preproc_call] = STATE(113), - [sym_preproc_else_in_specification_part] = STATE(8083), - [sym_preproc_elif_in_specification_part] = STATE(8083), - [sym_preproc_elifdef_in_specification_part] = STATE(8083), - [sym_preproc_if_in_statements] = STATE(224), - [sym_preproc_ifdef_in_statements] = STATE(224), - [sym_preproc_else_in_statements] = STATE(7520), - [sym_preproc_elif_in_statements] = STATE(7520), - [sym_preproc_elifdef_in_statements] = STATE(7520), - [sym_preproc_else_in_procedure_statements] = STATE(7780), - [sym_preproc_elif_in_procedure_statements] = STATE(7780), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7780), - [sym_interface] = STATE(113), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5431), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(113), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(113), - [sym_public_statement] = STATE(113), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(113), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(113), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(113), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(224), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(728), - [aux_sym_preproc_def_token1] = ACTIONS(730), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(816), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(738), - [aux_sym_preproc_elif_token1] = ACTIONS(740), - [aux_sym_preproc_elifdef_token1] = ACTIONS(742), - [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(744), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(754), - [aux_sym_public_statement_token1] = ACTIONS(756), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(758), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(758), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(818), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(117), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(183), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [70] = { [sym_preproc_include] = STATE(114), [sym_preproc_def] = STATE(114), [sym_preproc_function_def] = STATE(114), [sym_preproc_call] = STATE(114), - [sym_preproc_else_in_specification_part] = STATE(8113), - [sym_preproc_elif_in_specification_part] = STATE(8113), - [sym_preproc_elifdef_in_specification_part] = STATE(8113), - [sym_preproc_if_in_statements] = STATE(211), - [sym_preproc_ifdef_in_statements] = STATE(211), + [sym_preproc_else_in_specification_part] = STATE(7551), + [sym_preproc_elif_in_specification_part] = STATE(7551), + [sym_preproc_elifdef_in_specification_part] = STATE(7551), + [sym_preproc_if_in_statements] = STATE(210), + [sym_preproc_ifdef_in_statements] = STATE(210), [sym_preproc_else_in_statements] = STATE(7521), [sym_preproc_elif_in_statements] = STATE(7521), [sym_preproc_elifdef_in_statements] = STATE(7521), - [sym_preproc_else_in_procedure_statements] = STATE(7868), - [sym_preproc_elif_in_procedure_statements] = STATE(7868), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7868), + [sym_preproc_else_in_procedure_statements] = STATE(7940), + [sym_preproc_elif_in_procedure_statements] = STATE(7940), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7940), [sym_interface] = STATE(114), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5433), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5442), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(114), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(114), [sym_public_statement] = STATE(114), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(114), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(114), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(114), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(211), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(210), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(820), + [aux_sym_preproc_if_token2] = ACTIONS(816), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -61935,7 +61693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(818), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -61994,124 +61752,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [71] = { - [sym_preproc_include] = STATE(95), - [sym_preproc_def] = STATE(95), - [sym_preproc_function_def] = STATE(95), - [sym_preproc_call] = STATE(95), - [sym_preproc_else_in_specification_part] = STATE(8240), - [sym_preproc_elif_in_specification_part] = STATE(8240), - [sym_preproc_elifdef_in_specification_part] = STATE(8240), - [sym_preproc_if_in_statements] = STATE(223), - [sym_preproc_ifdef_in_statements] = STATE(223), - [sym_preproc_else_in_statements] = STATE(7463), - [sym_preproc_elif_in_statements] = STATE(7463), - [sym_preproc_elifdef_in_statements] = STATE(7463), - [sym_preproc_else_in_procedure_statements] = STATE(8366), - [sym_preproc_elif_in_procedure_statements] = STATE(8366), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8366), - [sym_interface] = STATE(95), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5435), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(95), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(95), - [sym_public_statement] = STATE(95), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(95), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [70] = { + [sym_preproc_include] = STATE(115), + [sym_preproc_def] = STATE(115), + [sym_preproc_function_def] = STATE(115), + [sym_preproc_call] = STATE(115), + [sym_preproc_else_in_specification_part] = STATE(7647), + [sym_preproc_elif_in_specification_part] = STATE(7647), + [sym_preproc_elifdef_in_specification_part] = STATE(7647), + [sym_preproc_if_in_statements] = STATE(214), + [sym_preproc_ifdef_in_statements] = STATE(214), + [sym_preproc_else_in_statements] = STATE(7522), + [sym_preproc_elif_in_statements] = STATE(7522), + [sym_preproc_elifdef_in_statements] = STATE(7522), + [sym_preproc_else_in_procedure_statements] = STATE(7948), + [sym_preproc_elif_in_procedure_statements] = STATE(7948), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7948), + [sym_interface] = STATE(115), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5444), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(115), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(115), + [sym_public_statement] = STATE(115), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(115), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(95), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(95), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(223), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(115), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(115), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(214), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(824), + [aux_sym_preproc_if_token2] = ACTIONS(820), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), @@ -62177,7 +61935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(822), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -62236,130 +61994,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [72] = { - [sym_preproc_include] = STATE(118), - [sym_preproc_def] = STATE(118), - [sym_preproc_function_def] = STATE(118), - [sym_preproc_call] = STATE(118), - [sym_preproc_else_in_specification_part] = STATE(7974), - [sym_preproc_elif_in_specification_part] = STATE(7974), - [sym_preproc_elifdef_in_specification_part] = STATE(7974), - [sym_preproc_if_in_statements] = STATE(271), - [sym_preproc_ifdef_in_statements] = STATE(271), - [sym_preproc_else_in_statements] = STATE(7985), - [sym_preproc_elif_in_statements] = STATE(7985), - [sym_preproc_elifdef_in_statements] = STATE(7985), - [sym_interface] = STATE(118), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5545), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(118), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(118), - [sym_public_statement] = STATE(118), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(118), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [71] = { + [sym_preproc_include] = STATE(94), + [sym_preproc_def] = STATE(94), + [sym_preproc_function_def] = STATE(94), + [sym_preproc_call] = STATE(94), + [sym_preproc_else_in_specification_part] = STATE(7960), + [sym_preproc_elif_in_specification_part] = STATE(7960), + [sym_preproc_elifdef_in_specification_part] = STATE(7960), + [sym_preproc_if_in_statements] = STATE(224), + [sym_preproc_ifdef_in_statements] = STATE(224), + [sym_preproc_else_in_statements] = STATE(7598), + [sym_preproc_elif_in_statements] = STATE(7598), + [sym_preproc_elifdef_in_statements] = STATE(7598), + [sym_preproc_else_in_procedure_statements] = STATE(8164), + [sym_preproc_elif_in_procedure_statements] = STATE(8164), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8164), + [sym_interface] = STATE(94), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5480), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(94), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(94), + [sym_public_statement] = STATE(94), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(94), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(118), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(118), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(271), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(94), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(94), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(224), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(225), + [aux_sym_preproc_if_token2] = ACTIONS(824), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), + [aux_sym_preproc_else_token1] = ACTIONS(738), + [aux_sym_preproc_elif_token1] = ACTIONS(740), + [aux_sym_preproc_elifdef_token1] = ACTIONS(742), + [aux_sym_preproc_elifdef_token2] = ACTIONS(742), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(834), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -62417,7 +62177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(826), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -62476,130 +62236,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [73] = { - [sym_preproc_include] = STATE(101), - [sym_preproc_def] = STATE(101), - [sym_preproc_function_def] = STATE(101), - [sym_preproc_call] = STATE(101), - [sym_preproc_else_in_specification_part] = STATE(8394), - [sym_preproc_elif_in_specification_part] = STATE(8394), - [sym_preproc_elifdef_in_specification_part] = STATE(8394), - [sym_preproc_if_in_statements] = STATE(277), - [sym_preproc_ifdef_in_statements] = STATE(277), - [sym_preproc_else_in_statements] = STATE(7979), - [sym_preproc_elif_in_statements] = STATE(7979), - [sym_preproc_elifdef_in_statements] = STATE(7979), - [sym_interface] = STATE(101), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5535), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(101), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(101), - [sym_public_statement] = STATE(101), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(101), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [72] = { + [sym_preproc_include] = STATE(111), + [sym_preproc_def] = STATE(111), + [sym_preproc_function_def] = STATE(111), + [sym_preproc_call] = STATE(111), + [sym_preproc_else_in_specification_part] = STATE(8293), + [sym_preproc_elif_in_specification_part] = STATE(8293), + [sym_preproc_elifdef_in_specification_part] = STATE(8293), + [sym_preproc_if_in_statements] = STATE(253), + [sym_preproc_ifdef_in_statements] = STATE(253), + [sym_preproc_else_in_statements] = STATE(8332), + [sym_preproc_elif_in_statements] = STATE(8332), + [sym_preproc_elifdef_in_statements] = STATE(8332), + [sym_interface] = STATE(111), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5536), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(111), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(111), + [sym_public_statement] = STATE(111), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(111), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(101), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(101), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(277), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(111), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(111), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(253), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(838), + [aux_sym_preproc_if_token2] = ACTIONS(828), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(840), + [sym_preproc_comment] = ACTIONS(836), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -62657,7 +62417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(838), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -62716,129 +62476,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [74] = { - [sym_preproc_include] = STATE(85), - [sym_preproc_def] = STATE(85), - [sym_preproc_function_def] = STATE(85), - [sym_preproc_call] = STATE(85), - [sym_preproc_else_in_specification_part] = STATE(7672), - [sym_preproc_elif_in_specification_part] = STATE(7672), - [sym_preproc_elifdef_in_specification_part] = STATE(7672), - [sym_preproc_if_in_statements] = STATE(247), - [sym_preproc_ifdef_in_statements] = STATE(247), - [sym_preproc_else_in_statements] = STATE(7777), - [sym_preproc_elif_in_statements] = STATE(7777), - [sym_preproc_elifdef_in_statements] = STATE(7777), - [sym_interface] = STATE(85), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5540), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(85), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(85), - [sym_public_statement] = STATE(85), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(85), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [73] = { + [sym_preproc_include] = STATE(116), + [sym_preproc_def] = STATE(116), + [sym_preproc_function_def] = STATE(116), + [sym_preproc_call] = STATE(116), + [sym_preproc_else_in_specification_part] = STATE(7559), + [sym_preproc_elif_in_specification_part] = STATE(7559), + [sym_preproc_elifdef_in_specification_part] = STATE(7559), + [sym_preproc_if_in_statements] = STATE(250), + [sym_preproc_ifdef_in_statements] = STATE(250), + [sym_preproc_else_in_statements] = STATE(7576), + [sym_preproc_elif_in_statements] = STATE(7576), + [sym_preproc_elifdef_in_statements] = STATE(7576), + [sym_interface] = STATE(116), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5534), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(116), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(116), + [sym_public_statement] = STATE(116), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(116), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(85), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(85), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(247), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(116), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(116), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(250), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(844), + [aux_sym_preproc_if_token2] = ACTIONS(221), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), + [sym_preproc_comment] = ACTIONS(840), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -62896,7 +62657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(842), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -62955,127 +62716,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [75] = { - [sym_preproc_include] = STATE(111), - [sym_preproc_def] = STATE(111), - [sym_preproc_function_def] = STATE(111), - [sym_preproc_call] = STATE(111), - [sym_preproc_else_in_specification_part] = STATE(8105), - [sym_preproc_elif_in_specification_part] = STATE(8105), - [sym_preproc_elifdef_in_specification_part] = STATE(8105), - [sym_preproc_if_in_statements] = STATE(254), - [sym_preproc_ifdef_in_statements] = STATE(254), - [sym_preproc_else_in_statements] = STATE(8107), - [sym_preproc_elif_in_statements] = STATE(8107), - [sym_preproc_elifdef_in_statements] = STATE(8107), - [sym_interface] = STATE(111), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5543), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(111), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(111), - [sym_public_statement] = STATE(111), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(111), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [74] = { + [sym_preproc_include] = STATE(85), + [sym_preproc_def] = STATE(85), + [sym_preproc_function_def] = STATE(85), + [sym_preproc_call] = STATE(85), + [sym_preproc_else_in_specification_part] = STATE(7965), + [sym_preproc_elif_in_specification_part] = STATE(7965), + [sym_preproc_elifdef_in_specification_part] = STATE(7965), + [sym_preproc_if_in_statements] = STATE(271), + [sym_preproc_ifdef_in_statements] = STATE(271), + [sym_preproc_else_in_statements] = STATE(7969), + [sym_preproc_elif_in_statements] = STATE(7969), + [sym_preproc_elifdef_in_statements] = STATE(7969), + [sym_interface] = STATE(85), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5577), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(85), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(85), + [sym_public_statement] = STATE(85), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(85), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(111), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(111), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(254), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(85), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(85), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(271), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(259), + [aux_sym_preproc_if_token2] = ACTIONS(844), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -63135,7 +62896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(846), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -63194,127 +62955,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [76] = { - [sym_preproc_include] = STATE(103), - [sym_preproc_def] = STATE(103), - [sym_preproc_function_def] = STATE(103), - [sym_preproc_call] = STATE(103), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(248), - [sym_preproc_ifdef_in_statements] = STATE(248), - [sym_preproc_else_in_statements] = STATE(7473), - [sym_preproc_elif_in_statements] = STATE(7473), - [sym_preproc_elifdef_in_statements] = STATE(7473), - [sym_interface] = STATE(103), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5550), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(103), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(103), - [sym_public_statement] = STATE(103), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(103), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [75] = { + [sym_preproc_include] = STATE(86), + [sym_preproc_def] = STATE(86), + [sym_preproc_function_def] = STATE(86), + [sym_preproc_call] = STATE(86), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(272), + [sym_preproc_ifdef_in_statements] = STATE(272), + [sym_preproc_else_in_statements] = STATE(7565), + [sym_preproc_elif_in_statements] = STATE(7565), + [sym_preproc_elifdef_in_statements] = STATE(7565), + [sym_interface] = STATE(86), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5544), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(86), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(86), + [sym_public_statement] = STATE(86), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(86), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(103), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(103), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(248), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(86), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(86), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(272), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(850), + [aux_sym_preproc_if_token2] = ACTIONS(848), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -63374,7 +63135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(850), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -63433,127 +63194,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [77] = { - [sym_preproc_include] = STATE(88), - [sym_preproc_def] = STATE(88), - [sym_preproc_function_def] = STATE(88), - [sym_preproc_call] = STATE(88), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(257), - [sym_preproc_ifdef_in_statements] = STATE(257), - [sym_preproc_else_in_statements] = STATE(7509), - [sym_preproc_elif_in_statements] = STATE(7509), - [sym_preproc_elifdef_in_statements] = STATE(7509), - [sym_interface] = STATE(88), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5541), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(88), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(88), - [sym_public_statement] = STATE(88), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(88), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [76] = { + [sym_preproc_include] = STATE(112), + [sym_preproc_def] = STATE(112), + [sym_preproc_function_def] = STATE(112), + [sym_preproc_call] = STATE(112), + [sym_preproc_else_in_specification_part] = STATE(7654), + [sym_preproc_elif_in_specification_part] = STATE(7654), + [sym_preproc_elifdef_in_specification_part] = STATE(7654), + [sym_preproc_if_in_statements] = STATE(270), + [sym_preproc_ifdef_in_statements] = STATE(270), + [sym_preproc_else_in_statements] = STATE(7794), + [sym_preproc_elif_in_statements] = STATE(7794), + [sym_preproc_elifdef_in_statements] = STATE(7794), + [sym_interface] = STATE(112), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5564), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(112), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(112), + [sym_public_statement] = STATE(112), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(112), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(88), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(88), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(257), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(112), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(112), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(270), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(854), + [aux_sym_preproc_if_token2] = ACTIONS(265), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -63613,7 +63374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(852), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -63672,127 +63433,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [78] = { - [sym_preproc_include] = STATE(99), - [sym_preproc_def] = STATE(99), - [sym_preproc_function_def] = STATE(99), - [sym_preproc_call] = STATE(99), - [sym_preproc_else_in_specification_part] = STATE(8155), - [sym_preproc_elif_in_specification_part] = STATE(8155), - [sym_preproc_elifdef_in_specification_part] = STATE(8155), - [sym_preproc_if_in_statements] = STATE(266), - [sym_preproc_ifdef_in_statements] = STATE(266), - [sym_preproc_else_in_statements] = STATE(7790), - [sym_preproc_elif_in_statements] = STATE(7790), - [sym_preproc_elifdef_in_statements] = STATE(7790), - [sym_interface] = STATE(99), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5522), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(99), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(99), - [sym_public_statement] = STATE(99), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(99), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [77] = { + [sym_preproc_include] = STATE(119), + [sym_preproc_def] = STATE(119), + [sym_preproc_function_def] = STATE(119), + [sym_preproc_call] = STATE(119), + [sym_preproc_else_in_specification_part] = STATE(8035), + [sym_preproc_elif_in_specification_part] = STATE(8035), + [sym_preproc_elifdef_in_specification_part] = STATE(8035), + [sym_preproc_if_in_statements] = STATE(258), + [sym_preproc_ifdef_in_statements] = STATE(258), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_interface] = STATE(119), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5559), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(119), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(119), + [sym_public_statement] = STATE(119), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(119), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(99), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(99), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(266), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(119), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(119), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(258), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(297), + [aux_sym_preproc_if_token2] = ACTIONS(259), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -63852,7 +63613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(854), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -63911,127 +63672,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [79] = { - [sym_preproc_include] = STATE(119), - [sym_preproc_def] = STATE(119), - [sym_preproc_function_def] = STATE(119), - [sym_preproc_call] = STATE(119), - [sym_preproc_else_in_specification_part] = STATE(7612), - [sym_preproc_elif_in_specification_part] = STATE(7612), - [sym_preproc_elifdef_in_specification_part] = STATE(7612), - [sym_preproc_if_in_statements] = STATE(267), - [sym_preproc_ifdef_in_statements] = STATE(267), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_interface] = STATE(119), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5520), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(119), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(119), - [sym_public_statement] = STATE(119), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(119), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [78] = { + [sym_preproc_include] = STATE(103), + [sym_preproc_def] = STATE(103), + [sym_preproc_function_def] = STATE(103), + [sym_preproc_call] = STATE(103), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(246), + [sym_preproc_ifdef_in_statements] = STATE(246), + [sym_preproc_else_in_statements] = STATE(7606), + [sym_preproc_elif_in_statements] = STATE(7606), + [sym_preproc_elifdef_in_statements] = STATE(7606), + [sym_interface] = STATE(103), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5563), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(103), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(103), + [sym_public_statement] = STATE(103), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(103), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(119), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(119), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(267), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(103), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(103), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(246), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_if_token2] = ACTIONS(856), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -64091,7 +63852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(858), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -64150,127 +63911,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [80] = { - [sym_preproc_include] = STATE(118), - [sym_preproc_def] = STATE(118), - [sym_preproc_function_def] = STATE(118), - [sym_preproc_call] = STATE(118), - [sym_preproc_else_in_specification_part] = STATE(7974), - [sym_preproc_elif_in_specification_part] = STATE(7974), - [sym_preproc_elifdef_in_specification_part] = STATE(7974), - [sym_preproc_if_in_statements] = STATE(303), - [sym_preproc_ifdef_in_statements] = STATE(303), - [sym_interface] = STATE(118), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5762), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(118), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(118), - [sym_public_statement] = STATE(118), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(118), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [79] = { + [sym_preproc_include] = STATE(100), + [sym_preproc_def] = STATE(100), + [sym_preproc_function_def] = STATE(100), + [sym_preproc_call] = STATE(100), + [sym_preproc_else_in_specification_part] = STATE(8022), + [sym_preproc_elif_in_specification_part] = STATE(8022), + [sym_preproc_elifdef_in_specification_part] = STATE(8022), + [sym_preproc_if_in_statements] = STATE(257), + [sym_preproc_ifdef_in_statements] = STATE(257), + [sym_preproc_else_in_statements] = STATE(8025), + [sym_preproc_elif_in_statements] = STATE(8025), + [sym_preproc_elifdef_in_statements] = STATE(8025), + [sym_interface] = STATE(100), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5532), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(100), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(100), + [sym_public_statement] = STATE(100), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(100), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(118), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(118), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(303), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(100), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(100), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(257), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(225), + [aux_sym_preproc_if_token2] = ACTIONS(255), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(868), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -64328,7 +64091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(860), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -64387,124 +64150,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [81] = { + [80] = { [sym_preproc_include] = STATE(93), [sym_preproc_def] = STATE(93), [sym_preproc_function_def] = STATE(93), [sym_preproc_call] = STATE(93), - [sym_preproc_else_in_specification_part] = STATE(8118), - [sym_preproc_elif_in_specification_part] = STATE(8118), - [sym_preproc_elifdef_in_specification_part] = STATE(8118), - [sym_preproc_if_in_statements] = STATE(318), - [sym_preproc_ifdef_in_statements] = STATE(318), + [sym_preproc_else_in_specification_part] = STATE(7767), + [sym_preproc_elif_in_specification_part] = STATE(7767), + [sym_preproc_elifdef_in_specification_part] = STATE(7767), + [sym_preproc_if_in_statements] = STATE(393), + [sym_preproc_ifdef_in_statements] = STATE(393), [sym_interface] = STATE(93), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5682), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5622), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(93), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(93), [sym_public_statement] = STATE(93), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(93), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(93), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(93), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(318), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(393), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(728), + [aux_sym_preproc_def_token1] = ACTIONS(730), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(744), + [anon_sym_LPAREN2] = ACTIONS(17), + [sym_preproc_comment] = ACTIONS(870), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(754), + [aux_sym_public_statement_token1] = ACTIONS(756), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(758), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(758), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(872), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(117), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(183), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [81] = { + [sym_preproc_include] = STATE(116), + [sym_preproc_def] = STATE(116), + [sym_preproc_function_def] = STATE(116), + [sym_preproc_call] = STATE(116), + [sym_preproc_else_in_specification_part] = STATE(7559), + [sym_preproc_elif_in_specification_part] = STATE(7559), + [sym_preproc_elifdef_in_specification_part] = STATE(7559), + [sym_preproc_if_in_statements] = STATE(312), + [sym_preproc_ifdef_in_statements] = STATE(312), + [sym_interface] = STATE(116), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5826), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(116), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(116), + [sym_public_statement] = STATE(116), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(116), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(116), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(116), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(312), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(872), + [aux_sym_preproc_if_token2] = ACTIONS(221), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [sym_preproc_comment] = ACTIONS(874), @@ -64625,123 +64625,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [82] = { - [sym_preproc_include] = STATE(112), - [sym_preproc_def] = STATE(112), - [sym_preproc_function_def] = STATE(112), - [sym_preproc_call] = STATE(112), - [sym_preproc_else_in_specification_part] = STATE(8013), - [sym_preproc_elif_in_specification_part] = STATE(8013), - [sym_preproc_elifdef_in_specification_part] = STATE(8013), - [sym_preproc_if_in_statements] = STATE(322), - [sym_preproc_ifdef_in_statements] = STATE(322), - [sym_interface] = STATE(112), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5829), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(112), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(112), - [sym_public_statement] = STATE(112), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(112), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(113), + [sym_preproc_def] = STATE(113), + [sym_preproc_function_def] = STATE(113), + [sym_preproc_call] = STATE(113), + [sym_preproc_else_in_specification_part] = STATE(8395), + [sym_preproc_elif_in_specification_part] = STATE(8395), + [sym_preproc_elifdef_in_specification_part] = STATE(8395), + [sym_preproc_if_in_statements] = STATE(368), + [sym_preproc_ifdef_in_statements] = STATE(368), + [sym_interface] = STATE(113), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5811), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(113), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(113), + [sym_public_statement] = STATE(113), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(113), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(112), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(112), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(322), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(113), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(113), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(368), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(878), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [sym_preproc_comment] = ACTIONS(880), @@ -64862,123 +64862,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [83] = { - [sym_preproc_include] = STATE(101), - [sym_preproc_def] = STATE(101), - [sym_preproc_function_def] = STATE(101), - [sym_preproc_call] = STATE(101), - [sym_preproc_else_in_specification_part] = STATE(8394), - [sym_preproc_elif_in_specification_part] = STATE(8394), - [sym_preproc_elifdef_in_specification_part] = STATE(8394), - [sym_preproc_if_in_statements] = STATE(393), - [sym_preproc_ifdef_in_statements] = STATE(393), - [sym_interface] = STATE(101), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5760), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(101), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(101), - [sym_public_statement] = STATE(101), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(101), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(111), + [sym_preproc_def] = STATE(111), + [sym_preproc_function_def] = STATE(111), + [sym_preproc_call] = STATE(111), + [sym_preproc_else_in_specification_part] = STATE(8293), + [sym_preproc_elif_in_specification_part] = STATE(8293), + [sym_preproc_elifdef_in_specification_part] = STATE(8293), + [sym_preproc_if_in_statements] = STATE(412), + [sym_preproc_ifdef_in_statements] = STATE(412), + [sym_interface] = STATE(111), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5809), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(111), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(111), + [sym_public_statement] = STATE(111), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(111), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(101), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(101), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(393), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(111), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(111), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(412), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(884), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [sym_preproc_comment] = ACTIONS(886), @@ -65103,119 +65103,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(102), [sym_preproc_function_def] = STATE(102), [sym_preproc_call] = STATE(102), - [sym_preproc_else_in_specification_part] = STATE(7641), - [sym_preproc_elif_in_specification_part] = STATE(7641), - [sym_preproc_elifdef_in_specification_part] = STATE(7641), - [sym_preproc_if_in_statements] = STATE(320), - [sym_preproc_ifdef_in_statements] = STATE(320), + [sym_preproc_else_in_specification_part] = STATE(8142), + [sym_preproc_elif_in_specification_part] = STATE(8142), + [sym_preproc_elifdef_in_specification_part] = STATE(8142), + [sym_preproc_if_in_statements] = STATE(386), + [sym_preproc_ifdef_in_statements] = STATE(386), [sym_interface] = STATE(102), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5726), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5709), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(102), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(102), [sym_public_statement] = STATE(102), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(102), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(102), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(102), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(320), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(386), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(890), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [sym_preproc_comment] = ACTIONS(892), @@ -65340,119 +65340,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(338), - [sym_preproc_ifdef_in_statements] = STATE(338), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(442), + [sym_preproc_ifdef_in_statements] = STATE(442), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5713), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5629), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(338), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(442), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(896), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -65572,123 +65572,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [86] = { - [sym_preproc_include] = STATE(95), - [sym_preproc_def] = STATE(95), - [sym_preproc_function_def] = STATE(95), - [sym_preproc_call] = STATE(95), - [sym_preproc_else_in_specification_part] = STATE(8240), - [sym_preproc_elif_in_specification_part] = STATE(8240), - [sym_preproc_elifdef_in_specification_part] = STATE(8240), - [sym_preproc_if_in_statements] = STATE(324), - [sym_preproc_ifdef_in_statements] = STATE(324), - [sym_interface] = STATE(95), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5619), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(95), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(95), - [sym_public_statement] = STATE(95), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(95), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(761), + [sym_preproc_def] = STATE(761), + [sym_preproc_function_def] = STATE(761), + [sym_preproc_call] = STATE(761), + [sym_preproc_else_in_specification_part] = STATE(8161), + [sym_preproc_elif_in_specification_part] = STATE(8161), + [sym_preproc_elifdef_in_specification_part] = STATE(8161), + [sym_preproc_if_in_statements] = STATE(318), + [sym_preproc_ifdef_in_statements] = STATE(318), + [sym_interface] = STATE(761), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5648), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(761), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(761), + [sym_public_statement] = STATE(761), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(761), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(95), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(95), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(324), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(761), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(761), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(318), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(900), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -65808,123 +65808,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [87] = { - [sym_preproc_include] = STATE(98), - [sym_preproc_def] = STATE(98), - [sym_preproc_function_def] = STATE(98), - [sym_preproc_call] = STATE(98), - [sym_preproc_else_in_specification_part] = STATE(8307), - [sym_preproc_elif_in_specification_part] = STATE(8307), - [sym_preproc_elifdef_in_specification_part] = STATE(8307), - [sym_preproc_if_in_statements] = STATE(328), - [sym_preproc_ifdef_in_statements] = STATE(328), - [sym_interface] = STATE(98), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5636), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(98), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(98), - [sym_public_statement] = STATE(98), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(98), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(95), + [sym_preproc_def] = STATE(95), + [sym_preproc_function_def] = STATE(95), + [sym_preproc_call] = STATE(95), + [sym_preproc_else_in_specification_part] = STATE(8123), + [sym_preproc_elif_in_specification_part] = STATE(8123), + [sym_preproc_elifdef_in_specification_part] = STATE(8123), + [sym_preproc_if_in_statements] = STATE(303), + [sym_preproc_ifdef_in_statements] = STATE(303), + [sym_interface] = STATE(95), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5620), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(95), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(95), + [sym_public_statement] = STATE(95), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(95), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(98), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(98), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(328), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(95), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(95), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(303), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(904), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -66044,123 +66044,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [88] = { - [sym_preproc_include] = STATE(761), - [sym_preproc_def] = STATE(761), - [sym_preproc_function_def] = STATE(761), - [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8126), - [sym_preproc_elif_in_specification_part] = STATE(8126), - [sym_preproc_elifdef_in_specification_part] = STATE(8126), - [sym_preproc_if_in_statements] = STATE(343), - [sym_preproc_ifdef_in_statements] = STATE(343), - [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5781), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(761), - [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(98), + [sym_preproc_def] = STATE(98), + [sym_preproc_function_def] = STATE(98), + [sym_preproc_call] = STATE(98), + [sym_preproc_else_in_specification_part] = STATE(7727), + [sym_preproc_elif_in_specification_part] = STATE(7727), + [sym_preproc_elifdef_in_specification_part] = STATE(7727), + [sym_preproc_if_in_statements] = STATE(309), + [sym_preproc_ifdef_in_statements] = STATE(309), + [sym_interface] = STATE(98), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5624), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(98), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(98), + [sym_public_statement] = STATE(98), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(98), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(343), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(98), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(98), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(309), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(908), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -66280,123 +66280,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [89] = { - [sym_preproc_include] = STATE(107), - [sym_preproc_def] = STATE(107), - [sym_preproc_function_def] = STATE(107), - [sym_preproc_call] = STATE(107), - [sym_preproc_else_in_specification_part] = STATE(8139), - [sym_preproc_elif_in_specification_part] = STATE(8139), - [sym_preproc_elifdef_in_specification_part] = STATE(8139), - [sym_preproc_if_in_statements] = STATE(339), - [sym_preproc_ifdef_in_statements] = STATE(339), - [sym_interface] = STATE(107), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5684), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(107), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(107), - [sym_public_statement] = STATE(107), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(107), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(106), + [sym_preproc_def] = STATE(106), + [sym_preproc_function_def] = STATE(106), + [sym_preproc_call] = STATE(106), + [sym_preproc_else_in_specification_part] = STATE(7516), + [sym_preproc_elif_in_specification_part] = STATE(7516), + [sym_preproc_elifdef_in_specification_part] = STATE(7516), + [sym_preproc_if_in_statements] = STATE(322), + [sym_preproc_ifdef_in_statements] = STATE(322), + [sym_interface] = STATE(106), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5658), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(106), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(106), + [sym_public_statement] = STATE(106), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(106), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(107), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(107), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(339), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(106), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(106), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(322), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(912), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -66520,119 +66520,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(108), [sym_preproc_function_def] = STATE(108), [sym_preproc_call] = STATE(108), - [sym_preproc_else_in_specification_part] = STATE(7471), - [sym_preproc_elif_in_specification_part] = STATE(7471), - [sym_preproc_elifdef_in_specification_part] = STATE(7471), - [sym_preproc_if_in_statements] = STATE(344), - [sym_preproc_ifdef_in_statements] = STATE(344), + [sym_preproc_else_in_specification_part] = STATE(7635), + [sym_preproc_elif_in_specification_part] = STATE(7635), + [sym_preproc_elifdef_in_specification_part] = STATE(7635), + [sym_preproc_if_in_statements] = STATE(328), + [sym_preproc_ifdef_in_statements] = STATE(328), [sym_interface] = STATE(108), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5751), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5660), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(108), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(108), [sym_public_statement] = STATE(108), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(108), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(108), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(108), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(344), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(328), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(916), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -66752,123 +66752,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [91] = { - [sym_preproc_include] = STATE(114), - [sym_preproc_def] = STATE(114), - [sym_preproc_function_def] = STATE(114), - [sym_preproc_call] = STATE(114), - [sym_preproc_else_in_specification_part] = STATE(8113), - [sym_preproc_elif_in_specification_part] = STATE(8113), - [sym_preproc_elifdef_in_specification_part] = STATE(8113), - [sym_preproc_if_in_statements] = STATE(351), - [sym_preproc_ifdef_in_statements] = STATE(351), - [sym_interface] = STATE(114), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5657), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(114), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(114), - [sym_public_statement] = STATE(114), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(114), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(115), + [sym_preproc_def] = STATE(115), + [sym_preproc_function_def] = STATE(115), + [sym_preproc_call] = STATE(115), + [sym_preproc_else_in_specification_part] = STATE(7647), + [sym_preproc_elif_in_specification_part] = STATE(7647), + [sym_preproc_elifdef_in_specification_part] = STATE(7647), + [sym_preproc_if_in_statements] = STATE(338), + [sym_preproc_ifdef_in_statements] = STATE(338), + [sym_interface] = STATE(115), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5673), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(115), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(115), + [sym_public_statement] = STATE(115), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(115), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(114), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(114), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(351), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(115), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(115), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(338), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(920), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -66988,123 +66988,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [92] = { - [sym_preproc_include] = STATE(116), - [sym_preproc_def] = STATE(116), - [sym_preproc_function_def] = STATE(116), - [sym_preproc_call] = STATE(116), - [sym_preproc_else_in_specification_part] = STATE(8168), - [sym_preproc_elif_in_specification_part] = STATE(8168), - [sym_preproc_elifdef_in_specification_part] = STATE(8168), - [sym_preproc_if_in_statements] = STATE(355), - [sym_preproc_ifdef_in_statements] = STATE(355), - [sym_interface] = STATE(116), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5667), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(116), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(116), - [sym_public_statement] = STATE(116), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(116), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(117), + [sym_preproc_def] = STATE(117), + [sym_preproc_function_def] = STATE(117), + [sym_preproc_call] = STATE(117), + [sym_preproc_else_in_specification_part] = STATE(7903), + [sym_preproc_elif_in_specification_part] = STATE(7903), + [sym_preproc_elifdef_in_specification_part] = STATE(7903), + [sym_preproc_if_in_statements] = STATE(342), + [sym_preproc_ifdef_in_statements] = STATE(342), + [sym_interface] = STATE(117), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5675), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(117), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(117), + [sym_public_statement] = STATE(117), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(117), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(116), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(116), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(355), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(117), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(117), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(342), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(924), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -67228,119 +67228,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8240), - [sym_preproc_elif_in_specification_part] = STATE(8240), - [sym_preproc_elifdef_in_specification_part] = STATE(8240), - [sym_preproc_if_in_statements] = STATE(324), - [sym_preproc_ifdef_in_statements] = STATE(324), + [sym_preproc_else_in_specification_part] = STATE(8123), + [sym_preproc_elif_in_specification_part] = STATE(8123), + [sym_preproc_elifdef_in_specification_part] = STATE(8123), + [sym_preproc_if_in_statements] = STATE(303), + [sym_preproc_ifdef_in_statements] = STATE(303), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5619), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5620), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(324), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(303), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(900), + [aux_sym_preproc_if_token2] = ACTIONS(904), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -67400,7 +67400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(906), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -67464,119 +67464,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8307), - [sym_preproc_elif_in_specification_part] = STATE(8307), - [sym_preproc_elifdef_in_specification_part] = STATE(8307), - [sym_preproc_if_in_statements] = STATE(328), - [sym_preproc_ifdef_in_statements] = STATE(328), + [sym_preproc_else_in_specification_part] = STATE(7727), + [sym_preproc_elif_in_specification_part] = STATE(7727), + [sym_preproc_elifdef_in_specification_part] = STATE(7727), + [sym_preproc_if_in_statements] = STATE(309), + [sym_preproc_ifdef_in_statements] = STATE(309), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5636), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5624), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(328), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(309), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(904), + [aux_sym_preproc_if_token2] = ACTIONS(908), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -67636,7 +67636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(910), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -67700,119 +67700,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8324), - [sym_preproc_elif_in_specification_part] = STATE(8324), - [sym_preproc_elifdef_in_specification_part] = STATE(8324), - [sym_preproc_if_in_statements] = STATE(329), - [sym_preproc_ifdef_in_statements] = STATE(329), + [sym_preproc_else_in_specification_part] = STATE(8215), + [sym_preproc_elif_in_specification_part] = STATE(8215), + [sym_preproc_elifdef_in_specification_part] = STATE(8215), + [sym_preproc_if_in_statements] = STATE(310), + [sym_preproc_ifdef_in_statements] = STATE(310), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5648), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5625), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(329), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(310), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(928), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -67936,119 +67936,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(85), [sym_preproc_function_def] = STATE(85), [sym_preproc_call] = STATE(85), - [sym_preproc_else_in_specification_part] = STATE(7672), - [sym_preproc_elif_in_specification_part] = STATE(7672), - [sym_preproc_elifdef_in_specification_part] = STATE(7672), - [sym_preproc_if_in_statements] = STATE(308), - [sym_preproc_ifdef_in_statements] = STATE(308), + [sym_preproc_else_in_specification_part] = STATE(7965), + [sym_preproc_elif_in_specification_part] = STATE(7965), + [sym_preproc_elifdef_in_specification_part] = STATE(7965), + [sym_preproc_if_in_statements] = STATE(324), + [sym_preproc_ifdef_in_statements] = STATE(324), [sym_interface] = STATE(85), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5702), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5635), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(85), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(85), [sym_public_statement] = STATE(85), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(85), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(85), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(85), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(308), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(324), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(932), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -68168,123 +68168,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [97] = { - [sym_preproc_include] = STATE(88), - [sym_preproc_def] = STATE(88), - [sym_preproc_function_def] = STATE(88), - [sym_preproc_call] = STATE(88), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(301), - [sym_preproc_ifdef_in_statements] = STATE(301), - [sym_interface] = STATE(88), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5786), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(88), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(88), - [sym_public_statement] = STATE(88), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(88), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(86), + [sym_preproc_def] = STATE(86), + [sym_preproc_function_def] = STATE(86), + [sym_preproc_call] = STATE(86), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(311), + [sym_preproc_ifdef_in_statements] = STATE(311), + [sym_interface] = STATE(86), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5687), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(86), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(86), + [sym_public_statement] = STATE(86), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(86), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(88), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(88), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(301), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(86), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(86), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(311), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(936), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -68408,119 +68408,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(7989), - [sym_preproc_elif_in_specification_part] = STATE(7989), - [sym_preproc_elifdef_in_specification_part] = STATE(7989), - [sym_preproc_if_in_statements] = STATE(333), - [sym_preproc_ifdef_in_statements] = STATE(333), + [sym_preproc_else_in_specification_part] = STATE(8070), + [sym_preproc_elif_in_specification_part] = STATE(8070), + [sym_preproc_elifdef_in_specification_part] = STATE(8070), + [sym_preproc_if_in_statements] = STATE(316), + [sym_preproc_ifdef_in_statements] = STATE(316), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5721), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5634), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(333), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(316), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(940), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -68640,123 +68640,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [99] = { - [sym_preproc_include] = STATE(761), - [sym_preproc_def] = STATE(761), - [sym_preproc_function_def] = STATE(761), - [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8296), - [sym_preproc_elif_in_specification_part] = STATE(8296), - [sym_preproc_elifdef_in_specification_part] = STATE(8296), - [sym_preproc_if_in_statements] = STATE(309), - [sym_preproc_ifdef_in_statements] = STATE(309), - [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5710), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(761), - [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(94), + [sym_preproc_def] = STATE(94), + [sym_preproc_function_def] = STATE(94), + [sym_preproc_call] = STATE(94), + [sym_preproc_else_in_specification_part] = STATE(7960), + [sym_preproc_elif_in_specification_part] = STATE(7960), + [sym_preproc_elifdef_in_specification_part] = STATE(7960), + [sym_preproc_if_in_statements] = STATE(304), + [sym_preproc_ifdef_in_statements] = STATE(304), + [sym_interface] = STATE(94), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5646), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(94), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(94), + [sym_public_statement] = STATE(94), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(94), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(309), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(94), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(94), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(304), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(944), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -68876,123 +68876,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [100] = { - [sym_preproc_include] = STATE(94), - [sym_preproc_def] = STATE(94), - [sym_preproc_function_def] = STATE(94), - [sym_preproc_call] = STATE(94), - [sym_preproc_else_in_specification_part] = STATE(8227), - [sym_preproc_elif_in_specification_part] = STATE(8227), - [sym_preproc_elifdef_in_specification_part] = STATE(8227), - [sym_preproc_if_in_statements] = STATE(319), - [sym_preproc_ifdef_in_statements] = STATE(319), - [sym_interface] = STATE(94), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5761), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(94), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(94), - [sym_public_statement] = STATE(94), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(94), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(761), + [sym_preproc_def] = STATE(761), + [sym_preproc_function_def] = STATE(761), + [sym_preproc_call] = STATE(761), + [sym_preproc_else_in_specification_part] = STATE(7934), + [sym_preproc_elif_in_specification_part] = STATE(7934), + [sym_preproc_elifdef_in_specification_part] = STATE(7934), + [sym_preproc_if_in_statements] = STATE(330), + [sym_preproc_ifdef_in_statements] = STATE(330), + [sym_interface] = STATE(761), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5644), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(761), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(761), + [sym_public_statement] = STATE(761), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(761), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(94), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(94), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(319), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(761), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(761), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(330), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(948), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -69112,123 +69112,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [101] = { - [sym_preproc_include] = STATE(761), - [sym_preproc_def] = STATE(761), - [sym_preproc_function_def] = STATE(761), - [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(301), - [sym_preproc_ifdef_in_statements] = STATE(301), - [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5786), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(761), - [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(112), + [sym_preproc_def] = STATE(112), + [sym_preproc_function_def] = STATE(112), + [sym_preproc_call] = STATE(112), + [sym_preproc_else_in_specification_part] = STATE(7654), + [sym_preproc_elif_in_specification_part] = STATE(7654), + [sym_preproc_elifdef_in_specification_part] = STATE(7654), + [sym_preproc_if_in_statements] = STATE(353), + [sym_preproc_ifdef_in_statements] = STATE(353), + [sym_interface] = STATE(112), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5699), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(112), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(112), + [sym_public_statement] = STATE(112), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(112), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(301), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(112), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(112), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(353), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(936), + [aux_sym_preproc_if_token2] = ACTIONS(265), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -69288,7 +69288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(952), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -69352,119 +69352,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8139), - [sym_preproc_elif_in_specification_part] = STATE(8139), - [sym_preproc_elifdef_in_specification_part] = STATE(8139), - [sym_preproc_if_in_statements] = STATE(339), - [sym_preproc_ifdef_in_statements] = STATE(339), + [sym_preproc_else_in_specification_part] = STATE(7516), + [sym_preproc_elif_in_specification_part] = STATE(7516), + [sym_preproc_elifdef_in_specification_part] = STATE(7516), + [sym_preproc_if_in_statements] = STATE(322), + [sym_preproc_ifdef_in_statements] = STATE(322), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5684), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5658), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(339), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(322), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(912), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -69588,119 +69588,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(7594), - [sym_preproc_elif_in_specification_part] = STATE(7594), - [sym_preproc_elifdef_in_specification_part] = STATE(7594), - [sym_preproc_if_in_statements] = STATE(408), - [sym_preproc_ifdef_in_statements] = STATE(408), + [sym_preproc_else_in_specification_part] = STATE(7980), + [sym_preproc_elif_in_specification_part] = STATE(7980), + [sym_preproc_elifdef_in_specification_part] = STATE(7980), + [sym_preproc_if_in_statements] = STATE(427), + [sym_preproc_ifdef_in_statements] = STATE(427), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5777), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5816), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(408), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(427), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(954), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -69760,7 +69760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(956), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -69824,119 +69824,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(7471), - [sym_preproc_elif_in_specification_part] = STATE(7471), - [sym_preproc_elifdef_in_specification_part] = STATE(7471), - [sym_preproc_if_in_statements] = STATE(344), - [sym_preproc_ifdef_in_statements] = STATE(344), + [sym_preproc_else_in_specification_part] = STATE(7635), + [sym_preproc_elif_in_specification_part] = STATE(7635), + [sym_preproc_elifdef_in_specification_part] = STATE(7635), + [sym_preproc_if_in_statements] = STATE(328), + [sym_preproc_ifdef_in_statements] = STATE(328), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5751), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5660), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(344), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(328), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(916), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -70056,123 +70056,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [105] = { - [sym_preproc_include] = STATE(99), - [sym_preproc_def] = STATE(99), - [sym_preproc_function_def] = STATE(99), - [sym_preproc_call] = STATE(99), - [sym_preproc_else_in_specification_part] = STATE(8155), - [sym_preproc_elif_in_specification_part] = STATE(8155), - [sym_preproc_elifdef_in_specification_part] = STATE(8155), - [sym_preproc_if_in_statements] = STATE(311), - [sym_preproc_ifdef_in_statements] = STATE(311), - [sym_interface] = STATE(99), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5644), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(99), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(99), - [sym_public_statement] = STATE(99), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(99), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(100), + [sym_preproc_def] = STATE(100), + [sym_preproc_function_def] = STATE(100), + [sym_preproc_call] = STATE(100), + [sym_preproc_else_in_specification_part] = STATE(8022), + [sym_preproc_elif_in_specification_part] = STATE(8022), + [sym_preproc_elifdef_in_specification_part] = STATE(8022), + [sym_preproc_if_in_statements] = STATE(337), + [sym_preproc_ifdef_in_statements] = STATE(337), + [sym_interface] = STATE(100), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5649), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(100), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(100), + [sym_public_statement] = STATE(100), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(100), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(99), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(99), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(311), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(100), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(100), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(337), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(297), + [aux_sym_preproc_if_token2] = ACTIONS(255), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -70232,7 +70232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(958), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -70292,123 +70292,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [106] = { - [sym_preproc_include] = STATE(119), - [sym_preproc_def] = STATE(119), - [sym_preproc_function_def] = STATE(119), - [sym_preproc_call] = STATE(119), - [sym_preproc_else_in_specification_part] = STATE(7612), - [sym_preproc_elif_in_specification_part] = STATE(7612), - [sym_preproc_elifdef_in_specification_part] = STATE(7612), - [sym_preproc_if_in_statements] = STATE(423), - [sym_preproc_ifdef_in_statements] = STATE(423), - [sym_interface] = STATE(119), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5645), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(119), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(119), - [sym_public_statement] = STATE(119), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(119), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(761), + [sym_preproc_def] = STATE(761), + [sym_preproc_function_def] = STATE(761), + [sym_preproc_call] = STATE(761), + [sym_preproc_else_in_specification_part] = STATE(7722), + [sym_preproc_elif_in_specification_part] = STATE(7722), + [sym_preproc_elifdef_in_specification_part] = STATE(7722), + [sym_preproc_if_in_statements] = STATE(329), + [sym_preproc_ifdef_in_statements] = STATE(329), + [sym_interface] = STATE(761), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5661), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(761), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(761), + [sym_public_statement] = STATE(761), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(761), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(119), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(119), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(423), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(761), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(761), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(329), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_if_token2] = ACTIONS(960), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -70468,7 +70468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(962), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -70528,123 +70528,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [107] = { - [sym_preproc_include] = STATE(761), - [sym_preproc_def] = STATE(761), - [sym_preproc_function_def] = STATE(761), - [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(7768), - [sym_preproc_elif_in_specification_part] = STATE(7768), - [sym_preproc_elifdef_in_specification_part] = STATE(7768), - [sym_preproc_if_in_statements] = STATE(345), - [sym_preproc_ifdef_in_statements] = STATE(345), - [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5819), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(761), - [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(119), + [sym_preproc_def] = STATE(119), + [sym_preproc_function_def] = STATE(119), + [sym_preproc_call] = STATE(119), + [sym_preproc_else_in_specification_part] = STATE(8035), + [sym_preproc_elif_in_specification_part] = STATE(8035), + [sym_preproc_elifdef_in_specification_part] = STATE(8035), + [sym_preproc_if_in_statements] = STATE(302), + [sym_preproc_ifdef_in_statements] = STATE(302), + [sym_interface] = STATE(119), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5821), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(119), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(119), + [sym_public_statement] = STATE(119), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(119), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(345), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(119), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(119), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(302), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(259), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -70704,7 +70704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(964), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -70768,119 +70768,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(7620), - [sym_preproc_elif_in_specification_part] = STATE(7620), - [sym_preproc_elifdef_in_specification_part] = STATE(7620), - [sym_preproc_if_in_statements] = STATE(349), - [sym_preproc_ifdef_in_statements] = STATE(349), + [sym_preproc_else_in_specification_part] = STATE(7905), + [sym_preproc_elif_in_specification_part] = STATE(7905), + [sym_preproc_elifdef_in_specification_part] = STATE(7905), + [sym_preproc_if_in_statements] = STATE(335), + [sym_preproc_ifdef_in_statements] = STATE(335), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5716), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5667), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(349), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(335), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(966), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -70940,7 +70940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(968), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -71004,119 +71004,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(104), [sym_preproc_function_def] = STATE(104), [sym_preproc_call] = STATE(104), - [sym_preproc_else_in_specification_part] = STATE(8066), - [sym_preproc_elif_in_specification_part] = STATE(8066), - [sym_preproc_elifdef_in_specification_part] = STATE(8066), - [sym_preproc_if_in_statements] = STATE(321), - [sym_preproc_ifdef_in_statements] = STATE(321), + [sym_preproc_else_in_specification_part] = STATE(7494), + [sym_preproc_elif_in_specification_part] = STATE(7494), + [sym_preproc_elifdef_in_specification_part] = STATE(7494), + [sym_preproc_if_in_statements] = STATE(387), + [sym_preproc_ifdef_in_statements] = STATE(387), [sym_interface] = STATE(104), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5787), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5723), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(104), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(104), [sym_public_statement] = STATE(104), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(104), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(104), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(104), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(321), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(387), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(970), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -71176,7 +71176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -71240,119 +71240,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(103), [sym_preproc_function_def] = STATE(103), [sym_preproc_call] = STATE(103), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(338), - [sym_preproc_ifdef_in_statements] = STATE(338), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(442), + [sym_preproc_ifdef_in_statements] = STATE(442), [sym_interface] = STATE(103), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5713), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5629), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(103), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(103), [sym_public_statement] = STATE(103), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(103), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(103), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(103), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(338), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(442), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(896), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -71476,119 +71476,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8316), - [sym_preproc_elif_in_specification_part] = STATE(8316), - [sym_preproc_elifdef_in_specification_part] = STATE(8316), - [sym_preproc_if_in_statements] = STATE(315), - [sym_preproc_ifdef_in_statements] = STATE(315), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(311), + [sym_preproc_ifdef_in_statements] = STATE(311), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5701), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5687), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(315), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(311), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(936), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -71648,7 +71648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(938), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -71712,119 +71712,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8113), - [sym_preproc_elif_in_specification_part] = STATE(8113), - [sym_preproc_elifdef_in_specification_part] = STATE(8113), - [sym_preproc_if_in_statements] = STATE(351), - [sym_preproc_ifdef_in_statements] = STATE(351), + [sym_preproc_else_in_specification_part] = STATE(8203), + [sym_preproc_elif_in_specification_part] = STATE(8203), + [sym_preproc_elifdef_in_specification_part] = STATE(8203), + [sym_preproc_if_in_statements] = STATE(352), + [sym_preproc_ifdef_in_statements] = STATE(352), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5657), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5691), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(351), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(352), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(920), + [aux_sym_preproc_if_token2] = ACTIONS(974), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -71884,7 +71884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(976), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -71948,119 +71948,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8168), - [sym_preproc_elif_in_specification_part] = STATE(8168), - [sym_preproc_elifdef_in_specification_part] = STATE(8168), - [sym_preproc_if_in_statements] = STATE(355), - [sym_preproc_ifdef_in_statements] = STATE(355), + [sym_preproc_else_in_specification_part] = STATE(7647), + [sym_preproc_elif_in_specification_part] = STATE(7647), + [sym_preproc_elifdef_in_specification_part] = STATE(7647), + [sym_preproc_if_in_statements] = STATE(338), + [sym_preproc_ifdef_in_statements] = STATE(338), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5667), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5673), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(355), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(338), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(924), + [aux_sym_preproc_if_token2] = ACTIONS(920), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -72120,7 +72120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(922), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -72184,119 +72184,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8183), - [sym_preproc_elif_in_specification_part] = STATE(8183), - [sym_preproc_elifdef_in_specification_part] = STATE(8183), - [sym_preproc_if_in_statements] = STATE(356), - [sym_preproc_ifdef_in_statements] = STATE(356), + [sym_preproc_else_in_specification_part] = STATE(7903), + [sym_preproc_elif_in_specification_part] = STATE(7903), + [sym_preproc_elifdef_in_specification_part] = STATE(7903), + [sym_preproc_if_in_statements] = STATE(342), + [sym_preproc_ifdef_in_statements] = STATE(342), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5671), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5675), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(356), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(342), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(924), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -72356,7 +72356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(926), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -72416,123 +72416,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [115] = { - [sym_preproc_include] = STATE(111), - [sym_preproc_def] = STATE(111), - [sym_preproc_function_def] = STATE(111), - [sym_preproc_call] = STATE(111), - [sym_preproc_else_in_specification_part] = STATE(8105), - [sym_preproc_elif_in_specification_part] = STATE(8105), - [sym_preproc_elifdef_in_specification_part] = STATE(8105), - [sym_preproc_if_in_statements] = STATE(316), - [sym_preproc_ifdef_in_statements] = STATE(316), - [sym_interface] = STATE(111), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5646), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(111), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(111), - [sym_public_statement] = STATE(111), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(111), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(761), + [sym_preproc_def] = STATE(761), + [sym_preproc_function_def] = STATE(761), + [sym_preproc_call] = STATE(761), + [sym_preproc_else_in_specification_part] = STATE(7979), + [sym_preproc_elif_in_specification_part] = STATE(7979), + [sym_preproc_elifdef_in_specification_part] = STATE(7979), + [sym_preproc_if_in_statements] = STATE(343), + [sym_preproc_ifdef_in_statements] = STATE(343), + [sym_interface] = STATE(761), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5676), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(761), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(761), + [sym_public_statement] = STATE(761), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(761), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(111), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(111), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(316), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(761), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(761), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(343), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(259), + [aux_sym_preproc_if_token2] = ACTIONS(978), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -72656,119 +72656,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8312), - [sym_preproc_elif_in_specification_part] = STATE(8312), - [sym_preproc_elifdef_in_specification_part] = STATE(8312), - [sym_preproc_if_in_statements] = STATE(360), - [sym_preproc_ifdef_in_statements] = STATE(360), + [sym_preproc_else_in_specification_part] = STATE(8035), + [sym_preproc_elif_in_specification_part] = STATE(8035), + [sym_preproc_elifdef_in_specification_part] = STATE(8035), + [sym_preproc_if_in_statements] = STATE(302), + [sym_preproc_ifdef_in_statements] = STATE(302), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5683), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5821), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(360), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(302), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(982), + [aux_sym_preproc_if_token2] = ACTIONS(259), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -72828,7 +72828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(964), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -72888,123 +72888,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [117] = { - [sym_preproc_include] = STATE(113), - [sym_preproc_def] = STATE(113), - [sym_preproc_function_def] = STATE(113), - [sym_preproc_call] = STATE(113), - [sym_preproc_else_in_specification_part] = STATE(8083), - [sym_preproc_elif_in_specification_part] = STATE(8083), - [sym_preproc_elifdef_in_specification_part] = STATE(8083), - [sym_preproc_if_in_statements] = STATE(323), - [sym_preproc_ifdef_in_statements] = STATE(323), - [sym_interface] = STATE(113), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5796), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(113), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(113), - [sym_public_statement] = STATE(113), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(113), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(761), + [sym_preproc_def] = STATE(761), + [sym_preproc_function_def] = STATE(761), + [sym_preproc_call] = STATE(761), + [sym_preproc_else_in_specification_part] = STATE(8408), + [sym_preproc_elif_in_specification_part] = STATE(8408), + [sym_preproc_elifdef_in_specification_part] = STATE(8408), + [sym_preproc_if_in_statements] = STATE(347), + [sym_preproc_ifdef_in_statements] = STATE(347), + [sym_interface] = STATE(761), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5679), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(761), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(761), + [sym_public_statement] = STATE(761), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(761), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(113), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(113), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(323), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(761), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(761), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(347), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(986), + [aux_sym_preproc_if_token2] = ACTIONS(982), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -73064,7 +73064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(984), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -73124,123 +73124,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [118] = { - [sym_preproc_include] = STATE(761), - [sym_preproc_def] = STATE(761), - [sym_preproc_function_def] = STATE(761), - [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(7612), - [sym_preproc_elif_in_specification_part] = STATE(7612), - [sym_preproc_elifdef_in_specification_part] = STATE(7612), - [sym_preproc_if_in_statements] = STATE(423), - [sym_preproc_ifdef_in_statements] = STATE(423), - [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5645), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(761), - [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_preproc_include] = STATE(114), + [sym_preproc_def] = STATE(114), + [sym_preproc_function_def] = STATE(114), + [sym_preproc_call] = STATE(114), + [sym_preproc_else_in_specification_part] = STATE(7551), + [sym_preproc_elif_in_specification_part] = STATE(7551), + [sym_preproc_elifdef_in_specification_part] = STATE(7551), + [sym_preproc_if_in_statements] = STATE(396), + [sym_preproc_ifdef_in_statements] = STATE(396), + [sym_interface] = STATE(114), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5819), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(114), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(114), + [sym_public_statement] = STATE(114), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(114), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(423), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_enum] = STATE(114), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(114), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(396), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_if_token2] = ACTIONS(986), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -73300,7 +73300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(988), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -73364,119 +73364,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(761), [sym_preproc_function_def] = STATE(761), [sym_preproc_call] = STATE(761), - [sym_preproc_else_in_specification_part] = STATE(8368), - [sym_preproc_elif_in_specification_part] = STATE(8368), - [sym_preproc_elifdef_in_specification_part] = STATE(8368), - [sym_preproc_if_in_statements] = STATE(310), - [sym_preproc_ifdef_in_statements] = STATE(310), + [sym_preproc_else_in_specification_part] = STATE(8012), + [sym_preproc_elif_in_specification_part] = STATE(8012), + [sym_preproc_elifdef_in_specification_part] = STATE(8012), + [sym_preproc_if_in_statements] = STATE(331), + [sym_preproc_ifdef_in_statements] = STATE(331), [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5743), - [sym_contains_statement] = STATE(6907), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5647), + [sym_contains_statement] = STATE(6869), [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), [sym_private_statement] = STATE(761), [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(789), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6280), - [sym_data_statement] = STATE(6522), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(791), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6832), + [sym_data_statement] = STATE(6436), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_statement_function] = STATE(6522), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5895), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_statement_function] = STATE(6436), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(310), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(331), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(728), [aux_sym_preproc_def_token1] = ACTIONS(730), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(990), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), [sym_preproc_directive] = ACTIONS(744), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), @@ -73602,109 +73602,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(170), [sym_preproc_if_in_specification_part] = STATE(170), [sym_preproc_ifdef_in_specification_part] = STATE(170), - [sym_preproc_if_in_statements] = STATE(517), - [sym_preproc_ifdef_in_statements] = STATE(517), - [sym_preproc_if_in_procedure_statements] = STATE(517), - [sym_preproc_ifdef_in_procedure_statements] = STATE(517), + [sym_preproc_if_in_statements] = STATE(496), + [sym_preproc_ifdef_in_statements] = STATE(496), + [sym_preproc_if_in_procedure_statements] = STATE(496), + [sym_preproc_ifdef_in_procedure_statements] = STATE(496), [sym_interface] = STATE(170), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4984), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6505), - [sym_contains_statement] = STATE(6272), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4915), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6419), + [sym_contains_statement] = STATE(6815), [sym__specification_part] = STATE(170), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), [sym_private_statement] = STATE(170), [sym_public_statement] = STATE(170), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), [sym_derived_type_definition] = STATE(170), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), [sym_enum] = STATE(170), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(170), - [aux_sym_subroutine_repeat1] = STATE(517), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_subroutine_repeat1] = STATE(496), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -73830,365 +73830,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [121] = { - [sym_preproc_include] = STATE(183), - [sym_preproc_def] = STATE(183), - [sym_preproc_function_def] = STATE(183), - [sym_preproc_call] = STATE(183), - [sym_preproc_if_in_specification_part] = STATE(183), - [sym_preproc_ifdef_in_specification_part] = STATE(183), - [sym_preproc_if_in_statements] = STATE(535), - [sym_preproc_ifdef_in_statements] = STATE(535), - [sym_preproc_if_in_procedure_statements] = STATE(535), - [sym_preproc_ifdef_in_procedure_statements] = STATE(535), - [sym_interface] = STATE(183), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4866), - [sym_internal_procedures] = STATE(6664), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(183), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(183), - [sym_public_statement] = STATE(183), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(183), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(183), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(183), - [aux_sym_subroutine_repeat1] = STATE(535), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1024), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1026), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(758), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(758), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1032), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(117), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(183), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [122] = { - [sym_preproc_include] = STATE(763), - [sym_preproc_def] = STATE(763), - [sym_preproc_function_def] = STATE(763), - [sym_preproc_call] = STATE(763), - [sym_preproc_if_in_specification_part] = STATE(763), - [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), [sym_preproc_if_in_statements] = STATE(479), [sym_preproc_ifdef_in_statements] = STATE(479), [sym_preproc_if_in_procedure_statements] = STATE(479), [sym_preproc_ifdef_in_procedure_statements] = STATE(479), - [sym_interface] = STATE(763), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4888), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6648), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(763), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(763), - [sym_public_statement] = STATE(763), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(763), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4511), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6573), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(763), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(763), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), [aux_sym_subroutine_repeat1] = STATE(479), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1002), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1044), + [aux_sym_end_program_statement_token1] = ACTIONS(1014), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1016), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1046), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -74199,8 +73965,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1008), + [aux_sym_public_statement_token1] = ACTIONS(1010), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -74238,7 +74004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1018), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -74297,132 +74063,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [123] = { - [sym_preproc_include] = STATE(140), - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_specification_part] = STATE(140), - [sym_preproc_ifdef_in_specification_part] = STATE(140), - [sym_preproc_if_in_statements] = STATE(503), - [sym_preproc_ifdef_in_statements] = STATE(503), - [sym_preproc_if_in_procedure_statements] = STATE(503), - [sym_preproc_ifdef_in_procedure_statements] = STATE(503), - [sym_interface] = STATE(140), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(5042), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7046), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(140), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(140), - [sym_public_statement] = STATE(140), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(140), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [122] = { + [sym_preproc_include] = STATE(143), + [sym_preproc_def] = STATE(143), + [sym_preproc_function_def] = STATE(143), + [sym_preproc_call] = STATE(143), + [sym_preproc_if_in_specification_part] = STATE(143), + [sym_preproc_ifdef_in_specification_part] = STATE(143), + [sym_preproc_if_in_statements] = STATE(523), + [sym_preproc_ifdef_in_statements] = STATE(523), + [sym_preproc_if_in_procedure_statements] = STATE(523), + [sym_preproc_ifdef_in_procedure_statements] = STATE(523), + [sym_interface] = STATE(143), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4787), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6557), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(143), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(143), + [sym_public_statement] = STATE(143), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(143), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(140), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(140), - [aux_sym_subroutine_repeat1] = STATE(503), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(143), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(143), + [aux_sym_subroutine_repeat1] = STATE(523), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1054), + [aux_sym_end_program_statement_token1] = ACTIONS(1030), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1056), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1032), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -74433,8 +74199,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -74472,7 +74238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1038), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -74531,132 +74297,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [124] = { + [123] = { [sym_preproc_include] = STATE(764), [sym_preproc_def] = STATE(764), [sym_preproc_function_def] = STATE(764), [sym_preproc_call] = STATE(764), [sym_preproc_if_in_specification_part] = STATE(764), [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(482), - [sym_preproc_ifdef_in_statements] = STATE(482), - [sym_preproc_if_in_procedure_statements] = STATE(482), - [sym_preproc_ifdef_in_procedure_statements] = STATE(482), + [sym_preproc_if_in_statements] = STATE(522), + [sym_preproc_ifdef_in_statements] = STATE(522), + [sym_preproc_if_in_procedure_statements] = STATE(522), + [sym_preproc_ifdef_in_procedure_statements] = STATE(522), [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(5015), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6288), - [sym_contains_statement] = STATE(6272), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4945), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6671), + [sym_contains_statement] = STATE(6366), [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), [sym_private_statement] = STATE(764), [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(482), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1002), + [aux_sym_subroutine_repeat1] = STATE(522), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1060), + [aux_sym_end_program_statement_token1] = ACTIONS(1040), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1062), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1042), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -74667,8 +74433,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1008), - [aux_sym_public_statement_token1] = ACTIONS(1010), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -74706,7 +74472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1044), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -74765,127 +74531,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [125] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(483), - [sym_preproc_ifdef_in_statements] = STATE(483), - [sym_preproc_if_in_procedure_statements] = STATE(483), - [sym_preproc_ifdef_in_procedure_statements] = STATE(483), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(5017), - [sym_internal_procedures] = STATE(6303), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [124] = { + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(530), + [sym_preproc_ifdef_in_statements] = STATE(530), + [sym_preproc_if_in_procedure_statements] = STATE(530), + [sym_preproc_ifdef_in_procedure_statements] = STATE(530), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4514), + [sym_internal_procedures] = STATE(7074), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(483), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(530), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1066), + [aux_sym_end_program_statement_token1] = ACTIONS(1056), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -74893,7 +74659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1068), + [aux_sym_end_function_statement_token1] = ACTIONS(1058), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -74901,8 +74667,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -74940,7 +74706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1064), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -74999,116 +74765,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [126] = { - [sym_preproc_include] = STATE(139), - [sym_preproc_def] = STATE(139), - [sym_preproc_function_def] = STATE(139), - [sym_preproc_call] = STATE(139), - [sym_preproc_if_in_specification_part] = STATE(139), - [sym_preproc_ifdef_in_specification_part] = STATE(139), - [sym_preproc_if_in_statements] = STATE(538), - [sym_preproc_ifdef_in_statements] = STATE(538), - [sym_preproc_if_in_procedure_statements] = STATE(538), - [sym_preproc_ifdef_in_procedure_statements] = STATE(538), - [sym_interface] = STATE(139), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(881), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6700), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(139), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(139), - [sym_public_statement] = STATE(139), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(139), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [125] = { + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(533), + [sym_preproc_ifdef_in_statements] = STATE(533), + [sym_preproc_if_in_procedure_statements] = STATE(533), + [sym_preproc_ifdef_in_procedure_statements] = STATE(533), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(5047), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7059), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(139), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(139), - [aux_sym_subroutine_repeat1] = STATE(538), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(533), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -75119,11 +74885,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1072), + [aux_sym_end_program_statement_token1] = ACTIONS(1066), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1074), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1068), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -75174,7 +74940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1070), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -75233,127 +74999,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [127] = { - [sym_preproc_include] = STATE(142), - [sym_preproc_def] = STATE(142), - [sym_preproc_function_def] = STATE(142), - [sym_preproc_call] = STATE(142), - [sym_preproc_if_in_specification_part] = STATE(142), - [sym_preproc_ifdef_in_specification_part] = STATE(142), - [sym_preproc_if_in_statements] = STATE(539), - [sym_preproc_ifdef_in_statements] = STATE(539), - [sym_preproc_if_in_procedure_statements] = STATE(539), - [sym_preproc_ifdef_in_procedure_statements] = STATE(539), - [sym_interface] = STATE(142), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(882), - [sym_internal_procedures] = STATE(6704), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(142), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(142), - [sym_public_statement] = STATE(142), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(142), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [126] = { + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(534), + [sym_preproc_ifdef_in_statements] = STATE(534), + [sym_preproc_if_in_procedure_statements] = STATE(534), + [sym_preproc_ifdef_in_procedure_statements] = STATE(534), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(5050), + [sym_internal_procedures] = STATE(6256), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(142), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(142), - [aux_sym_subroutine_repeat1] = STATE(539), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(534), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1078), + [aux_sym_end_program_statement_token1] = ACTIONS(1072), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -75361,7 +75127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1080), + [aux_sym_end_function_statement_token1] = ACTIONS(1074), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -75369,8 +75135,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -75408,7 +75174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1076), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -75467,116 +75233,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [128] = { - [sym_preproc_include] = STATE(143), - [sym_preproc_def] = STATE(143), - [sym_preproc_function_def] = STATE(143), - [sym_preproc_call] = STATE(143), - [sym_preproc_if_in_specification_part] = STATE(143), - [sym_preproc_ifdef_in_specification_part] = STATE(143), - [sym_preproc_if_in_statements] = STATE(526), - [sym_preproc_ifdef_in_statements] = STATE(526), - [sym_preproc_if_in_procedure_statements] = STATE(526), - [sym_preproc_ifdef_in_procedure_statements] = STATE(526), - [sym_interface] = STATE(143), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4426), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6279), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(143), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(143), - [sym_public_statement] = STATE(143), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(143), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [127] = { + [sym_preproc_include] = STATE(141), + [sym_preproc_def] = STATE(141), + [sym_preproc_function_def] = STATE(141), + [sym_preproc_call] = STATE(141), + [sym_preproc_if_in_specification_part] = STATE(141), + [sym_preproc_ifdef_in_specification_part] = STATE(141), + [sym_preproc_if_in_statements] = STATE(535), + [sym_preproc_ifdef_in_statements] = STATE(535), + [sym_preproc_if_in_procedure_statements] = STATE(535), + [sym_preproc_ifdef_in_procedure_statements] = STATE(535), + [sym_interface] = STATE(141), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(867), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6738), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(141), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(141), + [sym_public_statement] = STATE(141), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(141), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(143), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(143), - [aux_sym_subroutine_repeat1] = STATE(526), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(141), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(141), + [aux_sym_subroutine_repeat1] = STATE(535), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -75587,11 +75353,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1084), + [aux_sym_end_program_statement_token1] = ACTIONS(1078), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1086), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1080), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -75642,7 +75408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1082), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -75701,127 +75467,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [129] = { - [sym_preproc_include] = STATE(149), - [sym_preproc_def] = STATE(149), - [sym_preproc_function_def] = STATE(149), - [sym_preproc_call] = STATE(149), - [sym_preproc_if_in_specification_part] = STATE(149), - [sym_preproc_ifdef_in_specification_part] = STATE(149), - [sym_preproc_if_in_statements] = STATE(531), - [sym_preproc_ifdef_in_statements] = STATE(531), - [sym_preproc_if_in_procedure_statements] = STATE(531), - [sym_preproc_ifdef_in_procedure_statements] = STATE(531), - [sym_interface] = STATE(149), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4429), - [sym_internal_procedures] = STATE(6421), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(149), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(149), - [sym_public_statement] = STATE(149), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(149), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [128] = { + [sym_preproc_include] = STATE(145), + [sym_preproc_def] = STATE(145), + [sym_preproc_function_def] = STATE(145), + [sym_preproc_call] = STATE(145), + [sym_preproc_if_in_specification_part] = STATE(145), + [sym_preproc_ifdef_in_specification_part] = STATE(145), + [sym_preproc_if_in_statements] = STATE(475), + [sym_preproc_ifdef_in_statements] = STATE(475), + [sym_preproc_if_in_procedure_statements] = STATE(475), + [sym_preproc_ifdef_in_procedure_statements] = STATE(475), + [sym_interface] = STATE(145), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(879), + [sym_internal_procedures] = STATE(6749), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(145), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(145), + [sym_public_statement] = STATE(145), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(145), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(149), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(149), - [aux_sym_subroutine_repeat1] = STATE(531), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(145), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(145), + [aux_sym_subroutine_repeat1] = STATE(475), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1090), + [aux_sym_end_program_statement_token1] = ACTIONS(1084), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -75829,7 +75595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1092), + [aux_sym_end_function_statement_token1] = ACTIONS(1086), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -75837,8 +75603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -75876,7 +75642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1088), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -75935,132 +75701,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [130] = { - [sym_preproc_include] = STATE(131), - [sym_preproc_def] = STATE(131), - [sym_preproc_function_def] = STATE(131), - [sym_preproc_call] = STATE(131), - [sym_preproc_if_in_specification_part] = STATE(131), - [sym_preproc_ifdef_in_specification_part] = STATE(131), - [sym_preproc_if_in_statements] = STATE(484), - [sym_preproc_ifdef_in_statements] = STATE(484), - [sym_preproc_if_in_procedure_statements] = STATE(484), - [sym_preproc_ifdef_in_procedure_statements] = STATE(484), - [sym_interface] = STATE(131), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4996), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6689), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(131), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(131), - [sym_public_statement] = STATE(131), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(131), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [129] = { + [sym_preproc_include] = STATE(135), + [sym_preproc_def] = STATE(135), + [sym_preproc_function_def] = STATE(135), + [sym_preproc_call] = STATE(135), + [sym_preproc_if_in_specification_part] = STATE(135), + [sym_preproc_ifdef_in_specification_part] = STATE(135), + [sym_preproc_if_in_statements] = STATE(536), + [sym_preproc_ifdef_in_statements] = STATE(536), + [sym_preproc_if_in_procedure_statements] = STATE(536), + [sym_preproc_ifdef_in_procedure_statements] = STATE(536), + [sym_interface] = STATE(135), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(1070), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6690), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(135), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(135), + [sym_public_statement] = STATE(135), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(135), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(131), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(131), - [aux_sym_subroutine_repeat1] = STATE(484), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(135), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(135), + [aux_sym_subroutine_repeat1] = STATE(536), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1002), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1096), + [aux_sym_end_program_statement_token1] = ACTIONS(1090), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1092), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1098), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -76071,8 +75837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1008), + [aux_sym_public_statement_token1] = ACTIONS(1010), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -76110,7 +75876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1094), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -76169,132 +75935,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [131] = { - [sym_preproc_include] = STATE(763), - [sym_preproc_def] = STATE(763), - [sym_preproc_function_def] = STATE(763), - [sym_preproc_call] = STATE(763), - [sym_preproc_if_in_specification_part] = STATE(763), - [sym_preproc_ifdef_in_specification_part] = STATE(763), - [sym_preproc_if_in_statements] = STATE(485), - [sym_preproc_ifdef_in_statements] = STATE(485), - [sym_preproc_if_in_procedure_statements] = STATE(485), - [sym_preproc_ifdef_in_procedure_statements] = STATE(485), - [sym_interface] = STATE(763), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(5035), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6732), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(763), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(763), - [sym_public_statement] = STATE(763), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(763), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [130] = { + [sym_preproc_include] = STATE(121), + [sym_preproc_def] = STATE(121), + [sym_preproc_function_def] = STATE(121), + [sym_preproc_call] = STATE(121), + [sym_preproc_if_in_specification_part] = STATE(121), + [sym_preproc_ifdef_in_specification_part] = STATE(121), + [sym_preproc_if_in_statements] = STATE(520), + [sym_preproc_ifdef_in_statements] = STATE(520), + [sym_preproc_if_in_procedure_statements] = STATE(520), + [sym_preproc_ifdef_in_procedure_statements] = STATE(520), + [sym_interface] = STATE(121), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4476), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7044), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(121), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(121), + [sym_public_statement] = STATE(121), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(121), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(763), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(763), - [aux_sym_subroutine_repeat1] = STATE(485), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(121), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(121), + [aux_sym_subroutine_repeat1] = STATE(520), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1002), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1096), + [aux_sym_end_program_statement_token1] = ACTIONS(1014), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1016), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1098), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -76305,8 +76071,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1008), + [aux_sym_public_statement_token1] = ACTIONS(1010), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -76344,7 +76110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1096), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -76403,135 +76169,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [132] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(488), - [sym_preproc_ifdef_in_statements] = STATE(488), - [sym_preproc_if_in_procedure_statements] = STATE(488), - [sym_preproc_ifdef_in_procedure_statements] = STATE(488), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(1082), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6816), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [131] = { + [sym_preproc_include] = STATE(124), + [sym_preproc_def] = STATE(124), + [sym_preproc_function_def] = STATE(124), + [sym_preproc_call] = STATE(124), + [sym_preproc_if_in_specification_part] = STATE(124), + [sym_preproc_ifdef_in_specification_part] = STATE(124), + [sym_preproc_if_in_statements] = STATE(521), + [sym_preproc_ifdef_in_statements] = STATE(521), + [sym_preproc_if_in_procedure_statements] = STATE(521), + [sym_preproc_ifdef_in_procedure_statements] = STATE(521), + [sym_interface] = STATE(124), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4479), + [sym_internal_procedures] = STATE(7049), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(124), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(124), + [sym_public_statement] = STATE(124), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(124), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(488), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1002), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(124), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(124), + [aux_sym_subroutine_repeat1] = STATE(521), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1104), + [aux_sym_end_program_statement_token1] = ACTIONS(1056), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1106), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_end_function_statement_token1] = ACTIONS(1058), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -76539,8 +76305,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1008), - [aux_sym_public_statement_token1] = ACTIONS(1010), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -76578,7 +76344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1098), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -76637,135 +76403,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [133] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(489), - [sym_preproc_ifdef_in_statements] = STATE(489), - [sym_preproc_if_in_procedure_statements] = STATE(489), - [sym_preproc_ifdef_in_procedure_statements] = STATE(489), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(1084), - [sym_internal_procedures] = STATE(6824), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [132] = { + [sym_preproc_include] = STATE(134), + [sym_preproc_def] = STATE(134), + [sym_preproc_function_def] = STATE(134), + [sym_preproc_call] = STATE(134), + [sym_preproc_if_in_specification_part] = STATE(134), + [sym_preproc_ifdef_in_specification_part] = STATE(134), + [sym_preproc_if_in_statements] = STATE(500), + [sym_preproc_ifdef_in_statements] = STATE(500), + [sym_preproc_if_in_procedure_statements] = STATE(500), + [sym_preproc_ifdef_in_procedure_statements] = STATE(500), + [sym_interface] = STATE(134), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4868), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6501), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(134), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(134), + [sym_public_statement] = STATE(134), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(134), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(489), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(134), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(134), + [aux_sym_subroutine_repeat1] = STATE(500), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1110), + [aux_sym_end_program_statement_token1] = ACTIONS(1100), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1102), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1112), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -76773,8 +76539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -76812,7 +76578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1104), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -76871,135 +76637,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [134] = { - [sym_preproc_include] = STATE(137), - [sym_preproc_def] = STATE(137), - [sym_preproc_function_def] = STATE(137), - [sym_preproc_call] = STATE(137), - [sym_preproc_if_in_specification_part] = STATE(137), - [sym_preproc_ifdef_in_specification_part] = STATE(137), - [sym_preproc_if_in_statements] = STATE(475), - [sym_preproc_ifdef_in_statements] = STATE(475), - [sym_preproc_if_in_procedure_statements] = STATE(475), - [sym_preproc_ifdef_in_procedure_statements] = STATE(475), - [sym_interface] = STATE(137), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(1016), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6350), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(137), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(137), - [sym_public_statement] = STATE(137), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(137), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [133] = { + [sym_preproc_include] = STATE(140), + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_specification_part] = STATE(140), + [sym_preproc_ifdef_in_specification_part] = STATE(140), + [sym_preproc_if_in_statements] = STATE(493), + [sym_preproc_ifdef_in_statements] = STATE(493), + [sym_preproc_if_in_procedure_statements] = STATE(493), + [sym_preproc_ifdef_in_procedure_statements] = STATE(493), + [sym_interface] = STATE(140), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(1073), + [sym_internal_procedures] = STATE(6395), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(140), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(140), + [sym_public_statement] = STATE(140), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(140), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(137), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(137), - [aux_sym_subroutine_repeat1] = STATE(475), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1002), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(140), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(140), + [aux_sym_subroutine_repeat1] = STATE(493), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1116), + [aux_sym_end_program_statement_token1] = ACTIONS(1106), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1118), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_end_function_statement_token1] = ACTIONS(1108), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -77007,8 +76773,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1008), - [aux_sym_public_statement_token1] = ACTIONS(1010), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -77046,7 +76812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1110), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -77105,132 +76871,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [135] = { - [sym_preproc_include] = STATE(124), - [sym_preproc_def] = STATE(124), - [sym_preproc_function_def] = STATE(124), - [sym_preproc_call] = STATE(124), - [sym_preproc_if_in_specification_part] = STATE(124), - [sym_preproc_ifdef_in_specification_part] = STATE(124), - [sym_preproc_if_in_statements] = STATE(480), - [sym_preproc_ifdef_in_statements] = STATE(480), - [sym_preproc_if_in_procedure_statements] = STATE(480), - [sym_preproc_ifdef_in_procedure_statements] = STATE(480), - [sym_interface] = STATE(124), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4978), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7070), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(124), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(124), - [sym_public_statement] = STATE(124), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(124), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [134] = { + [sym_preproc_include] = STATE(764), + [sym_preproc_def] = STATE(764), + [sym_preproc_function_def] = STATE(764), + [sym_preproc_call] = STATE(764), + [sym_preproc_if_in_specification_part] = STATE(764), + [sym_preproc_ifdef_in_specification_part] = STATE(764), + [sym_preproc_if_in_statements] = STATE(510), + [sym_preproc_ifdef_in_statements] = STATE(510), + [sym_preproc_if_in_procedure_statements] = STATE(510), + [sym_preproc_ifdef_in_procedure_statements] = STATE(510), + [sym_interface] = STATE(764), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4897), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6542), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(764), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(764), + [sym_public_statement] = STATE(764), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(764), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(124), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(124), - [aux_sym_subroutine_repeat1] = STATE(480), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1002), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(764), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(764), + [aux_sym_subroutine_repeat1] = STATE(510), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1060), + [aux_sym_end_program_statement_token1] = ACTIONS(1100), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1062), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1102), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -77241,8 +77007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1008), - [aux_sym_public_statement_token1] = ACTIONS(1010), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -77280,7 +77046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1112), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -77339,135 +77105,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [136] = { - [sym_preproc_include] = STATE(125), - [sym_preproc_def] = STATE(125), - [sym_preproc_function_def] = STATE(125), - [sym_preproc_call] = STATE(125), - [sym_preproc_if_in_specification_part] = STATE(125), - [sym_preproc_ifdef_in_specification_part] = STATE(125), - [sym_preproc_if_in_statements] = STATE(481), - [sym_preproc_ifdef_in_statements] = STATE(481), - [sym_preproc_if_in_procedure_statements] = STATE(481), - [sym_preproc_ifdef_in_procedure_statements] = STATE(481), - [sym_interface] = STATE(125), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4979), - [sym_internal_procedures] = STATE(6261), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(125), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(125), - [sym_public_statement] = STATE(125), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(125), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [135] = { + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(494), + [sym_preproc_ifdef_in_statements] = STATE(494), + [sym_preproc_if_in_procedure_statements] = STATE(494), + [sym_preproc_ifdef_in_procedure_statements] = STATE(494), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(1028), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6707), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(125), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(125), - [aux_sym_subroutine_repeat1] = STATE(481), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(494), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1002), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1066), + [aux_sym_end_program_statement_token1] = ACTIONS(1090), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1092), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1068), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -77475,8 +77241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1008), + [aux_sym_public_statement_token1] = ACTIONS(1010), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -77514,7 +77280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1114), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -77573,116 +77339,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [137] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(474), - [sym_preproc_ifdef_in_statements] = STATE(474), - [sym_preproc_if_in_procedure_statements] = STATE(474), - [sym_preproc_ifdef_in_procedure_statements] = STATE(474), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(975), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6360), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [136] = { + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(518), + [sym_preproc_ifdef_in_statements] = STATE(518), + [sym_preproc_if_in_procedure_statements] = STATE(518), + [sym_preproc_ifdef_in_procedure_statements] = STATE(518), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(1098), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6634), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(474), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(518), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -77748,7 +77514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1120), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -77807,127 +77573,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [138] = { - [sym_preproc_include] = STATE(176), - [sym_preproc_def] = STATE(176), - [sym_preproc_function_def] = STATE(176), - [sym_preproc_call] = STATE(176), - [sym_preproc_if_in_specification_part] = STATE(176), - [sym_preproc_ifdef_in_specification_part] = STATE(176), - [sym_preproc_if_in_statements] = STATE(492), - [sym_preproc_ifdef_in_statements] = STATE(492), - [sym_preproc_if_in_procedure_statements] = STATE(492), - [sym_preproc_ifdef_in_procedure_statements] = STATE(492), - [sym_interface] = STATE(176), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(993), - [sym_internal_procedures] = STATE(6338), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(176), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(176), - [sym_public_statement] = STATE(176), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(176), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [137] = { + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(519), + [sym_preproc_ifdef_in_statements] = STATE(519), + [sym_preproc_if_in_procedure_statements] = STATE(519), + [sym_preproc_ifdef_in_procedure_statements] = STATE(519), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(952), + [sym_internal_procedures] = STATE(6645), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(176), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(176), - [aux_sym_subroutine_repeat1] = STATE(492), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(519), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1128), + [aux_sym_end_program_statement_token1] = ACTIONS(1122), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -77935,7 +77701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1130), + [aux_sym_end_function_statement_token1] = ACTIONS(1124), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -77943,8 +77709,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -77982,7 +77748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1126), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -78041,116 +77807,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [139] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(473), - [sym_preproc_ifdef_in_statements] = STATE(473), - [sym_preproc_if_in_procedure_statements] = STATE(473), - [sym_preproc_ifdef_in_procedure_statements] = STATE(473), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(884), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6807), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [138] = { + [sym_preproc_include] = STATE(125), + [sym_preproc_def] = STATE(125), + [sym_preproc_function_def] = STATE(125), + [sym_preproc_call] = STATE(125), + [sym_preproc_if_in_specification_part] = STATE(125), + [sym_preproc_ifdef_in_specification_part] = STATE(125), + [sym_preproc_if_in_statements] = STATE(526), + [sym_preproc_ifdef_in_statements] = STATE(526), + [sym_preproc_if_in_procedure_statements] = STATE(526), + [sym_preproc_ifdef_in_procedure_statements] = STATE(526), + [sym_interface] = STATE(125), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(5040), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6953), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(125), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(125), + [sym_public_statement] = STATE(125), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(125), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(473), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(125), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(125), + [aux_sym_subroutine_repeat1] = STATE(526), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -78161,11 +77927,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1072), + [aux_sym_end_program_statement_token1] = ACTIONS(1066), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1074), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1068), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -78216,7 +77982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1128), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -78275,135 +78041,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [140] = { - [sym_preproc_include] = STATE(763), - [sym_preproc_def] = STATE(763), - [sym_preproc_function_def] = STATE(763), - [sym_preproc_call] = STATE(763), - [sym_preproc_if_in_specification_part] = STATE(763), - [sym_preproc_ifdef_in_specification_part] = STATE(763), - [sym_preproc_if_in_statements] = STATE(476), - [sym_preproc_ifdef_in_statements] = STATE(476), - [sym_preproc_if_in_procedure_statements] = STATE(476), - [sym_preproc_ifdef_in_procedure_statements] = STATE(476), - [sym_interface] = STATE(763), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4837), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6974), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(763), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(763), - [sym_public_statement] = STATE(763), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(763), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [139] = { + [sym_preproc_include] = STATE(126), + [sym_preproc_def] = STATE(126), + [sym_preproc_function_def] = STATE(126), + [sym_preproc_call] = STATE(126), + [sym_preproc_if_in_specification_part] = STATE(126), + [sym_preproc_ifdef_in_specification_part] = STATE(126), + [sym_preproc_if_in_statements] = STATE(532), + [sym_preproc_ifdef_in_statements] = STATE(532), + [sym_preproc_if_in_procedure_statements] = STATE(532), + [sym_preproc_ifdef_in_procedure_statements] = STATE(532), + [sym_interface] = STATE(126), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(5041), + [sym_internal_procedures] = STATE(6991), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(126), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(126), + [sym_public_statement] = STATE(126), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(126), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(763), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(763), - [aux_sym_subroutine_repeat1] = STATE(476), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(126), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(126), + [aux_sym_subroutine_repeat1] = STATE(532), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1054), + [aux_sym_end_program_statement_token1] = ACTIONS(1072), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1056), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_end_function_statement_token1] = ACTIONS(1074), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -78411,8 +78177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -78450,7 +78216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1130), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -78509,135 +78275,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [141] = { - [sym_preproc_include] = STATE(187), - [sym_preproc_def] = STATE(187), - [sym_preproc_function_def] = STATE(187), - [sym_preproc_call] = STATE(187), - [sym_preproc_if_in_specification_part] = STATE(187), - [sym_preproc_ifdef_in_specification_part] = STATE(187), - [sym_preproc_if_in_statements] = STATE(490), - [sym_preproc_ifdef_in_statements] = STATE(490), - [sym_preproc_if_in_procedure_statements] = STATE(490), - [sym_preproc_ifdef_in_procedure_statements] = STATE(490), - [sym_interface] = STATE(187), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4445), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6996), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(187), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(187), - [sym_public_statement] = STATE(187), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(187), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [140] = { + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(540), + [sym_preproc_ifdef_in_statements] = STATE(540), + [sym_preproc_if_in_procedure_statements] = STATE(540), + [sym_preproc_ifdef_in_procedure_statements] = STATE(540), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(1036), + [sym_internal_procedures] = STATE(6477), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(187), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(187), - [aux_sym_subroutine_repeat1] = STATE(490), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(540), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1138), + [aux_sym_end_program_statement_token1] = ACTIONS(1106), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1140), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_end_function_statement_token1] = ACTIONS(1108), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -78645,8 +78411,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -78684,7 +78450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1132), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -78743,122 +78509,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [142] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(508), - [sym_preproc_ifdef_in_statements] = STATE(508), - [sym_preproc_if_in_procedure_statements] = STATE(508), - [sym_preproc_ifdef_in_procedure_statements] = STATE(508), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(886), - [sym_internal_procedures] = STATE(6871), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [141] = { + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(477), + [sym_preproc_ifdef_in_statements] = STATE(477), + [sym_preproc_if_in_procedure_statements] = STATE(477), + [sym_preproc_ifdef_in_procedure_statements] = STATE(477), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(849), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6918), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(508), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(477), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1002), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -78867,11 +78633,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1080), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1080), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -78879,8 +78645,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1008), + [aux_sym_public_statement_token1] = ACTIONS(1010), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -78918,7 +78684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1134), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -78977,132 +78743,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [143] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(532), - [sym_preproc_ifdef_in_statements] = STATE(532), - [sym_preproc_if_in_procedure_statements] = STATE(532), - [sym_preproc_ifdef_in_procedure_statements] = STATE(532), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4492), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6641), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [142] = { + [sym_preproc_include] = STATE(187), + [sym_preproc_def] = STATE(187), + [sym_preproc_function_def] = STATE(187), + [sym_preproc_call] = STATE(187), + [sym_preproc_if_in_specification_part] = STATE(187), + [sym_preproc_ifdef_in_specification_part] = STATE(187), + [sym_preproc_if_in_statements] = STATE(524), + [sym_preproc_ifdef_in_statements] = STATE(524), + [sym_preproc_if_in_procedure_statements] = STATE(524), + [sym_preproc_ifdef_in_procedure_statements] = STATE(524), + [sym_interface] = STATE(187), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4383), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6730), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(187), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(187), + [sym_public_statement] = STATE(187), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(187), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(532), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1002), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(187), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(187), + [aux_sym_subroutine_repeat1] = STATE(524), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1084), + [aux_sym_end_program_statement_token1] = ACTIONS(1136), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1086), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1138), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -79113,8 +78879,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1008), - [aux_sym_public_statement_token1] = ACTIONS(1010), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -79152,7 +78918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1140), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -79211,132 +78977,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [144] = { - [sym_preproc_include] = STATE(122), - [sym_preproc_def] = STATE(122), - [sym_preproc_function_def] = STATE(122), - [sym_preproc_call] = STATE(122), - [sym_preproc_if_in_specification_part] = STATE(122), - [sym_preproc_ifdef_in_specification_part] = STATE(122), - [sym_preproc_if_in_statements] = STATE(478), - [sym_preproc_ifdef_in_statements] = STATE(478), - [sym_preproc_if_in_procedure_statements] = STATE(478), - [sym_preproc_ifdef_in_procedure_statements] = STATE(478), - [sym_interface] = STATE(122), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4877), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7063), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(122), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(122), - [sym_public_statement] = STATE(122), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(122), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [143] = { + [sym_preproc_include] = STATE(764), + [sym_preproc_def] = STATE(764), + [sym_preproc_function_def] = STATE(764), + [sym_preproc_call] = STATE(764), + [sym_preproc_if_in_specification_part] = STATE(764), + [sym_preproc_ifdef_in_specification_part] = STATE(764), + [sym_preproc_if_in_statements] = STATE(476), + [sym_preproc_ifdef_in_statements] = STATE(476), + [sym_preproc_if_in_procedure_statements] = STATE(476), + [sym_preproc_ifdef_in_procedure_statements] = STATE(476), + [sym_interface] = STATE(764), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4914), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6729), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(764), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(764), + [sym_public_statement] = STATE(764), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(764), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(122), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(122), - [aux_sym_subroutine_repeat1] = STATE(478), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(764), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(764), + [aux_sym_subroutine_repeat1] = STATE(476), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1044), + [aux_sym_end_program_statement_token1] = ACTIONS(1030), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1046), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1032), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -79347,8 +79113,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -79386,7 +79152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1142), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -79445,132 +79211,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [145] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(495), - [sym_preproc_ifdef_in_statements] = STATE(495), - [sym_preproc_if_in_procedure_statements] = STATE(495), - [sym_preproc_ifdef_in_procedure_statements] = STATE(495), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4969), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6259), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [144] = { + [sym_preproc_include] = STATE(123), + [sym_preproc_def] = STATE(123), + [sym_preproc_function_def] = STATE(123), + [sym_preproc_call] = STATE(123), + [sym_preproc_if_in_specification_part] = STATE(123), + [sym_preproc_ifdef_in_specification_part] = STATE(123), + [sym_preproc_if_in_statements] = STATE(492), + [sym_preproc_ifdef_in_statements] = STATE(492), + [sym_preproc_if_in_procedure_statements] = STATE(492), + [sym_preproc_ifdef_in_procedure_statements] = STATE(492), + [sym_interface] = STATE(123), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(5007), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6510), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(123), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(123), + [sym_public_statement] = STATE(123), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(123), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(495), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1002), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(123), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(123), + [aux_sym_subroutine_repeat1] = STATE(492), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1150), + [aux_sym_end_program_statement_token1] = ACTIONS(1040), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1152), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1042), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -79581,8 +79347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1008), - [aux_sym_public_statement_token1] = ACTIONS(1010), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -79620,7 +79386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1144), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -79679,127 +79445,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [146] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(496), - [sym_preproc_ifdef_in_statements] = STATE(496), - [sym_preproc_if_in_procedure_statements] = STATE(496), - [sym_preproc_ifdef_in_procedure_statements] = STATE(496), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4971), - [sym_internal_procedures] = STATE(6264), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [145] = { + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(484), + [sym_preproc_ifdef_in_statements] = STATE(484), + [sym_preproc_if_in_procedure_statements] = STATE(484), + [sym_preproc_ifdef_in_procedure_statements] = STATE(484), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(856), + [sym_internal_procedures] = STATE(6952), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(496), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(484), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1156), + [aux_sym_end_program_statement_token1] = ACTIONS(1084), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -79807,7 +79573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1158), + [aux_sym_end_function_statement_token1] = ACTIONS(1086), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -79815,8 +79581,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -79854,7 +79620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1146), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -79913,116 +79679,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [147] = { - [sym_preproc_include] = STATE(132), - [sym_preproc_def] = STATE(132), - [sym_preproc_function_def] = STATE(132), - [sym_preproc_call] = STATE(132), - [sym_preproc_if_in_specification_part] = STATE(132), - [sym_preproc_ifdef_in_specification_part] = STATE(132), - [sym_preproc_if_in_statements] = STATE(486), - [sym_preproc_ifdef_in_statements] = STATE(486), - [sym_preproc_if_in_procedure_statements] = STATE(486), - [sym_preproc_ifdef_in_procedure_statements] = STATE(486), - [sym_interface] = STATE(132), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(1074), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6799), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(132), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(132), - [sym_public_statement] = STATE(132), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(132), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [146] = { + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(529), + [sym_preproc_ifdef_in_statements] = STATE(529), + [sym_preproc_if_in_procedure_statements] = STATE(529), + [sym_preproc_ifdef_in_procedure_statements] = STATE(529), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4813), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6789), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(132), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(132), - [aux_sym_subroutine_repeat1] = STATE(486), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(529), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -80033,11 +79799,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1104), + [aux_sym_end_program_statement_token1] = ACTIONS(1148), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1106), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1150), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -80088,7 +79854,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1152), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(117), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(183), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [147] = { + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(531), + [sym_preproc_ifdef_in_statements] = STATE(531), + [sym_preproc_if_in_procedure_statements] = STATE(531), + [sym_preproc_ifdef_in_procedure_statements] = STATE(531), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4815), + [sym_internal_procedures] = STATE(6797), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(531), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(1154), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_end_function_statement_token1] = ACTIONS(1156), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(758), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(758), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(1158), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -80148,134 +80148,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [148] = { - [sym_preproc_include] = STATE(133), - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_specification_part] = STATE(133), - [sym_preproc_ifdef_in_specification_part] = STATE(133), - [sym_preproc_if_in_statements] = STATE(487), - [sym_preproc_ifdef_in_statements] = STATE(487), - [sym_preproc_if_in_procedure_statements] = STATE(487), - [sym_preproc_ifdef_in_procedure_statements] = STATE(487), - [sym_interface] = STATE(133), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(1075), - [sym_internal_procedures] = STATE(6805), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(133), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(133), - [sym_public_statement] = STATE(133), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(133), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(136), + [sym_preproc_def] = STATE(136), + [sym_preproc_function_def] = STATE(136), + [sym_preproc_call] = STATE(136), + [sym_preproc_if_in_specification_part] = STATE(136), + [sym_preproc_ifdef_in_specification_part] = STATE(136), + [sym_preproc_if_in_statements] = STATE(516), + [sym_preproc_ifdef_in_statements] = STATE(516), + [sym_preproc_if_in_procedure_statements] = STATE(516), + [sym_preproc_ifdef_in_procedure_statements] = STATE(516), + [sym_interface] = STATE(136), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(944), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6624), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(136), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(136), + [sym_public_statement] = STATE(136), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(136), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(133), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(133), - [aux_sym_subroutine_repeat1] = STATE(487), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(136), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(136), + [aux_sym_subroutine_repeat1] = STATE(516), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1002), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1110), + [aux_sym_end_program_statement_token1] = ACTIONS(1116), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1118), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1112), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -80283,8 +80283,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1008), + [aux_sym_public_statement_token1] = ACTIONS(1010), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -80322,7 +80322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1160), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -80382,126 +80382,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [149] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(533), - [sym_preproc_ifdef_in_statements] = STATE(533), - [sym_preproc_if_in_procedure_statements] = STATE(533), - [sym_preproc_ifdef_in_procedure_statements] = STATE(533), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4496), - [sym_internal_procedures] = STATE(6681), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(137), + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_specification_part] = STATE(137), + [sym_preproc_ifdef_in_specification_part] = STATE(137), + [sym_preproc_if_in_statements] = STATE(517), + [sym_preproc_ifdef_in_statements] = STATE(517), + [sym_preproc_if_in_procedure_statements] = STATE(517), + [sym_preproc_ifdef_in_procedure_statements] = STATE(517), + [sym_interface] = STATE(137), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(945), + [sym_internal_procedures] = STATE(6629), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(137), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(137), + [sym_public_statement] = STATE(137), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(137), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(533), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(137), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(137), + [aux_sym_subroutine_repeat1] = STATE(517), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1090), + [aux_sym_end_program_statement_token1] = ACTIONS(1122), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -80509,7 +80509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1092), + [aux_sym_end_function_statement_token1] = ACTIONS(1124), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -80517,8 +80517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -80556,7 +80556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1162), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -80622,125 +80622,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(151), [sym_preproc_if_in_specification_part] = STATE(151), [sym_preproc_ifdef_in_specification_part] = STATE(151), - [sym_preproc_if_in_statements] = STATE(497), - [sym_preproc_ifdef_in_statements] = STATE(497), - [sym_preproc_if_in_procedure_statements] = STATE(497), - [sym_preproc_ifdef_in_procedure_statements] = STATE(497), + [sym_preproc_if_in_statements] = STATE(537), + [sym_preproc_ifdef_in_statements] = STATE(537), + [sym_preproc_if_in_procedure_statements] = STATE(537), + [sym_preproc_ifdef_in_procedure_statements] = STATE(537), [sym_interface] = STATE(151), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(5045), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6304), - [sym_contains_statement] = STATE(6461), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4973), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6876), + [sym_contains_statement] = STATE(6366), [sym__specification_part] = STATE(151), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), [sym_private_statement] = STATE(151), [sym_public_statement] = STATE(151), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), [sym_derived_type_definition] = STATE(151), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), [sym_enum] = STATE(151), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(151), - [aux_sym_subroutine_repeat1] = STATE(497), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [aux_sym_subroutine_repeat1] = STATE(537), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1168), + [aux_sym_end_program_statement_token1] = ACTIONS(1164), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1170), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1166), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -80751,8 +80751,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -80790,7 +80790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1168), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -80850,131 +80850,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [151] = { - [sym_preproc_include] = STATE(763), - [sym_preproc_def] = STATE(763), - [sym_preproc_function_def] = STATE(763), - [sym_preproc_call] = STATE(763), - [sym_preproc_if_in_specification_part] = STATE(763), - [sym_preproc_ifdef_in_specification_part] = STATE(763), - [sym_preproc_if_in_statements] = STATE(498), - [sym_preproc_ifdef_in_statements] = STATE(498), - [sym_preproc_if_in_procedure_statements] = STATE(498), - [sym_preproc_ifdef_in_procedure_statements] = STATE(498), - [sym_interface] = STATE(763), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4881), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6310), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(763), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(763), - [sym_public_statement] = STATE(763), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(763), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [sym_preproc_include] = STATE(764), + [sym_preproc_def] = STATE(764), + [sym_preproc_function_def] = STATE(764), + [sym_preproc_call] = STATE(764), + [sym_preproc_if_in_specification_part] = STATE(764), + [sym_preproc_ifdef_in_specification_part] = STATE(764), + [sym_preproc_if_in_statements] = STATE(538), + [sym_preproc_ifdef_in_statements] = STATE(538), + [sym_preproc_if_in_procedure_statements] = STATE(538), + [sym_preproc_ifdef_in_procedure_statements] = STATE(538), + [sym_interface] = STATE(764), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(5025), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6897), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(764), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(764), + [sym_public_statement] = STATE(764), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(764), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(763), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(763), - [aux_sym_subroutine_repeat1] = STATE(498), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(764), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(764), + [aux_sym_subroutine_repeat1] = STATE(538), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1168), + [aux_sym_end_program_statement_token1] = ACTIONS(1164), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1170), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1166), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -80985,8 +80985,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -81024,7 +81024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1170), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -81084,115 +81084,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [152] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(501), - [sym_preproc_ifdef_in_statements] = STATE(501), - [sym_preproc_if_in_procedure_statements] = STATE(501), - [sym_preproc_ifdef_in_procedure_statements] = STATE(501), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4839), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6326), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(473), + [sym_preproc_ifdef_in_statements] = STATE(473), + [sym_preproc_if_in_procedure_statements] = STATE(473), + [sym_preproc_ifdef_in_procedure_statements] = STATE(473), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4904), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6959), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(501), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(473), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -81203,11 +81203,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1176), + [aux_sym_end_program_statement_token1] = ACTIONS(1172), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1178), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1174), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -81258,7 +81258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1176), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -81318,126 +81318,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [153] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(502), - [sym_preproc_ifdef_in_statements] = STATE(502), - [sym_preproc_if_in_procedure_statements] = STATE(502), - [sym_preproc_ifdef_in_procedure_statements] = STATE(502), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4841), - [sym_internal_procedures] = STATE(6329), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(474), + [sym_preproc_ifdef_in_statements] = STATE(474), + [sym_preproc_if_in_procedure_statements] = STATE(474), + [sym_preproc_ifdef_in_procedure_statements] = STATE(474), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4906), + [sym_internal_procedures] = STATE(6963), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(502), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(474), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1182), + [aux_sym_end_program_statement_token1] = ACTIONS(1178), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -81445,7 +81445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1184), + [aux_sym_end_function_statement_token1] = ACTIONS(1180), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -81453,8 +81453,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -81492,7 +81492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1182), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -81552,115 +81552,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [154] = { - [sym_preproc_include] = STATE(145), - [sym_preproc_def] = STATE(145), - [sym_preproc_function_def] = STATE(145), - [sym_preproc_call] = STATE(145), - [sym_preproc_if_in_specification_part] = STATE(145), - [sym_preproc_ifdef_in_specification_part] = STATE(145), - [sym_preproc_if_in_statements] = STATE(493), - [sym_preproc_ifdef_in_statements] = STATE(493), - [sym_preproc_if_in_procedure_statements] = STATE(493), - [sym_preproc_ifdef_in_procedure_statements] = STATE(493), - [sym_interface] = STATE(145), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4878), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6253), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(145), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(145), - [sym_public_statement] = STATE(145), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(145), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_preproc_include] = STATE(146), + [sym_preproc_def] = STATE(146), + [sym_preproc_function_def] = STATE(146), + [sym_preproc_call] = STATE(146), + [sym_preproc_if_in_specification_part] = STATE(146), + [sym_preproc_ifdef_in_specification_part] = STATE(146), + [sym_preproc_if_in_statements] = STATE(527), + [sym_preproc_ifdef_in_statements] = STATE(527), + [sym_preproc_if_in_procedure_statements] = STATE(527), + [sym_preproc_ifdef_in_procedure_statements] = STATE(527), + [sym_interface] = STATE(146), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4809), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6777), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(146), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(146), + [sym_public_statement] = STATE(146), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(146), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(145), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(145), - [aux_sym_subroutine_repeat1] = STATE(493), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(146), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(146), + [aux_sym_subroutine_repeat1] = STATE(527), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -81671,11 +81671,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1150), + [aux_sym_end_program_statement_token1] = ACTIONS(1148), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1152), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1150), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -81726,7 +81726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1184), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -81786,126 +81786,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [155] = { - [sym_preproc_include] = STATE(146), - [sym_preproc_def] = STATE(146), - [sym_preproc_function_def] = STATE(146), - [sym_preproc_call] = STATE(146), - [sym_preproc_if_in_specification_part] = STATE(146), - [sym_preproc_ifdef_in_specification_part] = STATE(146), - [sym_preproc_if_in_statements] = STATE(494), - [sym_preproc_ifdef_in_statements] = STATE(494), - [sym_preproc_if_in_procedure_statements] = STATE(494), - [sym_preproc_ifdef_in_procedure_statements] = STATE(494), - [sym_interface] = STATE(146), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4883), - [sym_internal_procedures] = STATE(6255), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(146), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(146), - [sym_public_statement] = STATE(146), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(146), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(147), + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_specification_part] = STATE(147), + [sym_preproc_ifdef_in_specification_part] = STATE(147), + [sym_preproc_if_in_statements] = STATE(528), + [sym_preproc_ifdef_in_statements] = STATE(528), + [sym_preproc_if_in_procedure_statements] = STATE(528), + [sym_preproc_ifdef_in_procedure_statements] = STATE(528), + [sym_interface] = STATE(147), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4810), + [sym_internal_procedures] = STATE(6783), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(147), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(147), + [sym_public_statement] = STATE(147), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(147), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(146), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(146), - [aux_sym_subroutine_repeat1] = STATE(494), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(147), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(147), + [aux_sym_subroutine_repeat1] = STATE(528), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1156), + [aux_sym_end_program_statement_token1] = ACTIONS(1154), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -81913,7 +81913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1158), + [aux_sym_end_function_statement_token1] = ACTIONS(1156), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -81921,8 +81921,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -81960,7 +81960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1186), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -82026,125 +82026,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(157), [sym_preproc_if_in_specification_part] = STATE(157), [sym_preproc_ifdef_in_specification_part] = STATE(157), - [sym_preproc_if_in_statements] = STATE(504), - [sym_preproc_ifdef_in_statements] = STATE(504), - [sym_preproc_if_in_procedure_statements] = STATE(504), - [sym_preproc_ifdef_in_procedure_statements] = STATE(504), + [sym_preproc_if_in_statements] = STATE(478), + [sym_preproc_ifdef_in_statements] = STATE(478), + [sym_preproc_if_in_procedure_statements] = STATE(478), + [sym_preproc_ifdef_in_procedure_statements] = STATE(478), [sym_interface] = STATE(157), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4776), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6365), - [sym_contains_statement] = STATE(6461), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4829), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6251), + [sym_contains_statement] = STATE(6366), [sym__specification_part] = STATE(157), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), [sym_private_statement] = STATE(157), [sym_public_statement] = STATE(157), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), [sym_derived_type_definition] = STATE(157), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), [sym_enum] = STATE(157), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(157), - [aux_sym_subroutine_repeat1] = STATE(504), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [aux_sym_subroutine_repeat1] = STATE(478), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1192), + [aux_sym_end_program_statement_token1] = ACTIONS(1188), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1194), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1190), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -82155,8 +82155,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -82194,7 +82194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1192), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -82254,131 +82254,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [157] = { - [sym_preproc_include] = STATE(763), - [sym_preproc_def] = STATE(763), - [sym_preproc_function_def] = STATE(763), - [sym_preproc_call] = STATE(763), - [sym_preproc_if_in_specification_part] = STATE(763), - [sym_preproc_ifdef_in_specification_part] = STATE(763), - [sym_preproc_if_in_statements] = STATE(505), - [sym_preproc_ifdef_in_statements] = STATE(505), - [sym_preproc_if_in_procedure_statements] = STATE(505), - [sym_preproc_ifdef_in_procedure_statements] = STATE(505), - [sym_interface] = STATE(763), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4787), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6372), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(763), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(763), - [sym_public_statement] = STATE(763), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(763), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [sym_preproc_include] = STATE(764), + [sym_preproc_def] = STATE(764), + [sym_preproc_function_def] = STATE(764), + [sym_preproc_call] = STATE(764), + [sym_preproc_if_in_specification_part] = STATE(764), + [sym_preproc_ifdef_in_specification_part] = STATE(764), + [sym_preproc_if_in_statements] = STATE(480), + [sym_preproc_ifdef_in_statements] = STATE(480), + [sym_preproc_if_in_procedure_statements] = STATE(480), + [sym_preproc_ifdef_in_procedure_statements] = STATE(480), + [sym_interface] = STATE(764), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4840), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6260), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(764), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(764), + [sym_public_statement] = STATE(764), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(764), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(763), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(763), - [aux_sym_subroutine_repeat1] = STATE(505), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(764), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(764), + [aux_sym_subroutine_repeat1] = STATE(480), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1192), + [aux_sym_end_program_statement_token1] = ACTIONS(1188), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1194), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1190), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -82389,8 +82389,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -82428,7 +82428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1194), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -82488,115 +82488,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [158] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(472), - [sym_preproc_ifdef_in_statements] = STATE(472), - [sym_preproc_if_in_procedure_statements] = STATE(472), - [sym_preproc_ifdef_in_procedure_statements] = STATE(472), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4610), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6387), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(482), + [sym_preproc_ifdef_in_statements] = STATE(482), + [sym_preproc_if_in_procedure_statements] = STATE(482), + [sym_preproc_ifdef_in_procedure_statements] = STATE(482), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4617), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6282), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(472), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(482), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -82607,11 +82607,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1200), + [aux_sym_end_program_statement_token1] = ACTIONS(1196), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1202), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1198), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -82662,7 +82662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1200), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -82722,126 +82722,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [159] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(509), - [sym_preproc_ifdef_in_statements] = STATE(509), - [sym_preproc_if_in_procedure_statements] = STATE(509), - [sym_preproc_ifdef_in_procedure_statements] = STATE(509), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4612), - [sym_internal_procedures] = STATE(6390), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(483), + [sym_preproc_ifdef_in_statements] = STATE(483), + [sym_preproc_if_in_procedure_statements] = STATE(483), + [sym_preproc_ifdef_in_procedure_statements] = STATE(483), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4619), + [sym_internal_procedures] = STATE(6286), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(509), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(483), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1206), + [aux_sym_end_program_statement_token1] = ACTIONS(1202), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -82849,7 +82849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1208), + [aux_sym_end_function_statement_token1] = ACTIONS(1204), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -82857,8 +82857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -82896,7 +82896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1206), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -82962,109 +82962,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(152), [sym_preproc_if_in_specification_part] = STATE(152), [sym_preproc_ifdef_in_specification_part] = STATE(152), - [sym_preproc_if_in_statements] = STATE(499), - [sym_preproc_ifdef_in_statements] = STATE(499), - [sym_preproc_if_in_procedure_statements] = STATE(499), - [sym_preproc_ifdef_in_procedure_statements] = STATE(499), + [sym_preproc_if_in_statements] = STATE(539), + [sym_preproc_ifdef_in_statements] = STATE(539), + [sym_preproc_if_in_procedure_statements] = STATE(539), + [sym_preproc_ifdef_in_procedure_statements] = STATE(539), [sym_interface] = STATE(152), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4833), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6321), - [sym_contains_statement] = STATE(6272), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4898), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6936), + [sym_contains_statement] = STATE(6815), [sym__specification_part] = STATE(152), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), [sym_private_statement] = STATE(152), [sym_public_statement] = STATE(152), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), [sym_derived_type_definition] = STATE(152), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), [sym_enum] = STATE(152), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(152), - [aux_sym_subroutine_repeat1] = STATE(499), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_subroutine_repeat1] = STATE(539), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -83075,11 +83075,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1176), + [aux_sym_end_program_statement_token1] = ACTIONS(1172), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1178), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1174), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -83130,7 +83130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1208), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -83196,120 +83196,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(153), [sym_preproc_if_in_specification_part] = STATE(153), [sym_preproc_ifdef_in_specification_part] = STATE(153), - [sym_preproc_if_in_statements] = STATE(500), - [sym_preproc_ifdef_in_statements] = STATE(500), - [sym_preproc_if_in_procedure_statements] = STATE(500), - [sym_preproc_ifdef_in_procedure_statements] = STATE(500), + [sym_preproc_if_in_statements] = STATE(505), + [sym_preproc_ifdef_in_statements] = STATE(505), + [sym_preproc_if_in_procedure_statements] = STATE(505), + [sym_preproc_ifdef_in_procedure_statements] = STATE(505), [sym_interface] = STATE(153), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4834), - [sym_internal_procedures] = STATE(6323), - [sym_contains_statement] = STATE(6336), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4899), + [sym_internal_procedures] = STATE(6950), + [sym_contains_statement] = STATE(6981), [sym__specification_part] = STATE(153), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), [sym_private_statement] = STATE(153), [sym_public_statement] = STATE(153), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), [sym_derived_type_definition] = STATE(153), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), [sym_enum] = STATE(153), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(153), - [aux_sym_subroutine_repeat1] = STATE(500), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [aux_sym_subroutine_repeat1] = STATE(505), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1182), + [aux_sym_end_program_statement_token1] = ACTIONS(1178), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -83317,7 +83317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1184), + [aux_sym_end_function_statement_token1] = ACTIONS(1180), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -83325,8 +83325,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -83364,7 +83364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1210), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -83430,125 +83430,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(163), [sym_preproc_if_in_specification_part] = STATE(163), [sym_preproc_ifdef_in_specification_part] = STATE(163), - [sym_preproc_if_in_statements] = STATE(510), - [sym_preproc_ifdef_in_statements] = STATE(510), - [sym_preproc_if_in_procedure_statements] = STATE(510), - [sym_preproc_ifdef_in_procedure_statements] = STATE(510), + [sym_preproc_if_in_statements] = STATE(485), + [sym_preproc_ifdef_in_statements] = STATE(485), + [sym_preproc_if_in_procedure_statements] = STATE(485), + [sym_preproc_ifdef_in_procedure_statements] = STATE(485), [sym_interface] = STATE(163), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4650), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6429), - [sym_contains_statement] = STATE(6461), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4750), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6326), + [sym_contains_statement] = STATE(6366), [sym__specification_part] = STATE(163), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), [sym_private_statement] = STATE(163), [sym_public_statement] = STATE(163), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), [sym_derived_type_definition] = STATE(163), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), [sym_enum] = STATE(163), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(163), - [aux_sym_subroutine_repeat1] = STATE(510), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [aux_sym_subroutine_repeat1] = STATE(485), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1216), + [aux_sym_end_program_statement_token1] = ACTIONS(1212), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1218), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1214), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -83559,8 +83559,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -83598,7 +83598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1216), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -83658,131 +83658,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [163] = { - [sym_preproc_include] = STATE(763), - [sym_preproc_def] = STATE(763), - [sym_preproc_function_def] = STATE(763), - [sym_preproc_call] = STATE(763), - [sym_preproc_if_in_specification_part] = STATE(763), - [sym_preproc_ifdef_in_specification_part] = STATE(763), - [sym_preproc_if_in_statements] = STATE(540), - [sym_preproc_ifdef_in_statements] = STATE(540), - [sym_preproc_if_in_procedure_statements] = STATE(540), - [sym_preproc_ifdef_in_procedure_statements] = STATE(540), - [sym_interface] = STATE(763), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4656), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6437), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(763), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(763), - [sym_public_statement] = STATE(763), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(763), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [sym_preproc_include] = STATE(764), + [sym_preproc_def] = STATE(764), + [sym_preproc_function_def] = STATE(764), + [sym_preproc_call] = STATE(764), + [sym_preproc_if_in_specification_part] = STATE(764), + [sym_preproc_ifdef_in_specification_part] = STATE(764), + [sym_preproc_if_in_statements] = STATE(486), + [sym_preproc_ifdef_in_statements] = STATE(486), + [sym_preproc_if_in_procedure_statements] = STATE(486), + [sym_preproc_ifdef_in_procedure_statements] = STATE(486), + [sym_interface] = STATE(764), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4651), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6335), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(764), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(764), + [sym_public_statement] = STATE(764), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(764), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(763), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(763), - [aux_sym_subroutine_repeat1] = STATE(540), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(764), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(764), + [aux_sym_subroutine_repeat1] = STATE(486), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1216), + [aux_sym_end_program_statement_token1] = ACTIONS(1212), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1218), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1214), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -83793,8 +83793,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -83832,7 +83832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1218), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -83892,115 +83892,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [164] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(513), - [sym_preproc_ifdef_in_statements] = STATE(513), - [sym_preproc_if_in_procedure_statements] = STATE(513), - [sym_preproc_ifdef_in_procedure_statements] = STATE(513), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4405), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6451), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(489), + [sym_preproc_ifdef_in_statements] = STATE(489), + [sym_preproc_if_in_procedure_statements] = STATE(489), + [sym_preproc_ifdef_in_procedure_statements] = STATE(489), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4517), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6354), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(513), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(489), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -84011,11 +84011,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1224), + [aux_sym_end_program_statement_token1] = ACTIONS(1220), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1226), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1222), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -84066,7 +84066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1224), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -84126,126 +84126,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [165] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(514), - [sym_preproc_ifdef_in_statements] = STATE(514), - [sym_preproc_if_in_procedure_statements] = STATE(514), - [sym_preproc_ifdef_in_procedure_statements] = STATE(514), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4407), - [sym_internal_procedures] = STATE(6454), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(490), + [sym_preproc_ifdef_in_statements] = STATE(490), + [sym_preproc_if_in_procedure_statements] = STATE(490), + [sym_preproc_ifdef_in_procedure_statements] = STATE(490), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4446), + [sym_internal_procedures] = STATE(6358), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(514), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(490), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1230), + [aux_sym_end_program_statement_token1] = ACTIONS(1226), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -84253,7 +84253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1232), + [aux_sym_end_function_statement_token1] = ACTIONS(1228), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -84261,8 +84261,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -84300,7 +84300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1230), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -84366,109 +84366,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(158), [sym_preproc_if_in_specification_part] = STATE(158), [sym_preproc_ifdef_in_specification_part] = STATE(158), - [sym_preproc_if_in_statements] = STATE(506), - [sym_preproc_ifdef_in_statements] = STATE(506), - [sym_preproc_if_in_procedure_statements] = STATE(506), - [sym_preproc_ifdef_in_procedure_statements] = STATE(506), + [sym_preproc_if_in_statements] = STATE(481), + [sym_preproc_ifdef_in_statements] = STATE(481), + [sym_preproc_if_in_procedure_statements] = STATE(481), + [sym_preproc_ifdef_in_procedure_statements] = STATE(481), [sym_interface] = STATE(158), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4605), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6382), - [sym_contains_statement] = STATE(6272), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4613), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6274), + [sym_contains_statement] = STATE(6815), [sym__specification_part] = STATE(158), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), [sym_private_statement] = STATE(158), [sym_public_statement] = STATE(158), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), [sym_derived_type_definition] = STATE(158), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), [sym_enum] = STATE(158), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(158), - [aux_sym_subroutine_repeat1] = STATE(506), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_subroutine_repeat1] = STATE(481), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -84479,11 +84479,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1200), + [aux_sym_end_program_statement_token1] = ACTIONS(1196), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1202), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1198), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -84534,7 +84534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1232), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -84600,120 +84600,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(159), [sym_preproc_if_in_specification_part] = STATE(159), [sym_preproc_ifdef_in_specification_part] = STATE(159), - [sym_preproc_if_in_statements] = STATE(507), - [sym_preproc_ifdef_in_statements] = STATE(507), - [sym_preproc_if_in_procedure_statements] = STATE(507), - [sym_preproc_ifdef_in_procedure_statements] = STATE(507), + [sym_preproc_if_in_statements] = STATE(472), + [sym_preproc_ifdef_in_statements] = STATE(472), + [sym_preproc_if_in_procedure_statements] = STATE(472), + [sym_preproc_ifdef_in_procedure_statements] = STATE(472), [sym_interface] = STATE(159), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4606), - [sym_internal_procedures] = STATE(6383), - [sym_contains_statement] = STATE(6336), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4614), + [sym_internal_procedures] = STATE(6278), + [sym_contains_statement] = STATE(6981), [sym__specification_part] = STATE(159), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), [sym_private_statement] = STATE(159), [sym_public_statement] = STATE(159), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), [sym_derived_type_definition] = STATE(159), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), [sym_enum] = STATE(159), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(159), - [aux_sym_subroutine_repeat1] = STATE(507), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [aux_sym_subroutine_repeat1] = STATE(472), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1206), + [aux_sym_end_program_statement_token1] = ACTIONS(1202), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -84721,7 +84721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1208), + [aux_sym_end_function_statement_token1] = ACTIONS(1204), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -84729,8 +84729,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -84768,7 +84768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1234), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -84834,125 +84834,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(169), [sym_preproc_if_in_specification_part] = STATE(169), [sym_preproc_ifdef_in_specification_part] = STATE(169), - [sym_preproc_if_in_statements] = STATE(515), - [sym_preproc_ifdef_in_statements] = STATE(515), - [sym_preproc_if_in_procedure_statements] = STATE(515), - [sym_preproc_ifdef_in_procedure_statements] = STATE(515), + [sym_preproc_if_in_statements] = STATE(491), + [sym_preproc_ifdef_in_statements] = STATE(491), + [sym_preproc_if_in_procedure_statements] = STATE(491), + [sym_preproc_ifdef_in_procedure_statements] = STATE(491), [sym_interface] = STATE(169), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4900), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6489), - [sym_contains_statement] = STATE(6461), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4976), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6399), + [sym_contains_statement] = STATE(6366), [sym__specification_part] = STATE(169), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), [sym_private_statement] = STATE(169), [sym_public_statement] = STATE(169), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), [sym_derived_type_definition] = STATE(169), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), [sym_enum] = STATE(169), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(169), - [aux_sym_subroutine_repeat1] = STATE(515), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [aux_sym_subroutine_repeat1] = STATE(491), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1240), + [aux_sym_end_program_statement_token1] = ACTIONS(1236), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1242), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1238), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -84963,8 +84963,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -85002,7 +85002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1240), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -85062,131 +85062,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [169] = { - [sym_preproc_include] = STATE(763), - [sym_preproc_def] = STATE(763), - [sym_preproc_function_def] = STATE(763), - [sym_preproc_call] = STATE(763), - [sym_preproc_if_in_specification_part] = STATE(763), - [sym_preproc_ifdef_in_specification_part] = STATE(763), - [sym_preproc_if_in_statements] = STATE(516), - [sym_preproc_ifdef_in_statements] = STATE(516), - [sym_preproc_if_in_procedure_statements] = STATE(516), - [sym_preproc_ifdef_in_procedure_statements] = STATE(516), - [sym_interface] = STATE(763), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4916), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6496), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(763), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(763), - [sym_public_statement] = STATE(763), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(763), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [sym_preproc_include] = STATE(764), + [sym_preproc_def] = STATE(764), + [sym_preproc_function_def] = STATE(764), + [sym_preproc_call] = STATE(764), + [sym_preproc_if_in_specification_part] = STATE(764), + [sym_preproc_ifdef_in_specification_part] = STATE(764), + [sym_preproc_if_in_statements] = STATE(495), + [sym_preproc_ifdef_in_statements] = STATE(495), + [sym_preproc_if_in_procedure_statements] = STATE(495), + [sym_preproc_ifdef_in_procedure_statements] = STATE(495), + [sym_interface] = STATE(764), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(5003), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6408), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(764), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(764), + [sym_public_statement] = STATE(764), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(764), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(763), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(763), - [aux_sym_subroutine_repeat1] = STATE(516), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(764), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(764), + [aux_sym_subroutine_repeat1] = STATE(495), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1240), + [aux_sym_end_program_statement_token1] = ACTIONS(1236), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1242), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1238), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -85197,8 +85197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -85236,7 +85236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1242), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -85296,115 +85296,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [170] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(519), - [sym_preproc_ifdef_in_statements] = STATE(519), - [sym_preproc_if_in_procedure_statements] = STATE(519), - [sym_preproc_ifdef_in_procedure_statements] = STATE(519), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4987), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6512), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(498), + [sym_preproc_ifdef_in_statements] = STATE(498), + [sym_preproc_if_in_procedure_statements] = STATE(498), + [sym_preproc_ifdef_in_procedure_statements] = STATE(498), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4936), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6424), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(519), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(498), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -85470,7 +85470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1244), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -85530,126 +85530,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [171] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(520), - [sym_preproc_ifdef_in_statements] = STATE(520), - [sym_preproc_if_in_procedure_statements] = STATE(520), - [sym_preproc_ifdef_in_procedure_statements] = STATE(520), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4989), - [sym_internal_procedures] = STATE(6515), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(499), + [sym_preproc_ifdef_in_statements] = STATE(499), + [sym_preproc_if_in_procedure_statements] = STATE(499), + [sym_preproc_ifdef_in_procedure_statements] = STATE(499), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4938), + [sym_internal_procedures] = STATE(6427), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(520), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(499), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1250), + [aux_sym_end_program_statement_token1] = ACTIONS(1246), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -85657,7 +85657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1252), + [aux_sym_end_function_statement_token1] = ACTIONS(1248), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -85665,8 +85665,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -85704,7 +85704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1250), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -85770,109 +85770,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(164), [sym_preproc_if_in_specification_part] = STATE(164), [sym_preproc_ifdef_in_specification_part] = STATE(164), - [sym_preproc_if_in_statements] = STATE(511), - [sym_preproc_ifdef_in_statements] = STATE(511), - [sym_preproc_if_in_procedure_statements] = STATE(511), - [sym_preproc_ifdef_in_procedure_statements] = STATE(511), + [sym_preproc_if_in_statements] = STATE(487), + [sym_preproc_ifdef_in_statements] = STATE(487), + [sym_preproc_if_in_procedure_statements] = STATE(487), + [sym_preproc_ifdef_in_procedure_statements] = STATE(487), [sym_interface] = STATE(164), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4402), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6445), - [sym_contains_statement] = STATE(6272), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4526), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6346), + [sym_contains_statement] = STATE(6815), [sym__specification_part] = STATE(164), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), [sym_private_statement] = STATE(164), [sym_public_statement] = STATE(164), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), [sym_derived_type_definition] = STATE(164), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), [sym_enum] = STATE(164), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(164), - [aux_sym_subroutine_repeat1] = STATE(511), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_subroutine_repeat1] = STATE(487), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -85883,11 +85883,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1224), + [aux_sym_end_program_statement_token1] = ACTIONS(1220), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1226), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1222), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -85938,7 +85938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1252), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -86004,120 +86004,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(165), [sym_preproc_if_in_specification_part] = STATE(165), [sym_preproc_ifdef_in_specification_part] = STATE(165), - [sym_preproc_if_in_statements] = STATE(512), - [sym_preproc_ifdef_in_statements] = STATE(512), - [sym_preproc_if_in_procedure_statements] = STATE(512), - [sym_preproc_ifdef_in_procedure_statements] = STATE(512), + [sym_preproc_if_in_statements] = STATE(488), + [sym_preproc_ifdef_in_statements] = STATE(488), + [sym_preproc_if_in_procedure_statements] = STATE(488), + [sym_preproc_ifdef_in_procedure_statements] = STATE(488), [sym_interface] = STATE(165), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4403), - [sym_internal_procedures] = STATE(6447), - [sym_contains_statement] = STATE(6336), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4462), + [sym_internal_procedures] = STATE(6350), + [sym_contains_statement] = STATE(6981), [sym__specification_part] = STATE(165), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), [sym_private_statement] = STATE(165), [sym_public_statement] = STATE(165), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), [sym_derived_type_definition] = STATE(165), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), [sym_enum] = STATE(165), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(165), - [aux_sym_subroutine_repeat1] = STATE(512), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [aux_sym_subroutine_repeat1] = STATE(488), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1230), + [aux_sym_end_program_statement_token1] = ACTIONS(1226), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -86125,7 +86125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1232), + [aux_sym_end_function_statement_token1] = ACTIONS(1228), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -86133,8 +86133,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -86172,7 +86172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1254), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -86232,115 +86232,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [174] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(523), - [sym_preproc_ifdef_in_statements] = STATE(523), - [sym_preproc_if_in_procedure_statements] = STATE(523), - [sym_preproc_ifdef_in_procedure_statements] = STATE(523), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(5012), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6567), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(503), + [sym_preproc_ifdef_in_statements] = STATE(503), + [sym_preproc_if_in_procedure_statements] = STATE(503), + [sym_preproc_ifdef_in_procedure_statements] = STATE(503), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4819), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6483), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(523), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(503), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -86351,11 +86351,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1260), + [aux_sym_end_program_statement_token1] = ACTIONS(1256), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1262), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1258), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -86406,7 +86406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1260), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -86466,126 +86466,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [175] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(524), - [sym_preproc_ifdef_in_statements] = STATE(524), - [sym_preproc_if_in_procedure_statements] = STATE(524), - [sym_preproc_ifdef_in_procedure_statements] = STATE(524), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(5014), - [sym_internal_procedures] = STATE(6570), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(504), + [sym_preproc_ifdef_in_statements] = STATE(504), + [sym_preproc_if_in_procedure_statements] = STATE(504), + [sym_preproc_ifdef_in_procedure_statements] = STATE(504), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4823), + [sym_internal_procedures] = STATE(6486), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(524), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(504), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1266), + [aux_sym_end_program_statement_token1] = ACTIONS(1262), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -86593,7 +86593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1268), + [aux_sym_end_function_statement_token1] = ACTIONS(1264), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -86601,8 +86601,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -86640,7 +86640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1266), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -86700,126 +86700,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [176] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(477), - [sym_preproc_ifdef_in_statements] = STATE(477), - [sym_preproc_if_in_procedure_statements] = STATE(477), - [sym_preproc_ifdef_in_procedure_statements] = STATE(477), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(981), - [sym_internal_procedures] = STATE(6591), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(171), + [sym_preproc_def] = STATE(171), + [sym_preproc_function_def] = STATE(171), + [sym_preproc_call] = STATE(171), + [sym_preproc_if_in_specification_part] = STATE(171), + [sym_preproc_ifdef_in_specification_part] = STATE(171), + [sym_preproc_if_in_statements] = STATE(497), + [sym_preproc_ifdef_in_statements] = STATE(497), + [sym_preproc_if_in_procedure_statements] = STATE(497), + [sym_preproc_ifdef_in_procedure_statements] = STATE(497), + [sym_interface] = STATE(171), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4964), + [sym_internal_procedures] = STATE(6420), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(171), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(171), + [sym_public_statement] = STATE(171), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(171), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(477), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(171), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(171), + [aux_sym_subroutine_repeat1] = STATE(497), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1128), + [aux_sym_end_program_statement_token1] = ACTIONS(1246), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -86827,7 +86827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1130), + [aux_sym_end_function_statement_token1] = ACTIONS(1248), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -86835,8 +86835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -86874,7 +86874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1268), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -86934,134 +86934,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [177] = { - [sym_preproc_include] = STATE(171), - [sym_preproc_def] = STATE(171), - [sym_preproc_function_def] = STATE(171), - [sym_preproc_call] = STATE(171), - [sym_preproc_if_in_specification_part] = STATE(171), - [sym_preproc_ifdef_in_specification_part] = STATE(171), - [sym_preproc_if_in_statements] = STATE(518), - [sym_preproc_ifdef_in_statements] = STATE(518), - [sym_preproc_if_in_procedure_statements] = STATE(518), - [sym_preproc_ifdef_in_procedure_statements] = STATE(518), - [sym_interface] = STATE(171), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4985), - [sym_internal_procedures] = STATE(6507), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(171), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(171), - [sym_public_statement] = STATE(171), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(171), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(508), + [sym_preproc_ifdef_in_statements] = STATE(508), + [sym_preproc_if_in_procedure_statements] = STATE(508), + [sym_preproc_ifdef_in_procedure_statements] = STATE(508), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4737), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6538), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(171), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(171), - [aux_sym_subroutine_repeat1] = STATE(518), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(508), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1002), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1250), + [aux_sym_end_program_statement_token1] = ACTIONS(1270), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1272), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1252), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -87069,8 +87069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1008), + [aux_sym_public_statement_token1] = ACTIONS(1010), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -87168,121 +87168,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [178] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(529), - [sym_preproc_ifdef_in_statements] = STATE(529), - [sym_preproc_if_in_procedure_statements] = STATE(529), - [sym_preproc_ifdef_in_procedure_statements] = STATE(529), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4766), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6617), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(509), + [sym_preproc_ifdef_in_statements] = STATE(509), + [sym_preproc_if_in_procedure_statements] = STATE(509), + [sym_preproc_ifdef_in_procedure_statements] = STATE(509), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4711), + [sym_internal_procedures] = STATE(6543), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(529), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1002), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(509), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -87291,11 +87291,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1278), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_end_function_statement_token1] = ACTIONS(1278), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -87303,8 +87303,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1008), - [aux_sym_public_statement_token1] = ACTIONS(1010), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -87402,349 +87402,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [179] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(530), - [sym_preproc_ifdef_in_statements] = STATE(530), - [sym_preproc_if_in_procedure_statements] = STATE(530), - [sym_preproc_ifdef_in_procedure_statements] = STATE(530), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4686), - [sym_internal_procedures] = STATE(6621), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(530), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1282), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1284), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(758), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(758), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1286), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(117), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(183), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [180] = { [sym_preproc_include] = STATE(174), [sym_preproc_def] = STATE(174), [sym_preproc_function_def] = STATE(174), [sym_preproc_call] = STATE(174), [sym_preproc_if_in_specification_part] = STATE(174), [sym_preproc_ifdef_in_specification_part] = STATE(174), - [sym_preproc_if_in_statements] = STATE(521), - [sym_preproc_ifdef_in_statements] = STATE(521), - [sym_preproc_if_in_procedure_statements] = STATE(521), - [sym_preproc_ifdef_in_procedure_statements] = STATE(521), + [sym_preproc_if_in_statements] = STATE(501), + [sym_preproc_ifdef_in_statements] = STATE(501), + [sym_preproc_if_in_procedure_statements] = STATE(501), + [sym_preproc_ifdef_in_procedure_statements] = STATE(501), [sym_interface] = STATE(174), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(5005), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6559), - [sym_contains_statement] = STATE(6272), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4807), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6476), + [sym_contains_statement] = STATE(6815), [sym__specification_part] = STATE(174), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), [sym_private_statement] = STATE(174), [sym_public_statement] = STATE(174), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), [sym_derived_type_definition] = STATE(174), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), [sym_enum] = STATE(174), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(174), - [aux_sym_subroutine_repeat1] = STATE(521), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_subroutine_repeat1] = STATE(501), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -87755,11 +87521,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1260), + [aux_sym_end_program_statement_token1] = ACTIONS(1256), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1262), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1258), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -87810,7 +87576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1282), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -87869,127 +87635,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [181] = { + [180] = { [sym_preproc_include] = STATE(175), [sym_preproc_def] = STATE(175), [sym_preproc_function_def] = STATE(175), [sym_preproc_call] = STATE(175), [sym_preproc_if_in_specification_part] = STATE(175), [sym_preproc_ifdef_in_specification_part] = STATE(175), - [sym_preproc_if_in_statements] = STATE(522), - [sym_preproc_ifdef_in_statements] = STATE(522), - [sym_preproc_if_in_procedure_statements] = STATE(522), - [sym_preproc_ifdef_in_procedure_statements] = STATE(522), + [sym_preproc_if_in_statements] = STATE(502), + [sym_preproc_ifdef_in_statements] = STATE(502), + [sym_preproc_if_in_procedure_statements] = STATE(502), + [sym_preproc_ifdef_in_procedure_statements] = STATE(502), [sym_interface] = STATE(175), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(5006), - [sym_internal_procedures] = STATE(6562), - [sym_contains_statement] = STATE(6336), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4808), + [sym_internal_procedures] = STATE(6479), + [sym_contains_statement] = STATE(6981), [sym__specification_part] = STATE(175), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), [sym_private_statement] = STATE(175), [sym_public_statement] = STATE(175), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), [sym_derived_type_definition] = STATE(175), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), [sym_enum] = STATE(175), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), [aux_sym_program_repeat1] = STATE(175), - [aux_sym_subroutine_repeat1] = STATE(522), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [aux_sym_subroutine_repeat1] = STATE(502), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1266), + [aux_sym_end_program_statement_token1] = ACTIONS(1262), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -87997,7 +87763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1268), + [aux_sym_end_function_statement_token1] = ACTIONS(1264), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -88005,8 +87771,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -88044,7 +87810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1284), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -88103,116 +87869,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [182] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_specification_part] = STATE(764), - [sym_preproc_ifdef_in_specification_part] = STATE(764), - [sym_preproc_if_in_statements] = STATE(536), - [sym_preproc_ifdef_in_statements] = STATE(536), - [sym_preproc_if_in_procedure_statements] = STATE(536), - [sym_preproc_ifdef_in_procedure_statements] = STATE(536), - [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4906), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6667), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(764), - [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [181] = { + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_preproc_if_in_statements] = STATE(513), + [sym_preproc_ifdef_in_statements] = STATE(513), + [sym_preproc_if_in_procedure_statements] = STATE(513), + [sym_preproc_ifdef_in_procedure_statements] = STATE(513), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4871), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6592), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(764), - [aux_sym_subroutine_repeat1] = STATE(536), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_subroutine_repeat1] = STATE(513), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -88223,11 +87989,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1292), + [aux_sym_end_program_statement_token1] = ACTIONS(1286), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1294), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1288), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -88278,7 +88044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1290), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -88337,127 +88103,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [183] = { - [sym_preproc_include] = STATE(765), - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_specification_part] = STATE(765), - [sym_preproc_ifdef_in_specification_part] = STATE(765), - [sym_preproc_if_in_statements] = STATE(537), - [sym_preproc_ifdef_in_statements] = STATE(537), - [sym_preproc_if_in_procedure_statements] = STATE(537), - [sym_preproc_ifdef_in_procedure_statements] = STATE(537), - [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4960), - [sym_internal_procedures] = STATE(6669), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(765), - [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [182] = { + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_preproc_if_in_statements] = STATE(514), + [sym_preproc_ifdef_in_statements] = STATE(514), + [sym_preproc_if_in_procedure_statements] = STATE(514), + [sym_preproc_ifdef_in_procedure_statements] = STATE(514), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4875), + [sym_internal_procedures] = STATE(6597), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(765), - [aux_sym_subroutine_repeat1] = STATE(537), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_subroutine_repeat1] = STATE(514), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1024), + [aux_sym_end_program_statement_token1] = ACTIONS(1292), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -88465,7 +88231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1026), + [aux_sym_end_function_statement_token1] = ACTIONS(1294), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -88473,8 +88239,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -88512,7 +88278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -88571,116 +88337,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [184] = { - [sym_preproc_include] = STATE(178), - [sym_preproc_def] = STATE(178), - [sym_preproc_function_def] = STATE(178), - [sym_preproc_call] = STATE(178), - [sym_preproc_if_in_specification_part] = STATE(178), - [sym_preproc_ifdef_in_specification_part] = STATE(178), - [sym_preproc_if_in_statements] = STATE(527), - [sym_preproc_ifdef_in_statements] = STATE(527), - [sym_preproc_if_in_procedure_statements] = STATE(527), - [sym_preproc_ifdef_in_procedure_statements] = STATE(527), - [sym_interface] = STATE(178), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4768), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6610), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(178), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(178), - [sym_public_statement] = STATE(178), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(178), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [183] = { + [sym_preproc_include] = STATE(177), + [sym_preproc_def] = STATE(177), + [sym_preproc_function_def] = STATE(177), + [sym_preproc_call] = STATE(177), + [sym_preproc_if_in_specification_part] = STATE(177), + [sym_preproc_ifdef_in_specification_part] = STATE(177), + [sym_preproc_if_in_statements] = STATE(506), + [sym_preproc_ifdef_in_statements] = STATE(506), + [sym_preproc_if_in_procedure_statements] = STATE(506), + [sym_preproc_ifdef_in_procedure_statements] = STATE(506), + [sym_interface] = STATE(177), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4747), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6533), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(177), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(177), + [sym_public_statement] = STATE(177), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(177), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(178), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(178), - [aux_sym_subroutine_repeat1] = STATE(527), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(177), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(177), + [aux_sym_subroutine_repeat1] = STATE(506), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -88691,11 +88457,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1276), + [aux_sym_end_program_statement_token1] = ACTIONS(1270), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1278), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1272), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -88746,7 +88512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1298), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -88805,127 +88571,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [185] = { - [sym_preproc_include] = STATE(179), - [sym_preproc_def] = STATE(179), - [sym_preproc_function_def] = STATE(179), - [sym_preproc_call] = STATE(179), - [sym_preproc_if_in_specification_part] = STATE(179), - [sym_preproc_ifdef_in_specification_part] = STATE(179), - [sym_preproc_if_in_statements] = STATE(528), - [sym_preproc_ifdef_in_statements] = STATE(528), - [sym_preproc_if_in_procedure_statements] = STATE(528), - [sym_preproc_ifdef_in_procedure_statements] = STATE(528), - [sym_interface] = STATE(179), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), - [sym_end_function_statement] = STATE(4773), - [sym_internal_procedures] = STATE(6613), - [sym_contains_statement] = STATE(6336), - [sym__specification_part] = STATE(179), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), - [sym_private_statement] = STATE(179), - [sym_public_statement] = STATE(179), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), - [sym_derived_type_definition] = STATE(179), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [184] = { + [sym_preproc_include] = STATE(178), + [sym_preproc_def] = STATE(178), + [sym_preproc_function_def] = STATE(178), + [sym_preproc_call] = STATE(178), + [sym_preproc_if_in_specification_part] = STATE(178), + [sym_preproc_ifdef_in_specification_part] = STATE(178), + [sym_preproc_if_in_statements] = STATE(507), + [sym_preproc_ifdef_in_statements] = STATE(507), + [sym_preproc_if_in_procedure_statements] = STATE(507), + [sym_preproc_ifdef_in_procedure_statements] = STATE(507), + [sym_interface] = STATE(178), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4748), + [sym_internal_procedures] = STATE(6535), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(178), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(178), + [sym_public_statement] = STATE(178), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(178), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(785), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6858), - [sym_data_statement] = STATE(6398), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_enum] = STATE(179), - [sym_enum_statement] = STATE(5890), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_statement_function] = STATE(6398), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(179), - [aux_sym_subroutine_repeat1] = STATE(528), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1014), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1022), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(787), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(178), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(178), + [aux_sym_subroutine_repeat1] = STATE(507), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1282), + [aux_sym_end_program_statement_token1] = ACTIONS(1276), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -88933,7 +88699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_end_function_statement_token1] = ACTIONS(1284), + [aux_sym_end_function_statement_token1] = ACTIONS(1278), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -88941,8 +88707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1028), - [aux_sym_public_statement_token1] = ACTIONS(1030), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -88980,7 +88746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -89039,116 +88805,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [186] = { - [sym_preproc_include] = STATE(182), - [sym_preproc_def] = STATE(182), - [sym_preproc_function_def] = STATE(182), - [sym_preproc_call] = STATE(182), - [sym_preproc_if_in_specification_part] = STATE(182), - [sym_preproc_ifdef_in_specification_part] = STATE(182), - [sym_preproc_if_in_statements] = STATE(534), - [sym_preproc_ifdef_in_statements] = STATE(534), - [sym_preproc_if_in_procedure_statements] = STATE(534), - [sym_preproc_ifdef_in_procedure_statements] = STATE(534), - [sym_interface] = STATE(182), - [sym_interface_statement] = STATE(3853), - [sym_end_subroutine_statement] = STATE(4863), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6662), - [sym_contains_statement] = STATE(6272), - [sym__specification_part] = STATE(182), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), - [sym_private_statement] = STATE(182), - [sym_public_statement] = STATE(182), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), - [sym_derived_type_definition] = STATE(182), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [185] = { + [sym_preproc_include] = STATE(181), + [sym_preproc_def] = STATE(181), + [sym_preproc_function_def] = STATE(181), + [sym_preproc_call] = STATE(181), + [sym_preproc_if_in_specification_part] = STATE(181), + [sym_preproc_ifdef_in_specification_part] = STATE(181), + [sym_preproc_if_in_statements] = STATE(511), + [sym_preproc_ifdef_in_statements] = STATE(511), + [sym_preproc_if_in_procedure_statements] = STATE(511), + [sym_preproc_ifdef_in_procedure_statements] = STATE(511), + [sym_interface] = STATE(181), + [sym_interface_statement] = STATE(3731), + [sym_end_subroutine_statement] = STATE(4824), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6586), + [sym_contains_statement] = STATE(6815), + [sym__specification_part] = STATE(181), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(181), + [sym_public_statement] = STATE(181), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(181), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(791), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6436), - [sym_data_statement] = STATE(6337), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_enum] = STATE(182), - [sym_enum_statement] = STATE(5870), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_statement_function] = STATE(6337), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(182), - [aux_sym_subroutine_repeat1] = STATE(534), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(775), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6330), + [sym_data_statement] = STATE(6984), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_enum] = STATE(181), + [sym_enum_statement] = STATE(5889), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_statement_function] = STATE(6984), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(181), + [aux_sym_subroutine_repeat1] = STATE(511), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(994), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(998), @@ -89159,11 +88925,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1292), + [aux_sym_end_program_statement_token1] = ACTIONS(1286), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1294), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1288), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), @@ -89214,7 +88980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1302), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -89273,135 +89039,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [187] = { - [sym_preproc_include] = STATE(763), - [sym_preproc_def] = STATE(763), - [sym_preproc_function_def] = STATE(763), - [sym_preproc_call] = STATE(763), - [sym_preproc_if_in_specification_part] = STATE(763), - [sym_preproc_ifdef_in_specification_part] = STATE(763), - [sym_preproc_if_in_statements] = STATE(491), - [sym_preproc_ifdef_in_statements] = STATE(491), - [sym_preproc_if_in_procedure_statements] = STATE(491), - [sym_preproc_ifdef_in_procedure_statements] = STATE(491), - [sym_interface] = STATE(763), - [sym_interface_statement] = STATE(3764), - [sym_end_module_procedure_statement] = STATE(4458), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7038), - [sym_contains_statement] = STATE(6461), - [sym__specification_part] = STATE(763), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(763), - [sym_public_statement] = STATE(763), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(763), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), + [186] = { + [sym_preproc_include] = STATE(182), + [sym_preproc_def] = STATE(182), + [sym_preproc_function_def] = STATE(182), + [sym_preproc_call] = STATE(182), + [sym_preproc_if_in_specification_part] = STATE(182), + [sym_preproc_ifdef_in_specification_part] = STATE(182), + [sym_preproc_if_in_statements] = STATE(512), + [sym_preproc_ifdef_in_statements] = STATE(512), + [sym_preproc_if_in_procedure_statements] = STATE(512), + [sym_preproc_ifdef_in_procedure_statements] = STATE(512), + [sym_interface] = STATE(182), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym_end_function_statement] = STATE(4830), + [sym_internal_procedures] = STATE(6588), + [sym_contains_statement] = STATE(6981), + [sym__specification_part] = STATE(182), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(182), + [sym_public_statement] = STATE(182), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(182), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym__statements] = STATE(6561), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym__statements] = STATE(6775), [sym_statement_label] = STATE(787), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6404), - [sym_data_statement] = STATE(6711), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_enum] = STATE(763), - [sym_enum_statement] = STATE(5876), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_statement_function] = STATE(6711), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4574), - [aux_sym_program_repeat1] = STATE(763), - [aux_sym_subroutine_repeat1] = STATE(491), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1034), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1042), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6679), + [sym_data_statement] = STATE(6295), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_enum] = STATE(182), + [sym_enum_statement] = STATE(5891), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_statement_function] = STATE(6295), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(182), + [aux_sym_subroutine_repeat1] = STATE(512), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1046), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1054), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1138), + [aux_sym_end_program_statement_token1] = ACTIONS(1292), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1140), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_end_function_statement_token1] = ACTIONS(1294), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token1] = ACTIONS(53), [aux_sym_use_statement_token2] = ACTIONS(49), @@ -89409,8 +89175,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(1048), - [aux_sym_public_statement_token1] = ACTIONS(1050), + [aux_sym_private_statement_token1] = ACTIONS(1060), + [aux_sym_public_statement_token1] = ACTIONS(1062), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -89448,7 +89214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -89507,130 +89273,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [188] = { - [sym_preproc_include] = STATE(190), - [sym_preproc_def] = STATE(190), - [sym_preproc_function_def] = STATE(190), - [sym_preproc_call] = STATE(190), - [sym_preproc_if_in_specification_part] = STATE(190), - [sym_preproc_ifdef_in_specification_part] = STATE(190), - [sym_preproc_if_in_statements] = STATE(571), - [sym_preproc_ifdef_in_statements] = STATE(571), - [sym_end_program_statement] = STATE(1047), - [sym_interface] = STATE(190), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6434), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(190), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(190), - [sym_public_statement] = STATE(190), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(190), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [187] = { + [sym_preproc_include] = STATE(764), + [sym_preproc_def] = STATE(764), + [sym_preproc_function_def] = STATE(764), + [sym_preproc_call] = STATE(764), + [sym_preproc_if_in_specification_part] = STATE(764), + [sym_preproc_ifdef_in_specification_part] = STATE(764), + [sym_preproc_if_in_statements] = STATE(525), + [sym_preproc_ifdef_in_statements] = STATE(525), + [sym_preproc_if_in_procedure_statements] = STATE(525), + [sym_preproc_ifdef_in_procedure_statements] = STATE(525), + [sym_interface] = STATE(764), + [sym_interface_statement] = STATE(3816), + [sym_end_module_procedure_statement] = STATE(4394), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6751), + [sym_contains_statement] = STATE(6366), + [sym__specification_part] = STATE(764), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), + [sym_private_statement] = STATE(764), + [sym_public_statement] = STATE(764), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), + [sym_derived_type_definition] = STATE(764), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6906), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(190), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(571), - [aux_sym_program_repeat1] = STATE(190), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1316), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(789), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6301), + [sym_data_statement] = STATE(6641), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_enum] = STATE(764), + [sym_enum_statement] = STATE(5903), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_statement_function] = STATE(6641), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4591), + [aux_sym_program_repeat1] = STATE(764), + [aux_sym_subroutine_repeat1] = STATE(525), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1022), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1026), + [sym_preproc_directive] = ACTIONS(1028), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(648), - [aux_sym_end_program_statement_token2] = ACTIONS(650), + [aux_sym_end_program_statement_token1] = ACTIONS(1136), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1138), [aux_sym_language_binding_token1] = ACTIONS(45), [aux_sym_procedure_attributes_token1] = ACTIONS(750), [aux_sym_procedure_attributes_token3] = ACTIONS(49), @@ -89641,8 +89409,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(61), - [aux_sym_public_statement_token1] = ACTIONS(63), + [aux_sym_private_statement_token1] = ACTIONS(1034), + [aux_sym_public_statement_token1] = ACTIONS(1036), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -89680,7 +89448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1306), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -89739,114 +89507,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [189] = { - [sym_preproc_include] = STATE(195), - [sym_preproc_def] = STATE(195), - [sym_preproc_function_def] = STATE(195), - [sym_preproc_call] = STATE(195), - [sym_preproc_if_in_specification_part] = STATE(195), - [sym_preproc_ifdef_in_specification_part] = STATE(195), - [sym_preproc_if_in_statements] = STATE(573), - [sym_preproc_ifdef_in_statements] = STATE(573), - [sym_end_program_statement] = STATE(889), - [sym_interface] = STATE(195), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6918), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(195), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(195), - [sym_public_statement] = STATE(195), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(195), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [188] = { + [sym_preproc_include] = STATE(765), + [sym_preproc_def] = STATE(765), + [sym_preproc_function_def] = STATE(765), + [sym_preproc_call] = STATE(765), + [sym_preproc_if_in_specification_part] = STATE(765), + [sym_preproc_ifdef_in_specification_part] = STATE(765), + [sym_preproc_if_in_statements] = STATE(597), + [sym_preproc_ifdef_in_statements] = STATE(597), + [sym_end_program_statement] = STATE(1066), + [sym_interface] = STATE(765), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6836), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(765), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(765), + [sym_public_statement] = STATE(765), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(765), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6906), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(195), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(573), - [aux_sym_program_repeat1] = STATE(195), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6255), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(765), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(597), + [aux_sym_program_repeat1] = STATE(765), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1312), @@ -89857,8 +89625,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(211), - [aux_sym_end_program_statement_token2] = ACTIONS(213), + [aux_sym_end_program_statement_token1] = ACTIONS(648), + [aux_sym_end_program_statement_token2] = ACTIONS(650), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -89912,7 +89680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1318), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -89971,114 +89739,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [190] = { - [sym_preproc_include] = STATE(762), - [sym_preproc_def] = STATE(762), - [sym_preproc_function_def] = STATE(762), - [sym_preproc_call] = STATE(762), - [sym_preproc_if_in_specification_part] = STATE(762), - [sym_preproc_ifdef_in_specification_part] = STATE(762), - [sym_preproc_if_in_statements] = STATE(572), - [sym_preproc_ifdef_in_statements] = STATE(572), - [sym_end_program_statement] = STATE(1055), - [sym_interface] = STATE(762), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6800), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(762), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(762), - [sym_public_statement] = STATE(762), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(762), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [189] = { + [sym_preproc_include] = STATE(188), + [sym_preproc_def] = STATE(188), + [sym_preproc_function_def] = STATE(188), + [sym_preproc_call] = STATE(188), + [sym_preproc_if_in_specification_part] = STATE(188), + [sym_preproc_ifdef_in_specification_part] = STATE(188), + [sym_preproc_if_in_statements] = STATE(617), + [sym_preproc_ifdef_in_statements] = STATE(617), + [sym_end_program_statement] = STATE(1033), + [sym_interface] = STATE(188), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6329), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(188), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(188), + [sym_public_statement] = STATE(188), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(188), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6906), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(762), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(572), - [aux_sym_program_repeat1] = STATE(762), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6255), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(188), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(617), + [aux_sym_program_repeat1] = STATE(188), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1312), @@ -90144,7 +89912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -90203,114 +89971,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [191] = { - [sym_preproc_include] = STATE(762), - [sym_preproc_def] = STATE(762), - [sym_preproc_function_def] = STATE(762), - [sym_preproc_call] = STATE(762), - [sym_preproc_if_in_specification_part] = STATE(762), - [sym_preproc_ifdef_in_specification_part] = STATE(762), - [sym_preproc_if_in_statements] = STATE(571), - [sym_preproc_ifdef_in_statements] = STATE(571), - [sym_end_program_statement] = STATE(1047), - [sym_interface] = STATE(762), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6434), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(762), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(762), - [sym_public_statement] = STATE(762), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(762), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [190] = { + [sym_preproc_include] = STATE(765), + [sym_preproc_def] = STATE(765), + [sym_preproc_function_def] = STATE(765), + [sym_preproc_call] = STATE(765), + [sym_preproc_if_in_specification_part] = STATE(765), + [sym_preproc_ifdef_in_specification_part] = STATE(765), + [sym_preproc_if_in_statements] = STATE(617), + [sym_preproc_ifdef_in_statements] = STATE(617), + [sym_end_program_statement] = STATE(1033), + [sym_interface] = STATE(765), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6329), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(765), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(765), + [sym_public_statement] = STATE(765), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(765), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6906), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(762), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(571), - [aux_sym_program_repeat1] = STATE(762), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6255), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(765), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(617), + [aux_sym_program_repeat1] = STATE(765), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1312), @@ -90376,7 +90144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1320), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -90435,114 +90203,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [192] = { - [sym_preproc_include] = STATE(196), - [sym_preproc_def] = STATE(196), - [sym_preproc_function_def] = STATE(196), - [sym_preproc_call] = STATE(196), - [sym_preproc_if_in_specification_part] = STATE(196), - [sym_preproc_ifdef_in_specification_part] = STATE(196), - [sym_preproc_if_in_statements] = STATE(581), - [sym_preproc_ifdef_in_statements] = STATE(581), - [sym_end_program_statement] = STATE(1012), - [sym_interface] = STATE(196), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6885), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(196), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(196), - [sym_public_statement] = STATE(196), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(196), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [191] = { + [sym_preproc_include] = STATE(193), + [sym_preproc_def] = STATE(193), + [sym_preproc_function_def] = STATE(193), + [sym_preproc_call] = STATE(193), + [sym_preproc_if_in_specification_part] = STATE(193), + [sym_preproc_ifdef_in_specification_part] = STATE(193), + [sym_preproc_if_in_statements] = STATE(618), + [sym_preproc_ifdef_in_statements] = STATE(618), + [sym_end_program_statement] = STATE(1074), + [sym_interface] = STATE(193), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7047), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(193), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(193), + [sym_public_statement] = STATE(193), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(193), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6906), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(196), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(581), - [aux_sym_program_repeat1] = STATE(196), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6255), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(193), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(618), + [aux_sym_program_repeat1] = STATE(193), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1312), @@ -90608,7 +90376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1322), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -90667,114 +90435,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [193] = { - [sym_preproc_include] = STATE(762), - [sym_preproc_def] = STATE(762), - [sym_preproc_function_def] = STATE(762), - [sym_preproc_call] = STATE(762), - [sym_preproc_if_in_specification_part] = STATE(762), - [sym_preproc_ifdef_in_specification_part] = STATE(762), - [sym_preproc_if_in_statements] = STATE(581), - [sym_preproc_ifdef_in_statements] = STATE(581), - [sym_end_program_statement] = STATE(1012), - [sym_interface] = STATE(762), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6885), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(762), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(762), - [sym_public_statement] = STATE(762), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(762), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [192] = { + [sym_preproc_include] = STATE(195), + [sym_preproc_def] = STATE(195), + [sym_preproc_function_def] = STATE(195), + [sym_preproc_call] = STATE(195), + [sym_preproc_if_in_specification_part] = STATE(195), + [sym_preproc_ifdef_in_specification_part] = STATE(195), + [sym_preproc_if_in_statements] = STATE(570), + [sym_preproc_ifdef_in_statements] = STATE(570), + [sym_end_program_statement] = STATE(852), + [sym_interface] = STATE(195), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6396), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(195), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(195), + [sym_public_statement] = STATE(195), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(195), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6906), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(762), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(581), - [aux_sym_program_repeat1] = STATE(762), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6255), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(195), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(570), + [aux_sym_program_repeat1] = STATE(195), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1312), @@ -90785,8 +90553,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(25), - [aux_sym_end_program_statement_token2] = ACTIONS(27), + [aux_sym_end_program_statement_token1] = ACTIONS(211), + [aux_sym_end_program_statement_token2] = ACTIONS(213), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -90899,114 +90667,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [194] = { - [sym_preproc_include] = STATE(762), - [sym_preproc_def] = STATE(762), - [sym_preproc_function_def] = STATE(762), - [sym_preproc_call] = STATE(762), - [sym_preproc_if_in_specification_part] = STATE(762), - [sym_preproc_ifdef_in_specification_part] = STATE(762), - [sym_preproc_if_in_statements] = STATE(573), - [sym_preproc_ifdef_in_statements] = STATE(573), - [sym_end_program_statement] = STATE(889), - [sym_interface] = STATE(762), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6918), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(762), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(762), - [sym_public_statement] = STATE(762), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(762), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [193] = { + [sym_preproc_include] = STATE(765), + [sym_preproc_def] = STATE(765), + [sym_preproc_function_def] = STATE(765), + [sym_preproc_call] = STATE(765), + [sym_preproc_if_in_specification_part] = STATE(765), + [sym_preproc_ifdef_in_specification_part] = STATE(765), + [sym_preproc_if_in_statements] = STATE(581), + [sym_preproc_ifdef_in_statements] = STATE(581), + [sym_end_program_statement] = STATE(1056), + [sym_interface] = STATE(765), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7027), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(765), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(765), + [sym_public_statement] = STATE(765), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(765), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6906), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(762), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(573), - [aux_sym_program_repeat1] = STATE(762), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6255), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(765), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(581), + [aux_sym_program_repeat1] = STATE(765), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1312), @@ -91017,8 +90785,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(211), - [aux_sym_end_program_statement_token2] = ACTIONS(213), + [aux_sym_end_program_statement_token1] = ACTIONS(25), + [aux_sym_end_program_statement_token2] = ACTIONS(27), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -91072,7 +90840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1326), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -91131,114 +90899,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [195] = { - [sym_preproc_include] = STATE(762), - [sym_preproc_def] = STATE(762), - [sym_preproc_function_def] = STATE(762), - [sym_preproc_call] = STATE(762), - [sym_preproc_if_in_specification_part] = STATE(762), - [sym_preproc_ifdef_in_specification_part] = STATE(762), - [sym_preproc_if_in_statements] = STATE(574), - [sym_preproc_ifdef_in_statements] = STATE(574), - [sym_end_program_statement] = STATE(903), - [sym_interface] = STATE(762), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7069), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(762), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(762), - [sym_public_statement] = STATE(762), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(762), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [194] = { + [sym_preproc_include] = STATE(765), + [sym_preproc_def] = STATE(765), + [sym_preproc_function_def] = STATE(765), + [sym_preproc_call] = STATE(765), + [sym_preproc_if_in_specification_part] = STATE(765), + [sym_preproc_ifdef_in_specification_part] = STATE(765), + [sym_preproc_if_in_statements] = STATE(570), + [sym_preproc_ifdef_in_statements] = STATE(570), + [sym_end_program_statement] = STATE(852), + [sym_interface] = STATE(765), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6396), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(765), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(765), + [sym_public_statement] = STATE(765), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(765), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6906), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(762), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(574), - [aux_sym_program_repeat1] = STATE(762), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6255), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(765), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(570), + [aux_sym_program_repeat1] = STATE(765), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1312), @@ -91304,7 +91072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1324), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -91363,114 +91131,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [196] = { - [sym_preproc_include] = STATE(762), - [sym_preproc_def] = STATE(762), - [sym_preproc_function_def] = STATE(762), - [sym_preproc_call] = STATE(762), - [sym_preproc_if_in_specification_part] = STATE(762), - [sym_preproc_ifdef_in_specification_part] = STATE(762), - [sym_preproc_if_in_statements] = STATE(579), - [sym_preproc_ifdef_in_statements] = STATE(579), - [sym_end_program_statement] = STATE(1032), - [sym_interface] = STATE(762), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6948), - [sym_contains_statement] = STATE(6691), - [sym__specification_part] = STATE(762), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(762), - [sym_public_statement] = STATE(762), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(762), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), + [195] = { + [sym_preproc_include] = STATE(765), + [sym_preproc_def] = STATE(765), + [sym_preproc_function_def] = STATE(765), + [sym_preproc_call] = STATE(765), + [sym_preproc_if_in_specification_part] = STATE(765), + [sym_preproc_ifdef_in_specification_part] = STATE(765), + [sym_preproc_if_in_statements] = STATE(594), + [sym_preproc_ifdef_in_statements] = STATE(594), + [sym_end_program_statement] = STATE(859), + [sym_interface] = STATE(765), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7029), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(765), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(765), + [sym_public_statement] = STATE(765), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(765), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(777), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6906), - [sym_data_statement] = STATE(6883), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_enum] = STATE(762), - [sym_enum_statement] = STATE(5899), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_statement_function] = STATE(6883), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(579), - [aux_sym_program_repeat1] = STATE(762), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6255), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(765), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(594), + [aux_sym_program_repeat1] = STATE(765), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1312), @@ -91481,8 +91249,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(25), - [aux_sym_end_program_statement_token2] = ACTIONS(27), + [aux_sym_end_program_statement_token1] = ACTIONS(211), + [aux_sym_end_program_statement_token2] = ACTIONS(213), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), @@ -91595,111 +91363,343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, + [196] = { + [sym_preproc_include] = STATE(765), + [sym_preproc_def] = STATE(765), + [sym_preproc_function_def] = STATE(765), + [sym_preproc_call] = STATE(765), + [sym_preproc_if_in_specification_part] = STATE(765), + [sym_preproc_ifdef_in_specification_part] = STATE(765), + [sym_preproc_if_in_statements] = STATE(618), + [sym_preproc_ifdef_in_statements] = STATE(618), + [sym_end_program_statement] = STATE(1074), + [sym_interface] = STATE(765), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7047), + [sym_contains_statement] = STATE(6394), + [sym__specification_part] = STATE(765), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), + [sym_private_statement] = STATE(765), + [sym_public_statement] = STATE(765), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), + [sym_derived_type_definition] = STATE(765), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(773), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6255), + [sym_data_statement] = STATE(6515), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_enum] = STATE(765), + [sym_enum_statement] = STATE(5883), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_statement_function] = STATE(6515), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(618), + [aux_sym_program_repeat1] = STATE(765), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(25), + [aux_sym_end_program_statement_token2] = ACTIONS(27), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(61), + [aux_sym_public_statement_token1] = ACTIONS(63), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(758), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(758), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(1322), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(117), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(183), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, [197] = { - [sym_preproc_include] = STATE(203), - [sym_preproc_def] = STATE(203), - [sym_preproc_function_def] = STATE(203), - [sym_preproc_call] = STATE(203), - [sym_preproc_if_in_statements] = STATE(635), - [sym_preproc_ifdef_in_statements] = STATE(635), - [sym_interface] = STATE(203), - [sym_interface_statement] = STATE(3837), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7595), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(203), - [sym_use_statement] = STATE(6626), - [sym_implicit_statement] = STATE(6626), - [sym_save_statement] = STATE(6626), - [sym_private_statement] = STATE(203), - [sym_public_statement] = STATE(203), - [sym_namelist_statement] = STATE(6626), - [sym_common_statement] = STATE(6626), - [sym_import_statement] = STATE(6626), - [sym_derived_type_definition] = STATE(203), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4213), - [sym_variable_declaration] = STATE(6626), + [sym_preproc_include] = STATE(202), + [sym_preproc_def] = STATE(202), + [sym_preproc_function_def] = STATE(202), + [sym_preproc_call] = STATE(202), + [sym_preproc_if_in_statements] = STATE(632), + [sym_preproc_ifdef_in_statements] = STATE(632), + [sym_interface] = STATE(202), + [sym_interface_statement] = STATE(3807), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(8289), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(202), + [sym_use_statement] = STATE(6550), + [sym_implicit_statement] = STATE(6550), + [sym_save_statement] = STATE(6550), + [sym_private_statement] = STATE(202), + [sym_public_statement] = STATE(202), + [sym_namelist_statement] = STATE(6550), + [sym_common_statement] = STATE(6550), + [sym_import_statement] = STATE(6550), + [sym_derived_type_definition] = STATE(202), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4204), + [sym_variable_declaration] = STATE(6550), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6626), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6550), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6626), - [sym_equivalence_statement] = STATE(6626), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(790), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6344), - [sym_data_statement] = STATE(6626), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_enum] = STATE(203), - [sym_enum_statement] = STATE(5896), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_statement_function] = STATE(6626), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(203), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(635), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6550), + [sym_equivalence_statement] = STATE(6550), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(785), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6992), + [sym_data_statement] = STATE(6550), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_enum] = STATE(202), + [sym_enum_statement] = STATE(5899), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_statement_function] = STATE(6550), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(202), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(632), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1332), [aux_sym_preproc_if_token1] = ACTIONS(1334), @@ -91826,110 +91826,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [198] = { - [sym_preproc_include] = STATE(203), - [sym_preproc_def] = STATE(203), - [sym_preproc_function_def] = STATE(203), - [sym_preproc_call] = STATE(203), - [sym_preproc_if_in_statements] = STATE(638), - [sym_preproc_ifdef_in_statements] = STATE(638), - [sym_interface] = STATE(203), - [sym_interface_statement] = STATE(3837), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(8328), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(203), - [sym_use_statement] = STATE(6626), - [sym_implicit_statement] = STATE(6626), - [sym_save_statement] = STATE(6626), - [sym_private_statement] = STATE(203), - [sym_public_statement] = STATE(203), - [sym_namelist_statement] = STATE(6626), - [sym_common_statement] = STATE(6626), - [sym_import_statement] = STATE(6626), - [sym_derived_type_definition] = STATE(203), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4213), - [sym_variable_declaration] = STATE(6626), + [sym_preproc_include] = STATE(202), + [sym_preproc_def] = STATE(202), + [sym_preproc_function_def] = STATE(202), + [sym_preproc_call] = STATE(202), + [sym_preproc_if_in_statements] = STATE(631), + [sym_preproc_ifdef_in_statements] = STATE(631), + [sym_interface] = STATE(202), + [sym_interface_statement] = STATE(3807), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7821), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(202), + [sym_use_statement] = STATE(6550), + [sym_implicit_statement] = STATE(6550), + [sym_save_statement] = STATE(6550), + [sym_private_statement] = STATE(202), + [sym_public_statement] = STATE(202), + [sym_namelist_statement] = STATE(6550), + [sym_common_statement] = STATE(6550), + [sym_import_statement] = STATE(6550), + [sym_derived_type_definition] = STATE(202), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4204), + [sym_variable_declaration] = STATE(6550), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6626), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6550), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6626), - [sym_equivalence_statement] = STATE(6626), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(790), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6344), - [sym_data_statement] = STATE(6626), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_enum] = STATE(203), - [sym_enum_statement] = STATE(5896), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_statement_function] = STATE(6626), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(203), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(638), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6550), + [sym_equivalence_statement] = STATE(6550), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(785), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6992), + [sym_data_statement] = STATE(6550), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_enum] = STATE(202), + [sym_enum_statement] = STATE(5899), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_statement_function] = STATE(6550), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(202), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(631), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1332), [aux_sym_preproc_if_token1] = ACTIONS(1334), @@ -92056,110 +92056,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [199] = { - [sym_preproc_include] = STATE(203), - [sym_preproc_def] = STATE(203), - [sym_preproc_function_def] = STATE(203), - [sym_preproc_call] = STATE(203), - [sym_preproc_if_in_statements] = STATE(631), - [sym_preproc_ifdef_in_statements] = STATE(631), - [sym_interface] = STATE(203), - [sym_interface_statement] = STATE(3837), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7490), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(203), - [sym_use_statement] = STATE(6626), - [sym_implicit_statement] = STATE(6626), - [sym_save_statement] = STATE(6626), - [sym_private_statement] = STATE(203), - [sym_public_statement] = STATE(203), - [sym_namelist_statement] = STATE(6626), - [sym_common_statement] = STATE(6626), - [sym_import_statement] = STATE(6626), - [sym_derived_type_definition] = STATE(203), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4213), - [sym_variable_declaration] = STATE(6626), + [sym_preproc_include] = STATE(202), + [sym_preproc_def] = STATE(202), + [sym_preproc_function_def] = STATE(202), + [sym_preproc_call] = STATE(202), + [sym_preproc_if_in_statements] = STATE(626), + [sym_preproc_ifdef_in_statements] = STATE(626), + [sym_interface] = STATE(202), + [sym_interface_statement] = STATE(3807), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7693), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(202), + [sym_use_statement] = STATE(6550), + [sym_implicit_statement] = STATE(6550), + [sym_save_statement] = STATE(6550), + [sym_private_statement] = STATE(202), + [sym_public_statement] = STATE(202), + [sym_namelist_statement] = STATE(6550), + [sym_common_statement] = STATE(6550), + [sym_import_statement] = STATE(6550), + [sym_derived_type_definition] = STATE(202), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4204), + [sym_variable_declaration] = STATE(6550), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6626), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6550), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6626), - [sym_equivalence_statement] = STATE(6626), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(790), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6344), - [sym_data_statement] = STATE(6626), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_enum] = STATE(203), - [sym_enum_statement] = STATE(5896), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_statement_function] = STATE(6626), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(203), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(631), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6550), + [sym_equivalence_statement] = STATE(6550), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(785), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6992), + [sym_data_statement] = STATE(6550), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_enum] = STATE(202), + [sym_enum_statement] = STATE(5899), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_statement_function] = STATE(6550), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(202), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(626), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1332), [aux_sym_preproc_if_token1] = ACTIONS(1334), @@ -92290,106 +92290,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(766), [sym_preproc_function_def] = STATE(766), [sym_preproc_call] = STATE(766), - [sym_preproc_if_in_statements] = STATE(625), - [sym_preproc_ifdef_in_statements] = STATE(625), + [sym_preproc_if_in_statements] = STATE(627), + [sym_preproc_ifdef_in_statements] = STATE(627), [sym_interface] = STATE(766), - [sym_interface_statement] = STATE(3837), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7688), - [sym_contains_statement] = STATE(6397), + [sym_interface_statement] = STATE(3807), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(8009), + [sym_contains_statement] = STATE(6294), [sym__specification_part] = STATE(766), - [sym_use_statement] = STATE(6626), - [sym_implicit_statement] = STATE(6626), - [sym_save_statement] = STATE(6626), + [sym_use_statement] = STATE(6550), + [sym_implicit_statement] = STATE(6550), + [sym_save_statement] = STATE(6550), [sym_private_statement] = STATE(766), [sym_public_statement] = STATE(766), - [sym_namelist_statement] = STATE(6626), - [sym_common_statement] = STATE(6626), - [sym_import_statement] = STATE(6626), + [sym_namelist_statement] = STATE(6550), + [sym_common_statement] = STATE(6550), + [sym_import_statement] = STATE(6550), [sym_derived_type_definition] = STATE(766), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4213), - [sym_variable_declaration] = STATE(6626), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4204), + [sym_variable_declaration] = STATE(6550), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6626), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6550), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6626), - [sym_equivalence_statement] = STATE(6626), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(790), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6344), - [sym_data_statement] = STATE(6626), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6550), + [sym_equivalence_statement] = STATE(6550), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(785), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6992), + [sym_data_statement] = STATE(6550), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), [sym_enum] = STATE(766), - [sym_enum_statement] = STATE(5896), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_statement_function] = STATE(6626), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5899), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_statement_function] = STATE(6550), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(766), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(625), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(627), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1332), [aux_sym_preproc_if_token1] = ACTIONS(1334), @@ -92519,110 +92519,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(200), [sym_preproc_function_def] = STATE(200), [sym_preproc_call] = STATE(200), - [sym_preproc_if_in_statements] = STATE(632), - [sym_preproc_ifdef_in_statements] = STATE(632), + [sym_preproc_if_in_statements] = STATE(633), + [sym_preproc_ifdef_in_statements] = STATE(633), [sym_interface] = STATE(200), - [sym_interface_statement] = STATE(3837), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7916), - [sym_contains_statement] = STATE(6397), + [sym_interface_statement] = STATE(3807), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(8144), + [sym_contains_statement] = STATE(6294), [sym__specification_part] = STATE(200), - [sym_use_statement] = STATE(6626), - [sym_implicit_statement] = STATE(6626), - [sym_save_statement] = STATE(6626), + [sym_use_statement] = STATE(6550), + [sym_implicit_statement] = STATE(6550), + [sym_save_statement] = STATE(6550), [sym_private_statement] = STATE(200), [sym_public_statement] = STATE(200), - [sym_namelist_statement] = STATE(6626), - [sym_common_statement] = STATE(6626), - [sym_import_statement] = STATE(6626), + [sym_namelist_statement] = STATE(6550), + [sym_common_statement] = STATE(6550), + [sym_import_statement] = STATE(6550), [sym_derived_type_definition] = STATE(200), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4213), - [sym_variable_declaration] = STATE(6626), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4204), + [sym_variable_declaration] = STATE(6550), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6626), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6550), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6626), - [sym_equivalence_statement] = STATE(6626), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(790), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6344), - [sym_data_statement] = STATE(6626), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6550), + [sym_equivalence_statement] = STATE(6550), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(785), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6992), + [sym_data_statement] = STATE(6550), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), [sym_enum] = STATE(200), - [sym_enum_statement] = STATE(5896), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_statement_function] = STATE(6626), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5899), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_statement_function] = STATE(6550), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(200), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(632), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(633), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1332), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(658), + [aux_sym_preproc_if_token2] = ACTIONS(668), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), [sym_preproc_directive] = ACTIONS(1338), @@ -92744,114 +92744,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [202] = { - [sym_preproc_include] = STATE(200), - [sym_preproc_def] = STATE(200), - [sym_preproc_function_def] = STATE(200), - [sym_preproc_call] = STATE(200), - [sym_preproc_if_in_statements] = STATE(629), - [sym_preproc_ifdef_in_statements] = STATE(629), - [sym_interface] = STATE(200), - [sym_interface_statement] = STATE(3837), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7884), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(200), - [sym_use_statement] = STATE(6626), - [sym_implicit_statement] = STATE(6626), - [sym_save_statement] = STATE(6626), - [sym_private_statement] = STATE(200), - [sym_public_statement] = STATE(200), - [sym_namelist_statement] = STATE(6626), - [sym_common_statement] = STATE(6626), - [sym_import_statement] = STATE(6626), - [sym_derived_type_definition] = STATE(200), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4213), - [sym_variable_declaration] = STATE(6626), + [sym_preproc_include] = STATE(766), + [sym_preproc_def] = STATE(766), + [sym_preproc_function_def] = STATE(766), + [sym_preproc_call] = STATE(766), + [sym_preproc_if_in_statements] = STATE(630), + [sym_preproc_ifdef_in_statements] = STATE(630), + [sym_interface] = STATE(766), + [sym_interface_statement] = STATE(3807), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7476), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(766), + [sym_use_statement] = STATE(6550), + [sym_implicit_statement] = STATE(6550), + [sym_save_statement] = STATE(6550), + [sym_private_statement] = STATE(766), + [sym_public_statement] = STATE(766), + [sym_namelist_statement] = STATE(6550), + [sym_common_statement] = STATE(6550), + [sym_import_statement] = STATE(6550), + [sym_derived_type_definition] = STATE(766), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4204), + [sym_variable_declaration] = STATE(6550), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6626), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6550), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6626), - [sym_equivalence_statement] = STATE(6626), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(790), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6344), - [sym_data_statement] = STATE(6626), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_enum] = STATE(200), - [sym_enum_statement] = STATE(5896), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_statement_function] = STATE(6626), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(200), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(629), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6550), + [sym_equivalence_statement] = STATE(6550), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(785), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6992), + [sym_data_statement] = STATE(6550), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_enum] = STATE(766), + [sym_enum_statement] = STATE(5899), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_statement_function] = STATE(6550), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(766), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(630), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1332), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(658), + [aux_sym_preproc_if_token2] = ACTIONS(668), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), [sym_preproc_directive] = ACTIONS(1338), @@ -92973,114 +92973,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [203] = { - [sym_preproc_include] = STATE(766), - [sym_preproc_def] = STATE(766), - [sym_preproc_function_def] = STATE(766), - [sym_preproc_call] = STATE(766), - [sym_preproc_if_in_statements] = STATE(632), - [sym_preproc_ifdef_in_statements] = STATE(632), - [sym_interface] = STATE(766), - [sym_interface_statement] = STATE(3837), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7916), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(766), - [sym_use_statement] = STATE(6626), - [sym_implicit_statement] = STATE(6626), - [sym_save_statement] = STATE(6626), - [sym_private_statement] = STATE(766), - [sym_public_statement] = STATE(766), - [sym_namelist_statement] = STATE(6626), - [sym_common_statement] = STATE(6626), - [sym_import_statement] = STATE(6626), - [sym_derived_type_definition] = STATE(766), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4213), - [sym_variable_declaration] = STATE(6626), + [sym_preproc_include] = STATE(200), + [sym_preproc_def] = STATE(200), + [sym_preproc_function_def] = STATE(200), + [sym_preproc_call] = STATE(200), + [sym_preproc_if_in_statements] = STATE(630), + [sym_preproc_ifdef_in_statements] = STATE(630), + [sym_interface] = STATE(200), + [sym_interface_statement] = STATE(3807), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7476), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(200), + [sym_use_statement] = STATE(6550), + [sym_implicit_statement] = STATE(6550), + [sym_save_statement] = STATE(6550), + [sym_private_statement] = STATE(200), + [sym_public_statement] = STATE(200), + [sym_namelist_statement] = STATE(6550), + [sym_common_statement] = STATE(6550), + [sym_import_statement] = STATE(6550), + [sym_derived_type_definition] = STATE(200), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4204), + [sym_variable_declaration] = STATE(6550), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6626), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6550), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6626), - [sym_equivalence_statement] = STATE(6626), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(790), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6344), - [sym_data_statement] = STATE(6626), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_enum] = STATE(766), - [sym_enum_statement] = STATE(5896), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_statement_function] = STATE(6626), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(766), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(632), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6550), + [sym_equivalence_statement] = STATE(6550), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(785), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6992), + [sym_data_statement] = STATE(6550), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_enum] = STATE(200), + [sym_enum_statement] = STATE(5899), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_statement_function] = STATE(6550), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(200), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(630), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1332), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(658), + [aux_sym_preproc_if_token2] = ACTIONS(668), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), [sym_preproc_directive] = ACTIONS(1338), @@ -93142,7 +93142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1362), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -93206,110 +93206,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(200), [sym_preproc_function_def] = STATE(200), [sym_preproc_call] = STATE(200), - [sym_preproc_if_in_statements] = STATE(633), - [sym_preproc_ifdef_in_statements] = STATE(633), + [sym_preproc_if_in_statements] = STATE(634), + [sym_preproc_ifdef_in_statements] = STATE(634), [sym_interface] = STATE(200), - [sym_interface_statement] = STATE(3837), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(8125), - [sym_contains_statement] = STATE(6397), + [sym_interface_statement] = STATE(3807), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(8109), + [sym_contains_statement] = STATE(6294), [sym__specification_part] = STATE(200), - [sym_use_statement] = STATE(6626), - [sym_implicit_statement] = STATE(6626), - [sym_save_statement] = STATE(6626), + [sym_use_statement] = STATE(6550), + [sym_implicit_statement] = STATE(6550), + [sym_save_statement] = STATE(6550), [sym_private_statement] = STATE(200), [sym_public_statement] = STATE(200), - [sym_namelist_statement] = STATE(6626), - [sym_common_statement] = STATE(6626), - [sym_import_statement] = STATE(6626), + [sym_namelist_statement] = STATE(6550), + [sym_common_statement] = STATE(6550), + [sym_import_statement] = STATE(6550), [sym_derived_type_definition] = STATE(200), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4213), - [sym_variable_declaration] = STATE(6626), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4204), + [sym_variable_declaration] = STATE(6550), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6626), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6550), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6626), - [sym_equivalence_statement] = STATE(6626), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(790), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6344), - [sym_data_statement] = STATE(6626), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6550), + [sym_equivalence_statement] = STATE(6550), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(785), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6992), + [sym_data_statement] = STATE(6550), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), [sym_enum] = STATE(200), - [sym_enum_statement] = STATE(5896), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_statement_function] = STATE(6626), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5899), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_statement_function] = STATE(6550), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(200), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(633), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(634), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1332), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(658), + [aux_sym_preproc_if_token2] = ACTIONS(668), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), [sym_preproc_directive] = ACTIONS(1338), @@ -93435,105 +93435,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(767), [sym_preproc_function_def] = STATE(767), [sym_preproc_call] = STATE(767), - [sym_preproc_if_in_statements] = STATE(700), - [sym_preproc_ifdef_in_statements] = STATE(700), + [sym_preproc_if_in_statements] = STATE(654), + [sym_preproc_ifdef_in_statements] = STATE(654), [sym_interface] = STATE(767), - [sym_interface_statement] = STATE(3745), - [sym_language_binding] = STATE(3142), + [sym_interface_statement] = STATE(3744), + [sym_language_binding] = STATE(3156), [sym__specification_part] = STATE(767), - [sym_use_statement] = STATE(6273), - [sym_implicit_statement] = STATE(6273), - [sym_save_statement] = STATE(6273), + [sym_use_statement] = STATE(6817), + [sym_implicit_statement] = STATE(6817), + [sym_save_statement] = STATE(6817), [sym_private_statement] = STATE(767), [sym_public_statement] = STATE(767), - [sym_namelist_statement] = STATE(6273), - [sym_common_statement] = STATE(6273), - [sym_import_statement] = STATE(6273), + [sym_namelist_statement] = STATE(6817), + [sym_common_statement] = STATE(6817), + [sym_import_statement] = STATE(6817), [sym_derived_type_definition] = STATE(767), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4223), - [sym_variable_declaration] = STATE(6273), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4215), + [sym_variable_declaration] = STATE(6817), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6273), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6817), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6273), - [sym_equivalence_statement] = STATE(6273), - [sym__statements] = STATE(6846), - [sym_statement_label] = STATE(786), - [sym_stop_statement] = STATE(6846), - [sym_assignment_statement] = STATE(6846), - [sym_pointer_association_statement] = STATE(6846), - [sym_subroutine_call] = STATE(6846), - [sym_keyword_statement] = STATE(6846), - [sym_include_statement] = STATE(6919), - [sym_data_statement] = STATE(6273), - [sym_do_loop_statement] = STATE(6846), - [sym_do_label_statement] = STATE(6846), - [sym_end_do_label_statement] = STATE(6846), - [sym_if_statement] = STATE(6846), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6846), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6846), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6846), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6846), - [sym_select_type_statement] = STATE(6846), - [sym_select_rank_statement] = STATE(6846), - [sym_block_construct] = STATE(6846), - [sym_end_block_construct_statement] = STATE(7334), - [sym_associate_statement] = STATE(6846), - [sym_format_statement] = STATE(6846), - [sym_read_statement] = STATE(6846), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6846), - [sym_open_statement] = STATE(6846), - [sym_close_statement] = STATE(6846), - [sym_write_statement] = STATE(6846), - [sym_inquire_statement] = STATE(6846), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6817), + [sym_equivalence_statement] = STATE(6817), + [sym__statements] = STATE(6669), + [sym_statement_label] = STATE(788), + [sym_stop_statement] = STATE(6669), + [sym_assignment_statement] = STATE(6669), + [sym_pointer_association_statement] = STATE(6669), + [sym_subroutine_call] = STATE(6669), + [sym_keyword_statement] = STATE(6669), + [sym_include_statement] = STATE(6400), + [sym_data_statement] = STATE(6817), + [sym_do_loop_statement] = STATE(6669), + [sym_do_label_statement] = STATE(6669), + [sym_end_do_label_statement] = STATE(6669), + [sym_if_statement] = STATE(6669), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6669), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6669), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6669), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6669), + [sym_select_type_statement] = STATE(6669), + [sym_select_rank_statement] = STATE(6669), + [sym_block_construct] = STATE(6669), + [sym_end_block_construct_statement] = STATE(7199), + [sym_associate_statement] = STATE(6669), + [sym_format_statement] = STATE(6669), + [sym_read_statement] = STATE(6669), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6669), + [sym_open_statement] = STATE(6669), + [sym_close_statement] = STATE(6669), + [sym_write_statement] = STATE(6669), + [sym_inquire_statement] = STATE(6669), [sym_enum] = STATE(767), - [sym_enum_statement] = STATE(5874), - [sym_file_position_statement] = STATE(6846), - [sym_allocate_statement] = STATE(6846), - [sym_statement_function] = STATE(6273), - [sym_entry_statement] = STATE(6846), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6846), - [sym_coarray_team_statement] = STATE(6846), - [sym_coarray_critical_statement] = STATE(6846), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5887), + [sym_file_position_statement] = STATE(6669), + [sym_allocate_statement] = STATE(6669), + [sym_statement_function] = STATE(6817), + [sym_entry_statement] = STATE(6669), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6669), + [sym_coarray_team_statement] = STATE(6669), + [sym_coarray_critical_statement] = STATE(6669), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(767), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(700), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(654), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1368), [aux_sym_preproc_if_token1] = ACTIONS(1370), @@ -93658,109 +93658,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [206] = { - [sym_preproc_include] = STATE(208), - [sym_preproc_def] = STATE(208), - [sym_preproc_function_def] = STATE(208), - [sym_preproc_call] = STATE(208), - [sym_preproc_if_in_statements] = STATE(700), - [sym_preproc_ifdef_in_statements] = STATE(700), - [sym_interface] = STATE(208), - [sym_interface_statement] = STATE(3745), - [sym_language_binding] = STATE(3142), - [sym__specification_part] = STATE(208), - [sym_use_statement] = STATE(6273), - [sym_implicit_statement] = STATE(6273), - [sym_save_statement] = STATE(6273), - [sym_private_statement] = STATE(208), - [sym_public_statement] = STATE(208), - [sym_namelist_statement] = STATE(6273), - [sym_common_statement] = STATE(6273), - [sym_import_statement] = STATE(6273), - [sym_derived_type_definition] = STATE(208), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4223), - [sym_variable_declaration] = STATE(6273), + [sym_preproc_include] = STATE(205), + [sym_preproc_def] = STATE(205), + [sym_preproc_function_def] = STATE(205), + [sym_preproc_call] = STATE(205), + [sym_preproc_if_in_statements] = STATE(664), + [sym_preproc_ifdef_in_statements] = STATE(664), + [sym_interface] = STATE(205), + [sym_interface_statement] = STATE(3744), + [sym_language_binding] = STATE(3156), + [sym__specification_part] = STATE(205), + [sym_use_statement] = STATE(6817), + [sym_implicit_statement] = STATE(6817), + [sym_save_statement] = STATE(6817), + [sym_private_statement] = STATE(205), + [sym_public_statement] = STATE(205), + [sym_namelist_statement] = STATE(6817), + [sym_common_statement] = STATE(6817), + [sym_import_statement] = STATE(6817), + [sym_derived_type_definition] = STATE(205), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4215), + [sym_variable_declaration] = STATE(6817), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6273), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6817), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6273), - [sym_equivalence_statement] = STATE(6273), - [sym__statements] = STATE(6846), - [sym_statement_label] = STATE(786), - [sym_stop_statement] = STATE(6846), - [sym_assignment_statement] = STATE(6846), - [sym_pointer_association_statement] = STATE(6846), - [sym_subroutine_call] = STATE(6846), - [sym_keyword_statement] = STATE(6846), - [sym_include_statement] = STATE(6919), - [sym_data_statement] = STATE(6273), - [sym_do_loop_statement] = STATE(6846), - [sym_do_label_statement] = STATE(6846), - [sym_end_do_label_statement] = STATE(6846), - [sym_if_statement] = STATE(6846), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6846), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6846), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6846), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6846), - [sym_select_type_statement] = STATE(6846), - [sym_select_rank_statement] = STATE(6846), - [sym_block_construct] = STATE(6846), - [sym_end_block_construct_statement] = STATE(7334), - [sym_associate_statement] = STATE(6846), - [sym_format_statement] = STATE(6846), - [sym_read_statement] = STATE(6846), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6846), - [sym_open_statement] = STATE(6846), - [sym_close_statement] = STATE(6846), - [sym_write_statement] = STATE(6846), - [sym_inquire_statement] = STATE(6846), - [sym_enum] = STATE(208), - [sym_enum_statement] = STATE(5874), - [sym_file_position_statement] = STATE(6846), - [sym_allocate_statement] = STATE(6846), - [sym_statement_function] = STATE(6273), - [sym_entry_statement] = STATE(6846), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6846), - [sym_coarray_team_statement] = STATE(6846), - [sym_coarray_critical_statement] = STATE(6846), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(208), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(700), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6817), + [sym_equivalence_statement] = STATE(6817), + [sym__statements] = STATE(6669), + [sym_statement_label] = STATE(788), + [sym_stop_statement] = STATE(6669), + [sym_assignment_statement] = STATE(6669), + [sym_pointer_association_statement] = STATE(6669), + [sym_subroutine_call] = STATE(6669), + [sym_keyword_statement] = STATE(6669), + [sym_include_statement] = STATE(6400), + [sym_data_statement] = STATE(6817), + [sym_do_loop_statement] = STATE(6669), + [sym_do_label_statement] = STATE(6669), + [sym_end_do_label_statement] = STATE(6669), + [sym_if_statement] = STATE(6669), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6669), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6669), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6669), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6669), + [sym_select_type_statement] = STATE(6669), + [sym_select_rank_statement] = STATE(6669), + [sym_block_construct] = STATE(6669), + [sym_end_block_construct_statement] = STATE(7349), + [sym_associate_statement] = STATE(6669), + [sym_format_statement] = STATE(6669), + [sym_read_statement] = STATE(6669), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6669), + [sym_open_statement] = STATE(6669), + [sym_close_statement] = STATE(6669), + [sym_write_statement] = STATE(6669), + [sym_inquire_statement] = STATE(6669), + [sym_enum] = STATE(205), + [sym_enum_statement] = STATE(5887), + [sym_file_position_statement] = STATE(6669), + [sym_allocate_statement] = STATE(6669), + [sym_statement_function] = STATE(6817), + [sym_entry_statement] = STATE(6669), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6669), + [sym_coarray_team_statement] = STATE(6669), + [sym_coarray_critical_statement] = STATE(6669), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(205), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(664), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1368), [aux_sym_preproc_if_token1] = ACTIONS(1370), @@ -93824,7 +93824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1386), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -93885,109 +93885,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [207] = { - [sym_preproc_include] = STATE(205), - [sym_preproc_def] = STATE(205), - [sym_preproc_function_def] = STATE(205), - [sym_preproc_call] = STATE(205), - [sym_preproc_if_in_statements] = STATE(683), - [sym_preproc_ifdef_in_statements] = STATE(683), - [sym_interface] = STATE(205), - [sym_interface_statement] = STATE(3745), - [sym_language_binding] = STATE(3142), - [sym__specification_part] = STATE(205), - [sym_use_statement] = STATE(6273), - [sym_implicit_statement] = STATE(6273), - [sym_save_statement] = STATE(6273), - [sym_private_statement] = STATE(205), - [sym_public_statement] = STATE(205), - [sym_namelist_statement] = STATE(6273), - [sym_common_statement] = STATE(6273), - [sym_import_statement] = STATE(6273), - [sym_derived_type_definition] = STATE(205), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4223), - [sym_variable_declaration] = STATE(6273), + [sym_preproc_include] = STATE(208), + [sym_preproc_def] = STATE(208), + [sym_preproc_function_def] = STATE(208), + [sym_preproc_call] = STATE(208), + [sym_preproc_if_in_statements] = STATE(682), + [sym_preproc_ifdef_in_statements] = STATE(682), + [sym_interface] = STATE(208), + [sym_interface_statement] = STATE(3744), + [sym_language_binding] = STATE(3156), + [sym__specification_part] = STATE(208), + [sym_use_statement] = STATE(6817), + [sym_implicit_statement] = STATE(6817), + [sym_save_statement] = STATE(6817), + [sym_private_statement] = STATE(208), + [sym_public_statement] = STATE(208), + [sym_namelist_statement] = STATE(6817), + [sym_common_statement] = STATE(6817), + [sym_import_statement] = STATE(6817), + [sym_derived_type_definition] = STATE(208), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4215), + [sym_variable_declaration] = STATE(6817), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6273), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6817), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6273), - [sym_equivalence_statement] = STATE(6273), - [sym__statements] = STATE(6846), - [sym_statement_label] = STATE(786), - [sym_stop_statement] = STATE(6846), - [sym_assignment_statement] = STATE(6846), - [sym_pointer_association_statement] = STATE(6846), - [sym_subroutine_call] = STATE(6846), - [sym_keyword_statement] = STATE(6846), - [sym_include_statement] = STATE(6919), - [sym_data_statement] = STATE(6273), - [sym_do_loop_statement] = STATE(6846), - [sym_do_label_statement] = STATE(6846), - [sym_end_do_label_statement] = STATE(6846), - [sym_if_statement] = STATE(6846), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6846), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6846), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6846), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6846), - [sym_select_type_statement] = STATE(6846), - [sym_select_rank_statement] = STATE(6846), - [sym_block_construct] = STATE(6846), - [sym_end_block_construct_statement] = STATE(7136), - [sym_associate_statement] = STATE(6846), - [sym_format_statement] = STATE(6846), - [sym_read_statement] = STATE(6846), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6846), - [sym_open_statement] = STATE(6846), - [sym_close_statement] = STATE(6846), - [sym_write_statement] = STATE(6846), - [sym_inquire_statement] = STATE(6846), - [sym_enum] = STATE(205), - [sym_enum_statement] = STATE(5874), - [sym_file_position_statement] = STATE(6846), - [sym_allocate_statement] = STATE(6846), - [sym_statement_function] = STATE(6273), - [sym_entry_statement] = STATE(6846), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6846), - [sym_coarray_team_statement] = STATE(6846), - [sym_coarray_critical_statement] = STATE(6846), - [sym_identifier] = STATE(4574), - [aux_sym_preproc_if_in_module_repeat1] = STATE(205), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(683), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6817), + [sym_equivalence_statement] = STATE(6817), + [sym__statements] = STATE(6669), + [sym_statement_label] = STATE(788), + [sym_stop_statement] = STATE(6669), + [sym_assignment_statement] = STATE(6669), + [sym_pointer_association_statement] = STATE(6669), + [sym_subroutine_call] = STATE(6669), + [sym_keyword_statement] = STATE(6669), + [sym_include_statement] = STATE(6400), + [sym_data_statement] = STATE(6817), + [sym_do_loop_statement] = STATE(6669), + [sym_do_label_statement] = STATE(6669), + [sym_end_do_label_statement] = STATE(6669), + [sym_if_statement] = STATE(6669), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6669), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6669), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6669), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6669), + [sym_select_type_statement] = STATE(6669), + [sym_select_rank_statement] = STATE(6669), + [sym_block_construct] = STATE(6669), + [sym_end_block_construct_statement] = STATE(7325), + [sym_associate_statement] = STATE(6669), + [sym_format_statement] = STATE(6669), + [sym_read_statement] = STATE(6669), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6669), + [sym_open_statement] = STATE(6669), + [sym_close_statement] = STATE(6669), + [sym_write_statement] = STATE(6669), + [sym_inquire_statement] = STATE(6669), + [sym_enum] = STATE(208), + [sym_enum_statement] = STATE(5887), + [sym_file_position_statement] = STATE(6669), + [sym_allocate_statement] = STATE(6669), + [sym_statement_function] = STATE(6817), + [sym_entry_statement] = STATE(6669), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6669), + [sym_coarray_team_statement] = STATE(6669), + [sym_coarray_critical_statement] = STATE(6669), + [sym_identifier] = STATE(4591), + [aux_sym_preproc_if_in_module_repeat1] = STATE(208), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(682), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1368), [aux_sym_preproc_if_token1] = ACTIONS(1370), @@ -94051,7 +94051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1388), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -94116,105 +94116,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(767), [sym_preproc_function_def] = STATE(767), [sym_preproc_call] = STATE(767), - [sym_preproc_if_in_statements] = STATE(696), - [sym_preproc_ifdef_in_statements] = STATE(696), + [sym_preproc_if_in_statements] = STATE(664), + [sym_preproc_ifdef_in_statements] = STATE(664), [sym_interface] = STATE(767), - [sym_interface_statement] = STATE(3745), - [sym_language_binding] = STATE(3142), + [sym_interface_statement] = STATE(3744), + [sym_language_binding] = STATE(3156), [sym__specification_part] = STATE(767), - [sym_use_statement] = STATE(6273), - [sym_implicit_statement] = STATE(6273), - [sym_save_statement] = STATE(6273), + [sym_use_statement] = STATE(6817), + [sym_implicit_statement] = STATE(6817), + [sym_save_statement] = STATE(6817), [sym_private_statement] = STATE(767), [sym_public_statement] = STATE(767), - [sym_namelist_statement] = STATE(6273), - [sym_common_statement] = STATE(6273), - [sym_import_statement] = STATE(6273), + [sym_namelist_statement] = STATE(6817), + [sym_common_statement] = STATE(6817), + [sym_import_statement] = STATE(6817), [sym_derived_type_definition] = STATE(767), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4223), - [sym_variable_declaration] = STATE(6273), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4215), + [sym_variable_declaration] = STATE(6817), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6273), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6817), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6273), - [sym_equivalence_statement] = STATE(6273), - [sym__statements] = STATE(6846), - [sym_statement_label] = STATE(786), - [sym_stop_statement] = STATE(6846), - [sym_assignment_statement] = STATE(6846), - [sym_pointer_association_statement] = STATE(6846), - [sym_subroutine_call] = STATE(6846), - [sym_keyword_statement] = STATE(6846), - [sym_include_statement] = STATE(6919), - [sym_data_statement] = STATE(6273), - [sym_do_loop_statement] = STATE(6846), - [sym_do_label_statement] = STATE(6846), - [sym_end_do_label_statement] = STATE(6846), - [sym_if_statement] = STATE(6846), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6846), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6846), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6846), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6846), - [sym_select_type_statement] = STATE(6846), - [sym_select_rank_statement] = STATE(6846), - [sym_block_construct] = STATE(6846), - [sym_end_block_construct_statement] = STATE(7198), - [sym_associate_statement] = STATE(6846), - [sym_format_statement] = STATE(6846), - [sym_read_statement] = STATE(6846), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6846), - [sym_open_statement] = STATE(6846), - [sym_close_statement] = STATE(6846), - [sym_write_statement] = STATE(6846), - [sym_inquire_statement] = STATE(6846), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6817), + [sym_equivalence_statement] = STATE(6817), + [sym__statements] = STATE(6669), + [sym_statement_label] = STATE(788), + [sym_stop_statement] = STATE(6669), + [sym_assignment_statement] = STATE(6669), + [sym_pointer_association_statement] = STATE(6669), + [sym_subroutine_call] = STATE(6669), + [sym_keyword_statement] = STATE(6669), + [sym_include_statement] = STATE(6400), + [sym_data_statement] = STATE(6817), + [sym_do_loop_statement] = STATE(6669), + [sym_do_label_statement] = STATE(6669), + [sym_end_do_label_statement] = STATE(6669), + [sym_if_statement] = STATE(6669), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6669), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6669), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6669), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6669), + [sym_select_type_statement] = STATE(6669), + [sym_select_rank_statement] = STATE(6669), + [sym_block_construct] = STATE(6669), + [sym_end_block_construct_statement] = STATE(7349), + [sym_associate_statement] = STATE(6669), + [sym_format_statement] = STATE(6669), + [sym_read_statement] = STATE(6669), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6669), + [sym_open_statement] = STATE(6669), + [sym_close_statement] = STATE(6669), + [sym_write_statement] = STATE(6669), + [sym_inquire_statement] = STATE(6669), [sym_enum] = STATE(767), - [sym_enum_statement] = STATE(5874), - [sym_file_position_statement] = STATE(6846), - [sym_allocate_statement] = STATE(6846), - [sym_statement_function] = STATE(6273), - [sym_entry_statement] = STATE(6846), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6846), - [sym_coarray_team_statement] = STATE(6846), - [sym_coarray_critical_statement] = STATE(6846), - [sym_identifier] = STATE(4574), + [sym_enum_statement] = STATE(5887), + [sym_file_position_statement] = STATE(6669), + [sym_allocate_statement] = STATE(6669), + [sym_statement_function] = STATE(6817), + [sym_entry_statement] = STATE(6669), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6669), + [sym_coarray_team_statement] = STATE(6669), + [sym_coarray_critical_statement] = STATE(6669), + [sym_identifier] = STATE(4591), [aux_sym_preproc_if_in_module_repeat1] = STATE(767), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(696), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(664), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1368), [aux_sym_preproc_if_token1] = ACTIONS(1370), @@ -94278,7 +94278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1386), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -94339,99 +94339,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(189), }, [209] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7768), - [sym_preproc_elif_in_specification_part] = STATE(7768), - [sym_preproc_elifdef_in_specification_part] = STATE(7768), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7922), - [sym_preproc_elif_in_statements] = STATE(7922), - [sym_preproc_elifdef_in_statements] = STATE(7922), - [sym_preproc_else_in_procedure_statements] = STATE(7718), - [sym_preproc_elif_in_procedure_statements] = STATE(7718), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7718), - [sym_internal_procedures] = STATE(5472), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8203), + [sym_preproc_elif_in_specification_part] = STATE(8203), + [sym_preproc_elifdef_in_specification_part] = STATE(8203), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8217), + [sym_preproc_elif_in_statements] = STATE(8217), + [sym_preproc_elifdef_in_statements] = STATE(8217), + [sym_preproc_else_in_procedure_statements] = STATE(8020), + [sym_preproc_elif_in_procedure_statements] = STATE(8020), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8020), + [sym_internal_procedures] = STATE(5448), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(974), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -94453,10 +94453,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -94465,7 +94465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -94517,291 +94517,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [210] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8113), - [sym_preproc_elif_in_specification_part] = STATE(8113), - [sym_preproc_elifdef_in_specification_part] = STATE(8113), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7521), - [sym_preproc_elif_in_statements] = STATE(7521), - [sym_preproc_elifdef_in_statements] = STATE(7521), - [sym_preproc_else_in_procedure_statements] = STATE(7868), - [sym_preproc_elif_in_procedure_statements] = STATE(7868), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7868), - [sym_internal_procedures] = STATE(5433), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(738), - [aux_sym_preproc_elif_token1] = ACTIONS(740), - [aux_sym_preproc_elifdef_token1] = ACTIONS(742), - [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [211] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8183), - [sym_preproc_elif_in_specification_part] = STATE(8183), - [sym_preproc_elifdef_in_specification_part] = STATE(8183), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7903), + [sym_preproc_elif_in_specification_part] = STATE(7903), + [sym_preproc_elifdef_in_specification_part] = STATE(7903), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), [sym_preproc_else_in_statements] = STATE(7529), [sym_preproc_elif_in_statements] = STATE(7529), [sym_preproc_elifdef_in_statements] = STATE(7529), - [sym_preproc_else_in_procedure_statements] = STATE(8204), - [sym_preproc_elif_in_procedure_statements] = STATE(8204), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8204), - [sym_internal_procedures] = STATE(5437), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_else_in_procedure_statements] = STATE(8116), + [sym_preproc_elif_in_procedure_statements] = STATE(8116), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8116), + [sym_internal_procedures] = STATE(5481), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(808), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -94823,10 +94638,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -94835,7 +94650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -94887,106 +94702,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [212] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8312), - [sym_preproc_elif_in_specification_part] = STATE(8312), - [sym_preproc_elifdef_in_specification_part] = STATE(8312), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7535), - [sym_preproc_elif_in_statements] = STATE(7535), - [sym_preproc_elifdef_in_statements] = STATE(7535), - [sym_preproc_else_in_procedure_statements] = STATE(7466), - [sym_preproc_elif_in_procedure_statements] = STATE(7466), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7466), - [sym_internal_procedures] = STATE(5441), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [211] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8215), + [sym_preproc_elif_in_specification_part] = STATE(8215), + [sym_preproc_elifdef_in_specification_part] = STATE(8215), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7631), + [sym_preproc_elif_in_statements] = STATE(7631), + [sym_preproc_elifdef_in_statements] = STATE(7631), + [sym_preproc_else_in_procedure_statements] = STATE(8199), + [sym_preproc_elif_in_procedure_statements] = STATE(8199), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8199), + [sym_internal_procedures] = STATE(5427), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1408), + [aux_sym_preproc_if_token2] = ACTIONS(1404), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -95008,10 +94823,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -95020,7 +94835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -95072,106 +94887,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [213] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8296), - [sym_preproc_elif_in_specification_part] = STATE(8296), - [sym_preproc_elifdef_in_specification_part] = STATE(8296), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8297), - [sym_preproc_elif_in_statements] = STATE(8297), - [sym_preproc_elifdef_in_statements] = STATE(8297), - [sym_preproc_else_in_procedure_statements] = STATE(8005), - [sym_preproc_elif_in_procedure_statements] = STATE(8005), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8005), - [sym_internal_procedures] = STATE(5467), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [212] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8123), + [sym_preproc_elif_in_specification_part] = STATE(8123), + [sym_preproc_elifdef_in_specification_part] = STATE(8123), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7602), + [sym_preproc_elif_in_statements] = STATE(7602), + [sym_preproc_elifdef_in_statements] = STATE(7602), + [sym_preproc_else_in_procedure_statements] = STATE(8077), + [sym_preproc_elif_in_procedure_statements] = STATE(8077), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8077), + [sym_internal_procedures] = STATE(5479), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(812), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -95193,10 +95008,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -95205,7 +95020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -95257,106 +95072,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [214] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7471), - [sym_preproc_elif_in_specification_part] = STATE(7471), - [sym_preproc_elifdef_in_specification_part] = STATE(7471), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7921), - [sym_preproc_elif_in_statements] = STATE(7921), - [sym_preproc_elifdef_in_statements] = STATE(7921), - [sym_preproc_else_in_procedure_statements] = STATE(7475), - [sym_preproc_elif_in_procedure_statements] = STATE(7475), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7475), - [sym_internal_procedures] = STATE(5470), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [213] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8012), + [sym_preproc_elif_in_specification_part] = STATE(8012), + [sym_preproc_elifdef_in_specification_part] = STATE(8012), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8018), + [sym_preproc_elif_in_statements] = STATE(8018), + [sym_preproc_elifdef_in_statements] = STATE(8018), + [sym_preproc_else_in_procedure_statements] = STATE(7539), + [sym_preproc_elif_in_procedure_statements] = STATE(7539), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7539), + [sym_internal_procedures] = STATE(5432), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(798), + [aux_sym_preproc_if_token2] = ACTIONS(990), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -95378,10 +95193,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -95390,7 +95205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -95442,106 +95257,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [215] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8316), - [sym_preproc_elif_in_specification_part] = STATE(8316), - [sym_preproc_elifdef_in_specification_part] = STATE(8316), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8318), - [sym_preproc_elif_in_statements] = STATE(8318), - [sym_preproc_elifdef_in_statements] = STATE(8318), - [sym_preproc_else_in_procedure_statements] = STATE(7919), - [sym_preproc_elif_in_procedure_statements] = STATE(7919), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7919), - [sym_internal_procedures] = STATE(5425), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [214] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7979), + [sym_preproc_elif_in_specification_part] = STATE(7979), + [sym_preproc_elifdef_in_specification_part] = STATE(7979), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7530), + [sym_preproc_elif_in_statements] = STATE(7530), + [sym_preproc_elifdef_in_statements] = STATE(7530), + [sym_preproc_else_in_procedure_statements] = STATE(8125), + [sym_preproc_elif_in_procedure_statements] = STATE(8125), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8125), + [sym_internal_procedures] = STATE(5482), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(1406), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -95563,10 +95378,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -95575,7 +95390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -95627,106 +95442,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [216] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8368), - [sym_preproc_elif_in_specification_part] = STATE(8368), - [sym_preproc_elifdef_in_specification_part] = STATE(8368), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8372), - [sym_preproc_elif_in_statements] = STATE(8372), - [sym_preproc_elifdef_in_statements] = STATE(8372), - [sym_preproc_else_in_procedure_statements] = STATE(8018), - [sym_preproc_elif_in_procedure_statements] = STATE(8018), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8018), - [sym_internal_procedures] = STATE(5468), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [215] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8408), + [sym_preproc_elif_in_specification_part] = STATE(8408), + [sym_preproc_elifdef_in_specification_part] = STATE(8408), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7536), + [sym_preproc_elif_in_statements] = STATE(7536), + [sym_preproc_elifdef_in_statements] = STATE(7536), + [sym_preproc_else_in_procedure_statements] = STATE(8163), + [sym_preproc_elif_in_procedure_statements] = STATE(8163), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8163), + [sym_internal_procedures] = STATE(5437), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(990), + [aux_sym_preproc_if_token2] = ACTIONS(1408), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -95748,10 +95563,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -95760,7 +95575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -95812,106 +95627,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [217] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7989), - [sym_preproc_elif_in_specification_part] = STATE(7989), - [sym_preproc_elifdef_in_specification_part] = STATE(7989), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [216] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7647), + [sym_preproc_elif_in_specification_part] = STATE(7647), + [sym_preproc_elifdef_in_specification_part] = STATE(7647), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), [sym_preproc_else_in_statements] = STATE(7522), [sym_preproc_elif_in_statements] = STATE(7522), [sym_preproc_elifdef_in_statements] = STATE(7522), - [sym_preproc_else_in_procedure_statements] = STATE(8091), - [sym_preproc_elif_in_procedure_statements] = STATE(8091), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8091), - [sym_internal_procedures] = STATE(5445), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_else_in_procedure_statements] = STATE(7948), + [sym_preproc_elif_in_procedure_statements] = STATE(7948), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7948), + [sym_internal_procedures] = STATE(5444), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(820), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -95933,10 +95748,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -95945,7 +95760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -95997,106 +95812,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [218] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8139), - [sym_preproc_elif_in_specification_part] = STATE(8139), - [sym_preproc_elifdef_in_specification_part] = STATE(8139), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7888), - [sym_preproc_elif_in_statements] = STATE(7888), - [sym_preproc_elifdef_in_statements] = STATE(7888), - [sym_preproc_else_in_procedure_statements] = STATE(7606), - [sym_preproc_elif_in_procedure_statements] = STATE(7606), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7606), - [sym_internal_procedures] = STATE(5465), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [217] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8035), + [sym_preproc_elif_in_specification_part] = STATE(8035), + [sym_preproc_elifdef_in_specification_part] = STATE(8035), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_preproc_else_in_procedure_statements] = STATE(8292), + [sym_preproc_elif_in_procedure_statements] = STATE(8292), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8292), + [sym_internal_procedures] = STATE(5434), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(794), + [aux_sym_preproc_if_token2] = ACTIONS(259), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -96118,10 +95933,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -96130,7 +95945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -96182,106 +95997,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [219] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8307), - [sym_preproc_elif_in_specification_part] = STATE(8307), - [sym_preproc_elifdef_in_specification_part] = STATE(8307), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7481), - [sym_preproc_elif_in_statements] = STATE(7481), - [sym_preproc_elifdef_in_statements] = STATE(7481), - [sym_preproc_else_in_procedure_statements] = STATE(8096), - [sym_preproc_elif_in_procedure_statements] = STATE(8096), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8096), - [sym_internal_procedures] = STATE(5475), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [218] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7905), + [sym_preproc_elif_in_specification_part] = STATE(7905), + [sym_preproc_elifdef_in_specification_part] = STATE(7905), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8080), + [sym_preproc_elif_in_statements] = STATE(8080), + [sym_preproc_elifdef_in_statements] = STATE(8080), + [sym_preproc_else_in_procedure_statements] = STATE(8152), + [sym_preproc_elif_in_procedure_statements] = STATE(8152), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8152), + [sym_internal_procedures] = STATE(5468), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(786), + [aux_sym_preproc_if_token2] = ACTIONS(1410), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -96303,10 +96118,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -96315,7 +96130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -96367,106 +96182,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [220] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7620), - [sym_preproc_elif_in_specification_part] = STATE(7620), - [sym_preproc_elifdef_in_specification_part] = STATE(7620), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7961), - [sym_preproc_elif_in_statements] = STATE(7961), - [sym_preproc_elifdef_in_statements] = STATE(7961), - [sym_preproc_else_in_procedure_statements] = STATE(7923), - [sym_preproc_elif_in_procedure_statements] = STATE(7923), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7923), - [sym_internal_procedures] = STATE(5476), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [219] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7635), + [sym_preproc_elif_in_specification_part] = STATE(7635), + [sym_preproc_elifdef_in_specification_part] = STATE(7635), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8021), + [sym_preproc_elif_in_statements] = STATE(8021), + [sym_preproc_elifdef_in_statements] = STATE(8021), + [sym_preproc_else_in_procedure_statements] = STATE(7929), + [sym_preproc_elif_in_procedure_statements] = STATE(7929), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7929), + [sym_internal_procedures] = STATE(5423), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1412), + [aux_sym_preproc_if_token2] = ACTIONS(796), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -96488,10 +96303,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -96500,7 +96315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -96552,106 +96367,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [221] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8240), - [sym_preproc_elif_in_specification_part] = STATE(8240), - [sym_preproc_elifdef_in_specification_part] = STATE(8240), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7463), - [sym_preproc_elif_in_statements] = STATE(7463), - [sym_preproc_elifdef_in_statements] = STATE(7463), - [sym_preproc_else_in_procedure_statements] = STATE(8366), - [sym_preproc_elif_in_procedure_statements] = STATE(8366), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8366), - [sym_internal_procedures] = STATE(5435), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [220] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7722), + [sym_preproc_elif_in_specification_part] = STATE(7722), + [sym_preproc_elifdef_in_specification_part] = STATE(7722), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8031), + [sym_preproc_elif_in_statements] = STATE(8031), + [sym_preproc_elifdef_in_statements] = STATE(8031), + [sym_preproc_else_in_procedure_statements] = STATE(7936), + [sym_preproc_elif_in_procedure_statements] = STATE(7936), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7936), + [sym_internal_procedures] = STATE(5429), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(824), + [aux_sym_preproc_if_token2] = ACTIONS(1412), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -96673,10 +96488,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -96685,7 +96500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -96737,106 +96552,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [222] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7612), - [sym_preproc_elif_in_specification_part] = STATE(7612), - [sym_preproc_elifdef_in_specification_part] = STATE(7612), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_preproc_else_in_procedure_statements] = STATE(7602), - [sym_preproc_elif_in_procedure_statements] = STATE(7602), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7602), - [sym_internal_procedures] = STATE(5447), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [221] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7934), + [sym_preproc_elif_in_specification_part] = STATE(7934), + [sym_preproc_elifdef_in_specification_part] = STATE(7934), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7938), + [sym_preproc_elif_in_statements] = STATE(7938), + [sym_preproc_elifdef_in_statements] = STATE(7938), + [sym_preproc_else_in_procedure_statements] = STATE(7533), + [sym_preproc_elif_in_procedure_statements] = STATE(7533), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7533), + [sym_internal_procedures] = STATE(5431), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_if_token2] = ACTIONS(948), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -96858,10 +96673,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -96870,7 +96685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -96922,106 +96737,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [223] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8324), - [sym_preproc_elif_in_specification_part] = STATE(8324), - [sym_preproc_elifdef_in_specification_part] = STATE(8324), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7482), - [sym_preproc_elif_in_statements] = STATE(7482), - [sym_preproc_elifdef_in_statements] = STATE(7482), - [sym_preproc_else_in_procedure_statements] = STATE(8385), - [sym_preproc_elif_in_procedure_statements] = STATE(8385), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8385), - [sym_internal_procedures] = STATE(5478), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [222] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7516), + [sym_preproc_elif_in_specification_part] = STATE(7516), + [sym_preproc_elifdef_in_specification_part] = STATE(7516), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7997), + [sym_preproc_elif_in_statements] = STATE(7997), + [sym_preproc_elifdef_in_statements] = STATE(7997), + [sym_preproc_else_in_procedure_statements] = STATE(7483), + [sym_preproc_elif_in_procedure_statements] = STATE(7483), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7483), + [sym_internal_procedures] = STATE(5474), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(792), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -97043,10 +96858,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -97055,7 +96870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -97107,106 +96922,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [224] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8168), - [sym_preproc_elif_in_specification_part] = STATE(8168), - [sym_preproc_elifdef_in_specification_part] = STATE(8168), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7528), - [sym_preproc_elif_in_statements] = STATE(7528), - [sym_preproc_elifdef_in_statements] = STATE(7528), - [sym_preproc_else_in_procedure_statements] = STATE(8178), - [sym_preproc_elif_in_procedure_statements] = STATE(8178), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8178), - [sym_internal_procedures] = STATE(5436), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [223] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8070), + [sym_preproc_elif_in_specification_part] = STATE(8070), + [sym_preproc_elifdef_in_specification_part] = STATE(8070), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7668), + [sym_preproc_elif_in_statements] = STATE(7668), + [sym_preproc_elifdef_in_statements] = STATE(7668), + [sym_preproc_else_in_procedure_statements] = STATE(8267), + [sym_preproc_elif_in_procedure_statements] = STATE(8267), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8267), + [sym_internal_procedures] = STATE(5422), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(808), + [aux_sym_preproc_if_token2] = ACTIONS(1414), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(738), [aux_sym_preproc_elif_token1] = ACTIONS(740), [aux_sym_preproc_elifdef_token1] = ACTIONS(742), [aux_sym_preproc_elifdef_token2] = ACTIONS(742), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -97228,10 +97043,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -97240,7 +97055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -97292,110 +97107,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [225] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(8241), - [sym_preproc_elif_in_statements] = STATE(8241), - [sym_preproc_elifdef_in_statements] = STATE(8241), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5440), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), - [aux_sym_preproc_include_token1] = ACTIONS(1416), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [224] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7727), + [sym_preproc_elif_in_specification_part] = STATE(7727), + [sym_preproc_elifdef_in_specification_part] = STATE(7727), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7630), + [sym_preproc_elif_in_statements] = STATE(7630), + [sym_preproc_elifdef_in_statements] = STATE(7630), + [sym_preproc_else_in_procedure_statements] = STATE(8136), + [sym_preproc_elif_in_procedure_statements] = STATE(8136), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8136), + [sym_internal_procedures] = STATE(5420), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(802), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(738), + [aux_sym_preproc_elif_token1] = ACTIONS(740), + [aux_sym_preproc_elifdef_token1] = ACTIONS(742), + [aux_sym_preproc_elifdef_token2] = ACTIONS(742), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(211), - [aux_sym_end_program_statement_token2] = ACTIONS(213), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -97412,10 +97228,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -97424,7 +97240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -97476,104 +97292,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [226] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(8126), - [sym_preproc_elif_in_specification_part] = STATE(8126), - [sym_preproc_elifdef_in_specification_part] = STATE(8126), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(8173), - [sym_preproc_elif_in_statements] = STATE(8173), - [sym_preproc_elifdef_in_statements] = STATE(8173), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5479), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [225] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8035), + [sym_preproc_elif_in_specification_part] = STATE(8035), + [sym_preproc_elifdef_in_specification_part] = STATE(8035), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5450), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -97596,10 +97412,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -97608,7 +97424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -97660,104 +97476,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [227] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(8368), - [sym_preproc_elif_in_specification_part] = STATE(8368), - [sym_preproc_elifdef_in_specification_part] = STATE(8368), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(8372), - [sym_preproc_elif_in_statements] = STATE(8372), - [sym_preproc_elifdef_in_statements] = STATE(8372), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5422), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [226] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(7934), + [sym_preproc_elif_in_specification_part] = STATE(7934), + [sym_preproc_elifdef_in_specification_part] = STATE(7934), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(7938), + [sym_preproc_elif_in_statements] = STATE(7938), + [sym_preproc_elifdef_in_statements] = STATE(7938), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5472), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -97780,10 +97596,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -97792,7 +97608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -97844,104 +97660,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [228] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(8316), - [sym_preproc_elif_in_specification_part] = STATE(8316), - [sym_preproc_elifdef_in_specification_part] = STATE(8316), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(8318), - [sym_preproc_elif_in_statements] = STATE(8318), - [sym_preproc_elifdef_in_statements] = STATE(8318), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5462), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [227] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(7565), + [sym_preproc_elif_in_statements] = STATE(7565), + [sym_preproc_elifdef_in_statements] = STATE(7565), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5458), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -97964,10 +97780,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -97976,7 +97792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -98028,104 +97844,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [229] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(7588), - [sym_preproc_elif_in_statements] = STATE(7588), - [sym_preproc_elifdef_in_statements] = STATE(7588), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5474), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [228] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8161), + [sym_preproc_elif_in_specification_part] = STATE(8161), + [sym_preproc_elifdef_in_specification_part] = STATE(8161), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(8191), + [sym_preproc_elif_in_statements] = STATE(8191), + [sym_preproc_elifdef_in_statements] = STATE(8191), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5443), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -98148,10 +97964,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -98160,7 +97976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -98212,104 +98028,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [230] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(7473), - [sym_preproc_elif_in_statements] = STATE(7473), - [sym_preproc_elifdef_in_statements] = STATE(7473), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5458), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [229] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8161), + [sym_preproc_elif_in_specification_part] = STATE(8161), + [sym_preproc_elifdef_in_specification_part] = STATE(8161), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(8288), + [sym_preproc_elif_in_statements] = STATE(8288), + [sym_preproc_elifdef_in_statements] = STATE(8288), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5469), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(850), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -98332,10 +98148,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -98344,7 +98160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -98396,104 +98212,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [231] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(7594), - [sym_preproc_elif_in_specification_part] = STATE(7594), - [sym_preproc_elifdef_in_specification_part] = STATE(7594), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(7933), - [sym_preproc_elif_in_statements] = STATE(7933), - [sym_preproc_elifdef_in_statements] = STATE(7933), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5483), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [230] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(8124), + [sym_preproc_elif_in_statements] = STATE(8124), + [sym_preproc_elifdef_in_statements] = STATE(8124), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5436), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -98516,10 +98332,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -98528,7 +98344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -98580,104 +98396,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [232] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(8393), - [sym_preproc_elif_in_statements] = STATE(8393), - [sym_preproc_elifdef_in_statements] = STATE(8393), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5455), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [231] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(7980), + [sym_preproc_elif_in_specification_part] = STATE(7980), + [sym_preproc_elifdef_in_specification_part] = STATE(7980), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(7985), + [sym_preproc_elif_in_statements] = STATE(7985), + [sym_preproc_elifdef_in_statements] = STATE(7985), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5421), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -98700,10 +98516,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -98712,7 +98528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -98764,104 +98580,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [233] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(7612), - [sym_preproc_elif_in_specification_part] = STATE(7612), - [sym_preproc_elifdef_in_specification_part] = STATE(7612), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5444), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [232] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(7733), + [sym_preproc_elif_in_statements] = STATE(7733), + [sym_preproc_elifdef_in_statements] = STATE(7733), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5446), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -98884,10 +98700,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -98896,7 +98712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -98948,104 +98764,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [234] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(8126), - [sym_preproc_elif_in_specification_part] = STATE(8126), - [sym_preproc_elifdef_in_specification_part] = STATE(8126), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(7596), - [sym_preproc_elif_in_statements] = STATE(7596), - [sym_preproc_elifdef_in_statements] = STATE(7596), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5488), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [233] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8012), + [sym_preproc_elif_in_specification_part] = STATE(8012), + [sym_preproc_elifdef_in_specification_part] = STATE(8012), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(8018), + [sym_preproc_elif_in_statements] = STATE(8018), + [sym_preproc_elifdef_in_statements] = STATE(8018), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5452), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -99068,10 +98884,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -99080,7 +98896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -99132,104 +98948,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [235] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(7509), - [sym_preproc_elif_in_statements] = STATE(7509), - [sym_preproc_elifdef_in_statements] = STATE(7509), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5480), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [234] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(7606), + [sym_preproc_elif_in_statements] = STATE(7606), + [sym_preproc_elifdef_in_statements] = STATE(7606), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5463), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -99252,10 +99068,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -99264,7 +99080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -99316,104 +99132,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [236] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(8308), - [sym_preproc_elif_in_statements] = STATE(8308), - [sym_preproc_elifdef_in_statements] = STATE(8308), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5448), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [235] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(7980), + [sym_preproc_elif_in_specification_part] = STATE(7980), + [sym_preproc_elifdef_in_specification_part] = STATE(7980), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(8112), + [sym_preproc_elif_in_statements] = STATE(8112), + [sym_preproc_elifdef_in_statements] = STATE(8112), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5415), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -99436,10 +99252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -99448,7 +99264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -99500,104 +99316,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [237] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(7594), - [sym_preproc_elif_in_specification_part] = STATE(7594), - [sym_preproc_elifdef_in_specification_part] = STATE(7594), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(7626), - [sym_preproc_elif_in_statements] = STATE(7626), - [sym_preproc_elifdef_in_statements] = STATE(7626), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5430), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [236] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8161), + [sym_preproc_elif_in_specification_part] = STATE(8161), + [sym_preproc_elifdef_in_specification_part] = STATE(8161), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(7639), + [sym_preproc_elif_in_statements] = STATE(7639), + [sym_preproc_elifdef_in_statements] = STATE(7639), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5417), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -99620,10 +99436,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -99632,7 +99448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -99684,104 +99500,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [238] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(8126), - [sym_preproc_elif_in_specification_part] = STATE(8126), - [sym_preproc_elifdef_in_specification_part] = STATE(8126), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(8326), - [sym_preproc_elif_in_statements] = STATE(8326), - [sym_preproc_elifdef_in_statements] = STATE(8326), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5450), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [237] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(7509), + [sym_preproc_elif_in_statements] = STATE(7509), + [sym_preproc_elifdef_in_statements] = STATE(7509), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5441), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -99804,10 +99620,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -99816,7 +99632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -99868,104 +99684,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [239] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(7594), - [sym_preproc_elif_in_specification_part] = STATE(7594), - [sym_preproc_elifdef_in_specification_part] = STATE(7594), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(7924), - [sym_preproc_elif_in_statements] = STATE(7924), - [sym_preproc_elifdef_in_statements] = STATE(7924), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5461), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [238] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(7599), + [sym_preproc_elif_in_statements] = STATE(7599), + [sym_preproc_elifdef_in_statements] = STATE(7599), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5473), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -99988,10 +99804,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -100000,7 +99816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -100052,104 +99868,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [240] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_else_in_specification_part] = STATE(8296), - [sym_preproc_elif_in_specification_part] = STATE(8296), - [sym_preproc_elifdef_in_specification_part] = STATE(8296), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym_preproc_else_in_statements] = STATE(8297), - [sym_preproc_elif_in_statements] = STATE(8297), - [sym_preproc_elifdef_in_statements] = STATE(8297), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(5420), - [sym_contains_statement] = STATE(6842), - [sym__statements] = STATE(6897), - [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), + [239] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(7980), + [sym_preproc_elif_in_specification_part] = STATE(7980), + [sym_preproc_elifdef_in_specification_part] = STATE(7980), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(7705), + [sym_preproc_elif_in_statements] = STATE(7705), + [sym_preproc_elifdef_in_statements] = STATE(7705), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5438), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), [aux_sym_preproc_include_token1] = ACTIONS(1416), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1420), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -100172,10 +99988,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -100184,7 +100000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -100236,109 +100052,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [241] = { - [sym_preproc_include] = STATE(265), - [sym_preproc_def] = STATE(265), - [sym_preproc_function_def] = STATE(265), - [sym_preproc_call] = STATE(265), - [sym_preproc_if_in_statements] = STATE(265), - [sym_preproc_ifdef_in_statements] = STATE(265), - [sym_preproc_else_in_statements] = STATE(7985), - [sym_preproc_elif_in_statements] = STATE(7985), - [sym_preproc_elifdef_in_statements] = STATE(7985), - [sym_preproc_else_in_procedure_statements] = STATE(8231), - [sym_preproc_elif_in_procedure_statements] = STATE(8231), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8231), - [sym_internal_procedures] = STATE(5547), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(265), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [240] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_else_in_specification_part] = STATE(8203), + [sym_preproc_elif_in_specification_part] = STATE(8203), + [sym_preproc_elifdef_in_specification_part] = STATE(8203), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym_preproc_else_in_statements] = STATE(8217), + [sym_preproc_elif_in_statements] = STATE(8217), + [sym_preproc_elifdef_in_statements] = STATE(8217), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(5426), + [sym_contains_statement] = STATE(6666), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token2] = ACTIONS(974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1424), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1456), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(211), + [aux_sym_end_program_statement_token2] = ACTIONS(213), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -100355,10 +100172,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -100367,7 +100184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1426), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -100419,105 +100236,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [242] = { - [sym_preproc_include] = STATE(264), - [sym_preproc_def] = STATE(264), - [sym_preproc_function_def] = STATE(264), - [sym_preproc_call] = STATE(264), - [sym_preproc_if_in_statements] = STATE(264), - [sym_preproc_ifdef_in_statements] = STATE(264), - [sym_preproc_else_in_statements] = STATE(8311), - [sym_preproc_elif_in_statements] = STATE(8311), - [sym_preproc_elifdef_in_statements] = STATE(8311), - [sym_preproc_else_in_procedure_statements] = STATE(8223), - [sym_preproc_elif_in_procedure_statements] = STATE(8223), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8223), - [sym_internal_procedures] = STATE(5567), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [241] = { + [sym_preproc_include] = STATE(245), + [sym_preproc_def] = STATE(245), + [sym_preproc_function_def] = STATE(245), + [sym_preproc_call] = STATE(245), + [sym_preproc_if_in_statements] = STATE(245), + [sym_preproc_ifdef_in_statements] = STATE(245), + [sym_preproc_else_in_statements] = STATE(7570), + [sym_preproc_elif_in_statements] = STATE(7570), + [sym_preproc_elifdef_in_statements] = STATE(7570), + [sym_preproc_else_in_procedure_statements] = STATE(7769), + [sym_preproc_elif_in_procedure_statements] = STATE(7769), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7769), + [sym_internal_procedures] = STATE(5519), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(264), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(245), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1448), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1462), + [sym_preproc_comment] = ACTIONS(1456), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -100538,10 +100355,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -100550,7 +100367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1458), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -100602,105 +100419,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [243] = { - [sym_preproc_include] = STATE(274), - [sym_preproc_def] = STATE(274), - [sym_preproc_function_def] = STATE(274), - [sym_preproc_call] = STATE(274), - [sym_preproc_if_in_statements] = STATE(274), - [sym_preproc_ifdef_in_statements] = STATE(274), - [sym_preproc_else_in_statements] = STATE(7513), - [sym_preproc_elif_in_statements] = STATE(7513), - [sym_preproc_elifdef_in_statements] = STATE(7513), - [sym_preproc_else_in_procedure_statements] = STATE(7967), - [sym_preproc_elif_in_procedure_statements] = STATE(7967), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7967), - [sym_internal_procedures] = STATE(5562), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [242] = { + [sym_preproc_include] = STATE(254), + [sym_preproc_def] = STATE(254), + [sym_preproc_function_def] = STATE(254), + [sym_preproc_call] = STATE(254), + [sym_preproc_if_in_statements] = STATE(254), + [sym_preproc_ifdef_in_statements] = STATE(254), + [sym_preproc_else_in_statements] = STATE(7953), + [sym_preproc_elif_in_statements] = STATE(7953), + [sym_preproc_elifdef_in_statements] = STATE(7953), + [sym_preproc_else_in_procedure_statements] = STATE(7805), + [sym_preproc_elif_in_procedure_statements] = STATE(7805), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7805), + [sym_internal_procedures] = STATE(5548), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(274), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(254), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1460), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1468), + [sym_preproc_comment] = ACTIONS(1462), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -100721,10 +100538,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1464), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [243] = { + [sym_preproc_include] = STATE(280), + [sym_preproc_def] = STATE(280), + [sym_preproc_function_def] = STATE(280), + [sym_preproc_call] = STATE(280), + [sym_preproc_if_in_statements] = STATE(280), + [sym_preproc_ifdef_in_statements] = STATE(280), + [sym_preproc_else_in_statements] = STATE(7514), + [sym_preproc_elif_in_statements] = STATE(7514), + [sym_preproc_elifdef_in_statements] = STATE(7514), + [sym_preproc_else_in_procedure_statements] = STATE(7801), + [sym_preproc_elif_in_procedure_statements] = STATE(7801), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7801), + [sym_internal_procedures] = STATE(5524), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(802), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(280), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(17), + [sym_preproc_comment] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -100785,92 +100785,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [244] = { - [sym_preproc_include] = STATE(255), - [sym_preproc_def] = STATE(255), - [sym_preproc_function_def] = STATE(255), - [sym_preproc_call] = STATE(255), - [sym_preproc_if_in_statements] = STATE(255), - [sym_preproc_ifdef_in_statements] = STATE(255), - [sym_preproc_else_in_statements] = STATE(7833), - [sym_preproc_elif_in_statements] = STATE(7833), - [sym_preproc_elifdef_in_statements] = STATE(7833), - [sym_preproc_else_in_procedure_statements] = STATE(8370), - [sym_preproc_elif_in_procedure_statements] = STATE(8370), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8370), - [sym_internal_procedures] = STATE(5554), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(276), + [sym_preproc_def] = STATE(276), + [sym_preproc_function_def] = STATE(276), + [sym_preproc_call] = STATE(276), + [sym_preproc_if_in_statements] = STATE(276), + [sym_preproc_ifdef_in_statements] = STATE(276), + [sym_preproc_else_in_statements] = STATE(7576), + [sym_preproc_elif_in_statements] = STATE(7576), + [sym_preproc_elifdef_in_statements] = STATE(7576), + [sym_preproc_else_in_procedure_statements] = STATE(8173), + [sym_preproc_elif_in_procedure_statements] = STATE(8173), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8173), + [sym_internal_procedures] = STATE(5535), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(255), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(276), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -100881,7 +100881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [sym_preproc_comment] = ACTIONS(1474), [anon_sym_PLUS] = ACTIONS(19), @@ -100904,10 +100904,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -100968,92 +100968,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [245] = { - [sym_preproc_include] = STATE(279), - [sym_preproc_def] = STATE(279), - [sym_preproc_function_def] = STATE(279), - [sym_preproc_call] = STATE(279), - [sym_preproc_if_in_statements] = STATE(279), - [sym_preproc_ifdef_in_statements] = STATE(279), - [sym_preproc_else_in_statements] = STATE(7528), - [sym_preproc_elif_in_statements] = STATE(7528), - [sym_preproc_elifdef_in_statements] = STATE(7528), - [sym_preproc_else_in_procedure_statements] = STATE(8178), - [sym_preproc_elif_in_procedure_statements] = STATE(8178), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8178), - [sym_internal_procedures] = STATE(5529), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7602), + [sym_preproc_elif_in_statements] = STATE(7602), + [sym_preproc_elifdef_in_statements] = STATE(7602), + [sym_preproc_else_in_procedure_statements] = STATE(8077), + [sym_preproc_elif_in_procedure_statements] = STATE(8077), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8077), + [sym_internal_procedures] = STATE(5552), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(279), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -101064,7 +101064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -101086,10 +101086,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -101098,7 +101098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -101150,103 +101150,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [246] = { - [sym_preproc_include] = STATE(249), - [sym_preproc_def] = STATE(249), - [sym_preproc_function_def] = STATE(249), - [sym_preproc_call] = STATE(249), - [sym_preproc_if_in_statements] = STATE(249), - [sym_preproc_ifdef_in_statements] = STATE(249), - [sym_preproc_else_in_statements] = STATE(7460), - [sym_preproc_elif_in_statements] = STATE(7460), - [sym_preproc_elifdef_in_statements] = STATE(7460), - [sym_preproc_else_in_procedure_statements] = STATE(8092), - [sym_preproc_elif_in_procedure_statements] = STATE(8092), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8092), - [sym_internal_procedures] = STATE(5568), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7980), + [sym_preproc_elif_in_specification_part] = STATE(7980), + [sym_preproc_elifdef_in_specification_part] = STATE(7980), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7985), + [sym_preproc_elif_in_statements] = STATE(7985), + [sym_preproc_elifdef_in_statements] = STATE(7985), + [sym_internal_procedures] = STATE(5546), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(249), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1482), + [aux_sym_preproc_if_token2] = ACTIONS(1434), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -101268,10 +101268,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -101280,7 +101280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -101332,103 +101332,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [247] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7473), - [sym_preproc_elif_in_statements] = STATE(7473), - [sym_preproc_elifdef_in_statements] = STATE(7473), - [sym_internal_procedures] = STATE(5550), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(266), + [sym_preproc_def] = STATE(266), + [sym_preproc_function_def] = STATE(266), + [sym_preproc_call] = STATE(266), + [sym_preproc_if_in_statements] = STATE(266), + [sym_preproc_ifdef_in_statements] = STATE(266), + [sym_preproc_else_in_statements] = STATE(7598), + [sym_preproc_elif_in_statements] = STATE(7598), + [sym_preproc_elifdef_in_statements] = STATE(7598), + [sym_preproc_else_in_procedure_statements] = STATE(8164), + [sym_preproc_elif_in_procedure_statements] = STATE(8164), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8164), + [sym_internal_procedures] = STATE(5547), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(266), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(850), + [aux_sym_preproc_if_token2] = ACTIONS(1480), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -101450,10 +101450,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -101462,7 +101462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1482), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -101514,103 +101514,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [248] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7594), - [sym_preproc_elif_in_specification_part] = STATE(7594), - [sym_preproc_elifdef_in_specification_part] = STATE(7594), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7933), - [sym_preproc_elif_in_statements] = STATE(7933), - [sym_preproc_elifdef_in_statements] = STATE(7933), + [sym_preproc_include] = STATE(269), + [sym_preproc_def] = STATE(269), + [sym_preproc_function_def] = STATE(269), + [sym_preproc_call] = STATE(269), + [sym_preproc_if_in_statements] = STATE(269), + [sym_preproc_ifdef_in_statements] = STATE(269), + [sym_preproc_else_in_statements] = STATE(7602), + [sym_preproc_elif_in_statements] = STATE(7602), + [sym_preproc_elifdef_in_statements] = STATE(7602), + [sym_preproc_else_in_procedure_statements] = STATE(8077), + [sym_preproc_elif_in_procedure_statements] = STATE(8077), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8077), [sym_internal_procedures] = STATE(5552), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(269), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1478), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -101632,10 +101632,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -101644,7 +101644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1484), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -101696,92 +101696,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [249] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7481), - [sym_preproc_elif_in_statements] = STATE(7481), - [sym_preproc_elifdef_in_statements] = STATE(7481), - [sym_preproc_else_in_procedure_statements] = STATE(8096), - [sym_preproc_elif_in_procedure_statements] = STATE(8096), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8096), - [sym_internal_procedures] = STATE(5542), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8217), + [sym_preproc_elif_in_statements] = STATE(8217), + [sym_preproc_elifdef_in_statements] = STATE(8217), + [sym_preproc_else_in_procedure_statements] = STATE(8020), + [sym_preproc_elif_in_procedure_statements] = STATE(8020), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8020), + [sym_internal_procedures] = STATE(5538), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -101792,7 +101792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -101814,10 +101814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -101826,7 +101826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -101878,103 +101878,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [250] = { - [sym_preproc_include] = STATE(260), - [sym_preproc_def] = STATE(260), - [sym_preproc_function_def] = STATE(260), - [sym_preproc_call] = STATE(260), - [sym_preproc_if_in_statements] = STATE(260), - [sym_preproc_ifdef_in_statements] = STATE(260), - [sym_preproc_else_in_statements] = STATE(7481), - [sym_preproc_elif_in_statements] = STATE(7481), - [sym_preproc_elifdef_in_statements] = STATE(7481), - [sym_preproc_else_in_procedure_statements] = STATE(8096), - [sym_preproc_elif_in_procedure_statements] = STATE(8096), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8096), - [sym_internal_procedures] = STATE(5542), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8035), + [sym_preproc_elif_in_specification_part] = STATE(8035), + [sym_preproc_elifdef_in_specification_part] = STATE(8035), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_internal_procedures] = STATE(5559), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(260), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1486), + [aux_sym_preproc_if_token2] = ACTIONS(259), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -101996,10 +101996,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -102008,7 +102008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -102060,103 +102060,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [251] = { - [sym_preproc_include] = STATE(256), - [sym_preproc_def] = STATE(256), - [sym_preproc_function_def] = STATE(256), - [sym_preproc_call] = STATE(256), - [sym_preproc_if_in_statements] = STATE(256), - [sym_preproc_ifdef_in_statements] = STATE(256), - [sym_preproc_else_in_statements] = STATE(7881), - [sym_preproc_elif_in_statements] = STATE(7881), - [sym_preproc_elifdef_in_statements] = STATE(7881), - [sym_preproc_else_in_procedure_statements] = STATE(7905), - [sym_preproc_elif_in_procedure_statements] = STATE(7905), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7905), - [sym_internal_procedures] = STATE(5558), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(255), + [sym_preproc_def] = STATE(255), + [sym_preproc_function_def] = STATE(255), + [sym_preproc_call] = STATE(255), + [sym_preproc_if_in_statements] = STATE(255), + [sym_preproc_ifdef_in_statements] = STATE(255), + [sym_preproc_else_in_statements] = STATE(7996), + [sym_preproc_elif_in_statements] = STATE(7996), + [sym_preproc_elifdef_in_statements] = STATE(7996), + [sym_preproc_else_in_procedure_statements] = STATE(7475), + [sym_preproc_elif_in_procedure_statements] = STATE(7475), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7475), + [sym_internal_procedures] = STATE(5528), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(256), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(255), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1490), + [aux_sym_preproc_if_token2] = ACTIONS(1488), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -102178,10 +102178,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -102190,7 +102190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1490), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -102242,103 +102242,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [252] = { - [sym_preproc_include] = STATE(259), - [sym_preproc_def] = STATE(259), - [sym_preproc_function_def] = STATE(259), - [sym_preproc_call] = STATE(259), - [sym_preproc_if_in_statements] = STATE(259), - [sym_preproc_ifdef_in_statements] = STATE(259), - [sym_preproc_else_in_statements] = STATE(7888), - [sym_preproc_elif_in_statements] = STATE(7888), - [sym_preproc_elifdef_in_statements] = STATE(7888), - [sym_preproc_else_in_procedure_statements] = STATE(7606), - [sym_preproc_elif_in_procedure_statements] = STATE(7606), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7606), - [sym_internal_procedures] = STATE(5561), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(268), + [sym_preproc_def] = STATE(268), + [sym_preproc_function_def] = STATE(268), + [sym_preproc_call] = STATE(268), + [sym_preproc_if_in_statements] = STATE(268), + [sym_preproc_ifdef_in_statements] = STATE(268), + [sym_preproc_else_in_statements] = STATE(7997), + [sym_preproc_elif_in_statements] = STATE(7997), + [sym_preproc_elifdef_in_statements] = STATE(7997), + [sym_preproc_else_in_procedure_statements] = STATE(7483), + [sym_preproc_elif_in_procedure_statements] = STATE(7483), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7483), + [sym_internal_procedures] = STATE(5543), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(259), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(268), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1494), + [aux_sym_preproc_if_token2] = ACTIONS(1492), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -102360,10 +102360,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -102372,7 +102372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -102424,103 +102424,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [253] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7482), - [sym_preproc_elif_in_statements] = STATE(7482), - [sym_preproc_elifdef_in_statements] = STATE(7482), - [sym_preproc_else_in_procedure_statements] = STATE(8385), - [sym_preproc_elif_in_procedure_statements] = STATE(8385), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8385), - [sym_internal_procedures] = STATE(5551), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7565), + [sym_preproc_elif_in_statements] = STATE(7565), + [sym_preproc_elifdef_in_statements] = STATE(7565), + [sym_internal_procedures] = STATE(5544), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1498), + [aux_sym_preproc_if_token2] = ACTIONS(848), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -102542,10 +102542,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -102554,7 +102554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -102606,103 +102606,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [254] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8316), - [sym_preproc_elif_in_specification_part] = STATE(8316), - [sym_preproc_elifdef_in_specification_part] = STATE(8316), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8318), - [sym_preproc_elif_in_statements] = STATE(8318), - [sym_preproc_elifdef_in_statements] = STATE(8318), - [sym_internal_procedures] = STATE(5518), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7997), + [sym_preproc_elif_in_statements] = STATE(7997), + [sym_preproc_elifdef_in_statements] = STATE(7997), + [sym_preproc_else_in_procedure_statements] = STATE(7483), + [sym_preproc_elif_in_procedure_statements] = STATE(7483), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7483), + [sym_internal_procedures] = STATE(5543), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(1492), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -102724,10 +102724,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -102736,7 +102736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -102788,103 +102788,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [255] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7888), - [sym_preproc_elif_in_statements] = STATE(7888), - [sym_preproc_elifdef_in_statements] = STATE(7888), - [sym_preproc_else_in_procedure_statements] = STATE(7606), - [sym_preproc_elif_in_procedure_statements] = STATE(7606), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7606), - [sym_internal_procedures] = STATE(5561), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8021), + [sym_preproc_elif_in_statements] = STATE(8021), + [sym_preproc_elifdef_in_statements] = STATE(8021), + [sym_preproc_else_in_procedure_statements] = STATE(7929), + [sym_preproc_elif_in_procedure_statements] = STATE(7929), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7929), + [sym_internal_procedures] = STATE(5542), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1494), + [aux_sym_preproc_if_token2] = ACTIONS(1496), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -102906,10 +102906,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -102918,7 +102918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -102970,103 +102970,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [256] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7921), - [sym_preproc_elif_in_statements] = STATE(7921), - [sym_preproc_elifdef_in_statements] = STATE(7921), - [sym_preproc_else_in_procedure_statements] = STATE(7475), - [sym_preproc_elif_in_procedure_statements] = STATE(7475), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7475), - [sym_internal_procedures] = STATE(5564), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(261), + [sym_preproc_def] = STATE(261), + [sym_preproc_function_def] = STATE(261), + [sym_preproc_call] = STATE(261), + [sym_preproc_if_in_statements] = STATE(261), + [sym_preproc_ifdef_in_statements] = STATE(261), + [sym_preproc_else_in_statements] = STATE(8021), + [sym_preproc_elif_in_statements] = STATE(8021), + [sym_preproc_elifdef_in_statements] = STATE(8021), + [sym_preproc_else_in_procedure_statements] = STATE(7929), + [sym_preproc_elif_in_procedure_statements] = STATE(7929), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7929), + [sym_internal_procedures] = STATE(5542), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(261), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1496), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -103088,10 +103088,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -103100,7 +103100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1498), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -103152,103 +103152,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [257] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8126), - [sym_preproc_elif_in_specification_part] = STATE(8126), - [sym_preproc_elifdef_in_specification_part] = STATE(8126), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8173), - [sym_preproc_elif_in_statements] = STATE(8173), - [sym_preproc_elifdef_in_statements] = STATE(8173), - [sym_internal_procedures] = STATE(5575), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7934), + [sym_preproc_elif_in_specification_part] = STATE(7934), + [sym_preproc_elifdef_in_specification_part] = STATE(7934), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7938), + [sym_preproc_elif_in_statements] = STATE(7938), + [sym_preproc_elifdef_in_statements] = STATE(7938), + [sym_internal_procedures] = STATE(5569), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(948), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -103270,10 +103270,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -103282,7 +103282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -103334,103 +103334,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [258] = { - [sym_preproc_include] = STATE(262), - [sym_preproc_def] = STATE(262), - [sym_preproc_function_def] = STATE(262), - [sym_preproc_call] = STATE(262), - [sym_preproc_if_in_statements] = STATE(262), - [sym_preproc_ifdef_in_statements] = STATE(262), - [sym_preproc_else_in_statements] = STATE(7921), - [sym_preproc_elif_in_statements] = STATE(7921), - [sym_preproc_elifdef_in_statements] = STATE(7921), - [sym_preproc_else_in_procedure_statements] = STATE(7475), - [sym_preproc_elif_in_procedure_statements] = STATE(7475), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7475), - [sym_internal_procedures] = STATE(5564), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8012), + [sym_preproc_elif_in_specification_part] = STATE(8012), + [sym_preproc_elifdef_in_specification_part] = STATE(8012), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8018), + [sym_preproc_elif_in_statements] = STATE(8018), + [sym_preproc_elifdef_in_statements] = STATE(8018), + [sym_internal_procedures] = STATE(5558), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(262), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(990), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -103452,10 +103452,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -103464,7 +103464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -103516,103 +103516,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [259] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7922), - [sym_preproc_elif_in_statements] = STATE(7922), - [sym_preproc_elifdef_in_statements] = STATE(7922), - [sym_preproc_else_in_procedure_statements] = STATE(7718), - [sym_preproc_elif_in_procedure_statements] = STATE(7718), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7718), - [sym_internal_procedures] = STATE(5565), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(262), + [sym_preproc_def] = STATE(262), + [sym_preproc_function_def] = STATE(262), + [sym_preproc_call] = STATE(262), + [sym_preproc_if_in_statements] = STATE(262), + [sym_preproc_ifdef_in_statements] = STATE(262), + [sym_preproc_else_in_statements] = STATE(7521), + [sym_preproc_elif_in_statements] = STATE(7521), + [sym_preproc_elifdef_in_statements] = STATE(7521), + [sym_preproc_else_in_procedure_statements] = STATE(7940), + [sym_preproc_elif_in_procedure_statements] = STATE(7940), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7940), + [sym_internal_procedures] = STATE(5560), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(262), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1500), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -103634,10 +103634,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -103646,7 +103646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1502), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -103698,103 +103698,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [260] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [sym_preproc_include] = STATE(264), + [sym_preproc_def] = STATE(264), + [sym_preproc_function_def] = STATE(264), + [sym_preproc_call] = STATE(264), + [sym_preproc_if_in_statements] = STATE(264), + [sym_preproc_ifdef_in_statements] = STATE(264), [sym_preproc_else_in_statements] = STATE(7522), [sym_preproc_elif_in_statements] = STATE(7522), [sym_preproc_elifdef_in_statements] = STATE(7522), - [sym_preproc_else_in_procedure_statements] = STATE(8091), - [sym_preproc_elif_in_procedure_statements] = STATE(8091), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8091), - [sym_internal_procedures] = STATE(5555), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_else_in_procedure_statements] = STATE(7948), + [sym_preproc_elif_in_procedure_statements] = STATE(7948), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7948), + [sym_internal_procedures] = STATE(5561), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(264), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1506), + [aux_sym_preproc_if_token2] = ACTIONS(1504), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -103816,10 +103816,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -103828,7 +103828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1506), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -103880,92 +103880,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [261] = { - [sym_preproc_include] = STATE(269), - [sym_preproc_def] = STATE(269), - [sym_preproc_function_def] = STATE(269), - [sym_preproc_call] = STATE(269), - [sym_preproc_if_in_statements] = STATE(269), - [sym_preproc_ifdef_in_statements] = STATE(269), - [sym_preproc_else_in_statements] = STATE(7790), - [sym_preproc_elif_in_statements] = STATE(7790), - [sym_preproc_elifdef_in_statements] = STATE(7790), - [sym_preproc_else_in_procedure_statements] = STATE(8367), - [sym_preproc_elif_in_procedure_statements] = STATE(8367), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8367), - [sym_internal_procedures] = STATE(5556), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8080), + [sym_preproc_elif_in_statements] = STATE(8080), + [sym_preproc_elifdef_in_statements] = STATE(8080), + [sym_preproc_else_in_procedure_statements] = STATE(8152), + [sym_preproc_elif_in_procedure_statements] = STATE(8152), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8152), + [sym_internal_procedures] = STATE(5576), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(269), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -103976,7 +103976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -103998,10 +103998,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -104010,7 +104010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -104062,103 +104062,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [262] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7961), - [sym_preproc_elif_in_statements] = STATE(7961), - [sym_preproc_elifdef_in_statements] = STATE(7961), - [sym_preproc_else_in_procedure_statements] = STATE(7923), - [sym_preproc_elif_in_procedure_statements] = STATE(7923), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7923), - [sym_internal_procedures] = STATE(5566), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7529), + [sym_preproc_elif_in_statements] = STATE(7529), + [sym_preproc_elifdef_in_statements] = STATE(7529), + [sym_preproc_else_in_procedure_statements] = STATE(8116), + [sym_preproc_elif_in_procedure_statements] = STATE(8116), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8116), + [sym_internal_procedures] = STATE(5550), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1510), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -104180,10 +104180,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -104192,7 +104192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -104244,103 +104244,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [263] = { - [sym_preproc_include] = STATE(270), - [sym_preproc_def] = STATE(270), - [sym_preproc_function_def] = STATE(270), - [sym_preproc_call] = STATE(270), - [sym_preproc_if_in_statements] = STATE(270), - [sym_preproc_ifdef_in_statements] = STATE(270), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_preproc_else_in_procedure_statements] = STATE(7602), - [sym_preproc_elif_in_procedure_statements] = STATE(7602), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7602), - [sym_internal_procedures] = STATE(5559), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(265), + [sym_preproc_def] = STATE(265), + [sym_preproc_function_def] = STATE(265), + [sym_preproc_call] = STATE(265), + [sym_preproc_if_in_statements] = STATE(265), + [sym_preproc_ifdef_in_statements] = STATE(265), + [sym_preproc_else_in_statements] = STATE(7529), + [sym_preproc_elif_in_statements] = STATE(7529), + [sym_preproc_elifdef_in_statements] = STATE(7529), + [sym_preproc_else_in_procedure_statements] = STATE(8116), + [sym_preproc_elif_in_procedure_statements] = STATE(8116), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8116), + [sym_internal_procedures] = STATE(5550), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(270), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(265), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1514), + [aux_sym_preproc_if_token2] = ACTIONS(1510), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -104362,10 +104362,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -104374,7 +104374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1512), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -104426,103 +104426,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [264] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7463), - [sym_preproc_elif_in_statements] = STATE(7463), - [sym_preproc_elifdef_in_statements] = STATE(7463), - [sym_preproc_else_in_procedure_statements] = STATE(8366), - [sym_preproc_elif_in_procedure_statements] = STATE(8366), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8366), - [sym_internal_procedures] = STATE(5569), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7530), + [sym_preproc_elif_in_statements] = STATE(7530), + [sym_preproc_elifdef_in_statements] = STATE(7530), + [sym_preproc_else_in_procedure_statements] = STATE(8125), + [sym_preproc_elif_in_procedure_statements] = STATE(8125), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8125), + [sym_internal_procedures] = STATE(5553), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1514), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -104544,10 +104544,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -104556,7 +104556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -104608,103 +104608,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [265] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_preproc_else_in_procedure_statements] = STATE(7602), - [sym_preproc_elif_in_procedure_statements] = STATE(7602), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7602), - [sym_internal_procedures] = STATE(5559), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7536), + [sym_preproc_elif_in_statements] = STATE(7536), + [sym_preproc_elifdef_in_statements] = STATE(7536), + [sym_preproc_else_in_procedure_statements] = STATE(8163), + [sym_preproc_elif_in_procedure_statements] = STATE(8163), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8163), + [sym_internal_procedures] = STATE(5570), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1514), + [aux_sym_preproc_if_token2] = ACTIONS(1516), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -104726,10 +104726,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -104738,7 +104738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -104790,103 +104790,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [266] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8296), - [sym_preproc_elif_in_specification_part] = STATE(8296), - [sym_preproc_elifdef_in_specification_part] = STATE(8296), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8297), - [sym_preproc_elif_in_statements] = STATE(8297), - [sym_preproc_elifdef_in_statements] = STATE(8297), - [sym_internal_procedures] = STATE(5538), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7630), + [sym_preproc_elif_in_statements] = STATE(7630), + [sym_preproc_elifdef_in_statements] = STATE(7630), + [sym_preproc_else_in_procedure_statements] = STATE(8136), + [sym_preproc_elif_in_procedure_statements] = STATE(8136), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8136), + [sym_internal_procedures] = STATE(5566), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(1518), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -104908,10 +104908,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -104920,7 +104920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -104972,103 +104972,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [267] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8368), - [sym_preproc_elif_in_specification_part] = STATE(8368), - [sym_preproc_elifdef_in_specification_part] = STATE(8368), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8372), - [sym_preproc_elif_in_statements] = STATE(8372), - [sym_preproc_elifdef_in_statements] = STATE(8372), - [sym_internal_procedures] = STATE(5539), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(273), + [sym_preproc_def] = STATE(273), + [sym_preproc_function_def] = STATE(273), + [sym_preproc_call] = STATE(273), + [sym_preproc_if_in_statements] = STATE(273), + [sym_preproc_ifdef_in_statements] = STATE(273), + [sym_preproc_else_in_statements] = STATE(7630), + [sym_preproc_elif_in_statements] = STATE(7630), + [sym_preproc_elifdef_in_statements] = STATE(7630), + [sym_preproc_else_in_procedure_statements] = STATE(8136), + [sym_preproc_elif_in_procedure_statements] = STATE(8136), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8136), + [sym_internal_procedures] = STATE(5566), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(273), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(990), + [aux_sym_preproc_if_token2] = ACTIONS(1518), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -105090,10 +105090,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -105102,7 +105102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1520), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -105154,103 +105154,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [268] = { - [sym_preproc_include] = STATE(275), - [sym_preproc_def] = STATE(275), - [sym_preproc_function_def] = STATE(275), - [sym_preproc_call] = STATE(275), - [sym_preproc_if_in_statements] = STATE(275), - [sym_preproc_ifdef_in_statements] = STATE(275), - [sym_preproc_else_in_statements] = STATE(8107), - [sym_preproc_elif_in_statements] = STATE(8107), - [sym_preproc_elifdef_in_statements] = STATE(8107), - [sym_preproc_else_in_procedure_statements] = STATE(7968), - [sym_preproc_elif_in_procedure_statements] = STATE(7968), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7968), - [sym_internal_procedures] = STATE(5570), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8031), + [sym_preproc_elif_in_statements] = STATE(8031), + [sym_preproc_elifdef_in_statements] = STATE(8031), + [sym_preproc_else_in_procedure_statements] = STATE(7936), + [sym_preproc_elif_in_procedure_statements] = STATE(7936), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7936), + [sym_internal_procedures] = STATE(5551), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(275), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_if_token2] = ACTIONS(1522), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -105272,10 +105272,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -105284,7 +105284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -105336,92 +105336,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [269] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8297), - [sym_preproc_elif_in_statements] = STATE(8297), - [sym_preproc_elifdef_in_statements] = STATE(8297), - [sym_preproc_else_in_procedure_statements] = STATE(8005), - [sym_preproc_elif_in_procedure_statements] = STATE(8005), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8005), - [sym_internal_procedures] = STATE(5519), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7631), + [sym_preproc_elif_in_statements] = STATE(7631), + [sym_preproc_elifdef_in_statements] = STATE(7631), + [sym_preproc_else_in_procedure_statements] = STATE(8199), + [sym_preproc_elif_in_procedure_statements] = STATE(8199), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8199), + [sym_internal_procedures] = STATE(5557), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -105432,7 +105432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -105454,10 +105454,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -105466,7 +105466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -105518,103 +105518,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [270] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8372), - [sym_preproc_elif_in_statements] = STATE(8372), - [sym_preproc_elifdef_in_statements] = STATE(8372), - [sym_preproc_else_in_procedure_statements] = STATE(8018), - [sym_preproc_elif_in_procedure_statements] = STATE(8018), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8018), - [sym_internal_procedures] = STATE(5523), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8203), + [sym_preproc_elif_in_specification_part] = STATE(8203), + [sym_preproc_elifdef_in_specification_part] = STATE(8203), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8217), + [sym_preproc_elif_in_statements] = STATE(8217), + [sym_preproc_elifdef_in_statements] = STATE(8217), + [sym_internal_procedures] = STATE(5573), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1526), + [aux_sym_preproc_if_token2] = ACTIONS(974), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -105636,10 +105636,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -105648,7 +105648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -105700,103 +105700,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [271] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7612), - [sym_preproc_elif_in_specification_part] = STATE(7612), - [sym_preproc_elifdef_in_specification_part] = STATE(7612), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_internal_procedures] = STATE(5520), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7606), + [sym_preproc_elif_in_statements] = STATE(7606), + [sym_preproc_elifdef_in_statements] = STATE(7606), + [sym_internal_procedures] = STATE(5563), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_if_token2] = ACTIONS(856), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -105818,10 +105818,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -105830,7 +105830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -105882,103 +105882,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [272] = { - [sym_preproc_include] = STATE(276), - [sym_preproc_def] = STATE(276), - [sym_preproc_function_def] = STATE(276), - [sym_preproc_call] = STATE(276), - [sym_preproc_if_in_statements] = STATE(276), - [sym_preproc_ifdef_in_statements] = STATE(276), - [sym_preproc_else_in_statements] = STATE(7520), - [sym_preproc_elif_in_statements] = STATE(7520), - [sym_preproc_elifdef_in_statements] = STATE(7520), - [sym_preproc_else_in_procedure_statements] = STATE(7780), - [sym_preproc_elif_in_procedure_statements] = STATE(7780), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7780), - [sym_internal_procedures] = STATE(5576), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8161), + [sym_preproc_elif_in_specification_part] = STATE(8161), + [sym_preproc_elifdef_in_specification_part] = STATE(8161), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8191), + [sym_preproc_elif_in_statements] = STATE(8191), + [sym_preproc_elifdef_in_statements] = STATE(8191), + [sym_internal_procedures] = STATE(5574), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(276), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1528), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(834), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1400), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [273] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7668), + [sym_preproc_elif_in_statements] = STATE(7668), + [sym_preproc_elifdef_in_statements] = STATE(7668), + [sym_preproc_else_in_procedure_statements] = STATE(8267), + [sym_preproc_elif_in_procedure_statements] = STATE(8267), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8267), + [sym_internal_procedures] = STATE(5539), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(802), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(1526), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -106000,10 +106182,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -106012,7 +106194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -106064,103 +106246,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [273] = { + [274] = { [sym_preproc_include] = STATE(278), [sym_preproc_def] = STATE(278), [sym_preproc_function_def] = STATE(278), [sym_preproc_call] = STATE(278), [sym_preproc_if_in_statements] = STATE(278), [sym_preproc_ifdef_in_statements] = STATE(278), - [sym_preproc_else_in_statements] = STATE(7521), - [sym_preproc_elif_in_statements] = STATE(7521), - [sym_preproc_elifdef_in_statements] = STATE(7521), - [sym_preproc_else_in_procedure_statements] = STATE(7868), - [sym_preproc_elif_in_procedure_statements] = STATE(7868), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7868), - [sym_internal_procedures] = STATE(5524), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_else_in_statements] = STATE(8025), + [sym_preproc_elif_in_statements] = STATE(8025), + [sym_preproc_elifdef_in_statements] = STATE(8025), + [sym_preproc_else_in_procedure_statements] = STATE(8284), + [sym_preproc_elif_in_procedure_statements] = STATE(8284), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8284), + [sym_internal_procedures] = STATE(5541), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(278), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1532), + [aux_sym_preproc_if_token2] = ACTIONS(1528), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -106182,10 +106364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -106194,7 +106376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1530), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -106246,92 +106428,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [274] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7521), - [sym_preproc_elif_in_statements] = STATE(7521), - [sym_preproc_elifdef_in_statements] = STATE(7521), - [sym_preproc_else_in_procedure_statements] = STATE(7868), - [sym_preproc_elif_in_procedure_statements] = STATE(7868), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7868), - [sym_internal_procedures] = STATE(5524), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [275] = { + [sym_preproc_include] = STATE(279), + [sym_preproc_def] = STATE(279), + [sym_preproc_function_def] = STATE(279), + [sym_preproc_call] = STATE(279), + [sym_preproc_if_in_statements] = STATE(279), + [sym_preproc_ifdef_in_statements] = STATE(279), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_preproc_else_in_procedure_statements] = STATE(8292), + [sym_preproc_elif_in_procedure_statements] = STATE(8292), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8292), + [sym_internal_procedures] = STATE(5530), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(279), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -106342,7 +106524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -106364,10 +106546,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -106376,7 +106558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1534), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -106428,103 +106610,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [275] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8318), - [sym_preproc_elif_in_statements] = STATE(8318), - [sym_preproc_elifdef_in_statements] = STATE(8318), - [sym_preproc_else_in_procedure_statements] = STATE(7919), - [sym_preproc_elif_in_procedure_statements] = STATE(7919), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7919), - [sym_internal_procedures] = STATE(5553), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [276] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_preproc_else_in_procedure_statements] = STATE(8292), + [sym_preproc_elif_in_procedure_statements] = STATE(8292), + [sym_preproc_elifdef_in_procedure_statements] = STATE(8292), + [sym_internal_procedures] = STATE(5530), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_if_token2] = ACTIONS(1532), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -106546,10 +106728,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -106558,7 +106740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -106610,103 +106792,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [276] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7528), - [sym_preproc_elif_in_statements] = STATE(7528), - [sym_preproc_elifdef_in_statements] = STATE(7528), - [sym_preproc_else_in_procedure_statements] = STATE(8178), - [sym_preproc_elif_in_procedure_statements] = STATE(8178), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8178), - [sym_internal_procedures] = STATE(5529), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [277] = { + [sym_preproc_include] = STATE(249), + [sym_preproc_def] = STATE(249), + [sym_preproc_function_def] = STATE(249), + [sym_preproc_call] = STATE(249), + [sym_preproc_if_in_statements] = STATE(249), + [sym_preproc_ifdef_in_statements] = STATE(249), + [sym_preproc_else_in_statements] = STATE(7794), + [sym_preproc_elif_in_statements] = STATE(7794), + [sym_preproc_elifdef_in_statements] = STATE(7794), + [sym_preproc_else_in_procedure_statements] = STATE(7526), + [sym_preproc_elif_in_procedure_statements] = STATE(7526), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7526), + [sym_internal_procedures] = STATE(5545), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(249), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1478), + [aux_sym_preproc_if_token2] = ACTIONS(1536), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -106728,10 +106910,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -106740,7 +106922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1538), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -106792,103 +106974,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [277] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7509), - [sym_preproc_elif_in_statements] = STATE(7509), - [sym_preproc_elifdef_in_statements] = STATE(7509), - [sym_internal_procedures] = STATE(5541), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [278] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7938), + [sym_preproc_elif_in_statements] = STATE(7938), + [sym_preproc_elifdef_in_statements] = STATE(7938), + [sym_preproc_else_in_procedure_statements] = STATE(7533), + [sym_preproc_elif_in_procedure_statements] = STATE(7533), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7533), + [sym_internal_procedures] = STATE(5571), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(854), + [aux_sym_preproc_if_token2] = ACTIONS(1540), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(828), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [aux_sym_preproc_elifdef_token1] = ACTIONS(832), - [aux_sym_preproc_elifdef_token2] = ACTIONS(832), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -106910,10 +107092,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -106922,7 +107104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -106974,103 +107156,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [278] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7529), - [sym_preproc_elif_in_statements] = STATE(7529), - [sym_preproc_elifdef_in_statements] = STATE(7529), - [sym_preproc_else_in_procedure_statements] = STATE(8204), - [sym_preproc_elif_in_procedure_statements] = STATE(8204), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8204), - [sym_internal_procedures] = STATE(5531), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [279] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8018), + [sym_preproc_elif_in_statements] = STATE(8018), + [sym_preproc_elifdef_in_statements] = STATE(8018), + [sym_preproc_else_in_procedure_statements] = STATE(7539), + [sym_preproc_elif_in_procedure_statements] = STATE(7539), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7539), + [sym_internal_procedures] = STATE(5554), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1542), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -107092,10 +107274,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -107104,7 +107286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -107156,103 +107338,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [279] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7535), - [sym_preproc_elif_in_statements] = STATE(7535), - [sym_preproc_elifdef_in_statements] = STATE(7535), - [sym_preproc_else_in_procedure_statements] = STATE(7466), - [sym_preproc_elif_in_procedure_statements] = STATE(7466), - [sym_preproc_elifdef_in_procedure_statements] = STATE(7466), - [sym_internal_procedures] = STATE(5532), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [280] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7522), + [sym_preproc_elif_in_statements] = STATE(7522), + [sym_preproc_elifdef_in_statements] = STATE(7522), + [sym_preproc_else_in_procedure_statements] = STATE(7948), + [sym_preproc_elif_in_procedure_statements] = STATE(7948), + [sym_preproc_elifdef_in_procedure_statements] = STATE(7948), + [sym_internal_procedures] = STATE(5561), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1504), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1450), [aux_sym_preproc_elif_token1] = ACTIONS(1452), [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -107274,10 +107456,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -107286,7 +107468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -107338,104 +107520,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [280] = { - [sym_preproc_include] = STATE(253), - [sym_preproc_def] = STATE(253), - [sym_preproc_function_def] = STATE(253), - [sym_preproc_call] = STATE(253), - [sym_preproc_if_in_statements] = STATE(253), - [sym_preproc_ifdef_in_statements] = STATE(253), - [sym_preproc_else_in_statements] = STATE(7463), - [sym_preproc_elif_in_statements] = STATE(7463), - [sym_preproc_elifdef_in_statements] = STATE(7463), - [sym_preproc_else_in_procedure_statements] = STATE(8366), - [sym_preproc_elif_in_procedure_statements] = STATE(8366), - [sym_preproc_elifdef_in_procedure_statements] = STATE(8366), - [sym_internal_procedures] = STATE(5569), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [281] = { + [sym_preproc_include] = STATE(422), + [sym_preproc_def] = STATE(422), + [sym_preproc_function_def] = STATE(422), + [sym_preproc_call] = STATE(422), + [sym_preproc_if_in_statements] = STATE(422), + [sym_preproc_ifdef_in_statements] = STATE(422), + [sym_preproc_else_in_statements] = STATE(7552), + [sym_preproc_elif_in_statements] = STATE(7552), + [sym_preproc_elifdef_in_statements] = STATE(7552), + [sym_internal_procedures] = STATE(5763), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(253), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(422), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1544), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), + [sym_preproc_comment] = ACTIONS(1552), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -107456,10 +107636,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -107468,7 +107648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1554), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -107520,102 +107700,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [281] = { - [sym_preproc_include] = STATE(354), - [sym_preproc_def] = STATE(354), - [sym_preproc_function_def] = STATE(354), - [sym_preproc_call] = STATE(354), - [sym_preproc_if_in_statements] = STATE(354), - [sym_preproc_ifdef_in_statements] = STATE(354), - [sym_preproc_else_in_statements] = STATE(7542), - [sym_preproc_elif_in_statements] = STATE(7542), - [sym_preproc_elifdef_in_statements] = STATE(7542), - [sym_internal_procedures] = STATE(5665), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [282] = { + [sym_preproc_include] = STATE(466), + [sym_preproc_def] = STATE(466), + [sym_preproc_function_def] = STATE(466), + [sym_preproc_call] = STATE(466), + [sym_preproc_if_in_statements] = STATE(466), + [sym_preproc_ifdef_in_statements] = STATE(466), + [sym_preproc_else_in_statements] = STATE(7710), + [sym_preproc_elif_in_statements] = STATE(7710), + [sym_preproc_elifdef_in_statements] = STATE(7710), + [sym_internal_procedures] = STATE(5803), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(354), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(466), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1544), + [aux_sym_preproc_if_token2] = ACTIONS(1556), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1552), + [sym_preproc_comment] = ACTIONS(1558), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -107636,10 +107816,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -107648,7 +107828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1560), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -107700,102 +107880,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [282] = { - [sym_preproc_include] = STATE(403), - [sym_preproc_def] = STATE(403), - [sym_preproc_function_def] = STATE(403), - [sym_preproc_call] = STATE(403), - [sym_preproc_if_in_statements] = STATE(403), - [sym_preproc_ifdef_in_statements] = STATE(403), - [sym_preproc_else_in_statements] = STATE(7878), - [sym_preproc_elif_in_statements] = STATE(7878), - [sym_preproc_elifdef_in_statements] = STATE(7878), - [sym_internal_procedures] = STATE(5802), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [283] = { + [sym_preproc_include] = STATE(323), + [sym_preproc_def] = STATE(323), + [sym_preproc_function_def] = STATE(323), + [sym_preproc_call] = STATE(323), + [sym_preproc_if_in_statements] = STATE(323), + [sym_preproc_ifdef_in_statements] = STATE(323), + [sym_preproc_else_in_statements] = STATE(7576), + [sym_preproc_elif_in_statements] = STATE(7576), + [sym_preproc_elifdef_in_statements] = STATE(7576), + [sym_internal_procedures] = STATE(5630), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(403), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(323), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1556), + [aux_sym_preproc_if_token2] = ACTIONS(1562), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1558), + [sym_preproc_comment] = ACTIONS(1564), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -107816,10 +107996,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -107828,7 +108008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1566), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -107880,102 +108060,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [283] = { - [sym_preproc_include] = STATE(342), - [sym_preproc_def] = STATE(342), - [sym_preproc_function_def] = STATE(342), - [sym_preproc_call] = STATE(342), - [sym_preproc_if_in_statements] = STATE(342), - [sym_preproc_ifdef_in_statements] = STATE(342), - [sym_preproc_else_in_statements] = STATE(8015), - [sym_preproc_elif_in_statements] = STATE(8015), - [sym_preproc_elifdef_in_statements] = STATE(8015), - [sym_internal_procedures] = STATE(5735), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [284] = { + [sym_preproc_include] = STATE(388), + [sym_preproc_def] = STATE(388), + [sym_preproc_function_def] = STATE(388), + [sym_preproc_call] = STATE(388), + [sym_preproc_if_in_statements] = STATE(388), + [sym_preproc_ifdef_in_statements] = STATE(388), + [sym_preproc_else_in_statements] = STATE(8332), + [sym_preproc_elif_in_statements] = STATE(8332), + [sym_preproc_elifdef_in_statements] = STATE(8332), + [sym_internal_procedures] = STATE(5737), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(342), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(388), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1562), + [aux_sym_preproc_if_token2] = ACTIONS(1568), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1564), + [sym_preproc_comment] = ACTIONS(1570), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -107996,10 +108176,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -108008,7 +108188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1572), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -108060,102 +108240,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [284] = { - [sym_preproc_include] = STATE(371), - [sym_preproc_def] = STATE(371), - [sym_preproc_function_def] = STATE(371), - [sym_preproc_call] = STATE(371), - [sym_preproc_if_in_statements] = STATE(371), - [sym_preproc_ifdef_in_statements] = STATE(371), - [sym_preproc_else_in_statements] = STATE(8409), - [sym_preproc_elif_in_statements] = STATE(8409), - [sym_preproc_elifdef_in_statements] = STATE(8409), - [sym_internal_procedures] = STATE(5794), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [285] = { + [sym_preproc_include] = STATE(307), + [sym_preproc_def] = STATE(307), + [sym_preproc_function_def] = STATE(307), + [sym_preproc_call] = STATE(307), + [sym_preproc_if_in_statements] = STATE(307), + [sym_preproc_ifdef_in_statements] = STATE(307), + [sym_preproc_else_in_statements] = STATE(8151), + [sym_preproc_elif_in_statements] = STATE(8151), + [sym_preproc_elifdef_in_statements] = STATE(8151), + [sym_internal_procedures] = STATE(5623), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(371), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(307), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1568), + [aux_sym_preproc_if_token2] = ACTIONS(1574), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1570), + [sym_preproc_comment] = ACTIONS(1576), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -108176,10 +108356,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -108188,7 +108368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1578), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -108240,102 +108420,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [285] = { - [sym_preproc_include] = STATE(336), - [sym_preproc_def] = STATE(336), - [sym_preproc_function_def] = STATE(336), - [sym_preproc_call] = STATE(336), - [sym_preproc_if_in_statements] = STATE(336), - [sym_preproc_ifdef_in_statements] = STATE(336), - [sym_preproc_else_in_statements] = STATE(7979), - [sym_preproc_elif_in_statements] = STATE(7979), - [sym_preproc_elifdef_in_statements] = STATE(7979), - [sym_internal_procedures] = STATE(5694), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [286] = { + [sym_preproc_include] = STATE(327), + [sym_preproc_def] = STATE(327), + [sym_preproc_function_def] = STATE(327), + [sym_preproc_call] = STATE(327), + [sym_preproc_if_in_statements] = STATE(327), + [sym_preproc_ifdef_in_statements] = STATE(327), + [sym_preproc_else_in_statements] = STATE(7456), + [sym_preproc_elif_in_statements] = STATE(7456), + [sym_preproc_elifdef_in_statements] = STATE(7456), + [sym_internal_procedures] = STATE(5659), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(336), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(327), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1574), + [aux_sym_preproc_if_token2] = ACTIONS(1580), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1576), + [sym_preproc_comment] = ACTIONS(1582), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -108356,10 +108536,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -108368,7 +108548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1584), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -108420,102 +108600,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [286] = { - [sym_preproc_include] = STATE(468), - [sym_preproc_def] = STATE(468), - [sym_preproc_function_def] = STATE(468), - [sym_preproc_call] = STATE(468), - [sym_preproc_if_in_statements] = STATE(468), - [sym_preproc_ifdef_in_statements] = STATE(468), - [sym_preproc_else_in_statements] = STATE(7709), - [sym_preproc_elif_in_statements] = STATE(7709), - [sym_preproc_elifdef_in_statements] = STATE(7709), - [sym_internal_procedures] = STATE(5637), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [287] = { + [sym_preproc_include] = STATE(341), + [sym_preproc_def] = STATE(341), + [sym_preproc_function_def] = STATE(341), + [sym_preproc_call] = STATE(341), + [sym_preproc_if_in_statements] = STATE(341), + [sym_preproc_ifdef_in_statements] = STATE(341), + [sym_preproc_else_in_statements] = STATE(8043), + [sym_preproc_elif_in_statements] = STATE(8043), + [sym_preproc_elifdef_in_statements] = STATE(8043), + [sym_internal_procedures] = STATE(5674), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(468), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(341), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1580), + [aux_sym_preproc_if_token2] = ACTIONS(1586), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1582), + [sym_preproc_comment] = ACTIONS(1588), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -108536,10 +108716,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -108548,7 +108728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1590), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -108600,102 +108780,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [287] = { - [sym_preproc_include] = STATE(411), - [sym_preproc_def] = STATE(411), - [sym_preproc_function_def] = STATE(411), - [sym_preproc_call] = STATE(411), - [sym_preproc_if_in_statements] = STATE(411), - [sym_preproc_ifdef_in_statements] = STATE(411), - [sym_preproc_else_in_statements] = STATE(8276), - [sym_preproc_elif_in_statements] = STATE(8276), - [sym_preproc_elifdef_in_statements] = STATE(8276), - [sym_internal_procedures] = STATE(5650), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [288] = { + [sym_preproc_include] = STATE(356), + [sym_preproc_def] = STATE(356), + [sym_preproc_function_def] = STATE(356), + [sym_preproc_call] = STATE(356), + [sym_preproc_if_in_statements] = STATE(356), + [sym_preproc_ifdef_in_statements] = STATE(356), + [sym_preproc_else_in_statements] = STATE(8207), + [sym_preproc_elif_in_statements] = STATE(8207), + [sym_preproc_elifdef_in_statements] = STATE(8207), + [sym_internal_procedures] = STATE(5690), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(411), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(356), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1586), + [aux_sym_preproc_if_token2] = ACTIONS(1592), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1588), + [sym_preproc_comment] = ACTIONS(1594), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -108716,10 +108896,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -108728,7 +108908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1596), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -108780,102 +108960,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [288] = { - [sym_preproc_include] = STATE(396), - [sym_preproc_def] = STATE(396), - [sym_preproc_function_def] = STATE(396), - [sym_preproc_call] = STATE(396), - [sym_preproc_if_in_statements] = STATE(396), - [sym_preproc_ifdef_in_statements] = STATE(396), - [sym_preproc_else_in_statements] = STATE(8022), - [sym_preproc_elif_in_statements] = STATE(8022), - [sym_preproc_elifdef_in_statements] = STATE(8022), - [sym_internal_procedures] = STATE(5724), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [289] = { + [sym_preproc_include] = STATE(364), + [sym_preproc_def] = STATE(364), + [sym_preproc_function_def] = STATE(364), + [sym_preproc_call] = STATE(364), + [sym_preproc_if_in_statements] = STATE(364), + [sym_preproc_ifdef_in_statements] = STATE(364), + [sym_preproc_else_in_statements] = STATE(8389), + [sym_preproc_elif_in_statements] = STATE(8389), + [sym_preproc_elifdef_in_statements] = STATE(8389), + [sym_internal_procedures] = STATE(5700), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(396), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(364), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1592), + [aux_sym_preproc_if_token2] = ACTIONS(1598), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1594), + [sym_preproc_comment] = ACTIONS(1600), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -108896,10 +109076,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -108908,7 +109088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1602), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -108960,102 +109140,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [289] = { - [sym_preproc_include] = STATE(327), - [sym_preproc_def] = STATE(327), - [sym_preproc_function_def] = STATE(327), - [sym_preproc_call] = STATE(327), - [sym_preproc_if_in_statements] = STATE(327), - [sym_preproc_ifdef_in_statements] = STATE(327), - [sym_preproc_else_in_statements] = STATE(7648), - [sym_preproc_elif_in_statements] = STATE(7648), - [sym_preproc_elifdef_in_statements] = STATE(7648), - [sym_internal_procedures] = STATE(5635), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [290] = { + [sym_preproc_include] = STATE(374), + [sym_preproc_def] = STATE(374), + [sym_preproc_function_def] = STATE(374), + [sym_preproc_call] = STATE(374), + [sym_preproc_if_in_statements] = STATE(374), + [sym_preproc_ifdef_in_statements] = STATE(374), + [sym_preproc_else_in_statements] = STATE(7783), + [sym_preproc_elif_in_statements] = STATE(7783), + [sym_preproc_elifdef_in_statements] = STATE(7783), + [sym_internal_procedures] = STATE(5711), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(327), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(374), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1598), + [aux_sym_preproc_if_token2] = ACTIONS(1604), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1600), + [sym_preproc_comment] = ACTIONS(1606), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -109076,10 +109256,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -109088,7 +109268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1608), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -109140,102 +109320,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [290] = { - [sym_preproc_include] = STATE(388), - [sym_preproc_def] = STATE(388), - [sym_preproc_function_def] = STATE(388), - [sym_preproc_call] = STATE(388), - [sym_preproc_if_in_statements] = STATE(388), - [sym_preproc_ifdef_in_statements] = STATE(388), - [sym_preproc_else_in_statements] = STATE(7772), - [sym_preproc_elif_in_statements] = STATE(7772), - [sym_preproc_elifdef_in_statements] = STATE(7772), - [sym_internal_procedures] = STATE(5659), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [291] = { + [sym_preproc_include] = STATE(381), + [sym_preproc_def] = STATE(381), + [sym_preproc_function_def] = STATE(381), + [sym_preproc_call] = STATE(381), + [sym_preproc_if_in_statements] = STATE(381), + [sym_preproc_ifdef_in_statements] = STATE(381), + [sym_preproc_else_in_statements] = STATE(7789), + [sym_preproc_elif_in_statements] = STATE(7789), + [sym_preproc_elifdef_in_statements] = STATE(7789), + [sym_internal_procedures] = STATE(5724), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(388), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(381), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1604), + [aux_sym_preproc_if_token2] = ACTIONS(1610), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1606), + [sym_preproc_comment] = ACTIONS(1612), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -109256,10 +109436,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -109268,7 +109448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1614), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -109320,102 +109500,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [291] = { - [sym_preproc_include] = STATE(379), - [sym_preproc_def] = STATE(379), - [sym_preproc_function_def] = STATE(379), - [sym_preproc_call] = STATE(379), - [sym_preproc_if_in_statements] = STATE(379), - [sym_preproc_ifdef_in_statements] = STATE(379), - [sym_preproc_else_in_statements] = STATE(8119), - [sym_preproc_elif_in_statements] = STATE(8119), - [sym_preproc_elifdef_in_statements] = STATE(8119), - [sym_internal_procedures] = STATE(5621), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [292] = { + [sym_preproc_include] = STATE(391), + [sym_preproc_def] = STATE(391), + [sym_preproc_function_def] = STATE(391), + [sym_preproc_call] = STATE(391), + [sym_preproc_if_in_statements] = STATE(391), + [sym_preproc_ifdef_in_statements] = STATE(391), + [sym_preproc_else_in_statements] = STATE(8107), + [sym_preproc_elif_in_statements] = STATE(8107), + [sym_preproc_elifdef_in_statements] = STATE(8107), + [sym_internal_procedures] = STATE(5731), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(379), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(391), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1610), + [aux_sym_preproc_if_token2] = ACTIONS(1616), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1612), + [sym_preproc_comment] = ACTIONS(1618), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -109436,10 +109616,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -109448,7 +109628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1620), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -109500,102 +109680,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [292] = { - [sym_preproc_include] = STATE(418), - [sym_preproc_def] = STATE(418), - [sym_preproc_function_def] = STATE(418), - [sym_preproc_call] = STATE(418), - [sym_preproc_if_in_statements] = STATE(418), - [sym_preproc_ifdef_in_statements] = STATE(418), - [sym_preproc_else_in_statements] = STATE(7472), - [sym_preproc_elif_in_statements] = STATE(7472), - [sym_preproc_elifdef_in_statements] = STATE(7472), - [sym_internal_procedures] = STATE(5669), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [293] = { + [sym_preproc_include] = STATE(399), + [sym_preproc_def] = STATE(399), + [sym_preproc_function_def] = STATE(399), + [sym_preproc_call] = STATE(399), + [sym_preproc_if_in_statements] = STATE(399), + [sym_preproc_ifdef_in_statements] = STATE(399), + [sym_preproc_else_in_statements] = STATE(8153), + [sym_preproc_elif_in_statements] = STATE(8153), + [sym_preproc_elifdef_in_statements] = STATE(8153), + [sym_internal_procedures] = STATE(5831), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(418), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(399), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1616), + [aux_sym_preproc_if_token2] = ACTIONS(1622), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1618), + [sym_preproc_comment] = ACTIONS(1624), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -109616,10 +109796,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -109628,7 +109808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1626), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -109680,102 +109860,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [293] = { - [sym_preproc_include] = STATE(307), - [sym_preproc_def] = STATE(307), - [sym_preproc_function_def] = STATE(307), - [sym_preproc_call] = STATE(307), - [sym_preproc_if_in_statements] = STATE(307), - [sym_preproc_ifdef_in_statements] = STATE(307), - [sym_preproc_else_in_statements] = STATE(7985), - [sym_preproc_elif_in_statements] = STATE(7985), - [sym_preproc_elifdef_in_statements] = STATE(7985), - [sym_internal_procedures] = STATE(5680), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [294] = { + [sym_preproc_include] = STATE(406), + [sym_preproc_def] = STATE(406), + [sym_preproc_function_def] = STATE(406), + [sym_preproc_call] = STATE(406), + [sym_preproc_if_in_statements] = STATE(406), + [sym_preproc_ifdef_in_statements] = STATE(406), + [sym_preproc_else_in_statements] = STATE(8317), + [sym_preproc_elif_in_statements] = STATE(8317), + [sym_preproc_elifdef_in_statements] = STATE(8317), + [sym_internal_procedures] = STATE(5747), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(307), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(406), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1622), + [aux_sym_preproc_if_token2] = ACTIONS(1628), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1624), + [sym_preproc_comment] = ACTIONS(1630), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -109796,10 +109976,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -109808,7 +109988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1632), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -109860,102 +110040,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [294] = { - [sym_preproc_include] = STATE(364), - [sym_preproc_def] = STATE(364), - [sym_preproc_function_def] = STATE(364), - [sym_preproc_call] = STATE(364), - [sym_preproc_if_in_statements] = STATE(364), - [sym_preproc_ifdef_in_statements] = STATE(364), - [sym_preproc_else_in_statements] = STATE(8148), - [sym_preproc_elif_in_statements] = STATE(8148), - [sym_preproc_elifdef_in_statements] = STATE(8148), - [sym_internal_procedures] = STATE(5717), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [295] = { + [sym_preproc_include] = STATE(415), + [sym_preproc_def] = STATE(415), + [sym_preproc_function_def] = STATE(415), + [sym_preproc_call] = STATE(415), + [sym_preproc_if_in_statements] = STATE(415), + [sym_preproc_ifdef_in_statements] = STATE(415), + [sym_preproc_else_in_statements] = STATE(7473), + [sym_preproc_elif_in_statements] = STATE(7473), + [sym_preproc_elifdef_in_statements] = STATE(7473), + [sym_internal_procedures] = STATE(5756), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(364), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(415), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1628), + [aux_sym_preproc_if_token2] = ACTIONS(1634), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1630), + [sym_preproc_comment] = ACTIONS(1636), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -109976,10 +110156,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -109988,7 +110168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1638), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -110040,102 +110220,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [295] = { - [sym_preproc_include] = STATE(426), - [sym_preproc_def] = STATE(426), - [sym_preproc_function_def] = STATE(426), - [sym_preproc_call] = STATE(426), - [sym_preproc_if_in_statements] = STATE(426), - [sym_preproc_ifdef_in_statements] = STATE(426), - [sym_preproc_else_in_statements] = STATE(7551), - [sym_preproc_elif_in_statements] = STATE(7551), - [sym_preproc_elifdef_in_statements] = STATE(7551), - [sym_internal_procedures] = STATE(5711), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [296] = { + [sym_preproc_include] = STATE(430), + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_statements] = STATE(430), + [sym_preproc_ifdef_in_statements] = STATE(430), + [sym_preproc_else_in_statements] = STATE(7584), + [sym_preproc_elif_in_statements] = STATE(7584), + [sym_preproc_elifdef_in_statements] = STATE(7584), + [sym_internal_procedures] = STATE(5770), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(426), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(430), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1634), + [aux_sym_preproc_if_token2] = ACTIONS(1640), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1636), + [sym_preproc_comment] = ACTIONS(1642), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -110156,10 +110336,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -110168,7 +110348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1644), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -110220,102 +110400,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [296] = { - [sym_preproc_include] = STATE(433), - [sym_preproc_def] = STATE(433), - [sym_preproc_function_def] = STATE(433), - [sym_preproc_call] = STATE(433), - [sym_preproc_if_in_statements] = STATE(433), - [sym_preproc_ifdef_in_statements] = STATE(433), - [sym_preproc_else_in_statements] = STATE(7583), - [sym_preproc_elif_in_statements] = STATE(7583), - [sym_preproc_elifdef_in_statements] = STATE(7583), - [sym_internal_procedures] = STATE(5768), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [297] = { + [sym_preproc_include] = STATE(437), + [sym_preproc_def] = STATE(437), + [sym_preproc_function_def] = STATE(437), + [sym_preproc_call] = STATE(437), + [sym_preproc_if_in_statements] = STATE(437), + [sym_preproc_ifdef_in_statements] = STATE(437), + [sym_preproc_else_in_statements] = STATE(7616), + [sym_preproc_elif_in_statements] = STATE(7616), + [sym_preproc_elifdef_in_statements] = STATE(7616), + [sym_internal_procedures] = STATE(5776), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(433), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(437), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1640), + [aux_sym_preproc_if_token2] = ACTIONS(1646), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1642), + [sym_preproc_comment] = ACTIONS(1648), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -110336,10 +110516,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -110348,7 +110528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1650), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -110400,102 +110580,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [297] = { - [sym_preproc_include] = STATE(440), - [sym_preproc_def] = STATE(440), - [sym_preproc_function_def] = STATE(440), - [sym_preproc_call] = STATE(440), - [sym_preproc_if_in_statements] = STATE(440), - [sym_preproc_ifdef_in_statements] = STATE(440), - [sym_preproc_else_in_statements] = STATE(7615), - [sym_preproc_elif_in_statements] = STATE(7615), - [sym_preproc_elifdef_in_statements] = STATE(7615), - [sym_internal_procedures] = STATE(5778), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [298] = { + [sym_preproc_include] = STATE(445), + [sym_preproc_def] = STATE(445), + [sym_preproc_function_def] = STATE(445), + [sym_preproc_call] = STATE(445), + [sym_preproc_if_in_statements] = STATE(445), + [sym_preproc_ifdef_in_statements] = STATE(445), + [sym_preproc_else_in_statements] = STATE(7648), + [sym_preproc_elif_in_statements] = STATE(7648), + [sym_preproc_elifdef_in_statements] = STATE(7648), + [sym_internal_procedures] = STATE(5782), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(440), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(445), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1646), + [aux_sym_preproc_if_token2] = ACTIONS(1652), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1648), + [sym_preproc_comment] = ACTIONS(1654), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -110516,10 +110696,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -110528,7 +110708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1656), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -110580,102 +110760,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [298] = { - [sym_preproc_include] = STATE(447), - [sym_preproc_def] = STATE(447), - [sym_preproc_function_def] = STATE(447), - [sym_preproc_call] = STATE(447), - [sym_preproc_if_in_statements] = STATE(447), - [sym_preproc_ifdef_in_statements] = STATE(447), - [sym_preproc_else_in_statements] = STATE(7647), - [sym_preproc_elif_in_statements] = STATE(7647), - [sym_preproc_elifdef_in_statements] = STATE(7647), - [sym_internal_procedures] = STATE(5808), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [299] = { + [sym_preproc_include] = STATE(452), + [sym_preproc_def] = STATE(452), + [sym_preproc_function_def] = STATE(452), + [sym_preproc_call] = STATE(452), + [sym_preproc_if_in_statements] = STATE(452), + [sym_preproc_ifdef_in_statements] = STATE(452), + [sym_preproc_else_in_statements] = STATE(7678), + [sym_preproc_elif_in_statements] = STATE(7678), + [sym_preproc_elifdef_in_statements] = STATE(7678), + [sym_internal_procedures] = STATE(5789), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(447), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(452), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1652), + [aux_sym_preproc_if_token2] = ACTIONS(1658), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1654), + [sym_preproc_comment] = ACTIONS(1660), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -110696,10 +110876,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -110708,7 +110888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1662), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -110760,102 +110940,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [299] = { - [sym_preproc_include] = STATE(454), - [sym_preproc_def] = STATE(454), - [sym_preproc_function_def] = STATE(454), - [sym_preproc_call] = STATE(454), - [sym_preproc_if_in_statements] = STATE(454), - [sym_preproc_ifdef_in_statements] = STATE(454), - [sym_preproc_else_in_statements] = STATE(7677), - [sym_preproc_elif_in_statements] = STATE(7677), - [sym_preproc_elifdef_in_statements] = STATE(7677), - [sym_internal_procedures] = STATE(5620), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [300] = { + [sym_preproc_include] = STATE(459), + [sym_preproc_def] = STATE(459), + [sym_preproc_function_def] = STATE(459), + [sym_preproc_call] = STATE(459), + [sym_preproc_if_in_statements] = STATE(459), + [sym_preproc_ifdef_in_statements] = STATE(459), + [sym_preproc_else_in_statements] = STATE(7694), + [sym_preproc_elif_in_statements] = STATE(7694), + [sym_preproc_elifdef_in_statements] = STATE(7694), + [sym_internal_procedures] = STATE(5796), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(454), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(459), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1658), + [aux_sym_preproc_if_token2] = ACTIONS(1664), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1660), + [sym_preproc_comment] = ACTIONS(1666), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -110876,10 +111056,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -110888,7 +111068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1668), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -110940,102 +111120,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [300] = { - [sym_preproc_include] = STATE(461), - [sym_preproc_def] = STATE(461), - [sym_preproc_function_def] = STATE(461), - [sym_preproc_call] = STATE(461), - [sym_preproc_if_in_statements] = STATE(461), - [sym_preproc_ifdef_in_statements] = STATE(461), - [sym_preproc_else_in_statements] = STATE(7693), - [sym_preproc_elif_in_statements] = STATE(7693), - [sym_preproc_elifdef_in_statements] = STATE(7693), - [sym_internal_procedures] = STATE(5628), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [301] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7513), + [sym_preproc_elif_in_statements] = STATE(7513), + [sym_preproc_elifdef_in_statements] = STATE(7513), + [sym_internal_procedures] = STATE(5704), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(461), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1664), + [aux_sym_preproc_if_token2] = ACTIONS(1670), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(1666), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -111056,10 +111235,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -111068,7 +111247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -111120,100 +111299,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [301] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8126), - [sym_preproc_elif_in_specification_part] = STATE(8126), - [sym_preproc_elifdef_in_specification_part] = STATE(8126), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5781), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [302] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8012), + [sym_preproc_elif_in_specification_part] = STATE(8012), + [sym_preproc_elifdef_in_specification_part] = STATE(8012), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5647), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(908), + [aux_sym_preproc_if_token2] = ACTIONS(990), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -111235,10 +111414,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -111247,7 +111426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -111299,100 +111478,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [302] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7714), - [sym_preproc_elif_in_statements] = STATE(7714), - [sym_preproc_elifdef_in_statements] = STATE(7714), - [sym_internal_procedures] = STATE(5642), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [303] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8215), + [sym_preproc_elif_in_specification_part] = STATE(8215), + [sym_preproc_elifdef_in_specification_part] = STATE(8215), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5625), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1670), + [aux_sym_preproc_if_token2] = ACTIONS(928), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -111414,10 +111593,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -111426,7 +111605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -111478,279 +111657,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [303] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7612), - [sym_preproc_elif_in_specification_part] = STATE(7612), - [sym_preproc_elifdef_in_specification_part] = STATE(7612), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5645), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [304] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7933), - [sym_preproc_elif_in_statements] = STATE(7933), - [sym_preproc_elifdef_in_statements] = STATE(7933), - [sym_internal_procedures] = STATE(5795), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7727), + [sym_preproc_elif_in_specification_part] = STATE(7727), + [sym_preproc_elifdef_in_specification_part] = STATE(7727), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5624), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(908), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -111772,10 +111772,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -111784,7 +111784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -111836,7 +111836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), @@ -111849,87 +111849,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(313), [sym_preproc_if_in_statements] = STATE(313), [sym_preproc_ifdef_in_statements] = STATE(313), - [sym_preproc_else_in_statements] = STATE(7790), - [sym_preproc_elif_in_statements] = STATE(7790), - [sym_preproc_elifdef_in_statements] = STATE(7790), - [sym_internal_procedures] = STATE(5822), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_else_in_statements] = STATE(7498), + [sym_preproc_elif_in_statements] = STATE(7498), + [sym_preproc_elifdef_in_statements] = STATE(7498), + [sym_internal_procedures] = STATE(5631), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(313), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1674), + [aux_sym_preproc_if_token2] = ACTIONS(1672), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -111951,10 +111951,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -111963,7 +111963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1674), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -112015,100 +112015,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [306] = { - [sym_preproc_include] = STATE(314), - [sym_preproc_def] = STATE(314), - [sym_preproc_function_def] = STATE(314), - [sym_preproc_call] = STATE(314), - [sym_preproc_if_in_statements] = STATE(314), - [sym_preproc_ifdef_in_statements] = STATE(314), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_internal_procedures] = STATE(5823), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(315), + [sym_preproc_def] = STATE(315), + [sym_preproc_function_def] = STATE(315), + [sym_preproc_call] = STATE(315), + [sym_preproc_if_in_statements] = STATE(315), + [sym_preproc_ifdef_in_statements] = STATE(315), + [sym_preproc_else_in_statements] = STATE(7518), + [sym_preproc_elif_in_statements] = STATE(7518), + [sym_preproc_elifdef_in_statements] = STATE(7518), + [sym_internal_procedures] = STATE(5633), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(314), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(315), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1678), + [aux_sym_preproc_if_token2] = ACTIONS(1676), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -112130,10 +112130,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -112142,7 +112142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1678), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -112194,100 +112194,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [307] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7720), - [sym_preproc_elif_in_statements] = STATE(7720), - [sym_preproc_elifdef_in_statements] = STATE(7720), - [sym_internal_procedures] = STATE(5823), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7518), + [sym_preproc_elif_in_statements] = STATE(7518), + [sym_preproc_elifdef_in_statements] = STATE(7518), + [sym_internal_procedures] = STATE(5633), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1678), + [aux_sym_preproc_if_token2] = ACTIONS(1676), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -112309,10 +112309,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -112321,7 +112321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -112373,100 +112373,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [308] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8375), - [sym_preproc_elif_in_specification_part] = STATE(8375), - [sym_preproc_elifdef_in_specification_part] = STATE(8375), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5713), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(370), + [sym_preproc_def] = STATE(370), + [sym_preproc_function_def] = STATE(370), + [sym_preproc_call] = STATE(370), + [sym_preproc_if_in_statements] = STATE(370), + [sym_preproc_ifdef_in_statements] = STATE(370), + [sym_preproc_else_in_statements] = STATE(7565), + [sym_preproc_elif_in_statements] = STATE(7565), + [sym_preproc_elifdef_in_statements] = STATE(7565), + [sym_internal_procedures] = STATE(5802), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(370), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(896), + [aux_sym_preproc_if_token2] = ACTIONS(1680), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -112488,10 +112488,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -112500,7 +112500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1682), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -112552,100 +112552,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [309] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8347), - [sym_preproc_elif_in_specification_part] = STATE(8347), - [sym_preproc_elifdef_in_specification_part] = STATE(8347), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5729), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8070), + [sym_preproc_elif_in_specification_part] = STATE(8070), + [sym_preproc_elifdef_in_specification_part] = STATE(8070), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5634), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1682), + [aux_sym_preproc_if_token2] = ACTIONS(940), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -112667,10 +112667,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -112679,7 +112679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -112731,100 +112731,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [310] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8355), - [sym_preproc_elif_in_specification_part] = STATE(8355), - [sym_preproc_elifdef_in_specification_part] = STATE(8355), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5780), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8239), + [sym_preproc_elif_in_specification_part] = STATE(8239), + [sym_preproc_elifdef_in_specification_part] = STATE(8239), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5636), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), [aux_sym_preproc_if_token2] = ACTIONS(1684), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -112846,10 +112846,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -112858,7 +112858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -112910,100 +112910,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [311] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8296), - [sym_preproc_elif_in_specification_part] = STATE(8296), - [sym_preproc_elifdef_in_specification_part] = STATE(8296), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5710), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8161), + [sym_preproc_elif_in_specification_part] = STATE(8161), + [sym_preproc_elifdef_in_specification_part] = STATE(8161), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5648), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(900), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -113025,10 +113025,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -113037,7 +113037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -113089,100 +113089,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [312] = { - [sym_preproc_include] = STATE(317), - [sym_preproc_def] = STATE(317), - [sym_preproc_function_def] = STATE(317), - [sym_preproc_call] = STATE(317), - [sym_preproc_if_in_statements] = STATE(317), - [sym_preproc_ifdef_in_statements] = STATE(317), - [sym_preproc_else_in_statements] = STATE(8107), - [sym_preproc_elif_in_statements] = STATE(8107), - [sym_preproc_elifdef_in_statements] = STATE(8107), - [sym_internal_procedures] = STATE(5765), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8035), + [sym_preproc_elif_in_specification_part] = STATE(8035), + [sym_preproc_elifdef_in_specification_part] = STATE(8035), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5821), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(317), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1686), + [aux_sym_preproc_if_token2] = ACTIONS(259), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -113204,10 +113204,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -113216,7 +113216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -113268,100 +113268,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [313] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8297), - [sym_preproc_elif_in_statements] = STATE(8297), - [sym_preproc_elifdef_in_statements] = STATE(8297), - [sym_internal_procedures] = STATE(5789), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7640), + [sym_preproc_elif_in_statements] = STATE(7640), + [sym_preproc_elifdef_in_statements] = STATE(7640), + [sym_internal_procedures] = STATE(5640), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1690), + [aux_sym_preproc_if_token2] = ACTIONS(1686), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -113383,10 +113383,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -113395,7 +113395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -113447,100 +113447,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [314] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8372), - [sym_preproc_elif_in_statements] = STATE(8372), - [sym_preproc_elifdef_in_statements] = STATE(8372), - [sym_internal_procedures] = STATE(5797), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(317), + [sym_preproc_def] = STATE(317), + [sym_preproc_function_def] = STATE(317), + [sym_preproc_call] = STATE(317), + [sym_preproc_if_in_statements] = STATE(317), + [sym_preproc_ifdef_in_statements] = STATE(317), + [sym_preproc_else_in_statements] = STATE(7640), + [sym_preproc_elif_in_statements] = STATE(7640), + [sym_preproc_elifdef_in_statements] = STATE(7640), + [sym_internal_procedures] = STATE(5640), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(317), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1692), + [aux_sym_preproc_if_token2] = ACTIONS(1686), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -113562,10 +113562,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -113574,7 +113574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1688), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -113626,100 +113626,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [315] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8376), - [sym_preproc_elif_in_specification_part] = STATE(8376), - [sym_preproc_elifdef_in_specification_part] = STATE(8376), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5798), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7729), + [sym_preproc_elif_in_statements] = STATE(7729), + [sym_preproc_elifdef_in_statements] = STATE(7729), + [sym_internal_procedures] = STATE(5641), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1694), + [aux_sym_preproc_if_token2] = ACTIONS(1690), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -113741,10 +113741,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -113753,7 +113753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -113805,100 +113805,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [316] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8316), - [sym_preproc_elif_in_specification_part] = STATE(8316), - [sym_preproc_elifdef_in_specification_part] = STATE(8316), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5701), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7706), + [sym_preproc_elif_in_specification_part] = STATE(7706), + [sym_preproc_elifdef_in_specification_part] = STATE(7706), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5642), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(1692), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -113920,10 +113920,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -113932,7 +113932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -113984,100 +113984,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [317] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8318), - [sym_preproc_elif_in_statements] = STATE(8318), - [sym_preproc_elifdef_in_statements] = STATE(8318), - [sym_internal_procedures] = STATE(5807), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7914), + [sym_preproc_elif_in_statements] = STATE(7914), + [sym_preproc_elifdef_in_statements] = STATE(7914), + [sym_internal_procedures] = STATE(5645), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1696), + [aux_sym_preproc_if_token2] = ACTIONS(1694), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -114099,10 +114099,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -114111,7 +114111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -114163,100 +114163,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [318] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8240), - [sym_preproc_elif_in_specification_part] = STATE(8240), - [sym_preproc_elifdef_in_specification_part] = STATE(8240), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5619), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8101), + [sym_preproc_elif_in_specification_part] = STATE(8101), + [sym_preproc_elifdef_in_specification_part] = STATE(8101), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5825), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(900), + [aux_sym_preproc_if_token2] = ACTIONS(1696), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -114278,10 +114278,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -114290,7 +114290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -114342,100 +114342,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [319] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8307), - [sym_preproc_elif_in_specification_part] = STATE(8307), - [sym_preproc_elifdef_in_specification_part] = STATE(8307), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5636), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7985), + [sym_preproc_elif_in_statements] = STATE(7985), + [sym_preproc_elifdef_in_statements] = STATE(7985), + [sym_internal_procedures] = STATE(5685), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(904), + [aux_sym_preproc_if_token2] = ACTIONS(1698), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -114457,10 +114457,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -114469,7 +114469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -114521,100 +114521,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [320] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8139), - [sym_preproc_elif_in_specification_part] = STATE(8139), - [sym_preproc_elifdef_in_specification_part] = STATE(8139), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5684), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(350), + [sym_preproc_def] = STATE(350), + [sym_preproc_function_def] = STATE(350), + [sym_preproc_call] = STATE(350), + [sym_preproc_if_in_statements] = STATE(350), + [sym_preproc_ifdef_in_statements] = STATE(350), + [sym_preproc_else_in_statements] = STATE(8025), + [sym_preproc_elif_in_statements] = STATE(8025), + [sym_preproc_elifdef_in_statements] = STATE(8025), + [sym_internal_procedures] = STATE(5686), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(350), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(1700), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -114636,10 +114636,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -114648,7 +114648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1702), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -114700,100 +114700,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [321] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7471), - [sym_preproc_elif_in_specification_part] = STATE(7471), - [sym_preproc_elifdef_in_specification_part] = STATE(7471), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5751), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(351), + [sym_preproc_def] = STATE(351), + [sym_preproc_function_def] = STATE(351), + [sym_preproc_call] = STATE(351), + [sym_preproc_if_in_statements] = STATE(351), + [sym_preproc_ifdef_in_statements] = STATE(351), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_internal_procedures] = STATE(5688), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(351), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(916), + [aux_sym_preproc_if_token2] = ACTIONS(1704), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -114815,10 +114815,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -114827,7 +114827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1706), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -114879,100 +114879,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [322] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8113), - [sym_preproc_elif_in_specification_part] = STATE(8113), - [sym_preproc_elifdef_in_specification_part] = STATE(8113), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5657), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7722), + [sym_preproc_elif_in_specification_part] = STATE(7722), + [sym_preproc_elifdef_in_specification_part] = STATE(7722), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5661), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(920), + [aux_sym_preproc_if_token2] = ACTIONS(960), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -114994,10 +114994,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -115006,7 +115006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -115058,100 +115058,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [323] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8168), - [sym_preproc_elif_in_specification_part] = STATE(8168), - [sym_preproc_elifdef_in_specification_part] = STATE(8168), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5667), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8036), + [sym_preproc_elif_in_statements] = STATE(8036), + [sym_preproc_elifdef_in_statements] = STATE(8036), + [sym_internal_procedures] = STATE(5688), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(924), + [aux_sym_preproc_if_token2] = ACTIONS(1704), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -115173,10 +115173,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -115185,7 +115185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -115237,100 +115237,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [324] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8324), - [sym_preproc_elif_in_specification_part] = STATE(8324), - [sym_preproc_elifdef_in_specification_part] = STATE(8324), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5648), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8076), + [sym_preproc_elif_in_specification_part] = STATE(8076), + [sym_preproc_elifdef_in_specification_part] = STATE(8076), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5629), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(896), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -115352,10 +115352,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -115364,7 +115364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -115416,100 +115416,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [325] = { - [sym_preproc_include] = STATE(330), - [sym_preproc_def] = STATE(330), - [sym_preproc_function_def] = STATE(330), - [sym_preproc_call] = STATE(330), - [sym_preproc_if_in_statements] = STATE(330), - [sym_preproc_ifdef_in_statements] = STATE(330), - [sym_preproc_else_in_statements] = STATE(8070), - [sym_preproc_elif_in_statements] = STATE(8070), - [sym_preproc_elifdef_in_statements] = STATE(8070), - [sym_internal_procedures] = STATE(5714), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(332), + [sym_preproc_def] = STATE(332), + [sym_preproc_function_def] = STATE(332), + [sym_preproc_call] = STATE(332), + [sym_preproc_if_in_statements] = STATE(332), + [sym_preproc_ifdef_in_statements] = STATE(332), + [sym_preproc_else_in_statements] = STATE(7553), + [sym_preproc_elif_in_statements] = STATE(7553), + [sym_preproc_elifdef_in_statements] = STATE(7553), + [sym_internal_procedures] = STATE(5665), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(330), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(332), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1698), + [aux_sym_preproc_if_token2] = ACTIONS(1708), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -115531,10 +115531,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -115543,7 +115543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1710), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -115595,100 +115595,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [326] = { - [sym_preproc_include] = STATE(332), - [sym_preproc_def] = STATE(332), - [sym_preproc_function_def] = STATE(332), - [sym_preproc_call] = STATE(332), - [sym_preproc_if_in_statements] = STATE(332), - [sym_preproc_ifdef_in_statements] = STATE(332), - [sym_preproc_else_in_statements] = STATE(8140), - [sym_preproc_elif_in_statements] = STATE(8140), - [sym_preproc_elifdef_in_statements] = STATE(8140), - [sym_internal_procedures] = STATE(5719), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(334), + [sym_preproc_def] = STATE(334), + [sym_preproc_function_def] = STATE(334), + [sym_preproc_call] = STATE(334), + [sym_preproc_if_in_statements] = STATE(334), + [sym_preproc_ifdef_in_statements] = STATE(334), + [sym_preproc_else_in_statements] = STATE(7655), + [sym_preproc_elif_in_statements] = STATE(7655), + [sym_preproc_elifdef_in_statements] = STATE(7655), + [sym_internal_procedures] = STATE(5666), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(332), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(334), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1702), + [aux_sym_preproc_if_token2] = ACTIONS(1712), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -115710,10 +115710,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -115722,7 +115722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1714), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -115774,100 +115774,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [327] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8140), - [sym_preproc_elif_in_statements] = STATE(8140), - [sym_preproc_elifdef_in_statements] = STATE(8140), - [sym_internal_procedures] = STATE(5719), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7655), + [sym_preproc_elif_in_statements] = STATE(7655), + [sym_preproc_elifdef_in_statements] = STATE(7655), + [sym_internal_procedures] = STATE(5666), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1702), + [aux_sym_preproc_if_token2] = ACTIONS(1712), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -115889,10 +115889,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -115901,7 +115901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -115953,100 +115953,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [328] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7989), - [sym_preproc_elif_in_specification_part] = STATE(7989), - [sym_preproc_elifdef_in_specification_part] = STATE(7989), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5721), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7905), + [sym_preproc_elif_in_specification_part] = STATE(7905), + [sym_preproc_elifdef_in_specification_part] = STATE(7905), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5667), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(966), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -116068,10 +116068,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -116080,7 +116080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -116132,100 +116132,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [329] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7464), - [sym_preproc_elif_in_specification_part] = STATE(7464), - [sym_preproc_elifdef_in_specification_part] = STATE(7464), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5725), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7927), + [sym_preproc_elif_in_specification_part] = STATE(7927), + [sym_preproc_elifdef_in_specification_part] = STATE(7927), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5668), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1706), + [aux_sym_preproc_if_token2] = ACTIONS(1716), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -116247,10 +116247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -116259,7 +116259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -116311,100 +116311,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [330] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7474), - [sym_preproc_elif_in_statements] = STATE(7474), - [sym_preproc_elifdef_in_statements] = STATE(7474), - [sym_internal_procedures] = STATE(5748), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8261), + [sym_preproc_elif_in_specification_part] = STATE(8261), + [sym_preproc_elifdef_in_specification_part] = STATE(8261), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5692), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1708), + [aux_sym_preproc_if_token2] = ACTIONS(1718), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -116426,10 +116426,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -116438,7 +116438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -116490,100 +116490,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [331] = { - [sym_preproc_include] = STATE(337), - [sym_preproc_def] = STATE(337), - [sym_preproc_function_def] = STATE(337), - [sym_preproc_call] = STATE(337), - [sym_preproc_if_in_statements] = STATE(337), - [sym_preproc_ifdef_in_statements] = STATE(337), - [sym_preproc_else_in_statements] = STATE(7474), - [sym_preproc_elif_in_statements] = STATE(7474), - [sym_preproc_elifdef_in_statements] = STATE(7474), - [sym_internal_procedures] = STATE(5748), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8286), + [sym_preproc_elif_in_specification_part] = STATE(8286), + [sym_preproc_elifdef_in_specification_part] = STATE(8286), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5694), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(337), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1708), + [aux_sym_preproc_if_token2] = ACTIONS(1720), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -116605,10 +116605,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -116617,7 +116617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -116669,100 +116669,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [332] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7782), - [sym_preproc_elif_in_statements] = STATE(7782), - [sym_preproc_elifdef_in_statements] = STATE(7782), - [sym_internal_procedures] = STATE(5750), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7911), + [sym_preproc_elif_in_statements] = STATE(7911), + [sym_preproc_elifdef_in_statements] = STATE(7911), + [sym_internal_procedures] = STATE(5669), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1712), + [aux_sym_preproc_if_token2] = ACTIONS(1722), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -116784,10 +116784,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -116796,7 +116796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -116848,100 +116848,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [333] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7934), - [sym_preproc_elif_in_specification_part] = STATE(7934), - [sym_preproc_elifdef_in_specification_part] = STATE(7934), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5752), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(336), + [sym_preproc_def] = STATE(336), + [sym_preproc_function_def] = STATE(336), + [sym_preproc_call] = STATE(336), + [sym_preproc_if_in_statements] = STATE(336), + [sym_preproc_ifdef_in_statements] = STATE(336), + [sym_preproc_else_in_statements] = STATE(7911), + [sym_preproc_elif_in_statements] = STATE(7911), + [sym_preproc_elifdef_in_statements] = STATE(7911), + [sym_internal_procedures] = STATE(5669), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(336), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1714), + [aux_sym_preproc_if_token2] = ACTIONS(1722), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -116963,10 +116963,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -116975,7 +116975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1724), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -117027,100 +117027,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [334] = { - [sym_preproc_include] = STATE(376), - [sym_preproc_def] = STATE(376), - [sym_preproc_function_def] = STATE(376), - [sym_preproc_call] = STATE(376), - [sym_preproc_if_in_statements] = STATE(376), - [sym_preproc_ifdef_in_statements] = STATE(376), - [sym_preproc_else_in_statements] = STATE(7777), - [sym_preproc_elif_in_statements] = STATE(7777), - [sym_preproc_elifdef_in_statements] = STATE(7777), - [sym_internal_procedures] = STATE(5640), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7990), + [sym_preproc_elif_in_statements] = STATE(7990), + [sym_preproc_elifdef_in_statements] = STATE(7990), + [sym_internal_procedures] = STATE(5670), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(376), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1716), + [aux_sym_preproc_if_token2] = ACTIONS(1726), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -117142,10 +117142,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -117154,7 +117154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -117206,100 +117206,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [335] = { - [sym_preproc_include] = STATE(385), - [sym_preproc_def] = STATE(385), - [sym_preproc_function_def] = STATE(385), - [sym_preproc_call] = STATE(385), - [sym_preproc_if_in_statements] = STATE(385), - [sym_preproc_ifdef_in_statements] = STATE(385), - [sym_preproc_else_in_statements] = STATE(7509), - [sym_preproc_elif_in_statements] = STATE(7509), - [sym_preproc_elifdef_in_statements] = STATE(7509), - [sym_internal_procedures] = STATE(5707), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8072), + [sym_preproc_elif_in_specification_part] = STATE(8072), + [sym_preproc_elifdef_in_specification_part] = STATE(8072), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5671), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(385), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1720), + [aux_sym_preproc_if_token2] = ACTIONS(1728), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -117321,10 +117321,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -117333,7 +117333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -117385,100 +117385,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [336] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7509), - [sym_preproc_elif_in_statements] = STATE(7509), - [sym_preproc_elifdef_in_statements] = STATE(7509), - [sym_internal_procedures] = STATE(5707), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7459), + [sym_preproc_elif_in_statements] = STATE(7459), + [sym_preproc_elifdef_in_statements] = STATE(7459), + [sym_internal_procedures] = STATE(5672), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1720), + [aux_sym_preproc_if_token2] = ACTIONS(1730), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -117500,10 +117500,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -117512,7 +117512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -117564,100 +117564,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [337] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7628), - [sym_preproc_elif_in_statements] = STATE(7628), - [sym_preproc_elifdef_in_statements] = STATE(7628), - [sym_internal_procedures] = STATE(5767), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7934), + [sym_preproc_elif_in_specification_part] = STATE(7934), + [sym_preproc_elifdef_in_specification_part] = STATE(7934), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5644), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1724), + [aux_sym_preproc_if_token2] = ACTIONS(948), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -117679,10 +117679,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -117691,7 +117691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -117743,100 +117743,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [338] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7594), - [sym_preproc_elif_in_specification_part] = STATE(7594), - [sym_preproc_elifdef_in_specification_part] = STATE(7594), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5777), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7979), + [sym_preproc_elif_in_specification_part] = STATE(7979), + [sym_preproc_elifdef_in_specification_part] = STATE(7979), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5676), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(978), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -117858,10 +117858,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -117870,7 +117870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -117922,100 +117922,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [339] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7768), - [sym_preproc_elif_in_specification_part] = STATE(7768), - [sym_preproc_elifdef_in_specification_part] = STATE(7768), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5819), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(344), + [sym_preproc_def] = STATE(344), + [sym_preproc_function_def] = STATE(344), + [sym_preproc_call] = STATE(344), + [sym_preproc_if_in_statements] = STATE(344), + [sym_preproc_ifdef_in_statements] = STATE(344), + [sym_preproc_else_in_statements] = STATE(8127), + [sym_preproc_elif_in_statements] = STATE(8127), + [sym_preproc_elifdef_in_statements] = STATE(8127), + [sym_internal_procedures] = STATE(5677), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(344), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(1732), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -118037,10 +118037,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -118049,7 +118049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1734), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -118101,7 +118101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), @@ -118114,87 +118114,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(346), [sym_preproc_if_in_statements] = STATE(346), [sym_preproc_ifdef_in_statements] = STATE(346), - [sym_preproc_else_in_statements] = STATE(8095), - [sym_preproc_elif_in_statements] = STATE(8095), - [sym_preproc_elifdef_in_statements] = STATE(8095), - [sym_internal_procedures] = STATE(5649), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_else_in_statements] = STATE(8134), + [sym_preproc_elif_in_statements] = STATE(8134), + [sym_preproc_elifdef_in_statements] = STATE(8134), + [sym_internal_procedures] = STATE(5678), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(346), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1726), + [aux_sym_preproc_if_token2] = ACTIONS(1736), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -118216,10 +118216,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -118228,7 +118228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1738), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -118280,100 +118280,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [341] = { - [sym_preproc_include] = STATE(348), - [sym_preproc_def] = STATE(348), - [sym_preproc_function_def] = STATE(348), - [sym_preproc_call] = STATE(348), - [sym_preproc_if_in_statements] = STATE(348), - [sym_preproc_ifdef_in_statements] = STATE(348), - [sym_preproc_else_in_statements] = STATE(8121), - [sym_preproc_elif_in_statements] = STATE(8121), - [sym_preproc_elifdef_in_statements] = STATE(8121), - [sym_internal_procedures] = STATE(5663), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8134), + [sym_preproc_elif_in_statements] = STATE(8134), + [sym_preproc_elifdef_in_statements] = STATE(8134), + [sym_internal_procedures] = STATE(5678), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(348), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1730), + [aux_sym_preproc_if_token2] = ACTIONS(1736), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -118395,10 +118395,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -118407,7 +118407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -118459,100 +118459,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [342] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8121), - [sym_preproc_elif_in_statements] = STATE(8121), - [sym_preproc_elifdef_in_statements] = STATE(8121), - [sym_internal_procedures] = STATE(5663), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8408), + [sym_preproc_elif_in_specification_part] = STATE(8408), + [sym_preproc_elifdef_in_specification_part] = STATE(8408), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5679), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1730), + [aux_sym_preproc_if_token2] = ACTIONS(982), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -118574,10 +118574,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -118586,7 +118586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -118638,100 +118638,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [343] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7872), - [sym_preproc_elif_in_specification_part] = STATE(7872), - [sym_preproc_elifdef_in_specification_part] = STATE(7872), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5658), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7474), + [sym_preproc_elif_in_specification_part] = STATE(7474), + [sym_preproc_elifdef_in_specification_part] = STATE(7474), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5680), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1734), + [aux_sym_preproc_if_token2] = ACTIONS(1740), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -118753,10 +118753,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -118765,7 +118765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -118817,100 +118817,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [344] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7620), - [sym_preproc_elif_in_specification_part] = STATE(7620), - [sym_preproc_elifdef_in_specification_part] = STATE(7620), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5716), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8219), + [sym_preproc_elif_in_statements] = STATE(8219), + [sym_preproc_elifdef_in_statements] = STATE(8219), + [sym_internal_procedures] = STATE(5681), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(1742), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -118932,10 +118932,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -118944,7 +118944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -118996,100 +118996,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [345] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7655), - [sym_preproc_elif_in_specification_part] = STATE(7655), - [sym_preproc_elifdef_in_specification_part] = STATE(7655), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5749), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(348), + [sym_preproc_def] = STATE(348), + [sym_preproc_function_def] = STATE(348), + [sym_preproc_call] = STATE(348), + [sym_preproc_if_in_statements] = STATE(348), + [sym_preproc_ifdef_in_statements] = STATE(348), + [sym_preproc_else_in_statements] = STATE(8219), + [sym_preproc_elif_in_statements] = STATE(8219), + [sym_preproc_elifdef_in_statements] = STATE(8219), + [sym_internal_procedures] = STATE(5681), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(348), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1736), + [aux_sym_preproc_if_token2] = ACTIONS(1742), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -119111,10 +119111,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -119123,7 +119123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1744), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -119175,100 +119175,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [346] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8172), - [sym_preproc_elif_in_statements] = STATE(8172), - [sym_preproc_elifdef_in_statements] = STATE(8172), - [sym_internal_procedures] = STATE(5805), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8230), + [sym_preproc_elif_in_statements] = STATE(8230), + [sym_preproc_elifdef_in_statements] = STATE(8230), + [sym_internal_procedures] = STATE(5682), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1738), + [aux_sym_preproc_if_token2] = ACTIONS(1746), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -119290,10 +119290,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -119302,7 +119302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -119354,100 +119354,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [347] = { - [sym_preproc_include] = STATE(350), - [sym_preproc_def] = STATE(350), - [sym_preproc_function_def] = STATE(350), - [sym_preproc_call] = STATE(350), - [sym_preproc_if_in_statements] = STATE(350), - [sym_preproc_ifdef_in_statements] = STATE(350), - [sym_preproc_else_in_statements] = STATE(8172), - [sym_preproc_elif_in_statements] = STATE(8172), - [sym_preproc_elifdef_in_statements] = STATE(8172), - [sym_internal_procedures] = STATE(5805), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7592), + [sym_preproc_elif_in_specification_part] = STATE(7592), + [sym_preproc_elifdef_in_specification_part] = STATE(7592), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5683), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(350), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1738), + [aux_sym_preproc_if_token2] = ACTIONS(1748), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -119469,10 +119469,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -119481,7 +119481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -119533,100 +119533,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [348] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8189), - [sym_preproc_elif_in_statements] = STATE(8189), - [sym_preproc_elifdef_in_statements] = STATE(8189), - [sym_internal_procedures] = STATE(5810), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8309), + [sym_preproc_elif_in_statements] = STATE(8309), + [sym_preproc_elifdef_in_statements] = STATE(8309), + [sym_internal_procedures] = STATE(5684), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1742), + [aux_sym_preproc_if_token2] = ACTIONS(1750), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -119648,10 +119648,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -119660,7 +119660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -119712,100 +119712,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [349] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8051), - [sym_preproc_elif_in_specification_part] = STATE(8051), - [sym_preproc_elifdef_in_specification_part] = STATE(8051), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5816), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(371), + [sym_preproc_def] = STATE(371), + [sym_preproc_function_def] = STATE(371), + [sym_preproc_call] = STATE(371), + [sym_preproc_if_in_statements] = STATE(371), + [sym_preproc_ifdef_in_statements] = STATE(371), + [sym_preproc_else_in_statements] = STATE(7794), + [sym_preproc_elif_in_statements] = STATE(7794), + [sym_preproc_elifdef_in_statements] = STATE(7794), + [sym_internal_procedures] = STATE(5739), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(371), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1744), + [aux_sym_preproc_if_token2] = ACTIONS(1752), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -119827,10 +119827,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -119839,7 +119839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1754), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -119891,100 +119891,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [350] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8321), - [sym_preproc_elif_in_statements] = STATE(8321), - [sym_preproc_elifdef_in_statements] = STATE(8321), - [sym_internal_procedures] = STATE(5783), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7938), + [sym_preproc_elif_in_statements] = STATE(7938), + [sym_preproc_elifdef_in_statements] = STATE(7938), + [sym_internal_procedures] = STATE(5742), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1746), + [aux_sym_preproc_if_token2] = ACTIONS(1756), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -120006,10 +120006,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -120018,7 +120018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -120070,279 +120070,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [351] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8183), - [sym_preproc_elif_in_specification_part] = STATE(8183), - [sym_preproc_elifdef_in_specification_part] = STATE(8183), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5671), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [352] = { - [sym_preproc_include] = STATE(357), - [sym_preproc_def] = STATE(357), - [sym_preproc_function_def] = STATE(357), - [sym_preproc_call] = STATE(357), - [sym_preproc_if_in_statements] = STATE(357), - [sym_preproc_ifdef_in_statements] = STATE(357), - [sym_preproc_else_in_statements] = STATE(7662), - [sym_preproc_elif_in_statements] = STATE(7662), - [sym_preproc_elifdef_in_statements] = STATE(7662), - [sym_internal_procedures] = STATE(5679), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8018), + [sym_preproc_elif_in_statements] = STATE(8018), + [sym_preproc_elifdef_in_statements] = STATE(8018), + [sym_internal_procedures] = STATE(5745), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(357), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1748), + [aux_sym_preproc_if_token2] = ACTIONS(1758), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -120364,10 +120185,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -120376,7 +120197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -120428,100 +120249,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [353] = { - [sym_preproc_include] = STATE(359), - [sym_preproc_def] = STATE(359), - [sym_preproc_function_def] = STATE(359), - [sym_preproc_call] = STATE(359), - [sym_preproc_if_in_statements] = STATE(359), - [sym_preproc_ifdef_in_statements] = STATE(359), - [sym_preproc_else_in_statements] = STATE(7670), - [sym_preproc_elif_in_statements] = STATE(7670), - [sym_preproc_elifdef_in_statements] = STATE(7670), - [sym_internal_procedures] = STATE(5681), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [352] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7610), + [sym_preproc_elif_in_specification_part] = STATE(7610), + [sym_preproc_elifdef_in_specification_part] = STATE(7610), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5746), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(359), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1752), + [aux_sym_preproc_if_token2] = ACTIONS(1760), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -120543,10 +120364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -120555,7 +120376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -120607,100 +120428,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [354] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7670), - [sym_preproc_elif_in_statements] = STATE(7670), - [sym_preproc_elifdef_in_statements] = STATE(7670), - [sym_internal_procedures] = STATE(5681), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [353] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8203), + [sym_preproc_elif_in_specification_part] = STATE(8203), + [sym_preproc_elifdef_in_specification_part] = STATE(8203), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5691), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1752), + [aux_sym_preproc_if_token2] = ACTIONS(974), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -120722,10 +120543,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -120734,7 +120555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -120786,100 +120607,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [355] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8312), - [sym_preproc_elif_in_specification_part] = STATE(8312), - [sym_preproc_elifdef_in_specification_part] = STATE(8312), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5683), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [354] = { + [sym_preproc_include] = STATE(357), + [sym_preproc_def] = STATE(357), + [sym_preproc_function_def] = STATE(357), + [sym_preproc_call] = STATE(357), + [sym_preproc_if_in_statements] = STATE(357), + [sym_preproc_ifdef_in_statements] = STATE(357), + [sym_preproc_else_in_statements] = STATE(8226), + [sym_preproc_elif_in_statements] = STATE(8226), + [sym_preproc_elifdef_in_statements] = STATE(8226), + [sym_internal_procedures] = STATE(5693), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(357), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(982), + [aux_sym_preproc_if_token2] = ACTIONS(1762), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -120901,10 +120722,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -120913,7 +120734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1764), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -120965,100 +120786,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [356] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8345), - [sym_preproc_elif_in_specification_part] = STATE(8345), - [sym_preproc_elifdef_in_specification_part] = STATE(8345), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5688), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [355] = { + [sym_preproc_include] = STATE(359), + [sym_preproc_def] = STATE(359), + [sym_preproc_function_def] = STATE(359), + [sym_preproc_call] = STATE(359), + [sym_preproc_if_in_statements] = STATE(359), + [sym_preproc_ifdef_in_statements] = STATE(359), + [sym_preproc_else_in_statements] = STATE(8227), + [sym_preproc_elif_in_statements] = STATE(8227), + [sym_preproc_elifdef_in_statements] = STATE(8227), + [sym_internal_procedures] = STATE(5695), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(359), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1756), + [aux_sym_preproc_if_token2] = ACTIONS(1766), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -121080,10 +120901,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -121092,7 +120913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1768), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -121144,100 +120965,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [357] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7748), - [sym_preproc_elif_in_statements] = STATE(7748), - [sym_preproc_elifdef_in_statements] = STATE(7748), - [sym_internal_procedures] = STATE(5618), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [356] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8227), + [sym_preproc_elif_in_statements] = STATE(8227), + [sym_preproc_elifdef_in_statements] = STATE(8227), + [sym_internal_procedures] = STATE(5695), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1758), + [aux_sym_preproc_if_token2] = ACTIONS(1766), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -121259,10 +121080,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -121271,7 +121092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -121323,100 +121144,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [358] = { - [sym_preproc_include] = STATE(361), - [sym_preproc_def] = STATE(361), - [sym_preproc_function_def] = STATE(361), - [sym_preproc_call] = STATE(361), - [sym_preproc_if_in_statements] = STATE(361), - [sym_preproc_ifdef_in_statements] = STATE(361), - [sym_preproc_else_in_statements] = STATE(7748), - [sym_preproc_elif_in_statements] = STATE(7748), - [sym_preproc_elifdef_in_statements] = STATE(7748), - [sym_internal_procedures] = STATE(5618), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [357] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8242), + [sym_preproc_elif_in_statements] = STATE(8242), + [sym_preproc_elifdef_in_statements] = STATE(8242), + [sym_internal_procedures] = STATE(5696), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(361), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1758), + [aux_sym_preproc_if_token2] = ACTIONS(1770), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -121438,10 +121259,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -121450,7 +121271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -121502,100 +121323,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [359] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7750), - [sym_preproc_elif_in_statements] = STATE(7750), - [sym_preproc_elifdef_in_statements] = STATE(7750), + [358] = { + [sym_preproc_include] = STATE(360), + [sym_preproc_def] = STATE(360), + [sym_preproc_function_def] = STATE(360), + [sym_preproc_call] = STATE(360), + [sym_preproc_if_in_statements] = STATE(360), + [sym_preproc_ifdef_in_statements] = STATE(360), + [sym_preproc_else_in_statements] = STATE(8242), + [sym_preproc_elif_in_statements] = STATE(8242), + [sym_preproc_elifdef_in_statements] = STATE(8242), [sym_internal_procedures] = STATE(5696), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(360), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1762), + [aux_sym_preproc_if_token2] = ACTIONS(1770), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -121617,10 +121438,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -121629,7 +121450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1772), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -121681,279 +121502,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [360] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7623), - [sym_preproc_elif_in_specification_part] = STATE(7623), - [sym_preproc_elifdef_in_specification_part] = STATE(7623), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [359] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8244), + [sym_preproc_elif_in_statements] = STATE(8244), + [sym_preproc_elifdef_in_statements] = STATE(8244), [sym_internal_procedures] = STATE(5697), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1764), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [361] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7816), - [sym_preproc_elif_in_statements] = STATE(7816), - [sym_preproc_elifdef_in_statements] = STATE(7816), - [sym_internal_procedures] = STATE(5699), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1766), + [aux_sym_preproc_if_token2] = ACTIONS(1774), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -121975,10 +121617,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -121987,7 +121629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -122039,100 +121681,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [362] = { - [sym_preproc_include] = STATE(365), - [sym_preproc_def] = STATE(365), - [sym_preproc_function_def] = STATE(365), - [sym_preproc_call] = STATE(365), - [sym_preproc_if_in_statements] = STATE(365), - [sym_preproc_ifdef_in_statements] = STATE(365), - [sym_preproc_else_in_statements] = STATE(8170), - [sym_preproc_elif_in_statements] = STATE(8170), - [sym_preproc_elifdef_in_statements] = STATE(8170), - [sym_internal_procedures] = STATE(5728), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [360] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8276), + [sym_preproc_elif_in_statements] = STATE(8276), + [sym_preproc_elifdef_in_statements] = STATE(8276), + [sym_internal_procedures] = STATE(5698), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(365), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1768), + [aux_sym_preproc_if_token2] = ACTIONS(1776), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -122154,10 +121796,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -122166,7 +121808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -122218,100 +121860,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [363] = { - [sym_preproc_include] = STATE(367), - [sym_preproc_def] = STATE(367), - [sym_preproc_function_def] = STATE(367), - [sym_preproc_call] = STATE(367), - [sym_preproc_if_in_statements] = STATE(367), - [sym_preproc_ifdef_in_statements] = STATE(367), - [sym_preproc_else_in_statements] = STATE(8171), - [sym_preproc_elif_in_statements] = STATE(8171), - [sym_preproc_elifdef_in_statements] = STATE(8171), - [sym_internal_procedures] = STATE(5731), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [361] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7606), + [sym_preproc_elif_in_statements] = STATE(7606), + [sym_preproc_elifdef_in_statements] = STATE(7606), + [sym_internal_procedures] = STATE(5628), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(367), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1772), + [aux_sym_preproc_if_token2] = ACTIONS(1778), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -122333,10 +121975,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -122345,7 +121987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -122397,100 +122039,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [364] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8171), - [sym_preproc_elif_in_statements] = STATE(8171), - [sym_preproc_elifdef_in_statements] = STATE(8171), - [sym_internal_procedures] = STATE(5731), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [362] = { + [sym_preproc_include] = STATE(301), + [sym_preproc_def] = STATE(301), + [sym_preproc_function_def] = STATE(301), + [sym_preproc_call] = STATE(301), + [sym_preproc_if_in_statements] = STATE(301), + [sym_preproc_ifdef_in_statements] = STATE(301), + [sym_preproc_else_in_statements] = STATE(7486), + [sym_preproc_elif_in_statements] = STATE(7486), + [sym_preproc_elifdef_in_statements] = STATE(7486), + [sym_internal_procedures] = STATE(5702), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(301), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1772), + [aux_sym_preproc_if_token2] = ACTIONS(1780), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -122512,10 +122154,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -122524,7 +122166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1782), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -122576,100 +122218,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [365] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8184), - [sym_preproc_elif_in_statements] = STATE(8184), - [sym_preproc_elifdef_in_statements] = STATE(8184), - [sym_internal_procedures] = STATE(5747), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [363] = { + [sym_preproc_include] = STATE(366), + [sym_preproc_def] = STATE(366), + [sym_preproc_function_def] = STATE(366), + [sym_preproc_call] = STATE(366), + [sym_preproc_if_in_statements] = STATE(366), + [sym_preproc_ifdef_in_statements] = STATE(366), + [sym_preproc_else_in_statements] = STATE(7487), + [sym_preproc_elif_in_statements] = STATE(7487), + [sym_preproc_elifdef_in_statements] = STATE(7487), + [sym_internal_procedures] = STATE(5703), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(366), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1776), + [aux_sym_preproc_if_token2] = ACTIONS(1784), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -122691,10 +122333,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -122703,7 +122345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1786), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -122755,100 +122397,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [366] = { - [sym_preproc_include] = STATE(368), - [sym_preproc_def] = STATE(368), - [sym_preproc_function_def] = STATE(368), - [sym_preproc_call] = STATE(368), - [sym_preproc_if_in_statements] = STATE(368), - [sym_preproc_ifdef_in_statements] = STATE(368), - [sym_preproc_else_in_statements] = STATE(8184), - [sym_preproc_elif_in_statements] = STATE(8184), - [sym_preproc_elifdef_in_statements] = STATE(8184), - [sym_internal_procedures] = STATE(5747), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [364] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7487), + [sym_preproc_elif_in_statements] = STATE(7487), + [sym_preproc_elifdef_in_statements] = STATE(7487), + [sym_internal_procedures] = STATE(5703), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(368), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1776), + [aux_sym_preproc_if_token2] = ACTIONS(1784), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -122870,10 +122512,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -122882,7 +122524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -122934,100 +122576,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [367] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8185), - [sym_preproc_elif_in_statements] = STATE(8185), - [sym_preproc_elifdef_in_statements] = STATE(8185), - [sym_internal_procedures] = STATE(5756), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [365] = { + [sym_preproc_include] = STATE(367), + [sym_preproc_def] = STATE(367), + [sym_preproc_function_def] = STATE(367), + [sym_preproc_call] = STATE(367), + [sym_preproc_if_in_statements] = STATE(367), + [sym_preproc_ifdef_in_statements] = STATE(367), + [sym_preproc_else_in_statements] = STATE(7513), + [sym_preproc_elif_in_statements] = STATE(7513), + [sym_preproc_elifdef_in_statements] = STATE(7513), + [sym_internal_procedures] = STATE(5704), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(367), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1780), + [aux_sym_preproc_if_token2] = ACTIONS(1670), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -123049,10 +122691,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -123061,7 +122703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1788), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -123113,100 +122755,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [368] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8205), - [sym_preproc_elif_in_statements] = STATE(8205), - [sym_preproc_elifdef_in_statements] = STATE(8205), - [sym_internal_procedures] = STATE(5759), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [366] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7517), + [sym_preproc_elif_in_statements] = STATE(7517), + [sym_preproc_elifdef_in_statements] = STATE(7517), + [sym_internal_procedures] = STATE(5705), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1782), + [aux_sym_preproc_if_token2] = ACTIONS(1790), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -123228,10 +122870,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -123240,7 +122882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -123292,100 +122934,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [369] = { - [sym_preproc_include] = STATE(372), - [sym_preproc_def] = STATE(372), - [sym_preproc_function_def] = STATE(372), - [sym_preproc_call] = STATE(372), - [sym_preproc_if_in_statements] = STATE(372), - [sym_preproc_ifdef_in_statements] = STATE(372), - [sym_preproc_else_in_statements] = STATE(7498), - [sym_preproc_elif_in_statements] = STATE(7498), - [sym_preproc_elifdef_in_statements] = STATE(7498), - [sym_internal_procedures] = STATE(5800), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [367] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7543), + [sym_preproc_elif_in_statements] = STATE(7543), + [sym_preproc_elifdef_in_statements] = STATE(7543), + [sym_internal_procedures] = STATE(5706), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(372), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1784), + [aux_sym_preproc_if_token2] = ACTIONS(1792), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -123407,10 +123049,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -123419,7 +123061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -123471,100 +123113,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [370] = { - [sym_preproc_include] = STATE(374), - [sym_preproc_def] = STATE(374), - [sym_preproc_function_def] = STATE(374), - [sym_preproc_call] = STATE(374), - [sym_preproc_if_in_statements] = STATE(374), - [sym_preproc_ifdef_in_statements] = STATE(374), - [sym_preproc_else_in_statements] = STATE(7500), - [sym_preproc_elif_in_statements] = STATE(7500), - [sym_preproc_elifdef_in_statements] = STATE(7500), - [sym_internal_procedures] = STATE(5804), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [368] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7647), + [sym_preproc_elif_in_specification_part] = STATE(7647), + [sym_preproc_elifdef_in_specification_part] = STATE(7647), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5673), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(374), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(920), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -123586,10 +123228,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -123598,7 +123240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -123650,100 +123292,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [371] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7500), - [sym_preproc_elif_in_statements] = STATE(7500), - [sym_preproc_elifdef_in_statements] = STATE(7500), - [sym_internal_procedures] = STATE(5804), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [369] = { + [sym_preproc_include] = STATE(319), + [sym_preproc_def] = STATE(319), + [sym_preproc_function_def] = STATE(319), + [sym_preproc_call] = STATE(319), + [sym_preproc_if_in_statements] = STATE(319), + [sym_preproc_ifdef_in_statements] = STATE(319), + [sym_preproc_else_in_statements] = STATE(7606), + [sym_preproc_elif_in_statements] = STATE(7606), + [sym_preproc_elifdef_in_statements] = STATE(7606), + [sym_internal_procedures] = STATE(5628), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(319), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1778), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -123765,10 +123407,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -123777,7 +123419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1794), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -123829,100 +123471,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [372] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7516), - [sym_preproc_elif_in_statements] = STATE(7516), - [sym_preproc_elifdef_in_statements] = STATE(7516), - [sym_internal_procedures] = STATE(5813), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [370] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8191), + [sym_preproc_elif_in_statements] = STATE(8191), + [sym_preproc_elifdef_in_statements] = STATE(8191), + [sym_internal_procedures] = STATE(5632), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1792), + [aux_sym_preproc_if_token2] = ACTIONS(1796), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -123944,10 +123586,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -123956,7 +123598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -124008,100 +123650,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [373] = { - [sym_preproc_include] = STATE(375), - [sym_preproc_def] = STATE(375), - [sym_preproc_function_def] = STATE(375), - [sym_preproc_call] = STATE(375), - [sym_preproc_if_in_statements] = STATE(375), - [sym_preproc_ifdef_in_statements] = STATE(375), - [sym_preproc_else_in_statements] = STATE(7516), - [sym_preproc_elif_in_statements] = STATE(7516), - [sym_preproc_elifdef_in_statements] = STATE(7516), - [sym_internal_procedures] = STATE(5813), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [371] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8217), + [sym_preproc_elif_in_statements] = STATE(8217), + [sym_preproc_elifdef_in_statements] = STATE(8217), + [sym_internal_procedures] = STATE(5810), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(375), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1792), + [aux_sym_preproc_if_token2] = ACTIONS(1798), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -124123,10 +123765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -124135,7 +123777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -124187,100 +123829,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [374] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7518), - [sym_preproc_elif_in_statements] = STATE(7518), - [sym_preproc_elifdef_in_statements] = STATE(7518), - [sym_internal_procedures] = STATE(5814), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [372] = { + [sym_preproc_include] = STATE(375), + [sym_preproc_def] = STATE(375), + [sym_preproc_function_def] = STATE(375), + [sym_preproc_call] = STATE(375), + [sym_preproc_if_in_statements] = STATE(375), + [sym_preproc_ifdef_in_statements] = STATE(375), + [sym_preproc_else_in_statements] = STATE(7978), + [sym_preproc_elif_in_statements] = STATE(7978), + [sym_preproc_elifdef_in_statements] = STATE(7978), + [sym_internal_procedures] = STATE(5712), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(375), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1796), + [aux_sym_preproc_if_token2] = ACTIONS(1800), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -124302,10 +123944,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -124314,7 +123956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1802), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -124366,100 +124008,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [375] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7546), - [sym_preproc_elif_in_statements] = STATE(7546), - [sym_preproc_elifdef_in_statements] = STATE(7546), - [sym_internal_procedures] = STATE(5815), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [373] = { + [sym_preproc_include] = STATE(377), + [sym_preproc_def] = STATE(377), + [sym_preproc_function_def] = STATE(377), + [sym_preproc_call] = STATE(377), + [sym_preproc_if_in_statements] = STATE(377), + [sym_preproc_ifdef_in_statements] = STATE(377), + [sym_preproc_else_in_statements] = STATE(8124), + [sym_preproc_elif_in_statements] = STATE(8124), + [sym_preproc_elifdef_in_statements] = STATE(8124), + [sym_internal_procedures] = STATE(5714), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(377), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1798), + [aux_sym_preproc_if_token2] = ACTIONS(1804), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -124481,10 +124123,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -124493,7 +124135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1806), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -124545,100 +124187,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [376] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7473), - [sym_preproc_elif_in_statements] = STATE(7473), - [sym_preproc_elifdef_in_statements] = STATE(7473), - [sym_internal_procedures] = STATE(5661), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [374] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8124), + [sym_preproc_elif_in_statements] = STATE(8124), + [sym_preproc_elifdef_in_statements] = STATE(8124), + [sym_internal_procedures] = STATE(5714), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1804), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -124660,10 +124302,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -124672,7 +124314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -124724,100 +124366,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [377] = { - [sym_preproc_include] = STATE(381), - [sym_preproc_def] = STATE(381), - [sym_preproc_function_def] = STATE(381), - [sym_preproc_call] = STATE(381), - [sym_preproc_if_in_statements] = STATE(381), - [sym_preproc_ifdef_in_statements] = STATE(381), - [sym_preproc_else_in_statements] = STATE(8228), - [sym_preproc_elif_in_statements] = STATE(8228), - [sym_preproc_elifdef_in_statements] = STATE(8228), - [sym_internal_procedures] = STATE(5788), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [375] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7733), + [sym_preproc_elif_in_statements] = STATE(7733), + [sym_preproc_elifdef_in_statements] = STATE(7733), + [sym_internal_procedures] = STATE(5715), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(381), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1802), + [aux_sym_preproc_if_token2] = ACTIONS(1808), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -124839,10 +124481,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -124851,7 +124493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -124903,100 +124545,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [378] = { - [sym_preproc_include] = STATE(383), - [sym_preproc_def] = STATE(383), - [sym_preproc_function_def] = STATE(383), - [sym_preproc_call] = STATE(383), - [sym_preproc_if_in_statements] = STATE(383), - [sym_preproc_ifdef_in_statements] = STATE(383), - [sym_preproc_else_in_statements] = STATE(8241), - [sym_preproc_elif_in_statements] = STATE(8241), - [sym_preproc_elifdef_in_statements] = STATE(8241), - [sym_internal_procedures] = STATE(5660), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [376] = { + [sym_preproc_include] = STATE(378), + [sym_preproc_def] = STATE(378), + [sym_preproc_function_def] = STATE(378), + [sym_preproc_call] = STATE(378), + [sym_preproc_if_in_statements] = STATE(378), + [sym_preproc_ifdef_in_statements] = STATE(378), + [sym_preproc_else_in_statements] = STATE(7733), + [sym_preproc_elif_in_statements] = STATE(7733), + [sym_preproc_elifdef_in_statements] = STATE(7733), + [sym_internal_procedures] = STATE(5715), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(383), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(378), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1806), + [aux_sym_preproc_if_token2] = ACTIONS(1808), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -125018,10 +124660,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -125030,7 +124672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -125082,100 +124724,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [379] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8241), - [sym_preproc_elif_in_statements] = STATE(8241), - [sym_preproc_elifdef_in_statements] = STATE(8241), - [sym_internal_procedures] = STATE(5660), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [377] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8288), + [sym_preproc_elif_in_statements] = STATE(8288), + [sym_preproc_elifdef_in_statements] = STATE(8288), + [sym_internal_procedures] = STATE(5716), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1806), + [aux_sym_preproc_if_token2] = ACTIONS(1812), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -125197,10 +124839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -125209,7 +124851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -125261,100 +124903,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [380] = { - [sym_preproc_include] = STATE(304), - [sym_preproc_def] = STATE(304), - [sym_preproc_function_def] = STATE(304), - [sym_preproc_call] = STATE(304), - [sym_preproc_if_in_statements] = STATE(304), - [sym_preproc_ifdef_in_statements] = STATE(304), - [sym_preproc_else_in_statements] = STATE(7473), - [sym_preproc_elif_in_statements] = STATE(7473), - [sym_preproc_elifdef_in_statements] = STATE(7473), - [sym_internal_procedures] = STATE(5661), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [378] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8112), + [sym_preproc_elif_in_statements] = STATE(8112), + [sym_preproc_elifdef_in_statements] = STATE(8112), + [sym_internal_procedures] = STATE(5717), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(304), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1814), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -125376,10 +125018,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -125388,7 +125030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -125440,100 +125082,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [381] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8308), - [sym_preproc_elif_in_statements] = STATE(8308), - [sym_preproc_elifdef_in_statements] = STATE(8308), - [sym_internal_procedures] = STATE(5677), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [379] = { + [sym_preproc_include] = STATE(382), + [sym_preproc_def] = STATE(382), + [sym_preproc_function_def] = STATE(382), + [sym_preproc_call] = STATE(382), + [sym_preproc_if_in_statements] = STATE(382), + [sym_preproc_ifdef_in_statements] = STATE(382), + [sym_preproc_else_in_statements] = STATE(7829), + [sym_preproc_elif_in_statements] = STATE(7829), + [sym_preproc_elifdef_in_statements] = STATE(7829), + [sym_internal_procedures] = STATE(5726), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(382), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1812), + [aux_sym_preproc_if_token2] = ACTIONS(1816), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -125555,10 +125197,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -125567,7 +125209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1818), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -125619,100 +125261,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [382] = { + [380] = { [sym_preproc_include] = STATE(384), [sym_preproc_def] = STATE(384), [sym_preproc_function_def] = STATE(384), [sym_preproc_call] = STATE(384), [sym_preproc_if_in_statements] = STATE(384), [sym_preproc_ifdef_in_statements] = STATE(384), - [sym_preproc_else_in_statements] = STATE(8308), - [sym_preproc_elif_in_statements] = STATE(8308), - [sym_preproc_elifdef_in_statements] = STATE(8308), - [sym_internal_procedures] = STATE(5677), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_preproc_else_in_statements] = STATE(7831), + [sym_preproc_elif_in_statements] = STATE(7831), + [sym_preproc_elifdef_in_statements] = STATE(7831), + [sym_internal_procedures] = STATE(5727), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(384), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1812), + [aux_sym_preproc_if_token2] = ACTIONS(1820), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -125734,10 +125376,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -125746,7 +125388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1822), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -125798,100 +125440,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [383] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8326), - [sym_preproc_elif_in_statements] = STATE(8326), - [sym_preproc_elifdef_in_statements] = STATE(8326), - [sym_internal_procedures] = STATE(5715), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [381] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7831), + [sym_preproc_elif_in_statements] = STATE(7831), + [sym_preproc_elifdef_in_statements] = STATE(7831), + [sym_internal_procedures] = STATE(5727), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1816), + [aux_sym_preproc_if_token2] = ACTIONS(1820), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -125913,10 +125555,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -125925,7 +125567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -125977,100 +125619,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [384] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7924), - [sym_preproc_elif_in_statements] = STATE(7924), - [sym_preproc_elifdef_in_statements] = STATE(7924), - [sym_internal_procedures] = STATE(5727), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [382] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7855), + [sym_preproc_elif_in_statements] = STATE(7855), + [sym_preproc_elifdef_in_statements] = STATE(7855), + [sym_internal_procedures] = STATE(5728), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1818), + [aux_sym_preproc_if_token2] = ACTIONS(1824), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -126092,10 +125734,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -126104,7 +125746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -126156,100 +125798,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [385] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8173), - [sym_preproc_elif_in_statements] = STATE(8173), - [sym_preproc_elifdef_in_statements] = STATE(8173), - [sym_internal_procedures] = STATE(5689), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [383] = { + [sym_preproc_include] = STATE(385), + [sym_preproc_def] = STATE(385), + [sym_preproc_function_def] = STATE(385), + [sym_preproc_call] = STATE(385), + [sym_preproc_if_in_statements] = STATE(385), + [sym_preproc_ifdef_in_statements] = STATE(385), + [sym_preproc_else_in_statements] = STATE(7855), + [sym_preproc_elif_in_statements] = STATE(7855), + [sym_preproc_elifdef_in_statements] = STATE(7855), + [sym_internal_procedures] = STATE(5728), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(385), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1820), + [aux_sym_preproc_if_token2] = ACTIONS(1824), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -126271,10 +125913,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -126283,7 +125925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1826), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -126335,100 +125977,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [386] = { - [sym_preproc_include] = STATE(389), - [sym_preproc_def] = STATE(389), - [sym_preproc_function_def] = STATE(389), - [sym_preproc_call] = STATE(389), - [sym_preproc_if_in_statements] = STATE(389), - [sym_preproc_ifdef_in_statements] = STATE(389), - [sym_preproc_else_in_statements] = STATE(7806), - [sym_preproc_elif_in_statements] = STATE(7806), - [sym_preproc_elifdef_in_statements] = STATE(7806), - [sym_internal_procedures] = STATE(5672), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [384] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7861), + [sym_preproc_elif_in_statements] = STATE(7861), + [sym_preproc_elifdef_in_statements] = STATE(7861), + [sym_internal_procedures] = STATE(5729), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(389), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1822), + [aux_sym_preproc_if_token2] = ACTIONS(1828), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -126450,10 +126092,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -126462,7 +126104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -126514,100 +126156,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [387] = { - [sym_preproc_include] = STATE(391), - [sym_preproc_def] = STATE(391), - [sym_preproc_function_def] = STATE(391), - [sym_preproc_call] = STATE(391), - [sym_preproc_if_in_statements] = STATE(391), - [sym_preproc_ifdef_in_statements] = STATE(391), - [sym_preproc_else_in_statements] = STATE(7809), - [sym_preproc_elif_in_statements] = STATE(7809), - [sym_preproc_elifdef_in_statements] = STATE(7809), - [sym_internal_procedures] = STATE(5674), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [385] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7877), + [sym_preproc_elif_in_statements] = STATE(7877), + [sym_preproc_elifdef_in_statements] = STATE(7877), + [sym_internal_procedures] = STATE(5619), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(391), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1826), + [aux_sym_preproc_if_token2] = ACTIONS(1830), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -126629,10 +126271,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -126641,7 +126283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -126693,100 +126335,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [388] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7809), - [sym_preproc_elif_in_statements] = STATE(7809), - [sym_preproc_elifdef_in_statements] = STATE(7809), - [sym_internal_procedures] = STATE(5674), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [386] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7516), + [sym_preproc_elif_in_specification_part] = STATE(7516), + [sym_preproc_elifdef_in_specification_part] = STATE(7516), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5658), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1826), + [aux_sym_preproc_if_token2] = ACTIONS(912), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -126808,10 +126450,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -126820,7 +126462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -126872,100 +126514,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [389] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7830), - [sym_preproc_elif_in_statements] = STATE(7830), - [sym_preproc_elifdef_in_statements] = STATE(7830), - [sym_internal_procedures] = STATE(5709), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [387] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7635), + [sym_preproc_elif_in_specification_part] = STATE(7635), + [sym_preproc_elifdef_in_specification_part] = STATE(7635), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5660), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1830), + [aux_sym_preproc_if_token2] = ACTIONS(916), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -126987,10 +126629,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -126999,7 +126641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -127051,100 +126693,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [390] = { - [sym_preproc_include] = STATE(392), - [sym_preproc_def] = STATE(392), - [sym_preproc_function_def] = STATE(392), - [sym_preproc_call] = STATE(392), - [sym_preproc_if_in_statements] = STATE(392), - [sym_preproc_ifdef_in_statements] = STATE(392), - [sym_preproc_else_in_statements] = STATE(7830), - [sym_preproc_elif_in_statements] = STATE(7830), - [sym_preproc_elifdef_in_statements] = STATE(7830), - [sym_internal_procedures] = STATE(5709), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [388] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7565), + [sym_preproc_elif_in_statements] = STATE(7565), + [sym_preproc_elifdef_in_statements] = STATE(7565), + [sym_internal_procedures] = STATE(5802), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(392), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1830), + [aux_sym_preproc_if_token2] = ACTIONS(1680), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -127166,10 +126808,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -127178,7 +126820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -127230,100 +126872,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [391] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7832), - [sym_preproc_elif_in_statements] = STATE(7832), - [sym_preproc_elifdef_in_statements] = STATE(7832), - [sym_internal_procedures] = STATE(5739), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [389] = { + [sym_preproc_include] = STATE(392), + [sym_preproc_def] = STATE(392), + [sym_preproc_function_def] = STATE(392), + [sym_preproc_call] = STATE(392), + [sym_preproc_if_in_statements] = STATE(392), + [sym_preproc_ifdef_in_statements] = STATE(392), + [sym_preproc_else_in_statements] = STATE(8139), + [sym_preproc_elif_in_statements] = STATE(8139), + [sym_preproc_elifdef_in_statements] = STATE(8139), + [sym_internal_procedures] = STATE(5732), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(392), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1832), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -127345,10 +126987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -127357,7 +126999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1834), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -127409,89 +127051,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [392] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7848), - [sym_preproc_elif_in_statements] = STATE(7848), - [sym_preproc_elifdef_in_statements] = STATE(7848), - [sym_internal_procedures] = STATE(5772), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [390] = { + [sym_preproc_include] = STATE(394), + [sym_preproc_def] = STATE(394), + [sym_preproc_function_def] = STATE(394), + [sym_preproc_call] = STATE(394), + [sym_preproc_if_in_statements] = STATE(394), + [sym_preproc_ifdef_in_statements] = STATE(394), + [sym_preproc_else_in_statements] = STATE(8141), + [sym_preproc_elif_in_statements] = STATE(8141), + [sym_preproc_elifdef_in_statements] = STATE(8141), + [sym_internal_procedures] = STATE(5733), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(394), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), @@ -127502,7 +127144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -127524,10 +127166,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -127536,7 +127178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1838), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -127588,279 +127230,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [393] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(7702), - [sym_preproc_elif_in_specification_part] = STATE(7702), - [sym_preproc_elifdef_in_specification_part] = STATE(7702), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5786), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [394] = { - [sym_preproc_include] = STATE(397), - [sym_preproc_def] = STATE(397), - [sym_preproc_function_def] = STATE(397), - [sym_preproc_call] = STATE(397), - [sym_preproc_if_in_statements] = STATE(397), - [sym_preproc_ifdef_in_statements] = STATE(397), - [sym_preproc_else_in_statements] = STATE(8078), - [sym_preproc_elif_in_statements] = STATE(8078), - [sym_preproc_elifdef_in_statements] = STATE(8078), - [sym_internal_procedures] = STATE(5830), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [391] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8141), + [sym_preproc_elif_in_statements] = STATE(8141), + [sym_preproc_elifdef_in_statements] = STATE(8141), + [sym_internal_procedures] = STATE(5733), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(397), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1838), + [aux_sym_preproc_if_token2] = ACTIONS(1836), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -127882,10 +127345,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -127894,7 +127357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -127946,100 +127409,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [395] = { - [sym_preproc_include] = STATE(399), - [sym_preproc_def] = STATE(399), - [sym_preproc_function_def] = STATE(399), - [sym_preproc_call] = STATE(399), - [sym_preproc_if_in_statements] = STATE(399), - [sym_preproc_ifdef_in_statements] = STATE(399), - [sym_preproc_else_in_statements] = STATE(8080), - [sym_preproc_elif_in_statements] = STATE(8080), - [sym_preproc_elifdef_in_statements] = STATE(8080), - [sym_internal_procedures] = STATE(5740), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [392] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8187), + [sym_preproc_elif_in_statements] = STATE(8187), + [sym_preproc_elifdef_in_statements] = STATE(8187), + [sym_internal_procedures] = STATE(5734), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(399), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1842), + [aux_sym_preproc_if_token2] = ACTIONS(1840), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -128061,10 +127524,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -128073,7 +127536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -128125,100 +127588,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [396] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8080), - [sym_preproc_elif_in_statements] = STATE(8080), - [sym_preproc_elifdef_in_statements] = STATE(8080), - [sym_internal_procedures] = STATE(5740), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [393] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8123), + [sym_preproc_elif_in_specification_part] = STATE(8123), + [sym_preproc_elifdef_in_specification_part] = STATE(8123), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5620), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1842), + [aux_sym_preproc_if_token2] = ACTIONS(904), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -128240,10 +127703,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -128252,7 +127715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -128304,100 +127767,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [397] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8101), - [sym_preproc_elif_in_statements] = STATE(8101), - [sym_preproc_elifdef_in_statements] = STATE(8101), - [sym_internal_procedures] = STATE(5741), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [394] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8188), + [sym_preproc_elif_in_statements] = STATE(8188), + [sym_preproc_elifdef_in_statements] = STATE(8188), + [sym_internal_procedures] = STATE(5735), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1846), + [aux_sym_preproc_if_token2] = ACTIONS(1842), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -128419,10 +127882,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -128431,7 +127894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -128483,100 +127946,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [398] = { - [sym_preproc_include] = STATE(400), - [sym_preproc_def] = STATE(400), - [sym_preproc_function_def] = STATE(400), - [sym_preproc_call] = STATE(400), - [sym_preproc_if_in_statements] = STATE(400), - [sym_preproc_ifdef_in_statements] = STATE(400), - [sym_preproc_else_in_statements] = STATE(8101), - [sym_preproc_elif_in_statements] = STATE(8101), - [sym_preproc_elifdef_in_statements] = STATE(8101), - [sym_internal_procedures] = STATE(5741), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [395] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8209), + [sym_preproc_elif_in_statements] = STATE(8209), + [sym_preproc_elifdef_in_statements] = STATE(8209), + [sym_internal_procedures] = STATE(5736), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(400), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1846), + [aux_sym_preproc_if_token2] = ACTIONS(1844), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -128598,10 +128061,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -128610,7 +128073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -128662,100 +128125,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [399] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8108), - [sym_preproc_elif_in_statements] = STATE(8108), - [sym_preproc_elifdef_in_statements] = STATE(8108), - [sym_internal_procedures] = STATE(5745), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [396] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7903), + [sym_preproc_elif_in_specification_part] = STATE(7903), + [sym_preproc_elifdef_in_specification_part] = STATE(7903), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5675), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1850), + [aux_sym_preproc_if_token2] = ACTIONS(924), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -128777,10 +128240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -128789,7 +128252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -128841,100 +128304,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [400] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8134), - [sym_preproc_elif_in_statements] = STATE(8134), - [sym_preproc_elifdef_in_statements] = STATE(8134), - [sym_internal_procedures] = STATE(5746), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [397] = { + [sym_preproc_include] = STATE(400), + [sym_preproc_def] = STATE(400), + [sym_preproc_function_def] = STATE(400), + [sym_preproc_call] = STATE(400), + [sym_preproc_if_in_statements] = STATE(400), + [sym_preproc_ifdef_in_statements] = STATE(400), + [sym_preproc_else_in_statements] = STATE(7503), + [sym_preproc_elif_in_statements] = STATE(7503), + [sym_preproc_elifdef_in_statements] = STATE(7503), + [sym_internal_procedures] = STATE(5738), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(400), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1852), + [aux_sym_preproc_if_token2] = ACTIONS(1846), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -128956,10 +128419,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -128968,7 +128431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1848), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -129020,100 +128483,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [401] = { - [sym_preproc_include] = STATE(404), - [sym_preproc_def] = STATE(404), - [sym_preproc_function_def] = STATE(404), - [sym_preproc_call] = STATE(404), - [sym_preproc_if_in_statements] = STATE(404), - [sym_preproc_ifdef_in_statements] = STATE(404), - [sym_preproc_else_in_statements] = STATE(8283), - [sym_preproc_elif_in_statements] = STATE(8283), - [sym_preproc_elifdef_in_statements] = STATE(8283), - [sym_internal_procedures] = STATE(5806), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [398] = { + [sym_preproc_include] = STATE(402), + [sym_preproc_def] = STATE(402), + [sym_preproc_function_def] = STATE(402), + [sym_preproc_call] = STATE(402), + [sym_preproc_if_in_statements] = STATE(402), + [sym_preproc_ifdef_in_statements] = STATE(402), + [sym_preproc_else_in_statements] = STATE(7509), + [sym_preproc_elif_in_statements] = STATE(7509), + [sym_preproc_elifdef_in_statements] = STATE(7509), + [sym_internal_procedures] = STATE(5740), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(404), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(402), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1854), + [aux_sym_preproc_if_token2] = ACTIONS(1850), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -129135,10 +128598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -129147,7 +128610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1852), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -129199,100 +128662,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [402] = { - [sym_preproc_include] = STATE(406), - [sym_preproc_def] = STATE(406), - [sym_preproc_function_def] = STATE(406), - [sym_preproc_call] = STATE(406), - [sym_preproc_if_in_statements] = STATE(406), - [sym_preproc_ifdef_in_statements] = STATE(406), - [sym_preproc_else_in_statements] = STATE(8393), - [sym_preproc_elif_in_statements] = STATE(8393), - [sym_preproc_elifdef_in_statements] = STATE(8393), - [sym_internal_procedures] = STATE(5811), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [399] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7509), + [sym_preproc_elif_in_statements] = STATE(7509), + [sym_preproc_elifdef_in_statements] = STATE(7509), + [sym_internal_procedures] = STATE(5740), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(406), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1858), + [aux_sym_preproc_if_token2] = ACTIONS(1850), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -129314,10 +128777,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -129326,7 +128789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -129378,100 +128841,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [403] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8393), - [sym_preproc_elif_in_statements] = STATE(8393), - [sym_preproc_elifdef_in_statements] = STATE(8393), - [sym_internal_procedures] = STATE(5811), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [400] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7599), + [sym_preproc_elif_in_statements] = STATE(7599), + [sym_preproc_elifdef_in_statements] = STATE(7599), + [sym_internal_procedures] = STATE(5741), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1858), + [aux_sym_preproc_if_token2] = ACTIONS(1854), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -129493,10 +128956,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -129505,7 +128968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -129557,100 +129020,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [404] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7588), - [sym_preproc_elif_in_statements] = STATE(7588), - [sym_preproc_elifdef_in_statements] = STATE(7588), - [sym_internal_procedures] = STATE(5820), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [401] = { + [sym_preproc_include] = STATE(403), + [sym_preproc_def] = STATE(403), + [sym_preproc_function_def] = STATE(403), + [sym_preproc_call] = STATE(403), + [sym_preproc_if_in_statements] = STATE(403), + [sym_preproc_ifdef_in_statements] = STATE(403), + [sym_preproc_else_in_statements] = STATE(7599), + [sym_preproc_elif_in_statements] = STATE(7599), + [sym_preproc_elifdef_in_statements] = STATE(7599), + [sym_internal_procedures] = STATE(5741), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(403), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1862), + [aux_sym_preproc_if_token2] = ACTIONS(1854), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -129672,10 +129135,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -129684,7 +129147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1856), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -129736,100 +129199,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [405] = { - [sym_preproc_include] = STATE(407), - [sym_preproc_def] = STATE(407), - [sym_preproc_function_def] = STATE(407), - [sym_preproc_call] = STATE(407), - [sym_preproc_if_in_statements] = STATE(407), - [sym_preproc_ifdef_in_statements] = STATE(407), - [sym_preproc_else_in_statements] = STATE(7588), - [sym_preproc_elif_in_statements] = STATE(7588), - [sym_preproc_elifdef_in_statements] = STATE(7588), - [sym_internal_procedures] = STATE(5820), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [402] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7639), + [sym_preproc_elif_in_statements] = STATE(7639), + [sym_preproc_elifdef_in_statements] = STATE(7639), + [sym_internal_procedures] = STATE(5743), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(407), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1862), + [aux_sym_preproc_if_token2] = ACTIONS(1858), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -129851,10 +129314,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -129863,7 +129326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -129915,100 +129378,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [406] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7596), - [sym_preproc_elif_in_statements] = STATE(7596), - [sym_preproc_elifdef_in_statements] = STATE(7596), - [sym_internal_procedures] = STATE(5824), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [403] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7705), + [sym_preproc_elif_in_statements] = STATE(7705), + [sym_preproc_elifdef_in_statements] = STATE(7705), + [sym_internal_procedures] = STATE(5744), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1866), + [aux_sym_preproc_if_token2] = ACTIONS(1860), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -130030,10 +129493,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -130042,7 +129505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -130094,100 +129557,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [407] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7626), - [sym_preproc_elif_in_statements] = STATE(7626), - [sym_preproc_elifdef_in_statements] = STATE(7626), - [sym_internal_procedures] = STATE(5826), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [404] = { + [sym_preproc_include] = STATE(407), + [sym_preproc_def] = STATE(407), + [sym_preproc_function_def] = STATE(407), + [sym_preproc_call] = STATE(407), + [sym_preproc_if_in_statements] = STATE(407), + [sym_preproc_ifdef_in_statements] = STATE(407), + [sym_preproc_else_in_statements] = STATE(8348), + [sym_preproc_elif_in_statements] = STATE(8348), + [sym_preproc_elifdef_in_statements] = STATE(8348), + [sym_internal_procedures] = STATE(5748), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(407), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1862), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -130209,10 +129672,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -130221,186 +129684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [408] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8020), - [sym_preproc_elif_in_specification_part] = STATE(8020), - [sym_preproc_elifdef_in_specification_part] = STATE(8020), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5776), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1864), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -130452,100 +129736,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [409] = { - [sym_preproc_include] = STATE(412), - [sym_preproc_def] = STATE(412), - [sym_preproc_function_def] = STATE(412), - [sym_preproc_call] = STATE(412), - [sym_preproc_if_in_statements] = STATE(412), - [sym_preproc_ifdef_in_statements] = STATE(412), - [sym_preproc_else_in_statements] = STATE(8314), - [sym_preproc_elif_in_statements] = STATE(8314), - [sym_preproc_elifdef_in_statements] = STATE(8314), - [sym_internal_procedures] = STATE(5651), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [405] = { + [sym_preproc_include] = STATE(409), + [sym_preproc_def] = STATE(409), + [sym_preproc_function_def] = STATE(409), + [sym_preproc_call] = STATE(409), + [sym_preproc_if_in_statements] = STATE(409), + [sym_preproc_ifdef_in_statements] = STATE(409), + [sym_preproc_else_in_statements] = STATE(8353), + [sym_preproc_elif_in_statements] = STATE(8353), + [sym_preproc_elifdef_in_statements] = STATE(8353), + [sym_internal_procedures] = STATE(5749), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(412), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(409), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1872), + [aux_sym_preproc_if_token2] = ACTIONS(1866), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -130567,10 +129851,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -130579,7 +129863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1868), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -130631,100 +129915,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [410] = { - [sym_preproc_include] = STATE(414), - [sym_preproc_def] = STATE(414), - [sym_preproc_function_def] = STATE(414), - [sym_preproc_call] = STATE(414), - [sym_preproc_if_in_statements] = STATE(414), - [sym_preproc_ifdef_in_statements] = STATE(414), - [sym_preproc_else_in_statements] = STATE(8320), - [sym_preproc_elif_in_statements] = STATE(8320), - [sym_preproc_elifdef_in_statements] = STATE(8320), - [sym_internal_procedures] = STATE(5653), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [406] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8353), + [sym_preproc_elif_in_statements] = STATE(8353), + [sym_preproc_elifdef_in_statements] = STATE(8353), + [sym_internal_procedures] = STATE(5749), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(414), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1866), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -130746,10 +130030,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -130758,7 +130042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -130810,100 +130094,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [411] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8320), - [sym_preproc_elif_in_statements] = STATE(8320), - [sym_preproc_elifdef_in_statements] = STATE(8320), - [sym_internal_procedures] = STATE(5653), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [407] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8372), + [sym_preproc_elif_in_statements] = STATE(8372), + [sym_preproc_elifdef_in_statements] = STATE(8372), + [sym_internal_procedures] = STATE(5750), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1870), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -130925,10 +130209,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -130937,7 +130221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -130989,100 +130273,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [412] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8358), - [sym_preproc_elif_in_statements] = STATE(8358), - [sym_preproc_elifdef_in_statements] = STATE(8358), - [sym_internal_procedures] = STATE(5655), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [408] = { + [sym_preproc_include] = STATE(410), + [sym_preproc_def] = STATE(410), + [sym_preproc_function_def] = STATE(410), + [sym_preproc_call] = STATE(410), + [sym_preproc_if_in_statements] = STATE(410), + [sym_preproc_ifdef_in_statements] = STATE(410), + [sym_preproc_else_in_statements] = STATE(8372), + [sym_preproc_elif_in_statements] = STATE(8372), + [sym_preproc_elifdef_in_statements] = STATE(8372), + [sym_internal_procedures] = STATE(5750), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(410), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1880), + [aux_sym_preproc_if_token2] = ACTIONS(1870), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -131104,10 +130388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -131116,7 +130400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1872), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -131168,100 +130452,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [413] = { - [sym_preproc_include] = STATE(415), - [sym_preproc_def] = STATE(415), - [sym_preproc_function_def] = STATE(415), - [sym_preproc_call] = STATE(415), - [sym_preproc_if_in_statements] = STATE(415), - [sym_preproc_ifdef_in_statements] = STATE(415), - [sym_preproc_else_in_statements] = STATE(8358), - [sym_preproc_elif_in_statements] = STATE(8358), - [sym_preproc_elifdef_in_statements] = STATE(8358), - [sym_internal_procedures] = STATE(5655), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [409] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8377), + [sym_preproc_elif_in_statements] = STATE(8377), + [sym_preproc_elifdef_in_statements] = STATE(8377), + [sym_internal_procedures] = STATE(5751), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(415), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1880), + [aux_sym_preproc_if_token2] = ACTIONS(1874), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -131283,10 +130567,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -131295,7 +130579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -131347,100 +130631,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [414] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8362), - [sym_preproc_elif_in_statements] = STATE(8362), - [sym_preproc_elifdef_in_statements] = STATE(8362), - [sym_internal_procedures] = STATE(5656), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [410] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(8385), + [sym_preproc_elif_in_statements] = STATE(8385), + [sym_preproc_elifdef_in_statements] = STATE(8385), + [sym_internal_procedures] = STATE(5752), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1884), + [aux_sym_preproc_if_token2] = ACTIONS(1876), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -131462,10 +130746,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -131474,7 +130758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -131526,100 +130810,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [415] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(8380), - [sym_preproc_elif_in_statements] = STATE(8380), - [sym_preproc_elifdef_in_statements] = STATE(8380), - [sym_internal_procedures] = STATE(5698), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [411] = { + [sym_preproc_include] = STATE(361), + [sym_preproc_def] = STATE(361), + [sym_preproc_function_def] = STATE(361), + [sym_preproc_call] = STATE(361), + [sym_preproc_if_in_statements] = STATE(361), + [sym_preproc_ifdef_in_statements] = STATE(361), + [sym_preproc_else_in_statements] = STATE(7969), + [sym_preproc_elif_in_statements] = STATE(7969), + [sym_preproc_elifdef_in_statements] = STATE(7969), + [sym_internal_procedures] = STATE(5788), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(361), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1886), + [aux_sym_preproc_if_token2] = ACTIONS(1878), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -131641,10 +130925,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -131653,7 +130937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1880), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -131705,100 +130989,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [416] = { - [sym_preproc_include] = STATE(419), - [sym_preproc_def] = STATE(419), - [sym_preproc_function_def] = STATE(419), - [sym_preproc_call] = STATE(419), - [sym_preproc_if_in_statements] = STATE(419), - [sym_preproc_ifdef_in_statements] = STATE(419), - [sym_preproc_else_in_statements] = STATE(7479), - [sym_preproc_elif_in_statements] = STATE(7479), - [sym_preproc_elifdef_in_statements] = STATE(7479), - [sym_internal_procedures] = STATE(5670), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [412] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(8362), + [sym_preproc_elif_in_specification_part] = STATE(8362), + [sym_preproc_elifdef_in_specification_part] = STATE(8362), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5687), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(419), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(936), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -131820,10 +131104,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -131832,7 +131116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -131884,100 +131168,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [417] = { - [sym_preproc_include] = STATE(421), - [sym_preproc_def] = STATE(421), - [sym_preproc_function_def] = STATE(421), - [sym_preproc_call] = STATE(421), - [sym_preproc_if_in_statements] = STATE(421), - [sym_preproc_ifdef_in_statements] = STATE(421), + [413] = { + [sym_preproc_include] = STATE(416), + [sym_preproc_def] = STATE(416), + [sym_preproc_function_def] = STATE(416), + [sym_preproc_call] = STATE(416), + [sym_preproc_if_in_statements] = STATE(416), + [sym_preproc_ifdef_in_statements] = STATE(416), [sym_preproc_else_in_statements] = STATE(7480), [sym_preproc_elif_in_statements] = STATE(7480), [sym_preproc_elifdef_in_statements] = STATE(7480), - [sym_internal_procedures] = STATE(5675), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5757), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(421), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(416), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1892), + [aux_sym_preproc_if_token2] = ACTIONS(1882), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -131999,10 +131283,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -132011,7 +131295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1884), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -132063,100 +131347,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [418] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7480), - [sym_preproc_elif_in_statements] = STATE(7480), - [sym_preproc_elifdef_in_statements] = STATE(7480), - [sym_internal_procedures] = STATE(5675), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [414] = { + [sym_preproc_include] = STATE(418), + [sym_preproc_def] = STATE(418), + [sym_preproc_function_def] = STATE(418), + [sym_preproc_call] = STATE(418), + [sym_preproc_if_in_statements] = STATE(418), + [sym_preproc_ifdef_in_statements] = STATE(418), + [sym_preproc_else_in_statements] = STATE(7481), + [sym_preproc_elif_in_statements] = STATE(7481), + [sym_preproc_elifdef_in_statements] = STATE(7481), + [sym_internal_procedures] = STATE(5758), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(418), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1892), + [aux_sym_preproc_if_token2] = ACTIONS(1886), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -132178,10 +131462,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -132190,7 +131474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1888), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -132242,100 +131526,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [419] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7487), - [sym_preproc_elif_in_statements] = STATE(7487), - [sym_preproc_elifdef_in_statements] = STATE(7487), - [sym_internal_procedures] = STATE(5691), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [415] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7481), + [sym_preproc_elif_in_statements] = STATE(7481), + [sym_preproc_elifdef_in_statements] = STATE(7481), + [sym_internal_procedures] = STATE(5758), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1896), + [aux_sym_preproc_if_token2] = ACTIONS(1886), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -132357,10 +131641,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -132369,7 +131653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -132421,100 +131705,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [420] = { - [sym_preproc_include] = STATE(422), - [sym_preproc_def] = STATE(422), - [sym_preproc_function_def] = STATE(422), - [sym_preproc_call] = STATE(422), - [sym_preproc_if_in_statements] = STATE(422), - [sym_preproc_ifdef_in_statements] = STATE(422), - [sym_preproc_else_in_statements] = STATE(7487), - [sym_preproc_elif_in_statements] = STATE(7487), - [sym_preproc_elifdef_in_statements] = STATE(7487), - [sym_internal_procedures] = STATE(5691), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [416] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7488), + [sym_preproc_elif_in_statements] = STATE(7488), + [sym_preproc_elifdef_in_statements] = STATE(7488), + [sym_internal_procedures] = STATE(5759), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(422), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1896), + [aux_sym_preproc_if_token2] = ACTIONS(1890), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -132536,10 +131820,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -132548,7 +131832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -132600,100 +131884,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [421] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [417] = { + [sym_preproc_include] = STATE(419), + [sym_preproc_def] = STATE(419), + [sym_preproc_function_def] = STATE(419), + [sym_preproc_call] = STATE(419), + [sym_preproc_if_in_statements] = STATE(419), + [sym_preproc_ifdef_in_statements] = STATE(419), [sym_preproc_else_in_statements] = STATE(7488), [sym_preproc_elif_in_statements] = STATE(7488), [sym_preproc_elifdef_in_statements] = STATE(7488), - [sym_internal_procedures] = STATE(5693), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5759), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(419), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1900), + [aux_sym_preproc_if_token2] = ACTIONS(1890), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -132715,10 +131999,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -132727,7 +132011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1892), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -132779,100 +132063,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [422] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7494), - [sym_preproc_elif_in_statements] = STATE(7494), - [sym_preproc_elifdef_in_statements] = STATE(7494), - [sym_internal_procedures] = STATE(5695), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [418] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7489), + [sym_preproc_elif_in_statements] = STATE(7489), + [sym_preproc_elifdef_in_statements] = STATE(7489), + [sym_internal_procedures] = STATE(5760), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1902), + [aux_sym_preproc_if_token2] = ACTIONS(1894), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -132894,10 +132178,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -132906,7 +132190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -132958,100 +132242,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [423] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_else_in_specification_part] = STATE(8368), - [sym_preproc_elif_in_specification_part] = STATE(8368), - [sym_preproc_elifdef_in_specification_part] = STATE(8368), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_internal_procedures] = STATE(5743), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [419] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7495), + [sym_preproc_elif_in_statements] = STATE(7495), + [sym_preproc_elifdef_in_statements] = STATE(7495), + [sym_internal_procedures] = STATE(5761), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(990), + [aux_sym_preproc_if_token2] = ACTIONS(1896), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(862), - [aux_sym_preproc_elif_token1] = ACTIONS(864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(866), - [aux_sym_preproc_elifdef_token2] = ACTIONS(866), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -133073,10 +132357,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -133085,7 +132369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -133137,100 +132421,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [424] = { - [sym_preproc_include] = STATE(427), - [sym_preproc_def] = STATE(427), - [sym_preproc_function_def] = STATE(427), - [sym_preproc_call] = STATE(427), - [sym_preproc_if_in_statements] = STATE(427), - [sym_preproc_ifdef_in_statements] = STATE(427), - [sym_preproc_else_in_statements] = STATE(7554), - [sym_preproc_elif_in_statements] = STATE(7554), - [sym_preproc_elifdef_in_statements] = STATE(7554), - [sym_internal_procedures] = STATE(5718), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [420] = { + [sym_preproc_include] = STATE(423), + [sym_preproc_def] = STATE(423), + [sym_preproc_function_def] = STATE(423), + [sym_preproc_call] = STATE(423), + [sym_preproc_if_in_statements] = STATE(423), + [sym_preproc_ifdef_in_statements] = STATE(423), + [sym_preproc_else_in_statements] = STATE(7555), + [sym_preproc_elif_in_statements] = STATE(7555), + [sym_preproc_elifdef_in_statements] = STATE(7555), + [sym_internal_procedures] = STATE(5764), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(427), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(423), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1904), + [aux_sym_preproc_if_token2] = ACTIONS(1898), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -133252,10 +132536,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -133264,7 +132548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1900), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -133316,279 +132600,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [425] = { - [sym_preproc_include] = STATE(429), - [sym_preproc_def] = STATE(429), - [sym_preproc_function_def] = STATE(429), - [sym_preproc_call] = STATE(429), - [sym_preproc_if_in_statements] = STATE(429), - [sym_preproc_ifdef_in_statements] = STATE(429), - [sym_preproc_else_in_statements] = STATE(7555), - [sym_preproc_elif_in_statements] = STATE(7555), - [sym_preproc_elifdef_in_statements] = STATE(7555), - [sym_internal_procedures] = STATE(5742), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(429), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1910), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [426] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7555), - [sym_preproc_elif_in_statements] = STATE(7555), - [sym_preproc_elifdef_in_statements] = STATE(7555), - [sym_internal_procedures] = STATE(5742), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [421] = { + [sym_preproc_include] = STATE(425), + [sym_preproc_def] = STATE(425), + [sym_preproc_function_def] = STATE(425), + [sym_preproc_call] = STATE(425), + [sym_preproc_if_in_statements] = STATE(425), + [sym_preproc_ifdef_in_statements] = STATE(425), + [sym_preproc_else_in_statements] = STATE(7556), + [sym_preproc_elif_in_statements] = STATE(7556), + [sym_preproc_elifdef_in_statements] = STATE(7556), + [sym_internal_procedures] = STATE(5766), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(425), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1902), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -133610,10 +132715,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -133622,7 +132727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1904), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -133674,100 +132779,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [427] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7560), - [sym_preproc_elif_in_statements] = STATE(7560), - [sym_preproc_elifdef_in_statements] = STATE(7560), - [sym_internal_procedures] = STATE(5753), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [422] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7556), + [sym_preproc_elif_in_statements] = STATE(7556), + [sym_preproc_elifdef_in_statements] = STATE(7556), + [sym_internal_procedures] = STATE(5766), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1902), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -133789,10 +132894,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -133801,7 +132906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -133853,100 +132958,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [428] = { - [sym_preproc_include] = STATE(430), - [sym_preproc_def] = STATE(430), - [sym_preproc_function_def] = STATE(430), - [sym_preproc_call] = STATE(430), - [sym_preproc_if_in_statements] = STATE(430), - [sym_preproc_ifdef_in_statements] = STATE(430), - [sym_preproc_else_in_statements] = STATE(7560), - [sym_preproc_elif_in_statements] = STATE(7560), - [sym_preproc_elifdef_in_statements] = STATE(7560), - [sym_internal_procedures] = STATE(5753), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [423] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7561), + [sym_preproc_elif_in_statements] = STATE(7561), + [sym_preproc_elifdef_in_statements] = STATE(7561), + [sym_internal_procedures] = STATE(5767), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(430), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1906), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -133968,10 +133073,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -133980,7 +133085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -134032,100 +133137,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [429] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [424] = { + [sym_preproc_include] = STATE(426), + [sym_preproc_def] = STATE(426), + [sym_preproc_function_def] = STATE(426), + [sym_preproc_call] = STATE(426), + [sym_preproc_if_in_statements] = STATE(426), + [sym_preproc_ifdef_in_statements] = STATE(426), [sym_preproc_else_in_statements] = STATE(7561), [sym_preproc_elif_in_statements] = STATE(7561), [sym_preproc_elifdef_in_statements] = STATE(7561), - [sym_internal_procedures] = STATE(5763), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5767), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(426), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1916), + [aux_sym_preproc_if_token2] = ACTIONS(1906), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -134147,10 +133252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -134159,7 +133264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1908), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -134211,100 +133316,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [430] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7567), - [sym_preproc_elif_in_statements] = STATE(7567), - [sym_preproc_elifdef_in_statements] = STATE(7567), - [sym_internal_procedures] = STATE(5764), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [425] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7562), + [sym_preproc_elif_in_statements] = STATE(7562), + [sym_preproc_elifdef_in_statements] = STATE(7562), + [sym_internal_procedures] = STATE(5768), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1918), + [aux_sym_preproc_if_token2] = ACTIONS(1910), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -134326,10 +133431,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -134338,7 +133443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -134390,100 +133495,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [431] = { - [sym_preproc_include] = STATE(434), - [sym_preproc_def] = STATE(434), - [sym_preproc_function_def] = STATE(434), - [sym_preproc_call] = STATE(434), - [sym_preproc_if_in_statements] = STATE(434), - [sym_preproc_ifdef_in_statements] = STATE(434), - [sym_preproc_else_in_statements] = STATE(7586), - [sym_preproc_elif_in_statements] = STATE(7586), - [sym_preproc_elifdef_in_statements] = STATE(7586), - [sym_internal_procedures] = STATE(5770), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [426] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7568), + [sym_preproc_elif_in_statements] = STATE(7568), + [sym_preproc_elifdef_in_statements] = STATE(7568), + [sym_internal_procedures] = STATE(5769), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(434), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1920), + [aux_sym_preproc_if_token2] = ACTIONS(1912), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -134505,10 +133610,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -134517,7 +133622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -134569,100 +133674,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [432] = { - [sym_preproc_include] = STATE(436), - [sym_preproc_def] = STATE(436), - [sym_preproc_function_def] = STATE(436), - [sym_preproc_call] = STATE(436), - [sym_preproc_if_in_statements] = STATE(436), - [sym_preproc_ifdef_in_statements] = STATE(436), - [sym_preproc_else_in_statements] = STATE(7587), - [sym_preproc_elif_in_statements] = STATE(7587), - [sym_preproc_elifdef_in_statements] = STATE(7587), - [sym_internal_procedures] = STATE(5771), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [427] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7510), + [sym_preproc_elif_in_specification_part] = STATE(7510), + [sym_preproc_elifdef_in_specification_part] = STATE(7510), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5639), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(436), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1914), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -134684,10 +133789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -134696,7 +133801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -134748,100 +133853,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [433] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [428] = { + [sym_preproc_include] = STATE(431), + [sym_preproc_def] = STATE(431), + [sym_preproc_function_def] = STATE(431), + [sym_preproc_call] = STATE(431), + [sym_preproc_if_in_statements] = STATE(431), + [sym_preproc_ifdef_in_statements] = STATE(431), [sym_preproc_else_in_statements] = STATE(7587), [sym_preproc_elif_in_statements] = STATE(7587), [sym_preproc_elifdef_in_statements] = STATE(7587), [sym_internal_procedures] = STATE(5771), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(431), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1916), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -134863,10 +133968,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -134875,7 +133980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1918), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -134927,100 +134032,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [434] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7592), - [sym_preproc_elif_in_statements] = STATE(7592), - [sym_preproc_elifdef_in_statements] = STATE(7592), - [sym_internal_procedures] = STATE(5773), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [429] = { + [sym_preproc_include] = STATE(433), + [sym_preproc_def] = STATE(433), + [sym_preproc_function_def] = STATE(433), + [sym_preproc_call] = STATE(433), + [sym_preproc_if_in_statements] = STATE(433), + [sym_preproc_ifdef_in_statements] = STATE(433), + [sym_preproc_else_in_statements] = STATE(7588), + [sym_preproc_elif_in_statements] = STATE(7588), + [sym_preproc_elifdef_in_statements] = STATE(7588), + [sym_internal_procedures] = STATE(5772), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(433), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1928), + [aux_sym_preproc_if_token2] = ACTIONS(1920), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -135042,10 +134147,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -135054,7 +134159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1922), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -135106,100 +134211,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [435] = { - [sym_preproc_include] = STATE(437), - [sym_preproc_def] = STATE(437), - [sym_preproc_function_def] = STATE(437), - [sym_preproc_call] = STATE(437), - [sym_preproc_if_in_statements] = STATE(437), - [sym_preproc_ifdef_in_statements] = STATE(437), - [sym_preproc_else_in_statements] = STATE(7592), - [sym_preproc_elif_in_statements] = STATE(7592), - [sym_preproc_elifdef_in_statements] = STATE(7592), + [430] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7588), + [sym_preproc_elif_in_statements] = STATE(7588), + [sym_preproc_elifdef_in_statements] = STATE(7588), + [sym_internal_procedures] = STATE(5772), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(802), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(1920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1400), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [431] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7593), + [sym_preproc_elif_in_statements] = STATE(7593), + [sym_preproc_elifdef_in_statements] = STATE(7593), [sym_internal_procedures] = STATE(5773), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(437), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1928), + [aux_sym_preproc_if_token2] = ACTIONS(1924), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -135221,10 +134505,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -135233,7 +134517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -135285,100 +134569,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [436] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [432] = { + [sym_preproc_include] = STATE(434), + [sym_preproc_def] = STATE(434), + [sym_preproc_function_def] = STATE(434), + [sym_preproc_call] = STATE(434), + [sym_preproc_if_in_statements] = STATE(434), + [sym_preproc_ifdef_in_statements] = STATE(434), [sym_preproc_else_in_statements] = STATE(7593), [sym_preproc_elif_in_statements] = STATE(7593), [sym_preproc_elifdef_in_statements] = STATE(7593), - [sym_internal_procedures] = STATE(5774), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5773), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(434), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1924), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -135400,10 +134684,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -135412,7 +134696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1926), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -135464,100 +134748,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [437] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7599), - [sym_preproc_elif_in_statements] = STATE(7599), - [sym_preproc_elifdef_in_statements] = STATE(7599), - [sym_internal_procedures] = STATE(5775), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [433] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7594), + [sym_preproc_elif_in_statements] = STATE(7594), + [sym_preproc_elifdef_in_statements] = STATE(7594), + [sym_internal_procedures] = STATE(5774), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1934), + [aux_sym_preproc_if_token2] = ACTIONS(1928), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -135579,10 +134863,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -135591,7 +134875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -135643,100 +134927,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [438] = { - [sym_preproc_include] = STATE(441), - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_statements] = STATE(441), - [sym_preproc_ifdef_in_statements] = STATE(441), - [sym_preproc_else_in_statements] = STATE(7618), - [sym_preproc_elif_in_statements] = STATE(7618), - [sym_preproc_elifdef_in_statements] = STATE(7618), - [sym_internal_procedures] = STATE(5779), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [434] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7600), + [sym_preproc_elif_in_statements] = STATE(7600), + [sym_preproc_elifdef_in_statements] = STATE(7600), + [sym_internal_procedures] = STATE(5775), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(441), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1936), + [aux_sym_preproc_if_token2] = ACTIONS(1930), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -135758,10 +135042,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -135770,7 +135054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -135822,100 +135106,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [439] = { - [sym_preproc_include] = STATE(443), - [sym_preproc_def] = STATE(443), - [sym_preproc_function_def] = STATE(443), - [sym_preproc_call] = STATE(443), - [sym_preproc_if_in_statements] = STATE(443), - [sym_preproc_ifdef_in_statements] = STATE(443), + [435] = { + [sym_preproc_include] = STATE(438), + [sym_preproc_def] = STATE(438), + [sym_preproc_function_def] = STATE(438), + [sym_preproc_call] = STATE(438), + [sym_preproc_if_in_statements] = STATE(438), + [sym_preproc_ifdef_in_statements] = STATE(438), [sym_preproc_else_in_statements] = STATE(7619), [sym_preproc_elif_in_statements] = STATE(7619), [sym_preproc_elifdef_in_statements] = STATE(7619), - [sym_internal_procedures] = STATE(5792), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5777), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(443), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(438), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1932), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -135937,10 +135221,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -135949,7 +135233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1934), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -136001,100 +135285,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [440] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7619), - [sym_preproc_elif_in_statements] = STATE(7619), - [sym_preproc_elifdef_in_statements] = STATE(7619), - [sym_internal_procedures] = STATE(5792), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [436] = { + [sym_preproc_include] = STATE(440), + [sym_preproc_def] = STATE(440), + [sym_preproc_function_def] = STATE(440), + [sym_preproc_call] = STATE(440), + [sym_preproc_if_in_statements] = STATE(440), + [sym_preproc_ifdef_in_statements] = STATE(440), + [sym_preproc_else_in_statements] = STATE(7620), + [sym_preproc_elif_in_statements] = STATE(7620), + [sym_preproc_elifdef_in_statements] = STATE(7620), + [sym_internal_procedures] = STATE(5778), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(440), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1936), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -136116,10 +135400,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -136128,7 +135412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1938), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -136180,100 +135464,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [441] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7624), - [sym_preproc_elif_in_statements] = STATE(7624), - [sym_preproc_elifdef_in_statements] = STATE(7624), - [sym_internal_procedures] = STATE(5799), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [437] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7620), + [sym_preproc_elif_in_statements] = STATE(7620), + [sym_preproc_elifdef_in_statements] = STATE(7620), + [sym_internal_procedures] = STATE(5778), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1944), + [aux_sym_preproc_if_token2] = ACTIONS(1936), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -136295,10 +135579,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -136307,7 +135591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -136359,100 +135643,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [442] = { - [sym_preproc_include] = STATE(444), - [sym_preproc_def] = STATE(444), - [sym_preproc_function_def] = STATE(444), - [sym_preproc_call] = STATE(444), - [sym_preproc_if_in_statements] = STATE(444), - [sym_preproc_ifdef_in_statements] = STATE(444), - [sym_preproc_else_in_statements] = STATE(7624), - [sym_preproc_elif_in_statements] = STATE(7624), - [sym_preproc_elifdef_in_statements] = STATE(7624), - [sym_internal_procedures] = STATE(5799), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [438] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7625), + [sym_preproc_elif_in_statements] = STATE(7625), + [sym_preproc_elifdef_in_statements] = STATE(7625), + [sym_internal_procedures] = STATE(5779), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(444), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1944), + [aux_sym_preproc_if_token2] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -136474,10 +135758,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -136486,7 +135770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -136538,100 +135822,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [443] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [439] = { + [sym_preproc_include] = STATE(441), + [sym_preproc_def] = STATE(441), + [sym_preproc_function_def] = STATE(441), + [sym_preproc_call] = STATE(441), + [sym_preproc_if_in_statements] = STATE(441), + [sym_preproc_ifdef_in_statements] = STATE(441), [sym_preproc_else_in_statements] = STATE(7625), [sym_preproc_elif_in_statements] = STATE(7625), [sym_preproc_elifdef_in_statements] = STATE(7625), - [sym_internal_procedures] = STATE(5801), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5779), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(441), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -136653,10 +135937,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -136665,7 +135949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1942), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -136717,100 +136001,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [444] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7631), - [sym_preproc_elif_in_statements] = STATE(7631), - [sym_preproc_elifdef_in_statements] = STATE(7631), - [sym_internal_procedures] = STATE(5803), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [440] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7626), + [sym_preproc_elif_in_statements] = STATE(7626), + [sym_preproc_elifdef_in_statements] = STATE(7626), + [sym_internal_procedures] = STATE(5780), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1950), + [aux_sym_preproc_if_token2] = ACTIONS(1944), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -136832,10 +136116,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -136844,7 +136128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -136896,100 +136180,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [445] = { - [sym_preproc_include] = STATE(448), - [sym_preproc_def] = STATE(448), - [sym_preproc_function_def] = STATE(448), - [sym_preproc_call] = STATE(448), - [sym_preproc_if_in_statements] = STATE(448), - [sym_preproc_ifdef_in_statements] = STATE(448), - [sym_preproc_else_in_statements] = STATE(7650), - [sym_preproc_elif_in_statements] = STATE(7650), - [sym_preproc_elifdef_in_statements] = STATE(7650), - [sym_internal_procedures] = STATE(5812), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [441] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7632), + [sym_preproc_elif_in_statements] = STATE(7632), + [sym_preproc_elifdef_in_statements] = STATE(7632), + [sym_internal_procedures] = STATE(5781), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(448), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1952), + [aux_sym_preproc_if_token2] = ACTIONS(1946), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -137011,10 +136295,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -137023,7 +136307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -137075,100 +136359,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [446] = { - [sym_preproc_include] = STATE(450), - [sym_preproc_def] = STATE(450), - [sym_preproc_function_def] = STATE(450), - [sym_preproc_call] = STATE(450), - [sym_preproc_if_in_statements] = STATE(450), - [sym_preproc_ifdef_in_statements] = STATE(450), + [442] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_else_in_specification_part] = STATE(7980), + [sym_preproc_elif_in_specification_part] = STATE(7980), + [sym_preproc_elifdef_in_specification_part] = STATE(7980), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_internal_procedures] = STATE(5816), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(802), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(864), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(868), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1400), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [443] = { + [sym_preproc_include] = STATE(446), + [sym_preproc_def] = STATE(446), + [sym_preproc_function_def] = STATE(446), + [sym_preproc_call] = STATE(446), + [sym_preproc_if_in_statements] = STATE(446), + [sym_preproc_ifdef_in_statements] = STATE(446), [sym_preproc_else_in_statements] = STATE(7651), [sym_preproc_elif_in_statements] = STATE(7651), [sym_preproc_elifdef_in_statements] = STATE(7651), - [sym_internal_procedures] = STATE(5821), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5783), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(450), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(446), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1956), + [aux_sym_preproc_if_token2] = ACTIONS(1948), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -137190,10 +136653,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -137202,7 +136665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1950), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -137254,100 +136717,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [447] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7651), - [sym_preproc_elif_in_statements] = STATE(7651), - [sym_preproc_elifdef_in_statements] = STATE(7651), - [sym_internal_procedures] = STATE(5821), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [444] = { + [sym_preproc_include] = STATE(448), + [sym_preproc_def] = STATE(448), + [sym_preproc_function_def] = STATE(448), + [sym_preproc_call] = STATE(448), + [sym_preproc_if_in_statements] = STATE(448), + [sym_preproc_ifdef_in_statements] = STATE(448), + [sym_preproc_else_in_statements] = STATE(7652), + [sym_preproc_elif_in_statements] = STATE(7652), + [sym_preproc_elifdef_in_statements] = STATE(7652), + [sym_internal_procedures] = STATE(5784), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(448), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1956), + [aux_sym_preproc_if_token2] = ACTIONS(1952), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -137369,10 +136832,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -137381,7 +136844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1954), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -137433,100 +136896,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [448] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7656), - [sym_preproc_elif_in_statements] = STATE(7656), - [sym_preproc_elifdef_in_statements] = STATE(7656), - [sym_internal_procedures] = STATE(5828), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [445] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7652), + [sym_preproc_elif_in_statements] = STATE(7652), + [sym_preproc_elifdef_in_statements] = STATE(7652), + [sym_internal_procedures] = STATE(5784), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1960), + [aux_sym_preproc_if_token2] = ACTIONS(1952), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -137548,10 +137011,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -137560,7 +137023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -137612,100 +137075,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [449] = { - [sym_preproc_include] = STATE(451), - [sym_preproc_def] = STATE(451), - [sym_preproc_function_def] = STATE(451), - [sym_preproc_call] = STATE(451), - [sym_preproc_if_in_statements] = STATE(451), - [sym_preproc_ifdef_in_statements] = STATE(451), - [sym_preproc_else_in_statements] = STATE(7656), - [sym_preproc_elif_in_statements] = STATE(7656), - [sym_preproc_elifdef_in_statements] = STATE(7656), - [sym_internal_procedures] = STATE(5828), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [446] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7657), + [sym_preproc_elif_in_statements] = STATE(7657), + [sym_preproc_elifdef_in_statements] = STATE(7657), + [sym_internal_procedures] = STATE(5785), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(451), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1960), + [aux_sym_preproc_if_token2] = ACTIONS(1956), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -137727,10 +137190,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -137739,7 +137202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -137791,100 +137254,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [450] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [447] = { + [sym_preproc_include] = STATE(449), + [sym_preproc_def] = STATE(449), + [sym_preproc_function_def] = STATE(449), + [sym_preproc_call] = STATE(449), + [sym_preproc_if_in_statements] = STATE(449), + [sym_preproc_ifdef_in_statements] = STATE(449), [sym_preproc_else_in_statements] = STATE(7657), [sym_preproc_elif_in_statements] = STATE(7657), [sym_preproc_elifdef_in_statements] = STATE(7657), - [sym_internal_procedures] = STATE(5818), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5785), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(449), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1964), + [aux_sym_preproc_if_token2] = ACTIONS(1956), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -137906,10 +137369,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -137918,7 +137381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1958), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -137970,100 +137433,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [451] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7663), - [sym_preproc_elif_in_statements] = STATE(7663), - [sym_preproc_elifdef_in_statements] = STATE(7663), - [sym_internal_procedures] = STATE(5734), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [448] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7658), + [sym_preproc_elif_in_statements] = STATE(7658), + [sym_preproc_elifdef_in_statements] = STATE(7658), + [sym_internal_procedures] = STATE(5786), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1966), + [aux_sym_preproc_if_token2] = ACTIONS(1960), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -138085,10 +137548,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -138097,7 +137560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -138149,100 +137612,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [452] = { - [sym_preproc_include] = STATE(455), - [sym_preproc_def] = STATE(455), - [sym_preproc_function_def] = STATE(455), - [sym_preproc_call] = STATE(455), - [sym_preproc_if_in_statements] = STATE(455), - [sym_preproc_ifdef_in_statements] = STATE(455), - [sym_preproc_else_in_statements] = STATE(7679), - [sym_preproc_elif_in_statements] = STATE(7679), - [sym_preproc_elifdef_in_statements] = STATE(7679), - [sym_internal_procedures] = STATE(5622), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [449] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7664), + [sym_preproc_elif_in_statements] = STATE(7664), + [sym_preproc_elifdef_in_statements] = STATE(7664), + [sym_internal_procedures] = STATE(5787), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(455), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1962), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -138264,10 +137727,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -138276,7 +137739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -138328,100 +137791,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [453] = { - [sym_preproc_include] = STATE(457), - [sym_preproc_def] = STATE(457), - [sym_preproc_function_def] = STATE(457), - [sym_preproc_call] = STATE(457), - [sym_preproc_if_in_statements] = STATE(457), - [sym_preproc_ifdef_in_statements] = STATE(457), + [450] = { + [sym_preproc_include] = STATE(453), + [sym_preproc_def] = STATE(453), + [sym_preproc_function_def] = STATE(453), + [sym_preproc_call] = STATE(453), + [sym_preproc_if_in_statements] = STATE(453), + [sym_preproc_ifdef_in_statements] = STATE(453), [sym_preproc_else_in_statements] = STATE(7680), [sym_preproc_elif_in_statements] = STATE(7680), [sym_preproc_elifdef_in_statements] = STATE(7680), - [sym_internal_procedures] = STATE(5623), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5791), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(457), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(453), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1964), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -138443,10 +137906,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -138455,7 +137918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1966), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -138507,100 +137970,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [454] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7680), - [sym_preproc_elif_in_statements] = STATE(7680), - [sym_preproc_elifdef_in_statements] = STATE(7680), - [sym_internal_procedures] = STATE(5623), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [451] = { + [sym_preproc_include] = STATE(455), + [sym_preproc_def] = STATE(455), + [sym_preproc_function_def] = STATE(455), + [sym_preproc_call] = STATE(455), + [sym_preproc_if_in_statements] = STATE(455), + [sym_preproc_ifdef_in_statements] = STATE(455), + [sym_preproc_else_in_statements] = STATE(7681), + [sym_preproc_elif_in_statements] = STATE(7681), + [sym_preproc_elifdef_in_statements] = STATE(7681), + [sym_internal_procedures] = STATE(5792), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(455), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1968), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -138622,10 +138085,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -138634,7 +138097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1970), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -138686,100 +138149,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [455] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [452] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), [sym_preproc_else_in_statements] = STATE(7681), [sym_preproc_elif_in_statements] = STATE(7681), [sym_preproc_elifdef_in_statements] = STATE(7681), - [sym_internal_procedures] = STATE(5624), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5792), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1968), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -138801,10 +138264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -138813,7 +138276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -138865,100 +138328,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [456] = { - [sym_preproc_include] = STATE(458), - [sym_preproc_def] = STATE(458), - [sym_preproc_function_def] = STATE(458), - [sym_preproc_call] = STATE(458), - [sym_preproc_if_in_statements] = STATE(458), - [sym_preproc_ifdef_in_statements] = STATE(458), - [sym_preproc_else_in_statements] = STATE(7681), - [sym_preproc_elif_in_statements] = STATE(7681), - [sym_preproc_elifdef_in_statements] = STATE(7681), - [sym_internal_procedures] = STATE(5624), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [453] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7682), + [sym_preproc_elif_in_statements] = STATE(7682), + [sym_preproc_elifdef_in_statements] = STATE(7682), + [sym_internal_procedures] = STATE(5793), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(458), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1972), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -138980,10 +138443,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -138992,7 +138455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -139044,100 +138507,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [457] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [454] = { + [sym_preproc_include] = STATE(456), + [sym_preproc_def] = STATE(456), + [sym_preproc_function_def] = STATE(456), + [sym_preproc_call] = STATE(456), + [sym_preproc_if_in_statements] = STATE(456), + [sym_preproc_ifdef_in_statements] = STATE(456), [sym_preproc_else_in_statements] = STATE(7682), [sym_preproc_elif_in_statements] = STATE(7682), [sym_preproc_elifdef_in_statements] = STATE(7682), - [sym_internal_procedures] = STATE(5625), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5793), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(456), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1980), + [aux_sym_preproc_if_token2] = ACTIONS(1972), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -139159,10 +138622,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -139171,7 +138634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1974), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -139223,100 +138686,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [458] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [455] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), [sym_preproc_else_in_statements] = STATE(7683), [sym_preproc_elif_in_statements] = STATE(7683), [sym_preproc_elifdef_in_statements] = STATE(7683), - [sym_internal_procedures] = STATE(5626), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5794), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1982), + [aux_sym_preproc_if_token2] = ACTIONS(1976), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -139338,10 +138801,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -139350,7 +138813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -139402,100 +138865,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [459] = { - [sym_preproc_include] = STATE(462), - [sym_preproc_def] = STATE(462), - [sym_preproc_function_def] = STATE(462), - [sym_preproc_call] = STATE(462), - [sym_preproc_if_in_statements] = STATE(462), - [sym_preproc_ifdef_in_statements] = STATE(462), - [sym_preproc_else_in_statements] = STATE(7695), - [sym_preproc_elif_in_statements] = STATE(7695), - [sym_preproc_elifdef_in_statements] = STATE(7695), - [sym_internal_procedures] = STATE(5629), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [456] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7684), + [sym_preproc_elif_in_statements] = STATE(7684), + [sym_preproc_elifdef_in_statements] = STATE(7684), + [sym_internal_procedures] = STATE(5795), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(462), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1984), + [aux_sym_preproc_if_token2] = ACTIONS(1978), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -139517,10 +138980,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -139529,7 +138992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -139581,100 +139044,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [460] = { - [sym_preproc_include] = STATE(464), - [sym_preproc_def] = STATE(464), - [sym_preproc_function_def] = STATE(464), - [sym_preproc_call] = STATE(464), - [sym_preproc_if_in_statements] = STATE(464), - [sym_preproc_ifdef_in_statements] = STATE(464), + [457] = { + [sym_preproc_include] = STATE(460), + [sym_preproc_def] = STATE(460), + [sym_preproc_function_def] = STATE(460), + [sym_preproc_call] = STATE(460), + [sym_preproc_if_in_statements] = STATE(460), + [sym_preproc_ifdef_in_statements] = STATE(460), [sym_preproc_else_in_statements] = STATE(7696), [sym_preproc_elif_in_statements] = STATE(7696), [sym_preproc_elifdef_in_statements] = STATE(7696), - [sym_internal_procedures] = STATE(5630), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5797), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(464), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(460), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1988), + [aux_sym_preproc_if_token2] = ACTIONS(1980), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -139696,10 +139159,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -139708,7 +139171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1982), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -139760,100 +139223,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [461] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7696), - [sym_preproc_elif_in_statements] = STATE(7696), - [sym_preproc_elifdef_in_statements] = STATE(7696), - [sym_internal_procedures] = STATE(5630), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [458] = { + [sym_preproc_include] = STATE(462), + [sym_preproc_def] = STATE(462), + [sym_preproc_function_def] = STATE(462), + [sym_preproc_call] = STATE(462), + [sym_preproc_if_in_statements] = STATE(462), + [sym_preproc_ifdef_in_statements] = STATE(462), + [sym_preproc_else_in_statements] = STATE(7697), + [sym_preproc_elif_in_statements] = STATE(7697), + [sym_preproc_elifdef_in_statements] = STATE(7697), + [sym_internal_procedures] = STATE(5798), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(462), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1988), + [aux_sym_preproc_if_token2] = ACTIONS(1984), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -139875,10 +139338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -139887,7 +139350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1986), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -139939,100 +139402,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [462] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [459] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), [sym_preproc_else_in_statements] = STATE(7697), [sym_preproc_elif_in_statements] = STATE(7697), [sym_preproc_elifdef_in_statements] = STATE(7697), - [sym_internal_procedures] = STATE(5632), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5798), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1984), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -140054,10 +139517,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -140066,7 +139529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -140118,100 +139581,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [463] = { - [sym_preproc_include] = STATE(465), - [sym_preproc_def] = STATE(465), - [sym_preproc_function_def] = STATE(465), - [sym_preproc_call] = STATE(465), - [sym_preproc_if_in_statements] = STATE(465), - [sym_preproc_ifdef_in_statements] = STATE(465), - [sym_preproc_else_in_statements] = STATE(7697), - [sym_preproc_elif_in_statements] = STATE(7697), - [sym_preproc_elifdef_in_statements] = STATE(7697), - [sym_internal_procedures] = STATE(5632), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [460] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7698), + [sym_preproc_elif_in_statements] = STATE(7698), + [sym_preproc_elifdef_in_statements] = STATE(7698), + [sym_internal_procedures] = STATE(5799), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(465), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1988), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -140233,10 +139696,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -140245,7 +139708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -140297,100 +139760,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [464] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [461] = { + [sym_preproc_include] = STATE(463), + [sym_preproc_def] = STATE(463), + [sym_preproc_function_def] = STATE(463), + [sym_preproc_call] = STATE(463), + [sym_preproc_if_in_statements] = STATE(463), + [sym_preproc_ifdef_in_statements] = STATE(463), [sym_preproc_else_in_statements] = STATE(7698), [sym_preproc_elif_in_statements] = STATE(7698), [sym_preproc_elifdef_in_statements] = STATE(7698), - [sym_internal_procedures] = STATE(5633), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5799), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(463), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1996), + [aux_sym_preproc_if_token2] = ACTIONS(1988), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -140412,10 +139875,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -140424,7 +139887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1990), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -140476,100 +139939,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [465] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [462] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), [sym_preproc_else_in_statements] = STATE(7699), [sym_preproc_elif_in_statements] = STATE(7699), [sym_preproc_elifdef_in_statements] = STATE(7699), - [sym_internal_procedures] = STATE(5634), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5800), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(1998), + [aux_sym_preproc_if_token2] = ACTIONS(1992), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -140591,10 +140054,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -140603,7 +140066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -140655,100 +140118,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [466] = { - [sym_preproc_include] = STATE(469), - [sym_preproc_def] = STATE(469), - [sym_preproc_function_def] = STATE(469), - [sym_preproc_call] = STATE(469), - [sym_preproc_if_in_statements] = STATE(469), - [sym_preproc_ifdef_in_statements] = STATE(469), - [sym_preproc_else_in_statements] = STATE(7711), - [sym_preproc_elif_in_statements] = STATE(7711), - [sym_preproc_elifdef_in_statements] = STATE(7711), - [sym_internal_procedures] = STATE(5638), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [463] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7700), + [sym_preproc_elif_in_statements] = STATE(7700), + [sym_preproc_elifdef_in_statements] = STATE(7700), + [sym_internal_procedures] = STATE(5801), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(469), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(2000), + [aux_sym_preproc_if_token2] = ACTIONS(1994), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -140770,10 +140233,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -140782,7 +140245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -140834,100 +140297,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [467] = { - [sym_preproc_include] = STATE(302), - [sym_preproc_def] = STATE(302), - [sym_preproc_function_def] = STATE(302), - [sym_preproc_call] = STATE(302), - [sym_preproc_if_in_statements] = STATE(302), - [sym_preproc_ifdef_in_statements] = STATE(302), + [464] = { + [sym_preproc_include] = STATE(467), + [sym_preproc_def] = STATE(467), + [sym_preproc_function_def] = STATE(467), + [sym_preproc_call] = STATE(467), + [sym_preproc_if_in_statements] = STATE(467), + [sym_preproc_ifdef_in_statements] = STATE(467), [sym_preproc_else_in_statements] = STATE(7712), [sym_preproc_elif_in_statements] = STATE(7712), [sym_preproc_elifdef_in_statements] = STATE(7712), - [sym_internal_procedures] = STATE(5639), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5804), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(302), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(467), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(1996), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -140949,10 +140412,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -140961,7 +140424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(1998), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -141013,100 +140476,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [468] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym_preproc_else_in_statements] = STATE(7712), - [sym_preproc_elif_in_statements] = STATE(7712), - [sym_preproc_elifdef_in_statements] = STATE(7712), - [sym_internal_procedures] = STATE(5639), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [465] = { + [sym_preproc_include] = STATE(469), + [sym_preproc_def] = STATE(469), + [sym_preproc_function_def] = STATE(469), + [sym_preproc_call] = STATE(469), + [sym_preproc_if_in_statements] = STATE(469), + [sym_preproc_ifdef_in_statements] = STATE(469), + [sym_preproc_else_in_statements] = STATE(7713), + [sym_preproc_elif_in_statements] = STATE(7713), + [sym_preproc_elifdef_in_statements] = STATE(7713), + [sym_internal_procedures] = STATE(5805), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(469), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2000), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -141128,10 +140591,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -141140,7 +140603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(2002), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -141192,100 +140655,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [469] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [466] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), [sym_preproc_else_in_statements] = STATE(7713), [sym_preproc_elif_in_statements] = STATE(7713), [sym_preproc_elifdef_in_statements] = STATE(7713), - [sym_internal_procedures] = STATE(5641), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5805), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(2008), + [aux_sym_preproc_if_token2] = ACTIONS(2000), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -141307,10 +140770,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -141319,7 +140782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -141371,100 +140834,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [470] = { - [sym_preproc_include] = STATE(471), - [sym_preproc_def] = STATE(471), - [sym_preproc_function_def] = STATE(471), - [sym_preproc_call] = STATE(471), - [sym_preproc_if_in_statements] = STATE(471), - [sym_preproc_ifdef_in_statements] = STATE(471), - [sym_preproc_else_in_statements] = STATE(7713), - [sym_preproc_elif_in_statements] = STATE(7713), - [sym_preproc_elifdef_in_statements] = STATE(7713), - [sym_internal_procedures] = STATE(5641), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [467] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7714), + [sym_preproc_elif_in_statements] = STATE(7714), + [sym_preproc_elifdef_in_statements] = STATE(7714), + [sym_internal_procedures] = STATE(5806), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(471), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(2008), + [aux_sym_preproc_if_token2] = ACTIONS(2004), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -141486,10 +140949,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -141498,7 +140961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -141550,100 +141013,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [471] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), + [468] = { + [sym_preproc_include] = STATE(470), + [sym_preproc_def] = STATE(470), + [sym_preproc_function_def] = STATE(470), + [sym_preproc_call] = STATE(470), + [sym_preproc_if_in_statements] = STATE(470), + [sym_preproc_ifdef_in_statements] = STATE(470), + [sym_preproc_else_in_statements] = STATE(7714), + [sym_preproc_elif_in_statements] = STATE(7714), + [sym_preproc_elifdef_in_statements] = STATE(7714), + [sym_internal_procedures] = STATE(5806), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(802), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(470), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(2006), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [469] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), [sym_preproc_else_in_statements] = STATE(7715), [sym_preproc_elif_in_statements] = STATE(7715), [sym_preproc_elifdef_in_statements] = STATE(7715), - [sym_internal_procedures] = STATE(5643), - [sym_contains_statement] = STATE(6907), - [sym__statements] = STATE(6463), + [sym_internal_procedures] = STATE(5807), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1392), [aux_sym_preproc_if_token1] = ACTIONS(732), - [aux_sym_preproc_if_token2] = ACTIONS(2012), + [aux_sym_preproc_if_token2] = ACTIONS(2008), [aux_sym_preproc_ifdef_token1] = ACTIONS(736), [aux_sym_preproc_ifdef_token2] = ACTIONS(736), [aux_sym_preproc_else_token1] = ACTIONS(1546), [aux_sym_preproc_elif_token1] = ACTIONS(1548), [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -141665,10 +141307,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -141677,7 +141319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -141729,103 +141371,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [472] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4617), - [sym_internal_procedures] = STATE(6392), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [470] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym_preproc_else_in_statements] = STATE(7716), + [sym_preproc_elif_in_statements] = STATE(7716), + [sym_preproc_elifdef_in_statements] = STATE(7716), + [sym_internal_procedures] = STATE(5808), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(802), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(2010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1200), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1202), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -141840,10 +141486,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -141852,7 +141498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(1400), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -141904,103 +141550,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [473] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(842), - [sym_internal_procedures] = STATE(6935), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [471] = { + [sym_preproc_include] = STATE(395), + [sym_preproc_def] = STATE(395), + [sym_preproc_function_def] = STATE(395), + [sym_preproc_call] = STATE(395), + [sym_preproc_if_in_statements] = STATE(395), + [sym_preproc_ifdef_in_statements] = STATE(395), + [sym_preproc_else_in_statements] = STATE(8187), + [sym_preproc_elif_in_statements] = STATE(8187), + [sym_preproc_elifdef_in_statements] = STATE(8187), + [sym_internal_procedures] = STATE(5734), + [sym_contains_statement] = STATE(6869), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(802), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(395), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(732), + [aux_sym_preproc_if_token2] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(736), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1394), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1072), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1074), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -142015,10 +141665,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -142027,7 +141677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2012), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -142079,264 +141729,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [474] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(1024), - [sym_internal_procedures] = STATE(7023), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1116), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1118), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [475] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(975), - [sym_internal_procedures] = STATE(6360), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [472] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4619), + [sym_internal_procedures] = STATE(6286), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -142347,11 +141822,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1116), + [aux_sym_end_program_statement_token1] = ACTIONS(1202), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1118), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1204), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -142365,10 +141840,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -142429,89 +141904,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [476] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4844), - [sym_internal_procedures] = STATE(6878), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), + [473] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4919), + [sym_internal_procedures] = STATE(6969), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), [aux_sym_preproc_include_token1] = ACTIONS(2026), [aux_sym_preproc_def_token1] = ACTIONS(2028), [aux_sym_preproc_if_token1] = ACTIONS(2030), @@ -142522,10 +141997,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1054), + [aux_sym_end_program_statement_token1] = ACTIONS(1172), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1056), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1174), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -142540,10 +142015,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -142604,104 +142079,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [477] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(1028), - [sym_internal_procedures] = STATE(7030), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [474] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4922), + [sym_internal_procedures] = STATE(6975), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1128), + [aux_sym_end_program_statement_token1] = ACTIONS(1178), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1130), + [aux_sym_end_function_statement_token1] = ACTIONS(1180), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -142715,10 +142190,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -142727,7 +142202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -142779,104 +142254,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [478] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4888), - [sym_internal_procedures] = STATE(6648), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [475] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(856), + [sym_internal_procedures] = STATE(6952), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1044), + [aux_sym_end_program_statement_token1] = ACTIONS(1084), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1046), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1086), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -142890,10 +142365,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -142902,7 +142377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -142954,103 +142429,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [479] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4911), - [sym_internal_procedures] = STATE(6438), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [476] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4866), + [sym_internal_procedures] = STATE(6705), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2046), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1044), + [aux_sym_end_program_statement_token1] = ACTIONS(1030), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1046), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1032), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -143065,10 +142540,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -143077,7 +142552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2048), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -143129,103 +142604,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [480] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(5015), - [sym_internal_procedures] = STATE(6288), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [477] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(901), + [sym_internal_procedures] = STATE(6279), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1060), + [aux_sym_end_program_statement_token1] = ACTIONS(1078), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1062), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1080), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -143240,10 +142715,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -143252,7 +142727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -143304,89 +142779,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [481] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(5017), - [sym_internal_procedures] = STATE(6303), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), + [478] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4840), + [sym_internal_procedures] = STATE(6260), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), [aux_sym_preproc_include_token1] = ACTIONS(2038), [aux_sym_preproc_def_token1] = ACTIONS(2040), [aux_sym_preproc_if_token1] = ACTIONS(2042), @@ -143397,11 +142872,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1066), + [aux_sym_end_program_statement_token1] = ACTIONS(1188), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1190), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1068), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -143415,10 +142890,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -143479,103 +142954,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [482] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4975), - [sym_internal_procedures] = STATE(6316), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [479] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4389), + [sym_internal_procedures] = STATE(7057), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1060), + [aux_sym_end_program_statement_token1] = ACTIONS(1014), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1062), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1016), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -143590,10 +143065,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -143602,7 +143077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -143654,89 +143129,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [483] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4982), - [sym_internal_procedures] = STATE(6342), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), + [480] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4865), + [sym_internal_procedures] = STATE(6267), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), [aux_sym_preproc_include_token1] = ACTIONS(2038), [aux_sym_preproc_def_token1] = ACTIONS(2040), [aux_sym_preproc_if_token1] = ACTIONS(2042), @@ -143747,11 +143222,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1066), + [aux_sym_end_program_statement_token1] = ACTIONS(1188), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1190), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1068), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -143765,10 +143240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -143829,89 +143304,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [484] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(5035), - [sym_internal_procedures] = STATE(6732), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), + [481] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4617), + [sym_internal_procedures] = STATE(6282), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), [aux_sym_preproc_include_token1] = ACTIONS(2026), [aux_sym_preproc_def_token1] = ACTIONS(2028), [aux_sym_preproc_if_token1] = ACTIONS(2030), @@ -143922,10 +143397,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1096), + [aux_sym_end_program_statement_token1] = ACTIONS(1196), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1098), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1198), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -143940,10 +143415,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -144004,89 +143479,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [485] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(5061), - [sym_internal_procedures] = STATE(6766), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), + [482] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4624), + [sym_internal_procedures] = STATE(6288), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), [aux_sym_preproc_include_token1] = ACTIONS(2026), [aux_sym_preproc_def_token1] = ACTIONS(2028), [aux_sym_preproc_if_token1] = ACTIONS(2030), @@ -144097,10 +143572,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1096), + [aux_sym_end_program_statement_token1] = ACTIONS(1196), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1098), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1198), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -144115,10 +143590,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -144179,89 +143654,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [486] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(1082), - [sym_internal_procedures] = STATE(6816), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [483] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4627), + [sym_internal_procedures] = STATE(6290), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -144272,11 +143747,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1104), + [aux_sym_end_program_statement_token1] = ACTIONS(1202), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1106), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1204), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -144290,10 +143765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -144354,264 +143829,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [487] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(1084), - [sym_internal_procedures] = STATE(6824), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1110), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1112), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [488] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(1089), - [sym_internal_procedures] = STATE(6830), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [484] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(890), + [sym_internal_procedures] = STATE(6284), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -144622,11 +143922,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1104), + [aux_sym_end_program_statement_token1] = ACTIONS(1084), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1106), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1086), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -144640,10 +143940,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -144704,89 +144004,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [489] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(1092), - [sym_internal_procedures] = STATE(6834), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), + [485] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4651), + [sym_internal_procedures] = STATE(6335), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), [aux_sym_preproc_include_token1] = ACTIONS(2038), [aux_sym_preproc_def_token1] = ACTIONS(2040), [aux_sym_preproc_if_token1] = ACTIONS(2042), @@ -144797,11 +144097,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1110), + [aux_sym_end_program_statement_token1] = ACTIONS(1212), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1214), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1112), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -144815,10 +144115,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -144879,103 +144179,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [490] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4458), - [sym_internal_procedures] = STATE(7038), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [486] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4664), + [sym_internal_procedures] = STATE(6340), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2046), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1138), + [aux_sym_end_program_statement_token1] = ACTIONS(1212), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1140), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1214), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -144990,10 +144290,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -145002,7 +144302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2048), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -145054,89 +144354,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [491] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4507), - [sym_internal_procedures] = STATE(7056), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), + [487] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4517), + [sym_internal_procedures] = STATE(6354), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), [aux_sym_preproc_include_token1] = ACTIONS(2026), [aux_sym_preproc_def_token1] = ACTIONS(2028), [aux_sym_preproc_if_token1] = ACTIONS(2030), @@ -145147,10 +144447,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1138), + [aux_sym_end_program_statement_token1] = ACTIONS(1220), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1140), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1222), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -145165,10 +144465,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -145229,264 +144529,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [492] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(981), - [sym_internal_procedures] = STATE(6591), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1128), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1130), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [493] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4969), - [sym_internal_procedures] = STATE(6259), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [488] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4446), + [sym_internal_procedures] = STATE(6358), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -145497,11 +144622,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1150), + [aux_sym_end_program_statement_token1] = ACTIONS(1226), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1152), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1228), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -145515,10 +144640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -145579,104 +144704,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [494] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4971), - [sym_internal_procedures] = STATE(6264), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [489] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4475), + [sym_internal_procedures] = STATE(6361), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1156), + [aux_sym_end_program_statement_token1] = ACTIONS(1220), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1222), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1158), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -145690,10 +144815,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -145702,7 +144827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -145754,89 +144879,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [495] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(5054), - [sym_internal_procedures] = STATE(6267), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [490] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4482), + [sym_internal_procedures] = STATE(6363), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -145847,11 +144972,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1150), + [aux_sym_end_program_statement_token1] = ACTIONS(1226), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1152), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1228), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -145865,10 +144990,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -145929,89 +145054,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [496] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(5062), - [sym_internal_procedures] = STATE(6269), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), + [491] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(5003), + [sym_internal_procedures] = STATE(6408), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), [aux_sym_preproc_include_token1] = ACTIONS(2038), [aux_sym_preproc_def_token1] = ACTIONS(2040), [aux_sym_preproc_if_token1] = ACTIONS(2042), @@ -146022,11 +145147,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1156), + [aux_sym_end_program_statement_token1] = ACTIONS(1236), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1238), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1158), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -146040,10 +145165,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -146104,103 +145229,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [497] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4881), - [sym_internal_procedures] = STATE(6310), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [492] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4945), + [sym_internal_procedures] = STATE(6671), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2046), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1168), + [aux_sym_end_program_statement_token1] = ACTIONS(1040), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1170), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1042), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -146215,10 +145340,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -146227,7 +145352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2048), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -146279,104 +145404,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [498] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4827), - [sym_internal_procedures] = STATE(6315), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [493] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(1036), + [sym_internal_procedures] = STATE(6477), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1168), + [aux_sym_end_program_statement_token1] = ACTIONS(1106), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1170), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1108), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -146390,10 +145515,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -146402,7 +145527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -146454,103 +145579,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [499] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4839), - [sym_internal_procedures] = STATE(6326), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [494] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(1001), + [sym_internal_procedures] = STATE(6484), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1176), + [aux_sym_end_program_statement_token1] = ACTIONS(1090), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1178), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1092), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -146565,10 +145690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -146577,7 +145702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -146629,89 +145754,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [500] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4841), - [sym_internal_procedures] = STATE(6329), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), + [495] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(5013), + [sym_internal_procedures] = STATE(6413), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), [aux_sym_preproc_include_token1] = ACTIONS(2038), [aux_sym_preproc_def_token1] = ACTIONS(2040), [aux_sym_preproc_if_token1] = ACTIONS(2042), @@ -146722,11 +145847,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1182), + [aux_sym_end_program_statement_token1] = ACTIONS(1236), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1238), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1184), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -146740,10 +145865,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -146804,103 +145929,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [501] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4775), - [sym_internal_procedures] = STATE(6331), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [496] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4936), + [sym_internal_procedures] = STATE(6424), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1176), + [aux_sym_end_program_statement_token1] = ACTIONS(1004), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1178), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1006), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -146915,10 +146040,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -146927,7 +146052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -146979,104 +146104,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [502] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4847), - [sym_internal_procedures] = STATE(6333), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [497] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4938), + [sym_internal_procedures] = STATE(6427), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1182), + [aux_sym_end_program_statement_token1] = ACTIONS(1246), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1184), + [aux_sym_end_function_statement_token1] = ACTIONS(1248), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -147090,10 +146215,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -147102,7 +146227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -147154,89 +146279,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [503] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4837), - [sym_internal_procedures] = STATE(6974), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), + [498] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4845), + [sym_internal_procedures] = STATE(6430), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), [aux_sym_preproc_include_token1] = ACTIONS(2026), [aux_sym_preproc_def_token1] = ACTIONS(2028), [aux_sym_preproc_if_token1] = ACTIONS(2030), @@ -147247,10 +146372,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1054), + [aux_sym_end_program_statement_token1] = ACTIONS(1004), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1056), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1006), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -147265,10 +146390,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -147329,104 +146454,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [504] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4787), - [sym_internal_procedures] = STATE(6372), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [499] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4855), + [sym_internal_procedures] = STATE(6432), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1192), + [aux_sym_end_program_statement_token1] = ACTIONS(1246), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1194), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1248), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -147440,10 +146565,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -147452,7 +146577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -147504,103 +146629,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [505] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4796), - [sym_internal_procedures] = STATE(6378), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [500] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4897), + [sym_internal_procedures] = STATE(6542), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2046), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1192), + [aux_sym_end_program_statement_token1] = ACTIONS(1100), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1194), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1102), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -147615,10 +146740,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -147627,7 +146752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2048), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -147679,103 +146804,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [506] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4610), - [sym_internal_procedures] = STATE(6387), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [501] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4819), + [sym_internal_procedures] = STATE(6483), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1200), + [aux_sym_end_program_statement_token1] = ACTIONS(1256), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1202), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1258), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -147790,10 +146915,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -147802,7 +146927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -147854,104 +146979,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [507] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4612), - [sym_internal_procedures] = STATE(6390), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [502] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4823), + [sym_internal_procedures] = STATE(6486), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1206), + [aux_sym_end_program_statement_token1] = ACTIONS(1262), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1208), + [aux_sym_end_function_statement_token1] = ACTIONS(1264), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -147965,10 +147090,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -147977,7 +147102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -148029,104 +147154,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [508] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(851), - [sym_internal_procedures] = STATE(6945), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [503] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4851), + [sym_internal_procedures] = STATE(6489), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1078), + [aux_sym_end_program_statement_token1] = ACTIONS(1256), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1258), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1080), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -148140,10 +147265,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -148152,7 +147277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -148204,104 +147329,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [509] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4620), - [sym_internal_procedures] = STATE(6394), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [504] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4884), + [sym_internal_procedures] = STATE(6491), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1206), + [aux_sym_end_program_statement_token1] = ACTIONS(1262), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1208), + [aux_sym_end_function_statement_token1] = ACTIONS(1264), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -148315,10 +147440,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -148327,7 +147452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -148379,104 +147504,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [510] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4656), - [sym_internal_procedures] = STATE(6437), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [505] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4906), + [sym_internal_procedures] = STATE(6963), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1216), + [aux_sym_end_program_statement_token1] = ACTIONS(1178), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1218), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1180), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -148490,10 +147615,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -148502,7 +147627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -148554,103 +147679,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [511] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4405), - [sym_internal_procedures] = STATE(6451), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [506] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4737), + [sym_internal_procedures] = STATE(6538), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1224), + [aux_sym_end_program_statement_token1] = ACTIONS(1270), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1226), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1272), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -148665,10 +147790,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -148677,182 +147802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [512] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4407), - [sym_internal_procedures] = STATE(6454), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1232), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -148904,89 +147854,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [513] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4414), - [sym_internal_procedures] = STATE(6457), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [507] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4711), + [sym_internal_procedures] = STATE(6543), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -148997,11 +147947,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1224), + [aux_sym_end_program_statement_token1] = ACTIONS(1276), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1226), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1278), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -149015,10 +147965,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -149079,104 +148029,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [514] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4419), - [sym_internal_procedures] = STATE(6459), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [508] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4712), + [sym_internal_procedures] = STATE(6546), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1230), + [aux_sym_end_program_statement_token1] = ACTIONS(1270), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1272), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1232), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -149190,10 +148140,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -149202,7 +148152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -149254,104 +148204,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [515] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4916), - [sym_internal_procedures] = STATE(6496), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [509] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4710), + [sym_internal_procedures] = STATE(6548), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1240), + [aux_sym_end_program_statement_token1] = ACTIONS(1276), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1242), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1278), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -149365,10 +148315,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -149377,7 +148327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -149429,103 +148379,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [516] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4934), - [sym_internal_procedures] = STATE(6501), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [510] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4933), + [sym_internal_procedures] = STATE(6581), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2046), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1240), + [aux_sym_end_program_statement_token1] = ACTIONS(1100), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1242), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1102), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -149540,10 +148490,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -149552,7 +148502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2048), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -149604,103 +148554,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [517] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4987), - [sym_internal_procedures] = STATE(6512), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [511] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4871), + [sym_internal_procedures] = STATE(6592), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1004), + [aux_sym_end_program_statement_token1] = ACTIONS(1286), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1006), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1288), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -149715,10 +148665,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -149727,7 +148677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -149779,104 +148729,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [518] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4989), - [sym_internal_procedures] = STATE(6515), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [512] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4875), + [sym_internal_procedures] = STATE(6597), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1250), + [aux_sym_end_program_statement_token1] = ACTIONS(1292), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1252), + [aux_sym_end_function_statement_token1] = ACTIONS(1294), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -149890,10 +148840,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -149902,7 +148852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -149954,103 +148904,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [519] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4993), - [sym_internal_procedures] = STATE(6517), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [513] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4910), + [sym_internal_procedures] = STATE(6599), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1004), + [aux_sym_end_program_statement_token1] = ACTIONS(1286), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1006), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1288), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -150065,10 +149015,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -150077,7 +149027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -150129,104 +149079,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [520] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4998), - [sym_internal_procedures] = STATE(6519), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [514] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4916), + [sym_internal_procedures] = STATE(6601), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1250), + [aux_sym_end_program_statement_token1] = ACTIONS(1292), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1252), + [aux_sym_end_function_statement_token1] = ACTIONS(1294), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -150240,10 +149190,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -150252,7 +149202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -150304,103 +149254,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [521] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(5012), - [sym_internal_procedures] = STATE(6567), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [515] = { + [sym_preproc_include] = STATE(515), + [sym_preproc_def] = STATE(515), + [sym_preproc_function_def] = STATE(515), + [sym_preproc_call] = STATE(515), + [sym_preproc_if_in_statements] = STATE(515), + [sym_preproc_ifdef_in_statements] = STATE(515), + [sym__statements] = STATE(6276), + [sym_statement_label] = STATE(795), + [sym_stop_statement] = STATE(6276), + [sym_assignment_statement] = STATE(6276), + [sym_pointer_association_statement] = STATE(6276), + [sym_subroutine_call] = STATE(6276), + [sym_keyword_statement] = STATE(6276), + [sym_include_statement] = STATE(6276), + [sym_do_loop_statement] = STATE(6276), + [sym_do_label_statement] = STATE(6276), + [sym_end_do_label_statement] = STATE(6276), + [sym_if_statement] = STATE(6276), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6276), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6276), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6276), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6276), + [sym_select_type_statement] = STATE(6276), + [sym_select_rank_statement] = STATE(6276), + [sym_block_construct] = STATE(6276), + [sym_associate_statement] = STATE(6276), + [sym_format_statement] = STATE(6276), + [sym_read_statement] = STATE(6276), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6276), + [sym_open_statement] = STATE(6276), + [sym_close_statement] = STATE(6276), + [sym_write_statement] = STATE(6276), + [sym_inquire_statement] = STATE(6276), + [sym_file_position_statement] = STATE(6276), + [sym_allocate_statement] = STATE(6276), + [sym_entry_statement] = STATE(6276), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6276), + [sym_coarray_team_statement] = STATE(6276), + [sym_coarray_critical_statement] = STATE(6276), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(515), + [aux_sym_preproc_include_token1] = ACTIONS(2050), + [aux_sym_preproc_def_token1] = ACTIONS(2053), + [aux_sym_preproc_if_token1] = ACTIONS(2056), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2059), + [aux_sym_preproc_elif_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_end_program_statement_token2] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_contains_statement_token1] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2091), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), + }, + [516] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(1098), + [sym_internal_procedures] = STATE(6634), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1260), + [aux_sym_end_program_statement_token1] = ACTIONS(1116), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1262), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1118), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -150415,10 +149540,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -150427,7 +149552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -150479,104 +149604,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [522] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(5014), - [sym_internal_procedures] = STATE(6570), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [517] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(952), + [sym_internal_procedures] = STATE(6645), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1266), + [aux_sym_end_program_statement_token1] = ACTIONS(1122), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1268), + [aux_sym_end_function_statement_token1] = ACTIONS(1124), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -150590,10 +149715,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -150602,7 +149727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -150654,103 +149779,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [523] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(5022), - [sym_internal_procedures] = STATE(6249), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [518] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(957), + [sym_internal_procedures] = STATE(6653), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1260), + [aux_sym_end_program_statement_token1] = ACTIONS(1116), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1262), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1118), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -150765,10 +149890,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -150777,7 +149902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -150829,104 +149954,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [524] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(5025), - [sym_internal_procedures] = STATE(6575), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [519] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(960), + [sym_internal_procedures] = STATE(6655), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1266), + [aux_sym_end_program_statement_token1] = ACTIONS(1122), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1268), + [aux_sym_end_function_statement_token1] = ACTIONS(1124), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -150940,10 +150065,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -150952,7 +150077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -151004,278 +150129,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [525] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_if_in_statements] = STATE(525), - [sym_preproc_ifdef_in_statements] = STATE(525), - [sym__statements] = STATE(6897), + [520] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4511), + [sym_internal_procedures] = STATE(6573), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), [sym_statement_label] = STATE(794), - [sym_stop_statement] = STATE(6897), - [sym_assignment_statement] = STATE(6897), - [sym_pointer_association_statement] = STATE(6897), - [sym_subroutine_call] = STATE(6897), - [sym_keyword_statement] = STATE(6897), - [sym_include_statement] = STATE(6897), - [sym_do_loop_statement] = STATE(6897), - [sym_do_label_statement] = STATE(6897), - [sym_end_do_label_statement] = STATE(6897), - [sym_if_statement] = STATE(6897), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6897), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6897), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6897), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6897), - [sym_select_type_statement] = STATE(6897), - [sym_select_rank_statement] = STATE(6897), - [sym_block_construct] = STATE(6897), - [sym_associate_statement] = STATE(6897), - [sym_format_statement] = STATE(6897), - [sym_read_statement] = STATE(6897), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6897), - [sym_open_statement] = STATE(6897), - [sym_close_statement] = STATE(6897), - [sym_write_statement] = STATE(6897), - [sym_inquire_statement] = STATE(6897), - [sym_file_position_statement] = STATE(6897), - [sym_allocate_statement] = STATE(6897), - [sym_entry_statement] = STATE(6897), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6897), - [sym_coarray_team_statement] = STATE(6897), - [sym_coarray_critical_statement] = STATE(6897), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(525), - [aux_sym_preproc_include_token1] = ACTIONS(2050), - [aux_sym_preproc_def_token1] = ACTIONS(2053), - [aux_sym_preproc_if_token1] = ACTIONS(2056), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), - [aux_sym_preproc_else_token1] = ACTIONS(2059), - [aux_sym_preproc_elif_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2064), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_end_program_statement_token2] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_contains_statement_token1] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2091), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [526] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4492), - [sym_internal_procedures] = STATE(6641), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1084), + [aux_sym_end_program_statement_token1] = ACTIONS(1014), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1086), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1016), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -151290,10 +150240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -151302,7 +150252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -151354,89 +150304,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [527] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4766), - [sym_internal_procedures] = STATE(6617), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [521] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4514), + [sym_internal_procedures] = STATE(7074), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -151447,11 +150397,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1276), + [aux_sym_end_program_statement_token1] = ACTIONS(1056), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1278), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1058), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -151465,10 +150415,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -151529,89 +150479,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [528] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4686), - [sym_internal_procedures] = STATE(6621), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), + [522] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4887), + [sym_internal_procedures] = STATE(6719), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), [aux_sym_preproc_include_token1] = ACTIONS(2038), [aux_sym_preproc_def_token1] = ACTIONS(2040), [aux_sym_preproc_if_token1] = ACTIONS(2042), @@ -151622,11 +150572,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1282), + [aux_sym_end_program_statement_token1] = ACTIONS(1040), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1042), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1284), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -151640,10 +150590,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -151704,103 +150654,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [529] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4705), - [sym_internal_procedures] = STATE(6623), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [523] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4914), + [sym_internal_procedures] = STATE(6729), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2046), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1276), + [aux_sym_end_program_statement_token1] = ACTIONS(1030), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1278), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1032), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -151815,10 +150765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -151827,7 +150777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2048), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -151879,89 +150829,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [530] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4711), - [sym_internal_procedures] = STATE(6625), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), + [524] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4394), + [sym_internal_procedures] = STATE(6751), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), [aux_sym_preproc_include_token1] = ACTIONS(2038), [aux_sym_preproc_def_token1] = ACTIONS(2040), [aux_sym_preproc_if_token1] = ACTIONS(2042), @@ -151972,11 +150922,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1282), + [aux_sym_end_program_statement_token1] = ACTIONS(1136), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1138), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1284), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -151990,10 +150940,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -152054,89 +151004,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [531] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4496), - [sym_internal_procedures] = STATE(6681), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), + [525] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4407), + [sym_internal_procedures] = STATE(6766), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), [aux_sym_preproc_include_token1] = ACTIONS(2038), [aux_sym_preproc_def_token1] = ACTIONS(2040), [aux_sym_preproc_if_token1] = ACTIONS(2042), @@ -152147,11 +151097,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1090), + [aux_sym_end_program_statement_token1] = ACTIONS(1136), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1138), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1092), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -152165,10 +151115,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -152229,103 +151179,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [532] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4517), - [sym_internal_procedures] = STATE(6962), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2022), + [526] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(5047), + [sym_internal_procedures] = STATE(7059), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1084), + [aux_sym_end_program_statement_token1] = ACTIONS(1066), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1086), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1068), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -152340,10 +151290,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -152352,7 +151302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -152404,104 +151354,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [533] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4521), - [sym_internal_procedures] = STATE(6978), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [527] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4813), + [sym_internal_procedures] = STATE(6789), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1090), + [aux_sym_end_program_statement_token1] = ACTIONS(1148), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1150), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1092), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -152515,10 +151465,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -152527,7 +151477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -152579,89 +151529,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [534] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4906), - [sym_internal_procedures] = STATE(6667), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [528] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4815), + [sym_internal_procedures] = STATE(6797), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -152672,11 +151622,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1292), + [aux_sym_end_program_statement_token1] = ACTIONS(1154), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1294), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1156), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -152690,10 +151640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -152754,104 +151704,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [535] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(4960), - [sym_internal_procedures] = STATE(6669), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [529] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4825), + [sym_internal_procedures] = STATE(6803), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1024), + [aux_sym_end_program_statement_token1] = ACTIONS(1148), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1150), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1026), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -152865,10 +151815,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -152877,7 +151827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -152929,89 +151879,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [536] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(4966), - [sym_internal_procedures] = STATE(6671), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [530] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4396), + [sym_internal_procedures] = STATE(6315), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -153022,11 +151972,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1292), + [aux_sym_end_program_statement_token1] = ACTIONS(1056), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1294), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1058), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -153040,10 +151990,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -153104,104 +152054,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [537] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(5009), - [sym_internal_procedures] = STATE(6673), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [531] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4828), + [sym_internal_procedures] = STATE(6807), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1024), + [aux_sym_end_program_statement_token1] = ACTIONS(1154), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1026), + [aux_sym_end_function_statement_token1] = ACTIONS(1156), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -153215,10 +152165,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -153227,7 +152177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -153279,89 +152229,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [538] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym_end_subroutine_statement] = STATE(884), - [sym_internal_procedures] = STATE(6807), - [sym_contains_statement] = STATE(6272), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), + [532] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(5050), + [sym_internal_procedures] = STATE(6256), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), [aux_sym_preproc_include_token1] = ACTIONS(2014), [aux_sym_preproc_def_token1] = ACTIONS(2016), [aux_sym_preproc_if_token1] = ACTIONS(2018), @@ -153375,8 +152325,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_end_program_statement_token1] = ACTIONS(1072), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(1074), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1074), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -153390,10 +152340,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -153454,104 +152404,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [539] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym_end_function_statement] = STATE(886), - [sym_internal_procedures] = STATE(6871), - [sym_contains_statement] = STATE(6336), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2038), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), - [sym_preproc_directive] = ACTIONS(2046), + [533] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4944), + [sym_internal_procedures] = STATE(6264), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1078), + [aux_sym_end_program_statement_token1] = ACTIONS(1066), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1068), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_end_function_statement_token1] = ACTIONS(1080), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -153565,10 +152515,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -153577,7 +152527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -153629,104 +152579,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [540] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym_end_module_procedure_statement] = STATE(4667), - [sym_internal_procedures] = STATE(6440), - [sym_contains_statement] = STATE(6461), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(2026), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), - [sym_preproc_directive] = ACTIONS(2034), + [534] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(4970), + [sym_internal_procedures] = STATE(6268), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1216), + [aux_sym_end_program_statement_token1] = ACTIONS(1072), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1218), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1074), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), @@ -153740,10 +152690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -153752,7 +152702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -153804,274 +152754,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [541] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2223), - [aux_sym_preproc_def_token1] = ACTIONS(2226), - [aux_sym_preproc_if_token1] = ACTIONS(2229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2232), - [sym_preproc_directive] = ACTIONS(2235), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token3] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym_derived_type_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2238), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_end_select_statement_token1] = ACTIONS(2059), - [aux_sym_type_statement_token2] = ACTIONS(2059), - [aux_sym_type_statement_token3] = ACTIONS(2059), - [aux_sym__class_default_token1] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [542] = { - [sym_preproc_include] = STATE(551), - [sym_preproc_def] = STATE(551), - [sym_preproc_function_def] = STATE(551), - [sym_preproc_call] = STATE(551), - [sym_preproc_if_in_statements] = STATE(551), - [sym_preproc_ifdef_in_statements] = STATE(551), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(551), - [aux_sym_preproc_include_token1] = ACTIONS(2241), - [aux_sym_preproc_def_token1] = ACTIONS(2244), - [aux_sym_preproc_if_token1] = ACTIONS(2247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2250), - [sym_preproc_directive] = ACTIONS(2253), + [535] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(849), + [sym_internal_procedures] = STATE(6918), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2256), + [aux_sym_end_program_statement_token1] = ACTIONS(1078), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1080), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2259), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -154083,11 +152865,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2259), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -154096,7 +152877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -154118,10 +152899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2259), - [aux_sym_type_statement_token2] = ACTIONS(2259), - [aux_sym_type_statement_token3] = ACTIONS(2259), - [aux_sym__class_default_token1] = ACTIONS(2259), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -154152,100 +152929,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2263), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [543] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2241), - [aux_sym_preproc_def_token1] = ACTIONS(2244), - [aux_sym_preproc_if_token1] = ACTIONS(2247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2250), - [sym_preproc_directive] = ACTIONS(2253), + [536] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(1028), + [sym_internal_procedures] = STATE(6707), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2256), + [aux_sym_end_program_statement_token1] = ACTIONS(1090), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1092), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2259), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -154257,11 +153040,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2259), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -154270,7 +153052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -154292,10 +153074,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2259), - [aux_sym_type_statement_token2] = ACTIONS(2259), - [aux_sym_type_statement_token3] = ACTIONS(2259), - [aux_sym__class_default_token1] = ACTIONS(2259), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -154326,100 +153104,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2263), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [544] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2268), - [aux_sym_preproc_def_token1] = ACTIONS(2271), - [aux_sym_preproc_if_token1] = ACTIONS(2274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), - [sym_preproc_directive] = ACTIONS(2280), + [537] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(5025), + [sym_internal_procedures] = STATE(6897), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2046), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2283), + [aux_sym_end_program_statement_token1] = ACTIONS(1164), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1166), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2286), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -154431,11 +153215,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2286), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -154444,7 +153227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2048), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -154466,10 +153249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2286), - [aux_sym_type_statement_token2] = ACTIONS(2286), - [aux_sym_type_statement_token3] = ACTIONS(2286), - [aux_sym__class_default_token1] = ACTIONS(2286), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -154500,100 +153279,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2288), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [545] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2291), - [aux_sym_preproc_def_token1] = ACTIONS(2294), - [aux_sym_preproc_if_token1] = ACTIONS(2297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2300), - [sym_preproc_directive] = ACTIONS(2303), + [538] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym_end_module_procedure_statement] = STATE(4784), + [sym_internal_procedures] = STATE(6909), + [sym_contains_statement] = STATE(6366), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token1] = ACTIONS(2042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [sym_preproc_directive] = ACTIONS(2046), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2306), + [aux_sym_end_program_statement_token1] = ACTIONS(1164), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(1166), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2309), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -154605,11 +153390,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2309), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -154618,7 +153402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2048), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -154640,10 +153424,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2309), - [aux_sym_type_statement_token2] = ACTIONS(2309), - [aux_sym_type_statement_token3] = ACTIONS(2309), - [aux_sym__class_default_token1] = ACTIONS(2309), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -154674,102 +153454,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2311), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [546] = { - [sym_preproc_include] = STATE(641), - [sym_preproc_def] = STATE(641), - [sym_preproc_function_def] = STATE(641), - [sym_preproc_call] = STATE(641), - [sym_preproc_if_in_statements] = STATE(641), - [sym_preproc_ifdef_in_statements] = STATE(641), - [sym_end_program_statement] = STATE(1047), - [sym_internal_procedures] = STATE(6163), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6399), - [sym_statement_label] = STATE(803), - [sym_stop_statement] = STATE(6399), - [sym_assignment_statement] = STATE(6399), - [sym_pointer_association_statement] = STATE(6399), - [sym_subroutine_call] = STATE(6399), - [sym_keyword_statement] = STATE(6399), - [sym_include_statement] = STATE(6399), - [sym_do_loop_statement] = STATE(6399), - [sym_do_label_statement] = STATE(6399), - [sym_end_do_label_statement] = STATE(6399), - [sym_if_statement] = STATE(6399), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6399), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6399), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6399), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6399), - [sym_select_type_statement] = STATE(6399), - [sym_select_rank_statement] = STATE(6399), - [sym_block_construct] = STATE(6399), - [sym_associate_statement] = STATE(6399), - [sym_format_statement] = STATE(6399), - [sym_read_statement] = STATE(6399), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6399), - [sym_open_statement] = STATE(6399), - [sym_close_statement] = STATE(6399), - [sym_write_statement] = STATE(6399), - [sym_inquire_statement] = STATE(6399), - [sym_file_position_statement] = STATE(6399), - [sym_allocate_statement] = STATE(6399), - [sym_entry_statement] = STATE(6399), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6399), - [sym_coarray_team_statement] = STATE(6399), - [sym_coarray_critical_statement] = STATE(6399), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(641), - [aux_sym_preproc_include_token1] = ACTIONS(2314), - [aux_sym_preproc_def_token1] = ACTIONS(2316), - [aux_sym_preproc_if_token1] = ACTIONS(2318), - [aux_sym_preproc_if_token2] = ACTIONS(658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2320), - [sym_preproc_directive] = ACTIONS(2322), + [539] = { + [sym_preproc_include] = STATE(624), + [sym_preproc_def] = STATE(624), + [sym_preproc_function_def] = STATE(624), + [sym_preproc_call] = STATE(624), + [sym_preproc_if_in_statements] = STATE(624), + [sym_preproc_ifdef_in_statements] = STATE(624), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym_end_subroutine_statement] = STATE(4904), + [sym_internal_procedures] = STATE(6959), + [sym_contains_statement] = STATE(6815), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token1] = ACTIONS(2030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [sym_preproc_directive] = ACTIONS(2034), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(648), - [aux_sym_end_program_statement_token2] = ACTIONS(650), + [aux_sym_end_program_statement_token1] = ACTIONS(1172), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(1174), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), @@ -154784,10 +153565,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -154796,7 +153577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(2036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -154848,100 +153629,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [547] = { - [sym_preproc_include] = STATE(568), - [sym_preproc_def] = STATE(568), - [sym_preproc_function_def] = STATE(568), - [sym_preproc_call] = STATE(568), - [sym_preproc_if_in_statements] = STATE(568), - [sym_preproc_ifdef_in_statements] = STATE(568), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(568), - [aux_sym_preproc_include_token1] = ACTIONS(2326), - [aux_sym_preproc_def_token1] = ACTIONS(2329), - [aux_sym_preproc_if_token1] = ACTIONS(2332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2335), - [sym_preproc_directive] = ACTIONS(2338), + [540] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym_end_function_statement] = STATE(1077), + [sym_internal_procedures] = STATE(6503), + [sym_contains_statement] = STATE(6981), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token1] = ACTIONS(2018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [sym_preproc_directive] = ACTIONS(2022), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2341), + [aux_sym_end_program_statement_token1] = ACTIONS(1106), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_end_function_statement_token1] = ACTIONS(1108), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2344), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -154953,11 +153740,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2344), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -154966,7 +153752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym_SEMI] = ACTIONS(2024), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -154988,10 +153774,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2344), - [aux_sym_type_statement_token2] = ACTIONS(2344), - [aux_sym_type_statement_token3] = ACTIONS(2344), - [aux_sym__class_default_token1] = ACTIONS(2344), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -155022,100 +153804,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2348), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [548] = { - [sym_preproc_include] = STATE(543), - [sym_preproc_def] = STATE(543), - [sym_preproc_function_def] = STATE(543), - [sym_preproc_call] = STATE(543), - [sym_preproc_if_in_statements] = STATE(543), - [sym_preproc_ifdef_in_statements] = STATE(543), - [sym__statements] = STATE(7073), + [541] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(543), - [aux_sym_preproc_include_token1] = ACTIONS(2351), - [aux_sym_preproc_def_token1] = ACTIONS(2354), - [aux_sym_preproc_if_token1] = ACTIONS(2357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2360), - [sym_preproc_directive] = ACTIONS(2363), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2223), + [aux_sym_preproc_def_token1] = ACTIONS(2226), + [aux_sym_preproc_if_token1] = ACTIONS(2229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2232), + [sym_preproc_directive] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2366), + [aux_sym_end_program_statement_token1] = ACTIONS(2238), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2369), + [aux_sym_implicit_statement_token3] = ACTIONS(2241), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -155127,11 +153909,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2369), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2241), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -155140,7 +153922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -155162,10 +153944,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2369), - [aux_sym_type_statement_token2] = ACTIONS(2369), - [aux_sym_type_statement_token3] = ACTIONS(2369), - [aux_sym__class_default_token1] = ACTIONS(2369), + [aux_sym_end_select_statement_token1] = ACTIONS(2241), + [aux_sym_type_statement_token2] = ACTIONS(2241), + [aux_sym_type_statement_token3] = ACTIONS(2241), + [aux_sym__class_default_token1] = ACTIONS(2241), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -155196,274 +153978,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2373), + [sym__integer_literal] = ACTIONS(2245), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [549] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_statements] = STATE(549), - [sym_preproc_ifdef_in_statements] = STATE(549), - [sym__statements] = STATE(6463), - [sym_statement_label] = STATE(802), - [sym_stop_statement] = STATE(6463), - [sym_assignment_statement] = STATE(6463), - [sym_pointer_association_statement] = STATE(6463), - [sym_subroutine_call] = STATE(6463), - [sym_keyword_statement] = STATE(6463), - [sym_include_statement] = STATE(6463), - [sym_do_loop_statement] = STATE(6463), - [sym_do_label_statement] = STATE(6463), - [sym_end_do_label_statement] = STATE(6463), - [sym_if_statement] = STATE(6463), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6463), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6463), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6463), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6463), - [sym_select_type_statement] = STATE(6463), - [sym_select_rank_statement] = STATE(6463), - [sym_block_construct] = STATE(6463), - [sym_associate_statement] = STATE(6463), - [sym_format_statement] = STATE(6463), - [sym_read_statement] = STATE(6463), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6463), - [sym_open_statement] = STATE(6463), - [sym_close_statement] = STATE(6463), - [sym_write_statement] = STATE(6463), - [sym_inquire_statement] = STATE(6463), - [sym_file_position_statement] = STATE(6463), - [sym_allocate_statement] = STATE(6463), - [sym_entry_statement] = STATE(6463), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6463), - [sym_coarray_team_statement] = STATE(6463), - [sym_coarray_critical_statement] = STATE(6463), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), - [aux_sym_preproc_include_token1] = ACTIONS(2376), - [aux_sym_preproc_def_token1] = ACTIONS(2379), - [aux_sym_preproc_if_token1] = ACTIONS(2382), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2385), - [aux_sym_preproc_else_token1] = ACTIONS(2059), - [aux_sym_preproc_elif_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2388), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_contains_statement_token1] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2391), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [550] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), + [542] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2394), - [aux_sym_preproc_def_token1] = ACTIONS(2397), - [aux_sym_preproc_if_token1] = ACTIONS(2400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2403), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2403), - [sym_preproc_directive] = ACTIONS(2406), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2248), + [aux_sym_preproc_def_token1] = ACTIONS(2251), + [aux_sym_preproc_if_token1] = ACTIONS(2254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), + [sym_preproc_directive] = ACTIONS(2260), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2409), + [aux_sym_end_program_statement_token1] = ACTIONS(2263), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2412), + [aux_sym_implicit_statement_token3] = ACTIONS(2266), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -155475,11 +154083,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2412), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2266), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -155488,7 +154096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -155510,10 +154118,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2412), - [aux_sym_type_statement_token2] = ACTIONS(2412), - [aux_sym_type_statement_token3] = ACTIONS(2412), - [aux_sym__class_default_token1] = ACTIONS(2412), + [aux_sym_end_select_statement_token1] = ACTIONS(2266), + [aux_sym_type_statement_token2] = ACTIONS(2266), + [aux_sym_type_statement_token3] = ACTIONS(2266), + [aux_sym__class_default_token1] = ACTIONS(2266), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -155544,100 +154152,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2414), + [sym__integer_literal] = ACTIONS(2268), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [551] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2417), - [aux_sym_preproc_def_token1] = ACTIONS(2420), - [aux_sym_preproc_if_token1] = ACTIONS(2423), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2426), - [sym_preproc_directive] = ACTIONS(2429), + [543] = { + [sym_preproc_include] = STATE(550), + [sym_preproc_def] = STATE(550), + [sym_preproc_function_def] = STATE(550), + [sym_preproc_call] = STATE(550), + [sym_preproc_if_in_statements] = STATE(550), + [sym_preproc_ifdef_in_statements] = STATE(550), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_end_where_statement] = STATE(7096), + [sym_elsewhere_clause] = STATE(5833), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(550), + [aux_sym__block_where_statement_repeat1] = STATE(5833), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2432), + [aux_sym_end_program_statement_token1] = ACTIONS(2281), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2435), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -155649,11 +154259,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2435), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -155662,7 +154271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2283), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -155677,17 +154286,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(2285), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(2287), + [aux_sym_elsewhere_clause_token1] = ACTIONS(2289), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2435), - [aux_sym_type_statement_token2] = ACTIONS(2435), - [aux_sym_type_statement_token3] = ACTIONS(2435), - [aux_sym__class_default_token1] = ACTIONS(2435), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -155718,100 +154326,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2437), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [552] = { - [sym_preproc_include] = STATE(544), - [sym_preproc_def] = STATE(544), - [sym_preproc_function_def] = STATE(544), - [sym_preproc_call] = STATE(544), - [sym_preproc_if_in_statements] = STATE(544), - [sym_preproc_ifdef_in_statements] = STATE(544), - [sym__statements] = STATE(7073), + [544] = { + [sym_preproc_include] = STATE(556), + [sym_preproc_def] = STATE(556), + [sym_preproc_function_def] = STATE(556), + [sym_preproc_call] = STATE(556), + [sym_preproc_if_in_statements] = STATE(556), + [sym_preproc_ifdef_in_statements] = STATE(556), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(544), - [aux_sym_preproc_include_token1] = ACTIONS(2440), - [aux_sym_preproc_def_token1] = ACTIONS(2443), - [aux_sym_preproc_if_token1] = ACTIONS(2446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2449), - [sym_preproc_directive] = ACTIONS(2452), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(556), + [aux_sym_preproc_include_token1] = ACTIONS(2291), + [aux_sym_preproc_def_token1] = ACTIONS(2294), + [aux_sym_preproc_if_token1] = ACTIONS(2297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2300), + [sym_preproc_directive] = ACTIONS(2303), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2455), + [aux_sym_end_program_statement_token1] = ACTIONS(2306), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2458), + [aux_sym_implicit_statement_token3] = ACTIONS(2309), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -155823,11 +154431,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2458), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2309), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -155836,7 +154444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2311), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -155858,10 +154466,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2458), - [aux_sym_type_statement_token2] = ACTIONS(2458), - [aux_sym_type_statement_token3] = ACTIONS(2458), - [aux_sym__class_default_token1] = ACTIONS(2458), + [aux_sym_end_select_statement_token1] = ACTIONS(2309), + [aux_sym_type_statement_token2] = ACTIONS(2309), + [aux_sym_type_statement_token3] = ACTIONS(2309), + [aux_sym__class_default_token1] = ACTIONS(2309), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -155892,105 +154500,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2462), + [sym__integer_literal] = ACTIONS(2313), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [553] = { - [sym_preproc_include] = STATE(641), - [sym_preproc_def] = STATE(641), - [sym_preproc_function_def] = STATE(641), - [sym_preproc_call] = STATE(641), - [sym_preproc_if_in_statements] = STATE(641), - [sym_preproc_ifdef_in_statements] = STATE(641), - [sym_end_program_statement] = STATE(1047), - [sym_internal_procedures] = STATE(6235), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6399), - [sym_statement_label] = STATE(803), - [sym_stop_statement] = STATE(6399), - [sym_assignment_statement] = STATE(6399), - [sym_pointer_association_statement] = STATE(6399), - [sym_subroutine_call] = STATE(6399), - [sym_keyword_statement] = STATE(6399), - [sym_include_statement] = STATE(6399), - [sym_do_loop_statement] = STATE(6399), - [sym_do_label_statement] = STATE(6399), - [sym_end_do_label_statement] = STATE(6399), - [sym_if_statement] = STATE(6399), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6399), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6399), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6399), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6399), - [sym_select_type_statement] = STATE(6399), - [sym_select_rank_statement] = STATE(6399), - [sym_block_construct] = STATE(6399), - [sym_associate_statement] = STATE(6399), - [sym_format_statement] = STATE(6399), - [sym_read_statement] = STATE(6399), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6399), - [sym_open_statement] = STATE(6399), - [sym_close_statement] = STATE(6399), - [sym_write_statement] = STATE(6399), - [sym_inquire_statement] = STATE(6399), - [sym_file_position_statement] = STATE(6399), - [sym_allocate_statement] = STATE(6399), - [sym_entry_statement] = STATE(6399), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6399), - [sym_coarray_team_statement] = STATE(6399), - [sym_coarray_critical_statement] = STATE(6399), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(641), - [aux_sym_preproc_include_token1] = ACTIONS(2314), - [aux_sym_preproc_def_token1] = ACTIONS(2316), - [aux_sym_preproc_if_token1] = ACTIONS(2318), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2320), - [sym_preproc_directive] = ACTIONS(2322), + [545] = { + [sym_preproc_include] = STATE(547), + [sym_preproc_def] = STATE(547), + [sym_preproc_function_def] = STATE(547), + [sym_preproc_call] = STATE(547), + [sym_preproc_if_in_statements] = STATE(547), + [sym_preproc_ifdef_in_statements] = STATE(547), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(547), + [aux_sym_preproc_include_token1] = ACTIONS(2316), + [aux_sym_preproc_def_token1] = ACTIONS(2319), + [aux_sym_preproc_if_token1] = ACTIONS(2322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2325), + [sym_preproc_directive] = ACTIONS(2328), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(648), - [aux_sym_end_program_statement_token2] = ACTIONS(650), + [aux_sym_end_program_statement_token1] = ACTIONS(2331), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2334), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -156002,10 +154605,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2334), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -156014,7 +154618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(2336), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -156036,6 +154640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2334), + [aux_sym_type_statement_token2] = ACTIONS(2334), + [aux_sym_type_statement_token3] = ACTIONS(2334), + [aux_sym__class_default_token1] = ACTIONS(2334), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -156066,100 +154674,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2338), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [554] = { - [sym_preproc_include] = STATE(557), - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_statements] = STATE(557), - [sym_preproc_ifdef_in_statements] = STATE(557), - [sym__statements] = STATE(7073), + [546] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(557), - [aux_sym_preproc_include_token1] = ACTIONS(2465), - [aux_sym_preproc_def_token1] = ACTIONS(2468), - [aux_sym_preproc_if_token1] = ACTIONS(2471), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2474), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2474), - [sym_preproc_directive] = ACTIONS(2477), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2341), + [aux_sym_preproc_def_token1] = ACTIONS(2344), + [aux_sym_preproc_if_token1] = ACTIONS(2347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2350), + [sym_preproc_directive] = ACTIONS(2353), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2480), + [aux_sym_end_program_statement_token1] = ACTIONS(2356), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2483), + [aux_sym_implicit_statement_token3] = ACTIONS(2359), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -156171,11 +154779,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2483), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2359), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -156184,7 +154792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -156206,10 +154814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2483), - [aux_sym_type_statement_token2] = ACTIONS(2483), - [aux_sym_type_statement_token3] = ACTIONS(2483), - [aux_sym__class_default_token1] = ACTIONS(2483), + [aux_sym_end_select_statement_token1] = ACTIONS(2359), + [aux_sym_type_statement_token2] = ACTIONS(2359), + [aux_sym_type_statement_token3] = ACTIONS(2359), + [aux_sym__class_default_token1] = ACTIONS(2359), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -156240,100 +154848,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2487), + [sym__integer_literal] = ACTIONS(2361), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [555] = { - [sym_preproc_include] = STATE(559), - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_statements] = STATE(559), - [sym_preproc_ifdef_in_statements] = STATE(559), - [sym__statements] = STATE(7073), + [547] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(559), - [aux_sym_preproc_include_token1] = ACTIONS(2490), - [aux_sym_preproc_def_token1] = ACTIONS(2493), - [aux_sym_preproc_if_token1] = ACTIONS(2496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), - [sym_preproc_directive] = ACTIONS(2502), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2367), + [aux_sym_preproc_if_token1] = ACTIONS(2370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2376), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2505), + [aux_sym_end_program_statement_token1] = ACTIONS(2379), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2508), + [aux_sym_implicit_statement_token3] = ACTIONS(2382), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -156345,11 +154953,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2508), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2382), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -156358,7 +154966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -156380,10 +154988,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2508), - [aux_sym_type_statement_token2] = ACTIONS(2508), - [aux_sym_type_statement_token3] = ACTIONS(2508), - [aux_sym__class_default_token1] = ACTIONS(2508), + [aux_sym_end_select_statement_token1] = ACTIONS(2382), + [aux_sym_type_statement_token2] = ACTIONS(2382), + [aux_sym_type_statement_token3] = ACTIONS(2382), + [aux_sym__class_default_token1] = ACTIONS(2382), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -156414,102 +155022,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2512), + [sym__integer_literal] = ACTIONS(2384), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [556] = { - [sym_preproc_include] = STATE(565), - [sym_preproc_def] = STATE(565), - [sym_preproc_function_def] = STATE(565), - [sym_preproc_call] = STATE(565), - [sym_preproc_if_in_statements] = STATE(565), - [sym_preproc_ifdef_in_statements] = STATE(565), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_end_where_statement] = STATE(7112), - [sym_elsewhere_clause] = STATE(5846), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), - [aux_sym__block_where_statement_repeat1] = STATE(5846), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [548] = { + [sym_preproc_include] = STATE(546), + [sym_preproc_def] = STATE(546), + [sym_preproc_function_def] = STATE(546), + [sym_preproc_call] = STATE(546), + [sym_preproc_if_in_statements] = STATE(546), + [sym_preproc_ifdef_in_statements] = STATE(546), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(546), + [aux_sym_preproc_include_token1] = ACTIONS(2387), + [aux_sym_preproc_def_token1] = ACTIONS(2390), + [aux_sym_preproc_if_token1] = ACTIONS(2393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2396), + [sym_preproc_directive] = ACTIONS(2399), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2525), + [aux_sym_end_program_statement_token1] = ACTIONS(2402), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2405), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -156521,10 +155127,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2405), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -156533,7 +155140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2407), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -156548,16 +155155,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(2529), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(2531), - [aux_sym_elsewhere_clause_token1] = ACTIONS(2533), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2405), + [aux_sym_type_statement_token2] = ACTIONS(2405), + [aux_sym_type_statement_token3] = ACTIONS(2405), + [aux_sym__class_default_token1] = ACTIONS(2405), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -156588,100 +155196,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2409), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [557] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), + [549] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2440), - [aux_sym_preproc_def_token1] = ACTIONS(2443), - [aux_sym_preproc_if_token1] = ACTIONS(2446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2449), - [sym_preproc_directive] = ACTIONS(2452), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2415), + [aux_sym_preproc_if_token1] = ACTIONS(2418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2421), + [sym_preproc_directive] = ACTIONS(2424), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2455), + [aux_sym_end_program_statement_token1] = ACTIONS(2427), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2458), + [aux_sym_implicit_statement_token3] = ACTIONS(2430), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -156693,11 +155301,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2458), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2430), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -156706,7 +155314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -156728,10 +155336,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2458), - [aux_sym_type_statement_token2] = ACTIONS(2458), - [aux_sym_type_statement_token3] = ACTIONS(2458), - [aux_sym__class_default_token1] = ACTIONS(2458), + [aux_sym_end_select_statement_token1] = ACTIONS(2430), + [aux_sym_type_statement_token2] = ACTIONS(2430), + [aux_sym_type_statement_token3] = ACTIONS(2430), + [aux_sym__class_default_token1] = ACTIONS(2430), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -156762,100 +155370,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2462), + [sym__integer_literal] = ACTIONS(2432), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [558] = { - [sym_preproc_include] = STATE(545), - [sym_preproc_def] = STATE(545), - [sym_preproc_function_def] = STATE(545), - [sym_preproc_call] = STATE(545), - [sym_preproc_if_in_statements] = STATE(545), - [sym_preproc_ifdef_in_statements] = STATE(545), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(545), - [aux_sym_preproc_include_token1] = ACTIONS(2535), - [aux_sym_preproc_def_token1] = ACTIONS(2538), - [aux_sym_preproc_if_token1] = ACTIONS(2541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2544), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2544), - [sym_preproc_directive] = ACTIONS(2547), + [550] = { + [sym_preproc_include] = STATE(649), + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_statements] = STATE(649), + [sym_preproc_ifdef_in_statements] = STATE(649), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_end_where_statement] = STATE(7418), + [sym_elsewhere_clause] = STATE(5850), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(649), + [aux_sym__block_where_statement_repeat1] = STATE(5850), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2550), + [aux_sym_end_program_statement_token1] = ACTIONS(2281), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2553), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -156867,11 +155477,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2553), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -156880,7 +155489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2435), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -156895,17 +155504,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(2285), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(2287), + [aux_sym_elsewhere_clause_token1] = ACTIONS(2289), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2553), - [aux_sym_type_statement_token2] = ACTIONS(2553), - [aux_sym_type_statement_token3] = ACTIONS(2553), - [aux_sym__class_default_token1] = ACTIONS(2553), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -156936,100 +155544,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2557), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [559] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2535), - [aux_sym_preproc_def_token1] = ACTIONS(2538), - [aux_sym_preproc_if_token1] = ACTIONS(2541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2544), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2544), - [sym_preproc_directive] = ACTIONS(2547), + [551] = { + [sym_preproc_include] = STATE(644), + [sym_preproc_def] = STATE(644), + [sym_preproc_function_def] = STATE(644), + [sym_preproc_call] = STATE(644), + [sym_preproc_if_in_statements] = STATE(644), + [sym_preproc_ifdef_in_statements] = STATE(644), + [sym_end_program_statement] = STATE(1033), + [sym_internal_procedures] = STATE(6172), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6296), + [sym_statement_label] = STATE(803), + [sym_stop_statement] = STATE(6296), + [sym_assignment_statement] = STATE(6296), + [sym_pointer_association_statement] = STATE(6296), + [sym_subroutine_call] = STATE(6296), + [sym_keyword_statement] = STATE(6296), + [sym_include_statement] = STATE(6296), + [sym_do_loop_statement] = STATE(6296), + [sym_do_label_statement] = STATE(6296), + [sym_end_do_label_statement] = STATE(6296), + [sym_if_statement] = STATE(6296), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6296), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6296), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6296), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6296), + [sym_select_type_statement] = STATE(6296), + [sym_select_rank_statement] = STATE(6296), + [sym_block_construct] = STATE(6296), + [sym_associate_statement] = STATE(6296), + [sym_format_statement] = STATE(6296), + [sym_read_statement] = STATE(6296), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6296), + [sym_open_statement] = STATE(6296), + [sym_close_statement] = STATE(6296), + [sym_write_statement] = STATE(6296), + [sym_inquire_statement] = STATE(6296), + [sym_file_position_statement] = STATE(6296), + [sym_allocate_statement] = STATE(6296), + [sym_entry_statement] = STATE(6296), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6296), + [sym_coarray_team_statement] = STATE(6296), + [sym_coarray_critical_statement] = STATE(6296), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(644), + [aux_sym_preproc_include_token1] = ACTIONS(2437), + [aux_sym_preproc_def_token1] = ACTIONS(2439), + [aux_sym_preproc_if_token1] = ACTIONS(2441), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2443), + [sym_preproc_directive] = ACTIONS(2445), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2550), + [aux_sym_end_program_statement_token1] = ACTIONS(648), + [aux_sym_end_program_statement_token2] = ACTIONS(650), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2553), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -157041,11 +155654,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2553), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -157054,7 +155666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2447), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -157076,10 +155688,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2553), - [aux_sym_type_statement_token2] = ACTIONS(2553), - [aux_sym_type_statement_token3] = ACTIONS(2553), - [aux_sym__class_default_token1] = ACTIONS(2553), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -157110,100 +155718,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2557), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [560] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), + [552] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2560), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2566), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2569), - [sym_preproc_directive] = ACTIONS(2572), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2387), + [aux_sym_preproc_def_token1] = ACTIONS(2390), + [aux_sym_preproc_if_token1] = ACTIONS(2393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2396), + [sym_preproc_directive] = ACTIONS(2399), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2575), + [aux_sym_end_program_statement_token1] = ACTIONS(2402), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2578), + [aux_sym_implicit_statement_token3] = ACTIONS(2405), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -157215,11 +155823,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2578), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2405), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -157228,7 +155836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -157250,10 +155858,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2578), - [aux_sym_type_statement_token2] = ACTIONS(2578), - [aux_sym_type_statement_token3] = ACTIONS(2578), - [aux_sym__class_default_token1] = ACTIONS(2578), + [aux_sym_end_select_statement_token1] = ACTIONS(2405), + [aux_sym_type_statement_token2] = ACTIONS(2405), + [aux_sym_type_statement_token3] = ACTIONS(2405), + [aux_sym__class_default_token1] = ACTIONS(2405), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -157284,274 +155892,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2580), + [sym__integer_literal] = ACTIONS(2409), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [561] = { - [sym_preproc_include] = STATE(639), - [sym_preproc_def] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_preproc_call] = STATE(639), - [sym_preproc_if_in_statements] = STATE(639), - [sym_preproc_ifdef_in_statements] = STATE(639), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_end_where_statement] = STATE(7433), - [sym_elsewhere_clause] = STATE(5831), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(639), - [aux_sym__block_where_statement_repeat1] = STATE(5831), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2525), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2583), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(2529), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(2531), - [aux_sym_elsewhere_clause_token1] = ACTIONS(2533), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [562] = { - [sym_preproc_include] = STATE(560), - [sym_preproc_def] = STATE(560), - [sym_preproc_function_def] = STATE(560), - [sym_preproc_call] = STATE(560), - [sym_preproc_if_in_statements] = STATE(560), - [sym_preproc_ifdef_in_statements] = STATE(560), - [sym__statements] = STATE(7073), + [553] = { + [sym_preproc_include] = STATE(549), + [sym_preproc_def] = STATE(549), + [sym_preproc_function_def] = STATE(549), + [sym_preproc_call] = STATE(549), + [sym_preproc_if_in_statements] = STATE(549), + [sym_preproc_ifdef_in_statements] = STATE(549), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(560), - [aux_sym_preproc_include_token1] = ACTIONS(2585), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2597), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(549), + [aux_sym_preproc_include_token1] = ACTIONS(2449), + [aux_sym_preproc_def_token1] = ACTIONS(2452), + [aux_sym_preproc_if_token1] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2461), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2600), + [aux_sym_end_program_statement_token1] = ACTIONS(2464), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2603), + [aux_sym_implicit_statement_token3] = ACTIONS(2467), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -157563,11 +155997,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2603), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2467), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -157576,7 +156010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2469), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -157598,10 +156032,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2603), - [aux_sym_type_statement_token2] = ACTIONS(2603), - [aux_sym_type_statement_token3] = ACTIONS(2603), - [aux_sym__class_default_token1] = ACTIONS(2603), + [aux_sym_end_select_statement_token1] = ACTIONS(2467), + [aux_sym_type_statement_token2] = ACTIONS(2467), + [aux_sym_type_statement_token3] = ACTIONS(2467), + [aux_sym__class_default_token1] = ACTIONS(2467), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -157632,100 +156066,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2607), + [sym__integer_literal] = ACTIONS(2471), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [563] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2610), - [aux_sym_preproc_def_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token1] = ACTIONS(2616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), - [sym_preproc_directive] = ACTIONS(2622), + [554] = { + [sym_preproc_include] = STATE(649), + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_statements] = STATE(649), + [sym_preproc_ifdef_in_statements] = STATE(649), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_end_where_statement] = STATE(7096), + [sym_elsewhere_clause] = STATE(5833), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(649), + [aux_sym__block_where_statement_repeat1] = STATE(5833), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2625), + [aux_sym_end_program_statement_token1] = ACTIONS(2281), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2628), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -157737,11 +156173,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2628), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -157750,7 +156185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2435), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -157765,17 +156200,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(2285), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(2287), + [aux_sym_elsewhere_clause_token1] = ACTIONS(2289), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2628), - [aux_sym_type_statement_token2] = ACTIONS(2628), - [aux_sym_type_statement_token3] = ACTIONS(2628), - [aux_sym__class_default_token1] = ACTIONS(2628), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -157806,100 +156240,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2630), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [564] = { - [sym_preproc_include] = STATE(563), - [sym_preproc_def] = STATE(563), - [sym_preproc_function_def] = STATE(563), - [sym_preproc_call] = STATE(563), - [sym_preproc_if_in_statements] = STATE(563), - [sym_preproc_ifdef_in_statements] = STATE(563), - [sym__statements] = STATE(7073), + [555] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(563), - [aux_sym_preproc_include_token1] = ACTIONS(2560), - [aux_sym_preproc_def_token1] = ACTIONS(2563), - [aux_sym_preproc_if_token1] = ACTIONS(2566), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2569), - [sym_preproc_directive] = ACTIONS(2572), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2474), + [aux_sym_preproc_def_token1] = ACTIONS(2477), + [aux_sym_preproc_if_token1] = ACTIONS(2480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), + [sym_preproc_directive] = ACTIONS(2486), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2575), + [aux_sym_end_program_statement_token1] = ACTIONS(2489), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2578), + [aux_sym_implicit_statement_token3] = ACTIONS(2492), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -157911,11 +156345,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2578), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2492), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -157924,7 +156358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -157946,10 +156380,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2578), - [aux_sym_type_statement_token2] = ACTIONS(2578), - [aux_sym_type_statement_token3] = ACTIONS(2578), - [aux_sym__class_default_token1] = ACTIONS(2578), + [aux_sym_end_select_statement_token1] = ACTIONS(2492), + [aux_sym_type_statement_token2] = ACTIONS(2492), + [aux_sym_type_statement_token3] = ACTIONS(2492), + [aux_sym__class_default_token1] = ACTIONS(2492), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -157980,102 +156414,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2580), + [sym__integer_literal] = ACTIONS(2494), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [565] = { - [sym_preproc_include] = STATE(639), - [sym_preproc_def] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_preproc_call] = STATE(639), - [sym_preproc_if_in_statements] = STATE(639), - [sym_preproc_ifdef_in_statements] = STATE(639), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_end_where_statement] = STATE(7135), - [sym_elsewhere_clause] = STATE(5847), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(639), - [aux_sym__block_where_statement_repeat1] = STATE(5847), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [556] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2449), + [aux_sym_preproc_def_token1] = ACTIONS(2452), + [aux_sym_preproc_if_token1] = ACTIONS(2455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2458), + [sym_preproc_directive] = ACTIONS(2461), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2525), + [aux_sym_end_program_statement_token1] = ACTIONS(2464), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2467), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -158087,10 +156519,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2467), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -158099,7 +156532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -158114,16 +156547,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(2529), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(2531), - [aux_sym_elsewhere_clause_token1] = ACTIONS(2533), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2467), + [aux_sym_type_statement_token2] = ACTIONS(2467), + [aux_sym_type_statement_token3] = ACTIONS(2467), + [aux_sym__class_default_token1] = ACTIONS(2467), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -158154,102 +156588,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2471), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [566] = { - [sym_preproc_include] = STATE(561), - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_statements] = STATE(561), - [sym_preproc_ifdef_in_statements] = STATE(561), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_end_where_statement] = STATE(7135), - [sym_elsewhere_clause] = STATE(5847), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(561), - [aux_sym__block_where_statement_repeat1] = STATE(5847), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [557] = { + [sym_preproc_include] = STATE(542), + [sym_preproc_def] = STATE(542), + [sym_preproc_function_def] = STATE(542), + [sym_preproc_call] = STATE(542), + [sym_preproc_if_in_statements] = STATE(542), + [sym_preproc_ifdef_in_statements] = STATE(542), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(542), + [aux_sym_preproc_include_token1] = ACTIONS(2364), + [aux_sym_preproc_def_token1] = ACTIONS(2367), + [aux_sym_preproc_if_token1] = ACTIONS(2370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2376), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2525), + [aux_sym_end_program_statement_token1] = ACTIONS(2379), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2382), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -158261,10 +156693,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2382), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -158273,7 +156706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2497), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -158288,16 +156721,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(2529), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(2531), - [aux_sym_elsewhere_clause_token1] = ACTIONS(2533), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2382), + [aux_sym_type_statement_token2] = ACTIONS(2382), + [aux_sym_type_statement_token3] = ACTIONS(2382), + [aux_sym__class_default_token1] = ACTIONS(2382), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -158328,100 +156762,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2384), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [567] = { - [sym_preproc_include] = STATE(550), - [sym_preproc_def] = STATE(550), - [sym_preproc_function_def] = STATE(550), - [sym_preproc_call] = STATE(550), - [sym_preproc_if_in_statements] = STATE(550), - [sym_preproc_ifdef_in_statements] = STATE(550), - [sym__statements] = STATE(7073), + [558] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(550), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2640), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2646), - [sym_preproc_directive] = ACTIONS(2649), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2502), + [aux_sym_preproc_if_token1] = ACTIONS(2505), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2508), + [sym_preproc_directive] = ACTIONS(2511), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2652), + [aux_sym_end_program_statement_token1] = ACTIONS(2514), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2655), + [aux_sym_implicit_statement_token3] = ACTIONS(2517), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -158433,11 +156867,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2655), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2517), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -158446,7 +156880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -158468,10 +156902,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2655), - [aux_sym_type_statement_token2] = ACTIONS(2655), - [aux_sym_type_statement_token3] = ACTIONS(2655), - [aux_sym__class_default_token1] = ACTIONS(2655), + [aux_sym_end_select_statement_token1] = ACTIONS(2517), + [aux_sym_type_statement_token2] = ACTIONS(2517), + [aux_sym_type_statement_token3] = ACTIONS(2517), + [aux_sym__class_default_token1] = ACTIONS(2517), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -158502,100 +156936,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2659), + [sym__integer_literal] = ACTIONS(2519), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [568] = { - [sym_preproc_include] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_statements] = STATE(541), - [sym_preproc_ifdef_in_statements] = STATE(541), - [sym__statements] = STATE(7073), - [sym_statement_label] = STATE(808), - [sym_stop_statement] = STATE(7073), - [sym_assignment_statement] = STATE(7073), - [sym_pointer_association_statement] = STATE(7073), - [sym_subroutine_call] = STATE(7073), - [sym_keyword_statement] = STATE(7073), - [sym_include_statement] = STATE(7073), - [sym_do_loop_statement] = STATE(7073), - [sym_do_label_statement] = STATE(7073), - [sym_end_do_label_statement] = STATE(7073), - [sym_if_statement] = STATE(7073), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7073), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7073), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7073), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7073), - [sym_select_type_statement] = STATE(7073), - [sym_select_rank_statement] = STATE(7073), - [sym_block_construct] = STATE(7073), - [sym_associate_statement] = STATE(7073), - [sym_format_statement] = STATE(7073), - [sym_read_statement] = STATE(7073), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7073), - [sym_open_statement] = STATE(7073), - [sym_close_statement] = STATE(7073), - [sym_write_statement] = STATE(7073), - [sym_inquire_statement] = STATE(7073), - [sym_file_position_statement] = STATE(7073), - [sym_allocate_statement] = STATE(7073), - [sym_entry_statement] = STATE(7073), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7073), - [sym_coarray_team_statement] = STATE(7073), - [sym_coarray_critical_statement] = STATE(7073), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2640), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2646), - [sym_preproc_directive] = ACTIONS(2649), + [559] = { + [sym_preproc_include] = STATE(554), + [sym_preproc_def] = STATE(554), + [sym_preproc_function_def] = STATE(554), + [sym_preproc_call] = STATE(554), + [sym_preproc_if_in_statements] = STATE(554), + [sym_preproc_ifdef_in_statements] = STATE(554), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_end_where_statement] = STATE(7311), + [sym_elsewhere_clause] = STATE(5853), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(554), + [aux_sym__block_where_statement_repeat1] = STATE(5853), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2652), + [aux_sym_end_program_statement_token1] = ACTIONS(2281), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(2655), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -158607,11 +157043,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym_derived_type_token1] = ACTIONS(2655), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -158620,7 +157055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2522), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -158635,185 +157070,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(2285), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2655), - [aux_sym_type_statement_token2] = ACTIONS(2655), - [aux_sym_type_statement_token3] = ACTIONS(2655), - [aux_sym__class_default_token1] = ACTIONS(2655), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2659), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [569] = { - [sym_preproc_include] = STATE(728), - [sym_preproc_def] = STATE(728), - [sym_preproc_function_def] = STATE(728), - [sym_preproc_call] = STATE(728), - [sym_preproc_if_in_statements] = STATE(728), - [sym_preproc_ifdef_in_statements] = STATE(728), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(775), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7203), - [sym_elseif_clause] = STATE(5583), - [sym_else_clause] = STATE(5952), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(728), - [aux_sym__block_if_statement_repeat1] = STATE(5583), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2672), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2674), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), - [aux_sym_elseif_clause_token1] = ACTIONS(2678), - [aux_sym_elseif_clause_token2] = ACTIONS(2680), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(2287), + [aux_sym_elsewhere_clause_token1] = ACTIONS(2289), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -158849,104 +157110,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [570] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym_end_program_statement] = STATE(1047), - [sym_internal_procedures] = STATE(6434), - [sym_contains_statement] = STATE(6691), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2684), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), - [sym_preproc_directive] = ACTIONS(2690), + [560] = { + [sym_preproc_include] = STATE(555), + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_statements] = STATE(555), + [sym_preproc_ifdef_in_statements] = STATE(555), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(555), + [aux_sym_preproc_include_token1] = ACTIONS(2524), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2533), + [sym_preproc_directive] = ACTIONS(2536), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(648), - [aux_sym_end_program_statement_token2] = ACTIONS(650), + [aux_sym_end_program_statement_token1] = ACTIONS(2539), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2542), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -158958,10 +157215,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2542), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -158970,7 +157228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2544), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -158992,6 +157250,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2542), + [aux_sym_type_statement_token2] = ACTIONS(2542), + [aux_sym_type_statement_token3] = ACTIONS(2542), + [aux_sym__class_default_token1] = ACTIONS(2542), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -159022,104 +157284,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2546), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [571] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym_end_program_statement] = STATE(1055), - [sym_internal_procedures] = STATE(6800), - [sym_contains_statement] = STATE(6691), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2684), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), - [sym_preproc_directive] = ACTIONS(2690), + [561] = { + [sym_preproc_include] = STATE(541), + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_statements] = STATE(541), + [sym_preproc_ifdef_in_statements] = STATE(541), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(541), + [aux_sym_preproc_include_token1] = ACTIONS(2549), + [aux_sym_preproc_def_token1] = ACTIONS(2552), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2558), + [sym_preproc_directive] = ACTIONS(2561), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(648), - [aux_sym_end_program_statement_token2] = ACTIONS(650), + [aux_sym_end_program_statement_token1] = ACTIONS(2564), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2567), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -159131,10 +157389,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2567), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -159143,7 +157402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2569), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -159165,6 +157424,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2567), + [aux_sym_type_statement_token2] = ACTIONS(2567), + [aux_sym_type_statement_token3] = ACTIONS(2567), + [aux_sym__class_default_token1] = ACTIONS(2567), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -159195,104 +157458,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2571), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [572] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym_end_program_statement] = STATE(1066), - [sym_internal_procedures] = STATE(6870), - [sym_contains_statement] = STATE(6691), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2684), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), - [sym_preproc_directive] = ACTIONS(2690), + [562] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2524), + [aux_sym_preproc_def_token1] = ACTIONS(2527), + [aux_sym_preproc_if_token1] = ACTIONS(2530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2533), + [sym_preproc_directive] = ACTIONS(2536), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(648), - [aux_sym_end_program_statement_token2] = ACTIONS(650), + [aux_sym_end_program_statement_token1] = ACTIONS(2539), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2542), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -159304,10 +157563,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2542), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -159316,7 +157576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2243), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -159338,6 +157598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2542), + [aux_sym_type_statement_token2] = ACTIONS(2542), + [aux_sym_type_statement_token3] = ACTIONS(2542), + [aux_sym__class_default_token1] = ACTIONS(2542), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -159368,99 +157632,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2546), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [573] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym_end_program_statement] = STATE(903), - [sym_internal_procedures] = STATE(7069), - [sym_contains_statement] = STATE(6691), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2684), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), - [sym_preproc_directive] = ACTIONS(2690), + [563] = { + [sym_preproc_include] = STATE(644), + [sym_preproc_def] = STATE(644), + [sym_preproc_function_def] = STATE(644), + [sym_preproc_call] = STATE(644), + [sym_preproc_if_in_statements] = STATE(644), + [sym_preproc_ifdef_in_statements] = STATE(644), + [sym_end_program_statement] = STATE(1033), + [sym_internal_procedures] = STATE(6223), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6296), + [sym_statement_label] = STATE(803), + [sym_stop_statement] = STATE(6296), + [sym_assignment_statement] = STATE(6296), + [sym_pointer_association_statement] = STATE(6296), + [sym_subroutine_call] = STATE(6296), + [sym_keyword_statement] = STATE(6296), + [sym_include_statement] = STATE(6296), + [sym_do_loop_statement] = STATE(6296), + [sym_do_label_statement] = STATE(6296), + [sym_end_do_label_statement] = STATE(6296), + [sym_if_statement] = STATE(6296), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6296), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6296), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6296), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6296), + [sym_select_type_statement] = STATE(6296), + [sym_select_rank_statement] = STATE(6296), + [sym_block_construct] = STATE(6296), + [sym_associate_statement] = STATE(6296), + [sym_format_statement] = STATE(6296), + [sym_read_statement] = STATE(6296), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6296), + [sym_open_statement] = STATE(6296), + [sym_close_statement] = STATE(6296), + [sym_write_statement] = STATE(6296), + [sym_inquire_statement] = STATE(6296), + [sym_file_position_statement] = STATE(6296), + [sym_allocate_statement] = STATE(6296), + [sym_entry_statement] = STATE(6296), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6296), + [sym_coarray_team_statement] = STATE(6296), + [sym_coarray_critical_statement] = STATE(6296), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(644), + [aux_sym_preproc_include_token1] = ACTIONS(2437), + [aux_sym_preproc_def_token1] = ACTIONS(2439), + [aux_sym_preproc_if_token1] = ACTIONS(2441), + [aux_sym_preproc_if_token2] = ACTIONS(668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2443), + [sym_preproc_directive] = ACTIONS(2445), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(211), - [aux_sym_end_program_statement_token2] = ACTIONS(213), + [aux_sym_end_program_statement_token1] = ACTIONS(648), + [aux_sym_end_program_statement_token2] = ACTIONS(650), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -159477,10 +157742,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -159489,7 +157754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2447), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -159541,104 +157806,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [574] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym_end_program_statement] = STATE(846), - [sym_internal_procedures] = STATE(6551), - [sym_contains_statement] = STATE(6691), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2684), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), - [sym_preproc_directive] = ACTIONS(2690), + [564] = { + [sym_preproc_include] = STATE(564), + [sym_preproc_def] = STATE(564), + [sym_preproc_function_def] = STATE(564), + [sym_preproc_call] = STATE(564), + [sym_preproc_if_in_statements] = STATE(564), + [sym_preproc_ifdef_in_statements] = STATE(564), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(564), + [aux_sym_preproc_include_token1] = ACTIONS(2574), + [aux_sym_preproc_def_token1] = ACTIONS(2577), + [aux_sym_preproc_if_token1] = ACTIONS(2580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2586), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token3] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym_derived_type_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2589), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_end_select_statement_token1] = ACTIONS(2059), + [aux_sym_type_statement_token2] = ACTIONS(2059), + [aux_sym_type_statement_token3] = ACTIONS(2059), + [aux_sym__class_default_token1] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), + }, + [565] = { + [sym_preproc_include] = STATE(565), + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_statements] = STATE(565), + [sym_preproc_ifdef_in_statements] = STATE(565), + [sym__statements] = STATE(6369), + [sym_statement_label] = STATE(802), + [sym_stop_statement] = STATE(6369), + [sym_assignment_statement] = STATE(6369), + [sym_pointer_association_statement] = STATE(6369), + [sym_subroutine_call] = STATE(6369), + [sym_keyword_statement] = STATE(6369), + [sym_include_statement] = STATE(6369), + [sym_do_loop_statement] = STATE(6369), + [sym_do_label_statement] = STATE(6369), + [sym_end_do_label_statement] = STATE(6369), + [sym_if_statement] = STATE(6369), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6369), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6369), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6369), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6369), + [sym_select_type_statement] = STATE(6369), + [sym_select_rank_statement] = STATE(6369), + [sym_block_construct] = STATE(6369), + [sym_associate_statement] = STATE(6369), + [sym_format_statement] = STATE(6369), + [sym_read_statement] = STATE(6369), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6369), + [sym_open_statement] = STATE(6369), + [sym_close_statement] = STATE(6369), + [sym_write_statement] = STATE(6369), + [sym_inquire_statement] = STATE(6369), + [sym_file_position_statement] = STATE(6369), + [sym_allocate_statement] = STATE(6369), + [sym_entry_statement] = STATE(6369), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6369), + [sym_coarray_team_statement] = STATE(6369), + [sym_coarray_critical_statement] = STATE(6369), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(565), + [aux_sym_preproc_include_token1] = ACTIONS(2592), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2598), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2601), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2601), + [aux_sym_preproc_else_token1] = ACTIONS(2059), + [aux_sym_preproc_elif_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_contains_statement_token1] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2607), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), + }, + [566] = { + [sym_preproc_include] = STATE(562), + [sym_preproc_def] = STATE(562), + [sym_preproc_function_def] = STATE(562), + [sym_preproc_call] = STATE(562), + [sym_preproc_if_in_statements] = STATE(562), + [sym_preproc_ifdef_in_statements] = STATE(562), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(562), + [aux_sym_preproc_include_token1] = ACTIONS(2610), + [aux_sym_preproc_def_token1] = ACTIONS(2613), + [aux_sym_preproc_if_token1] = ACTIONS(2616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), + [sym_preproc_directive] = ACTIONS(2622), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(211), - [aux_sym_end_program_statement_token2] = ACTIONS(213), + [aux_sym_end_program_statement_token1] = ACTIONS(2625), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2628), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -159650,10 +158259,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2628), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -159662,7 +158272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2630), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -159684,6 +158294,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2628), + [aux_sym_type_statement_token2] = ACTIONS(2628), + [aux_sym_type_statement_token3] = ACTIONS(2628), + [aux_sym__class_default_token1] = ACTIONS(2628), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -159714,104 +158328,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2632), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [575] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym_end_program_statement] = STATE(1012), - [sym_internal_procedures] = STATE(6885), - [sym_contains_statement] = STATE(6691), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2684), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), - [sym_preproc_directive] = ACTIONS(2690), + [567] = { + [sym_preproc_include] = STATE(552), + [sym_preproc_def] = STATE(552), + [sym_preproc_function_def] = STATE(552), + [sym_preproc_call] = STATE(552), + [sym_preproc_if_in_statements] = STATE(552), + [sym_preproc_ifdef_in_statements] = STATE(552), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(552), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2638), + [aux_sym_preproc_if_token1] = ACTIONS(2641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2644), + [sym_preproc_directive] = ACTIONS(2647), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(25), - [aux_sym_end_program_statement_token2] = ACTIONS(27), + [aux_sym_end_program_statement_token1] = ACTIONS(2650), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2653), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -159823,10 +158433,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2653), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -159835,7 +158446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2655), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -159857,6 +158468,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2653), + [aux_sym_type_statement_token2] = ACTIONS(2653), + [aux_sym_type_statement_token3] = ACTIONS(2653), + [aux_sym__class_default_token1] = ACTIONS(2653), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -159887,103 +158502,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2657), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [576] = { - [sym_preproc_include] = STATE(569), - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_statements] = STATE(569), - [sym_preproc_ifdef_in_statements] = STATE(569), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(776), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7229), - [sym_elseif_clause] = STATE(5579), - [sym_else_clause] = STATE(6082), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(569), - [aux_sym__block_if_statement_repeat1] = STATE(5579), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), + [568] = { + [sym_preproc_include] = STATE(558), + [sym_preproc_def] = STATE(558), + [sym_preproc_function_def] = STATE(558), + [sym_preproc_call] = STATE(558), + [sym_preproc_if_in_statements] = STATE(558), + [sym_preproc_ifdef_in_statements] = STATE(558), + [sym__statements] = STATE(6642), + [sym_statement_label] = STATE(808), + [sym_stop_statement] = STATE(6642), + [sym_assignment_statement] = STATE(6642), + [sym_pointer_association_statement] = STATE(6642), + [sym_subroutine_call] = STATE(6642), + [sym_keyword_statement] = STATE(6642), + [sym_include_statement] = STATE(6642), + [sym_do_loop_statement] = STATE(6642), + [sym_do_label_statement] = STATE(6642), + [sym_end_do_label_statement] = STATE(6642), + [sym_if_statement] = STATE(6642), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6642), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6642), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6642), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6642), + [sym_select_type_statement] = STATE(6642), + [sym_select_rank_statement] = STATE(6642), + [sym_block_construct] = STATE(6642), + [sym_associate_statement] = STATE(6642), + [sym_format_statement] = STATE(6642), + [sym_read_statement] = STATE(6642), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6642), + [sym_open_statement] = STATE(6642), + [sym_close_statement] = STATE(6642), + [sym_write_statement] = STATE(6642), + [sym_inquire_statement] = STATE(6642), + [sym_file_position_statement] = STATE(6642), + [sym_allocate_statement] = STATE(6642), + [sym_entry_statement] = STATE(6642), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6642), + [sym_coarray_team_statement] = STATE(6642), + [sym_coarray_critical_statement] = STATE(6642), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(558), + [aux_sym_preproc_include_token1] = ACTIONS(2223), + [aux_sym_preproc_def_token1] = ACTIONS(2226), + [aux_sym_preproc_if_token1] = ACTIONS(2229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2232), + [sym_preproc_directive] = ACTIONS(2235), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2672), + [aux_sym_end_program_statement_token1] = ACTIONS(2238), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(2241), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -159995,10 +158607,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym_derived_type_token1] = ACTIONS(2241), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -160007,7 +158620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2660), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -160021,15 +158634,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), - [aux_sym_elseif_clause_token1] = ACTIONS(2678), - [aux_sym_elseif_clause_token2] = ACTIONS(2680), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2241), + [aux_sym_type_statement_token2] = ACTIONS(2241), + [aux_sym_type_statement_token3] = ACTIONS(2241), + [aux_sym__class_default_token1] = ACTIONS(2241), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -160060,99 +158676,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(2245), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [577] = { - [sym_preproc_include] = STATE(728), - [sym_preproc_def] = STATE(728), - [sym_preproc_function_def] = STATE(728), - [sym_preproc_call] = STATE(728), - [sym_preproc_if_in_statements] = STATE(728), - [sym_preproc_ifdef_in_statements] = STATE(728), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(776), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7229), - [sym_elseif_clause] = STATE(5579), - [sym_else_clause] = STATE(6082), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(728), - [aux_sym__block_if_statement_repeat1] = STATE(5579), + [569] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), [aux_sym_preproc_include_token1] = ACTIONS(2662), [aux_sym_preproc_def_token1] = ACTIONS(2664), [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2542), [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2542), + [aux_sym_preproc_elif_token1] = ACTIONS(2542), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2542), [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2672), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -160168,10 +158785,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -160180,7 +158797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -160194,9 +158811,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), - [aux_sym_elseif_clause_token1] = ACTIONS(2678), - [aux_sym_elseif_clause_token2] = ACTIONS(2680), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -160233,99 +158849,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [578] = { - [sym_preproc_include] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_preproc_if_in_statements] = STATE(636), - [sym_preproc_ifdef_in_statements] = STATE(636), - [sym_internal_procedures] = STATE(7935), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(636), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(2700), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [570] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym_end_program_statement] = STATE(859), + [sym_internal_procedures] = STATE(7029), + [sym_contains_statement] = STATE(6394), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(2674), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2682), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(2704), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(211), + [aux_sym_end_program_statement_token2] = ACTIONS(213), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -160342,10 +158958,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -160354,7 +158970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2684), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -160406,103 +159022,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [579] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym_end_program_statement] = STATE(962), - [sym_internal_procedures] = STATE(7042), - [sym_contains_statement] = STATE(6691), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2684), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), - [sym_preproc_directive] = ACTIONS(2690), + [571] = { + [sym_preproc_include] = STATE(588), + [sym_preproc_def] = STATE(588), + [sym_preproc_function_def] = STATE(588), + [sym_preproc_call] = STATE(588), + [sym_preproc_if_in_statements] = STATE(588), + [sym_preproc_ifdef_in_statements] = STATE(588), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(776), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7084), + [sym_elseif_clause] = STATE(5582), + [sym_else_clause] = STATE(6040), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(588), + [aux_sym__block_if_statement_repeat1] = STATE(5582), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(25), - [aux_sym_end_program_statement_token2] = ACTIONS(27), + [aux_sym_end_program_statement_token1] = ACTIONS(2696), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -160515,10 +159130,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -160527,7 +159142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2698), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -160541,8 +159156,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), + [aux_sym_elseif_clause_token1] = ACTIONS(2702), + [aux_sym_elseif_clause_token2] = ACTIONS(2704), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -160579,95 +159195,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [580] = { - [sym_preproc_include] = STATE(584), - [sym_preproc_def] = STATE(584), - [sym_preproc_function_def] = STATE(584), - [sym_preproc_call] = STATE(584), - [sym_preproc_if_in_statements] = STATE(584), - [sym_preproc_ifdef_in_statements] = STATE(584), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(584), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2603), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2603), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2603), - [sym_preproc_directive] = ACTIONS(2716), + [572] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2266), + [aux_sym_preproc_elif_token1] = ACTIONS(2266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2266), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2266), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -160688,10 +159304,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -160700,7 +159316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -160752,103 +159368,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [581] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym_end_program_statement] = STATE(1032), - [sym_internal_procedures] = STATE(6948), - [sym_contains_statement] = STATE(6691), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2684), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), - [sym_preproc_directive] = ACTIONS(2690), + [573] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2241), + [aux_sym_preproc_elif_token1] = ACTIONS(2241), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2241), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(25), - [aux_sym_end_program_statement_token2] = ACTIONS(27), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -160861,10 +159477,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -160873,7 +159489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -160925,95 +159541,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [582] = { - [sym_preproc_include] = STATE(587), - [sym_preproc_def] = STATE(587), - [sym_preproc_function_def] = STATE(587), - [sym_preproc_call] = STATE(587), - [sym_preproc_if_in_statements] = STATE(587), - [sym_preproc_ifdef_in_statements] = STATE(587), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(587), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2720), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2720), - [aux_sym_preproc_elif_token1] = ACTIONS(2720), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2720), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2720), - [sym_preproc_directive] = ACTIONS(2716), + [574] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2359), + [aux_sym_preproc_elif_token1] = ACTIONS(2359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2359), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2359), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -161034,10 +159650,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -161046,7 +159662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -161098,95 +159714,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [583] = { - [sym_preproc_include] = STATE(588), - [sym_preproc_def] = STATE(588), - [sym_preproc_function_def] = STATE(588), - [sym_preproc_call] = STATE(588), - [sym_preproc_if_in_statements] = STATE(588), - [sym_preproc_ifdef_in_statements] = STATE(588), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(588), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2578), - [aux_sym_preproc_elif_token1] = ACTIONS(2578), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2578), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2578), - [sym_preproc_directive] = ACTIONS(2716), + [575] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2430), + [aux_sym_preproc_elif_token1] = ACTIONS(2430), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2430), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2430), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -161207,10 +159823,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -161219,7 +159835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -161271,95 +159887,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [584] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2578), - [aux_sym_preproc_elif_token1] = ACTIONS(2578), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2578), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2578), - [sym_preproc_directive] = ACTIONS(2716), + [576] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2706), + [aux_sym_preproc_elif_token1] = ACTIONS(2706), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2706), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2706), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -161380,10 +159996,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -161392,7 +160008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -161444,95 +160060,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [585] = { - [sym_preproc_include] = STATE(590), - [sym_preproc_def] = STATE(590), - [sym_preproc_function_def] = STATE(590), - [sym_preproc_call] = STATE(590), - [sym_preproc_if_in_statements] = STATE(590), - [sym_preproc_ifdef_in_statements] = STATE(590), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(590), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2728), - [aux_sym_preproc_elif_token1] = ACTIONS(2728), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2728), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2728), - [sym_preproc_directive] = ACTIONS(2716), + [577] = { + [sym_preproc_include] = STATE(605), + [sym_preproc_def] = STATE(605), + [sym_preproc_function_def] = STATE(605), + [sym_preproc_call] = STATE(605), + [sym_preproc_if_in_statements] = STATE(605), + [sym_preproc_ifdef_in_statements] = STATE(605), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(605), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2708), + [aux_sym_preproc_elif_token1] = ACTIONS(2708), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2708), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -161553,10 +160169,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -161565,7 +160181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2710), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -161617,102 +160233,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [586] = { - [sym_preproc_include] = STATE(618), - [sym_preproc_def] = STATE(618), - [sym_preproc_function_def] = STATE(618), - [sym_preproc_call] = STATE(618), - [sym_preproc_if_in_statements] = STATE(618), - [sym_preproc_ifdef_in_statements] = STATE(618), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(775), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7203), - [sym_elseif_clause] = STATE(5583), - [sym_else_clause] = STATE(5952), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(618), - [aux_sym__block_if_statement_repeat1] = STATE(5583), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), + [578] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym_end_program_statement] = STATE(1074), + [sym_internal_procedures] = STATE(7047), + [sym_contains_statement] = STATE(6394), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(2674), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2682), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2672), + [aux_sym_end_program_statement_token1] = ACTIONS(25), + [aux_sym_end_program_statement_token2] = ACTIONS(27), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -161725,10 +160342,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -161737,7 +160354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2684), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -161751,9 +160368,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), - [aux_sym_elseif_clause_token1] = ACTIONS(2678), - [aux_sym_elseif_clause_token2] = ACTIONS(2680), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -161790,95 +160406,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [587] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2734), - [aux_sym_preproc_elif_token1] = ACTIONS(2734), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2734), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2734), - [sym_preproc_directive] = ACTIONS(2716), + [579] = { + [sym_preproc_include] = STATE(607), + [sym_preproc_def] = STATE(607), + [sym_preproc_function_def] = STATE(607), + [sym_preproc_call] = STATE(607), + [sym_preproc_if_in_statements] = STATE(607), + [sym_preproc_ifdef_in_statements] = STATE(607), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(607), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2712), + [aux_sym_preproc_elif_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -161899,10 +160515,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -161911,7 +160527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2714), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -161963,95 +160579,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [588] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2628), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2628), - [aux_sym_preproc_elif_token1] = ACTIONS(2628), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2628), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2628), - [sym_preproc_directive] = ACTIONS(2716), + [580] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2467), + [aux_sym_preproc_elif_token1] = ACTIONS(2467), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2467), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2467), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -162072,10 +160688,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -162084,7 +160700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -162136,103 +160752,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [589] = { - [sym_preproc_include] = STATE(596), - [sym_preproc_def] = STATE(596), - [sym_preproc_function_def] = STATE(596), - [sym_preproc_call] = STATE(596), - [sym_preproc_if_in_statements] = STATE(596), - [sym_preproc_ifdef_in_statements] = STATE(596), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(596), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2736), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2736), - [aux_sym_preproc_elif_token1] = ACTIONS(2736), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2736), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2736), - [sym_preproc_directive] = ACTIONS(2716), + [581] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym_end_program_statement] = STATE(1010), + [sym_internal_procedures] = STATE(7001), + [sym_contains_statement] = STATE(6394), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(2674), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2682), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(25), + [aux_sym_end_program_statement_token2] = ACTIONS(27), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -162245,10 +160861,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -162257,7 +160873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2684), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -162309,95 +160925,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [590] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2736), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2736), - [aux_sym_preproc_elif_token1] = ACTIONS(2736), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2736), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2736), - [sym_preproc_directive] = ACTIONS(2716), + [582] = { + [sym_preproc_include] = STATE(572), + [sym_preproc_def] = STATE(572), + [sym_preproc_function_def] = STATE(572), + [sym_preproc_call] = STATE(572), + [sym_preproc_if_in_statements] = STATE(572), + [sym_preproc_ifdef_in_statements] = STATE(572), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(572), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2382), + [aux_sym_preproc_elif_token1] = ACTIONS(2382), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2382), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2382), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -162418,10 +161034,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -162430,7 +161046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2716), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -162482,95 +161098,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [591] = { - [sym_preproc_include] = STATE(598), - [sym_preproc_def] = STATE(598), - [sym_preproc_function_def] = STATE(598), - [sym_preproc_call] = STATE(598), - [sym_preproc_if_in_statements] = STATE(598), - [sym_preproc_ifdef_in_statements] = STATE(598), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(598), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2740), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2740), - [aux_sym_preproc_elif_token1] = ACTIONS(2740), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2740), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2740), - [sym_preproc_directive] = ACTIONS(2716), + [583] = { + [sym_preproc_include] = STATE(576), + [sym_preproc_def] = STATE(576), + [sym_preproc_function_def] = STATE(576), + [sym_preproc_call] = STATE(576), + [sym_preproc_if_in_statements] = STATE(576), + [sym_preproc_ifdef_in_statements] = STATE(576), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(576), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2718), + [aux_sym_preproc_elif_token1] = ACTIONS(2718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2718), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -162591,10 +161207,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -162603,7 +161219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2720), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -162655,100 +161271,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [592] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2744), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2744), - [aux_sym_preproc_elif_token1] = ACTIONS(2744), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2744), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2744), - [sym_preproc_directive] = ACTIONS(2716), + [584] = { + [sym_preproc_include] = STATE(604), + [sym_preproc_def] = STATE(604), + [sym_preproc_function_def] = STATE(604), + [sym_preproc_call] = STATE(604), + [sym_preproc_if_in_statements] = STATE(604), + [sym_preproc_ifdef_in_statements] = STATE(604), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(782), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7107), + [sym_elseif_clause] = STATE(5606), + [sym_else_clause] = STATE(6094), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(604), + [aux_sym__block_if_statement_repeat1] = STATE(5606), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(2696), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -162764,10 +161379,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -162776,7 +161391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2722), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -162790,8 +161405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), + [aux_sym_elseif_clause_token1] = ACTIONS(2702), + [aux_sym_elseif_clause_token2] = ACTIONS(2704), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -162828,96 +161444,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [593] = { - [sym_preproc_include] = STATE(602), - [sym_preproc_def] = STATE(602), - [sym_preproc_function_def] = STATE(602), - [sym_preproc_call] = STATE(602), - [sym_preproc_if_in_statements] = STATE(602), - [sym_preproc_ifdef_in_statements] = STATE(602), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(602), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2483), - [aux_sym_preproc_elif_token1] = ACTIONS(2483), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2716), + [585] = { + [sym_preproc_include] = STATE(638), + [sym_preproc_def] = STATE(638), + [sym_preproc_function_def] = STATE(638), + [sym_preproc_call] = STATE(638), + [sym_preproc_if_in_statements] = STATE(638), + [sym_preproc_ifdef_in_statements] = STATE(638), + [sym_internal_procedures] = STATE(7603), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(807), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(638), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(2728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), + [sym_preproc_comment] = ACTIONS(2732), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -162925,6 +161540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -162937,10 +161553,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -162949,7 +161565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2734), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -163001,95 +161617,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [594] = { - [sym_preproc_include] = STATE(604), - [sym_preproc_def] = STATE(604), - [sym_preproc_function_def] = STATE(604), - [sym_preproc_call] = STATE(604), - [sym_preproc_if_in_statements] = STATE(604), - [sym_preproc_ifdef_in_statements] = STATE(604), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(604), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2508), - [aux_sym_preproc_elif_token1] = ACTIONS(2508), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2508), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2508), - [sym_preproc_directive] = ACTIONS(2716), + [586] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2382), + [aux_sym_preproc_elif_token1] = ACTIONS(2382), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2382), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2382), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -163110,10 +161726,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -163122,7 +161738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -163174,100 +161790,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [595] = { - [sym_preproc_include] = STATE(606), - [sym_preproc_def] = STATE(606), - [sym_preproc_function_def] = STATE(606), - [sym_preproc_call] = STATE(606), - [sym_preproc_if_in_statements] = STATE(606), - [sym_preproc_ifdef_in_statements] = STATE(606), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(606), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2750), - [aux_sym_preproc_elif_token1] = ACTIONS(2750), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2750), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2750), - [sym_preproc_directive] = ACTIONS(2716), + [587] = { + [sym_preproc_include] = STATE(608), + [sym_preproc_def] = STATE(608), + [sym_preproc_function_def] = STATE(608), + [sym_preproc_call] = STATE(608), + [sym_preproc_if_in_statements] = STATE(608), + [sym_preproc_ifdef_in_statements] = STATE(608), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(780), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7409), + [sym_elseif_clause] = STATE(5579), + [sym_else_clause] = STATE(6107), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(608), + [aux_sym__block_if_statement_repeat1] = STATE(5579), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(2696), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -163283,10 +161898,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -163295,7 +161910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2736), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -163309,8 +161924,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), + [aux_sym_elseif_clause_token1] = ACTIONS(2702), + [aux_sym_elseif_clause_token2] = ACTIONS(2704), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -163347,100 +161963,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [596] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2754), - [aux_sym_preproc_elif_token1] = ACTIONS(2754), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2716), + [588] = { + [sym_preproc_include] = STATE(706), + [sym_preproc_def] = STATE(706), + [sym_preproc_function_def] = STATE(706), + [sym_preproc_call] = STATE(706), + [sym_preproc_if_in_statements] = STATE(706), + [sym_preproc_ifdef_in_statements] = STATE(706), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(780), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7409), + [sym_elseif_clause] = STATE(5579), + [sym_else_clause] = STATE(6107), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(706), + [aux_sym__block_if_statement_repeat1] = STATE(5579), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(2696), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -163456,10 +162071,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -163468,7 +162083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2738), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -163482,8 +162097,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), + [aux_sym_elseif_clause_token1] = ACTIONS(2702), + [aux_sym_elseif_clause_token2] = ACTIONS(2704), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -163520,95 +162136,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [597] = { - [sym_preproc_include] = STATE(607), - [sym_preproc_def] = STATE(607), - [sym_preproc_function_def] = STATE(607), - [sym_preproc_call] = STATE(607), - [sym_preproc_if_in_statements] = STATE(607), - [sym_preproc_ifdef_in_statements] = STATE(607), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(607), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2756), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2756), - [aux_sym_preproc_elif_token1] = ACTIONS(2756), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2756), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2756), - [sym_preproc_directive] = ACTIONS(2716), + [589] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2492), + [aux_sym_preproc_elif_token1] = ACTIONS(2492), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2492), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2492), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -163629,10 +162245,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -163641,7 +162257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -163693,95 +162309,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [598] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2756), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2756), - [aux_sym_preproc_elif_token1] = ACTIONS(2756), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2756), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2756), - [sym_preproc_directive] = ACTIONS(2716), + [590] = { + [sym_preproc_include] = STATE(620), + [sym_preproc_def] = STATE(620), + [sym_preproc_function_def] = STATE(620), + [sym_preproc_call] = STATE(620), + [sym_preproc_if_in_statements] = STATE(620), + [sym_preproc_ifdef_in_statements] = STATE(620), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(620), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2740), + [aux_sym_preproc_elif_token1] = ACTIONS(2740), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2740), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2740), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -163802,10 +162418,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -163814,7 +162430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2742), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -163866,95 +162482,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [599] = { - [sym_preproc_include] = STATE(609), - [sym_preproc_def] = STATE(609), - [sym_preproc_function_def] = STATE(609), - [sym_preproc_call] = STATE(609), - [sym_preproc_if_in_statements] = STATE(609), - [sym_preproc_ifdef_in_statements] = STATE(609), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(609), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2344), - [aux_sym_preproc_elif_token1] = ACTIONS(2344), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2344), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2344), - [sym_preproc_directive] = ACTIONS(2716), + [591] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2517), + [aux_sym_preproc_elif_token1] = ACTIONS(2517), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2517), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2517), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -163975,10 +162591,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -163987,7 +162603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -164039,95 +162655,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [600] = { - [sym_preproc_include] = STATE(611), - [sym_preproc_def] = STATE(611), - [sym_preproc_function_def] = STATE(611), - [sym_preproc_call] = STATE(611), - [sym_preproc_if_in_statements] = STATE(611), - [sym_preproc_ifdef_in_statements] = STATE(611), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(611), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2369), - [aux_sym_preproc_elif_token1] = ACTIONS(2369), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2369), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2369), - [sym_preproc_directive] = ACTIONS(2716), + [592] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2740), + [aux_sym_preproc_elif_token1] = ACTIONS(2740), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2740), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2740), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -164148,10 +162764,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -164160,7 +162776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -164212,95 +162828,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [601] = { + [593] = { [sym_preproc_include] = STATE(612), [sym_preproc_def] = STATE(612), [sym_preproc_function_def] = STATE(612), [sym_preproc_call] = STATE(612), [sym_preproc_if_in_statements] = STATE(612), [sym_preproc_ifdef_in_statements] = STATE(612), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2458), - [aux_sym_preproc_elif_token1] = ACTIONS(2458), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2458), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2458), - [sym_preproc_directive] = ACTIONS(2716), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2712), + [aux_sym_preproc_elif_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2712), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -164321,10 +162937,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -164333,7 +162949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -164385,103 +163001,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [602] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2458), - [aux_sym_preproc_elif_token1] = ACTIONS(2458), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2458), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2458), - [sym_preproc_directive] = ACTIONS(2716), + [594] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym_end_program_statement] = STATE(869), + [sym_internal_procedures] = STATE(6710), + [sym_contains_statement] = STATE(6394), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(2674), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2682), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(211), + [aux_sym_end_program_statement_token2] = ACTIONS(213), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -164494,10 +163110,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -164506,7 +163122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2684), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -164558,95 +163174,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [603] = { - [sym_preproc_include] = STATE(613), - [sym_preproc_def] = STATE(613), - [sym_preproc_function_def] = STATE(613), - [sym_preproc_call] = STATE(613), - [sym_preproc_if_in_statements] = STATE(613), - [sym_preproc_ifdef_in_statements] = STATE(613), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(613), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2553), - [aux_sym_preproc_elif_token1] = ACTIONS(2553), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2553), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2553), - [sym_preproc_directive] = ACTIONS(2716), + [595] = { + [sym_preproc_include] = STATE(569), + [sym_preproc_def] = STATE(569), + [sym_preproc_function_def] = STATE(569), + [sym_preproc_call] = STATE(569), + [sym_preproc_if_in_statements] = STATE(569), + [sym_preproc_ifdef_in_statements] = STATE(569), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(569), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2628), + [aux_sym_preproc_elif_token1] = ACTIONS(2628), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2628), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2628), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -164667,10 +163283,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -164679,7 +163295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2744), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -164731,95 +163347,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [604] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2553), - [aux_sym_preproc_elif_token1] = ACTIONS(2553), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2553), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2553), - [sym_preproc_directive] = ACTIONS(2716), + [596] = { + [sym_preproc_include] = STATE(575), + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_statements] = STATE(575), + [sym_preproc_ifdef_in_statements] = STATE(575), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(575), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2467), + [aux_sym_preproc_elif_token1] = ACTIONS(2467), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2467), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2467), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -164840,10 +163456,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -164852,7 +163468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2746), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -164904,103 +163520,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [605] = { - [sym_preproc_include] = STATE(614), - [sym_preproc_def] = STATE(614), - [sym_preproc_function_def] = STATE(614), - [sym_preproc_call] = STATE(614), - [sym_preproc_if_in_statements] = STATE(614), - [sym_preproc_ifdef_in_statements] = STATE(614), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(614), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2768), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2716), + [597] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym_end_program_statement] = STATE(1079), + [sym_internal_procedures] = STATE(6874), + [sym_contains_statement] = STATE(6394), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(2674), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2682), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(648), + [aux_sym_end_program_statement_token2] = ACTIONS(650), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -165013,10 +163629,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -165025,7 +163641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2684), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -165077,95 +163693,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [606] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2768), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2768), - [sym_preproc_directive] = ACTIONS(2716), + [598] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2748), + [aux_sym_preproc_elif_token1] = ACTIONS(2748), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2748), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2748), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -165186,10 +163802,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -165198,7 +163814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -165250,95 +163866,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [607] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2772), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2772), - [aux_sym_preproc_elif_token1] = ACTIONS(2772), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2772), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2772), - [sym_preproc_directive] = ACTIONS(2716), + [599] = { + [sym_preproc_include] = STATE(610), + [sym_preproc_def] = STATE(610), + [sym_preproc_function_def] = STATE(610), + [sym_preproc_call] = STATE(610), + [sym_preproc_if_in_statements] = STATE(610), + [sym_preproc_ifdef_in_statements] = STATE(610), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(610), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2653), + [aux_sym_preproc_elif_token1] = ACTIONS(2653), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2653), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -165359,10 +163975,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -165371,7 +163987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2750), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -165423,95 +164039,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [608] = { - [sym_preproc_include] = STATE(615), - [sym_preproc_def] = STATE(615), - [sym_preproc_function_def] = STATE(615), - [sym_preproc_call] = STATE(615), - [sym_preproc_if_in_statements] = STATE(615), - [sym_preproc_ifdef_in_statements] = STATE(615), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(615), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2655), - [aux_sym_preproc_elif_token1] = ACTIONS(2655), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2716), + [600] = { + [sym_preproc_include] = STATE(580), + [sym_preproc_def] = STATE(580), + [sym_preproc_function_def] = STATE(580), + [sym_preproc_call] = STATE(580), + [sym_preproc_if_in_statements] = STATE(580), + [sym_preproc_ifdef_in_statements] = STATE(580), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(580), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2309), + [aux_sym_preproc_elif_token1] = ACTIONS(2309), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2309), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2309), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -165532,10 +164148,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -165544,7 +164160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2752), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -165596,95 +164212,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [609] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2655), - [aux_sym_preproc_elif_token1] = ACTIONS(2655), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2716), + [601] = { + [sym_preproc_include] = STATE(573), + [sym_preproc_def] = STATE(573), + [sym_preproc_function_def] = STATE(573), + [sym_preproc_call] = STATE(573), + [sym_preproc_if_in_statements] = STATE(573), + [sym_preproc_ifdef_in_statements] = STATE(573), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(573), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2567), + [aux_sym_preproc_elif_token1] = ACTIONS(2567), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2567), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2567), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -165705,10 +164321,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -165717,7 +164333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2754), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -165769,95 +164385,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [610] = { - [sym_preproc_include] = STATE(616), - [sym_preproc_def] = STATE(616), - [sym_preproc_function_def] = STATE(616), - [sym_preproc_call] = STATE(616), - [sym_preproc_if_in_statements] = STATE(616), - [sym_preproc_ifdef_in_statements] = STATE(616), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(616), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2259), - [aux_sym_preproc_elif_token1] = ACTIONS(2259), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2259), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2259), - [sym_preproc_directive] = ACTIONS(2716), + [602] = { + [sym_preproc_include] = STATE(606), + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_statements] = STATE(606), + [sym_preproc_ifdef_in_statements] = STATE(606), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(606), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2756), + [aux_sym_preproc_elif_token1] = ACTIONS(2756), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2756), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2756), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -165878,10 +164494,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -165890,7 +164506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2758), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -165942,103 +164558,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [611] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2259), - [aux_sym_preproc_elif_token1] = ACTIONS(2259), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2259), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2259), - [sym_preproc_directive] = ACTIONS(2716), + [603] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym_end_program_statement] = STATE(852), + [sym_internal_procedures] = STATE(6396), + [sym_contains_statement] = STATE(6394), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(2674), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2682), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(211), + [aux_sym_end_program_statement_token2] = ACTIONS(213), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -166051,10 +164667,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -166063,7 +164679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2684), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -166115,100 +164731,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [612] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2286), - [aux_sym_preproc_elif_token1] = ACTIONS(2286), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2286), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2286), - [sym_preproc_directive] = ACTIONS(2716), + [604] = { + [sym_preproc_include] = STATE(706), + [sym_preproc_def] = STATE(706), + [sym_preproc_function_def] = STATE(706), + [sym_preproc_call] = STATE(706), + [sym_preproc_if_in_statements] = STATE(706), + [sym_preproc_ifdef_in_statements] = STATE(706), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(778), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7208), + [sym_elseif_clause] = STATE(5587), + [sym_else_clause] = STATE(6092), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(706), + [aux_sym__block_if_statement_repeat1] = STATE(5587), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(2696), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -166224,10 +164839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -166236,7 +164851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2738), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -166250,8 +164865,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), + [aux_sym_elseif_clause_token1] = ACTIONS(2702), + [aux_sym_elseif_clause_token2] = ACTIONS(2704), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -166288,95 +164904,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [613] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2309), - [aux_sym_preproc_elif_token1] = ACTIONS(2309), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2309), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2309), - [sym_preproc_directive] = ACTIONS(2716), + [605] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2760), + [aux_sym_preproc_elif_token1] = ACTIONS(2760), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2760), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2760), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -166397,10 +165013,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -166409,7 +165025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -166461,95 +165077,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [614] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2716), + [606] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2718), + [aux_sym_preproc_elif_token1] = ACTIONS(2718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2718), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -166570,10 +165186,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -166582,7 +165198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -166634,95 +165250,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [615] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2412), - [aux_sym_preproc_elif_token1] = ACTIONS(2412), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2412), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2412), - [sym_preproc_directive] = ACTIONS(2716), + [607] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2762), + [aux_sym_preproc_elif_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2762), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -166743,10 +165359,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -166755,7 +165371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -166807,100 +165423,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [616] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2435), - [aux_sym_preproc_elif_token1] = ACTIONS(2435), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2435), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2435), - [sym_preproc_directive] = ACTIONS(2716), + [608] = { + [sym_preproc_include] = STATE(706), + [sym_preproc_def] = STATE(706), + [sym_preproc_function_def] = STATE(706), + [sym_preproc_call] = STATE(706), + [sym_preproc_if_in_statements] = STATE(706), + [sym_preproc_ifdef_in_statements] = STATE(706), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(782), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7107), + [sym_elseif_clause] = STATE(5606), + [sym_else_clause] = STATE(6094), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(706), + [aux_sym__block_if_statement_repeat1] = STATE(5606), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(2696), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -166916,10 +165531,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -166928,7 +165543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2738), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -166942,8 +165557,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), + [aux_sym_elseif_clause_token1] = ACTIONS(2702), + [aux_sym_elseif_clause_token2] = ACTIONS(2704), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -166980,99 +165596,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [617] = { - [sym_preproc_include] = STATE(577), - [sym_preproc_def] = STATE(577), - [sym_preproc_function_def] = STATE(577), - [sym_preproc_call] = STATE(577), - [sym_preproc_if_in_statements] = STATE(577), - [sym_preproc_ifdef_in_statements] = STATE(577), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(779), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7126), - [sym_elseif_clause] = STATE(5584), - [sym_else_clause] = STATE(6027), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(577), - [aux_sym__block_if_statement_repeat1] = STATE(5584), + [609] = { + [sym_preproc_include] = STATE(589), + [sym_preproc_def] = STATE(589), + [sym_preproc_function_def] = STATE(589), + [sym_preproc_call] = STATE(589), + [sym_preproc_if_in_statements] = STATE(589), + [sym_preproc_ifdef_in_statements] = STATE(589), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(589), [aux_sym_preproc_include_token1] = ACTIONS(2662), [aux_sym_preproc_def_token1] = ACTIONS(2664), [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2542), [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2542), + [aux_sym_preproc_elif_token1] = ACTIONS(2542), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2542), [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2672), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -167088,10 +165705,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -167100,7 +165717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2764), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -167114,9 +165731,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), - [aux_sym_elseif_clause_token1] = ACTIONS(2678), - [aux_sym_elseif_clause_token2] = ACTIONS(2680), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -167153,99 +165769,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [618] = { - [sym_preproc_include] = STATE(728), - [sym_preproc_def] = STATE(728), - [sym_preproc_function_def] = STATE(728), - [sym_preproc_call] = STATE(728), - [sym_preproc_if_in_statements] = STATE(728), - [sym_preproc_ifdef_in_statements] = STATE(728), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(783), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7252), - [sym_elseif_clause] = STATE(5593), - [sym_else_clause] = STATE(5925), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(728), - [aux_sym__block_if_statement_repeat1] = STATE(5593), + [610] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), [aux_sym_preproc_include_token1] = ACTIONS(2662), [aux_sym_preproc_def_token1] = ACTIONS(2664), [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2405), [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2405), [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2672), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -167261,10 +165878,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -167273,7 +165890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -167287,9 +165904,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), - [aux_sym_elseif_clause_token1] = ACTIONS(2678), - [aux_sym_elseif_clause_token2] = ACTIONS(2680), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -167326,95 +165942,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [619] = { - [sym_preproc_include] = STATE(619), - [sym_preproc_def] = STATE(619), - [sym_preproc_function_def] = STATE(619), - [sym_preproc_call] = STATE(619), - [sym_preproc_if_in_statements] = STATE(619), - [sym_preproc_ifdef_in_statements] = STATE(619), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(619), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2788), + [611] = { + [sym_preproc_include] = STATE(591), + [sym_preproc_def] = STATE(591), + [sym_preproc_function_def] = STATE(591), + [sym_preproc_call] = STATE(591), + [sym_preproc_if_in_statements] = STATE(591), + [sym_preproc_ifdef_in_statements] = STATE(591), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(591), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2241), + [aux_sym_preproc_elif_token1] = ACTIONS(2241), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2241), + [sym_preproc_directive] = ACTIONS(2670), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(2766), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [612] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2768), + [aux_sym_preproc_def_token1] = ACTIONS(2771), + [aux_sym_preproc_if_token1] = ACTIONS(2774), [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2791), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2791), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), [aux_sym_preproc_else_token1] = ACTIONS(2059), [aux_sym_preproc_elif_token1] = ACTIONS(2059), [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2794), + [sym_preproc_directive] = ACTIONS(2780), [anon_sym_LPAREN2] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2070), [anon_sym_DASH] = ACTIONS(2070), @@ -167447,7 +166236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), [aux_sym_type_qualifier_token1] = ACTIONS(2082), [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2783), [aux_sym_stop_statement_token1] = ACTIONS(2094), [aux_sym_stop_statement_token2] = ACTIONS(2097), [aux_sym_subroutine_call_token1] = ACTIONS(2100), @@ -167505,97 +166294,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(2217), [sym__string_literal_kind] = ACTIONS(2220), }, - [620] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym_end_program_statement] = STATE(889), - [sym_internal_procedures] = STATE(6918), - [sym_contains_statement] = STATE(6691), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2684), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2688), - [sym_preproc_directive] = ACTIONS(2690), + [613] = { + [sym_preproc_include] = STATE(598), + [sym_preproc_def] = STATE(598), + [sym_preproc_function_def] = STATE(598), + [sym_preproc_call] = STATE(598), + [sym_preproc_if_in_statements] = STATE(598), + [sym_preproc_ifdef_in_statements] = STATE(598), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(598), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2760), + [aux_sym_preproc_elif_token1] = ACTIONS(2760), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2760), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2760), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(211), - [aux_sym_end_program_statement_token2] = ACTIONS(213), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -167608,10 +166397,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -167620,7 +166409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2786), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -167672,95 +166461,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [621] = { - [sym_preproc_include] = STATE(623), - [sym_preproc_def] = STATE(623), - [sym_preproc_function_def] = STATE(623), - [sym_preproc_call] = STATE(623), - [sym_preproc_if_in_statements] = STATE(623), - [sym_preproc_ifdef_in_statements] = STATE(623), - [sym_internal_procedures] = STATE(7493), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(623), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(2800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [614] = { + [sym_preproc_include] = STATE(574), + [sym_preproc_def] = STATE(574), + [sym_preproc_function_def] = STATE(574), + [sym_preproc_call] = STATE(574), + [sym_preproc_if_in_statements] = STATE(574), + [sym_preproc_ifdef_in_statements] = STATE(574), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(574), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), - [sym_preproc_comment] = ACTIONS(2802), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -167768,7 +166558,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -167781,10 +166570,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -167793,7 +166582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2788), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -167845,95 +166634,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [622] = { - [sym_preproc_include] = STATE(592), - [sym_preproc_def] = STATE(592), - [sym_preproc_function_def] = STATE(592), - [sym_preproc_call] = STATE(592), - [sym_preproc_if_in_statements] = STATE(592), - [sym_preproc_ifdef_in_statements] = STATE(592), - [sym__statements] = STATE(6790), - [sym_statement_label] = STATE(792), - [sym_stop_statement] = STATE(6790), - [sym_assignment_statement] = STATE(6790), - [sym_pointer_association_statement] = STATE(6790), - [sym_subroutine_call] = STATE(6790), - [sym_keyword_statement] = STATE(6790), - [sym_include_statement] = STATE(6790), - [sym_do_loop_statement] = STATE(6790), - [sym_do_label_statement] = STATE(6790), - [sym_end_do_label_statement] = STATE(6790), - [sym_if_statement] = STATE(6790), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6790), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6790), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6790), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6790), - [sym_select_type_statement] = STATE(6790), - [sym_select_rank_statement] = STATE(6790), - [sym_block_construct] = STATE(6790), - [sym_associate_statement] = STATE(6790), - [sym_format_statement] = STATE(6790), - [sym_read_statement] = STATE(6790), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6790), - [sym_open_statement] = STATE(6790), - [sym_close_statement] = STATE(6790), - [sym_write_statement] = STATE(6790), - [sym_inquire_statement] = STATE(6790), - [sym_file_position_statement] = STATE(6790), - [sym_allocate_statement] = STATE(6790), - [sym_entry_statement] = STATE(6790), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6790), - [sym_coarray_team_statement] = STATE(6790), - [sym_coarray_critical_statement] = STATE(6790), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(592), - [aux_sym_preproc_include_token1] = ACTIONS(2708), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2712), - [aux_sym_preproc_if_token2] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2714), - [aux_sym_preproc_else_token1] = ACTIONS(2734), - [aux_sym_preproc_elif_token1] = ACTIONS(2734), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2734), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2734), - [sym_preproc_directive] = ACTIONS(2716), + [615] = { + [sym_preproc_include] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_preproc_call] = STATE(586), + [sym_preproc_if_in_statements] = STATE(586), + [sym_preproc_ifdef_in_statements] = STATE(586), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(586), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2334), + [aux_sym_preproc_elif_token1] = ACTIONS(2334), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2334), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2334), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -167954,10 +166743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -167966,7 +166755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2790), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -168018,98 +166807,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [623] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(7942), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(2808), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [616] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym_end_program_statement] = STATE(1033), + [sym_internal_procedures] = STATE(6329), + [sym_contains_statement] = STATE(6394), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(2674), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2682), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(648), + [aux_sym_end_program_statement_token2] = ACTIONS(650), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -168126,10 +166916,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -168138,7 +166928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2684), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -168190,98 +166980,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [624] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(8246), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(2812), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [617] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym_end_program_statement] = STATE(1066), + [sym_internal_procedures] = STATE(6836), + [sym_contains_statement] = STATE(6394), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(2674), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2682), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(648), + [aux_sym_end_program_statement_token2] = ACTIONS(650), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -168298,10 +167089,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -168310,7 +167101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2684), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -168362,98 +167153,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [625] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(8102), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(2814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [618] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym_end_program_statement] = STATE(1056), + [sym_internal_procedures] = STATE(7027), + [sym_contains_statement] = STATE(6394), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(2674), + [aux_sym_preproc_def_token1] = ACTIONS(2676), + [aux_sym_preproc_if_token1] = ACTIONS(2678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2680), + [sym_preproc_directive] = ACTIONS(2682), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(25), + [aux_sym_end_program_statement_token2] = ACTIONS(27), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -168470,10 +167262,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -168482,7 +167274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2684), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -168534,94 +167326,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [626] = { - [sym_preproc_include] = STATE(637), - [sym_preproc_def] = STATE(637), - [sym_preproc_function_def] = STATE(637), - [sym_preproc_call] = STATE(637), - [sym_preproc_if_in_statements] = STATE(637), - [sym_preproc_ifdef_in_statements] = STATE(637), - [sym_internal_procedures] = STATE(7942), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), + [619] = { + [sym_preproc_include] = STATE(628), + [sym_preproc_def] = STATE(628), + [sym_preproc_function_def] = STATE(628), + [sym_preproc_call] = STATE(628), + [sym_preproc_if_in_statements] = STATE(628), + [sym_preproc_ifdef_in_statements] = STATE(628), + [sym_internal_procedures] = STATE(8224), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(637), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(628), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(2808), + [aux_sym_preproc_if_token2] = ACTIONS(2792), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), + [sym_preproc_comment] = ACTIONS(2794), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), @@ -168642,10 +167435,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -168654,7 +167447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2796), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -168706,437 +167499,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [627] = { - [sym_preproc_include] = STATE(627), - [sym_preproc_def] = STATE(627), - [sym_preproc_function_def] = STATE(627), - [sym_preproc_call] = STATE(627), - [sym_preproc_if_in_statements] = STATE(627), - [sym_preproc_ifdef_in_statements] = STATE(627), - [sym_preproc_if_in_procedure_statements] = STATE(627), - [sym_preproc_ifdef_in_procedure_statements] = STATE(627), - [sym__statements] = STATE(6375), - [sym_statement_label] = STATE(799), - [sym_stop_statement] = STATE(6375), - [sym_assignment_statement] = STATE(6375), - [sym_pointer_association_statement] = STATE(6375), - [sym_subroutine_call] = STATE(6375), - [sym_keyword_statement] = STATE(6375), - [sym_include_statement] = STATE(6375), - [sym_do_loop_statement] = STATE(6375), - [sym_do_label_statement] = STATE(6375), - [sym_end_do_label_statement] = STATE(6375), - [sym_if_statement] = STATE(6375), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6375), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6375), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6375), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6375), - [sym_select_type_statement] = STATE(6375), - [sym_select_rank_statement] = STATE(6375), - [sym_block_construct] = STATE(6375), - [sym_associate_statement] = STATE(6375), - [sym_format_statement] = STATE(6375), - [sym_read_statement] = STATE(6375), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6375), - [sym_open_statement] = STATE(6375), - [sym_close_statement] = STATE(6375), - [sym_write_statement] = STATE(6375), - [sym_inquire_statement] = STATE(6375), - [sym_file_position_statement] = STATE(6375), - [sym_allocate_statement] = STATE(6375), - [sym_entry_statement] = STATE(6375), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6375), - [sym_coarray_team_statement] = STATE(6375), - [sym_coarray_critical_statement] = STATE(6375), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(627), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2821), - [aux_sym_preproc_if_token1] = ACTIONS(2824), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2827), - [sym_preproc_directive] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2839), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2842), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2845), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(2848), - [aux_sym_procedure_attributes_token3] = ACTIONS(2850), - [aux_sym_contains_statement_token1] = ACTIONS(2848), - [aux_sym_use_statement_token2] = ACTIONS(2850), - [aux_sym_implicit_statement_token4] = ACTIONS(2850), - [aux_sym_save_statement_token1] = ACTIONS(2850), - [aux_sym_private_statement_token1] = ACTIONS(2850), - [aux_sym_public_statement_token1] = ACTIONS(2850), - [aux_sym_derived_type_definition_token1] = ACTIONS(2850), - [aux_sym_procedure_attribute_token6] = ACTIONS(2850), - [aux_sym_variable_attributes_token2] = ACTIONS(2850), - [aux_sym_variable_attributes_token3] = ACTIONS(2850), - [aux_sym_variable_attributes_token5] = ACTIONS(2850), - [aux_sym__intrinsic_type_token1] = ACTIONS(2850), - [aux_sym__intrinsic_type_token3] = ACTIONS(2850), - [aux_sym__intrinsic_type_token4] = ACTIONS(2853), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2856), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2850), - [aux_sym_type_qualifier_token1] = ACTIONS(2850), - [aux_sym_type_qualifier_token2] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2859), - [aux_sym_stop_statement_token1] = ACTIONS(2862), - [aux_sym_stop_statement_token2] = ACTIONS(2865), - [aux_sym_subroutine_call_token1] = ACTIONS(2868), - [aux_sym_keyword_statement_token1] = ACTIONS(2871), - [aux_sym_keyword_statement_token2] = ACTIONS(2874), - [aux_sym_keyword_statement_token3] = ACTIONS(2874), - [aux_sym_keyword_statement_token4] = ACTIONS(2877), - [aux_sym_keyword_statement_token6] = ACTIONS(2880), - [aux_sym_keyword_statement_token7] = ACTIONS(2871), - [aux_sym_include_statement_token1] = ACTIONS(2883), - [aux_sym_data_statement_token1] = ACTIONS(2850), - [aux_sym_do_loop_statement_token1] = ACTIONS(2886), - [aux_sym__inline_if_statement_token1] = ACTIONS(2889), - [aux_sym_end_if_statement_token1] = ACTIONS(2850), - [aux_sym_elseif_clause_token2] = ACTIONS(2850), - [aux_sym__inline_where_statement_token1] = ACTIONS(2892), - [aux_sym__forall_control_expression_token1] = ACTIONS(2895), - [aux_sym_select_case_statement_token1] = ACTIONS(2898), - [aux_sym_select_case_statement_token3] = ACTIONS(2901), - [aux_sym_select_type_statement_token1] = ACTIONS(2904), - [aux_sym_select_rank_statement_token2] = ACTIONS(2907), - [aux_sym_block_construct_token1] = ACTIONS(2910), - [aux_sym_associate_statement_token1] = ACTIONS(2913), - [aux_sym_format_statement_token1] = ACTIONS(2916), - [aux_sym_print_statement_token1] = ACTIONS(2919), - [aux_sym_open_statement_token1] = ACTIONS(2922), - [aux_sym_close_statement_token1] = ACTIONS(2925), - [aux_sym_inquire_statement_token1] = ACTIONS(2928), - [aux_sym_file_position_statement_token1] = ACTIONS(2931), - [aux_sym_file_position_statement_token2] = ACTIONS(2931), - [aux_sym_file_position_statement_token3] = ACTIONS(2931), - [aux_sym_file_position_statement_token4] = ACTIONS(2934), - [aux_sym_allocate_statement_token1] = ACTIONS(2937), - [aux_sym_entry_statement_token1] = ACTIONS(2940), - [aux_sym_logical_expression_token5] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2946), - [anon_sym_LPAREN_SLASH] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2952), - [aux_sym_boolean_literal_token1] = ACTIONS(2955), - [aux_sym_boolean_literal_token2] = ACTIONS(2955), - [aux_sym_null_literal_token1] = ACTIONS(2958), - [aux_sym_coarray_statement_token1] = ACTIONS(2961), - [aux_sym_coarray_statement_token2] = ACTIONS(2961), - [aux_sym_coarray_statement_token6] = ACTIONS(2964), - [aux_sym_coarray_statement_token8] = ACTIONS(2967), - [aux_sym_coarray_statement_token11] = ACTIONS(2970), - [aux_sym_coarray_statement_token12] = ACTIONS(2970), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2973), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2976), - [aux_sym_identifier_token1] = ACTIONS(2850), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2979), - [sym__float_literal] = ACTIONS(2982), - [sym__boz_literal] = ACTIONS(2982), - [sym__string_literal] = ACTIONS(2985), - [sym__string_literal_kind] = ACTIONS(2988), - }, - [628] = { - [sym_preproc_include] = STATE(628), - [sym_preproc_def] = STATE(628), - [sym_preproc_function_def] = STATE(628), - [sym_preproc_call] = STATE(628), - [sym_preproc_if_in_statements] = STATE(628), - [sym_preproc_ifdef_in_statements] = STATE(628), - [sym_preproc_if_in_procedure_statements] = STATE(628), - [sym_preproc_ifdef_in_procedure_statements] = STATE(628), - [sym__statements] = STATE(6991), - [sym_statement_label] = STATE(801), - [sym_stop_statement] = STATE(6991), - [sym_assignment_statement] = STATE(6991), - [sym_pointer_association_statement] = STATE(6991), - [sym_subroutine_call] = STATE(6991), - [sym_keyword_statement] = STATE(6991), - [sym_include_statement] = STATE(6991), - [sym_do_loop_statement] = STATE(6991), - [sym_do_label_statement] = STATE(6991), - [sym_end_do_label_statement] = STATE(6991), - [sym_if_statement] = STATE(6991), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6991), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6991), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6991), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6991), - [sym_select_type_statement] = STATE(6991), - [sym_select_rank_statement] = STATE(6991), - [sym_block_construct] = STATE(6991), - [sym_associate_statement] = STATE(6991), - [sym_format_statement] = STATE(6991), - [sym_read_statement] = STATE(6991), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6991), - [sym_open_statement] = STATE(6991), - [sym_close_statement] = STATE(6991), - [sym_write_statement] = STATE(6991), - [sym_inquire_statement] = STATE(6991), - [sym_file_position_statement] = STATE(6991), - [sym_allocate_statement] = STATE(6991), - [sym_entry_statement] = STATE(6991), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6991), - [sym_coarray_team_statement] = STATE(6991), - [sym_coarray_critical_statement] = STATE(6991), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(628), - [aux_sym_preproc_include_token1] = ACTIONS(2991), - [aux_sym_preproc_def_token1] = ACTIONS(2994), - [aux_sym_preproc_if_token1] = ACTIONS(2997), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3000), - [sym_preproc_directive] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2839), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2842), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2845), - [aux_sym_procedure_attributes_token3] = ACTIONS(2850), - [aux_sym_end_function_statement_token1] = ACTIONS(2848), - [aux_sym_contains_statement_token1] = ACTIONS(2848), - [aux_sym_use_statement_token2] = ACTIONS(2850), - [aux_sym_implicit_statement_token4] = ACTIONS(2850), - [aux_sym_save_statement_token1] = ACTIONS(2850), - [aux_sym_private_statement_token1] = ACTIONS(2850), - [aux_sym_public_statement_token1] = ACTIONS(2850), - [aux_sym_derived_type_definition_token1] = ACTIONS(2850), - [aux_sym_procedure_attribute_token6] = ACTIONS(2850), - [aux_sym_variable_attributes_token2] = ACTIONS(2850), - [aux_sym_variable_attributes_token3] = ACTIONS(2850), - [aux_sym_variable_attributes_token5] = ACTIONS(2850), - [aux_sym__intrinsic_type_token1] = ACTIONS(2850), - [aux_sym__intrinsic_type_token3] = ACTIONS(2850), - [aux_sym__intrinsic_type_token4] = ACTIONS(2853), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2856), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2850), - [aux_sym_type_qualifier_token1] = ACTIONS(2850), - [aux_sym_type_qualifier_token2] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(3006), - [aux_sym_stop_statement_token1] = ACTIONS(2862), - [aux_sym_stop_statement_token2] = ACTIONS(2865), - [aux_sym_subroutine_call_token1] = ACTIONS(2868), - [aux_sym_keyword_statement_token1] = ACTIONS(2871), - [aux_sym_keyword_statement_token2] = ACTIONS(2874), - [aux_sym_keyword_statement_token3] = ACTIONS(2874), - [aux_sym_keyword_statement_token4] = ACTIONS(2877), - [aux_sym_keyword_statement_token6] = ACTIONS(2880), - [aux_sym_keyword_statement_token7] = ACTIONS(2871), - [aux_sym_include_statement_token1] = ACTIONS(2883), - [aux_sym_data_statement_token1] = ACTIONS(2850), - [aux_sym_do_loop_statement_token1] = ACTIONS(2886), - [aux_sym__inline_if_statement_token1] = ACTIONS(2889), - [aux_sym_end_if_statement_token1] = ACTIONS(2850), - [aux_sym_elseif_clause_token2] = ACTIONS(2850), - [aux_sym__inline_where_statement_token1] = ACTIONS(2892), - [aux_sym__forall_control_expression_token1] = ACTIONS(2895), - [aux_sym_select_case_statement_token1] = ACTIONS(2898), - [aux_sym_select_case_statement_token3] = ACTIONS(2901), - [aux_sym_select_type_statement_token1] = ACTIONS(2904), - [aux_sym_select_rank_statement_token2] = ACTIONS(2907), - [aux_sym_block_construct_token1] = ACTIONS(2910), - [aux_sym_associate_statement_token1] = ACTIONS(2913), - [aux_sym_format_statement_token1] = ACTIONS(2916), - [aux_sym_print_statement_token1] = ACTIONS(2919), - [aux_sym_open_statement_token1] = ACTIONS(2922), - [aux_sym_close_statement_token1] = ACTIONS(2925), - [aux_sym_inquire_statement_token1] = ACTIONS(2928), - [aux_sym_file_position_statement_token1] = ACTIONS(2931), - [aux_sym_file_position_statement_token2] = ACTIONS(2931), - [aux_sym_file_position_statement_token3] = ACTIONS(2931), - [aux_sym_file_position_statement_token4] = ACTIONS(2934), - [aux_sym_allocate_statement_token1] = ACTIONS(2937), - [aux_sym_entry_statement_token1] = ACTIONS(2940), - [aux_sym_logical_expression_token5] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2946), - [anon_sym_LPAREN_SLASH] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2952), - [aux_sym_boolean_literal_token1] = ACTIONS(2955), - [aux_sym_boolean_literal_token2] = ACTIONS(2955), - [aux_sym_null_literal_token1] = ACTIONS(2958), - [aux_sym_coarray_statement_token1] = ACTIONS(2961), - [aux_sym_coarray_statement_token2] = ACTIONS(2961), - [aux_sym_coarray_statement_token6] = ACTIONS(2964), - [aux_sym_coarray_statement_token8] = ACTIONS(2967), - [aux_sym_coarray_statement_token11] = ACTIONS(2970), - [aux_sym_coarray_statement_token12] = ACTIONS(2970), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2973), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2976), - [aux_sym_identifier_token1] = ACTIONS(2850), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2979), - [sym__float_literal] = ACTIONS(2982), - [sym__boz_literal] = ACTIONS(2982), - [sym__string_literal] = ACTIONS(2985), - [sym__string_literal_kind] = ACTIONS(2988), - }, - [629] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(8323), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [620] = { + [sym_preproc_include] = STATE(612), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_statements] = STATE(612), + [sym_preproc_ifdef_in_statements] = STATE(612), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(612), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2798), + [aux_sym_preproc_elif_token1] = ACTIONS(2798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2798), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2798), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -169145,7 +167596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -169158,10 +167608,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -169170,7 +167620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2672), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -169222,265 +167672,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [630] = { - [sym_preproc_include] = STATE(630), - [sym_preproc_def] = STATE(630), - [sym_preproc_function_def] = STATE(630), - [sym_preproc_call] = STATE(630), - [sym_preproc_if_in_statements] = STATE(630), - [sym_preproc_ifdef_in_statements] = STATE(630), - [sym_preproc_if_in_procedure_statements] = STATE(630), - [sym_preproc_ifdef_in_procedure_statements] = STATE(630), - [sym__statements] = STATE(6561), - [sym_statement_label] = STATE(795), - [sym_stop_statement] = STATE(6561), - [sym_assignment_statement] = STATE(6561), - [sym_pointer_association_statement] = STATE(6561), - [sym_subroutine_call] = STATE(6561), - [sym_keyword_statement] = STATE(6561), - [sym_include_statement] = STATE(6561), - [sym_do_loop_statement] = STATE(6561), - [sym_do_label_statement] = STATE(6561), - [sym_end_do_label_statement] = STATE(6561), - [sym_if_statement] = STATE(6561), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6561), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6561), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6561), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6561), - [sym_select_type_statement] = STATE(6561), - [sym_select_rank_statement] = STATE(6561), - [sym_block_construct] = STATE(6561), - [sym_associate_statement] = STATE(6561), - [sym_format_statement] = STATE(6561), - [sym_read_statement] = STATE(6561), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6561), - [sym_open_statement] = STATE(6561), - [sym_close_statement] = STATE(6561), - [sym_write_statement] = STATE(6561), - [sym_inquire_statement] = STATE(6561), - [sym_file_position_statement] = STATE(6561), - [sym_allocate_statement] = STATE(6561), - [sym_entry_statement] = STATE(6561), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6561), - [sym_coarray_team_statement] = STATE(6561), - [sym_coarray_critical_statement] = STATE(6561), - [sym_identifier] = STATE(4690), - [aux_sym_subroutine_repeat1] = STATE(630), - [aux_sym_preproc_include_token1] = ACTIONS(3009), - [aux_sym_preproc_def_token1] = ACTIONS(3012), - [aux_sym_preproc_if_token1] = ACTIONS(3015), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3018), - [sym_preproc_directive] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2839), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2842), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2845), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(2848), - [aux_sym_procedure_attributes_token3] = ACTIONS(2850), - [aux_sym_contains_statement_token1] = ACTIONS(2848), - [aux_sym_use_statement_token2] = ACTIONS(2850), - [aux_sym_implicit_statement_token4] = ACTIONS(2850), - [aux_sym_save_statement_token1] = ACTIONS(2850), - [aux_sym_private_statement_token1] = ACTIONS(2850), - [aux_sym_public_statement_token1] = ACTIONS(2850), - [aux_sym_derived_type_definition_token1] = ACTIONS(2850), - [aux_sym_procedure_attribute_token6] = ACTIONS(2850), - [aux_sym_variable_attributes_token2] = ACTIONS(2850), - [aux_sym_variable_attributes_token3] = ACTIONS(2850), - [aux_sym_variable_attributes_token5] = ACTIONS(2850), - [aux_sym__intrinsic_type_token1] = ACTIONS(2850), - [aux_sym__intrinsic_type_token3] = ACTIONS(2850), - [aux_sym__intrinsic_type_token4] = ACTIONS(2853), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2856), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2850), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2850), - [aux_sym_type_qualifier_token1] = ACTIONS(2850), - [aux_sym_type_qualifier_token2] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(3024), - [aux_sym_stop_statement_token1] = ACTIONS(2862), - [aux_sym_stop_statement_token2] = ACTIONS(2865), - [aux_sym_subroutine_call_token1] = ACTIONS(2868), - [aux_sym_keyword_statement_token1] = ACTIONS(2871), - [aux_sym_keyword_statement_token2] = ACTIONS(2874), - [aux_sym_keyword_statement_token3] = ACTIONS(2874), - [aux_sym_keyword_statement_token4] = ACTIONS(2877), - [aux_sym_keyword_statement_token6] = ACTIONS(2880), - [aux_sym_keyword_statement_token7] = ACTIONS(2871), - [aux_sym_include_statement_token1] = ACTIONS(2883), - [aux_sym_data_statement_token1] = ACTIONS(2850), - [aux_sym_do_loop_statement_token1] = ACTIONS(2886), - [aux_sym__inline_if_statement_token1] = ACTIONS(2889), - [aux_sym_end_if_statement_token1] = ACTIONS(2850), - [aux_sym_elseif_clause_token2] = ACTIONS(2850), - [aux_sym__inline_where_statement_token1] = ACTIONS(2892), - [aux_sym__forall_control_expression_token1] = ACTIONS(2895), - [aux_sym_select_case_statement_token1] = ACTIONS(2898), - [aux_sym_select_case_statement_token3] = ACTIONS(2901), - [aux_sym_select_type_statement_token1] = ACTIONS(2904), - [aux_sym_select_rank_statement_token2] = ACTIONS(2907), - [aux_sym_block_construct_token1] = ACTIONS(2910), - [aux_sym_associate_statement_token1] = ACTIONS(2913), - [aux_sym_format_statement_token1] = ACTIONS(2916), - [aux_sym_print_statement_token1] = ACTIONS(2919), - [aux_sym_open_statement_token1] = ACTIONS(2922), - [aux_sym_close_statement_token1] = ACTIONS(2925), - [aux_sym_inquire_statement_token1] = ACTIONS(2928), - [aux_sym_file_position_statement_token1] = ACTIONS(2931), - [aux_sym_file_position_statement_token2] = ACTIONS(2931), - [aux_sym_file_position_statement_token3] = ACTIONS(2931), - [aux_sym_file_position_statement_token4] = ACTIONS(2934), - [aux_sym_allocate_statement_token1] = ACTIONS(2937), - [aux_sym_entry_statement_token1] = ACTIONS(2940), - [aux_sym_logical_expression_token5] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2946), - [anon_sym_LPAREN_SLASH] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2952), - [aux_sym_boolean_literal_token1] = ACTIONS(2955), - [aux_sym_boolean_literal_token2] = ACTIONS(2955), - [aux_sym_null_literal_token1] = ACTIONS(2958), - [aux_sym_coarray_statement_token1] = ACTIONS(2961), - [aux_sym_coarray_statement_token2] = ACTIONS(2961), - [aux_sym_coarray_statement_token6] = ACTIONS(2964), - [aux_sym_coarray_statement_token8] = ACTIONS(2967), - [aux_sym_coarray_statement_token11] = ACTIONS(2970), - [aux_sym_coarray_statement_token12] = ACTIONS(2970), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2973), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2976), - [aux_sym_identifier_token1] = ACTIONS(2850), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2979), - [sym__float_literal] = ACTIONS(2982), - [sym__boz_literal] = ACTIONS(2982), - [sym__string_literal] = ACTIONS(2985), - [sym__string_literal_kind] = ACTIONS(2988), - }, - [631] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(7884), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [621] = { + [sym_preproc_include] = STATE(592), + [sym_preproc_def] = STATE(592), + [sym_preproc_function_def] = STATE(592), + [sym_preproc_call] = STATE(592), + [sym_preproc_if_in_statements] = STATE(592), + [sym_preproc_ifdef_in_statements] = STATE(592), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(592), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2800), + [aux_sym_preproc_elif_token1] = ACTIONS(2800), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2800), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -169489,7 +167769,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -169502,10 +167781,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -169514,7 +167793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2802), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -169566,93 +167845,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [632] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(7688), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [622] = { + [sym_preproc_include] = STATE(593), + [sym_preproc_def] = STATE(593), + [sym_preproc_function_def] = STATE(593), + [sym_preproc_call] = STATE(593), + [sym_preproc_if_in_statements] = STATE(593), + [sym_preproc_ifdef_in_statements] = STATE(593), + [sym__statements] = STATE(6747), + [sym_statement_label] = STATE(806), + [sym_stop_statement] = STATE(6747), + [sym_assignment_statement] = STATE(6747), + [sym_pointer_association_statement] = STATE(6747), + [sym_subroutine_call] = STATE(6747), + [sym_keyword_statement] = STATE(6747), + [sym_include_statement] = STATE(6747), + [sym_do_loop_statement] = STATE(6747), + [sym_do_label_statement] = STATE(6747), + [sym_end_do_label_statement] = STATE(6747), + [sym_if_statement] = STATE(6747), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6747), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6747), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6747), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6747), + [sym_select_type_statement] = STATE(6747), + [sym_select_rank_statement] = STATE(6747), + [sym_block_construct] = STATE(6747), + [sym_associate_statement] = STATE(6747), + [sym_format_statement] = STATE(6747), + [sym_read_statement] = STATE(6747), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6747), + [sym_open_statement] = STATE(6747), + [sym_close_statement] = STATE(6747), + [sym_write_statement] = STATE(6747), + [sym_inquire_statement] = STATE(6747), + [sym_file_position_statement] = STATE(6747), + [sym_allocate_statement] = STATE(6747), + [sym_entry_statement] = STATE(6747), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6747), + [sym_coarray_team_statement] = STATE(6747), + [sym_coarray_critical_statement] = STATE(6747), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(593), + [aux_sym_preproc_include_token1] = ACTIONS(2662), + [aux_sym_preproc_def_token1] = ACTIONS(2664), + [aux_sym_preproc_if_token1] = ACTIONS(2666), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), + [aux_sym_preproc_else_token1] = ACTIONS(2804), + [aux_sym_preproc_elif_token1] = ACTIONS(2804), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2804), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2804), + [sym_preproc_directive] = ACTIONS(2670), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -169661,7 +167942,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -169674,10 +167954,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -169686,7 +167966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2806), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -169738,93 +168018,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [633] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(8206), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), + [623] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(7839), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(2808), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -169846,10 +168126,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -169910,93 +168190,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [634] = { + [624] = { [sym_preproc_include] = STATE(624), [sym_preproc_def] = STATE(624), [sym_preproc_function_def] = STATE(624), [sym_preproc_call] = STATE(624), [sym_preproc_if_in_statements] = STATE(624), [sym_preproc_ifdef_in_statements] = STATE(624), - [sym_internal_procedures] = STATE(7569), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), + [sym_preproc_if_in_procedure_statements] = STATE(624), + [sym_preproc_ifdef_in_procedure_statements] = STATE(624), + [sym__statements] = STATE(6708), + [sym_statement_label] = STATE(794), + [sym_stop_statement] = STATE(6708), + [sym_assignment_statement] = STATE(6708), + [sym_pointer_association_statement] = STATE(6708), + [sym_subroutine_call] = STATE(6708), + [sym_keyword_statement] = STATE(6708), + [sym_include_statement] = STATE(6708), + [sym_do_loop_statement] = STATE(6708), + [sym_do_label_statement] = STATE(6708), + [sym_end_do_label_statement] = STATE(6708), + [sym_if_statement] = STATE(6708), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6708), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6708), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6708), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6708), + [sym_select_type_statement] = STATE(6708), + [sym_select_rank_statement] = STATE(6708), + [sym_block_construct] = STATE(6708), + [sym_associate_statement] = STATE(6708), + [sym_format_statement] = STATE(6708), + [sym_read_statement] = STATE(6708), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6708), + [sym_open_statement] = STATE(6708), + [sym_close_statement] = STATE(6708), + [sym_write_statement] = STATE(6708), + [sym_inquire_statement] = STATE(6708), + [sym_file_position_statement] = STATE(6708), + [sym_allocate_statement] = STATE(6708), + [sym_entry_statement] = STATE(6708), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6708), + [sym_coarray_team_statement] = STATE(6708), + [sym_coarray_critical_statement] = STATE(6708), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(624), + [aux_sym_preproc_include_token1] = ACTIONS(2812), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), + [sym_preproc_directive] = ACTIONS(2824), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2833), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2836), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2839), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(2842), + [aux_sym_procedure_attributes_token3] = ACTIONS(2844), + [aux_sym_contains_statement_token1] = ACTIONS(2842), + [aux_sym_use_statement_token2] = ACTIONS(2844), + [aux_sym_implicit_statement_token4] = ACTIONS(2844), + [aux_sym_save_statement_token1] = ACTIONS(2844), + [aux_sym_private_statement_token1] = ACTIONS(2844), + [aux_sym_public_statement_token1] = ACTIONS(2844), + [aux_sym_derived_type_definition_token1] = ACTIONS(2844), + [aux_sym_procedure_attribute_token6] = ACTIONS(2844), + [aux_sym_variable_attributes_token2] = ACTIONS(2844), + [aux_sym_variable_attributes_token3] = ACTIONS(2844), + [aux_sym_variable_attributes_token5] = ACTIONS(2844), + [aux_sym__intrinsic_type_token1] = ACTIONS(2844), + [aux_sym__intrinsic_type_token3] = ACTIONS(2844), + [aux_sym__intrinsic_type_token4] = ACTIONS(2847), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2850), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2844), + [aux_sym_type_qualifier_token1] = ACTIONS(2844), + [aux_sym_type_qualifier_token2] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2853), + [aux_sym_stop_statement_token1] = ACTIONS(2856), + [aux_sym_stop_statement_token2] = ACTIONS(2859), + [aux_sym_subroutine_call_token1] = ACTIONS(2862), + [aux_sym_keyword_statement_token1] = ACTIONS(2865), + [aux_sym_keyword_statement_token2] = ACTIONS(2868), + [aux_sym_keyword_statement_token3] = ACTIONS(2868), + [aux_sym_keyword_statement_token4] = ACTIONS(2871), + [aux_sym_keyword_statement_token6] = ACTIONS(2874), + [aux_sym_keyword_statement_token7] = ACTIONS(2865), + [aux_sym_include_statement_token1] = ACTIONS(2877), + [aux_sym_data_statement_token1] = ACTIONS(2844), + [aux_sym_do_loop_statement_token1] = ACTIONS(2880), + [aux_sym__inline_if_statement_token1] = ACTIONS(2883), + [aux_sym_end_if_statement_token1] = ACTIONS(2844), + [aux_sym_elseif_clause_token2] = ACTIONS(2844), + [aux_sym__inline_where_statement_token1] = ACTIONS(2886), + [aux_sym__forall_control_expression_token1] = ACTIONS(2889), + [aux_sym_select_case_statement_token1] = ACTIONS(2892), + [aux_sym_select_case_statement_token3] = ACTIONS(2895), + [aux_sym_select_type_statement_token1] = ACTIONS(2898), + [aux_sym_select_rank_statement_token2] = ACTIONS(2901), + [aux_sym_block_construct_token1] = ACTIONS(2904), + [aux_sym_associate_statement_token1] = ACTIONS(2907), + [aux_sym_format_statement_token1] = ACTIONS(2910), + [aux_sym_print_statement_token1] = ACTIONS(2913), + [aux_sym_open_statement_token1] = ACTIONS(2916), + [aux_sym_close_statement_token1] = ACTIONS(2919), + [aux_sym_inquire_statement_token1] = ACTIONS(2922), + [aux_sym_file_position_statement_token1] = ACTIONS(2925), + [aux_sym_file_position_statement_token2] = ACTIONS(2925), + [aux_sym_file_position_statement_token3] = ACTIONS(2925), + [aux_sym_file_position_statement_token4] = ACTIONS(2928), + [aux_sym_allocate_statement_token1] = ACTIONS(2931), + [aux_sym_entry_statement_token1] = ACTIONS(2934), + [aux_sym_logical_expression_token5] = ACTIONS(2937), + [anon_sym_DOT] = ACTIONS(2940), + [anon_sym_LPAREN_SLASH] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2946), + [aux_sym_boolean_literal_token1] = ACTIONS(2949), + [aux_sym_boolean_literal_token2] = ACTIONS(2949), + [aux_sym_null_literal_token1] = ACTIONS(2952), + [aux_sym_coarray_statement_token1] = ACTIONS(2955), + [aux_sym_coarray_statement_token2] = ACTIONS(2955), + [aux_sym_coarray_statement_token6] = ACTIONS(2958), + [aux_sym_coarray_statement_token8] = ACTIONS(2961), + [aux_sym_coarray_statement_token11] = ACTIONS(2964), + [aux_sym_coarray_statement_token12] = ACTIONS(2964), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2967), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2970), + [aux_sym_identifier_token1] = ACTIONS(2844), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2973), + [sym__float_literal] = ACTIONS(2976), + [sym__boz_literal] = ACTIONS(2976), + [sym__string_literal] = ACTIONS(2979), + [sym__string_literal_kind] = ACTIONS(2982), + }, + [625] = { + [sym_preproc_include] = STATE(623), + [sym_preproc_def] = STATE(623), + [sym_preproc_function_def] = STATE(623), + [sym_preproc_call] = STATE(623), + [sym_preproc_if_in_statements] = STATE(623), + [sym_preproc_ifdef_in_statements] = STATE(623), + [sym_internal_procedures] = STATE(7815), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(624), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(623), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(3027), + [aux_sym_preproc_if_token2] = ACTIONS(2985), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -170018,10 +168470,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -170030,7 +168482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym_SEMI] = ACTIONS(2987), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -170082,93 +168534,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [635] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(7916), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), + [626] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(7476), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(658), + [aux_sym_preproc_if_token2] = ACTIONS(668), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -170190,10 +168642,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -170254,93 +168706,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [636] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(7569), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), + [627] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(7611), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(3027), + [aux_sym_preproc_if_token2] = ACTIONS(2989), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -170362,10 +168814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -170426,93 +168878,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [637] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(8094), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), + [628] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(8341), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(3031), + [aux_sym_preproc_if_token2] = ACTIONS(2991), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -170534,10 +168986,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -170598,93 +169050,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [638] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym_internal_procedures] = STATE(8125), - [sym_contains_statement] = STATE(6397), - [sym__statements] = STATE(6578), + [629] = { + [sym_preproc_include] = STATE(637), + [sym_preproc_def] = STATE(637), + [sym_preproc_function_def] = STATE(637), + [sym_preproc_call] = STATE(637), + [sym_preproc_if_in_statements] = STATE(637), + [sym_preproc_ifdef_in_statements] = STATE(637), + [sym_internal_procedures] = STATE(8341), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(2696), - [aux_sym_preproc_def_token1] = ACTIONS(2698), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(637), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(658), + [aux_sym_preproc_if_token2] = ACTIONS(2991), [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(2702), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -170706,10 +169158,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -170718,7 +169170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2993), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -170770,269 +169222,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [639] = { - [sym_preproc_include] = STATE(639), - [sym_preproc_def] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_preproc_call] = STATE(639), - [sym_preproc_if_in_statements] = STATE(639), - [sym_preproc_ifdef_in_statements] = STATE(639), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(639), - [aux_sym_preproc_include_token1] = ACTIONS(3033), - [aux_sym_preproc_def_token1] = ACTIONS(3036), - [aux_sym_preproc_if_token1] = ACTIONS(3039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3042), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), + [630] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(8009), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(807), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3048), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym_end_where_statement_token1] = ACTIONS(2059), - [aux_sym_elsewhere_clause_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(2810), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [640] = { - [sym_preproc_include] = STATE(639), - [sym_preproc_def] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_preproc_call] = STATE(639), - [sym_preproc_if_in_statements] = STATE(639), - [sym_preproc_ifdef_in_statements] = STATE(639), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(639), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [631] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(8144), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(807), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3051), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -171045,10 +169502,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -171057,7 +169514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2810), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -171072,11 +169529,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3054), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3054), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3054), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -171112,269 +169566,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [641] = { - [sym_preproc_include] = STATE(641), - [sym_preproc_def] = STATE(641), - [sym_preproc_function_def] = STATE(641), - [sym_preproc_call] = STATE(641), - [sym_preproc_if_in_statements] = STATE(641), - [sym_preproc_ifdef_in_statements] = STATE(641), - [sym__statements] = STATE(6399), - [sym_statement_label] = STATE(803), - [sym_stop_statement] = STATE(6399), - [sym_assignment_statement] = STATE(6399), - [sym_pointer_association_statement] = STATE(6399), - [sym_subroutine_call] = STATE(6399), - [sym_keyword_statement] = STATE(6399), - [sym_include_statement] = STATE(6399), - [sym_do_loop_statement] = STATE(6399), - [sym_do_label_statement] = STATE(6399), - [sym_end_do_label_statement] = STATE(6399), - [sym_if_statement] = STATE(6399), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6399), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6399), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6399), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6399), - [sym_select_type_statement] = STATE(6399), - [sym_select_rank_statement] = STATE(6399), - [sym_block_construct] = STATE(6399), - [sym_associate_statement] = STATE(6399), - [sym_format_statement] = STATE(6399), - [sym_read_statement] = STATE(6399), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6399), - [sym_open_statement] = STATE(6399), - [sym_close_statement] = STATE(6399), - [sym_write_statement] = STATE(6399), - [sym_inquire_statement] = STATE(6399), - [sym_file_position_statement] = STATE(6399), - [sym_allocate_statement] = STATE(6399), - [sym_entry_statement] = STATE(6399), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6399), - [sym_coarray_team_statement] = STATE(6399), - [sym_coarray_critical_statement] = STATE(6399), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(641), - [aux_sym_preproc_include_token1] = ACTIONS(3056), - [aux_sym_preproc_def_token1] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3062), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3065), - [sym_preproc_directive] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_end_program_statement_token2] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_contains_statement_token1] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3071), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [642] = { - [sym_preproc_include] = STATE(639), - [sym_preproc_def] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_preproc_call] = STATE(639), - [sym_preproc_if_in_statements] = STATE(639), - [sym_preproc_ifdef_in_statements] = STATE(639), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(639), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [632] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(8109), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(807), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3074), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -171387,10 +169674,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -171399,7 +169686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2810), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -171414,11 +169701,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3077), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3077), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3077), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -171454,98 +169738,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [643] = { - [sym_preproc_include] = STATE(642), - [sym_preproc_def] = STATE(642), - [sym_preproc_function_def] = STATE(642), - [sym_preproc_call] = STATE(642), - [sym_preproc_if_in_statements] = STATE(642), - [sym_preproc_ifdef_in_statements] = STATE(642), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(642), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [633] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(8280), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(807), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3079), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -171558,10 +169846,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -171570,7 +169858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(2810), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -171585,11 +169873,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3084), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3084), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3084), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -171625,98 +169910,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [644] = { - [sym_preproc_include] = STATE(639), - [sym_preproc_def] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_preproc_call] = STATE(639), - [sym_preproc_if_in_statements] = STATE(639), - [sym_preproc_ifdef_in_statements] = STATE(639), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(639), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [634] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(8241), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(807), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3086), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -171729,10 +170018,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -171741,7 +170030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2810), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -171756,11 +170045,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3089), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3089), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3089), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -171796,98 +170082,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [645] = { - [sym_preproc_include] = STATE(639), - [sym_preproc_def] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_preproc_call] = STATE(639), - [sym_preproc_if_in_statements] = STATE(639), - [sym_preproc_ifdef_in_statements] = STATE(639), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(639), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [635] = { + [sym_preproc_include] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_preproc_if_in_statements] = STATE(635), + [sym_preproc_ifdef_in_statements] = STATE(635), + [sym_preproc_if_in_procedure_statements] = STATE(635), + [sym_preproc_ifdef_in_procedure_statements] = STATE(635), + [sym__statements] = STATE(6402), + [sym_statement_label] = STATE(796), + [sym_stop_statement] = STATE(6402), + [sym_assignment_statement] = STATE(6402), + [sym_pointer_association_statement] = STATE(6402), + [sym_subroutine_call] = STATE(6402), + [sym_keyword_statement] = STATE(6402), + [sym_include_statement] = STATE(6402), + [sym_do_loop_statement] = STATE(6402), + [sym_do_label_statement] = STATE(6402), + [sym_end_do_label_statement] = STATE(6402), + [sym_if_statement] = STATE(6402), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6402), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6402), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6402), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6402), + [sym_select_type_statement] = STATE(6402), + [sym_select_rank_statement] = STATE(6402), + [sym_block_construct] = STATE(6402), + [sym_associate_statement] = STATE(6402), + [sym_format_statement] = STATE(6402), + [sym_read_statement] = STATE(6402), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6402), + [sym_open_statement] = STATE(6402), + [sym_close_statement] = STATE(6402), + [sym_write_statement] = STATE(6402), + [sym_inquire_statement] = STATE(6402), + [sym_file_position_statement] = STATE(6402), + [sym_allocate_statement] = STATE(6402), + [sym_entry_statement] = STATE(6402), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6402), + [sym_coarray_team_statement] = STATE(6402), + [sym_coarray_critical_statement] = STATE(6402), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(635), + [aux_sym_preproc_include_token1] = ACTIONS(2995), + [aux_sym_preproc_def_token1] = ACTIONS(2998), + [aux_sym_preproc_if_token1] = ACTIONS(3001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2833), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2836), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2839), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(2842), + [aux_sym_procedure_attributes_token3] = ACTIONS(2844), + [aux_sym_contains_statement_token1] = ACTIONS(2842), + [aux_sym_use_statement_token2] = ACTIONS(2844), + [aux_sym_implicit_statement_token4] = ACTIONS(2844), + [aux_sym_save_statement_token1] = ACTIONS(2844), + [aux_sym_private_statement_token1] = ACTIONS(2844), + [aux_sym_public_statement_token1] = ACTIONS(2844), + [aux_sym_derived_type_definition_token1] = ACTIONS(2844), + [aux_sym_procedure_attribute_token6] = ACTIONS(2844), + [aux_sym_variable_attributes_token2] = ACTIONS(2844), + [aux_sym_variable_attributes_token3] = ACTIONS(2844), + [aux_sym_variable_attributes_token5] = ACTIONS(2844), + [aux_sym__intrinsic_type_token1] = ACTIONS(2844), + [aux_sym__intrinsic_type_token3] = ACTIONS(2844), + [aux_sym__intrinsic_type_token4] = ACTIONS(2847), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2850), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2844), + [aux_sym_type_qualifier_token1] = ACTIONS(2844), + [aux_sym_type_qualifier_token2] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(3010), + [aux_sym_stop_statement_token1] = ACTIONS(2856), + [aux_sym_stop_statement_token2] = ACTIONS(2859), + [aux_sym_subroutine_call_token1] = ACTIONS(2862), + [aux_sym_keyword_statement_token1] = ACTIONS(2865), + [aux_sym_keyword_statement_token2] = ACTIONS(2868), + [aux_sym_keyword_statement_token3] = ACTIONS(2868), + [aux_sym_keyword_statement_token4] = ACTIONS(2871), + [aux_sym_keyword_statement_token6] = ACTIONS(2874), + [aux_sym_keyword_statement_token7] = ACTIONS(2865), + [aux_sym_include_statement_token1] = ACTIONS(2877), + [aux_sym_data_statement_token1] = ACTIONS(2844), + [aux_sym_do_loop_statement_token1] = ACTIONS(2880), + [aux_sym__inline_if_statement_token1] = ACTIONS(2883), + [aux_sym_end_if_statement_token1] = ACTIONS(2844), + [aux_sym_elseif_clause_token2] = ACTIONS(2844), + [aux_sym__inline_where_statement_token1] = ACTIONS(2886), + [aux_sym__forall_control_expression_token1] = ACTIONS(2889), + [aux_sym_select_case_statement_token1] = ACTIONS(2892), + [aux_sym_select_case_statement_token3] = ACTIONS(2895), + [aux_sym_select_type_statement_token1] = ACTIONS(2898), + [aux_sym_select_rank_statement_token2] = ACTIONS(2901), + [aux_sym_block_construct_token1] = ACTIONS(2904), + [aux_sym_associate_statement_token1] = ACTIONS(2907), + [aux_sym_format_statement_token1] = ACTIONS(2910), + [aux_sym_print_statement_token1] = ACTIONS(2913), + [aux_sym_open_statement_token1] = ACTIONS(2916), + [aux_sym_close_statement_token1] = ACTIONS(2919), + [aux_sym_inquire_statement_token1] = ACTIONS(2922), + [aux_sym_file_position_statement_token1] = ACTIONS(2925), + [aux_sym_file_position_statement_token2] = ACTIONS(2925), + [aux_sym_file_position_statement_token3] = ACTIONS(2925), + [aux_sym_file_position_statement_token4] = ACTIONS(2928), + [aux_sym_allocate_statement_token1] = ACTIONS(2931), + [aux_sym_entry_statement_token1] = ACTIONS(2934), + [aux_sym_logical_expression_token5] = ACTIONS(2937), + [anon_sym_DOT] = ACTIONS(2940), + [anon_sym_LPAREN_SLASH] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2946), + [aux_sym_boolean_literal_token1] = ACTIONS(2949), + [aux_sym_boolean_literal_token2] = ACTIONS(2949), + [aux_sym_null_literal_token1] = ACTIONS(2952), + [aux_sym_coarray_statement_token1] = ACTIONS(2955), + [aux_sym_coarray_statement_token2] = ACTIONS(2955), + [aux_sym_coarray_statement_token6] = ACTIONS(2958), + [aux_sym_coarray_statement_token8] = ACTIONS(2961), + [aux_sym_coarray_statement_token11] = ACTIONS(2964), + [aux_sym_coarray_statement_token12] = ACTIONS(2964), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2967), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2970), + [aux_sym_identifier_token1] = ACTIONS(2844), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2973), + [sym__float_literal] = ACTIONS(2976), + [sym__boz_literal] = ACTIONS(2976), + [sym__string_literal] = ACTIONS(2979), + [sym__string_literal_kind] = ACTIONS(2982), + }, + [636] = { + [sym_preproc_include] = STATE(636), + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_statements] = STATE(636), + [sym_preproc_ifdef_in_statements] = STATE(636), + [sym_preproc_if_in_procedure_statements] = STATE(636), + [sym_preproc_ifdef_in_procedure_statements] = STATE(636), + [sym__statements] = STATE(6775), + [sym_statement_label] = STATE(793), + [sym_stop_statement] = STATE(6775), + [sym_assignment_statement] = STATE(6775), + [sym_pointer_association_statement] = STATE(6775), + [sym_subroutine_call] = STATE(6775), + [sym_keyword_statement] = STATE(6775), + [sym_include_statement] = STATE(6775), + [sym_do_loop_statement] = STATE(6775), + [sym_do_label_statement] = STATE(6775), + [sym_end_do_label_statement] = STATE(6775), + [sym_if_statement] = STATE(6775), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6775), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6775), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6775), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6775), + [sym_select_type_statement] = STATE(6775), + [sym_select_rank_statement] = STATE(6775), + [sym_block_construct] = STATE(6775), + [sym_associate_statement] = STATE(6775), + [sym_format_statement] = STATE(6775), + [sym_read_statement] = STATE(6775), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6775), + [sym_open_statement] = STATE(6775), + [sym_close_statement] = STATE(6775), + [sym_write_statement] = STATE(6775), + [sym_inquire_statement] = STATE(6775), + [sym_file_position_statement] = STATE(6775), + [sym_allocate_statement] = STATE(6775), + [sym_entry_statement] = STATE(6775), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6775), + [sym_coarray_team_statement] = STATE(6775), + [sym_coarray_critical_statement] = STATE(6775), + [sym_identifier] = STATE(4694), + [aux_sym_subroutine_repeat1] = STATE(636), + [aux_sym_preproc_include_token1] = ACTIONS(3013), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3019), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3022), + [sym_preproc_directive] = ACTIONS(3025), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2833), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2836), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2839), + [aux_sym_procedure_attributes_token3] = ACTIONS(2844), + [aux_sym_end_function_statement_token1] = ACTIONS(2842), + [aux_sym_contains_statement_token1] = ACTIONS(2842), + [aux_sym_use_statement_token2] = ACTIONS(2844), + [aux_sym_implicit_statement_token4] = ACTIONS(2844), + [aux_sym_save_statement_token1] = ACTIONS(2844), + [aux_sym_private_statement_token1] = ACTIONS(2844), + [aux_sym_public_statement_token1] = ACTIONS(2844), + [aux_sym_derived_type_definition_token1] = ACTIONS(2844), + [aux_sym_procedure_attribute_token6] = ACTIONS(2844), + [aux_sym_variable_attributes_token2] = ACTIONS(2844), + [aux_sym_variable_attributes_token3] = ACTIONS(2844), + [aux_sym_variable_attributes_token5] = ACTIONS(2844), + [aux_sym__intrinsic_type_token1] = ACTIONS(2844), + [aux_sym__intrinsic_type_token3] = ACTIONS(2844), + [aux_sym__intrinsic_type_token4] = ACTIONS(2847), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2850), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2844), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2844), + [aux_sym_type_qualifier_token1] = ACTIONS(2844), + [aux_sym_type_qualifier_token2] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(3028), + [aux_sym_stop_statement_token1] = ACTIONS(2856), + [aux_sym_stop_statement_token2] = ACTIONS(2859), + [aux_sym_subroutine_call_token1] = ACTIONS(2862), + [aux_sym_keyword_statement_token1] = ACTIONS(2865), + [aux_sym_keyword_statement_token2] = ACTIONS(2868), + [aux_sym_keyword_statement_token3] = ACTIONS(2868), + [aux_sym_keyword_statement_token4] = ACTIONS(2871), + [aux_sym_keyword_statement_token6] = ACTIONS(2874), + [aux_sym_keyword_statement_token7] = ACTIONS(2865), + [aux_sym_include_statement_token1] = ACTIONS(2877), + [aux_sym_data_statement_token1] = ACTIONS(2844), + [aux_sym_do_loop_statement_token1] = ACTIONS(2880), + [aux_sym__inline_if_statement_token1] = ACTIONS(2883), + [aux_sym_end_if_statement_token1] = ACTIONS(2844), + [aux_sym_elseif_clause_token2] = ACTIONS(2844), + [aux_sym__inline_where_statement_token1] = ACTIONS(2886), + [aux_sym__forall_control_expression_token1] = ACTIONS(2889), + [aux_sym_select_case_statement_token1] = ACTIONS(2892), + [aux_sym_select_case_statement_token3] = ACTIONS(2895), + [aux_sym_select_type_statement_token1] = ACTIONS(2898), + [aux_sym_select_rank_statement_token2] = ACTIONS(2901), + [aux_sym_block_construct_token1] = ACTIONS(2904), + [aux_sym_associate_statement_token1] = ACTIONS(2907), + [aux_sym_format_statement_token1] = ACTIONS(2910), + [aux_sym_print_statement_token1] = ACTIONS(2913), + [aux_sym_open_statement_token1] = ACTIONS(2916), + [aux_sym_close_statement_token1] = ACTIONS(2919), + [aux_sym_inquire_statement_token1] = ACTIONS(2922), + [aux_sym_file_position_statement_token1] = ACTIONS(2925), + [aux_sym_file_position_statement_token2] = ACTIONS(2925), + [aux_sym_file_position_statement_token3] = ACTIONS(2925), + [aux_sym_file_position_statement_token4] = ACTIONS(2928), + [aux_sym_allocate_statement_token1] = ACTIONS(2931), + [aux_sym_entry_statement_token1] = ACTIONS(2934), + [aux_sym_logical_expression_token5] = ACTIONS(2937), + [anon_sym_DOT] = ACTIONS(2940), + [anon_sym_LPAREN_SLASH] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2946), + [aux_sym_boolean_literal_token1] = ACTIONS(2949), + [aux_sym_boolean_literal_token2] = ACTIONS(2949), + [aux_sym_null_literal_token1] = ACTIONS(2952), + [aux_sym_coarray_statement_token1] = ACTIONS(2955), + [aux_sym_coarray_statement_token2] = ACTIONS(2955), + [aux_sym_coarray_statement_token6] = ACTIONS(2958), + [aux_sym_coarray_statement_token8] = ACTIONS(2961), + [aux_sym_coarray_statement_token11] = ACTIONS(2964), + [aux_sym_coarray_statement_token12] = ACTIONS(2964), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2967), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2970), + [aux_sym_identifier_token1] = ACTIONS(2844), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2973), + [sym__float_literal] = ACTIONS(2976), + [sym__boz_literal] = ACTIONS(2976), + [sym__string_literal] = ACTIONS(2979), + [sym__string_literal_kind] = ACTIONS(2982), + }, + [637] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(7571), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(807), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(3031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3091), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -171900,10 +170534,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -171912,7 +170546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2810), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -171927,11 +170561,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3094), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3094), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3094), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -171967,98 +170598,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [646] = { - [sym_preproc_include] = STATE(639), - [sym_preproc_def] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_preproc_call] = STATE(639), - [sym_preproc_if_in_statements] = STATE(639), - [sym_preproc_ifdef_in_statements] = STATE(639), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(639), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [638] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym_internal_procedures] = STATE(7815), + [sym_contains_statement] = STATE(6294), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(807), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(2724), + [aux_sym_preproc_def_token1] = ACTIONS(2726), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(2730), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3079), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_contains_statement_token1] = ACTIONS(51), [aux_sym_use_statement_token2] = ACTIONS(93), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), @@ -172071,10 +170706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -172083,7 +170718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2810), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -172098,11 +170733,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3084), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3084), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3084), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -172138,95 +170770,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [647] = { - [sym_preproc_include] = STATE(644), - [sym_preproc_def] = STATE(644), - [sym_preproc_function_def] = STATE(644), - [sym_preproc_call] = STATE(644), - [sym_preproc_if_in_statements] = STATE(644), - [sym_preproc_ifdef_in_statements] = STATE(644), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(644), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [639] = { + [sym_preproc_include] = STATE(647), + [sym_preproc_def] = STATE(647), + [sym_preproc_function_def] = STATE(647), + [sym_preproc_call] = STATE(647), + [sym_preproc_if_in_statements] = STATE(647), + [sym_preproc_ifdef_in_statements] = STATE(647), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(647), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3096), + [aux_sym_end_program_statement_token1] = ACTIONS(3033), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -172242,10 +170874,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -172254,7 +170886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3036), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -172269,11 +170901,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3101), + [aux_sym_elseif_clause_token1] = ACTIONS(3038), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3101), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3101), + [aux_sym_end_where_statement_token1] = ACTIONS(3038), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3038), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -172309,95 +170941,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [648] = { - [sym_preproc_include] = STATE(639), - [sym_preproc_def] = STATE(639), - [sym_preproc_function_def] = STATE(639), - [sym_preproc_call] = STATE(639), - [sym_preproc_if_in_statements] = STATE(639), - [sym_preproc_ifdef_in_statements] = STATE(639), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(639), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [640] = { + [sym_preproc_include] = STATE(645), + [sym_preproc_def] = STATE(645), + [sym_preproc_function_def] = STATE(645), + [sym_preproc_call] = STATE(645), + [sym_preproc_if_in_statements] = STATE(645), + [sym_preproc_ifdef_in_statements] = STATE(645), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(645), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3096), + [aux_sym_end_program_statement_token1] = ACTIONS(3040), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -172413,10 +171045,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -172425,7 +171057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(3043), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -172440,11 +171072,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3101), + [aux_sym_elseif_clause_token1] = ACTIONS(3045), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3101), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3101), + [aux_sym_end_where_statement_token1] = ACTIONS(3045), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3045), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -172480,95 +171112,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [649] = { - [sym_preproc_include] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_preproc_if_in_statements] = STATE(646), - [sym_preproc_ifdef_in_statements] = STATE(646), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(646), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [641] = { + [sym_preproc_include] = STATE(649), + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_statements] = STATE(649), + [sym_preproc_ifdef_in_statements] = STATE(649), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(649), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3091), + [aux_sym_end_program_statement_token1] = ACTIONS(3033), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -172584,10 +171216,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -172596,7 +171228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(2435), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -172611,11 +171243,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3094), + [aux_sym_elseif_clause_token1] = ACTIONS(3038), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3094), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3094), + [aux_sym_end_where_statement_token1] = ACTIONS(3038), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3038), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -172651,95 +171283,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [650] = { - [sym_preproc_include] = STATE(640), - [sym_preproc_def] = STATE(640), - [sym_preproc_function_def] = STATE(640), - [sym_preproc_call] = STATE(640), - [sym_preproc_if_in_statements] = STATE(640), - [sym_preproc_ifdef_in_statements] = STATE(640), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(640), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [642] = { + [sym_preproc_include] = STATE(650), + [sym_preproc_def] = STATE(650), + [sym_preproc_function_def] = STATE(650), + [sym_preproc_call] = STATE(650), + [sym_preproc_if_in_statements] = STATE(650), + [sym_preproc_ifdef_in_statements] = STATE(650), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(650), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3086), + [aux_sym_end_program_statement_token1] = ACTIONS(3047), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -172755,10 +171387,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -172767,7 +171399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3050), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -172782,11 +171414,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3089), + [aux_sym_elseif_clause_token1] = ACTIONS(3052), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3089), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3089), + [aux_sym_end_where_statement_token1] = ACTIONS(3052), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3052), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -172822,95 +171454,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [651] = { - [sym_preproc_include] = STATE(648), - [sym_preproc_def] = STATE(648), - [sym_preproc_function_def] = STATE(648), - [sym_preproc_call] = STATE(648), - [sym_preproc_if_in_statements] = STATE(648), - [sym_preproc_ifdef_in_statements] = STATE(648), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(648), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), + [643] = { + [sym_preproc_include] = STATE(649), + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_statements] = STATE(649), + [sym_preproc_ifdef_in_statements] = STATE(649), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(649), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3107), + [aux_sym_end_program_statement_token1] = ACTIONS(3054), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -172926,10 +171558,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -172938,7 +171570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(2435), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -172953,11 +171585,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3112), + [aux_sym_elseif_clause_token1] = ACTIONS(3057), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3112), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3112), + [aux_sym_end_where_statement_token1] = ACTIONS(3057), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3057), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -172993,266 +171625,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [652] = { - [sym_preproc_include] = STATE(645), - [sym_preproc_def] = STATE(645), - [sym_preproc_function_def] = STATE(645), - [sym_preproc_call] = STATE(645), - [sym_preproc_if_in_statements] = STATE(645), - [sym_preproc_ifdef_in_statements] = STATE(645), - [sym__statements] = STATE(6523), - [sym_statement_label] = STATE(797), - [sym_stop_statement] = STATE(6523), - [sym_assignment_statement] = STATE(6523), - [sym_pointer_association_statement] = STATE(6523), - [sym_subroutine_call] = STATE(6523), - [sym_keyword_statement] = STATE(6523), - [sym_include_statement] = STATE(6523), - [sym_do_loop_statement] = STATE(6523), - [sym_do_label_statement] = STATE(6523), - [sym_end_do_label_statement] = STATE(6523), - [sym_if_statement] = STATE(6523), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6523), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6523), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6523), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6523), - [sym_select_type_statement] = STATE(6523), - [sym_select_rank_statement] = STATE(6523), - [sym_block_construct] = STATE(6523), - [sym_associate_statement] = STATE(6523), - [sym_format_statement] = STATE(6523), - [sym_read_statement] = STATE(6523), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6523), - [sym_open_statement] = STATE(6523), - [sym_close_statement] = STATE(6523), - [sym_write_statement] = STATE(6523), - [sym_inquire_statement] = STATE(6523), - [sym_file_position_statement] = STATE(6523), - [sym_allocate_statement] = STATE(6523), - [sym_entry_statement] = STATE(6523), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6523), - [sym_coarray_team_statement] = STATE(6523), - [sym_coarray_critical_statement] = STATE(6523), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(645), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2517), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), - [sym_preproc_directive] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [644] = { + [sym_preproc_include] = STATE(644), + [sym_preproc_def] = STATE(644), + [sym_preproc_function_def] = STATE(644), + [sym_preproc_call] = STATE(644), + [sym_preproc_if_in_statements] = STATE(644), + [sym_preproc_ifdef_in_statements] = STATE(644), + [sym__statements] = STATE(6296), + [sym_statement_label] = STATE(803), + [sym_stop_statement] = STATE(6296), + [sym_assignment_statement] = STATE(6296), + [sym_pointer_association_statement] = STATE(6296), + [sym_subroutine_call] = STATE(6296), + [sym_keyword_statement] = STATE(6296), + [sym_include_statement] = STATE(6296), + [sym_do_loop_statement] = STATE(6296), + [sym_do_label_statement] = STATE(6296), + [sym_end_do_label_statement] = STATE(6296), + [sym_if_statement] = STATE(6296), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6296), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6296), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6296), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6296), + [sym_select_type_statement] = STATE(6296), + [sym_select_rank_statement] = STATE(6296), + [sym_block_construct] = STATE(6296), + [sym_associate_statement] = STATE(6296), + [sym_format_statement] = STATE(6296), + [sym_read_statement] = STATE(6296), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6296), + [sym_open_statement] = STATE(6296), + [sym_close_statement] = STATE(6296), + [sym_write_statement] = STATE(6296), + [sym_inquire_statement] = STATE(6296), + [sym_file_position_statement] = STATE(6296), + [sym_allocate_statement] = STATE(6296), + [sym_entry_statement] = STATE(6296), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6296), + [sym_coarray_team_statement] = STATE(6296), + [sym_coarray_critical_statement] = STATE(6296), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(644), + [aux_sym_preproc_include_token1] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3065), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3068), + [sym_preproc_directive] = ACTIONS(3071), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3114), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3117), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token1] = ACTIONS(3119), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym_end_where_statement_token1] = ACTIONS(3119), - [aux_sym_elsewhere_clause_token1] = ACTIONS(3119), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_end_program_statement_token2] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_contains_statement_token1] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3074), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), }, - [653] = { - [sym_preproc_include] = STATE(677), - [sym_preproc_def] = STATE(677), - [sym_preproc_function_def] = STATE(677), - [sym_preproc_call] = STATE(677), - [sym_preproc_if_in_statements] = STATE(677), - [sym_preproc_ifdef_in_statements] = STATE(677), - [sym__statements] = STATE(6776), - [sym_statement_label] = STATE(812), - [sym_stop_statement] = STATE(6776), - [sym_assignment_statement] = STATE(6776), - [sym_pointer_association_statement] = STATE(6776), - [sym_subroutine_call] = STATE(6776), - [sym_keyword_statement] = STATE(6776), - [sym_include_statement] = STATE(6776), - [sym_do_loop_statement] = STATE(6776), - [sym_do_label_statement] = STATE(6776), - [sym_end_do_label_statement] = STATE(6776), - [sym_if_statement] = STATE(6776), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6776), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6776), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6776), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6776), - [sym_select_type_statement] = STATE(6776), - [sym_select_rank_statement] = STATE(6776), - [sym_block_construct] = STATE(6776), - [sym_associate_statement] = STATE(6776), - [sym_format_statement] = STATE(6776), - [sym_read_statement] = STATE(6776), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6776), - [sym_open_statement] = STATE(6776), - [sym_close_statement] = STATE(6776), - [sym_write_statement] = STATE(6776), - [sym_inquire_statement] = STATE(6776), - [sym_file_position_statement] = STATE(6776), - [sym_allocate_statement] = STATE(6776), - [sym_entry_statement] = STATE(6776), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6776), - [sym_coarray_team_statement] = STATE(6776), - [sym_coarray_critical_statement] = STATE(6776), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(677), - [aux_sym_preproc_include_token1] = ACTIONS(3121), - [aux_sym_preproc_def_token1] = ACTIONS(3124), - [aux_sym_preproc_if_token1] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3130), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3130), - [sym_preproc_directive] = ACTIONS(3133), + [645] = { + [sym_preproc_include] = STATE(649), + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_statements] = STATE(649), + [sym_preproc_ifdef_in_statements] = STATE(649), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(649), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3136), + [aux_sym_end_program_statement_token1] = ACTIONS(3047), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -173268,10 +171900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -173280,7 +171912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(2435), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -173295,15 +171927,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(3052), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(3052), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3052), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token2] = ACTIONS(2740), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2740), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -173334,96 +171967,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3141), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [654] = { - [sym_preproc_include] = STATE(741), - [sym_preproc_def] = STATE(741), - [sym_preproc_function_def] = STATE(741), - [sym_preproc_call] = STATE(741), - [sym_preproc_if_in_statements] = STATE(741), - [sym_preproc_ifdef_in_statements] = STATE(741), - [sym__statements] = STATE(6402), - [sym_statement_label] = STATE(782), - [sym_stop_statement] = STATE(6402), - [sym_assignment_statement] = STATE(6402), - [sym_pointer_association_statement] = STATE(6402), - [sym_subroutine_call] = STATE(6402), - [sym_keyword_statement] = STATE(6402), - [sym_include_statement] = STATE(6402), - [sym_do_loop_statement] = STATE(6402), - [sym_end_do_loop_statement] = STATE(7144), - [sym_do_label_statement] = STATE(6402), - [sym_end_do_label_statement] = STATE(6402), - [sym_if_statement] = STATE(6402), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6402), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6402), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6402), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6402), - [sym_select_type_statement] = STATE(6402), - [sym_select_rank_statement] = STATE(6402), - [sym_block_construct] = STATE(6402), - [sym_associate_statement] = STATE(6402), - [sym_format_statement] = STATE(6402), - [sym_read_statement] = STATE(6402), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6402), - [sym_open_statement] = STATE(6402), - [sym_close_statement] = STATE(6402), - [sym_write_statement] = STATE(6402), - [sym_inquire_statement] = STATE(6402), - [sym_file_position_statement] = STATE(6402), - [sym_allocate_statement] = STATE(6402), - [sym_entry_statement] = STATE(6402), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6402), - [sym_coarray_team_statement] = STATE(6402), - [sym_coarray_critical_statement] = STATE(6402), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(741), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), - [sym_preproc_directive] = ACTIONS(3152), + [646] = { + [sym_preproc_include] = STATE(648), + [sym_preproc_def] = STATE(648), + [sym_preproc_function_def] = STATE(648), + [sym_preproc_call] = STATE(648), + [sym_preproc_if_in_statements] = STATE(648), + [sym_preproc_ifdef_in_statements] = STATE(648), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(648), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3154), + [aux_sym_end_program_statement_token1] = ACTIONS(3077), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -173439,10 +172071,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -173451,7 +172083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3080), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -173464,11 +172096,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(3158), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(3082), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(3082), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3082), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -173504,95 +172138,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [655] = { - [sym_preproc_include] = STATE(688), - [sym_preproc_def] = STATE(688), - [sym_preproc_function_def] = STATE(688), - [sym_preproc_call] = STATE(688), - [sym_preproc_if_in_statements] = STATE(688), - [sym_preproc_ifdef_in_statements] = STATE(688), - [sym__statements] = STATE(6776), - [sym_statement_label] = STATE(812), - [sym_stop_statement] = STATE(6776), - [sym_assignment_statement] = STATE(6776), - [sym_pointer_association_statement] = STATE(6776), - [sym_subroutine_call] = STATE(6776), - [sym_keyword_statement] = STATE(6776), - [sym_include_statement] = STATE(6776), - [sym_do_loop_statement] = STATE(6776), - [sym_do_label_statement] = STATE(6776), - [sym_end_do_label_statement] = STATE(6776), - [sym_if_statement] = STATE(6776), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6776), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6776), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6776), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6776), - [sym_select_type_statement] = STATE(6776), - [sym_select_rank_statement] = STATE(6776), - [sym_block_construct] = STATE(6776), - [sym_associate_statement] = STATE(6776), - [sym_format_statement] = STATE(6776), - [sym_read_statement] = STATE(6776), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6776), - [sym_open_statement] = STATE(6776), - [sym_close_statement] = STATE(6776), - [sym_write_statement] = STATE(6776), - [sym_inquire_statement] = STATE(6776), - [sym_file_position_statement] = STATE(6776), - [sym_allocate_statement] = STATE(6776), - [sym_entry_statement] = STATE(6776), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6776), - [sym_coarray_team_statement] = STATE(6776), - [sym_coarray_critical_statement] = STATE(6776), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(688), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3169), - [sym_preproc_directive] = ACTIONS(3172), + [647] = { + [sym_preproc_include] = STATE(649), + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_statements] = STATE(649), + [sym_preproc_ifdef_in_statements] = STATE(649), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(649), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3175), + [aux_sym_end_program_statement_token1] = ACTIONS(3084), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -173608,10 +172242,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -173620,7 +172254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(2435), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -173635,15 +172269,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(3087), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(3087), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3087), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token2] = ACTIONS(2734), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2734), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -173674,95 +172309,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3180), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [656] = { - [sym_preproc_include] = STATE(667), - [sym_preproc_def] = STATE(667), - [sym_preproc_function_def] = STATE(667), - [sym_preproc_call] = STATE(667), - [sym_preproc_if_in_statements] = STATE(667), - [sym_preproc_ifdef_in_statements] = STATE(667), - [sym__statements] = STATE(6776), - [sym_statement_label] = STATE(812), - [sym_stop_statement] = STATE(6776), - [sym_assignment_statement] = STATE(6776), - [sym_pointer_association_statement] = STATE(6776), - [sym_subroutine_call] = STATE(6776), - [sym_keyword_statement] = STATE(6776), - [sym_include_statement] = STATE(6776), - [sym_do_loop_statement] = STATE(6776), - [sym_do_label_statement] = STATE(6776), - [sym_end_do_label_statement] = STATE(6776), - [sym_if_statement] = STATE(6776), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6776), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6776), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6776), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6776), - [sym_select_type_statement] = STATE(6776), - [sym_select_rank_statement] = STATE(6776), - [sym_block_construct] = STATE(6776), - [sym_associate_statement] = STATE(6776), - [sym_format_statement] = STATE(6776), - [sym_read_statement] = STATE(6776), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6776), - [sym_open_statement] = STATE(6776), - [sym_close_statement] = STATE(6776), - [sym_write_statement] = STATE(6776), - [sym_inquire_statement] = STATE(6776), - [sym_file_position_statement] = STATE(6776), - [sym_allocate_statement] = STATE(6776), - [sym_entry_statement] = STATE(6776), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6776), - [sym_coarray_team_statement] = STATE(6776), - [sym_coarray_critical_statement] = STATE(6776), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(667), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3169), - [sym_preproc_directive] = ACTIONS(3172), + [648] = { + [sym_preproc_include] = STATE(649), + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_statements] = STATE(649), + [sym_preproc_ifdef_in_statements] = STATE(649), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(649), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3175), + [aux_sym_end_program_statement_token1] = ACTIONS(3089), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -173778,10 +172413,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -173790,7 +172425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(2435), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -173805,15 +172440,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(3092), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(3092), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3092), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token2] = ACTIONS(2734), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2734), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -173844,95 +172480,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3180), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [657] = { - [sym_preproc_include] = STATE(694), - [sym_preproc_def] = STATE(694), - [sym_preproc_function_def] = STATE(694), - [sym_preproc_call] = STATE(694), - [sym_preproc_if_in_statements] = STATE(694), - [sym_preproc_ifdef_in_statements] = STATE(694), - [sym__statements] = STATE(6782), - [sym_statement_label] = STATE(813), - [sym_stop_statement] = STATE(6782), - [sym_assignment_statement] = STATE(6782), - [sym_pointer_association_statement] = STATE(6782), - [sym_subroutine_call] = STATE(6782), - [sym_keyword_statement] = STATE(6782), - [sym_include_statement] = STATE(6782), - [sym_do_loop_statement] = STATE(6782), - [sym_do_label_statement] = STATE(6782), - [sym_end_do_label_statement] = STATE(6782), - [sym_if_statement] = STATE(6782), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6782), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6782), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6782), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6782), - [sym_select_type_statement] = STATE(6782), - [sym_select_rank_statement] = STATE(6782), - [sym_block_construct] = STATE(6782), - [sym_associate_statement] = STATE(6782), - [sym_format_statement] = STATE(6782), - [sym_read_statement] = STATE(6782), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6782), - [sym_open_statement] = STATE(6782), - [sym_close_statement] = STATE(6782), - [sym_write_statement] = STATE(6782), - [sym_inquire_statement] = STATE(6782), - [sym_file_position_statement] = STATE(6782), - [sym_allocate_statement] = STATE(6782), - [sym_entry_statement] = STATE(6782), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6782), - [sym_coarray_team_statement] = STATE(6782), - [sym_coarray_critical_statement] = STATE(6782), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(694), - [aux_sym_preproc_include_token1] = ACTIONS(3185), - [aux_sym_preproc_def_token1] = ACTIONS(3188), - [aux_sym_preproc_if_token1] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3197), + [649] = { + [sym_preproc_include] = STATE(649), + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_statements] = STATE(649), + [sym_preproc_ifdef_in_statements] = STATE(649), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(649), + [aux_sym_preproc_include_token1] = ACTIONS(3094), + [aux_sym_preproc_def_token1] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3109), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym_end_where_statement_token1] = ACTIONS(2059), + [aux_sym_elsewhere_clause_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), + }, + [650] = { + [sym_preproc_include] = STATE(649), + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_if_in_statements] = STATE(649), + [sym_preproc_ifdef_in_statements] = STATE(649), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(649), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3200), + [aux_sym_end_program_statement_token1] = ACTIONS(3077), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -173948,10 +172755,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -173960,7 +172767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(2435), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -173975,15 +172782,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(3082), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(3082), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3082), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token1] = ACTIONS(2736), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2736), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -174014,96 +172822,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3205), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [658] = { - [sym_preproc_include] = STATE(717), - [sym_preproc_def] = STATE(717), - [sym_preproc_function_def] = STATE(717), - [sym_preproc_call] = STATE(717), - [sym_preproc_if_in_statements] = STATE(717), - [sym_preproc_ifdef_in_statements] = STATE(717), - [sym__statements] = STATE(6275), - [sym_statement_label] = STATE(798), - [sym_stop_statement] = STATE(6275), - [sym_assignment_statement] = STATE(6275), - [sym_pointer_association_statement] = STATE(6275), - [sym_subroutine_call] = STATE(6275), - [sym_keyword_statement] = STATE(6275), - [sym_include_statement] = STATE(6275), - [sym_do_loop_statement] = STATE(6275), - [sym_do_label_statement] = STATE(6275), - [sym_end_do_label_statement] = STATE(6275), - [sym_if_statement] = STATE(6275), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6275), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6275), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6275), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6275), - [sym_select_type_statement] = STATE(6275), - [sym_select_rank_statement] = STATE(6275), - [sym_block_construct] = STATE(6275), - [sym_associate_statement] = STATE(6275), - [sym_format_statement] = STATE(6275), - [sym_read_statement] = STATE(6275), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6275), - [sym_open_statement] = STATE(6275), - [sym_close_statement] = STATE(6275), - [sym_write_statement] = STATE(6275), - [sym_inquire_statement] = STATE(6275), - [sym_file_position_statement] = STATE(6275), - [sym_allocate_statement] = STATE(6275), - [sym_entry_statement] = STATE(6275), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6275), - [sym_coarray_team_statement] = STATE(6275), - [sym_coarray_critical_statement] = STATE(6275), - [sym_end_coarray_critical_statement] = STATE(7409), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(717), - [aux_sym_preproc_include_token1] = ACTIONS(3208), - [aux_sym_preproc_def_token1] = ACTIONS(3210), - [aux_sym_preproc_if_token1] = ACTIONS(3212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3214), - [sym_preproc_directive] = ACTIONS(3216), + [651] = { + [sym_preproc_include] = STATE(643), + [sym_preproc_def] = STATE(643), + [sym_preproc_function_def] = STATE(643), + [sym_preproc_call] = STATE(643), + [sym_preproc_if_in_statements] = STATE(643), + [sym_preproc_ifdef_in_statements] = STATE(643), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(643), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3218), + [aux_sym_end_program_statement_token1] = ACTIONS(3112), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -174119,10 +172926,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -174131,7 +172938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3115), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -174146,8 +172953,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(3117), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(3117), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3117), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), @@ -174181,98 +172991,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3222), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [659] = { - [sym_preproc_include] = STATE(668), - [sym_preproc_def] = STATE(668), - [sym_preproc_function_def] = STATE(668), - [sym_preproc_call] = STATE(668), - [sym_preproc_if_in_statements] = STATE(668), - [sym_preproc_ifdef_in_statements] = STATE(668), - [sym__statements] = STATE(6782), - [sym_statement_label] = STATE(813), - [sym_stop_statement] = STATE(6782), - [sym_assignment_statement] = STATE(6782), - [sym_pointer_association_statement] = STATE(6782), - [sym_subroutine_call] = STATE(6782), - [sym_keyword_statement] = STATE(6782), - [sym_include_statement] = STATE(6782), - [sym_do_loop_statement] = STATE(6782), - [sym_do_label_statement] = STATE(6782), - [sym_end_do_label_statement] = STATE(6782), - [sym_if_statement] = STATE(6782), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6782), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6782), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6782), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6782), - [sym_select_type_statement] = STATE(6782), - [sym_select_rank_statement] = STATE(6782), - [sym_block_construct] = STATE(6782), - [sym_associate_statement] = STATE(6782), - [sym_format_statement] = STATE(6782), - [sym_read_statement] = STATE(6782), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6782), - [sym_open_statement] = STATE(6782), - [sym_close_statement] = STATE(6782), - [sym_write_statement] = STATE(6782), - [sym_inquire_statement] = STATE(6782), - [sym_file_position_statement] = STATE(6782), - [sym_allocate_statement] = STATE(6782), - [sym_entry_statement] = STATE(6782), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6782), - [sym_coarray_team_statement] = STATE(6782), - [sym_coarray_critical_statement] = STATE(6782), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(668), - [aux_sym_preproc_include_token1] = ACTIONS(3185), - [aux_sym_preproc_def_token1] = ACTIONS(3188), - [aux_sym_preproc_if_token1] = ACTIONS(3191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3197), + [652] = { + [sym_preproc_include] = STATE(641), + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_statements] = STATE(641), + [sym_preproc_ifdef_in_statements] = STATE(641), + [sym__statements] = STATE(6438), + [sym_statement_label] = STATE(800), + [sym_stop_statement] = STATE(6438), + [sym_assignment_statement] = STATE(6438), + [sym_pointer_association_statement] = STATE(6438), + [sym_subroutine_call] = STATE(6438), + [sym_keyword_statement] = STATE(6438), + [sym_include_statement] = STATE(6438), + [sym_do_loop_statement] = STATE(6438), + [sym_do_label_statement] = STATE(6438), + [sym_end_do_label_statement] = STATE(6438), + [sym_if_statement] = STATE(6438), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6438), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6438), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6438), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6438), + [sym_select_type_statement] = STATE(6438), + [sym_select_rank_statement] = STATE(6438), + [sym_block_construct] = STATE(6438), + [sym_associate_statement] = STATE(6438), + [sym_format_statement] = STATE(6438), + [sym_read_statement] = STATE(6438), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6438), + [sym_open_statement] = STATE(6438), + [sym_close_statement] = STATE(6438), + [sym_write_statement] = STATE(6438), + [sym_inquire_statement] = STATE(6438), + [sym_file_position_statement] = STATE(6438), + [sym_allocate_statement] = STATE(6438), + [sym_entry_statement] = STATE(6438), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6438), + [sym_coarray_team_statement] = STATE(6438), + [sym_coarray_critical_statement] = STATE(6438), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(641), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [aux_sym_preproc_def_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3200), + [aux_sym_end_program_statement_token1] = ACTIONS(3054), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -174288,10 +173097,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -174300,7 +173109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3119), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -174315,15 +173124,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token1] = ACTIONS(3057), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym_end_where_statement_token1] = ACTIONS(3057), + [aux_sym_elsewhere_clause_token1] = ACTIONS(3057), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token1] = ACTIONS(2736), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2736), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -174354,96 +173164,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3205), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [660] = { - [sym_preproc_include] = STATE(715), - [sym_preproc_def] = STATE(715), - [sym_preproc_function_def] = STATE(715), - [sym_preproc_call] = STATE(715), - [sym_preproc_if_in_statements] = STATE(715), - [sym_preproc_ifdef_in_statements] = STATE(715), - [sym__statements] = STATE(6742), - [sym_statement_label] = STATE(809), - [sym_stop_statement] = STATE(6742), - [sym_assignment_statement] = STATE(6742), - [sym_pointer_association_statement] = STATE(6742), - [sym_subroutine_call] = STATE(6742), - [sym_keyword_statement] = STATE(6742), - [sym_include_statement] = STATE(6742), - [sym_do_loop_statement] = STATE(6742), - [sym_do_label_statement] = STATE(6742), - [sym_end_do_label_statement] = STATE(6742), - [sym_if_statement] = STATE(6742), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6742), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6742), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6742), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6742), - [sym_select_type_statement] = STATE(6742), - [sym_select_rank_statement] = STATE(6742), - [sym_block_construct] = STATE(6742), - [sym_associate_statement] = STATE(6742), - [sym_end_associate_statement] = STATE(7197), - [sym_format_statement] = STATE(6742), - [sym_read_statement] = STATE(6742), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6742), - [sym_open_statement] = STATE(6742), - [sym_close_statement] = STATE(6742), - [sym_write_statement] = STATE(6742), - [sym_inquire_statement] = STATE(6742), - [sym_file_position_statement] = STATE(6742), - [sym_allocate_statement] = STATE(6742), - [sym_entry_statement] = STATE(6742), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6742), - [sym_coarray_team_statement] = STATE(6742), - [sym_coarray_critical_statement] = STATE(6742), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(715), - [aux_sym_preproc_include_token1] = ACTIONS(3226), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3234), + [653] = { + [sym_preproc_include] = STATE(681), + [sym_preproc_def] = STATE(681), + [sym_preproc_function_def] = STATE(681), + [sym_preproc_call] = STATE(681), + [sym_preproc_if_in_statements] = STATE(681), + [sym_preproc_ifdef_in_statements] = STATE(681), + [sym__statements] = STATE(6311), + [sym_statement_label] = STATE(774), + [sym_stop_statement] = STATE(6311), + [sym_assignment_statement] = STATE(6311), + [sym_pointer_association_statement] = STATE(6311), + [sym_subroutine_call] = STATE(6311), + [sym_keyword_statement] = STATE(6311), + [sym_include_statement] = STATE(6311), + [sym_do_loop_statement] = STATE(6311), + [sym_end_do_loop_statement] = STATE(7190), + [sym_do_label_statement] = STATE(6311), + [sym_end_do_label_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6311), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6311), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6311), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6311), + [sym_select_type_statement] = STATE(6311), + [sym_select_rank_statement] = STATE(6311), + [sym_block_construct] = STATE(6311), + [sym_associate_statement] = STATE(6311), + [sym_format_statement] = STATE(6311), + [sym_read_statement] = STATE(6311), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6311), + [sym_open_statement] = STATE(6311), + [sym_close_statement] = STATE(6311), + [sym_write_statement] = STATE(6311), + [sym_inquire_statement] = STATE(6311), + [sym_file_position_statement] = STATE(6311), + [sym_allocate_statement] = STATE(6311), + [sym_entry_statement] = STATE(6311), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6311), + [sym_coarray_team_statement] = STATE(6311), + [sym_coarray_critical_statement] = STATE(6311), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(681), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3129), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3236), + [aux_sym_end_program_statement_token1] = ACTIONS(3131), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -174459,10 +173269,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -174471,7 +173281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3133), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -174484,6 +173294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(3135), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -174495,7 +173306,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_end_associate_statement_token1] = ACTIONS(3240), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -174524,95 +173334,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [661] = { - [sym_preproc_include] = STATE(670), - [sym_preproc_def] = STATE(670), - [sym_preproc_function_def] = STATE(670), - [sym_preproc_call] = STATE(670), - [sym_preproc_if_in_statements] = STATE(670), - [sym_preproc_ifdef_in_statements] = STATE(670), - [sym__statements] = STATE(6782), - [sym_statement_label] = STATE(813), - [sym_stop_statement] = STATE(6782), - [sym_assignment_statement] = STATE(6782), - [sym_pointer_association_statement] = STATE(6782), - [sym_subroutine_call] = STATE(6782), - [sym_keyword_statement] = STATE(6782), - [sym_include_statement] = STATE(6782), - [sym_do_loop_statement] = STATE(6782), - [sym_do_label_statement] = STATE(6782), - [sym_end_do_label_statement] = STATE(6782), - [sym_if_statement] = STATE(6782), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6782), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6782), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6782), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6782), - [sym_select_type_statement] = STATE(6782), - [sym_select_rank_statement] = STATE(6782), - [sym_block_construct] = STATE(6782), - [sym_associate_statement] = STATE(6782), - [sym_format_statement] = STATE(6782), - [sym_read_statement] = STATE(6782), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6782), - [sym_open_statement] = STATE(6782), - [sym_close_statement] = STATE(6782), - [sym_write_statement] = STATE(6782), - [sym_inquire_statement] = STATE(6782), - [sym_file_position_statement] = STATE(6782), - [sym_allocate_statement] = STATE(6782), - [sym_entry_statement] = STATE(6782), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6782), - [sym_coarray_team_statement] = STATE(6782), - [sym_coarray_critical_statement] = STATE(6782), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(670), - [aux_sym_preproc_include_token1] = ACTIONS(3242), - [aux_sym_preproc_def_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token1] = ACTIONS(3248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3254), + [654] = { + [sym_preproc_include] = STATE(753), + [sym_preproc_def] = STATE(753), + [sym_preproc_function_def] = STATE(753), + [sym_preproc_call] = STATE(753), + [sym_preproc_if_in_statements] = STATE(753), + [sym_preproc_ifdef_in_statements] = STATE(753), + [sym__statements] = STATE(6669), + [sym_statement_label] = STATE(801), + [sym_stop_statement] = STATE(6669), + [sym_assignment_statement] = STATE(6669), + [sym_pointer_association_statement] = STATE(6669), + [sym_subroutine_call] = STATE(6669), + [sym_keyword_statement] = STATE(6669), + [sym_include_statement] = STATE(6669), + [sym_do_loop_statement] = STATE(6669), + [sym_do_label_statement] = STATE(6669), + [sym_end_do_label_statement] = STATE(6669), + [sym_if_statement] = STATE(6669), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6669), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6669), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6669), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6669), + [sym_select_type_statement] = STATE(6669), + [sym_select_rank_statement] = STATE(6669), + [sym_block_construct] = STATE(6669), + [sym_end_block_construct_statement] = STATE(7105), + [sym_associate_statement] = STATE(6669), + [sym_format_statement] = STATE(6669), + [sym_read_statement] = STATE(6669), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6669), + [sym_open_statement] = STATE(6669), + [sym_close_statement] = STATE(6669), + [sym_write_statement] = STATE(6669), + [sym_inquire_statement] = STATE(6669), + [sym_file_position_statement] = STATE(6669), + [sym_allocate_statement] = STATE(6669), + [sym_entry_statement] = STATE(6669), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6669), + [sym_coarray_team_statement] = STATE(6669), + [sym_coarray_critical_statement] = STATE(6669), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(753), + [aux_sym_preproc_include_token1] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3139), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(3141), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3257), + [aux_sym_end_program_statement_token1] = ACTIONS(1376), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -174628,10 +173439,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -174640,7 +173451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3143), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -174661,10 +173472,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token1] = ACTIONS(2768), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2768), [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(1384), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), @@ -174694,95 +173504,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3262), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [662] = { - [sym_preproc_include] = STATE(668), - [sym_preproc_def] = STATE(668), - [sym_preproc_function_def] = STATE(668), - [sym_preproc_call] = STATE(668), - [sym_preproc_if_in_statements] = STATE(668), - [sym_preproc_ifdef_in_statements] = STATE(668), - [sym__statements] = STATE(6782), - [sym_statement_label] = STATE(813), - [sym_stop_statement] = STATE(6782), - [sym_assignment_statement] = STATE(6782), - [sym_pointer_association_statement] = STATE(6782), - [sym_subroutine_call] = STATE(6782), - [sym_keyword_statement] = STATE(6782), - [sym_include_statement] = STATE(6782), - [sym_do_loop_statement] = STATE(6782), - [sym_do_label_statement] = STATE(6782), - [sym_end_do_label_statement] = STATE(6782), - [sym_if_statement] = STATE(6782), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6782), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6782), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6782), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6782), - [sym_select_type_statement] = STATE(6782), - [sym_select_rank_statement] = STATE(6782), - [sym_block_construct] = STATE(6782), - [sym_associate_statement] = STATE(6782), - [sym_format_statement] = STATE(6782), - [sym_read_statement] = STATE(6782), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6782), - [sym_open_statement] = STATE(6782), - [sym_close_statement] = STATE(6782), - [sym_write_statement] = STATE(6782), - [sym_inquire_statement] = STATE(6782), - [sym_file_position_statement] = STATE(6782), - [sym_allocate_statement] = STATE(6782), - [sym_entry_statement] = STATE(6782), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6782), - [sym_coarray_team_statement] = STATE(6782), - [sym_coarray_critical_statement] = STATE(6782), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(668), - [aux_sym_preproc_include_token1] = ACTIONS(3242), - [aux_sym_preproc_def_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token1] = ACTIONS(3248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3254), + [655] = { + [sym_preproc_include] = STATE(672), + [sym_preproc_def] = STATE(672), + [sym_preproc_function_def] = STATE(672), + [sym_preproc_call] = STATE(672), + [sym_preproc_if_in_statements] = STATE(672), + [sym_preproc_ifdef_in_statements] = STATE(672), + [sym__statements] = STATE(6605), + [sym_statement_label] = STATE(805), + [sym_stop_statement] = STATE(6605), + [sym_assignment_statement] = STATE(6605), + [sym_pointer_association_statement] = STATE(6605), + [sym_subroutine_call] = STATE(6605), + [sym_keyword_statement] = STATE(6605), + [sym_include_statement] = STATE(6605), + [sym_do_loop_statement] = STATE(6605), + [sym_do_label_statement] = STATE(6605), + [sym_end_do_label_statement] = STATE(6605), + [sym_if_statement] = STATE(6605), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6605), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6605), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6605), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6605), + [sym_select_type_statement] = STATE(6605), + [sym_select_rank_statement] = STATE(6605), + [sym_block_construct] = STATE(6605), + [sym_associate_statement] = STATE(6605), + [sym_format_statement] = STATE(6605), + [sym_read_statement] = STATE(6605), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6605), + [sym_open_statement] = STATE(6605), + [sym_close_statement] = STATE(6605), + [sym_write_statement] = STATE(6605), + [sym_inquire_statement] = STATE(6605), + [sym_file_position_statement] = STATE(6605), + [sym_allocate_statement] = STATE(6605), + [sym_entry_statement] = STATE(6605), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6605), + [sym_coarray_team_statement] = STATE(6605), + [sym_end_coarray_team_statement] = STATE(7179), + [sym_coarray_critical_statement] = STATE(6605), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(672), + [aux_sym_preproc_include_token1] = ACTIONS(3145), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3153), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3257), + [aux_sym_end_program_statement_token1] = ACTIONS(3155), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -174798,10 +173609,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -174810,7 +173621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3157), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -174831,9 +173642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token1] = ACTIONS(2768), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2768), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -174861,269 +173670,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(177), [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(3159), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3262), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [663] = { - [sym_preproc_include] = STATE(663), - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_statements] = STATE(663), - [sym_preproc_ifdef_in_statements] = STATE(663), - [sym__statements] = STATE(6578), - [sym_statement_label] = STATE(807), - [sym_stop_statement] = STATE(6578), - [sym_assignment_statement] = STATE(6578), - [sym_pointer_association_statement] = STATE(6578), - [sym_subroutine_call] = STATE(6578), - [sym_keyword_statement] = STATE(6578), - [sym_include_statement] = STATE(6578), - [sym_do_loop_statement] = STATE(6578), - [sym_do_label_statement] = STATE(6578), - [sym_end_do_label_statement] = STATE(6578), - [sym_if_statement] = STATE(6578), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6578), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6578), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6578), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6578), - [sym_select_type_statement] = STATE(6578), - [sym_select_rank_statement] = STATE(6578), - [sym_block_construct] = STATE(6578), - [sym_associate_statement] = STATE(6578), - [sym_format_statement] = STATE(6578), - [sym_read_statement] = STATE(6578), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6578), - [sym_open_statement] = STATE(6578), - [sym_close_statement] = STATE(6578), - [sym_write_statement] = STATE(6578), - [sym_inquire_statement] = STATE(6578), - [sym_file_position_statement] = STATE(6578), - [sym_allocate_statement] = STATE(6578), - [sym_entry_statement] = STATE(6578), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6578), - [sym_coarray_team_statement] = STATE(6578), - [sym_coarray_critical_statement] = STATE(6578), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), - [aux_sym_preproc_include_token1] = ACTIONS(3265), - [aux_sym_preproc_def_token1] = ACTIONS(3268), - [aux_sym_preproc_if_token1] = ACTIONS(3271), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3277), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_contains_statement_token1] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3280), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [664] = { - [sym_preproc_include] = STATE(658), - [sym_preproc_def] = STATE(658), - [sym_preproc_function_def] = STATE(658), - [sym_preproc_call] = STATE(658), - [sym_preproc_if_in_statements] = STATE(658), - [sym_preproc_ifdef_in_statements] = STATE(658), - [sym__statements] = STATE(6275), - [sym_statement_label] = STATE(798), - [sym_stop_statement] = STATE(6275), - [sym_assignment_statement] = STATE(6275), - [sym_pointer_association_statement] = STATE(6275), - [sym_subroutine_call] = STATE(6275), - [sym_keyword_statement] = STATE(6275), - [sym_include_statement] = STATE(6275), - [sym_do_loop_statement] = STATE(6275), - [sym_do_label_statement] = STATE(6275), - [sym_end_do_label_statement] = STATE(6275), - [sym_if_statement] = STATE(6275), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6275), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6275), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6275), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6275), - [sym_select_type_statement] = STATE(6275), - [sym_select_rank_statement] = STATE(6275), - [sym_block_construct] = STATE(6275), - [sym_associate_statement] = STATE(6275), - [sym_format_statement] = STATE(6275), - [sym_read_statement] = STATE(6275), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6275), - [sym_open_statement] = STATE(6275), - [sym_close_statement] = STATE(6275), - [sym_write_statement] = STATE(6275), - [sym_inquire_statement] = STATE(6275), - [sym_file_position_statement] = STATE(6275), - [sym_allocate_statement] = STATE(6275), - [sym_entry_statement] = STATE(6275), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6275), - [sym_coarray_team_statement] = STATE(6275), - [sym_coarray_critical_statement] = STATE(6275), - [sym_end_coarray_critical_statement] = STATE(7233), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), - [aux_sym_preproc_include_token1] = ACTIONS(3208), - [aux_sym_preproc_def_token1] = ACTIONS(3210), - [aux_sym_preproc_if_token1] = ACTIONS(3212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3214), - [sym_preproc_directive] = ACTIONS(3216), + [656] = { + [sym_preproc_include] = STATE(754), + [sym_preproc_def] = STATE(754), + [sym_preproc_function_def] = STATE(754), + [sym_preproc_call] = STATE(754), + [sym_preproc_if_in_statements] = STATE(754), + [sym_preproc_ifdef_in_statements] = STATE(754), + [sym__statements] = STATE(6821), + [sym_statement_label] = STATE(799), + [sym_stop_statement] = STATE(6821), + [sym_assignment_statement] = STATE(6821), + [sym_pointer_association_statement] = STATE(6821), + [sym_subroutine_call] = STATE(6821), + [sym_keyword_statement] = STATE(6821), + [sym_include_statement] = STATE(6821), + [sym_do_loop_statement] = STATE(6821), + [sym_do_label_statement] = STATE(6821), + [sym_end_do_label_statement] = STATE(6821), + [sym_if_statement] = STATE(6821), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6821), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6821), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6821), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6821), + [sym_select_type_statement] = STATE(6821), + [sym_select_rank_statement] = STATE(6821), + [sym_block_construct] = STATE(6821), + [sym_associate_statement] = STATE(6821), + [sym_format_statement] = STATE(6821), + [sym_read_statement] = STATE(6821), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6821), + [sym_open_statement] = STATE(6821), + [sym_close_statement] = STATE(6821), + [sym_write_statement] = STATE(6821), + [sym_inquire_statement] = STATE(6821), + [sym_file_position_statement] = STATE(6821), + [sym_allocate_statement] = STATE(6821), + [sym_entry_statement] = STATE(6821), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6821), + [sym_coarray_team_statement] = STATE(6821), + [sym_coarray_critical_statement] = STATE(6821), + [sym_end_coarray_critical_statement] = STATE(7113), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(754), + [aux_sym_preproc_include_token1] = ACTIONS(3161), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3169), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3218), + [aux_sym_end_program_statement_token1] = ACTIONS(3171), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -175139,10 +173779,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -175151,7 +173791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3173), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -175201,98 +173841,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3222), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3175), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [665] = { - [sym_preproc_include] = STATE(667), - [sym_preproc_def] = STATE(667), - [sym_preproc_function_def] = STATE(667), - [sym_preproc_call] = STATE(667), - [sym_preproc_if_in_statements] = STATE(667), - [sym_preproc_ifdef_in_statements] = STATE(667), - [sym__statements] = STATE(6776), - [sym_statement_label] = STATE(812), - [sym_stop_statement] = STATE(6776), - [sym_assignment_statement] = STATE(6776), - [sym_pointer_association_statement] = STATE(6776), - [sym_subroutine_call] = STATE(6776), - [sym_keyword_statement] = STATE(6776), - [sym_include_statement] = STATE(6776), - [sym_do_loop_statement] = STATE(6776), - [sym_do_label_statement] = STATE(6776), - [sym_end_do_label_statement] = STATE(6776), - [sym_if_statement] = STATE(6776), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6776), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6776), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6776), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6776), - [sym_select_type_statement] = STATE(6776), - [sym_select_rank_statement] = STATE(6776), - [sym_block_construct] = STATE(6776), - [sym_associate_statement] = STATE(6776), - [sym_format_statement] = STATE(6776), - [sym_read_statement] = STATE(6776), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6776), - [sym_open_statement] = STATE(6776), - [sym_close_statement] = STATE(6776), - [sym_write_statement] = STATE(6776), - [sym_inquire_statement] = STATE(6776), - [sym_file_position_statement] = STATE(6776), - [sym_allocate_statement] = STATE(6776), - [sym_entry_statement] = STATE(6776), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6776), - [sym_coarray_team_statement] = STATE(6776), - [sym_coarray_critical_statement] = STATE(6776), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(667), - [aux_sym_preproc_include_token1] = ACTIONS(3285), - [aux_sym_preproc_def_token1] = ACTIONS(3288), - [aux_sym_preproc_if_token1] = ACTIONS(3291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3297), + [657] = { + [sym_preproc_include] = STATE(701), + [sym_preproc_def] = STATE(701), + [sym_preproc_function_def] = STATE(701), + [sym_preproc_call] = STATE(701), + [sym_preproc_if_in_statements] = STATE(701), + [sym_preproc_ifdef_in_statements] = STATE(701), + [sym__statements] = STATE(6986), + [sym_statement_label] = STATE(770), + [sym_stop_statement] = STATE(6986), + [sym_assignment_statement] = STATE(6986), + [sym_pointer_association_statement] = STATE(6986), + [sym_subroutine_call] = STATE(6986), + [sym_keyword_statement] = STATE(6986), + [sym_include_statement] = STATE(6986), + [sym_do_loop_statement] = STATE(6986), + [sym_do_label_statement] = STATE(6986), + [sym_end_do_label_statement] = STATE(6986), + [sym_if_statement] = STATE(6986), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6986), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6986), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6986), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_end_forall_statement] = STATE(7181), + [sym_select_case_statement] = STATE(6986), + [sym_select_type_statement] = STATE(6986), + [sym_select_rank_statement] = STATE(6986), + [sym_block_construct] = STATE(6986), + [sym_associate_statement] = STATE(6986), + [sym_format_statement] = STATE(6986), + [sym_read_statement] = STATE(6986), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6986), + [sym_open_statement] = STATE(6986), + [sym_close_statement] = STATE(6986), + [sym_write_statement] = STATE(6986), + [sym_inquire_statement] = STATE(6986), + [sym_file_position_statement] = STATE(6986), + [sym_allocate_statement] = STATE(6986), + [sym_entry_statement] = STATE(6986), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6986), + [sym_coarray_team_statement] = STATE(6986), + [sym_coarray_critical_statement] = STATE(6986), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(701), + [aux_sym_preproc_include_token1] = ACTIONS(3177), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3185), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3300), + [aux_sym_end_program_statement_token1] = ACTIONS(3187), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -175308,10 +173949,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -175320,7 +173961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3189), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -175338,12 +173979,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_end_forall_statement_token1] = ACTIONS(3191), [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token2] = ACTIONS(2772), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2772), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -175374,260 +174014,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3303), + [sym__integer_literal] = ACTIONS(3193), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [666] = { - [sym_preproc_include] = STATE(741), - [sym_preproc_def] = STATE(741), - [sym_preproc_function_def] = STATE(741), - [sym_preproc_call] = STATE(741), - [sym_preproc_if_in_statements] = STATE(741), - [sym_preproc_ifdef_in_statements] = STATE(741), - [sym__statements] = STATE(6402), - [sym_statement_label] = STATE(773), - [sym_stop_statement] = STATE(6402), - [sym_assignment_statement] = STATE(6402), - [sym_pointer_association_statement] = STATE(6402), - [sym_subroutine_call] = STATE(6402), - [sym_keyword_statement] = STATE(6402), - [sym_include_statement] = STATE(6402), - [sym_do_loop_statement] = STATE(6402), - [sym_end_do_loop_statement] = STATE(7107), - [sym_do_label_statement] = STATE(6402), - [sym_end_do_label_statement] = STATE(6402), - [sym_if_statement] = STATE(6402), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6402), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6402), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6402), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6402), - [sym_select_type_statement] = STATE(6402), - [sym_select_rank_statement] = STATE(6402), - [sym_block_construct] = STATE(6402), - [sym_associate_statement] = STATE(6402), - [sym_format_statement] = STATE(6402), - [sym_read_statement] = STATE(6402), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6402), - [sym_open_statement] = STATE(6402), - [sym_close_statement] = STATE(6402), - [sym_write_statement] = STATE(6402), - [sym_inquire_statement] = STATE(6402), - [sym_file_position_statement] = STATE(6402), - [sym_allocate_statement] = STATE(6402), - [sym_entry_statement] = STATE(6402), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6402), - [sym_coarray_team_statement] = STATE(6402), - [sym_coarray_critical_statement] = STATE(6402), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(741), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), - [sym_preproc_directive] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [658] = { + [sym_preproc_include] = STATE(658), + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_statements] = STATE(658), + [sym_preproc_ifdef_in_statements] = STATE(658), + [sym__statements] = STATE(6829), + [sym_statement_label] = STATE(798), + [sym_stop_statement] = STATE(6829), + [sym_assignment_statement] = STATE(6829), + [sym_pointer_association_statement] = STATE(6829), + [sym_subroutine_call] = STATE(6829), + [sym_keyword_statement] = STATE(6829), + [sym_include_statement] = STATE(6829), + [sym_do_loop_statement] = STATE(6829), + [sym_do_label_statement] = STATE(6829), + [sym_end_do_label_statement] = STATE(6829), + [sym_if_statement] = STATE(6829), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6829), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6829), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6829), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6829), + [sym_select_type_statement] = STATE(6829), + [sym_select_rank_statement] = STATE(6829), + [sym_block_construct] = STATE(6829), + [sym_associate_statement] = STATE(6829), + [sym_format_statement] = STATE(6829), + [sym_read_statement] = STATE(6829), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6829), + [sym_open_statement] = STATE(6829), + [sym_close_statement] = STATE(6829), + [sym_write_statement] = STATE(6829), + [sym_inquire_statement] = STATE(6829), + [sym_file_position_statement] = STATE(6829), + [sym_allocate_statement] = STATE(6829), + [sym_entry_statement] = STATE(6829), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6829), + [sym_coarray_team_statement] = STATE(6829), + [sym_coarray_critical_statement] = STATE(6829), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(658), + [aux_sym_preproc_include_token1] = ACTIONS(3195), + [aux_sym_preproc_def_token1] = ACTIONS(3198), + [aux_sym_preproc_if_token1] = ACTIONS(3201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3204), + [sym_preproc_directive] = ACTIONS(3207), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3154), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3156), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(3158), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_end_program_statement_token2] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_contains_statement_token1] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3210), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), }, - [667] = { - [sym_preproc_include] = STATE(667), - [sym_preproc_def] = STATE(667), - [sym_preproc_function_def] = STATE(667), - [sym_preproc_call] = STATE(667), - [sym_preproc_if_in_statements] = STATE(667), - [sym_preproc_ifdef_in_statements] = STATE(667), - [sym__statements] = STATE(6776), + [659] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_statements] = STATE(659), + [sym_preproc_ifdef_in_statements] = STATE(659), + [sym__statements] = STATE(6497), + [sym_statement_label] = STATE(807), + [sym_stop_statement] = STATE(6497), + [sym_assignment_statement] = STATE(6497), + [sym_pointer_association_statement] = STATE(6497), + [sym_subroutine_call] = STATE(6497), + [sym_keyword_statement] = STATE(6497), + [sym_include_statement] = STATE(6497), + [sym_do_loop_statement] = STATE(6497), + [sym_do_label_statement] = STATE(6497), + [sym_end_do_label_statement] = STATE(6497), + [sym_if_statement] = STATE(6497), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6497), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6497), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6497), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6497), + [sym_select_type_statement] = STATE(6497), + [sym_select_rank_statement] = STATE(6497), + [sym_block_construct] = STATE(6497), + [sym_associate_statement] = STATE(6497), + [sym_format_statement] = STATE(6497), + [sym_read_statement] = STATE(6497), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6497), + [sym_open_statement] = STATE(6497), + [sym_close_statement] = STATE(6497), + [sym_write_statement] = STATE(6497), + [sym_inquire_statement] = STATE(6497), + [sym_file_position_statement] = STATE(6497), + [sym_allocate_statement] = STATE(6497), + [sym_entry_statement] = STATE(6497), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6497), + [sym_coarray_team_statement] = STATE(6497), + [sym_coarray_critical_statement] = STATE(6497), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), + [aux_sym_preproc_include_token1] = ACTIONS(3213), + [aux_sym_preproc_def_token1] = ACTIONS(3216), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3222), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3222), + [sym_preproc_directive] = ACTIONS(3225), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_contains_statement_token1] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3228), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), + }, + [660] = { + [sym_preproc_include] = STATE(660), + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_if_in_statements] = STATE(660), + [sym_preproc_ifdef_in_statements] = STATE(660), + [sym__statements] = STATE(6721), [sym_statement_label] = STATE(812), - [sym_stop_statement] = STATE(6776), - [sym_assignment_statement] = STATE(6776), - [sym_pointer_association_statement] = STATE(6776), - [sym_subroutine_call] = STATE(6776), - [sym_keyword_statement] = STATE(6776), - [sym_include_statement] = STATE(6776), - [sym_do_loop_statement] = STATE(6776), - [sym_do_label_statement] = STATE(6776), - [sym_end_do_label_statement] = STATE(6776), - [sym_if_statement] = STATE(6776), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6776), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6776), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6776), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6776), - [sym_select_type_statement] = STATE(6776), - [sym_select_rank_statement] = STATE(6776), - [sym_block_construct] = STATE(6776), - [sym_associate_statement] = STATE(6776), - [sym_format_statement] = STATE(6776), - [sym_read_statement] = STATE(6776), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6776), - [sym_open_statement] = STATE(6776), - [sym_close_statement] = STATE(6776), - [sym_write_statement] = STATE(6776), - [sym_inquire_statement] = STATE(6776), - [sym_file_position_statement] = STATE(6776), - [sym_allocate_statement] = STATE(6776), - [sym_entry_statement] = STATE(6776), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6776), - [sym_coarray_team_statement] = STATE(6776), - [sym_coarray_critical_statement] = STATE(6776), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(667), - [aux_sym_preproc_include_token1] = ACTIONS(3306), - [aux_sym_preproc_def_token1] = ACTIONS(3309), - [aux_sym_preproc_if_token1] = ACTIONS(3312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3315), - [sym_preproc_directive] = ACTIONS(3318), + [sym_stop_statement] = STATE(6721), + [sym_assignment_statement] = STATE(6721), + [sym_pointer_association_statement] = STATE(6721), + [sym_subroutine_call] = STATE(6721), + [sym_keyword_statement] = STATE(6721), + [sym_include_statement] = STATE(6721), + [sym_do_loop_statement] = STATE(6721), + [sym_do_label_statement] = STATE(6721), + [sym_end_do_label_statement] = STATE(6721), + [sym_if_statement] = STATE(6721), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6721), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6721), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6721), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6721), + [sym_select_type_statement] = STATE(6721), + [sym_select_rank_statement] = STATE(6721), + [sym_block_construct] = STATE(6721), + [sym_associate_statement] = STATE(6721), + [sym_format_statement] = STATE(6721), + [sym_read_statement] = STATE(6721), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6721), + [sym_open_statement] = STATE(6721), + [sym_close_statement] = STATE(6721), + [sym_write_statement] = STATE(6721), + [sym_inquire_statement] = STATE(6721), + [sym_file_position_statement] = STATE(6721), + [sym_allocate_statement] = STATE(6721), + [sym_entry_statement] = STATE(6721), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6721), + [sym_coarray_team_statement] = STATE(6721), + [sym_coarray_critical_statement] = STATE(6721), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(660), + [aux_sym_preproc_include_token1] = ACTIONS(3231), + [aux_sym_preproc_def_token1] = ACTIONS(3234), + [aux_sym_preproc_if_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3240), + [sym_preproc_directive] = ACTIONS(3243), [anon_sym_LPAREN2] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2070), [anon_sym_DASH] = ACTIONS(2070), @@ -175660,7 +174470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), [aux_sym_type_qualifier_token1] = ACTIONS(2082), [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3246), [aux_sym_stop_statement_token1] = ACTIONS(2094), [aux_sym_stop_statement_token2] = ACTIONS(2097), [aux_sym_subroutine_call_token1] = ACTIONS(2100), @@ -175720,84 +174530,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(2217), [sym__string_literal_kind] = ACTIONS(2220), }, - [668] = { - [sym_preproc_include] = STATE(668), - [sym_preproc_def] = STATE(668), - [sym_preproc_function_def] = STATE(668), - [sym_preproc_call] = STATE(668), - [sym_preproc_if_in_statements] = STATE(668), - [sym_preproc_ifdef_in_statements] = STATE(668), - [sym__statements] = STATE(6782), + [661] = { + [sym_preproc_include] = STATE(661), + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_statements] = STATE(661), + [sym_preproc_ifdef_in_statements] = STATE(661), + [sym__statements] = STATE(6734), [sym_statement_label] = STATE(813), - [sym_stop_statement] = STATE(6782), - [sym_assignment_statement] = STATE(6782), - [sym_pointer_association_statement] = STATE(6782), - [sym_subroutine_call] = STATE(6782), - [sym_keyword_statement] = STATE(6782), - [sym_include_statement] = STATE(6782), - [sym_do_loop_statement] = STATE(6782), - [sym_do_label_statement] = STATE(6782), - [sym_end_do_label_statement] = STATE(6782), - [sym_if_statement] = STATE(6782), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6782), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6782), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6782), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6782), - [sym_select_type_statement] = STATE(6782), - [sym_select_rank_statement] = STATE(6782), - [sym_block_construct] = STATE(6782), - [sym_associate_statement] = STATE(6782), - [sym_format_statement] = STATE(6782), - [sym_read_statement] = STATE(6782), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6782), - [sym_open_statement] = STATE(6782), - [sym_close_statement] = STATE(6782), - [sym_write_statement] = STATE(6782), - [sym_inquire_statement] = STATE(6782), - [sym_file_position_statement] = STATE(6782), - [sym_allocate_statement] = STATE(6782), - [sym_entry_statement] = STATE(6782), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6782), - [sym_coarray_team_statement] = STATE(6782), - [sym_coarray_critical_statement] = STATE(6782), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(668), - [aux_sym_preproc_include_token1] = ACTIONS(3324), - [aux_sym_preproc_def_token1] = ACTIONS(3327), - [aux_sym_preproc_if_token1] = ACTIONS(3330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), - [sym_preproc_directive] = ACTIONS(3336), + [sym_stop_statement] = STATE(6734), + [sym_assignment_statement] = STATE(6734), + [sym_pointer_association_statement] = STATE(6734), + [sym_subroutine_call] = STATE(6734), + [sym_keyword_statement] = STATE(6734), + [sym_include_statement] = STATE(6734), + [sym_do_loop_statement] = STATE(6734), + [sym_do_label_statement] = STATE(6734), + [sym_end_do_label_statement] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6734), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6734), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6734), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6734), + [sym_select_type_statement] = STATE(6734), + [sym_select_rank_statement] = STATE(6734), + [sym_block_construct] = STATE(6734), + [sym_associate_statement] = STATE(6734), + [sym_format_statement] = STATE(6734), + [sym_read_statement] = STATE(6734), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6734), + [sym_open_statement] = STATE(6734), + [sym_close_statement] = STATE(6734), + [sym_write_statement] = STATE(6734), + [sym_inquire_statement] = STATE(6734), + [sym_file_position_statement] = STATE(6734), + [sym_allocate_statement] = STATE(6734), + [sym_entry_statement] = STATE(6734), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6734), + [sym_coarray_team_statement] = STATE(6734), + [sym_coarray_critical_statement] = STATE(6734), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(661), + [aux_sym_preproc_include_token1] = ACTIONS(3249), + [aux_sym_preproc_def_token1] = ACTIONS(3252), + [aux_sym_preproc_if_token1] = ACTIONS(3255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3258), + [sym_preproc_directive] = ACTIONS(3261), [anon_sym_LPAREN2] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2070), [anon_sym_DASH] = ACTIONS(2070), @@ -175830,7 +174640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), [aux_sym_type_qualifier_token1] = ACTIONS(2082), [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3264), [aux_sym_stop_statement_token1] = ACTIONS(2094), [aux_sym_stop_statement_token2] = ACTIONS(2097), [aux_sym_subroutine_call_token1] = ACTIONS(2100), @@ -175890,90 +174700,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(2217), [sym__string_literal_kind] = ACTIONS(2220), }, - [669] = { - [sym_preproc_include] = STATE(703), - [sym_preproc_def] = STATE(703), - [sym_preproc_function_def] = STATE(703), - [sym_preproc_call] = STATE(703), - [sym_preproc_if_in_statements] = STATE(703), - [sym_preproc_ifdef_in_statements] = STATE(703), - [sym__statements] = STATE(6742), - [sym_statement_label] = STATE(809), - [sym_stop_statement] = STATE(6742), - [sym_assignment_statement] = STATE(6742), - [sym_pointer_association_statement] = STATE(6742), - [sym_subroutine_call] = STATE(6742), - [sym_keyword_statement] = STATE(6742), - [sym_include_statement] = STATE(6742), - [sym_do_loop_statement] = STATE(6742), - [sym_do_label_statement] = STATE(6742), - [sym_end_do_label_statement] = STATE(6742), - [sym_if_statement] = STATE(6742), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6742), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6742), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6742), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6742), - [sym_select_type_statement] = STATE(6742), - [sym_select_rank_statement] = STATE(6742), - [sym_block_construct] = STATE(6742), - [sym_associate_statement] = STATE(6742), - [sym_end_associate_statement] = STATE(7099), - [sym_format_statement] = STATE(6742), - [sym_read_statement] = STATE(6742), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6742), - [sym_open_statement] = STATE(6742), - [sym_close_statement] = STATE(6742), - [sym_write_statement] = STATE(6742), - [sym_inquire_statement] = STATE(6742), - [sym_file_position_statement] = STATE(6742), - [sym_allocate_statement] = STATE(6742), - [sym_entry_statement] = STATE(6742), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6742), - [sym_coarray_team_statement] = STATE(6742), - [sym_coarray_critical_statement] = STATE(6742), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(703), - [aux_sym_preproc_include_token1] = ACTIONS(3226), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3234), + [662] = { + [sym_preproc_include] = STATE(697), + [sym_preproc_def] = STATE(697), + [sym_preproc_function_def] = STATE(697), + [sym_preproc_call] = STATE(697), + [sym_preproc_if_in_statements] = STATE(697), + [sym_preproc_ifdef_in_statements] = STATE(697), + [sym__statements] = STATE(6311), + [sym_statement_label] = STATE(784), + [sym_stop_statement] = STATE(6311), + [sym_assignment_statement] = STATE(6311), + [sym_pointer_association_statement] = STATE(6311), + [sym_subroutine_call] = STATE(6311), + [sym_keyword_statement] = STATE(6311), + [sym_include_statement] = STATE(6311), + [sym_do_loop_statement] = STATE(6311), + [sym_end_do_loop_statement] = STATE(7429), + [sym_do_label_statement] = STATE(6311), + [sym_end_do_label_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6311), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6311), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6311), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6311), + [sym_select_type_statement] = STATE(6311), + [sym_select_rank_statement] = STATE(6311), + [sym_block_construct] = STATE(6311), + [sym_associate_statement] = STATE(6311), + [sym_format_statement] = STATE(6311), + [sym_read_statement] = STATE(6311), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6311), + [sym_open_statement] = STATE(6311), + [sym_close_statement] = STATE(6311), + [sym_write_statement] = STATE(6311), + [sym_inquire_statement] = STATE(6311), + [sym_file_position_statement] = STATE(6311), + [sym_allocate_statement] = STATE(6311), + [sym_entry_statement] = STATE(6311), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6311), + [sym_coarray_team_statement] = STATE(6311), + [sym_coarray_critical_statement] = STATE(6311), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3129), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3236), + [aux_sym_end_program_statement_token1] = ACTIONS(3131), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -175989,10 +174799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -176001,7 +174811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3267), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -176014,6 +174824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(3135), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -176025,7 +174836,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_end_associate_statement_token1] = ACTIONS(3240), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -176054,95 +174864,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [670] = { - [sym_preproc_include] = STATE(668), - [sym_preproc_def] = STATE(668), - [sym_preproc_function_def] = STATE(668), - [sym_preproc_call] = STATE(668), - [sym_preproc_if_in_statements] = STATE(668), - [sym_preproc_ifdef_in_statements] = STATE(668), - [sym__statements] = STATE(6782), - [sym_statement_label] = STATE(813), - [sym_stop_statement] = STATE(6782), - [sym_assignment_statement] = STATE(6782), - [sym_pointer_association_statement] = STATE(6782), - [sym_subroutine_call] = STATE(6782), - [sym_keyword_statement] = STATE(6782), - [sym_include_statement] = STATE(6782), - [sym_do_loop_statement] = STATE(6782), - [sym_do_label_statement] = STATE(6782), - [sym_end_do_label_statement] = STATE(6782), - [sym_if_statement] = STATE(6782), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6782), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6782), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6782), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6782), - [sym_select_type_statement] = STATE(6782), - [sym_select_rank_statement] = STATE(6782), - [sym_block_construct] = STATE(6782), - [sym_associate_statement] = STATE(6782), - [sym_format_statement] = STATE(6782), - [sym_read_statement] = STATE(6782), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6782), - [sym_open_statement] = STATE(6782), - [sym_close_statement] = STATE(6782), - [sym_write_statement] = STATE(6782), - [sym_inquire_statement] = STATE(6782), - [sym_file_position_statement] = STATE(6782), - [sym_allocate_statement] = STATE(6782), - [sym_entry_statement] = STATE(6782), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6782), - [sym_coarray_team_statement] = STATE(6782), - [sym_coarray_critical_statement] = STATE(6782), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(668), - [aux_sym_preproc_include_token1] = ACTIONS(3344), - [aux_sym_preproc_def_token1] = ACTIONS(3347), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3353), - [sym_preproc_directive] = ACTIONS(3356), + [663] = { + [sym_preproc_include] = STATE(704), + [sym_preproc_def] = STATE(704), + [sym_preproc_function_def] = STATE(704), + [sym_preproc_call] = STATE(704), + [sym_preproc_if_in_statements] = STATE(704), + [sym_preproc_ifdef_in_statements] = STATE(704), + [sym__statements] = STATE(6311), + [sym_statement_label] = STATE(784), + [sym_stop_statement] = STATE(6311), + [sym_assignment_statement] = STATE(6311), + [sym_pointer_association_statement] = STATE(6311), + [sym_subroutine_call] = STATE(6311), + [sym_keyword_statement] = STATE(6311), + [sym_include_statement] = STATE(6311), + [sym_do_loop_statement] = STATE(6311), + [sym_end_do_loop_statement] = STATE(7429), + [sym_do_label_statement] = STATE(6311), + [sym_end_do_label_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6311), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6311), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6311), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6311), + [sym_select_type_statement] = STATE(6311), + [sym_select_rank_statement] = STATE(6311), + [sym_block_construct] = STATE(6311), + [sym_associate_statement] = STATE(6311), + [sym_format_statement] = STATE(6311), + [sym_read_statement] = STATE(6311), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6311), + [sym_open_statement] = STATE(6311), + [sym_close_statement] = STATE(6311), + [sym_write_statement] = STATE(6311), + [sym_inquire_statement] = STATE(6311), + [sym_file_position_statement] = STATE(6311), + [sym_allocate_statement] = STATE(6311), + [sym_entry_statement] = STATE(6311), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6311), + [sym_coarray_team_statement] = STATE(6311), + [sym_coarray_critical_statement] = STATE(6311), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(704), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3129), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3359), + [aux_sym_end_program_statement_token1] = ACTIONS(3131), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -176158,10 +174969,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -176170,7 +174981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3269), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -176183,6 +174994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(3135), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -176191,9 +175003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token1] = ACTIONS(2778), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2778), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -176224,96 +175034,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3362), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [671] = { - [sym_preproc_include] = STATE(705), - [sym_preproc_def] = STATE(705), - [sym_preproc_function_def] = STATE(705), - [sym_preproc_call] = STATE(705), - [sym_preproc_if_in_statements] = STATE(705), - [sym_preproc_ifdef_in_statements] = STATE(705), - [sym__statements] = STATE(6678), - [sym_statement_label] = STATE(805), - [sym_stop_statement] = STATE(6678), - [sym_assignment_statement] = STATE(6678), - [sym_pointer_association_statement] = STATE(6678), - [sym_subroutine_call] = STATE(6678), - [sym_keyword_statement] = STATE(6678), - [sym_include_statement] = STATE(6678), - [sym_do_loop_statement] = STATE(6678), - [sym_do_label_statement] = STATE(6678), - [sym_end_do_label_statement] = STATE(6678), - [sym_if_statement] = STATE(6678), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6678), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6678), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6678), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6678), - [sym_select_type_statement] = STATE(6678), - [sym_select_rank_statement] = STATE(6678), - [sym_block_construct] = STATE(6678), - [sym_associate_statement] = STATE(6678), - [sym_format_statement] = STATE(6678), - [sym_read_statement] = STATE(6678), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6678), - [sym_open_statement] = STATE(6678), - [sym_close_statement] = STATE(6678), - [sym_write_statement] = STATE(6678), - [sym_inquire_statement] = STATE(6678), - [sym_file_position_statement] = STATE(6678), - [sym_allocate_statement] = STATE(6678), - [sym_entry_statement] = STATE(6678), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6678), - [sym_coarray_team_statement] = STATE(6678), - [sym_end_coarray_team_statement] = STATE(7177), - [sym_coarray_critical_statement] = STATE(6678), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(705), - [aux_sym_preproc_include_token1] = ACTIONS(3365), - [aux_sym_preproc_def_token1] = ACTIONS(3367), - [aux_sym_preproc_if_token1] = ACTIONS(3369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3371), - [sym_preproc_directive] = ACTIONS(3373), + [664] = { + [sym_preproc_include] = STATE(753), + [sym_preproc_def] = STATE(753), + [sym_preproc_function_def] = STATE(753), + [sym_preproc_call] = STATE(753), + [sym_preproc_if_in_statements] = STATE(753), + [sym_preproc_ifdef_in_statements] = STATE(753), + [sym__statements] = STATE(6669), + [sym_statement_label] = STATE(801), + [sym_stop_statement] = STATE(6669), + [sym_assignment_statement] = STATE(6669), + [sym_pointer_association_statement] = STATE(6669), + [sym_subroutine_call] = STATE(6669), + [sym_keyword_statement] = STATE(6669), + [sym_include_statement] = STATE(6669), + [sym_do_loop_statement] = STATE(6669), + [sym_do_label_statement] = STATE(6669), + [sym_end_do_label_statement] = STATE(6669), + [sym_if_statement] = STATE(6669), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6669), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6669), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6669), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6669), + [sym_select_type_statement] = STATE(6669), + [sym_select_rank_statement] = STATE(6669), + [sym_block_construct] = STATE(6669), + [sym_end_block_construct_statement] = STATE(7199), + [sym_associate_statement] = STATE(6669), + [sym_format_statement] = STATE(6669), + [sym_read_statement] = STATE(6669), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6669), + [sym_open_statement] = STATE(6669), + [sym_close_statement] = STATE(6669), + [sym_write_statement] = STATE(6669), + [sym_inquire_statement] = STATE(6669), + [sym_file_position_statement] = STATE(6669), + [sym_allocate_statement] = STATE(6669), + [sym_entry_statement] = STATE(6669), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6669), + [sym_coarray_team_statement] = STATE(6669), + [sym_coarray_critical_statement] = STATE(6669), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(753), + [aux_sym_preproc_include_token1] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3139), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(3141), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3375), + [aux_sym_end_program_statement_token1] = ACTIONS(1376), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -176329,10 +175139,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -176341,7 +175151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_SEMI] = ACTIONS(3143), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -176364,6 +175174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(1384), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), @@ -176390,100 +175201,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(177), [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(3379), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [672] = { - [sym_preproc_include] = STATE(682), - [sym_preproc_def] = STATE(682), - [sym_preproc_function_def] = STATE(682), - [sym_preproc_call] = STATE(682), - [sym_preproc_if_in_statements] = STATE(682), - [sym_preproc_ifdef_in_statements] = STATE(682), - [sym__statements] = STATE(6402), - [sym_statement_label] = STATE(780), - [sym_stop_statement] = STATE(6402), - [sym_assignment_statement] = STATE(6402), - [sym_pointer_association_statement] = STATE(6402), - [sym_subroutine_call] = STATE(6402), - [sym_keyword_statement] = STATE(6402), - [sym_include_statement] = STATE(6402), - [sym_do_loop_statement] = STATE(6402), - [sym_end_do_loop_statement] = STATE(7353), - [sym_do_label_statement] = STATE(6402), - [sym_end_do_label_statement] = STATE(6402), - [sym_if_statement] = STATE(6402), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6402), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6402), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6402), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6402), - [sym_select_type_statement] = STATE(6402), - [sym_select_rank_statement] = STATE(6402), - [sym_block_construct] = STATE(6402), - [sym_associate_statement] = STATE(6402), - [sym_format_statement] = STATE(6402), - [sym_read_statement] = STATE(6402), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6402), - [sym_open_statement] = STATE(6402), - [sym_close_statement] = STATE(6402), - [sym_write_statement] = STATE(6402), - [sym_inquire_statement] = STATE(6402), - [sym_file_position_statement] = STATE(6402), - [sym_allocate_statement] = STATE(6402), - [sym_entry_statement] = STATE(6402), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6402), - [sym_coarray_team_statement] = STATE(6402), - [sym_coarray_critical_statement] = STATE(6402), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(682), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), - [sym_preproc_directive] = ACTIONS(3152), + [665] = { + [sym_preproc_include] = STATE(700), + [sym_preproc_def] = STATE(700), + [sym_preproc_function_def] = STATE(700), + [sym_preproc_call] = STATE(700), + [sym_preproc_if_in_statements] = STATE(700), + [sym_preproc_ifdef_in_statements] = STATE(700), + [sym__statements] = STATE(6605), + [sym_statement_label] = STATE(805), + [sym_stop_statement] = STATE(6605), + [sym_assignment_statement] = STATE(6605), + [sym_pointer_association_statement] = STATE(6605), + [sym_subroutine_call] = STATE(6605), + [sym_keyword_statement] = STATE(6605), + [sym_include_statement] = STATE(6605), + [sym_do_loop_statement] = STATE(6605), + [sym_do_label_statement] = STATE(6605), + [sym_end_do_label_statement] = STATE(6605), + [sym_if_statement] = STATE(6605), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6605), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6605), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6605), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6605), + [sym_select_type_statement] = STATE(6605), + [sym_select_rank_statement] = STATE(6605), + [sym_block_construct] = STATE(6605), + [sym_associate_statement] = STATE(6605), + [sym_format_statement] = STATE(6605), + [sym_read_statement] = STATE(6605), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6605), + [sym_open_statement] = STATE(6605), + [sym_close_statement] = STATE(6605), + [sym_write_statement] = STATE(6605), + [sym_inquire_statement] = STATE(6605), + [sym_file_position_statement] = STATE(6605), + [sym_allocate_statement] = STATE(6605), + [sym_entry_statement] = STATE(6605), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6605), + [sym_coarray_team_statement] = STATE(6605), + [sym_end_coarray_team_statement] = STATE(7338), + [sym_coarray_critical_statement] = STATE(6605), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(700), + [aux_sym_preproc_include_token1] = ACTIONS(3145), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3153), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3154), + [aux_sym_end_program_statement_token1] = ACTIONS(3155), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -176499,10 +175309,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -176511,7 +175321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(3271), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -176524,7 +175334,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(3158), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -176561,99 +175370,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(177), [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(3159), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [673] = { - [sym_preproc_include] = STATE(705), - [sym_preproc_def] = STATE(705), - [sym_preproc_function_def] = STATE(705), - [sym_preproc_call] = STATE(705), - [sym_preproc_if_in_statements] = STATE(705), - [sym_preproc_ifdef_in_statements] = STATE(705), - [sym__statements] = STATE(6678), - [sym_statement_label] = STATE(805), - [sym_stop_statement] = STATE(6678), - [sym_assignment_statement] = STATE(6678), - [sym_pointer_association_statement] = STATE(6678), - [sym_subroutine_call] = STATE(6678), - [sym_keyword_statement] = STATE(6678), - [sym_include_statement] = STATE(6678), - [sym_do_loop_statement] = STATE(6678), - [sym_do_label_statement] = STATE(6678), - [sym_end_do_label_statement] = STATE(6678), - [sym_if_statement] = STATE(6678), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6678), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6678), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6678), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6678), - [sym_select_type_statement] = STATE(6678), - [sym_select_rank_statement] = STATE(6678), - [sym_block_construct] = STATE(6678), - [sym_associate_statement] = STATE(6678), - [sym_format_statement] = STATE(6678), - [sym_read_statement] = STATE(6678), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6678), - [sym_open_statement] = STATE(6678), - [sym_close_statement] = STATE(6678), - [sym_write_statement] = STATE(6678), - [sym_inquire_statement] = STATE(6678), - [sym_file_position_statement] = STATE(6678), - [sym_allocate_statement] = STATE(6678), - [sym_entry_statement] = STATE(6678), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6678), - [sym_coarray_team_statement] = STATE(6678), - [sym_end_coarray_team_statement] = STATE(7405), - [sym_coarray_critical_statement] = STATE(6678), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(705), - [aux_sym_preproc_include_token1] = ACTIONS(3365), - [aux_sym_preproc_def_token1] = ACTIONS(3367), - [aux_sym_preproc_if_token1] = ACTIONS(3369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3371), - [sym_preproc_directive] = ACTIONS(3373), + [666] = { + [sym_preproc_include] = STATE(754), + [sym_preproc_def] = STATE(754), + [sym_preproc_function_def] = STATE(754), + [sym_preproc_call] = STATE(754), + [sym_preproc_if_in_statements] = STATE(754), + [sym_preproc_ifdef_in_statements] = STATE(754), + [sym__statements] = STATE(6821), + [sym_statement_label] = STATE(799), + [sym_stop_statement] = STATE(6821), + [sym_assignment_statement] = STATE(6821), + [sym_pointer_association_statement] = STATE(6821), + [sym_subroutine_call] = STATE(6821), + [sym_keyword_statement] = STATE(6821), + [sym_include_statement] = STATE(6821), + [sym_do_loop_statement] = STATE(6821), + [sym_do_label_statement] = STATE(6821), + [sym_end_do_label_statement] = STATE(6821), + [sym_if_statement] = STATE(6821), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6821), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6821), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6821), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6821), + [sym_select_type_statement] = STATE(6821), + [sym_select_rank_statement] = STATE(6821), + [sym_block_construct] = STATE(6821), + [sym_associate_statement] = STATE(6821), + [sym_format_statement] = STATE(6821), + [sym_read_statement] = STATE(6821), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6821), + [sym_open_statement] = STATE(6821), + [sym_close_statement] = STATE(6821), + [sym_write_statement] = STATE(6821), + [sym_inquire_statement] = STATE(6821), + [sym_file_position_statement] = STATE(6821), + [sym_allocate_statement] = STATE(6821), + [sym_entry_statement] = STATE(6821), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6821), + [sym_coarray_team_statement] = STATE(6821), + [sym_coarray_critical_statement] = STATE(6821), + [sym_end_coarray_critical_statement] = STATE(7342), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(754), + [aux_sym_preproc_include_token1] = ACTIONS(3161), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3169), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3375), + [aux_sym_end_program_statement_token1] = ACTIONS(3171), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -176669,10 +175479,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -176681,7 +175491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_SEMI] = ACTIONS(3173), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -176730,100 +175540,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(177), [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(3379), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3175), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [674] = { - [sym_preproc_include] = STATE(695), - [sym_preproc_def] = STATE(695), - [sym_preproc_function_def] = STATE(695), - [sym_preproc_call] = STATE(695), - [sym_preproc_if_in_statements] = STATE(695), - [sym_preproc_ifdef_in_statements] = STATE(695), - [sym__statements] = STATE(6742), - [sym_statement_label] = STATE(809), - [sym_stop_statement] = STATE(6742), - [sym_assignment_statement] = STATE(6742), - [sym_pointer_association_statement] = STATE(6742), - [sym_subroutine_call] = STATE(6742), - [sym_keyword_statement] = STATE(6742), - [sym_include_statement] = STATE(6742), - [sym_do_loop_statement] = STATE(6742), - [sym_do_label_statement] = STATE(6742), - [sym_end_do_label_statement] = STATE(6742), - [sym_if_statement] = STATE(6742), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6742), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6742), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6742), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6742), - [sym_select_type_statement] = STATE(6742), - [sym_select_rank_statement] = STATE(6742), - [sym_block_construct] = STATE(6742), - [sym_associate_statement] = STATE(6742), - [sym_end_associate_statement] = STATE(7197), - [sym_format_statement] = STATE(6742), - [sym_read_statement] = STATE(6742), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6742), - [sym_open_statement] = STATE(6742), - [sym_close_statement] = STATE(6742), - [sym_write_statement] = STATE(6742), - [sym_inquire_statement] = STATE(6742), - [sym_file_position_statement] = STATE(6742), - [sym_allocate_statement] = STATE(6742), - [sym_entry_statement] = STATE(6742), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6742), - [sym_coarray_team_statement] = STATE(6742), - [sym_coarray_critical_statement] = STATE(6742), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(695), - [aux_sym_preproc_include_token1] = ACTIONS(3226), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3234), + [667] = { + [sym_preproc_include] = STATE(703), + [sym_preproc_def] = STATE(703), + [sym_preproc_function_def] = STATE(703), + [sym_preproc_call] = STATE(703), + [sym_preproc_if_in_statements] = STATE(703), + [sym_preproc_ifdef_in_statements] = STATE(703), + [sym__statements] = STATE(6721), + [sym_statement_label] = STATE(812), + [sym_stop_statement] = STATE(6721), + [sym_assignment_statement] = STATE(6721), + [sym_pointer_association_statement] = STATE(6721), + [sym_subroutine_call] = STATE(6721), + [sym_keyword_statement] = STATE(6721), + [sym_include_statement] = STATE(6721), + [sym_do_loop_statement] = STATE(6721), + [sym_do_label_statement] = STATE(6721), + [sym_end_do_label_statement] = STATE(6721), + [sym_if_statement] = STATE(6721), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6721), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6721), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6721), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6721), + [sym_select_type_statement] = STATE(6721), + [sym_select_rank_statement] = STATE(6721), + [sym_block_construct] = STATE(6721), + [sym_associate_statement] = STATE(6721), + [sym_format_statement] = STATE(6721), + [sym_read_statement] = STATE(6721), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6721), + [sym_open_statement] = STATE(6721), + [sym_close_statement] = STATE(6721), + [sym_write_statement] = STATE(6721), + [sym_inquire_statement] = STATE(6721), + [sym_file_position_statement] = STATE(6721), + [sym_allocate_statement] = STATE(6721), + [sym_entry_statement] = STATE(6721), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6721), + [sym_coarray_team_statement] = STATE(6721), + [sym_coarray_critical_statement] = STATE(6721), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(703), + [aux_sym_preproc_include_token1] = ACTIONS(3273), + [aux_sym_preproc_def_token1] = ACTIONS(3276), + [aux_sym_preproc_if_token1] = ACTIONS(3279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3285), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3236), + [aux_sym_end_program_statement_token1] = ACTIONS(3288), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -176839,10 +175648,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -176851,7 +175660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3291), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -176870,12 +175679,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token2] = ACTIONS(2708), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2708), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_end_associate_statement_token1] = ACTIONS(3240), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -176904,96 +175714,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3293), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [675] = { - [sym_preproc_include] = STATE(666), - [sym_preproc_def] = STATE(666), - [sym_preproc_function_def] = STATE(666), - [sym_preproc_call] = STATE(666), - [sym_preproc_if_in_statements] = STATE(666), - [sym_preproc_ifdef_in_statements] = STATE(666), - [sym__statements] = STATE(6402), - [sym_statement_label] = STATE(778), - [sym_stop_statement] = STATE(6402), - [sym_assignment_statement] = STATE(6402), - [sym_pointer_association_statement] = STATE(6402), - [sym_subroutine_call] = STATE(6402), - [sym_keyword_statement] = STATE(6402), - [sym_include_statement] = STATE(6402), - [sym_do_loop_statement] = STATE(6402), - [sym_end_do_loop_statement] = STATE(7089), - [sym_do_label_statement] = STATE(6402), - [sym_end_do_label_statement] = STATE(6402), - [sym_if_statement] = STATE(6402), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6402), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6402), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6402), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6402), - [sym_select_type_statement] = STATE(6402), - [sym_select_rank_statement] = STATE(6402), - [sym_block_construct] = STATE(6402), - [sym_associate_statement] = STATE(6402), - [sym_format_statement] = STATE(6402), - [sym_read_statement] = STATE(6402), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6402), - [sym_open_statement] = STATE(6402), - [sym_close_statement] = STATE(6402), - [sym_write_statement] = STATE(6402), - [sym_inquire_statement] = STATE(6402), - [sym_file_position_statement] = STATE(6402), - [sym_allocate_statement] = STATE(6402), - [sym_entry_statement] = STATE(6402), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6402), - [sym_coarray_team_statement] = STATE(6402), - [sym_coarray_critical_statement] = STATE(6402), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(666), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), - [sym_preproc_directive] = ACTIONS(3152), + [668] = { + [sym_preproc_include] = STATE(679), + [sym_preproc_def] = STATE(679), + [sym_preproc_function_def] = STATE(679), + [sym_preproc_call] = STATE(679), + [sym_preproc_if_in_statements] = STATE(679), + [sym_preproc_ifdef_in_statements] = STATE(679), + [sym__statements] = STATE(6734), + [sym_statement_label] = STATE(813), + [sym_stop_statement] = STATE(6734), + [sym_assignment_statement] = STATE(6734), + [sym_pointer_association_statement] = STATE(6734), + [sym_subroutine_call] = STATE(6734), + [sym_keyword_statement] = STATE(6734), + [sym_include_statement] = STATE(6734), + [sym_do_loop_statement] = STATE(6734), + [sym_do_label_statement] = STATE(6734), + [sym_end_do_label_statement] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6734), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6734), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6734), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6734), + [sym_select_type_statement] = STATE(6734), + [sym_select_rank_statement] = STATE(6734), + [sym_block_construct] = STATE(6734), + [sym_associate_statement] = STATE(6734), + [sym_format_statement] = STATE(6734), + [sym_read_statement] = STATE(6734), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6734), + [sym_open_statement] = STATE(6734), + [sym_close_statement] = STATE(6734), + [sym_write_statement] = STATE(6734), + [sym_inquire_statement] = STATE(6734), + [sym_file_position_statement] = STATE(6734), + [sym_allocate_statement] = STATE(6734), + [sym_entry_statement] = STATE(6734), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6734), + [sym_coarray_team_statement] = STATE(6734), + [sym_coarray_critical_statement] = STATE(6734), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(679), + [aux_sym_preproc_include_token1] = ACTIONS(3296), + [aux_sym_preproc_def_token1] = ACTIONS(3299), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3305), + [sym_preproc_directive] = ACTIONS(3308), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3154), + [aux_sym_end_program_statement_token1] = ACTIONS(3311), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -177009,10 +175818,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -177021,7 +175830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3314), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -177034,7 +175843,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(3158), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -177043,7 +175851,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token1] = ACTIONS(2800), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2800), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -177074,95 +175884,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3316), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [676] = { - [sym_preproc_include] = STATE(659), - [sym_preproc_def] = STATE(659), - [sym_preproc_function_def] = STATE(659), - [sym_preproc_call] = STATE(659), - [sym_preproc_if_in_statements] = STATE(659), - [sym_preproc_ifdef_in_statements] = STATE(659), - [sym__statements] = STATE(6782), - [sym_statement_label] = STATE(813), - [sym_stop_statement] = STATE(6782), - [sym_assignment_statement] = STATE(6782), - [sym_pointer_association_statement] = STATE(6782), - [sym_subroutine_call] = STATE(6782), - [sym_keyword_statement] = STATE(6782), - [sym_include_statement] = STATE(6782), - [sym_do_loop_statement] = STATE(6782), - [sym_do_label_statement] = STATE(6782), - [sym_end_do_label_statement] = STATE(6782), - [sym_if_statement] = STATE(6782), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6782), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6782), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6782), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6782), - [sym_select_type_statement] = STATE(6782), - [sym_select_rank_statement] = STATE(6782), - [sym_block_construct] = STATE(6782), - [sym_associate_statement] = STATE(6782), - [sym_format_statement] = STATE(6782), - [sym_read_statement] = STATE(6782), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6782), - [sym_open_statement] = STATE(6782), - [sym_close_statement] = STATE(6782), - [sym_write_statement] = STATE(6782), - [sym_inquire_statement] = STATE(6782), - [sym_file_position_statement] = STATE(6782), - [sym_allocate_statement] = STATE(6782), - [sym_entry_statement] = STATE(6782), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6782), - [sym_coarray_team_statement] = STATE(6782), - [sym_coarray_critical_statement] = STATE(6782), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(659), - [aux_sym_preproc_include_token1] = ACTIONS(3387), - [aux_sym_preproc_def_token1] = ACTIONS(3390), - [aux_sym_preproc_if_token1] = ACTIONS(3393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3399), + [669] = { + [sym_preproc_include] = STATE(708), + [sym_preproc_def] = STATE(708), + [sym_preproc_function_def] = STATE(708), + [sym_preproc_call] = STATE(708), + [sym_preproc_if_in_statements] = STATE(708), + [sym_preproc_ifdef_in_statements] = STATE(708), + [sym__statements] = STATE(6676), + [sym_statement_label] = STATE(809), + [sym_stop_statement] = STATE(6676), + [sym_assignment_statement] = STATE(6676), + [sym_pointer_association_statement] = STATE(6676), + [sym_subroutine_call] = STATE(6676), + [sym_keyword_statement] = STATE(6676), + [sym_include_statement] = STATE(6676), + [sym_do_loop_statement] = STATE(6676), + [sym_do_label_statement] = STATE(6676), + [sym_end_do_label_statement] = STATE(6676), + [sym_if_statement] = STATE(6676), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6676), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6676), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6676), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6676), + [sym_select_type_statement] = STATE(6676), + [sym_select_rank_statement] = STATE(6676), + [sym_block_construct] = STATE(6676), + [sym_associate_statement] = STATE(6676), + [sym_end_associate_statement] = STATE(7201), + [sym_format_statement] = STATE(6676), + [sym_read_statement] = STATE(6676), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6676), + [sym_open_statement] = STATE(6676), + [sym_close_statement] = STATE(6676), + [sym_write_statement] = STATE(6676), + [sym_inquire_statement] = STATE(6676), + [sym_file_position_statement] = STATE(6676), + [sym_allocate_statement] = STATE(6676), + [sym_entry_statement] = STATE(6676), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6676), + [sym_coarray_team_statement] = STATE(6676), + [sym_coarray_critical_statement] = STATE(6676), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(708), + [aux_sym_preproc_include_token1] = ACTIONS(3319), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), + [sym_preproc_directive] = ACTIONS(3327), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3402), + [aux_sym_end_program_statement_token1] = ACTIONS(3329), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -177178,10 +175989,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -177190,7 +176001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3331), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -177211,11 +176022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token1] = ACTIONS(2728), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2728), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_end_associate_statement_token1] = ACTIONS(3333), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -177244,95 +176054,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3407), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [677] = { - [sym_preproc_include] = STATE(667), - [sym_preproc_def] = STATE(667), - [sym_preproc_function_def] = STATE(667), - [sym_preproc_call] = STATE(667), - [sym_preproc_if_in_statements] = STATE(667), - [sym_preproc_ifdef_in_statements] = STATE(667), - [sym__statements] = STATE(6776), - [sym_statement_label] = STATE(812), - [sym_stop_statement] = STATE(6776), - [sym_assignment_statement] = STATE(6776), - [sym_pointer_association_statement] = STATE(6776), - [sym_subroutine_call] = STATE(6776), - [sym_keyword_statement] = STATE(6776), - [sym_include_statement] = STATE(6776), - [sym_do_loop_statement] = STATE(6776), - [sym_do_label_statement] = STATE(6776), - [sym_end_do_label_statement] = STATE(6776), - [sym_if_statement] = STATE(6776), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6776), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6776), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6776), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6776), - [sym_select_type_statement] = STATE(6776), - [sym_select_rank_statement] = STATE(6776), - [sym_block_construct] = STATE(6776), - [sym_associate_statement] = STATE(6776), - [sym_format_statement] = STATE(6776), - [sym_read_statement] = STATE(6776), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6776), - [sym_open_statement] = STATE(6776), - [sym_close_statement] = STATE(6776), - [sym_write_statement] = STATE(6776), - [sym_inquire_statement] = STATE(6776), - [sym_file_position_statement] = STATE(6776), - [sym_allocate_statement] = STATE(6776), - [sym_entry_statement] = STATE(6776), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6776), - [sym_coarray_team_statement] = STATE(6776), - [sym_coarray_critical_statement] = STATE(6776), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(667), - [aux_sym_preproc_include_token1] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3413), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3419), - [sym_preproc_directive] = ACTIONS(3422), + [670] = { + [sym_preproc_include] = STATE(680), + [sym_preproc_def] = STATE(680), + [sym_preproc_function_def] = STATE(680), + [sym_preproc_call] = STATE(680), + [sym_preproc_if_in_statements] = STATE(680), + [sym_preproc_ifdef_in_statements] = STATE(680), + [sym__statements] = STATE(6676), + [sym_statement_label] = STATE(809), + [sym_stop_statement] = STATE(6676), + [sym_assignment_statement] = STATE(6676), + [sym_pointer_association_statement] = STATE(6676), + [sym_subroutine_call] = STATE(6676), + [sym_keyword_statement] = STATE(6676), + [sym_include_statement] = STATE(6676), + [sym_do_loop_statement] = STATE(6676), + [sym_do_label_statement] = STATE(6676), + [sym_end_do_label_statement] = STATE(6676), + [sym_if_statement] = STATE(6676), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6676), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6676), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6676), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6676), + [sym_select_type_statement] = STATE(6676), + [sym_select_rank_statement] = STATE(6676), + [sym_block_construct] = STATE(6676), + [sym_associate_statement] = STATE(6676), + [sym_end_associate_statement] = STATE(7201), + [sym_format_statement] = STATE(6676), + [sym_read_statement] = STATE(6676), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6676), + [sym_open_statement] = STATE(6676), + [sym_close_statement] = STATE(6676), + [sym_write_statement] = STATE(6676), + [sym_inquire_statement] = STATE(6676), + [sym_file_position_statement] = STATE(6676), + [sym_allocate_statement] = STATE(6676), + [sym_entry_statement] = STATE(6676), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6676), + [sym_coarray_team_statement] = STATE(6676), + [sym_coarray_critical_statement] = STATE(6676), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(680), + [aux_sym_preproc_include_token1] = ACTIONS(3319), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), + [sym_preproc_directive] = ACTIONS(3327), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3425), + [aux_sym_end_program_statement_token1] = ACTIONS(3329), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -177348,10 +176159,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -177360,7 +176171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3335), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -177379,13 +176190,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token2] = ACTIONS(2756), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2756), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_end_associate_statement_token1] = ACTIONS(3333), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -177414,96 +176224,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3428), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [678] = { - [sym_preproc_include] = STATE(660), - [sym_preproc_def] = STATE(660), - [sym_preproc_function_def] = STATE(660), - [sym_preproc_call] = STATE(660), - [sym_preproc_if_in_statements] = STATE(660), - [sym_preproc_ifdef_in_statements] = STATE(660), - [sym__statements] = STATE(6742), - [sym_statement_label] = STATE(809), - [sym_stop_statement] = STATE(6742), - [sym_assignment_statement] = STATE(6742), - [sym_pointer_association_statement] = STATE(6742), - [sym_subroutine_call] = STATE(6742), - [sym_keyword_statement] = STATE(6742), - [sym_include_statement] = STATE(6742), - [sym_do_loop_statement] = STATE(6742), - [sym_do_label_statement] = STATE(6742), - [sym_end_do_label_statement] = STATE(6742), - [sym_if_statement] = STATE(6742), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6742), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6742), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6742), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6742), - [sym_select_type_statement] = STATE(6742), - [sym_select_rank_statement] = STATE(6742), - [sym_block_construct] = STATE(6742), - [sym_associate_statement] = STATE(6742), - [sym_end_associate_statement] = STATE(7278), - [sym_format_statement] = STATE(6742), - [sym_read_statement] = STATE(6742), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6742), - [sym_open_statement] = STATE(6742), - [sym_close_statement] = STATE(6742), - [sym_write_statement] = STATE(6742), - [sym_inquire_statement] = STATE(6742), - [sym_file_position_statement] = STATE(6742), - [sym_allocate_statement] = STATE(6742), - [sym_entry_statement] = STATE(6742), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6742), - [sym_coarray_team_statement] = STATE(6742), - [sym_coarray_critical_statement] = STATE(6742), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(660), - [aux_sym_preproc_include_token1] = ACTIONS(3226), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3234), + [671] = { + [sym_preproc_include] = STATE(704), + [sym_preproc_def] = STATE(704), + [sym_preproc_function_def] = STATE(704), + [sym_preproc_call] = STATE(704), + [sym_preproc_if_in_statements] = STATE(704), + [sym_preproc_ifdef_in_statements] = STATE(704), + [sym__statements] = STATE(6311), + [sym_statement_label] = STATE(779), + [sym_stop_statement] = STATE(6311), + [sym_assignment_statement] = STATE(6311), + [sym_pointer_association_statement] = STATE(6311), + [sym_subroutine_call] = STATE(6311), + [sym_keyword_statement] = STATE(6311), + [sym_include_statement] = STATE(6311), + [sym_do_loop_statement] = STATE(6311), + [sym_end_do_loop_statement] = STATE(7085), + [sym_do_label_statement] = STATE(6311), + [sym_end_do_label_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6311), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6311), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6311), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6311), + [sym_select_type_statement] = STATE(6311), + [sym_select_rank_statement] = STATE(6311), + [sym_block_construct] = STATE(6311), + [sym_associate_statement] = STATE(6311), + [sym_format_statement] = STATE(6311), + [sym_read_statement] = STATE(6311), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6311), + [sym_open_statement] = STATE(6311), + [sym_close_statement] = STATE(6311), + [sym_write_statement] = STATE(6311), + [sym_inquire_statement] = STATE(6311), + [sym_file_position_statement] = STATE(6311), + [sym_allocate_statement] = STATE(6311), + [sym_entry_statement] = STATE(6311), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6311), + [sym_coarray_team_statement] = STATE(6311), + [sym_coarray_critical_statement] = STATE(6311), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(704), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3129), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3236), + [aux_sym_end_program_statement_token1] = ACTIONS(3131), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -177519,10 +176329,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -177531,7 +176341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3269), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -177544,6 +176354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(3135), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -177555,7 +176366,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_end_associate_statement_token1] = ACTIONS(3240), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -177584,96 +176394,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [679] = { - [sym_preproc_include] = STATE(717), - [sym_preproc_def] = STATE(717), - [sym_preproc_function_def] = STATE(717), - [sym_preproc_call] = STATE(717), - [sym_preproc_if_in_statements] = STATE(717), - [sym_preproc_ifdef_in_statements] = STATE(717), - [sym__statements] = STATE(6275), - [sym_statement_label] = STATE(798), - [sym_stop_statement] = STATE(6275), - [sym_assignment_statement] = STATE(6275), - [sym_pointer_association_statement] = STATE(6275), - [sym_subroutine_call] = STATE(6275), - [sym_keyword_statement] = STATE(6275), - [sym_include_statement] = STATE(6275), - [sym_do_loop_statement] = STATE(6275), - [sym_do_label_statement] = STATE(6275), - [sym_end_do_label_statement] = STATE(6275), - [sym_if_statement] = STATE(6275), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6275), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6275), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6275), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6275), - [sym_select_type_statement] = STATE(6275), - [sym_select_rank_statement] = STATE(6275), - [sym_block_construct] = STATE(6275), - [sym_associate_statement] = STATE(6275), - [sym_format_statement] = STATE(6275), - [sym_read_statement] = STATE(6275), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6275), - [sym_open_statement] = STATE(6275), - [sym_close_statement] = STATE(6275), - [sym_write_statement] = STATE(6275), - [sym_inquire_statement] = STATE(6275), - [sym_file_position_statement] = STATE(6275), - [sym_allocate_statement] = STATE(6275), - [sym_entry_statement] = STATE(6275), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6275), - [sym_coarray_team_statement] = STATE(6275), - [sym_coarray_critical_statement] = STATE(6275), - [sym_end_coarray_critical_statement] = STATE(7328), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(717), - [aux_sym_preproc_include_token1] = ACTIONS(3208), - [aux_sym_preproc_def_token1] = ACTIONS(3210), - [aux_sym_preproc_if_token1] = ACTIONS(3212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3214), - [sym_preproc_directive] = ACTIONS(3216), + [672] = { + [sym_preproc_include] = STATE(707), + [sym_preproc_def] = STATE(707), + [sym_preproc_function_def] = STATE(707), + [sym_preproc_call] = STATE(707), + [sym_preproc_if_in_statements] = STATE(707), + [sym_preproc_ifdef_in_statements] = STATE(707), + [sym__statements] = STATE(6605), + [sym_statement_label] = STATE(805), + [sym_stop_statement] = STATE(6605), + [sym_assignment_statement] = STATE(6605), + [sym_pointer_association_statement] = STATE(6605), + [sym_subroutine_call] = STATE(6605), + [sym_keyword_statement] = STATE(6605), + [sym_include_statement] = STATE(6605), + [sym_do_loop_statement] = STATE(6605), + [sym_do_label_statement] = STATE(6605), + [sym_end_do_label_statement] = STATE(6605), + [sym_if_statement] = STATE(6605), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6605), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6605), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6605), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6605), + [sym_select_type_statement] = STATE(6605), + [sym_select_rank_statement] = STATE(6605), + [sym_block_construct] = STATE(6605), + [sym_associate_statement] = STATE(6605), + [sym_format_statement] = STATE(6605), + [sym_read_statement] = STATE(6605), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6605), + [sym_open_statement] = STATE(6605), + [sym_close_statement] = STATE(6605), + [sym_write_statement] = STATE(6605), + [sym_inquire_statement] = STATE(6605), + [sym_file_position_statement] = STATE(6605), + [sym_allocate_statement] = STATE(6605), + [sym_entry_statement] = STATE(6605), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6605), + [sym_coarray_team_statement] = STATE(6605), + [sym_end_coarray_team_statement] = STATE(7127), + [sym_coarray_critical_statement] = STATE(6605), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(707), + [aux_sym_preproc_include_token1] = ACTIONS(3145), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3153), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3218), + [aux_sym_end_program_statement_token1] = ACTIONS(3155), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -177689,10 +176499,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -177701,7 +176511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3337), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -177750,100 +176560,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(177), [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(3159), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3222), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [680] = { - [sym_preproc_include] = STATE(741), - [sym_preproc_def] = STATE(741), - [sym_preproc_function_def] = STATE(741), - [sym_preproc_call] = STATE(741), - [sym_preproc_if_in_statements] = STATE(741), - [sym_preproc_ifdef_in_statements] = STATE(741), - [sym__statements] = STATE(6402), - [sym_statement_label] = STATE(780), - [sym_stop_statement] = STATE(6402), - [sym_assignment_statement] = STATE(6402), - [sym_pointer_association_statement] = STATE(6402), - [sym_subroutine_call] = STATE(6402), - [sym_keyword_statement] = STATE(6402), - [sym_include_statement] = STATE(6402), - [sym_do_loop_statement] = STATE(6402), - [sym_end_do_loop_statement] = STATE(7353), - [sym_do_label_statement] = STATE(6402), - [sym_end_do_label_statement] = STATE(6402), - [sym_if_statement] = STATE(6402), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6402), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6402), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6402), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6402), - [sym_select_type_statement] = STATE(6402), - [sym_select_rank_statement] = STATE(6402), - [sym_block_construct] = STATE(6402), - [sym_associate_statement] = STATE(6402), - [sym_format_statement] = STATE(6402), - [sym_read_statement] = STATE(6402), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6402), - [sym_open_statement] = STATE(6402), - [sym_close_statement] = STATE(6402), - [sym_write_statement] = STATE(6402), - [sym_inquire_statement] = STATE(6402), - [sym_file_position_statement] = STATE(6402), - [sym_allocate_statement] = STATE(6402), - [sym_entry_statement] = STATE(6402), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6402), - [sym_coarray_team_statement] = STATE(6402), - [sym_coarray_critical_statement] = STATE(6402), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(741), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), - [sym_preproc_directive] = ACTIONS(3152), + [673] = { + [sym_preproc_include] = STATE(656), + [sym_preproc_def] = STATE(656), + [sym_preproc_function_def] = STATE(656), + [sym_preproc_call] = STATE(656), + [sym_preproc_if_in_statements] = STATE(656), + [sym_preproc_ifdef_in_statements] = STATE(656), + [sym__statements] = STATE(6821), + [sym_statement_label] = STATE(799), + [sym_stop_statement] = STATE(6821), + [sym_assignment_statement] = STATE(6821), + [sym_pointer_association_statement] = STATE(6821), + [sym_subroutine_call] = STATE(6821), + [sym_keyword_statement] = STATE(6821), + [sym_include_statement] = STATE(6821), + [sym_do_loop_statement] = STATE(6821), + [sym_do_label_statement] = STATE(6821), + [sym_end_do_label_statement] = STATE(6821), + [sym_if_statement] = STATE(6821), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6821), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6821), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6821), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6821), + [sym_select_type_statement] = STATE(6821), + [sym_select_rank_statement] = STATE(6821), + [sym_block_construct] = STATE(6821), + [sym_associate_statement] = STATE(6821), + [sym_format_statement] = STATE(6821), + [sym_read_statement] = STATE(6821), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6821), + [sym_open_statement] = STATE(6821), + [sym_close_statement] = STATE(6821), + [sym_write_statement] = STATE(6821), + [sym_inquire_statement] = STATE(6821), + [sym_file_position_statement] = STATE(6821), + [sym_allocate_statement] = STATE(6821), + [sym_entry_statement] = STATE(6821), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6821), + [sym_coarray_team_statement] = STATE(6821), + [sym_coarray_critical_statement] = STATE(6821), + [sym_end_coarray_critical_statement] = STATE(7342), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(656), + [aux_sym_preproc_include_token1] = ACTIONS(3161), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3169), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3154), + [aux_sym_end_program_statement_token1] = ACTIONS(3171), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -177859,10 +176669,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -177871,7 +176681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3339), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -177884,7 +176694,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(3158), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -177922,98 +176731,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3175), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [681] = { - [sym_preproc_include] = STATE(711), - [sym_preproc_def] = STATE(711), - [sym_preproc_function_def] = STATE(711), - [sym_preproc_call] = STATE(711), - [sym_preproc_if_in_statements] = STATE(711), - [sym_preproc_ifdef_in_statements] = STATE(711), - [sym__statements] = STATE(6339), - [sym_statement_label] = STATE(771), - [sym_stop_statement] = STATE(6339), - [sym_assignment_statement] = STATE(6339), - [sym_pointer_association_statement] = STATE(6339), - [sym_subroutine_call] = STATE(6339), - [sym_keyword_statement] = STATE(6339), - [sym_include_statement] = STATE(6339), - [sym_do_loop_statement] = STATE(6339), - [sym_do_label_statement] = STATE(6339), - [sym_end_do_label_statement] = STATE(6339), - [sym_if_statement] = STATE(6339), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6339), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6339), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6339), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_end_forall_statement] = STATE(7218), - [sym_select_case_statement] = STATE(6339), - [sym_select_type_statement] = STATE(6339), - [sym_select_rank_statement] = STATE(6339), - [sym_block_construct] = STATE(6339), - [sym_associate_statement] = STATE(6339), - [sym_format_statement] = STATE(6339), - [sym_read_statement] = STATE(6339), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6339), - [sym_open_statement] = STATE(6339), - [sym_close_statement] = STATE(6339), - [sym_write_statement] = STATE(6339), - [sym_inquire_statement] = STATE(6339), - [sym_file_position_statement] = STATE(6339), - [sym_allocate_statement] = STATE(6339), - [sym_entry_statement] = STATE(6339), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6339), - [sym_coarray_team_statement] = STATE(6339), - [sym_coarray_critical_statement] = STATE(6339), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(711), - [aux_sym_preproc_include_token1] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), - [sym_preproc_directive] = ACTIONS(3441), + [674] = { + [sym_preproc_include] = STATE(705), + [sym_preproc_def] = STATE(705), + [sym_preproc_function_def] = STATE(705), + [sym_preproc_call] = STATE(705), + [sym_preproc_if_in_statements] = STATE(705), + [sym_preproc_ifdef_in_statements] = STATE(705), + [sym__statements] = STATE(6986), + [sym_statement_label] = STATE(768), + [sym_stop_statement] = STATE(6986), + [sym_assignment_statement] = STATE(6986), + [sym_pointer_association_statement] = STATE(6986), + [sym_subroutine_call] = STATE(6986), + [sym_keyword_statement] = STATE(6986), + [sym_include_statement] = STATE(6986), + [sym_do_loop_statement] = STATE(6986), + [sym_do_label_statement] = STATE(6986), + [sym_end_do_label_statement] = STATE(6986), + [sym_if_statement] = STATE(6986), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6986), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6986), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6986), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_end_forall_statement] = STATE(7180), + [sym_select_case_statement] = STATE(6986), + [sym_select_type_statement] = STATE(6986), + [sym_select_rank_statement] = STATE(6986), + [sym_block_construct] = STATE(6986), + [sym_associate_statement] = STATE(6986), + [sym_format_statement] = STATE(6986), + [sym_read_statement] = STATE(6986), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6986), + [sym_open_statement] = STATE(6986), + [sym_close_statement] = STATE(6986), + [sym_write_statement] = STATE(6986), + [sym_inquire_statement] = STATE(6986), + [sym_file_position_statement] = STATE(6986), + [sym_allocate_statement] = STATE(6986), + [sym_entry_statement] = STATE(6986), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6986), + [sym_coarray_team_statement] = STATE(6986), + [sym_coarray_critical_statement] = STATE(6986), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(705), + [aux_sym_preproc_include_token1] = ACTIONS(3177), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3185), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3443), + [aux_sym_end_program_statement_token1] = ACTIONS(3187), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -178029,10 +176839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -178041,7 +176851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3341), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -178059,7 +176869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_end_forall_statement_token1] = ACTIONS(3447), + [aux_sym_end_forall_statement_token1] = ACTIONS(3191), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), @@ -178094,96 +176904,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3449), + [sym__integer_literal] = ACTIONS(3193), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [682] = { - [sym_preproc_include] = STATE(741), - [sym_preproc_def] = STATE(741), - [sym_preproc_function_def] = STATE(741), - [sym_preproc_call] = STATE(741), - [sym_preproc_if_in_statements] = STATE(741), - [sym_preproc_ifdef_in_statements] = STATE(741), - [sym__statements] = STATE(6402), - [sym_statement_label] = STATE(778), - [sym_stop_statement] = STATE(6402), - [sym_assignment_statement] = STATE(6402), - [sym_pointer_association_statement] = STATE(6402), - [sym_subroutine_call] = STATE(6402), - [sym_keyword_statement] = STATE(6402), - [sym_include_statement] = STATE(6402), - [sym_do_loop_statement] = STATE(6402), - [sym_end_do_loop_statement] = STATE(7089), - [sym_do_label_statement] = STATE(6402), - [sym_end_do_label_statement] = STATE(6402), - [sym_if_statement] = STATE(6402), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6402), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6402), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6402), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6402), - [sym_select_type_statement] = STATE(6402), - [sym_select_rank_statement] = STATE(6402), - [sym_block_construct] = STATE(6402), - [sym_associate_statement] = STATE(6402), - [sym_format_statement] = STATE(6402), - [sym_read_statement] = STATE(6402), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6402), - [sym_open_statement] = STATE(6402), - [sym_close_statement] = STATE(6402), - [sym_write_statement] = STATE(6402), - [sym_inquire_statement] = STATE(6402), - [sym_file_position_statement] = STATE(6402), - [sym_allocate_statement] = STATE(6402), - [sym_entry_statement] = STATE(6402), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6402), - [sym_coarray_team_statement] = STATE(6402), - [sym_coarray_critical_statement] = STATE(6402), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(741), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), - [sym_preproc_directive] = ACTIONS(3152), + [675] = { + [sym_preproc_include] = STATE(663), + [sym_preproc_def] = STATE(663), + [sym_preproc_function_def] = STATE(663), + [sym_preproc_call] = STATE(663), + [sym_preproc_if_in_statements] = STATE(663), + [sym_preproc_ifdef_in_statements] = STATE(663), + [sym__statements] = STATE(6311), + [sym_statement_label] = STATE(781), + [sym_stop_statement] = STATE(6311), + [sym_assignment_statement] = STATE(6311), + [sym_pointer_association_statement] = STATE(6311), + [sym_subroutine_call] = STATE(6311), + [sym_keyword_statement] = STATE(6311), + [sym_include_statement] = STATE(6311), + [sym_do_loop_statement] = STATE(6311), + [sym_end_do_loop_statement] = STATE(7203), + [sym_do_label_statement] = STATE(6311), + [sym_end_do_label_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6311), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6311), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6311), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6311), + [sym_select_type_statement] = STATE(6311), + [sym_select_rank_statement] = STATE(6311), + [sym_block_construct] = STATE(6311), + [sym_associate_statement] = STATE(6311), + [sym_format_statement] = STATE(6311), + [sym_read_statement] = STATE(6311), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6311), + [sym_open_statement] = STATE(6311), + [sym_close_statement] = STATE(6311), + [sym_write_statement] = STATE(6311), + [sym_inquire_statement] = STATE(6311), + [sym_file_position_statement] = STATE(6311), + [sym_allocate_statement] = STATE(6311), + [sym_entry_statement] = STATE(6311), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6311), + [sym_coarray_team_statement] = STATE(6311), + [sym_coarray_critical_statement] = STATE(6311), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(663), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3129), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3154), + [aux_sym_end_program_statement_token1] = ACTIONS(3131), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -178199,10 +177009,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -178211,7 +177021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3343), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -178224,7 +177034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(3158), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(3135), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -178264,96 +177074,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [683] = { - [sym_preproc_include] = STATE(749), - [sym_preproc_def] = STATE(749), - [sym_preproc_function_def] = STATE(749), - [sym_preproc_call] = STATE(749), - [sym_preproc_if_in_statements] = STATE(749), - [sym_preproc_ifdef_in_statements] = STATE(749), - [sym__statements] = STATE(6846), - [sym_statement_label] = STATE(800), - [sym_stop_statement] = STATE(6846), - [sym_assignment_statement] = STATE(6846), - [sym_pointer_association_statement] = STATE(6846), - [sym_subroutine_call] = STATE(6846), - [sym_keyword_statement] = STATE(6846), - [sym_include_statement] = STATE(6846), - [sym_do_loop_statement] = STATE(6846), - [sym_do_label_statement] = STATE(6846), - [sym_end_do_label_statement] = STATE(6846), - [sym_if_statement] = STATE(6846), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6846), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6846), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6846), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6846), - [sym_select_type_statement] = STATE(6846), - [sym_select_rank_statement] = STATE(6846), - [sym_block_construct] = STATE(6846), - [sym_end_block_construct_statement] = STATE(7334), - [sym_associate_statement] = STATE(6846), - [sym_format_statement] = STATE(6846), - [sym_read_statement] = STATE(6846), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6846), - [sym_open_statement] = STATE(6846), - [sym_close_statement] = STATE(6846), - [sym_write_statement] = STATE(6846), - [sym_inquire_statement] = STATE(6846), - [sym_file_position_statement] = STATE(6846), - [sym_allocate_statement] = STATE(6846), - [sym_entry_statement] = STATE(6846), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6846), - [sym_coarray_team_statement] = STATE(6846), - [sym_coarray_critical_statement] = STATE(6846), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(749), - [aux_sym_preproc_include_token1] = ACTIONS(3451), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(3455), + [676] = { + [sym_preproc_include] = STATE(687), + [sym_preproc_def] = STATE(687), + [sym_preproc_function_def] = STATE(687), + [sym_preproc_call] = STATE(687), + [sym_preproc_if_in_statements] = STATE(687), + [sym_preproc_ifdef_in_statements] = STATE(687), + [sym__statements] = STATE(6721), + [sym_statement_label] = STATE(812), + [sym_stop_statement] = STATE(6721), + [sym_assignment_statement] = STATE(6721), + [sym_pointer_association_statement] = STATE(6721), + [sym_subroutine_call] = STATE(6721), + [sym_keyword_statement] = STATE(6721), + [sym_include_statement] = STATE(6721), + [sym_do_loop_statement] = STATE(6721), + [sym_do_label_statement] = STATE(6721), + [sym_end_do_label_statement] = STATE(6721), + [sym_if_statement] = STATE(6721), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6721), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6721), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6721), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6721), + [sym_select_type_statement] = STATE(6721), + [sym_select_rank_statement] = STATE(6721), + [sym_block_construct] = STATE(6721), + [sym_associate_statement] = STATE(6721), + [sym_format_statement] = STATE(6721), + [sym_read_statement] = STATE(6721), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6721), + [sym_open_statement] = STATE(6721), + [sym_close_statement] = STATE(6721), + [sym_write_statement] = STATE(6721), + [sym_inquire_statement] = STATE(6721), + [sym_file_position_statement] = STATE(6721), + [sym_allocate_statement] = STATE(6721), + [sym_entry_statement] = STATE(6721), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6721), + [sym_coarray_team_statement] = STATE(6721), + [sym_coarray_critical_statement] = STATE(6721), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(687), + [aux_sym_preproc_include_token1] = ACTIONS(3345), + [aux_sym_preproc_def_token1] = ACTIONS(3348), + [aux_sym_preproc_if_token1] = ACTIONS(3351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3357), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1376), + [aux_sym_end_program_statement_token1] = ACTIONS(3360), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -178369,10 +177178,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -178381,7 +177190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3363), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -178400,11 +177209,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token2] = ACTIONS(2760), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2760), [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(1384), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), @@ -178434,96 +177244,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3365), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [684] = { - [sym_preproc_include] = STATE(687), - [sym_preproc_def] = STATE(687), - [sym_preproc_function_def] = STATE(687), - [sym_preproc_call] = STATE(687), - [sym_preproc_if_in_statements] = STATE(687), - [sym_preproc_ifdef_in_statements] = STATE(687), - [sym__statements] = STATE(6339), - [sym_statement_label] = STATE(771), - [sym_stop_statement] = STATE(6339), - [sym_assignment_statement] = STATE(6339), - [sym_pointer_association_statement] = STATE(6339), - [sym_subroutine_call] = STATE(6339), - [sym_keyword_statement] = STATE(6339), - [sym_include_statement] = STATE(6339), - [sym_do_loop_statement] = STATE(6339), - [sym_do_label_statement] = STATE(6339), - [sym_end_do_label_statement] = STATE(6339), - [sym_if_statement] = STATE(6339), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6339), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6339), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6339), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_end_forall_statement] = STATE(7218), - [sym_select_case_statement] = STATE(6339), - [sym_select_type_statement] = STATE(6339), - [sym_select_rank_statement] = STATE(6339), - [sym_block_construct] = STATE(6339), - [sym_associate_statement] = STATE(6339), - [sym_format_statement] = STATE(6339), - [sym_read_statement] = STATE(6339), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6339), - [sym_open_statement] = STATE(6339), - [sym_close_statement] = STATE(6339), - [sym_write_statement] = STATE(6339), - [sym_inquire_statement] = STATE(6339), - [sym_file_position_statement] = STATE(6339), - [sym_allocate_statement] = STATE(6339), - [sym_entry_statement] = STATE(6339), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6339), - [sym_coarray_team_statement] = STATE(6339), - [sym_coarray_critical_statement] = STATE(6339), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(687), - [aux_sym_preproc_include_token1] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), - [sym_preproc_directive] = ACTIONS(3441), + [677] = { + [sym_preproc_include] = STATE(671), + [sym_preproc_def] = STATE(671), + [sym_preproc_function_def] = STATE(671), + [sym_preproc_call] = STATE(671), + [sym_preproc_if_in_statements] = STATE(671), + [sym_preproc_ifdef_in_statements] = STATE(671), + [sym__statements] = STATE(6311), + [sym_statement_label] = STATE(777), + [sym_stop_statement] = STATE(6311), + [sym_assignment_statement] = STATE(6311), + [sym_pointer_association_statement] = STATE(6311), + [sym_subroutine_call] = STATE(6311), + [sym_keyword_statement] = STATE(6311), + [sym_include_statement] = STATE(6311), + [sym_do_loop_statement] = STATE(6311), + [sym_end_do_loop_statement] = STATE(7403), + [sym_do_label_statement] = STATE(6311), + [sym_end_do_label_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6311), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6311), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6311), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6311), + [sym_select_type_statement] = STATE(6311), + [sym_select_rank_statement] = STATE(6311), + [sym_block_construct] = STATE(6311), + [sym_associate_statement] = STATE(6311), + [sym_format_statement] = STATE(6311), + [sym_read_statement] = STATE(6311), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6311), + [sym_open_statement] = STATE(6311), + [sym_close_statement] = STATE(6311), + [sym_write_statement] = STATE(6311), + [sym_inquire_statement] = STATE(6311), + [sym_file_position_statement] = STATE(6311), + [sym_allocate_statement] = STATE(6311), + [sym_entry_statement] = STATE(6311), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6311), + [sym_coarray_team_statement] = STATE(6311), + [sym_coarray_critical_statement] = STATE(6311), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(671), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3129), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3443), + [aux_sym_end_program_statement_token1] = ACTIONS(3131), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -178539,10 +177349,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -178551,7 +177361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3368), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -178564,12 +177374,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(3135), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_end_forall_statement_token1] = ACTIONS(3447), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), @@ -178604,95 +177414,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3449), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [685] = { - [sym_preproc_include] = STATE(656), - [sym_preproc_def] = STATE(656), - [sym_preproc_function_def] = STATE(656), - [sym_preproc_call] = STATE(656), - [sym_preproc_if_in_statements] = STATE(656), - [sym_preproc_ifdef_in_statements] = STATE(656), - [sym__statements] = STATE(6776), - [sym_statement_label] = STATE(812), - [sym_stop_statement] = STATE(6776), - [sym_assignment_statement] = STATE(6776), - [sym_pointer_association_statement] = STATE(6776), - [sym_subroutine_call] = STATE(6776), - [sym_keyword_statement] = STATE(6776), - [sym_include_statement] = STATE(6776), - [sym_do_loop_statement] = STATE(6776), - [sym_do_label_statement] = STATE(6776), - [sym_end_do_label_statement] = STATE(6776), - [sym_if_statement] = STATE(6776), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6776), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6776), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6776), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6776), - [sym_select_type_statement] = STATE(6776), - [sym_select_rank_statement] = STATE(6776), - [sym_block_construct] = STATE(6776), - [sym_associate_statement] = STATE(6776), - [sym_format_statement] = STATE(6776), - [sym_read_statement] = STATE(6776), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6776), - [sym_open_statement] = STATE(6776), - [sym_close_statement] = STATE(6776), - [sym_write_statement] = STATE(6776), - [sym_inquire_statement] = STATE(6776), - [sym_file_position_statement] = STATE(6776), - [sym_allocate_statement] = STATE(6776), - [sym_entry_statement] = STATE(6776), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6776), - [sym_coarray_team_statement] = STATE(6776), - [sym_coarray_critical_statement] = STATE(6776), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(656), - [aux_sym_preproc_include_token1] = ACTIONS(3461), - [aux_sym_preproc_def_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token1] = ACTIONS(3467), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3470), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3470), - [sym_preproc_directive] = ACTIONS(3473), + [678] = { + [sym_preproc_include] = STATE(689), + [sym_preproc_def] = STATE(689), + [sym_preproc_function_def] = STATE(689), + [sym_preproc_call] = STATE(689), + [sym_preproc_if_in_statements] = STATE(689), + [sym_preproc_ifdef_in_statements] = STATE(689), + [sym__statements] = STATE(6734), + [sym_statement_label] = STATE(813), + [sym_stop_statement] = STATE(6734), + [sym_assignment_statement] = STATE(6734), + [sym_pointer_association_statement] = STATE(6734), + [sym_subroutine_call] = STATE(6734), + [sym_keyword_statement] = STATE(6734), + [sym_include_statement] = STATE(6734), + [sym_do_loop_statement] = STATE(6734), + [sym_do_label_statement] = STATE(6734), + [sym_end_do_label_statement] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6734), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6734), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6734), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6734), + [sym_select_type_statement] = STATE(6734), + [sym_select_rank_statement] = STATE(6734), + [sym_block_construct] = STATE(6734), + [sym_associate_statement] = STATE(6734), + [sym_format_statement] = STATE(6734), + [sym_read_statement] = STATE(6734), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6734), + [sym_open_statement] = STATE(6734), + [sym_close_statement] = STATE(6734), + [sym_write_statement] = STATE(6734), + [sym_inquire_statement] = STATE(6734), + [sym_file_position_statement] = STATE(6734), + [sym_allocate_statement] = STATE(6734), + [sym_entry_statement] = STATE(6734), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6734), + [sym_coarray_team_statement] = STATE(6734), + [sym_coarray_critical_statement] = STATE(6734), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(689), + [aux_sym_preproc_include_token1] = ACTIONS(3370), + [aux_sym_preproc_def_token1] = ACTIONS(3373), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3379), + [sym_preproc_directive] = ACTIONS(3382), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3476), + [aux_sym_end_program_statement_token1] = ACTIONS(3385), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -178708,10 +177518,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -178720,7 +177530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3388), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -178739,11 +177549,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token2] = ACTIONS(2720), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token1] = ACTIONS(2740), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2720), + [aux_sym_end_select_statement_token1] = ACTIONS(2740), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -178774,96 +177584,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3481), + [sym__integer_literal] = ACTIONS(3390), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [686] = { - [sym_preproc_include] = STATE(699), - [sym_preproc_def] = STATE(699), - [sym_preproc_function_def] = STATE(699), - [sym_preproc_call] = STATE(699), - [sym_preproc_if_in_statements] = STATE(699), - [sym_preproc_ifdef_in_statements] = STATE(699), - [sym__statements] = STATE(6275), - [sym_statement_label] = STATE(798), - [sym_stop_statement] = STATE(6275), - [sym_assignment_statement] = STATE(6275), - [sym_pointer_association_statement] = STATE(6275), - [sym_subroutine_call] = STATE(6275), - [sym_keyword_statement] = STATE(6275), - [sym_include_statement] = STATE(6275), - [sym_do_loop_statement] = STATE(6275), - [sym_do_label_statement] = STATE(6275), - [sym_end_do_label_statement] = STATE(6275), - [sym_if_statement] = STATE(6275), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6275), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6275), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6275), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6275), - [sym_select_type_statement] = STATE(6275), - [sym_select_rank_statement] = STATE(6275), - [sym_block_construct] = STATE(6275), - [sym_associate_statement] = STATE(6275), - [sym_format_statement] = STATE(6275), - [sym_read_statement] = STATE(6275), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6275), - [sym_open_statement] = STATE(6275), - [sym_close_statement] = STATE(6275), - [sym_write_statement] = STATE(6275), - [sym_inquire_statement] = STATE(6275), - [sym_file_position_statement] = STATE(6275), - [sym_allocate_statement] = STATE(6275), - [sym_entry_statement] = STATE(6275), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6275), - [sym_coarray_team_statement] = STATE(6275), - [sym_coarray_critical_statement] = STATE(6275), - [sym_end_coarray_critical_statement] = STATE(7328), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(699), - [aux_sym_preproc_include_token1] = ACTIONS(3208), - [aux_sym_preproc_def_token1] = ACTIONS(3210), - [aux_sym_preproc_if_token1] = ACTIONS(3212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3214), - [sym_preproc_directive] = ACTIONS(3216), + [679] = { + [sym_preproc_include] = STATE(661), + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_statements] = STATE(661), + [sym_preproc_ifdef_in_statements] = STATE(661), + [sym__statements] = STATE(6734), + [sym_statement_label] = STATE(813), + [sym_stop_statement] = STATE(6734), + [sym_assignment_statement] = STATE(6734), + [sym_pointer_association_statement] = STATE(6734), + [sym_subroutine_call] = STATE(6734), + [sym_keyword_statement] = STATE(6734), + [sym_include_statement] = STATE(6734), + [sym_do_loop_statement] = STATE(6734), + [sym_do_label_statement] = STATE(6734), + [sym_end_do_label_statement] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6734), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6734), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6734), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6734), + [sym_select_type_statement] = STATE(6734), + [sym_select_rank_statement] = STATE(6734), + [sym_block_construct] = STATE(6734), + [sym_associate_statement] = STATE(6734), + [sym_format_statement] = STATE(6734), + [sym_read_statement] = STATE(6734), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6734), + [sym_open_statement] = STATE(6734), + [sym_close_statement] = STATE(6734), + [sym_write_statement] = STATE(6734), + [sym_inquire_statement] = STATE(6734), + [sym_file_position_statement] = STATE(6734), + [sym_allocate_statement] = STATE(6734), + [sym_entry_statement] = STATE(6734), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6734), + [sym_coarray_team_statement] = STATE(6734), + [sym_coarray_critical_statement] = STATE(6734), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(661), + [aux_sym_preproc_include_token1] = ACTIONS(3370), + [aux_sym_preproc_def_token1] = ACTIONS(3373), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3379), + [sym_preproc_directive] = ACTIONS(3382), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3218), + [aux_sym_end_program_statement_token1] = ACTIONS(3385), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -178879,10 +177688,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -178891,7 +177700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3393), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -178912,7 +177721,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token1] = ACTIONS(2740), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2740), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -178941,99 +177752,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3222), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3390), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [687] = { - [sym_preproc_include] = STATE(711), - [sym_preproc_def] = STATE(711), - [sym_preproc_function_def] = STATE(711), - [sym_preproc_call] = STATE(711), - [sym_preproc_if_in_statements] = STATE(711), - [sym_preproc_ifdef_in_statements] = STATE(711), - [sym__statements] = STATE(6339), - [sym_statement_label] = STATE(770), - [sym_stop_statement] = STATE(6339), - [sym_assignment_statement] = STATE(6339), - [sym_pointer_association_statement] = STATE(6339), - [sym_subroutine_call] = STATE(6339), - [sym_keyword_statement] = STATE(6339), - [sym_include_statement] = STATE(6339), - [sym_do_loop_statement] = STATE(6339), - [sym_do_label_statement] = STATE(6339), - [sym_end_do_label_statement] = STATE(6339), - [sym_if_statement] = STATE(6339), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6339), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6339), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6339), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_end_forall_statement] = STATE(7452), - [sym_select_case_statement] = STATE(6339), - [sym_select_type_statement] = STATE(6339), - [sym_select_rank_statement] = STATE(6339), - [sym_block_construct] = STATE(6339), - [sym_associate_statement] = STATE(6339), - [sym_format_statement] = STATE(6339), - [sym_read_statement] = STATE(6339), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6339), - [sym_open_statement] = STATE(6339), - [sym_close_statement] = STATE(6339), - [sym_write_statement] = STATE(6339), - [sym_inquire_statement] = STATE(6339), - [sym_file_position_statement] = STATE(6339), - [sym_allocate_statement] = STATE(6339), - [sym_entry_statement] = STATE(6339), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6339), - [sym_coarray_team_statement] = STATE(6339), - [sym_coarray_critical_statement] = STATE(6339), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(711), - [aux_sym_preproc_include_token1] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), - [sym_preproc_directive] = ACTIONS(3441), + [680] = { + [sym_preproc_include] = STATE(708), + [sym_preproc_def] = STATE(708), + [sym_preproc_function_def] = STATE(708), + [sym_preproc_call] = STATE(708), + [sym_preproc_if_in_statements] = STATE(708), + [sym_preproc_ifdef_in_statements] = STATE(708), + [sym__statements] = STATE(6676), + [sym_statement_label] = STATE(809), + [sym_stop_statement] = STATE(6676), + [sym_assignment_statement] = STATE(6676), + [sym_pointer_association_statement] = STATE(6676), + [sym_subroutine_call] = STATE(6676), + [sym_keyword_statement] = STATE(6676), + [sym_include_statement] = STATE(6676), + [sym_do_loop_statement] = STATE(6676), + [sym_do_label_statement] = STATE(6676), + [sym_end_do_label_statement] = STATE(6676), + [sym_if_statement] = STATE(6676), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6676), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6676), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6676), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6676), + [sym_select_type_statement] = STATE(6676), + [sym_select_rank_statement] = STATE(6676), + [sym_block_construct] = STATE(6676), + [sym_associate_statement] = STATE(6676), + [sym_end_associate_statement] = STATE(7351), + [sym_format_statement] = STATE(6676), + [sym_read_statement] = STATE(6676), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6676), + [sym_open_statement] = STATE(6676), + [sym_close_statement] = STATE(6676), + [sym_write_statement] = STATE(6676), + [sym_inquire_statement] = STATE(6676), + [sym_file_position_statement] = STATE(6676), + [sym_allocate_statement] = STATE(6676), + [sym_entry_statement] = STATE(6676), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6676), + [sym_coarray_team_statement] = STATE(6676), + [sym_coarray_critical_statement] = STATE(6676), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(708), + [aux_sym_preproc_include_token1] = ACTIONS(3319), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), + [sym_preproc_directive] = ACTIONS(3327), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3443), + [aux_sym_end_program_statement_token1] = ACTIONS(3329), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -179049,10 +177859,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -179061,7 +177871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3331), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -179079,13 +177889,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_end_forall_statement_token1] = ACTIONS(3447), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_end_associate_statement_token1] = ACTIONS(3333), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -179114,95 +177924,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3449), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [688] = { - [sym_preproc_include] = STATE(667), - [sym_preproc_def] = STATE(667), - [sym_preproc_function_def] = STATE(667), - [sym_preproc_call] = STATE(667), - [sym_preproc_if_in_statements] = STATE(667), - [sym_preproc_ifdef_in_statements] = STATE(667), - [sym__statements] = STATE(6776), - [sym_statement_label] = STATE(812), - [sym_stop_statement] = STATE(6776), - [sym_assignment_statement] = STATE(6776), - [sym_pointer_association_statement] = STATE(6776), - [sym_subroutine_call] = STATE(6776), - [sym_keyword_statement] = STATE(6776), - [sym_include_statement] = STATE(6776), - [sym_do_loop_statement] = STATE(6776), - [sym_do_label_statement] = STATE(6776), - [sym_end_do_label_statement] = STATE(6776), - [sym_if_statement] = STATE(6776), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6776), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6776), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6776), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6776), - [sym_select_type_statement] = STATE(6776), - [sym_select_rank_statement] = STATE(6776), - [sym_block_construct] = STATE(6776), - [sym_associate_statement] = STATE(6776), - [sym_format_statement] = STATE(6776), - [sym_read_statement] = STATE(6776), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6776), - [sym_open_statement] = STATE(6776), - [sym_close_statement] = STATE(6776), - [sym_write_statement] = STATE(6776), - [sym_inquire_statement] = STATE(6776), - [sym_file_position_statement] = STATE(6776), - [sym_allocate_statement] = STATE(6776), - [sym_entry_statement] = STATE(6776), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6776), - [sym_coarray_team_statement] = STATE(6776), - [sym_coarray_critical_statement] = STATE(6776), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(667), - [aux_sym_preproc_include_token1] = ACTIONS(3486), - [aux_sym_preproc_def_token1] = ACTIONS(3489), - [aux_sym_preproc_if_token1] = ACTIONS(3492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3498), + [681] = { + [sym_preproc_include] = STATE(704), + [sym_preproc_def] = STATE(704), + [sym_preproc_function_def] = STATE(704), + [sym_preproc_call] = STATE(704), + [sym_preproc_if_in_statements] = STATE(704), + [sym_preproc_ifdef_in_statements] = STATE(704), + [sym__statements] = STATE(6311), + [sym_statement_label] = STATE(781), + [sym_stop_statement] = STATE(6311), + [sym_assignment_statement] = STATE(6311), + [sym_pointer_association_statement] = STATE(6311), + [sym_subroutine_call] = STATE(6311), + [sym_keyword_statement] = STATE(6311), + [sym_include_statement] = STATE(6311), + [sym_do_loop_statement] = STATE(6311), + [sym_end_do_loop_statement] = STATE(7203), + [sym_do_label_statement] = STATE(6311), + [sym_end_do_label_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6311), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6311), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6311), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6311), + [sym_select_type_statement] = STATE(6311), + [sym_select_rank_statement] = STATE(6311), + [sym_block_construct] = STATE(6311), + [sym_associate_statement] = STATE(6311), + [sym_format_statement] = STATE(6311), + [sym_read_statement] = STATE(6311), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6311), + [sym_open_statement] = STATE(6311), + [sym_close_statement] = STATE(6311), + [sym_write_statement] = STATE(6311), + [sym_inquire_statement] = STATE(6311), + [sym_file_position_statement] = STATE(6311), + [sym_allocate_statement] = STATE(6311), + [sym_entry_statement] = STATE(6311), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6311), + [sym_coarray_team_statement] = STATE(6311), + [sym_coarray_critical_statement] = STATE(6311), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(704), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3129), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3501), + [aux_sym_end_program_statement_token1] = ACTIONS(3131), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -179218,10 +178029,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -179230,7 +178041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3269), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -179243,17 +178054,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(3135), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token2] = ACTIONS(2744), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2744), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -179284,96 +178094,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3504), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [689] = { - [sym_preproc_include] = STATE(680), - [sym_preproc_def] = STATE(680), - [sym_preproc_function_def] = STATE(680), - [sym_preproc_call] = STATE(680), - [sym_preproc_if_in_statements] = STATE(680), - [sym_preproc_ifdef_in_statements] = STATE(680), - [sym__statements] = STATE(6402), - [sym_statement_label] = STATE(781), - [sym_stop_statement] = STATE(6402), - [sym_assignment_statement] = STATE(6402), - [sym_pointer_association_statement] = STATE(6402), - [sym_subroutine_call] = STATE(6402), - [sym_keyword_statement] = STATE(6402), - [sym_include_statement] = STATE(6402), - [sym_do_loop_statement] = STATE(6402), - [sym_end_do_loop_statement] = STATE(7415), - [sym_do_label_statement] = STATE(6402), - [sym_end_do_label_statement] = STATE(6402), - [sym_if_statement] = STATE(6402), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6402), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6402), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6402), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6402), - [sym_select_type_statement] = STATE(6402), - [sym_select_rank_statement] = STATE(6402), - [sym_block_construct] = STATE(6402), - [sym_associate_statement] = STATE(6402), - [sym_format_statement] = STATE(6402), - [sym_read_statement] = STATE(6402), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6402), - [sym_open_statement] = STATE(6402), - [sym_close_statement] = STATE(6402), - [sym_write_statement] = STATE(6402), - [sym_inquire_statement] = STATE(6402), - [sym_file_position_statement] = STATE(6402), - [sym_allocate_statement] = STATE(6402), - [sym_entry_statement] = STATE(6402), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6402), - [sym_coarray_team_statement] = STATE(6402), - [sym_coarray_critical_statement] = STATE(6402), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(680), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), - [sym_preproc_directive] = ACTIONS(3152), + [682] = { + [sym_preproc_include] = STATE(753), + [sym_preproc_def] = STATE(753), + [sym_preproc_function_def] = STATE(753), + [sym_preproc_call] = STATE(753), + [sym_preproc_if_in_statements] = STATE(753), + [sym_preproc_ifdef_in_statements] = STATE(753), + [sym__statements] = STATE(6669), + [sym_statement_label] = STATE(801), + [sym_stop_statement] = STATE(6669), + [sym_assignment_statement] = STATE(6669), + [sym_pointer_association_statement] = STATE(6669), + [sym_subroutine_call] = STATE(6669), + [sym_keyword_statement] = STATE(6669), + [sym_include_statement] = STATE(6669), + [sym_do_loop_statement] = STATE(6669), + [sym_do_label_statement] = STATE(6669), + [sym_end_do_label_statement] = STATE(6669), + [sym_if_statement] = STATE(6669), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6669), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6669), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6669), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6669), + [sym_select_type_statement] = STATE(6669), + [sym_select_rank_statement] = STATE(6669), + [sym_block_construct] = STATE(6669), + [sym_end_block_construct_statement] = STATE(7349), + [sym_associate_statement] = STATE(6669), + [sym_format_statement] = STATE(6669), + [sym_read_statement] = STATE(6669), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6669), + [sym_open_statement] = STATE(6669), + [sym_close_statement] = STATE(6669), + [sym_write_statement] = STATE(6669), + [sym_inquire_statement] = STATE(6669), + [sym_file_position_statement] = STATE(6669), + [sym_allocate_statement] = STATE(6669), + [sym_entry_statement] = STATE(6669), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6669), + [sym_coarray_team_statement] = STATE(6669), + [sym_coarray_critical_statement] = STATE(6669), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(753), + [aux_sym_preproc_include_token1] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3139), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(3141), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3154), + [aux_sym_end_program_statement_token1] = ACTIONS(1376), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -179389,10 +178199,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -179401,7 +178211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3507), + [anon_sym_SEMI] = ACTIONS(3143), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -179414,7 +178224,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(3158), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -179425,6 +178234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(1384), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), @@ -179454,96 +178264,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [690] = { - [sym_preproc_include] = STATE(679), - [sym_preproc_def] = STATE(679), - [sym_preproc_function_def] = STATE(679), - [sym_preproc_call] = STATE(679), - [sym_preproc_if_in_statements] = STATE(679), - [sym_preproc_ifdef_in_statements] = STATE(679), - [sym__statements] = STATE(6275), - [sym_statement_label] = STATE(798), - [sym_stop_statement] = STATE(6275), - [sym_assignment_statement] = STATE(6275), - [sym_pointer_association_statement] = STATE(6275), - [sym_subroutine_call] = STATE(6275), - [sym_keyword_statement] = STATE(6275), - [sym_include_statement] = STATE(6275), - [sym_do_loop_statement] = STATE(6275), - [sym_do_label_statement] = STATE(6275), - [sym_end_do_label_statement] = STATE(6275), - [sym_if_statement] = STATE(6275), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6275), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6275), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6275), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6275), - [sym_select_type_statement] = STATE(6275), - [sym_select_rank_statement] = STATE(6275), - [sym_block_construct] = STATE(6275), - [sym_associate_statement] = STATE(6275), - [sym_format_statement] = STATE(6275), - [sym_read_statement] = STATE(6275), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6275), - [sym_open_statement] = STATE(6275), - [sym_close_statement] = STATE(6275), - [sym_write_statement] = STATE(6275), - [sym_inquire_statement] = STATE(6275), - [sym_file_position_statement] = STATE(6275), - [sym_allocate_statement] = STATE(6275), - [sym_entry_statement] = STATE(6275), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6275), - [sym_coarray_team_statement] = STATE(6275), - [sym_coarray_critical_statement] = STATE(6275), - [sym_end_coarray_critical_statement] = STATE(7409), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(679), - [aux_sym_preproc_include_token1] = ACTIONS(3208), - [aux_sym_preproc_def_token1] = ACTIONS(3210), - [aux_sym_preproc_if_token1] = ACTIONS(3212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3214), - [sym_preproc_directive] = ACTIONS(3216), + [683] = { + [sym_preproc_include] = STATE(690), + [sym_preproc_def] = STATE(690), + [sym_preproc_function_def] = STATE(690), + [sym_preproc_call] = STATE(690), + [sym_preproc_if_in_statements] = STATE(690), + [sym_preproc_ifdef_in_statements] = STATE(690), + [sym__statements] = STATE(6676), + [sym_statement_label] = STATE(809), + [sym_stop_statement] = STATE(6676), + [sym_assignment_statement] = STATE(6676), + [sym_pointer_association_statement] = STATE(6676), + [sym_subroutine_call] = STATE(6676), + [sym_keyword_statement] = STATE(6676), + [sym_include_statement] = STATE(6676), + [sym_do_loop_statement] = STATE(6676), + [sym_do_label_statement] = STATE(6676), + [sym_end_do_label_statement] = STATE(6676), + [sym_if_statement] = STATE(6676), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6676), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6676), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6676), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6676), + [sym_select_type_statement] = STATE(6676), + [sym_select_rank_statement] = STATE(6676), + [sym_block_construct] = STATE(6676), + [sym_associate_statement] = STATE(6676), + [sym_end_associate_statement] = STATE(7351), + [sym_format_statement] = STATE(6676), + [sym_read_statement] = STATE(6676), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6676), + [sym_open_statement] = STATE(6676), + [sym_close_statement] = STATE(6676), + [sym_write_statement] = STATE(6676), + [sym_inquire_statement] = STATE(6676), + [sym_file_position_statement] = STATE(6676), + [sym_allocate_statement] = STATE(6676), + [sym_entry_statement] = STATE(6676), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6676), + [sym_coarray_team_statement] = STATE(6676), + [sym_coarray_critical_statement] = STATE(6676), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(690), + [aux_sym_preproc_include_token1] = ACTIONS(3319), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), + [sym_preproc_directive] = ACTIONS(3327), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3218), + [aux_sym_end_program_statement_token1] = ACTIONS(3329), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -179559,10 +178369,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -179571,7 +178381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3509), + [anon_sym_SEMI] = ACTIONS(3395), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -179595,6 +178405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_end_associate_statement_token1] = ACTIONS(3333), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -179621,99 +178432,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3222), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [691] = { - [sym_preproc_include] = STATE(681), - [sym_preproc_def] = STATE(681), - [sym_preproc_function_def] = STATE(681), - [sym_preproc_call] = STATE(681), - [sym_preproc_if_in_statements] = STATE(681), - [sym_preproc_ifdef_in_statements] = STATE(681), - [sym__statements] = STATE(6339), - [sym_statement_label] = STATE(772), - [sym_stop_statement] = STATE(6339), - [sym_assignment_statement] = STATE(6339), - [sym_pointer_association_statement] = STATE(6339), - [sym_subroutine_call] = STATE(6339), - [sym_keyword_statement] = STATE(6339), - [sym_include_statement] = STATE(6339), - [sym_do_loop_statement] = STATE(6339), - [sym_do_label_statement] = STATE(6339), - [sym_end_do_label_statement] = STATE(6339), - [sym_if_statement] = STATE(6339), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6339), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6339), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6339), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_end_forall_statement] = STATE(7188), - [sym_select_case_statement] = STATE(6339), - [sym_select_type_statement] = STATE(6339), - [sym_select_rank_statement] = STATE(6339), - [sym_block_construct] = STATE(6339), - [sym_associate_statement] = STATE(6339), - [sym_format_statement] = STATE(6339), - [sym_read_statement] = STATE(6339), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6339), - [sym_open_statement] = STATE(6339), - [sym_close_statement] = STATE(6339), - [sym_write_statement] = STATE(6339), - [sym_inquire_statement] = STATE(6339), - [sym_file_position_statement] = STATE(6339), - [sym_allocate_statement] = STATE(6339), - [sym_entry_statement] = STATE(6339), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6339), - [sym_coarray_team_statement] = STATE(6339), - [sym_coarray_critical_statement] = STATE(6339), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(681), - [aux_sym_preproc_include_token1] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), - [sym_preproc_directive] = ACTIONS(3441), + [684] = { + [sym_preproc_include] = STATE(666), + [sym_preproc_def] = STATE(666), + [sym_preproc_function_def] = STATE(666), + [sym_preproc_call] = STATE(666), + [sym_preproc_if_in_statements] = STATE(666), + [sym_preproc_ifdef_in_statements] = STATE(666), + [sym__statements] = STATE(6821), + [sym_statement_label] = STATE(799), + [sym_stop_statement] = STATE(6821), + [sym_assignment_statement] = STATE(6821), + [sym_pointer_association_statement] = STATE(6821), + [sym_subroutine_call] = STATE(6821), + [sym_keyword_statement] = STATE(6821), + [sym_include_statement] = STATE(6821), + [sym_do_loop_statement] = STATE(6821), + [sym_do_label_statement] = STATE(6821), + [sym_end_do_label_statement] = STATE(6821), + [sym_if_statement] = STATE(6821), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6821), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6821), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6821), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6821), + [sym_select_type_statement] = STATE(6821), + [sym_select_rank_statement] = STATE(6821), + [sym_block_construct] = STATE(6821), + [sym_associate_statement] = STATE(6821), + [sym_format_statement] = STATE(6821), + [sym_read_statement] = STATE(6821), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6821), + [sym_open_statement] = STATE(6821), + [sym_close_statement] = STATE(6821), + [sym_write_statement] = STATE(6821), + [sym_inquire_statement] = STATE(6821), + [sym_file_position_statement] = STATE(6821), + [sym_allocate_statement] = STATE(6821), + [sym_entry_statement] = STATE(6821), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6821), + [sym_coarray_team_statement] = STATE(6821), + [sym_coarray_critical_statement] = STATE(6821), + [sym_end_coarray_critical_statement] = STATE(7374), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(666), + [aux_sym_preproc_include_token1] = ACTIONS(3161), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3169), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3443), + [aux_sym_end_program_statement_token1] = ACTIONS(3171), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -179729,10 +178539,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -179741,7 +178551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym_SEMI] = ACTIONS(3397), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -179759,7 +178569,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_end_forall_statement_token1] = ACTIONS(3447), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), @@ -179792,97 +178601,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3175), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3449), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [692] = { - [sym_preproc_include] = STATE(662), - [sym_preproc_def] = STATE(662), - [sym_preproc_function_def] = STATE(662), - [sym_preproc_call] = STATE(662), - [sym_preproc_if_in_statements] = STATE(662), - [sym_preproc_ifdef_in_statements] = STATE(662), - [sym__statements] = STATE(6782), - [sym_statement_label] = STATE(813), - [sym_stop_statement] = STATE(6782), - [sym_assignment_statement] = STATE(6782), - [sym_pointer_association_statement] = STATE(6782), - [sym_subroutine_call] = STATE(6782), - [sym_keyword_statement] = STATE(6782), - [sym_include_statement] = STATE(6782), - [sym_do_loop_statement] = STATE(6782), - [sym_do_label_statement] = STATE(6782), - [sym_end_do_label_statement] = STATE(6782), - [sym_if_statement] = STATE(6782), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6782), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6782), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6782), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6782), - [sym_select_type_statement] = STATE(6782), - [sym_select_rank_statement] = STATE(6782), - [sym_block_construct] = STATE(6782), - [sym_associate_statement] = STATE(6782), - [sym_format_statement] = STATE(6782), - [sym_read_statement] = STATE(6782), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6782), - [sym_open_statement] = STATE(6782), - [sym_close_statement] = STATE(6782), - [sym_write_statement] = STATE(6782), - [sym_inquire_statement] = STATE(6782), - [sym_file_position_statement] = STATE(6782), - [sym_allocate_statement] = STATE(6782), - [sym_entry_statement] = STATE(6782), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6782), - [sym_coarray_team_statement] = STATE(6782), - [sym_coarray_critical_statement] = STATE(6782), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(662), - [aux_sym_preproc_include_token1] = ACTIONS(3513), - [aux_sym_preproc_def_token1] = ACTIONS(3516), - [aux_sym_preproc_if_token1] = ACTIONS(3519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3522), - [sym_preproc_directive] = ACTIONS(3525), + [685] = { + [sym_preproc_include] = STATE(754), + [sym_preproc_def] = STATE(754), + [sym_preproc_function_def] = STATE(754), + [sym_preproc_call] = STATE(754), + [sym_preproc_if_in_statements] = STATE(754), + [sym_preproc_ifdef_in_statements] = STATE(754), + [sym__statements] = STATE(6821), + [sym_statement_label] = STATE(799), + [sym_stop_statement] = STATE(6821), + [sym_assignment_statement] = STATE(6821), + [sym_pointer_association_statement] = STATE(6821), + [sym_subroutine_call] = STATE(6821), + [sym_keyword_statement] = STATE(6821), + [sym_include_statement] = STATE(6821), + [sym_do_loop_statement] = STATE(6821), + [sym_do_label_statement] = STATE(6821), + [sym_end_do_label_statement] = STATE(6821), + [sym_if_statement] = STATE(6821), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6821), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6821), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6821), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6821), + [sym_select_type_statement] = STATE(6821), + [sym_select_rank_statement] = STATE(6821), + [sym_block_construct] = STATE(6821), + [sym_associate_statement] = STATE(6821), + [sym_format_statement] = STATE(6821), + [sym_read_statement] = STATE(6821), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6821), + [sym_open_statement] = STATE(6821), + [sym_close_statement] = STATE(6821), + [sym_write_statement] = STATE(6821), + [sym_inquire_statement] = STATE(6821), + [sym_file_position_statement] = STATE(6821), + [sym_allocate_statement] = STATE(6821), + [sym_entry_statement] = STATE(6821), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6821), + [sym_coarray_team_statement] = STATE(6821), + [sym_coarray_critical_statement] = STATE(6821), + [sym_end_coarray_critical_statement] = STATE(7374), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(754), + [aux_sym_preproc_include_token1] = ACTIONS(3161), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3169), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3528), + [aux_sym_end_program_statement_token1] = ACTIONS(3171), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -179898,10 +178709,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -179910,7 +178721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3531), + [anon_sym_SEMI] = ACTIONS(3173), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -179931,9 +178742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token1] = ACTIONS(2750), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2750), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -179962,98 +178771,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3175), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3533), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [693] = { - [sym_preproc_include] = STATE(654), - [sym_preproc_def] = STATE(654), - [sym_preproc_function_def] = STATE(654), - [sym_preproc_call] = STATE(654), - [sym_preproc_if_in_statements] = STATE(654), - [sym_preproc_ifdef_in_statements] = STATE(654), - [sym__statements] = STATE(6402), - [sym_statement_label] = STATE(773), - [sym_stop_statement] = STATE(6402), - [sym_assignment_statement] = STATE(6402), - [sym_pointer_association_statement] = STATE(6402), - [sym_subroutine_call] = STATE(6402), - [sym_keyword_statement] = STATE(6402), - [sym_include_statement] = STATE(6402), - [sym_do_loop_statement] = STATE(6402), - [sym_end_do_loop_statement] = STATE(7107), - [sym_do_label_statement] = STATE(6402), - [sym_end_do_label_statement] = STATE(6402), - [sym_if_statement] = STATE(6402), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6402), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6402), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6402), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6402), - [sym_select_type_statement] = STATE(6402), - [sym_select_rank_statement] = STATE(6402), - [sym_block_construct] = STATE(6402), - [sym_associate_statement] = STATE(6402), - [sym_format_statement] = STATE(6402), - [sym_read_statement] = STATE(6402), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6402), - [sym_open_statement] = STATE(6402), - [sym_close_statement] = STATE(6402), - [sym_write_statement] = STATE(6402), - [sym_inquire_statement] = STATE(6402), - [sym_file_position_statement] = STATE(6402), - [sym_allocate_statement] = STATE(6402), - [sym_entry_statement] = STATE(6402), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6402), - [sym_coarray_team_statement] = STATE(6402), - [sym_coarray_critical_statement] = STATE(6402), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(654), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3146), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), - [sym_preproc_directive] = ACTIONS(3152), + [686] = { + [sym_preproc_include] = STATE(692), + [sym_preproc_def] = STATE(692), + [sym_preproc_function_def] = STATE(692), + [sym_preproc_call] = STATE(692), + [sym_preproc_if_in_statements] = STATE(692), + [sym_preproc_ifdef_in_statements] = STATE(692), + [sym__statements] = STATE(6721), + [sym_statement_label] = STATE(812), + [sym_stop_statement] = STATE(6721), + [sym_assignment_statement] = STATE(6721), + [sym_pointer_association_statement] = STATE(6721), + [sym_subroutine_call] = STATE(6721), + [sym_keyword_statement] = STATE(6721), + [sym_include_statement] = STATE(6721), + [sym_do_loop_statement] = STATE(6721), + [sym_do_label_statement] = STATE(6721), + [sym_end_do_label_statement] = STATE(6721), + [sym_if_statement] = STATE(6721), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6721), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6721), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6721), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6721), + [sym_select_type_statement] = STATE(6721), + [sym_select_rank_statement] = STATE(6721), + [sym_block_construct] = STATE(6721), + [sym_associate_statement] = STATE(6721), + [sym_format_statement] = STATE(6721), + [sym_read_statement] = STATE(6721), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6721), + [sym_open_statement] = STATE(6721), + [sym_close_statement] = STATE(6721), + [sym_write_statement] = STATE(6721), + [sym_inquire_statement] = STATE(6721), + [sym_file_position_statement] = STATE(6721), + [sym_allocate_statement] = STATE(6721), + [sym_entry_statement] = STATE(6721), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6721), + [sym_coarray_team_statement] = STATE(6721), + [sym_coarray_critical_statement] = STATE(6721), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(692), + [aux_sym_preproc_include_token1] = ACTIONS(3399), + [aux_sym_preproc_def_token1] = ACTIONS(3402), + [aux_sym_preproc_if_token1] = ACTIONS(3405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), + [sym_preproc_directive] = ACTIONS(3411), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3154), + [aux_sym_end_program_statement_token1] = ACTIONS(3414), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -180069,10 +178878,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -180081,7 +178890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3417), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -180094,16 +178903,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(3158), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token2] = ACTIONS(2804), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2804), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -180134,95 +178944,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3419), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [694] = { - [sym_preproc_include] = STATE(668), - [sym_preproc_def] = STATE(668), - [sym_preproc_function_def] = STATE(668), - [sym_preproc_call] = STATE(668), - [sym_preproc_if_in_statements] = STATE(668), - [sym_preproc_ifdef_in_statements] = STATE(668), - [sym__statements] = STATE(6782), + [687] = { + [sym_preproc_include] = STATE(660), + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_if_in_statements] = STATE(660), + [sym_preproc_ifdef_in_statements] = STATE(660), + [sym__statements] = STATE(6721), + [sym_statement_label] = STATE(812), + [sym_stop_statement] = STATE(6721), + [sym_assignment_statement] = STATE(6721), + [sym_pointer_association_statement] = STATE(6721), + [sym_subroutine_call] = STATE(6721), + [sym_keyword_statement] = STATE(6721), + [sym_include_statement] = STATE(6721), + [sym_do_loop_statement] = STATE(6721), + [sym_do_label_statement] = STATE(6721), + [sym_end_do_label_statement] = STATE(6721), + [sym_if_statement] = STATE(6721), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6721), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6721), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6721), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6721), + [sym_select_type_statement] = STATE(6721), + [sym_select_rank_statement] = STATE(6721), + [sym_block_construct] = STATE(6721), + [sym_associate_statement] = STATE(6721), + [sym_format_statement] = STATE(6721), + [sym_read_statement] = STATE(6721), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6721), + [sym_open_statement] = STATE(6721), + [sym_close_statement] = STATE(6721), + [sym_write_statement] = STATE(6721), + [sym_inquire_statement] = STATE(6721), + [sym_file_position_statement] = STATE(6721), + [sym_allocate_statement] = STATE(6721), + [sym_entry_statement] = STATE(6721), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6721), + [sym_coarray_team_statement] = STATE(6721), + [sym_coarray_critical_statement] = STATE(6721), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(660), + [aux_sym_preproc_include_token1] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3431), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(3437), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3440), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token2] = ACTIONS(2748), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2748), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(3442), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [688] = { + [sym_preproc_include] = STATE(694), + [sym_preproc_def] = STATE(694), + [sym_preproc_function_def] = STATE(694), + [sym_preproc_call] = STATE(694), + [sym_preproc_if_in_statements] = STATE(694), + [sym_preproc_ifdef_in_statements] = STATE(694), + [sym__statements] = STATE(6734), [sym_statement_label] = STATE(813), - [sym_stop_statement] = STATE(6782), - [sym_assignment_statement] = STATE(6782), - [sym_pointer_association_statement] = STATE(6782), - [sym_subroutine_call] = STATE(6782), - [sym_keyword_statement] = STATE(6782), - [sym_include_statement] = STATE(6782), - [sym_do_loop_statement] = STATE(6782), - [sym_do_label_statement] = STATE(6782), - [sym_end_do_label_statement] = STATE(6782), - [sym_if_statement] = STATE(6782), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6782), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6782), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6782), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6782), - [sym_select_type_statement] = STATE(6782), - [sym_select_rank_statement] = STATE(6782), - [sym_block_construct] = STATE(6782), - [sym_associate_statement] = STATE(6782), - [sym_format_statement] = STATE(6782), - [sym_read_statement] = STATE(6782), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6782), - [sym_open_statement] = STATE(6782), - [sym_close_statement] = STATE(6782), - [sym_write_statement] = STATE(6782), - [sym_inquire_statement] = STATE(6782), - [sym_file_position_statement] = STATE(6782), - [sym_allocate_statement] = STATE(6782), - [sym_entry_statement] = STATE(6782), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6782), - [sym_coarray_team_statement] = STATE(6782), - [sym_coarray_critical_statement] = STATE(6782), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(668), - [aux_sym_preproc_include_token1] = ACTIONS(3538), - [aux_sym_preproc_def_token1] = ACTIONS(3541), - [aux_sym_preproc_if_token1] = ACTIONS(3544), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3547), - [sym_preproc_directive] = ACTIONS(3550), + [sym_stop_statement] = STATE(6734), + [sym_assignment_statement] = STATE(6734), + [sym_pointer_association_statement] = STATE(6734), + [sym_subroutine_call] = STATE(6734), + [sym_keyword_statement] = STATE(6734), + [sym_include_statement] = STATE(6734), + [sym_do_loop_statement] = STATE(6734), + [sym_do_label_statement] = STATE(6734), + [sym_end_do_label_statement] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6734), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6734), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6734), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6734), + [sym_select_type_statement] = STATE(6734), + [sym_select_rank_statement] = STATE(6734), + [sym_block_construct] = STATE(6734), + [sym_associate_statement] = STATE(6734), + [sym_format_statement] = STATE(6734), + [sym_read_statement] = STATE(6734), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6734), + [sym_open_statement] = STATE(6734), + [sym_close_statement] = STATE(6734), + [sym_write_statement] = STATE(6734), + [sym_inquire_statement] = STATE(6734), + [sym_file_position_statement] = STATE(6734), + [sym_allocate_statement] = STATE(6734), + [sym_entry_statement] = STATE(6734), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6734), + [sym_coarray_team_statement] = STATE(6734), + [sym_coarray_critical_statement] = STATE(6734), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(694), + [aux_sym_preproc_include_token1] = ACTIONS(3445), + [aux_sym_preproc_def_token1] = ACTIONS(3448), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3454), + [sym_preproc_directive] = ACTIONS(3457), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3553), + [aux_sym_end_program_statement_token1] = ACTIONS(3460), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -180238,10 +179218,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -180250,7 +179230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3463), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -180271,9 +179251,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token1] = ACTIONS(2754), + [aux_sym_select_rank_statement_token1] = ACTIONS(2756), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2754), + [aux_sym_end_select_statement_token1] = ACTIONS(2756), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -180304,96 +179284,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3556), + [sym__integer_literal] = ACTIONS(3465), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [695] = { - [sym_preproc_include] = STATE(715), - [sym_preproc_def] = STATE(715), - [sym_preproc_function_def] = STATE(715), - [sym_preproc_call] = STATE(715), - [sym_preproc_if_in_statements] = STATE(715), - [sym_preproc_ifdef_in_statements] = STATE(715), - [sym__statements] = STATE(6742), - [sym_statement_label] = STATE(809), - [sym_stop_statement] = STATE(6742), - [sym_assignment_statement] = STATE(6742), - [sym_pointer_association_statement] = STATE(6742), - [sym_subroutine_call] = STATE(6742), - [sym_keyword_statement] = STATE(6742), - [sym_include_statement] = STATE(6742), - [sym_do_loop_statement] = STATE(6742), - [sym_do_label_statement] = STATE(6742), - [sym_end_do_label_statement] = STATE(6742), - [sym_if_statement] = STATE(6742), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6742), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6742), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6742), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6742), - [sym_select_type_statement] = STATE(6742), - [sym_select_rank_statement] = STATE(6742), - [sym_block_construct] = STATE(6742), - [sym_associate_statement] = STATE(6742), - [sym_end_associate_statement] = STATE(7435), - [sym_format_statement] = STATE(6742), - [sym_read_statement] = STATE(6742), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6742), - [sym_open_statement] = STATE(6742), - [sym_close_statement] = STATE(6742), - [sym_write_statement] = STATE(6742), - [sym_inquire_statement] = STATE(6742), - [sym_file_position_statement] = STATE(6742), - [sym_allocate_statement] = STATE(6742), - [sym_entry_statement] = STATE(6742), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6742), - [sym_coarray_team_statement] = STATE(6742), - [sym_coarray_critical_statement] = STATE(6742), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(715), - [aux_sym_preproc_include_token1] = ACTIONS(3226), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3234), + [689] = { + [sym_preproc_include] = STATE(661), + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_statements] = STATE(661), + [sym_preproc_ifdef_in_statements] = STATE(661), + [sym__statements] = STATE(6734), + [sym_statement_label] = STATE(813), + [sym_stop_statement] = STATE(6734), + [sym_assignment_statement] = STATE(6734), + [sym_pointer_association_statement] = STATE(6734), + [sym_subroutine_call] = STATE(6734), + [sym_keyword_statement] = STATE(6734), + [sym_include_statement] = STATE(6734), + [sym_do_loop_statement] = STATE(6734), + [sym_do_label_statement] = STATE(6734), + [sym_end_do_label_statement] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6734), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6734), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6734), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6734), + [sym_select_type_statement] = STATE(6734), + [sym_select_rank_statement] = STATE(6734), + [sym_block_construct] = STATE(6734), + [sym_associate_statement] = STATE(6734), + [sym_format_statement] = STATE(6734), + [sym_read_statement] = STATE(6734), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6734), + [sym_open_statement] = STATE(6734), + [sym_close_statement] = STATE(6734), + [sym_write_statement] = STATE(6734), + [sym_inquire_statement] = STATE(6734), + [sym_file_position_statement] = STATE(6734), + [sym_allocate_statement] = STATE(6734), + [sym_entry_statement] = STATE(6734), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6734), + [sym_coarray_team_statement] = STATE(6734), + [sym_coarray_critical_statement] = STATE(6734), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(661), + [aux_sym_preproc_include_token1] = ACTIONS(3468), + [aux_sym_preproc_def_token1] = ACTIONS(3471), + [aux_sym_preproc_if_token1] = ACTIONS(3474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3477), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3477), + [sym_preproc_directive] = ACTIONS(3480), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3236), + [aux_sym_end_program_statement_token1] = ACTIONS(3483), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -180409,10 +179388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -180421,7 +179400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3393), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -180442,10 +179421,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token1] = ACTIONS(2798), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2798), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_end_associate_statement_token1] = ACTIONS(3240), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -180474,96 +179454,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3486), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [696] = { - [sym_preproc_include] = STATE(749), - [sym_preproc_def] = STATE(749), - [sym_preproc_function_def] = STATE(749), - [sym_preproc_call] = STATE(749), - [sym_preproc_if_in_statements] = STATE(749), - [sym_preproc_ifdef_in_statements] = STATE(749), - [sym__statements] = STATE(6846), - [sym_statement_label] = STATE(800), - [sym_stop_statement] = STATE(6846), - [sym_assignment_statement] = STATE(6846), - [sym_pointer_association_statement] = STATE(6846), - [sym_subroutine_call] = STATE(6846), - [sym_keyword_statement] = STATE(6846), - [sym_include_statement] = STATE(6846), - [sym_do_loop_statement] = STATE(6846), - [sym_do_label_statement] = STATE(6846), - [sym_end_do_label_statement] = STATE(6846), - [sym_if_statement] = STATE(6846), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6846), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6846), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6846), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6846), - [sym_select_type_statement] = STATE(6846), - [sym_select_rank_statement] = STATE(6846), - [sym_block_construct] = STATE(6846), - [sym_end_block_construct_statement] = STATE(7179), - [sym_associate_statement] = STATE(6846), - [sym_format_statement] = STATE(6846), - [sym_read_statement] = STATE(6846), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6846), - [sym_open_statement] = STATE(6846), - [sym_close_statement] = STATE(6846), - [sym_write_statement] = STATE(6846), - [sym_inquire_statement] = STATE(6846), - [sym_file_position_statement] = STATE(6846), - [sym_allocate_statement] = STATE(6846), - [sym_entry_statement] = STATE(6846), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6846), - [sym_coarray_team_statement] = STATE(6846), - [sym_coarray_critical_statement] = STATE(6846), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(749), - [aux_sym_preproc_include_token1] = ACTIONS(3451), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(3455), + [690] = { + [sym_preproc_include] = STATE(708), + [sym_preproc_def] = STATE(708), + [sym_preproc_function_def] = STATE(708), + [sym_preproc_call] = STATE(708), + [sym_preproc_if_in_statements] = STATE(708), + [sym_preproc_ifdef_in_statements] = STATE(708), + [sym__statements] = STATE(6676), + [sym_statement_label] = STATE(809), + [sym_stop_statement] = STATE(6676), + [sym_assignment_statement] = STATE(6676), + [sym_pointer_association_statement] = STATE(6676), + [sym_subroutine_call] = STATE(6676), + [sym_keyword_statement] = STATE(6676), + [sym_include_statement] = STATE(6676), + [sym_do_loop_statement] = STATE(6676), + [sym_do_label_statement] = STATE(6676), + [sym_end_do_label_statement] = STATE(6676), + [sym_if_statement] = STATE(6676), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6676), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6676), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6676), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6676), + [sym_select_type_statement] = STATE(6676), + [sym_select_rank_statement] = STATE(6676), + [sym_block_construct] = STATE(6676), + [sym_associate_statement] = STATE(6676), + [sym_end_associate_statement] = STATE(7309), + [sym_format_statement] = STATE(6676), + [sym_read_statement] = STATE(6676), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6676), + [sym_open_statement] = STATE(6676), + [sym_close_statement] = STATE(6676), + [sym_write_statement] = STATE(6676), + [sym_inquire_statement] = STATE(6676), + [sym_file_position_statement] = STATE(6676), + [sym_allocate_statement] = STATE(6676), + [sym_entry_statement] = STATE(6676), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6676), + [sym_coarray_team_statement] = STATE(6676), + [sym_coarray_critical_statement] = STATE(6676), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(708), + [aux_sym_preproc_include_token1] = ACTIONS(3319), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), + [sym_preproc_directive] = ACTIONS(3327), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1376), + [aux_sym_end_program_statement_token1] = ACTIONS(3329), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -180579,10 +179559,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -180591,7 +179571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3331), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -180614,8 +179594,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(1384), [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_end_associate_statement_token1] = ACTIONS(3333), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -180644,266 +179624,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [697] = { - [sym_preproc_include] = STATE(697), - [sym_preproc_def] = STATE(697), - [sym_preproc_function_def] = STATE(697), - [sym_preproc_call] = STATE(697), - [sym_preproc_if_in_statements] = STATE(697), - [sym_preproc_ifdef_in_statements] = STATE(697), - [sym__statements] = STATE(6564), - [sym_statement_label] = STATE(793), - [sym_stop_statement] = STATE(6564), - [sym_assignment_statement] = STATE(6564), - [sym_pointer_association_statement] = STATE(6564), - [sym_subroutine_call] = STATE(6564), - [sym_keyword_statement] = STATE(6564), - [sym_include_statement] = STATE(6564), - [sym_do_loop_statement] = STATE(6564), - [sym_do_label_statement] = STATE(6564), - [sym_end_do_label_statement] = STATE(6564), - [sym_if_statement] = STATE(6564), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6564), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6564), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6564), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6564), - [sym_select_type_statement] = STATE(6564), - [sym_select_rank_statement] = STATE(6564), - [sym_block_construct] = STATE(6564), - [sym_associate_statement] = STATE(6564), - [sym_format_statement] = STATE(6564), - [sym_read_statement] = STATE(6564), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6564), - [sym_open_statement] = STATE(6564), - [sym_close_statement] = STATE(6564), - [sym_write_statement] = STATE(6564), - [sym_inquire_statement] = STATE(6564), - [sym_file_position_statement] = STATE(6564), - [sym_allocate_statement] = STATE(6564), - [sym_entry_statement] = STATE(6564), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6564), - [sym_coarray_team_statement] = STATE(6564), - [sym_coarray_critical_statement] = STATE(6564), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(697), - [aux_sym_preproc_include_token1] = ACTIONS(3559), - [aux_sym_preproc_def_token1] = ACTIONS(3562), - [aux_sym_preproc_if_token1] = ACTIONS(3565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3568), - [sym_preproc_directive] = ACTIONS(3571), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), + [691] = { + [sym_preproc_include] = STATE(696), + [sym_preproc_def] = STATE(696), + [sym_preproc_function_def] = STATE(696), + [sym_preproc_call] = STATE(696), + [sym_preproc_if_in_statements] = STATE(696), + [sym_preproc_ifdef_in_statements] = STATE(696), + [sym__statements] = STATE(6721), + [sym_statement_label] = STATE(812), + [sym_stop_statement] = STATE(6721), + [sym_assignment_statement] = STATE(6721), + [sym_pointer_association_statement] = STATE(6721), + [sym_subroutine_call] = STATE(6721), + [sym_keyword_statement] = STATE(6721), + [sym_include_statement] = STATE(6721), + [sym_do_loop_statement] = STATE(6721), + [sym_do_label_statement] = STATE(6721), + [sym_end_do_label_statement] = STATE(6721), + [sym_if_statement] = STATE(6721), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6721), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6721), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6721), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6721), + [sym_select_type_statement] = STATE(6721), + [sym_select_rank_statement] = STATE(6721), + [sym_block_construct] = STATE(6721), + [sym_associate_statement] = STATE(6721), + [sym_format_statement] = STATE(6721), + [sym_read_statement] = STATE(6721), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6721), + [sym_open_statement] = STATE(6721), + [sym_close_statement] = STATE(6721), + [sym_write_statement] = STATE(6721), + [sym_inquire_statement] = STATE(6721), + [sym_file_position_statement] = STATE(6721), + [sym_allocate_statement] = STATE(6721), + [sym_entry_statement] = STATE(6721), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6721), + [sym_coarray_team_statement] = STATE(6721), + [sym_coarray_critical_statement] = STATE(6721), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(696), + [aux_sym_preproc_include_token1] = ACTIONS(3489), + [aux_sym_preproc_def_token1] = ACTIONS(3492), + [aux_sym_preproc_if_token1] = ACTIONS(3495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3498), + [sym_preproc_directive] = ACTIONS(3501), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_end_program_statement_token2] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_contains_statement_token1] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3574), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), + [aux_sym_end_program_statement_token1] = ACTIONS(3504), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3507), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token2] = ACTIONS(2712), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2712), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), + [sym__integer_literal] = ACTIONS(3509), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [698] = { - [sym_preproc_include] = STATE(673), - [sym_preproc_def] = STATE(673), - [sym_preproc_function_def] = STATE(673), - [sym_preproc_call] = STATE(673), - [sym_preproc_if_in_statements] = STATE(673), - [sym_preproc_ifdef_in_statements] = STATE(673), - [sym__statements] = STATE(6678), - [sym_statement_label] = STATE(805), - [sym_stop_statement] = STATE(6678), - [sym_assignment_statement] = STATE(6678), - [sym_pointer_association_statement] = STATE(6678), - [sym_subroutine_call] = STATE(6678), - [sym_keyword_statement] = STATE(6678), - [sym_include_statement] = STATE(6678), - [sym_do_loop_statement] = STATE(6678), - [sym_do_label_statement] = STATE(6678), - [sym_end_do_label_statement] = STATE(6678), - [sym_if_statement] = STATE(6678), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6678), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6678), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6678), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6678), - [sym_select_type_statement] = STATE(6678), - [sym_select_rank_statement] = STATE(6678), - [sym_block_construct] = STATE(6678), - [sym_associate_statement] = STATE(6678), - [sym_format_statement] = STATE(6678), - [sym_read_statement] = STATE(6678), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6678), - [sym_open_statement] = STATE(6678), - [sym_close_statement] = STATE(6678), - [sym_write_statement] = STATE(6678), - [sym_inquire_statement] = STATE(6678), - [sym_file_position_statement] = STATE(6678), - [sym_allocate_statement] = STATE(6678), - [sym_entry_statement] = STATE(6678), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6678), - [sym_coarray_team_statement] = STATE(6678), - [sym_end_coarray_team_statement] = STATE(7177), - [sym_coarray_critical_statement] = STATE(6678), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(673), - [aux_sym_preproc_include_token1] = ACTIONS(3365), - [aux_sym_preproc_def_token1] = ACTIONS(3367), - [aux_sym_preproc_if_token1] = ACTIONS(3369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3371), - [sym_preproc_directive] = ACTIONS(3373), + [692] = { + [sym_preproc_include] = STATE(660), + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_if_in_statements] = STATE(660), + [sym_preproc_ifdef_in_statements] = STATE(660), + [sym__statements] = STATE(6721), + [sym_statement_label] = STATE(812), + [sym_stop_statement] = STATE(6721), + [sym_assignment_statement] = STATE(6721), + [sym_pointer_association_statement] = STATE(6721), + [sym_subroutine_call] = STATE(6721), + [sym_keyword_statement] = STATE(6721), + [sym_include_statement] = STATE(6721), + [sym_do_loop_statement] = STATE(6721), + [sym_do_label_statement] = STATE(6721), + [sym_end_do_label_statement] = STATE(6721), + [sym_if_statement] = STATE(6721), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6721), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6721), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6721), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6721), + [sym_select_type_statement] = STATE(6721), + [sym_select_rank_statement] = STATE(6721), + [sym_block_construct] = STATE(6721), + [sym_associate_statement] = STATE(6721), + [sym_format_statement] = STATE(6721), + [sym_read_statement] = STATE(6721), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6721), + [sym_open_statement] = STATE(6721), + [sym_close_statement] = STATE(6721), + [sym_write_statement] = STATE(6721), + [sym_inquire_statement] = STATE(6721), + [sym_file_position_statement] = STATE(6721), + [sym_allocate_statement] = STATE(6721), + [sym_entry_statement] = STATE(6721), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6721), + [sym_coarray_team_statement] = STATE(6721), + [sym_coarray_critical_statement] = STATE(6721), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(660), + [aux_sym_preproc_include_token1] = ACTIONS(3489), + [aux_sym_preproc_def_token1] = ACTIONS(3492), + [aux_sym_preproc_if_token1] = ACTIONS(3495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3498), + [sym_preproc_directive] = ACTIONS(3501), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3375), + [aux_sym_end_program_statement_token1] = ACTIONS(3504), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -180919,10 +179898,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -180931,7 +179910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3577), + [anon_sym_SEMI] = ACTIONS(3440), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -180950,9 +179929,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token2] = ACTIONS(2712), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2712), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -180980,100 +179961,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(177), [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(3379), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3509), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [699] = { - [sym_preproc_include] = STATE(717), - [sym_preproc_def] = STATE(717), - [sym_preproc_function_def] = STATE(717), - [sym_preproc_call] = STATE(717), - [sym_preproc_if_in_statements] = STATE(717), - [sym_preproc_ifdef_in_statements] = STATE(717), - [sym__statements] = STATE(6275), - [sym_statement_label] = STATE(798), - [sym_stop_statement] = STATE(6275), - [sym_assignment_statement] = STATE(6275), - [sym_pointer_association_statement] = STATE(6275), - [sym_subroutine_call] = STATE(6275), - [sym_keyword_statement] = STATE(6275), - [sym_include_statement] = STATE(6275), - [sym_do_loop_statement] = STATE(6275), - [sym_do_label_statement] = STATE(6275), - [sym_end_do_label_statement] = STATE(6275), - [sym_if_statement] = STATE(6275), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6275), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6275), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6275), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6275), - [sym_select_type_statement] = STATE(6275), - [sym_select_rank_statement] = STATE(6275), - [sym_block_construct] = STATE(6275), - [sym_associate_statement] = STATE(6275), - [sym_format_statement] = STATE(6275), - [sym_read_statement] = STATE(6275), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6275), - [sym_open_statement] = STATE(6275), - [sym_close_statement] = STATE(6275), - [sym_write_statement] = STATE(6275), - [sym_inquire_statement] = STATE(6275), - [sym_file_position_statement] = STATE(6275), - [sym_allocate_statement] = STATE(6275), - [sym_entry_statement] = STATE(6275), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6275), - [sym_coarray_team_statement] = STATE(6275), - [sym_coarray_critical_statement] = STATE(6275), - [sym_end_coarray_critical_statement] = STATE(7189), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(717), - [aux_sym_preproc_include_token1] = ACTIONS(3208), - [aux_sym_preproc_def_token1] = ACTIONS(3210), - [aux_sym_preproc_if_token1] = ACTIONS(3212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3214), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3214), - [sym_preproc_directive] = ACTIONS(3216), + [693] = { + [sym_preproc_include] = STATE(698), + [sym_preproc_def] = STATE(698), + [sym_preproc_function_def] = STATE(698), + [sym_preproc_call] = STATE(698), + [sym_preproc_if_in_statements] = STATE(698), + [sym_preproc_ifdef_in_statements] = STATE(698), + [sym__statements] = STATE(6734), + [sym_statement_label] = STATE(813), + [sym_stop_statement] = STATE(6734), + [sym_assignment_statement] = STATE(6734), + [sym_pointer_association_statement] = STATE(6734), + [sym_subroutine_call] = STATE(6734), + [sym_keyword_statement] = STATE(6734), + [sym_include_statement] = STATE(6734), + [sym_do_loop_statement] = STATE(6734), + [sym_do_label_statement] = STATE(6734), + [sym_end_do_label_statement] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6734), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6734), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6734), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6734), + [sym_select_type_statement] = STATE(6734), + [sym_select_rank_statement] = STATE(6734), + [sym_block_construct] = STATE(6734), + [sym_associate_statement] = STATE(6734), + [sym_format_statement] = STATE(6734), + [sym_read_statement] = STATE(6734), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6734), + [sym_open_statement] = STATE(6734), + [sym_close_statement] = STATE(6734), + [sym_write_statement] = STATE(6734), + [sym_inquire_statement] = STATE(6734), + [sym_file_position_statement] = STATE(6734), + [sym_allocate_statement] = STATE(6734), + [sym_entry_statement] = STATE(6734), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6734), + [sym_coarray_team_statement] = STATE(6734), + [sym_coarray_critical_statement] = STATE(6734), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(698), + [aux_sym_preproc_include_token1] = ACTIONS(3512), + [aux_sym_preproc_def_token1] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3521), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3524), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3218), + [aux_sym_end_program_statement_token1] = ACTIONS(3527), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -181089,10 +180068,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -181101,7 +180080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3530), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -181122,7 +180101,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token1] = ACTIONS(2718), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2718), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -181151,99 +180132,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3222), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3532), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [700] = { - [sym_preproc_include] = STATE(749), - [sym_preproc_def] = STATE(749), - [sym_preproc_function_def] = STATE(749), - [sym_preproc_call] = STATE(749), - [sym_preproc_if_in_statements] = STATE(749), - [sym_preproc_ifdef_in_statements] = STATE(749), - [sym__statements] = STATE(6846), - [sym_statement_label] = STATE(800), - [sym_stop_statement] = STATE(6846), - [sym_assignment_statement] = STATE(6846), - [sym_pointer_association_statement] = STATE(6846), - [sym_subroutine_call] = STATE(6846), - [sym_keyword_statement] = STATE(6846), - [sym_include_statement] = STATE(6846), - [sym_do_loop_statement] = STATE(6846), - [sym_do_label_statement] = STATE(6846), - [sym_end_do_label_statement] = STATE(6846), - [sym_if_statement] = STATE(6846), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6846), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6846), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6846), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6846), - [sym_select_type_statement] = STATE(6846), - [sym_select_rank_statement] = STATE(6846), - [sym_block_construct] = STATE(6846), - [sym_end_block_construct_statement] = STATE(7198), - [sym_associate_statement] = STATE(6846), - [sym_format_statement] = STATE(6846), - [sym_read_statement] = STATE(6846), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6846), - [sym_open_statement] = STATE(6846), - [sym_close_statement] = STATE(6846), - [sym_write_statement] = STATE(6846), - [sym_inquire_statement] = STATE(6846), - [sym_file_position_statement] = STATE(6846), - [sym_allocate_statement] = STATE(6846), - [sym_entry_statement] = STATE(6846), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6846), - [sym_coarray_team_statement] = STATE(6846), - [sym_coarray_critical_statement] = STATE(6846), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(749), - [aux_sym_preproc_include_token1] = ACTIONS(3451), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(3455), + [694] = { + [sym_preproc_include] = STATE(661), + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_statements] = STATE(661), + [sym_preproc_ifdef_in_statements] = STATE(661), + [sym__statements] = STATE(6734), + [sym_statement_label] = STATE(813), + [sym_stop_statement] = STATE(6734), + [sym_assignment_statement] = STATE(6734), + [sym_pointer_association_statement] = STATE(6734), + [sym_subroutine_call] = STATE(6734), + [sym_keyword_statement] = STATE(6734), + [sym_include_statement] = STATE(6734), + [sym_do_loop_statement] = STATE(6734), + [sym_do_label_statement] = STATE(6734), + [sym_end_do_label_statement] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6734), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6734), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6734), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6734), + [sym_select_type_statement] = STATE(6734), + [sym_select_rank_statement] = STATE(6734), + [sym_block_construct] = STATE(6734), + [sym_associate_statement] = STATE(6734), + [sym_format_statement] = STATE(6734), + [sym_read_statement] = STATE(6734), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6734), + [sym_open_statement] = STATE(6734), + [sym_close_statement] = STATE(6734), + [sym_write_statement] = STATE(6734), + [sym_inquire_statement] = STATE(6734), + [sym_file_position_statement] = STATE(6734), + [sym_allocate_statement] = STATE(6734), + [sym_entry_statement] = STATE(6734), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6734), + [sym_coarray_team_statement] = STATE(6734), + [sym_coarray_critical_statement] = STATE(6734), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(661), + [aux_sym_preproc_include_token1] = ACTIONS(3512), + [aux_sym_preproc_def_token1] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3521), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3524), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(1376), + [aux_sym_end_program_statement_token1] = ACTIONS(3527), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -181259,10 +180238,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -181271,7 +180250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3393), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -181292,9 +180271,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token1] = ACTIONS(2718), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2718), [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(1384), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), @@ -181324,95 +180304,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3532), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [701] = { - [sym_preproc_include] = STATE(665), - [sym_preproc_def] = STATE(665), - [sym_preproc_function_def] = STATE(665), - [sym_preproc_call] = STATE(665), - [sym_preproc_if_in_statements] = STATE(665), - [sym_preproc_ifdef_in_statements] = STATE(665), - [sym__statements] = STATE(6776), - [sym_statement_label] = STATE(812), - [sym_stop_statement] = STATE(6776), - [sym_assignment_statement] = STATE(6776), - [sym_pointer_association_statement] = STATE(6776), - [sym_subroutine_call] = STATE(6776), - [sym_keyword_statement] = STATE(6776), - [sym_include_statement] = STATE(6776), - [sym_do_loop_statement] = STATE(6776), - [sym_do_label_statement] = STATE(6776), - [sym_end_do_label_statement] = STATE(6776), - [sym_if_statement] = STATE(6776), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6776), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6776), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6776), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6776), - [sym_select_type_statement] = STATE(6776), - [sym_select_rank_statement] = STATE(6776), - [sym_block_construct] = STATE(6776), - [sym_associate_statement] = STATE(6776), - [sym_format_statement] = STATE(6776), - [sym_read_statement] = STATE(6776), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6776), - [sym_open_statement] = STATE(6776), - [sym_close_statement] = STATE(6776), - [sym_write_statement] = STATE(6776), - [sym_inquire_statement] = STATE(6776), - [sym_file_position_statement] = STATE(6776), - [sym_allocate_statement] = STATE(6776), - [sym_entry_statement] = STATE(6776), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6776), - [sym_coarray_team_statement] = STATE(6776), - [sym_coarray_critical_statement] = STATE(6776), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(665), - [aux_sym_preproc_include_token1] = ACTIONS(3410), - [aux_sym_preproc_def_token1] = ACTIONS(3413), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3419), - [sym_preproc_directive] = ACTIONS(3422), + [695] = { + [sym_preproc_include] = STATE(685), + [sym_preproc_def] = STATE(685), + [sym_preproc_function_def] = STATE(685), + [sym_preproc_call] = STATE(685), + [sym_preproc_if_in_statements] = STATE(685), + [sym_preproc_ifdef_in_statements] = STATE(685), + [sym__statements] = STATE(6821), + [sym_statement_label] = STATE(799), + [sym_stop_statement] = STATE(6821), + [sym_assignment_statement] = STATE(6821), + [sym_pointer_association_statement] = STATE(6821), + [sym_subroutine_call] = STATE(6821), + [sym_keyword_statement] = STATE(6821), + [sym_include_statement] = STATE(6821), + [sym_do_loop_statement] = STATE(6821), + [sym_do_label_statement] = STATE(6821), + [sym_end_do_label_statement] = STATE(6821), + [sym_if_statement] = STATE(6821), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6821), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6821), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6821), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6821), + [sym_select_type_statement] = STATE(6821), + [sym_select_rank_statement] = STATE(6821), + [sym_block_construct] = STATE(6821), + [sym_associate_statement] = STATE(6821), + [sym_format_statement] = STATE(6821), + [sym_read_statement] = STATE(6821), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6821), + [sym_open_statement] = STATE(6821), + [sym_close_statement] = STATE(6821), + [sym_write_statement] = STATE(6821), + [sym_inquire_statement] = STATE(6821), + [sym_file_position_statement] = STATE(6821), + [sym_allocate_statement] = STATE(6821), + [sym_entry_statement] = STATE(6821), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6821), + [sym_coarray_team_statement] = STATE(6821), + [sym_coarray_critical_statement] = STATE(6821), + [sym_end_coarray_critical_statement] = STATE(7407), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(685), + [aux_sym_preproc_include_token1] = ACTIONS(3161), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3169), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3425), + [aux_sym_end_program_statement_token1] = ACTIONS(3171), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -181428,10 +180409,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -181440,7 +180421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(3535), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -181459,11 +180440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token2] = ACTIONS(2756), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_end_select_statement_token1] = ACTIONS(2756), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -181492,98 +180471,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(3175), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3428), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [702] = { - [sym_preproc_include] = STATE(671), - [sym_preproc_def] = STATE(671), - [sym_preproc_function_def] = STATE(671), - [sym_preproc_call] = STATE(671), - [sym_preproc_if_in_statements] = STATE(671), - [sym_preproc_ifdef_in_statements] = STATE(671), - [sym__statements] = STATE(6678), - [sym_statement_label] = STATE(805), - [sym_stop_statement] = STATE(6678), - [sym_assignment_statement] = STATE(6678), - [sym_pointer_association_statement] = STATE(6678), - [sym_subroutine_call] = STATE(6678), - [sym_keyword_statement] = STATE(6678), - [sym_include_statement] = STATE(6678), - [sym_do_loop_statement] = STATE(6678), - [sym_do_label_statement] = STATE(6678), - [sym_end_do_label_statement] = STATE(6678), - [sym_if_statement] = STATE(6678), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6678), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6678), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6678), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6678), - [sym_select_type_statement] = STATE(6678), - [sym_select_rank_statement] = STATE(6678), - [sym_block_construct] = STATE(6678), - [sym_associate_statement] = STATE(6678), - [sym_format_statement] = STATE(6678), - [sym_read_statement] = STATE(6678), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6678), - [sym_open_statement] = STATE(6678), - [sym_close_statement] = STATE(6678), - [sym_write_statement] = STATE(6678), - [sym_inquire_statement] = STATE(6678), - [sym_file_position_statement] = STATE(6678), - [sym_allocate_statement] = STATE(6678), - [sym_entry_statement] = STATE(6678), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6678), - [sym_coarray_team_statement] = STATE(6678), - [sym_end_coarray_team_statement] = STATE(7325), - [sym_coarray_critical_statement] = STATE(6678), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(671), - [aux_sym_preproc_include_token1] = ACTIONS(3365), - [aux_sym_preproc_def_token1] = ACTIONS(3367), - [aux_sym_preproc_if_token1] = ACTIONS(3369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3371), - [sym_preproc_directive] = ACTIONS(3373), + [696] = { + [sym_preproc_include] = STATE(660), + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_if_in_statements] = STATE(660), + [sym_preproc_ifdef_in_statements] = STATE(660), + [sym__statements] = STATE(6721), + [sym_statement_label] = STATE(812), + [sym_stop_statement] = STATE(6721), + [sym_assignment_statement] = STATE(6721), + [sym_pointer_association_statement] = STATE(6721), + [sym_subroutine_call] = STATE(6721), + [sym_keyword_statement] = STATE(6721), + [sym_include_statement] = STATE(6721), + [sym_do_loop_statement] = STATE(6721), + [sym_do_label_statement] = STATE(6721), + [sym_end_do_label_statement] = STATE(6721), + [sym_if_statement] = STATE(6721), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6721), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6721), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6721), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6721), + [sym_select_type_statement] = STATE(6721), + [sym_select_rank_statement] = STATE(6721), + [sym_block_construct] = STATE(6721), + [sym_associate_statement] = STATE(6721), + [sym_format_statement] = STATE(6721), + [sym_read_statement] = STATE(6721), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6721), + [sym_open_statement] = STATE(6721), + [sym_close_statement] = STATE(6721), + [sym_write_statement] = STATE(6721), + [sym_inquire_statement] = STATE(6721), + [sym_file_position_statement] = STATE(6721), + [sym_allocate_statement] = STATE(6721), + [sym_entry_statement] = STATE(6721), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6721), + [sym_coarray_team_statement] = STATE(6721), + [sym_coarray_critical_statement] = STATE(6721), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(660), + [aux_sym_preproc_include_token1] = ACTIONS(3537), + [aux_sym_preproc_def_token1] = ACTIONS(3540), + [aux_sym_preproc_if_token1] = ACTIONS(3543), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3546), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3546), + [sym_preproc_directive] = ACTIONS(3549), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3375), + [aux_sym_end_program_statement_token1] = ACTIONS(3552), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -181599,10 +180578,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -181611,7 +180590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3581), + [anon_sym_SEMI] = ACTIONS(3440), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -181630,9 +180609,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token2] = ACTIONS(2762), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2762), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -181660,100 +180641,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(177), [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(3379), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3555), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [703] = { - [sym_preproc_include] = STATE(715), - [sym_preproc_def] = STATE(715), - [sym_preproc_function_def] = STATE(715), - [sym_preproc_call] = STATE(715), - [sym_preproc_if_in_statements] = STATE(715), - [sym_preproc_ifdef_in_statements] = STATE(715), - [sym__statements] = STATE(6742), - [sym_statement_label] = STATE(809), - [sym_stop_statement] = STATE(6742), - [sym_assignment_statement] = STATE(6742), - [sym_pointer_association_statement] = STATE(6742), - [sym_subroutine_call] = STATE(6742), - [sym_keyword_statement] = STATE(6742), - [sym_include_statement] = STATE(6742), - [sym_do_loop_statement] = STATE(6742), - [sym_do_label_statement] = STATE(6742), - [sym_end_do_label_statement] = STATE(6742), - [sym_if_statement] = STATE(6742), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6742), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6742), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6742), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6742), - [sym_select_type_statement] = STATE(6742), - [sym_select_rank_statement] = STATE(6742), - [sym_block_construct] = STATE(6742), - [sym_associate_statement] = STATE(6742), - [sym_end_associate_statement] = STATE(7278), - [sym_format_statement] = STATE(6742), - [sym_read_statement] = STATE(6742), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6742), - [sym_open_statement] = STATE(6742), - [sym_close_statement] = STATE(6742), - [sym_write_statement] = STATE(6742), - [sym_inquire_statement] = STATE(6742), - [sym_file_position_statement] = STATE(6742), - [sym_allocate_statement] = STATE(6742), - [sym_entry_statement] = STATE(6742), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6742), - [sym_coarray_team_statement] = STATE(6742), - [sym_coarray_critical_statement] = STATE(6742), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(715), - [aux_sym_preproc_include_token1] = ACTIONS(3226), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3230), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3234), + [697] = { + [sym_preproc_include] = STATE(704), + [sym_preproc_def] = STATE(704), + [sym_preproc_function_def] = STATE(704), + [sym_preproc_call] = STATE(704), + [sym_preproc_if_in_statements] = STATE(704), + [sym_preproc_ifdef_in_statements] = STATE(704), + [sym__statements] = STATE(6311), + [sym_statement_label] = STATE(777), + [sym_stop_statement] = STATE(6311), + [sym_assignment_statement] = STATE(6311), + [sym_pointer_association_statement] = STATE(6311), + [sym_subroutine_call] = STATE(6311), + [sym_keyword_statement] = STATE(6311), + [sym_include_statement] = STATE(6311), + [sym_do_loop_statement] = STATE(6311), + [sym_end_do_loop_statement] = STATE(7403), + [sym_do_label_statement] = STATE(6311), + [sym_end_do_label_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6311), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6311), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6311), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6311), + [sym_select_type_statement] = STATE(6311), + [sym_select_rank_statement] = STATE(6311), + [sym_block_construct] = STATE(6311), + [sym_associate_statement] = STATE(6311), + [sym_format_statement] = STATE(6311), + [sym_read_statement] = STATE(6311), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6311), + [sym_open_statement] = STATE(6311), + [sym_close_statement] = STATE(6311), + [sym_write_statement] = STATE(6311), + [sym_inquire_statement] = STATE(6311), + [sym_file_position_statement] = STATE(6311), + [sym_allocate_statement] = STATE(6311), + [sym_entry_statement] = STATE(6311), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6311), + [sym_coarray_team_statement] = STATE(6311), + [sym_coarray_critical_statement] = STATE(6311), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(704), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3129), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3236), + [aux_sym_end_program_statement_token1] = ACTIONS(3131), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -181769,10 +180749,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -181781,7 +180761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3269), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -181794,6 +180774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(3135), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -181805,7 +180786,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_end_associate_statement_token1] = ACTIONS(3240), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -181834,96 +180814,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [704] = { - [sym_preproc_include] = STATE(733), - [sym_preproc_def] = STATE(733), - [sym_preproc_function_def] = STATE(733), - [sym_preproc_call] = STATE(733), - [sym_preproc_if_in_statements] = STATE(733), - [sym_preproc_ifdef_in_statements] = STATE(733), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(733), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [698] = { + [sym_preproc_include] = STATE(661), + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_statements] = STATE(661), + [sym_preproc_ifdef_in_statements] = STATE(661), + [sym__statements] = STATE(6734), + [sym_statement_label] = STATE(813), + [sym_stop_statement] = STATE(6734), + [sym_assignment_statement] = STATE(6734), + [sym_pointer_association_statement] = STATE(6734), + [sym_subroutine_call] = STATE(6734), + [sym_keyword_statement] = STATE(6734), + [sym_include_statement] = STATE(6734), + [sym_do_loop_statement] = STATE(6734), + [sym_do_label_statement] = STATE(6734), + [sym_end_do_label_statement] = STATE(6734), + [sym_if_statement] = STATE(6734), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6734), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6734), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6734), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6734), + [sym_select_type_statement] = STATE(6734), + [sym_select_rank_statement] = STATE(6734), + [sym_block_construct] = STATE(6734), + [sym_associate_statement] = STATE(6734), + [sym_format_statement] = STATE(6734), + [sym_read_statement] = STATE(6734), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6734), + [sym_open_statement] = STATE(6734), + [sym_close_statement] = STATE(6734), + [sym_write_statement] = STATE(6734), + [sym_inquire_statement] = STATE(6734), + [sym_file_position_statement] = STATE(6734), + [sym_allocate_statement] = STATE(6734), + [sym_entry_statement] = STATE(6734), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6734), + [sym_coarray_team_statement] = STATE(6734), + [sym_coarray_critical_statement] = STATE(6734), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(661), + [aux_sym_preproc_include_token1] = ACTIONS(3558), + [aux_sym_preproc_def_token1] = ACTIONS(3561), + [aux_sym_preproc_if_token1] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3567), + [sym_preproc_directive] = ACTIONS(3570), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(3573), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -181939,10 +180918,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -181951,7 +180930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3593), + [anon_sym_SEMI] = ACTIONS(3393), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -181972,7 +180951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token1] = ACTIONS(2706), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2706), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -182003,265 +180984,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3576), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [705] = { - [sym_preproc_include] = STATE(705), - [sym_preproc_def] = STATE(705), - [sym_preproc_function_def] = STATE(705), - [sym_preproc_call] = STATE(705), - [sym_preproc_if_in_statements] = STATE(705), - [sym_preproc_ifdef_in_statements] = STATE(705), - [sym__statements] = STATE(6678), - [sym_statement_label] = STATE(805), - [sym_stop_statement] = STATE(6678), - [sym_assignment_statement] = STATE(6678), - [sym_pointer_association_statement] = STATE(6678), - [sym_subroutine_call] = STATE(6678), - [sym_keyword_statement] = STATE(6678), - [sym_include_statement] = STATE(6678), - [sym_do_loop_statement] = STATE(6678), - [sym_do_label_statement] = STATE(6678), - [sym_end_do_label_statement] = STATE(6678), - [sym_if_statement] = STATE(6678), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6678), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6678), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6678), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6678), - [sym_select_type_statement] = STATE(6678), - [sym_select_rank_statement] = STATE(6678), - [sym_block_construct] = STATE(6678), - [sym_associate_statement] = STATE(6678), - [sym_format_statement] = STATE(6678), - [sym_read_statement] = STATE(6678), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6678), - [sym_open_statement] = STATE(6678), - [sym_close_statement] = STATE(6678), - [sym_write_statement] = STATE(6678), - [sym_inquire_statement] = STATE(6678), - [sym_file_position_statement] = STATE(6678), - [sym_allocate_statement] = STATE(6678), - [sym_entry_statement] = STATE(6678), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6678), - [sym_coarray_team_statement] = STATE(6678), - [sym_coarray_critical_statement] = STATE(6678), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(705), - [aux_sym_preproc_include_token1] = ACTIONS(3595), - [aux_sym_preproc_def_token1] = ACTIONS(3598), - [aux_sym_preproc_if_token1] = ACTIONS(3601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), - [sym_preproc_directive] = ACTIONS(3607), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3610), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [706] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2628), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [699] = { + [sym_preproc_include] = STATE(669), + [sym_preproc_def] = STATE(669), + [sym_preproc_function_def] = STATE(669), + [sym_preproc_call] = STATE(669), + [sym_preproc_if_in_statements] = STATE(669), + [sym_preproc_ifdef_in_statements] = STATE(669), + [sym__statements] = STATE(6676), + [sym_statement_label] = STATE(809), + [sym_stop_statement] = STATE(6676), + [sym_assignment_statement] = STATE(6676), + [sym_pointer_association_statement] = STATE(6676), + [sym_subroutine_call] = STATE(6676), + [sym_keyword_statement] = STATE(6676), + [sym_include_statement] = STATE(6676), + [sym_do_loop_statement] = STATE(6676), + [sym_do_label_statement] = STATE(6676), + [sym_end_do_label_statement] = STATE(6676), + [sym_if_statement] = STATE(6676), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6676), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6676), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6676), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6676), + [sym_select_type_statement] = STATE(6676), + [sym_select_rank_statement] = STATE(6676), + [sym_block_construct] = STATE(6676), + [sym_associate_statement] = STATE(6676), + [sym_end_associate_statement] = STATE(7443), + [sym_format_statement] = STATE(6676), + [sym_read_statement] = STATE(6676), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6676), + [sym_open_statement] = STATE(6676), + [sym_close_statement] = STATE(6676), + [sym_write_statement] = STATE(6676), + [sym_inquire_statement] = STATE(6676), + [sym_file_position_statement] = STATE(6676), + [sym_allocate_statement] = STATE(6676), + [sym_entry_statement] = STATE(6676), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6676), + [sym_coarray_team_statement] = STATE(6676), + [sym_coarray_critical_statement] = STATE(6676), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(669), + [aux_sym_preproc_include_token1] = ACTIONS(3319), + [aux_sym_preproc_def_token1] = ACTIONS(3321), + [aux_sym_preproc_if_token1] = ACTIONS(3323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), + [sym_preproc_directive] = ACTIONS(3327), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(3329), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -182277,10 +181089,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -182289,7 +181101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3579), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -182313,6 +181125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(133), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_end_associate_statement_token1] = ACTIONS(3333), [aux_sym_format_statement_token1] = ACTIONS(139), [aux_sym_print_statement_token1] = ACTIONS(141), [aux_sym_open_statement_token1] = ACTIONS(143), @@ -182341,96 +181154,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [707] = { - [sym_preproc_include] = STATE(729), - [sym_preproc_def] = STATE(729), - [sym_preproc_function_def] = STATE(729), - [sym_preproc_call] = STATE(729), - [sym_preproc_if_in_statements] = STATE(729), - [sym_preproc_ifdef_in_statements] = STATE(729), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(729), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [700] = { + [sym_preproc_include] = STATE(707), + [sym_preproc_def] = STATE(707), + [sym_preproc_function_def] = STATE(707), + [sym_preproc_call] = STATE(707), + [sym_preproc_if_in_statements] = STATE(707), + [sym_preproc_ifdef_in_statements] = STATE(707), + [sym__statements] = STATE(6605), + [sym_statement_label] = STATE(805), + [sym_stop_statement] = STATE(6605), + [sym_assignment_statement] = STATE(6605), + [sym_pointer_association_statement] = STATE(6605), + [sym_subroutine_call] = STATE(6605), + [sym_keyword_statement] = STATE(6605), + [sym_include_statement] = STATE(6605), + [sym_do_loop_statement] = STATE(6605), + [sym_do_label_statement] = STATE(6605), + [sym_end_do_label_statement] = STATE(6605), + [sym_if_statement] = STATE(6605), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6605), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6605), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6605), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6605), + [sym_select_type_statement] = STATE(6605), + [sym_select_rank_statement] = STATE(6605), + [sym_block_construct] = STATE(6605), + [sym_associate_statement] = STATE(6605), + [sym_format_statement] = STATE(6605), + [sym_read_statement] = STATE(6605), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6605), + [sym_open_statement] = STATE(6605), + [sym_close_statement] = STATE(6605), + [sym_write_statement] = STATE(6605), + [sym_inquire_statement] = STATE(6605), + [sym_file_position_statement] = STATE(6605), + [sym_allocate_statement] = STATE(6605), + [sym_entry_statement] = STATE(6605), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6605), + [sym_coarray_team_statement] = STATE(6605), + [sym_end_coarray_team_statement] = STATE(7179), + [sym_coarray_critical_statement] = STATE(6605), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(707), + [aux_sym_preproc_include_token1] = ACTIONS(3145), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3153), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(3155), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -182446,10 +181259,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -182458,7 +181271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3615), + [anon_sym_SEMI] = ACTIONS(3337), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -182507,99 +181320,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(177), [aux_sym_coarray_statement_token12] = ACTIONS(177), [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(3159), [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [708] = { - [sym_preproc_include] = STATE(732), - [sym_preproc_def] = STATE(732), - [sym_preproc_function_def] = STATE(732), - [sym_preproc_call] = STATE(732), - [sym_preproc_if_in_statements] = STATE(732), - [sym_preproc_ifdef_in_statements] = STATE(732), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(732), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [701] = { + [sym_preproc_include] = STATE(705), + [sym_preproc_def] = STATE(705), + [sym_preproc_function_def] = STATE(705), + [sym_preproc_call] = STATE(705), + [sym_preproc_if_in_statements] = STATE(705), + [sym_preproc_ifdef_in_statements] = STATE(705), + [sym__statements] = STATE(6986), + [sym_statement_label] = STATE(771), + [sym_stop_statement] = STATE(6986), + [sym_assignment_statement] = STATE(6986), + [sym_pointer_association_statement] = STATE(6986), + [sym_subroutine_call] = STATE(6986), + [sym_keyword_statement] = STATE(6986), + [sym_include_statement] = STATE(6986), + [sym_do_loop_statement] = STATE(6986), + [sym_do_label_statement] = STATE(6986), + [sym_end_do_label_statement] = STATE(6986), + [sym_if_statement] = STATE(6986), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6986), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6986), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6986), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_end_forall_statement] = STATE(7389), + [sym_select_case_statement] = STATE(6986), + [sym_select_type_statement] = STATE(6986), + [sym_select_rank_statement] = STATE(6986), + [sym_block_construct] = STATE(6986), + [sym_associate_statement] = STATE(6986), + [sym_format_statement] = STATE(6986), + [sym_read_statement] = STATE(6986), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6986), + [sym_open_statement] = STATE(6986), + [sym_close_statement] = STATE(6986), + [sym_write_statement] = STATE(6986), + [sym_inquire_statement] = STATE(6986), + [sym_file_position_statement] = STATE(6986), + [sym_allocate_statement] = STATE(6986), + [sym_entry_statement] = STATE(6986), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6986), + [sym_coarray_team_statement] = STATE(6986), + [sym_coarray_critical_statement] = STATE(6986), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(705), + [aux_sym_preproc_include_token1] = ACTIONS(3177), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3185), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(3187), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -182615,10 +181429,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -182627,7 +181441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3617), + [anon_sym_SEMI] = ACTIONS(3341), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -182645,6 +181459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_end_forall_statement_token1] = ACTIONS(3191), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), @@ -182679,96 +181494,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3193), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [709] = { - [sym_preproc_include] = STATE(722), - [sym_preproc_def] = STATE(722), - [sym_preproc_function_def] = STATE(722), - [sym_preproc_call] = STATE(722), - [sym_preproc_if_in_statements] = STATE(722), - [sym_preproc_ifdef_in_statements] = STATE(722), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(722), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [702] = { + [sym_preproc_include] = STATE(674), + [sym_preproc_def] = STATE(674), + [sym_preproc_function_def] = STATE(674), + [sym_preproc_call] = STATE(674), + [sym_preproc_if_in_statements] = STATE(674), + [sym_preproc_ifdef_in_statements] = STATE(674), + [sym__statements] = STATE(6986), + [sym_statement_label] = STATE(771), + [sym_stop_statement] = STATE(6986), + [sym_assignment_statement] = STATE(6986), + [sym_pointer_association_statement] = STATE(6986), + [sym_subroutine_call] = STATE(6986), + [sym_keyword_statement] = STATE(6986), + [sym_include_statement] = STATE(6986), + [sym_do_loop_statement] = STATE(6986), + [sym_do_label_statement] = STATE(6986), + [sym_end_do_label_statement] = STATE(6986), + [sym_if_statement] = STATE(6986), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6986), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6986), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6986), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_end_forall_statement] = STATE(7389), + [sym_select_case_statement] = STATE(6986), + [sym_select_type_statement] = STATE(6986), + [sym_select_rank_statement] = STATE(6986), + [sym_block_construct] = STATE(6986), + [sym_associate_statement] = STATE(6986), + [sym_format_statement] = STATE(6986), + [sym_read_statement] = STATE(6986), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6986), + [sym_open_statement] = STATE(6986), + [sym_close_statement] = STATE(6986), + [sym_write_statement] = STATE(6986), + [sym_inquire_statement] = STATE(6986), + [sym_file_position_statement] = STATE(6986), + [sym_allocate_statement] = STATE(6986), + [sym_entry_statement] = STATE(6986), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6986), + [sym_coarray_team_statement] = STATE(6986), + [sym_coarray_critical_statement] = STATE(6986), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(674), + [aux_sym_preproc_include_token1] = ACTIONS(3177), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3185), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(3187), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -182784,10 +181599,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -182796,7 +181611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3581), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -182814,6 +181629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_end_forall_statement_token1] = ACTIONS(3191), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), @@ -182848,96 +181664,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3193), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [710] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [703] = { + [sym_preproc_include] = STATE(660), + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_if_in_statements] = STATE(660), + [sym_preproc_ifdef_in_statements] = STATE(660), + [sym__statements] = STATE(6721), + [sym_statement_label] = STATE(812), + [sym_stop_statement] = STATE(6721), + [sym_assignment_statement] = STATE(6721), + [sym_pointer_association_statement] = STATE(6721), + [sym_subroutine_call] = STATE(6721), + [sym_keyword_statement] = STATE(6721), + [sym_include_statement] = STATE(6721), + [sym_do_loop_statement] = STATE(6721), + [sym_do_label_statement] = STATE(6721), + [sym_end_do_label_statement] = STATE(6721), + [sym_if_statement] = STATE(6721), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6721), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6721), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6721), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6721), + [sym_select_type_statement] = STATE(6721), + [sym_select_rank_statement] = STATE(6721), + [sym_block_construct] = STATE(6721), + [sym_associate_statement] = STATE(6721), + [sym_format_statement] = STATE(6721), + [sym_read_statement] = STATE(6721), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6721), + [sym_open_statement] = STATE(6721), + [sym_close_statement] = STATE(6721), + [sym_write_statement] = STATE(6721), + [sym_inquire_statement] = STATE(6721), + [sym_file_position_statement] = STATE(6721), + [sym_allocate_statement] = STATE(6721), + [sym_entry_statement] = STATE(6721), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6721), + [sym_coarray_team_statement] = STATE(6721), + [sym_coarray_critical_statement] = STATE(6721), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(660), + [aux_sym_preproc_include_token1] = ACTIONS(3345), + [aux_sym_preproc_def_token1] = ACTIONS(3348), + [aux_sym_preproc_if_token1] = ACTIONS(3351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3357), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(3360), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -182953,10 +181768,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -182965,7 +181780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3440), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -182984,9 +181799,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token2] = ACTIONS(2760), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_end_select_statement_token1] = ACTIONS(2760), [aux_sym_block_construct_token1] = ACTIONS(135), [aux_sym_associate_statement_token1] = ACTIONS(137), [aux_sym_format_statement_token1] = ACTIONS(139), @@ -183017,90 +181834,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3365), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [711] = { - [sym_preproc_include] = STATE(711), - [sym_preproc_def] = STATE(711), - [sym_preproc_function_def] = STATE(711), - [sym_preproc_call] = STATE(711), - [sym_preproc_if_in_statements] = STATE(711), - [sym_preproc_ifdef_in_statements] = STATE(711), - [sym__statements] = STATE(6339), - [sym_statement_label] = STATE(806), - [sym_stop_statement] = STATE(6339), - [sym_assignment_statement] = STATE(6339), - [sym_pointer_association_statement] = STATE(6339), - [sym_subroutine_call] = STATE(6339), - [sym_keyword_statement] = STATE(6339), - [sym_include_statement] = STATE(6339), - [sym_do_loop_statement] = STATE(6339), - [sym_do_label_statement] = STATE(6339), - [sym_end_do_label_statement] = STATE(6339), - [sym_if_statement] = STATE(6339), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6339), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6339), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6339), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6339), - [sym_select_type_statement] = STATE(6339), - [sym_select_rank_statement] = STATE(6339), - [sym_block_construct] = STATE(6339), - [sym_associate_statement] = STATE(6339), - [sym_format_statement] = STATE(6339), - [sym_read_statement] = STATE(6339), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6339), - [sym_open_statement] = STATE(6339), - [sym_close_statement] = STATE(6339), - [sym_write_statement] = STATE(6339), - [sym_inquire_statement] = STATE(6339), - [sym_file_position_statement] = STATE(6339), - [sym_allocate_statement] = STATE(6339), - [sym_entry_statement] = STATE(6339), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6339), - [sym_coarray_team_statement] = STATE(6339), - [sym_coarray_critical_statement] = STATE(6339), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(711), - [aux_sym_preproc_include_token1] = ACTIONS(3621), - [aux_sym_preproc_def_token1] = ACTIONS(3624), - [aux_sym_preproc_if_token1] = ACTIONS(3627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3633), + [704] = { + [sym_preproc_include] = STATE(704), + [sym_preproc_def] = STATE(704), + [sym_preproc_function_def] = STATE(704), + [sym_preproc_call] = STATE(704), + [sym_preproc_if_in_statements] = STATE(704), + [sym_preproc_ifdef_in_statements] = STATE(704), + [sym__statements] = STATE(6311), + [sym_statement_label] = STATE(804), + [sym_stop_statement] = STATE(6311), + [sym_assignment_statement] = STATE(6311), + [sym_pointer_association_statement] = STATE(6311), + [sym_subroutine_call] = STATE(6311), + [sym_keyword_statement] = STATE(6311), + [sym_include_statement] = STATE(6311), + [sym_do_loop_statement] = STATE(6311), + [sym_do_label_statement] = STATE(6311), + [sym_end_do_label_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6311), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6311), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6311), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6311), + [sym_select_type_statement] = STATE(6311), + [sym_select_rank_statement] = STATE(6311), + [sym_block_construct] = STATE(6311), + [sym_associate_statement] = STATE(6311), + [sym_format_statement] = STATE(6311), + [sym_read_statement] = STATE(6311), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6311), + [sym_open_statement] = STATE(6311), + [sym_close_statement] = STATE(6311), + [sym_write_statement] = STATE(6311), + [sym_inquire_statement] = STATE(6311), + [sym_file_position_statement] = STATE(6311), + [sym_allocate_statement] = STATE(6311), + [sym_entry_statement] = STATE(6311), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6311), + [sym_coarray_team_statement] = STATE(6311), + [sym_coarray_critical_statement] = STATE(6311), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(704), + [aux_sym_preproc_include_token1] = ACTIONS(3583), + [aux_sym_preproc_def_token1] = ACTIONS(3586), + [aux_sym_preproc_if_token1] = ACTIONS(3589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), + [sym_preproc_directive] = ACTIONS(3595), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3598), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), + }, + [705] = { + [sym_preproc_include] = STATE(705), + [sym_preproc_def] = STATE(705), + [sym_preproc_function_def] = STATE(705), + [sym_preproc_call] = STATE(705), + [sym_preproc_if_in_statements] = STATE(705), + [sym_preproc_ifdef_in_statements] = STATE(705), + [sym__statements] = STATE(6986), + [sym_statement_label] = STATE(792), + [sym_stop_statement] = STATE(6986), + [sym_assignment_statement] = STATE(6986), + [sym_pointer_association_statement] = STATE(6986), + [sym_subroutine_call] = STATE(6986), + [sym_keyword_statement] = STATE(6986), + [sym_include_statement] = STATE(6986), + [sym_do_loop_statement] = STATE(6986), + [sym_do_label_statement] = STATE(6986), + [sym_end_do_label_statement] = STATE(6986), + [sym_if_statement] = STATE(6986), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6986), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6986), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6986), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6986), + [sym_select_type_statement] = STATE(6986), + [sym_select_rank_statement] = STATE(6986), + [sym_block_construct] = STATE(6986), + [sym_associate_statement] = STATE(6986), + [sym_format_statement] = STATE(6986), + [sym_read_statement] = STATE(6986), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6986), + [sym_open_statement] = STATE(6986), + [sym_close_statement] = STATE(6986), + [sym_write_statement] = STATE(6986), + [sym_inquire_statement] = STATE(6986), + [sym_file_position_statement] = STATE(6986), + [sym_allocate_statement] = STATE(6986), + [sym_entry_statement] = STATE(6986), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6986), + [sym_coarray_team_statement] = STATE(6986), + [sym_coarray_critical_statement] = STATE(6986), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(705), + [aux_sym_preproc_include_token1] = ACTIONS(3601), + [aux_sym_preproc_def_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token1] = ACTIONS(3607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), + [sym_preproc_directive] = ACTIONS(3613), [anon_sym_LPAREN2] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2070), [anon_sym_DASH] = ACTIONS(2070), @@ -183133,7 +182119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), [aux_sym_type_qualifier_token1] = ACTIONS(2082), [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3616), [aux_sym_stop_statement_token1] = ACTIONS(2094), [aux_sym_stop_statement_token2] = ACTIONS(2097), [aux_sym_subroutine_call_token1] = ACTIONS(2100), @@ -183192,591 +182178,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(2217), [sym__string_literal_kind] = ACTIONS(2220), }, - [712] = { - [sym_preproc_include] = STATE(734), - [sym_preproc_def] = STATE(734), - [sym_preproc_function_def] = STATE(734), - [sym_preproc_call] = STATE(734), - [sym_preproc_if_in_statements] = STATE(734), - [sym_preproc_ifdef_in_statements] = STATE(734), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(734), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3639), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [713] = { - [sym_preproc_include] = STATE(745), - [sym_preproc_def] = STATE(745), - [sym_preproc_function_def] = STATE(745), - [sym_preproc_call] = STATE(745), - [sym_preproc_if_in_statements] = STATE(745), - [sym_preproc_ifdef_in_statements] = STATE(745), - [sym__statements] = STATE(6627), + [706] = { + [sym_preproc_include] = STATE(706), + [sym_preproc_def] = STATE(706), + [sym_preproc_function_def] = STATE(706), + [sym_preproc_call] = STATE(706), + [sym_preproc_if_in_statements] = STATE(706), + [sym_preproc_ifdef_in_statements] = STATE(706), + [sym__statements] = STATE(6552), [sym_statement_label] = STATE(811), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(745), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(706), + [aux_sym_preproc_include_token1] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3625), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3628), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3641), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3644), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3646), - [aux_sym_elseif_clause_token1] = ACTIONS(3649), - [aux_sym_elseif_clause_token2] = ACTIONS(3646), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3634), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3651), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), }, - [714] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2736), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [707] = { + [sym_preproc_include] = STATE(707), + [sym_preproc_def] = STATE(707), + [sym_preproc_function_def] = STATE(707), + [sym_preproc_call] = STATE(707), + [sym_preproc_if_in_statements] = STATE(707), + [sym_preproc_ifdef_in_statements] = STATE(707), + [sym__statements] = STATE(6605), + [sym_statement_label] = STATE(805), + [sym_stop_statement] = STATE(6605), + [sym_assignment_statement] = STATE(6605), + [sym_pointer_association_statement] = STATE(6605), + [sym_subroutine_call] = STATE(6605), + [sym_keyword_statement] = STATE(6605), + [sym_include_statement] = STATE(6605), + [sym_do_loop_statement] = STATE(6605), + [sym_do_label_statement] = STATE(6605), + [sym_end_do_label_statement] = STATE(6605), + [sym_if_statement] = STATE(6605), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6605), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6605), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6605), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6605), + [sym_select_type_statement] = STATE(6605), + [sym_select_rank_statement] = STATE(6605), + [sym_block_construct] = STATE(6605), + [sym_associate_statement] = STATE(6605), + [sym_format_statement] = STATE(6605), + [sym_read_statement] = STATE(6605), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6605), + [sym_open_statement] = STATE(6605), + [sym_close_statement] = STATE(6605), + [sym_write_statement] = STATE(6605), + [sym_inquire_statement] = STATE(6605), + [sym_file_position_statement] = STATE(6605), + [sym_allocate_statement] = STATE(6605), + [sym_entry_statement] = STATE(6605), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6605), + [sym_coarray_team_statement] = STATE(6605), + [sym_coarray_critical_statement] = STATE(6605), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(707), + [aux_sym_preproc_include_token1] = ACTIONS(3637), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3646), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3652), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), }, - [715] = { - [sym_preproc_include] = STATE(715), - [sym_preproc_def] = STATE(715), - [sym_preproc_function_def] = STATE(715), - [sym_preproc_call] = STATE(715), - [sym_preproc_if_in_statements] = STATE(715), - [sym_preproc_ifdef_in_statements] = STATE(715), - [sym__statements] = STATE(6742), + [708] = { + [sym_preproc_include] = STATE(708), + [sym_preproc_def] = STATE(708), + [sym_preproc_function_def] = STATE(708), + [sym_preproc_call] = STATE(708), + [sym_preproc_if_in_statements] = STATE(708), + [sym_preproc_ifdef_in_statements] = STATE(708), + [sym__statements] = STATE(6676), [sym_statement_label] = STATE(809), - [sym_stop_statement] = STATE(6742), - [sym_assignment_statement] = STATE(6742), - [sym_pointer_association_statement] = STATE(6742), - [sym_subroutine_call] = STATE(6742), - [sym_keyword_statement] = STATE(6742), - [sym_include_statement] = STATE(6742), - [sym_do_loop_statement] = STATE(6742), - [sym_do_label_statement] = STATE(6742), - [sym_end_do_label_statement] = STATE(6742), - [sym_if_statement] = STATE(6742), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6742), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6742), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6742), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6742), - [sym_select_type_statement] = STATE(6742), - [sym_select_rank_statement] = STATE(6742), - [sym_block_construct] = STATE(6742), - [sym_associate_statement] = STATE(6742), - [sym_format_statement] = STATE(6742), - [sym_read_statement] = STATE(6742), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6742), - [sym_open_statement] = STATE(6742), - [sym_close_statement] = STATE(6742), - [sym_write_statement] = STATE(6742), - [sym_inquire_statement] = STATE(6742), - [sym_file_position_statement] = STATE(6742), - [sym_allocate_statement] = STATE(6742), - [sym_entry_statement] = STATE(6742), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6742), - [sym_coarray_team_statement] = STATE(6742), - [sym_coarray_critical_statement] = STATE(6742), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(715), - [aux_sym_preproc_include_token1] = ACTIONS(3654), - [aux_sym_preproc_def_token1] = ACTIONS(3657), - [aux_sym_preproc_if_token1] = ACTIONS(3660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3663), - [sym_preproc_directive] = ACTIONS(3666), + [sym_stop_statement] = STATE(6676), + [sym_assignment_statement] = STATE(6676), + [sym_pointer_association_statement] = STATE(6676), + [sym_subroutine_call] = STATE(6676), + [sym_keyword_statement] = STATE(6676), + [sym_include_statement] = STATE(6676), + [sym_do_loop_statement] = STATE(6676), + [sym_do_label_statement] = STATE(6676), + [sym_end_do_label_statement] = STATE(6676), + [sym_if_statement] = STATE(6676), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6676), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6676), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6676), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6676), + [sym_select_type_statement] = STATE(6676), + [sym_select_rank_statement] = STATE(6676), + [sym_block_construct] = STATE(6676), + [sym_associate_statement] = STATE(6676), + [sym_format_statement] = STATE(6676), + [sym_read_statement] = STATE(6676), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6676), + [sym_open_statement] = STATE(6676), + [sym_close_statement] = STATE(6676), + [sym_write_statement] = STATE(6676), + [sym_inquire_statement] = STATE(6676), + [sym_file_position_statement] = STATE(6676), + [sym_allocate_statement] = STATE(6676), + [sym_entry_statement] = STATE(6676), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6676), + [sym_coarray_team_statement] = STATE(6676), + [sym_coarray_critical_statement] = STATE(6676), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(708), + [aux_sym_preproc_include_token1] = ACTIONS(3655), + [aux_sym_preproc_def_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token1] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3667), [anon_sym_LPAREN2] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2070), [anon_sym_DASH] = ACTIONS(2070), @@ -183809,7 +182626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), [aux_sym_type_qualifier_token1] = ACTIONS(2082), [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3670), [aux_sym_stop_statement_token1] = ACTIONS(2094), [aux_sym_stop_statement_token2] = ACTIONS(2097), [aux_sym_subroutine_call_token1] = ACTIONS(2100), @@ -183868,253 +182685,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(2217), [sym__string_literal_kind] = ACTIONS(2220), }, - [716] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(35), - [aux_sym_defined_io_procedure_token2] = ACTIONS(37), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), - [aux_sym_stop_statement_token1] = ACTIONS(101), - [aux_sym_stop_statement_token2] = ACTIONS(103), - [aux_sym_subroutine_call_token1] = ACTIONS(105), - [aux_sym_keyword_statement_token1] = ACTIONS(107), - [aux_sym_keyword_statement_token2] = ACTIONS(109), - [aux_sym_keyword_statement_token3] = ACTIONS(109), - [aux_sym_keyword_statement_token4] = ACTIONS(111), - [aux_sym_keyword_statement_token6] = ACTIONS(113), - [aux_sym_keyword_statement_token7] = ACTIONS(107), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym__inline_where_statement_token1] = ACTIONS(123), - [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_select_case_statement_token1] = ACTIONS(127), - [aux_sym_select_case_statement_token3] = ACTIONS(129), - [aux_sym_select_type_statement_token1] = ACTIONS(131), - [aux_sym_select_rank_statement_token2] = ACTIONS(133), - [aux_sym_block_construct_token1] = ACTIONS(135), - [aux_sym_associate_statement_token1] = ACTIONS(137), - [aux_sym_format_statement_token1] = ACTIONS(139), - [aux_sym_print_statement_token1] = ACTIONS(141), - [aux_sym_open_statement_token1] = ACTIONS(143), - [aux_sym_close_statement_token1] = ACTIONS(145), - [aux_sym_inquire_statement_token1] = ACTIONS(147), - [aux_sym_file_position_statement_token1] = ACTIONS(151), - [aux_sym_file_position_statement_token2] = ACTIONS(151), - [aux_sym_file_position_statement_token3] = ACTIONS(151), - [aux_sym_file_position_statement_token4] = ACTIONS(153), - [aux_sym_allocate_statement_token1] = ACTIONS(155), - [aux_sym_entry_statement_token1] = ACTIONS(157), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(171), - [aux_sym_coarray_statement_token2] = ACTIONS(171), - [aux_sym_coarray_statement_token6] = ACTIONS(173), - [aux_sym_coarray_statement_token8] = ACTIONS(175), - [aux_sym_coarray_statement_token11] = ACTIONS(177), - [aux_sym_coarray_statement_token12] = ACTIONS(177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(179), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [717] = { - [sym_preproc_include] = STATE(717), - [sym_preproc_def] = STATE(717), - [sym_preproc_function_def] = STATE(717), - [sym_preproc_call] = STATE(717), - [sym_preproc_if_in_statements] = STATE(717), - [sym_preproc_ifdef_in_statements] = STATE(717), - [sym__statements] = STATE(6275), - [sym_statement_label] = STATE(798), - [sym_stop_statement] = STATE(6275), - [sym_assignment_statement] = STATE(6275), - [sym_pointer_association_statement] = STATE(6275), - [sym_subroutine_call] = STATE(6275), - [sym_keyword_statement] = STATE(6275), - [sym_include_statement] = STATE(6275), - [sym_do_loop_statement] = STATE(6275), - [sym_do_label_statement] = STATE(6275), - [sym_end_do_label_statement] = STATE(6275), - [sym_if_statement] = STATE(6275), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6275), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6275), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6275), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6275), - [sym_select_type_statement] = STATE(6275), - [sym_select_rank_statement] = STATE(6275), - [sym_block_construct] = STATE(6275), - [sym_associate_statement] = STATE(6275), - [sym_format_statement] = STATE(6275), - [sym_read_statement] = STATE(6275), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6275), - [sym_open_statement] = STATE(6275), - [sym_close_statement] = STATE(6275), - [sym_write_statement] = STATE(6275), - [sym_inquire_statement] = STATE(6275), - [sym_file_position_statement] = STATE(6275), - [sym_allocate_statement] = STATE(6275), - [sym_entry_statement] = STATE(6275), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6275), - [sym_coarray_team_statement] = STATE(6275), - [sym_coarray_critical_statement] = STATE(6275), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(717), - [aux_sym_preproc_include_token1] = ACTIONS(3672), - [aux_sym_preproc_def_token1] = ACTIONS(3675), - [aux_sym_preproc_if_token1] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3681), - [sym_preproc_directive] = ACTIONS(3684), + [709] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3673), + [aux_sym_preproc_def_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token1] = ACTIONS(3679), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), + [sym_preproc_directive] = ACTIONS(3685), [anon_sym_LPAREN2] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2070), [anon_sym_DASH] = ACTIONS(2070), @@ -184147,7 +182796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), [aux_sym_type_qualifier_token1] = ACTIONS(2082), [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3687), + [anon_sym_SEMI] = ACTIONS(3688), [aux_sym_stop_statement_token1] = ACTIONS(2094), [aux_sym_stop_statement_token2] = ACTIONS(2097), [aux_sym_subroutine_call_token1] = ACTIONS(2100), @@ -184197,7 +182846,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(2202), [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(2059), [aux_sym_identifier_token1] = ACTIONS(2082), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(2211), @@ -184206,85 +182854,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(2217), [sym__string_literal_kind] = ACTIONS(2220), }, - [718] = { - [sym_preproc_include] = STATE(735), - [sym_preproc_def] = STATE(735), - [sym_preproc_function_def] = STATE(735), - [sym_preproc_call] = STATE(735), - [sym_preproc_if_in_statements] = STATE(735), - [sym_preproc_ifdef_in_statements] = STATE(735), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(735), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [710] = { + [sym_preproc_include] = STATE(713), + [sym_preproc_def] = STATE(713), + [sym_preproc_function_def] = STATE(713), + [sym_preproc_call] = STATE(713), + [sym_preproc_if_in_statements] = STATE(713), + [sym_preproc_ifdef_in_statements] = STATE(713), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(713), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -184305,10 +182953,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -184317,7 +182965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3701), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -184369,91 +183017,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [719] = { - [sym_preproc_include] = STATE(740), - [sym_preproc_def] = STATE(740), - [sym_preproc_function_def] = STATE(740), - [sym_preproc_call] = STATE(740), - [sym_preproc_if_in_statements] = STATE(740), - [sym_preproc_ifdef_in_statements] = STATE(740), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(740), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2736), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [711] = { + [sym_preproc_include] = STATE(716), + [sym_preproc_def] = STATE(716), + [sym_preproc_function_def] = STATE(716), + [sym_preproc_call] = STATE(716), + [sym_preproc_if_in_statements] = STATE(716), + [sym_preproc_ifdef_in_statements] = STATE(716), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(716), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -184474,10 +183122,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -184486,7 +183134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3703), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -184538,91 +183186,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [720] = { - [sym_preproc_include] = STATE(754), - [sym_preproc_def] = STATE(754), - [sym_preproc_function_def] = STATE(754), - [sym_preproc_call] = STATE(754), - [sym_preproc_if_in_statements] = STATE(754), - [sym_preproc_ifdef_in_statements] = STATE(754), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(754), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2740), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [712] = { + [sym_preproc_include] = STATE(717), + [sym_preproc_def] = STATE(717), + [sym_preproc_function_def] = STATE(717), + [sym_preproc_call] = STATE(717), + [sym_preproc_if_in_statements] = STATE(717), + [sym_preproc_ifdef_in_statements] = STATE(717), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(717), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -184643,10 +183291,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -184655,7 +183303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3705), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -184707,260 +183355,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [721] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3696), - [aux_sym_preproc_def_token1] = ACTIONS(3699), - [aux_sym_preproc_if_token1] = ACTIONS(3702), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3705), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3705), - [sym_preproc_directive] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3711), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [722] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2744), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [713] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -184981,10 +183460,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -184993,7 +183472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -185045,91 +183524,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [723] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [714] = { + [sym_preproc_include] = STATE(719), + [sym_preproc_def] = STATE(719), + [sym_preproc_function_def] = STATE(719), + [sym_preproc_call] = STATE(719), + [sym_preproc_if_in_statements] = STATE(719), + [sym_preproc_ifdef_in_statements] = STATE(719), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(719), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -185150,10 +183629,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -185162,7 +183641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3709), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -185214,91 +183693,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [724] = { + [715] = { [sym_preproc_include] = STATE(721), [sym_preproc_def] = STATE(721), [sym_preproc_function_def] = STATE(721), [sym_preproc_call] = STATE(721), [sym_preproc_if_in_statements] = STATE(721), [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -185319,10 +183798,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -185331,7 +183810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3711), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -185383,91 +183862,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [725] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2772), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [716] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -185488,10 +183967,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -185500,7 +183979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -185552,91 +184031,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [726] = { - [sym_preproc_include] = STATE(737), - [sym_preproc_def] = STATE(737), - [sym_preproc_function_def] = STATE(737), - [sym_preproc_call] = STATE(737), - [sym_preproc_if_in_statements] = STATE(737), - [sym_preproc_ifdef_in_statements] = STATE(737), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(737), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [717] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -185657,10 +184136,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -185669,7 +184148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -185721,95 +184200,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [727] = { - [sym_preproc_include] = STATE(728), - [sym_preproc_def] = STATE(728), - [sym_preproc_function_def] = STATE(728), - [sym_preproc_call] = STATE(728), - [sym_preproc_if_in_statements] = STATE(728), - [sym_preproc_ifdef_in_statements] = STATE(728), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(811), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(728), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), + [718] = { + [sym_preproc_include] = STATE(725), + [sym_preproc_def] = STATE(725), + [sym_preproc_function_def] = STATE(725), + [sym_preproc_call] = STATE(725), + [sym_preproc_if_in_statements] = STATE(725), + [sym_preproc_ifdef_in_statements] = STATE(725), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(725), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3716), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -185825,10 +184305,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -185837,7 +184317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(3713), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -185851,9 +184331,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3719), - [aux_sym_elseif_clause_token1] = ACTIONS(3722), - [aux_sym_elseif_clause_token2] = ACTIONS(3719), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -185890,260 +184369,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3724), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [728] = { - [sym_preproc_include] = STATE(728), - [sym_preproc_def] = STATE(728), - [sym_preproc_function_def] = STATE(728), - [sym_preproc_call] = STATE(728), - [sym_preproc_if_in_statements] = STATE(728), - [sym_preproc_ifdef_in_statements] = STATE(728), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(811), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(728), - [aux_sym_preproc_include_token1] = ACTIONS(3727), - [aux_sym_preproc_def_token1] = ACTIONS(3730), - [aux_sym_preproc_if_token1] = ACTIONS(3733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3736), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3736), - [sym_preproc_directive] = ACTIONS(3739), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3742), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [729] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [719] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -186164,10 +184474,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -186176,7 +184486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -186228,91 +184538,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [730] = { - [sym_preproc_include] = STATE(710), - [sym_preproc_def] = STATE(710), - [sym_preproc_function_def] = STATE(710), - [sym_preproc_call] = STATE(710), - [sym_preproc_if_in_statements] = STATE(710), - [sym_preproc_ifdef_in_statements] = STATE(710), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(710), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [720] = { + [sym_preproc_include] = STATE(727), + [sym_preproc_def] = STATE(727), + [sym_preproc_function_def] = STATE(727), + [sym_preproc_call] = STATE(727), + [sym_preproc_if_in_statements] = STATE(727), + [sym_preproc_ifdef_in_statements] = STATE(727), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(727), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -186333,10 +184643,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -186345,7 +184655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3745), + [anon_sym_SEMI] = ACTIONS(3715), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -186397,91 +184707,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [731] = { - [sym_preproc_include] = STATE(746), - [sym_preproc_def] = STATE(746), - [sym_preproc_function_def] = STATE(746), - [sym_preproc_call] = STATE(746), - [sym_preproc_if_in_statements] = STATE(746), - [sym_preproc_ifdef_in_statements] = STATE(746), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(746), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [721] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -186502,10 +184812,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -186514,7 +184824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3747), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -186566,91 +184876,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [732] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [722] = { + [sym_preproc_include] = STATE(730), + [sym_preproc_def] = STATE(730), + [sym_preproc_function_def] = STATE(730), + [sym_preproc_call] = STATE(730), + [sym_preproc_if_in_statements] = STATE(730), + [sym_preproc_ifdef_in_statements] = STATE(730), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(730), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -186671,10 +184981,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -186683,7 +184993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3717), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -186735,91 +185045,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [733] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [723] = { + [sym_preproc_include] = STATE(733), + [sym_preproc_def] = STATE(733), + [sym_preproc_function_def] = STATE(733), + [sym_preproc_call] = STATE(733), + [sym_preproc_if_in_statements] = STATE(733), + [sym_preproc_ifdef_in_statements] = STATE(733), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(733), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -186840,10 +185150,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -186852,7 +185162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3719), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -186904,91 +185214,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [734] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [724] = { + [sym_preproc_include] = STATE(735), + [sym_preproc_def] = STATE(735), + [sym_preproc_function_def] = STATE(735), + [sym_preproc_call] = STATE(735), + [sym_preproc_if_in_statements] = STATE(735), + [sym_preproc_ifdef_in_statements] = STATE(735), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(735), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -187009,10 +185319,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -187021,7 +185331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3721), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -187073,91 +185383,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [735] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [725] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -187178,10 +185488,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -187190,7 +185500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -187242,91 +185552,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [736] = { - [sym_preproc_include] = STATE(716), - [sym_preproc_def] = STATE(716), - [sym_preproc_function_def] = STATE(716), - [sym_preproc_call] = STATE(716), - [sym_preproc_if_in_statements] = STATE(716), - [sym_preproc_ifdef_in_statements] = STATE(716), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(716), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [726] = { + [sym_preproc_include] = STATE(736), + [sym_preproc_def] = STATE(736), + [sym_preproc_function_def] = STATE(736), + [sym_preproc_call] = STATE(736), + [sym_preproc_if_in_statements] = STATE(736), + [sym_preproc_ifdef_in_statements] = STATE(736), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(736), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -187347,10 +185657,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -187359,7 +185669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3749), + [anon_sym_SEMI] = ACTIONS(3723), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -187411,91 +185721,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [737] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [727] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -187516,10 +185826,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -187528,7 +185838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -187580,91 +185890,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [738] = { - [sym_preproc_include] = STATE(724), - [sym_preproc_def] = STATE(724), - [sym_preproc_function_def] = STATE(724), - [sym_preproc_call] = STATE(724), - [sym_preproc_if_in_statements] = STATE(724), - [sym_preproc_ifdef_in_statements] = STATE(724), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(724), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [728] = { + [sym_preproc_include] = STATE(741), + [sym_preproc_def] = STATE(741), + [sym_preproc_function_def] = STATE(741), + [sym_preproc_call] = STATE(741), + [sym_preproc_if_in_statements] = STATE(741), + [sym_preproc_ifdef_in_statements] = STATE(741), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(741), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -187685,10 +185995,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -187697,7 +186007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3751), + [anon_sym_SEMI] = ACTIONS(3725), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -187749,95 +186059,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [739] = { - [sym_preproc_include] = STATE(728), - [sym_preproc_def] = STATE(728), - [sym_preproc_function_def] = STATE(728), - [sym_preproc_call] = STATE(728), - [sym_preproc_if_in_statements] = STATE(728), - [sym_preproc_ifdef_in_statements] = STATE(728), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(811), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(728), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), + [729] = { + [sym_preproc_include] = STATE(744), + [sym_preproc_def] = STATE(744), + [sym_preproc_function_def] = STATE(744), + [sym_preproc_call] = STATE(744), + [sym_preproc_if_in_statements] = STATE(744), + [sym_preproc_ifdef_in_statements] = STATE(744), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(744), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3753), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -187853,10 +186164,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -187865,7 +186176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(3727), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -187879,9 +186190,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3756), - [aux_sym_elseif_clause_token1] = ACTIONS(3759), - [aux_sym_elseif_clause_token2] = ACTIONS(3756), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -187918,91 +186228,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3761), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [740] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [730] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -188023,10 +186333,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -188035,7 +186345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -188087,264 +186397,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [741] = { - [sym_preproc_include] = STATE(741), - [sym_preproc_def] = STATE(741), - [sym_preproc_function_def] = STATE(741), - [sym_preproc_call] = STATE(741), - [sym_preproc_if_in_statements] = STATE(741), - [sym_preproc_ifdef_in_statements] = STATE(741), - [sym__statements] = STATE(6402), - [sym_statement_label] = STATE(804), - [sym_stop_statement] = STATE(6402), - [sym_assignment_statement] = STATE(6402), - [sym_pointer_association_statement] = STATE(6402), - [sym_subroutine_call] = STATE(6402), - [sym_keyword_statement] = STATE(6402), - [sym_include_statement] = STATE(6402), - [sym_do_loop_statement] = STATE(6402), - [sym_do_label_statement] = STATE(6402), - [sym_end_do_label_statement] = STATE(6402), - [sym_if_statement] = STATE(6402), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6402), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6402), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6402), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6402), - [sym_select_type_statement] = STATE(6402), - [sym_select_rank_statement] = STATE(6402), - [sym_block_construct] = STATE(6402), - [sym_associate_statement] = STATE(6402), - [sym_format_statement] = STATE(6402), - [sym_read_statement] = STATE(6402), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6402), - [sym_open_statement] = STATE(6402), - [sym_close_statement] = STATE(6402), - [sym_write_statement] = STATE(6402), - [sym_inquire_statement] = STATE(6402), - [sym_file_position_statement] = STATE(6402), - [sym_allocate_statement] = STATE(6402), - [sym_entry_statement] = STATE(6402), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6402), - [sym_coarray_team_statement] = STATE(6402), - [sym_coarray_critical_statement] = STATE(6402), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(741), - [aux_sym_preproc_include_token1] = ACTIONS(3764), - [aux_sym_preproc_def_token1] = ACTIONS(3767), - [aux_sym_preproc_if_token1] = ACTIONS(3770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3773), - [sym_preproc_directive] = ACTIONS(3776), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3779), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [742] = { - [sym_preproc_include] = STATE(739), - [sym_preproc_def] = STATE(739), - [sym_preproc_function_def] = STATE(739), - [sym_preproc_call] = STATE(739), - [sym_preproc_if_in_statements] = STATE(739), - [sym_preproc_ifdef_in_statements] = STATE(739), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(811), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(739), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), + [731] = { + [sym_preproc_include] = STATE(745), + [sym_preproc_def] = STATE(745), + [sym_preproc_function_def] = STATE(745), + [sym_preproc_call] = STATE(745), + [sym_preproc_if_in_statements] = STATE(745), + [sym_preproc_ifdef_in_statements] = STATE(745), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(745), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3782), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -188360,10 +186502,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -188372,7 +186514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3785), + [anon_sym_SEMI] = ACTIONS(3729), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -188386,9 +186528,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3787), - [aux_sym_elseif_clause_token1] = ACTIONS(3790), - [aux_sym_elseif_clause_token2] = ACTIONS(3787), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -188425,95 +186566,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3792), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [743] = { - [sym_preproc_include] = STATE(728), - [sym_preproc_def] = STATE(728), - [sym_preproc_function_def] = STATE(728), - [sym_preproc_call] = STATE(728), - [sym_preproc_if_in_statements] = STATE(728), - [sym_preproc_ifdef_in_statements] = STATE(728), - [sym__statements] = STATE(6627), + [732] = { + [sym_preproc_include] = STATE(740), + [sym_preproc_def] = STATE(740), + [sym_preproc_function_def] = STATE(740), + [sym_preproc_call] = STATE(740), + [sym_preproc_if_in_statements] = STATE(740), + [sym_preproc_ifdef_in_statements] = STATE(740), + [sym__statements] = STATE(6552), [sym_statement_label] = STATE(811), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(728), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(740), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3795), + [aux_sym_end_program_statement_token1] = ACTIONS(3731), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -188529,10 +186670,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -188541,7 +186682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(3734), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -188555,9 +186696,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3798), - [aux_sym_elseif_clause_token1] = ACTIONS(3801), - [aux_sym_elseif_clause_token2] = ACTIONS(3798), + [aux_sym_end_if_statement_token1] = ACTIONS(3736), + [aux_sym_elseif_clause_token1] = ACTIONS(3739), + [aux_sym_elseif_clause_token2] = ACTIONS(3736), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -188594,95 +186735,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3803), + [sym__integer_literal] = ACTIONS(3741), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [744] = { - [sym_preproc_include] = STATE(743), - [sym_preproc_def] = STATE(743), - [sym_preproc_function_def] = STATE(743), - [sym_preproc_call] = STATE(743), - [sym_preproc_if_in_statements] = STATE(743), - [sym_preproc_ifdef_in_statements] = STATE(743), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(811), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(743), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), + [733] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3806), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -188698,10 +186840,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -188710,7 +186852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3809), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -188724,9 +186866,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3811), - [aux_sym_elseif_clause_token1] = ACTIONS(3814), - [aux_sym_elseif_clause_token2] = ACTIONS(3811), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -188763,95 +186904,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3816), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [745] = { - [sym_preproc_include] = STATE(728), - [sym_preproc_def] = STATE(728), - [sym_preproc_function_def] = STATE(728), - [sym_preproc_call] = STATE(728), - [sym_preproc_if_in_statements] = STATE(728), - [sym_preproc_ifdef_in_statements] = STATE(728), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(811), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(728), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), + [734] = { + [sym_preproc_include] = STATE(749), + [sym_preproc_def] = STATE(749), + [sym_preproc_function_def] = STATE(749), + [sym_preproc_call] = STATE(749), + [sym_preproc_if_in_statements] = STATE(749), + [sym_preproc_ifdef_in_statements] = STATE(749), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(749), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3806), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -188867,10 +187009,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -188879,7 +187021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(3744), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -188893,9 +187035,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3811), - [aux_sym_elseif_clause_token1] = ACTIONS(3814), - [aux_sym_elseif_clause_token2] = ACTIONS(3811), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -188932,91 +187073,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3816), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [746] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [735] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -189037,10 +187178,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -189049,7 +187190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -189101,91 +187242,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [747] = { - [sym_preproc_include] = STATE(752), - [sym_preproc_def] = STATE(752), - [sym_preproc_function_def] = STATE(752), - [sym_preproc_call] = STATE(752), - [sym_preproc_if_in_statements] = STATE(752), - [sym_preproc_ifdef_in_statements] = STATE(752), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(752), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [736] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -189206,10 +187347,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -189218,7 +187359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3819), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -189270,91 +187411,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [748] = { - [sym_preproc_include] = STATE(725), - [sym_preproc_def] = STATE(725), - [sym_preproc_function_def] = STATE(725), - [sym_preproc_call] = STATE(725), - [sym_preproc_if_in_statements] = STATE(725), - [sym_preproc_ifdef_in_statements] = STATE(725), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(725), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2756), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [737] = { + [sym_preproc_include] = STATE(750), + [sym_preproc_def] = STATE(750), + [sym_preproc_function_def] = STATE(750), + [sym_preproc_call] = STATE(750), + [sym_preproc_if_in_statements] = STATE(750), + [sym_preproc_ifdef_in_statements] = STATE(750), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(750), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -189375,10 +187516,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -189387,7 +187528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3821), + [anon_sym_SEMI] = ACTIONS(3746), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -189439,265 +187580,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [749] = { - [sym_preproc_include] = STATE(749), - [sym_preproc_def] = STATE(749), - [sym_preproc_function_def] = STATE(749), - [sym_preproc_call] = STATE(749), - [sym_preproc_if_in_statements] = STATE(749), - [sym_preproc_ifdef_in_statements] = STATE(749), - [sym__statements] = STATE(6846), - [sym_statement_label] = STATE(800), - [sym_stop_statement] = STATE(6846), - [sym_assignment_statement] = STATE(6846), - [sym_pointer_association_statement] = STATE(6846), - [sym_subroutine_call] = STATE(6846), - [sym_keyword_statement] = STATE(6846), - [sym_include_statement] = STATE(6846), - [sym_do_loop_statement] = STATE(6846), - [sym_do_label_statement] = STATE(6846), - [sym_end_do_label_statement] = STATE(6846), - [sym_if_statement] = STATE(6846), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6846), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6846), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6846), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6846), - [sym_select_type_statement] = STATE(6846), - [sym_select_rank_statement] = STATE(6846), - [sym_block_construct] = STATE(6846), - [sym_associate_statement] = STATE(6846), - [sym_format_statement] = STATE(6846), - [sym_read_statement] = STATE(6846), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6846), - [sym_open_statement] = STATE(6846), - [sym_close_statement] = STATE(6846), - [sym_write_statement] = STATE(6846), - [sym_inquire_statement] = STATE(6846), - [sym_file_position_statement] = STATE(6846), - [sym_allocate_statement] = STATE(6846), - [sym_entry_statement] = STATE(6846), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6846), - [sym_coarray_team_statement] = STATE(6846), - [sym_coarray_critical_statement] = STATE(6846), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(749), - [aux_sym_preproc_include_token1] = ACTIONS(3823), - [aux_sym_preproc_def_token1] = ACTIONS(3826), - [aux_sym_preproc_if_token1] = ACTIONS(3829), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3832), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3832), - [sym_preproc_directive] = ACTIONS(3835), - [anon_sym_LPAREN2] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), - [aux_sym_procedure_attributes_token3] = ACTIONS(2082), - [aux_sym_use_statement_token2] = ACTIONS(2082), - [aux_sym_implicit_statement_token4] = ACTIONS(2082), - [aux_sym_save_statement_token1] = ACTIONS(2082), - [aux_sym_private_statement_token1] = ACTIONS(2082), - [aux_sym_public_statement_token1] = ACTIONS(2082), - [aux_sym_derived_type_definition_token1] = ACTIONS(2082), - [aux_sym_procedure_attribute_token6] = ACTIONS(2082), - [aux_sym_variable_attributes_token2] = ACTIONS(2082), - [aux_sym_variable_attributes_token3] = ACTIONS(2082), - [aux_sym_variable_attributes_token5] = ACTIONS(2082), - [aux_sym__intrinsic_type_token1] = ACTIONS(2082), - [aux_sym__intrinsic_type_token3] = ACTIONS(2082), - [aux_sym__intrinsic_type_token4] = ACTIONS(2085), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), - [aux_sym_type_qualifier_token1] = ACTIONS(2082), - [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3838), - [aux_sym_stop_statement_token1] = ACTIONS(2094), - [aux_sym_stop_statement_token2] = ACTIONS(2097), - [aux_sym_subroutine_call_token1] = ACTIONS(2100), - [aux_sym_keyword_statement_token1] = ACTIONS(2103), - [aux_sym_keyword_statement_token2] = ACTIONS(2106), - [aux_sym_keyword_statement_token3] = ACTIONS(2106), - [aux_sym_keyword_statement_token4] = ACTIONS(2109), - [aux_sym_keyword_statement_token6] = ACTIONS(2112), - [aux_sym_keyword_statement_token7] = ACTIONS(2103), - [aux_sym_include_statement_token1] = ACTIONS(2115), - [aux_sym_data_statement_token1] = ACTIONS(2082), - [aux_sym_do_loop_statement_token1] = ACTIONS(2118), - [aux_sym__inline_if_statement_token1] = ACTIONS(2121), - [aux_sym_end_if_statement_token1] = ACTIONS(2082), - [aux_sym_elseif_clause_token2] = ACTIONS(2082), - [aux_sym__inline_where_statement_token1] = ACTIONS(2124), - [aux_sym__forall_control_expression_token1] = ACTIONS(2127), - [aux_sym_select_case_statement_token1] = ACTIONS(2130), - [aux_sym_select_case_statement_token3] = ACTIONS(2133), - [aux_sym_select_type_statement_token1] = ACTIONS(2136), - [aux_sym_select_rank_statement_token2] = ACTIONS(2139), - [aux_sym_block_construct_token1] = ACTIONS(2142), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2145), - [aux_sym_format_statement_token1] = ACTIONS(2148), - [aux_sym_print_statement_token1] = ACTIONS(2151), - [aux_sym_open_statement_token1] = ACTIONS(2154), - [aux_sym_close_statement_token1] = ACTIONS(2157), - [aux_sym_inquire_statement_token1] = ACTIONS(2160), - [aux_sym_file_position_statement_token1] = ACTIONS(2163), - [aux_sym_file_position_statement_token2] = ACTIONS(2163), - [aux_sym_file_position_statement_token3] = ACTIONS(2163), - [aux_sym_file_position_statement_token4] = ACTIONS(2166), - [aux_sym_allocate_statement_token1] = ACTIONS(2169), - [aux_sym_entry_statement_token1] = ACTIONS(2172), - [aux_sym_logical_expression_token5] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_LPAREN_SLASH] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2184), - [aux_sym_boolean_literal_token1] = ACTIONS(2187), - [aux_sym_boolean_literal_token2] = ACTIONS(2187), - [aux_sym_null_literal_token1] = ACTIONS(2190), - [aux_sym_coarray_statement_token1] = ACTIONS(2193), - [aux_sym_coarray_statement_token2] = ACTIONS(2193), - [aux_sym_coarray_statement_token6] = ACTIONS(2196), - [aux_sym_coarray_statement_token8] = ACTIONS(2199), - [aux_sym_coarray_statement_token11] = ACTIONS(2202), - [aux_sym_coarray_statement_token12] = ACTIONS(2202), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), - [aux_sym_identifier_token1] = ACTIONS(2082), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(2211), - [sym__float_literal] = ACTIONS(2214), - [sym__boz_literal] = ACTIONS(2214), - [sym__string_literal] = ACTIONS(2217), - [sym__string_literal_kind] = ACTIONS(2220), - }, - [750] = { - [sym_preproc_include] = STATE(723), - [sym_preproc_def] = STATE(723), - [sym_preproc_function_def] = STATE(723), - [sym_preproc_call] = STATE(723), - [sym_preproc_if_in_statements] = STATE(723), - [sym_preproc_ifdef_in_statements] = STATE(723), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(723), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2720), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [738] = { + [sym_preproc_include] = STATE(747), + [sym_preproc_def] = STATE(747), + [sym_preproc_function_def] = STATE(747), + [sym_preproc_call] = STATE(747), + [sym_preproc_if_in_statements] = STATE(747), + [sym_preproc_ifdef_in_statements] = STATE(747), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(811), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(747), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(3748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -189713,10 +187684,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -189725,7 +187696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3841), + [anon_sym_SEMI] = ACTIONS(3751), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -189739,8 +187710,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(3753), + [aux_sym_elseif_clause_token1] = ACTIONS(3756), + [aux_sym_elseif_clause_token2] = ACTIONS(3753), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -189777,96 +187749,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3758), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [751] = { - [sym_preproc_include] = STATE(706), - [sym_preproc_def] = STATE(706), - [sym_preproc_function_def] = STATE(706), - [sym_preproc_call] = STATE(706), - [sym_preproc_if_in_statements] = STATE(706), - [sym_preproc_ifdef_in_statements] = STATE(706), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(706), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [739] = { + [sym_preproc_include] = STATE(748), + [sym_preproc_def] = STATE(748), + [sym_preproc_function_def] = STATE(748), + [sym_preproc_call] = STATE(748), + [sym_preproc_if_in_statements] = STATE(748), + [sym_preproc_ifdef_in_statements] = STATE(748), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(811), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(748), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(3761), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -189882,10 +187853,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -189894,7 +187865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3843), + [anon_sym_SEMI] = ACTIONS(3764), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -189908,8 +187879,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(3766), + [aux_sym_elseif_clause_token1] = ACTIONS(3769), + [aux_sym_elseif_clause_token2] = ACTIONS(3766), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -189946,96 +187918,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3771), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [752] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [740] = { + [sym_preproc_include] = STATE(706), + [sym_preproc_def] = STATE(706), + [sym_preproc_function_def] = STATE(706), + [sym_preproc_call] = STATE(706), + [sym_preproc_if_in_statements] = STATE(706), + [sym_preproc_ifdef_in_statements] = STATE(706), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(811), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(706), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(3761), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -190051,10 +188022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -190063,7 +188034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(2738), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -190077,8 +188048,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(3766), + [aux_sym_elseif_clause_token1] = ACTIONS(3769), + [aux_sym_elseif_clause_token2] = ACTIONS(3766), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -190115,91 +188087,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(3771), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [753] = { - [sym_preproc_include] = STATE(714), - [sym_preproc_def] = STATE(714), - [sym_preproc_function_def] = STATE(714), - [sym_preproc_call] = STATE(714), - [sym_preproc_if_in_statements] = STATE(714), - [sym_preproc_ifdef_in_statements] = STATE(714), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(714), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [741] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -190220,10 +188192,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -190232,7 +188204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3845), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -190284,91 +188256,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [754] = { - [sym_preproc_include] = STATE(721), - [sym_preproc_def] = STATE(721), - [sym_preproc_function_def] = STATE(721), - [sym_preproc_call] = STATE(721), - [sym_preproc_if_in_statements] = STATE(721), - [sym_preproc_ifdef_in_statements] = STATE(721), - [sym__statements] = STATE(6803), - [sym_statement_label] = STATE(796), - [sym_stop_statement] = STATE(6803), - [sym_assignment_statement] = STATE(6803), - [sym_pointer_association_statement] = STATE(6803), - [sym_subroutine_call] = STATE(6803), - [sym_keyword_statement] = STATE(6803), - [sym_include_statement] = STATE(6803), - [sym_do_loop_statement] = STATE(6803), - [sym_do_label_statement] = STATE(6803), - [sym_end_do_label_statement] = STATE(6803), - [sym_if_statement] = STATE(6803), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6803), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6803), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6803), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6803), - [sym_select_type_statement] = STATE(6803), - [sym_select_rank_statement] = STATE(6803), - [sym_block_construct] = STATE(6803), - [sym_associate_statement] = STATE(6803), - [sym_format_statement] = STATE(6803), - [sym_read_statement] = STATE(6803), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6803), - [sym_open_statement] = STATE(6803), - [sym_close_statement] = STATE(6803), - [sym_write_statement] = STATE(6803), - [sym_inquire_statement] = STATE(6803), - [sym_file_position_statement] = STATE(6803), - [sym_allocate_statement] = STATE(6803), - [sym_entry_statement] = STATE(6803), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6803), - [sym_coarray_team_statement] = STATE(6803), - [sym_coarray_critical_statement] = STATE(6803), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(721), - [aux_sym_preproc_include_token1] = ACTIONS(3583), - [aux_sym_preproc_def_token1] = ACTIONS(3585), - [aux_sym_preproc_if_token1] = ACTIONS(3587), - [aux_sym_preproc_if_token2] = ACTIONS(2756), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3589), - [sym_preproc_directive] = ACTIONS(3591), + [742] = { + [sym_preproc_include] = STATE(751), + [sym_preproc_def] = STATE(751), + [sym_preproc_function_def] = STATE(751), + [sym_preproc_call] = STATE(751), + [sym_preproc_if_in_statements] = STATE(751), + [sym_preproc_ifdef_in_statements] = STATE(751), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(751), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -190389,10 +188361,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -190401,7 +188373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3774), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -190453,95 +188425,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(1404), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [755] = { - [sym_preproc_include] = STATE(727), - [sym_preproc_def] = STATE(727), - [sym_preproc_function_def] = STATE(727), - [sym_preproc_call] = STATE(727), - [sym_preproc_if_in_statements] = STATE(727), - [sym_preproc_ifdef_in_statements] = STATE(727), - [sym__statements] = STATE(6627), - [sym_statement_label] = STATE(811), - [sym_stop_statement] = STATE(6627), - [sym_assignment_statement] = STATE(6627), - [sym_pointer_association_statement] = STATE(6627), - [sym_subroutine_call] = STATE(6627), - [sym_keyword_statement] = STATE(6627), - [sym_include_statement] = STATE(6627), - [sym_do_loop_statement] = STATE(6627), - [sym_do_label_statement] = STATE(6627), - [sym_end_do_label_statement] = STATE(6627), - [sym_if_statement] = STATE(6627), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6627), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6627), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6627), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6627), - [sym_select_type_statement] = STATE(6627), - [sym_select_rank_statement] = STATE(6627), - [sym_block_construct] = STATE(6627), - [sym_associate_statement] = STATE(6627), - [sym_format_statement] = STATE(6627), - [sym_read_statement] = STATE(6627), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6627), - [sym_open_statement] = STATE(6627), - [sym_close_statement] = STATE(6627), - [sym_write_statement] = STATE(6627), - [sym_inquire_statement] = STATE(6627), - [sym_file_position_statement] = STATE(6627), - [sym_allocate_statement] = STATE(6627), - [sym_entry_statement] = STATE(6627), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6627), - [sym_coarray_team_statement] = STATE(6627), - [sym_coarray_critical_statement] = STATE(6627), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(727), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2664), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2670), + [743] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3753), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -190557,10 +188530,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -190569,7 +188542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3847), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -190583,9 +188556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3756), - [aux_sym_elseif_clause_token1] = ACTIONS(3759), - [aux_sym_elseif_clause_token2] = ACTIONS(3756), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -190622,95 +188594,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3761), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [756] = { - [sym_preproc_include] = STATE(760), - [sym_preproc_def] = STATE(760), - [sym_preproc_function_def] = STATE(760), - [sym_preproc_call] = STATE(760), - [sym_preproc_if_in_statements] = STATE(760), - [sym_preproc_ifdef_in_statements] = STATE(760), - [sym__statements] = STATE(6759), - [sym_statement_label] = STATE(810), - [sym_stop_statement] = STATE(6759), - [sym_assignment_statement] = STATE(6759), - [sym_pointer_association_statement] = STATE(6759), - [sym_subroutine_call] = STATE(6759), - [sym_keyword_statement] = STATE(6759), - [sym_include_statement] = STATE(6759), - [sym_do_loop_statement] = STATE(6759), - [sym_do_label_statement] = STATE(6759), - [sym_end_do_label_statement] = STATE(6759), - [sym_if_statement] = STATE(6759), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6759), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6759), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6759), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6759), - [sym_select_type_statement] = STATE(6759), - [sym_select_rank_statement] = STATE(6759), - [sym_block_construct] = STATE(6759), - [sym_associate_statement] = STATE(6759), - [sym_format_statement] = STATE(6759), - [sym_read_statement] = STATE(6759), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6759), - [sym_open_statement] = STATE(6759), - [sym_close_statement] = STATE(6759), - [sym_write_statement] = STATE(6759), - [sym_inquire_statement] = STATE(6759), - [sym_file_position_statement] = STATE(6759), - [sym_allocate_statement] = STATE(6759), - [sym_entry_statement] = STATE(6759), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6759), - [sym_coarray_team_statement] = STATE(6759), - [sym_coarray_critical_statement] = STATE(6759), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(760), - [aux_sym_preproc_include_token1] = ACTIONS(3849), - [aux_sym_preproc_def_token1] = ACTIONS(3851), - [aux_sym_preproc_if_token1] = ACTIONS(3853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3855), - [sym_preproc_directive] = ACTIONS(3857), + [744] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3859), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -190726,10 +188699,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -190738,7 +188711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -190752,7 +188725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3864), + [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -190790,95 +188763,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3867), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [757] = { - [sym_preproc_include] = STATE(760), - [sym_preproc_def] = STATE(760), - [sym_preproc_function_def] = STATE(760), - [sym_preproc_call] = STATE(760), - [sym_preproc_if_in_statements] = STATE(760), - [sym_preproc_ifdef_in_statements] = STATE(760), - [sym__statements] = STATE(6759), - [sym_statement_label] = STATE(810), - [sym_stop_statement] = STATE(6759), - [sym_assignment_statement] = STATE(6759), - [sym_pointer_association_statement] = STATE(6759), - [sym_subroutine_call] = STATE(6759), - [sym_keyword_statement] = STATE(6759), - [sym_include_statement] = STATE(6759), - [sym_do_loop_statement] = STATE(6759), - [sym_do_label_statement] = STATE(6759), - [sym_end_do_label_statement] = STATE(6759), - [sym_if_statement] = STATE(6759), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6759), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6759), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6759), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6759), - [sym_select_type_statement] = STATE(6759), - [sym_select_rank_statement] = STATE(6759), - [sym_block_construct] = STATE(6759), - [sym_associate_statement] = STATE(6759), - [sym_format_statement] = STATE(6759), - [sym_read_statement] = STATE(6759), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6759), - [sym_open_statement] = STATE(6759), - [sym_close_statement] = STATE(6759), - [sym_write_statement] = STATE(6759), - [sym_inquire_statement] = STATE(6759), - [sym_file_position_statement] = STATE(6759), - [sym_allocate_statement] = STATE(6759), - [sym_entry_statement] = STATE(6759), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6759), - [sym_coarray_team_statement] = STATE(6759), - [sym_coarray_critical_statement] = STATE(6759), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(760), - [aux_sym_preproc_include_token1] = ACTIONS(3849), - [aux_sym_preproc_def_token1] = ACTIONS(3851), - [aux_sym_preproc_if_token1] = ACTIONS(3853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3855), - [sym_preproc_directive] = ACTIONS(3857), + [745] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3870), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -190894,10 +188868,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -190906,7 +188880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -190920,7 +188894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3873), + [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -190958,95 +188932,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3876), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [758] = { - [sym_preproc_include] = STATE(756), - [sym_preproc_def] = STATE(756), - [sym_preproc_function_def] = STATE(756), - [sym_preproc_call] = STATE(756), - [sym_preproc_if_in_statements] = STATE(756), - [sym_preproc_ifdef_in_statements] = STATE(756), - [sym__statements] = STATE(6759), - [sym_statement_label] = STATE(810), - [sym_stop_statement] = STATE(6759), - [sym_assignment_statement] = STATE(6759), - [sym_pointer_association_statement] = STATE(6759), - [sym_subroutine_call] = STATE(6759), - [sym_keyword_statement] = STATE(6759), - [sym_include_statement] = STATE(6759), - [sym_do_loop_statement] = STATE(6759), - [sym_do_label_statement] = STATE(6759), - [sym_end_do_label_statement] = STATE(6759), - [sym_if_statement] = STATE(6759), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6759), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6759), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6759), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6759), - [sym_select_type_statement] = STATE(6759), - [sym_select_rank_statement] = STATE(6759), - [sym_block_construct] = STATE(6759), - [sym_associate_statement] = STATE(6759), - [sym_format_statement] = STATE(6759), - [sym_read_statement] = STATE(6759), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6759), - [sym_open_statement] = STATE(6759), - [sym_close_statement] = STATE(6759), - [sym_write_statement] = STATE(6759), - [sym_inquire_statement] = STATE(6759), - [sym_file_position_statement] = STATE(6759), - [sym_allocate_statement] = STATE(6759), - [sym_entry_statement] = STATE(6759), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6759), - [sym_coarray_team_statement] = STATE(6759), - [sym_coarray_critical_statement] = STATE(6759), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(756), - [aux_sym_preproc_include_token1] = ACTIONS(3849), - [aux_sym_preproc_def_token1] = ACTIONS(3851), - [aux_sym_preproc_if_token1] = ACTIONS(3853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3855), - [sym_preproc_directive] = ACTIONS(3857), + [746] = { + [sym_preproc_include] = STATE(752), + [sym_preproc_def] = STATE(752), + [sym_preproc_function_def] = STATE(752), + [sym_preproc_call] = STATE(752), + [sym_preproc_if_in_statements] = STATE(752), + [sym_preproc_ifdef_in_statements] = STATE(752), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(811), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(752), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3879), + [aux_sym_end_program_statement_token1] = ACTIONS(3776), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -191062,10 +189036,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -191074,7 +189048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_SEMI] = ACTIONS(3779), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -191088,8 +189062,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3884), - [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(3781), + [aux_sym_elseif_clause_token1] = ACTIONS(3784), + [aux_sym_elseif_clause_token2] = ACTIONS(3781), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), [aux_sym_select_case_statement_token1] = ACTIONS(127), @@ -191126,95 +189101,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3887), + [sym__integer_literal] = ACTIONS(3786), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [759] = { - [sym_preproc_include] = STATE(757), - [sym_preproc_def] = STATE(757), - [sym_preproc_function_def] = STATE(757), - [sym_preproc_call] = STATE(757), - [sym_preproc_if_in_statements] = STATE(757), - [sym_preproc_ifdef_in_statements] = STATE(757), - [sym__statements] = STATE(6759), - [sym_statement_label] = STATE(810), - [sym_stop_statement] = STATE(6759), - [sym_assignment_statement] = STATE(6759), - [sym_pointer_association_statement] = STATE(6759), - [sym_subroutine_call] = STATE(6759), - [sym_keyword_statement] = STATE(6759), - [sym_include_statement] = STATE(6759), - [sym_do_loop_statement] = STATE(6759), - [sym_do_label_statement] = STATE(6759), - [sym_end_do_label_statement] = STATE(6759), - [sym_if_statement] = STATE(6759), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6759), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6759), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6759), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6759), - [sym_select_type_statement] = STATE(6759), - [sym_select_rank_statement] = STATE(6759), - [sym_block_construct] = STATE(6759), - [sym_associate_statement] = STATE(6759), - [sym_format_statement] = STATE(6759), - [sym_read_statement] = STATE(6759), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6759), - [sym_open_statement] = STATE(6759), - [sym_close_statement] = STATE(6759), - [sym_write_statement] = STATE(6759), - [sym_inquire_statement] = STATE(6759), - [sym_file_position_statement] = STATE(6759), - [sym_allocate_statement] = STATE(6759), - [sym_entry_statement] = STATE(6759), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6759), - [sym_coarray_team_statement] = STATE(6759), - [sym_coarray_critical_statement] = STATE(6759), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(757), - [aux_sym_preproc_include_token1] = ACTIONS(3849), - [aux_sym_preproc_def_token1] = ACTIONS(3851), - [aux_sym_preproc_if_token1] = ACTIONS(3853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3855), - [sym_preproc_directive] = ACTIONS(3857), + [747] = { + [sym_preproc_include] = STATE(706), + [sym_preproc_def] = STATE(706), + [sym_preproc_function_def] = STATE(706), + [sym_preproc_call] = STATE(706), + [sym_preproc_if_in_statements] = STATE(706), + [sym_preproc_ifdef_in_statements] = STATE(706), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(811), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(706), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3859), + [aux_sym_end_program_statement_token1] = ACTIONS(3776), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -191230,10 +189205,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -191242,7 +189217,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(2738), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(3781), + [aux_sym_elseif_clause_token1] = ACTIONS(3784), + [aux_sym_elseif_clause_token2] = ACTIONS(3781), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(3786), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [748] = { + [sym_preproc_include] = STATE(706), + [sym_preproc_def] = STATE(706), + [sym_preproc_function_def] = STATE(706), + [sym_preproc_call] = STATE(706), + [sym_preproc_if_in_statements] = STATE(706), + [sym_preproc_ifdef_in_statements] = STATE(706), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(811), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(706), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(3789), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(2738), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(3792), + [aux_sym_elseif_clause_token1] = ACTIONS(3795), + [aux_sym_elseif_clause_token2] = ACTIONS(3792), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(3797), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [749] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3707), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -191256,7 +189570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(3864), + [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -191294,90 +189608,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(3867), + [sym__integer_literal] = ACTIONS(1402), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [760] = { - [sym_preproc_include] = STATE(760), - [sym_preproc_def] = STATE(760), - [sym_preproc_function_def] = STATE(760), - [sym_preproc_call] = STATE(760), - [sym_preproc_if_in_statements] = STATE(760), - [sym_preproc_ifdef_in_statements] = STATE(760), - [sym__statements] = STATE(6759), - [sym_statement_label] = STATE(810), - [sym_stop_statement] = STATE(6759), - [sym_assignment_statement] = STATE(6759), - [sym_pointer_association_statement] = STATE(6759), - [sym_subroutine_call] = STATE(6759), - [sym_keyword_statement] = STATE(6759), - [sym_include_statement] = STATE(6759), - [sym_do_loop_statement] = STATE(6759), - [sym_do_label_statement] = STATE(6759), - [sym_end_do_label_statement] = STATE(6759), - [sym_if_statement] = STATE(6759), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6759), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6759), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6759), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6759), - [sym_select_type_statement] = STATE(6759), - [sym_select_rank_statement] = STATE(6759), - [sym_block_construct] = STATE(6759), - [sym_associate_statement] = STATE(6759), - [sym_format_statement] = STATE(6759), - [sym_read_statement] = STATE(6759), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6759), - [sym_open_statement] = STATE(6759), - [sym_close_statement] = STATE(6759), - [sym_write_statement] = STATE(6759), - [sym_inquire_statement] = STATE(6759), - [sym_file_position_statement] = STATE(6759), - [sym_allocate_statement] = STATE(6759), - [sym_entry_statement] = STATE(6759), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6759), - [sym_coarray_team_statement] = STATE(6759), - [sym_coarray_critical_statement] = STATE(6759), - [sym_identifier] = STATE(4690), - [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(760), - [aux_sym_preproc_include_token1] = ACTIONS(3892), - [aux_sym_preproc_def_token1] = ACTIONS(3895), - [aux_sym_preproc_if_token1] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3901), - [sym_preproc_directive] = ACTIONS(3904), + [750] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3707), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [751] = { + [sym_preproc_include] = STATE(709), + [sym_preproc_def] = STATE(709), + [sym_preproc_function_def] = STATE(709), + [sym_preproc_call] = STATE(709), + [sym_preproc_if_in_statements] = STATE(709), + [sym_preproc_ifdef_in_statements] = STATE(709), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(709), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3707), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [752] = { + [sym_preproc_include] = STATE(706), + [sym_preproc_def] = STATE(706), + [sym_preproc_function_def] = STATE(706), + [sym_preproc_call] = STATE(706), + [sym_preproc_if_in_statements] = STATE(706), + [sym_preproc_ifdef_in_statements] = STATE(706), + [sym__statements] = STATE(6552), + [sym_statement_label] = STATE(811), + [sym_stop_statement] = STATE(6552), + [sym_assignment_statement] = STATE(6552), + [sym_pointer_association_statement] = STATE(6552), + [sym_subroutine_call] = STATE(6552), + [sym_keyword_statement] = STATE(6552), + [sym_include_statement] = STATE(6552), + [sym_do_loop_statement] = STATE(6552), + [sym_do_label_statement] = STATE(6552), + [sym_end_do_label_statement] = STATE(6552), + [sym_if_statement] = STATE(6552), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6552), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6552), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6552), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6552), + [sym_select_type_statement] = STATE(6552), + [sym_select_rank_statement] = STATE(6552), + [sym_block_construct] = STATE(6552), + [sym_associate_statement] = STATE(6552), + [sym_format_statement] = STATE(6552), + [sym_read_statement] = STATE(6552), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6552), + [sym_open_statement] = STATE(6552), + [sym_close_statement] = STATE(6552), + [sym_write_statement] = STATE(6552), + [sym_inquire_statement] = STATE(6552), + [sym_file_position_statement] = STATE(6552), + [sym_allocate_statement] = STATE(6552), + [sym_entry_statement] = STATE(6552), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6552), + [sym_coarray_team_statement] = STATE(6552), + [sym_coarray_critical_statement] = STATE(6552), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(706), + [aux_sym_preproc_include_token1] = ACTIONS(2686), + [aux_sym_preproc_def_token1] = ACTIONS(2688), + [aux_sym_preproc_if_token1] = ACTIONS(2690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2692), + [sym_preproc_directive] = ACTIONS(2694), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(3800), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(2738), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(3803), + [aux_sym_elseif_clause_token1] = ACTIONS(3806), + [aux_sym_elseif_clause_token2] = ACTIONS(3803), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(3808), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [753] = { + [sym_preproc_include] = STATE(753), + [sym_preproc_def] = STATE(753), + [sym_preproc_function_def] = STATE(753), + [sym_preproc_call] = STATE(753), + [sym_preproc_if_in_statements] = STATE(753), + [sym_preproc_ifdef_in_statements] = STATE(753), + [sym__statements] = STATE(6669), + [sym_statement_label] = STATE(801), + [sym_stop_statement] = STATE(6669), + [sym_assignment_statement] = STATE(6669), + [sym_pointer_association_statement] = STATE(6669), + [sym_subroutine_call] = STATE(6669), + [sym_keyword_statement] = STATE(6669), + [sym_include_statement] = STATE(6669), + [sym_do_loop_statement] = STATE(6669), + [sym_do_label_statement] = STATE(6669), + [sym_end_do_label_statement] = STATE(6669), + [sym_if_statement] = STATE(6669), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6669), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6669), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6669), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6669), + [sym_select_type_statement] = STATE(6669), + [sym_select_rank_statement] = STATE(6669), + [sym_block_construct] = STATE(6669), + [sym_associate_statement] = STATE(6669), + [sym_format_statement] = STATE(6669), + [sym_read_statement] = STATE(6669), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6669), + [sym_open_statement] = STATE(6669), + [sym_close_statement] = STATE(6669), + [sym_write_statement] = STATE(6669), + [sym_inquire_statement] = STATE(6669), + [sym_file_position_statement] = STATE(6669), + [sym_allocate_statement] = STATE(6669), + [sym_entry_statement] = STATE(6669), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6669), + [sym_coarray_team_statement] = STATE(6669), + [sym_coarray_critical_statement] = STATE(6669), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(753), + [aux_sym_preproc_include_token1] = ACTIONS(3811), + [aux_sym_preproc_def_token1] = ACTIONS(3814), + [aux_sym_preproc_if_token1] = ACTIONS(3817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3820), + [sym_preproc_directive] = ACTIONS(3823), [anon_sym_LPAREN2] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2070), [anon_sym_DASH] = ACTIONS(2070), @@ -191410,7 +190231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), [aux_sym_type_qualifier_token1] = ACTIONS(2082), [aux_sym_type_qualifier_token2] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3826), [aux_sym_stop_statement_token1] = ACTIONS(2094), [aux_sym_stop_statement_token2] = ACTIONS(2097), [aux_sym_subroutine_call_token1] = ACTIONS(2100), @@ -191433,6 +190254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(2136), [aux_sym_select_rank_statement_token2] = ACTIONS(2139), [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(2059), [aux_sym_associate_statement_token1] = ACTIONS(2145), [aux_sym_format_statement_token1] = ACTIONS(2148), [aux_sym_print_statement_token1] = ACTIONS(2151), @@ -191468,446 +190290,1624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(2217), [sym__string_literal_kind] = ACTIONS(2220), }, - [761] = { - [sym_preproc_include] = STATE(761), - [sym_preproc_def] = STATE(761), - [sym_preproc_function_def] = STATE(761), - [sym_preproc_call] = STATE(761), - [sym_interface] = STATE(761), - [sym_interface_statement] = STATE(3776), - [sym_language_binding] = STATE(3142), - [sym__specification_part] = STATE(761), - [sym_use_statement] = STATE(6522), - [sym_implicit_statement] = STATE(6522), - [sym_save_statement] = STATE(6522), - [sym_private_statement] = STATE(761), - [sym_public_statement] = STATE(761), - [sym_namelist_statement] = STATE(6522), - [sym_common_statement] = STATE(6522), - [sym_import_statement] = STATE(6522), - [sym_derived_type_definition] = STATE(761), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4206), - [sym_variable_declaration] = STATE(6522), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6522), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6522), - [sym_equivalence_statement] = STATE(6522), - [sym_statement_label] = STATE(6946), - [sym_include_statement] = STATE(6522), - [sym_data_statement] = STATE(6522), - [sym_enum] = STATE(761), - [sym_enum_statement] = STATE(5893), - [sym_statement_function] = STATE(6522), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(761), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(3910), - [aux_sym_preproc_def_token1] = ACTIONS(3913), - [aux_sym_preproc_if_token1] = ACTIONS(3916), - [aux_sym_preproc_if_token2] = ACTIONS(3916), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3916), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3916), - [aux_sym_preproc_else_token1] = ACTIONS(3916), - [aux_sym_preproc_elif_token1] = ACTIONS(3916), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3916), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3916), - [sym_preproc_directive] = ACTIONS(3918), - [anon_sym_LPAREN2] = ACTIONS(3916), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), + [754] = { + [sym_preproc_include] = STATE(754), + [sym_preproc_def] = STATE(754), + [sym_preproc_function_def] = STATE(754), + [sym_preproc_call] = STATE(754), + [sym_preproc_if_in_statements] = STATE(754), + [sym_preproc_ifdef_in_statements] = STATE(754), + [sym__statements] = STATE(6821), + [sym_statement_label] = STATE(799), + [sym_stop_statement] = STATE(6821), + [sym_assignment_statement] = STATE(6821), + [sym_pointer_association_statement] = STATE(6821), + [sym_subroutine_call] = STATE(6821), + [sym_keyword_statement] = STATE(6821), + [sym_include_statement] = STATE(6821), + [sym_do_loop_statement] = STATE(6821), + [sym_do_label_statement] = STATE(6821), + [sym_end_do_label_statement] = STATE(6821), + [sym_if_statement] = STATE(6821), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6821), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6821), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6821), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6821), + [sym_select_type_statement] = STATE(6821), + [sym_select_rank_statement] = STATE(6821), + [sym_block_construct] = STATE(6821), + [sym_associate_statement] = STATE(6821), + [sym_format_statement] = STATE(6821), + [sym_read_statement] = STATE(6821), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6821), + [sym_open_statement] = STATE(6821), + [sym_close_statement] = STATE(6821), + [sym_write_statement] = STATE(6821), + [sym_inquire_statement] = STATE(6821), + [sym_file_position_statement] = STATE(6821), + [sym_allocate_statement] = STATE(6821), + [sym_entry_statement] = STATE(6821), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6821), + [sym_coarray_team_statement] = STATE(6821), + [sym_coarray_critical_statement] = STATE(6821), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(754), + [aux_sym_preproc_include_token1] = ACTIONS(3829), + [aux_sym_preproc_def_token1] = ACTIONS(3832), + [aux_sym_preproc_if_token1] = ACTIONS(3835), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3838), + [sym_preproc_directive] = ACTIONS(3841), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3923), - [aux_sym_interface_statement_token1] = ACTIONS(3926), - [aux_sym_defined_io_procedure_token1] = ACTIONS(3929), - [aux_sym_defined_io_procedure_token2] = ACTIONS(3929), - [aux_sym_module_procedure_statement_token1] = ACTIONS(3932), - [aux_sym_language_binding_token1] = ACTIONS(3935), - [aux_sym_procedure_attributes_token1] = ACTIONS(3938), - [aux_sym_procedure_attributes_token3] = ACTIONS(3941), - [aux_sym_contains_statement_token1] = ACTIONS(3916), - [aux_sym_use_statement_token1] = ACTIONS(3944), - [aux_sym_use_statement_token2] = ACTIONS(3941), - [aux_sym_implicit_statement_token1] = ACTIONS(3947), - [aux_sym_implicit_statement_token3] = ACTIONS(3950), - [aux_sym_implicit_statement_token4] = ACTIONS(3941), - [aux_sym_save_statement_token1] = ACTIONS(3953), - [aux_sym_private_statement_token1] = ACTIONS(3956), - [aux_sym_public_statement_token1] = ACTIONS(3959), - [aux_sym_namelist_statement_token1] = ACTIONS(3962), - [aux_sym_common_statement_token1] = ACTIONS(3965), - [aux_sym_import_statement_token1] = ACTIONS(3968), - [aux_sym_derived_type_definition_token1] = ACTIONS(3941), - [aux_sym_abstract_specifier_token1] = ACTIONS(3971), - [aux_sym_procedure_attribute_token6] = ACTIONS(3941), - [aux_sym_variable_attributes_token1] = ACTIONS(3974), - [aux_sym_variable_attributes_token2] = ACTIONS(3941), - [aux_sym_variable_attributes_token3] = ACTIONS(3941), - [aux_sym_variable_attributes_token4] = ACTIONS(3974), - [aux_sym_variable_attributes_token5] = ACTIONS(3941), - [aux_sym__intrinsic_type_token1] = ACTIONS(3977), - [aux_sym__intrinsic_type_token2] = ACTIONS(3980), - [aux_sym__intrinsic_type_token3] = ACTIONS(3977), - [aux_sym__intrinsic_type_token4] = ACTIONS(3983), - [aux_sym__intrinsic_type_token6] = ACTIONS(3980), - [aux_sym__intrinsic_type_token7] = ACTIONS(3980), - [aux_sym__intrinsic_type_token8] = ACTIONS(3986), - [aux_sym__intrinsic_type_token9] = ACTIONS(3980), - [aux_sym__intrinsic_type_token10] = ACTIONS(3980), - [aux_sym_derived_type_token1] = ACTIONS(3989), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(3992), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(3995), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(3998), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4001), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(3974), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(3974), - [aux_sym_type_qualifier_token1] = ACTIONS(3929), - [aux_sym_type_qualifier_token2] = ACTIONS(3929), - [aux_sym_equivalence_statement_token1] = ACTIONS(4004), - [anon_sym_SEMI] = ACTIONS(3921), - [aux_sym_stop_statement_token1] = ACTIONS(3929), - [aux_sym_stop_statement_token2] = ACTIONS(3929), - [aux_sym_subroutine_call_token1] = ACTIONS(3916), - [aux_sym_keyword_statement_token1] = ACTIONS(3916), - [aux_sym_keyword_statement_token2] = ACTIONS(3929), - [aux_sym_keyword_statement_token3] = ACTIONS(3929), - [aux_sym_keyword_statement_token4] = ACTIONS(3916), - [aux_sym_keyword_statement_token6] = ACTIONS(3916), - [aux_sym_keyword_statement_token7] = ACTIONS(3916), - [aux_sym_include_statement_token1] = ACTIONS(4007), - [aux_sym_data_statement_token1] = ACTIONS(4010), - [aux_sym_do_loop_statement_token1] = ACTIONS(3916), - [aux_sym__inline_if_statement_token1] = ACTIONS(3929), - [aux_sym_end_if_statement_token1] = ACTIONS(3929), - [aux_sym_elseif_clause_token2] = ACTIONS(3929), - [aux_sym__inline_where_statement_token1] = ACTIONS(3916), - [aux_sym__forall_control_expression_token1] = ACTIONS(3916), - [aux_sym_select_case_statement_token1] = ACTIONS(4013), - [aux_sym_select_case_statement_token3] = ACTIONS(3916), - [aux_sym_select_type_statement_token1] = ACTIONS(3916), - [aux_sym_select_rank_statement_token2] = ACTIONS(3916), - [aux_sym_block_construct_token1] = ACTIONS(3929), - [aux_sym_associate_statement_token1] = ACTIONS(3916), - [aux_sym_format_statement_token1] = ACTIONS(3929), - [aux_sym_print_statement_token1] = ACTIONS(3916), - [aux_sym_open_statement_token1] = ACTIONS(3916), - [aux_sym_close_statement_token1] = ACTIONS(3916), - [aux_sym_inquire_statement_token1] = ACTIONS(3929), - [aux_sym_enum_statement_token1] = ACTIONS(4016), - [aux_sym_file_position_statement_token1] = ACTIONS(3916), - [aux_sym_file_position_statement_token2] = ACTIONS(3916), - [aux_sym_file_position_statement_token3] = ACTIONS(3916), - [aux_sym_file_position_statement_token4] = ACTIONS(3916), - [aux_sym_allocate_statement_token1] = ACTIONS(3916), - [aux_sym_entry_statement_token1] = ACTIONS(3929), - [aux_sym_logical_expression_token5] = ACTIONS(3921), - [anon_sym_DOT] = ACTIONS(3916), - [anon_sym_LPAREN_SLASH] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [aux_sym_boolean_literal_token1] = ACTIONS(3921), - [aux_sym_boolean_literal_token2] = ACTIONS(3921), - [aux_sym_null_literal_token1] = ACTIONS(3929), - [aux_sym_coarray_statement_token1] = ACTIONS(3929), - [aux_sym_coarray_statement_token2] = ACTIONS(3929), - [aux_sym_coarray_statement_token6] = ACTIONS(3929), - [aux_sym_coarray_statement_token8] = ACTIONS(3929), - [aux_sym_coarray_statement_token11] = ACTIONS(3929), - [aux_sym_coarray_statement_token12] = ACTIONS(3929), - [aux_sym_coarray_team_statement_token1] = ACTIONS(3929), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(3929), - [aux_sym_identifier_token1] = ACTIONS(3929), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3844), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2082), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4019), - [sym__float_literal] = ACTIONS(3921), - [sym__boz_literal] = ACTIONS(3921), - [sym__string_literal] = ACTIONS(3921), - [sym__string_literal_kind] = ACTIONS(3921), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), }, - [762] = { - [sym_preproc_include] = STATE(762), - [sym_preproc_def] = STATE(762), - [sym_preproc_function_def] = STATE(762), - [sym_preproc_call] = STATE(762), - [sym_preproc_if_in_specification_part] = STATE(762), - [sym_preproc_ifdef_in_specification_part] = STATE(762), - [sym_interface] = STATE(762), - [sym_interface_statement] = STATE(3761), - [sym_language_binding] = STATE(3142), - [sym__specification_part] = STATE(762), - [sym_use_statement] = STATE(6883), - [sym_implicit_statement] = STATE(6883), - [sym_save_statement] = STATE(6883), - [sym_private_statement] = STATE(762), - [sym_public_statement] = STATE(762), - [sym_namelist_statement] = STATE(6883), - [sym_common_statement] = STATE(6883), - [sym_import_statement] = STATE(6883), - [sym_derived_type_definition] = STATE(762), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4209), - [sym_variable_declaration] = STATE(6883), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6883), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6883), - [sym_equivalence_statement] = STATE(6883), - [sym_statement_label] = STATE(6917), - [sym_include_statement] = STATE(6883), - [sym_data_statement] = STATE(6883), - [sym_enum] = STATE(762), - [sym_enum_statement] = STATE(5899), - [sym_statement_function] = STATE(6883), - [sym_identifier] = STATE(7086), - [aux_sym_program_repeat1] = STATE(762), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4022), - [aux_sym_preproc_def_token1] = ACTIONS(4025), - [aux_sym_preproc_if_token1] = ACTIONS(4028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4031), - [sym_preproc_directive] = ACTIONS(4034), - [anon_sym_LPAREN2] = ACTIONS(4037), - [anon_sym_PLUS] = ACTIONS(4039), - [anon_sym_DASH] = ACTIONS(4039), + [755] = { + [sym_preproc_include] = STATE(743), + [sym_preproc_def] = STATE(743), + [sym_preproc_function_def] = STATE(743), + [sym_preproc_call] = STATE(743), + [sym_preproc_if_in_statements] = STATE(743), + [sym_preproc_ifdef_in_statements] = STATE(743), + [sym__statements] = STATE(6760), + [sym_statement_label] = STATE(797), + [sym_stop_statement] = STATE(6760), + [sym_assignment_statement] = STATE(6760), + [sym_pointer_association_statement] = STATE(6760), + [sym_subroutine_call] = STATE(6760), + [sym_keyword_statement] = STATE(6760), + [sym_include_statement] = STATE(6760), + [sym_do_loop_statement] = STATE(6760), + [sym_do_label_statement] = STATE(6760), + [sym_end_do_label_statement] = STATE(6760), + [sym_if_statement] = STATE(6760), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6760), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6760), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6760), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6760), + [sym_select_type_statement] = STATE(6760), + [sym_select_rank_statement] = STATE(6760), + [sym_block_construct] = STATE(6760), + [sym_associate_statement] = STATE(6760), + [sym_format_statement] = STATE(6760), + [sym_read_statement] = STATE(6760), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6760), + [sym_open_statement] = STATE(6760), + [sym_close_statement] = STATE(6760), + [sym_write_statement] = STATE(6760), + [sym_inquire_statement] = STATE(6760), + [sym_file_position_statement] = STATE(6760), + [sym_allocate_statement] = STATE(6760), + [sym_entry_statement] = STATE(6760), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6760), + [sym_coarray_team_statement] = STATE(6760), + [sym_coarray_critical_statement] = STATE(6760), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(743), + [aux_sym_preproc_include_token1] = ACTIONS(3691), + [aux_sym_preproc_def_token1] = ACTIONS(3693), + [aux_sym_preproc_if_token1] = ACTIONS(3695), + [aux_sym_preproc_if_token2] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3697), + [sym_preproc_directive] = ACTIONS(3699), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4041), - [aux_sym_end_program_statement_token2] = ACTIONS(4037), - [aux_sym_interface_statement_token1] = ACTIONS(4044), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4047), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4047), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4050), - [aux_sym_language_binding_token1] = ACTIONS(4053), - [aux_sym_procedure_attributes_token1] = ACTIONS(4056), - [aux_sym_procedure_attributes_token3] = ACTIONS(4059), - [aux_sym_contains_statement_token1] = ACTIONS(4037), - [aux_sym_use_statement_token1] = ACTIONS(4062), - [aux_sym_use_statement_token2] = ACTIONS(4059), - [aux_sym_implicit_statement_token1] = ACTIONS(4065), - [aux_sym_implicit_statement_token3] = ACTIONS(4068), - [aux_sym_implicit_statement_token4] = ACTIONS(4059), - [aux_sym_save_statement_token1] = ACTIONS(4071), - [aux_sym_private_statement_token1] = ACTIONS(4074), - [aux_sym_public_statement_token1] = ACTIONS(4077), - [aux_sym_namelist_statement_token1] = ACTIONS(4080), - [aux_sym_common_statement_token1] = ACTIONS(4083), - [aux_sym_import_statement_token1] = ACTIONS(4086), - [aux_sym_derived_type_definition_token1] = ACTIONS(4059), - [aux_sym_abstract_specifier_token1] = ACTIONS(4089), - [aux_sym_procedure_attribute_token6] = ACTIONS(4059), - [aux_sym_variable_attributes_token1] = ACTIONS(4092), - [aux_sym_variable_attributes_token2] = ACTIONS(4059), - [aux_sym_variable_attributes_token3] = ACTIONS(4059), - [aux_sym_variable_attributes_token4] = ACTIONS(4092), - [aux_sym_variable_attributes_token5] = ACTIONS(4059), - [aux_sym__intrinsic_type_token1] = ACTIONS(4095), - [aux_sym__intrinsic_type_token2] = ACTIONS(4098), - [aux_sym__intrinsic_type_token3] = ACTIONS(4095), - [aux_sym__intrinsic_type_token4] = ACTIONS(4101), - [aux_sym__intrinsic_type_token6] = ACTIONS(4098), - [aux_sym__intrinsic_type_token7] = ACTIONS(4098), - [aux_sym__intrinsic_type_token8] = ACTIONS(4104), - [aux_sym__intrinsic_type_token9] = ACTIONS(4098), - [aux_sym__intrinsic_type_token10] = ACTIONS(4098), - [aux_sym_derived_type_token1] = ACTIONS(4107), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4110), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4113), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4116), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4119), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4092), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4092), - [aux_sym_type_qualifier_token1] = ACTIONS(4047), - [aux_sym_type_qualifier_token2] = ACTIONS(4047), - [aux_sym_equivalence_statement_token1] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4039), - [aux_sym_stop_statement_token1] = ACTIONS(4047), - [aux_sym_stop_statement_token2] = ACTIONS(4047), - [aux_sym_subroutine_call_token1] = ACTIONS(4037), - [aux_sym_keyword_statement_token1] = ACTIONS(4037), - [aux_sym_keyword_statement_token2] = ACTIONS(4047), - [aux_sym_keyword_statement_token3] = ACTIONS(4047), - [aux_sym_keyword_statement_token4] = ACTIONS(4037), - [aux_sym_keyword_statement_token6] = ACTIONS(4037), - [aux_sym_keyword_statement_token7] = ACTIONS(4037), - [aux_sym_include_statement_token1] = ACTIONS(4125), - [aux_sym_data_statement_token1] = ACTIONS(4128), - [aux_sym_do_loop_statement_token1] = ACTIONS(4037), - [aux_sym__inline_if_statement_token1] = ACTIONS(4047), - [aux_sym_end_if_statement_token1] = ACTIONS(4047), - [aux_sym_elseif_clause_token2] = ACTIONS(4047), - [aux_sym__inline_where_statement_token1] = ACTIONS(4037), - [aux_sym__forall_control_expression_token1] = ACTIONS(4037), - [aux_sym_select_case_statement_token1] = ACTIONS(4131), - [aux_sym_select_case_statement_token3] = ACTIONS(4037), - [aux_sym_select_type_statement_token1] = ACTIONS(4037), - [aux_sym_select_rank_statement_token2] = ACTIONS(4037), - [aux_sym_block_construct_token1] = ACTIONS(4047), - [aux_sym_associate_statement_token1] = ACTIONS(4037), - [aux_sym_format_statement_token1] = ACTIONS(4047), - [aux_sym_print_statement_token1] = ACTIONS(4037), - [aux_sym_open_statement_token1] = ACTIONS(4037), - [aux_sym_close_statement_token1] = ACTIONS(4037), - [aux_sym_inquire_statement_token1] = ACTIONS(4047), - [aux_sym_enum_statement_token1] = ACTIONS(4134), - [aux_sym_file_position_statement_token1] = ACTIONS(4037), - [aux_sym_file_position_statement_token2] = ACTIONS(4037), - [aux_sym_file_position_statement_token3] = ACTIONS(4037), - [aux_sym_file_position_statement_token4] = ACTIONS(4037), - [aux_sym_allocate_statement_token1] = ACTIONS(4037), - [aux_sym_entry_statement_token1] = ACTIONS(4047), - [aux_sym_logical_expression_token5] = ACTIONS(4039), - [anon_sym_DOT] = ACTIONS(4037), - [anon_sym_LPAREN_SLASH] = ACTIONS(4039), - [anon_sym_LBRACK] = ACTIONS(4039), - [aux_sym_boolean_literal_token1] = ACTIONS(4039), - [aux_sym_boolean_literal_token2] = ACTIONS(4039), - [aux_sym_null_literal_token1] = ACTIONS(4047), - [aux_sym_coarray_statement_token1] = ACTIONS(4047), - [aux_sym_coarray_statement_token2] = ACTIONS(4047), - [aux_sym_coarray_statement_token6] = ACTIONS(4047), - [aux_sym_coarray_statement_token8] = ACTIONS(4047), - [aux_sym_coarray_statement_token11] = ACTIONS(4047), - [aux_sym_coarray_statement_token12] = ACTIONS(4047), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4047), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4047), - [aux_sym_identifier_token1] = ACTIONS(4047), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3847), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4137), - [sym__float_literal] = ACTIONS(4039), - [sym__boz_literal] = ACTIONS(4039), - [sym__string_literal] = ACTIONS(4039), - [sym__string_literal_kind] = ACTIONS(4039), + [sym__integer_literal] = ACTIONS(1402), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [763] = { - [sym_preproc_include] = STATE(763), - [sym_preproc_def] = STATE(763), - [sym_preproc_function_def] = STATE(763), - [sym_preproc_call] = STATE(763), - [sym_preproc_if_in_specification_part] = STATE(763), - [sym_preproc_ifdef_in_specification_part] = STATE(763), - [sym_interface] = STATE(763), - [sym_interface_statement] = STATE(3764), - [sym_language_binding] = STATE(3142), - [sym__specification_part] = STATE(763), - [sym_use_statement] = STATE(6711), - [sym_implicit_statement] = STATE(6711), - [sym_save_statement] = STATE(6711), - [sym_private_statement] = STATE(763), - [sym_public_statement] = STATE(763), - [sym_namelist_statement] = STATE(6711), - [sym_common_statement] = STATE(6711), - [sym_import_statement] = STATE(6711), - [sym_derived_type_definition] = STATE(763), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4220), - [sym_variable_declaration] = STATE(6711), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6711), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6711), - [sym_equivalence_statement] = STATE(6711), - [sym_statement_label] = STATE(7007), - [sym_include_statement] = STATE(6711), - [sym_data_statement] = STATE(6711), - [sym_enum] = STATE(763), - [sym_enum_statement] = STATE(5876), - [sym_statement_function] = STATE(6711), - [sym_identifier] = STATE(7086), - [aux_sym_program_repeat1] = STATE(763), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4140), - [aux_sym_preproc_def_token1] = ACTIONS(4143), - [aux_sym_preproc_if_token1] = ACTIONS(4146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4149), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4037), - [anon_sym_PLUS] = ACTIONS(4039), - [anon_sym_DASH] = ACTIONS(4039), + [756] = { + [sym_preproc_include] = STATE(756), + [sym_preproc_def] = STATE(756), + [sym_preproc_function_def] = STATE(756), + [sym_preproc_call] = STATE(756), + [sym_preproc_if_in_statements] = STATE(756), + [sym_preproc_ifdef_in_statements] = STATE(756), + [sym__statements] = STATE(6701), + [sym_statement_label] = STATE(810), + [sym_stop_statement] = STATE(6701), + [sym_assignment_statement] = STATE(6701), + [sym_pointer_association_statement] = STATE(6701), + [sym_subroutine_call] = STATE(6701), + [sym_keyword_statement] = STATE(6701), + [sym_include_statement] = STATE(6701), + [sym_do_loop_statement] = STATE(6701), + [sym_do_label_statement] = STATE(6701), + [sym_end_do_label_statement] = STATE(6701), + [sym_if_statement] = STATE(6701), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6701), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6701), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6701), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6701), + [sym_select_type_statement] = STATE(6701), + [sym_select_rank_statement] = STATE(6701), + [sym_block_construct] = STATE(6701), + [sym_associate_statement] = STATE(6701), + [sym_format_statement] = STATE(6701), + [sym_read_statement] = STATE(6701), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6701), + [sym_open_statement] = STATE(6701), + [sym_close_statement] = STATE(6701), + [sym_write_statement] = STATE(6701), + [sym_inquire_statement] = STATE(6701), + [sym_file_position_statement] = STATE(6701), + [sym_allocate_statement] = STATE(6701), + [sym_entry_statement] = STATE(6701), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6701), + [sym_coarray_team_statement] = STATE(6701), + [sym_coarray_critical_statement] = STATE(6701), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(756), + [aux_sym_preproc_include_token1] = ACTIONS(3849), + [aux_sym_preproc_def_token1] = ACTIONS(3852), + [aux_sym_preproc_if_token1] = ACTIONS(3855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3858), + [sym_preproc_directive] = ACTIONS(3861), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4041), - [aux_sym_interface_statement_token1] = ACTIONS(4044), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4047), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4047), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4050), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4037), - [aux_sym_language_binding_token1] = ACTIONS(4053), - [aux_sym_procedure_attributes_token1] = ACTIONS(4056), - [aux_sym_procedure_attributes_token3] = ACTIONS(4059), - [aux_sym_contains_statement_token1] = ACTIONS(4037), - [aux_sym_use_statement_token1] = ACTIONS(4062), - [aux_sym_use_statement_token2] = ACTIONS(4059), - [aux_sym_implicit_statement_token1] = ACTIONS(4065), - [aux_sym_implicit_statement_token3] = ACTIONS(4068), - [aux_sym_implicit_statement_token4] = ACTIONS(4059), - [aux_sym_save_statement_token1] = ACTIONS(4071), - [aux_sym_private_statement_token1] = ACTIONS(4155), - [aux_sym_public_statement_token1] = ACTIONS(4158), - [aux_sym_namelist_statement_token1] = ACTIONS(4080), - [aux_sym_common_statement_token1] = ACTIONS(4083), - [aux_sym_import_statement_token1] = ACTIONS(4086), - [aux_sym_derived_type_definition_token1] = ACTIONS(4059), - [aux_sym_abstract_specifier_token1] = ACTIONS(4089), - [aux_sym_procedure_attribute_token6] = ACTIONS(4059), - [aux_sym_variable_attributes_token1] = ACTIONS(4092), - [aux_sym_variable_attributes_token2] = ACTIONS(4059), - [aux_sym_variable_attributes_token3] = ACTIONS(4059), - [aux_sym_variable_attributes_token4] = ACTIONS(4092), - [aux_sym_variable_attributes_token5] = ACTIONS(4059), - [aux_sym__intrinsic_type_token1] = ACTIONS(4095), - [aux_sym__intrinsic_type_token2] = ACTIONS(4098), - [aux_sym__intrinsic_type_token3] = ACTIONS(4095), - [aux_sym__intrinsic_type_token4] = ACTIONS(4101), - [aux_sym__intrinsic_type_token6] = ACTIONS(4098), - [aux_sym__intrinsic_type_token7] = ACTIONS(4098), - [aux_sym__intrinsic_type_token8] = ACTIONS(4104), - [aux_sym__intrinsic_type_token9] = ACTIONS(4098), - [aux_sym__intrinsic_type_token10] = ACTIONS(4098), - [aux_sym_derived_type_token1] = ACTIONS(4107), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4110), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4113), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4116), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4119), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4092), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4059), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4092), - [aux_sym_type_qualifier_token1] = ACTIONS(4047), - [aux_sym_type_qualifier_token2] = ACTIONS(4047), - [aux_sym_equivalence_statement_token1] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4039), - [aux_sym_stop_statement_token1] = ACTIONS(4047), + [aux_sym_end_program_statement_token1] = ACTIONS(2073), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2076), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2079), + [aux_sym_procedure_attributes_token3] = ACTIONS(2082), + [aux_sym_use_statement_token2] = ACTIONS(2082), + [aux_sym_implicit_statement_token4] = ACTIONS(2082), + [aux_sym_save_statement_token1] = ACTIONS(2082), + [aux_sym_private_statement_token1] = ACTIONS(2082), + [aux_sym_public_statement_token1] = ACTIONS(2082), + [aux_sym_derived_type_definition_token1] = ACTIONS(2082), + [aux_sym_procedure_attribute_token6] = ACTIONS(2082), + [aux_sym_variable_attributes_token2] = ACTIONS(2082), + [aux_sym_variable_attributes_token3] = ACTIONS(2082), + [aux_sym_variable_attributes_token5] = ACTIONS(2082), + [aux_sym__intrinsic_type_token1] = ACTIONS(2082), + [aux_sym__intrinsic_type_token3] = ACTIONS(2082), + [aux_sym__intrinsic_type_token4] = ACTIONS(2085), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2088), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2082), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2082), + [aux_sym_type_qualifier_token1] = ACTIONS(2082), + [aux_sym_type_qualifier_token2] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3864), + [aux_sym_stop_statement_token1] = ACTIONS(2094), + [aux_sym_stop_statement_token2] = ACTIONS(2097), + [aux_sym_subroutine_call_token1] = ACTIONS(2100), + [aux_sym_keyword_statement_token1] = ACTIONS(2103), + [aux_sym_keyword_statement_token2] = ACTIONS(2106), + [aux_sym_keyword_statement_token3] = ACTIONS(2106), + [aux_sym_keyword_statement_token4] = ACTIONS(2109), + [aux_sym_keyword_statement_token6] = ACTIONS(2112), + [aux_sym_keyword_statement_token7] = ACTIONS(2103), + [aux_sym_include_statement_token1] = ACTIONS(2115), + [aux_sym_data_statement_token1] = ACTIONS(2082), + [aux_sym_do_loop_statement_token1] = ACTIONS(2118), + [aux_sym__inline_if_statement_token1] = ACTIONS(2121), + [aux_sym_end_if_statement_token1] = ACTIONS(2082), + [aux_sym_elseif_clause_token2] = ACTIONS(2082), + [aux_sym__inline_where_statement_token1] = ACTIONS(2124), + [aux_sym__forall_control_expression_token1] = ACTIONS(2127), + [aux_sym_select_case_statement_token1] = ACTIONS(2130), + [aux_sym_select_case_statement_token3] = ACTIONS(2133), + [aux_sym_select_type_statement_token1] = ACTIONS(2136), + [aux_sym_select_rank_statement_token2] = ACTIONS(2139), + [aux_sym_block_construct_token1] = ACTIONS(2142), + [aux_sym_associate_statement_token1] = ACTIONS(2145), + [aux_sym_format_statement_token1] = ACTIONS(2148), + [aux_sym_print_statement_token1] = ACTIONS(2151), + [aux_sym_open_statement_token1] = ACTIONS(2154), + [aux_sym_close_statement_token1] = ACTIONS(2157), + [aux_sym_inquire_statement_token1] = ACTIONS(2160), + [aux_sym_file_position_statement_token1] = ACTIONS(2163), + [aux_sym_file_position_statement_token2] = ACTIONS(2163), + [aux_sym_file_position_statement_token3] = ACTIONS(2163), + [aux_sym_file_position_statement_token4] = ACTIONS(2166), + [aux_sym_allocate_statement_token1] = ACTIONS(2169), + [aux_sym_entry_statement_token1] = ACTIONS(2172), + [aux_sym_logical_expression_token5] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_LPAREN_SLASH] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2184), + [aux_sym_boolean_literal_token1] = ACTIONS(2187), + [aux_sym_boolean_literal_token2] = ACTIONS(2187), + [aux_sym_null_literal_token1] = ACTIONS(2190), + [aux_sym_coarray_statement_token1] = ACTIONS(2193), + [aux_sym_coarray_statement_token2] = ACTIONS(2193), + [aux_sym_coarray_statement_token6] = ACTIONS(2196), + [aux_sym_coarray_statement_token8] = ACTIONS(2199), + [aux_sym_coarray_statement_token11] = ACTIONS(2202), + [aux_sym_coarray_statement_token12] = ACTIONS(2202), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2205), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2208), + [aux_sym_identifier_token1] = ACTIONS(2082), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(2211), + [sym__float_literal] = ACTIONS(2214), + [sym__boz_literal] = ACTIONS(2214), + [sym__string_literal] = ACTIONS(2217), + [sym__string_literal_kind] = ACTIONS(2220), + }, + [757] = { + [sym_preproc_include] = STATE(756), + [sym_preproc_def] = STATE(756), + [sym_preproc_function_def] = STATE(756), + [sym_preproc_call] = STATE(756), + [sym_preproc_if_in_statements] = STATE(756), + [sym_preproc_ifdef_in_statements] = STATE(756), + [sym__statements] = STATE(6701), + [sym_statement_label] = STATE(810), + [sym_stop_statement] = STATE(6701), + [sym_assignment_statement] = STATE(6701), + [sym_pointer_association_statement] = STATE(6701), + [sym_subroutine_call] = STATE(6701), + [sym_keyword_statement] = STATE(6701), + [sym_include_statement] = STATE(6701), + [sym_do_loop_statement] = STATE(6701), + [sym_do_label_statement] = STATE(6701), + [sym_end_do_label_statement] = STATE(6701), + [sym_if_statement] = STATE(6701), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6701), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6701), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6701), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6701), + [sym_select_type_statement] = STATE(6701), + [sym_select_rank_statement] = STATE(6701), + [sym_block_construct] = STATE(6701), + [sym_associate_statement] = STATE(6701), + [sym_format_statement] = STATE(6701), + [sym_read_statement] = STATE(6701), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6701), + [sym_open_statement] = STATE(6701), + [sym_close_statement] = STATE(6701), + [sym_write_statement] = STATE(6701), + [sym_inquire_statement] = STATE(6701), + [sym_file_position_statement] = STATE(6701), + [sym_allocate_statement] = STATE(6701), + [sym_entry_statement] = STATE(6701), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6701), + [sym_coarray_team_statement] = STATE(6701), + [sym_coarray_critical_statement] = STATE(6701), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(756), + [aux_sym_preproc_include_token1] = ACTIONS(3867), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(3877), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3880), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(3882), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(3885), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [758] = { + [sym_preproc_include] = STATE(757), + [sym_preproc_def] = STATE(757), + [sym_preproc_function_def] = STATE(757), + [sym_preproc_call] = STATE(757), + [sym_preproc_if_in_statements] = STATE(757), + [sym_preproc_ifdef_in_statements] = STATE(757), + [sym__statements] = STATE(6701), + [sym_statement_label] = STATE(810), + [sym_stop_statement] = STATE(6701), + [sym_assignment_statement] = STATE(6701), + [sym_pointer_association_statement] = STATE(6701), + [sym_subroutine_call] = STATE(6701), + [sym_keyword_statement] = STATE(6701), + [sym_include_statement] = STATE(6701), + [sym_do_loop_statement] = STATE(6701), + [sym_do_label_statement] = STATE(6701), + [sym_end_do_label_statement] = STATE(6701), + [sym_if_statement] = STATE(6701), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6701), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6701), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6701), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6701), + [sym_select_type_statement] = STATE(6701), + [sym_select_rank_statement] = STATE(6701), + [sym_block_construct] = STATE(6701), + [sym_associate_statement] = STATE(6701), + [sym_format_statement] = STATE(6701), + [sym_read_statement] = STATE(6701), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6701), + [sym_open_statement] = STATE(6701), + [sym_close_statement] = STATE(6701), + [sym_write_statement] = STATE(6701), + [sym_inquire_statement] = STATE(6701), + [sym_file_position_statement] = STATE(6701), + [sym_allocate_statement] = STATE(6701), + [sym_entry_statement] = STATE(6701), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6701), + [sym_coarray_team_statement] = STATE(6701), + [sym_coarray_critical_statement] = STATE(6701), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(757), + [aux_sym_preproc_include_token1] = ACTIONS(3867), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(3888), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3891), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(3893), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(3896), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [759] = { + [sym_preproc_include] = STATE(756), + [sym_preproc_def] = STATE(756), + [sym_preproc_function_def] = STATE(756), + [sym_preproc_call] = STATE(756), + [sym_preproc_if_in_statements] = STATE(756), + [sym_preproc_ifdef_in_statements] = STATE(756), + [sym__statements] = STATE(6701), + [sym_statement_label] = STATE(810), + [sym_stop_statement] = STATE(6701), + [sym_assignment_statement] = STATE(6701), + [sym_pointer_association_statement] = STATE(6701), + [sym_subroutine_call] = STATE(6701), + [sym_keyword_statement] = STATE(6701), + [sym_include_statement] = STATE(6701), + [sym_do_loop_statement] = STATE(6701), + [sym_do_label_statement] = STATE(6701), + [sym_end_do_label_statement] = STATE(6701), + [sym_if_statement] = STATE(6701), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6701), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6701), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6701), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6701), + [sym_select_type_statement] = STATE(6701), + [sym_select_rank_statement] = STATE(6701), + [sym_block_construct] = STATE(6701), + [sym_associate_statement] = STATE(6701), + [sym_format_statement] = STATE(6701), + [sym_read_statement] = STATE(6701), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6701), + [sym_open_statement] = STATE(6701), + [sym_close_statement] = STATE(6701), + [sym_write_statement] = STATE(6701), + [sym_inquire_statement] = STATE(6701), + [sym_file_position_statement] = STATE(6701), + [sym_allocate_statement] = STATE(6701), + [sym_entry_statement] = STATE(6701), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6701), + [sym_coarray_team_statement] = STATE(6701), + [sym_coarray_critical_statement] = STATE(6701), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(756), + [aux_sym_preproc_include_token1] = ACTIONS(3867), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(3888), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3880), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(3893), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(3896), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [760] = { + [sym_preproc_include] = STATE(759), + [sym_preproc_def] = STATE(759), + [sym_preproc_function_def] = STATE(759), + [sym_preproc_call] = STATE(759), + [sym_preproc_if_in_statements] = STATE(759), + [sym_preproc_ifdef_in_statements] = STATE(759), + [sym__statements] = STATE(6701), + [sym_statement_label] = STATE(810), + [sym_stop_statement] = STATE(6701), + [sym_assignment_statement] = STATE(6701), + [sym_pointer_association_statement] = STATE(6701), + [sym_subroutine_call] = STATE(6701), + [sym_keyword_statement] = STATE(6701), + [sym_include_statement] = STATE(6701), + [sym_do_loop_statement] = STATE(6701), + [sym_do_label_statement] = STATE(6701), + [sym_end_do_label_statement] = STATE(6701), + [sym_if_statement] = STATE(6701), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6701), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6701), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6701), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6701), + [sym_select_type_statement] = STATE(6701), + [sym_select_rank_statement] = STATE(6701), + [sym_block_construct] = STATE(6701), + [sym_associate_statement] = STATE(6701), + [sym_format_statement] = STATE(6701), + [sym_read_statement] = STATE(6701), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6701), + [sym_open_statement] = STATE(6701), + [sym_close_statement] = STATE(6701), + [sym_write_statement] = STATE(6701), + [sym_inquire_statement] = STATE(6701), + [sym_file_position_statement] = STATE(6701), + [sym_allocate_statement] = STATE(6701), + [sym_entry_statement] = STATE(6701), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6701), + [sym_coarray_team_statement] = STATE(6701), + [sym_coarray_critical_statement] = STATE(6701), + [sym_identifier] = STATE(4694), + [aux_sym_preproc_if_in_specification_part_repeat1] = STATE(759), + [aux_sym_preproc_include_token1] = ACTIONS(3867), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3875), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(3899), + [aux_sym_defined_io_procedure_token1] = ACTIONS(35), + [aux_sym_defined_io_procedure_token2] = ACTIONS(37), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(3902), + [aux_sym_stop_statement_token1] = ACTIONS(101), + [aux_sym_stop_statement_token2] = ACTIONS(103), + [aux_sym_subroutine_call_token1] = ACTIONS(105), + [aux_sym_keyword_statement_token1] = ACTIONS(107), + [aux_sym_keyword_statement_token2] = ACTIONS(109), + [aux_sym_keyword_statement_token3] = ACTIONS(109), + [aux_sym_keyword_statement_token4] = ACTIONS(111), + [aux_sym_keyword_statement_token6] = ACTIONS(113), + [aux_sym_keyword_statement_token7] = ACTIONS(107), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym__inline_if_statement_token1] = ACTIONS(121), + [aux_sym_end_if_statement_token1] = ACTIONS(3904), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym__inline_where_statement_token1] = ACTIONS(123), + [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_select_case_statement_token1] = ACTIONS(127), + [aux_sym_select_case_statement_token3] = ACTIONS(129), + [aux_sym_select_type_statement_token1] = ACTIONS(131), + [aux_sym_select_rank_statement_token2] = ACTIONS(133), + [aux_sym_block_construct_token1] = ACTIONS(135), + [aux_sym_associate_statement_token1] = ACTIONS(137), + [aux_sym_format_statement_token1] = ACTIONS(139), + [aux_sym_print_statement_token1] = ACTIONS(141), + [aux_sym_open_statement_token1] = ACTIONS(143), + [aux_sym_close_statement_token1] = ACTIONS(145), + [aux_sym_inquire_statement_token1] = ACTIONS(147), + [aux_sym_file_position_statement_token1] = ACTIONS(151), + [aux_sym_file_position_statement_token2] = ACTIONS(151), + [aux_sym_file_position_statement_token3] = ACTIONS(151), + [aux_sym_file_position_statement_token4] = ACTIONS(153), + [aux_sym_allocate_statement_token1] = ACTIONS(155), + [aux_sym_entry_statement_token1] = ACTIONS(157), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(171), + [aux_sym_coarray_statement_token2] = ACTIONS(171), + [aux_sym_coarray_statement_token6] = ACTIONS(173), + [aux_sym_coarray_statement_token8] = ACTIONS(175), + [aux_sym_coarray_statement_token11] = ACTIONS(177), + [aux_sym_coarray_statement_token12] = ACTIONS(177), + [aux_sym_coarray_team_statement_token1] = ACTIONS(179), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(3907), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [761] = { + [sym_preproc_include] = STATE(761), + [sym_preproc_def] = STATE(761), + [sym_preproc_function_def] = STATE(761), + [sym_preproc_call] = STATE(761), + [sym_interface] = STATE(761), + [sym_interface_statement] = STATE(3797), + [sym_language_binding] = STATE(3156), + [sym__specification_part] = STATE(761), + [sym_use_statement] = STATE(6436), + [sym_implicit_statement] = STATE(6436), + [sym_save_statement] = STATE(6436), + [sym_private_statement] = STATE(761), + [sym_public_statement] = STATE(761), + [sym_namelist_statement] = STATE(6436), + [sym_common_statement] = STATE(6436), + [sym_import_statement] = STATE(6436), + [sym_derived_type_definition] = STATE(761), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4223), + [sym_variable_declaration] = STATE(6436), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6436), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6436), + [sym_equivalence_statement] = STATE(6436), + [sym_statement_label] = STATE(6899), + [sym_include_statement] = STATE(6436), + [sym_data_statement] = STATE(6436), + [sym_enum] = STATE(761), + [sym_enum_statement] = STATE(5895), + [sym_statement_function] = STATE(6436), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(761), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(3910), + [aux_sym_preproc_def_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token1] = ACTIONS(3916), + [aux_sym_preproc_if_token2] = ACTIONS(3916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3916), + [aux_sym_preproc_else_token1] = ACTIONS(3916), + [aux_sym_preproc_elif_token1] = ACTIONS(3916), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3916), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3916), + [sym_preproc_directive] = ACTIONS(3918), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(3923), + [aux_sym_interface_statement_token1] = ACTIONS(3926), + [aux_sym_defined_io_procedure_token1] = ACTIONS(3929), + [aux_sym_defined_io_procedure_token2] = ACTIONS(3929), + [aux_sym_module_procedure_statement_token1] = ACTIONS(3932), + [aux_sym_language_binding_token1] = ACTIONS(3935), + [aux_sym_procedure_attributes_token1] = ACTIONS(3938), + [aux_sym_procedure_attributes_token3] = ACTIONS(3941), + [aux_sym_contains_statement_token1] = ACTIONS(3916), + [aux_sym_use_statement_token1] = ACTIONS(3944), + [aux_sym_use_statement_token2] = ACTIONS(3941), + [aux_sym_implicit_statement_token1] = ACTIONS(3947), + [aux_sym_implicit_statement_token3] = ACTIONS(3950), + [aux_sym_implicit_statement_token4] = ACTIONS(3941), + [aux_sym_save_statement_token1] = ACTIONS(3953), + [aux_sym_private_statement_token1] = ACTIONS(3956), + [aux_sym_public_statement_token1] = ACTIONS(3959), + [aux_sym_namelist_statement_token1] = ACTIONS(3962), + [aux_sym_common_statement_token1] = ACTIONS(3965), + [aux_sym_import_statement_token1] = ACTIONS(3968), + [aux_sym_derived_type_definition_token1] = ACTIONS(3941), + [aux_sym_abstract_specifier_token1] = ACTIONS(3971), + [aux_sym_procedure_attribute_token6] = ACTIONS(3941), + [aux_sym_variable_attributes_token1] = ACTIONS(3974), + [aux_sym_variable_attributes_token2] = ACTIONS(3941), + [aux_sym_variable_attributes_token3] = ACTIONS(3941), + [aux_sym_variable_attributes_token4] = ACTIONS(3974), + [aux_sym_variable_attributes_token5] = ACTIONS(3941), + [aux_sym__intrinsic_type_token1] = ACTIONS(3977), + [aux_sym__intrinsic_type_token2] = ACTIONS(3980), + [aux_sym__intrinsic_type_token3] = ACTIONS(3977), + [aux_sym__intrinsic_type_token4] = ACTIONS(3983), + [aux_sym__intrinsic_type_token6] = ACTIONS(3980), + [aux_sym__intrinsic_type_token7] = ACTIONS(3980), + [aux_sym__intrinsic_type_token8] = ACTIONS(3986), + [aux_sym__intrinsic_type_token9] = ACTIONS(3980), + [aux_sym__intrinsic_type_token10] = ACTIONS(3980), + [aux_sym_derived_type_token1] = ACTIONS(3989), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(3992), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(3995), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(3998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4001), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(3974), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(3974), + [aux_sym_type_qualifier_token1] = ACTIONS(3929), + [aux_sym_type_qualifier_token2] = ACTIONS(3929), + [aux_sym_equivalence_statement_token1] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(3921), + [aux_sym_stop_statement_token1] = ACTIONS(3929), + [aux_sym_stop_statement_token2] = ACTIONS(3929), + [aux_sym_subroutine_call_token1] = ACTIONS(3916), + [aux_sym_keyword_statement_token1] = ACTIONS(3916), + [aux_sym_keyword_statement_token2] = ACTIONS(3929), + [aux_sym_keyword_statement_token3] = ACTIONS(3929), + [aux_sym_keyword_statement_token4] = ACTIONS(3916), + [aux_sym_keyword_statement_token6] = ACTIONS(3916), + [aux_sym_keyword_statement_token7] = ACTIONS(3916), + [aux_sym_include_statement_token1] = ACTIONS(4007), + [aux_sym_data_statement_token1] = ACTIONS(4010), + [aux_sym_do_loop_statement_token1] = ACTIONS(3916), + [aux_sym__inline_if_statement_token1] = ACTIONS(3929), + [aux_sym_end_if_statement_token1] = ACTIONS(3929), + [aux_sym_elseif_clause_token2] = ACTIONS(3929), + [aux_sym__inline_where_statement_token1] = ACTIONS(3916), + [aux_sym__forall_control_expression_token1] = ACTIONS(3916), + [aux_sym_select_case_statement_token1] = ACTIONS(4013), + [aux_sym_select_case_statement_token3] = ACTIONS(3916), + [aux_sym_select_type_statement_token1] = ACTIONS(3916), + [aux_sym_select_rank_statement_token2] = ACTIONS(3916), + [aux_sym_block_construct_token1] = ACTIONS(3929), + [aux_sym_associate_statement_token1] = ACTIONS(3916), + [aux_sym_format_statement_token1] = ACTIONS(3929), + [aux_sym_print_statement_token1] = ACTIONS(3916), + [aux_sym_open_statement_token1] = ACTIONS(3916), + [aux_sym_close_statement_token1] = ACTIONS(3916), + [aux_sym_inquire_statement_token1] = ACTIONS(3929), + [aux_sym_enum_statement_token1] = ACTIONS(4016), + [aux_sym_file_position_statement_token1] = ACTIONS(3916), + [aux_sym_file_position_statement_token2] = ACTIONS(3916), + [aux_sym_file_position_statement_token3] = ACTIONS(3916), + [aux_sym_file_position_statement_token4] = ACTIONS(3916), + [aux_sym_allocate_statement_token1] = ACTIONS(3916), + [aux_sym_entry_statement_token1] = ACTIONS(3929), + [aux_sym_logical_expression_token5] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3916), + [anon_sym_LPAREN_SLASH] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [aux_sym_boolean_literal_token1] = ACTIONS(3921), + [aux_sym_boolean_literal_token2] = ACTIONS(3921), + [aux_sym_null_literal_token1] = ACTIONS(3929), + [aux_sym_coarray_statement_token1] = ACTIONS(3929), + [aux_sym_coarray_statement_token2] = ACTIONS(3929), + [aux_sym_coarray_statement_token6] = ACTIONS(3929), + [aux_sym_coarray_statement_token8] = ACTIONS(3929), + [aux_sym_coarray_statement_token11] = ACTIONS(3929), + [aux_sym_coarray_statement_token12] = ACTIONS(3929), + [aux_sym_coarray_team_statement_token1] = ACTIONS(3929), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(3929), + [aux_sym_identifier_token1] = ACTIONS(3929), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4019), + [sym__float_literal] = ACTIONS(3921), + [sym__boz_literal] = ACTIONS(3921), + [sym__string_literal] = ACTIONS(3921), + [sym__string_literal_kind] = ACTIONS(3921), + }, + [762] = { + [sym_preproc_include] = STATE(762), + [sym_preproc_def] = STATE(762), + [sym_preproc_function_def] = STATE(762), + [sym_preproc_call] = STATE(762), + [sym_preproc_if_in_specification_part] = STATE(762), + [sym_preproc_ifdef_in_specification_part] = STATE(762), + [sym_interface] = STATE(762), + [sym_interface_statement] = STATE(3731), + [sym_language_binding] = STATE(3156), + [sym__specification_part] = STATE(762), + [sym_use_statement] = STATE(6984), + [sym_implicit_statement] = STATE(6984), + [sym_save_statement] = STATE(6984), + [sym_private_statement] = STATE(762), + [sym_public_statement] = STATE(762), + [sym_namelist_statement] = STATE(6984), + [sym_common_statement] = STATE(6984), + [sym_import_statement] = STATE(6984), + [sym_derived_type_definition] = STATE(762), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4226), + [sym_variable_declaration] = STATE(6984), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6984), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6984), + [sym_equivalence_statement] = STATE(6984), + [sym_statement_label] = STATE(6934), + [sym_include_statement] = STATE(6984), + [sym_data_statement] = STATE(6984), + [sym_enum] = STATE(762), + [sym_enum_statement] = STATE(5889), + [sym_statement_function] = STATE(6984), + [sym_identifier] = STATE(7086), + [aux_sym_program_repeat1] = STATE(762), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4022), + [aux_sym_preproc_def_token1] = ACTIONS(4025), + [aux_sym_preproc_if_token1] = ACTIONS(4028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4031), + [sym_preproc_directive] = ACTIONS(4034), + [anon_sym_LPAREN2] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4039), + [anon_sym_DASH] = ACTIONS(4039), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4041), + [aux_sym_interface_statement_token1] = ACTIONS(4044), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4047), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4047), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4037), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4050), + [aux_sym_language_binding_token1] = ACTIONS(4053), + [aux_sym_procedure_attributes_token1] = ACTIONS(4056), + [aux_sym_procedure_attributes_token3] = ACTIONS(4059), + [aux_sym_contains_statement_token1] = ACTIONS(4037), + [aux_sym_use_statement_token1] = ACTIONS(4062), + [aux_sym_use_statement_token2] = ACTIONS(4059), + [aux_sym_implicit_statement_token1] = ACTIONS(4065), + [aux_sym_implicit_statement_token3] = ACTIONS(4068), + [aux_sym_implicit_statement_token4] = ACTIONS(4059), + [aux_sym_save_statement_token1] = ACTIONS(4071), + [aux_sym_private_statement_token1] = ACTIONS(4074), + [aux_sym_public_statement_token1] = ACTIONS(4077), + [aux_sym_namelist_statement_token1] = ACTIONS(4080), + [aux_sym_common_statement_token1] = ACTIONS(4083), + [aux_sym_import_statement_token1] = ACTIONS(4086), + [aux_sym_derived_type_definition_token1] = ACTIONS(4059), + [aux_sym_abstract_specifier_token1] = ACTIONS(4089), + [aux_sym_procedure_attribute_token6] = ACTIONS(4059), + [aux_sym_variable_attributes_token1] = ACTIONS(4092), + [aux_sym_variable_attributes_token2] = ACTIONS(4059), + [aux_sym_variable_attributes_token3] = ACTIONS(4059), + [aux_sym_variable_attributes_token4] = ACTIONS(4092), + [aux_sym_variable_attributes_token5] = ACTIONS(4059), + [aux_sym__intrinsic_type_token1] = ACTIONS(4095), + [aux_sym__intrinsic_type_token2] = ACTIONS(4098), + [aux_sym__intrinsic_type_token3] = ACTIONS(4095), + [aux_sym__intrinsic_type_token4] = ACTIONS(4101), + [aux_sym__intrinsic_type_token6] = ACTIONS(4098), + [aux_sym__intrinsic_type_token7] = ACTIONS(4098), + [aux_sym__intrinsic_type_token8] = ACTIONS(4104), + [aux_sym__intrinsic_type_token9] = ACTIONS(4098), + [aux_sym__intrinsic_type_token10] = ACTIONS(4098), + [aux_sym_derived_type_token1] = ACTIONS(4107), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4110), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4113), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4116), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4119), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4092), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4092), + [aux_sym_type_qualifier_token1] = ACTIONS(4047), + [aux_sym_type_qualifier_token2] = ACTIONS(4047), + [aux_sym_equivalence_statement_token1] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4039), + [aux_sym_stop_statement_token1] = ACTIONS(4047), + [aux_sym_stop_statement_token2] = ACTIONS(4047), + [aux_sym_subroutine_call_token1] = ACTIONS(4037), + [aux_sym_keyword_statement_token1] = ACTIONS(4037), + [aux_sym_keyword_statement_token2] = ACTIONS(4047), + [aux_sym_keyword_statement_token3] = ACTIONS(4047), + [aux_sym_keyword_statement_token4] = ACTIONS(4037), + [aux_sym_keyword_statement_token6] = ACTIONS(4037), + [aux_sym_keyword_statement_token7] = ACTIONS(4037), + [aux_sym_include_statement_token1] = ACTIONS(4125), + [aux_sym_data_statement_token1] = ACTIONS(4128), + [aux_sym_do_loop_statement_token1] = ACTIONS(4037), + [aux_sym__inline_if_statement_token1] = ACTIONS(4047), + [aux_sym_end_if_statement_token1] = ACTIONS(4047), + [aux_sym_elseif_clause_token2] = ACTIONS(4047), + [aux_sym__inline_where_statement_token1] = ACTIONS(4037), + [aux_sym__forall_control_expression_token1] = ACTIONS(4037), + [aux_sym_select_case_statement_token1] = ACTIONS(4131), + [aux_sym_select_case_statement_token3] = ACTIONS(4037), + [aux_sym_select_type_statement_token1] = ACTIONS(4037), + [aux_sym_select_rank_statement_token2] = ACTIONS(4037), + [aux_sym_block_construct_token1] = ACTIONS(4047), + [aux_sym_associate_statement_token1] = ACTIONS(4037), + [aux_sym_format_statement_token1] = ACTIONS(4047), + [aux_sym_print_statement_token1] = ACTIONS(4037), + [aux_sym_open_statement_token1] = ACTIONS(4037), + [aux_sym_close_statement_token1] = ACTIONS(4037), + [aux_sym_inquire_statement_token1] = ACTIONS(4047), + [aux_sym_enum_statement_token1] = ACTIONS(4134), + [aux_sym_file_position_statement_token1] = ACTIONS(4037), + [aux_sym_file_position_statement_token2] = ACTIONS(4037), + [aux_sym_file_position_statement_token3] = ACTIONS(4037), + [aux_sym_file_position_statement_token4] = ACTIONS(4037), + [aux_sym_allocate_statement_token1] = ACTIONS(4037), + [aux_sym_entry_statement_token1] = ACTIONS(4047), + [aux_sym_logical_expression_token5] = ACTIONS(4039), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_LPAREN_SLASH] = ACTIONS(4039), + [anon_sym_LBRACK] = ACTIONS(4039), + [aux_sym_boolean_literal_token1] = ACTIONS(4039), + [aux_sym_boolean_literal_token2] = ACTIONS(4039), + [aux_sym_null_literal_token1] = ACTIONS(4047), + [aux_sym_coarray_statement_token1] = ACTIONS(4047), + [aux_sym_coarray_statement_token2] = ACTIONS(4047), + [aux_sym_coarray_statement_token6] = ACTIONS(4047), + [aux_sym_coarray_statement_token8] = ACTIONS(4047), + [aux_sym_coarray_statement_token11] = ACTIONS(4047), + [aux_sym_coarray_statement_token12] = ACTIONS(4047), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4047), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4047), + [aux_sym_identifier_token1] = ACTIONS(4047), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4137), + [sym__float_literal] = ACTIONS(4039), + [sym__boz_literal] = ACTIONS(4039), + [sym__string_literal] = ACTIONS(4039), + [sym__string_literal_kind] = ACTIONS(4039), + }, + [763] = { + [sym_preproc_include] = STATE(763), + [sym_preproc_def] = STATE(763), + [sym_preproc_function_def] = STATE(763), + [sym_preproc_call] = STATE(763), + [sym_preproc_if_in_specification_part] = STATE(763), + [sym_preproc_ifdef_in_specification_part] = STATE(763), + [sym_interface] = STATE(763), + [sym_interface_statement] = STATE(3773), + [sym_language_binding] = STATE(3156), + [sym__specification_part] = STATE(763), + [sym_use_statement] = STATE(6295), + [sym_implicit_statement] = STATE(6295), + [sym_save_statement] = STATE(6295), + [sym_private_statement] = STATE(763), + [sym_public_statement] = STATE(763), + [sym_namelist_statement] = STATE(6295), + [sym_common_statement] = STATE(6295), + [sym_import_statement] = STATE(6295), + [sym_derived_type_definition] = STATE(763), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4202), + [sym_variable_declaration] = STATE(6295), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6295), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6295), + [sym_equivalence_statement] = STATE(6295), + [sym_statement_label] = STATE(6948), + [sym_include_statement] = STATE(6295), + [sym_data_statement] = STATE(6295), + [sym_enum] = STATE(763), + [sym_enum_statement] = STATE(5891), + [sym_statement_function] = STATE(6295), + [sym_identifier] = STATE(7086), + [aux_sym_program_repeat1] = STATE(763), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4140), + [aux_sym_preproc_def_token1] = ACTIONS(4143), + [aux_sym_preproc_if_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4149), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4039), + [anon_sym_DASH] = ACTIONS(4039), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4041), + [aux_sym_interface_statement_token1] = ACTIONS(4044), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4047), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4047), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4050), + [aux_sym_language_binding_token1] = ACTIONS(4053), + [aux_sym_procedure_attributes_token1] = ACTIONS(4056), + [aux_sym_procedure_attributes_token3] = ACTIONS(4059), + [aux_sym_end_function_statement_token1] = ACTIONS(4037), + [aux_sym_contains_statement_token1] = ACTIONS(4037), + [aux_sym_use_statement_token1] = ACTIONS(4062), + [aux_sym_use_statement_token2] = ACTIONS(4059), + [aux_sym_implicit_statement_token1] = ACTIONS(4065), + [aux_sym_implicit_statement_token3] = ACTIONS(4068), + [aux_sym_implicit_statement_token4] = ACTIONS(4059), + [aux_sym_save_statement_token1] = ACTIONS(4071), + [aux_sym_private_statement_token1] = ACTIONS(4155), + [aux_sym_public_statement_token1] = ACTIONS(4158), + [aux_sym_namelist_statement_token1] = ACTIONS(4080), + [aux_sym_common_statement_token1] = ACTIONS(4083), + [aux_sym_import_statement_token1] = ACTIONS(4086), + [aux_sym_derived_type_definition_token1] = ACTIONS(4059), + [aux_sym_abstract_specifier_token1] = ACTIONS(4089), + [aux_sym_procedure_attribute_token6] = ACTIONS(4059), + [aux_sym_variable_attributes_token1] = ACTIONS(4092), + [aux_sym_variable_attributes_token2] = ACTIONS(4059), + [aux_sym_variable_attributes_token3] = ACTIONS(4059), + [aux_sym_variable_attributes_token4] = ACTIONS(4092), + [aux_sym_variable_attributes_token5] = ACTIONS(4059), + [aux_sym__intrinsic_type_token1] = ACTIONS(4095), + [aux_sym__intrinsic_type_token2] = ACTIONS(4098), + [aux_sym__intrinsic_type_token3] = ACTIONS(4095), + [aux_sym__intrinsic_type_token4] = ACTIONS(4101), + [aux_sym__intrinsic_type_token6] = ACTIONS(4098), + [aux_sym__intrinsic_type_token7] = ACTIONS(4098), + [aux_sym__intrinsic_type_token8] = ACTIONS(4104), + [aux_sym__intrinsic_type_token9] = ACTIONS(4098), + [aux_sym__intrinsic_type_token10] = ACTIONS(4098), + [aux_sym_derived_type_token1] = ACTIONS(4107), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4110), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4113), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4116), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4119), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4092), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4092), + [aux_sym_type_qualifier_token1] = ACTIONS(4047), + [aux_sym_type_qualifier_token2] = ACTIONS(4047), + [aux_sym_equivalence_statement_token1] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4039), + [aux_sym_stop_statement_token1] = ACTIONS(4047), [aux_sym_stop_statement_token2] = ACTIONS(4047), [aux_sym_subroutine_call_token1] = ACTIONS(4037), [aux_sym_keyword_statement_token1] = ACTIONS(4037), @@ -191973,39 +191973,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if_in_specification_part] = STATE(764), [sym_preproc_ifdef_in_specification_part] = STATE(764), [sym_interface] = STATE(764), - [sym_interface_statement] = STATE(3853), - [sym_language_binding] = STATE(3142), + [sym_interface_statement] = STATE(3816), + [sym_language_binding] = STATE(3156), [sym__specification_part] = STATE(764), - [sym_use_statement] = STATE(6337), - [sym_implicit_statement] = STATE(6337), - [sym_save_statement] = STATE(6337), + [sym_use_statement] = STATE(6641), + [sym_implicit_statement] = STATE(6641), + [sym_save_statement] = STATE(6641), [sym_private_statement] = STATE(764), [sym_public_statement] = STATE(764), - [sym_namelist_statement] = STATE(6337), - [sym_common_statement] = STATE(6337), - [sym_import_statement] = STATE(6337), + [sym_namelist_statement] = STATE(6641), + [sym_common_statement] = STATE(6641), + [sym_import_statement] = STATE(6641), [sym_derived_type_definition] = STATE(764), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4201), - [sym_variable_declaration] = STATE(6337), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4213), + [sym_variable_declaration] = STATE(6641), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6337), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6641), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6337), - [sym_equivalence_statement] = STATE(6337), - [sym_statement_label] = STATE(6975), - [sym_include_statement] = STATE(6337), - [sym_data_statement] = STATE(6337), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6641), + [sym_equivalence_statement] = STATE(6641), + [sym_statement_label] = STATE(6968), + [sym_include_statement] = STATE(6641), + [sym_data_statement] = STATE(6641), [sym_enum] = STATE(764), - [sym_enum_statement] = STATE(5870), - [sym_statement_function] = STATE(6337), + [sym_enum_statement] = STATE(5903), + [sym_statement_function] = STATE(6641), [sym_identifier] = STATE(7086), [aux_sym_program_repeat1] = STATE(764), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4161), [aux_sym_preproc_def_token1] = ACTIONS(4164), [aux_sym_preproc_if_token1] = ACTIONS(4167), @@ -192020,8 +192020,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_interface_statement_token1] = ACTIONS(4044), [aux_sym_defined_io_procedure_token1] = ACTIONS(4047), [aux_sym_defined_io_procedure_token2] = ACTIONS(4047), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4037), [aux_sym_module_procedure_statement_token1] = ACTIONS(4050), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4037), [aux_sym_language_binding_token1] = ACTIONS(4053), [aux_sym_procedure_attributes_token1] = ACTIONS(4056), [aux_sym_procedure_attributes_token3] = ACTIONS(4059), @@ -192138,39 +192138,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if_in_specification_part] = STATE(765), [sym_preproc_ifdef_in_specification_part] = STATE(765), [sym_interface] = STATE(765), - [sym_interface_statement] = STATE(3755), - [sym_language_binding] = STATE(3142), + [sym_interface_statement] = STATE(3749), + [sym_language_binding] = STATE(3156), [sym__specification_part] = STATE(765), - [sym_use_statement] = STATE(6398), - [sym_implicit_statement] = STATE(6398), - [sym_save_statement] = STATE(6398), + [sym_use_statement] = STATE(6515), + [sym_implicit_statement] = STATE(6515), + [sym_save_statement] = STATE(6515), [sym_private_statement] = STATE(765), [sym_public_statement] = STATE(765), - [sym_namelist_statement] = STATE(6398), - [sym_common_statement] = STATE(6398), - [sym_import_statement] = STATE(6398), + [sym_namelist_statement] = STATE(6515), + [sym_common_statement] = STATE(6515), + [sym_import_statement] = STATE(6515), [sym_derived_type_definition] = STATE(765), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4217), - [sym_variable_declaration] = STATE(6398), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4201), + [sym_variable_declaration] = STATE(6515), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6398), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6515), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6398), - [sym_equivalence_statement] = STATE(6398), - [sym_statement_label] = STATE(6985), - [sym_include_statement] = STATE(6398), - [sym_data_statement] = STATE(6398), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6515), + [sym_equivalence_statement] = STATE(6515), + [sym_statement_label] = STATE(6875), + [sym_include_statement] = STATE(6515), + [sym_data_statement] = STATE(6515), [sym_enum] = STATE(765), - [sym_enum_statement] = STATE(5890), - [sym_statement_function] = STATE(6398), + [sym_enum_statement] = STATE(5883), + [sym_statement_function] = STATE(6515), [sym_identifier] = STATE(7086), [aux_sym_program_repeat1] = STATE(765), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4182), [aux_sym_preproc_def_token1] = ACTIONS(4185), [aux_sym_preproc_if_token1] = ACTIONS(4188), @@ -192182,6 +192182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(4039), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4041), + [aux_sym_end_program_statement_token2] = ACTIONS(4037), [aux_sym_interface_statement_token1] = ACTIONS(4044), [aux_sym_defined_io_procedure_token1] = ACTIONS(4047), [aux_sym_defined_io_procedure_token2] = ACTIONS(4047), @@ -192189,7 +192190,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(4053), [aux_sym_procedure_attributes_token1] = ACTIONS(4056), [aux_sym_procedure_attributes_token3] = ACTIONS(4059), - [aux_sym_end_function_statement_token1] = ACTIONS(4037), [aux_sym_contains_statement_token1] = ACTIONS(4037), [aux_sym_use_statement_token1] = ACTIONS(4062), [aux_sym_use_statement_token2] = ACTIONS(4059), @@ -192301,39 +192301,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_function_def] = STATE(766), [sym_preproc_call] = STATE(766), [sym_interface] = STATE(766), - [sym_interface_statement] = STATE(3837), - [sym_language_binding] = STATE(3142), + [sym_interface_statement] = STATE(3807), + [sym_language_binding] = STATE(3156), [sym__specification_part] = STATE(766), - [sym_use_statement] = STATE(6626), - [sym_implicit_statement] = STATE(6626), - [sym_save_statement] = STATE(6626), + [sym_use_statement] = STATE(6550), + [sym_implicit_statement] = STATE(6550), + [sym_save_statement] = STATE(6550), [sym_private_statement] = STATE(766), [sym_public_statement] = STATE(766), - [sym_namelist_statement] = STATE(6626), - [sym_common_statement] = STATE(6626), - [sym_import_statement] = STATE(6626), + [sym_namelist_statement] = STATE(6550), + [sym_common_statement] = STATE(6550), + [sym_import_statement] = STATE(6550), [sym_derived_type_definition] = STATE(766), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4213), - [sym_variable_declaration] = STATE(6626), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4204), + [sym_variable_declaration] = STATE(6550), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6626), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6550), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6626), - [sym_equivalence_statement] = STATE(6626), - [sym_statement_label] = STATE(6997), - [sym_include_statement] = STATE(6626), - [sym_data_statement] = STATE(6626), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6550), + [sym_equivalence_statement] = STATE(6550), + [sym_statement_label] = STATE(6958), + [sym_include_statement] = STATE(6550), + [sym_data_statement] = STATE(6550), [sym_enum] = STATE(766), - [sym_enum_statement] = STATE(5896), - [sym_statement_function] = STATE(6626), + [sym_enum_statement] = STATE(5899), + [sym_statement_function] = STATE(6550), [sym_identifier] = STATE(7086), [aux_sym_preproc_if_in_module_repeat1] = STATE(766), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4203), [aux_sym_preproc_def_token1] = ACTIONS(4206), [aux_sym_preproc_if_token1] = ACTIONS(3916), @@ -192464,39 +192464,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_function_def] = STATE(767), [sym_preproc_call] = STATE(767), [sym_interface] = STATE(767), - [sym_interface_statement] = STATE(3745), - [sym_language_binding] = STATE(3142), + [sym_interface_statement] = STATE(3744), + [sym_language_binding] = STATE(3156), [sym__specification_part] = STATE(767), - [sym_use_statement] = STATE(6273), - [sym_implicit_statement] = STATE(6273), - [sym_save_statement] = STATE(6273), + [sym_use_statement] = STATE(6817), + [sym_implicit_statement] = STATE(6817), + [sym_save_statement] = STATE(6817), [sym_private_statement] = STATE(767), [sym_public_statement] = STATE(767), - [sym_namelist_statement] = STATE(6273), - [sym_common_statement] = STATE(6273), - [sym_import_statement] = STATE(6273), + [sym_namelist_statement] = STATE(6817), + [sym_common_statement] = STATE(6817), + [sym_import_statement] = STATE(6817), [sym_derived_type_definition] = STATE(767), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4223), - [sym_variable_declaration] = STATE(6273), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4215), + [sym_variable_declaration] = STATE(6817), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6273), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6817), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6273), - [sym_equivalence_statement] = STATE(6273), - [sym_statement_label] = STATE(6952), - [sym_include_statement] = STATE(6273), - [sym_data_statement] = STATE(6273), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6817), + [sym_equivalence_statement] = STATE(6817), + [sym_statement_label] = STATE(6908), + [sym_include_statement] = STATE(6817), + [sym_data_statement] = STATE(6817), [sym_enum] = STATE(767), - [sym_enum_statement] = STATE(5874), - [sym_statement_function] = STATE(6273), + [sym_enum_statement] = STATE(5887), + [sym_statement_function] = STATE(6817), [sym_identifier] = STATE(7086), [aux_sym_preproc_if_in_module_repeat1] = STATE(767), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4218), [aux_sym_preproc_def_token1] = ACTIONS(4221), [aux_sym_preproc_if_token1] = ACTIONS(3916), @@ -192621,76 +192621,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(3921), }, [768] = { - [sym__statements] = STATE(7431), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(7431), - [sym_assignment_statement] = STATE(7431), - [sym_pointer_association_statement] = STATE(7431), - [sym_subroutine_call] = STATE(7431), - [sym_keyword_statement] = STATE(7431), - [sym_include_statement] = STATE(7431), - [sym_do_loop_statement] = STATE(7431), - [sym_do_label_statement] = STATE(7431), - [sym_end_do_label_statement] = STATE(7431), - [sym_if_statement] = STATE(7431), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7431), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7431), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7431), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7431), - [sym_select_type_statement] = STATE(7431), - [sym_select_rank_statement] = STATE(7431), - [sym_block_construct] = STATE(7431), - [sym_associate_statement] = STATE(7431), - [sym_format_statement] = STATE(7431), - [sym_read_statement] = STATE(7431), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7431), - [sym_open_statement] = STATE(7431), - [sym_close_statement] = STATE(7431), - [sym_write_statement] = STATE(7431), - [sym_inquire_statement] = STATE(7431), - [sym_file_position_statement] = STATE(7431), - [sym_allocate_statement] = STATE(7431), - [sym_entry_statement] = STATE(7431), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7431), - [sym_coarray_team_statement] = STATE(7431), - [sym_coarray_critical_statement] = STATE(7431), - [sym_identifier] = STATE(4690), - [sym__end_of_statement] = STATE(556), + [sym__statements] = STATE(7011), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(7011), + [sym_assignment_statement] = STATE(7011), + [sym_pointer_association_statement] = STATE(7011), + [sym_subroutine_call] = STATE(7011), + [sym_keyword_statement] = STATE(7011), + [sym_include_statement] = STATE(7011), + [sym_do_loop_statement] = STATE(7011), + [sym_do_label_statement] = STATE(7011), + [sym_end_do_label_statement] = STATE(7011), + [sym_if_statement] = STATE(7011), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(7011), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(7011), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(7011), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_end_forall_statement] = STATE(7114), + [sym_select_case_statement] = STATE(7011), + [sym_select_type_statement] = STATE(7011), + [sym_select_rank_statement] = STATE(7011), + [sym_block_construct] = STATE(7011), + [sym_associate_statement] = STATE(7011), + [sym_format_statement] = STATE(7011), + [sym_read_statement] = STATE(7011), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(7011), + [sym_open_statement] = STATE(7011), + [sym_close_statement] = STATE(7011), + [sym_write_statement] = STATE(7011), + [sym_inquire_statement] = STATE(7011), + [sym_file_position_statement] = STATE(7011), + [sym_allocate_statement] = STATE(7011), + [sym_entry_statement] = STATE(7011), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(7011), + [sym_coarray_team_statement] = STATE(7011), + [sym_coarray_critical_statement] = STATE(7011), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(4233), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -192706,10 +192706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -192718,7 +192718,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(4233), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -192731,11 +192730,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), + [aux_sym_end_forall_statement_token1] = ACTIONS(3191), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), @@ -192770,79 +192771,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), - [sym__external_end_of_statement] = ACTIONS(4233), }, [769] = { - [sym__statements] = STATE(7109), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(7109), - [sym_assignment_statement] = STATE(7109), - [sym_pointer_association_statement] = STATE(7109), - [sym_subroutine_call] = STATE(7109), - [sym_keyword_statement] = STATE(7109), - [sym_include_statement] = STATE(7109), - [sym_do_loop_statement] = STATE(7109), - [sym_do_label_statement] = STATE(7109), - [sym_end_do_label_statement] = STATE(7109), - [sym_if_statement] = STATE(7109), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7109), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7109), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7109), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7109), - [sym_select_type_statement] = STATE(7109), - [sym_select_rank_statement] = STATE(7109), - [sym_block_construct] = STATE(7109), - [sym_associate_statement] = STATE(7109), - [sym_format_statement] = STATE(7109), - [sym_read_statement] = STATE(7109), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7109), - [sym_open_statement] = STATE(7109), - [sym_close_statement] = STATE(7109), - [sym_write_statement] = STATE(7109), - [sym_inquire_statement] = STATE(7109), - [sym_file_position_statement] = STATE(7109), - [sym_allocate_statement] = STATE(7109), - [sym_entry_statement] = STATE(7109), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7109), - [sym_coarray_team_statement] = STATE(7109), - [sym_coarray_critical_statement] = STATE(7109), - [sym_identifier] = STATE(4690), - [sym__end_of_statement] = STATE(691), + [sym__statements] = STATE(7224), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(7224), + [sym_assignment_statement] = STATE(7224), + [sym_pointer_association_statement] = STATE(7224), + [sym_subroutine_call] = STATE(7224), + [sym_keyword_statement] = STATE(7224), + [sym_include_statement] = STATE(7224), + [sym_do_loop_statement] = STATE(7224), + [sym_do_label_statement] = STATE(7224), + [sym_end_do_label_statement] = STATE(7224), + [sym_if_statement] = STATE(7224), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(7224), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(7224), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(7224), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(7224), + [sym_select_type_statement] = STATE(7224), + [sym_select_rank_statement] = STATE(7224), + [sym_block_construct] = STATE(7224), + [sym_associate_statement] = STATE(7224), + [sym_format_statement] = STATE(7224), + [sym_read_statement] = STATE(7224), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(7224), + [sym_open_statement] = STATE(7224), + [sym_close_statement] = STATE(7224), + [sym_write_statement] = STATE(7224), + [sym_inquire_statement] = STATE(7224), + [sym_file_position_statement] = STATE(7224), + [sym_allocate_statement] = STATE(7224), + [sym_entry_statement] = STATE(7224), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(7224), + [sym_coarray_team_statement] = STATE(7224), + [sym_coarray_critical_statement] = STATE(7224), + [sym_identifier] = STATE(4694), + [sym__end_of_statement] = STATE(559), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -192863,10 +192863,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -192875,7 +192875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4239), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -192927,84 +192927,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), - [sym__external_end_of_statement] = ACTIONS(4237), + [sym__external_end_of_statement] = ACTIONS(4239), }, [770] = { - [sym__statements] = STATE(6347), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6347), - [sym_assignment_statement] = STATE(6347), - [sym_pointer_association_statement] = STATE(6347), - [sym_subroutine_call] = STATE(6347), - [sym_keyword_statement] = STATE(6347), - [sym_include_statement] = STATE(6347), - [sym_do_loop_statement] = STATE(6347), - [sym_do_label_statement] = STATE(6347), - [sym_end_do_label_statement] = STATE(6347), - [sym_if_statement] = STATE(6347), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6347), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6347), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6347), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_end_forall_statement] = STATE(7200), - [sym_select_case_statement] = STATE(6347), - [sym_select_type_statement] = STATE(6347), - [sym_select_rank_statement] = STATE(6347), - [sym_block_construct] = STATE(6347), - [sym_associate_statement] = STATE(6347), - [sym_format_statement] = STATE(6347), - [sym_read_statement] = STATE(6347), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6347), - [sym_open_statement] = STATE(6347), - [sym_close_statement] = STATE(6347), - [sym_write_statement] = STATE(6347), - [sym_inquire_statement] = STATE(6347), - [sym_file_position_statement] = STATE(6347), - [sym_allocate_statement] = STATE(6347), - [sym_entry_statement] = STATE(6347), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6347), - [sym_coarray_team_statement] = STATE(6347), - [sym_coarray_critical_statement] = STATE(6347), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(7011), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(7011), + [sym_assignment_statement] = STATE(7011), + [sym_pointer_association_statement] = STATE(7011), + [sym_subroutine_call] = STATE(7011), + [sym_keyword_statement] = STATE(7011), + [sym_include_statement] = STATE(7011), + [sym_do_loop_statement] = STATE(7011), + [sym_do_label_statement] = STATE(7011), + [sym_end_do_label_statement] = STATE(7011), + [sym_if_statement] = STATE(7011), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(7011), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(7011), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(7011), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_end_forall_statement] = STATE(7389), + [sym_select_case_statement] = STATE(7011), + [sym_select_type_statement] = STATE(7011), + [sym_select_rank_statement] = STATE(7011), + [sym_block_construct] = STATE(7011), + [sym_associate_statement] = STATE(7011), + [sym_format_statement] = STATE(7011), + [sym_read_statement] = STATE(7011), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(7011), + [sym_open_statement] = STATE(7011), + [sym_close_statement] = STATE(7011), + [sym_write_statement] = STATE(7011), + [sym_inquire_statement] = STATE(7011), + [sym_file_position_statement] = STATE(7011), + [sym_allocate_statement] = STATE(7011), + [sym_entry_statement] = STATE(7011), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(7011), + [sym_coarray_team_statement] = STATE(7011), + [sym_coarray_critical_statement] = STATE(7011), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4239), + [aux_sym_end_program_statement_token1] = ACTIONS(4233), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -193020,10 +193020,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -193044,13 +193044,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_end_forall_statement_token1] = ACTIONS(3447), + [aux_sym_end_forall_statement_token1] = ACTIONS(3191), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), @@ -193085,83 +193085,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [771] = { - [sym__statements] = STATE(6347), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6347), - [sym_assignment_statement] = STATE(6347), - [sym_pointer_association_statement] = STATE(6347), - [sym_subroutine_call] = STATE(6347), - [sym_keyword_statement] = STATE(6347), - [sym_include_statement] = STATE(6347), - [sym_do_loop_statement] = STATE(6347), - [sym_do_label_statement] = STATE(6347), - [sym_end_do_label_statement] = STATE(6347), - [sym_if_statement] = STATE(6347), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6347), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6347), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6347), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_end_forall_statement] = STATE(7452), - [sym_select_case_statement] = STATE(6347), - [sym_select_type_statement] = STATE(6347), - [sym_select_rank_statement] = STATE(6347), - [sym_block_construct] = STATE(6347), - [sym_associate_statement] = STATE(6347), - [sym_format_statement] = STATE(6347), - [sym_read_statement] = STATE(6347), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6347), - [sym_open_statement] = STATE(6347), - [sym_close_statement] = STATE(6347), - [sym_write_statement] = STATE(6347), - [sym_inquire_statement] = STATE(6347), - [sym_file_position_statement] = STATE(6347), - [sym_allocate_statement] = STATE(6347), - [sym_entry_statement] = STATE(6347), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6347), - [sym_coarray_team_statement] = STATE(6347), - [sym_coarray_critical_statement] = STATE(6347), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(7011), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(7011), + [sym_assignment_statement] = STATE(7011), + [sym_pointer_association_statement] = STATE(7011), + [sym_subroutine_call] = STATE(7011), + [sym_keyword_statement] = STATE(7011), + [sym_include_statement] = STATE(7011), + [sym_do_loop_statement] = STATE(7011), + [sym_do_label_statement] = STATE(7011), + [sym_end_do_label_statement] = STATE(7011), + [sym_if_statement] = STATE(7011), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(7011), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(7011), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(7011), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_end_forall_statement] = STATE(7180), + [sym_select_case_statement] = STATE(7011), + [sym_select_type_statement] = STATE(7011), + [sym_select_rank_statement] = STATE(7011), + [sym_block_construct] = STATE(7011), + [sym_associate_statement] = STATE(7011), + [sym_format_statement] = STATE(7011), + [sym_read_statement] = STATE(7011), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(7011), + [sym_open_statement] = STATE(7011), + [sym_close_statement] = STATE(7011), + [sym_write_statement] = STATE(7011), + [sym_inquire_statement] = STATE(7011), + [sym_file_position_statement] = STATE(7011), + [sym_allocate_statement] = STATE(7011), + [sym_entry_statement] = STATE(7011), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(7011), + [sym_coarray_team_statement] = STATE(7011), + [sym_coarray_critical_statement] = STATE(7011), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4239), + [aux_sym_end_program_statement_token1] = ACTIONS(4233), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -193177,10 +193177,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -193201,13 +193201,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_end_forall_statement_token1] = ACTIONS(3447), + [aux_sym_end_forall_statement_token1] = ACTIONS(3191), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), @@ -193242,83 +193242,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [772] = { - [sym__statements] = STATE(6347), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6347), - [sym_assignment_statement] = STATE(6347), - [sym_pointer_association_statement] = STATE(6347), - [sym_subroutine_call] = STATE(6347), - [sym_keyword_statement] = STATE(6347), - [sym_include_statement] = STATE(6347), - [sym_do_loop_statement] = STATE(6347), - [sym_do_label_statement] = STATE(6347), - [sym_end_do_label_statement] = STATE(6347), - [sym_if_statement] = STATE(6347), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6347), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6347), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6347), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_end_forall_statement] = STATE(7218), - [sym_select_case_statement] = STATE(6347), - [sym_select_type_statement] = STATE(6347), - [sym_select_rank_statement] = STATE(6347), - [sym_block_construct] = STATE(6347), - [sym_associate_statement] = STATE(6347), - [sym_format_statement] = STATE(6347), - [sym_read_statement] = STATE(6347), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6347), - [sym_open_statement] = STATE(6347), - [sym_close_statement] = STATE(6347), - [sym_write_statement] = STATE(6347), - [sym_inquire_statement] = STATE(6347), - [sym_file_position_statement] = STATE(6347), - [sym_allocate_statement] = STATE(6347), - [sym_entry_statement] = STATE(6347), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6347), - [sym_coarray_team_statement] = STATE(6347), - [sym_coarray_critical_statement] = STATE(6347), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(7398), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(7398), + [sym_assignment_statement] = STATE(7398), + [sym_pointer_association_statement] = STATE(7398), + [sym_subroutine_call] = STATE(7398), + [sym_keyword_statement] = STATE(7398), + [sym_include_statement] = STATE(7398), + [sym_do_loop_statement] = STATE(7398), + [sym_do_label_statement] = STATE(7398), + [sym_end_do_label_statement] = STATE(7398), + [sym_if_statement] = STATE(7398), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(7398), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(7398), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(7398), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(7398), + [sym_select_type_statement] = STATE(7398), + [sym_select_rank_statement] = STATE(7398), + [sym_block_construct] = STATE(7398), + [sym_associate_statement] = STATE(7398), + [sym_format_statement] = STATE(7398), + [sym_read_statement] = STATE(7398), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(7398), + [sym_open_statement] = STATE(7398), + [sym_close_statement] = STATE(7398), + [sym_write_statement] = STATE(7398), + [sym_inquire_statement] = STATE(7398), + [sym_file_position_statement] = STATE(7398), + [sym_allocate_statement] = STATE(7398), + [sym_entry_statement] = STATE(7398), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(7398), + [sym_coarray_team_statement] = STATE(7398), + [sym_coarray_critical_statement] = STATE(7398), + [sym_identifier] = STATE(4694), + [sym__end_of_statement] = STATE(657), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4239), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -193334,10 +193334,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -193346,6 +193346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(4241), [aux_sym_stop_statement_token1] = ACTIONS(101), [aux_sym_stop_statement_token2] = ACTIONS(103), [aux_sym_subroutine_call_token1] = ACTIONS(105), @@ -193358,13 +193359,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), - [aux_sym_end_forall_statement_token1] = ACTIONS(3447), [aux_sym_select_case_statement_token1] = ACTIONS(127), [aux_sym_select_case_statement_token3] = ACTIONS(129), [aux_sym_select_type_statement_token1] = ACTIONS(131), @@ -193399,78 +193398,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), + [sym__external_end_of_statement] = ACTIONS(4241), }, [773] = { - [sym__statements] = STATE(6467), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6467), - [sym_assignment_statement] = STATE(6467), - [sym_pointer_association_statement] = STATE(6467), - [sym_subroutine_call] = STATE(6467), - [sym_keyword_statement] = STATE(6467), - [sym_include_statement] = STATE(6467), - [sym_do_loop_statement] = STATE(6467), - [sym_end_do_loop_statement] = STATE(7144), - [sym_do_label_statement] = STATE(6467), - [sym_end_do_label_statement] = STATE(6467), - [sym_if_statement] = STATE(6467), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6467), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6467), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6467), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6467), - [sym_select_type_statement] = STATE(6467), - [sym_select_rank_statement] = STATE(6467), - [sym_block_construct] = STATE(6467), - [sym_associate_statement] = STATE(6467), - [sym_format_statement] = STATE(6467), - [sym_read_statement] = STATE(6467), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6467), - [sym_open_statement] = STATE(6467), - [sym_close_statement] = STATE(6467), - [sym_write_statement] = STATE(6467), - [sym_inquire_statement] = STATE(6467), - [sym_file_position_statement] = STATE(6467), - [sym_allocate_statement] = STATE(6467), - [sym_entry_statement] = STATE(6467), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6467), - [sym_coarray_team_statement] = STATE(6467), - [sym_coarray_critical_statement] = STATE(6467), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6995), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6995), + [sym_assignment_statement] = STATE(6995), + [sym_pointer_association_statement] = STATE(6995), + [sym_subroutine_call] = STATE(6995), + [sym_keyword_statement] = STATE(6995), + [sym_include_statement] = STATE(6995), + [sym_do_loop_statement] = STATE(6995), + [sym_do_label_statement] = STATE(6995), + [sym_end_do_label_statement] = STATE(6995), + [sym_if_statement] = STATE(6995), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6995), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6995), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6995), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6995), + [sym_select_type_statement] = STATE(6995), + [sym_select_rank_statement] = STATE(6995), + [sym_block_construct] = STATE(6995), + [sym_associate_statement] = STATE(6995), + [sym_format_statement] = STATE(6998), + [sym_read_statement] = STATE(6995), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6995), + [sym_open_statement] = STATE(6995), + [sym_close_statement] = STATE(6995), + [sym_write_statement] = STATE(6995), + [sym_inquire_statement] = STATE(6995), + [sym_file_position_statement] = STATE(6995), + [sym_allocate_statement] = STATE(6995), + [sym_entry_statement] = STATE(6995), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6995), + [sym_coarray_team_statement] = STATE(6995), + [sym_coarray_critical_statement] = STATE(6995), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -193480,6 +193479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(4245), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -193491,10 +193491,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -193515,7 +193515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4245), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -193555,83 +193555,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [774] = { - [sym__statements] = STATE(7427), - [sym_statement_label] = STATE(7045), - [sym_statement_label_reference] = STATE(8317), - [sym_stop_statement] = STATE(7427), - [sym_assignment_statement] = STATE(7427), - [sym_pointer_association_statement] = STATE(7427), - [sym_subroutine_call] = STATE(7427), - [sym_keyword_statement] = STATE(7427), - [sym_include_statement] = STATE(7427), - [sym_do_loop_statement] = STATE(7427), - [sym_do_label_statement] = STATE(7427), - [sym_end_do_label_statement] = STATE(7427), - [sym_if_statement] = STATE(7427), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7427), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7427), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7427), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7427), - [sym_select_type_statement] = STATE(7427), - [sym_select_rank_statement] = STATE(7427), - [sym_block_construct] = STATE(7427), - [sym_associate_statement] = STATE(7427), - [sym_format_statement] = STATE(7427), - [sym_read_statement] = STATE(7427), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7427), - [sym_open_statement] = STATE(7427), - [sym_close_statement] = STATE(7427), - [sym_write_statement] = STATE(7427), - [sym_inquire_statement] = STATE(7427), - [sym_file_position_statement] = STATE(7427), - [sym_allocate_statement] = STATE(7427), - [sym_entry_statement] = STATE(7427), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7427), - [sym_coarray_team_statement] = STATE(7427), - [sym_coarray_critical_statement] = STATE(7427), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6349), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6349), + [sym_assignment_statement] = STATE(6349), + [sym_pointer_association_statement] = STATE(6349), + [sym_subroutine_call] = STATE(6349), + [sym_keyword_statement] = STATE(6349), + [sym_include_statement] = STATE(6349), + [sym_do_loop_statement] = STATE(6349), + [sym_end_do_loop_statement] = STATE(7203), + [sym_do_label_statement] = STATE(6349), + [sym_end_do_label_statement] = STATE(6349), + [sym_if_statement] = STATE(6349), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6349), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6349), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6349), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6349), + [sym_select_type_statement] = STATE(6349), + [sym_select_rank_statement] = STATE(6349), + [sym_block_construct] = STATE(6349), + [sym_associate_statement] = STATE(6349), + [sym_format_statement] = STATE(6349), + [sym_read_statement] = STATE(6349), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6349), + [sym_open_statement] = STATE(6349), + [sym_close_statement] = STATE(6349), + [sym_write_statement] = STATE(6349), + [sym_inquire_statement] = STATE(6349), + [sym_file_position_statement] = STATE(6349), + [sym_allocate_statement] = STATE(6349), + [sym_entry_statement] = STATE(6349), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6349), + [sym_coarray_team_statement] = STATE(6349), + [sym_coarray_critical_statement] = STATE(6349), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_end_program_statement_token1] = ACTIONS(4247), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -193647,10 +193647,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -193671,8 +193671,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4249), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym__block_if_statement_token1] = ACTIONS(4247), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), @@ -193711,87 +193711,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [775] = { - [sym__statements] = STATE(6637), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6637), - [sym_assignment_statement] = STATE(6637), - [sym_pointer_association_statement] = STATE(6637), - [sym_subroutine_call] = STATE(6637), - [sym_keyword_statement] = STATE(6637), - [sym_include_statement] = STATE(6637), - [sym_do_loop_statement] = STATE(6637), - [sym_do_label_statement] = STATE(6637), - [sym_end_do_label_statement] = STATE(6637), - [sym_if_statement] = STATE(6637), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6637), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7252), - [sym_where_statement] = STATE(6637), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6637), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6637), - [sym_select_type_statement] = STATE(6637), - [sym_select_rank_statement] = STATE(6637), - [sym_block_construct] = STATE(6637), - [sym_associate_statement] = STATE(6637), - [sym_format_statement] = STATE(6637), - [sym_read_statement] = STATE(6637), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6637), - [sym_open_statement] = STATE(6637), - [sym_close_statement] = STATE(6637), - [sym_write_statement] = STATE(6637), - [sym_inquire_statement] = STATE(6637), - [sym_file_position_statement] = STATE(6637), - [sym_allocate_statement] = STATE(6637), - [sym_entry_statement] = STATE(6637), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6637), - [sym_coarray_team_statement] = STATE(6637), - [sym_coarray_critical_statement] = STATE(6637), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6425), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6425), + [sym_assignment_statement] = STATE(6425), + [sym_pointer_association_statement] = STATE(6425), + [sym_subroutine_call] = STATE(6425), + [sym_keyword_statement] = STATE(6425), + [sym_include_statement] = STATE(6425), + [sym_do_loop_statement] = STATE(6425), + [sym_do_label_statement] = STATE(6425), + [sym_end_do_label_statement] = STATE(6425), + [sym_if_statement] = STATE(6425), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6425), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6425), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6425), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6425), + [sym_select_type_statement] = STATE(6425), + [sym_select_rank_statement] = STATE(6425), + [sym_block_construct] = STATE(6425), + [sym_associate_statement] = STATE(6425), + [sym_format_statement] = STATE(6686), + [sym_read_statement] = STATE(6425), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6425), + [sym_open_statement] = STATE(6425), + [sym_close_statement] = STATE(6425), + [sym_write_statement] = STATE(6425), + [sym_inquire_statement] = STATE(6425), + [sym_file_position_statement] = STATE(6425), + [sym_allocate_statement] = STATE(6425), + [sym_entry_statement] = STATE(6425), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6425), + [sym_coarray_team_statement] = STATE(6425), + [sym_coarray_critical_statement] = STATE(6425), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4249), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(4245), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -193803,10 +193803,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -193827,9 +193827,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), + [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -193867,83 +193867,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [776] = { - [sym__statements] = STATE(6637), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6637), - [sym_assignment_statement] = STATE(6637), - [sym_pointer_association_statement] = STATE(6637), - [sym_subroutine_call] = STATE(6637), - [sym_keyword_statement] = STATE(6637), - [sym_include_statement] = STATE(6637), - [sym_do_loop_statement] = STATE(6637), - [sym_do_label_statement] = STATE(6637), - [sym_end_do_label_statement] = STATE(6637), - [sym_if_statement] = STATE(6637), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6637), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7203), - [sym_where_statement] = STATE(6637), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6637), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6637), - [sym_select_type_statement] = STATE(6637), - [sym_select_rank_statement] = STATE(6637), - [sym_block_construct] = STATE(6637), - [sym_associate_statement] = STATE(6637), - [sym_format_statement] = STATE(6637), - [sym_read_statement] = STATE(6637), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6637), - [sym_open_statement] = STATE(6637), - [sym_close_statement] = STATE(6637), - [sym_write_statement] = STATE(6637), - [sym_inquire_statement] = STATE(6637), - [sym_file_position_statement] = STATE(6637), - [sym_allocate_statement] = STATE(6637), - [sym_entry_statement] = STATE(6637), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6637), - [sym_coarray_team_statement] = STATE(6637), - [sym_coarray_critical_statement] = STATE(6637), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6563), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6563), + [sym_assignment_statement] = STATE(6563), + [sym_pointer_association_statement] = STATE(6563), + [sym_subroutine_call] = STATE(6563), + [sym_keyword_statement] = STATE(6563), + [sym_include_statement] = STATE(6563), + [sym_do_loop_statement] = STATE(6563), + [sym_do_label_statement] = STATE(6563), + [sym_end_do_label_statement] = STATE(6563), + [sym_if_statement] = STATE(6563), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6563), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7409), + [sym_where_statement] = STATE(6563), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6563), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6563), + [sym_select_type_statement] = STATE(6563), + [sym_select_rank_statement] = STATE(6563), + [sym_block_construct] = STATE(6563), + [sym_associate_statement] = STATE(6563), + [sym_format_statement] = STATE(6563), + [sym_read_statement] = STATE(6563), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6563), + [sym_open_statement] = STATE(6563), + [sym_close_statement] = STATE(6563), + [sym_write_statement] = STATE(6563), + [sym_inquire_statement] = STATE(6563), + [sym_file_position_statement] = STATE(6563), + [sym_allocate_statement] = STATE(6563), + [sym_entry_statement] = STATE(6563), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6563), + [sym_coarray_team_statement] = STATE(6563), + [sym_coarray_critical_statement] = STATE(6563), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4249), + [aux_sym_end_program_statement_token1] = ACTIONS(4251), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -193959,10 +193959,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -193983,9 +193983,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -194023,87 +194023,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [777] = { - [sym__statements] = STATE(6444), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6444), - [sym_assignment_statement] = STATE(6444), - [sym_pointer_association_statement] = STATE(6444), - [sym_subroutine_call] = STATE(6444), - [sym_keyword_statement] = STATE(6444), - [sym_include_statement] = STATE(6444), - [sym_do_loop_statement] = STATE(6444), - [sym_do_label_statement] = STATE(6444), - [sym_end_do_label_statement] = STATE(6444), - [sym_if_statement] = STATE(6444), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6444), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6444), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6444), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6444), - [sym_select_type_statement] = STATE(6444), - [sym_select_rank_statement] = STATE(6444), - [sym_block_construct] = STATE(6444), - [sym_associate_statement] = STATE(6444), - [sym_format_statement] = STATE(6548), - [sym_read_statement] = STATE(6444), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6444), - [sym_open_statement] = STATE(6444), - [sym_close_statement] = STATE(6444), - [sym_write_statement] = STATE(6444), - [sym_inquire_statement] = STATE(6444), - [sym_file_position_statement] = STATE(6444), - [sym_allocate_statement] = STATE(6444), - [sym_entry_statement] = STATE(6444), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6444), - [sym_coarray_team_statement] = STATE(6444), - [sym_coarray_critical_statement] = STATE(6444), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6349), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6349), + [sym_assignment_statement] = STATE(6349), + [sym_pointer_association_statement] = STATE(6349), + [sym_subroutine_call] = STATE(6349), + [sym_keyword_statement] = STATE(6349), + [sym_include_statement] = STATE(6349), + [sym_do_loop_statement] = STATE(6349), + [sym_end_do_loop_statement] = STATE(7085), + [sym_do_label_statement] = STATE(6349), + [sym_end_do_label_statement] = STATE(6349), + [sym_if_statement] = STATE(6349), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6349), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6349), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6349), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6349), + [sym_select_type_statement] = STATE(6349), + [sym_select_rank_statement] = STATE(6349), + [sym_block_construct] = STATE(6349), + [sym_associate_statement] = STATE(6349), + [sym_format_statement] = STATE(6349), + [sym_read_statement] = STATE(6349), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6349), + [sym_open_statement] = STATE(6349), + [sym_close_statement] = STATE(6349), + [sym_write_statement] = STATE(6349), + [sym_inquire_statement] = STATE(6349), + [sym_file_position_statement] = STATE(6349), + [sym_allocate_statement] = STATE(6349), + [sym_entry_statement] = STATE(6349), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6349), + [sym_coarray_team_statement] = STATE(6349), + [sym_coarray_critical_statement] = STATE(6349), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4247), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(4253), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -194115,10 +194115,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -194139,7 +194139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4249), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -194179,83 +194179,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [778] = { - [sym__statements] = STATE(6467), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6467), - [sym_assignment_statement] = STATE(6467), - [sym_pointer_association_statement] = STATE(6467), - [sym_subroutine_call] = STATE(6467), - [sym_keyword_statement] = STATE(6467), - [sym_include_statement] = STATE(6467), - [sym_do_loop_statement] = STATE(6467), - [sym_end_do_loop_statement] = STATE(7107), - [sym_do_label_statement] = STATE(6467), - [sym_end_do_label_statement] = STATE(6467), - [sym_if_statement] = STATE(6467), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6467), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6467), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6467), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6467), - [sym_select_type_statement] = STATE(6467), - [sym_select_rank_statement] = STATE(6467), - [sym_block_construct] = STATE(6467), - [sym_associate_statement] = STATE(6467), - [sym_format_statement] = STATE(6467), - [sym_read_statement] = STATE(6467), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6467), - [sym_open_statement] = STATE(6467), - [sym_close_statement] = STATE(6467), - [sym_write_statement] = STATE(6467), - [sym_inquire_statement] = STATE(6467), - [sym_file_position_statement] = STATE(6467), - [sym_allocate_statement] = STATE(6467), - [sym_entry_statement] = STATE(6467), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6467), - [sym_coarray_team_statement] = STATE(6467), - [sym_coarray_critical_statement] = STATE(6467), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6563), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6563), + [sym_assignment_statement] = STATE(6563), + [sym_pointer_association_statement] = STATE(6563), + [sym_subroutine_call] = STATE(6563), + [sym_keyword_statement] = STATE(6563), + [sym_include_statement] = STATE(6563), + [sym_do_loop_statement] = STATE(6563), + [sym_do_label_statement] = STATE(6563), + [sym_end_do_label_statement] = STATE(6563), + [sym_if_statement] = STATE(6563), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6563), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7117), + [sym_where_statement] = STATE(6563), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6563), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6563), + [sym_select_type_statement] = STATE(6563), + [sym_select_rank_statement] = STATE(6563), + [sym_block_construct] = STATE(6563), + [sym_associate_statement] = STATE(6563), + [sym_format_statement] = STATE(6563), + [sym_read_statement] = STATE(6563), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6563), + [sym_open_statement] = STATE(6563), + [sym_close_statement] = STATE(6563), + [sym_write_statement] = STATE(6563), + [sym_inquire_statement] = STATE(6563), + [sym_file_position_statement] = STATE(6563), + [sym_allocate_statement] = STATE(6563), + [sym_entry_statement] = STATE(6563), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6563), + [sym_coarray_team_statement] = STATE(6563), + [sym_coarray_critical_statement] = STATE(6563), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4243), + [aux_sym_end_program_statement_token1] = ACTIONS(4251), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -194271,10 +194271,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -194295,9 +194295,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4245), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -194335,83 +194335,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [779] = { - [sym__statements] = STATE(6637), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6637), - [sym_assignment_statement] = STATE(6637), - [sym_pointer_association_statement] = STATE(6637), - [sym_subroutine_call] = STATE(6637), - [sym_keyword_statement] = STATE(6637), - [sym_include_statement] = STATE(6637), - [sym_do_loop_statement] = STATE(6637), - [sym_do_label_statement] = STATE(6637), - [sym_end_do_label_statement] = STATE(6637), - [sym_if_statement] = STATE(6637), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6637), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7229), - [sym_where_statement] = STATE(6637), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6637), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6637), - [sym_select_type_statement] = STATE(6637), - [sym_select_rank_statement] = STATE(6637), - [sym_block_construct] = STATE(6637), - [sym_associate_statement] = STATE(6637), - [sym_format_statement] = STATE(6637), - [sym_read_statement] = STATE(6637), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6637), - [sym_open_statement] = STATE(6637), - [sym_close_statement] = STATE(6637), - [sym_write_statement] = STATE(6637), - [sym_inquire_statement] = STATE(6637), - [sym_file_position_statement] = STATE(6637), - [sym_allocate_statement] = STATE(6637), - [sym_entry_statement] = STATE(6637), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6637), - [sym_coarray_team_statement] = STATE(6637), - [sym_coarray_critical_statement] = STATE(6637), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6349), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6349), + [sym_assignment_statement] = STATE(6349), + [sym_pointer_association_statement] = STATE(6349), + [sym_subroutine_call] = STATE(6349), + [sym_keyword_statement] = STATE(6349), + [sym_include_statement] = STATE(6349), + [sym_do_loop_statement] = STATE(6349), + [sym_end_do_loop_statement] = STATE(7092), + [sym_do_label_statement] = STATE(6349), + [sym_end_do_label_statement] = STATE(6349), + [sym_if_statement] = STATE(6349), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6349), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6349), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6349), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6349), + [sym_select_type_statement] = STATE(6349), + [sym_select_rank_statement] = STATE(6349), + [sym_block_construct] = STATE(6349), + [sym_associate_statement] = STATE(6349), + [sym_format_statement] = STATE(6349), + [sym_read_statement] = STATE(6349), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6349), + [sym_open_statement] = STATE(6349), + [sym_close_statement] = STATE(6349), + [sym_write_statement] = STATE(6349), + [sym_inquire_statement] = STATE(6349), + [sym_file_position_statement] = STATE(6349), + [sym_allocate_statement] = STATE(6349), + [sym_entry_statement] = STATE(6349), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6349), + [sym_coarray_team_statement] = STATE(6349), + [sym_coarray_critical_statement] = STATE(6349), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4249), + [aux_sym_end_program_statement_token1] = ACTIONS(4247), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -194427,10 +194427,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -194451,9 +194451,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4249), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), + [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -194491,83 +194491,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [780] = { - [sym__statements] = STATE(6467), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6467), - [sym_assignment_statement] = STATE(6467), - [sym_pointer_association_statement] = STATE(6467), - [sym_subroutine_call] = STATE(6467), - [sym_keyword_statement] = STATE(6467), - [sym_include_statement] = STATE(6467), - [sym_do_loop_statement] = STATE(6467), - [sym_end_do_loop_statement] = STATE(7089), - [sym_do_label_statement] = STATE(6467), - [sym_end_do_label_statement] = STATE(6467), - [sym_if_statement] = STATE(6467), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6467), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6467), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6467), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6467), - [sym_select_type_statement] = STATE(6467), - [sym_select_rank_statement] = STATE(6467), - [sym_block_construct] = STATE(6467), - [sym_associate_statement] = STATE(6467), - [sym_format_statement] = STATE(6467), - [sym_read_statement] = STATE(6467), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6467), - [sym_open_statement] = STATE(6467), - [sym_close_statement] = STATE(6467), - [sym_write_statement] = STATE(6467), - [sym_inquire_statement] = STATE(6467), - [sym_file_position_statement] = STATE(6467), - [sym_allocate_statement] = STATE(6467), - [sym_entry_statement] = STATE(6467), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6467), - [sym_coarray_team_statement] = STATE(6467), - [sym_coarray_critical_statement] = STATE(6467), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6563), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6563), + [sym_assignment_statement] = STATE(6563), + [sym_pointer_association_statement] = STATE(6563), + [sym_subroutine_call] = STATE(6563), + [sym_keyword_statement] = STATE(6563), + [sym_include_statement] = STATE(6563), + [sym_do_loop_statement] = STATE(6563), + [sym_do_label_statement] = STATE(6563), + [sym_end_do_label_statement] = STATE(6563), + [sym_if_statement] = STATE(6563), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6563), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7107), + [sym_where_statement] = STATE(6563), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6563), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6563), + [sym_select_type_statement] = STATE(6563), + [sym_select_rank_statement] = STATE(6563), + [sym_block_construct] = STATE(6563), + [sym_associate_statement] = STATE(6563), + [sym_format_statement] = STATE(6563), + [sym_read_statement] = STATE(6563), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6563), + [sym_open_statement] = STATE(6563), + [sym_close_statement] = STATE(6563), + [sym_write_statement] = STATE(6563), + [sym_inquire_statement] = STATE(6563), + [sym_file_position_statement] = STATE(6563), + [sym_allocate_statement] = STATE(6563), + [sym_entry_statement] = STATE(6563), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6563), + [sym_coarray_team_statement] = STATE(6563), + [sym_coarray_critical_statement] = STATE(6563), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4243), + [aux_sym_end_program_statement_token1] = ACTIONS(4251), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -194583,10 +194583,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -194607,9 +194607,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4245), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -194647,83 +194647,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [781] = { - [sym__statements] = STATE(6467), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6467), - [sym_assignment_statement] = STATE(6467), - [sym_pointer_association_statement] = STATE(6467), - [sym_subroutine_call] = STATE(6467), - [sym_keyword_statement] = STATE(6467), - [sym_include_statement] = STATE(6467), - [sym_do_loop_statement] = STATE(6467), - [sym_end_do_loop_statement] = STATE(7353), - [sym_do_label_statement] = STATE(6467), - [sym_end_do_label_statement] = STATE(6467), - [sym_if_statement] = STATE(6467), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6467), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6467), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6467), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6467), - [sym_select_type_statement] = STATE(6467), - [sym_select_rank_statement] = STATE(6467), - [sym_block_construct] = STATE(6467), - [sym_associate_statement] = STATE(6467), - [sym_format_statement] = STATE(6467), - [sym_read_statement] = STATE(6467), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6467), - [sym_open_statement] = STATE(6467), - [sym_close_statement] = STATE(6467), - [sym_write_statement] = STATE(6467), - [sym_inquire_statement] = STATE(6467), - [sym_file_position_statement] = STATE(6467), - [sym_allocate_statement] = STATE(6467), - [sym_entry_statement] = STATE(6467), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6467), - [sym_coarray_team_statement] = STATE(6467), - [sym_coarray_critical_statement] = STATE(6467), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6349), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6349), + [sym_assignment_statement] = STATE(6349), + [sym_pointer_association_statement] = STATE(6349), + [sym_subroutine_call] = STATE(6349), + [sym_keyword_statement] = STATE(6349), + [sym_include_statement] = STATE(6349), + [sym_do_loop_statement] = STATE(6349), + [sym_end_do_loop_statement] = STATE(7429), + [sym_do_label_statement] = STATE(6349), + [sym_end_do_label_statement] = STATE(6349), + [sym_if_statement] = STATE(6349), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6349), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6349), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6349), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6349), + [sym_select_type_statement] = STATE(6349), + [sym_select_rank_statement] = STATE(6349), + [sym_block_construct] = STATE(6349), + [sym_associate_statement] = STATE(6349), + [sym_format_statement] = STATE(6349), + [sym_read_statement] = STATE(6349), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6349), + [sym_open_statement] = STATE(6349), + [sym_close_statement] = STATE(6349), + [sym_write_statement] = STATE(6349), + [sym_inquire_statement] = STATE(6349), + [sym_file_position_statement] = STATE(6349), + [sym_allocate_statement] = STATE(6349), + [sym_entry_statement] = STATE(6349), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6349), + [sym_coarray_team_statement] = STATE(6349), + [sym_coarray_critical_statement] = STATE(6349), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4243), + [aux_sym_end_program_statement_token1] = ACTIONS(4247), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -194739,10 +194739,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -194763,7 +194763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4245), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4249), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -194803,83 +194803,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [782] = { - [sym__statements] = STATE(6467), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6467), - [sym_assignment_statement] = STATE(6467), - [sym_pointer_association_statement] = STATE(6467), - [sym_subroutine_call] = STATE(6467), - [sym_keyword_statement] = STATE(6467), - [sym_include_statement] = STATE(6467), - [sym_do_loop_statement] = STATE(6467), - [sym_end_do_loop_statement] = STATE(7389), - [sym_do_label_statement] = STATE(6467), - [sym_end_do_label_statement] = STATE(6467), - [sym_if_statement] = STATE(6467), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6467), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6467), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6467), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6467), - [sym_select_type_statement] = STATE(6467), - [sym_select_rank_statement] = STATE(6467), - [sym_block_construct] = STATE(6467), - [sym_associate_statement] = STATE(6467), - [sym_format_statement] = STATE(6467), - [sym_read_statement] = STATE(6467), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6467), - [sym_open_statement] = STATE(6467), - [sym_close_statement] = STATE(6467), - [sym_write_statement] = STATE(6467), - [sym_inquire_statement] = STATE(6467), - [sym_file_position_statement] = STATE(6467), - [sym_allocate_statement] = STATE(6467), - [sym_entry_statement] = STATE(6467), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6467), - [sym_coarray_team_statement] = STATE(6467), - [sym_coarray_critical_statement] = STATE(6467), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6563), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6563), + [sym_assignment_statement] = STATE(6563), + [sym_pointer_association_statement] = STATE(6563), + [sym_subroutine_call] = STATE(6563), + [sym_keyword_statement] = STATE(6563), + [sym_include_statement] = STATE(6563), + [sym_do_loop_statement] = STATE(6563), + [sym_do_label_statement] = STATE(6563), + [sym_end_do_label_statement] = STATE(6563), + [sym_if_statement] = STATE(6563), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6563), + [sym__block_if_statement] = STATE(7132), + [sym_end_if_statement] = STATE(7208), + [sym_where_statement] = STATE(6563), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6563), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6563), + [sym_select_type_statement] = STATE(6563), + [sym_select_rank_statement] = STATE(6563), + [sym_block_construct] = STATE(6563), + [sym_associate_statement] = STATE(6563), + [sym_format_statement] = STATE(6563), + [sym_read_statement] = STATE(6563), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6563), + [sym_open_statement] = STATE(6563), + [sym_close_statement] = STATE(6563), + [sym_write_statement] = STATE(6563), + [sym_inquire_statement] = STATE(6563), + [sym_file_position_statement] = STATE(6563), + [sym_allocate_statement] = STATE(6563), + [sym_entry_statement] = STATE(6563), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6563), + [sym_coarray_team_statement] = STATE(6563), + [sym_coarray_critical_statement] = STATE(6563), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4243), + [aux_sym_end_program_statement_token1] = ACTIONS(4251), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -194895,10 +194895,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -194919,9 +194919,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4245), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(2700), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -194959,83 +194959,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [783] = { - [sym__statements] = STATE(6637), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6637), - [sym_assignment_statement] = STATE(6637), - [sym_pointer_association_statement] = STATE(6637), - [sym_subroutine_call] = STATE(6637), - [sym_keyword_statement] = STATE(6637), - [sym_include_statement] = STATE(6637), - [sym_do_loop_statement] = STATE(6637), - [sym_do_label_statement] = STATE(6637), - [sym_end_do_label_statement] = STATE(6637), - [sym_if_statement] = STATE(6637), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6637), - [sym__block_if_statement] = STATE(7095), - [sym_end_if_statement] = STATE(7084), - [sym_where_statement] = STATE(6637), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6637), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6637), - [sym_select_type_statement] = STATE(6637), - [sym_select_rank_statement] = STATE(6637), - [sym_block_construct] = STATE(6637), - [sym_associate_statement] = STATE(6637), - [sym_format_statement] = STATE(6637), - [sym_read_statement] = STATE(6637), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6637), - [sym_open_statement] = STATE(6637), - [sym_close_statement] = STATE(6637), - [sym_write_statement] = STATE(6637), - [sym_inquire_statement] = STATE(6637), - [sym_file_position_statement] = STATE(6637), - [sym_allocate_statement] = STATE(6637), - [sym_entry_statement] = STATE(6637), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6637), - [sym_coarray_team_statement] = STATE(6637), - [sym_coarray_critical_statement] = STATE(6637), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(7211), + [sym_statement_label] = STATE(6742), + [sym_statement_label_reference] = STATE(7597), + [sym_stop_statement] = STATE(7211), + [sym_assignment_statement] = STATE(7211), + [sym_pointer_association_statement] = STATE(7211), + [sym_subroutine_call] = STATE(7211), + [sym_keyword_statement] = STATE(7211), + [sym_include_statement] = STATE(7211), + [sym_do_loop_statement] = STATE(7211), + [sym_do_label_statement] = STATE(7211), + [sym_end_do_label_statement] = STATE(7211), + [sym_if_statement] = STATE(7211), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(7211), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(7211), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(7211), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(7211), + [sym_select_type_statement] = STATE(7211), + [sym_select_rank_statement] = STATE(7211), + [sym_block_construct] = STATE(7211), + [sym_associate_statement] = STATE(7211), + [sym_format_statement] = STATE(7211), + [sym_read_statement] = STATE(7211), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(7211), + [sym_open_statement] = STATE(7211), + [sym_close_statement] = STATE(7211), + [sym_write_statement] = STATE(7211), + [sym_inquire_statement] = STATE(7211), + [sym_file_position_statement] = STATE(7211), + [sym_allocate_statement] = STATE(7211), + [sym_entry_statement] = STATE(7211), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(7211), + [sym_coarray_team_statement] = STATE(7211), + [sym_coarray_critical_statement] = STATE(7211), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4249), + [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -195051,10 +195051,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -195075,9 +195075,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), [aux_sym__inline_if_statement_token1] = ACTIONS(121), - [aux_sym_end_if_statement_token1] = ACTIONS(2676), + [aux_sym__block_if_statement_token1] = ACTIONS(4253), + [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), [aux_sym__inline_where_statement_token1] = ACTIONS(123), [aux_sym__forall_control_expression_token1] = ACTIONS(125), @@ -195115,87 +195115,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [784] = { - [sym__statements] = STATE(6931), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6931), - [sym_assignment_statement] = STATE(6931), - [sym_pointer_association_statement] = STATE(6931), - [sym_subroutine_call] = STATE(6931), - [sym_keyword_statement] = STATE(6931), - [sym_include_statement] = STATE(6931), - [sym_do_loop_statement] = STATE(6931), - [sym_do_label_statement] = STATE(6931), - [sym_end_do_label_statement] = STATE(6931), - [sym_if_statement] = STATE(6931), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6931), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6931), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6931), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6931), - [sym_select_type_statement] = STATE(6931), - [sym_select_rank_statement] = STATE(6931), - [sym_block_construct] = STATE(6931), - [sym_associate_statement] = STATE(6931), - [sym_format_statement] = STATE(6932), - [sym_read_statement] = STATE(6931), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6931), - [sym_open_statement] = STATE(6931), - [sym_close_statement] = STATE(6931), - [sym_write_statement] = STATE(6931), - [sym_inquire_statement] = STATE(6931), - [sym_file_position_statement] = STATE(6931), - [sym_allocate_statement] = STATE(6931), - [sym_entry_statement] = STATE(6931), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6931), - [sym_coarray_team_statement] = STATE(6931), - [sym_coarray_critical_statement] = STATE(6931), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6349), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6349), + [sym_assignment_statement] = STATE(6349), + [sym_pointer_association_statement] = STATE(6349), + [sym_subroutine_call] = STATE(6349), + [sym_keyword_statement] = STATE(6349), + [sym_include_statement] = STATE(6349), + [sym_do_loop_statement] = STATE(6349), + [sym_end_do_loop_statement] = STATE(7403), + [sym_do_label_statement] = STATE(6349), + [sym_end_do_label_statement] = STATE(6349), + [sym_if_statement] = STATE(6349), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6349), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6349), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6349), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6349), + [sym_select_type_statement] = STATE(6349), + [sym_select_rank_statement] = STATE(6349), + [sym_block_construct] = STATE(6349), + [sym_associate_statement] = STATE(6349), + [sym_format_statement] = STATE(6349), + [sym_read_statement] = STATE(6349), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6349), + [sym_open_statement] = STATE(6349), + [sym_close_statement] = STATE(6349), + [sym_write_statement] = STATE(6349), + [sym_inquire_statement] = STATE(6349), + [sym_file_position_statement] = STATE(6349), + [sym_allocate_statement] = STATE(6349), + [sym_entry_statement] = STATE(6349), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6349), + [sym_coarray_team_statement] = STATE(6349), + [sym_coarray_critical_statement] = STATE(6349), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4247), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(4253), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -195207,10 +195207,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -195231,7 +195231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4249), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -195271,87 +195271,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [785] = { - [sym__statements] = STATE(7039), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(7039), - [sym_assignment_statement] = STATE(7039), - [sym_pointer_association_statement] = STATE(7039), - [sym_subroutine_call] = STATE(7039), - [sym_keyword_statement] = STATE(7039), - [sym_include_statement] = STATE(7039), - [sym_do_loop_statement] = STATE(7039), - [sym_do_label_statement] = STATE(7039), - [sym_end_do_label_statement] = STATE(7039), - [sym_if_statement] = STATE(7039), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7039), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7039), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7039), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7039), - [sym_select_type_statement] = STATE(7039), - [sym_select_rank_statement] = STATE(7039), - [sym_block_construct] = STATE(7039), - [sym_associate_statement] = STATE(7039), - [sym_format_statement] = STATE(6284), - [sym_read_statement] = STATE(7039), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7039), - [sym_open_statement] = STATE(7039), - [sym_close_statement] = STATE(7039), - [sym_write_statement] = STATE(7039), - [sym_inquire_statement] = STATE(7039), - [sym_file_position_statement] = STATE(7039), - [sym_allocate_statement] = STATE(7039), - [sym_entry_statement] = STATE(7039), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7039), - [sym_coarray_team_statement] = STATE(7039), - [sym_coarray_critical_statement] = STATE(7039), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6505), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6505), + [sym_assignment_statement] = STATE(6505), + [sym_pointer_association_statement] = STATE(6505), + [sym_subroutine_call] = STATE(6505), + [sym_keyword_statement] = STATE(6505), + [sym_include_statement] = STATE(6505), + [sym_do_loop_statement] = STATE(6505), + [sym_do_label_statement] = STATE(6505), + [sym_end_do_label_statement] = STATE(6505), + [sym_if_statement] = STATE(6505), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6505), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6505), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6505), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6505), + [sym_select_type_statement] = STATE(6505), + [sym_select_rank_statement] = STATE(6505), + [sym_block_construct] = STATE(6505), + [sym_associate_statement] = STATE(6505), + [sym_format_statement] = STATE(6378), + [sym_read_statement] = STATE(6505), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6505), + [sym_open_statement] = STATE(6505), + [sym_close_statement] = STATE(6505), + [sym_write_statement] = STATE(6505), + [sym_inquire_statement] = STATE(6505), + [sym_file_position_statement] = STATE(6505), + [sym_allocate_statement] = STATE(6505), + [sym_entry_statement] = STATE(6505), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6505), + [sym_coarray_team_statement] = STATE(6505), + [sym_coarray_critical_statement] = STATE(6505), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(4253), + [aux_sym_implicit_statement_token3] = ACTIONS(4245), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -195363,10 +195363,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -195387,7 +195387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -195427,87 +195427,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [786] = { - [sym__statements] = STATE(6874), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6874), - [sym_assignment_statement] = STATE(6874), - [sym_pointer_association_statement] = STATE(6874), - [sym_subroutine_call] = STATE(6874), - [sym_keyword_statement] = STATE(6874), - [sym_include_statement] = STATE(6874), - [sym_do_loop_statement] = STATE(6874), - [sym_do_label_statement] = STATE(6874), - [sym_end_do_label_statement] = STATE(6874), - [sym_if_statement] = STATE(6874), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6874), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6874), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6874), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6874), - [sym_select_type_statement] = STATE(6874), - [sym_select_rank_statement] = STATE(6874), - [sym_block_construct] = STATE(6874), - [sym_associate_statement] = STATE(6874), - [sym_format_statement] = STATE(6473), - [sym_read_statement] = STATE(6874), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6874), - [sym_open_statement] = STATE(6874), - [sym_close_statement] = STATE(6874), - [sym_write_statement] = STATE(6874), - [sym_inquire_statement] = STATE(6874), - [sym_file_position_statement] = STATE(6874), - [sym_allocate_statement] = STATE(6874), - [sym_entry_statement] = STATE(6874), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6874), - [sym_coarray_team_statement] = STATE(6874), - [sym_coarray_critical_statement] = STATE(6874), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6499), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6499), + [sym_assignment_statement] = STATE(6499), + [sym_pointer_association_statement] = STATE(6499), + [sym_subroutine_call] = STATE(6499), + [sym_keyword_statement] = STATE(6499), + [sym_include_statement] = STATE(6499), + [sym_do_loop_statement] = STATE(6499), + [sym_do_label_statement] = STATE(6499), + [sym_end_do_label_statement] = STATE(6499), + [sym_if_statement] = STATE(6499), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6499), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6499), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6499), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6499), + [sym_select_type_statement] = STATE(6499), + [sym_select_rank_statement] = STATE(6499), + [sym_block_construct] = STATE(6499), + [sym_associate_statement] = STATE(6499), + [sym_format_statement] = STATE(6500), + [sym_read_statement] = STATE(6499), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6499), + [sym_open_statement] = STATE(6499), + [sym_close_statement] = STATE(6499), + [sym_write_statement] = STATE(6499), + [sym_inquire_statement] = STATE(6499), + [sym_file_position_statement] = STATE(6499), + [sym_allocate_statement] = STATE(6499), + [sym_entry_statement] = STATE(6499), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6499), + [sym_coarray_team_statement] = STATE(6499), + [sym_coarray_critical_statement] = STATE(6499), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(4253), + [aux_sym_implicit_statement_token3] = ACTIONS(4245), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -195519,10 +195519,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -195543,7 +195543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -195583,87 +195583,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [787] = { - [sym__statements] = STATE(6636), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6636), - [sym_assignment_statement] = STATE(6636), - [sym_pointer_association_statement] = STATE(6636), - [sym_subroutine_call] = STATE(6636), - [sym_keyword_statement] = STATE(6636), - [sym_include_statement] = STATE(6636), - [sym_do_loop_statement] = STATE(6636), - [sym_do_label_statement] = STATE(6636), - [sym_end_do_label_statement] = STATE(6636), - [sym_if_statement] = STATE(6636), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6636), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6636), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6636), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6636), - [sym_select_type_statement] = STATE(6636), - [sym_select_rank_statement] = STATE(6636), - [sym_block_construct] = STATE(6636), - [sym_associate_statement] = STATE(6636), - [sym_format_statement] = STATE(6532), - [sym_read_statement] = STATE(6636), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6636), - [sym_open_statement] = STATE(6636), - [sym_close_statement] = STATE(6636), - [sym_write_statement] = STATE(6636), - [sym_inquire_statement] = STATE(6636), - [sym_file_position_statement] = STATE(6636), - [sym_allocate_statement] = STATE(6636), - [sym_entry_statement] = STATE(6636), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6636), - [sym_coarray_team_statement] = STATE(6636), - [sym_coarray_critical_statement] = STATE(6636), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6383), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6383), + [sym_assignment_statement] = STATE(6383), + [sym_pointer_association_statement] = STATE(6383), + [sym_subroutine_call] = STATE(6383), + [sym_keyword_statement] = STATE(6383), + [sym_include_statement] = STATE(6383), + [sym_do_loop_statement] = STATE(6383), + [sym_do_label_statement] = STATE(6383), + [sym_end_do_label_statement] = STATE(6383), + [sym_if_statement] = STATE(6383), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6383), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6383), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6383), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6383), + [sym_select_type_statement] = STATE(6383), + [sym_select_rank_statement] = STATE(6383), + [sym_block_construct] = STATE(6383), + [sym_associate_statement] = STATE(6383), + [sym_format_statement] = STATE(6839), + [sym_read_statement] = STATE(6383), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6383), + [sym_open_statement] = STATE(6383), + [sym_close_statement] = STATE(6383), + [sym_write_statement] = STATE(6383), + [sym_inquire_statement] = STATE(6383), + [sym_file_position_statement] = STATE(6383), + [sym_allocate_statement] = STATE(6383), + [sym_entry_statement] = STATE(6383), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6383), + [sym_coarray_team_statement] = STATE(6383), + [sym_coarray_critical_statement] = STATE(6383), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(4253), + [aux_sym_implicit_statement_token3] = ACTIONS(4245), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -195675,10 +195675,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -195699,7 +195699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -195739,87 +195739,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [788] = { - [sym__statements] = STATE(6409), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6409), - [sym_assignment_statement] = STATE(6409), - [sym_pointer_association_statement] = STATE(6409), - [sym_subroutine_call] = STATE(6409), - [sym_keyword_statement] = STATE(6409), - [sym_include_statement] = STATE(6409), - [sym_do_loop_statement] = STATE(6409), - [sym_do_label_statement] = STATE(6409), - [sym_end_do_label_statement] = STATE(6409), - [sym_if_statement] = STATE(6409), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6409), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6409), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6409), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6409), - [sym_select_type_statement] = STATE(6409), - [sym_select_rank_statement] = STATE(6409), - [sym_block_construct] = STATE(6409), - [sym_associate_statement] = STATE(6409), - [sym_format_statement] = STATE(6348), - [sym_read_statement] = STATE(6409), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6409), - [sym_open_statement] = STATE(6409), - [sym_close_statement] = STATE(6409), - [sym_write_statement] = STATE(6409), - [sym_inquire_statement] = STATE(6409), - [sym_file_position_statement] = STATE(6409), - [sym_allocate_statement] = STATE(6409), - [sym_entry_statement] = STATE(6409), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6409), - [sym_coarray_team_statement] = STATE(6409), - [sym_coarray_critical_statement] = STATE(6409), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6685), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6685), + [sym_assignment_statement] = STATE(6685), + [sym_pointer_association_statement] = STATE(6685), + [sym_subroutine_call] = STATE(6685), + [sym_keyword_statement] = STATE(6685), + [sym_include_statement] = STATE(6685), + [sym_do_loop_statement] = STATE(6685), + [sym_do_label_statement] = STATE(6685), + [sym_end_do_label_statement] = STATE(6685), + [sym_if_statement] = STATE(6685), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6685), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6685), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6685), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6685), + [sym_select_type_statement] = STATE(6685), + [sym_select_rank_statement] = STATE(6685), + [sym_block_construct] = STATE(6685), + [sym_associate_statement] = STATE(6685), + [sym_format_statement] = STATE(6351), + [sym_read_statement] = STATE(6685), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6685), + [sym_open_statement] = STATE(6685), + [sym_close_statement] = STATE(6685), + [sym_write_statement] = STATE(6685), + [sym_inquire_statement] = STATE(6685), + [sym_file_position_statement] = STATE(6685), + [sym_allocate_statement] = STATE(6685), + [sym_entry_statement] = STATE(6685), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6685), + [sym_coarray_team_statement] = STATE(6685), + [sym_coarray_critical_statement] = STATE(6685), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(4253), + [aux_sym_implicit_statement_token3] = ACTIONS(4245), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -195831,10 +195831,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -195855,7 +195855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -195895,87 +195895,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [789] = { - [sym__statements] = STATE(6470), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6470), - [sym_assignment_statement] = STATE(6470), - [sym_pointer_association_statement] = STATE(6470), - [sym_subroutine_call] = STATE(6470), - [sym_keyword_statement] = STATE(6470), - [sym_include_statement] = STATE(6470), - [sym_do_loop_statement] = STATE(6470), - [sym_do_label_statement] = STATE(6470), - [sym_end_do_label_statement] = STATE(6470), - [sym_if_statement] = STATE(6470), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6470), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6470), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6470), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6470), - [sym_select_type_statement] = STATE(6470), - [sym_select_rank_statement] = STATE(6470), - [sym_block_construct] = STATE(6470), - [sym_associate_statement] = STATE(6470), - [sym_format_statement] = STATE(6410), - [sym_read_statement] = STATE(6470), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6470), - [sym_open_statement] = STATE(6470), - [sym_close_statement] = STATE(6470), - [sym_write_statement] = STATE(6470), - [sym_inquire_statement] = STATE(6470), - [sym_file_position_statement] = STATE(6470), - [sym_allocate_statement] = STATE(6470), - [sym_entry_statement] = STATE(6470), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6470), - [sym_coarray_team_statement] = STATE(6470), - [sym_coarray_critical_statement] = STATE(6470), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6460), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6460), + [sym_assignment_statement] = STATE(6460), + [sym_pointer_association_statement] = STATE(6460), + [sym_subroutine_call] = STATE(6460), + [sym_keyword_statement] = STATE(6460), + [sym_include_statement] = STATE(6460), + [sym_do_loop_statement] = STATE(6460), + [sym_do_label_statement] = STATE(6460), + [sym_end_do_label_statement] = STATE(6460), + [sym_if_statement] = STATE(6460), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6460), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6460), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6460), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6460), + [sym_select_type_statement] = STATE(6460), + [sym_select_rank_statement] = STATE(6460), + [sym_block_construct] = STATE(6460), + [sym_associate_statement] = STATE(6460), + [sym_format_statement] = STATE(6448), + [sym_read_statement] = STATE(6460), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6460), + [sym_open_statement] = STATE(6460), + [sym_close_statement] = STATE(6460), + [sym_write_statement] = STATE(6460), + [sym_inquire_statement] = STATE(6460), + [sym_file_position_statement] = STATE(6460), + [sym_allocate_statement] = STATE(6460), + [sym_entry_statement] = STATE(6460), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6460), + [sym_coarray_team_statement] = STATE(6460), + [sym_coarray_critical_statement] = STATE(6460), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(4253), + [aux_sym_implicit_statement_token3] = ACTIONS(4245), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -195987,10 +195987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -196011,7 +196011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -196051,87 +196051,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [790] = { - [sym__statements] = STATE(6588), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6588), - [sym_assignment_statement] = STATE(6588), - [sym_pointer_association_statement] = STATE(6588), - [sym_subroutine_call] = STATE(6588), - [sym_keyword_statement] = STATE(6588), - [sym_include_statement] = STATE(6588), - [sym_do_loop_statement] = STATE(6588), - [sym_do_label_statement] = STATE(6588), - [sym_end_do_label_statement] = STATE(6588), - [sym_if_statement] = STATE(6588), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6588), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6588), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6588), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6588), - [sym_select_type_statement] = STATE(6588), - [sym_select_rank_statement] = STATE(6588), - [sym_block_construct] = STATE(6588), - [sym_associate_statement] = STATE(6588), - [sym_format_statement] = STATE(6471), - [sym_read_statement] = STATE(6588), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6588), - [sym_open_statement] = STATE(6588), - [sym_close_statement] = STATE(6588), - [sym_write_statement] = STATE(6588), - [sym_inquire_statement] = STATE(6588), - [sym_file_position_statement] = STATE(6588), - [sym_allocate_statement] = STATE(6588), - [sym_entry_statement] = STATE(6588), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6588), - [sym_coarray_team_statement] = STATE(6588), - [sym_coarray_critical_statement] = STATE(6588), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6307), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6307), + [sym_assignment_statement] = STATE(6307), + [sym_pointer_association_statement] = STATE(6307), + [sym_subroutine_call] = STATE(6307), + [sym_keyword_statement] = STATE(6307), + [sym_include_statement] = STATE(6307), + [sym_do_loop_statement] = STATE(6307), + [sym_do_label_statement] = STATE(6307), + [sym_end_do_label_statement] = STATE(6307), + [sym_if_statement] = STATE(6307), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6307), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6307), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6307), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6307), + [sym_select_type_statement] = STATE(6307), + [sym_select_rank_statement] = STATE(6307), + [sym_block_construct] = STATE(6307), + [sym_associate_statement] = STATE(6307), + [sym_format_statement] = STATE(7013), + [sym_read_statement] = STATE(6307), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6307), + [sym_open_statement] = STATE(6307), + [sym_close_statement] = STATE(6307), + [sym_write_statement] = STATE(6307), + [sym_inquire_statement] = STATE(6307), + [sym_file_position_statement] = STATE(6307), + [sym_allocate_statement] = STATE(6307), + [sym_entry_statement] = STATE(6307), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6307), + [sym_coarray_team_statement] = STATE(6307), + [sym_coarray_critical_statement] = STATE(6307), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(4253), + [aux_sym_implicit_statement_token3] = ACTIONS(4245), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -196143,10 +196143,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -196167,7 +196167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -196207,87 +196207,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [791] = { - [sym__statements] = STATE(6359), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6359), - [sym_assignment_statement] = STATE(6359), - [sym_pointer_association_statement] = STATE(6359), - [sym_subroutine_call] = STATE(6359), - [sym_keyword_statement] = STATE(6359), - [sym_include_statement] = STATE(6359), - [sym_do_loop_statement] = STATE(6359), - [sym_do_label_statement] = STATE(6359), - [sym_end_do_label_statement] = STATE(6359), - [sym_if_statement] = STATE(6359), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6359), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6359), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6359), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6359), - [sym_select_type_statement] = STATE(6359), - [sym_select_rank_statement] = STATE(6359), - [sym_block_construct] = STATE(6359), - [sym_associate_statement] = STATE(6359), - [sym_format_statement] = STATE(6879), - [sym_read_statement] = STATE(6359), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6359), - [sym_open_statement] = STATE(6359), - [sym_close_statement] = STATE(6359), - [sym_write_statement] = STATE(6359), - [sym_inquire_statement] = STATE(6359), - [sym_file_position_statement] = STATE(6359), - [sym_allocate_statement] = STATE(6359), - [sym_entry_statement] = STATE(6359), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6359), - [sym_coarray_team_statement] = STATE(6359), - [sym_coarray_critical_statement] = STATE(6359), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6377), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6377), + [sym_assignment_statement] = STATE(6377), + [sym_pointer_association_statement] = STATE(6377), + [sym_subroutine_call] = STATE(6377), + [sym_keyword_statement] = STATE(6377), + [sym_include_statement] = STATE(6377), + [sym_do_loop_statement] = STATE(6377), + [sym_do_label_statement] = STATE(6377), + [sym_end_do_label_statement] = STATE(6377), + [sym_if_statement] = STATE(6377), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6377), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6377), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6377), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6377), + [sym_select_type_statement] = STATE(6377), + [sym_select_rank_statement] = STATE(6377), + [sym_block_construct] = STATE(6377), + [sym_associate_statement] = STATE(6377), + [sym_format_statement] = STATE(6308), + [sym_read_statement] = STATE(6377), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6377), + [sym_open_statement] = STATE(6377), + [sym_close_statement] = STATE(6377), + [sym_write_statement] = STATE(6377), + [sym_inquire_statement] = STATE(6377), + [sym_file_position_statement] = STATE(6377), + [sym_allocate_statement] = STATE(6377), + [sym_entry_statement] = STATE(6377), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6377), + [sym_coarray_team_statement] = STATE(6377), + [sym_coarray_critical_statement] = STATE(6377), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(4253), + [aux_sym_implicit_statement_token3] = ACTIONS(4245), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -196299,10 +196299,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -196323,7 +196323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -196363,82 +196363,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [792] = { - [sym__statements] = STATE(6793), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6793), - [sym_assignment_statement] = STATE(6793), - [sym_pointer_association_statement] = STATE(6793), - [sym_subroutine_call] = STATE(6793), - [sym_keyword_statement] = STATE(6793), - [sym_include_statement] = STATE(6793), - [sym_do_loop_statement] = STATE(6793), - [sym_do_label_statement] = STATE(6793), - [sym_end_do_label_statement] = STATE(6793), - [sym_if_statement] = STATE(6793), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6793), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6793), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6793), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6793), - [sym_select_type_statement] = STATE(6793), - [sym_select_rank_statement] = STATE(6793), - [sym_block_construct] = STATE(6793), - [sym_associate_statement] = STATE(6793), - [sym_format_statement] = STATE(6793), - [sym_read_statement] = STATE(6793), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6793), - [sym_open_statement] = STATE(6793), - [sym_close_statement] = STATE(6793), - [sym_write_statement] = STATE(6793), - [sym_inquire_statement] = STATE(6793), - [sym_file_position_statement] = STATE(6793), - [sym_allocate_statement] = STATE(6793), - [sym_entry_statement] = STATE(6793), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6793), - [sym_coarray_team_statement] = STATE(6793), - [sym_coarray_critical_statement] = STATE(6793), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(7011), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(7011), + [sym_assignment_statement] = STATE(7011), + [sym_pointer_association_statement] = STATE(7011), + [sym_subroutine_call] = STATE(7011), + [sym_keyword_statement] = STATE(7011), + [sym_include_statement] = STATE(7011), + [sym_do_loop_statement] = STATE(7011), + [sym_do_label_statement] = STATE(7011), + [sym_end_do_label_statement] = STATE(7011), + [sym_if_statement] = STATE(7011), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(7011), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(7011), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(7011), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(7011), + [sym_select_type_statement] = STATE(7011), + [sym_select_rank_statement] = STATE(7011), + [sym_block_construct] = STATE(7011), + [sym_associate_statement] = STATE(7011), + [sym_format_statement] = STATE(7011), + [sym_read_statement] = STATE(7011), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(7011), + [sym_open_statement] = STATE(7011), + [sym_close_statement] = STATE(7011), + [sym_write_statement] = STATE(7011), + [sym_inquire_statement] = STATE(7011), + [sym_file_position_statement] = STATE(7011), + [sym_allocate_statement] = STATE(7011), + [sym_entry_statement] = STATE(7011), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(7011), + [sym_coarray_team_statement] = STATE(7011), + [sym_coarray_critical_statement] = STATE(7011), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -196454,10 +196454,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -196478,7 +196478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -196518,82 +196518,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [793] = { - [sym__statements] = STATE(6444), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6444), - [sym_assignment_statement] = STATE(6444), - [sym_pointer_association_statement] = STATE(6444), - [sym_subroutine_call] = STATE(6444), - [sym_keyword_statement] = STATE(6444), - [sym_include_statement] = STATE(6444), - [sym_do_loop_statement] = STATE(6444), - [sym_do_label_statement] = STATE(6444), - [sym_end_do_label_statement] = STATE(6444), - [sym_if_statement] = STATE(6444), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6444), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6444), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6444), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6444), - [sym_select_type_statement] = STATE(6444), - [sym_select_rank_statement] = STATE(6444), - [sym_block_construct] = STATE(6444), - [sym_associate_statement] = STATE(6444), - [sym_format_statement] = STATE(6444), - [sym_read_statement] = STATE(6444), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6444), - [sym_open_statement] = STATE(6444), - [sym_close_statement] = STATE(6444), - [sym_write_statement] = STATE(6444), - [sym_inquire_statement] = STATE(6444), - [sym_file_position_statement] = STATE(6444), - [sym_allocate_statement] = STATE(6444), - [sym_entry_statement] = STATE(6444), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6444), - [sym_coarray_team_statement] = STATE(6444), - [sym_coarray_critical_statement] = STATE(6444), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6383), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6383), + [sym_assignment_statement] = STATE(6383), + [sym_pointer_association_statement] = STATE(6383), + [sym_subroutine_call] = STATE(6383), + [sym_keyword_statement] = STATE(6383), + [sym_include_statement] = STATE(6383), + [sym_do_loop_statement] = STATE(6383), + [sym_do_label_statement] = STATE(6383), + [sym_end_do_label_statement] = STATE(6383), + [sym_if_statement] = STATE(6383), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6383), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6383), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6383), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6383), + [sym_select_type_statement] = STATE(6383), + [sym_select_rank_statement] = STATE(6383), + [sym_block_construct] = STATE(6383), + [sym_associate_statement] = STATE(6383), + [sym_format_statement] = STATE(6383), + [sym_read_statement] = STATE(6383), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6383), + [sym_open_statement] = STATE(6383), + [sym_close_statement] = STATE(6383), + [sym_write_statement] = STATE(6383), + [sym_inquire_statement] = STATE(6383), + [sym_file_position_statement] = STATE(6383), + [sym_allocate_statement] = STATE(6383), + [sym_entry_statement] = STATE(6383), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6383), + [sym_coarray_team_statement] = STATE(6383), + [sym_coarray_critical_statement] = STATE(6383), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -196609,10 +196609,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -196633,7 +196633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -196673,82 +196673,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [794] = { - [sym__statements] = STATE(6931), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6931), - [sym_assignment_statement] = STATE(6931), - [sym_pointer_association_statement] = STATE(6931), - [sym_subroutine_call] = STATE(6931), - [sym_keyword_statement] = STATE(6931), - [sym_include_statement] = STATE(6931), - [sym_do_loop_statement] = STATE(6931), - [sym_do_label_statement] = STATE(6931), - [sym_end_do_label_statement] = STATE(6931), - [sym_if_statement] = STATE(6931), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6931), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6931), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6931), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6931), - [sym_select_type_statement] = STATE(6931), - [sym_select_rank_statement] = STATE(6931), - [sym_block_construct] = STATE(6931), - [sym_associate_statement] = STATE(6931), - [sym_format_statement] = STATE(6931), - [sym_read_statement] = STATE(6931), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6931), - [sym_open_statement] = STATE(6931), - [sym_close_statement] = STATE(6931), - [sym_write_statement] = STATE(6931), - [sym_inquire_statement] = STATE(6931), - [sym_file_position_statement] = STATE(6931), - [sym_allocate_statement] = STATE(6931), - [sym_entry_statement] = STATE(6931), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6931), - [sym_coarray_team_statement] = STATE(6931), - [sym_coarray_critical_statement] = STATE(6931), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6425), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6425), + [sym_assignment_statement] = STATE(6425), + [sym_pointer_association_statement] = STATE(6425), + [sym_subroutine_call] = STATE(6425), + [sym_keyword_statement] = STATE(6425), + [sym_include_statement] = STATE(6425), + [sym_do_loop_statement] = STATE(6425), + [sym_do_label_statement] = STATE(6425), + [sym_end_do_label_statement] = STATE(6425), + [sym_if_statement] = STATE(6425), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6425), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6425), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6425), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6425), + [sym_select_type_statement] = STATE(6425), + [sym_select_rank_statement] = STATE(6425), + [sym_block_construct] = STATE(6425), + [sym_associate_statement] = STATE(6425), + [sym_format_statement] = STATE(6425), + [sym_read_statement] = STATE(6425), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6425), + [sym_open_statement] = STATE(6425), + [sym_close_statement] = STATE(6425), + [sym_write_statement] = STATE(6425), + [sym_inquire_statement] = STATE(6425), + [sym_file_position_statement] = STATE(6425), + [sym_allocate_statement] = STATE(6425), + [sym_entry_statement] = STATE(6425), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6425), + [sym_coarray_team_statement] = STATE(6425), + [sym_coarray_critical_statement] = STATE(6425), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -196764,10 +196764,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -196788,7 +196788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -196828,82 +196828,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [795] = { - [sym__statements] = STATE(6636), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6636), - [sym_assignment_statement] = STATE(6636), - [sym_pointer_association_statement] = STATE(6636), - [sym_subroutine_call] = STATE(6636), - [sym_keyword_statement] = STATE(6636), - [sym_include_statement] = STATE(6636), - [sym_do_loop_statement] = STATE(6636), - [sym_do_label_statement] = STATE(6636), - [sym_end_do_label_statement] = STATE(6636), - [sym_if_statement] = STATE(6636), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6636), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6636), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6636), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6636), - [sym_select_type_statement] = STATE(6636), - [sym_select_rank_statement] = STATE(6636), - [sym_block_construct] = STATE(6636), - [sym_associate_statement] = STATE(6636), - [sym_format_statement] = STATE(6636), - [sym_read_statement] = STATE(6636), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6636), - [sym_open_statement] = STATE(6636), - [sym_close_statement] = STATE(6636), - [sym_write_statement] = STATE(6636), - [sym_inquire_statement] = STATE(6636), - [sym_file_position_statement] = STATE(6636), - [sym_allocate_statement] = STATE(6636), - [sym_entry_statement] = STATE(6636), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6636), - [sym_coarray_team_statement] = STATE(6636), - [sym_coarray_critical_statement] = STATE(6636), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6499), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6499), + [sym_assignment_statement] = STATE(6499), + [sym_pointer_association_statement] = STATE(6499), + [sym_subroutine_call] = STATE(6499), + [sym_keyword_statement] = STATE(6499), + [sym_include_statement] = STATE(6499), + [sym_do_loop_statement] = STATE(6499), + [sym_do_label_statement] = STATE(6499), + [sym_end_do_label_statement] = STATE(6499), + [sym_if_statement] = STATE(6499), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6499), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6499), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6499), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6499), + [sym_select_type_statement] = STATE(6499), + [sym_select_rank_statement] = STATE(6499), + [sym_block_construct] = STATE(6499), + [sym_associate_statement] = STATE(6499), + [sym_format_statement] = STATE(6499), + [sym_read_statement] = STATE(6499), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6499), + [sym_open_statement] = STATE(6499), + [sym_close_statement] = STATE(6499), + [sym_write_statement] = STATE(6499), + [sym_inquire_statement] = STATE(6499), + [sym_file_position_statement] = STATE(6499), + [sym_allocate_statement] = STATE(6499), + [sym_entry_statement] = STATE(6499), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6499), + [sym_coarray_team_statement] = STATE(6499), + [sym_coarray_critical_statement] = STATE(6499), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -196919,10 +196919,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -196943,7 +196943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -196983,82 +196983,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [796] = { - [sym__statements] = STATE(6806), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6806), - [sym_assignment_statement] = STATE(6806), - [sym_pointer_association_statement] = STATE(6806), - [sym_subroutine_call] = STATE(6806), - [sym_keyword_statement] = STATE(6806), - [sym_include_statement] = STATE(6806), - [sym_do_loop_statement] = STATE(6806), - [sym_do_label_statement] = STATE(6806), - [sym_end_do_label_statement] = STATE(6806), - [sym_if_statement] = STATE(6806), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6806), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6806), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6806), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6806), - [sym_select_type_statement] = STATE(6806), - [sym_select_rank_statement] = STATE(6806), - [sym_block_construct] = STATE(6806), - [sym_associate_statement] = STATE(6806), - [sym_format_statement] = STATE(6806), - [sym_read_statement] = STATE(6806), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6806), - [sym_open_statement] = STATE(6806), - [sym_close_statement] = STATE(6806), - [sym_write_statement] = STATE(6806), - [sym_inquire_statement] = STATE(6806), - [sym_file_position_statement] = STATE(6806), - [sym_allocate_statement] = STATE(6806), - [sym_entry_statement] = STATE(6806), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6806), - [sym_coarray_team_statement] = STATE(6806), - [sym_coarray_critical_statement] = STATE(6806), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6460), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6460), + [sym_assignment_statement] = STATE(6460), + [sym_pointer_association_statement] = STATE(6460), + [sym_subroutine_call] = STATE(6460), + [sym_keyword_statement] = STATE(6460), + [sym_include_statement] = STATE(6460), + [sym_do_loop_statement] = STATE(6460), + [sym_do_label_statement] = STATE(6460), + [sym_end_do_label_statement] = STATE(6460), + [sym_if_statement] = STATE(6460), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6460), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6460), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6460), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6460), + [sym_select_type_statement] = STATE(6460), + [sym_select_rank_statement] = STATE(6460), + [sym_block_construct] = STATE(6460), + [sym_associate_statement] = STATE(6460), + [sym_format_statement] = STATE(6460), + [sym_read_statement] = STATE(6460), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6460), + [sym_open_statement] = STATE(6460), + [sym_close_statement] = STATE(6460), + [sym_write_statement] = STATE(6460), + [sym_inquire_statement] = STATE(6460), + [sym_file_position_statement] = STATE(6460), + [sym_allocate_statement] = STATE(6460), + [sym_entry_statement] = STATE(6460), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6460), + [sym_coarray_team_statement] = STATE(6460), + [sym_coarray_critical_statement] = STATE(6460), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -197074,10 +197074,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -197098,7 +197098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -197138,82 +197138,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [797] = { - [sym__statements] = STATE(6531), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6531), - [sym_assignment_statement] = STATE(6531), - [sym_pointer_association_statement] = STATE(6531), - [sym_subroutine_call] = STATE(6531), - [sym_keyword_statement] = STATE(6531), - [sym_include_statement] = STATE(6531), - [sym_do_loop_statement] = STATE(6531), - [sym_do_label_statement] = STATE(6531), - [sym_end_do_label_statement] = STATE(6531), - [sym_if_statement] = STATE(6531), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6531), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6531), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6531), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6531), - [sym_select_type_statement] = STATE(6531), - [sym_select_rank_statement] = STATE(6531), - [sym_block_construct] = STATE(6531), - [sym_associate_statement] = STATE(6531), - [sym_format_statement] = STATE(6531), - [sym_read_statement] = STATE(6531), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6531), - [sym_open_statement] = STATE(6531), - [sym_close_statement] = STATE(6531), - [sym_write_statement] = STATE(6531), - [sym_inquire_statement] = STATE(6531), - [sym_file_position_statement] = STATE(6531), - [sym_allocate_statement] = STATE(6531), - [sym_entry_statement] = STATE(6531), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6531), - [sym_coarray_team_statement] = STATE(6531), - [sym_coarray_critical_statement] = STATE(6531), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6763), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6763), + [sym_assignment_statement] = STATE(6763), + [sym_pointer_association_statement] = STATE(6763), + [sym_subroutine_call] = STATE(6763), + [sym_keyword_statement] = STATE(6763), + [sym_include_statement] = STATE(6763), + [sym_do_loop_statement] = STATE(6763), + [sym_do_label_statement] = STATE(6763), + [sym_end_do_label_statement] = STATE(6763), + [sym_if_statement] = STATE(6763), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6763), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6763), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6763), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6763), + [sym_select_type_statement] = STATE(6763), + [sym_select_rank_statement] = STATE(6763), + [sym_block_construct] = STATE(6763), + [sym_associate_statement] = STATE(6763), + [sym_format_statement] = STATE(6763), + [sym_read_statement] = STATE(6763), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6763), + [sym_open_statement] = STATE(6763), + [sym_close_statement] = STATE(6763), + [sym_write_statement] = STATE(6763), + [sym_inquire_statement] = STATE(6763), + [sym_file_position_statement] = STATE(6763), + [sym_allocate_statement] = STATE(6763), + [sym_entry_statement] = STATE(6763), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6763), + [sym_coarray_team_statement] = STATE(6763), + [sym_coarray_critical_statement] = STATE(6763), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -197229,10 +197229,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -197253,7 +197253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -197293,82 +197293,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [798] = { - [sym__statements] = STATE(6283), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6283), - [sym_assignment_statement] = STATE(6283), - [sym_pointer_association_statement] = STATE(6283), - [sym_subroutine_call] = STATE(6283), - [sym_keyword_statement] = STATE(6283), - [sym_include_statement] = STATE(6283), - [sym_do_loop_statement] = STATE(6283), - [sym_do_label_statement] = STATE(6283), - [sym_end_do_label_statement] = STATE(6283), - [sym_if_statement] = STATE(6283), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6283), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6283), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6283), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6283), - [sym_select_type_statement] = STATE(6283), - [sym_select_rank_statement] = STATE(6283), - [sym_block_construct] = STATE(6283), - [sym_associate_statement] = STATE(6283), - [sym_format_statement] = STATE(6283), - [sym_read_statement] = STATE(6283), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6283), - [sym_open_statement] = STATE(6283), - [sym_close_statement] = STATE(6283), - [sym_write_statement] = STATE(6283), - [sym_inquire_statement] = STATE(6283), - [sym_file_position_statement] = STATE(6283), - [sym_allocate_statement] = STATE(6283), - [sym_entry_statement] = STATE(6283), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6283), - [sym_coarray_team_statement] = STATE(6283), - [sym_coarray_critical_statement] = STATE(6283), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6995), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6995), + [sym_assignment_statement] = STATE(6995), + [sym_pointer_association_statement] = STATE(6995), + [sym_subroutine_call] = STATE(6995), + [sym_keyword_statement] = STATE(6995), + [sym_include_statement] = STATE(6995), + [sym_do_loop_statement] = STATE(6995), + [sym_do_label_statement] = STATE(6995), + [sym_end_do_label_statement] = STATE(6995), + [sym_if_statement] = STATE(6995), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6995), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6995), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6995), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6995), + [sym_select_type_statement] = STATE(6995), + [sym_select_rank_statement] = STATE(6995), + [sym_block_construct] = STATE(6995), + [sym_associate_statement] = STATE(6995), + [sym_format_statement] = STATE(6995), + [sym_read_statement] = STATE(6995), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6995), + [sym_open_statement] = STATE(6995), + [sym_close_statement] = STATE(6995), + [sym_write_statement] = STATE(6995), + [sym_inquire_statement] = STATE(6995), + [sym_file_position_statement] = STATE(6995), + [sym_allocate_statement] = STATE(6995), + [sym_entry_statement] = STATE(6995), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6995), + [sym_coarray_team_statement] = STATE(6995), + [sym_coarray_critical_statement] = STATE(6995), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -197384,10 +197384,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -197408,7 +197408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -197448,82 +197448,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [799] = { - [sym__statements] = STATE(6359), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6359), - [sym_assignment_statement] = STATE(6359), - [sym_pointer_association_statement] = STATE(6359), - [sym_subroutine_call] = STATE(6359), - [sym_keyword_statement] = STATE(6359), - [sym_include_statement] = STATE(6359), - [sym_do_loop_statement] = STATE(6359), - [sym_do_label_statement] = STATE(6359), - [sym_end_do_label_statement] = STATE(6359), - [sym_if_statement] = STATE(6359), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6359), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6359), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6359), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6359), - [sym_select_type_statement] = STATE(6359), - [sym_select_rank_statement] = STATE(6359), - [sym_block_construct] = STATE(6359), - [sym_associate_statement] = STATE(6359), - [sym_format_statement] = STATE(6359), - [sym_read_statement] = STATE(6359), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6359), - [sym_open_statement] = STATE(6359), - [sym_close_statement] = STATE(6359), - [sym_write_statement] = STATE(6359), - [sym_inquire_statement] = STATE(6359), - [sym_file_position_statement] = STATE(6359), - [sym_allocate_statement] = STATE(6359), - [sym_entry_statement] = STATE(6359), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6359), - [sym_coarray_team_statement] = STATE(6359), - [sym_coarray_critical_statement] = STATE(6359), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6838), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6838), + [sym_assignment_statement] = STATE(6838), + [sym_pointer_association_statement] = STATE(6838), + [sym_subroutine_call] = STATE(6838), + [sym_keyword_statement] = STATE(6838), + [sym_include_statement] = STATE(6838), + [sym_do_loop_statement] = STATE(6838), + [sym_do_label_statement] = STATE(6838), + [sym_end_do_label_statement] = STATE(6838), + [sym_if_statement] = STATE(6838), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6838), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6838), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6838), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6838), + [sym_select_type_statement] = STATE(6838), + [sym_select_rank_statement] = STATE(6838), + [sym_block_construct] = STATE(6838), + [sym_associate_statement] = STATE(6838), + [sym_format_statement] = STATE(6838), + [sym_read_statement] = STATE(6838), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6838), + [sym_open_statement] = STATE(6838), + [sym_close_statement] = STATE(6838), + [sym_write_statement] = STATE(6838), + [sym_inquire_statement] = STATE(6838), + [sym_file_position_statement] = STATE(6838), + [sym_allocate_statement] = STATE(6838), + [sym_entry_statement] = STATE(6838), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6838), + [sym_coarray_team_statement] = STATE(6838), + [sym_coarray_critical_statement] = STATE(6838), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -197539,10 +197539,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -197563,7 +197563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -197603,82 +197603,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [800] = { - [sym__statements] = STATE(6874), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6874), - [sym_assignment_statement] = STATE(6874), - [sym_pointer_association_statement] = STATE(6874), - [sym_subroutine_call] = STATE(6874), - [sym_keyword_statement] = STATE(6874), - [sym_include_statement] = STATE(6874), - [sym_do_loop_statement] = STATE(6874), - [sym_do_label_statement] = STATE(6874), - [sym_end_do_label_statement] = STATE(6874), - [sym_if_statement] = STATE(6874), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6874), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6874), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6874), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6874), - [sym_select_type_statement] = STATE(6874), - [sym_select_rank_statement] = STATE(6874), - [sym_block_construct] = STATE(6874), - [sym_associate_statement] = STATE(6874), - [sym_format_statement] = STATE(6874), - [sym_read_statement] = STATE(6874), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6874), - [sym_open_statement] = STATE(6874), - [sym_close_statement] = STATE(6874), - [sym_write_statement] = STATE(6874), - [sym_inquire_statement] = STATE(6874), - [sym_file_position_statement] = STATE(6874), - [sym_allocate_statement] = STATE(6874), - [sym_entry_statement] = STATE(6874), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6874), - [sym_coarray_team_statement] = STATE(6874), - [sym_coarray_critical_statement] = STATE(6874), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6447), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6447), + [sym_assignment_statement] = STATE(6447), + [sym_pointer_association_statement] = STATE(6447), + [sym_subroutine_call] = STATE(6447), + [sym_keyword_statement] = STATE(6447), + [sym_include_statement] = STATE(6447), + [sym_do_loop_statement] = STATE(6447), + [sym_do_label_statement] = STATE(6447), + [sym_end_do_label_statement] = STATE(6447), + [sym_if_statement] = STATE(6447), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6447), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6447), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6447), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6447), + [sym_select_type_statement] = STATE(6447), + [sym_select_rank_statement] = STATE(6447), + [sym_block_construct] = STATE(6447), + [sym_associate_statement] = STATE(6447), + [sym_format_statement] = STATE(6447), + [sym_read_statement] = STATE(6447), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6447), + [sym_open_statement] = STATE(6447), + [sym_close_statement] = STATE(6447), + [sym_write_statement] = STATE(6447), + [sym_inquire_statement] = STATE(6447), + [sym_file_position_statement] = STATE(6447), + [sym_allocate_statement] = STATE(6447), + [sym_entry_statement] = STATE(6447), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6447), + [sym_coarray_team_statement] = STATE(6447), + [sym_coarray_critical_statement] = STATE(6447), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -197694,10 +197694,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -197718,7 +197718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -197758,82 +197758,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [801] = { - [sym__statements] = STATE(7039), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(7039), - [sym_assignment_statement] = STATE(7039), - [sym_pointer_association_statement] = STATE(7039), - [sym_subroutine_call] = STATE(7039), - [sym_keyword_statement] = STATE(7039), - [sym_include_statement] = STATE(7039), - [sym_do_loop_statement] = STATE(7039), - [sym_do_label_statement] = STATE(7039), - [sym_end_do_label_statement] = STATE(7039), - [sym_if_statement] = STATE(7039), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(7039), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(7039), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(7039), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(7039), - [sym_select_type_statement] = STATE(7039), - [sym_select_rank_statement] = STATE(7039), - [sym_block_construct] = STATE(7039), - [sym_associate_statement] = STATE(7039), - [sym_format_statement] = STATE(7039), - [sym_read_statement] = STATE(7039), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(7039), - [sym_open_statement] = STATE(7039), - [sym_close_statement] = STATE(7039), - [sym_write_statement] = STATE(7039), - [sym_inquire_statement] = STATE(7039), - [sym_file_position_statement] = STATE(7039), - [sym_allocate_statement] = STATE(7039), - [sym_entry_statement] = STATE(7039), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(7039), - [sym_coarray_team_statement] = STATE(7039), - [sym_coarray_critical_statement] = STATE(7039), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6685), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6685), + [sym_assignment_statement] = STATE(6685), + [sym_pointer_association_statement] = STATE(6685), + [sym_subroutine_call] = STATE(6685), + [sym_keyword_statement] = STATE(6685), + [sym_include_statement] = STATE(6685), + [sym_do_loop_statement] = STATE(6685), + [sym_do_label_statement] = STATE(6685), + [sym_end_do_label_statement] = STATE(6685), + [sym_if_statement] = STATE(6685), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6685), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6685), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6685), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6685), + [sym_select_type_statement] = STATE(6685), + [sym_select_rank_statement] = STATE(6685), + [sym_block_construct] = STATE(6685), + [sym_associate_statement] = STATE(6685), + [sym_format_statement] = STATE(6685), + [sym_read_statement] = STATE(6685), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6685), + [sym_open_statement] = STATE(6685), + [sym_close_statement] = STATE(6685), + [sym_write_statement] = STATE(6685), + [sym_inquire_statement] = STATE(6685), + [sym_file_position_statement] = STATE(6685), + [sym_allocate_statement] = STATE(6685), + [sym_entry_statement] = STATE(6685), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6685), + [sym_coarray_team_statement] = STATE(6685), + [sym_coarray_critical_statement] = STATE(6685), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -197849,10 +197849,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -197873,7 +197873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -197913,82 +197913,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [802] = { - [sym__statements] = STATE(6470), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6470), - [sym_assignment_statement] = STATE(6470), - [sym_pointer_association_statement] = STATE(6470), - [sym_subroutine_call] = STATE(6470), - [sym_keyword_statement] = STATE(6470), - [sym_include_statement] = STATE(6470), - [sym_do_loop_statement] = STATE(6470), - [sym_do_label_statement] = STATE(6470), - [sym_end_do_label_statement] = STATE(6470), - [sym_if_statement] = STATE(6470), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6470), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6470), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6470), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6470), - [sym_select_type_statement] = STATE(6470), - [sym_select_rank_statement] = STATE(6470), - [sym_block_construct] = STATE(6470), - [sym_associate_statement] = STATE(6470), - [sym_format_statement] = STATE(6470), - [sym_read_statement] = STATE(6470), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6470), - [sym_open_statement] = STATE(6470), - [sym_close_statement] = STATE(6470), - [sym_write_statement] = STATE(6470), - [sym_inquire_statement] = STATE(6470), - [sym_file_position_statement] = STATE(6470), - [sym_allocate_statement] = STATE(6470), - [sym_entry_statement] = STATE(6470), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6470), - [sym_coarray_team_statement] = STATE(6470), - [sym_coarray_critical_statement] = STATE(6470), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6377), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6377), + [sym_assignment_statement] = STATE(6377), + [sym_pointer_association_statement] = STATE(6377), + [sym_subroutine_call] = STATE(6377), + [sym_keyword_statement] = STATE(6377), + [sym_include_statement] = STATE(6377), + [sym_do_loop_statement] = STATE(6377), + [sym_do_label_statement] = STATE(6377), + [sym_end_do_label_statement] = STATE(6377), + [sym_if_statement] = STATE(6377), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6377), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6377), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6377), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6377), + [sym_select_type_statement] = STATE(6377), + [sym_select_rank_statement] = STATE(6377), + [sym_block_construct] = STATE(6377), + [sym_associate_statement] = STATE(6377), + [sym_format_statement] = STATE(6377), + [sym_read_statement] = STATE(6377), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6377), + [sym_open_statement] = STATE(6377), + [sym_close_statement] = STATE(6377), + [sym_write_statement] = STATE(6377), + [sym_inquire_statement] = STATE(6377), + [sym_file_position_statement] = STATE(6377), + [sym_allocate_statement] = STATE(6377), + [sym_entry_statement] = STATE(6377), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6377), + [sym_coarray_team_statement] = STATE(6377), + [sym_coarray_critical_statement] = STATE(6377), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -198004,10 +198004,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -198028,7 +198028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -198068,82 +198068,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [803] = { - [sym__statements] = STATE(6409), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6409), - [sym_assignment_statement] = STATE(6409), - [sym_pointer_association_statement] = STATE(6409), - [sym_subroutine_call] = STATE(6409), - [sym_keyword_statement] = STATE(6409), - [sym_include_statement] = STATE(6409), - [sym_do_loop_statement] = STATE(6409), - [sym_do_label_statement] = STATE(6409), - [sym_end_do_label_statement] = STATE(6409), - [sym_if_statement] = STATE(6409), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6409), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6409), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6409), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6409), - [sym_select_type_statement] = STATE(6409), - [sym_select_rank_statement] = STATE(6409), - [sym_block_construct] = STATE(6409), - [sym_associate_statement] = STATE(6409), - [sym_format_statement] = STATE(6409), - [sym_read_statement] = STATE(6409), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6409), - [sym_open_statement] = STATE(6409), - [sym_close_statement] = STATE(6409), - [sym_write_statement] = STATE(6409), - [sym_inquire_statement] = STATE(6409), - [sym_file_position_statement] = STATE(6409), - [sym_allocate_statement] = STATE(6409), - [sym_entry_statement] = STATE(6409), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6409), - [sym_coarray_team_statement] = STATE(6409), - [sym_coarray_critical_statement] = STATE(6409), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6307), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6307), + [sym_assignment_statement] = STATE(6307), + [sym_pointer_association_statement] = STATE(6307), + [sym_subroutine_call] = STATE(6307), + [sym_keyword_statement] = STATE(6307), + [sym_include_statement] = STATE(6307), + [sym_do_loop_statement] = STATE(6307), + [sym_do_label_statement] = STATE(6307), + [sym_end_do_label_statement] = STATE(6307), + [sym_if_statement] = STATE(6307), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6307), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6307), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6307), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6307), + [sym_select_type_statement] = STATE(6307), + [sym_select_rank_statement] = STATE(6307), + [sym_block_construct] = STATE(6307), + [sym_associate_statement] = STATE(6307), + [sym_format_statement] = STATE(6307), + [sym_read_statement] = STATE(6307), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6307), + [sym_open_statement] = STATE(6307), + [sym_close_statement] = STATE(6307), + [sym_write_statement] = STATE(6307), + [sym_inquire_statement] = STATE(6307), + [sym_file_position_statement] = STATE(6307), + [sym_allocate_statement] = STATE(6307), + [sym_entry_statement] = STATE(6307), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6307), + [sym_coarray_team_statement] = STATE(6307), + [sym_coarray_critical_statement] = STATE(6307), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -198159,10 +198159,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -198183,7 +198183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -198223,82 +198223,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [804] = { - [sym__statements] = STATE(6467), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6467), - [sym_assignment_statement] = STATE(6467), - [sym_pointer_association_statement] = STATE(6467), - [sym_subroutine_call] = STATE(6467), - [sym_keyword_statement] = STATE(6467), - [sym_include_statement] = STATE(6467), - [sym_do_loop_statement] = STATE(6467), - [sym_do_label_statement] = STATE(6467), - [sym_end_do_label_statement] = STATE(6467), - [sym_if_statement] = STATE(6467), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6467), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6467), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6467), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6467), - [sym_select_type_statement] = STATE(6467), - [sym_select_rank_statement] = STATE(6467), - [sym_block_construct] = STATE(6467), - [sym_associate_statement] = STATE(6467), - [sym_format_statement] = STATE(6467), - [sym_read_statement] = STATE(6467), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6467), - [sym_open_statement] = STATE(6467), - [sym_close_statement] = STATE(6467), - [sym_write_statement] = STATE(6467), - [sym_inquire_statement] = STATE(6467), - [sym_file_position_statement] = STATE(6467), - [sym_allocate_statement] = STATE(6467), - [sym_entry_statement] = STATE(6467), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6467), - [sym_coarray_team_statement] = STATE(6467), - [sym_coarray_critical_statement] = STATE(6467), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6349), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6349), + [sym_assignment_statement] = STATE(6349), + [sym_pointer_association_statement] = STATE(6349), + [sym_subroutine_call] = STATE(6349), + [sym_keyword_statement] = STATE(6349), + [sym_include_statement] = STATE(6349), + [sym_do_loop_statement] = STATE(6349), + [sym_do_label_statement] = STATE(6349), + [sym_end_do_label_statement] = STATE(6349), + [sym_if_statement] = STATE(6349), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6349), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6349), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6349), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6349), + [sym_select_type_statement] = STATE(6349), + [sym_select_rank_statement] = STATE(6349), + [sym_block_construct] = STATE(6349), + [sym_associate_statement] = STATE(6349), + [sym_format_statement] = STATE(6349), + [sym_read_statement] = STATE(6349), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6349), + [sym_open_statement] = STATE(6349), + [sym_close_statement] = STATE(6349), + [sym_write_statement] = STATE(6349), + [sym_inquire_statement] = STATE(6349), + [sym_file_position_statement] = STATE(6349), + [sym_allocate_statement] = STATE(6349), + [sym_entry_statement] = STATE(6349), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6349), + [sym_coarray_team_statement] = STATE(6349), + [sym_coarray_critical_statement] = STATE(6349), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -198314,10 +198314,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -198338,7 +198338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -198378,82 +198378,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [805] = { - [sym__statements] = STATE(6687), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6687), - [sym_assignment_statement] = STATE(6687), - [sym_pointer_association_statement] = STATE(6687), - [sym_subroutine_call] = STATE(6687), - [sym_keyword_statement] = STATE(6687), - [sym_include_statement] = STATE(6687), - [sym_do_loop_statement] = STATE(6687), - [sym_do_label_statement] = STATE(6687), - [sym_end_do_label_statement] = STATE(6687), - [sym_if_statement] = STATE(6687), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6687), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6687), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6687), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6687), - [sym_select_type_statement] = STATE(6687), - [sym_select_rank_statement] = STATE(6687), - [sym_block_construct] = STATE(6687), - [sym_associate_statement] = STATE(6687), - [sym_format_statement] = STATE(6687), - [sym_read_statement] = STATE(6687), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6687), - [sym_open_statement] = STATE(6687), - [sym_close_statement] = STATE(6687), - [sym_write_statement] = STATE(6687), - [sym_inquire_statement] = STATE(6687), - [sym_file_position_statement] = STATE(6687), - [sym_allocate_statement] = STATE(6687), - [sym_entry_statement] = STATE(6687), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6687), - [sym_coarray_team_statement] = STATE(6687), - [sym_coarray_critical_statement] = STATE(6687), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6614), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6614), + [sym_assignment_statement] = STATE(6614), + [sym_pointer_association_statement] = STATE(6614), + [sym_subroutine_call] = STATE(6614), + [sym_keyword_statement] = STATE(6614), + [sym_include_statement] = STATE(6614), + [sym_do_loop_statement] = STATE(6614), + [sym_do_label_statement] = STATE(6614), + [sym_end_do_label_statement] = STATE(6614), + [sym_if_statement] = STATE(6614), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6614), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6614), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6614), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6614), + [sym_select_type_statement] = STATE(6614), + [sym_select_rank_statement] = STATE(6614), + [sym_block_construct] = STATE(6614), + [sym_associate_statement] = STATE(6614), + [sym_format_statement] = STATE(6614), + [sym_read_statement] = STATE(6614), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6614), + [sym_open_statement] = STATE(6614), + [sym_close_statement] = STATE(6614), + [sym_write_statement] = STATE(6614), + [sym_inquire_statement] = STATE(6614), + [sym_file_position_statement] = STATE(6614), + [sym_allocate_statement] = STATE(6614), + [sym_entry_statement] = STATE(6614), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6614), + [sym_coarray_team_statement] = STATE(6614), + [sym_coarray_critical_statement] = STATE(6614), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -198469,10 +198469,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -198493,7 +198493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -198533,82 +198533,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [806] = { - [sym__statements] = STATE(6347), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6347), - [sym_assignment_statement] = STATE(6347), - [sym_pointer_association_statement] = STATE(6347), - [sym_subroutine_call] = STATE(6347), - [sym_keyword_statement] = STATE(6347), - [sym_include_statement] = STATE(6347), - [sym_do_loop_statement] = STATE(6347), - [sym_do_label_statement] = STATE(6347), - [sym_end_do_label_statement] = STATE(6347), - [sym_if_statement] = STATE(6347), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6347), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6347), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6347), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6347), - [sym_select_type_statement] = STATE(6347), - [sym_select_rank_statement] = STATE(6347), - [sym_block_construct] = STATE(6347), - [sym_associate_statement] = STATE(6347), - [sym_format_statement] = STATE(6347), - [sym_read_statement] = STATE(6347), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6347), - [sym_open_statement] = STATE(6347), - [sym_close_statement] = STATE(6347), - [sym_write_statement] = STATE(6347), - [sym_inquire_statement] = STATE(6347), - [sym_file_position_statement] = STATE(6347), - [sym_allocate_statement] = STATE(6347), - [sym_entry_statement] = STATE(6347), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6347), - [sym_coarray_team_statement] = STATE(6347), - [sym_coarray_critical_statement] = STATE(6347), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6750), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6750), + [sym_assignment_statement] = STATE(6750), + [sym_pointer_association_statement] = STATE(6750), + [sym_subroutine_call] = STATE(6750), + [sym_keyword_statement] = STATE(6750), + [sym_include_statement] = STATE(6750), + [sym_do_loop_statement] = STATE(6750), + [sym_do_label_statement] = STATE(6750), + [sym_end_do_label_statement] = STATE(6750), + [sym_if_statement] = STATE(6750), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6750), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6750), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6750), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6750), + [sym_select_type_statement] = STATE(6750), + [sym_select_rank_statement] = STATE(6750), + [sym_block_construct] = STATE(6750), + [sym_associate_statement] = STATE(6750), + [sym_format_statement] = STATE(6750), + [sym_read_statement] = STATE(6750), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6750), + [sym_open_statement] = STATE(6750), + [sym_close_statement] = STATE(6750), + [sym_write_statement] = STATE(6750), + [sym_inquire_statement] = STATE(6750), + [sym_file_position_statement] = STATE(6750), + [sym_allocate_statement] = STATE(6750), + [sym_entry_statement] = STATE(6750), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6750), + [sym_coarray_team_statement] = STATE(6750), + [sym_coarray_critical_statement] = STATE(6750), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -198624,10 +198624,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -198648,7 +198648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -198688,82 +198688,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [807] = { - [sym__statements] = STATE(6588), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6588), - [sym_assignment_statement] = STATE(6588), - [sym_pointer_association_statement] = STATE(6588), - [sym_subroutine_call] = STATE(6588), - [sym_keyword_statement] = STATE(6588), - [sym_include_statement] = STATE(6588), - [sym_do_loop_statement] = STATE(6588), - [sym_do_label_statement] = STATE(6588), - [sym_end_do_label_statement] = STATE(6588), - [sym_if_statement] = STATE(6588), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6588), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6588), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6588), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6588), - [sym_select_type_statement] = STATE(6588), - [sym_select_rank_statement] = STATE(6588), - [sym_block_construct] = STATE(6588), - [sym_associate_statement] = STATE(6588), - [sym_format_statement] = STATE(6588), - [sym_read_statement] = STATE(6588), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6588), - [sym_open_statement] = STATE(6588), - [sym_close_statement] = STATE(6588), - [sym_write_statement] = STATE(6588), - [sym_inquire_statement] = STATE(6588), - [sym_file_position_statement] = STATE(6588), - [sym_allocate_statement] = STATE(6588), - [sym_entry_statement] = STATE(6588), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6588), - [sym_coarray_team_statement] = STATE(6588), - [sym_coarray_critical_statement] = STATE(6588), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6505), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6505), + [sym_assignment_statement] = STATE(6505), + [sym_pointer_association_statement] = STATE(6505), + [sym_subroutine_call] = STATE(6505), + [sym_keyword_statement] = STATE(6505), + [sym_include_statement] = STATE(6505), + [sym_do_loop_statement] = STATE(6505), + [sym_do_label_statement] = STATE(6505), + [sym_end_do_label_statement] = STATE(6505), + [sym_if_statement] = STATE(6505), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6505), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6505), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6505), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6505), + [sym_select_type_statement] = STATE(6505), + [sym_select_rank_statement] = STATE(6505), + [sym_block_construct] = STATE(6505), + [sym_associate_statement] = STATE(6505), + [sym_format_statement] = STATE(6505), + [sym_read_statement] = STATE(6505), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6505), + [sym_open_statement] = STATE(6505), + [sym_close_statement] = STATE(6505), + [sym_write_statement] = STATE(6505), + [sym_inquire_statement] = STATE(6505), + [sym_file_position_statement] = STATE(6505), + [sym_allocate_statement] = STATE(6505), + [sym_entry_statement] = STATE(6505), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6505), + [sym_coarray_team_statement] = STATE(6505), + [sym_coarray_critical_statement] = STATE(6505), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -198779,10 +198779,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -198803,7 +198803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -198843,82 +198843,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [808] = { - [sym__statements] = STATE(6720), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6720), - [sym_assignment_statement] = STATE(6720), - [sym_pointer_association_statement] = STATE(6720), - [sym_subroutine_call] = STATE(6720), - [sym_keyword_statement] = STATE(6720), - [sym_include_statement] = STATE(6720), - [sym_do_loop_statement] = STATE(6720), - [sym_do_label_statement] = STATE(6720), - [sym_end_do_label_statement] = STATE(6720), - [sym_if_statement] = STATE(6720), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6720), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6720), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6720), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6720), - [sym_select_type_statement] = STATE(6720), - [sym_select_rank_statement] = STATE(6720), - [sym_block_construct] = STATE(6720), - [sym_associate_statement] = STATE(6720), - [sym_format_statement] = STATE(6720), - [sym_read_statement] = STATE(6720), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6720), - [sym_open_statement] = STATE(6720), - [sym_close_statement] = STATE(6720), - [sym_write_statement] = STATE(6720), - [sym_inquire_statement] = STATE(6720), - [sym_file_position_statement] = STATE(6720), - [sym_allocate_statement] = STATE(6720), - [sym_entry_statement] = STATE(6720), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6720), - [sym_coarray_team_statement] = STATE(6720), - [sym_coarray_critical_statement] = STATE(6720), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6650), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6650), + [sym_assignment_statement] = STATE(6650), + [sym_pointer_association_statement] = STATE(6650), + [sym_subroutine_call] = STATE(6650), + [sym_keyword_statement] = STATE(6650), + [sym_include_statement] = STATE(6650), + [sym_do_loop_statement] = STATE(6650), + [sym_do_label_statement] = STATE(6650), + [sym_end_do_label_statement] = STATE(6650), + [sym_if_statement] = STATE(6650), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6650), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6650), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6650), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6650), + [sym_select_type_statement] = STATE(6650), + [sym_select_rank_statement] = STATE(6650), + [sym_block_construct] = STATE(6650), + [sym_associate_statement] = STATE(6650), + [sym_format_statement] = STATE(6650), + [sym_read_statement] = STATE(6650), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6650), + [sym_open_statement] = STATE(6650), + [sym_close_statement] = STATE(6650), + [sym_write_statement] = STATE(6650), + [sym_inquire_statement] = STATE(6650), + [sym_file_position_statement] = STATE(6650), + [sym_allocate_statement] = STATE(6650), + [sym_entry_statement] = STATE(6650), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6650), + [sym_coarray_team_statement] = STATE(6650), + [sym_coarray_critical_statement] = STATE(6650), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -198934,10 +198934,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -198958,7 +198958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -198998,82 +198998,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [809] = { - [sym__statements] = STATE(6747), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6747), - [sym_assignment_statement] = STATE(6747), - [sym_pointer_association_statement] = STATE(6747), - [sym_subroutine_call] = STATE(6747), - [sym_keyword_statement] = STATE(6747), - [sym_include_statement] = STATE(6747), - [sym_do_loop_statement] = STATE(6747), - [sym_do_label_statement] = STATE(6747), - [sym_end_do_label_statement] = STATE(6747), - [sym_if_statement] = STATE(6747), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6747), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6747), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6747), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6747), - [sym_select_type_statement] = STATE(6747), - [sym_select_rank_statement] = STATE(6747), - [sym_block_construct] = STATE(6747), - [sym_associate_statement] = STATE(6747), - [sym_format_statement] = STATE(6747), - [sym_read_statement] = STATE(6747), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6747), - [sym_open_statement] = STATE(6747), - [sym_close_statement] = STATE(6747), - [sym_write_statement] = STATE(6747), - [sym_inquire_statement] = STATE(6747), - [sym_file_position_statement] = STATE(6747), - [sym_allocate_statement] = STATE(6747), - [sym_entry_statement] = STATE(6747), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6747), - [sym_coarray_team_statement] = STATE(6747), - [sym_coarray_critical_statement] = STATE(6747), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6681), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6681), + [sym_assignment_statement] = STATE(6681), + [sym_pointer_association_statement] = STATE(6681), + [sym_subroutine_call] = STATE(6681), + [sym_keyword_statement] = STATE(6681), + [sym_include_statement] = STATE(6681), + [sym_do_loop_statement] = STATE(6681), + [sym_do_label_statement] = STATE(6681), + [sym_end_do_label_statement] = STATE(6681), + [sym_if_statement] = STATE(6681), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6681), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6681), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6681), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6681), + [sym_select_type_statement] = STATE(6681), + [sym_select_rank_statement] = STATE(6681), + [sym_block_construct] = STATE(6681), + [sym_associate_statement] = STATE(6681), + [sym_format_statement] = STATE(6681), + [sym_read_statement] = STATE(6681), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6681), + [sym_open_statement] = STATE(6681), + [sym_close_statement] = STATE(6681), + [sym_write_statement] = STATE(6681), + [sym_inquire_statement] = STATE(6681), + [sym_file_position_statement] = STATE(6681), + [sym_allocate_statement] = STATE(6681), + [sym_entry_statement] = STATE(6681), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6681), + [sym_coarray_team_statement] = STATE(6681), + [sym_coarray_critical_statement] = STATE(6681), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -199089,10 +199089,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -199113,7 +199113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -199153,82 +199153,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [810] = { - [sym__statements] = STATE(6764), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6764), - [sym_assignment_statement] = STATE(6764), - [sym_pointer_association_statement] = STATE(6764), - [sym_subroutine_call] = STATE(6764), - [sym_keyword_statement] = STATE(6764), - [sym_include_statement] = STATE(6764), - [sym_do_loop_statement] = STATE(6764), - [sym_do_label_statement] = STATE(6764), - [sym_end_do_label_statement] = STATE(6764), - [sym_if_statement] = STATE(6764), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6764), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6764), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6764), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6764), - [sym_select_type_statement] = STATE(6764), - [sym_select_rank_statement] = STATE(6764), - [sym_block_construct] = STATE(6764), - [sym_associate_statement] = STATE(6764), - [sym_format_statement] = STATE(6764), - [sym_read_statement] = STATE(6764), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6764), - [sym_open_statement] = STATE(6764), - [sym_close_statement] = STATE(6764), - [sym_write_statement] = STATE(6764), - [sym_inquire_statement] = STATE(6764), - [sym_file_position_statement] = STATE(6764), - [sym_allocate_statement] = STATE(6764), - [sym_entry_statement] = STATE(6764), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6764), - [sym_coarray_team_statement] = STATE(6764), - [sym_coarray_critical_statement] = STATE(6764), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6706), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6706), + [sym_assignment_statement] = STATE(6706), + [sym_pointer_association_statement] = STATE(6706), + [sym_subroutine_call] = STATE(6706), + [sym_keyword_statement] = STATE(6706), + [sym_include_statement] = STATE(6706), + [sym_do_loop_statement] = STATE(6706), + [sym_do_label_statement] = STATE(6706), + [sym_end_do_label_statement] = STATE(6706), + [sym_if_statement] = STATE(6706), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6706), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6706), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6706), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6706), + [sym_select_type_statement] = STATE(6706), + [sym_select_rank_statement] = STATE(6706), + [sym_block_construct] = STATE(6706), + [sym_associate_statement] = STATE(6706), + [sym_format_statement] = STATE(6706), + [sym_read_statement] = STATE(6706), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6706), + [sym_open_statement] = STATE(6706), + [sym_close_statement] = STATE(6706), + [sym_write_statement] = STATE(6706), + [sym_inquire_statement] = STATE(6706), + [sym_file_position_statement] = STATE(6706), + [sym_allocate_statement] = STATE(6706), + [sym_entry_statement] = STATE(6706), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6706), + [sym_coarray_team_statement] = STATE(6706), + [sym_coarray_critical_statement] = STATE(6706), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -199244,10 +199244,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -199268,7 +199268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -199308,82 +199308,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [811] = { - [sym__statements] = STATE(6637), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6637), - [sym_assignment_statement] = STATE(6637), - [sym_pointer_association_statement] = STATE(6637), - [sym_subroutine_call] = STATE(6637), - [sym_keyword_statement] = STATE(6637), - [sym_include_statement] = STATE(6637), - [sym_do_loop_statement] = STATE(6637), - [sym_do_label_statement] = STATE(6637), - [sym_end_do_label_statement] = STATE(6637), - [sym_if_statement] = STATE(6637), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6637), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6637), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6637), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6637), - [sym_select_type_statement] = STATE(6637), - [sym_select_rank_statement] = STATE(6637), - [sym_block_construct] = STATE(6637), - [sym_associate_statement] = STATE(6637), - [sym_format_statement] = STATE(6637), - [sym_read_statement] = STATE(6637), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6637), - [sym_open_statement] = STATE(6637), - [sym_close_statement] = STATE(6637), - [sym_write_statement] = STATE(6637), - [sym_inquire_statement] = STATE(6637), - [sym_file_position_statement] = STATE(6637), - [sym_allocate_statement] = STATE(6637), - [sym_entry_statement] = STATE(6637), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6637), - [sym_coarray_team_statement] = STATE(6637), - [sym_coarray_critical_statement] = STATE(6637), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6563), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6563), + [sym_assignment_statement] = STATE(6563), + [sym_pointer_association_statement] = STATE(6563), + [sym_subroutine_call] = STATE(6563), + [sym_keyword_statement] = STATE(6563), + [sym_include_statement] = STATE(6563), + [sym_do_loop_statement] = STATE(6563), + [sym_do_label_statement] = STATE(6563), + [sym_end_do_label_statement] = STATE(6563), + [sym_if_statement] = STATE(6563), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6563), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6563), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6563), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6563), + [sym_select_type_statement] = STATE(6563), + [sym_select_rank_statement] = STATE(6563), + [sym_block_construct] = STATE(6563), + [sym_associate_statement] = STATE(6563), + [sym_format_statement] = STATE(6563), + [sym_read_statement] = STATE(6563), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6563), + [sym_open_statement] = STATE(6563), + [sym_close_statement] = STATE(6563), + [sym_write_statement] = STATE(6563), + [sym_inquire_statement] = STATE(6563), + [sym_file_position_statement] = STATE(6563), + [sym_allocate_statement] = STATE(6563), + [sym_entry_statement] = STATE(6563), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6563), + [sym_coarray_team_statement] = STATE(6563), + [sym_coarray_critical_statement] = STATE(6563), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -199399,10 +199399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -199423,7 +199423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -199463,82 +199463,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [812] = { - [sym__statements] = STATE(6779), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6779), - [sym_assignment_statement] = STATE(6779), - [sym_pointer_association_statement] = STATE(6779), - [sym_subroutine_call] = STATE(6779), - [sym_keyword_statement] = STATE(6779), - [sym_include_statement] = STATE(6779), - [sym_do_loop_statement] = STATE(6779), - [sym_do_label_statement] = STATE(6779), - [sym_end_do_label_statement] = STATE(6779), - [sym_if_statement] = STATE(6779), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6779), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6779), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6779), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6779), - [sym_select_type_statement] = STATE(6779), - [sym_select_rank_statement] = STATE(6779), - [sym_block_construct] = STATE(6779), - [sym_associate_statement] = STATE(6779), - [sym_format_statement] = STATE(6779), - [sym_read_statement] = STATE(6779), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6779), - [sym_open_statement] = STATE(6779), - [sym_close_statement] = STATE(6779), - [sym_write_statement] = STATE(6779), - [sym_inquire_statement] = STATE(6779), - [sym_file_position_statement] = STATE(6779), - [sym_allocate_statement] = STATE(6779), - [sym_entry_statement] = STATE(6779), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6779), - [sym_coarray_team_statement] = STATE(6779), - [sym_coarray_critical_statement] = STATE(6779), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6724), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6724), + [sym_assignment_statement] = STATE(6724), + [sym_pointer_association_statement] = STATE(6724), + [sym_subroutine_call] = STATE(6724), + [sym_keyword_statement] = STATE(6724), + [sym_include_statement] = STATE(6724), + [sym_do_loop_statement] = STATE(6724), + [sym_do_label_statement] = STATE(6724), + [sym_end_do_label_statement] = STATE(6724), + [sym_if_statement] = STATE(6724), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6724), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6724), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6724), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6724), + [sym_select_type_statement] = STATE(6724), + [sym_select_rank_statement] = STATE(6724), + [sym_block_construct] = STATE(6724), + [sym_associate_statement] = STATE(6724), + [sym_format_statement] = STATE(6724), + [sym_read_statement] = STATE(6724), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6724), + [sym_open_statement] = STATE(6724), + [sym_close_statement] = STATE(6724), + [sym_write_statement] = STATE(6724), + [sym_inquire_statement] = STATE(6724), + [sym_file_position_statement] = STATE(6724), + [sym_allocate_statement] = STATE(6724), + [sym_entry_statement] = STATE(6724), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6724), + [sym_coarray_team_statement] = STATE(6724), + [sym_coarray_critical_statement] = STATE(6724), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -199554,10 +199554,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -199578,7 +199578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -199618,82 +199618,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, [813] = { - [sym__statements] = STATE(6785), - [sym_statement_label] = STATE(7396), - [sym_stop_statement] = STATE(6785), - [sym_assignment_statement] = STATE(6785), - [sym_pointer_association_statement] = STATE(6785), - [sym_subroutine_call] = STATE(6785), - [sym_keyword_statement] = STATE(6785), - [sym_include_statement] = STATE(6785), - [sym_do_loop_statement] = STATE(6785), - [sym_do_label_statement] = STATE(6785), - [sym_end_do_label_statement] = STATE(6785), - [sym_if_statement] = STATE(6785), - [sym__inline_if_statement] = STATE(7095), - [sym_arithmetic_if_statement] = STATE(6785), - [sym__block_if_statement] = STATE(7095), - [sym_where_statement] = STATE(6785), - [sym__inline_where_statement] = STATE(7148), - [sym__block_where_statement] = STATE(7148), - [sym_forall_statement] = STATE(6785), - [sym__forall_control_expression] = STATE(769), - [sym__inline_forall_statement] = STATE(7167), - [sym__block_forall_statement] = STATE(7167), - [sym_select_case_statement] = STATE(6785), - [sym_select_type_statement] = STATE(6785), - [sym_select_rank_statement] = STATE(6785), - [sym_block_construct] = STATE(6785), - [sym_associate_statement] = STATE(6785), - [sym_format_statement] = STATE(6785), - [sym_read_statement] = STATE(6785), - [sym__simple_read_statement] = STATE(7172), - [sym__parameterized_read_statement] = STATE(7172), - [sym_print_statement] = STATE(6785), - [sym_open_statement] = STATE(6785), - [sym_close_statement] = STATE(6785), - [sym_write_statement] = STATE(6785), - [sym_inquire_statement] = STATE(6785), - [sym_file_position_statement] = STATE(6785), - [sym_allocate_statement] = STATE(6785), - [sym_entry_statement] = STATE(6785), - [sym__expression] = STATE(4459), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4573), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_block_label_start_expression] = STATE(5512), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_coarray_statement] = STATE(6785), - [sym_coarray_team_statement] = STATE(6785), - [sym_coarray_critical_statement] = STATE(6785), - [sym_identifier] = STATE(4690), + [sym__statements] = STATE(6737), + [sym_statement_label] = STATE(7075), + [sym_stop_statement] = STATE(6737), + [sym_assignment_statement] = STATE(6737), + [sym_pointer_association_statement] = STATE(6737), + [sym_subroutine_call] = STATE(6737), + [sym_keyword_statement] = STATE(6737), + [sym_include_statement] = STATE(6737), + [sym_do_loop_statement] = STATE(6737), + [sym_do_label_statement] = STATE(6737), + [sym_end_do_label_statement] = STATE(6737), + [sym_if_statement] = STATE(6737), + [sym__inline_if_statement] = STATE(7132), + [sym_arithmetic_if_statement] = STATE(6737), + [sym__block_if_statement] = STATE(7132), + [sym_where_statement] = STATE(6737), + [sym__inline_where_statement] = STATE(7268), + [sym__block_where_statement] = STATE(7268), + [sym_forall_statement] = STATE(6737), + [sym__forall_control_expression] = STATE(772), + [sym__inline_forall_statement] = STATE(7333), + [sym__block_forall_statement] = STATE(7333), + [sym_select_case_statement] = STATE(6737), + [sym_select_type_statement] = STATE(6737), + [sym_select_rank_statement] = STATE(6737), + [sym_block_construct] = STATE(6737), + [sym_associate_statement] = STATE(6737), + [sym_format_statement] = STATE(6737), + [sym_read_statement] = STATE(6737), + [sym__simple_read_statement] = STATE(7091), + [sym__parameterized_read_statement] = STATE(7091), + [sym_print_statement] = STATE(6737), + [sym_open_statement] = STATE(6737), + [sym_close_statement] = STATE(6737), + [sym_write_statement] = STATE(6737), + [sym_inquire_statement] = STATE(6737), + [sym_file_position_statement] = STATE(6737), + [sym_allocate_statement] = STATE(6737), + [sym_entry_statement] = STATE(6737), + [sym__expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4595), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_block_label_start_expression] = STATE(5502), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_coarray_statement] = STATE(6737), + [sym_coarray_team_statement] = STATE(6737), + [sym_coarray_critical_statement] = STATE(6737), + [sym_identifier] = STATE(4694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4251), + [aux_sym_end_program_statement_token1] = ACTIONS(4243), [aux_sym_defined_io_procedure_token1] = ACTIONS(35), [aux_sym_defined_io_procedure_token2] = ACTIONS(37), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -199709,10 +199709,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -199733,7 +199733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(115), [aux_sym_data_statement_token1] = ACTIONS(93), [aux_sym_do_loop_statement_token1] = ACTIONS(119), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4241), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4235), [aux_sym__inline_if_statement_token1] = ACTIONS(121), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), @@ -199773,7 +199773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(181), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), + [sym__integer_literal] = ACTIONS(4237), [sym__float_literal] = ACTIONS(185), [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), @@ -199783,30 +199783,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(4255), [aux_sym_preproc_def_token1] = ACTIONS(4255), [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4257), + [aux_sym_preproc_if_token2] = ACTIONS(4255), [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [aux_sym_preproc_else_token1] = ACTIONS(4257), - [aux_sym_preproc_elif_token1] = ACTIONS(4257), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4257), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4257), + [aux_sym_preproc_else_token1] = ACTIONS(4255), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4255), [sym_preproc_directive] = ACTIONS(4255), [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(4259), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), + [aux_sym_program_statement_token1] = ACTIONS(4255), [aux_sym_end_program_statement_token1] = ACTIONS(4255), [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), + [aux_sym_module_statement_token1] = ACTIONS(4255), + [aux_sym_submodule_statement_token1] = ACTIONS(4255), [aux_sym_interface_statement_token1] = ACTIONS(4255), [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), + [aux_sym_subroutine_statement_token1] = ACTIONS(4255), [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), + [aux_sym_function_statement_token1] = ACTIONS(4255), [aux_sym_language_binding_token1] = ACTIONS(4255), [aux_sym_procedure_attributes_token1] = ACTIONS(4255), [aux_sym_procedure_attributes_token3] = ACTIONS(4255), @@ -199855,12 +199855,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), [aux_sym_type_qualifier_token1] = ACTIONS(4255), [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4255), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4255), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4255), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4255), [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4257), [aux_sym_stop_statement_token1] = ACTIONS(4255), [aux_sym_stop_statement_token2] = ACTIONS(4255), [aux_sym_subroutine_call_token1] = ACTIONS(4255), @@ -199896,12 +199896,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4255), [aux_sym_allocate_statement_token1] = ACTIONS(4255), [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), + [aux_sym_logical_expression_token5] = ACTIONS(4257), [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), + [anon_sym_LPAREN_SLASH] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_boolean_literal_token1] = ACTIONS(4257), + [aux_sym_boolean_literal_token2] = ACTIONS(4257), [aux_sym_null_literal_token1] = ACTIONS(4255), [aux_sym_coarray_statement_token1] = ACTIONS(4255), [aux_sym_coarray_statement_token2] = ACTIONS(4255), @@ -199913,1405 +199913,1545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), [aux_sym_identifier_token1] = ACTIONS(4255), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [sym__integer_literal] = ACTIONS(4257), + [sym__float_literal] = ACTIONS(4257), + [sym__boz_literal] = ACTIONS(4257), + [sym__string_literal] = ACTIONS(4257), + [sym__string_literal_kind] = ACTIONS(4257), }, [815] = { - [aux_sym_preproc_include_token1] = ACTIONS(4257), - [aux_sym_preproc_def_token1] = ACTIONS(4257), - [aux_sym_preproc_if_token1] = ACTIONS(4257), - [aux_sym_preproc_if_token2] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4257), - [aux_sym_preproc_else_token1] = ACTIONS(4257), - [aux_sym_preproc_elif_token1] = ACTIONS(4257), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4257), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4257), - [sym_preproc_directive] = ACTIONS(4257), - [anon_sym_LPAREN2] = ACTIONS(4257), - [sym_preproc_comment] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4265), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token2] = ACTIONS(4257), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4257), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4257), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4257), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4257), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4257), - [aux_sym_procedure_attributes_token1] = ACTIONS(4257), - [aux_sym_procedure_attributes_token3] = ACTIONS(4257), - [aux_sym_contains_statement_token1] = ACTIONS(4257), - [aux_sym_use_statement_token1] = ACTIONS(4257), - [aux_sym_use_statement_token2] = ACTIONS(4257), - [aux_sym_implicit_statement_token1] = ACTIONS(4257), - [aux_sym_implicit_statement_token3] = ACTIONS(4257), - [aux_sym_implicit_statement_token4] = ACTIONS(4257), - [aux_sym_save_statement_token1] = ACTIONS(4257), - [aux_sym_private_statement_token1] = ACTIONS(4257), - [aux_sym_public_statement_token1] = ACTIONS(4257), - [aux_sym_namelist_statement_token1] = ACTIONS(4257), - [aux_sym_common_statement_token1] = ACTIONS(4257), - [aux_sym_import_statement_token1] = ACTIONS(4257), - [aux_sym_derived_type_definition_token1] = ACTIONS(4257), - [aux_sym_abstract_specifier_token1] = ACTIONS(4257), - [aux_sym_procedure_attribute_token6] = ACTIONS(4257), - [aux_sym_variable_attributes_token1] = ACTIONS(4257), - [aux_sym_variable_attributes_token2] = ACTIONS(4257), - [aux_sym_variable_attributes_token3] = ACTIONS(4257), - [aux_sym_variable_attributes_token4] = ACTIONS(4257), - [aux_sym_variable_attributes_token5] = ACTIONS(4257), - [aux_sym__intrinsic_type_token1] = ACTIONS(4257), - [aux_sym__intrinsic_type_token2] = ACTIONS(4257), - [aux_sym__intrinsic_type_token3] = ACTIONS(4257), - [aux_sym__intrinsic_type_token4] = ACTIONS(4257), - [aux_sym__intrinsic_type_token6] = ACTIONS(4257), - [aux_sym__intrinsic_type_token7] = ACTIONS(4257), - [aux_sym__intrinsic_type_token8] = ACTIONS(4257), - [aux_sym__intrinsic_type_token9] = ACTIONS(4257), - [aux_sym__intrinsic_type_token10] = ACTIONS(4257), - [aux_sym_derived_type_token1] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4257), - [aux_sym_type_qualifier_token1] = ACTIONS(4257), - [aux_sym_type_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4265), - [aux_sym_stop_statement_token1] = ACTIONS(4257), - [aux_sym_stop_statement_token2] = ACTIONS(4257), - [aux_sym_subroutine_call_token1] = ACTIONS(4257), - [aux_sym_keyword_statement_token1] = ACTIONS(4257), - [aux_sym_keyword_statement_token2] = ACTIONS(4257), - [aux_sym_keyword_statement_token3] = ACTIONS(4257), - [aux_sym_keyword_statement_token4] = ACTIONS(4257), - [aux_sym_keyword_statement_token6] = ACTIONS(4257), - [aux_sym_keyword_statement_token7] = ACTIONS(4257), - [aux_sym_include_statement_token1] = ACTIONS(4257), - [aux_sym_data_statement_token1] = ACTIONS(4257), - [aux_sym_do_loop_statement_token1] = ACTIONS(4257), - [aux_sym__inline_if_statement_token1] = ACTIONS(4257), - [aux_sym_end_if_statement_token1] = ACTIONS(4257), - [aux_sym_elseif_clause_token2] = ACTIONS(4257), - [aux_sym__inline_where_statement_token1] = ACTIONS(4257), - [aux_sym__forall_control_expression_token1] = ACTIONS(4257), - [aux_sym_select_case_statement_token1] = ACTIONS(4257), - [aux_sym_select_case_statement_token3] = ACTIONS(4257), - [aux_sym_select_type_statement_token1] = ACTIONS(4257), - [aux_sym_select_rank_statement_token2] = ACTIONS(4257), - [aux_sym_block_construct_token1] = ACTIONS(4257), - [aux_sym_associate_statement_token1] = ACTIONS(4257), - [aux_sym_format_statement_token1] = ACTIONS(4257), - [aux_sym_print_statement_token1] = ACTIONS(4257), - [aux_sym_open_statement_token1] = ACTIONS(4257), - [aux_sym_close_statement_token1] = ACTIONS(4257), - [aux_sym_inquire_statement_token1] = ACTIONS(4257), - [aux_sym_enum_statement_token1] = ACTIONS(4257), - [aux_sym_file_position_statement_token1] = ACTIONS(4257), - [aux_sym_file_position_statement_token2] = ACTIONS(4257), - [aux_sym_file_position_statement_token3] = ACTIONS(4257), - [aux_sym_file_position_statement_token4] = ACTIONS(4257), - [aux_sym_allocate_statement_token1] = ACTIONS(4257), - [aux_sym_entry_statement_token1] = ACTIONS(4257), - [aux_sym_logical_expression_token5] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4257), - [anon_sym_LPAREN_SLASH] = ACTIONS(4265), - [anon_sym_LBRACK] = ACTIONS(4265), - [aux_sym_boolean_literal_token1] = ACTIONS(4265), - [aux_sym_boolean_literal_token2] = ACTIONS(4265), - [aux_sym_null_literal_token1] = ACTIONS(4257), - [aux_sym_coarray_statement_token1] = ACTIONS(4257), - [aux_sym_coarray_statement_token2] = ACTIONS(4257), - [aux_sym_coarray_statement_token6] = ACTIONS(4257), - [aux_sym_coarray_statement_token8] = ACTIONS(4257), - [aux_sym_coarray_statement_token11] = ACTIONS(4257), - [aux_sym_coarray_statement_token12] = ACTIONS(4257), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4257), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4257), - [aux_sym_identifier_token1] = ACTIONS(4257), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4265), - [sym__float_literal] = ACTIONS(4265), - [sym__boz_literal] = ACTIONS(4265), - [sym__string_literal] = ACTIONS(4265), - [sym__string_literal_kind] = ACTIONS(4265), + [aux_sym_preproc_include_token1] = ACTIONS(4259), + [aux_sym_preproc_def_token1] = ACTIONS(4259), + [aux_sym_preproc_if_token1] = ACTIONS(4259), + [aux_sym_preproc_if_token2] = ACTIONS(4259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4259), + [aux_sym_preproc_else_token1] = ACTIONS(4259), + [aux_sym_preproc_elif_token1] = ACTIONS(4259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4259), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4259), + [sym_preproc_directive] = ACTIONS(4259), + [anon_sym_LPAREN2] = ACTIONS(4259), + [sym_preproc_comment] = ACTIONS(4261), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4259), + [aux_sym_end_program_statement_token1] = ACTIONS(4259), + [aux_sym_end_program_statement_token2] = ACTIONS(4259), + [aux_sym_module_statement_token1] = ACTIONS(4259), + [aux_sym_submodule_statement_token1] = ACTIONS(4259), + [aux_sym_interface_statement_token1] = ACTIONS(4259), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4259), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4259), + [aux_sym_subroutine_statement_token1] = ACTIONS(4259), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4259), + [aux_sym_function_statement_token1] = ACTIONS(4259), + [aux_sym_language_binding_token1] = ACTIONS(4259), + [aux_sym_procedure_attributes_token1] = ACTIONS(4259), + [aux_sym_procedure_attributes_token3] = ACTIONS(4259), + [aux_sym_contains_statement_token1] = ACTIONS(4259), + [aux_sym_use_statement_token1] = ACTIONS(4259), + [aux_sym_use_statement_token2] = ACTIONS(4259), + [aux_sym_implicit_statement_token1] = ACTIONS(4259), + [aux_sym_implicit_statement_token3] = ACTIONS(4259), + [aux_sym_implicit_statement_token4] = ACTIONS(4259), + [aux_sym_save_statement_token1] = ACTIONS(4259), + [aux_sym_private_statement_token1] = ACTIONS(4259), + [aux_sym_public_statement_token1] = ACTIONS(4259), + [aux_sym_namelist_statement_token1] = ACTIONS(4259), + [aux_sym_common_statement_token1] = ACTIONS(4259), + [aux_sym_import_statement_token1] = ACTIONS(4259), + [aux_sym_derived_type_definition_token1] = ACTIONS(4259), + [aux_sym_abstract_specifier_token1] = ACTIONS(4259), + [aux_sym_procedure_attribute_token6] = ACTIONS(4259), + [aux_sym_variable_attributes_token1] = ACTIONS(4259), + [aux_sym_variable_attributes_token2] = ACTIONS(4259), + [aux_sym_variable_attributes_token3] = ACTIONS(4259), + [aux_sym_variable_attributes_token4] = ACTIONS(4259), + [aux_sym_variable_attributes_token5] = ACTIONS(4259), + [aux_sym__intrinsic_type_token1] = ACTIONS(4259), + [aux_sym__intrinsic_type_token2] = ACTIONS(4259), + [aux_sym__intrinsic_type_token3] = ACTIONS(4259), + [aux_sym__intrinsic_type_token4] = ACTIONS(4259), + [aux_sym__intrinsic_type_token6] = ACTIONS(4259), + [aux_sym__intrinsic_type_token7] = ACTIONS(4259), + [aux_sym__intrinsic_type_token8] = ACTIONS(4259), + [aux_sym__intrinsic_type_token9] = ACTIONS(4259), + [aux_sym__intrinsic_type_token10] = ACTIONS(4259), + [aux_sym_derived_type_token1] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4259), + [aux_sym_type_qualifier_token1] = ACTIONS(4259), + [aux_sym_type_qualifier_token2] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4259), + [aux_sym_equivalence_statement_token1] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4263), + [aux_sym_stop_statement_token1] = ACTIONS(4259), + [aux_sym_stop_statement_token2] = ACTIONS(4259), + [aux_sym_subroutine_call_token1] = ACTIONS(4259), + [aux_sym_keyword_statement_token1] = ACTIONS(4259), + [aux_sym_keyword_statement_token2] = ACTIONS(4259), + [aux_sym_keyword_statement_token3] = ACTIONS(4259), + [aux_sym_keyword_statement_token4] = ACTIONS(4259), + [aux_sym_keyword_statement_token6] = ACTIONS(4259), + [aux_sym_keyword_statement_token7] = ACTIONS(4259), + [aux_sym_include_statement_token1] = ACTIONS(4259), + [aux_sym_data_statement_token1] = ACTIONS(4259), + [aux_sym_do_loop_statement_token1] = ACTIONS(4259), + [aux_sym__inline_if_statement_token1] = ACTIONS(4259), + [aux_sym_end_if_statement_token1] = ACTIONS(4259), + [aux_sym_elseif_clause_token2] = ACTIONS(4259), + [aux_sym__inline_where_statement_token1] = ACTIONS(4259), + [aux_sym__forall_control_expression_token1] = ACTIONS(4259), + [aux_sym_select_case_statement_token1] = ACTIONS(4259), + [aux_sym_select_case_statement_token3] = ACTIONS(4259), + [aux_sym_select_type_statement_token1] = ACTIONS(4259), + [aux_sym_select_rank_statement_token2] = ACTIONS(4259), + [aux_sym_block_construct_token1] = ACTIONS(4259), + [aux_sym_associate_statement_token1] = ACTIONS(4259), + [aux_sym_format_statement_token1] = ACTIONS(4259), + [aux_sym_print_statement_token1] = ACTIONS(4259), + [aux_sym_open_statement_token1] = ACTIONS(4259), + [aux_sym_close_statement_token1] = ACTIONS(4259), + [aux_sym_inquire_statement_token1] = ACTIONS(4259), + [aux_sym_enum_statement_token1] = ACTIONS(4259), + [aux_sym_file_position_statement_token1] = ACTIONS(4259), + [aux_sym_file_position_statement_token2] = ACTIONS(4259), + [aux_sym_file_position_statement_token3] = ACTIONS(4259), + [aux_sym_file_position_statement_token4] = ACTIONS(4259), + [aux_sym_allocate_statement_token1] = ACTIONS(4259), + [aux_sym_entry_statement_token1] = ACTIONS(4259), + [aux_sym_logical_expression_token5] = ACTIONS(4263), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_LPAREN_SLASH] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4263), + [aux_sym_boolean_literal_token1] = ACTIONS(4263), + [aux_sym_boolean_literal_token2] = ACTIONS(4263), + [aux_sym_null_literal_token1] = ACTIONS(4259), + [aux_sym_coarray_statement_token1] = ACTIONS(4259), + [aux_sym_coarray_statement_token2] = ACTIONS(4259), + [aux_sym_coarray_statement_token6] = ACTIONS(4259), + [aux_sym_coarray_statement_token8] = ACTIONS(4259), + [aux_sym_coarray_statement_token11] = ACTIONS(4259), + [aux_sym_coarray_statement_token12] = ACTIONS(4259), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4259), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4259), + [aux_sym_identifier_token1] = ACTIONS(4259), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4263), + [sym__float_literal] = ACTIONS(4263), + [sym__boz_literal] = ACTIONS(4263), + [sym__string_literal] = ACTIONS(4263), + [sym__string_literal_kind] = ACTIONS(4263), }, [816] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token2] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [aux_sym_preproc_else_token1] = ACTIONS(4269), - [aux_sym_preproc_elif_token1] = ACTIONS(4269), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4275), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_end_program_statement_token2] = ACTIONS(4267), - [aux_sym_module_statement_token1] = ACTIONS(4275), - [aux_sym_submodule_statement_token1] = ACTIONS(4275), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_subroutine_statement_token1] = ACTIONS(4275), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_function_statement_token1] = ACTIONS(4275), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4275), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [aux_sym_preproc_include_token1] = ACTIONS(4265), + [aux_sym_preproc_def_token1] = ACTIONS(4265), + [aux_sym_preproc_if_token1] = ACTIONS(4265), + [aux_sym_preproc_if_token2] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4265), + [aux_sym_preproc_else_token1] = ACTIONS(4265), + [aux_sym_preproc_elif_token1] = ACTIONS(4265), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4265), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4265), + [sym_preproc_directive] = ACTIONS(4265), + [anon_sym_LPAREN2] = ACTIONS(4265), + [sym_preproc_comment] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token2] = ACTIONS(4265), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4265), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4265), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4265), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4265), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4265), + [aux_sym_procedure_attributes_token1] = ACTIONS(4265), + [aux_sym_procedure_attributes_token3] = ACTIONS(4265), + [aux_sym_contains_statement_token1] = ACTIONS(4265), + [aux_sym_use_statement_token1] = ACTIONS(4265), + [aux_sym_use_statement_token2] = ACTIONS(4265), + [aux_sym_implicit_statement_token1] = ACTIONS(4265), + [aux_sym_implicit_statement_token3] = ACTIONS(4265), + [aux_sym_implicit_statement_token4] = ACTIONS(4265), + [aux_sym_save_statement_token1] = ACTIONS(4265), + [aux_sym_private_statement_token1] = ACTIONS(4265), + [aux_sym_public_statement_token1] = ACTIONS(4265), + [aux_sym_namelist_statement_token1] = ACTIONS(4265), + [aux_sym_common_statement_token1] = ACTIONS(4265), + [aux_sym_import_statement_token1] = ACTIONS(4265), + [aux_sym_derived_type_definition_token1] = ACTIONS(4265), + [aux_sym_abstract_specifier_token1] = ACTIONS(4265), + [aux_sym_procedure_attribute_token6] = ACTIONS(4265), + [aux_sym_variable_attributes_token1] = ACTIONS(4265), + [aux_sym_variable_attributes_token2] = ACTIONS(4265), + [aux_sym_variable_attributes_token3] = ACTIONS(4265), + [aux_sym_variable_attributes_token4] = ACTIONS(4265), + [aux_sym_variable_attributes_token5] = ACTIONS(4265), + [aux_sym__intrinsic_type_token1] = ACTIONS(4265), + [aux_sym__intrinsic_type_token2] = ACTIONS(4265), + [aux_sym__intrinsic_type_token3] = ACTIONS(4265), + [aux_sym__intrinsic_type_token4] = ACTIONS(4265), + [aux_sym__intrinsic_type_token6] = ACTIONS(4265), + [aux_sym__intrinsic_type_token7] = ACTIONS(4265), + [aux_sym__intrinsic_type_token8] = ACTIONS(4265), + [aux_sym__intrinsic_type_token9] = ACTIONS(4265), + [aux_sym__intrinsic_type_token10] = ACTIONS(4265), + [aux_sym_derived_type_token1] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4265), + [aux_sym_type_qualifier_token1] = ACTIONS(4265), + [aux_sym_type_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4265), + [anon_sym_SEMI] = ACTIONS(4269), + [aux_sym_stop_statement_token1] = ACTIONS(4265), + [aux_sym_stop_statement_token2] = ACTIONS(4265), + [aux_sym_subroutine_call_token1] = ACTIONS(4265), + [aux_sym_keyword_statement_token1] = ACTIONS(4265), + [aux_sym_keyword_statement_token2] = ACTIONS(4265), + [aux_sym_keyword_statement_token3] = ACTIONS(4265), + [aux_sym_keyword_statement_token4] = ACTIONS(4265), + [aux_sym_keyword_statement_token6] = ACTIONS(4265), + [aux_sym_keyword_statement_token7] = ACTIONS(4265), + [aux_sym_include_statement_token1] = ACTIONS(4265), + [aux_sym_data_statement_token1] = ACTIONS(4265), + [aux_sym_do_loop_statement_token1] = ACTIONS(4265), + [aux_sym__inline_if_statement_token1] = ACTIONS(4265), + [aux_sym_end_if_statement_token1] = ACTIONS(4265), + [aux_sym_elseif_clause_token2] = ACTIONS(4265), + [aux_sym__inline_where_statement_token1] = ACTIONS(4265), + [aux_sym__forall_control_expression_token1] = ACTIONS(4265), + [aux_sym_select_case_statement_token1] = ACTIONS(4265), + [aux_sym_select_case_statement_token3] = ACTIONS(4265), + [aux_sym_select_type_statement_token1] = ACTIONS(4265), + [aux_sym_select_rank_statement_token2] = ACTIONS(4265), + [aux_sym_block_construct_token1] = ACTIONS(4265), + [aux_sym_associate_statement_token1] = ACTIONS(4265), + [aux_sym_format_statement_token1] = ACTIONS(4265), + [aux_sym_print_statement_token1] = ACTIONS(4265), + [aux_sym_open_statement_token1] = ACTIONS(4265), + [aux_sym_close_statement_token1] = ACTIONS(4265), + [aux_sym_inquire_statement_token1] = ACTIONS(4265), + [aux_sym_enum_statement_token1] = ACTIONS(4265), + [aux_sym_file_position_statement_token1] = ACTIONS(4265), + [aux_sym_file_position_statement_token2] = ACTIONS(4265), + [aux_sym_file_position_statement_token3] = ACTIONS(4265), + [aux_sym_file_position_statement_token4] = ACTIONS(4265), + [aux_sym_allocate_statement_token1] = ACTIONS(4265), + [aux_sym_entry_statement_token1] = ACTIONS(4265), + [aux_sym_logical_expression_token5] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_LPAREN_SLASH] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [aux_sym_boolean_literal_token1] = ACTIONS(4269), + [aux_sym_boolean_literal_token2] = ACTIONS(4269), + [aux_sym_null_literal_token1] = ACTIONS(4265), + [aux_sym_coarray_statement_token1] = ACTIONS(4265), + [aux_sym_coarray_statement_token2] = ACTIONS(4265), + [aux_sym_coarray_statement_token6] = ACTIONS(4265), + [aux_sym_coarray_statement_token8] = ACTIONS(4265), + [aux_sym_coarray_statement_token11] = ACTIONS(4265), + [aux_sym_coarray_statement_token12] = ACTIONS(4265), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4265), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4265), + [aux_sym_identifier_token1] = ACTIONS(4265), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4269), + [sym__float_literal] = ACTIONS(4269), + [sym__boz_literal] = ACTIONS(4269), + [sym__string_literal] = ACTIONS(4269), + [sym__string_literal_kind] = ACTIONS(4269), }, [817] = { - [aux_sym_preproc_include_token1] = ACTIONS(4277), - [aux_sym_preproc_def_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token2] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4277), - [aux_sym_preproc_else_token1] = ACTIONS(4277), - [aux_sym_preproc_elif_token1] = ACTIONS(4277), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4277), - [sym_preproc_directive] = ACTIONS(4277), - [anon_sym_LPAREN2] = ACTIONS(4277), - [sym_preproc_comment] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(4277), - [aux_sym_end_program_statement_token2] = ACTIONS(4277), - [aux_sym_module_statement_token1] = ACTIONS(4277), - [aux_sym_submodule_statement_token1] = ACTIONS(4277), - [aux_sym_interface_statement_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4277), - [aux_sym_subroutine_statement_token1] = ACTIONS(4277), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4277), - [aux_sym_function_statement_token1] = ACTIONS(4277), - [aux_sym_language_binding_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token3] = ACTIONS(4277), - [aux_sym_contains_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token2] = ACTIONS(4277), - [aux_sym_implicit_statement_token1] = ACTIONS(4277), - [aux_sym_implicit_statement_token3] = ACTIONS(4277), - [aux_sym_implicit_statement_token4] = ACTIONS(4277), - [aux_sym_save_statement_token1] = ACTIONS(4277), - [aux_sym_private_statement_token1] = ACTIONS(4277), - [aux_sym_public_statement_token1] = ACTIONS(4277), - [aux_sym_namelist_statement_token1] = ACTIONS(4277), - [aux_sym_common_statement_token1] = ACTIONS(4277), - [aux_sym_import_statement_token1] = ACTIONS(4277), - [aux_sym_derived_type_definition_token1] = ACTIONS(4277), - [aux_sym_abstract_specifier_token1] = ACTIONS(4277), - [aux_sym_procedure_attribute_token6] = ACTIONS(4277), - [aux_sym_variable_attributes_token1] = ACTIONS(4277), - [aux_sym_variable_attributes_token2] = ACTIONS(4277), - [aux_sym_variable_attributes_token3] = ACTIONS(4277), - [aux_sym_variable_attributes_token4] = ACTIONS(4277), - [aux_sym_variable_attributes_token5] = ACTIONS(4277), - [aux_sym__intrinsic_type_token1] = ACTIONS(4277), - [aux_sym__intrinsic_type_token2] = ACTIONS(4277), - [aux_sym__intrinsic_type_token3] = ACTIONS(4277), - [aux_sym__intrinsic_type_token4] = ACTIONS(4277), - [aux_sym__intrinsic_type_token6] = ACTIONS(4277), - [aux_sym__intrinsic_type_token7] = ACTIONS(4277), - [aux_sym__intrinsic_type_token8] = ACTIONS(4277), - [aux_sym__intrinsic_type_token9] = ACTIONS(4277), - [aux_sym__intrinsic_type_token10] = ACTIONS(4277), - [aux_sym_derived_type_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4277), - [aux_sym_type_qualifier_token1] = ACTIONS(4277), - [aux_sym_type_qualifier_token2] = ACTIONS(4277), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4277), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4277), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4277), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4277), - [aux_sym_equivalence_statement_token1] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4279), - [aux_sym_stop_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token2] = ACTIONS(4277), - [aux_sym_subroutine_call_token1] = ACTIONS(4277), - [aux_sym_keyword_statement_token1] = ACTIONS(4277), - [aux_sym_keyword_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token3] = ACTIONS(4277), - [aux_sym_keyword_statement_token4] = ACTIONS(4277), - [aux_sym_keyword_statement_token6] = ACTIONS(4277), - [aux_sym_keyword_statement_token7] = ACTIONS(4277), - [aux_sym_include_statement_token1] = ACTIONS(4277), - [aux_sym_data_statement_token1] = ACTIONS(4277), - [aux_sym_do_loop_statement_token1] = ACTIONS(4277), - [aux_sym__inline_if_statement_token1] = ACTIONS(4277), - [aux_sym_end_if_statement_token1] = ACTIONS(4277), - [aux_sym_elseif_clause_token2] = ACTIONS(4277), - [aux_sym__inline_where_statement_token1] = ACTIONS(4277), - [aux_sym__forall_control_expression_token1] = ACTIONS(4277), - [aux_sym_select_case_statement_token1] = ACTIONS(4277), - [aux_sym_select_case_statement_token3] = ACTIONS(4277), - [aux_sym_select_type_statement_token1] = ACTIONS(4277), - [aux_sym_select_rank_statement_token2] = ACTIONS(4277), - [aux_sym_block_construct_token1] = ACTIONS(4277), - [aux_sym_associate_statement_token1] = ACTIONS(4277), - [aux_sym_format_statement_token1] = ACTIONS(4277), - [aux_sym_print_statement_token1] = ACTIONS(4277), - [aux_sym_open_statement_token1] = ACTIONS(4277), - [aux_sym_close_statement_token1] = ACTIONS(4277), - [aux_sym_inquire_statement_token1] = ACTIONS(4277), - [aux_sym_enum_statement_token1] = ACTIONS(4277), - [aux_sym_file_position_statement_token1] = ACTIONS(4277), - [aux_sym_file_position_statement_token2] = ACTIONS(4277), - [aux_sym_file_position_statement_token3] = ACTIONS(4277), - [aux_sym_file_position_statement_token4] = ACTIONS(4277), - [aux_sym_allocate_statement_token1] = ACTIONS(4277), - [aux_sym_entry_statement_token1] = ACTIONS(4277), - [aux_sym_logical_expression_token5] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LPAREN_SLASH] = ACTIONS(4279), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_boolean_literal_token1] = ACTIONS(4279), - [aux_sym_boolean_literal_token2] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token2] = ACTIONS(4277), - [aux_sym_coarray_statement_token6] = ACTIONS(4277), - [aux_sym_coarray_statement_token8] = ACTIONS(4277), - [aux_sym_coarray_statement_token11] = ACTIONS(4277), - [aux_sym_coarray_statement_token12] = ACTIONS(4277), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4277), - [aux_sym_identifier_token1] = ACTIONS(4277), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4279), - [sym__float_literal] = ACTIONS(4279), - [sym__boz_literal] = ACTIONS(4279), - [sym__string_literal] = ACTIONS(4279), - [sym__string_literal_kind] = ACTIONS(4279), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [818] = { - [aux_sym_preproc_include_token1] = ACTIONS(4281), - [aux_sym_preproc_def_token1] = ACTIONS(4281), - [aux_sym_preproc_if_token1] = ACTIONS(4281), - [aux_sym_preproc_if_token2] = ACTIONS(4281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), - [aux_sym_preproc_else_token1] = ACTIONS(4281), - [aux_sym_preproc_elif_token1] = ACTIONS(4281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4281), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4281), - [sym_preproc_directive] = ACTIONS(4281), - [anon_sym_LPAREN2] = ACTIONS(4281), - [sym_preproc_comment] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4281), - [aux_sym_end_program_statement_token1] = ACTIONS(4281), - [aux_sym_end_program_statement_token2] = ACTIONS(4281), - [aux_sym_module_statement_token1] = ACTIONS(4281), - [aux_sym_submodule_statement_token1] = ACTIONS(4281), - [aux_sym_interface_statement_token1] = ACTIONS(4281), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4281), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4281), - [aux_sym_subroutine_statement_token1] = ACTIONS(4281), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4281), - [aux_sym_function_statement_token1] = ACTIONS(4281), - [aux_sym_language_binding_token1] = ACTIONS(4281), - [aux_sym_procedure_attributes_token1] = ACTIONS(4281), - [aux_sym_procedure_attributes_token3] = ACTIONS(4281), - [aux_sym_contains_statement_token1] = ACTIONS(4281), - [aux_sym_use_statement_token1] = ACTIONS(4281), - [aux_sym_use_statement_token2] = ACTIONS(4281), - [aux_sym_implicit_statement_token1] = ACTIONS(4281), - [aux_sym_implicit_statement_token3] = ACTIONS(4281), - [aux_sym_implicit_statement_token4] = ACTIONS(4281), - [aux_sym_save_statement_token1] = ACTIONS(4281), - [aux_sym_private_statement_token1] = ACTIONS(4281), - [aux_sym_public_statement_token1] = ACTIONS(4281), - [aux_sym_namelist_statement_token1] = ACTIONS(4281), - [aux_sym_common_statement_token1] = ACTIONS(4281), - [aux_sym_import_statement_token1] = ACTIONS(4281), - [aux_sym_derived_type_definition_token1] = ACTIONS(4281), - [aux_sym_abstract_specifier_token1] = ACTIONS(4281), - [aux_sym_procedure_attribute_token6] = ACTIONS(4281), - [aux_sym_variable_attributes_token1] = ACTIONS(4281), - [aux_sym_variable_attributes_token2] = ACTIONS(4281), - [aux_sym_variable_attributes_token3] = ACTIONS(4281), - [aux_sym_variable_attributes_token4] = ACTIONS(4281), - [aux_sym_variable_attributes_token5] = ACTIONS(4281), - [aux_sym__intrinsic_type_token1] = ACTIONS(4281), - [aux_sym__intrinsic_type_token2] = ACTIONS(4281), - [aux_sym__intrinsic_type_token3] = ACTIONS(4281), - [aux_sym__intrinsic_type_token4] = ACTIONS(4281), - [aux_sym__intrinsic_type_token6] = ACTIONS(4281), - [aux_sym__intrinsic_type_token7] = ACTIONS(4281), - [aux_sym__intrinsic_type_token8] = ACTIONS(4281), - [aux_sym__intrinsic_type_token9] = ACTIONS(4281), - [aux_sym__intrinsic_type_token10] = ACTIONS(4281), - [aux_sym_derived_type_token1] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4281), - [aux_sym_type_qualifier_token1] = ACTIONS(4281), - [aux_sym_type_qualifier_token2] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4281), - [aux_sym_equivalence_statement_token1] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4285), - [aux_sym_stop_statement_token1] = ACTIONS(4281), - [aux_sym_stop_statement_token2] = ACTIONS(4281), - [aux_sym_subroutine_call_token1] = ACTIONS(4281), - [aux_sym_keyword_statement_token1] = ACTIONS(4281), - [aux_sym_keyword_statement_token2] = ACTIONS(4281), - [aux_sym_keyword_statement_token3] = ACTIONS(4281), - [aux_sym_keyword_statement_token4] = ACTIONS(4281), - [aux_sym_keyword_statement_token6] = ACTIONS(4281), - [aux_sym_keyword_statement_token7] = ACTIONS(4281), - [aux_sym_include_statement_token1] = ACTIONS(4281), - [aux_sym_data_statement_token1] = ACTIONS(4281), - [aux_sym_do_loop_statement_token1] = ACTIONS(4281), - [aux_sym__inline_if_statement_token1] = ACTIONS(4281), - [aux_sym_end_if_statement_token1] = ACTIONS(4281), - [aux_sym_elseif_clause_token2] = ACTIONS(4281), - [aux_sym__inline_where_statement_token1] = ACTIONS(4281), - [aux_sym__forall_control_expression_token1] = ACTIONS(4281), - [aux_sym_select_case_statement_token1] = ACTIONS(4281), - [aux_sym_select_case_statement_token3] = ACTIONS(4281), - [aux_sym_select_type_statement_token1] = ACTIONS(4281), - [aux_sym_select_rank_statement_token2] = ACTIONS(4281), - [aux_sym_block_construct_token1] = ACTIONS(4281), - [aux_sym_associate_statement_token1] = ACTIONS(4281), - [aux_sym_format_statement_token1] = ACTIONS(4281), - [aux_sym_print_statement_token1] = ACTIONS(4281), - [aux_sym_open_statement_token1] = ACTIONS(4281), - [aux_sym_close_statement_token1] = ACTIONS(4281), - [aux_sym_inquire_statement_token1] = ACTIONS(4281), - [aux_sym_enum_statement_token1] = ACTIONS(4281), - [aux_sym_file_position_statement_token1] = ACTIONS(4281), - [aux_sym_file_position_statement_token2] = ACTIONS(4281), - [aux_sym_file_position_statement_token3] = ACTIONS(4281), - [aux_sym_file_position_statement_token4] = ACTIONS(4281), - [aux_sym_allocate_statement_token1] = ACTIONS(4281), - [aux_sym_entry_statement_token1] = ACTIONS(4281), - [aux_sym_logical_expression_token5] = ACTIONS(4285), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_LPAREN_SLASH] = ACTIONS(4285), - [anon_sym_LBRACK] = ACTIONS(4285), - [aux_sym_boolean_literal_token1] = ACTIONS(4285), - [aux_sym_boolean_literal_token2] = ACTIONS(4285), - [aux_sym_null_literal_token1] = ACTIONS(4281), - [aux_sym_coarray_statement_token1] = ACTIONS(4281), - [aux_sym_coarray_statement_token2] = ACTIONS(4281), - [aux_sym_coarray_statement_token6] = ACTIONS(4281), - [aux_sym_coarray_statement_token8] = ACTIONS(4281), - [aux_sym_coarray_statement_token11] = ACTIONS(4281), - [aux_sym_coarray_statement_token12] = ACTIONS(4281), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4281), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4281), - [aux_sym_identifier_token1] = ACTIONS(4281), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4285), - [sym__float_literal] = ACTIONS(4285), - [sym__boz_literal] = ACTIONS(4285), - [sym__string_literal] = ACTIONS(4285), - [sym__string_literal_kind] = ACTIONS(4285), + [aux_sym_preproc_include_token1] = ACTIONS(4279), + [aux_sym_preproc_def_token1] = ACTIONS(4279), + [aux_sym_preproc_if_token1] = ACTIONS(4279), + [aux_sym_preproc_if_token2] = ACTIONS(4279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4279), + [aux_sym_preproc_else_token1] = ACTIONS(4279), + [aux_sym_preproc_elif_token1] = ACTIONS(4279), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4279), + [sym_preproc_directive] = ACTIONS(4279), + [anon_sym_LPAREN2] = ACTIONS(4279), + [sym_preproc_comment] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4279), + [aux_sym_end_program_statement_token1] = ACTIONS(4279), + [aux_sym_end_program_statement_token2] = ACTIONS(4279), + [aux_sym_module_statement_token1] = ACTIONS(4279), + [aux_sym_submodule_statement_token1] = ACTIONS(4279), + [aux_sym_interface_statement_token1] = ACTIONS(4279), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4279), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4279), + [aux_sym_subroutine_statement_token1] = ACTIONS(4279), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4279), + [aux_sym_function_statement_token1] = ACTIONS(4279), + [aux_sym_language_binding_token1] = ACTIONS(4279), + [aux_sym_procedure_attributes_token1] = ACTIONS(4279), + [aux_sym_procedure_attributes_token3] = ACTIONS(4279), + [aux_sym_contains_statement_token1] = ACTIONS(4279), + [aux_sym_use_statement_token1] = ACTIONS(4279), + [aux_sym_use_statement_token2] = ACTIONS(4279), + [aux_sym_implicit_statement_token1] = ACTIONS(4279), + [aux_sym_implicit_statement_token3] = ACTIONS(4279), + [aux_sym_implicit_statement_token4] = ACTIONS(4279), + [aux_sym_save_statement_token1] = ACTIONS(4279), + [aux_sym_private_statement_token1] = ACTIONS(4279), + [aux_sym_public_statement_token1] = ACTIONS(4279), + [aux_sym_namelist_statement_token1] = ACTIONS(4279), + [aux_sym_common_statement_token1] = ACTIONS(4279), + [aux_sym_import_statement_token1] = ACTIONS(4279), + [aux_sym_derived_type_definition_token1] = ACTIONS(4279), + [aux_sym_abstract_specifier_token1] = ACTIONS(4279), + [aux_sym_procedure_attribute_token6] = ACTIONS(4279), + [aux_sym_variable_attributes_token1] = ACTIONS(4279), + [aux_sym_variable_attributes_token2] = ACTIONS(4279), + [aux_sym_variable_attributes_token3] = ACTIONS(4279), + [aux_sym_variable_attributes_token4] = ACTIONS(4279), + [aux_sym_variable_attributes_token5] = ACTIONS(4279), + [aux_sym__intrinsic_type_token1] = ACTIONS(4279), + [aux_sym__intrinsic_type_token2] = ACTIONS(4279), + [aux_sym__intrinsic_type_token3] = ACTIONS(4279), + [aux_sym__intrinsic_type_token4] = ACTIONS(4279), + [aux_sym__intrinsic_type_token6] = ACTIONS(4279), + [aux_sym__intrinsic_type_token7] = ACTIONS(4279), + [aux_sym__intrinsic_type_token8] = ACTIONS(4279), + [aux_sym__intrinsic_type_token9] = ACTIONS(4279), + [aux_sym__intrinsic_type_token10] = ACTIONS(4279), + [aux_sym_derived_type_token1] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4279), + [aux_sym_type_qualifier_token1] = ACTIONS(4279), + [aux_sym_type_qualifier_token2] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4279), + [aux_sym_equivalence_statement_token1] = ACTIONS(4279), + [anon_sym_SEMI] = ACTIONS(4283), + [aux_sym_stop_statement_token1] = ACTIONS(4279), + [aux_sym_stop_statement_token2] = ACTIONS(4279), + [aux_sym_subroutine_call_token1] = ACTIONS(4279), + [aux_sym_keyword_statement_token1] = ACTIONS(4279), + [aux_sym_keyword_statement_token2] = ACTIONS(4279), + [aux_sym_keyword_statement_token3] = ACTIONS(4279), + [aux_sym_keyword_statement_token4] = ACTIONS(4279), + [aux_sym_keyword_statement_token6] = ACTIONS(4279), + [aux_sym_keyword_statement_token7] = ACTIONS(4279), + [aux_sym_include_statement_token1] = ACTIONS(4279), + [aux_sym_data_statement_token1] = ACTIONS(4279), + [aux_sym_do_loop_statement_token1] = ACTIONS(4279), + [aux_sym__inline_if_statement_token1] = ACTIONS(4279), + [aux_sym_end_if_statement_token1] = ACTIONS(4279), + [aux_sym_elseif_clause_token2] = ACTIONS(4279), + [aux_sym__inline_where_statement_token1] = ACTIONS(4279), + [aux_sym__forall_control_expression_token1] = ACTIONS(4279), + [aux_sym_select_case_statement_token1] = ACTIONS(4279), + [aux_sym_select_case_statement_token3] = ACTIONS(4279), + [aux_sym_select_type_statement_token1] = ACTIONS(4279), + [aux_sym_select_rank_statement_token2] = ACTIONS(4279), + [aux_sym_block_construct_token1] = ACTIONS(4279), + [aux_sym_associate_statement_token1] = ACTIONS(4279), + [aux_sym_format_statement_token1] = ACTIONS(4279), + [aux_sym_print_statement_token1] = ACTIONS(4279), + [aux_sym_open_statement_token1] = ACTIONS(4279), + [aux_sym_close_statement_token1] = ACTIONS(4279), + [aux_sym_inquire_statement_token1] = ACTIONS(4279), + [aux_sym_enum_statement_token1] = ACTIONS(4279), + [aux_sym_file_position_statement_token1] = ACTIONS(4279), + [aux_sym_file_position_statement_token2] = ACTIONS(4279), + [aux_sym_file_position_statement_token3] = ACTIONS(4279), + [aux_sym_file_position_statement_token4] = ACTIONS(4279), + [aux_sym_allocate_statement_token1] = ACTIONS(4279), + [aux_sym_entry_statement_token1] = ACTIONS(4279), + [aux_sym_logical_expression_token5] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4279), + [anon_sym_LPAREN_SLASH] = ACTIONS(4283), + [anon_sym_LBRACK] = ACTIONS(4283), + [aux_sym_boolean_literal_token1] = ACTIONS(4283), + [aux_sym_boolean_literal_token2] = ACTIONS(4283), + [aux_sym_null_literal_token1] = ACTIONS(4279), + [aux_sym_coarray_statement_token1] = ACTIONS(4279), + [aux_sym_coarray_statement_token2] = ACTIONS(4279), + [aux_sym_coarray_statement_token6] = ACTIONS(4279), + [aux_sym_coarray_statement_token8] = ACTIONS(4279), + [aux_sym_coarray_statement_token11] = ACTIONS(4279), + [aux_sym_coarray_statement_token12] = ACTIONS(4279), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4279), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4279), + [aux_sym_identifier_token1] = ACTIONS(4279), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4283), + [sym__float_literal] = ACTIONS(4283), + [sym__boz_literal] = ACTIONS(4283), + [sym__string_literal] = ACTIONS(4283), + [sym__string_literal_kind] = ACTIONS(4283), }, [819] = { - [aux_sym_preproc_include_token1] = ACTIONS(4287), - [aux_sym_preproc_def_token1] = ACTIONS(4287), - [aux_sym_preproc_if_token1] = ACTIONS(4287), - [aux_sym_preproc_if_token2] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4287), - [aux_sym_preproc_else_token1] = ACTIONS(4287), - [aux_sym_preproc_elif_token1] = ACTIONS(4287), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4287), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4287), - [sym_preproc_directive] = ACTIONS(4287), - [anon_sym_LPAREN2] = ACTIONS(4287), - [sym_preproc_comment] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token2] = ACTIONS(4287), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4287), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4287), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4287), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4287), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4287), - [aux_sym_procedure_attributes_token1] = ACTIONS(4287), - [aux_sym_procedure_attributes_token3] = ACTIONS(4287), - [aux_sym_contains_statement_token1] = ACTIONS(4287), - [aux_sym_use_statement_token1] = ACTIONS(4287), - [aux_sym_use_statement_token2] = ACTIONS(4287), - [aux_sym_implicit_statement_token1] = ACTIONS(4287), - [aux_sym_implicit_statement_token3] = ACTIONS(4287), - [aux_sym_implicit_statement_token4] = ACTIONS(4287), - [aux_sym_save_statement_token1] = ACTIONS(4287), - [aux_sym_private_statement_token1] = ACTIONS(4287), - [aux_sym_public_statement_token1] = ACTIONS(4287), - [aux_sym_namelist_statement_token1] = ACTIONS(4287), - [aux_sym_common_statement_token1] = ACTIONS(4287), - [aux_sym_import_statement_token1] = ACTIONS(4287), - [aux_sym_derived_type_definition_token1] = ACTIONS(4287), - [aux_sym_abstract_specifier_token1] = ACTIONS(4287), - [aux_sym_procedure_attribute_token6] = ACTIONS(4287), - [aux_sym_variable_attributes_token1] = ACTIONS(4287), - [aux_sym_variable_attributes_token2] = ACTIONS(4287), - [aux_sym_variable_attributes_token3] = ACTIONS(4287), - [aux_sym_variable_attributes_token4] = ACTIONS(4287), - [aux_sym_variable_attributes_token5] = ACTIONS(4287), - [aux_sym__intrinsic_type_token1] = ACTIONS(4287), - [aux_sym__intrinsic_type_token2] = ACTIONS(4287), - [aux_sym__intrinsic_type_token3] = ACTIONS(4287), - [aux_sym__intrinsic_type_token4] = ACTIONS(4287), - [aux_sym__intrinsic_type_token6] = ACTIONS(4287), - [aux_sym__intrinsic_type_token7] = ACTIONS(4287), - [aux_sym__intrinsic_type_token8] = ACTIONS(4287), - [aux_sym__intrinsic_type_token9] = ACTIONS(4287), - [aux_sym__intrinsic_type_token10] = ACTIONS(4287), - [aux_sym_derived_type_token1] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4287), - [aux_sym_type_qualifier_token1] = ACTIONS(4287), - [aux_sym_type_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4291), - [aux_sym_stop_statement_token1] = ACTIONS(4287), - [aux_sym_stop_statement_token2] = ACTIONS(4287), - [aux_sym_subroutine_call_token1] = ACTIONS(4287), - [aux_sym_keyword_statement_token1] = ACTIONS(4287), - [aux_sym_keyword_statement_token2] = ACTIONS(4287), - [aux_sym_keyword_statement_token3] = ACTIONS(4287), - [aux_sym_keyword_statement_token4] = ACTIONS(4287), - [aux_sym_keyword_statement_token6] = ACTIONS(4287), - [aux_sym_keyword_statement_token7] = ACTIONS(4287), - [aux_sym_include_statement_token1] = ACTIONS(4287), - [aux_sym_data_statement_token1] = ACTIONS(4287), - [aux_sym_do_loop_statement_token1] = ACTIONS(4287), - [aux_sym__inline_if_statement_token1] = ACTIONS(4287), - [aux_sym_end_if_statement_token1] = ACTIONS(4287), - [aux_sym_elseif_clause_token2] = ACTIONS(4287), - [aux_sym__inline_where_statement_token1] = ACTIONS(4287), - [aux_sym__forall_control_expression_token1] = ACTIONS(4287), - [aux_sym_select_case_statement_token1] = ACTIONS(4287), - [aux_sym_select_case_statement_token3] = ACTIONS(4287), - [aux_sym_select_type_statement_token1] = ACTIONS(4287), - [aux_sym_select_rank_statement_token2] = ACTIONS(4287), - [aux_sym_block_construct_token1] = ACTIONS(4287), - [aux_sym_associate_statement_token1] = ACTIONS(4287), - [aux_sym_format_statement_token1] = ACTIONS(4287), - [aux_sym_print_statement_token1] = ACTIONS(4287), - [aux_sym_open_statement_token1] = ACTIONS(4287), - [aux_sym_close_statement_token1] = ACTIONS(4287), - [aux_sym_inquire_statement_token1] = ACTIONS(4287), - [aux_sym_enum_statement_token1] = ACTIONS(4287), - [aux_sym_file_position_statement_token1] = ACTIONS(4287), - [aux_sym_file_position_statement_token2] = ACTIONS(4287), - [aux_sym_file_position_statement_token3] = ACTIONS(4287), - [aux_sym_file_position_statement_token4] = ACTIONS(4287), - [aux_sym_allocate_statement_token1] = ACTIONS(4287), - [aux_sym_entry_statement_token1] = ACTIONS(4287), - [aux_sym_logical_expression_token5] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_LPAREN_SLASH] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [aux_sym_boolean_literal_token1] = ACTIONS(4291), - [aux_sym_boolean_literal_token2] = ACTIONS(4291), - [aux_sym_null_literal_token1] = ACTIONS(4287), - [aux_sym_coarray_statement_token1] = ACTIONS(4287), - [aux_sym_coarray_statement_token2] = ACTIONS(4287), - [aux_sym_coarray_statement_token6] = ACTIONS(4287), - [aux_sym_coarray_statement_token8] = ACTIONS(4287), - [aux_sym_coarray_statement_token11] = ACTIONS(4287), - [aux_sym_coarray_statement_token12] = ACTIONS(4287), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4287), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4287), - [aux_sym_identifier_token1] = ACTIONS(4287), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4291), - [sym__float_literal] = ACTIONS(4291), - [sym__boz_literal] = ACTIONS(4291), - [sym__string_literal] = ACTIONS(4291), - [sym__string_literal_kind] = ACTIONS(4291), + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [aux_sym_preproc_else_token1] = ACTIONS(4285), + [aux_sym_preproc_elif_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4285), + [sym_preproc_comment] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token2] = ACTIONS(4285), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4285), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4285), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token3] = ACTIONS(4285), + [aux_sym_contains_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token2] = ACTIONS(4285), + [aux_sym_implicit_statement_token1] = ACTIONS(4285), + [aux_sym_implicit_statement_token3] = ACTIONS(4285), + [aux_sym_implicit_statement_token4] = ACTIONS(4285), + [aux_sym_save_statement_token1] = ACTIONS(4285), + [aux_sym_private_statement_token1] = ACTIONS(4285), + [aux_sym_public_statement_token1] = ACTIONS(4285), + [aux_sym_namelist_statement_token1] = ACTIONS(4285), + [aux_sym_common_statement_token1] = ACTIONS(4285), + [aux_sym_import_statement_token1] = ACTIONS(4285), + [aux_sym_derived_type_definition_token1] = ACTIONS(4285), + [aux_sym_abstract_specifier_token1] = ACTIONS(4285), + [aux_sym_procedure_attribute_token6] = ACTIONS(4285), + [aux_sym_variable_attributes_token1] = ACTIONS(4285), + [aux_sym_variable_attributes_token2] = ACTIONS(4285), + [aux_sym_variable_attributes_token3] = ACTIONS(4285), + [aux_sym_variable_attributes_token4] = ACTIONS(4285), + [aux_sym_variable_attributes_token5] = ACTIONS(4285), + [aux_sym__intrinsic_type_token1] = ACTIONS(4285), + [aux_sym__intrinsic_type_token2] = ACTIONS(4285), + [aux_sym__intrinsic_type_token3] = ACTIONS(4285), + [aux_sym__intrinsic_type_token4] = ACTIONS(4285), + [aux_sym__intrinsic_type_token6] = ACTIONS(4285), + [aux_sym__intrinsic_type_token7] = ACTIONS(4285), + [aux_sym__intrinsic_type_token8] = ACTIONS(4285), + [aux_sym__intrinsic_type_token9] = ACTIONS(4285), + [aux_sym__intrinsic_type_token10] = ACTIONS(4285), + [aux_sym_derived_type_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4285), + [aux_sym_type_qualifier_token1] = ACTIONS(4285), + [aux_sym_type_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4289), + [aux_sym_stop_statement_token1] = ACTIONS(4285), + [aux_sym_stop_statement_token2] = ACTIONS(4285), + [aux_sym_subroutine_call_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token2] = ACTIONS(4285), + [aux_sym_keyword_statement_token3] = ACTIONS(4285), + [aux_sym_keyword_statement_token4] = ACTIONS(4285), + [aux_sym_keyword_statement_token6] = ACTIONS(4285), + [aux_sym_keyword_statement_token7] = ACTIONS(4285), + [aux_sym_include_statement_token1] = ACTIONS(4285), + [aux_sym_data_statement_token1] = ACTIONS(4285), + [aux_sym_do_loop_statement_token1] = ACTIONS(4285), + [aux_sym__inline_if_statement_token1] = ACTIONS(4285), + [aux_sym_end_if_statement_token1] = ACTIONS(4285), + [aux_sym_elseif_clause_token2] = ACTIONS(4285), + [aux_sym__inline_where_statement_token1] = ACTIONS(4285), + [aux_sym__forall_control_expression_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token3] = ACTIONS(4285), + [aux_sym_select_type_statement_token1] = ACTIONS(4285), + [aux_sym_select_rank_statement_token2] = ACTIONS(4285), + [aux_sym_block_construct_token1] = ACTIONS(4285), + [aux_sym_associate_statement_token1] = ACTIONS(4285), + [aux_sym_format_statement_token1] = ACTIONS(4285), + [aux_sym_print_statement_token1] = ACTIONS(4285), + [aux_sym_open_statement_token1] = ACTIONS(4285), + [aux_sym_close_statement_token1] = ACTIONS(4285), + [aux_sym_inquire_statement_token1] = ACTIONS(4285), + [aux_sym_enum_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token2] = ACTIONS(4285), + [aux_sym_file_position_statement_token3] = ACTIONS(4285), + [aux_sym_file_position_statement_token4] = ACTIONS(4285), + [aux_sym_allocate_statement_token1] = ACTIONS(4285), + [aux_sym_entry_statement_token1] = ACTIONS(4285), + [aux_sym_logical_expression_token5] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4285), + [anon_sym_LPAREN_SLASH] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [aux_sym_boolean_literal_token1] = ACTIONS(4289), + [aux_sym_boolean_literal_token2] = ACTIONS(4289), + [aux_sym_null_literal_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token2] = ACTIONS(4285), + [aux_sym_coarray_statement_token6] = ACTIONS(4285), + [aux_sym_coarray_statement_token8] = ACTIONS(4285), + [aux_sym_coarray_statement_token11] = ACTIONS(4285), + [aux_sym_coarray_statement_token12] = ACTIONS(4285), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4285), + [aux_sym_identifier_token1] = ACTIONS(4285), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4289), + [sym__float_literal] = ACTIONS(4289), + [sym__boz_literal] = ACTIONS(4289), + [sym__string_literal] = ACTIONS(4289), + [sym__string_literal_kind] = ACTIONS(4289), }, [820] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [aux_sym_preproc_else_token1] = ACTIONS(4295), - [aux_sym_preproc_elif_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(4297), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [aux_sym_preproc_include_token1] = ACTIONS(4291), + [aux_sym_preproc_def_token1] = ACTIONS(4291), + [aux_sym_preproc_if_token1] = ACTIONS(4291), + [aux_sym_preproc_if_token2] = ACTIONS(4291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4291), + [aux_sym_preproc_else_token1] = ACTIONS(4291), + [aux_sym_preproc_elif_token1] = ACTIONS(4291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4291), + [sym_preproc_directive] = ACTIONS(4291), + [anon_sym_LPAREN2] = ACTIONS(4291), + [sym_preproc_comment] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4291), + [aux_sym_end_program_statement_token1] = ACTIONS(4291), + [aux_sym_end_program_statement_token2] = ACTIONS(4291), + [aux_sym_module_statement_token1] = ACTIONS(4291), + [aux_sym_submodule_statement_token1] = ACTIONS(4291), + [aux_sym_interface_statement_token1] = ACTIONS(4291), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4291), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4291), + [aux_sym_subroutine_statement_token1] = ACTIONS(4291), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4291), + [aux_sym_function_statement_token1] = ACTIONS(4291), + [aux_sym_language_binding_token1] = ACTIONS(4291), + [aux_sym_procedure_attributes_token1] = ACTIONS(4291), + [aux_sym_procedure_attributes_token3] = ACTIONS(4291), + [aux_sym_contains_statement_token1] = ACTIONS(4291), + [aux_sym_use_statement_token1] = ACTIONS(4291), + [aux_sym_use_statement_token2] = ACTIONS(4291), + [aux_sym_implicit_statement_token1] = ACTIONS(4291), + [aux_sym_implicit_statement_token3] = ACTIONS(4291), + [aux_sym_implicit_statement_token4] = ACTIONS(4291), + [aux_sym_save_statement_token1] = ACTIONS(4291), + [aux_sym_private_statement_token1] = ACTIONS(4291), + [aux_sym_public_statement_token1] = ACTIONS(4291), + [aux_sym_namelist_statement_token1] = ACTIONS(4291), + [aux_sym_common_statement_token1] = ACTIONS(4291), + [aux_sym_import_statement_token1] = ACTIONS(4291), + [aux_sym_derived_type_definition_token1] = ACTIONS(4291), + [aux_sym_abstract_specifier_token1] = ACTIONS(4291), + [aux_sym_procedure_attribute_token6] = ACTIONS(4291), + [aux_sym_variable_attributes_token1] = ACTIONS(4291), + [aux_sym_variable_attributes_token2] = ACTIONS(4291), + [aux_sym_variable_attributes_token3] = ACTIONS(4291), + [aux_sym_variable_attributes_token4] = ACTIONS(4291), + [aux_sym_variable_attributes_token5] = ACTIONS(4291), + [aux_sym__intrinsic_type_token1] = ACTIONS(4291), + [aux_sym__intrinsic_type_token2] = ACTIONS(4291), + [aux_sym__intrinsic_type_token3] = ACTIONS(4291), + [aux_sym__intrinsic_type_token4] = ACTIONS(4291), + [aux_sym__intrinsic_type_token6] = ACTIONS(4291), + [aux_sym__intrinsic_type_token7] = ACTIONS(4291), + [aux_sym__intrinsic_type_token8] = ACTIONS(4291), + [aux_sym__intrinsic_type_token9] = ACTIONS(4291), + [aux_sym__intrinsic_type_token10] = ACTIONS(4291), + [aux_sym_derived_type_token1] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4291), + [aux_sym_type_qualifier_token1] = ACTIONS(4291), + [aux_sym_type_qualifier_token2] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4291), + [aux_sym_equivalence_statement_token1] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(4295), + [aux_sym_stop_statement_token1] = ACTIONS(4291), + [aux_sym_stop_statement_token2] = ACTIONS(4291), + [aux_sym_subroutine_call_token1] = ACTIONS(4291), + [aux_sym_keyword_statement_token1] = ACTIONS(4291), + [aux_sym_keyword_statement_token2] = ACTIONS(4291), + [aux_sym_keyword_statement_token3] = ACTIONS(4291), + [aux_sym_keyword_statement_token4] = ACTIONS(4291), + [aux_sym_keyword_statement_token6] = ACTIONS(4291), + [aux_sym_keyword_statement_token7] = ACTIONS(4291), + [aux_sym_include_statement_token1] = ACTIONS(4291), + [aux_sym_data_statement_token1] = ACTIONS(4291), + [aux_sym_do_loop_statement_token1] = ACTIONS(4291), + [aux_sym__inline_if_statement_token1] = ACTIONS(4291), + [aux_sym_end_if_statement_token1] = ACTIONS(4291), + [aux_sym_elseif_clause_token2] = ACTIONS(4291), + [aux_sym__inline_where_statement_token1] = ACTIONS(4291), + [aux_sym__forall_control_expression_token1] = ACTIONS(4291), + [aux_sym_select_case_statement_token1] = ACTIONS(4291), + [aux_sym_select_case_statement_token3] = ACTIONS(4291), + [aux_sym_select_type_statement_token1] = ACTIONS(4291), + [aux_sym_select_rank_statement_token2] = ACTIONS(4291), + [aux_sym_block_construct_token1] = ACTIONS(4291), + [aux_sym_associate_statement_token1] = ACTIONS(4291), + [aux_sym_format_statement_token1] = ACTIONS(4291), + [aux_sym_print_statement_token1] = ACTIONS(4291), + [aux_sym_open_statement_token1] = ACTIONS(4291), + [aux_sym_close_statement_token1] = ACTIONS(4291), + [aux_sym_inquire_statement_token1] = ACTIONS(4291), + [aux_sym_enum_statement_token1] = ACTIONS(4291), + [aux_sym_file_position_statement_token1] = ACTIONS(4291), + [aux_sym_file_position_statement_token2] = ACTIONS(4291), + [aux_sym_file_position_statement_token3] = ACTIONS(4291), + [aux_sym_file_position_statement_token4] = ACTIONS(4291), + [aux_sym_allocate_statement_token1] = ACTIONS(4291), + [aux_sym_entry_statement_token1] = ACTIONS(4291), + [aux_sym_logical_expression_token5] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4291), + [anon_sym_LPAREN_SLASH] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [aux_sym_boolean_literal_token1] = ACTIONS(4295), + [aux_sym_boolean_literal_token2] = ACTIONS(4295), + [aux_sym_null_literal_token1] = ACTIONS(4291), + [aux_sym_coarray_statement_token1] = ACTIONS(4291), + [aux_sym_coarray_statement_token2] = ACTIONS(4291), + [aux_sym_coarray_statement_token6] = ACTIONS(4291), + [aux_sym_coarray_statement_token8] = ACTIONS(4291), + [aux_sym_coarray_statement_token11] = ACTIONS(4291), + [aux_sym_coarray_statement_token12] = ACTIONS(4291), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4291), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4291), + [aux_sym_identifier_token1] = ACTIONS(4291), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4295), + [sym__float_literal] = ACTIONS(4295), + [sym__boz_literal] = ACTIONS(4295), + [sym__string_literal] = ACTIONS(4295), + [sym__string_literal_kind] = ACTIONS(4295), }, [821] = { - [aux_sym_preproc_include_token1] = ACTIONS(4301), - [aux_sym_preproc_def_token1] = ACTIONS(4301), - [aux_sym_preproc_if_token1] = ACTIONS(4301), - [aux_sym_preproc_if_token2] = ACTIONS(4301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), - [aux_sym_preproc_else_token1] = ACTIONS(4301), - [aux_sym_preproc_elif_token1] = ACTIONS(4301), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4301), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4301), - [sym_preproc_directive] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4301), - [sym_preproc_comment] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4301), - [aux_sym_end_program_statement_token1] = ACTIONS(4301), - [aux_sym_end_program_statement_token2] = ACTIONS(4301), - [aux_sym_module_statement_token1] = ACTIONS(4301), - [aux_sym_submodule_statement_token1] = ACTIONS(4301), - [aux_sym_interface_statement_token1] = ACTIONS(4301), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4301), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4301), - [aux_sym_subroutine_statement_token1] = ACTIONS(4301), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4301), - [aux_sym_function_statement_token1] = ACTIONS(4301), - [aux_sym_language_binding_token1] = ACTIONS(4301), - [aux_sym_procedure_attributes_token1] = ACTIONS(4301), - [aux_sym_procedure_attributes_token3] = ACTIONS(4301), - [aux_sym_contains_statement_token1] = ACTIONS(4301), - [aux_sym_use_statement_token1] = ACTIONS(4301), - [aux_sym_use_statement_token2] = ACTIONS(4301), - [aux_sym_implicit_statement_token1] = ACTIONS(4301), - [aux_sym_implicit_statement_token3] = ACTIONS(4301), - [aux_sym_implicit_statement_token4] = ACTIONS(4301), - [aux_sym_save_statement_token1] = ACTIONS(4301), - [aux_sym_private_statement_token1] = ACTIONS(4301), - [aux_sym_public_statement_token1] = ACTIONS(4301), - [aux_sym_namelist_statement_token1] = ACTIONS(4301), - [aux_sym_common_statement_token1] = ACTIONS(4301), - [aux_sym_import_statement_token1] = ACTIONS(4301), - [aux_sym_derived_type_definition_token1] = ACTIONS(4301), - [aux_sym_abstract_specifier_token1] = ACTIONS(4301), - [aux_sym_procedure_attribute_token6] = ACTIONS(4301), - [aux_sym_variable_attributes_token1] = ACTIONS(4301), - [aux_sym_variable_attributes_token2] = ACTIONS(4301), - [aux_sym_variable_attributes_token3] = ACTIONS(4301), - [aux_sym_variable_attributes_token4] = ACTIONS(4301), - [aux_sym_variable_attributes_token5] = ACTIONS(4301), - [aux_sym__intrinsic_type_token1] = ACTIONS(4301), - [aux_sym__intrinsic_type_token2] = ACTIONS(4301), - [aux_sym__intrinsic_type_token3] = ACTIONS(4301), - [aux_sym__intrinsic_type_token4] = ACTIONS(4301), - [aux_sym__intrinsic_type_token6] = ACTIONS(4301), - [aux_sym__intrinsic_type_token7] = ACTIONS(4301), - [aux_sym__intrinsic_type_token8] = ACTIONS(4301), - [aux_sym__intrinsic_type_token9] = ACTIONS(4301), - [aux_sym__intrinsic_type_token10] = ACTIONS(4301), - [aux_sym_derived_type_token1] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4301), - [aux_sym_type_qualifier_token1] = ACTIONS(4301), - [aux_sym_type_qualifier_token2] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4301), - [aux_sym_equivalence_statement_token1] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4305), - [aux_sym_stop_statement_token1] = ACTIONS(4301), - [aux_sym_stop_statement_token2] = ACTIONS(4301), - [aux_sym_subroutine_call_token1] = ACTIONS(4301), - [aux_sym_keyword_statement_token1] = ACTIONS(4301), - [aux_sym_keyword_statement_token2] = ACTIONS(4301), - [aux_sym_keyword_statement_token3] = ACTIONS(4301), - [aux_sym_keyword_statement_token4] = ACTIONS(4301), - [aux_sym_keyword_statement_token6] = ACTIONS(4301), - [aux_sym_keyword_statement_token7] = ACTIONS(4301), - [aux_sym_include_statement_token1] = ACTIONS(4301), - [aux_sym_data_statement_token1] = ACTIONS(4301), - [aux_sym_do_loop_statement_token1] = ACTIONS(4301), - [aux_sym__inline_if_statement_token1] = ACTIONS(4301), - [aux_sym_end_if_statement_token1] = ACTIONS(4301), - [aux_sym_elseif_clause_token2] = ACTIONS(4301), - [aux_sym__inline_where_statement_token1] = ACTIONS(4301), - [aux_sym__forall_control_expression_token1] = ACTIONS(4301), - [aux_sym_select_case_statement_token1] = ACTIONS(4301), - [aux_sym_select_case_statement_token3] = ACTIONS(4301), - [aux_sym_select_type_statement_token1] = ACTIONS(4301), - [aux_sym_select_rank_statement_token2] = ACTIONS(4301), - [aux_sym_block_construct_token1] = ACTIONS(4301), - [aux_sym_associate_statement_token1] = ACTIONS(4301), - [aux_sym_format_statement_token1] = ACTIONS(4301), - [aux_sym_print_statement_token1] = ACTIONS(4301), - [aux_sym_open_statement_token1] = ACTIONS(4301), - [aux_sym_close_statement_token1] = ACTIONS(4301), - [aux_sym_inquire_statement_token1] = ACTIONS(4301), - [aux_sym_enum_statement_token1] = ACTIONS(4301), - [aux_sym_file_position_statement_token1] = ACTIONS(4301), - [aux_sym_file_position_statement_token2] = ACTIONS(4301), - [aux_sym_file_position_statement_token3] = ACTIONS(4301), - [aux_sym_file_position_statement_token4] = ACTIONS(4301), - [aux_sym_allocate_statement_token1] = ACTIONS(4301), - [aux_sym_entry_statement_token1] = ACTIONS(4301), - [aux_sym_logical_expression_token5] = ACTIONS(4305), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_LPAREN_SLASH] = ACTIONS(4305), - [anon_sym_LBRACK] = ACTIONS(4305), - [aux_sym_boolean_literal_token1] = ACTIONS(4305), - [aux_sym_boolean_literal_token2] = ACTIONS(4305), - [aux_sym_null_literal_token1] = ACTIONS(4301), - [aux_sym_coarray_statement_token1] = ACTIONS(4301), - [aux_sym_coarray_statement_token2] = ACTIONS(4301), - [aux_sym_coarray_statement_token6] = ACTIONS(4301), - [aux_sym_coarray_statement_token8] = ACTIONS(4301), - [aux_sym_coarray_statement_token11] = ACTIONS(4301), - [aux_sym_coarray_statement_token12] = ACTIONS(4301), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4301), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4301), - [aux_sym_identifier_token1] = ACTIONS(4301), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4305), - [sym__float_literal] = ACTIONS(4305), - [sym__boz_literal] = ACTIONS(4305), - [sym__string_literal] = ACTIONS(4305), - [sym__string_literal_kind] = ACTIONS(4305), + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [aux_sym_preproc_else_token1] = ACTIONS(4297), + [aux_sym_preproc_elif_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4297), + [sym_preproc_comment] = ACTIONS(4299), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token2] = ACTIONS(4297), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4297), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4297), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token3] = ACTIONS(4297), + [aux_sym_contains_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token2] = ACTIONS(4297), + [aux_sym_implicit_statement_token1] = ACTIONS(4297), + [aux_sym_implicit_statement_token3] = ACTIONS(4297), + [aux_sym_implicit_statement_token4] = ACTIONS(4297), + [aux_sym_save_statement_token1] = ACTIONS(4297), + [aux_sym_private_statement_token1] = ACTIONS(4297), + [aux_sym_public_statement_token1] = ACTIONS(4297), + [aux_sym_namelist_statement_token1] = ACTIONS(4297), + [aux_sym_common_statement_token1] = ACTIONS(4297), + [aux_sym_import_statement_token1] = ACTIONS(4297), + [aux_sym_derived_type_definition_token1] = ACTIONS(4297), + [aux_sym_abstract_specifier_token1] = ACTIONS(4297), + [aux_sym_procedure_attribute_token6] = ACTIONS(4297), + [aux_sym_variable_attributes_token1] = ACTIONS(4297), + [aux_sym_variable_attributes_token2] = ACTIONS(4297), + [aux_sym_variable_attributes_token3] = ACTIONS(4297), + [aux_sym_variable_attributes_token4] = ACTIONS(4297), + [aux_sym_variable_attributes_token5] = ACTIONS(4297), + [aux_sym__intrinsic_type_token1] = ACTIONS(4297), + [aux_sym__intrinsic_type_token2] = ACTIONS(4297), + [aux_sym__intrinsic_type_token3] = ACTIONS(4297), + [aux_sym__intrinsic_type_token4] = ACTIONS(4297), + [aux_sym__intrinsic_type_token6] = ACTIONS(4297), + [aux_sym__intrinsic_type_token7] = ACTIONS(4297), + [aux_sym__intrinsic_type_token8] = ACTIONS(4297), + [aux_sym__intrinsic_type_token9] = ACTIONS(4297), + [aux_sym__intrinsic_type_token10] = ACTIONS(4297), + [aux_sym_derived_type_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4297), + [aux_sym_type_qualifier_token1] = ACTIONS(4297), + [aux_sym_type_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4301), + [aux_sym_stop_statement_token1] = ACTIONS(4297), + [aux_sym_stop_statement_token2] = ACTIONS(4297), + [aux_sym_subroutine_call_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token2] = ACTIONS(4297), + [aux_sym_keyword_statement_token3] = ACTIONS(4297), + [aux_sym_keyword_statement_token4] = ACTIONS(4297), + [aux_sym_keyword_statement_token6] = ACTIONS(4297), + [aux_sym_keyword_statement_token7] = ACTIONS(4297), + [aux_sym_include_statement_token1] = ACTIONS(4297), + [aux_sym_data_statement_token1] = ACTIONS(4297), + [aux_sym_do_loop_statement_token1] = ACTIONS(4297), + [aux_sym__inline_if_statement_token1] = ACTIONS(4297), + [aux_sym_end_if_statement_token1] = ACTIONS(4297), + [aux_sym_elseif_clause_token2] = ACTIONS(4297), + [aux_sym__inline_where_statement_token1] = ACTIONS(4297), + [aux_sym__forall_control_expression_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token3] = ACTIONS(4297), + [aux_sym_select_type_statement_token1] = ACTIONS(4297), + [aux_sym_select_rank_statement_token2] = ACTIONS(4297), + [aux_sym_block_construct_token1] = ACTIONS(4297), + [aux_sym_associate_statement_token1] = ACTIONS(4297), + [aux_sym_format_statement_token1] = ACTIONS(4297), + [aux_sym_print_statement_token1] = ACTIONS(4297), + [aux_sym_open_statement_token1] = ACTIONS(4297), + [aux_sym_close_statement_token1] = ACTIONS(4297), + [aux_sym_inquire_statement_token1] = ACTIONS(4297), + [aux_sym_enum_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token2] = ACTIONS(4297), + [aux_sym_file_position_statement_token3] = ACTIONS(4297), + [aux_sym_file_position_statement_token4] = ACTIONS(4297), + [aux_sym_allocate_statement_token1] = ACTIONS(4297), + [aux_sym_entry_statement_token1] = ACTIONS(4297), + [aux_sym_logical_expression_token5] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_LPAREN_SLASH] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [aux_sym_boolean_literal_token1] = ACTIONS(4301), + [aux_sym_boolean_literal_token2] = ACTIONS(4301), + [aux_sym_null_literal_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token2] = ACTIONS(4297), + [aux_sym_coarray_statement_token6] = ACTIONS(4297), + [aux_sym_coarray_statement_token8] = ACTIONS(4297), + [aux_sym_coarray_statement_token11] = ACTIONS(4297), + [aux_sym_coarray_statement_token12] = ACTIONS(4297), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4297), + [aux_sym_identifier_token1] = ACTIONS(4297), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4301), + [sym__float_literal] = ACTIONS(4301), + [sym__boz_literal] = ACTIONS(4301), + [sym__string_literal] = ACTIONS(4301), + [sym__string_literal_kind] = ACTIONS(4301), }, [822] = { - [aux_sym_preproc_include_token1] = ACTIONS(4307), - [aux_sym_preproc_def_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token2] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4307), - [aux_sym_preproc_else_token1] = ACTIONS(4307), - [aux_sym_preproc_elif_token1] = ACTIONS(4307), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4307), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4307), - [sym_preproc_directive] = ACTIONS(4307), - [anon_sym_LPAREN2] = ACTIONS(4307), - [sym_preproc_comment] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token2] = ACTIONS(4307), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4307), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4307), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token3] = ACTIONS(4307), - [aux_sym_contains_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token2] = ACTIONS(4307), - [aux_sym_implicit_statement_token1] = ACTIONS(4307), - [aux_sym_implicit_statement_token3] = ACTIONS(4307), - [aux_sym_implicit_statement_token4] = ACTIONS(4307), - [aux_sym_save_statement_token1] = ACTIONS(4307), - [aux_sym_private_statement_token1] = ACTIONS(4307), - [aux_sym_public_statement_token1] = ACTIONS(4307), - [aux_sym_namelist_statement_token1] = ACTIONS(4307), - [aux_sym_common_statement_token1] = ACTIONS(4307), - [aux_sym_import_statement_token1] = ACTIONS(4307), - [aux_sym_derived_type_definition_token1] = ACTIONS(4307), - [aux_sym_abstract_specifier_token1] = ACTIONS(4307), - [aux_sym_procedure_attribute_token6] = ACTIONS(4307), - [aux_sym_variable_attributes_token1] = ACTIONS(4307), - [aux_sym_variable_attributes_token2] = ACTIONS(4307), - [aux_sym_variable_attributes_token3] = ACTIONS(4307), - [aux_sym_variable_attributes_token4] = ACTIONS(4307), - [aux_sym_variable_attributes_token5] = ACTIONS(4307), - [aux_sym__intrinsic_type_token1] = ACTIONS(4307), - [aux_sym__intrinsic_type_token2] = ACTIONS(4307), - [aux_sym__intrinsic_type_token3] = ACTIONS(4307), - [aux_sym__intrinsic_type_token4] = ACTIONS(4307), - [aux_sym__intrinsic_type_token6] = ACTIONS(4307), - [aux_sym__intrinsic_type_token7] = ACTIONS(4307), - [aux_sym__intrinsic_type_token8] = ACTIONS(4307), - [aux_sym__intrinsic_type_token9] = ACTIONS(4307), - [aux_sym__intrinsic_type_token10] = ACTIONS(4307), - [aux_sym_derived_type_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4307), - [aux_sym_type_qualifier_token1] = ACTIONS(4307), - [aux_sym_type_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4307), - [anon_sym_SEMI] = ACTIONS(4311), - [aux_sym_stop_statement_token1] = ACTIONS(4307), - [aux_sym_stop_statement_token2] = ACTIONS(4307), - [aux_sym_subroutine_call_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token2] = ACTIONS(4307), - [aux_sym_keyword_statement_token3] = ACTIONS(4307), - [aux_sym_keyword_statement_token4] = ACTIONS(4307), - [aux_sym_keyword_statement_token6] = ACTIONS(4307), - [aux_sym_keyword_statement_token7] = ACTIONS(4307), - [aux_sym_include_statement_token1] = ACTIONS(4307), - [aux_sym_data_statement_token1] = ACTIONS(4307), - [aux_sym_do_loop_statement_token1] = ACTIONS(4307), - [aux_sym__inline_if_statement_token1] = ACTIONS(4307), - [aux_sym_end_if_statement_token1] = ACTIONS(4307), - [aux_sym_elseif_clause_token2] = ACTIONS(4307), - [aux_sym__inline_where_statement_token1] = ACTIONS(4307), - [aux_sym__forall_control_expression_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token3] = ACTIONS(4307), - [aux_sym_select_type_statement_token1] = ACTIONS(4307), - [aux_sym_select_rank_statement_token2] = ACTIONS(4307), - [aux_sym_block_construct_token1] = ACTIONS(4307), - [aux_sym_associate_statement_token1] = ACTIONS(4307), - [aux_sym_format_statement_token1] = ACTIONS(4307), - [aux_sym_print_statement_token1] = ACTIONS(4307), - [aux_sym_open_statement_token1] = ACTIONS(4307), - [aux_sym_close_statement_token1] = ACTIONS(4307), - [aux_sym_inquire_statement_token1] = ACTIONS(4307), - [aux_sym_enum_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token2] = ACTIONS(4307), - [aux_sym_file_position_statement_token3] = ACTIONS(4307), - [aux_sym_file_position_statement_token4] = ACTIONS(4307), - [aux_sym_allocate_statement_token1] = ACTIONS(4307), - [aux_sym_entry_statement_token1] = ACTIONS(4307), - [aux_sym_logical_expression_token5] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LPAREN_SLASH] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [aux_sym_boolean_literal_token1] = ACTIONS(4311), - [aux_sym_boolean_literal_token2] = ACTIONS(4311), - [aux_sym_null_literal_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token2] = ACTIONS(4307), - [aux_sym_coarray_statement_token6] = ACTIONS(4307), - [aux_sym_coarray_statement_token8] = ACTIONS(4307), - [aux_sym_coarray_statement_token11] = ACTIONS(4307), - [aux_sym_coarray_statement_token12] = ACTIONS(4307), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4307), - [aux_sym_identifier_token1] = ACTIONS(4307), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4311), - [sym__float_literal] = ACTIONS(4311), - [sym__boz_literal] = ACTIONS(4311), - [sym__string_literal] = ACTIONS(4311), - [sym__string_literal_kind] = ACTIONS(4311), + [aux_sym_preproc_include_token1] = ACTIONS(4303), + [aux_sym_preproc_def_token1] = ACTIONS(4303), + [aux_sym_preproc_if_token1] = ACTIONS(4303), + [aux_sym_preproc_if_token2] = ACTIONS(4303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4303), + [aux_sym_preproc_else_token1] = ACTIONS(4303), + [aux_sym_preproc_elif_token1] = ACTIONS(4303), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4303), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4303), + [sym_preproc_directive] = ACTIONS(4303), + [anon_sym_LPAREN2] = ACTIONS(4303), + [sym_preproc_comment] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4303), + [aux_sym_end_program_statement_token1] = ACTIONS(4303), + [aux_sym_end_program_statement_token2] = ACTIONS(4303), + [aux_sym_module_statement_token1] = ACTIONS(4303), + [aux_sym_submodule_statement_token1] = ACTIONS(4303), + [aux_sym_interface_statement_token1] = ACTIONS(4303), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4303), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4303), + [aux_sym_subroutine_statement_token1] = ACTIONS(4303), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4303), + [aux_sym_function_statement_token1] = ACTIONS(4303), + [aux_sym_language_binding_token1] = ACTIONS(4303), + [aux_sym_procedure_attributes_token1] = ACTIONS(4303), + [aux_sym_procedure_attributes_token3] = ACTIONS(4303), + [aux_sym_contains_statement_token1] = ACTIONS(4303), + [aux_sym_use_statement_token1] = ACTIONS(4303), + [aux_sym_use_statement_token2] = ACTIONS(4303), + [aux_sym_implicit_statement_token1] = ACTIONS(4303), + [aux_sym_implicit_statement_token3] = ACTIONS(4303), + [aux_sym_implicit_statement_token4] = ACTIONS(4303), + [aux_sym_save_statement_token1] = ACTIONS(4303), + [aux_sym_private_statement_token1] = ACTIONS(4303), + [aux_sym_public_statement_token1] = ACTIONS(4303), + [aux_sym_namelist_statement_token1] = ACTIONS(4303), + [aux_sym_common_statement_token1] = ACTIONS(4303), + [aux_sym_import_statement_token1] = ACTIONS(4303), + [aux_sym_derived_type_definition_token1] = ACTIONS(4303), + [aux_sym_abstract_specifier_token1] = ACTIONS(4303), + [aux_sym_procedure_attribute_token6] = ACTIONS(4303), + [aux_sym_variable_attributes_token1] = ACTIONS(4303), + [aux_sym_variable_attributes_token2] = ACTIONS(4303), + [aux_sym_variable_attributes_token3] = ACTIONS(4303), + [aux_sym_variable_attributes_token4] = ACTIONS(4303), + [aux_sym_variable_attributes_token5] = ACTIONS(4303), + [aux_sym__intrinsic_type_token1] = ACTIONS(4303), + [aux_sym__intrinsic_type_token2] = ACTIONS(4303), + [aux_sym__intrinsic_type_token3] = ACTIONS(4303), + [aux_sym__intrinsic_type_token4] = ACTIONS(4303), + [aux_sym__intrinsic_type_token6] = ACTIONS(4303), + [aux_sym__intrinsic_type_token7] = ACTIONS(4303), + [aux_sym__intrinsic_type_token8] = ACTIONS(4303), + [aux_sym__intrinsic_type_token9] = ACTIONS(4303), + [aux_sym__intrinsic_type_token10] = ACTIONS(4303), + [aux_sym_derived_type_token1] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4303), + [aux_sym_type_qualifier_token1] = ACTIONS(4303), + [aux_sym_type_qualifier_token2] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4303), + [aux_sym_equivalence_statement_token1] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4307), + [aux_sym_stop_statement_token1] = ACTIONS(4303), + [aux_sym_stop_statement_token2] = ACTIONS(4303), + [aux_sym_subroutine_call_token1] = ACTIONS(4303), + [aux_sym_keyword_statement_token1] = ACTIONS(4303), + [aux_sym_keyword_statement_token2] = ACTIONS(4303), + [aux_sym_keyword_statement_token3] = ACTIONS(4303), + [aux_sym_keyword_statement_token4] = ACTIONS(4303), + [aux_sym_keyword_statement_token6] = ACTIONS(4303), + [aux_sym_keyword_statement_token7] = ACTIONS(4303), + [aux_sym_include_statement_token1] = ACTIONS(4303), + [aux_sym_data_statement_token1] = ACTIONS(4303), + [aux_sym_do_loop_statement_token1] = ACTIONS(4303), + [aux_sym__inline_if_statement_token1] = ACTIONS(4303), + [aux_sym_end_if_statement_token1] = ACTIONS(4303), + [aux_sym_elseif_clause_token2] = ACTIONS(4303), + [aux_sym__inline_where_statement_token1] = ACTIONS(4303), + [aux_sym__forall_control_expression_token1] = ACTIONS(4303), + [aux_sym_select_case_statement_token1] = ACTIONS(4303), + [aux_sym_select_case_statement_token3] = ACTIONS(4303), + [aux_sym_select_type_statement_token1] = ACTIONS(4303), + [aux_sym_select_rank_statement_token2] = ACTIONS(4303), + [aux_sym_block_construct_token1] = ACTIONS(4303), + [aux_sym_associate_statement_token1] = ACTIONS(4303), + [aux_sym_format_statement_token1] = ACTIONS(4303), + [aux_sym_print_statement_token1] = ACTIONS(4303), + [aux_sym_open_statement_token1] = ACTIONS(4303), + [aux_sym_close_statement_token1] = ACTIONS(4303), + [aux_sym_inquire_statement_token1] = ACTIONS(4303), + [aux_sym_enum_statement_token1] = ACTIONS(4303), + [aux_sym_file_position_statement_token1] = ACTIONS(4303), + [aux_sym_file_position_statement_token2] = ACTIONS(4303), + [aux_sym_file_position_statement_token3] = ACTIONS(4303), + [aux_sym_file_position_statement_token4] = ACTIONS(4303), + [aux_sym_allocate_statement_token1] = ACTIONS(4303), + [aux_sym_entry_statement_token1] = ACTIONS(4303), + [aux_sym_logical_expression_token5] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_LPAREN_SLASH] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [aux_sym_boolean_literal_token1] = ACTIONS(4307), + [aux_sym_boolean_literal_token2] = ACTIONS(4307), + [aux_sym_null_literal_token1] = ACTIONS(4303), + [aux_sym_coarray_statement_token1] = ACTIONS(4303), + [aux_sym_coarray_statement_token2] = ACTIONS(4303), + [aux_sym_coarray_statement_token6] = ACTIONS(4303), + [aux_sym_coarray_statement_token8] = ACTIONS(4303), + [aux_sym_coarray_statement_token11] = ACTIONS(4303), + [aux_sym_coarray_statement_token12] = ACTIONS(4303), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4303), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4303), + [aux_sym_identifier_token1] = ACTIONS(4303), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4307), + [sym__float_literal] = ACTIONS(4307), + [sym__boz_literal] = ACTIONS(4307), + [sym__string_literal] = ACTIONS(4307), + [sym__string_literal_kind] = ACTIONS(4307), }, [823] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), + [aux_sym_preproc_include_token1] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token2] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [aux_sym_preproc_else_token1] = ACTIONS(4309), + [aux_sym_preproc_elif_token1] = ACTIONS(4309), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4309), + [sym_preproc_comment] = ACTIONS(4311), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4309), + [aux_sym_end_program_statement_token1] = ACTIONS(4309), + [aux_sym_end_program_statement_token2] = ACTIONS(4309), + [aux_sym_module_statement_token1] = ACTIONS(4309), + [aux_sym_submodule_statement_token1] = ACTIONS(4309), + [aux_sym_interface_statement_token1] = ACTIONS(4309), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4309), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4309), + [aux_sym_subroutine_statement_token1] = ACTIONS(4309), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4309), + [aux_sym_function_statement_token1] = ACTIONS(4309), + [aux_sym_language_binding_token1] = ACTIONS(4309), + [aux_sym_procedure_attributes_token1] = ACTIONS(4309), + [aux_sym_procedure_attributes_token3] = ACTIONS(4309), + [aux_sym_contains_statement_token1] = ACTIONS(4309), + [aux_sym_use_statement_token1] = ACTIONS(4309), + [aux_sym_use_statement_token2] = ACTIONS(4309), + [aux_sym_implicit_statement_token1] = ACTIONS(4309), + [aux_sym_implicit_statement_token3] = ACTIONS(4309), + [aux_sym_implicit_statement_token4] = ACTIONS(4309), + [aux_sym_save_statement_token1] = ACTIONS(4309), + [aux_sym_private_statement_token1] = ACTIONS(4309), + [aux_sym_public_statement_token1] = ACTIONS(4309), + [aux_sym_namelist_statement_token1] = ACTIONS(4309), + [aux_sym_common_statement_token1] = ACTIONS(4309), + [aux_sym_import_statement_token1] = ACTIONS(4309), + [aux_sym_derived_type_definition_token1] = ACTIONS(4309), + [aux_sym_abstract_specifier_token1] = ACTIONS(4309), + [aux_sym_procedure_attribute_token6] = ACTIONS(4309), + [aux_sym_variable_attributes_token1] = ACTIONS(4309), + [aux_sym_variable_attributes_token2] = ACTIONS(4309), + [aux_sym_variable_attributes_token3] = ACTIONS(4309), + [aux_sym_variable_attributes_token4] = ACTIONS(4309), + [aux_sym_variable_attributes_token5] = ACTIONS(4309), + [aux_sym__intrinsic_type_token1] = ACTIONS(4309), + [aux_sym__intrinsic_type_token2] = ACTIONS(4309), + [aux_sym__intrinsic_type_token3] = ACTIONS(4309), + [aux_sym__intrinsic_type_token4] = ACTIONS(4309), + [aux_sym__intrinsic_type_token6] = ACTIONS(4309), + [aux_sym__intrinsic_type_token7] = ACTIONS(4309), + [aux_sym__intrinsic_type_token8] = ACTIONS(4309), + [aux_sym__intrinsic_type_token9] = ACTIONS(4309), + [aux_sym__intrinsic_type_token10] = ACTIONS(4309), + [aux_sym_derived_type_token1] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4309), + [aux_sym_type_qualifier_token1] = ACTIONS(4309), + [aux_sym_type_qualifier_token2] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4309), + [aux_sym_equivalence_statement_token1] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4313), + [aux_sym_stop_statement_token1] = ACTIONS(4309), + [aux_sym_stop_statement_token2] = ACTIONS(4309), + [aux_sym_subroutine_call_token1] = ACTIONS(4309), + [aux_sym_keyword_statement_token1] = ACTIONS(4309), + [aux_sym_keyword_statement_token2] = ACTIONS(4309), + [aux_sym_keyword_statement_token3] = ACTIONS(4309), + [aux_sym_keyword_statement_token4] = ACTIONS(4309), + [aux_sym_keyword_statement_token6] = ACTIONS(4309), + [aux_sym_keyword_statement_token7] = ACTIONS(4309), + [aux_sym_include_statement_token1] = ACTIONS(4309), + [aux_sym_data_statement_token1] = ACTIONS(4309), + [aux_sym_do_loop_statement_token1] = ACTIONS(4309), + [aux_sym__inline_if_statement_token1] = ACTIONS(4309), + [aux_sym_end_if_statement_token1] = ACTIONS(4309), + [aux_sym_elseif_clause_token2] = ACTIONS(4309), + [aux_sym__inline_where_statement_token1] = ACTIONS(4309), + [aux_sym__forall_control_expression_token1] = ACTIONS(4309), + [aux_sym_select_case_statement_token1] = ACTIONS(4309), + [aux_sym_select_case_statement_token3] = ACTIONS(4309), + [aux_sym_select_type_statement_token1] = ACTIONS(4309), + [aux_sym_select_rank_statement_token2] = ACTIONS(4309), + [aux_sym_block_construct_token1] = ACTIONS(4309), + [aux_sym_associate_statement_token1] = ACTIONS(4309), + [aux_sym_format_statement_token1] = ACTIONS(4309), + [aux_sym_print_statement_token1] = ACTIONS(4309), + [aux_sym_open_statement_token1] = ACTIONS(4309), + [aux_sym_close_statement_token1] = ACTIONS(4309), + [aux_sym_inquire_statement_token1] = ACTIONS(4309), + [aux_sym_enum_statement_token1] = ACTIONS(4309), + [aux_sym_file_position_statement_token1] = ACTIONS(4309), + [aux_sym_file_position_statement_token2] = ACTIONS(4309), + [aux_sym_file_position_statement_token3] = ACTIONS(4309), + [aux_sym_file_position_statement_token4] = ACTIONS(4309), + [aux_sym_allocate_statement_token1] = ACTIONS(4309), + [aux_sym_entry_statement_token1] = ACTIONS(4309), + [aux_sym_logical_expression_token5] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4309), + [anon_sym_LPAREN_SLASH] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [aux_sym_boolean_literal_token1] = ACTIONS(4313), + [aux_sym_boolean_literal_token2] = ACTIONS(4313), + [aux_sym_null_literal_token1] = ACTIONS(4309), + [aux_sym_coarray_statement_token1] = ACTIONS(4309), + [aux_sym_coarray_statement_token2] = ACTIONS(4309), + [aux_sym_coarray_statement_token6] = ACTIONS(4309), + [aux_sym_coarray_statement_token8] = ACTIONS(4309), + [aux_sym_coarray_statement_token11] = ACTIONS(4309), + [aux_sym_coarray_statement_token12] = ACTIONS(4309), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4309), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4309), + [aux_sym_identifier_token1] = ACTIONS(4309), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4313), + [sym__float_literal] = ACTIONS(4313), + [sym__boz_literal] = ACTIONS(4313), + [sym__string_literal] = ACTIONS(4313), + [sym__string_literal_kind] = ACTIONS(4313), + }, + [824] = { + [aux_sym_preproc_include_token1] = ACTIONS(4315), + [aux_sym_preproc_def_token1] = ACTIONS(4315), + [aux_sym_preproc_if_token1] = ACTIONS(4315), [aux_sym_preproc_if_token2] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), [aux_sym_preproc_else_token1] = ACTIONS(4315), [aux_sym_preproc_elif_token1] = ACTIONS(4315), [aux_sym_preproc_elifdef_token1] = ACTIONS(4315), [aux_sym_preproc_elifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), + [sym_preproc_directive] = ACTIONS(4315), + [anon_sym_LPAREN2] = ACTIONS(4315), [sym_preproc_comment] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token2] = ACTIONS(4315), + [aux_sym_module_statement_token1] = ACTIONS(4315), + [aux_sym_submodule_statement_token1] = ACTIONS(4315), + [aux_sym_interface_statement_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), + [aux_sym_subroutine_statement_token1] = ACTIONS(4315), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4315), + [aux_sym_function_statement_token1] = ACTIONS(4315), + [aux_sym_language_binding_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token3] = ACTIONS(4315), + [aux_sym_contains_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token2] = ACTIONS(4315), + [aux_sym_implicit_statement_token1] = ACTIONS(4315), + [aux_sym_implicit_statement_token3] = ACTIONS(4315), + [aux_sym_implicit_statement_token4] = ACTIONS(4315), + [aux_sym_save_statement_token1] = ACTIONS(4315), + [aux_sym_private_statement_token1] = ACTIONS(4315), + [aux_sym_public_statement_token1] = ACTIONS(4315), + [aux_sym_namelist_statement_token1] = ACTIONS(4315), + [aux_sym_common_statement_token1] = ACTIONS(4315), + [aux_sym_import_statement_token1] = ACTIONS(4315), + [aux_sym_derived_type_definition_token1] = ACTIONS(4315), + [aux_sym_abstract_specifier_token1] = ACTIONS(4315), + [aux_sym_procedure_attribute_token6] = ACTIONS(4315), + [aux_sym_variable_attributes_token1] = ACTIONS(4315), + [aux_sym_variable_attributes_token2] = ACTIONS(4315), + [aux_sym_variable_attributes_token3] = ACTIONS(4315), + [aux_sym_variable_attributes_token4] = ACTIONS(4315), + [aux_sym_variable_attributes_token5] = ACTIONS(4315), + [aux_sym__intrinsic_type_token1] = ACTIONS(4315), + [aux_sym__intrinsic_type_token2] = ACTIONS(4315), + [aux_sym__intrinsic_type_token3] = ACTIONS(4315), + [aux_sym__intrinsic_type_token4] = ACTIONS(4315), + [aux_sym__intrinsic_type_token6] = ACTIONS(4315), + [aux_sym__intrinsic_type_token7] = ACTIONS(4315), + [aux_sym__intrinsic_type_token8] = ACTIONS(4315), + [aux_sym__intrinsic_type_token9] = ACTIONS(4315), + [aux_sym__intrinsic_type_token10] = ACTIONS(4315), + [aux_sym_derived_type_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4315), + [aux_sym_type_qualifier_token1] = ACTIONS(4315), + [aux_sym_type_qualifier_token2] = ACTIONS(4315), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4315), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4315), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4315), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4315), + [aux_sym_equivalence_statement_token1] = ACTIONS(4315), + [anon_sym_SEMI] = ACTIONS(4317), + [aux_sym_stop_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token2] = ACTIONS(4315), + [aux_sym_subroutine_call_token1] = ACTIONS(4315), + [aux_sym_keyword_statement_token1] = ACTIONS(4315), + [aux_sym_keyword_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token3] = ACTIONS(4315), + [aux_sym_keyword_statement_token4] = ACTIONS(4315), + [aux_sym_keyword_statement_token6] = ACTIONS(4315), + [aux_sym_keyword_statement_token7] = ACTIONS(4315), + [aux_sym_include_statement_token1] = ACTIONS(4315), + [aux_sym_data_statement_token1] = ACTIONS(4315), + [aux_sym_do_loop_statement_token1] = ACTIONS(4315), + [aux_sym__inline_if_statement_token1] = ACTIONS(4315), + [aux_sym_end_if_statement_token1] = ACTIONS(4315), + [aux_sym_elseif_clause_token2] = ACTIONS(4315), + [aux_sym__inline_where_statement_token1] = ACTIONS(4315), + [aux_sym__forall_control_expression_token1] = ACTIONS(4315), + [aux_sym_select_case_statement_token1] = ACTIONS(4315), + [aux_sym_select_case_statement_token3] = ACTIONS(4315), + [aux_sym_select_type_statement_token1] = ACTIONS(4315), + [aux_sym_select_rank_statement_token2] = ACTIONS(4315), + [aux_sym_block_construct_token1] = ACTIONS(4315), + [aux_sym_associate_statement_token1] = ACTIONS(4315), + [aux_sym_format_statement_token1] = ACTIONS(4315), + [aux_sym_print_statement_token1] = ACTIONS(4315), + [aux_sym_open_statement_token1] = ACTIONS(4315), + [aux_sym_close_statement_token1] = ACTIONS(4315), + [aux_sym_inquire_statement_token1] = ACTIONS(4315), + [aux_sym_enum_statement_token1] = ACTIONS(4315), + [aux_sym_file_position_statement_token1] = ACTIONS(4315), + [aux_sym_file_position_statement_token2] = ACTIONS(4315), + [aux_sym_file_position_statement_token3] = ACTIONS(4315), + [aux_sym_file_position_statement_token4] = ACTIONS(4315), + [aux_sym_allocate_statement_token1] = ACTIONS(4315), + [aux_sym_entry_statement_token1] = ACTIONS(4315), + [aux_sym_logical_expression_token5] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4315), + [anon_sym_LPAREN_SLASH] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [aux_sym_boolean_literal_token1] = ACTIONS(4317), + [aux_sym_boolean_literal_token2] = ACTIONS(4317), + [aux_sym_null_literal_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token2] = ACTIONS(4315), + [aux_sym_coarray_statement_token6] = ACTIONS(4315), + [aux_sym_coarray_statement_token8] = ACTIONS(4315), + [aux_sym_coarray_statement_token11] = ACTIONS(4315), + [aux_sym_coarray_statement_token12] = ACTIONS(4315), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), + [aux_sym_identifier_token1] = ACTIONS(4315), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4317), + [sym__float_literal] = ACTIONS(4317), + [sym__boz_literal] = ACTIONS(4317), + [sym__string_literal] = ACTIONS(4317), + [sym__string_literal_kind] = ACTIONS(4317), + }, + [825] = { + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token2] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [aux_sym_preproc_else_token1] = ACTIONS(4321), + [aux_sym_preproc_elif_token1] = ACTIONS(4321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4321), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), [anon_sym_AMP] = ACTIONS(21), [aux_sym_program_statement_token1] = ACTIONS(4321), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_end_program_statement_token2] = ACTIONS(4313), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_end_program_statement_token2] = ACTIONS(4319), [aux_sym_module_statement_token1] = ACTIONS(4321), [aux_sym_submodule_statement_token1] = ACTIONS(4321), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), [aux_sym_subroutine_statement_token1] = ACTIONS(4321), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), [aux_sym_function_statement_token1] = ACTIONS(4321), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), [aux_sym_procedure_qualifier_token1] = ACTIONS(4321), [aux_sym_procedure_qualifier_token2] = ACTIONS(4321), [aux_sym_procedure_qualifier_token3] = ACTIONS(4321), [aux_sym_procedure_qualifier_token4] = ACTIONS(4321), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), - }, - [824] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token2] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [aux_sym_preproc_else_token1] = ACTIONS(4323), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(4323), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_program_statement_token2] = ACTIONS(4323), - [aux_sym_module_statement_token1] = ACTIONS(4323), - [aux_sym_submodule_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_subroutine_statement_token1] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_function_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4323), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4323), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4323), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_subroutine_call_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_keyword_statement_token4] = ACTIONS(4323), - [aux_sym_keyword_statement_token6] = ACTIONS(4323), - [aux_sym_keyword_statement_token7] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym_do_loop_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym__inline_where_statement_token1] = ACTIONS(4323), - [aux_sym__forall_control_expression_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token3] = ACTIONS(4323), - [aux_sym_select_type_statement_token1] = ACTIONS(4323), - [aux_sym_select_rank_statement_token2] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_associate_statement_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_print_statement_token1] = ACTIONS(4323), - [aux_sym_open_statement_token1] = ACTIONS(4323), - [aux_sym_close_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token2] = ACTIONS(4323), - [aux_sym_file_position_statement_token3] = ACTIONS(4323), - [aux_sym_file_position_statement_token4] = ACTIONS(4323), - [aux_sym_allocate_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), [aux_sym_logical_expression_token5] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), + [anon_sym_DOT] = ACTIONS(4319), [anon_sym_LPAREN_SLASH] = ACTIONS(4325), [anon_sym_LBRACK] = ACTIONS(4325), [aux_sym_boolean_literal_token1] = ACTIONS(4325), [aux_sym_boolean_literal_token2] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(4325), [sym__float_literal] = ACTIONS(4325), @@ -201319,279 +201459,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4325), [sym__string_literal_kind] = ACTIONS(4325), }, - [825] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [aux_sym_preproc_else_token1] = ACTIONS(4327), - [aux_sym_preproc_elif_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, [826] = { - [aux_sym_preproc_include_token1] = ACTIONS(4331), - [aux_sym_preproc_def_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token2] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4331), - [sym_preproc_directive] = ACTIONS(4331), - [anon_sym_LPAREN2] = ACTIONS(4331), - [sym_preproc_comment] = ACTIONS(4333), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [aux_sym_preproc_else_token1] = ACTIONS(4329), + [aux_sym_preproc_elif_token1] = ACTIONS(4329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4329), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(4331), [anon_sym_PLUS] = ACTIONS(4333), [anon_sym_DASH] = ACTIONS(4333), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4331), - [aux_sym_end_program_statement_token1] = ACTIONS(4331), - [aux_sym_end_program_statement_token2] = ACTIONS(4331), - [aux_sym_module_statement_token1] = ACTIONS(4331), - [aux_sym_submodule_statement_token1] = ACTIONS(4331), - [aux_sym_interface_statement_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4331), - [aux_sym_subroutine_statement_token1] = ACTIONS(4331), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4331), - [aux_sym_function_statement_token1] = ACTIONS(4331), - [aux_sym_language_binding_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token3] = ACTIONS(4331), - [aux_sym_contains_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token2] = ACTIONS(4331), - [aux_sym_implicit_statement_token1] = ACTIONS(4331), - [aux_sym_implicit_statement_token3] = ACTIONS(4331), - [aux_sym_implicit_statement_token4] = ACTIONS(4331), - [aux_sym_save_statement_token1] = ACTIONS(4331), - [aux_sym_private_statement_token1] = ACTIONS(4331), - [aux_sym_public_statement_token1] = ACTIONS(4331), - [aux_sym_namelist_statement_token1] = ACTIONS(4331), - [aux_sym_common_statement_token1] = ACTIONS(4331), - [aux_sym_import_statement_token1] = ACTIONS(4331), - [aux_sym_derived_type_definition_token1] = ACTIONS(4331), - [aux_sym_abstract_specifier_token1] = ACTIONS(4331), - [aux_sym_procedure_attribute_token6] = ACTIONS(4331), - [aux_sym_variable_attributes_token1] = ACTIONS(4331), - [aux_sym_variable_attributes_token2] = ACTIONS(4331), - [aux_sym_variable_attributes_token3] = ACTIONS(4331), - [aux_sym_variable_attributes_token4] = ACTIONS(4331), - [aux_sym_variable_attributes_token5] = ACTIONS(4331), - [aux_sym__intrinsic_type_token1] = ACTIONS(4331), - [aux_sym__intrinsic_type_token2] = ACTIONS(4331), - [aux_sym__intrinsic_type_token3] = ACTIONS(4331), - [aux_sym__intrinsic_type_token4] = ACTIONS(4331), - [aux_sym__intrinsic_type_token6] = ACTIONS(4331), - [aux_sym__intrinsic_type_token7] = ACTIONS(4331), - [aux_sym__intrinsic_type_token8] = ACTIONS(4331), - [aux_sym__intrinsic_type_token9] = ACTIONS(4331), - [aux_sym__intrinsic_type_token10] = ACTIONS(4331), - [aux_sym_derived_type_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4331), - [aux_sym_type_qualifier_token1] = ACTIONS(4331), - [aux_sym_type_qualifier_token2] = ACTIONS(4331), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4331), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4331), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4331), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4331), - [aux_sym_equivalence_statement_token1] = ACTIONS(4331), + [aux_sym_program_statement_token1] = ACTIONS(4329), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token2] = ACTIONS(4327), + [aux_sym_module_statement_token1] = ACTIONS(4329), + [aux_sym_submodule_statement_token1] = ACTIONS(4329), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_subroutine_statement_token1] = ACTIONS(4329), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_function_statement_token1] = ACTIONS(4329), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4329), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), [anon_sym_SEMI] = ACTIONS(4333), - [aux_sym_stop_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token2] = ACTIONS(4331), - [aux_sym_subroutine_call_token1] = ACTIONS(4331), - [aux_sym_keyword_statement_token1] = ACTIONS(4331), - [aux_sym_keyword_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token3] = ACTIONS(4331), - [aux_sym_keyword_statement_token4] = ACTIONS(4331), - [aux_sym_keyword_statement_token6] = ACTIONS(4331), - [aux_sym_keyword_statement_token7] = ACTIONS(4331), - [aux_sym_include_statement_token1] = ACTIONS(4331), - [aux_sym_data_statement_token1] = ACTIONS(4331), - [aux_sym_do_loop_statement_token1] = ACTIONS(4331), - [aux_sym__inline_if_statement_token1] = ACTIONS(4331), - [aux_sym_end_if_statement_token1] = ACTIONS(4331), - [aux_sym_elseif_clause_token2] = ACTIONS(4331), - [aux_sym__inline_where_statement_token1] = ACTIONS(4331), - [aux_sym__forall_control_expression_token1] = ACTIONS(4331), - [aux_sym_select_case_statement_token1] = ACTIONS(4331), - [aux_sym_select_case_statement_token3] = ACTIONS(4331), - [aux_sym_select_type_statement_token1] = ACTIONS(4331), - [aux_sym_select_rank_statement_token2] = ACTIONS(4331), - [aux_sym_block_construct_token1] = ACTIONS(4331), - [aux_sym_associate_statement_token1] = ACTIONS(4331), - [aux_sym_format_statement_token1] = ACTIONS(4331), - [aux_sym_print_statement_token1] = ACTIONS(4331), - [aux_sym_open_statement_token1] = ACTIONS(4331), - [aux_sym_close_statement_token1] = ACTIONS(4331), - [aux_sym_inquire_statement_token1] = ACTIONS(4331), - [aux_sym_enum_statement_token1] = ACTIONS(4331), - [aux_sym_file_position_statement_token1] = ACTIONS(4331), - [aux_sym_file_position_statement_token2] = ACTIONS(4331), - [aux_sym_file_position_statement_token3] = ACTIONS(4331), - [aux_sym_file_position_statement_token4] = ACTIONS(4331), - [aux_sym_allocate_statement_token1] = ACTIONS(4331), - [aux_sym_entry_statement_token1] = ACTIONS(4331), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), [aux_sym_logical_expression_token5] = ACTIONS(4333), - [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4327), [anon_sym_LPAREN_SLASH] = ACTIONS(4333), [anon_sym_LBRACK] = ACTIONS(4333), [aux_sym_boolean_literal_token1] = ACTIONS(4333), [aux_sym_boolean_literal_token2] = ACTIONS(4333), - [aux_sym_null_literal_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token2] = ACTIONS(4331), - [aux_sym_coarray_statement_token6] = ACTIONS(4331), - [aux_sym_coarray_statement_token8] = ACTIONS(4331), - [aux_sym_coarray_statement_token11] = ACTIONS(4331), - [aux_sym_coarray_statement_token12] = ACTIONS(4331), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4331), - [aux_sym_identifier_token1] = ACTIONS(4331), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(4333), [sym__float_literal] = ACTIONS(4333), @@ -201603,30 +201603,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(4335), [aux_sym_preproc_def_token1] = ACTIONS(4335), [aux_sym_preproc_if_token1] = ACTIONS(4335), - [aux_sym_preproc_if_token2] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4337), [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), - [aux_sym_preproc_else_token1] = ACTIONS(4335), - [aux_sym_preproc_elif_token1] = ACTIONS(4335), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4335), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4335), + [aux_sym_preproc_else_token1] = ACTIONS(4337), + [aux_sym_preproc_elif_token1] = ACTIONS(4337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4337), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4337), [sym_preproc_directive] = ACTIONS(4335), [anon_sym_LPAREN2] = ACTIONS(4335), - [sym_preproc_comment] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4337), - [anon_sym_DASH] = ACTIONS(4337), + [sym_preproc_comment] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4335), + [aux_sym_program_statement_token1] = ACTIONS(4337), [aux_sym_end_program_statement_token1] = ACTIONS(4335), [aux_sym_end_program_statement_token2] = ACTIONS(4335), - [aux_sym_module_statement_token1] = ACTIONS(4335), - [aux_sym_submodule_statement_token1] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), [aux_sym_interface_statement_token1] = ACTIONS(4335), [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), - [aux_sym_subroutine_statement_token1] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), - [aux_sym_function_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), [aux_sym_language_binding_token1] = ACTIONS(4335), [aux_sym_procedure_attributes_token1] = ACTIONS(4335), [aux_sym_procedure_attributes_token3] = ACTIONS(4335), @@ -201675,12 +201675,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), [aux_sym_type_qualifier_token1] = ACTIONS(4335), [aux_sym_type_qualifier_token2] = ACTIONS(4335), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4335), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4335), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4335), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), [aux_sym_equivalence_statement_token1] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4341), [aux_sym_stop_statement_token1] = ACTIONS(4335), [aux_sym_stop_statement_token2] = ACTIONS(4335), [aux_sym_subroutine_call_token1] = ACTIONS(4335), @@ -201716,12 +201716,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4335), [aux_sym_allocate_statement_token1] = ACTIONS(4335), [aux_sym_entry_statement_token1] = ACTIONS(4335), - [aux_sym_logical_expression_token5] = ACTIONS(4337), + [aux_sym_logical_expression_token5] = ACTIONS(4341), [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_LPAREN_SLASH] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [aux_sym_boolean_literal_token1] = ACTIONS(4337), - [aux_sym_boolean_literal_token2] = ACTIONS(4337), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), [aux_sym_null_literal_token1] = ACTIONS(4335), [aux_sym_coarray_statement_token1] = ACTIONS(4335), [aux_sym_coarray_statement_token2] = ACTIONS(4335), @@ -201733,425 +201733,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4337), - [sym__float_literal] = ACTIONS(4337), - [sym__boz_literal] = ACTIONS(4337), - [sym__string_literal] = ACTIONS(4337), - [sym__string_literal_kind] = ACTIONS(4337), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [828] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token2] = ACTIONS(4275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [aux_sym_preproc_else_token1] = ACTIONS(4275), - [aux_sym_preproc_elif_token1] = ACTIONS(4275), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4275), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4275), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(4339), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4275), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_end_program_statement_token2] = ACTIONS(4267), - [aux_sym_module_statement_token1] = ACTIONS(4275), - [aux_sym_submodule_statement_token1] = ACTIONS(4275), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_subroutine_statement_token1] = ACTIONS(4275), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_function_statement_token1] = ACTIONS(4275), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4275), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4265), + [aux_sym_preproc_elif_token1] = ACTIONS(4265), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4265), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4265), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(4343), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [829] = { - [aux_sym_preproc_include_token1] = ACTIONS(4341), - [aux_sym_preproc_def_token1] = ACTIONS(4341), - [aux_sym_preproc_if_token1] = ACTIONS(4341), - [aux_sym_preproc_if_token2] = ACTIONS(4341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4341), - [aux_sym_preproc_else_token1] = ACTIONS(4341), - [aux_sym_preproc_elif_token1] = ACTIONS(4341), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4341), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4341), - [sym_preproc_directive] = ACTIONS(4341), - [anon_sym_LPAREN2] = ACTIONS(4341), - [sym_preproc_comment] = ACTIONS(4343), - [anon_sym_PLUS] = ACTIONS(4345), - [anon_sym_DASH] = ACTIONS(4345), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4341), - [aux_sym_end_program_statement_token1] = ACTIONS(4341), - [aux_sym_end_program_statement_token2] = ACTIONS(4341), - [aux_sym_module_statement_token1] = ACTIONS(4341), - [aux_sym_submodule_statement_token1] = ACTIONS(4341), - [aux_sym_interface_statement_token1] = ACTIONS(4341), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4341), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4341), - [aux_sym_subroutine_statement_token1] = ACTIONS(4341), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4341), - [aux_sym_function_statement_token1] = ACTIONS(4341), - [aux_sym_language_binding_token1] = ACTIONS(4341), - [aux_sym_procedure_attributes_token1] = ACTIONS(4341), - [aux_sym_procedure_attributes_token3] = ACTIONS(4341), - [aux_sym_contains_statement_token1] = ACTIONS(4341), - [aux_sym_use_statement_token1] = ACTIONS(4341), - [aux_sym_use_statement_token2] = ACTIONS(4341), - [aux_sym_implicit_statement_token1] = ACTIONS(4341), - [aux_sym_implicit_statement_token3] = ACTIONS(4341), - [aux_sym_implicit_statement_token4] = ACTIONS(4341), - [aux_sym_save_statement_token1] = ACTIONS(4341), - [aux_sym_private_statement_token1] = ACTIONS(4341), - [aux_sym_public_statement_token1] = ACTIONS(4341), - [aux_sym_namelist_statement_token1] = ACTIONS(4341), - [aux_sym_common_statement_token1] = ACTIONS(4341), - [aux_sym_import_statement_token1] = ACTIONS(4341), - [aux_sym_derived_type_definition_token1] = ACTIONS(4341), - [aux_sym_abstract_specifier_token1] = ACTIONS(4341), - [aux_sym_procedure_attribute_token6] = ACTIONS(4341), - [aux_sym_variable_attributes_token1] = ACTIONS(4341), - [aux_sym_variable_attributes_token2] = ACTIONS(4341), - [aux_sym_variable_attributes_token3] = ACTIONS(4341), - [aux_sym_variable_attributes_token4] = ACTIONS(4341), - [aux_sym_variable_attributes_token5] = ACTIONS(4341), - [aux_sym__intrinsic_type_token1] = ACTIONS(4341), - [aux_sym__intrinsic_type_token2] = ACTIONS(4341), - [aux_sym__intrinsic_type_token3] = ACTIONS(4341), - [aux_sym__intrinsic_type_token4] = ACTIONS(4341), - [aux_sym__intrinsic_type_token6] = ACTIONS(4341), - [aux_sym__intrinsic_type_token7] = ACTIONS(4341), - [aux_sym__intrinsic_type_token8] = ACTIONS(4341), - [aux_sym__intrinsic_type_token9] = ACTIONS(4341), - [aux_sym__intrinsic_type_token10] = ACTIONS(4341), - [aux_sym_derived_type_token1] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4341), - [aux_sym_type_qualifier_token1] = ACTIONS(4341), - [aux_sym_type_qualifier_token2] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4341), - [aux_sym_equivalence_statement_token1] = ACTIONS(4341), - [anon_sym_SEMI] = ACTIONS(4345), - [aux_sym_stop_statement_token1] = ACTIONS(4341), - [aux_sym_stop_statement_token2] = ACTIONS(4341), - [aux_sym_subroutine_call_token1] = ACTIONS(4341), - [aux_sym_keyword_statement_token1] = ACTIONS(4341), - [aux_sym_keyword_statement_token2] = ACTIONS(4341), - [aux_sym_keyword_statement_token3] = ACTIONS(4341), - [aux_sym_keyword_statement_token4] = ACTIONS(4341), - [aux_sym_keyword_statement_token6] = ACTIONS(4341), - [aux_sym_keyword_statement_token7] = ACTIONS(4341), - [aux_sym_include_statement_token1] = ACTIONS(4341), - [aux_sym_data_statement_token1] = ACTIONS(4341), - [aux_sym_do_loop_statement_token1] = ACTIONS(4341), - [aux_sym__inline_if_statement_token1] = ACTIONS(4341), - [aux_sym_end_if_statement_token1] = ACTIONS(4341), - [aux_sym_elseif_clause_token2] = ACTIONS(4341), - [aux_sym__inline_where_statement_token1] = ACTIONS(4341), - [aux_sym__forall_control_expression_token1] = ACTIONS(4341), - [aux_sym_select_case_statement_token1] = ACTIONS(4341), - [aux_sym_select_case_statement_token3] = ACTIONS(4341), - [aux_sym_select_type_statement_token1] = ACTIONS(4341), - [aux_sym_select_rank_statement_token2] = ACTIONS(4341), - [aux_sym_block_construct_token1] = ACTIONS(4341), - [aux_sym_associate_statement_token1] = ACTIONS(4341), - [aux_sym_format_statement_token1] = ACTIONS(4341), - [aux_sym_print_statement_token1] = ACTIONS(4341), - [aux_sym_open_statement_token1] = ACTIONS(4341), - [aux_sym_close_statement_token1] = ACTIONS(4341), - [aux_sym_inquire_statement_token1] = ACTIONS(4341), - [aux_sym_enum_statement_token1] = ACTIONS(4341), - [aux_sym_file_position_statement_token1] = ACTIONS(4341), - [aux_sym_file_position_statement_token2] = ACTIONS(4341), - [aux_sym_file_position_statement_token3] = ACTIONS(4341), - [aux_sym_file_position_statement_token4] = ACTIONS(4341), - [aux_sym_allocate_statement_token1] = ACTIONS(4341), - [aux_sym_entry_statement_token1] = ACTIONS(4341), - [aux_sym_logical_expression_token5] = ACTIONS(4345), - [anon_sym_DOT] = ACTIONS(4341), - [anon_sym_LPAREN_SLASH] = ACTIONS(4345), - [anon_sym_LBRACK] = ACTIONS(4345), - [aux_sym_boolean_literal_token1] = ACTIONS(4345), - [aux_sym_boolean_literal_token2] = ACTIONS(4345), - [aux_sym_null_literal_token1] = ACTIONS(4341), - [aux_sym_coarray_statement_token1] = ACTIONS(4341), - [aux_sym_coarray_statement_token2] = ACTIONS(4341), - [aux_sym_coarray_statement_token6] = ACTIONS(4341), - [aux_sym_coarray_statement_token8] = ACTIONS(4341), - [aux_sym_coarray_statement_token11] = ACTIONS(4341), - [aux_sym_coarray_statement_token12] = ACTIONS(4341), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4341), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4341), - [aux_sym_identifier_token1] = ACTIONS(4341), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4345), - [sym__float_literal] = ACTIONS(4345), - [sym__boz_literal] = ACTIONS(4345), - [sym__string_literal] = ACTIONS(4345), - [sym__string_literal_kind] = ACTIONS(4345), + [aux_sym_preproc_include_token1] = ACTIONS(4345), + [aux_sym_preproc_def_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token2] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4345), + [sym_preproc_directive] = ACTIONS(4345), + [anon_sym_LPAREN2] = ACTIONS(4345), + [sym_preproc_comment] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(4345), + [aux_sym_end_program_statement_token2] = ACTIONS(4345), + [aux_sym_module_statement_token1] = ACTIONS(4345), + [aux_sym_submodule_statement_token1] = ACTIONS(4345), + [aux_sym_interface_statement_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4345), + [aux_sym_subroutine_statement_token1] = ACTIONS(4345), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4345), + [aux_sym_function_statement_token1] = ACTIONS(4345), + [aux_sym_language_binding_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token3] = ACTIONS(4345), + [aux_sym_contains_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token2] = ACTIONS(4345), + [aux_sym_implicit_statement_token1] = ACTIONS(4345), + [aux_sym_implicit_statement_token3] = ACTIONS(4345), + [aux_sym_implicit_statement_token4] = ACTIONS(4345), + [aux_sym_save_statement_token1] = ACTIONS(4345), + [aux_sym_private_statement_token1] = ACTIONS(4345), + [aux_sym_public_statement_token1] = ACTIONS(4345), + [aux_sym_namelist_statement_token1] = ACTIONS(4345), + [aux_sym_common_statement_token1] = ACTIONS(4345), + [aux_sym_import_statement_token1] = ACTIONS(4345), + [aux_sym_derived_type_definition_token1] = ACTIONS(4345), + [aux_sym_abstract_specifier_token1] = ACTIONS(4345), + [aux_sym_procedure_attribute_token6] = ACTIONS(4345), + [aux_sym_variable_attributes_token1] = ACTIONS(4345), + [aux_sym_variable_attributes_token2] = ACTIONS(4345), + [aux_sym_variable_attributes_token3] = ACTIONS(4345), + [aux_sym_variable_attributes_token4] = ACTIONS(4345), + [aux_sym_variable_attributes_token5] = ACTIONS(4345), + [aux_sym__intrinsic_type_token1] = ACTIONS(4345), + [aux_sym__intrinsic_type_token2] = ACTIONS(4345), + [aux_sym__intrinsic_type_token3] = ACTIONS(4345), + [aux_sym__intrinsic_type_token4] = ACTIONS(4345), + [aux_sym__intrinsic_type_token6] = ACTIONS(4345), + [aux_sym__intrinsic_type_token7] = ACTIONS(4345), + [aux_sym__intrinsic_type_token8] = ACTIONS(4345), + [aux_sym__intrinsic_type_token9] = ACTIONS(4345), + [aux_sym__intrinsic_type_token10] = ACTIONS(4345), + [aux_sym_derived_type_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4345), + [aux_sym_type_qualifier_token1] = ACTIONS(4345), + [aux_sym_type_qualifier_token2] = ACTIONS(4345), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4345), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4345), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4345), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4345), + [aux_sym_equivalence_statement_token1] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [aux_sym_stop_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token2] = ACTIONS(4345), + [aux_sym_subroutine_call_token1] = ACTIONS(4345), + [aux_sym_keyword_statement_token1] = ACTIONS(4345), + [aux_sym_keyword_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token3] = ACTIONS(4345), + [aux_sym_keyword_statement_token4] = ACTIONS(4345), + [aux_sym_keyword_statement_token6] = ACTIONS(4345), + [aux_sym_keyword_statement_token7] = ACTIONS(4345), + [aux_sym_include_statement_token1] = ACTIONS(4345), + [aux_sym_data_statement_token1] = ACTIONS(4345), + [aux_sym_do_loop_statement_token1] = ACTIONS(4345), + [aux_sym__inline_if_statement_token1] = ACTIONS(4345), + [aux_sym_end_if_statement_token1] = ACTIONS(4345), + [aux_sym_elseif_clause_token2] = ACTIONS(4345), + [aux_sym__inline_where_statement_token1] = ACTIONS(4345), + [aux_sym__forall_control_expression_token1] = ACTIONS(4345), + [aux_sym_select_case_statement_token1] = ACTIONS(4345), + [aux_sym_select_case_statement_token3] = ACTIONS(4345), + [aux_sym_select_type_statement_token1] = ACTIONS(4345), + [aux_sym_select_rank_statement_token2] = ACTIONS(4345), + [aux_sym_block_construct_token1] = ACTIONS(4345), + [aux_sym_associate_statement_token1] = ACTIONS(4345), + [aux_sym_format_statement_token1] = ACTIONS(4345), + [aux_sym_print_statement_token1] = ACTIONS(4345), + [aux_sym_open_statement_token1] = ACTIONS(4345), + [aux_sym_close_statement_token1] = ACTIONS(4345), + [aux_sym_inquire_statement_token1] = ACTIONS(4345), + [aux_sym_enum_statement_token1] = ACTIONS(4345), + [aux_sym_file_position_statement_token1] = ACTIONS(4345), + [aux_sym_file_position_statement_token2] = ACTIONS(4345), + [aux_sym_file_position_statement_token3] = ACTIONS(4345), + [aux_sym_file_position_statement_token4] = ACTIONS(4345), + [aux_sym_allocate_statement_token1] = ACTIONS(4345), + [aux_sym_entry_statement_token1] = ACTIONS(4345), + [aux_sym_logical_expression_token5] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LPAREN_SLASH] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_boolean_literal_token1] = ACTIONS(4347), + [aux_sym_boolean_literal_token2] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token2] = ACTIONS(4345), + [aux_sym_coarray_statement_token6] = ACTIONS(4345), + [aux_sym_coarray_statement_token8] = ACTIONS(4345), + [aux_sym_coarray_statement_token11] = ACTIONS(4345), + [aux_sym_coarray_statement_token12] = ACTIONS(4345), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4345), + [aux_sym_identifier_token1] = ACTIONS(4345), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4347), + [sym__float_literal] = ACTIONS(4347), + [sym__boz_literal] = ACTIONS(4347), + [sym__string_literal] = ACTIONS(4347), + [sym__string_literal_kind] = ACTIONS(4347), }, [830] = { - [aux_sym_preproc_include_token1] = ACTIONS(4347), - [aux_sym_preproc_def_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token2] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), - [aux_sym_preproc_else_token1] = ACTIONS(4347), - [aux_sym_preproc_elif_token1] = ACTIONS(4347), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4347), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4347), - [sym_preproc_directive] = ACTIONS(4347), - [anon_sym_LPAREN2] = ACTIONS(4347), - [sym_preproc_comment] = ACTIONS(4349), + [aux_sym_preproc_include_token1] = ACTIONS(4349), + [aux_sym_preproc_def_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token2] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4349), + [aux_sym_preproc_else_token1] = ACTIONS(4349), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4349), + [sym_preproc_directive] = ACTIONS(4349), + [anon_sym_LPAREN2] = ACTIONS(4349), + [sym_preproc_comment] = ACTIONS(4351), [anon_sym_PLUS] = ACTIONS(4351), [anon_sym_DASH] = ACTIONS(4351), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token2] = ACTIONS(4347), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4347), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4347), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token3] = ACTIONS(4347), - [aux_sym_contains_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token2] = ACTIONS(4347), - [aux_sym_implicit_statement_token1] = ACTIONS(4347), - [aux_sym_implicit_statement_token3] = ACTIONS(4347), - [aux_sym_implicit_statement_token4] = ACTIONS(4347), - [aux_sym_save_statement_token1] = ACTIONS(4347), - [aux_sym_private_statement_token1] = ACTIONS(4347), - [aux_sym_public_statement_token1] = ACTIONS(4347), - [aux_sym_namelist_statement_token1] = ACTIONS(4347), - [aux_sym_common_statement_token1] = ACTIONS(4347), - [aux_sym_import_statement_token1] = ACTIONS(4347), - [aux_sym_derived_type_definition_token1] = ACTIONS(4347), - [aux_sym_abstract_specifier_token1] = ACTIONS(4347), - [aux_sym_procedure_attribute_token6] = ACTIONS(4347), - [aux_sym_variable_attributes_token1] = ACTIONS(4347), - [aux_sym_variable_attributes_token2] = ACTIONS(4347), - [aux_sym_variable_attributes_token3] = ACTIONS(4347), - [aux_sym_variable_attributes_token4] = ACTIONS(4347), - [aux_sym_variable_attributes_token5] = ACTIONS(4347), - [aux_sym__intrinsic_type_token1] = ACTIONS(4347), - [aux_sym__intrinsic_type_token2] = ACTIONS(4347), - [aux_sym__intrinsic_type_token3] = ACTIONS(4347), - [aux_sym__intrinsic_type_token4] = ACTIONS(4347), - [aux_sym__intrinsic_type_token6] = ACTIONS(4347), - [aux_sym__intrinsic_type_token7] = ACTIONS(4347), - [aux_sym__intrinsic_type_token8] = ACTIONS(4347), - [aux_sym__intrinsic_type_token9] = ACTIONS(4347), - [aux_sym__intrinsic_type_token10] = ACTIONS(4347), - [aux_sym_derived_type_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4347), - [aux_sym_type_qualifier_token1] = ACTIONS(4347), - [aux_sym_type_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4347), + [aux_sym_program_statement_token1] = ACTIONS(4349), + [aux_sym_end_program_statement_token1] = ACTIONS(4349), + [aux_sym_end_program_statement_token2] = ACTIONS(4349), + [aux_sym_module_statement_token1] = ACTIONS(4349), + [aux_sym_submodule_statement_token1] = ACTIONS(4349), + [aux_sym_interface_statement_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4349), + [aux_sym_subroutine_statement_token1] = ACTIONS(4349), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4349), + [aux_sym_function_statement_token1] = ACTIONS(4349), + [aux_sym_language_binding_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token3] = ACTIONS(4349), + [aux_sym_contains_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token2] = ACTIONS(4349), + [aux_sym_implicit_statement_token1] = ACTIONS(4349), + [aux_sym_implicit_statement_token3] = ACTIONS(4349), + [aux_sym_implicit_statement_token4] = ACTIONS(4349), + [aux_sym_save_statement_token1] = ACTIONS(4349), + [aux_sym_private_statement_token1] = ACTIONS(4349), + [aux_sym_public_statement_token1] = ACTIONS(4349), + [aux_sym_namelist_statement_token1] = ACTIONS(4349), + [aux_sym_common_statement_token1] = ACTIONS(4349), + [aux_sym_import_statement_token1] = ACTIONS(4349), + [aux_sym_derived_type_definition_token1] = ACTIONS(4349), + [aux_sym_abstract_specifier_token1] = ACTIONS(4349), + [aux_sym_procedure_attribute_token6] = ACTIONS(4349), + [aux_sym_variable_attributes_token1] = ACTIONS(4349), + [aux_sym_variable_attributes_token2] = ACTIONS(4349), + [aux_sym_variable_attributes_token3] = ACTIONS(4349), + [aux_sym_variable_attributes_token4] = ACTIONS(4349), + [aux_sym_variable_attributes_token5] = ACTIONS(4349), + [aux_sym__intrinsic_type_token1] = ACTIONS(4349), + [aux_sym__intrinsic_type_token2] = ACTIONS(4349), + [aux_sym__intrinsic_type_token3] = ACTIONS(4349), + [aux_sym__intrinsic_type_token4] = ACTIONS(4349), + [aux_sym__intrinsic_type_token6] = ACTIONS(4349), + [aux_sym__intrinsic_type_token7] = ACTIONS(4349), + [aux_sym__intrinsic_type_token8] = ACTIONS(4349), + [aux_sym__intrinsic_type_token9] = ACTIONS(4349), + [aux_sym__intrinsic_type_token10] = ACTIONS(4349), + [aux_sym_derived_type_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4349), + [aux_sym_type_qualifier_token1] = ACTIONS(4349), + [aux_sym_type_qualifier_token2] = ACTIONS(4349), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4349), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4349), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4349), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4349), + [aux_sym_equivalence_statement_token1] = ACTIONS(4349), [anon_sym_SEMI] = ACTIONS(4351), - [aux_sym_stop_statement_token1] = ACTIONS(4347), - [aux_sym_stop_statement_token2] = ACTIONS(4347), - [aux_sym_subroutine_call_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token2] = ACTIONS(4347), - [aux_sym_keyword_statement_token3] = ACTIONS(4347), - [aux_sym_keyword_statement_token4] = ACTIONS(4347), - [aux_sym_keyword_statement_token6] = ACTIONS(4347), - [aux_sym_keyword_statement_token7] = ACTIONS(4347), - [aux_sym_include_statement_token1] = ACTIONS(4347), - [aux_sym_data_statement_token1] = ACTIONS(4347), - [aux_sym_do_loop_statement_token1] = ACTIONS(4347), - [aux_sym__inline_if_statement_token1] = ACTIONS(4347), - [aux_sym_end_if_statement_token1] = ACTIONS(4347), - [aux_sym_elseif_clause_token2] = ACTIONS(4347), - [aux_sym__inline_where_statement_token1] = ACTIONS(4347), - [aux_sym__forall_control_expression_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token3] = ACTIONS(4347), - [aux_sym_select_type_statement_token1] = ACTIONS(4347), - [aux_sym_select_rank_statement_token2] = ACTIONS(4347), - [aux_sym_block_construct_token1] = ACTIONS(4347), - [aux_sym_associate_statement_token1] = ACTIONS(4347), - [aux_sym_format_statement_token1] = ACTIONS(4347), - [aux_sym_print_statement_token1] = ACTIONS(4347), - [aux_sym_open_statement_token1] = ACTIONS(4347), - [aux_sym_close_statement_token1] = ACTIONS(4347), - [aux_sym_inquire_statement_token1] = ACTIONS(4347), - [aux_sym_enum_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token2] = ACTIONS(4347), - [aux_sym_file_position_statement_token3] = ACTIONS(4347), - [aux_sym_file_position_statement_token4] = ACTIONS(4347), - [aux_sym_allocate_statement_token1] = ACTIONS(4347), - [aux_sym_entry_statement_token1] = ACTIONS(4347), + [aux_sym_stop_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token2] = ACTIONS(4349), + [aux_sym_subroutine_call_token1] = ACTIONS(4349), + [aux_sym_keyword_statement_token1] = ACTIONS(4349), + [aux_sym_keyword_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token3] = ACTIONS(4349), + [aux_sym_keyword_statement_token4] = ACTIONS(4349), + [aux_sym_keyword_statement_token6] = ACTIONS(4349), + [aux_sym_keyword_statement_token7] = ACTIONS(4349), + [aux_sym_include_statement_token1] = ACTIONS(4349), + [aux_sym_data_statement_token1] = ACTIONS(4349), + [aux_sym_do_loop_statement_token1] = ACTIONS(4349), + [aux_sym__inline_if_statement_token1] = ACTIONS(4349), + [aux_sym_end_if_statement_token1] = ACTIONS(4349), + [aux_sym_elseif_clause_token2] = ACTIONS(4349), + [aux_sym__inline_where_statement_token1] = ACTIONS(4349), + [aux_sym__forall_control_expression_token1] = ACTIONS(4349), + [aux_sym_select_case_statement_token1] = ACTIONS(4349), + [aux_sym_select_case_statement_token3] = ACTIONS(4349), + [aux_sym_select_type_statement_token1] = ACTIONS(4349), + [aux_sym_select_rank_statement_token2] = ACTIONS(4349), + [aux_sym_block_construct_token1] = ACTIONS(4349), + [aux_sym_associate_statement_token1] = ACTIONS(4349), + [aux_sym_format_statement_token1] = ACTIONS(4349), + [aux_sym_print_statement_token1] = ACTIONS(4349), + [aux_sym_open_statement_token1] = ACTIONS(4349), + [aux_sym_close_statement_token1] = ACTIONS(4349), + [aux_sym_inquire_statement_token1] = ACTIONS(4349), + [aux_sym_enum_statement_token1] = ACTIONS(4349), + [aux_sym_file_position_statement_token1] = ACTIONS(4349), + [aux_sym_file_position_statement_token2] = ACTIONS(4349), + [aux_sym_file_position_statement_token3] = ACTIONS(4349), + [aux_sym_file_position_statement_token4] = ACTIONS(4349), + [aux_sym_allocate_statement_token1] = ACTIONS(4349), + [aux_sym_entry_statement_token1] = ACTIONS(4349), [aux_sym_logical_expression_token5] = ACTIONS(4351), - [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4349), [anon_sym_LPAREN_SLASH] = ACTIONS(4351), [anon_sym_LBRACK] = ACTIONS(4351), [aux_sym_boolean_literal_token1] = ACTIONS(4351), [aux_sym_boolean_literal_token2] = ACTIONS(4351), - [aux_sym_null_literal_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token2] = ACTIONS(4347), - [aux_sym_coarray_statement_token6] = ACTIONS(4347), - [aux_sym_coarray_statement_token8] = ACTIONS(4347), - [aux_sym_coarray_statement_token11] = ACTIONS(4347), - [aux_sym_coarray_statement_token12] = ACTIONS(4347), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4347), - [aux_sym_identifier_token1] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token2] = ACTIONS(4349), + [aux_sym_coarray_statement_token6] = ACTIONS(4349), + [aux_sym_coarray_statement_token8] = ACTIONS(4349), + [aux_sym_coarray_statement_token11] = ACTIONS(4349), + [aux_sym_coarray_statement_token12] = ACTIONS(4349), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4349), + [aux_sym_identifier_token1] = ACTIONS(4349), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(4351), [sym__float_literal] = ACTIONS(4351), @@ -202160,844 +202160,844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(4351), }, [831] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token2] = ACTIONS(4321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [aux_sym_preproc_else_token1] = ACTIONS(4321), - [aux_sym_preproc_elif_token1] = ACTIONS(4321), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4321), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4321), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token2] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [aux_sym_preproc_else_token1] = ACTIONS(4255), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), + [anon_sym_LPAREN2] = ACTIONS(4255), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token2] = ACTIONS(4255), + [aux_sym_module_statement_token1] = ACTIONS(4255), + [aux_sym_submodule_statement_token1] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_subroutine_statement_token1] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_function_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4255), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4255), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4255), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_subroutine_call_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_keyword_statement_token4] = ACTIONS(4255), + [aux_sym_keyword_statement_token6] = ACTIONS(4255), + [aux_sym_keyword_statement_token7] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym_do_loop_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym__inline_where_statement_token1] = ACTIONS(4255), + [aux_sym__forall_control_expression_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token3] = ACTIONS(4255), + [aux_sym_select_type_statement_token1] = ACTIONS(4255), + [aux_sym_select_rank_statement_token2] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_associate_statement_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_print_statement_token1] = ACTIONS(4255), + [aux_sym_open_statement_token1] = ACTIONS(4255), + [aux_sym_close_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token2] = ACTIONS(4255), + [aux_sym_file_position_statement_token3] = ACTIONS(4255), + [aux_sym_file_position_statement_token4] = ACTIONS(4255), + [aux_sym_allocate_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_logical_expression_token5] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LPAREN_SLASH] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_boolean_literal_token1] = ACTIONS(4257), + [aux_sym_boolean_literal_token2] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4257), + [sym__float_literal] = ACTIONS(4257), + [sym__boz_literal] = ACTIONS(4257), + [sym__string_literal] = ACTIONS(4257), + [sym__string_literal_kind] = ACTIONS(4257), + }, + [832] = { + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token2] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [aux_sym_preproc_else_token1] = ACTIONS(4353), + [aux_sym_preproc_elif_token1] = ACTIONS(4353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), [anon_sym_AMP] = ACTIONS(21), [aux_sym_program_statement_token1] = ACTIONS(4321), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_end_program_statement_token2] = ACTIONS(4313), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_end_program_statement_token2] = ACTIONS(4319), [aux_sym_module_statement_token1] = ACTIONS(4321), [aux_sym_submodule_statement_token1] = ACTIONS(4321), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), [aux_sym_subroutine_statement_token1] = ACTIONS(4321), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), [aux_sym_function_statement_token1] = ACTIONS(4321), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), [aux_sym_procedure_qualifier_token1] = ACTIONS(4321), [aux_sym_procedure_qualifier_token2] = ACTIONS(4321), [aux_sym_procedure_qualifier_token3] = ACTIONS(4321), [aux_sym_procedure_qualifier_token4] = ACTIONS(4321), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), - }, - [832] = { - [aux_sym_preproc_include_token1] = ACTIONS(4355), - [aux_sym_preproc_def_token1] = ACTIONS(4355), - [aux_sym_preproc_if_token1] = ACTIONS(4355), - [aux_sym_preproc_if_token2] = ACTIONS(4355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4355), - [aux_sym_preproc_else_token1] = ACTIONS(4355), - [aux_sym_preproc_elif_token1] = ACTIONS(4355), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4355), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4355), - [sym_preproc_directive] = ACTIONS(4355), - [anon_sym_LPAREN2] = ACTIONS(4355), - [sym_preproc_comment] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4359), - [anon_sym_DASH] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4355), - [aux_sym_end_program_statement_token1] = ACTIONS(4355), - [aux_sym_end_program_statement_token2] = ACTIONS(4355), - [aux_sym_module_statement_token1] = ACTIONS(4355), - [aux_sym_submodule_statement_token1] = ACTIONS(4355), - [aux_sym_interface_statement_token1] = ACTIONS(4355), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4355), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4355), - [aux_sym_subroutine_statement_token1] = ACTIONS(4355), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4355), - [aux_sym_function_statement_token1] = ACTIONS(4355), - [aux_sym_language_binding_token1] = ACTIONS(4355), - [aux_sym_procedure_attributes_token1] = ACTIONS(4355), - [aux_sym_procedure_attributes_token3] = ACTIONS(4355), - [aux_sym_contains_statement_token1] = ACTIONS(4355), - [aux_sym_use_statement_token1] = ACTIONS(4355), - [aux_sym_use_statement_token2] = ACTIONS(4355), - [aux_sym_implicit_statement_token1] = ACTIONS(4355), - [aux_sym_implicit_statement_token3] = ACTIONS(4355), - [aux_sym_implicit_statement_token4] = ACTIONS(4355), - [aux_sym_save_statement_token1] = ACTIONS(4355), - [aux_sym_private_statement_token1] = ACTIONS(4355), - [aux_sym_public_statement_token1] = ACTIONS(4355), - [aux_sym_namelist_statement_token1] = ACTIONS(4355), - [aux_sym_common_statement_token1] = ACTIONS(4355), - [aux_sym_import_statement_token1] = ACTIONS(4355), - [aux_sym_derived_type_definition_token1] = ACTIONS(4355), - [aux_sym_abstract_specifier_token1] = ACTIONS(4355), - [aux_sym_procedure_attribute_token6] = ACTIONS(4355), - [aux_sym_variable_attributes_token1] = ACTIONS(4355), - [aux_sym_variable_attributes_token2] = ACTIONS(4355), - [aux_sym_variable_attributes_token3] = ACTIONS(4355), - [aux_sym_variable_attributes_token4] = ACTIONS(4355), - [aux_sym_variable_attributes_token5] = ACTIONS(4355), - [aux_sym__intrinsic_type_token1] = ACTIONS(4355), - [aux_sym__intrinsic_type_token2] = ACTIONS(4355), - [aux_sym__intrinsic_type_token3] = ACTIONS(4355), - [aux_sym__intrinsic_type_token4] = ACTIONS(4355), - [aux_sym__intrinsic_type_token6] = ACTIONS(4355), - [aux_sym__intrinsic_type_token7] = ACTIONS(4355), - [aux_sym__intrinsic_type_token8] = ACTIONS(4355), - [aux_sym__intrinsic_type_token9] = ACTIONS(4355), - [aux_sym__intrinsic_type_token10] = ACTIONS(4355), - [aux_sym_derived_type_token1] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4355), - [aux_sym_type_qualifier_token1] = ACTIONS(4355), - [aux_sym_type_qualifier_token2] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4355), - [aux_sym_equivalence_statement_token1] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4359), - [aux_sym_stop_statement_token1] = ACTIONS(4355), - [aux_sym_stop_statement_token2] = ACTIONS(4355), - [aux_sym_subroutine_call_token1] = ACTIONS(4355), - [aux_sym_keyword_statement_token1] = ACTIONS(4355), - [aux_sym_keyword_statement_token2] = ACTIONS(4355), - [aux_sym_keyword_statement_token3] = ACTIONS(4355), - [aux_sym_keyword_statement_token4] = ACTIONS(4355), - [aux_sym_keyword_statement_token6] = ACTIONS(4355), - [aux_sym_keyword_statement_token7] = ACTIONS(4355), - [aux_sym_include_statement_token1] = ACTIONS(4355), - [aux_sym_data_statement_token1] = ACTIONS(4355), - [aux_sym_do_loop_statement_token1] = ACTIONS(4355), - [aux_sym__inline_if_statement_token1] = ACTIONS(4355), - [aux_sym_end_if_statement_token1] = ACTIONS(4355), - [aux_sym_elseif_clause_token2] = ACTIONS(4355), - [aux_sym__inline_where_statement_token1] = ACTIONS(4355), - [aux_sym__forall_control_expression_token1] = ACTIONS(4355), - [aux_sym_select_case_statement_token1] = ACTIONS(4355), - [aux_sym_select_case_statement_token3] = ACTIONS(4355), - [aux_sym_select_type_statement_token1] = ACTIONS(4355), - [aux_sym_select_rank_statement_token2] = ACTIONS(4355), - [aux_sym_block_construct_token1] = ACTIONS(4355), - [aux_sym_associate_statement_token1] = ACTIONS(4355), - [aux_sym_format_statement_token1] = ACTIONS(4355), - [aux_sym_print_statement_token1] = ACTIONS(4355), - [aux_sym_open_statement_token1] = ACTIONS(4355), - [aux_sym_close_statement_token1] = ACTIONS(4355), - [aux_sym_inquire_statement_token1] = ACTIONS(4355), - [aux_sym_enum_statement_token1] = ACTIONS(4355), - [aux_sym_file_position_statement_token1] = ACTIONS(4355), - [aux_sym_file_position_statement_token2] = ACTIONS(4355), - [aux_sym_file_position_statement_token3] = ACTIONS(4355), - [aux_sym_file_position_statement_token4] = ACTIONS(4355), - [aux_sym_allocate_statement_token1] = ACTIONS(4355), - [aux_sym_entry_statement_token1] = ACTIONS(4355), - [aux_sym_logical_expression_token5] = ACTIONS(4359), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_LPAREN_SLASH] = ACTIONS(4359), - [anon_sym_LBRACK] = ACTIONS(4359), - [aux_sym_boolean_literal_token1] = ACTIONS(4359), - [aux_sym_boolean_literal_token2] = ACTIONS(4359), - [aux_sym_null_literal_token1] = ACTIONS(4355), - [aux_sym_coarray_statement_token1] = ACTIONS(4355), - [aux_sym_coarray_statement_token2] = ACTIONS(4355), - [aux_sym_coarray_statement_token6] = ACTIONS(4355), - [aux_sym_coarray_statement_token8] = ACTIONS(4355), - [aux_sym_coarray_statement_token11] = ACTIONS(4355), - [aux_sym_coarray_statement_token12] = ACTIONS(4355), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4355), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4355), - [aux_sym_identifier_token1] = ACTIONS(4355), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4359), - [sym__float_literal] = ACTIONS(4359), - [sym__boz_literal] = ACTIONS(4359), - [sym__string_literal] = ACTIONS(4359), - [sym__string_literal_kind] = ACTIONS(4359), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), }, [833] = { - [aux_sym_preproc_include_token1] = ACTIONS(4361), - [aux_sym_preproc_def_token1] = ACTIONS(4361), - [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [aux_sym_preproc_else_token1] = ACTIONS(4357), + [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4329), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token2] = ACTIONS(4327), + [aux_sym_module_statement_token1] = ACTIONS(4329), + [aux_sym_submodule_statement_token1] = ACTIONS(4329), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_subroutine_statement_token1] = ACTIONS(4329), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_function_statement_token1] = ACTIONS(4329), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4329), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), + }, + [834] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), [aux_sym_preproc_if_token2] = ACTIONS(4361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), [aux_sym_preproc_else_token1] = ACTIONS(4361), [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_elifdef_token1] = ACTIONS(4361), [aux_sym_preproc_elifdef_token2] = ACTIONS(4361), - [sym_preproc_directive] = ACTIONS(4361), - [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), [sym_preproc_comment] = ACTIONS(4363), - [anon_sym_PLUS] = ACTIONS(4365), - [anon_sym_DASH] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4361), - [aux_sym_end_program_statement_token1] = ACTIONS(4361), - [aux_sym_end_program_statement_token2] = ACTIONS(4361), - [aux_sym_module_statement_token1] = ACTIONS(4361), - [aux_sym_submodule_statement_token1] = ACTIONS(4361), - [aux_sym_interface_statement_token1] = ACTIONS(4361), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), - [aux_sym_subroutine_statement_token1] = ACTIONS(4361), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4361), - [aux_sym_function_statement_token1] = ACTIONS(4361), - [aux_sym_language_binding_token1] = ACTIONS(4361), - [aux_sym_procedure_attributes_token1] = ACTIONS(4361), - [aux_sym_procedure_attributes_token3] = ACTIONS(4361), - [aux_sym_contains_statement_token1] = ACTIONS(4361), - [aux_sym_use_statement_token1] = ACTIONS(4361), - [aux_sym_use_statement_token2] = ACTIONS(4361), - [aux_sym_implicit_statement_token1] = ACTIONS(4361), - [aux_sym_implicit_statement_token3] = ACTIONS(4361), - [aux_sym_implicit_statement_token4] = ACTIONS(4361), - [aux_sym_save_statement_token1] = ACTIONS(4361), - [aux_sym_private_statement_token1] = ACTIONS(4361), - [aux_sym_public_statement_token1] = ACTIONS(4361), - [aux_sym_namelist_statement_token1] = ACTIONS(4361), - [aux_sym_common_statement_token1] = ACTIONS(4361), - [aux_sym_import_statement_token1] = ACTIONS(4361), - [aux_sym_derived_type_definition_token1] = ACTIONS(4361), - [aux_sym_abstract_specifier_token1] = ACTIONS(4361), - [aux_sym_procedure_attribute_token6] = ACTIONS(4361), - [aux_sym_variable_attributes_token1] = ACTIONS(4361), - [aux_sym_variable_attributes_token2] = ACTIONS(4361), - [aux_sym_variable_attributes_token3] = ACTIONS(4361), - [aux_sym_variable_attributes_token4] = ACTIONS(4361), - [aux_sym_variable_attributes_token5] = ACTIONS(4361), - [aux_sym__intrinsic_type_token1] = ACTIONS(4361), - [aux_sym__intrinsic_type_token2] = ACTIONS(4361), - [aux_sym__intrinsic_type_token3] = ACTIONS(4361), - [aux_sym__intrinsic_type_token4] = ACTIONS(4361), - [aux_sym__intrinsic_type_token6] = ACTIONS(4361), - [aux_sym__intrinsic_type_token7] = ACTIONS(4361), - [aux_sym__intrinsic_type_token8] = ACTIONS(4361), - [aux_sym__intrinsic_type_token9] = ACTIONS(4361), - [aux_sym__intrinsic_type_token10] = ACTIONS(4361), - [aux_sym_derived_type_token1] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4361), - [aux_sym_type_qualifier_token1] = ACTIONS(4361), - [aux_sym_type_qualifier_token2] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4361), - [aux_sym_equivalence_statement_token1] = ACTIONS(4361), - [anon_sym_SEMI] = ACTIONS(4365), - [aux_sym_stop_statement_token1] = ACTIONS(4361), - [aux_sym_stop_statement_token2] = ACTIONS(4361), - [aux_sym_subroutine_call_token1] = ACTIONS(4361), - [aux_sym_keyword_statement_token1] = ACTIONS(4361), - [aux_sym_keyword_statement_token2] = ACTIONS(4361), - [aux_sym_keyword_statement_token3] = ACTIONS(4361), - [aux_sym_keyword_statement_token4] = ACTIONS(4361), - [aux_sym_keyword_statement_token6] = ACTIONS(4361), - [aux_sym_keyword_statement_token7] = ACTIONS(4361), - [aux_sym_include_statement_token1] = ACTIONS(4361), - [aux_sym_data_statement_token1] = ACTIONS(4361), - [aux_sym_do_loop_statement_token1] = ACTIONS(4361), - [aux_sym__inline_if_statement_token1] = ACTIONS(4361), - [aux_sym_end_if_statement_token1] = ACTIONS(4361), - [aux_sym_elseif_clause_token2] = ACTIONS(4361), - [aux_sym__inline_where_statement_token1] = ACTIONS(4361), - [aux_sym__forall_control_expression_token1] = ACTIONS(4361), - [aux_sym_select_case_statement_token1] = ACTIONS(4361), - [aux_sym_select_case_statement_token3] = ACTIONS(4361), - [aux_sym_select_type_statement_token1] = ACTIONS(4361), - [aux_sym_select_rank_statement_token2] = ACTIONS(4361), - [aux_sym_block_construct_token1] = ACTIONS(4361), - [aux_sym_associate_statement_token1] = ACTIONS(4361), - [aux_sym_format_statement_token1] = ACTIONS(4361), - [aux_sym_print_statement_token1] = ACTIONS(4361), - [aux_sym_open_statement_token1] = ACTIONS(4361), - [aux_sym_close_statement_token1] = ACTIONS(4361), - [aux_sym_inquire_statement_token1] = ACTIONS(4361), - [aux_sym_enum_statement_token1] = ACTIONS(4361), - [aux_sym_file_position_statement_token1] = ACTIONS(4361), - [aux_sym_file_position_statement_token2] = ACTIONS(4361), - [aux_sym_file_position_statement_token3] = ACTIONS(4361), - [aux_sym_file_position_statement_token4] = ACTIONS(4361), - [aux_sym_allocate_statement_token1] = ACTIONS(4361), - [aux_sym_entry_statement_token1] = ACTIONS(4361), - [aux_sym_logical_expression_token5] = ACTIONS(4365), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_LPAREN_SLASH] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4365), - [aux_sym_boolean_literal_token1] = ACTIONS(4365), - [aux_sym_boolean_literal_token2] = ACTIONS(4365), - [aux_sym_null_literal_token1] = ACTIONS(4361), - [aux_sym_coarray_statement_token1] = ACTIONS(4361), - [aux_sym_coarray_statement_token2] = ACTIONS(4361), - [aux_sym_coarray_statement_token6] = ACTIONS(4361), - [aux_sym_coarray_statement_token8] = ACTIONS(4361), - [aux_sym_coarray_statement_token11] = ACTIONS(4361), - [aux_sym_coarray_statement_token12] = ACTIONS(4361), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), - [aux_sym_identifier_token1] = ACTIONS(4361), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4365), - [sym__float_literal] = ACTIONS(4365), - [sym__boz_literal] = ACTIONS(4365), - [sym__string_literal] = ACTIONS(4365), - [sym__string_literal_kind] = ACTIONS(4365), - }, - [834] = { - [aux_sym_preproc_include_token1] = ACTIONS(4367), - [aux_sym_preproc_def_token1] = ACTIONS(4367), - [aux_sym_preproc_if_token1] = ACTIONS(4367), - [aux_sym_preproc_if_token2] = ACTIONS(4367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), - [aux_sym_preproc_else_token1] = ACTIONS(4367), - [aux_sym_preproc_elif_token1] = ACTIONS(4367), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4367), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4367), - [sym_preproc_directive] = ACTIONS(4367), - [anon_sym_LPAREN2] = ACTIONS(4367), - [sym_preproc_comment] = ACTIONS(4369), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4367), - [aux_sym_end_program_statement_token1] = ACTIONS(4367), - [aux_sym_end_program_statement_token2] = ACTIONS(4367), - [aux_sym_module_statement_token1] = ACTIONS(4367), - [aux_sym_submodule_statement_token1] = ACTIONS(4367), - [aux_sym_interface_statement_token1] = ACTIONS(4367), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4367), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4367), - [aux_sym_subroutine_statement_token1] = ACTIONS(4367), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4367), - [aux_sym_function_statement_token1] = ACTIONS(4367), - [aux_sym_language_binding_token1] = ACTIONS(4367), - [aux_sym_procedure_attributes_token1] = ACTIONS(4367), - [aux_sym_procedure_attributes_token3] = ACTIONS(4367), - [aux_sym_contains_statement_token1] = ACTIONS(4367), - [aux_sym_use_statement_token1] = ACTIONS(4367), - [aux_sym_use_statement_token2] = ACTIONS(4367), - [aux_sym_implicit_statement_token1] = ACTIONS(4367), - [aux_sym_implicit_statement_token3] = ACTIONS(4367), - [aux_sym_implicit_statement_token4] = ACTIONS(4367), - [aux_sym_save_statement_token1] = ACTIONS(4367), - [aux_sym_private_statement_token1] = ACTIONS(4367), - [aux_sym_public_statement_token1] = ACTIONS(4367), - [aux_sym_namelist_statement_token1] = ACTIONS(4367), - [aux_sym_common_statement_token1] = ACTIONS(4367), - [aux_sym_import_statement_token1] = ACTIONS(4367), - [aux_sym_derived_type_definition_token1] = ACTIONS(4367), - [aux_sym_abstract_specifier_token1] = ACTIONS(4367), - [aux_sym_procedure_attribute_token6] = ACTIONS(4367), - [aux_sym_variable_attributes_token1] = ACTIONS(4367), - [aux_sym_variable_attributes_token2] = ACTIONS(4367), - [aux_sym_variable_attributes_token3] = ACTIONS(4367), - [aux_sym_variable_attributes_token4] = ACTIONS(4367), - [aux_sym_variable_attributes_token5] = ACTIONS(4367), - [aux_sym__intrinsic_type_token1] = ACTIONS(4367), - [aux_sym__intrinsic_type_token2] = ACTIONS(4367), - [aux_sym__intrinsic_type_token3] = ACTIONS(4367), - [aux_sym__intrinsic_type_token4] = ACTIONS(4367), - [aux_sym__intrinsic_type_token6] = ACTIONS(4367), - [aux_sym__intrinsic_type_token7] = ACTIONS(4367), - [aux_sym__intrinsic_type_token8] = ACTIONS(4367), - [aux_sym__intrinsic_type_token9] = ACTIONS(4367), - [aux_sym__intrinsic_type_token10] = ACTIONS(4367), - [aux_sym_derived_type_token1] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4367), - [aux_sym_type_qualifier_token1] = ACTIONS(4367), - [aux_sym_type_qualifier_token2] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4367), - [aux_sym_equivalence_statement_token1] = ACTIONS(4367), - [anon_sym_SEMI] = ACTIONS(4371), - [aux_sym_stop_statement_token1] = ACTIONS(4367), - [aux_sym_stop_statement_token2] = ACTIONS(4367), - [aux_sym_subroutine_call_token1] = ACTIONS(4367), - [aux_sym_keyword_statement_token1] = ACTIONS(4367), - [aux_sym_keyword_statement_token2] = ACTIONS(4367), - [aux_sym_keyword_statement_token3] = ACTIONS(4367), - [aux_sym_keyword_statement_token4] = ACTIONS(4367), - [aux_sym_keyword_statement_token6] = ACTIONS(4367), - [aux_sym_keyword_statement_token7] = ACTIONS(4367), - [aux_sym_include_statement_token1] = ACTIONS(4367), - [aux_sym_data_statement_token1] = ACTIONS(4367), - [aux_sym_do_loop_statement_token1] = ACTIONS(4367), - [aux_sym__inline_if_statement_token1] = ACTIONS(4367), - [aux_sym_end_if_statement_token1] = ACTIONS(4367), - [aux_sym_elseif_clause_token2] = ACTIONS(4367), - [aux_sym__inline_where_statement_token1] = ACTIONS(4367), - [aux_sym__forall_control_expression_token1] = ACTIONS(4367), - [aux_sym_select_case_statement_token1] = ACTIONS(4367), - [aux_sym_select_case_statement_token3] = ACTIONS(4367), - [aux_sym_select_type_statement_token1] = ACTIONS(4367), - [aux_sym_select_rank_statement_token2] = ACTIONS(4367), - [aux_sym_block_construct_token1] = ACTIONS(4367), - [aux_sym_associate_statement_token1] = ACTIONS(4367), - [aux_sym_format_statement_token1] = ACTIONS(4367), - [aux_sym_print_statement_token1] = ACTIONS(4367), - [aux_sym_open_statement_token1] = ACTIONS(4367), - [aux_sym_close_statement_token1] = ACTIONS(4367), - [aux_sym_inquire_statement_token1] = ACTIONS(4367), - [aux_sym_enum_statement_token1] = ACTIONS(4367), - [aux_sym_file_position_statement_token1] = ACTIONS(4367), - [aux_sym_file_position_statement_token2] = ACTIONS(4367), - [aux_sym_file_position_statement_token3] = ACTIONS(4367), - [aux_sym_file_position_statement_token4] = ACTIONS(4367), - [aux_sym_allocate_statement_token1] = ACTIONS(4367), - [aux_sym_entry_statement_token1] = ACTIONS(4367), - [aux_sym_logical_expression_token5] = ACTIONS(4371), - [anon_sym_DOT] = ACTIONS(4367), - [anon_sym_LPAREN_SLASH] = ACTIONS(4371), - [anon_sym_LBRACK] = ACTIONS(4371), - [aux_sym_boolean_literal_token1] = ACTIONS(4371), - [aux_sym_boolean_literal_token2] = ACTIONS(4371), - [aux_sym_null_literal_token1] = ACTIONS(4367), - [aux_sym_coarray_statement_token1] = ACTIONS(4367), - [aux_sym_coarray_statement_token2] = ACTIONS(4367), - [aux_sym_coarray_statement_token6] = ACTIONS(4367), - [aux_sym_coarray_statement_token8] = ACTIONS(4367), - [aux_sym_coarray_statement_token11] = ACTIONS(4367), - [aux_sym_coarray_statement_token12] = ACTIONS(4367), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4367), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4367), - [aux_sym_identifier_token1] = ACTIONS(4367), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4371), - [sym__float_literal] = ACTIONS(4371), - [sym__boz_literal] = ACTIONS(4371), - [sym__string_literal] = ACTIONS(4371), - [sym__string_literal_kind] = ACTIONS(4371), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [835] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [aux_sym_preproc_else_token1] = ACTIONS(4287), - [aux_sym_preproc_elif_token1] = ACTIONS(4287), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4287), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4287), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(4373), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [aux_sym_preproc_include_token1] = ACTIONS(4365), + [aux_sym_preproc_def_token1] = ACTIONS(4365), + [aux_sym_preproc_if_token1] = ACTIONS(4365), + [aux_sym_preproc_if_token2] = ACTIONS(4365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4365), + [aux_sym_preproc_else_token1] = ACTIONS(4365), + [aux_sym_preproc_elif_token1] = ACTIONS(4365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4365), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4365), + [sym_preproc_directive] = ACTIONS(4365), + [anon_sym_LPAREN2] = ACTIONS(4365), + [sym_preproc_comment] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4365), + [aux_sym_end_program_statement_token1] = ACTIONS(4365), + [aux_sym_end_program_statement_token2] = ACTIONS(4365), + [aux_sym_module_statement_token1] = ACTIONS(4365), + [aux_sym_submodule_statement_token1] = ACTIONS(4365), + [aux_sym_interface_statement_token1] = ACTIONS(4365), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4365), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4365), + [aux_sym_subroutine_statement_token1] = ACTIONS(4365), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4365), + [aux_sym_function_statement_token1] = ACTIONS(4365), + [aux_sym_language_binding_token1] = ACTIONS(4365), + [aux_sym_procedure_attributes_token1] = ACTIONS(4365), + [aux_sym_procedure_attributes_token3] = ACTIONS(4365), + [aux_sym_contains_statement_token1] = ACTIONS(4365), + [aux_sym_use_statement_token1] = ACTIONS(4365), + [aux_sym_use_statement_token2] = ACTIONS(4365), + [aux_sym_implicit_statement_token1] = ACTIONS(4365), + [aux_sym_implicit_statement_token3] = ACTIONS(4365), + [aux_sym_implicit_statement_token4] = ACTIONS(4365), + [aux_sym_save_statement_token1] = ACTIONS(4365), + [aux_sym_private_statement_token1] = ACTIONS(4365), + [aux_sym_public_statement_token1] = ACTIONS(4365), + [aux_sym_namelist_statement_token1] = ACTIONS(4365), + [aux_sym_common_statement_token1] = ACTIONS(4365), + [aux_sym_import_statement_token1] = ACTIONS(4365), + [aux_sym_derived_type_definition_token1] = ACTIONS(4365), + [aux_sym_abstract_specifier_token1] = ACTIONS(4365), + [aux_sym_procedure_attribute_token6] = ACTIONS(4365), + [aux_sym_variable_attributes_token1] = ACTIONS(4365), + [aux_sym_variable_attributes_token2] = ACTIONS(4365), + [aux_sym_variable_attributes_token3] = ACTIONS(4365), + [aux_sym_variable_attributes_token4] = ACTIONS(4365), + [aux_sym_variable_attributes_token5] = ACTIONS(4365), + [aux_sym__intrinsic_type_token1] = ACTIONS(4365), + [aux_sym__intrinsic_type_token2] = ACTIONS(4365), + [aux_sym__intrinsic_type_token3] = ACTIONS(4365), + [aux_sym__intrinsic_type_token4] = ACTIONS(4365), + [aux_sym__intrinsic_type_token6] = ACTIONS(4365), + [aux_sym__intrinsic_type_token7] = ACTIONS(4365), + [aux_sym__intrinsic_type_token8] = ACTIONS(4365), + [aux_sym__intrinsic_type_token9] = ACTIONS(4365), + [aux_sym__intrinsic_type_token10] = ACTIONS(4365), + [aux_sym_derived_type_token1] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4365), + [aux_sym_type_qualifier_token1] = ACTIONS(4365), + [aux_sym_type_qualifier_token2] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4365), + [aux_sym_equivalence_statement_token1] = ACTIONS(4365), + [anon_sym_SEMI] = ACTIONS(4369), + [aux_sym_stop_statement_token1] = ACTIONS(4365), + [aux_sym_stop_statement_token2] = ACTIONS(4365), + [aux_sym_subroutine_call_token1] = ACTIONS(4365), + [aux_sym_keyword_statement_token1] = ACTIONS(4365), + [aux_sym_keyword_statement_token2] = ACTIONS(4365), + [aux_sym_keyword_statement_token3] = ACTIONS(4365), + [aux_sym_keyword_statement_token4] = ACTIONS(4365), + [aux_sym_keyword_statement_token6] = ACTIONS(4365), + [aux_sym_keyword_statement_token7] = ACTIONS(4365), + [aux_sym_include_statement_token1] = ACTIONS(4365), + [aux_sym_data_statement_token1] = ACTIONS(4365), + [aux_sym_do_loop_statement_token1] = ACTIONS(4365), + [aux_sym__inline_if_statement_token1] = ACTIONS(4365), + [aux_sym_end_if_statement_token1] = ACTIONS(4365), + [aux_sym_elseif_clause_token2] = ACTIONS(4365), + [aux_sym__inline_where_statement_token1] = ACTIONS(4365), + [aux_sym__forall_control_expression_token1] = ACTIONS(4365), + [aux_sym_select_case_statement_token1] = ACTIONS(4365), + [aux_sym_select_case_statement_token3] = ACTIONS(4365), + [aux_sym_select_type_statement_token1] = ACTIONS(4365), + [aux_sym_select_rank_statement_token2] = ACTIONS(4365), + [aux_sym_block_construct_token1] = ACTIONS(4365), + [aux_sym_associate_statement_token1] = ACTIONS(4365), + [aux_sym_format_statement_token1] = ACTIONS(4365), + [aux_sym_print_statement_token1] = ACTIONS(4365), + [aux_sym_open_statement_token1] = ACTIONS(4365), + [aux_sym_close_statement_token1] = ACTIONS(4365), + [aux_sym_inquire_statement_token1] = ACTIONS(4365), + [aux_sym_enum_statement_token1] = ACTIONS(4365), + [aux_sym_file_position_statement_token1] = ACTIONS(4365), + [aux_sym_file_position_statement_token2] = ACTIONS(4365), + [aux_sym_file_position_statement_token3] = ACTIONS(4365), + [aux_sym_file_position_statement_token4] = ACTIONS(4365), + [aux_sym_allocate_statement_token1] = ACTIONS(4365), + [aux_sym_entry_statement_token1] = ACTIONS(4365), + [aux_sym_logical_expression_token5] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4365), + [anon_sym_LPAREN_SLASH] = ACTIONS(4369), + [anon_sym_LBRACK] = ACTIONS(4369), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [aux_sym_null_literal_token1] = ACTIONS(4365), + [aux_sym_coarray_statement_token1] = ACTIONS(4365), + [aux_sym_coarray_statement_token2] = ACTIONS(4365), + [aux_sym_coarray_statement_token6] = ACTIONS(4365), + [aux_sym_coarray_statement_token8] = ACTIONS(4365), + [aux_sym_coarray_statement_token11] = ACTIONS(4365), + [aux_sym_coarray_statement_token12] = ACTIONS(4365), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4365), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4365), + [aux_sym_identifier_token1] = ACTIONS(4365), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4369), + [sym__float_literal] = ACTIONS(4369), + [sym__boz_literal] = ACTIONS(4369), + [sym__string_literal] = ACTIONS(4369), + [sym__string_literal_kind] = ACTIONS(4369), }, [836] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token2] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [aux_sym_preproc_else_token1] = ACTIONS(4323), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(4323), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), + [aux_sym_preproc_include_token1] = ACTIONS(4337), + [aux_sym_preproc_def_token1] = ACTIONS(4337), + [aux_sym_preproc_if_token1] = ACTIONS(4337), + [aux_sym_preproc_if_token2] = ACTIONS(4337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4337), + [aux_sym_preproc_else_token1] = ACTIONS(4337), + [aux_sym_preproc_elif_token1] = ACTIONS(4337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4337), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4337), + [sym_preproc_directive] = ACTIONS(4337), + [anon_sym_LPAREN2] = ACTIONS(4337), + [sym_preproc_comment] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_program_statement_token2] = ACTIONS(4323), - [aux_sym_module_statement_token1] = ACTIONS(4323), - [aux_sym_submodule_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_subroutine_statement_token1] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_function_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4323), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4323), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4323), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_subroutine_call_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_keyword_statement_token4] = ACTIONS(4323), - [aux_sym_keyword_statement_token6] = ACTIONS(4323), - [aux_sym_keyword_statement_token7] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym_do_loop_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym__inline_where_statement_token1] = ACTIONS(4323), - [aux_sym__forall_control_expression_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token3] = ACTIONS(4323), - [aux_sym_select_type_statement_token1] = ACTIONS(4323), - [aux_sym_select_rank_statement_token2] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_associate_statement_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_print_statement_token1] = ACTIONS(4323), - [aux_sym_open_statement_token1] = ACTIONS(4323), - [aux_sym_close_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token2] = ACTIONS(4323), - [aux_sym_file_position_statement_token3] = ACTIONS(4323), - [aux_sym_file_position_statement_token4] = ACTIONS(4323), - [aux_sym_allocate_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_logical_expression_token5] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LPAREN_SLASH] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_boolean_literal_token1] = ACTIONS(4325), - [aux_sym_boolean_literal_token2] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - [sym__float_literal] = ACTIONS(4325), - [sym__boz_literal] = ACTIONS(4325), - [sym__string_literal] = ACTIONS(4325), - [sym__string_literal_kind] = ACTIONS(4325), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token2] = ACTIONS(4337), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4337), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4337), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4337), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4337), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4337), + [aux_sym_procedure_attributes_token1] = ACTIONS(4337), + [aux_sym_procedure_attributes_token3] = ACTIONS(4337), + [aux_sym_contains_statement_token1] = ACTIONS(4337), + [aux_sym_use_statement_token1] = ACTIONS(4337), + [aux_sym_use_statement_token2] = ACTIONS(4337), + [aux_sym_implicit_statement_token1] = ACTIONS(4337), + [aux_sym_implicit_statement_token3] = ACTIONS(4337), + [aux_sym_implicit_statement_token4] = ACTIONS(4337), + [aux_sym_save_statement_token1] = ACTIONS(4337), + [aux_sym_private_statement_token1] = ACTIONS(4337), + [aux_sym_public_statement_token1] = ACTIONS(4337), + [aux_sym_namelist_statement_token1] = ACTIONS(4337), + [aux_sym_common_statement_token1] = ACTIONS(4337), + [aux_sym_import_statement_token1] = ACTIONS(4337), + [aux_sym_derived_type_definition_token1] = ACTIONS(4337), + [aux_sym_abstract_specifier_token1] = ACTIONS(4337), + [aux_sym_procedure_attribute_token6] = ACTIONS(4337), + [aux_sym_variable_attributes_token1] = ACTIONS(4337), + [aux_sym_variable_attributes_token2] = ACTIONS(4337), + [aux_sym_variable_attributes_token3] = ACTIONS(4337), + [aux_sym_variable_attributes_token4] = ACTIONS(4337), + [aux_sym_variable_attributes_token5] = ACTIONS(4337), + [aux_sym__intrinsic_type_token1] = ACTIONS(4337), + [aux_sym__intrinsic_type_token2] = ACTIONS(4337), + [aux_sym__intrinsic_type_token3] = ACTIONS(4337), + [aux_sym__intrinsic_type_token4] = ACTIONS(4337), + [aux_sym__intrinsic_type_token6] = ACTIONS(4337), + [aux_sym__intrinsic_type_token7] = ACTIONS(4337), + [aux_sym__intrinsic_type_token8] = ACTIONS(4337), + [aux_sym__intrinsic_type_token9] = ACTIONS(4337), + [aux_sym__intrinsic_type_token10] = ACTIONS(4337), + [aux_sym_derived_type_token1] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4337), + [aux_sym_type_qualifier_token1] = ACTIONS(4337), + [aux_sym_type_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4373), + [aux_sym_stop_statement_token1] = ACTIONS(4337), + [aux_sym_stop_statement_token2] = ACTIONS(4337), + [aux_sym_subroutine_call_token1] = ACTIONS(4337), + [aux_sym_keyword_statement_token1] = ACTIONS(4337), + [aux_sym_keyword_statement_token2] = ACTIONS(4337), + [aux_sym_keyword_statement_token3] = ACTIONS(4337), + [aux_sym_keyword_statement_token4] = ACTIONS(4337), + [aux_sym_keyword_statement_token6] = ACTIONS(4337), + [aux_sym_keyword_statement_token7] = ACTIONS(4337), + [aux_sym_include_statement_token1] = ACTIONS(4337), + [aux_sym_data_statement_token1] = ACTIONS(4337), + [aux_sym_do_loop_statement_token1] = ACTIONS(4337), + [aux_sym__inline_if_statement_token1] = ACTIONS(4337), + [aux_sym_end_if_statement_token1] = ACTIONS(4337), + [aux_sym_elseif_clause_token2] = ACTIONS(4337), + [aux_sym__inline_where_statement_token1] = ACTIONS(4337), + [aux_sym__forall_control_expression_token1] = ACTIONS(4337), + [aux_sym_select_case_statement_token1] = ACTIONS(4337), + [aux_sym_select_case_statement_token3] = ACTIONS(4337), + [aux_sym_select_type_statement_token1] = ACTIONS(4337), + [aux_sym_select_rank_statement_token2] = ACTIONS(4337), + [aux_sym_block_construct_token1] = ACTIONS(4337), + [aux_sym_associate_statement_token1] = ACTIONS(4337), + [aux_sym_format_statement_token1] = ACTIONS(4337), + [aux_sym_print_statement_token1] = ACTIONS(4337), + [aux_sym_open_statement_token1] = ACTIONS(4337), + [aux_sym_close_statement_token1] = ACTIONS(4337), + [aux_sym_inquire_statement_token1] = ACTIONS(4337), + [aux_sym_enum_statement_token1] = ACTIONS(4337), + [aux_sym_file_position_statement_token1] = ACTIONS(4337), + [aux_sym_file_position_statement_token2] = ACTIONS(4337), + [aux_sym_file_position_statement_token3] = ACTIONS(4337), + [aux_sym_file_position_statement_token4] = ACTIONS(4337), + [aux_sym_allocate_statement_token1] = ACTIONS(4337), + [aux_sym_entry_statement_token1] = ACTIONS(4337), + [aux_sym_logical_expression_token5] = ACTIONS(4373), + [anon_sym_DOT] = ACTIONS(4337), + [anon_sym_LPAREN_SLASH] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4373), + [aux_sym_boolean_literal_token1] = ACTIONS(4373), + [aux_sym_boolean_literal_token2] = ACTIONS(4373), + [aux_sym_null_literal_token1] = ACTIONS(4337), + [aux_sym_coarray_statement_token1] = ACTIONS(4337), + [aux_sym_coarray_statement_token2] = ACTIONS(4337), + [aux_sym_coarray_statement_token6] = ACTIONS(4337), + [aux_sym_coarray_statement_token8] = ACTIONS(4337), + [aux_sym_coarray_statement_token11] = ACTIONS(4337), + [aux_sym_coarray_statement_token12] = ACTIONS(4337), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4337), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4337), + [aux_sym_identifier_token1] = ACTIONS(4337), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4373), + [sym__float_literal] = ACTIONS(4373), + [sym__boz_literal] = ACTIONS(4373), + [sym__string_literal] = ACTIONS(4373), + [sym__string_literal_kind] = ACTIONS(4373), }, [837] = { [aux_sym_preproc_include_token1] = ACTIONS(4375), @@ -203417,145 +203417,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(4385), }, [840] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [aux_sym_preproc_else_token1] = ACTIONS(4327), - [aux_sym_preproc_elif_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [841] = { [aux_sym_preproc_include_token1] = ACTIONS(4387), [aux_sym_preproc_def_token1] = ACTIONS(4387), [aux_sym_preproc_if_token1] = ACTIONS(4387), @@ -203694,7 +203555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4389), [sym__string_literal_kind] = ACTIONS(4389), }, - [842] = { + [841] = { [aux_sym_preproc_include_token1] = ACTIONS(4391), [aux_sym_preproc_def_token1] = ACTIONS(4391), [aux_sym_preproc_if_token1] = ACTIONS(4391), @@ -203833,7 +203694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4393), [sym__string_literal_kind] = ACTIONS(4393), }, - [843] = { + [842] = { [aux_sym_preproc_include_token1] = ACTIONS(4395), [aux_sym_preproc_def_token1] = ACTIONS(4395), [aux_sym_preproc_if_token1] = ACTIONS(4395), @@ -203972,7 +203833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4397), [sym__string_literal_kind] = ACTIONS(4397), }, - [844] = { + [843] = { [aux_sym_preproc_include_token1] = ACTIONS(4399), [aux_sym_preproc_def_token1] = ACTIONS(4399), [aux_sym_preproc_if_token1] = ACTIONS(4399), @@ -204111,7 +203972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4401), [sym__string_literal_kind] = ACTIONS(4401), }, - [845] = { + [844] = { [aux_sym_preproc_include_token1] = ACTIONS(4403), [aux_sym_preproc_def_token1] = ACTIONS(4403), [aux_sym_preproc_if_token1] = ACTIONS(4403), @@ -204250,7 +204111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4405), [sym__string_literal_kind] = ACTIONS(4405), }, - [846] = { + [845] = { [aux_sym_preproc_include_token1] = ACTIONS(4407), [aux_sym_preproc_def_token1] = ACTIONS(4407), [aux_sym_preproc_if_token1] = ACTIONS(4407), @@ -204389,7 +204250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4409), [sym__string_literal_kind] = ACTIONS(4409), }, - [847] = { + [846] = { [aux_sym_preproc_include_token1] = ACTIONS(4411), [aux_sym_preproc_def_token1] = ACTIONS(4411), [aux_sym_preproc_if_token1] = ACTIONS(4411), @@ -204528,7 +204389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4413), [sym__string_literal_kind] = ACTIONS(4413), }, - [848] = { + [847] = { [aux_sym_preproc_include_token1] = ACTIONS(4415), [aux_sym_preproc_def_token1] = ACTIONS(4415), [aux_sym_preproc_if_token1] = ACTIONS(4415), @@ -204667,7 +204528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4417), [sym__string_literal_kind] = ACTIONS(4417), }, - [849] = { + [848] = { [aux_sym_preproc_include_token1] = ACTIONS(4419), [aux_sym_preproc_def_token1] = ACTIONS(4419), [aux_sym_preproc_if_token1] = ACTIONS(4419), @@ -204806,7 +204667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4421), [sym__string_literal_kind] = ACTIONS(4421), }, - [850] = { + [849] = { [aux_sym_preproc_include_token1] = ACTIONS(4423), [aux_sym_preproc_def_token1] = ACTIONS(4423), [aux_sym_preproc_if_token1] = ACTIONS(4423), @@ -204945,7 +204806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4425), [sym__string_literal_kind] = ACTIONS(4425), }, - [851] = { + [850] = { [aux_sym_preproc_include_token1] = ACTIONS(4427), [aux_sym_preproc_def_token1] = ACTIONS(4427), [aux_sym_preproc_if_token1] = ACTIONS(4427), @@ -205084,7 +204945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4429), [sym__string_literal_kind] = ACTIONS(4429), }, - [852] = { + [851] = { [aux_sym_preproc_include_token1] = ACTIONS(4431), [aux_sym_preproc_def_token1] = ACTIONS(4431), [aux_sym_preproc_if_token1] = ACTIONS(4431), @@ -205223,7 +205084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4433), [sym__string_literal_kind] = ACTIONS(4433), }, - [853] = { + [852] = { [aux_sym_preproc_include_token1] = ACTIONS(4435), [aux_sym_preproc_def_token1] = ACTIONS(4435), [aux_sym_preproc_if_token1] = ACTIONS(4435), @@ -205362,424 +205223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4437), [sym__string_literal_kind] = ACTIONS(4437), }, - [854] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [aux_sym_preproc_else_token1] = ACTIONS(4257), - [aux_sym_preproc_elif_token1] = ACTIONS(4257), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4257), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4257), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [855] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [aux_sym_preproc_else_token1] = ACTIONS(4295), - [aux_sym_preproc_elif_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), - }, - [856] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [aux_sym_preproc_else_token1] = ACTIONS(4287), - [aux_sym_preproc_elif_token1] = ACTIONS(4287), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4287), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4287), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), - }, - [857] = { + [853] = { [aux_sym_preproc_include_token1] = ACTIONS(4439), [aux_sym_preproc_def_token1] = ACTIONS(4439), [aux_sym_preproc_if_token1] = ACTIONS(4439), @@ -205918,33 +205362,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4441), [sym__string_literal_kind] = ACTIONS(4441), }, - [858] = { + [854] = { + [aux_sym_preproc_include_token1] = ACTIONS(368), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [aux_sym_preproc_if_token2] = ACTIONS(368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(368), + [aux_sym_preproc_else_token1] = ACTIONS(368), + [aux_sym_preproc_elif_token1] = ACTIONS(368), + [aux_sym_preproc_elifdef_token1] = ACTIONS(368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(368), + [sym_preproc_directive] = ACTIONS(368), + [anon_sym_LPAREN2] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(368), + [aux_sym_end_program_statement_token1] = ACTIONS(368), + [aux_sym_end_program_statement_token2] = ACTIONS(368), + [aux_sym_module_statement_token1] = ACTIONS(368), + [aux_sym_submodule_statement_token1] = ACTIONS(368), + [aux_sym_interface_statement_token1] = ACTIONS(368), + [aux_sym_defined_io_procedure_token1] = ACTIONS(368), + [aux_sym_defined_io_procedure_token2] = ACTIONS(368), + [aux_sym_subroutine_statement_token1] = ACTIONS(368), + [aux_sym_module_procedure_statement_token1] = ACTIONS(368), + [aux_sym_function_statement_token1] = ACTIONS(368), + [aux_sym_language_binding_token1] = ACTIONS(368), + [aux_sym_procedure_attributes_token1] = ACTIONS(368), + [aux_sym_procedure_attributes_token3] = ACTIONS(368), + [aux_sym_contains_statement_token1] = ACTIONS(368), + [aux_sym_use_statement_token1] = ACTIONS(368), + [aux_sym_use_statement_token2] = ACTIONS(368), + [aux_sym_implicit_statement_token1] = ACTIONS(368), + [aux_sym_implicit_statement_token3] = ACTIONS(368), + [aux_sym_implicit_statement_token4] = ACTIONS(368), + [aux_sym_save_statement_token1] = ACTIONS(368), + [aux_sym_private_statement_token1] = ACTIONS(368), + [aux_sym_public_statement_token1] = ACTIONS(368), + [aux_sym_namelist_statement_token1] = ACTIONS(368), + [aux_sym_common_statement_token1] = ACTIONS(368), + [aux_sym_import_statement_token1] = ACTIONS(368), + [aux_sym_derived_type_definition_token1] = ACTIONS(368), + [aux_sym_abstract_specifier_token1] = ACTIONS(368), + [aux_sym_procedure_attribute_token6] = ACTIONS(368), + [aux_sym_variable_attributes_token1] = ACTIONS(368), + [aux_sym_variable_attributes_token2] = ACTIONS(368), + [aux_sym_variable_attributes_token3] = ACTIONS(368), + [aux_sym_variable_attributes_token4] = ACTIONS(368), + [aux_sym_variable_attributes_token5] = ACTIONS(368), + [aux_sym__intrinsic_type_token1] = ACTIONS(368), + [aux_sym__intrinsic_type_token2] = ACTIONS(368), + [aux_sym__intrinsic_type_token3] = ACTIONS(368), + [aux_sym__intrinsic_type_token4] = ACTIONS(368), + [aux_sym__intrinsic_type_token6] = ACTIONS(368), + [aux_sym__intrinsic_type_token7] = ACTIONS(368), + [aux_sym__intrinsic_type_token8] = ACTIONS(368), + [aux_sym__intrinsic_type_token9] = ACTIONS(368), + [aux_sym__intrinsic_type_token10] = ACTIONS(368), + [aux_sym_derived_type_token1] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(368), + [aux_sym_type_qualifier_token1] = ACTIONS(368), + [aux_sym_type_qualifier_token2] = ACTIONS(368), + [aux_sym_procedure_qualifier_token1] = ACTIONS(368), + [aux_sym_procedure_qualifier_token2] = ACTIONS(368), + [aux_sym_procedure_qualifier_token3] = ACTIONS(368), + [aux_sym_procedure_qualifier_token4] = ACTIONS(368), + [aux_sym_equivalence_statement_token1] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(674), + [aux_sym_stop_statement_token1] = ACTIONS(368), + [aux_sym_stop_statement_token2] = ACTIONS(368), + [aux_sym_subroutine_call_token1] = ACTIONS(368), + [aux_sym_keyword_statement_token1] = ACTIONS(368), + [aux_sym_keyword_statement_token2] = ACTIONS(368), + [aux_sym_keyword_statement_token3] = ACTIONS(368), + [aux_sym_keyword_statement_token4] = ACTIONS(368), + [aux_sym_keyword_statement_token6] = ACTIONS(368), + [aux_sym_keyword_statement_token7] = ACTIONS(368), + [aux_sym_include_statement_token1] = ACTIONS(368), + [aux_sym_data_statement_token1] = ACTIONS(368), + [aux_sym_do_loop_statement_token1] = ACTIONS(368), + [aux_sym__inline_if_statement_token1] = ACTIONS(368), + [aux_sym_end_if_statement_token1] = ACTIONS(368), + [aux_sym_elseif_clause_token2] = ACTIONS(368), + [aux_sym__inline_where_statement_token1] = ACTIONS(368), + [aux_sym__forall_control_expression_token1] = ACTIONS(368), + [aux_sym_select_case_statement_token1] = ACTIONS(368), + [aux_sym_select_case_statement_token3] = ACTIONS(368), + [aux_sym_select_type_statement_token1] = ACTIONS(368), + [aux_sym_select_rank_statement_token2] = ACTIONS(368), + [aux_sym_block_construct_token1] = ACTIONS(368), + [aux_sym_associate_statement_token1] = ACTIONS(368), + [aux_sym_format_statement_token1] = ACTIONS(368), + [aux_sym_print_statement_token1] = ACTIONS(368), + [aux_sym_open_statement_token1] = ACTIONS(368), + [aux_sym_close_statement_token1] = ACTIONS(368), + [aux_sym_inquire_statement_token1] = ACTIONS(368), + [aux_sym_enum_statement_token1] = ACTIONS(368), + [aux_sym_file_position_statement_token1] = ACTIONS(368), + [aux_sym_file_position_statement_token2] = ACTIONS(368), + [aux_sym_file_position_statement_token3] = ACTIONS(368), + [aux_sym_file_position_statement_token4] = ACTIONS(368), + [aux_sym_allocate_statement_token1] = ACTIONS(368), + [aux_sym_entry_statement_token1] = ACTIONS(368), + [aux_sym_logical_expression_token5] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(368), + [anon_sym_LPAREN_SLASH] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(674), + [aux_sym_boolean_literal_token1] = ACTIONS(674), + [aux_sym_boolean_literal_token2] = ACTIONS(674), + [aux_sym_null_literal_token1] = ACTIONS(368), + [aux_sym_coarray_statement_token1] = ACTIONS(368), + [aux_sym_coarray_statement_token2] = ACTIONS(368), + [aux_sym_coarray_statement_token6] = ACTIONS(368), + [aux_sym_coarray_statement_token8] = ACTIONS(368), + [aux_sym_coarray_statement_token11] = ACTIONS(368), + [aux_sym_coarray_statement_token12] = ACTIONS(368), + [aux_sym_coarray_team_statement_token1] = ACTIONS(368), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(368), + [aux_sym_identifier_token1] = ACTIONS(368), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(674), + [sym__float_literal] = ACTIONS(674), + [sym__boz_literal] = ACTIONS(674), + [sym__string_literal] = ACTIONS(674), + [sym__string_literal_kind] = ACTIONS(674), + }, + [855] = { [aux_sym_preproc_include_token1] = ACTIONS(4443), [aux_sym_preproc_def_token1] = ACTIONS(4443), [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4445), + [aux_sym_preproc_if_token2] = ACTIONS(4443), [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [aux_sym_preproc_else_token1] = ACTIONS(4445), - [aux_sym_preproc_elif_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), + [aux_sym_preproc_else_token1] = ACTIONS(4443), + [aux_sym_preproc_elif_token1] = ACTIONS(4443), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4443), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4443), [sym_preproc_directive] = ACTIONS(4443), [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(4445), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), + [aux_sym_program_statement_token1] = ACTIONS(4443), [aux_sym_end_program_statement_token1] = ACTIONS(4443), [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), + [aux_sym_module_statement_token1] = ACTIONS(4443), + [aux_sym_submodule_statement_token1] = ACTIONS(4443), [aux_sym_interface_statement_token1] = ACTIONS(4443), [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), + [aux_sym_subroutine_statement_token1] = ACTIONS(4443), [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_function_statement_token1] = ACTIONS(4307), + [aux_sym_function_statement_token1] = ACTIONS(4443), [aux_sym_language_binding_token1] = ACTIONS(4443), [aux_sym_procedure_attributes_token1] = ACTIONS(4443), [aux_sym_procedure_attributes_token3] = ACTIONS(4443), @@ -205993,12 +205576,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), [aux_sym_type_qualifier_token1] = ACTIONS(4443), [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4443), [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4445), [aux_sym_stop_statement_token1] = ACTIONS(4443), [aux_sym_stop_statement_token2] = ACTIONS(4443), [aux_sym_subroutine_call_token1] = ACTIONS(4443), @@ -206034,12 +205617,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4443), [aux_sym_allocate_statement_token1] = ACTIONS(4443), [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), + [aux_sym_logical_expression_token5] = ACTIONS(4445), [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [anon_sym_LPAREN_SLASH] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [aux_sym_boolean_literal_token1] = ACTIONS(4445), + [aux_sym_boolean_literal_token2] = ACTIONS(4445), [aux_sym_null_literal_token1] = ACTIONS(4443), [aux_sym_coarray_statement_token1] = ACTIONS(4443), [aux_sym_coarray_statement_token2] = ACTIONS(4443), @@ -206051,1820 +205634,1542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), [aux_sym_identifier_token1] = ACTIONS(4443), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4445), + [sym__float_literal] = ACTIONS(4445), + [sym__boz_literal] = ACTIONS(4445), + [sym__string_literal] = ACTIONS(4445), + [sym__string_literal_kind] = ACTIONS(4445), + }, + [856] = { + [aux_sym_preproc_include_token1] = ACTIONS(4447), + [aux_sym_preproc_def_token1] = ACTIONS(4447), + [aux_sym_preproc_if_token1] = ACTIONS(4447), + [aux_sym_preproc_if_token2] = ACTIONS(4447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4447), + [aux_sym_preproc_else_token1] = ACTIONS(4447), + [aux_sym_preproc_elif_token1] = ACTIONS(4447), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4447), + [sym_preproc_directive] = ACTIONS(4447), + [anon_sym_LPAREN2] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4449), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4447), + [aux_sym_end_program_statement_token1] = ACTIONS(4447), + [aux_sym_end_program_statement_token2] = ACTIONS(4447), + [aux_sym_module_statement_token1] = ACTIONS(4447), + [aux_sym_submodule_statement_token1] = ACTIONS(4447), + [aux_sym_interface_statement_token1] = ACTIONS(4447), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4447), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4447), + [aux_sym_subroutine_statement_token1] = ACTIONS(4447), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4447), + [aux_sym_function_statement_token1] = ACTIONS(4447), + [aux_sym_language_binding_token1] = ACTIONS(4447), + [aux_sym_procedure_attributes_token1] = ACTIONS(4447), + [aux_sym_procedure_attributes_token3] = ACTIONS(4447), + [aux_sym_contains_statement_token1] = ACTIONS(4447), + [aux_sym_use_statement_token1] = ACTIONS(4447), + [aux_sym_use_statement_token2] = ACTIONS(4447), + [aux_sym_implicit_statement_token1] = ACTIONS(4447), + [aux_sym_implicit_statement_token3] = ACTIONS(4447), + [aux_sym_implicit_statement_token4] = ACTIONS(4447), + [aux_sym_save_statement_token1] = ACTIONS(4447), + [aux_sym_private_statement_token1] = ACTIONS(4447), + [aux_sym_public_statement_token1] = ACTIONS(4447), + [aux_sym_namelist_statement_token1] = ACTIONS(4447), + [aux_sym_common_statement_token1] = ACTIONS(4447), + [aux_sym_import_statement_token1] = ACTIONS(4447), + [aux_sym_derived_type_definition_token1] = ACTIONS(4447), + [aux_sym_abstract_specifier_token1] = ACTIONS(4447), + [aux_sym_procedure_attribute_token6] = ACTIONS(4447), + [aux_sym_variable_attributes_token1] = ACTIONS(4447), + [aux_sym_variable_attributes_token2] = ACTIONS(4447), + [aux_sym_variable_attributes_token3] = ACTIONS(4447), + [aux_sym_variable_attributes_token4] = ACTIONS(4447), + [aux_sym_variable_attributes_token5] = ACTIONS(4447), + [aux_sym__intrinsic_type_token1] = ACTIONS(4447), + [aux_sym__intrinsic_type_token2] = ACTIONS(4447), + [aux_sym__intrinsic_type_token3] = ACTIONS(4447), + [aux_sym__intrinsic_type_token4] = ACTIONS(4447), + [aux_sym__intrinsic_type_token6] = ACTIONS(4447), + [aux_sym__intrinsic_type_token7] = ACTIONS(4447), + [aux_sym__intrinsic_type_token8] = ACTIONS(4447), + [aux_sym__intrinsic_type_token9] = ACTIONS(4447), + [aux_sym__intrinsic_type_token10] = ACTIONS(4447), + [aux_sym_derived_type_token1] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4447), + [aux_sym_type_qualifier_token1] = ACTIONS(4447), + [aux_sym_type_qualifier_token2] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4447), + [aux_sym_equivalence_statement_token1] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [aux_sym_stop_statement_token1] = ACTIONS(4447), + [aux_sym_stop_statement_token2] = ACTIONS(4447), + [aux_sym_subroutine_call_token1] = ACTIONS(4447), + [aux_sym_keyword_statement_token1] = ACTIONS(4447), + [aux_sym_keyword_statement_token2] = ACTIONS(4447), + [aux_sym_keyword_statement_token3] = ACTIONS(4447), + [aux_sym_keyword_statement_token4] = ACTIONS(4447), + [aux_sym_keyword_statement_token6] = ACTIONS(4447), + [aux_sym_keyword_statement_token7] = ACTIONS(4447), + [aux_sym_include_statement_token1] = ACTIONS(4447), + [aux_sym_data_statement_token1] = ACTIONS(4447), + [aux_sym_do_loop_statement_token1] = ACTIONS(4447), + [aux_sym__inline_if_statement_token1] = ACTIONS(4447), + [aux_sym_end_if_statement_token1] = ACTIONS(4447), + [aux_sym_elseif_clause_token2] = ACTIONS(4447), + [aux_sym__inline_where_statement_token1] = ACTIONS(4447), + [aux_sym__forall_control_expression_token1] = ACTIONS(4447), + [aux_sym_select_case_statement_token1] = ACTIONS(4447), + [aux_sym_select_case_statement_token3] = ACTIONS(4447), + [aux_sym_select_type_statement_token1] = ACTIONS(4447), + [aux_sym_select_rank_statement_token2] = ACTIONS(4447), + [aux_sym_block_construct_token1] = ACTIONS(4447), + [aux_sym_associate_statement_token1] = ACTIONS(4447), + [aux_sym_format_statement_token1] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_inquire_statement_token1] = ACTIONS(4447), + [aux_sym_enum_statement_token1] = ACTIONS(4447), + [aux_sym_file_position_statement_token1] = ACTIONS(4447), + [aux_sym_file_position_statement_token2] = ACTIONS(4447), + [aux_sym_file_position_statement_token3] = ACTIONS(4447), + [aux_sym_file_position_statement_token4] = ACTIONS(4447), + [aux_sym_allocate_statement_token1] = ACTIONS(4447), + [aux_sym_entry_statement_token1] = ACTIONS(4447), + [aux_sym_logical_expression_token5] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_LPAREN_SLASH] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4449), + [aux_sym_boolean_literal_token2] = ACTIONS(4449), + [aux_sym_null_literal_token1] = ACTIONS(4447), + [aux_sym_coarray_statement_token1] = ACTIONS(4447), + [aux_sym_coarray_statement_token2] = ACTIONS(4447), + [aux_sym_coarray_statement_token6] = ACTIONS(4447), + [aux_sym_coarray_statement_token8] = ACTIONS(4447), + [aux_sym_coarray_statement_token11] = ACTIONS(4447), + [aux_sym_coarray_statement_token12] = ACTIONS(4447), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4447), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4447), + [aux_sym_identifier_token1] = ACTIONS(4447), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4449), + [sym__float_literal] = ACTIONS(4449), + [sym__boz_literal] = ACTIONS(4449), + [sym__string_literal] = ACTIONS(4449), + [sym__string_literal_kind] = ACTIONS(4449), + }, + [857] = { + [aux_sym_preproc_include_token1] = ACTIONS(4451), + [aux_sym_preproc_def_token1] = ACTIONS(4451), + [aux_sym_preproc_if_token1] = ACTIONS(4451), + [aux_sym_preproc_if_token2] = ACTIONS(4451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4451), + [aux_sym_preproc_else_token1] = ACTIONS(4451), + [aux_sym_preproc_elif_token1] = ACTIONS(4451), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4451), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4451), + [sym_preproc_directive] = ACTIONS(4451), + [anon_sym_LPAREN2] = ACTIONS(4451), + [anon_sym_PLUS] = ACTIONS(4453), + [anon_sym_DASH] = ACTIONS(4453), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4451), + [aux_sym_end_program_statement_token1] = ACTIONS(4451), + [aux_sym_end_program_statement_token2] = ACTIONS(4451), + [aux_sym_module_statement_token1] = ACTIONS(4451), + [aux_sym_submodule_statement_token1] = ACTIONS(4451), + [aux_sym_interface_statement_token1] = ACTIONS(4451), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4451), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4451), + [aux_sym_subroutine_statement_token1] = ACTIONS(4451), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4451), + [aux_sym_function_statement_token1] = ACTIONS(4451), + [aux_sym_language_binding_token1] = ACTIONS(4451), + [aux_sym_procedure_attributes_token1] = ACTIONS(4451), + [aux_sym_procedure_attributes_token3] = ACTIONS(4451), + [aux_sym_contains_statement_token1] = ACTIONS(4451), + [aux_sym_use_statement_token1] = ACTIONS(4451), + [aux_sym_use_statement_token2] = ACTIONS(4451), + [aux_sym_implicit_statement_token1] = ACTIONS(4451), + [aux_sym_implicit_statement_token3] = ACTIONS(4451), + [aux_sym_implicit_statement_token4] = ACTIONS(4451), + [aux_sym_save_statement_token1] = ACTIONS(4451), + [aux_sym_private_statement_token1] = ACTIONS(4451), + [aux_sym_public_statement_token1] = ACTIONS(4451), + [aux_sym_namelist_statement_token1] = ACTIONS(4451), + [aux_sym_common_statement_token1] = ACTIONS(4451), + [aux_sym_import_statement_token1] = ACTIONS(4451), + [aux_sym_derived_type_definition_token1] = ACTIONS(4451), + [aux_sym_abstract_specifier_token1] = ACTIONS(4451), + [aux_sym_procedure_attribute_token6] = ACTIONS(4451), + [aux_sym_variable_attributes_token1] = ACTIONS(4451), + [aux_sym_variable_attributes_token2] = ACTIONS(4451), + [aux_sym_variable_attributes_token3] = ACTIONS(4451), + [aux_sym_variable_attributes_token4] = ACTIONS(4451), + [aux_sym_variable_attributes_token5] = ACTIONS(4451), + [aux_sym__intrinsic_type_token1] = ACTIONS(4451), + [aux_sym__intrinsic_type_token2] = ACTIONS(4451), + [aux_sym__intrinsic_type_token3] = ACTIONS(4451), + [aux_sym__intrinsic_type_token4] = ACTIONS(4451), + [aux_sym__intrinsic_type_token6] = ACTIONS(4451), + [aux_sym__intrinsic_type_token7] = ACTIONS(4451), + [aux_sym__intrinsic_type_token8] = ACTIONS(4451), + [aux_sym__intrinsic_type_token9] = ACTIONS(4451), + [aux_sym__intrinsic_type_token10] = ACTIONS(4451), + [aux_sym_derived_type_token1] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4451), + [aux_sym_type_qualifier_token1] = ACTIONS(4451), + [aux_sym_type_qualifier_token2] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4451), + [aux_sym_equivalence_statement_token1] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [aux_sym_stop_statement_token1] = ACTIONS(4451), + [aux_sym_stop_statement_token2] = ACTIONS(4451), + [aux_sym_subroutine_call_token1] = ACTIONS(4451), + [aux_sym_keyword_statement_token1] = ACTIONS(4451), + [aux_sym_keyword_statement_token2] = ACTIONS(4451), + [aux_sym_keyword_statement_token3] = ACTIONS(4451), + [aux_sym_keyword_statement_token4] = ACTIONS(4451), + [aux_sym_keyword_statement_token6] = ACTIONS(4451), + [aux_sym_keyword_statement_token7] = ACTIONS(4451), + [aux_sym_include_statement_token1] = ACTIONS(4451), + [aux_sym_data_statement_token1] = ACTIONS(4451), + [aux_sym_do_loop_statement_token1] = ACTIONS(4451), + [aux_sym__inline_if_statement_token1] = ACTIONS(4451), + [aux_sym_end_if_statement_token1] = ACTIONS(4451), + [aux_sym_elseif_clause_token2] = ACTIONS(4451), + [aux_sym__inline_where_statement_token1] = ACTIONS(4451), + [aux_sym__forall_control_expression_token1] = ACTIONS(4451), + [aux_sym_select_case_statement_token1] = ACTIONS(4451), + [aux_sym_select_case_statement_token3] = ACTIONS(4451), + [aux_sym_select_type_statement_token1] = ACTIONS(4451), + [aux_sym_select_rank_statement_token2] = ACTIONS(4451), + [aux_sym_block_construct_token1] = ACTIONS(4451), + [aux_sym_associate_statement_token1] = ACTIONS(4451), + [aux_sym_format_statement_token1] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_inquire_statement_token1] = ACTIONS(4451), + [aux_sym_enum_statement_token1] = ACTIONS(4451), + [aux_sym_file_position_statement_token1] = ACTIONS(4451), + [aux_sym_file_position_statement_token2] = ACTIONS(4451), + [aux_sym_file_position_statement_token3] = ACTIONS(4451), + [aux_sym_file_position_statement_token4] = ACTIONS(4451), + [aux_sym_allocate_statement_token1] = ACTIONS(4451), + [aux_sym_entry_statement_token1] = ACTIONS(4451), + [aux_sym_logical_expression_token5] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_LPAREN_SLASH] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4453), + [aux_sym_boolean_literal_token2] = ACTIONS(4453), + [aux_sym_null_literal_token1] = ACTIONS(4451), + [aux_sym_coarray_statement_token1] = ACTIONS(4451), + [aux_sym_coarray_statement_token2] = ACTIONS(4451), + [aux_sym_coarray_statement_token6] = ACTIONS(4451), + [aux_sym_coarray_statement_token8] = ACTIONS(4451), + [aux_sym_coarray_statement_token11] = ACTIONS(4451), + [aux_sym_coarray_statement_token12] = ACTIONS(4451), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4451), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4451), + [aux_sym_identifier_token1] = ACTIONS(4451), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4453), + [sym__float_literal] = ACTIONS(4453), + [sym__boz_literal] = ACTIONS(4453), + [sym__string_literal] = ACTIONS(4453), + [sym__string_literal_kind] = ACTIONS(4453), + }, + [858] = { + [aux_sym_preproc_include_token1] = ACTIONS(4455), + [aux_sym_preproc_def_token1] = ACTIONS(4455), + [aux_sym_preproc_if_token1] = ACTIONS(4455), + [aux_sym_preproc_if_token2] = ACTIONS(4455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4455), + [aux_sym_preproc_else_token1] = ACTIONS(4455), + [aux_sym_preproc_elif_token1] = ACTIONS(4455), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4455), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4455), + [sym_preproc_directive] = ACTIONS(4455), + [anon_sym_LPAREN2] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4455), + [aux_sym_end_program_statement_token1] = ACTIONS(4455), + [aux_sym_end_program_statement_token2] = ACTIONS(4455), + [aux_sym_module_statement_token1] = ACTIONS(4455), + [aux_sym_submodule_statement_token1] = ACTIONS(4455), + [aux_sym_interface_statement_token1] = ACTIONS(4455), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4455), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4455), + [aux_sym_subroutine_statement_token1] = ACTIONS(4455), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4455), + [aux_sym_function_statement_token1] = ACTIONS(4455), + [aux_sym_language_binding_token1] = ACTIONS(4455), + [aux_sym_procedure_attributes_token1] = ACTIONS(4455), + [aux_sym_procedure_attributes_token3] = ACTIONS(4455), + [aux_sym_contains_statement_token1] = ACTIONS(4455), + [aux_sym_use_statement_token1] = ACTIONS(4455), + [aux_sym_use_statement_token2] = ACTIONS(4455), + [aux_sym_implicit_statement_token1] = ACTIONS(4455), + [aux_sym_implicit_statement_token3] = ACTIONS(4455), + [aux_sym_implicit_statement_token4] = ACTIONS(4455), + [aux_sym_save_statement_token1] = ACTIONS(4455), + [aux_sym_private_statement_token1] = ACTIONS(4455), + [aux_sym_public_statement_token1] = ACTIONS(4455), + [aux_sym_namelist_statement_token1] = ACTIONS(4455), + [aux_sym_common_statement_token1] = ACTIONS(4455), + [aux_sym_import_statement_token1] = ACTIONS(4455), + [aux_sym_derived_type_definition_token1] = ACTIONS(4455), + [aux_sym_abstract_specifier_token1] = ACTIONS(4455), + [aux_sym_procedure_attribute_token6] = ACTIONS(4455), + [aux_sym_variable_attributes_token1] = ACTIONS(4455), + [aux_sym_variable_attributes_token2] = ACTIONS(4455), + [aux_sym_variable_attributes_token3] = ACTIONS(4455), + [aux_sym_variable_attributes_token4] = ACTIONS(4455), + [aux_sym_variable_attributes_token5] = ACTIONS(4455), + [aux_sym__intrinsic_type_token1] = ACTIONS(4455), + [aux_sym__intrinsic_type_token2] = ACTIONS(4455), + [aux_sym__intrinsic_type_token3] = ACTIONS(4455), + [aux_sym__intrinsic_type_token4] = ACTIONS(4455), + [aux_sym__intrinsic_type_token6] = ACTIONS(4455), + [aux_sym__intrinsic_type_token7] = ACTIONS(4455), + [aux_sym__intrinsic_type_token8] = ACTIONS(4455), + [aux_sym__intrinsic_type_token9] = ACTIONS(4455), + [aux_sym__intrinsic_type_token10] = ACTIONS(4455), + [aux_sym_derived_type_token1] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4455), + [aux_sym_type_qualifier_token1] = ACTIONS(4455), + [aux_sym_type_qualifier_token2] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4455), + [aux_sym_equivalence_statement_token1] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [aux_sym_stop_statement_token1] = ACTIONS(4455), + [aux_sym_stop_statement_token2] = ACTIONS(4455), + [aux_sym_subroutine_call_token1] = ACTIONS(4455), + [aux_sym_keyword_statement_token1] = ACTIONS(4455), + [aux_sym_keyword_statement_token2] = ACTIONS(4455), + [aux_sym_keyword_statement_token3] = ACTIONS(4455), + [aux_sym_keyword_statement_token4] = ACTIONS(4455), + [aux_sym_keyword_statement_token6] = ACTIONS(4455), + [aux_sym_keyword_statement_token7] = ACTIONS(4455), + [aux_sym_include_statement_token1] = ACTIONS(4455), + [aux_sym_data_statement_token1] = ACTIONS(4455), + [aux_sym_do_loop_statement_token1] = ACTIONS(4455), + [aux_sym__inline_if_statement_token1] = ACTIONS(4455), + [aux_sym_end_if_statement_token1] = ACTIONS(4455), + [aux_sym_elseif_clause_token2] = ACTIONS(4455), + [aux_sym__inline_where_statement_token1] = ACTIONS(4455), + [aux_sym__forall_control_expression_token1] = ACTIONS(4455), + [aux_sym_select_case_statement_token1] = ACTIONS(4455), + [aux_sym_select_case_statement_token3] = ACTIONS(4455), + [aux_sym_select_type_statement_token1] = ACTIONS(4455), + [aux_sym_select_rank_statement_token2] = ACTIONS(4455), + [aux_sym_block_construct_token1] = ACTIONS(4455), + [aux_sym_associate_statement_token1] = ACTIONS(4455), + [aux_sym_format_statement_token1] = ACTIONS(4455), + [aux_sym_print_statement_token1] = ACTIONS(4455), + [aux_sym_open_statement_token1] = ACTIONS(4455), + [aux_sym_close_statement_token1] = ACTIONS(4455), + [aux_sym_inquire_statement_token1] = ACTIONS(4455), + [aux_sym_enum_statement_token1] = ACTIONS(4455), + [aux_sym_file_position_statement_token1] = ACTIONS(4455), + [aux_sym_file_position_statement_token2] = ACTIONS(4455), + [aux_sym_file_position_statement_token3] = ACTIONS(4455), + [aux_sym_file_position_statement_token4] = ACTIONS(4455), + [aux_sym_allocate_statement_token1] = ACTIONS(4455), + [aux_sym_entry_statement_token1] = ACTIONS(4455), + [aux_sym_logical_expression_token5] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_LPAREN_SLASH] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [aux_sym_boolean_literal_token1] = ACTIONS(4457), + [aux_sym_boolean_literal_token2] = ACTIONS(4457), + [aux_sym_null_literal_token1] = ACTIONS(4455), + [aux_sym_coarray_statement_token1] = ACTIONS(4455), + [aux_sym_coarray_statement_token2] = ACTIONS(4455), + [aux_sym_coarray_statement_token6] = ACTIONS(4455), + [aux_sym_coarray_statement_token8] = ACTIONS(4455), + [aux_sym_coarray_statement_token11] = ACTIONS(4455), + [aux_sym_coarray_statement_token12] = ACTIONS(4455), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4455), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4455), + [aux_sym_identifier_token1] = ACTIONS(4455), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4457), + [sym__float_literal] = ACTIONS(4457), + [sym__boz_literal] = ACTIONS(4457), + [sym__string_literal] = ACTIONS(4457), + [sym__string_literal_kind] = ACTIONS(4457), }, [859] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [aux_sym_preproc_else_token1] = ACTIONS(4307), - [aux_sym_preproc_elif_token1] = ACTIONS(4307), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4307), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4307), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [aux_sym_preproc_include_token1] = ACTIONS(4459), + [aux_sym_preproc_def_token1] = ACTIONS(4459), + [aux_sym_preproc_if_token1] = ACTIONS(4459), + [aux_sym_preproc_if_token2] = ACTIONS(4459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4459), + [aux_sym_preproc_else_token1] = ACTIONS(4459), + [aux_sym_preproc_elif_token1] = ACTIONS(4459), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4459), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4459), + [sym_preproc_directive] = ACTIONS(4459), + [anon_sym_LPAREN2] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4459), + [aux_sym_end_program_statement_token1] = ACTIONS(4459), + [aux_sym_end_program_statement_token2] = ACTIONS(4459), + [aux_sym_module_statement_token1] = ACTIONS(4459), + [aux_sym_submodule_statement_token1] = ACTIONS(4459), + [aux_sym_interface_statement_token1] = ACTIONS(4459), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4459), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4459), + [aux_sym_subroutine_statement_token1] = ACTIONS(4459), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4459), + [aux_sym_function_statement_token1] = ACTIONS(4459), + [aux_sym_language_binding_token1] = ACTIONS(4459), + [aux_sym_procedure_attributes_token1] = ACTIONS(4459), + [aux_sym_procedure_attributes_token3] = ACTIONS(4459), + [aux_sym_contains_statement_token1] = ACTIONS(4459), + [aux_sym_use_statement_token1] = ACTIONS(4459), + [aux_sym_use_statement_token2] = ACTIONS(4459), + [aux_sym_implicit_statement_token1] = ACTIONS(4459), + [aux_sym_implicit_statement_token3] = ACTIONS(4459), + [aux_sym_implicit_statement_token4] = ACTIONS(4459), + [aux_sym_save_statement_token1] = ACTIONS(4459), + [aux_sym_private_statement_token1] = ACTIONS(4459), + [aux_sym_public_statement_token1] = ACTIONS(4459), + [aux_sym_namelist_statement_token1] = ACTIONS(4459), + [aux_sym_common_statement_token1] = ACTIONS(4459), + [aux_sym_import_statement_token1] = ACTIONS(4459), + [aux_sym_derived_type_definition_token1] = ACTIONS(4459), + [aux_sym_abstract_specifier_token1] = ACTIONS(4459), + [aux_sym_procedure_attribute_token6] = ACTIONS(4459), + [aux_sym_variable_attributes_token1] = ACTIONS(4459), + [aux_sym_variable_attributes_token2] = ACTIONS(4459), + [aux_sym_variable_attributes_token3] = ACTIONS(4459), + [aux_sym_variable_attributes_token4] = ACTIONS(4459), + [aux_sym_variable_attributes_token5] = ACTIONS(4459), + [aux_sym__intrinsic_type_token1] = ACTIONS(4459), + [aux_sym__intrinsic_type_token2] = ACTIONS(4459), + [aux_sym__intrinsic_type_token3] = ACTIONS(4459), + [aux_sym__intrinsic_type_token4] = ACTIONS(4459), + [aux_sym__intrinsic_type_token6] = ACTIONS(4459), + [aux_sym__intrinsic_type_token7] = ACTIONS(4459), + [aux_sym__intrinsic_type_token8] = ACTIONS(4459), + [aux_sym__intrinsic_type_token9] = ACTIONS(4459), + [aux_sym__intrinsic_type_token10] = ACTIONS(4459), + [aux_sym_derived_type_token1] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4459), + [aux_sym_type_qualifier_token1] = ACTIONS(4459), + [aux_sym_type_qualifier_token2] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4459), + [aux_sym_equivalence_statement_token1] = ACTIONS(4459), + [anon_sym_SEMI] = ACTIONS(4461), + [aux_sym_stop_statement_token1] = ACTIONS(4459), + [aux_sym_stop_statement_token2] = ACTIONS(4459), + [aux_sym_subroutine_call_token1] = ACTIONS(4459), + [aux_sym_keyword_statement_token1] = ACTIONS(4459), + [aux_sym_keyword_statement_token2] = ACTIONS(4459), + [aux_sym_keyword_statement_token3] = ACTIONS(4459), + [aux_sym_keyword_statement_token4] = ACTIONS(4459), + [aux_sym_keyword_statement_token6] = ACTIONS(4459), + [aux_sym_keyword_statement_token7] = ACTIONS(4459), + [aux_sym_include_statement_token1] = ACTIONS(4459), + [aux_sym_data_statement_token1] = ACTIONS(4459), + [aux_sym_do_loop_statement_token1] = ACTIONS(4459), + [aux_sym__inline_if_statement_token1] = ACTIONS(4459), + [aux_sym_end_if_statement_token1] = ACTIONS(4459), + [aux_sym_elseif_clause_token2] = ACTIONS(4459), + [aux_sym__inline_where_statement_token1] = ACTIONS(4459), + [aux_sym__forall_control_expression_token1] = ACTIONS(4459), + [aux_sym_select_case_statement_token1] = ACTIONS(4459), + [aux_sym_select_case_statement_token3] = ACTIONS(4459), + [aux_sym_select_type_statement_token1] = ACTIONS(4459), + [aux_sym_select_rank_statement_token2] = ACTIONS(4459), + [aux_sym_block_construct_token1] = ACTIONS(4459), + [aux_sym_associate_statement_token1] = ACTIONS(4459), + [aux_sym_format_statement_token1] = ACTIONS(4459), + [aux_sym_print_statement_token1] = ACTIONS(4459), + [aux_sym_open_statement_token1] = ACTIONS(4459), + [aux_sym_close_statement_token1] = ACTIONS(4459), + [aux_sym_inquire_statement_token1] = ACTIONS(4459), + [aux_sym_enum_statement_token1] = ACTIONS(4459), + [aux_sym_file_position_statement_token1] = ACTIONS(4459), + [aux_sym_file_position_statement_token2] = ACTIONS(4459), + [aux_sym_file_position_statement_token3] = ACTIONS(4459), + [aux_sym_file_position_statement_token4] = ACTIONS(4459), + [aux_sym_allocate_statement_token1] = ACTIONS(4459), + [aux_sym_entry_statement_token1] = ACTIONS(4459), + [aux_sym_logical_expression_token5] = ACTIONS(4461), + [anon_sym_DOT] = ACTIONS(4459), + [anon_sym_LPAREN_SLASH] = ACTIONS(4461), + [anon_sym_LBRACK] = ACTIONS(4461), + [aux_sym_boolean_literal_token1] = ACTIONS(4461), + [aux_sym_boolean_literal_token2] = ACTIONS(4461), + [aux_sym_null_literal_token1] = ACTIONS(4459), + [aux_sym_coarray_statement_token1] = ACTIONS(4459), + [aux_sym_coarray_statement_token2] = ACTIONS(4459), + [aux_sym_coarray_statement_token6] = ACTIONS(4459), + [aux_sym_coarray_statement_token8] = ACTIONS(4459), + [aux_sym_coarray_statement_token11] = ACTIONS(4459), + [aux_sym_coarray_statement_token12] = ACTIONS(4459), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4459), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4459), + [aux_sym_identifier_token1] = ACTIONS(4459), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4461), + [sym__float_literal] = ACTIONS(4461), + [sym__boz_literal] = ACTIONS(4461), + [sym__string_literal] = ACTIONS(4461), + [sym__string_literal_kind] = ACTIONS(4461), }, [860] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token2] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [aux_sym_preproc_else_token1] = ACTIONS(4347), - [aux_sym_preproc_elif_token1] = ACTIONS(4347), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4347), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4347), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(4463), + [aux_sym_preproc_def_token1] = ACTIONS(4463), + [aux_sym_preproc_if_token1] = ACTIONS(4463), + [aux_sym_preproc_if_token2] = ACTIONS(4463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4463), + [aux_sym_preproc_else_token1] = ACTIONS(4463), + [aux_sym_preproc_elif_token1] = ACTIONS(4463), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4463), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4463), + [sym_preproc_directive] = ACTIONS(4463), + [anon_sym_LPAREN2] = ACTIONS(4463), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4463), + [aux_sym_end_program_statement_token1] = ACTIONS(4463), + [aux_sym_end_program_statement_token2] = ACTIONS(4463), + [aux_sym_module_statement_token1] = ACTIONS(4463), + [aux_sym_submodule_statement_token1] = ACTIONS(4463), + [aux_sym_interface_statement_token1] = ACTIONS(4463), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4463), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4463), + [aux_sym_subroutine_statement_token1] = ACTIONS(4463), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4463), + [aux_sym_function_statement_token1] = ACTIONS(4463), + [aux_sym_language_binding_token1] = ACTIONS(4463), + [aux_sym_procedure_attributes_token1] = ACTIONS(4463), + [aux_sym_procedure_attributes_token3] = ACTIONS(4463), + [aux_sym_contains_statement_token1] = ACTIONS(4463), + [aux_sym_use_statement_token1] = ACTIONS(4463), + [aux_sym_use_statement_token2] = ACTIONS(4463), + [aux_sym_implicit_statement_token1] = ACTIONS(4463), + [aux_sym_implicit_statement_token3] = ACTIONS(4463), + [aux_sym_implicit_statement_token4] = ACTIONS(4463), + [aux_sym_save_statement_token1] = ACTIONS(4463), + [aux_sym_private_statement_token1] = ACTIONS(4463), + [aux_sym_public_statement_token1] = ACTIONS(4463), + [aux_sym_namelist_statement_token1] = ACTIONS(4463), + [aux_sym_common_statement_token1] = ACTIONS(4463), + [aux_sym_import_statement_token1] = ACTIONS(4463), + [aux_sym_derived_type_definition_token1] = ACTIONS(4463), + [aux_sym_abstract_specifier_token1] = ACTIONS(4463), + [aux_sym_procedure_attribute_token6] = ACTIONS(4463), + [aux_sym_variable_attributes_token1] = ACTIONS(4463), + [aux_sym_variable_attributes_token2] = ACTIONS(4463), + [aux_sym_variable_attributes_token3] = ACTIONS(4463), + [aux_sym_variable_attributes_token4] = ACTIONS(4463), + [aux_sym_variable_attributes_token5] = ACTIONS(4463), + [aux_sym__intrinsic_type_token1] = ACTIONS(4463), + [aux_sym__intrinsic_type_token2] = ACTIONS(4463), + [aux_sym__intrinsic_type_token3] = ACTIONS(4463), + [aux_sym__intrinsic_type_token4] = ACTIONS(4463), + [aux_sym__intrinsic_type_token6] = ACTIONS(4463), + [aux_sym__intrinsic_type_token7] = ACTIONS(4463), + [aux_sym__intrinsic_type_token8] = ACTIONS(4463), + [aux_sym__intrinsic_type_token9] = ACTIONS(4463), + [aux_sym__intrinsic_type_token10] = ACTIONS(4463), + [aux_sym_derived_type_token1] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4463), + [aux_sym_type_qualifier_token1] = ACTIONS(4463), + [aux_sym_type_qualifier_token2] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4463), + [aux_sym_equivalence_statement_token1] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [aux_sym_stop_statement_token1] = ACTIONS(4463), + [aux_sym_stop_statement_token2] = ACTIONS(4463), + [aux_sym_subroutine_call_token1] = ACTIONS(4463), + [aux_sym_keyword_statement_token1] = ACTIONS(4463), + [aux_sym_keyword_statement_token2] = ACTIONS(4463), + [aux_sym_keyword_statement_token3] = ACTIONS(4463), + [aux_sym_keyword_statement_token4] = ACTIONS(4463), + [aux_sym_keyword_statement_token6] = ACTIONS(4463), + [aux_sym_keyword_statement_token7] = ACTIONS(4463), + [aux_sym_include_statement_token1] = ACTIONS(4463), + [aux_sym_data_statement_token1] = ACTIONS(4463), + [aux_sym_do_loop_statement_token1] = ACTIONS(4463), + [aux_sym__inline_if_statement_token1] = ACTIONS(4463), + [aux_sym_end_if_statement_token1] = ACTIONS(4463), + [aux_sym_elseif_clause_token2] = ACTIONS(4463), + [aux_sym__inline_where_statement_token1] = ACTIONS(4463), + [aux_sym__forall_control_expression_token1] = ACTIONS(4463), + [aux_sym_select_case_statement_token1] = ACTIONS(4463), + [aux_sym_select_case_statement_token3] = ACTIONS(4463), + [aux_sym_select_type_statement_token1] = ACTIONS(4463), + [aux_sym_select_rank_statement_token2] = ACTIONS(4463), + [aux_sym_block_construct_token1] = ACTIONS(4463), + [aux_sym_associate_statement_token1] = ACTIONS(4463), + [aux_sym_format_statement_token1] = ACTIONS(4463), + [aux_sym_print_statement_token1] = ACTIONS(4463), + [aux_sym_open_statement_token1] = ACTIONS(4463), + [aux_sym_close_statement_token1] = ACTIONS(4463), + [aux_sym_inquire_statement_token1] = ACTIONS(4463), + [aux_sym_enum_statement_token1] = ACTIONS(4463), + [aux_sym_file_position_statement_token1] = ACTIONS(4463), + [aux_sym_file_position_statement_token2] = ACTIONS(4463), + [aux_sym_file_position_statement_token3] = ACTIONS(4463), + [aux_sym_file_position_statement_token4] = ACTIONS(4463), + [aux_sym_allocate_statement_token1] = ACTIONS(4463), + [aux_sym_entry_statement_token1] = ACTIONS(4463), + [aux_sym_logical_expression_token5] = ACTIONS(4465), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_LPAREN_SLASH] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [aux_sym_boolean_literal_token1] = ACTIONS(4465), + [aux_sym_boolean_literal_token2] = ACTIONS(4465), + [aux_sym_null_literal_token1] = ACTIONS(4463), + [aux_sym_coarray_statement_token1] = ACTIONS(4463), + [aux_sym_coarray_statement_token2] = ACTIONS(4463), + [aux_sym_coarray_statement_token6] = ACTIONS(4463), + [aux_sym_coarray_statement_token8] = ACTIONS(4463), + [aux_sym_coarray_statement_token11] = ACTIONS(4463), + [aux_sym_coarray_statement_token12] = ACTIONS(4463), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4463), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4463), + [aux_sym_identifier_token1] = ACTIONS(4463), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4465), + [sym__float_literal] = ACTIONS(4465), + [sym__boz_literal] = ACTIONS(4465), + [sym__string_literal] = ACTIONS(4465), + [sym__string_literal_kind] = ACTIONS(4465), }, [861] = { - [aux_sym_preproc_include_token1] = ACTIONS(4453), - [aux_sym_preproc_def_token1] = ACTIONS(4453), - [aux_sym_preproc_if_token1] = ACTIONS(4453), - [aux_sym_preproc_if_token2] = ACTIONS(4453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4453), - [aux_sym_preproc_else_token1] = ACTIONS(4453), - [aux_sym_preproc_elif_token1] = ACTIONS(4453), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4453), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4453), - [sym_preproc_directive] = ACTIONS(4453), - [anon_sym_LPAREN2] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4453), - [aux_sym_end_program_statement_token1] = ACTIONS(4453), - [aux_sym_end_program_statement_token2] = ACTIONS(4453), - [aux_sym_module_statement_token1] = ACTIONS(4453), - [aux_sym_submodule_statement_token1] = ACTIONS(4453), - [aux_sym_interface_statement_token1] = ACTIONS(4453), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4453), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4453), - [aux_sym_subroutine_statement_token1] = ACTIONS(4453), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4453), - [aux_sym_function_statement_token1] = ACTIONS(4453), - [aux_sym_language_binding_token1] = ACTIONS(4453), - [aux_sym_procedure_attributes_token1] = ACTIONS(4453), - [aux_sym_procedure_attributes_token3] = ACTIONS(4453), - [aux_sym_contains_statement_token1] = ACTIONS(4453), - [aux_sym_use_statement_token1] = ACTIONS(4453), - [aux_sym_use_statement_token2] = ACTIONS(4453), - [aux_sym_implicit_statement_token1] = ACTIONS(4453), - [aux_sym_implicit_statement_token3] = ACTIONS(4453), - [aux_sym_implicit_statement_token4] = ACTIONS(4453), - [aux_sym_save_statement_token1] = ACTIONS(4453), - [aux_sym_private_statement_token1] = ACTIONS(4453), - [aux_sym_public_statement_token1] = ACTIONS(4453), - [aux_sym_namelist_statement_token1] = ACTIONS(4453), - [aux_sym_common_statement_token1] = ACTIONS(4453), - [aux_sym_import_statement_token1] = ACTIONS(4453), - [aux_sym_derived_type_definition_token1] = ACTIONS(4453), - [aux_sym_abstract_specifier_token1] = ACTIONS(4453), - [aux_sym_procedure_attribute_token6] = ACTIONS(4453), - [aux_sym_variable_attributes_token1] = ACTIONS(4453), - [aux_sym_variable_attributes_token2] = ACTIONS(4453), - [aux_sym_variable_attributes_token3] = ACTIONS(4453), - [aux_sym_variable_attributes_token4] = ACTIONS(4453), - [aux_sym_variable_attributes_token5] = ACTIONS(4453), - [aux_sym__intrinsic_type_token1] = ACTIONS(4453), - [aux_sym__intrinsic_type_token2] = ACTIONS(4453), - [aux_sym__intrinsic_type_token3] = ACTIONS(4453), - [aux_sym__intrinsic_type_token4] = ACTIONS(4453), - [aux_sym__intrinsic_type_token6] = ACTIONS(4453), - [aux_sym__intrinsic_type_token7] = ACTIONS(4453), - [aux_sym__intrinsic_type_token8] = ACTIONS(4453), - [aux_sym__intrinsic_type_token9] = ACTIONS(4453), - [aux_sym__intrinsic_type_token10] = ACTIONS(4453), - [aux_sym_derived_type_token1] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4453), - [aux_sym_type_qualifier_token1] = ACTIONS(4453), - [aux_sym_type_qualifier_token2] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4453), - [aux_sym_equivalence_statement_token1] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [aux_sym_stop_statement_token1] = ACTIONS(4453), - [aux_sym_stop_statement_token2] = ACTIONS(4453), - [aux_sym_subroutine_call_token1] = ACTIONS(4453), - [aux_sym_keyword_statement_token1] = ACTIONS(4453), - [aux_sym_keyword_statement_token2] = ACTIONS(4453), - [aux_sym_keyword_statement_token3] = ACTIONS(4453), - [aux_sym_keyword_statement_token4] = ACTIONS(4453), - [aux_sym_keyword_statement_token6] = ACTIONS(4453), - [aux_sym_keyword_statement_token7] = ACTIONS(4453), - [aux_sym_include_statement_token1] = ACTIONS(4453), - [aux_sym_data_statement_token1] = ACTIONS(4453), - [aux_sym_do_loop_statement_token1] = ACTIONS(4453), - [aux_sym__inline_if_statement_token1] = ACTIONS(4453), - [aux_sym_end_if_statement_token1] = ACTIONS(4453), - [aux_sym_elseif_clause_token2] = ACTIONS(4453), - [aux_sym__inline_where_statement_token1] = ACTIONS(4453), - [aux_sym__forall_control_expression_token1] = ACTIONS(4453), - [aux_sym_select_case_statement_token1] = ACTIONS(4453), - [aux_sym_select_case_statement_token3] = ACTIONS(4453), - [aux_sym_select_type_statement_token1] = ACTIONS(4453), - [aux_sym_select_rank_statement_token2] = ACTIONS(4453), - [aux_sym_block_construct_token1] = ACTIONS(4453), - [aux_sym_associate_statement_token1] = ACTIONS(4453), - [aux_sym_format_statement_token1] = ACTIONS(4453), - [aux_sym_print_statement_token1] = ACTIONS(4453), - [aux_sym_open_statement_token1] = ACTIONS(4453), - [aux_sym_close_statement_token1] = ACTIONS(4453), - [aux_sym_inquire_statement_token1] = ACTIONS(4453), - [aux_sym_enum_statement_token1] = ACTIONS(4453), - [aux_sym_file_position_statement_token1] = ACTIONS(4453), - [aux_sym_file_position_statement_token2] = ACTIONS(4453), - [aux_sym_file_position_statement_token3] = ACTIONS(4453), - [aux_sym_file_position_statement_token4] = ACTIONS(4453), - [aux_sym_allocate_statement_token1] = ACTIONS(4453), - [aux_sym_entry_statement_token1] = ACTIONS(4453), - [aux_sym_logical_expression_token5] = ACTIONS(4455), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_LPAREN_SLASH] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [aux_sym_boolean_literal_token1] = ACTIONS(4455), - [aux_sym_boolean_literal_token2] = ACTIONS(4455), - [aux_sym_null_literal_token1] = ACTIONS(4453), - [aux_sym_coarray_statement_token1] = ACTIONS(4453), - [aux_sym_coarray_statement_token2] = ACTIONS(4453), - [aux_sym_coarray_statement_token6] = ACTIONS(4453), - [aux_sym_coarray_statement_token8] = ACTIONS(4453), - [aux_sym_coarray_statement_token11] = ACTIONS(4453), - [aux_sym_coarray_statement_token12] = ACTIONS(4453), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4453), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4453), - [aux_sym_identifier_token1] = ACTIONS(4453), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4455), - [sym__float_literal] = ACTIONS(4455), - [sym__boz_literal] = ACTIONS(4455), - [sym__string_literal] = ACTIONS(4455), - [sym__string_literal_kind] = ACTIONS(4455), + [aux_sym_preproc_include_token1] = ACTIONS(4467), + [aux_sym_preproc_def_token1] = ACTIONS(4467), + [aux_sym_preproc_if_token1] = ACTIONS(4467), + [aux_sym_preproc_if_token2] = ACTIONS(4467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4467), + [aux_sym_preproc_else_token1] = ACTIONS(4467), + [aux_sym_preproc_elif_token1] = ACTIONS(4467), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4467), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4467), + [sym_preproc_directive] = ACTIONS(4467), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_PLUS] = ACTIONS(4469), + [anon_sym_DASH] = ACTIONS(4469), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4467), + [aux_sym_end_program_statement_token1] = ACTIONS(4467), + [aux_sym_end_program_statement_token2] = ACTIONS(4467), + [aux_sym_module_statement_token1] = ACTIONS(4467), + [aux_sym_submodule_statement_token1] = ACTIONS(4467), + [aux_sym_interface_statement_token1] = ACTIONS(4467), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4467), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4467), + [aux_sym_subroutine_statement_token1] = ACTIONS(4467), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4467), + [aux_sym_function_statement_token1] = ACTIONS(4467), + [aux_sym_language_binding_token1] = ACTIONS(4467), + [aux_sym_procedure_attributes_token1] = ACTIONS(4467), + [aux_sym_procedure_attributes_token3] = ACTIONS(4467), + [aux_sym_contains_statement_token1] = ACTIONS(4467), + [aux_sym_use_statement_token1] = ACTIONS(4467), + [aux_sym_use_statement_token2] = ACTIONS(4467), + [aux_sym_implicit_statement_token1] = ACTIONS(4467), + [aux_sym_implicit_statement_token3] = ACTIONS(4467), + [aux_sym_implicit_statement_token4] = ACTIONS(4467), + [aux_sym_save_statement_token1] = ACTIONS(4467), + [aux_sym_private_statement_token1] = ACTIONS(4467), + [aux_sym_public_statement_token1] = ACTIONS(4467), + [aux_sym_namelist_statement_token1] = ACTIONS(4467), + [aux_sym_common_statement_token1] = ACTIONS(4467), + [aux_sym_import_statement_token1] = ACTIONS(4467), + [aux_sym_derived_type_definition_token1] = ACTIONS(4467), + [aux_sym_abstract_specifier_token1] = ACTIONS(4467), + [aux_sym_procedure_attribute_token6] = ACTIONS(4467), + [aux_sym_variable_attributes_token1] = ACTIONS(4467), + [aux_sym_variable_attributes_token2] = ACTIONS(4467), + [aux_sym_variable_attributes_token3] = ACTIONS(4467), + [aux_sym_variable_attributes_token4] = ACTIONS(4467), + [aux_sym_variable_attributes_token5] = ACTIONS(4467), + [aux_sym__intrinsic_type_token1] = ACTIONS(4467), + [aux_sym__intrinsic_type_token2] = ACTIONS(4467), + [aux_sym__intrinsic_type_token3] = ACTIONS(4467), + [aux_sym__intrinsic_type_token4] = ACTIONS(4467), + [aux_sym__intrinsic_type_token6] = ACTIONS(4467), + [aux_sym__intrinsic_type_token7] = ACTIONS(4467), + [aux_sym__intrinsic_type_token8] = ACTIONS(4467), + [aux_sym__intrinsic_type_token9] = ACTIONS(4467), + [aux_sym__intrinsic_type_token10] = ACTIONS(4467), + [aux_sym_derived_type_token1] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4467), + [aux_sym_type_qualifier_token1] = ACTIONS(4467), + [aux_sym_type_qualifier_token2] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4467), + [aux_sym_equivalence_statement_token1] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [aux_sym_stop_statement_token1] = ACTIONS(4467), + [aux_sym_stop_statement_token2] = ACTIONS(4467), + [aux_sym_subroutine_call_token1] = ACTIONS(4467), + [aux_sym_keyword_statement_token1] = ACTIONS(4467), + [aux_sym_keyword_statement_token2] = ACTIONS(4467), + [aux_sym_keyword_statement_token3] = ACTIONS(4467), + [aux_sym_keyword_statement_token4] = ACTIONS(4467), + [aux_sym_keyword_statement_token6] = ACTIONS(4467), + [aux_sym_keyword_statement_token7] = ACTIONS(4467), + [aux_sym_include_statement_token1] = ACTIONS(4467), + [aux_sym_data_statement_token1] = ACTIONS(4467), + [aux_sym_do_loop_statement_token1] = ACTIONS(4467), + [aux_sym__inline_if_statement_token1] = ACTIONS(4467), + [aux_sym_end_if_statement_token1] = ACTIONS(4467), + [aux_sym_elseif_clause_token2] = ACTIONS(4467), + [aux_sym__inline_where_statement_token1] = ACTIONS(4467), + [aux_sym__forall_control_expression_token1] = ACTIONS(4467), + [aux_sym_select_case_statement_token1] = ACTIONS(4467), + [aux_sym_select_case_statement_token3] = ACTIONS(4467), + [aux_sym_select_type_statement_token1] = ACTIONS(4467), + [aux_sym_select_rank_statement_token2] = ACTIONS(4467), + [aux_sym_block_construct_token1] = ACTIONS(4467), + [aux_sym_associate_statement_token1] = ACTIONS(4467), + [aux_sym_format_statement_token1] = ACTIONS(4467), + [aux_sym_print_statement_token1] = ACTIONS(4467), + [aux_sym_open_statement_token1] = ACTIONS(4467), + [aux_sym_close_statement_token1] = ACTIONS(4467), + [aux_sym_inquire_statement_token1] = ACTIONS(4467), + [aux_sym_enum_statement_token1] = ACTIONS(4467), + [aux_sym_file_position_statement_token1] = ACTIONS(4467), + [aux_sym_file_position_statement_token2] = ACTIONS(4467), + [aux_sym_file_position_statement_token3] = ACTIONS(4467), + [aux_sym_file_position_statement_token4] = ACTIONS(4467), + [aux_sym_allocate_statement_token1] = ACTIONS(4467), + [aux_sym_entry_statement_token1] = ACTIONS(4467), + [aux_sym_logical_expression_token5] = ACTIONS(4469), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_LPAREN_SLASH] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [aux_sym_boolean_literal_token1] = ACTIONS(4469), + [aux_sym_boolean_literal_token2] = ACTIONS(4469), + [aux_sym_null_literal_token1] = ACTIONS(4467), + [aux_sym_coarray_statement_token1] = ACTIONS(4467), + [aux_sym_coarray_statement_token2] = ACTIONS(4467), + [aux_sym_coarray_statement_token6] = ACTIONS(4467), + [aux_sym_coarray_statement_token8] = ACTIONS(4467), + [aux_sym_coarray_statement_token11] = ACTIONS(4467), + [aux_sym_coarray_statement_token12] = ACTIONS(4467), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4467), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4467), + [aux_sym_identifier_token1] = ACTIONS(4467), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4469), + [sym__float_literal] = ACTIONS(4469), + [sym__boz_literal] = ACTIONS(4469), + [sym__string_literal] = ACTIONS(4469), + [sym__string_literal_kind] = ACTIONS(4469), }, [862] = { - [aux_sym_preproc_include_token1] = ACTIONS(4457), - [aux_sym_preproc_def_token1] = ACTIONS(4457), - [aux_sym_preproc_if_token1] = ACTIONS(4457), - [aux_sym_preproc_if_token2] = ACTIONS(4457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4457), - [aux_sym_preproc_else_token1] = ACTIONS(4457), - [aux_sym_preproc_elif_token1] = ACTIONS(4457), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4457), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4457), - [sym_preproc_directive] = ACTIONS(4457), - [anon_sym_LPAREN2] = ACTIONS(4457), - [anon_sym_PLUS] = ACTIONS(4459), - [anon_sym_DASH] = ACTIONS(4459), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4457), - [aux_sym_end_program_statement_token1] = ACTIONS(4457), - [aux_sym_end_program_statement_token2] = ACTIONS(4457), - [aux_sym_module_statement_token1] = ACTIONS(4457), - [aux_sym_submodule_statement_token1] = ACTIONS(4457), - [aux_sym_interface_statement_token1] = ACTIONS(4457), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4457), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4457), - [aux_sym_subroutine_statement_token1] = ACTIONS(4457), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4457), - [aux_sym_function_statement_token1] = ACTIONS(4457), - [aux_sym_language_binding_token1] = ACTIONS(4457), - [aux_sym_procedure_attributes_token1] = ACTIONS(4457), - [aux_sym_procedure_attributes_token3] = ACTIONS(4457), - [aux_sym_contains_statement_token1] = ACTIONS(4457), - [aux_sym_use_statement_token1] = ACTIONS(4457), - [aux_sym_use_statement_token2] = ACTIONS(4457), - [aux_sym_implicit_statement_token1] = ACTIONS(4457), - [aux_sym_implicit_statement_token3] = ACTIONS(4457), - [aux_sym_implicit_statement_token4] = ACTIONS(4457), - [aux_sym_save_statement_token1] = ACTIONS(4457), - [aux_sym_private_statement_token1] = ACTIONS(4457), - [aux_sym_public_statement_token1] = ACTIONS(4457), - [aux_sym_namelist_statement_token1] = ACTIONS(4457), - [aux_sym_common_statement_token1] = ACTIONS(4457), - [aux_sym_import_statement_token1] = ACTIONS(4457), - [aux_sym_derived_type_definition_token1] = ACTIONS(4457), - [aux_sym_abstract_specifier_token1] = ACTIONS(4457), - [aux_sym_procedure_attribute_token6] = ACTIONS(4457), - [aux_sym_variable_attributes_token1] = ACTIONS(4457), - [aux_sym_variable_attributes_token2] = ACTIONS(4457), - [aux_sym_variable_attributes_token3] = ACTIONS(4457), - [aux_sym_variable_attributes_token4] = ACTIONS(4457), - [aux_sym_variable_attributes_token5] = ACTIONS(4457), - [aux_sym__intrinsic_type_token1] = ACTIONS(4457), - [aux_sym__intrinsic_type_token2] = ACTIONS(4457), - [aux_sym__intrinsic_type_token3] = ACTIONS(4457), - [aux_sym__intrinsic_type_token4] = ACTIONS(4457), - [aux_sym__intrinsic_type_token6] = ACTIONS(4457), - [aux_sym__intrinsic_type_token7] = ACTIONS(4457), - [aux_sym__intrinsic_type_token8] = ACTIONS(4457), - [aux_sym__intrinsic_type_token9] = ACTIONS(4457), - [aux_sym__intrinsic_type_token10] = ACTIONS(4457), - [aux_sym_derived_type_token1] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4457), - [aux_sym_type_qualifier_token1] = ACTIONS(4457), - [aux_sym_type_qualifier_token2] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4457), - [aux_sym_equivalence_statement_token1] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [aux_sym_stop_statement_token1] = ACTIONS(4457), - [aux_sym_stop_statement_token2] = ACTIONS(4457), - [aux_sym_subroutine_call_token1] = ACTIONS(4457), - [aux_sym_keyword_statement_token1] = ACTIONS(4457), - [aux_sym_keyword_statement_token2] = ACTIONS(4457), - [aux_sym_keyword_statement_token3] = ACTIONS(4457), - [aux_sym_keyword_statement_token4] = ACTIONS(4457), - [aux_sym_keyword_statement_token6] = ACTIONS(4457), - [aux_sym_keyword_statement_token7] = ACTIONS(4457), - [aux_sym_include_statement_token1] = ACTIONS(4457), - [aux_sym_data_statement_token1] = ACTIONS(4457), - [aux_sym_do_loop_statement_token1] = ACTIONS(4457), - [aux_sym__inline_if_statement_token1] = ACTIONS(4457), - [aux_sym_end_if_statement_token1] = ACTIONS(4457), - [aux_sym_elseif_clause_token2] = ACTIONS(4457), - [aux_sym__inline_where_statement_token1] = ACTIONS(4457), - [aux_sym__forall_control_expression_token1] = ACTIONS(4457), - [aux_sym_select_case_statement_token1] = ACTIONS(4457), - [aux_sym_select_case_statement_token3] = ACTIONS(4457), - [aux_sym_select_type_statement_token1] = ACTIONS(4457), - [aux_sym_select_rank_statement_token2] = ACTIONS(4457), - [aux_sym_block_construct_token1] = ACTIONS(4457), - [aux_sym_associate_statement_token1] = ACTIONS(4457), - [aux_sym_format_statement_token1] = ACTIONS(4457), - [aux_sym_print_statement_token1] = ACTIONS(4457), - [aux_sym_open_statement_token1] = ACTIONS(4457), - [aux_sym_close_statement_token1] = ACTIONS(4457), - [aux_sym_inquire_statement_token1] = ACTIONS(4457), - [aux_sym_enum_statement_token1] = ACTIONS(4457), - [aux_sym_file_position_statement_token1] = ACTIONS(4457), - [aux_sym_file_position_statement_token2] = ACTIONS(4457), - [aux_sym_file_position_statement_token3] = ACTIONS(4457), - [aux_sym_file_position_statement_token4] = ACTIONS(4457), - [aux_sym_allocate_statement_token1] = ACTIONS(4457), - [aux_sym_entry_statement_token1] = ACTIONS(4457), - [aux_sym_logical_expression_token5] = ACTIONS(4459), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_LPAREN_SLASH] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [aux_sym_boolean_literal_token1] = ACTIONS(4459), - [aux_sym_boolean_literal_token2] = ACTIONS(4459), - [aux_sym_null_literal_token1] = ACTIONS(4457), - [aux_sym_coarray_statement_token1] = ACTIONS(4457), - [aux_sym_coarray_statement_token2] = ACTIONS(4457), - [aux_sym_coarray_statement_token6] = ACTIONS(4457), - [aux_sym_coarray_statement_token8] = ACTIONS(4457), - [aux_sym_coarray_statement_token11] = ACTIONS(4457), - [aux_sym_coarray_statement_token12] = ACTIONS(4457), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4457), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4457), - [aux_sym_identifier_token1] = ACTIONS(4457), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4459), - [sym__float_literal] = ACTIONS(4459), - [sym__boz_literal] = ACTIONS(4459), - [sym__string_literal] = ACTIONS(4459), - [sym__string_literal_kind] = ACTIONS(4459), + [aux_sym_preproc_include_token1] = ACTIONS(4471), + [aux_sym_preproc_def_token1] = ACTIONS(4471), + [aux_sym_preproc_if_token1] = ACTIONS(4471), + [aux_sym_preproc_if_token2] = ACTIONS(4471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4471), + [aux_sym_preproc_else_token1] = ACTIONS(4471), + [aux_sym_preproc_elif_token1] = ACTIONS(4471), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4471), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4471), + [sym_preproc_directive] = ACTIONS(4471), + [anon_sym_LPAREN2] = ACTIONS(4471), + [anon_sym_PLUS] = ACTIONS(4473), + [anon_sym_DASH] = ACTIONS(4473), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4471), + [aux_sym_end_program_statement_token1] = ACTIONS(4471), + [aux_sym_end_program_statement_token2] = ACTIONS(4471), + [aux_sym_module_statement_token1] = ACTIONS(4471), + [aux_sym_submodule_statement_token1] = ACTIONS(4471), + [aux_sym_interface_statement_token1] = ACTIONS(4471), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4471), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4471), + [aux_sym_subroutine_statement_token1] = ACTIONS(4471), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4471), + [aux_sym_function_statement_token1] = ACTIONS(4471), + [aux_sym_language_binding_token1] = ACTIONS(4471), + [aux_sym_procedure_attributes_token1] = ACTIONS(4471), + [aux_sym_procedure_attributes_token3] = ACTIONS(4471), + [aux_sym_contains_statement_token1] = ACTIONS(4471), + [aux_sym_use_statement_token1] = ACTIONS(4471), + [aux_sym_use_statement_token2] = ACTIONS(4471), + [aux_sym_implicit_statement_token1] = ACTIONS(4471), + [aux_sym_implicit_statement_token3] = ACTIONS(4471), + [aux_sym_implicit_statement_token4] = ACTIONS(4471), + [aux_sym_save_statement_token1] = ACTIONS(4471), + [aux_sym_private_statement_token1] = ACTIONS(4471), + [aux_sym_public_statement_token1] = ACTIONS(4471), + [aux_sym_namelist_statement_token1] = ACTIONS(4471), + [aux_sym_common_statement_token1] = ACTIONS(4471), + [aux_sym_import_statement_token1] = ACTIONS(4471), + [aux_sym_derived_type_definition_token1] = ACTIONS(4471), + [aux_sym_abstract_specifier_token1] = ACTIONS(4471), + [aux_sym_procedure_attribute_token6] = ACTIONS(4471), + [aux_sym_variable_attributes_token1] = ACTIONS(4471), + [aux_sym_variable_attributes_token2] = ACTIONS(4471), + [aux_sym_variable_attributes_token3] = ACTIONS(4471), + [aux_sym_variable_attributes_token4] = ACTIONS(4471), + [aux_sym_variable_attributes_token5] = ACTIONS(4471), + [aux_sym__intrinsic_type_token1] = ACTIONS(4471), + [aux_sym__intrinsic_type_token2] = ACTIONS(4471), + [aux_sym__intrinsic_type_token3] = ACTIONS(4471), + [aux_sym__intrinsic_type_token4] = ACTIONS(4471), + [aux_sym__intrinsic_type_token6] = ACTIONS(4471), + [aux_sym__intrinsic_type_token7] = ACTIONS(4471), + [aux_sym__intrinsic_type_token8] = ACTIONS(4471), + [aux_sym__intrinsic_type_token9] = ACTIONS(4471), + [aux_sym__intrinsic_type_token10] = ACTIONS(4471), + [aux_sym_derived_type_token1] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4471), + [aux_sym_type_qualifier_token1] = ACTIONS(4471), + [aux_sym_type_qualifier_token2] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4471), + [aux_sym_equivalence_statement_token1] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4473), + [aux_sym_stop_statement_token1] = ACTIONS(4471), + [aux_sym_stop_statement_token2] = ACTIONS(4471), + [aux_sym_subroutine_call_token1] = ACTIONS(4471), + [aux_sym_keyword_statement_token1] = ACTIONS(4471), + [aux_sym_keyword_statement_token2] = ACTIONS(4471), + [aux_sym_keyword_statement_token3] = ACTIONS(4471), + [aux_sym_keyword_statement_token4] = ACTIONS(4471), + [aux_sym_keyword_statement_token6] = ACTIONS(4471), + [aux_sym_keyword_statement_token7] = ACTIONS(4471), + [aux_sym_include_statement_token1] = ACTIONS(4471), + [aux_sym_data_statement_token1] = ACTIONS(4471), + [aux_sym_do_loop_statement_token1] = ACTIONS(4471), + [aux_sym__inline_if_statement_token1] = ACTIONS(4471), + [aux_sym_end_if_statement_token1] = ACTIONS(4471), + [aux_sym_elseif_clause_token2] = ACTIONS(4471), + [aux_sym__inline_where_statement_token1] = ACTIONS(4471), + [aux_sym__forall_control_expression_token1] = ACTIONS(4471), + [aux_sym_select_case_statement_token1] = ACTIONS(4471), + [aux_sym_select_case_statement_token3] = ACTIONS(4471), + [aux_sym_select_type_statement_token1] = ACTIONS(4471), + [aux_sym_select_rank_statement_token2] = ACTIONS(4471), + [aux_sym_block_construct_token1] = ACTIONS(4471), + [aux_sym_associate_statement_token1] = ACTIONS(4471), + [aux_sym_format_statement_token1] = ACTIONS(4471), + [aux_sym_print_statement_token1] = ACTIONS(4471), + [aux_sym_open_statement_token1] = ACTIONS(4471), + [aux_sym_close_statement_token1] = ACTIONS(4471), + [aux_sym_inquire_statement_token1] = ACTIONS(4471), + [aux_sym_enum_statement_token1] = ACTIONS(4471), + [aux_sym_file_position_statement_token1] = ACTIONS(4471), + [aux_sym_file_position_statement_token2] = ACTIONS(4471), + [aux_sym_file_position_statement_token3] = ACTIONS(4471), + [aux_sym_file_position_statement_token4] = ACTIONS(4471), + [aux_sym_allocate_statement_token1] = ACTIONS(4471), + [aux_sym_entry_statement_token1] = ACTIONS(4471), + [aux_sym_logical_expression_token5] = ACTIONS(4473), + [anon_sym_DOT] = ACTIONS(4471), + [anon_sym_LPAREN_SLASH] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [aux_sym_boolean_literal_token1] = ACTIONS(4473), + [aux_sym_boolean_literal_token2] = ACTIONS(4473), + [aux_sym_null_literal_token1] = ACTIONS(4471), + [aux_sym_coarray_statement_token1] = ACTIONS(4471), + [aux_sym_coarray_statement_token2] = ACTIONS(4471), + [aux_sym_coarray_statement_token6] = ACTIONS(4471), + [aux_sym_coarray_statement_token8] = ACTIONS(4471), + [aux_sym_coarray_statement_token11] = ACTIONS(4471), + [aux_sym_coarray_statement_token12] = ACTIONS(4471), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4471), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4471), + [aux_sym_identifier_token1] = ACTIONS(4471), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4473), + [sym__float_literal] = ACTIONS(4473), + [sym__boz_literal] = ACTIONS(4473), + [sym__string_literal] = ACTIONS(4473), + [sym__string_literal_kind] = ACTIONS(4473), }, [863] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token2] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [aux_sym_preproc_else_token1] = ACTIONS(4461), - [aux_sym_preproc_elif_token1] = ACTIONS(4461), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4461), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_end_program_statement_token2] = ACTIONS(4461), - [aux_sym_module_statement_token1] = ACTIONS(4461), - [aux_sym_submodule_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_subroutine_statement_token1] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_function_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), + [aux_sym_preproc_include_token1] = ACTIONS(4475), + [aux_sym_preproc_def_token1] = ACTIONS(4475), + [aux_sym_preproc_if_token1] = ACTIONS(4475), + [aux_sym_preproc_if_token2] = ACTIONS(4475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4475), + [aux_sym_preproc_else_token1] = ACTIONS(4475), + [aux_sym_preproc_elif_token1] = ACTIONS(4475), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4475), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4475), + [sym_preproc_directive] = ACTIONS(4475), + [anon_sym_LPAREN2] = ACTIONS(4475), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4475), + [aux_sym_end_program_statement_token1] = ACTIONS(4475), + [aux_sym_end_program_statement_token2] = ACTIONS(4475), + [aux_sym_module_statement_token1] = ACTIONS(4475), + [aux_sym_submodule_statement_token1] = ACTIONS(4475), + [aux_sym_interface_statement_token1] = ACTIONS(4475), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4475), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4475), + [aux_sym_subroutine_statement_token1] = ACTIONS(4475), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4475), + [aux_sym_function_statement_token1] = ACTIONS(4475), + [aux_sym_language_binding_token1] = ACTIONS(4475), + [aux_sym_procedure_attributes_token1] = ACTIONS(4475), + [aux_sym_procedure_attributes_token3] = ACTIONS(4475), + [aux_sym_contains_statement_token1] = ACTIONS(4475), + [aux_sym_use_statement_token1] = ACTIONS(4475), + [aux_sym_use_statement_token2] = ACTIONS(4475), + [aux_sym_implicit_statement_token1] = ACTIONS(4475), + [aux_sym_implicit_statement_token3] = ACTIONS(4475), + [aux_sym_implicit_statement_token4] = ACTIONS(4475), + [aux_sym_save_statement_token1] = ACTIONS(4475), + [aux_sym_private_statement_token1] = ACTIONS(4475), + [aux_sym_public_statement_token1] = ACTIONS(4475), + [aux_sym_namelist_statement_token1] = ACTIONS(4475), + [aux_sym_common_statement_token1] = ACTIONS(4475), + [aux_sym_import_statement_token1] = ACTIONS(4475), + [aux_sym_derived_type_definition_token1] = ACTIONS(4475), + [aux_sym_abstract_specifier_token1] = ACTIONS(4475), + [aux_sym_procedure_attribute_token6] = ACTIONS(4475), + [aux_sym_variable_attributes_token1] = ACTIONS(4475), + [aux_sym_variable_attributes_token2] = ACTIONS(4475), + [aux_sym_variable_attributes_token3] = ACTIONS(4475), + [aux_sym_variable_attributes_token4] = ACTIONS(4475), + [aux_sym_variable_attributes_token5] = ACTIONS(4475), + [aux_sym__intrinsic_type_token1] = ACTIONS(4475), + [aux_sym__intrinsic_type_token2] = ACTIONS(4475), + [aux_sym__intrinsic_type_token3] = ACTIONS(4475), + [aux_sym__intrinsic_type_token4] = ACTIONS(4475), + [aux_sym__intrinsic_type_token6] = ACTIONS(4475), + [aux_sym__intrinsic_type_token7] = ACTIONS(4475), + [aux_sym__intrinsic_type_token8] = ACTIONS(4475), + [aux_sym__intrinsic_type_token9] = ACTIONS(4475), + [aux_sym__intrinsic_type_token10] = ACTIONS(4475), + [aux_sym_derived_type_token1] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4475), + [aux_sym_type_qualifier_token1] = ACTIONS(4475), + [aux_sym_type_qualifier_token2] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4475), + [aux_sym_equivalence_statement_token1] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(4477), + [aux_sym_stop_statement_token1] = ACTIONS(4475), + [aux_sym_stop_statement_token2] = ACTIONS(4475), + [aux_sym_subroutine_call_token1] = ACTIONS(4475), + [aux_sym_keyword_statement_token1] = ACTIONS(4475), + [aux_sym_keyword_statement_token2] = ACTIONS(4475), + [aux_sym_keyword_statement_token3] = ACTIONS(4475), + [aux_sym_keyword_statement_token4] = ACTIONS(4475), + [aux_sym_keyword_statement_token6] = ACTIONS(4475), + [aux_sym_keyword_statement_token7] = ACTIONS(4475), + [aux_sym_include_statement_token1] = ACTIONS(4475), + [aux_sym_data_statement_token1] = ACTIONS(4475), + [aux_sym_do_loop_statement_token1] = ACTIONS(4475), + [aux_sym__inline_if_statement_token1] = ACTIONS(4475), + [aux_sym_end_if_statement_token1] = ACTIONS(4475), + [aux_sym_elseif_clause_token2] = ACTIONS(4475), + [aux_sym__inline_where_statement_token1] = ACTIONS(4475), + [aux_sym__forall_control_expression_token1] = ACTIONS(4475), + [aux_sym_select_case_statement_token1] = ACTIONS(4475), + [aux_sym_select_case_statement_token3] = ACTIONS(4475), + [aux_sym_select_type_statement_token1] = ACTIONS(4475), + [aux_sym_select_rank_statement_token2] = ACTIONS(4475), + [aux_sym_block_construct_token1] = ACTIONS(4475), + [aux_sym_associate_statement_token1] = ACTIONS(4475), + [aux_sym_format_statement_token1] = ACTIONS(4475), + [aux_sym_print_statement_token1] = ACTIONS(4475), + [aux_sym_open_statement_token1] = ACTIONS(4475), + [aux_sym_close_statement_token1] = ACTIONS(4475), + [aux_sym_inquire_statement_token1] = ACTIONS(4475), + [aux_sym_enum_statement_token1] = ACTIONS(4475), + [aux_sym_file_position_statement_token1] = ACTIONS(4475), + [aux_sym_file_position_statement_token2] = ACTIONS(4475), + [aux_sym_file_position_statement_token3] = ACTIONS(4475), + [aux_sym_file_position_statement_token4] = ACTIONS(4475), + [aux_sym_allocate_statement_token1] = ACTIONS(4475), + [aux_sym_entry_statement_token1] = ACTIONS(4475), + [aux_sym_logical_expression_token5] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4475), + [anon_sym_LPAREN_SLASH] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [aux_sym_null_literal_token1] = ACTIONS(4475), + [aux_sym_coarray_statement_token1] = ACTIONS(4475), + [aux_sym_coarray_statement_token2] = ACTIONS(4475), + [aux_sym_coarray_statement_token6] = ACTIONS(4475), + [aux_sym_coarray_statement_token8] = ACTIONS(4475), + [aux_sym_coarray_statement_token11] = ACTIONS(4475), + [aux_sym_coarray_statement_token12] = ACTIONS(4475), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4475), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4475), + [aux_sym_identifier_token1] = ACTIONS(4475), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4477), + [sym__float_literal] = ACTIONS(4477), + [sym__boz_literal] = ACTIONS(4477), + [sym__string_literal] = ACTIONS(4477), + [sym__string_literal_kind] = ACTIONS(4477), }, [864] = { - [aux_sym_preproc_include_token1] = ACTIONS(4307), - [aux_sym_preproc_def_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token2] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4307), - [aux_sym_preproc_else_token1] = ACTIONS(4307), - [aux_sym_preproc_elif_token1] = ACTIONS(4307), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4307), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4307), - [sym_preproc_directive] = ACTIONS(4307), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token2] = ACTIONS(4307), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4307), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4307), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token3] = ACTIONS(4307), - [aux_sym_contains_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token2] = ACTIONS(4307), - [aux_sym_implicit_statement_token1] = ACTIONS(4307), - [aux_sym_implicit_statement_token3] = ACTIONS(4307), - [aux_sym_implicit_statement_token4] = ACTIONS(4307), - [aux_sym_save_statement_token1] = ACTIONS(4307), - [aux_sym_private_statement_token1] = ACTIONS(4307), - [aux_sym_public_statement_token1] = ACTIONS(4307), - [aux_sym_namelist_statement_token1] = ACTIONS(4307), - [aux_sym_common_statement_token1] = ACTIONS(4307), - [aux_sym_import_statement_token1] = ACTIONS(4307), - [aux_sym_derived_type_definition_token1] = ACTIONS(4307), - [aux_sym_abstract_specifier_token1] = ACTIONS(4307), - [aux_sym_procedure_attribute_token6] = ACTIONS(4307), - [aux_sym_variable_attributes_token1] = ACTIONS(4307), - [aux_sym_variable_attributes_token2] = ACTIONS(4307), - [aux_sym_variable_attributes_token3] = ACTIONS(4307), - [aux_sym_variable_attributes_token4] = ACTIONS(4307), - [aux_sym_variable_attributes_token5] = ACTIONS(4307), - [aux_sym__intrinsic_type_token1] = ACTIONS(4307), - [aux_sym__intrinsic_type_token2] = ACTIONS(4307), - [aux_sym__intrinsic_type_token3] = ACTIONS(4307), - [aux_sym__intrinsic_type_token4] = ACTIONS(4307), - [aux_sym__intrinsic_type_token6] = ACTIONS(4307), - [aux_sym__intrinsic_type_token7] = ACTIONS(4307), - [aux_sym__intrinsic_type_token8] = ACTIONS(4307), - [aux_sym__intrinsic_type_token9] = ACTIONS(4307), - [aux_sym__intrinsic_type_token10] = ACTIONS(4307), - [aux_sym_derived_type_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4307), - [aux_sym_type_qualifier_token1] = ACTIONS(4307), - [aux_sym_type_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4307), - [anon_sym_SEMI] = ACTIONS(4311), - [aux_sym_stop_statement_token1] = ACTIONS(4307), - [aux_sym_stop_statement_token2] = ACTIONS(4307), - [aux_sym_subroutine_call_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token2] = ACTIONS(4307), - [aux_sym_keyword_statement_token3] = ACTIONS(4307), - [aux_sym_keyword_statement_token4] = ACTIONS(4307), - [aux_sym_keyword_statement_token6] = ACTIONS(4307), - [aux_sym_keyword_statement_token7] = ACTIONS(4307), - [aux_sym_include_statement_token1] = ACTIONS(4307), - [aux_sym_data_statement_token1] = ACTIONS(4307), - [aux_sym_do_loop_statement_token1] = ACTIONS(4307), - [aux_sym__inline_if_statement_token1] = ACTIONS(4307), - [aux_sym_end_if_statement_token1] = ACTIONS(4307), - [aux_sym_elseif_clause_token2] = ACTIONS(4307), - [aux_sym__inline_where_statement_token1] = ACTIONS(4307), - [aux_sym__forall_control_expression_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token3] = ACTIONS(4307), - [aux_sym_select_type_statement_token1] = ACTIONS(4307), - [aux_sym_select_rank_statement_token2] = ACTIONS(4307), - [aux_sym_block_construct_token1] = ACTIONS(4307), - [aux_sym_associate_statement_token1] = ACTIONS(4307), - [aux_sym_format_statement_token1] = ACTIONS(4307), - [aux_sym_print_statement_token1] = ACTIONS(4307), - [aux_sym_open_statement_token1] = ACTIONS(4307), - [aux_sym_close_statement_token1] = ACTIONS(4307), - [aux_sym_inquire_statement_token1] = ACTIONS(4307), - [aux_sym_enum_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token2] = ACTIONS(4307), - [aux_sym_file_position_statement_token3] = ACTIONS(4307), - [aux_sym_file_position_statement_token4] = ACTIONS(4307), - [aux_sym_allocate_statement_token1] = ACTIONS(4307), - [aux_sym_entry_statement_token1] = ACTIONS(4307), - [aux_sym_logical_expression_token5] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LPAREN_SLASH] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [aux_sym_boolean_literal_token1] = ACTIONS(4311), - [aux_sym_boolean_literal_token2] = ACTIONS(4311), - [aux_sym_null_literal_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token2] = ACTIONS(4307), - [aux_sym_coarray_statement_token6] = ACTIONS(4307), - [aux_sym_coarray_statement_token8] = ACTIONS(4307), - [aux_sym_coarray_statement_token11] = ACTIONS(4307), - [aux_sym_coarray_statement_token12] = ACTIONS(4307), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4307), - [aux_sym_identifier_token1] = ACTIONS(4307), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4311), - [sym__float_literal] = ACTIONS(4311), - [sym__boz_literal] = ACTIONS(4311), - [sym__string_literal] = ACTIONS(4311), - [sym__string_literal_kind] = ACTIONS(4311), + [aux_sym_preproc_include_token1] = ACTIONS(4479), + [aux_sym_preproc_def_token1] = ACTIONS(4479), + [aux_sym_preproc_if_token1] = ACTIONS(4479), + [aux_sym_preproc_if_token2] = ACTIONS(4479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4479), + [aux_sym_preproc_else_token1] = ACTIONS(4479), + [aux_sym_preproc_elif_token1] = ACTIONS(4479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4479), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4479), + [sym_preproc_directive] = ACTIONS(4479), + [anon_sym_LPAREN2] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4479), + [aux_sym_end_program_statement_token1] = ACTIONS(4479), + [aux_sym_end_program_statement_token2] = ACTIONS(4479), + [aux_sym_module_statement_token1] = ACTIONS(4479), + [aux_sym_submodule_statement_token1] = ACTIONS(4479), + [aux_sym_interface_statement_token1] = ACTIONS(4479), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4479), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4479), + [aux_sym_subroutine_statement_token1] = ACTIONS(4479), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4479), + [aux_sym_function_statement_token1] = ACTIONS(4479), + [aux_sym_language_binding_token1] = ACTIONS(4479), + [aux_sym_procedure_attributes_token1] = ACTIONS(4479), + [aux_sym_procedure_attributes_token3] = ACTIONS(4479), + [aux_sym_contains_statement_token1] = ACTIONS(4479), + [aux_sym_use_statement_token1] = ACTIONS(4479), + [aux_sym_use_statement_token2] = ACTIONS(4479), + [aux_sym_implicit_statement_token1] = ACTIONS(4479), + [aux_sym_implicit_statement_token3] = ACTIONS(4479), + [aux_sym_implicit_statement_token4] = ACTIONS(4479), + [aux_sym_save_statement_token1] = ACTIONS(4479), + [aux_sym_private_statement_token1] = ACTIONS(4479), + [aux_sym_public_statement_token1] = ACTIONS(4479), + [aux_sym_namelist_statement_token1] = ACTIONS(4479), + [aux_sym_common_statement_token1] = ACTIONS(4479), + [aux_sym_import_statement_token1] = ACTIONS(4479), + [aux_sym_derived_type_definition_token1] = ACTIONS(4479), + [aux_sym_abstract_specifier_token1] = ACTIONS(4479), + [aux_sym_procedure_attribute_token6] = ACTIONS(4479), + [aux_sym_variable_attributes_token1] = ACTIONS(4479), + [aux_sym_variable_attributes_token2] = ACTIONS(4479), + [aux_sym_variable_attributes_token3] = ACTIONS(4479), + [aux_sym_variable_attributes_token4] = ACTIONS(4479), + [aux_sym_variable_attributes_token5] = ACTIONS(4479), + [aux_sym__intrinsic_type_token1] = ACTIONS(4479), + [aux_sym__intrinsic_type_token2] = ACTIONS(4479), + [aux_sym__intrinsic_type_token3] = ACTIONS(4479), + [aux_sym__intrinsic_type_token4] = ACTIONS(4479), + [aux_sym__intrinsic_type_token6] = ACTIONS(4479), + [aux_sym__intrinsic_type_token7] = ACTIONS(4479), + [aux_sym__intrinsic_type_token8] = ACTIONS(4479), + [aux_sym__intrinsic_type_token9] = ACTIONS(4479), + [aux_sym__intrinsic_type_token10] = ACTIONS(4479), + [aux_sym_derived_type_token1] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4479), + [aux_sym_type_qualifier_token1] = ACTIONS(4479), + [aux_sym_type_qualifier_token2] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4479), + [aux_sym_equivalence_statement_token1] = ACTIONS(4479), + [anon_sym_SEMI] = ACTIONS(4481), + [aux_sym_stop_statement_token1] = ACTIONS(4479), + [aux_sym_stop_statement_token2] = ACTIONS(4479), + [aux_sym_subroutine_call_token1] = ACTIONS(4479), + [aux_sym_keyword_statement_token1] = ACTIONS(4479), + [aux_sym_keyword_statement_token2] = ACTIONS(4479), + [aux_sym_keyword_statement_token3] = ACTIONS(4479), + [aux_sym_keyword_statement_token4] = ACTIONS(4479), + [aux_sym_keyword_statement_token6] = ACTIONS(4479), + [aux_sym_keyword_statement_token7] = ACTIONS(4479), + [aux_sym_include_statement_token1] = ACTIONS(4479), + [aux_sym_data_statement_token1] = ACTIONS(4479), + [aux_sym_do_loop_statement_token1] = ACTIONS(4479), + [aux_sym__inline_if_statement_token1] = ACTIONS(4479), + [aux_sym_end_if_statement_token1] = ACTIONS(4479), + [aux_sym_elseif_clause_token2] = ACTIONS(4479), + [aux_sym__inline_where_statement_token1] = ACTIONS(4479), + [aux_sym__forall_control_expression_token1] = ACTIONS(4479), + [aux_sym_select_case_statement_token1] = ACTIONS(4479), + [aux_sym_select_case_statement_token3] = ACTIONS(4479), + [aux_sym_select_type_statement_token1] = ACTIONS(4479), + [aux_sym_select_rank_statement_token2] = ACTIONS(4479), + [aux_sym_block_construct_token1] = ACTIONS(4479), + [aux_sym_associate_statement_token1] = ACTIONS(4479), + [aux_sym_format_statement_token1] = ACTIONS(4479), + [aux_sym_print_statement_token1] = ACTIONS(4479), + [aux_sym_open_statement_token1] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4479), + [aux_sym_inquire_statement_token1] = ACTIONS(4479), + [aux_sym_enum_statement_token1] = ACTIONS(4479), + [aux_sym_file_position_statement_token1] = ACTIONS(4479), + [aux_sym_file_position_statement_token2] = ACTIONS(4479), + [aux_sym_file_position_statement_token3] = ACTIONS(4479), + [aux_sym_file_position_statement_token4] = ACTIONS(4479), + [aux_sym_allocate_statement_token1] = ACTIONS(4479), + [aux_sym_entry_statement_token1] = ACTIONS(4479), + [aux_sym_logical_expression_token5] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4479), + [anon_sym_LPAREN_SLASH] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [aux_sym_null_literal_token1] = ACTIONS(4479), + [aux_sym_coarray_statement_token1] = ACTIONS(4479), + [aux_sym_coarray_statement_token2] = ACTIONS(4479), + [aux_sym_coarray_statement_token6] = ACTIONS(4479), + [aux_sym_coarray_statement_token8] = ACTIONS(4479), + [aux_sym_coarray_statement_token11] = ACTIONS(4479), + [aux_sym_coarray_statement_token12] = ACTIONS(4479), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4479), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4479), + [aux_sym_identifier_token1] = ACTIONS(4479), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4481), + [sym__float_literal] = ACTIONS(4481), + [sym__boz_literal] = ACTIONS(4481), + [sym__string_literal] = ACTIONS(4481), + [sym__string_literal_kind] = ACTIONS(4481), }, [865] = { - [aux_sym_preproc_include_token1] = ACTIONS(4465), - [aux_sym_preproc_def_token1] = ACTIONS(4465), - [aux_sym_preproc_if_token1] = ACTIONS(4465), - [aux_sym_preproc_if_token2] = ACTIONS(4465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4465), - [aux_sym_preproc_else_token1] = ACTIONS(4465), - [aux_sym_preproc_elif_token1] = ACTIONS(4465), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4465), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4465), - [sym_preproc_directive] = ACTIONS(4465), - [anon_sym_LPAREN2] = ACTIONS(4465), - [anon_sym_PLUS] = ACTIONS(4467), - [anon_sym_DASH] = ACTIONS(4467), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4465), - [aux_sym_end_program_statement_token1] = ACTIONS(4465), - [aux_sym_end_program_statement_token2] = ACTIONS(4465), - [aux_sym_module_statement_token1] = ACTIONS(4465), - [aux_sym_submodule_statement_token1] = ACTIONS(4465), - [aux_sym_interface_statement_token1] = ACTIONS(4465), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4465), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4465), - [aux_sym_subroutine_statement_token1] = ACTIONS(4465), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4465), - [aux_sym_function_statement_token1] = ACTIONS(4465), - [aux_sym_language_binding_token1] = ACTIONS(4465), - [aux_sym_procedure_attributes_token1] = ACTIONS(4465), - [aux_sym_procedure_attributes_token3] = ACTIONS(4465), - [aux_sym_contains_statement_token1] = ACTIONS(4465), - [aux_sym_use_statement_token1] = ACTIONS(4465), - [aux_sym_use_statement_token2] = ACTIONS(4465), - [aux_sym_implicit_statement_token1] = ACTIONS(4465), - [aux_sym_implicit_statement_token3] = ACTIONS(4465), - [aux_sym_implicit_statement_token4] = ACTIONS(4465), - [aux_sym_save_statement_token1] = ACTIONS(4465), - [aux_sym_private_statement_token1] = ACTIONS(4465), - [aux_sym_public_statement_token1] = ACTIONS(4465), - [aux_sym_namelist_statement_token1] = ACTIONS(4465), - [aux_sym_common_statement_token1] = ACTIONS(4465), - [aux_sym_import_statement_token1] = ACTIONS(4465), - [aux_sym_derived_type_definition_token1] = ACTIONS(4465), - [aux_sym_abstract_specifier_token1] = ACTIONS(4465), - [aux_sym_procedure_attribute_token6] = ACTIONS(4465), - [aux_sym_variable_attributes_token1] = ACTIONS(4465), - [aux_sym_variable_attributes_token2] = ACTIONS(4465), - [aux_sym_variable_attributes_token3] = ACTIONS(4465), - [aux_sym_variable_attributes_token4] = ACTIONS(4465), - [aux_sym_variable_attributes_token5] = ACTIONS(4465), - [aux_sym__intrinsic_type_token1] = ACTIONS(4465), - [aux_sym__intrinsic_type_token2] = ACTIONS(4465), - [aux_sym__intrinsic_type_token3] = ACTIONS(4465), - [aux_sym__intrinsic_type_token4] = ACTIONS(4465), - [aux_sym__intrinsic_type_token6] = ACTIONS(4465), - [aux_sym__intrinsic_type_token7] = ACTIONS(4465), - [aux_sym__intrinsic_type_token8] = ACTIONS(4465), - [aux_sym__intrinsic_type_token9] = ACTIONS(4465), - [aux_sym__intrinsic_type_token10] = ACTIONS(4465), - [aux_sym_derived_type_token1] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4465), - [aux_sym_type_qualifier_token1] = ACTIONS(4465), - [aux_sym_type_qualifier_token2] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4465), - [aux_sym_equivalence_statement_token1] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [aux_sym_stop_statement_token1] = ACTIONS(4465), - [aux_sym_stop_statement_token2] = ACTIONS(4465), - [aux_sym_subroutine_call_token1] = ACTIONS(4465), - [aux_sym_keyword_statement_token1] = ACTIONS(4465), - [aux_sym_keyword_statement_token2] = ACTIONS(4465), - [aux_sym_keyword_statement_token3] = ACTIONS(4465), - [aux_sym_keyword_statement_token4] = ACTIONS(4465), - [aux_sym_keyword_statement_token6] = ACTIONS(4465), - [aux_sym_keyword_statement_token7] = ACTIONS(4465), - [aux_sym_include_statement_token1] = ACTIONS(4465), - [aux_sym_data_statement_token1] = ACTIONS(4465), - [aux_sym_do_loop_statement_token1] = ACTIONS(4465), - [aux_sym__inline_if_statement_token1] = ACTIONS(4465), - [aux_sym_end_if_statement_token1] = ACTIONS(4465), - [aux_sym_elseif_clause_token2] = ACTIONS(4465), - [aux_sym__inline_where_statement_token1] = ACTIONS(4465), - [aux_sym__forall_control_expression_token1] = ACTIONS(4465), - [aux_sym_select_case_statement_token1] = ACTIONS(4465), - [aux_sym_select_case_statement_token3] = ACTIONS(4465), - [aux_sym_select_type_statement_token1] = ACTIONS(4465), - [aux_sym_select_rank_statement_token2] = ACTIONS(4465), - [aux_sym_block_construct_token1] = ACTIONS(4465), - [aux_sym_associate_statement_token1] = ACTIONS(4465), - [aux_sym_format_statement_token1] = ACTIONS(4465), - [aux_sym_print_statement_token1] = ACTIONS(4465), - [aux_sym_open_statement_token1] = ACTIONS(4465), - [aux_sym_close_statement_token1] = ACTIONS(4465), - [aux_sym_inquire_statement_token1] = ACTIONS(4465), - [aux_sym_enum_statement_token1] = ACTIONS(4465), - [aux_sym_file_position_statement_token1] = ACTIONS(4465), - [aux_sym_file_position_statement_token2] = ACTIONS(4465), - [aux_sym_file_position_statement_token3] = ACTIONS(4465), - [aux_sym_file_position_statement_token4] = ACTIONS(4465), - [aux_sym_allocate_statement_token1] = ACTIONS(4465), - [aux_sym_entry_statement_token1] = ACTIONS(4465), - [aux_sym_logical_expression_token5] = ACTIONS(4467), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_LPAREN_SLASH] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [aux_sym_boolean_literal_token1] = ACTIONS(4467), - [aux_sym_boolean_literal_token2] = ACTIONS(4467), - [aux_sym_null_literal_token1] = ACTIONS(4465), - [aux_sym_coarray_statement_token1] = ACTIONS(4465), - [aux_sym_coarray_statement_token2] = ACTIONS(4465), - [aux_sym_coarray_statement_token6] = ACTIONS(4465), - [aux_sym_coarray_statement_token8] = ACTIONS(4465), - [aux_sym_coarray_statement_token11] = ACTIONS(4465), - [aux_sym_coarray_statement_token12] = ACTIONS(4465), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4465), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4465), - [aux_sym_identifier_token1] = ACTIONS(4465), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4467), - [sym__float_literal] = ACTIONS(4467), - [sym__boz_literal] = ACTIONS(4467), - [sym__string_literal] = ACTIONS(4467), - [sym__string_literal_kind] = ACTIONS(4467), - }, - [866] = { - [aux_sym_preproc_include_token1] = ACTIONS(4469), - [aux_sym_preproc_def_token1] = ACTIONS(4469), - [aux_sym_preproc_if_token1] = ACTIONS(4469), - [aux_sym_preproc_if_token2] = ACTIONS(4469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4469), - [aux_sym_preproc_else_token1] = ACTIONS(4469), - [aux_sym_preproc_elif_token1] = ACTIONS(4469), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4469), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4469), - [sym_preproc_directive] = ACTIONS(4469), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4469), - [aux_sym_end_program_statement_token1] = ACTIONS(4469), - [aux_sym_end_program_statement_token2] = ACTIONS(4469), - [aux_sym_module_statement_token1] = ACTIONS(4469), - [aux_sym_submodule_statement_token1] = ACTIONS(4469), - [aux_sym_interface_statement_token1] = ACTIONS(4469), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4469), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4469), - [aux_sym_subroutine_statement_token1] = ACTIONS(4469), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4469), - [aux_sym_function_statement_token1] = ACTIONS(4469), - [aux_sym_language_binding_token1] = ACTIONS(4469), - [aux_sym_procedure_attributes_token1] = ACTIONS(4469), - [aux_sym_procedure_attributes_token3] = ACTIONS(4469), - [aux_sym_contains_statement_token1] = ACTIONS(4469), - [aux_sym_use_statement_token1] = ACTIONS(4469), - [aux_sym_use_statement_token2] = ACTIONS(4469), - [aux_sym_implicit_statement_token1] = ACTIONS(4469), - [aux_sym_implicit_statement_token3] = ACTIONS(4469), - [aux_sym_implicit_statement_token4] = ACTIONS(4469), - [aux_sym_save_statement_token1] = ACTIONS(4469), - [aux_sym_private_statement_token1] = ACTIONS(4469), - [aux_sym_public_statement_token1] = ACTIONS(4469), - [aux_sym_namelist_statement_token1] = ACTIONS(4469), - [aux_sym_common_statement_token1] = ACTIONS(4469), - [aux_sym_import_statement_token1] = ACTIONS(4469), - [aux_sym_derived_type_definition_token1] = ACTIONS(4469), - [aux_sym_abstract_specifier_token1] = ACTIONS(4469), - [aux_sym_procedure_attribute_token6] = ACTIONS(4469), - [aux_sym_variable_attributes_token1] = ACTIONS(4469), - [aux_sym_variable_attributes_token2] = ACTIONS(4469), - [aux_sym_variable_attributes_token3] = ACTIONS(4469), - [aux_sym_variable_attributes_token4] = ACTIONS(4469), - [aux_sym_variable_attributes_token5] = ACTIONS(4469), - [aux_sym__intrinsic_type_token1] = ACTIONS(4469), - [aux_sym__intrinsic_type_token2] = ACTIONS(4469), - [aux_sym__intrinsic_type_token3] = ACTIONS(4469), - [aux_sym__intrinsic_type_token4] = ACTIONS(4469), - [aux_sym__intrinsic_type_token6] = ACTIONS(4469), - [aux_sym__intrinsic_type_token7] = ACTIONS(4469), - [aux_sym__intrinsic_type_token8] = ACTIONS(4469), - [aux_sym__intrinsic_type_token9] = ACTIONS(4469), - [aux_sym__intrinsic_type_token10] = ACTIONS(4469), - [aux_sym_derived_type_token1] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4469), - [aux_sym_type_qualifier_token1] = ACTIONS(4469), - [aux_sym_type_qualifier_token2] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4469), - [aux_sym_equivalence_statement_token1] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [aux_sym_stop_statement_token1] = ACTIONS(4469), - [aux_sym_stop_statement_token2] = ACTIONS(4469), - [aux_sym_subroutine_call_token1] = ACTIONS(4469), - [aux_sym_keyword_statement_token1] = ACTIONS(4469), - [aux_sym_keyword_statement_token2] = ACTIONS(4469), - [aux_sym_keyword_statement_token3] = ACTIONS(4469), - [aux_sym_keyword_statement_token4] = ACTIONS(4469), - [aux_sym_keyword_statement_token6] = ACTIONS(4469), - [aux_sym_keyword_statement_token7] = ACTIONS(4469), - [aux_sym_include_statement_token1] = ACTIONS(4469), - [aux_sym_data_statement_token1] = ACTIONS(4469), - [aux_sym_do_loop_statement_token1] = ACTIONS(4469), - [aux_sym__inline_if_statement_token1] = ACTIONS(4469), - [aux_sym_end_if_statement_token1] = ACTIONS(4469), - [aux_sym_elseif_clause_token2] = ACTIONS(4469), - [aux_sym__inline_where_statement_token1] = ACTIONS(4469), - [aux_sym__forall_control_expression_token1] = ACTIONS(4469), - [aux_sym_select_case_statement_token1] = ACTIONS(4469), - [aux_sym_select_case_statement_token3] = ACTIONS(4469), - [aux_sym_select_type_statement_token1] = ACTIONS(4469), - [aux_sym_select_rank_statement_token2] = ACTIONS(4469), - [aux_sym_block_construct_token1] = ACTIONS(4469), - [aux_sym_associate_statement_token1] = ACTIONS(4469), - [aux_sym_format_statement_token1] = ACTIONS(4469), - [aux_sym_print_statement_token1] = ACTIONS(4469), - [aux_sym_open_statement_token1] = ACTIONS(4469), - [aux_sym_close_statement_token1] = ACTIONS(4469), - [aux_sym_inquire_statement_token1] = ACTIONS(4469), - [aux_sym_enum_statement_token1] = ACTIONS(4469), - [aux_sym_file_position_statement_token1] = ACTIONS(4469), - [aux_sym_file_position_statement_token2] = ACTIONS(4469), - [aux_sym_file_position_statement_token3] = ACTIONS(4469), - [aux_sym_file_position_statement_token4] = ACTIONS(4469), - [aux_sym_allocate_statement_token1] = ACTIONS(4469), - [aux_sym_entry_statement_token1] = ACTIONS(4469), - [aux_sym_logical_expression_token5] = ACTIONS(4471), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_LPAREN_SLASH] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [aux_sym_boolean_literal_token1] = ACTIONS(4471), - [aux_sym_boolean_literal_token2] = ACTIONS(4471), - [aux_sym_null_literal_token1] = ACTIONS(4469), - [aux_sym_coarray_statement_token1] = ACTIONS(4469), - [aux_sym_coarray_statement_token2] = ACTIONS(4469), - [aux_sym_coarray_statement_token6] = ACTIONS(4469), - [aux_sym_coarray_statement_token8] = ACTIONS(4469), - [aux_sym_coarray_statement_token11] = ACTIONS(4469), - [aux_sym_coarray_statement_token12] = ACTIONS(4469), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4469), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4469), - [aux_sym_identifier_token1] = ACTIONS(4469), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4471), - [sym__float_literal] = ACTIONS(4471), - [sym__boz_literal] = ACTIONS(4471), - [sym__string_literal] = ACTIONS(4471), - [sym__string_literal_kind] = ACTIONS(4471), - }, - [867] = { - [aux_sym_preproc_include_token1] = ACTIONS(4473), - [aux_sym_preproc_def_token1] = ACTIONS(4473), - [aux_sym_preproc_if_token1] = ACTIONS(4473), - [aux_sym_preproc_if_token2] = ACTIONS(4473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4473), - [aux_sym_preproc_else_token1] = ACTIONS(4473), - [aux_sym_preproc_elif_token1] = ACTIONS(4473), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4473), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4473), - [sym_preproc_directive] = ACTIONS(4473), - [anon_sym_LPAREN2] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4473), - [aux_sym_end_program_statement_token1] = ACTIONS(4473), - [aux_sym_end_program_statement_token2] = ACTIONS(4473), - [aux_sym_module_statement_token1] = ACTIONS(4473), - [aux_sym_submodule_statement_token1] = ACTIONS(4473), - [aux_sym_interface_statement_token1] = ACTIONS(4473), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4473), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4473), - [aux_sym_subroutine_statement_token1] = ACTIONS(4473), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4473), - [aux_sym_function_statement_token1] = ACTIONS(4473), - [aux_sym_language_binding_token1] = ACTIONS(4473), - [aux_sym_procedure_attributes_token1] = ACTIONS(4473), - [aux_sym_procedure_attributes_token3] = ACTIONS(4473), - [aux_sym_contains_statement_token1] = ACTIONS(4473), - [aux_sym_use_statement_token1] = ACTIONS(4473), - [aux_sym_use_statement_token2] = ACTIONS(4473), - [aux_sym_implicit_statement_token1] = ACTIONS(4473), - [aux_sym_implicit_statement_token3] = ACTIONS(4473), - [aux_sym_implicit_statement_token4] = ACTIONS(4473), - [aux_sym_save_statement_token1] = ACTIONS(4473), - [aux_sym_private_statement_token1] = ACTIONS(4473), - [aux_sym_public_statement_token1] = ACTIONS(4473), - [aux_sym_namelist_statement_token1] = ACTIONS(4473), - [aux_sym_common_statement_token1] = ACTIONS(4473), - [aux_sym_import_statement_token1] = ACTIONS(4473), - [aux_sym_derived_type_definition_token1] = ACTIONS(4473), - [aux_sym_abstract_specifier_token1] = ACTIONS(4473), - [aux_sym_procedure_attribute_token6] = ACTIONS(4473), - [aux_sym_variable_attributes_token1] = ACTIONS(4473), - [aux_sym_variable_attributes_token2] = ACTIONS(4473), - [aux_sym_variable_attributes_token3] = ACTIONS(4473), - [aux_sym_variable_attributes_token4] = ACTIONS(4473), - [aux_sym_variable_attributes_token5] = ACTIONS(4473), - [aux_sym__intrinsic_type_token1] = ACTIONS(4473), - [aux_sym__intrinsic_type_token2] = ACTIONS(4473), - [aux_sym__intrinsic_type_token3] = ACTIONS(4473), - [aux_sym__intrinsic_type_token4] = ACTIONS(4473), - [aux_sym__intrinsic_type_token6] = ACTIONS(4473), - [aux_sym__intrinsic_type_token7] = ACTIONS(4473), - [aux_sym__intrinsic_type_token8] = ACTIONS(4473), - [aux_sym__intrinsic_type_token9] = ACTIONS(4473), - [aux_sym__intrinsic_type_token10] = ACTIONS(4473), - [aux_sym_derived_type_token1] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4473), - [aux_sym_type_qualifier_token1] = ACTIONS(4473), - [aux_sym_type_qualifier_token2] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4473), - [aux_sym_equivalence_statement_token1] = ACTIONS(4473), - [anon_sym_SEMI] = ACTIONS(4475), - [aux_sym_stop_statement_token1] = ACTIONS(4473), - [aux_sym_stop_statement_token2] = ACTIONS(4473), - [aux_sym_subroutine_call_token1] = ACTIONS(4473), - [aux_sym_keyword_statement_token1] = ACTIONS(4473), - [aux_sym_keyword_statement_token2] = ACTIONS(4473), - [aux_sym_keyword_statement_token3] = ACTIONS(4473), - [aux_sym_keyword_statement_token4] = ACTIONS(4473), - [aux_sym_keyword_statement_token6] = ACTIONS(4473), - [aux_sym_keyword_statement_token7] = ACTIONS(4473), - [aux_sym_include_statement_token1] = ACTIONS(4473), - [aux_sym_data_statement_token1] = ACTIONS(4473), - [aux_sym_do_loop_statement_token1] = ACTIONS(4473), - [aux_sym__inline_if_statement_token1] = ACTIONS(4473), - [aux_sym_end_if_statement_token1] = ACTIONS(4473), - [aux_sym_elseif_clause_token2] = ACTIONS(4473), - [aux_sym__inline_where_statement_token1] = ACTIONS(4473), - [aux_sym__forall_control_expression_token1] = ACTIONS(4473), - [aux_sym_select_case_statement_token1] = ACTIONS(4473), - [aux_sym_select_case_statement_token3] = ACTIONS(4473), - [aux_sym_select_type_statement_token1] = ACTIONS(4473), - [aux_sym_select_rank_statement_token2] = ACTIONS(4473), - [aux_sym_block_construct_token1] = ACTIONS(4473), - [aux_sym_associate_statement_token1] = ACTIONS(4473), - [aux_sym_format_statement_token1] = ACTIONS(4473), - [aux_sym_print_statement_token1] = ACTIONS(4473), - [aux_sym_open_statement_token1] = ACTIONS(4473), - [aux_sym_close_statement_token1] = ACTIONS(4473), - [aux_sym_inquire_statement_token1] = ACTIONS(4473), - [aux_sym_enum_statement_token1] = ACTIONS(4473), - [aux_sym_file_position_statement_token1] = ACTIONS(4473), - [aux_sym_file_position_statement_token2] = ACTIONS(4473), - [aux_sym_file_position_statement_token3] = ACTIONS(4473), - [aux_sym_file_position_statement_token4] = ACTIONS(4473), - [aux_sym_allocate_statement_token1] = ACTIONS(4473), - [aux_sym_entry_statement_token1] = ACTIONS(4473), - [aux_sym_logical_expression_token5] = ACTIONS(4475), - [anon_sym_DOT] = ACTIONS(4473), - [anon_sym_LPAREN_SLASH] = ACTIONS(4475), - [anon_sym_LBRACK] = ACTIONS(4475), - [aux_sym_boolean_literal_token1] = ACTIONS(4475), - [aux_sym_boolean_literal_token2] = ACTIONS(4475), - [aux_sym_null_literal_token1] = ACTIONS(4473), - [aux_sym_coarray_statement_token1] = ACTIONS(4473), - [aux_sym_coarray_statement_token2] = ACTIONS(4473), - [aux_sym_coarray_statement_token6] = ACTIONS(4473), - [aux_sym_coarray_statement_token8] = ACTIONS(4473), - [aux_sym_coarray_statement_token11] = ACTIONS(4473), - [aux_sym_coarray_statement_token12] = ACTIONS(4473), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4473), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4473), - [aux_sym_identifier_token1] = ACTIONS(4473), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4475), - [sym__float_literal] = ACTIONS(4475), - [sym__boz_literal] = ACTIONS(4475), - [sym__string_literal] = ACTIONS(4475), - [sym__string_literal_kind] = ACTIONS(4475), - }, - [868] = { - [aux_sym_preproc_include_token1] = ACTIONS(4477), - [aux_sym_preproc_def_token1] = ACTIONS(4477), - [aux_sym_preproc_if_token1] = ACTIONS(4477), - [aux_sym_preproc_if_token2] = ACTIONS(4477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4477), - [aux_sym_preproc_else_token1] = ACTIONS(4477), - [aux_sym_preproc_elif_token1] = ACTIONS(4477), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4477), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4477), - [sym_preproc_directive] = ACTIONS(4477), - [anon_sym_LPAREN2] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4477), - [aux_sym_end_program_statement_token1] = ACTIONS(4477), - [aux_sym_end_program_statement_token2] = ACTIONS(4477), - [aux_sym_module_statement_token1] = ACTIONS(4477), - [aux_sym_submodule_statement_token1] = ACTIONS(4477), - [aux_sym_interface_statement_token1] = ACTIONS(4477), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4477), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4477), - [aux_sym_subroutine_statement_token1] = ACTIONS(4477), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4477), - [aux_sym_function_statement_token1] = ACTIONS(4477), - [aux_sym_language_binding_token1] = ACTIONS(4477), - [aux_sym_procedure_attributes_token1] = ACTIONS(4477), - [aux_sym_procedure_attributes_token3] = ACTIONS(4477), - [aux_sym_contains_statement_token1] = ACTIONS(4477), - [aux_sym_use_statement_token1] = ACTIONS(4477), - [aux_sym_use_statement_token2] = ACTIONS(4477), - [aux_sym_implicit_statement_token1] = ACTIONS(4477), - [aux_sym_implicit_statement_token3] = ACTIONS(4477), - [aux_sym_implicit_statement_token4] = ACTIONS(4477), - [aux_sym_save_statement_token1] = ACTIONS(4477), - [aux_sym_private_statement_token1] = ACTIONS(4477), - [aux_sym_public_statement_token1] = ACTIONS(4477), - [aux_sym_namelist_statement_token1] = ACTIONS(4477), - [aux_sym_common_statement_token1] = ACTIONS(4477), - [aux_sym_import_statement_token1] = ACTIONS(4477), - [aux_sym_derived_type_definition_token1] = ACTIONS(4477), - [aux_sym_abstract_specifier_token1] = ACTIONS(4477), - [aux_sym_procedure_attribute_token6] = ACTIONS(4477), - [aux_sym_variable_attributes_token1] = ACTIONS(4477), - [aux_sym_variable_attributes_token2] = ACTIONS(4477), - [aux_sym_variable_attributes_token3] = ACTIONS(4477), - [aux_sym_variable_attributes_token4] = ACTIONS(4477), - [aux_sym_variable_attributes_token5] = ACTIONS(4477), - [aux_sym__intrinsic_type_token1] = ACTIONS(4477), - [aux_sym__intrinsic_type_token2] = ACTIONS(4477), - [aux_sym__intrinsic_type_token3] = ACTIONS(4477), - [aux_sym__intrinsic_type_token4] = ACTIONS(4477), - [aux_sym__intrinsic_type_token6] = ACTIONS(4477), - [aux_sym__intrinsic_type_token7] = ACTIONS(4477), - [aux_sym__intrinsic_type_token8] = ACTIONS(4477), - [aux_sym__intrinsic_type_token9] = ACTIONS(4477), - [aux_sym__intrinsic_type_token10] = ACTIONS(4477), - [aux_sym_derived_type_token1] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4477), - [aux_sym_type_qualifier_token1] = ACTIONS(4477), - [aux_sym_type_qualifier_token2] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4477), - [aux_sym_equivalence_statement_token1] = ACTIONS(4477), - [anon_sym_SEMI] = ACTIONS(4479), - [aux_sym_stop_statement_token1] = ACTIONS(4477), - [aux_sym_stop_statement_token2] = ACTIONS(4477), - [aux_sym_subroutine_call_token1] = ACTIONS(4477), - [aux_sym_keyword_statement_token1] = ACTIONS(4477), - [aux_sym_keyword_statement_token2] = ACTIONS(4477), - [aux_sym_keyword_statement_token3] = ACTIONS(4477), - [aux_sym_keyword_statement_token4] = ACTIONS(4477), - [aux_sym_keyword_statement_token6] = ACTIONS(4477), - [aux_sym_keyword_statement_token7] = ACTIONS(4477), - [aux_sym_include_statement_token1] = ACTIONS(4477), - [aux_sym_data_statement_token1] = ACTIONS(4477), - [aux_sym_do_loop_statement_token1] = ACTIONS(4477), - [aux_sym__inline_if_statement_token1] = ACTIONS(4477), - [aux_sym_end_if_statement_token1] = ACTIONS(4477), - [aux_sym_elseif_clause_token2] = ACTIONS(4477), - [aux_sym__inline_where_statement_token1] = ACTIONS(4477), - [aux_sym__forall_control_expression_token1] = ACTIONS(4477), - [aux_sym_select_case_statement_token1] = ACTIONS(4477), - [aux_sym_select_case_statement_token3] = ACTIONS(4477), - [aux_sym_select_type_statement_token1] = ACTIONS(4477), - [aux_sym_select_rank_statement_token2] = ACTIONS(4477), - [aux_sym_block_construct_token1] = ACTIONS(4477), - [aux_sym_associate_statement_token1] = ACTIONS(4477), - [aux_sym_format_statement_token1] = ACTIONS(4477), - [aux_sym_print_statement_token1] = ACTIONS(4477), - [aux_sym_open_statement_token1] = ACTIONS(4477), - [aux_sym_close_statement_token1] = ACTIONS(4477), - [aux_sym_inquire_statement_token1] = ACTIONS(4477), - [aux_sym_enum_statement_token1] = ACTIONS(4477), - [aux_sym_file_position_statement_token1] = ACTIONS(4477), - [aux_sym_file_position_statement_token2] = ACTIONS(4477), - [aux_sym_file_position_statement_token3] = ACTIONS(4477), - [aux_sym_file_position_statement_token4] = ACTIONS(4477), - [aux_sym_allocate_statement_token1] = ACTIONS(4477), - [aux_sym_entry_statement_token1] = ACTIONS(4477), - [aux_sym_logical_expression_token5] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(4477), - [anon_sym_LPAREN_SLASH] = ACTIONS(4479), - [anon_sym_LBRACK] = ACTIONS(4479), - [aux_sym_boolean_literal_token1] = ACTIONS(4479), - [aux_sym_boolean_literal_token2] = ACTIONS(4479), - [aux_sym_null_literal_token1] = ACTIONS(4477), - [aux_sym_coarray_statement_token1] = ACTIONS(4477), - [aux_sym_coarray_statement_token2] = ACTIONS(4477), - [aux_sym_coarray_statement_token6] = ACTIONS(4477), - [aux_sym_coarray_statement_token8] = ACTIONS(4477), - [aux_sym_coarray_statement_token11] = ACTIONS(4477), - [aux_sym_coarray_statement_token12] = ACTIONS(4477), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4477), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4477), - [aux_sym_identifier_token1] = ACTIONS(4477), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4479), - [sym__float_literal] = ACTIONS(4479), - [sym__boz_literal] = ACTIONS(4479), - [sym__string_literal] = ACTIONS(4479), - [sym__string_literal_kind] = ACTIONS(4479), - }, - [869] = { - [aux_sym_preproc_include_token1] = ACTIONS(4347), - [aux_sym_preproc_def_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token2] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), - [aux_sym_preproc_else_token1] = ACTIONS(4347), - [aux_sym_preproc_elif_token1] = ACTIONS(4347), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4347), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4347), - [sym_preproc_directive] = ACTIONS(4347), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token2] = ACTIONS(4347), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4347), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4347), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token3] = ACTIONS(4347), - [aux_sym_contains_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token2] = ACTIONS(4347), - [aux_sym_implicit_statement_token1] = ACTIONS(4347), - [aux_sym_implicit_statement_token3] = ACTIONS(4347), - [aux_sym_implicit_statement_token4] = ACTIONS(4347), - [aux_sym_save_statement_token1] = ACTIONS(4347), - [aux_sym_private_statement_token1] = ACTIONS(4347), - [aux_sym_public_statement_token1] = ACTIONS(4347), - [aux_sym_namelist_statement_token1] = ACTIONS(4347), - [aux_sym_common_statement_token1] = ACTIONS(4347), - [aux_sym_import_statement_token1] = ACTIONS(4347), - [aux_sym_derived_type_definition_token1] = ACTIONS(4347), - [aux_sym_abstract_specifier_token1] = ACTIONS(4347), - [aux_sym_procedure_attribute_token6] = ACTIONS(4347), - [aux_sym_variable_attributes_token1] = ACTIONS(4347), - [aux_sym_variable_attributes_token2] = ACTIONS(4347), - [aux_sym_variable_attributes_token3] = ACTIONS(4347), - [aux_sym_variable_attributes_token4] = ACTIONS(4347), - [aux_sym_variable_attributes_token5] = ACTIONS(4347), - [aux_sym__intrinsic_type_token1] = ACTIONS(4347), - [aux_sym__intrinsic_type_token2] = ACTIONS(4347), - [aux_sym__intrinsic_type_token3] = ACTIONS(4347), - [aux_sym__intrinsic_type_token4] = ACTIONS(4347), - [aux_sym__intrinsic_type_token6] = ACTIONS(4347), - [aux_sym__intrinsic_type_token7] = ACTIONS(4347), - [aux_sym__intrinsic_type_token8] = ACTIONS(4347), - [aux_sym__intrinsic_type_token9] = ACTIONS(4347), - [aux_sym__intrinsic_type_token10] = ACTIONS(4347), - [aux_sym_derived_type_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4347), - [aux_sym_type_qualifier_token1] = ACTIONS(4347), - [aux_sym_type_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4351), - [aux_sym_stop_statement_token1] = ACTIONS(4347), - [aux_sym_stop_statement_token2] = ACTIONS(4347), - [aux_sym_subroutine_call_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token2] = ACTIONS(4347), - [aux_sym_keyword_statement_token3] = ACTIONS(4347), - [aux_sym_keyword_statement_token4] = ACTIONS(4347), - [aux_sym_keyword_statement_token6] = ACTIONS(4347), - [aux_sym_keyword_statement_token7] = ACTIONS(4347), - [aux_sym_include_statement_token1] = ACTIONS(4347), - [aux_sym_data_statement_token1] = ACTIONS(4347), - [aux_sym_do_loop_statement_token1] = ACTIONS(4347), - [aux_sym__inline_if_statement_token1] = ACTIONS(4347), - [aux_sym_end_if_statement_token1] = ACTIONS(4347), - [aux_sym_elseif_clause_token2] = ACTIONS(4347), - [aux_sym__inline_where_statement_token1] = ACTIONS(4347), - [aux_sym__forall_control_expression_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token3] = ACTIONS(4347), - [aux_sym_select_type_statement_token1] = ACTIONS(4347), - [aux_sym_select_rank_statement_token2] = ACTIONS(4347), - [aux_sym_block_construct_token1] = ACTIONS(4347), - [aux_sym_associate_statement_token1] = ACTIONS(4347), - [aux_sym_format_statement_token1] = ACTIONS(4347), - [aux_sym_print_statement_token1] = ACTIONS(4347), - [aux_sym_open_statement_token1] = ACTIONS(4347), - [aux_sym_close_statement_token1] = ACTIONS(4347), - [aux_sym_inquire_statement_token1] = ACTIONS(4347), - [aux_sym_enum_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token2] = ACTIONS(4347), - [aux_sym_file_position_statement_token3] = ACTIONS(4347), - [aux_sym_file_position_statement_token4] = ACTIONS(4347), - [aux_sym_allocate_statement_token1] = ACTIONS(4347), - [aux_sym_entry_statement_token1] = ACTIONS(4347), - [aux_sym_logical_expression_token5] = ACTIONS(4351), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_LPAREN_SLASH] = ACTIONS(4351), - [anon_sym_LBRACK] = ACTIONS(4351), - [aux_sym_boolean_literal_token1] = ACTIONS(4351), - [aux_sym_boolean_literal_token2] = ACTIONS(4351), - [aux_sym_null_literal_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token2] = ACTIONS(4347), - [aux_sym_coarray_statement_token6] = ACTIONS(4347), - [aux_sym_coarray_statement_token8] = ACTIONS(4347), - [aux_sym_coarray_statement_token11] = ACTIONS(4347), - [aux_sym_coarray_statement_token12] = ACTIONS(4347), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4347), - [aux_sym_identifier_token1] = ACTIONS(4347), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4351), - [sym__float_literal] = ACTIONS(4351), - [sym__boz_literal] = ACTIONS(4351), - [sym__string_literal] = ACTIONS(4351), - [sym__string_literal_kind] = ACTIONS(4351), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [870] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token2] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [aux_sym_preproc_else_token1] = ACTIONS(4481), - [aux_sym_preproc_elif_token1] = ACTIONS(4481), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4481), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_end_program_statement_token2] = ACTIONS(4481), - [aux_sym_module_statement_token1] = ACTIONS(4481), - [aux_sym_submodule_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_subroutine_statement_token1] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_function_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), - }, - [871] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [aux_sym_preproc_else_token1] = ACTIONS(4485), - [aux_sym_preproc_elif_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [866] = { + [aux_sym_preproc_include_token1] = ACTIONS(4483), + [aux_sym_preproc_def_token1] = ACTIONS(4483), + [aux_sym_preproc_if_token1] = ACTIONS(4483), + [aux_sym_preproc_if_token2] = ACTIONS(4483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4483), + [aux_sym_preproc_else_token1] = ACTIONS(4483), + [aux_sym_preproc_elif_token1] = ACTIONS(4483), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4483), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4483), + [sym_preproc_directive] = ACTIONS(4483), + [anon_sym_LPAREN2] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4483), + [aux_sym_end_program_statement_token1] = ACTIONS(4483), + [aux_sym_end_program_statement_token2] = ACTIONS(4483), + [aux_sym_module_statement_token1] = ACTIONS(4483), + [aux_sym_submodule_statement_token1] = ACTIONS(4483), + [aux_sym_interface_statement_token1] = ACTIONS(4483), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4483), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4483), + [aux_sym_subroutine_statement_token1] = ACTIONS(4483), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4483), + [aux_sym_function_statement_token1] = ACTIONS(4483), + [aux_sym_language_binding_token1] = ACTIONS(4483), + [aux_sym_procedure_attributes_token1] = ACTIONS(4483), + [aux_sym_procedure_attributes_token3] = ACTIONS(4483), + [aux_sym_contains_statement_token1] = ACTIONS(4483), + [aux_sym_use_statement_token1] = ACTIONS(4483), + [aux_sym_use_statement_token2] = ACTIONS(4483), + [aux_sym_implicit_statement_token1] = ACTIONS(4483), + [aux_sym_implicit_statement_token3] = ACTIONS(4483), + [aux_sym_implicit_statement_token4] = ACTIONS(4483), + [aux_sym_save_statement_token1] = ACTIONS(4483), + [aux_sym_private_statement_token1] = ACTIONS(4483), + [aux_sym_public_statement_token1] = ACTIONS(4483), + [aux_sym_namelist_statement_token1] = ACTIONS(4483), + [aux_sym_common_statement_token1] = ACTIONS(4483), + [aux_sym_import_statement_token1] = ACTIONS(4483), + [aux_sym_derived_type_definition_token1] = ACTIONS(4483), + [aux_sym_abstract_specifier_token1] = ACTIONS(4483), + [aux_sym_procedure_attribute_token6] = ACTIONS(4483), + [aux_sym_variable_attributes_token1] = ACTIONS(4483), + [aux_sym_variable_attributes_token2] = ACTIONS(4483), + [aux_sym_variable_attributes_token3] = ACTIONS(4483), + [aux_sym_variable_attributes_token4] = ACTIONS(4483), + [aux_sym_variable_attributes_token5] = ACTIONS(4483), + [aux_sym__intrinsic_type_token1] = ACTIONS(4483), + [aux_sym__intrinsic_type_token2] = ACTIONS(4483), + [aux_sym__intrinsic_type_token3] = ACTIONS(4483), + [aux_sym__intrinsic_type_token4] = ACTIONS(4483), + [aux_sym__intrinsic_type_token6] = ACTIONS(4483), + [aux_sym__intrinsic_type_token7] = ACTIONS(4483), + [aux_sym__intrinsic_type_token8] = ACTIONS(4483), + [aux_sym__intrinsic_type_token9] = ACTIONS(4483), + [aux_sym__intrinsic_type_token10] = ACTIONS(4483), + [aux_sym_derived_type_token1] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4483), + [aux_sym_type_qualifier_token1] = ACTIONS(4483), + [aux_sym_type_qualifier_token2] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4483), + [aux_sym_equivalence_statement_token1] = ACTIONS(4483), + [anon_sym_SEMI] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4483), + [aux_sym_stop_statement_token2] = ACTIONS(4483), + [aux_sym_subroutine_call_token1] = ACTIONS(4483), + [aux_sym_keyword_statement_token1] = ACTIONS(4483), + [aux_sym_keyword_statement_token2] = ACTIONS(4483), + [aux_sym_keyword_statement_token3] = ACTIONS(4483), + [aux_sym_keyword_statement_token4] = ACTIONS(4483), + [aux_sym_keyword_statement_token6] = ACTIONS(4483), + [aux_sym_keyword_statement_token7] = ACTIONS(4483), + [aux_sym_include_statement_token1] = ACTIONS(4483), + [aux_sym_data_statement_token1] = ACTIONS(4483), + [aux_sym_do_loop_statement_token1] = ACTIONS(4483), + [aux_sym__inline_if_statement_token1] = ACTIONS(4483), + [aux_sym_end_if_statement_token1] = ACTIONS(4483), + [aux_sym_elseif_clause_token2] = ACTIONS(4483), + [aux_sym__inline_where_statement_token1] = ACTIONS(4483), + [aux_sym__forall_control_expression_token1] = ACTIONS(4483), + [aux_sym_select_case_statement_token1] = ACTIONS(4483), + [aux_sym_select_case_statement_token3] = ACTIONS(4483), + [aux_sym_select_type_statement_token1] = ACTIONS(4483), + [aux_sym_select_rank_statement_token2] = ACTIONS(4483), + [aux_sym_block_construct_token1] = ACTIONS(4483), + [aux_sym_associate_statement_token1] = ACTIONS(4483), + [aux_sym_format_statement_token1] = ACTIONS(4483), + [aux_sym_print_statement_token1] = ACTIONS(4483), + [aux_sym_open_statement_token1] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4483), + [aux_sym_inquire_statement_token1] = ACTIONS(4483), + [aux_sym_enum_statement_token1] = ACTIONS(4483), + [aux_sym_file_position_statement_token1] = ACTIONS(4483), + [aux_sym_file_position_statement_token2] = ACTIONS(4483), + [aux_sym_file_position_statement_token3] = ACTIONS(4483), + [aux_sym_file_position_statement_token4] = ACTIONS(4483), + [aux_sym_allocate_statement_token1] = ACTIONS(4483), + [aux_sym_entry_statement_token1] = ACTIONS(4483), + [aux_sym_logical_expression_token5] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4483), + [anon_sym_LPAREN_SLASH] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4483), + [aux_sym_coarray_statement_token1] = ACTIONS(4483), + [aux_sym_coarray_statement_token2] = ACTIONS(4483), + [aux_sym_coarray_statement_token6] = ACTIONS(4483), + [aux_sym_coarray_statement_token8] = ACTIONS(4483), + [aux_sym_coarray_statement_token11] = ACTIONS(4483), + [aux_sym_coarray_statement_token12] = ACTIONS(4483), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4483), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4483), + [aux_sym_identifier_token1] = ACTIONS(4483), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4485), + [sym__float_literal] = ACTIONS(4485), + [sym__boz_literal] = ACTIONS(4485), + [sym__string_literal] = ACTIONS(4485), + [sym__string_literal_kind] = ACTIONS(4485), }, - [872] = { + [867] = { [aux_sym_preproc_include_token1] = ACTIONS(4487), [aux_sym_preproc_def_token1] = ACTIONS(4487), [aux_sym_preproc_if_token1] = ACTIONS(4487), @@ -208003,7 +207308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4489), [sym__string_literal_kind] = ACTIONS(4489), }, - [873] = { + [868] = { [aux_sym_preproc_include_token1] = ACTIONS(4491), [aux_sym_preproc_def_token1] = ACTIONS(4491), [aux_sym_preproc_if_token1] = ACTIONS(4491), @@ -208142,7 +207447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4493), [sym__string_literal_kind] = ACTIONS(4493), }, - [874] = { + [869] = { [aux_sym_preproc_include_token1] = ACTIONS(4495), [aux_sym_preproc_def_token1] = ACTIONS(4495), [aux_sym_preproc_if_token1] = ACTIONS(4495), @@ -208281,7 +207586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4497), [sym__string_literal_kind] = ACTIONS(4497), }, - [875] = { + [870] = { [aux_sym_preproc_include_token1] = ACTIONS(4499), [aux_sym_preproc_def_token1] = ACTIONS(4499), [aux_sym_preproc_if_token1] = ACTIONS(4499), @@ -208420,7 +207725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4501), [sym__string_literal_kind] = ACTIONS(4501), }, - [876] = { + [871] = { [aux_sym_preproc_include_token1] = ACTIONS(4503), [aux_sym_preproc_def_token1] = ACTIONS(4503), [aux_sym_preproc_if_token1] = ACTIONS(4503), @@ -208559,7 +207864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4505), [sym__string_literal_kind] = ACTIONS(4505), }, - [877] = { + [872] = { [aux_sym_preproc_include_token1] = ACTIONS(4507), [aux_sym_preproc_def_token1] = ACTIONS(4507), [aux_sym_preproc_if_token1] = ACTIONS(4507), @@ -208698,7 +208003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4509), [sym__string_literal_kind] = ACTIONS(4509), }, - [878] = { + [873] = { [aux_sym_preproc_include_token1] = ACTIONS(4511), [aux_sym_preproc_def_token1] = ACTIONS(4511), [aux_sym_preproc_if_token1] = ACTIONS(4511), @@ -208837,7 +208142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4513), [sym__string_literal_kind] = ACTIONS(4513), }, - [879] = { + [874] = { [aux_sym_preproc_include_token1] = ACTIONS(4515), [aux_sym_preproc_def_token1] = ACTIONS(4515), [aux_sym_preproc_if_token1] = ACTIONS(4515), @@ -208976,7 +208281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4517), [sym__string_literal_kind] = ACTIONS(4517), }, - [880] = { + [875] = { [aux_sym_preproc_include_token1] = ACTIONS(4519), [aux_sym_preproc_def_token1] = ACTIONS(4519), [aux_sym_preproc_if_token1] = ACTIONS(4519), @@ -209115,7 +208420,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4521), [sym__string_literal_kind] = ACTIONS(4521), }, - [881] = { + [876] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [877] = { [aux_sym_preproc_include_token1] = ACTIONS(4523), [aux_sym_preproc_def_token1] = ACTIONS(4523), [aux_sym_preproc_if_token1] = ACTIONS(4523), @@ -209254,7 +208698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4525), [sym__string_literal_kind] = ACTIONS(4525), }, - [882] = { + [878] = { [aux_sym_preproc_include_token1] = ACTIONS(4527), [aux_sym_preproc_def_token1] = ACTIONS(4527), [aux_sym_preproc_if_token1] = ACTIONS(4527), @@ -209393,7 +208837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4529), [sym__string_literal_kind] = ACTIONS(4529), }, - [883] = { + [879] = { [aux_sym_preproc_include_token1] = ACTIONS(4531), [aux_sym_preproc_def_token1] = ACTIONS(4531), [aux_sym_preproc_if_token1] = ACTIONS(4531), @@ -209532,33 +208976,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4533), [sym__string_literal_kind] = ACTIONS(4533), }, - [884] = { + [880] = { [aux_sym_preproc_include_token1] = ACTIONS(4535), [aux_sym_preproc_def_token1] = ACTIONS(4535), [aux_sym_preproc_if_token1] = ACTIONS(4535), - [aux_sym_preproc_if_token2] = ACTIONS(4535), + [aux_sym_preproc_if_token2] = ACTIONS(4537), [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), - [aux_sym_preproc_else_token1] = ACTIONS(4535), - [aux_sym_preproc_elif_token1] = ACTIONS(4535), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4535), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4535), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), [sym_preproc_directive] = ACTIONS(4535), [anon_sym_LPAREN2] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4537), - [anon_sym_DASH] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4535), + [aux_sym_program_statement_token1] = ACTIONS(4285), [aux_sym_end_program_statement_token1] = ACTIONS(4535), [aux_sym_end_program_statement_token2] = ACTIONS(4535), - [aux_sym_module_statement_token1] = ACTIONS(4535), - [aux_sym_submodule_statement_token1] = ACTIONS(4535), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), [aux_sym_interface_statement_token1] = ACTIONS(4535), [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), - [aux_sym_subroutine_statement_token1] = ACTIONS(4535), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), - [aux_sym_function_statement_token1] = ACTIONS(4535), + [aux_sym_function_statement_token1] = ACTIONS(4285), [aux_sym_language_binding_token1] = ACTIONS(4535), [aux_sym_procedure_attributes_token1] = ACTIONS(4535), [aux_sym_procedure_attributes_token3] = ACTIONS(4535), @@ -209607,12 +209051,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), [aux_sym_type_qualifier_token1] = ACTIONS(4535), [aux_sym_type_qualifier_token2] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4535), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), [aux_sym_equivalence_statement_token1] = ACTIONS(4535), - [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(4539), [aux_sym_stop_statement_token1] = ACTIONS(4535), [aux_sym_stop_statement_token2] = ACTIONS(4535), [aux_sym_subroutine_call_token1] = ACTIONS(4535), @@ -209648,12 +209092,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4535), [aux_sym_allocate_statement_token1] = ACTIONS(4535), [aux_sym_entry_statement_token1] = ACTIONS(4535), - [aux_sym_logical_expression_token5] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(4539), [anon_sym_DOT] = ACTIONS(4535), - [anon_sym_LPAREN_SLASH] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4537), - [aux_sym_boolean_literal_token1] = ACTIONS(4537), - [aux_sym_boolean_literal_token2] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), [aux_sym_null_literal_token1] = ACTIONS(4535), [aux_sym_coarray_statement_token1] = ACTIONS(4535), [aux_sym_coarray_statement_token2] = ACTIONS(4535), @@ -209665,1256 +209109,1534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4537), - [sym__float_literal] = ACTIONS(4537), - [sym__boz_literal] = ACTIONS(4537), - [sym__string_literal] = ACTIONS(4537), - [sym__string_literal_kind] = ACTIONS(4537), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), + }, + [881] = { + [aux_sym_preproc_include_token1] = ACTIONS(4541), + [aux_sym_preproc_def_token1] = ACTIONS(4541), + [aux_sym_preproc_if_token1] = ACTIONS(4541), + [aux_sym_preproc_if_token2] = ACTIONS(4541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4541), + [aux_sym_preproc_else_token1] = ACTIONS(4541), + [aux_sym_preproc_elif_token1] = ACTIONS(4541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4541), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4541), + [sym_preproc_directive] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4541), + [aux_sym_end_program_statement_token1] = ACTIONS(4541), + [aux_sym_end_program_statement_token2] = ACTIONS(4541), + [aux_sym_module_statement_token1] = ACTIONS(4541), + [aux_sym_submodule_statement_token1] = ACTIONS(4541), + [aux_sym_interface_statement_token1] = ACTIONS(4541), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4541), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4541), + [aux_sym_subroutine_statement_token1] = ACTIONS(4541), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4541), + [aux_sym_function_statement_token1] = ACTIONS(4541), + [aux_sym_language_binding_token1] = ACTIONS(4541), + [aux_sym_procedure_attributes_token1] = ACTIONS(4541), + [aux_sym_procedure_attributes_token3] = ACTIONS(4541), + [aux_sym_contains_statement_token1] = ACTIONS(4541), + [aux_sym_use_statement_token1] = ACTIONS(4541), + [aux_sym_use_statement_token2] = ACTIONS(4541), + [aux_sym_implicit_statement_token1] = ACTIONS(4541), + [aux_sym_implicit_statement_token3] = ACTIONS(4541), + [aux_sym_implicit_statement_token4] = ACTIONS(4541), + [aux_sym_save_statement_token1] = ACTIONS(4541), + [aux_sym_private_statement_token1] = ACTIONS(4541), + [aux_sym_public_statement_token1] = ACTIONS(4541), + [aux_sym_namelist_statement_token1] = ACTIONS(4541), + [aux_sym_common_statement_token1] = ACTIONS(4541), + [aux_sym_import_statement_token1] = ACTIONS(4541), + [aux_sym_derived_type_definition_token1] = ACTIONS(4541), + [aux_sym_abstract_specifier_token1] = ACTIONS(4541), + [aux_sym_procedure_attribute_token6] = ACTIONS(4541), + [aux_sym_variable_attributes_token1] = ACTIONS(4541), + [aux_sym_variable_attributes_token2] = ACTIONS(4541), + [aux_sym_variable_attributes_token3] = ACTIONS(4541), + [aux_sym_variable_attributes_token4] = ACTIONS(4541), + [aux_sym_variable_attributes_token5] = ACTIONS(4541), + [aux_sym__intrinsic_type_token1] = ACTIONS(4541), + [aux_sym__intrinsic_type_token2] = ACTIONS(4541), + [aux_sym__intrinsic_type_token3] = ACTIONS(4541), + [aux_sym__intrinsic_type_token4] = ACTIONS(4541), + [aux_sym__intrinsic_type_token6] = ACTIONS(4541), + [aux_sym__intrinsic_type_token7] = ACTIONS(4541), + [aux_sym__intrinsic_type_token8] = ACTIONS(4541), + [aux_sym__intrinsic_type_token9] = ACTIONS(4541), + [aux_sym__intrinsic_type_token10] = ACTIONS(4541), + [aux_sym_derived_type_token1] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4541), + [aux_sym_type_qualifier_token1] = ACTIONS(4541), + [aux_sym_type_qualifier_token2] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4541), + [aux_sym_equivalence_statement_token1] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(4543), + [aux_sym_stop_statement_token1] = ACTIONS(4541), + [aux_sym_stop_statement_token2] = ACTIONS(4541), + [aux_sym_subroutine_call_token1] = ACTIONS(4541), + [aux_sym_keyword_statement_token1] = ACTIONS(4541), + [aux_sym_keyword_statement_token2] = ACTIONS(4541), + [aux_sym_keyword_statement_token3] = ACTIONS(4541), + [aux_sym_keyword_statement_token4] = ACTIONS(4541), + [aux_sym_keyword_statement_token6] = ACTIONS(4541), + [aux_sym_keyword_statement_token7] = ACTIONS(4541), + [aux_sym_include_statement_token1] = ACTIONS(4541), + [aux_sym_data_statement_token1] = ACTIONS(4541), + [aux_sym_do_loop_statement_token1] = ACTIONS(4541), + [aux_sym__inline_if_statement_token1] = ACTIONS(4541), + [aux_sym_end_if_statement_token1] = ACTIONS(4541), + [aux_sym_elseif_clause_token2] = ACTIONS(4541), + [aux_sym__inline_where_statement_token1] = ACTIONS(4541), + [aux_sym__forall_control_expression_token1] = ACTIONS(4541), + [aux_sym_select_case_statement_token1] = ACTIONS(4541), + [aux_sym_select_case_statement_token3] = ACTIONS(4541), + [aux_sym_select_type_statement_token1] = ACTIONS(4541), + [aux_sym_select_rank_statement_token2] = ACTIONS(4541), + [aux_sym_block_construct_token1] = ACTIONS(4541), + [aux_sym_associate_statement_token1] = ACTIONS(4541), + [aux_sym_format_statement_token1] = ACTIONS(4541), + [aux_sym_print_statement_token1] = ACTIONS(4541), + [aux_sym_open_statement_token1] = ACTIONS(4541), + [aux_sym_close_statement_token1] = ACTIONS(4541), + [aux_sym_inquire_statement_token1] = ACTIONS(4541), + [aux_sym_enum_statement_token1] = ACTIONS(4541), + [aux_sym_file_position_statement_token1] = ACTIONS(4541), + [aux_sym_file_position_statement_token2] = ACTIONS(4541), + [aux_sym_file_position_statement_token3] = ACTIONS(4541), + [aux_sym_file_position_statement_token4] = ACTIONS(4541), + [aux_sym_allocate_statement_token1] = ACTIONS(4541), + [aux_sym_entry_statement_token1] = ACTIONS(4541), + [aux_sym_logical_expression_token5] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_LPAREN_SLASH] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [aux_sym_boolean_literal_token1] = ACTIONS(4543), + [aux_sym_boolean_literal_token2] = ACTIONS(4543), + [aux_sym_null_literal_token1] = ACTIONS(4541), + [aux_sym_coarray_statement_token1] = ACTIONS(4541), + [aux_sym_coarray_statement_token2] = ACTIONS(4541), + [aux_sym_coarray_statement_token6] = ACTIONS(4541), + [aux_sym_coarray_statement_token8] = ACTIONS(4541), + [aux_sym_coarray_statement_token11] = ACTIONS(4541), + [aux_sym_coarray_statement_token12] = ACTIONS(4541), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4541), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4541), + [aux_sym_identifier_token1] = ACTIONS(4541), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4543), + [sym__float_literal] = ACTIONS(4543), + [sym__boz_literal] = ACTIONS(4543), + [sym__string_literal] = ACTIONS(4543), + [sym__string_literal_kind] = ACTIONS(4543), + }, + [882] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [aux_sym_preproc_else_token1] = ACTIONS(4337), + [aux_sym_preproc_elif_token1] = ACTIONS(4337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4337), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4337), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), + }, + [883] = { + [aux_sym_preproc_include_token1] = ACTIONS(4545), + [aux_sym_preproc_def_token1] = ACTIONS(4545), + [aux_sym_preproc_if_token1] = ACTIONS(4545), + [aux_sym_preproc_if_token2] = ACTIONS(4545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4545), + [aux_sym_preproc_else_token1] = ACTIONS(4545), + [aux_sym_preproc_elif_token1] = ACTIONS(4545), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4545), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4545), + [sym_preproc_directive] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4545), + [aux_sym_end_program_statement_token1] = ACTIONS(4545), + [aux_sym_end_program_statement_token2] = ACTIONS(4545), + [aux_sym_module_statement_token1] = ACTIONS(4545), + [aux_sym_submodule_statement_token1] = ACTIONS(4545), + [aux_sym_interface_statement_token1] = ACTIONS(4545), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4545), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4545), + [aux_sym_subroutine_statement_token1] = ACTIONS(4545), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4545), + [aux_sym_function_statement_token1] = ACTIONS(4545), + [aux_sym_language_binding_token1] = ACTIONS(4545), + [aux_sym_procedure_attributes_token1] = ACTIONS(4545), + [aux_sym_procedure_attributes_token3] = ACTIONS(4545), + [aux_sym_contains_statement_token1] = ACTIONS(4545), + [aux_sym_use_statement_token1] = ACTIONS(4545), + [aux_sym_use_statement_token2] = ACTIONS(4545), + [aux_sym_implicit_statement_token1] = ACTIONS(4545), + [aux_sym_implicit_statement_token3] = ACTIONS(4545), + [aux_sym_implicit_statement_token4] = ACTIONS(4545), + [aux_sym_save_statement_token1] = ACTIONS(4545), + [aux_sym_private_statement_token1] = ACTIONS(4545), + [aux_sym_public_statement_token1] = ACTIONS(4545), + [aux_sym_namelist_statement_token1] = ACTIONS(4545), + [aux_sym_common_statement_token1] = ACTIONS(4545), + [aux_sym_import_statement_token1] = ACTIONS(4545), + [aux_sym_derived_type_definition_token1] = ACTIONS(4545), + [aux_sym_abstract_specifier_token1] = ACTIONS(4545), + [aux_sym_procedure_attribute_token6] = ACTIONS(4545), + [aux_sym_variable_attributes_token1] = ACTIONS(4545), + [aux_sym_variable_attributes_token2] = ACTIONS(4545), + [aux_sym_variable_attributes_token3] = ACTIONS(4545), + [aux_sym_variable_attributes_token4] = ACTIONS(4545), + [aux_sym_variable_attributes_token5] = ACTIONS(4545), + [aux_sym__intrinsic_type_token1] = ACTIONS(4545), + [aux_sym__intrinsic_type_token2] = ACTIONS(4545), + [aux_sym__intrinsic_type_token3] = ACTIONS(4545), + [aux_sym__intrinsic_type_token4] = ACTIONS(4545), + [aux_sym__intrinsic_type_token6] = ACTIONS(4545), + [aux_sym__intrinsic_type_token7] = ACTIONS(4545), + [aux_sym__intrinsic_type_token8] = ACTIONS(4545), + [aux_sym__intrinsic_type_token9] = ACTIONS(4545), + [aux_sym__intrinsic_type_token10] = ACTIONS(4545), + [aux_sym_derived_type_token1] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4545), + [aux_sym_type_qualifier_token1] = ACTIONS(4545), + [aux_sym_type_qualifier_token2] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4545), + [aux_sym_equivalence_statement_token1] = ACTIONS(4545), + [anon_sym_SEMI] = ACTIONS(4547), + [aux_sym_stop_statement_token1] = ACTIONS(4545), + [aux_sym_stop_statement_token2] = ACTIONS(4545), + [aux_sym_subroutine_call_token1] = ACTIONS(4545), + [aux_sym_keyword_statement_token1] = ACTIONS(4545), + [aux_sym_keyword_statement_token2] = ACTIONS(4545), + [aux_sym_keyword_statement_token3] = ACTIONS(4545), + [aux_sym_keyword_statement_token4] = ACTIONS(4545), + [aux_sym_keyword_statement_token6] = ACTIONS(4545), + [aux_sym_keyword_statement_token7] = ACTIONS(4545), + [aux_sym_include_statement_token1] = ACTIONS(4545), + [aux_sym_data_statement_token1] = ACTIONS(4545), + [aux_sym_do_loop_statement_token1] = ACTIONS(4545), + [aux_sym__inline_if_statement_token1] = ACTIONS(4545), + [aux_sym_end_if_statement_token1] = ACTIONS(4545), + [aux_sym_elseif_clause_token2] = ACTIONS(4545), + [aux_sym__inline_where_statement_token1] = ACTIONS(4545), + [aux_sym__forall_control_expression_token1] = ACTIONS(4545), + [aux_sym_select_case_statement_token1] = ACTIONS(4545), + [aux_sym_select_case_statement_token3] = ACTIONS(4545), + [aux_sym_select_type_statement_token1] = ACTIONS(4545), + [aux_sym_select_rank_statement_token2] = ACTIONS(4545), + [aux_sym_block_construct_token1] = ACTIONS(4545), + [aux_sym_associate_statement_token1] = ACTIONS(4545), + [aux_sym_format_statement_token1] = ACTIONS(4545), + [aux_sym_print_statement_token1] = ACTIONS(4545), + [aux_sym_open_statement_token1] = ACTIONS(4545), + [aux_sym_close_statement_token1] = ACTIONS(4545), + [aux_sym_inquire_statement_token1] = ACTIONS(4545), + [aux_sym_enum_statement_token1] = ACTIONS(4545), + [aux_sym_file_position_statement_token1] = ACTIONS(4545), + [aux_sym_file_position_statement_token2] = ACTIONS(4545), + [aux_sym_file_position_statement_token3] = ACTIONS(4545), + [aux_sym_file_position_statement_token4] = ACTIONS(4545), + [aux_sym_allocate_statement_token1] = ACTIONS(4545), + [aux_sym_entry_statement_token1] = ACTIONS(4545), + [aux_sym_logical_expression_token5] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4545), + [anon_sym_LPAREN_SLASH] = ACTIONS(4547), + [anon_sym_LBRACK] = ACTIONS(4547), + [aux_sym_boolean_literal_token1] = ACTIONS(4547), + [aux_sym_boolean_literal_token2] = ACTIONS(4547), + [aux_sym_null_literal_token1] = ACTIONS(4545), + [aux_sym_coarray_statement_token1] = ACTIONS(4545), + [aux_sym_coarray_statement_token2] = ACTIONS(4545), + [aux_sym_coarray_statement_token6] = ACTIONS(4545), + [aux_sym_coarray_statement_token8] = ACTIONS(4545), + [aux_sym_coarray_statement_token11] = ACTIONS(4545), + [aux_sym_coarray_statement_token12] = ACTIONS(4545), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4545), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4545), + [aux_sym_identifier_token1] = ACTIONS(4545), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4547), + [sym__float_literal] = ACTIONS(4547), + [sym__boz_literal] = ACTIONS(4547), + [sym__string_literal] = ACTIONS(4547), + [sym__string_literal_kind] = ACTIONS(4547), + }, + [884] = { + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [aux_sym_preproc_else_token1] = ACTIONS(4285), + [aux_sym_preproc_elif_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4285), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token2] = ACTIONS(4285), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4285), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4285), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token3] = ACTIONS(4285), + [aux_sym_contains_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token2] = ACTIONS(4285), + [aux_sym_implicit_statement_token1] = ACTIONS(4285), + [aux_sym_implicit_statement_token3] = ACTIONS(4285), + [aux_sym_implicit_statement_token4] = ACTIONS(4285), + [aux_sym_save_statement_token1] = ACTIONS(4285), + [aux_sym_private_statement_token1] = ACTIONS(4285), + [aux_sym_public_statement_token1] = ACTIONS(4285), + [aux_sym_namelist_statement_token1] = ACTIONS(4285), + [aux_sym_common_statement_token1] = ACTIONS(4285), + [aux_sym_import_statement_token1] = ACTIONS(4285), + [aux_sym_derived_type_definition_token1] = ACTIONS(4285), + [aux_sym_abstract_specifier_token1] = ACTIONS(4285), + [aux_sym_procedure_attribute_token6] = ACTIONS(4285), + [aux_sym_variable_attributes_token1] = ACTIONS(4285), + [aux_sym_variable_attributes_token2] = ACTIONS(4285), + [aux_sym_variable_attributes_token3] = ACTIONS(4285), + [aux_sym_variable_attributes_token4] = ACTIONS(4285), + [aux_sym_variable_attributes_token5] = ACTIONS(4285), + [aux_sym__intrinsic_type_token1] = ACTIONS(4285), + [aux_sym__intrinsic_type_token2] = ACTIONS(4285), + [aux_sym__intrinsic_type_token3] = ACTIONS(4285), + [aux_sym__intrinsic_type_token4] = ACTIONS(4285), + [aux_sym__intrinsic_type_token6] = ACTIONS(4285), + [aux_sym__intrinsic_type_token7] = ACTIONS(4285), + [aux_sym__intrinsic_type_token8] = ACTIONS(4285), + [aux_sym__intrinsic_type_token9] = ACTIONS(4285), + [aux_sym__intrinsic_type_token10] = ACTIONS(4285), + [aux_sym_derived_type_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4285), + [aux_sym_type_qualifier_token1] = ACTIONS(4285), + [aux_sym_type_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4289), + [aux_sym_stop_statement_token1] = ACTIONS(4285), + [aux_sym_stop_statement_token2] = ACTIONS(4285), + [aux_sym_subroutine_call_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token2] = ACTIONS(4285), + [aux_sym_keyword_statement_token3] = ACTIONS(4285), + [aux_sym_keyword_statement_token4] = ACTIONS(4285), + [aux_sym_keyword_statement_token6] = ACTIONS(4285), + [aux_sym_keyword_statement_token7] = ACTIONS(4285), + [aux_sym_include_statement_token1] = ACTIONS(4285), + [aux_sym_data_statement_token1] = ACTIONS(4285), + [aux_sym_do_loop_statement_token1] = ACTIONS(4285), + [aux_sym__inline_if_statement_token1] = ACTIONS(4285), + [aux_sym_end_if_statement_token1] = ACTIONS(4285), + [aux_sym_elseif_clause_token2] = ACTIONS(4285), + [aux_sym__inline_where_statement_token1] = ACTIONS(4285), + [aux_sym__forall_control_expression_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token3] = ACTIONS(4285), + [aux_sym_select_type_statement_token1] = ACTIONS(4285), + [aux_sym_select_rank_statement_token2] = ACTIONS(4285), + [aux_sym_block_construct_token1] = ACTIONS(4285), + [aux_sym_associate_statement_token1] = ACTIONS(4285), + [aux_sym_format_statement_token1] = ACTIONS(4285), + [aux_sym_print_statement_token1] = ACTIONS(4285), + [aux_sym_open_statement_token1] = ACTIONS(4285), + [aux_sym_close_statement_token1] = ACTIONS(4285), + [aux_sym_inquire_statement_token1] = ACTIONS(4285), + [aux_sym_enum_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token2] = ACTIONS(4285), + [aux_sym_file_position_statement_token3] = ACTIONS(4285), + [aux_sym_file_position_statement_token4] = ACTIONS(4285), + [aux_sym_allocate_statement_token1] = ACTIONS(4285), + [aux_sym_entry_statement_token1] = ACTIONS(4285), + [aux_sym_logical_expression_token5] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4285), + [anon_sym_LPAREN_SLASH] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [aux_sym_boolean_literal_token1] = ACTIONS(4289), + [aux_sym_boolean_literal_token2] = ACTIONS(4289), + [aux_sym_null_literal_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token2] = ACTIONS(4285), + [aux_sym_coarray_statement_token6] = ACTIONS(4285), + [aux_sym_coarray_statement_token8] = ACTIONS(4285), + [aux_sym_coarray_statement_token11] = ACTIONS(4285), + [aux_sym_coarray_statement_token12] = ACTIONS(4285), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4285), + [aux_sym_identifier_token1] = ACTIONS(4285), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4289), + [sym__float_literal] = ACTIONS(4289), + [sym__boz_literal] = ACTIONS(4289), + [sym__string_literal] = ACTIONS(4289), + [sym__string_literal_kind] = ACTIONS(4289), }, [885] = { - [aux_sym_preproc_include_token1] = ACTIONS(4539), - [aux_sym_preproc_def_token1] = ACTIONS(4539), - [aux_sym_preproc_if_token1] = ACTIONS(4539), - [aux_sym_preproc_if_token2] = ACTIONS(4539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4539), - [aux_sym_preproc_else_token1] = ACTIONS(4539), - [aux_sym_preproc_elif_token1] = ACTIONS(4539), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4539), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4539), - [sym_preproc_directive] = ACTIONS(4539), - [anon_sym_LPAREN2] = ACTIONS(4539), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4539), - [aux_sym_end_program_statement_token1] = ACTIONS(4539), - [aux_sym_end_program_statement_token2] = ACTIONS(4539), - [aux_sym_module_statement_token1] = ACTIONS(4539), - [aux_sym_submodule_statement_token1] = ACTIONS(4539), - [aux_sym_interface_statement_token1] = ACTIONS(4539), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4539), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4539), - [aux_sym_subroutine_statement_token1] = ACTIONS(4539), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4539), - [aux_sym_function_statement_token1] = ACTIONS(4539), - [aux_sym_language_binding_token1] = ACTIONS(4539), - [aux_sym_procedure_attributes_token1] = ACTIONS(4539), - [aux_sym_procedure_attributes_token3] = ACTIONS(4539), - [aux_sym_contains_statement_token1] = ACTIONS(4539), - [aux_sym_use_statement_token1] = ACTIONS(4539), - [aux_sym_use_statement_token2] = ACTIONS(4539), - [aux_sym_implicit_statement_token1] = ACTIONS(4539), - [aux_sym_implicit_statement_token3] = ACTIONS(4539), - [aux_sym_implicit_statement_token4] = ACTIONS(4539), - [aux_sym_save_statement_token1] = ACTIONS(4539), - [aux_sym_private_statement_token1] = ACTIONS(4539), - [aux_sym_public_statement_token1] = ACTIONS(4539), - [aux_sym_namelist_statement_token1] = ACTIONS(4539), - [aux_sym_common_statement_token1] = ACTIONS(4539), - [aux_sym_import_statement_token1] = ACTIONS(4539), - [aux_sym_derived_type_definition_token1] = ACTIONS(4539), - [aux_sym_abstract_specifier_token1] = ACTIONS(4539), - [aux_sym_procedure_attribute_token6] = ACTIONS(4539), - [aux_sym_variable_attributes_token1] = ACTIONS(4539), - [aux_sym_variable_attributes_token2] = ACTIONS(4539), - [aux_sym_variable_attributes_token3] = ACTIONS(4539), - [aux_sym_variable_attributes_token4] = ACTIONS(4539), - [aux_sym_variable_attributes_token5] = ACTIONS(4539), - [aux_sym__intrinsic_type_token1] = ACTIONS(4539), - [aux_sym__intrinsic_type_token2] = ACTIONS(4539), - [aux_sym__intrinsic_type_token3] = ACTIONS(4539), - [aux_sym__intrinsic_type_token4] = ACTIONS(4539), - [aux_sym__intrinsic_type_token6] = ACTIONS(4539), - [aux_sym__intrinsic_type_token7] = ACTIONS(4539), - [aux_sym__intrinsic_type_token8] = ACTIONS(4539), - [aux_sym__intrinsic_type_token9] = ACTIONS(4539), - [aux_sym__intrinsic_type_token10] = ACTIONS(4539), - [aux_sym_derived_type_token1] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4539), - [aux_sym_type_qualifier_token1] = ACTIONS(4539), - [aux_sym_type_qualifier_token2] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4539), - [aux_sym_equivalence_statement_token1] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [aux_sym_stop_statement_token1] = ACTIONS(4539), - [aux_sym_stop_statement_token2] = ACTIONS(4539), - [aux_sym_subroutine_call_token1] = ACTIONS(4539), - [aux_sym_keyword_statement_token1] = ACTIONS(4539), - [aux_sym_keyword_statement_token2] = ACTIONS(4539), - [aux_sym_keyword_statement_token3] = ACTIONS(4539), - [aux_sym_keyword_statement_token4] = ACTIONS(4539), - [aux_sym_keyword_statement_token6] = ACTIONS(4539), - [aux_sym_keyword_statement_token7] = ACTIONS(4539), - [aux_sym_include_statement_token1] = ACTIONS(4539), - [aux_sym_data_statement_token1] = ACTIONS(4539), - [aux_sym_do_loop_statement_token1] = ACTIONS(4539), - [aux_sym__inline_if_statement_token1] = ACTIONS(4539), - [aux_sym_end_if_statement_token1] = ACTIONS(4539), - [aux_sym_elseif_clause_token2] = ACTIONS(4539), - [aux_sym__inline_where_statement_token1] = ACTIONS(4539), - [aux_sym__forall_control_expression_token1] = ACTIONS(4539), - [aux_sym_select_case_statement_token1] = ACTIONS(4539), - [aux_sym_select_case_statement_token3] = ACTIONS(4539), - [aux_sym_select_type_statement_token1] = ACTIONS(4539), - [aux_sym_select_rank_statement_token2] = ACTIONS(4539), - [aux_sym_block_construct_token1] = ACTIONS(4539), - [aux_sym_associate_statement_token1] = ACTIONS(4539), - [aux_sym_format_statement_token1] = ACTIONS(4539), - [aux_sym_print_statement_token1] = ACTIONS(4539), - [aux_sym_open_statement_token1] = ACTIONS(4539), - [aux_sym_close_statement_token1] = ACTIONS(4539), - [aux_sym_inquire_statement_token1] = ACTIONS(4539), - [aux_sym_enum_statement_token1] = ACTIONS(4539), - [aux_sym_file_position_statement_token1] = ACTIONS(4539), - [aux_sym_file_position_statement_token2] = ACTIONS(4539), - [aux_sym_file_position_statement_token3] = ACTIONS(4539), - [aux_sym_file_position_statement_token4] = ACTIONS(4539), - [aux_sym_allocate_statement_token1] = ACTIONS(4539), - [aux_sym_entry_statement_token1] = ACTIONS(4539), - [aux_sym_logical_expression_token5] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_LPAREN_SLASH] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [aux_sym_boolean_literal_token1] = ACTIONS(4541), - [aux_sym_boolean_literal_token2] = ACTIONS(4541), - [aux_sym_null_literal_token1] = ACTIONS(4539), - [aux_sym_coarray_statement_token1] = ACTIONS(4539), - [aux_sym_coarray_statement_token2] = ACTIONS(4539), - [aux_sym_coarray_statement_token6] = ACTIONS(4539), - [aux_sym_coarray_statement_token8] = ACTIONS(4539), - [aux_sym_coarray_statement_token11] = ACTIONS(4539), - [aux_sym_coarray_statement_token12] = ACTIONS(4539), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4539), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4539), - [aux_sym_identifier_token1] = ACTIONS(4539), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4541), - [sym__float_literal] = ACTIONS(4541), - [sym__boz_literal] = ACTIONS(4541), - [sym__string_literal] = ACTIONS(4541), - [sym__string_literal_kind] = ACTIONS(4541), + [aux_sym_preproc_include_token1] = ACTIONS(4549), + [aux_sym_preproc_def_token1] = ACTIONS(4549), + [aux_sym_preproc_if_token1] = ACTIONS(4549), + [aux_sym_preproc_if_token2] = ACTIONS(4549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4549), + [aux_sym_preproc_else_token1] = ACTIONS(4549), + [aux_sym_preproc_elif_token1] = ACTIONS(4549), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4549), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4549), + [sym_preproc_directive] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4549), + [aux_sym_end_program_statement_token1] = ACTIONS(4549), + [aux_sym_end_program_statement_token2] = ACTIONS(4549), + [aux_sym_module_statement_token1] = ACTIONS(4549), + [aux_sym_submodule_statement_token1] = ACTIONS(4549), + [aux_sym_interface_statement_token1] = ACTIONS(4549), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4549), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4549), + [aux_sym_subroutine_statement_token1] = ACTIONS(4549), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4549), + [aux_sym_function_statement_token1] = ACTIONS(4549), + [aux_sym_language_binding_token1] = ACTIONS(4549), + [aux_sym_procedure_attributes_token1] = ACTIONS(4549), + [aux_sym_procedure_attributes_token3] = ACTIONS(4549), + [aux_sym_contains_statement_token1] = ACTIONS(4549), + [aux_sym_use_statement_token1] = ACTIONS(4549), + [aux_sym_use_statement_token2] = ACTIONS(4549), + [aux_sym_implicit_statement_token1] = ACTIONS(4549), + [aux_sym_implicit_statement_token3] = ACTIONS(4549), + [aux_sym_implicit_statement_token4] = ACTIONS(4549), + [aux_sym_save_statement_token1] = ACTIONS(4549), + [aux_sym_private_statement_token1] = ACTIONS(4549), + [aux_sym_public_statement_token1] = ACTIONS(4549), + [aux_sym_namelist_statement_token1] = ACTIONS(4549), + [aux_sym_common_statement_token1] = ACTIONS(4549), + [aux_sym_import_statement_token1] = ACTIONS(4549), + [aux_sym_derived_type_definition_token1] = ACTIONS(4549), + [aux_sym_abstract_specifier_token1] = ACTIONS(4549), + [aux_sym_procedure_attribute_token6] = ACTIONS(4549), + [aux_sym_variable_attributes_token1] = ACTIONS(4549), + [aux_sym_variable_attributes_token2] = ACTIONS(4549), + [aux_sym_variable_attributes_token3] = ACTIONS(4549), + [aux_sym_variable_attributes_token4] = ACTIONS(4549), + [aux_sym_variable_attributes_token5] = ACTIONS(4549), + [aux_sym__intrinsic_type_token1] = ACTIONS(4549), + [aux_sym__intrinsic_type_token2] = ACTIONS(4549), + [aux_sym__intrinsic_type_token3] = ACTIONS(4549), + [aux_sym__intrinsic_type_token4] = ACTIONS(4549), + [aux_sym__intrinsic_type_token6] = ACTIONS(4549), + [aux_sym__intrinsic_type_token7] = ACTIONS(4549), + [aux_sym__intrinsic_type_token8] = ACTIONS(4549), + [aux_sym__intrinsic_type_token9] = ACTIONS(4549), + [aux_sym__intrinsic_type_token10] = ACTIONS(4549), + [aux_sym_derived_type_token1] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4549), + [aux_sym_type_qualifier_token1] = ACTIONS(4549), + [aux_sym_type_qualifier_token2] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4549), + [aux_sym_equivalence_statement_token1] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [aux_sym_stop_statement_token1] = ACTIONS(4549), + [aux_sym_stop_statement_token2] = ACTIONS(4549), + [aux_sym_subroutine_call_token1] = ACTIONS(4549), + [aux_sym_keyword_statement_token1] = ACTIONS(4549), + [aux_sym_keyword_statement_token2] = ACTIONS(4549), + [aux_sym_keyword_statement_token3] = ACTIONS(4549), + [aux_sym_keyword_statement_token4] = ACTIONS(4549), + [aux_sym_keyword_statement_token6] = ACTIONS(4549), + [aux_sym_keyword_statement_token7] = ACTIONS(4549), + [aux_sym_include_statement_token1] = ACTIONS(4549), + [aux_sym_data_statement_token1] = ACTIONS(4549), + [aux_sym_do_loop_statement_token1] = ACTIONS(4549), + [aux_sym__inline_if_statement_token1] = ACTIONS(4549), + [aux_sym_end_if_statement_token1] = ACTIONS(4549), + [aux_sym_elseif_clause_token2] = ACTIONS(4549), + [aux_sym__inline_where_statement_token1] = ACTIONS(4549), + [aux_sym__forall_control_expression_token1] = ACTIONS(4549), + [aux_sym_select_case_statement_token1] = ACTIONS(4549), + [aux_sym_select_case_statement_token3] = ACTIONS(4549), + [aux_sym_select_type_statement_token1] = ACTIONS(4549), + [aux_sym_select_rank_statement_token2] = ACTIONS(4549), + [aux_sym_block_construct_token1] = ACTIONS(4549), + [aux_sym_associate_statement_token1] = ACTIONS(4549), + [aux_sym_format_statement_token1] = ACTIONS(4549), + [aux_sym_print_statement_token1] = ACTIONS(4549), + [aux_sym_open_statement_token1] = ACTIONS(4549), + [aux_sym_close_statement_token1] = ACTIONS(4549), + [aux_sym_inquire_statement_token1] = ACTIONS(4549), + [aux_sym_enum_statement_token1] = ACTIONS(4549), + [aux_sym_file_position_statement_token1] = ACTIONS(4549), + [aux_sym_file_position_statement_token2] = ACTIONS(4549), + [aux_sym_file_position_statement_token3] = ACTIONS(4549), + [aux_sym_file_position_statement_token4] = ACTIONS(4549), + [aux_sym_allocate_statement_token1] = ACTIONS(4549), + [aux_sym_entry_statement_token1] = ACTIONS(4549), + [aux_sym_logical_expression_token5] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_LPAREN_SLASH] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [aux_sym_boolean_literal_token1] = ACTIONS(4551), + [aux_sym_boolean_literal_token2] = ACTIONS(4551), + [aux_sym_null_literal_token1] = ACTIONS(4549), + [aux_sym_coarray_statement_token1] = ACTIONS(4549), + [aux_sym_coarray_statement_token2] = ACTIONS(4549), + [aux_sym_coarray_statement_token6] = ACTIONS(4549), + [aux_sym_coarray_statement_token8] = ACTIONS(4549), + [aux_sym_coarray_statement_token11] = ACTIONS(4549), + [aux_sym_coarray_statement_token12] = ACTIONS(4549), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4549), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4549), + [aux_sym_identifier_token1] = ACTIONS(4549), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4551), + [sym__float_literal] = ACTIONS(4551), + [sym__boz_literal] = ACTIONS(4551), + [sym__string_literal] = ACTIONS(4551), + [sym__string_literal_kind] = ACTIONS(4551), }, [886] = { - [aux_sym_preproc_include_token1] = ACTIONS(4543), - [aux_sym_preproc_def_token1] = ACTIONS(4543), - [aux_sym_preproc_if_token1] = ACTIONS(4543), - [aux_sym_preproc_if_token2] = ACTIONS(4543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4543), - [aux_sym_preproc_else_token1] = ACTIONS(4543), - [aux_sym_preproc_elif_token1] = ACTIONS(4543), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4543), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4543), - [sym_preproc_directive] = ACTIONS(4543), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4543), - [aux_sym_end_program_statement_token1] = ACTIONS(4543), - [aux_sym_end_program_statement_token2] = ACTIONS(4543), - [aux_sym_module_statement_token1] = ACTIONS(4543), - [aux_sym_submodule_statement_token1] = ACTIONS(4543), - [aux_sym_interface_statement_token1] = ACTIONS(4543), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4543), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4543), - [aux_sym_subroutine_statement_token1] = ACTIONS(4543), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4543), - [aux_sym_function_statement_token1] = ACTIONS(4543), - [aux_sym_language_binding_token1] = ACTIONS(4543), - [aux_sym_procedure_attributes_token1] = ACTIONS(4543), - [aux_sym_procedure_attributes_token3] = ACTIONS(4543), - [aux_sym_contains_statement_token1] = ACTIONS(4543), - [aux_sym_use_statement_token1] = ACTIONS(4543), - [aux_sym_use_statement_token2] = ACTIONS(4543), - [aux_sym_implicit_statement_token1] = ACTIONS(4543), - [aux_sym_implicit_statement_token3] = ACTIONS(4543), - [aux_sym_implicit_statement_token4] = ACTIONS(4543), - [aux_sym_save_statement_token1] = ACTIONS(4543), - [aux_sym_private_statement_token1] = ACTIONS(4543), - [aux_sym_public_statement_token1] = ACTIONS(4543), - [aux_sym_namelist_statement_token1] = ACTIONS(4543), - [aux_sym_common_statement_token1] = ACTIONS(4543), - [aux_sym_import_statement_token1] = ACTIONS(4543), - [aux_sym_derived_type_definition_token1] = ACTIONS(4543), - [aux_sym_abstract_specifier_token1] = ACTIONS(4543), - [aux_sym_procedure_attribute_token6] = ACTIONS(4543), - [aux_sym_variable_attributes_token1] = ACTIONS(4543), - [aux_sym_variable_attributes_token2] = ACTIONS(4543), - [aux_sym_variable_attributes_token3] = ACTIONS(4543), - [aux_sym_variable_attributes_token4] = ACTIONS(4543), - [aux_sym_variable_attributes_token5] = ACTIONS(4543), - [aux_sym__intrinsic_type_token1] = ACTIONS(4543), - [aux_sym__intrinsic_type_token2] = ACTIONS(4543), - [aux_sym__intrinsic_type_token3] = ACTIONS(4543), - [aux_sym__intrinsic_type_token4] = ACTIONS(4543), - [aux_sym__intrinsic_type_token6] = ACTIONS(4543), - [aux_sym__intrinsic_type_token7] = ACTIONS(4543), - [aux_sym__intrinsic_type_token8] = ACTIONS(4543), - [aux_sym__intrinsic_type_token9] = ACTIONS(4543), - [aux_sym__intrinsic_type_token10] = ACTIONS(4543), - [aux_sym_derived_type_token1] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4543), - [aux_sym_type_qualifier_token1] = ACTIONS(4543), - [aux_sym_type_qualifier_token2] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4543), - [aux_sym_equivalence_statement_token1] = ACTIONS(4543), - [anon_sym_SEMI] = ACTIONS(4545), - [aux_sym_stop_statement_token1] = ACTIONS(4543), - [aux_sym_stop_statement_token2] = ACTIONS(4543), - [aux_sym_subroutine_call_token1] = ACTIONS(4543), - [aux_sym_keyword_statement_token1] = ACTIONS(4543), - [aux_sym_keyword_statement_token2] = ACTIONS(4543), - [aux_sym_keyword_statement_token3] = ACTIONS(4543), - [aux_sym_keyword_statement_token4] = ACTIONS(4543), - [aux_sym_keyword_statement_token6] = ACTIONS(4543), - [aux_sym_keyword_statement_token7] = ACTIONS(4543), - [aux_sym_include_statement_token1] = ACTIONS(4543), - [aux_sym_data_statement_token1] = ACTIONS(4543), - [aux_sym_do_loop_statement_token1] = ACTIONS(4543), - [aux_sym__inline_if_statement_token1] = ACTIONS(4543), - [aux_sym_end_if_statement_token1] = ACTIONS(4543), - [aux_sym_elseif_clause_token2] = ACTIONS(4543), - [aux_sym__inline_where_statement_token1] = ACTIONS(4543), - [aux_sym__forall_control_expression_token1] = ACTIONS(4543), - [aux_sym_select_case_statement_token1] = ACTIONS(4543), - [aux_sym_select_case_statement_token3] = ACTIONS(4543), - [aux_sym_select_type_statement_token1] = ACTIONS(4543), - [aux_sym_select_rank_statement_token2] = ACTIONS(4543), - [aux_sym_block_construct_token1] = ACTIONS(4543), - [aux_sym_associate_statement_token1] = ACTIONS(4543), - [aux_sym_format_statement_token1] = ACTIONS(4543), - [aux_sym_print_statement_token1] = ACTIONS(4543), - [aux_sym_open_statement_token1] = ACTIONS(4543), - [aux_sym_close_statement_token1] = ACTIONS(4543), - [aux_sym_inquire_statement_token1] = ACTIONS(4543), - [aux_sym_enum_statement_token1] = ACTIONS(4543), - [aux_sym_file_position_statement_token1] = ACTIONS(4543), - [aux_sym_file_position_statement_token2] = ACTIONS(4543), - [aux_sym_file_position_statement_token3] = ACTIONS(4543), - [aux_sym_file_position_statement_token4] = ACTIONS(4543), - [aux_sym_allocate_statement_token1] = ACTIONS(4543), - [aux_sym_entry_statement_token1] = ACTIONS(4543), - [aux_sym_logical_expression_token5] = ACTIONS(4545), - [anon_sym_DOT] = ACTIONS(4543), - [anon_sym_LPAREN_SLASH] = ACTIONS(4545), - [anon_sym_LBRACK] = ACTIONS(4545), - [aux_sym_boolean_literal_token1] = ACTIONS(4545), - [aux_sym_boolean_literal_token2] = ACTIONS(4545), - [aux_sym_null_literal_token1] = ACTIONS(4543), - [aux_sym_coarray_statement_token1] = ACTIONS(4543), - [aux_sym_coarray_statement_token2] = ACTIONS(4543), - [aux_sym_coarray_statement_token6] = ACTIONS(4543), - [aux_sym_coarray_statement_token8] = ACTIONS(4543), - [aux_sym_coarray_statement_token11] = ACTIONS(4543), - [aux_sym_coarray_statement_token12] = ACTIONS(4543), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4543), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4543), - [aux_sym_identifier_token1] = ACTIONS(4543), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4545), - [sym__float_literal] = ACTIONS(4545), - [sym__boz_literal] = ACTIONS(4545), - [sym__string_literal] = ACTIONS(4545), - [sym__string_literal_kind] = ACTIONS(4545), + [aux_sym_preproc_include_token1] = ACTIONS(4553), + [aux_sym_preproc_def_token1] = ACTIONS(4553), + [aux_sym_preproc_if_token1] = ACTIONS(4553), + [aux_sym_preproc_if_token2] = ACTIONS(4553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4553), + [aux_sym_preproc_else_token1] = ACTIONS(4553), + [aux_sym_preproc_elif_token1] = ACTIONS(4553), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4553), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4553), + [sym_preproc_directive] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4553), + [aux_sym_end_program_statement_token1] = ACTIONS(4553), + [aux_sym_end_program_statement_token2] = ACTIONS(4553), + [aux_sym_module_statement_token1] = ACTIONS(4553), + [aux_sym_submodule_statement_token1] = ACTIONS(4553), + [aux_sym_interface_statement_token1] = ACTIONS(4553), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4553), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4553), + [aux_sym_subroutine_statement_token1] = ACTIONS(4553), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4553), + [aux_sym_function_statement_token1] = ACTIONS(4553), + [aux_sym_language_binding_token1] = ACTIONS(4553), + [aux_sym_procedure_attributes_token1] = ACTIONS(4553), + [aux_sym_procedure_attributes_token3] = ACTIONS(4553), + [aux_sym_contains_statement_token1] = ACTIONS(4553), + [aux_sym_use_statement_token1] = ACTIONS(4553), + [aux_sym_use_statement_token2] = ACTIONS(4553), + [aux_sym_implicit_statement_token1] = ACTIONS(4553), + [aux_sym_implicit_statement_token3] = ACTIONS(4553), + [aux_sym_implicit_statement_token4] = ACTIONS(4553), + [aux_sym_save_statement_token1] = ACTIONS(4553), + [aux_sym_private_statement_token1] = ACTIONS(4553), + [aux_sym_public_statement_token1] = ACTIONS(4553), + [aux_sym_namelist_statement_token1] = ACTIONS(4553), + [aux_sym_common_statement_token1] = ACTIONS(4553), + [aux_sym_import_statement_token1] = ACTIONS(4553), + [aux_sym_derived_type_definition_token1] = ACTIONS(4553), + [aux_sym_abstract_specifier_token1] = ACTIONS(4553), + [aux_sym_procedure_attribute_token6] = ACTIONS(4553), + [aux_sym_variable_attributes_token1] = ACTIONS(4553), + [aux_sym_variable_attributes_token2] = ACTIONS(4553), + [aux_sym_variable_attributes_token3] = ACTIONS(4553), + [aux_sym_variable_attributes_token4] = ACTIONS(4553), + [aux_sym_variable_attributes_token5] = ACTIONS(4553), + [aux_sym__intrinsic_type_token1] = ACTIONS(4553), + [aux_sym__intrinsic_type_token2] = ACTIONS(4553), + [aux_sym__intrinsic_type_token3] = ACTIONS(4553), + [aux_sym__intrinsic_type_token4] = ACTIONS(4553), + [aux_sym__intrinsic_type_token6] = ACTIONS(4553), + [aux_sym__intrinsic_type_token7] = ACTIONS(4553), + [aux_sym__intrinsic_type_token8] = ACTIONS(4553), + [aux_sym__intrinsic_type_token9] = ACTIONS(4553), + [aux_sym__intrinsic_type_token10] = ACTIONS(4553), + [aux_sym_derived_type_token1] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4553), + [aux_sym_type_qualifier_token1] = ACTIONS(4553), + [aux_sym_type_qualifier_token2] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4553), + [aux_sym_equivalence_statement_token1] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4555), + [aux_sym_stop_statement_token1] = ACTIONS(4553), + [aux_sym_stop_statement_token2] = ACTIONS(4553), + [aux_sym_subroutine_call_token1] = ACTIONS(4553), + [aux_sym_keyword_statement_token1] = ACTIONS(4553), + [aux_sym_keyword_statement_token2] = ACTIONS(4553), + [aux_sym_keyword_statement_token3] = ACTIONS(4553), + [aux_sym_keyword_statement_token4] = ACTIONS(4553), + [aux_sym_keyword_statement_token6] = ACTIONS(4553), + [aux_sym_keyword_statement_token7] = ACTIONS(4553), + [aux_sym_include_statement_token1] = ACTIONS(4553), + [aux_sym_data_statement_token1] = ACTIONS(4553), + [aux_sym_do_loop_statement_token1] = ACTIONS(4553), + [aux_sym__inline_if_statement_token1] = ACTIONS(4553), + [aux_sym_end_if_statement_token1] = ACTIONS(4553), + [aux_sym_elseif_clause_token2] = ACTIONS(4553), + [aux_sym__inline_where_statement_token1] = ACTIONS(4553), + [aux_sym__forall_control_expression_token1] = ACTIONS(4553), + [aux_sym_select_case_statement_token1] = ACTIONS(4553), + [aux_sym_select_case_statement_token3] = ACTIONS(4553), + [aux_sym_select_type_statement_token1] = ACTIONS(4553), + [aux_sym_select_rank_statement_token2] = ACTIONS(4553), + [aux_sym_block_construct_token1] = ACTIONS(4553), + [aux_sym_associate_statement_token1] = ACTIONS(4553), + [aux_sym_format_statement_token1] = ACTIONS(4553), + [aux_sym_print_statement_token1] = ACTIONS(4553), + [aux_sym_open_statement_token1] = ACTIONS(4553), + [aux_sym_close_statement_token1] = ACTIONS(4553), + [aux_sym_inquire_statement_token1] = ACTIONS(4553), + [aux_sym_enum_statement_token1] = ACTIONS(4553), + [aux_sym_file_position_statement_token1] = ACTIONS(4553), + [aux_sym_file_position_statement_token2] = ACTIONS(4553), + [aux_sym_file_position_statement_token3] = ACTIONS(4553), + [aux_sym_file_position_statement_token4] = ACTIONS(4553), + [aux_sym_allocate_statement_token1] = ACTIONS(4553), + [aux_sym_entry_statement_token1] = ACTIONS(4553), + [aux_sym_logical_expression_token5] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_LPAREN_SLASH] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4555), + [aux_sym_boolean_literal_token1] = ACTIONS(4555), + [aux_sym_boolean_literal_token2] = ACTIONS(4555), + [aux_sym_null_literal_token1] = ACTIONS(4553), + [aux_sym_coarray_statement_token1] = ACTIONS(4553), + [aux_sym_coarray_statement_token2] = ACTIONS(4553), + [aux_sym_coarray_statement_token6] = ACTIONS(4553), + [aux_sym_coarray_statement_token8] = ACTIONS(4553), + [aux_sym_coarray_statement_token11] = ACTIONS(4553), + [aux_sym_coarray_statement_token12] = ACTIONS(4553), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4553), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4553), + [aux_sym_identifier_token1] = ACTIONS(4553), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4555), + [sym__float_literal] = ACTIONS(4555), + [sym__boz_literal] = ACTIONS(4555), + [sym__string_literal] = ACTIONS(4555), + [sym__string_literal_kind] = ACTIONS(4555), }, [887] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token2] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [aux_sym_preproc_else_token1] = ACTIONS(4547), - [aux_sym_preproc_elif_token1] = ACTIONS(4547), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4547), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_end_program_statement_token2] = ACTIONS(4547), - [aux_sym_module_statement_token1] = ACTIONS(4547), - [aux_sym_submodule_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_subroutine_statement_token1] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_function_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), + [aux_sym_preproc_include_token1] = ACTIONS(4557), + [aux_sym_preproc_def_token1] = ACTIONS(4557), + [aux_sym_preproc_if_token1] = ACTIONS(4557), + [aux_sym_preproc_if_token2] = ACTIONS(4557), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4557), + [aux_sym_preproc_else_token1] = ACTIONS(4557), + [aux_sym_preproc_elif_token1] = ACTIONS(4557), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4557), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4557), + [sym_preproc_directive] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4557), + [aux_sym_end_program_statement_token1] = ACTIONS(4557), + [aux_sym_end_program_statement_token2] = ACTIONS(4557), + [aux_sym_module_statement_token1] = ACTIONS(4557), + [aux_sym_submodule_statement_token1] = ACTIONS(4557), + [aux_sym_interface_statement_token1] = ACTIONS(4557), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4557), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4557), + [aux_sym_subroutine_statement_token1] = ACTIONS(4557), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4557), + [aux_sym_function_statement_token1] = ACTIONS(4557), + [aux_sym_language_binding_token1] = ACTIONS(4557), + [aux_sym_procedure_attributes_token1] = ACTIONS(4557), + [aux_sym_procedure_attributes_token3] = ACTIONS(4557), + [aux_sym_contains_statement_token1] = ACTIONS(4557), + [aux_sym_use_statement_token1] = ACTIONS(4557), + [aux_sym_use_statement_token2] = ACTIONS(4557), + [aux_sym_implicit_statement_token1] = ACTIONS(4557), + [aux_sym_implicit_statement_token3] = ACTIONS(4557), + [aux_sym_implicit_statement_token4] = ACTIONS(4557), + [aux_sym_save_statement_token1] = ACTIONS(4557), + [aux_sym_private_statement_token1] = ACTIONS(4557), + [aux_sym_public_statement_token1] = ACTIONS(4557), + [aux_sym_namelist_statement_token1] = ACTIONS(4557), + [aux_sym_common_statement_token1] = ACTIONS(4557), + [aux_sym_import_statement_token1] = ACTIONS(4557), + [aux_sym_derived_type_definition_token1] = ACTIONS(4557), + [aux_sym_abstract_specifier_token1] = ACTIONS(4557), + [aux_sym_procedure_attribute_token6] = ACTIONS(4557), + [aux_sym_variable_attributes_token1] = ACTIONS(4557), + [aux_sym_variable_attributes_token2] = ACTIONS(4557), + [aux_sym_variable_attributes_token3] = ACTIONS(4557), + [aux_sym_variable_attributes_token4] = ACTIONS(4557), + [aux_sym_variable_attributes_token5] = ACTIONS(4557), + [aux_sym__intrinsic_type_token1] = ACTIONS(4557), + [aux_sym__intrinsic_type_token2] = ACTIONS(4557), + [aux_sym__intrinsic_type_token3] = ACTIONS(4557), + [aux_sym__intrinsic_type_token4] = ACTIONS(4557), + [aux_sym__intrinsic_type_token6] = ACTIONS(4557), + [aux_sym__intrinsic_type_token7] = ACTIONS(4557), + [aux_sym__intrinsic_type_token8] = ACTIONS(4557), + [aux_sym__intrinsic_type_token9] = ACTIONS(4557), + [aux_sym__intrinsic_type_token10] = ACTIONS(4557), + [aux_sym_derived_type_token1] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4557), + [aux_sym_type_qualifier_token1] = ACTIONS(4557), + [aux_sym_type_qualifier_token2] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4557), + [aux_sym_equivalence_statement_token1] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [aux_sym_stop_statement_token1] = ACTIONS(4557), + [aux_sym_stop_statement_token2] = ACTIONS(4557), + [aux_sym_subroutine_call_token1] = ACTIONS(4557), + [aux_sym_keyword_statement_token1] = ACTIONS(4557), + [aux_sym_keyword_statement_token2] = ACTIONS(4557), + [aux_sym_keyword_statement_token3] = ACTIONS(4557), + [aux_sym_keyword_statement_token4] = ACTIONS(4557), + [aux_sym_keyword_statement_token6] = ACTIONS(4557), + [aux_sym_keyword_statement_token7] = ACTIONS(4557), + [aux_sym_include_statement_token1] = ACTIONS(4557), + [aux_sym_data_statement_token1] = ACTIONS(4557), + [aux_sym_do_loop_statement_token1] = ACTIONS(4557), + [aux_sym__inline_if_statement_token1] = ACTIONS(4557), + [aux_sym_end_if_statement_token1] = ACTIONS(4557), + [aux_sym_elseif_clause_token2] = ACTIONS(4557), + [aux_sym__inline_where_statement_token1] = ACTIONS(4557), + [aux_sym__forall_control_expression_token1] = ACTIONS(4557), + [aux_sym_select_case_statement_token1] = ACTIONS(4557), + [aux_sym_select_case_statement_token3] = ACTIONS(4557), + [aux_sym_select_type_statement_token1] = ACTIONS(4557), + [aux_sym_select_rank_statement_token2] = ACTIONS(4557), + [aux_sym_block_construct_token1] = ACTIONS(4557), + [aux_sym_associate_statement_token1] = ACTIONS(4557), + [aux_sym_format_statement_token1] = ACTIONS(4557), + [aux_sym_print_statement_token1] = ACTIONS(4557), + [aux_sym_open_statement_token1] = ACTIONS(4557), + [aux_sym_close_statement_token1] = ACTIONS(4557), + [aux_sym_inquire_statement_token1] = ACTIONS(4557), + [aux_sym_enum_statement_token1] = ACTIONS(4557), + [aux_sym_file_position_statement_token1] = ACTIONS(4557), + [aux_sym_file_position_statement_token2] = ACTIONS(4557), + [aux_sym_file_position_statement_token3] = ACTIONS(4557), + [aux_sym_file_position_statement_token4] = ACTIONS(4557), + [aux_sym_allocate_statement_token1] = ACTIONS(4557), + [aux_sym_entry_statement_token1] = ACTIONS(4557), + [aux_sym_logical_expression_token5] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_LPAREN_SLASH] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [aux_sym_boolean_literal_token1] = ACTIONS(4559), + [aux_sym_boolean_literal_token2] = ACTIONS(4559), + [aux_sym_null_literal_token1] = ACTIONS(4557), + [aux_sym_coarray_statement_token1] = ACTIONS(4557), + [aux_sym_coarray_statement_token2] = ACTIONS(4557), + [aux_sym_coarray_statement_token6] = ACTIONS(4557), + [aux_sym_coarray_statement_token8] = ACTIONS(4557), + [aux_sym_coarray_statement_token11] = ACTIONS(4557), + [aux_sym_coarray_statement_token12] = ACTIONS(4557), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4557), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4557), + [aux_sym_identifier_token1] = ACTIONS(4557), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4559), + [sym__float_literal] = ACTIONS(4559), + [sym__boz_literal] = ACTIONS(4559), + [sym__string_literal] = ACTIONS(4559), + [sym__string_literal_kind] = ACTIONS(4559), }, [888] = { - [aux_sym_preproc_include_token1] = ACTIONS(4551), - [aux_sym_preproc_def_token1] = ACTIONS(4551), - [aux_sym_preproc_if_token1] = ACTIONS(4551), - [aux_sym_preproc_if_token2] = ACTIONS(4551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4551), - [aux_sym_preproc_else_token1] = ACTIONS(4551), - [aux_sym_preproc_elif_token1] = ACTIONS(4551), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4551), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4551), - [sym_preproc_directive] = ACTIONS(4551), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4551), - [aux_sym_end_program_statement_token1] = ACTIONS(4551), - [aux_sym_end_program_statement_token2] = ACTIONS(4551), - [aux_sym_module_statement_token1] = ACTIONS(4551), - [aux_sym_submodule_statement_token1] = ACTIONS(4551), - [aux_sym_interface_statement_token1] = ACTIONS(4551), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4551), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4551), - [aux_sym_subroutine_statement_token1] = ACTIONS(4551), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4551), - [aux_sym_function_statement_token1] = ACTIONS(4551), - [aux_sym_language_binding_token1] = ACTIONS(4551), - [aux_sym_procedure_attributes_token1] = ACTIONS(4551), - [aux_sym_procedure_attributes_token3] = ACTIONS(4551), - [aux_sym_contains_statement_token1] = ACTIONS(4551), - [aux_sym_use_statement_token1] = ACTIONS(4551), - [aux_sym_use_statement_token2] = ACTIONS(4551), - [aux_sym_implicit_statement_token1] = ACTIONS(4551), - [aux_sym_implicit_statement_token3] = ACTIONS(4551), - [aux_sym_implicit_statement_token4] = ACTIONS(4551), - [aux_sym_save_statement_token1] = ACTIONS(4551), - [aux_sym_private_statement_token1] = ACTIONS(4551), - [aux_sym_public_statement_token1] = ACTIONS(4551), - [aux_sym_namelist_statement_token1] = ACTIONS(4551), - [aux_sym_common_statement_token1] = ACTIONS(4551), - [aux_sym_import_statement_token1] = ACTIONS(4551), - [aux_sym_derived_type_definition_token1] = ACTIONS(4551), - [aux_sym_abstract_specifier_token1] = ACTIONS(4551), - [aux_sym_procedure_attribute_token6] = ACTIONS(4551), - [aux_sym_variable_attributes_token1] = ACTIONS(4551), - [aux_sym_variable_attributes_token2] = ACTIONS(4551), - [aux_sym_variable_attributes_token3] = ACTIONS(4551), - [aux_sym_variable_attributes_token4] = ACTIONS(4551), - [aux_sym_variable_attributes_token5] = ACTIONS(4551), - [aux_sym__intrinsic_type_token1] = ACTIONS(4551), - [aux_sym__intrinsic_type_token2] = ACTIONS(4551), - [aux_sym__intrinsic_type_token3] = ACTIONS(4551), - [aux_sym__intrinsic_type_token4] = ACTIONS(4551), - [aux_sym__intrinsic_type_token6] = ACTIONS(4551), - [aux_sym__intrinsic_type_token7] = ACTIONS(4551), - [aux_sym__intrinsic_type_token8] = ACTIONS(4551), - [aux_sym__intrinsic_type_token9] = ACTIONS(4551), - [aux_sym__intrinsic_type_token10] = ACTIONS(4551), - [aux_sym_derived_type_token1] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4551), - [aux_sym_type_qualifier_token1] = ACTIONS(4551), - [aux_sym_type_qualifier_token2] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4551), - [aux_sym_equivalence_statement_token1] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4553), - [aux_sym_stop_statement_token1] = ACTIONS(4551), - [aux_sym_stop_statement_token2] = ACTIONS(4551), - [aux_sym_subroutine_call_token1] = ACTIONS(4551), - [aux_sym_keyword_statement_token1] = ACTIONS(4551), - [aux_sym_keyword_statement_token2] = ACTIONS(4551), - [aux_sym_keyword_statement_token3] = ACTIONS(4551), - [aux_sym_keyword_statement_token4] = ACTIONS(4551), - [aux_sym_keyword_statement_token6] = ACTIONS(4551), - [aux_sym_keyword_statement_token7] = ACTIONS(4551), - [aux_sym_include_statement_token1] = ACTIONS(4551), - [aux_sym_data_statement_token1] = ACTIONS(4551), - [aux_sym_do_loop_statement_token1] = ACTIONS(4551), - [aux_sym__inline_if_statement_token1] = ACTIONS(4551), - [aux_sym_end_if_statement_token1] = ACTIONS(4551), - [aux_sym_elseif_clause_token2] = ACTIONS(4551), - [aux_sym__inline_where_statement_token1] = ACTIONS(4551), - [aux_sym__forall_control_expression_token1] = ACTIONS(4551), - [aux_sym_select_case_statement_token1] = ACTIONS(4551), - [aux_sym_select_case_statement_token3] = ACTIONS(4551), - [aux_sym_select_type_statement_token1] = ACTIONS(4551), - [aux_sym_select_rank_statement_token2] = ACTIONS(4551), - [aux_sym_block_construct_token1] = ACTIONS(4551), - [aux_sym_associate_statement_token1] = ACTIONS(4551), - [aux_sym_format_statement_token1] = ACTIONS(4551), - [aux_sym_print_statement_token1] = ACTIONS(4551), - [aux_sym_open_statement_token1] = ACTIONS(4551), - [aux_sym_close_statement_token1] = ACTIONS(4551), - [aux_sym_inquire_statement_token1] = ACTIONS(4551), - [aux_sym_enum_statement_token1] = ACTIONS(4551), - [aux_sym_file_position_statement_token1] = ACTIONS(4551), - [aux_sym_file_position_statement_token2] = ACTIONS(4551), - [aux_sym_file_position_statement_token3] = ACTIONS(4551), - [aux_sym_file_position_statement_token4] = ACTIONS(4551), - [aux_sym_allocate_statement_token1] = ACTIONS(4551), - [aux_sym_entry_statement_token1] = ACTIONS(4551), - [aux_sym_logical_expression_token5] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4551), - [anon_sym_LPAREN_SLASH] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4553), - [aux_sym_boolean_literal_token1] = ACTIONS(4553), - [aux_sym_boolean_literal_token2] = ACTIONS(4553), - [aux_sym_null_literal_token1] = ACTIONS(4551), - [aux_sym_coarray_statement_token1] = ACTIONS(4551), - [aux_sym_coarray_statement_token2] = ACTIONS(4551), - [aux_sym_coarray_statement_token6] = ACTIONS(4551), - [aux_sym_coarray_statement_token8] = ACTIONS(4551), - [aux_sym_coarray_statement_token11] = ACTIONS(4551), - [aux_sym_coarray_statement_token12] = ACTIONS(4551), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4551), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4551), - [aux_sym_identifier_token1] = ACTIONS(4551), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4553), - [sym__float_literal] = ACTIONS(4553), - [sym__boz_literal] = ACTIONS(4553), - [sym__string_literal] = ACTIONS(4553), - [sym__string_literal_kind] = ACTIONS(4553), + [aux_sym_preproc_include_token1] = ACTIONS(4561), + [aux_sym_preproc_def_token1] = ACTIONS(4561), + [aux_sym_preproc_if_token1] = ACTIONS(4561), + [aux_sym_preproc_if_token2] = ACTIONS(4561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4561), + [aux_sym_preproc_else_token1] = ACTIONS(4561), + [aux_sym_preproc_elif_token1] = ACTIONS(4561), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4561), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4561), + [sym_preproc_directive] = ACTIONS(4561), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4561), + [aux_sym_end_program_statement_token1] = ACTIONS(4561), + [aux_sym_end_program_statement_token2] = ACTIONS(4561), + [aux_sym_module_statement_token1] = ACTIONS(4561), + [aux_sym_submodule_statement_token1] = ACTIONS(4561), + [aux_sym_interface_statement_token1] = ACTIONS(4561), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4561), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4561), + [aux_sym_subroutine_statement_token1] = ACTIONS(4561), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4561), + [aux_sym_function_statement_token1] = ACTIONS(4561), + [aux_sym_language_binding_token1] = ACTIONS(4561), + [aux_sym_procedure_attributes_token1] = ACTIONS(4561), + [aux_sym_procedure_attributes_token3] = ACTIONS(4561), + [aux_sym_contains_statement_token1] = ACTIONS(4561), + [aux_sym_use_statement_token1] = ACTIONS(4561), + [aux_sym_use_statement_token2] = ACTIONS(4561), + [aux_sym_implicit_statement_token1] = ACTIONS(4561), + [aux_sym_implicit_statement_token3] = ACTIONS(4561), + [aux_sym_implicit_statement_token4] = ACTIONS(4561), + [aux_sym_save_statement_token1] = ACTIONS(4561), + [aux_sym_private_statement_token1] = ACTIONS(4561), + [aux_sym_public_statement_token1] = ACTIONS(4561), + [aux_sym_namelist_statement_token1] = ACTIONS(4561), + [aux_sym_common_statement_token1] = ACTIONS(4561), + [aux_sym_import_statement_token1] = ACTIONS(4561), + [aux_sym_derived_type_definition_token1] = ACTIONS(4561), + [aux_sym_abstract_specifier_token1] = ACTIONS(4561), + [aux_sym_procedure_attribute_token6] = ACTIONS(4561), + [aux_sym_variable_attributes_token1] = ACTIONS(4561), + [aux_sym_variable_attributes_token2] = ACTIONS(4561), + [aux_sym_variable_attributes_token3] = ACTIONS(4561), + [aux_sym_variable_attributes_token4] = ACTIONS(4561), + [aux_sym_variable_attributes_token5] = ACTIONS(4561), + [aux_sym__intrinsic_type_token1] = ACTIONS(4561), + [aux_sym__intrinsic_type_token2] = ACTIONS(4561), + [aux_sym__intrinsic_type_token3] = ACTIONS(4561), + [aux_sym__intrinsic_type_token4] = ACTIONS(4561), + [aux_sym__intrinsic_type_token6] = ACTIONS(4561), + [aux_sym__intrinsic_type_token7] = ACTIONS(4561), + [aux_sym__intrinsic_type_token8] = ACTIONS(4561), + [aux_sym__intrinsic_type_token9] = ACTIONS(4561), + [aux_sym__intrinsic_type_token10] = ACTIONS(4561), + [aux_sym_derived_type_token1] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4561), + [aux_sym_type_qualifier_token1] = ACTIONS(4561), + [aux_sym_type_qualifier_token2] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4561), + [aux_sym_equivalence_statement_token1] = ACTIONS(4561), + [anon_sym_SEMI] = ACTIONS(4563), + [aux_sym_stop_statement_token1] = ACTIONS(4561), + [aux_sym_stop_statement_token2] = ACTIONS(4561), + [aux_sym_subroutine_call_token1] = ACTIONS(4561), + [aux_sym_keyword_statement_token1] = ACTIONS(4561), + [aux_sym_keyword_statement_token2] = ACTIONS(4561), + [aux_sym_keyword_statement_token3] = ACTIONS(4561), + [aux_sym_keyword_statement_token4] = ACTIONS(4561), + [aux_sym_keyword_statement_token6] = ACTIONS(4561), + [aux_sym_keyword_statement_token7] = ACTIONS(4561), + [aux_sym_include_statement_token1] = ACTIONS(4561), + [aux_sym_data_statement_token1] = ACTIONS(4561), + [aux_sym_do_loop_statement_token1] = ACTIONS(4561), + [aux_sym__inline_if_statement_token1] = ACTIONS(4561), + [aux_sym_end_if_statement_token1] = ACTIONS(4561), + [aux_sym_elseif_clause_token2] = ACTIONS(4561), + [aux_sym__inline_where_statement_token1] = ACTIONS(4561), + [aux_sym__forall_control_expression_token1] = ACTIONS(4561), + [aux_sym_select_case_statement_token1] = ACTIONS(4561), + [aux_sym_select_case_statement_token3] = ACTIONS(4561), + [aux_sym_select_type_statement_token1] = ACTIONS(4561), + [aux_sym_select_rank_statement_token2] = ACTIONS(4561), + [aux_sym_block_construct_token1] = ACTIONS(4561), + [aux_sym_associate_statement_token1] = ACTIONS(4561), + [aux_sym_format_statement_token1] = ACTIONS(4561), + [aux_sym_print_statement_token1] = ACTIONS(4561), + [aux_sym_open_statement_token1] = ACTIONS(4561), + [aux_sym_close_statement_token1] = ACTIONS(4561), + [aux_sym_inquire_statement_token1] = ACTIONS(4561), + [aux_sym_enum_statement_token1] = ACTIONS(4561), + [aux_sym_file_position_statement_token1] = ACTIONS(4561), + [aux_sym_file_position_statement_token2] = ACTIONS(4561), + [aux_sym_file_position_statement_token3] = ACTIONS(4561), + [aux_sym_file_position_statement_token4] = ACTIONS(4561), + [aux_sym_allocate_statement_token1] = ACTIONS(4561), + [aux_sym_entry_statement_token1] = ACTIONS(4561), + [aux_sym_logical_expression_token5] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4561), + [anon_sym_LPAREN_SLASH] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4563), + [aux_sym_boolean_literal_token1] = ACTIONS(4563), + [aux_sym_boolean_literal_token2] = ACTIONS(4563), + [aux_sym_null_literal_token1] = ACTIONS(4561), + [aux_sym_coarray_statement_token1] = ACTIONS(4561), + [aux_sym_coarray_statement_token2] = ACTIONS(4561), + [aux_sym_coarray_statement_token6] = ACTIONS(4561), + [aux_sym_coarray_statement_token8] = ACTIONS(4561), + [aux_sym_coarray_statement_token11] = ACTIONS(4561), + [aux_sym_coarray_statement_token12] = ACTIONS(4561), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4561), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4561), + [aux_sym_identifier_token1] = ACTIONS(4561), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4563), + [sym__float_literal] = ACTIONS(4563), + [sym__boz_literal] = ACTIONS(4563), + [sym__string_literal] = ACTIONS(4563), + [sym__string_literal_kind] = ACTIONS(4563), }, [889] = { - [aux_sym_preproc_include_token1] = ACTIONS(4555), - [aux_sym_preproc_def_token1] = ACTIONS(4555), - [aux_sym_preproc_if_token1] = ACTIONS(4555), - [aux_sym_preproc_if_token2] = ACTIONS(4555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4555), - [aux_sym_preproc_else_token1] = ACTIONS(4555), - [aux_sym_preproc_elif_token1] = ACTIONS(4555), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4555), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4555), - [sym_preproc_directive] = ACTIONS(4555), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_PLUS] = ACTIONS(4557), - [anon_sym_DASH] = ACTIONS(4557), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4555), - [aux_sym_end_program_statement_token1] = ACTIONS(4555), - [aux_sym_end_program_statement_token2] = ACTIONS(4555), - [aux_sym_module_statement_token1] = ACTIONS(4555), - [aux_sym_submodule_statement_token1] = ACTIONS(4555), - [aux_sym_interface_statement_token1] = ACTIONS(4555), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4555), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4555), - [aux_sym_subroutine_statement_token1] = ACTIONS(4555), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4555), - [aux_sym_function_statement_token1] = ACTIONS(4555), - [aux_sym_language_binding_token1] = ACTIONS(4555), - [aux_sym_procedure_attributes_token1] = ACTIONS(4555), - [aux_sym_procedure_attributes_token3] = ACTIONS(4555), - [aux_sym_contains_statement_token1] = ACTIONS(4555), - [aux_sym_use_statement_token1] = ACTIONS(4555), - [aux_sym_use_statement_token2] = ACTIONS(4555), - [aux_sym_implicit_statement_token1] = ACTIONS(4555), - [aux_sym_implicit_statement_token3] = ACTIONS(4555), - [aux_sym_implicit_statement_token4] = ACTIONS(4555), - [aux_sym_save_statement_token1] = ACTIONS(4555), - [aux_sym_private_statement_token1] = ACTIONS(4555), - [aux_sym_public_statement_token1] = ACTIONS(4555), - [aux_sym_namelist_statement_token1] = ACTIONS(4555), - [aux_sym_common_statement_token1] = ACTIONS(4555), - [aux_sym_import_statement_token1] = ACTIONS(4555), - [aux_sym_derived_type_definition_token1] = ACTIONS(4555), - [aux_sym_abstract_specifier_token1] = ACTIONS(4555), - [aux_sym_procedure_attribute_token6] = ACTIONS(4555), - [aux_sym_variable_attributes_token1] = ACTIONS(4555), - [aux_sym_variable_attributes_token2] = ACTIONS(4555), - [aux_sym_variable_attributes_token3] = ACTIONS(4555), - [aux_sym_variable_attributes_token4] = ACTIONS(4555), - [aux_sym_variable_attributes_token5] = ACTIONS(4555), - [aux_sym__intrinsic_type_token1] = ACTIONS(4555), - [aux_sym__intrinsic_type_token2] = ACTIONS(4555), - [aux_sym__intrinsic_type_token3] = ACTIONS(4555), - [aux_sym__intrinsic_type_token4] = ACTIONS(4555), - [aux_sym__intrinsic_type_token6] = ACTIONS(4555), - [aux_sym__intrinsic_type_token7] = ACTIONS(4555), - [aux_sym__intrinsic_type_token8] = ACTIONS(4555), - [aux_sym__intrinsic_type_token9] = ACTIONS(4555), - [aux_sym__intrinsic_type_token10] = ACTIONS(4555), - [aux_sym_derived_type_token1] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4555), - [aux_sym_type_qualifier_token1] = ACTIONS(4555), - [aux_sym_type_qualifier_token2] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4555), - [aux_sym_equivalence_statement_token1] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(4557), - [aux_sym_stop_statement_token1] = ACTIONS(4555), - [aux_sym_stop_statement_token2] = ACTIONS(4555), - [aux_sym_subroutine_call_token1] = ACTIONS(4555), - [aux_sym_keyword_statement_token1] = ACTIONS(4555), - [aux_sym_keyword_statement_token2] = ACTIONS(4555), - [aux_sym_keyword_statement_token3] = ACTIONS(4555), - [aux_sym_keyword_statement_token4] = ACTIONS(4555), - [aux_sym_keyword_statement_token6] = ACTIONS(4555), - [aux_sym_keyword_statement_token7] = ACTIONS(4555), - [aux_sym_include_statement_token1] = ACTIONS(4555), - [aux_sym_data_statement_token1] = ACTIONS(4555), - [aux_sym_do_loop_statement_token1] = ACTIONS(4555), - [aux_sym__inline_if_statement_token1] = ACTIONS(4555), - [aux_sym_end_if_statement_token1] = ACTIONS(4555), - [aux_sym_elseif_clause_token2] = ACTIONS(4555), - [aux_sym__inline_where_statement_token1] = ACTIONS(4555), - [aux_sym__forall_control_expression_token1] = ACTIONS(4555), - [aux_sym_select_case_statement_token1] = ACTIONS(4555), - [aux_sym_select_case_statement_token3] = ACTIONS(4555), - [aux_sym_select_type_statement_token1] = ACTIONS(4555), - [aux_sym_select_rank_statement_token2] = ACTIONS(4555), - [aux_sym_block_construct_token1] = ACTIONS(4555), - [aux_sym_associate_statement_token1] = ACTIONS(4555), - [aux_sym_format_statement_token1] = ACTIONS(4555), - [aux_sym_print_statement_token1] = ACTIONS(4555), - [aux_sym_open_statement_token1] = ACTIONS(4555), - [aux_sym_close_statement_token1] = ACTIONS(4555), - [aux_sym_inquire_statement_token1] = ACTIONS(4555), - [aux_sym_enum_statement_token1] = ACTIONS(4555), - [aux_sym_file_position_statement_token1] = ACTIONS(4555), - [aux_sym_file_position_statement_token2] = ACTIONS(4555), - [aux_sym_file_position_statement_token3] = ACTIONS(4555), - [aux_sym_file_position_statement_token4] = ACTIONS(4555), - [aux_sym_allocate_statement_token1] = ACTIONS(4555), - [aux_sym_entry_statement_token1] = ACTIONS(4555), - [aux_sym_logical_expression_token5] = ACTIONS(4557), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_LPAREN_SLASH] = ACTIONS(4557), - [anon_sym_LBRACK] = ACTIONS(4557), - [aux_sym_boolean_literal_token1] = ACTIONS(4557), - [aux_sym_boolean_literal_token2] = ACTIONS(4557), - [aux_sym_null_literal_token1] = ACTIONS(4555), - [aux_sym_coarray_statement_token1] = ACTIONS(4555), - [aux_sym_coarray_statement_token2] = ACTIONS(4555), - [aux_sym_coarray_statement_token6] = ACTIONS(4555), - [aux_sym_coarray_statement_token8] = ACTIONS(4555), - [aux_sym_coarray_statement_token11] = ACTIONS(4555), - [aux_sym_coarray_statement_token12] = ACTIONS(4555), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4555), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4555), - [aux_sym_identifier_token1] = ACTIONS(4555), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4557), - [sym__float_literal] = ACTIONS(4557), - [sym__boz_literal] = ACTIONS(4557), - [sym__string_literal] = ACTIONS(4557), - [sym__string_literal_kind] = ACTIONS(4557), + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [aux_sym_preproc_else_token1] = ACTIONS(4297), + [aux_sym_preproc_elif_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token2] = ACTIONS(4297), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4297), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4297), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token3] = ACTIONS(4297), + [aux_sym_contains_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token2] = ACTIONS(4297), + [aux_sym_implicit_statement_token1] = ACTIONS(4297), + [aux_sym_implicit_statement_token3] = ACTIONS(4297), + [aux_sym_implicit_statement_token4] = ACTIONS(4297), + [aux_sym_save_statement_token1] = ACTIONS(4297), + [aux_sym_private_statement_token1] = ACTIONS(4297), + [aux_sym_public_statement_token1] = ACTIONS(4297), + [aux_sym_namelist_statement_token1] = ACTIONS(4297), + [aux_sym_common_statement_token1] = ACTIONS(4297), + [aux_sym_import_statement_token1] = ACTIONS(4297), + [aux_sym_derived_type_definition_token1] = ACTIONS(4297), + [aux_sym_abstract_specifier_token1] = ACTIONS(4297), + [aux_sym_procedure_attribute_token6] = ACTIONS(4297), + [aux_sym_variable_attributes_token1] = ACTIONS(4297), + [aux_sym_variable_attributes_token2] = ACTIONS(4297), + [aux_sym_variable_attributes_token3] = ACTIONS(4297), + [aux_sym_variable_attributes_token4] = ACTIONS(4297), + [aux_sym_variable_attributes_token5] = ACTIONS(4297), + [aux_sym__intrinsic_type_token1] = ACTIONS(4297), + [aux_sym__intrinsic_type_token2] = ACTIONS(4297), + [aux_sym__intrinsic_type_token3] = ACTIONS(4297), + [aux_sym__intrinsic_type_token4] = ACTIONS(4297), + [aux_sym__intrinsic_type_token6] = ACTIONS(4297), + [aux_sym__intrinsic_type_token7] = ACTIONS(4297), + [aux_sym__intrinsic_type_token8] = ACTIONS(4297), + [aux_sym__intrinsic_type_token9] = ACTIONS(4297), + [aux_sym__intrinsic_type_token10] = ACTIONS(4297), + [aux_sym_derived_type_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4297), + [aux_sym_type_qualifier_token1] = ACTIONS(4297), + [aux_sym_type_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4301), + [aux_sym_stop_statement_token1] = ACTIONS(4297), + [aux_sym_stop_statement_token2] = ACTIONS(4297), + [aux_sym_subroutine_call_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token2] = ACTIONS(4297), + [aux_sym_keyword_statement_token3] = ACTIONS(4297), + [aux_sym_keyword_statement_token4] = ACTIONS(4297), + [aux_sym_keyword_statement_token6] = ACTIONS(4297), + [aux_sym_keyword_statement_token7] = ACTIONS(4297), + [aux_sym_include_statement_token1] = ACTIONS(4297), + [aux_sym_data_statement_token1] = ACTIONS(4297), + [aux_sym_do_loop_statement_token1] = ACTIONS(4297), + [aux_sym__inline_if_statement_token1] = ACTIONS(4297), + [aux_sym_end_if_statement_token1] = ACTIONS(4297), + [aux_sym_elseif_clause_token2] = ACTIONS(4297), + [aux_sym__inline_where_statement_token1] = ACTIONS(4297), + [aux_sym__forall_control_expression_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token3] = ACTIONS(4297), + [aux_sym_select_type_statement_token1] = ACTIONS(4297), + [aux_sym_select_rank_statement_token2] = ACTIONS(4297), + [aux_sym_block_construct_token1] = ACTIONS(4297), + [aux_sym_associate_statement_token1] = ACTIONS(4297), + [aux_sym_format_statement_token1] = ACTIONS(4297), + [aux_sym_print_statement_token1] = ACTIONS(4297), + [aux_sym_open_statement_token1] = ACTIONS(4297), + [aux_sym_close_statement_token1] = ACTIONS(4297), + [aux_sym_inquire_statement_token1] = ACTIONS(4297), + [aux_sym_enum_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token2] = ACTIONS(4297), + [aux_sym_file_position_statement_token3] = ACTIONS(4297), + [aux_sym_file_position_statement_token4] = ACTIONS(4297), + [aux_sym_allocate_statement_token1] = ACTIONS(4297), + [aux_sym_entry_statement_token1] = ACTIONS(4297), + [aux_sym_logical_expression_token5] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_LPAREN_SLASH] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [aux_sym_boolean_literal_token1] = ACTIONS(4301), + [aux_sym_boolean_literal_token2] = ACTIONS(4301), + [aux_sym_null_literal_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token2] = ACTIONS(4297), + [aux_sym_coarray_statement_token6] = ACTIONS(4297), + [aux_sym_coarray_statement_token8] = ACTIONS(4297), + [aux_sym_coarray_statement_token11] = ACTIONS(4297), + [aux_sym_coarray_statement_token12] = ACTIONS(4297), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4297), + [aux_sym_identifier_token1] = ACTIONS(4297), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4301), + [sym__float_literal] = ACTIONS(4301), + [sym__boz_literal] = ACTIONS(4301), + [sym__string_literal] = ACTIONS(4301), + [sym__string_literal_kind] = ACTIONS(4301), }, [890] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [aux_sym_preproc_else_token1] = ACTIONS(4559), - [aux_sym_preproc_elif_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token2] = ACTIONS(4559), - [aux_sym_module_statement_token1] = ACTIONS(4559), - [aux_sym_submodule_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_subroutine_statement_token1] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_function_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [aux_sym_preproc_include_token1] = ACTIONS(4565), + [aux_sym_preproc_def_token1] = ACTIONS(4565), + [aux_sym_preproc_if_token1] = ACTIONS(4565), + [aux_sym_preproc_if_token2] = ACTIONS(4565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4565), + [aux_sym_preproc_else_token1] = ACTIONS(4565), + [aux_sym_preproc_elif_token1] = ACTIONS(4565), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4565), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4565), + [sym_preproc_directive] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4565), + [aux_sym_end_program_statement_token1] = ACTIONS(4565), + [aux_sym_end_program_statement_token2] = ACTIONS(4565), + [aux_sym_module_statement_token1] = ACTIONS(4565), + [aux_sym_submodule_statement_token1] = ACTIONS(4565), + [aux_sym_interface_statement_token1] = ACTIONS(4565), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4565), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4565), + [aux_sym_subroutine_statement_token1] = ACTIONS(4565), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4565), + [aux_sym_function_statement_token1] = ACTIONS(4565), + [aux_sym_language_binding_token1] = ACTIONS(4565), + [aux_sym_procedure_attributes_token1] = ACTIONS(4565), + [aux_sym_procedure_attributes_token3] = ACTIONS(4565), + [aux_sym_contains_statement_token1] = ACTIONS(4565), + [aux_sym_use_statement_token1] = ACTIONS(4565), + [aux_sym_use_statement_token2] = ACTIONS(4565), + [aux_sym_implicit_statement_token1] = ACTIONS(4565), + [aux_sym_implicit_statement_token3] = ACTIONS(4565), + [aux_sym_implicit_statement_token4] = ACTIONS(4565), + [aux_sym_save_statement_token1] = ACTIONS(4565), + [aux_sym_private_statement_token1] = ACTIONS(4565), + [aux_sym_public_statement_token1] = ACTIONS(4565), + [aux_sym_namelist_statement_token1] = ACTIONS(4565), + [aux_sym_common_statement_token1] = ACTIONS(4565), + [aux_sym_import_statement_token1] = ACTIONS(4565), + [aux_sym_derived_type_definition_token1] = ACTIONS(4565), + [aux_sym_abstract_specifier_token1] = ACTIONS(4565), + [aux_sym_procedure_attribute_token6] = ACTIONS(4565), + [aux_sym_variable_attributes_token1] = ACTIONS(4565), + [aux_sym_variable_attributes_token2] = ACTIONS(4565), + [aux_sym_variable_attributes_token3] = ACTIONS(4565), + [aux_sym_variable_attributes_token4] = ACTIONS(4565), + [aux_sym_variable_attributes_token5] = ACTIONS(4565), + [aux_sym__intrinsic_type_token1] = ACTIONS(4565), + [aux_sym__intrinsic_type_token2] = ACTIONS(4565), + [aux_sym__intrinsic_type_token3] = ACTIONS(4565), + [aux_sym__intrinsic_type_token4] = ACTIONS(4565), + [aux_sym__intrinsic_type_token6] = ACTIONS(4565), + [aux_sym__intrinsic_type_token7] = ACTIONS(4565), + [aux_sym__intrinsic_type_token8] = ACTIONS(4565), + [aux_sym__intrinsic_type_token9] = ACTIONS(4565), + [aux_sym__intrinsic_type_token10] = ACTIONS(4565), + [aux_sym_derived_type_token1] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4565), + [aux_sym_type_qualifier_token1] = ACTIONS(4565), + [aux_sym_type_qualifier_token2] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4565), + [aux_sym_equivalence_statement_token1] = ACTIONS(4565), + [anon_sym_SEMI] = ACTIONS(4567), + [aux_sym_stop_statement_token1] = ACTIONS(4565), + [aux_sym_stop_statement_token2] = ACTIONS(4565), + [aux_sym_subroutine_call_token1] = ACTIONS(4565), + [aux_sym_keyword_statement_token1] = ACTIONS(4565), + [aux_sym_keyword_statement_token2] = ACTIONS(4565), + [aux_sym_keyword_statement_token3] = ACTIONS(4565), + [aux_sym_keyword_statement_token4] = ACTIONS(4565), + [aux_sym_keyword_statement_token6] = ACTIONS(4565), + [aux_sym_keyword_statement_token7] = ACTIONS(4565), + [aux_sym_include_statement_token1] = ACTIONS(4565), + [aux_sym_data_statement_token1] = ACTIONS(4565), + [aux_sym_do_loop_statement_token1] = ACTIONS(4565), + [aux_sym__inline_if_statement_token1] = ACTIONS(4565), + [aux_sym_end_if_statement_token1] = ACTIONS(4565), + [aux_sym_elseif_clause_token2] = ACTIONS(4565), + [aux_sym__inline_where_statement_token1] = ACTIONS(4565), + [aux_sym__forall_control_expression_token1] = ACTIONS(4565), + [aux_sym_select_case_statement_token1] = ACTIONS(4565), + [aux_sym_select_case_statement_token3] = ACTIONS(4565), + [aux_sym_select_type_statement_token1] = ACTIONS(4565), + [aux_sym_select_rank_statement_token2] = ACTIONS(4565), + [aux_sym_block_construct_token1] = ACTIONS(4565), + [aux_sym_associate_statement_token1] = ACTIONS(4565), + [aux_sym_format_statement_token1] = ACTIONS(4565), + [aux_sym_print_statement_token1] = ACTIONS(4565), + [aux_sym_open_statement_token1] = ACTIONS(4565), + [aux_sym_close_statement_token1] = ACTIONS(4565), + [aux_sym_inquire_statement_token1] = ACTIONS(4565), + [aux_sym_enum_statement_token1] = ACTIONS(4565), + [aux_sym_file_position_statement_token1] = ACTIONS(4565), + [aux_sym_file_position_statement_token2] = ACTIONS(4565), + [aux_sym_file_position_statement_token3] = ACTIONS(4565), + [aux_sym_file_position_statement_token4] = ACTIONS(4565), + [aux_sym_allocate_statement_token1] = ACTIONS(4565), + [aux_sym_entry_statement_token1] = ACTIONS(4565), + [aux_sym_logical_expression_token5] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4565), + [anon_sym_LPAREN_SLASH] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4567), + [aux_sym_boolean_literal_token1] = ACTIONS(4567), + [aux_sym_boolean_literal_token2] = ACTIONS(4567), + [aux_sym_null_literal_token1] = ACTIONS(4565), + [aux_sym_coarray_statement_token1] = ACTIONS(4565), + [aux_sym_coarray_statement_token2] = ACTIONS(4565), + [aux_sym_coarray_statement_token6] = ACTIONS(4565), + [aux_sym_coarray_statement_token8] = ACTIONS(4565), + [aux_sym_coarray_statement_token11] = ACTIONS(4565), + [aux_sym_coarray_statement_token12] = ACTIONS(4565), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4565), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4565), + [aux_sym_identifier_token1] = ACTIONS(4565), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4567), + [sym__float_literal] = ACTIONS(4567), + [sym__boz_literal] = ACTIONS(4567), + [sym__string_literal] = ACTIONS(4567), + [sym__string_literal_kind] = ACTIONS(4567), }, [891] = { - [aux_sym_preproc_include_token1] = ACTIONS(4563), - [aux_sym_preproc_def_token1] = ACTIONS(4563), - [aux_sym_preproc_if_token1] = ACTIONS(4563), - [aux_sym_preproc_if_token2] = ACTIONS(4563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4563), - [aux_sym_preproc_else_token1] = ACTIONS(4563), - [aux_sym_preproc_elif_token1] = ACTIONS(4563), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4563), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4563), - [sym_preproc_directive] = ACTIONS(4563), - [anon_sym_LPAREN2] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4563), - [aux_sym_end_program_statement_token1] = ACTIONS(4563), - [aux_sym_end_program_statement_token2] = ACTIONS(4563), - [aux_sym_module_statement_token1] = ACTIONS(4563), - [aux_sym_submodule_statement_token1] = ACTIONS(4563), - [aux_sym_interface_statement_token1] = ACTIONS(4563), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4563), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4563), - [aux_sym_subroutine_statement_token1] = ACTIONS(4563), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4563), - [aux_sym_function_statement_token1] = ACTIONS(4563), - [aux_sym_language_binding_token1] = ACTIONS(4563), - [aux_sym_procedure_attributes_token1] = ACTIONS(4563), - [aux_sym_procedure_attributes_token3] = ACTIONS(4563), - [aux_sym_contains_statement_token1] = ACTIONS(4563), - [aux_sym_use_statement_token1] = ACTIONS(4563), - [aux_sym_use_statement_token2] = ACTIONS(4563), - [aux_sym_implicit_statement_token1] = ACTIONS(4563), - [aux_sym_implicit_statement_token3] = ACTIONS(4563), - [aux_sym_implicit_statement_token4] = ACTIONS(4563), - [aux_sym_save_statement_token1] = ACTIONS(4563), - [aux_sym_private_statement_token1] = ACTIONS(4563), - [aux_sym_public_statement_token1] = ACTIONS(4563), - [aux_sym_namelist_statement_token1] = ACTIONS(4563), - [aux_sym_common_statement_token1] = ACTIONS(4563), - [aux_sym_import_statement_token1] = ACTIONS(4563), - [aux_sym_derived_type_definition_token1] = ACTIONS(4563), - [aux_sym_abstract_specifier_token1] = ACTIONS(4563), - [aux_sym_procedure_attribute_token6] = ACTIONS(4563), - [aux_sym_variable_attributes_token1] = ACTIONS(4563), - [aux_sym_variable_attributes_token2] = ACTIONS(4563), - [aux_sym_variable_attributes_token3] = ACTIONS(4563), - [aux_sym_variable_attributes_token4] = ACTIONS(4563), - [aux_sym_variable_attributes_token5] = ACTIONS(4563), - [aux_sym__intrinsic_type_token1] = ACTIONS(4563), - [aux_sym__intrinsic_type_token2] = ACTIONS(4563), - [aux_sym__intrinsic_type_token3] = ACTIONS(4563), - [aux_sym__intrinsic_type_token4] = ACTIONS(4563), - [aux_sym__intrinsic_type_token6] = ACTIONS(4563), - [aux_sym__intrinsic_type_token7] = ACTIONS(4563), - [aux_sym__intrinsic_type_token8] = ACTIONS(4563), - [aux_sym__intrinsic_type_token9] = ACTIONS(4563), - [aux_sym__intrinsic_type_token10] = ACTIONS(4563), - [aux_sym_derived_type_token1] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4563), - [aux_sym_type_qualifier_token1] = ACTIONS(4563), - [aux_sym_type_qualifier_token2] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4563), - [aux_sym_equivalence_statement_token1] = ACTIONS(4563), - [anon_sym_SEMI] = ACTIONS(4565), - [aux_sym_stop_statement_token1] = ACTIONS(4563), - [aux_sym_stop_statement_token2] = ACTIONS(4563), - [aux_sym_subroutine_call_token1] = ACTIONS(4563), - [aux_sym_keyword_statement_token1] = ACTIONS(4563), - [aux_sym_keyword_statement_token2] = ACTIONS(4563), - [aux_sym_keyword_statement_token3] = ACTIONS(4563), - [aux_sym_keyword_statement_token4] = ACTIONS(4563), - [aux_sym_keyword_statement_token6] = ACTIONS(4563), - [aux_sym_keyword_statement_token7] = ACTIONS(4563), - [aux_sym_include_statement_token1] = ACTIONS(4563), - [aux_sym_data_statement_token1] = ACTIONS(4563), - [aux_sym_do_loop_statement_token1] = ACTIONS(4563), - [aux_sym__inline_if_statement_token1] = ACTIONS(4563), - [aux_sym_end_if_statement_token1] = ACTIONS(4563), - [aux_sym_elseif_clause_token2] = ACTIONS(4563), - [aux_sym__inline_where_statement_token1] = ACTIONS(4563), - [aux_sym__forall_control_expression_token1] = ACTIONS(4563), - [aux_sym_select_case_statement_token1] = ACTIONS(4563), - [aux_sym_select_case_statement_token3] = ACTIONS(4563), - [aux_sym_select_type_statement_token1] = ACTIONS(4563), - [aux_sym_select_rank_statement_token2] = ACTIONS(4563), - [aux_sym_block_construct_token1] = ACTIONS(4563), - [aux_sym_associate_statement_token1] = ACTIONS(4563), - [aux_sym_format_statement_token1] = ACTIONS(4563), - [aux_sym_print_statement_token1] = ACTIONS(4563), - [aux_sym_open_statement_token1] = ACTIONS(4563), - [aux_sym_close_statement_token1] = ACTIONS(4563), - [aux_sym_inquire_statement_token1] = ACTIONS(4563), - [aux_sym_enum_statement_token1] = ACTIONS(4563), - [aux_sym_file_position_statement_token1] = ACTIONS(4563), - [aux_sym_file_position_statement_token2] = ACTIONS(4563), - [aux_sym_file_position_statement_token3] = ACTIONS(4563), - [aux_sym_file_position_statement_token4] = ACTIONS(4563), - [aux_sym_allocate_statement_token1] = ACTIONS(4563), - [aux_sym_entry_statement_token1] = ACTIONS(4563), - [aux_sym_logical_expression_token5] = ACTIONS(4565), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_LPAREN_SLASH] = ACTIONS(4565), - [anon_sym_LBRACK] = ACTIONS(4565), - [aux_sym_boolean_literal_token1] = ACTIONS(4565), - [aux_sym_boolean_literal_token2] = ACTIONS(4565), - [aux_sym_null_literal_token1] = ACTIONS(4563), - [aux_sym_coarray_statement_token1] = ACTIONS(4563), - [aux_sym_coarray_statement_token2] = ACTIONS(4563), - [aux_sym_coarray_statement_token6] = ACTIONS(4563), - [aux_sym_coarray_statement_token8] = ACTIONS(4563), - [aux_sym_coarray_statement_token11] = ACTIONS(4563), - [aux_sym_coarray_statement_token12] = ACTIONS(4563), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4563), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4563), - [aux_sym_identifier_token1] = ACTIONS(4563), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4565), - [sym__float_literal] = ACTIONS(4565), - [sym__boz_literal] = ACTIONS(4565), - [sym__string_literal] = ACTIONS(4565), - [sym__string_literal_kind] = ACTIONS(4565), - }, - [892] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [aux_sym_preproc_else_token1] = ACTIONS(4567), - [aux_sym_preproc_elif_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token2] = ACTIONS(4567), - [aux_sym_module_statement_token1] = ACTIONS(4567), - [aux_sym_submodule_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_subroutine_statement_token1] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_function_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), - }, - [893] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), [aux_sym_preproc_else_token1] = ACTIONS(4571), [aux_sym_preproc_elif_token1] = ACTIONS(4571), [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), [anon_sym_PLUS] = ACTIONS(4573), [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_program_statement_token2] = ACTIONS(4571), - [aux_sym_module_statement_token1] = ACTIONS(4571), - [aux_sym_submodule_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_subroutine_statement_token1] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_function_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4569), [anon_sym_LPAREN_SLASH] = ACTIONS(4573), [anon_sym_LBRACK] = ACTIONS(4573), [aux_sym_boolean_literal_token1] = ACTIONS(4573), [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(4573), [sym__float_literal] = ACTIONS(4573), @@ -210922,7 +210644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4573), [sym__string_literal_kind] = ACTIONS(4573), }, - [894] = { + [892] = { [aux_sym_preproc_include_token1] = ACTIONS(4575), [aux_sym_preproc_def_token1] = ACTIONS(4575), [aux_sym_preproc_if_token1] = ACTIONS(4575), @@ -211061,7 +210783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4577), [sym__string_literal_kind] = ACTIONS(4577), }, - [895] = { + [893] = { [aux_sym_preproc_include_token1] = ACTIONS(4579), [aux_sym_preproc_def_token1] = ACTIONS(4579), [aux_sym_preproc_if_token1] = ACTIONS(4579), @@ -211200,7 +210922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4581), [sym__string_literal_kind] = ACTIONS(4581), }, - [896] = { + [894] = { [aux_sym_preproc_include_token1] = ACTIONS(4583), [aux_sym_preproc_def_token1] = ACTIONS(4583), [aux_sym_preproc_if_token1] = ACTIONS(4583), @@ -211339,7 +211061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4585), [sym__string_literal_kind] = ACTIONS(4585), }, - [897] = { + [895] = { [aux_sym_preproc_include_token1] = ACTIONS(4587), [aux_sym_preproc_def_token1] = ACTIONS(4587), [aux_sym_preproc_if_token1] = ACTIONS(4587), @@ -211478,7 +211200,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4589), [sym__string_literal_kind] = ACTIONS(4589), }, - [898] = { + [896] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4265), + [aux_sym_preproc_elif_token1] = ACTIONS(4265), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4265), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4265), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [897] = { [aux_sym_preproc_include_token1] = ACTIONS(4591), [aux_sym_preproc_def_token1] = ACTIONS(4591), [aux_sym_preproc_if_token1] = ACTIONS(4591), @@ -211617,146 +211478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4593), [sym__string_literal_kind] = ACTIONS(4593), }, - [899] = { - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [aux_sym_preproc_if_token1] = ACTIONS(368), - [aux_sym_preproc_if_token2] = ACTIONS(368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(368), - [aux_sym_preproc_else_token1] = ACTIONS(368), - [aux_sym_preproc_elif_token1] = ACTIONS(368), - [aux_sym_preproc_elifdef_token1] = ACTIONS(368), - [aux_sym_preproc_elifdef_token2] = ACTIONS(368), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(368), - [aux_sym_end_program_statement_token1] = ACTIONS(368), - [aux_sym_end_program_statement_token2] = ACTIONS(368), - [aux_sym_module_statement_token1] = ACTIONS(368), - [aux_sym_submodule_statement_token1] = ACTIONS(368), - [aux_sym_interface_statement_token1] = ACTIONS(368), - [aux_sym_defined_io_procedure_token1] = ACTIONS(368), - [aux_sym_defined_io_procedure_token2] = ACTIONS(368), - [aux_sym_subroutine_statement_token1] = ACTIONS(368), - [aux_sym_module_procedure_statement_token1] = ACTIONS(368), - [aux_sym_function_statement_token1] = ACTIONS(368), - [aux_sym_language_binding_token1] = ACTIONS(368), - [aux_sym_procedure_attributes_token1] = ACTIONS(368), - [aux_sym_procedure_attributes_token3] = ACTIONS(368), - [aux_sym_contains_statement_token1] = ACTIONS(368), - [aux_sym_use_statement_token1] = ACTIONS(368), - [aux_sym_use_statement_token2] = ACTIONS(368), - [aux_sym_implicit_statement_token1] = ACTIONS(368), - [aux_sym_implicit_statement_token3] = ACTIONS(368), - [aux_sym_implicit_statement_token4] = ACTIONS(368), - [aux_sym_save_statement_token1] = ACTIONS(368), - [aux_sym_private_statement_token1] = ACTIONS(368), - [aux_sym_public_statement_token1] = ACTIONS(368), - [aux_sym_namelist_statement_token1] = ACTIONS(368), - [aux_sym_common_statement_token1] = ACTIONS(368), - [aux_sym_import_statement_token1] = ACTIONS(368), - [aux_sym_derived_type_definition_token1] = ACTIONS(368), - [aux_sym_abstract_specifier_token1] = ACTIONS(368), - [aux_sym_procedure_attribute_token6] = ACTIONS(368), - [aux_sym_variable_attributes_token1] = ACTIONS(368), - [aux_sym_variable_attributes_token2] = ACTIONS(368), - [aux_sym_variable_attributes_token3] = ACTIONS(368), - [aux_sym_variable_attributes_token4] = ACTIONS(368), - [aux_sym_variable_attributes_token5] = ACTIONS(368), - [aux_sym__intrinsic_type_token1] = ACTIONS(368), - [aux_sym__intrinsic_type_token2] = ACTIONS(368), - [aux_sym__intrinsic_type_token3] = ACTIONS(368), - [aux_sym__intrinsic_type_token4] = ACTIONS(368), - [aux_sym__intrinsic_type_token6] = ACTIONS(368), - [aux_sym__intrinsic_type_token7] = ACTIONS(368), - [aux_sym__intrinsic_type_token8] = ACTIONS(368), - [aux_sym__intrinsic_type_token9] = ACTIONS(368), - [aux_sym__intrinsic_type_token10] = ACTIONS(368), - [aux_sym_derived_type_token1] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(368), - [aux_sym_type_qualifier_token1] = ACTIONS(368), - [aux_sym_type_qualifier_token2] = ACTIONS(368), - [aux_sym_procedure_qualifier_token1] = ACTIONS(368), - [aux_sym_procedure_qualifier_token2] = ACTIONS(368), - [aux_sym_procedure_qualifier_token3] = ACTIONS(368), - [aux_sym_procedure_qualifier_token4] = ACTIONS(368), - [aux_sym_equivalence_statement_token1] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(674), - [aux_sym_stop_statement_token1] = ACTIONS(368), - [aux_sym_stop_statement_token2] = ACTIONS(368), - [aux_sym_subroutine_call_token1] = ACTIONS(368), - [aux_sym_keyword_statement_token1] = ACTIONS(368), - [aux_sym_keyword_statement_token2] = ACTIONS(368), - [aux_sym_keyword_statement_token3] = ACTIONS(368), - [aux_sym_keyword_statement_token4] = ACTIONS(368), - [aux_sym_keyword_statement_token6] = ACTIONS(368), - [aux_sym_keyword_statement_token7] = ACTIONS(368), - [aux_sym_include_statement_token1] = ACTIONS(368), - [aux_sym_data_statement_token1] = ACTIONS(368), - [aux_sym_do_loop_statement_token1] = ACTIONS(368), - [aux_sym__inline_if_statement_token1] = ACTIONS(368), - [aux_sym_end_if_statement_token1] = ACTIONS(368), - [aux_sym_elseif_clause_token2] = ACTIONS(368), - [aux_sym__inline_where_statement_token1] = ACTIONS(368), - [aux_sym__forall_control_expression_token1] = ACTIONS(368), - [aux_sym_select_case_statement_token1] = ACTIONS(368), - [aux_sym_select_case_statement_token3] = ACTIONS(368), - [aux_sym_select_type_statement_token1] = ACTIONS(368), - [aux_sym_select_rank_statement_token2] = ACTIONS(368), - [aux_sym_block_construct_token1] = ACTIONS(368), - [aux_sym_associate_statement_token1] = ACTIONS(368), - [aux_sym_format_statement_token1] = ACTIONS(368), - [aux_sym_print_statement_token1] = ACTIONS(368), - [aux_sym_open_statement_token1] = ACTIONS(368), - [aux_sym_close_statement_token1] = ACTIONS(368), - [aux_sym_inquire_statement_token1] = ACTIONS(368), - [aux_sym_enum_statement_token1] = ACTIONS(368), - [aux_sym_file_position_statement_token1] = ACTIONS(368), - [aux_sym_file_position_statement_token2] = ACTIONS(368), - [aux_sym_file_position_statement_token3] = ACTIONS(368), - [aux_sym_file_position_statement_token4] = ACTIONS(368), - [aux_sym_allocate_statement_token1] = ACTIONS(368), - [aux_sym_entry_statement_token1] = ACTIONS(368), - [aux_sym_logical_expression_token5] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_LPAREN_SLASH] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(674), - [aux_sym_boolean_literal_token1] = ACTIONS(674), - [aux_sym_boolean_literal_token2] = ACTIONS(674), - [aux_sym_null_literal_token1] = ACTIONS(368), - [aux_sym_coarray_statement_token1] = ACTIONS(368), - [aux_sym_coarray_statement_token2] = ACTIONS(368), - [aux_sym_coarray_statement_token6] = ACTIONS(368), - [aux_sym_coarray_statement_token8] = ACTIONS(368), - [aux_sym_coarray_statement_token11] = ACTIONS(368), - [aux_sym_coarray_statement_token12] = ACTIONS(368), - [aux_sym_coarray_team_statement_token1] = ACTIONS(368), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(368), - [aux_sym_identifier_token1] = ACTIONS(368), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(674), - [sym__float_literal] = ACTIONS(674), - [sym__boz_literal] = ACTIONS(674), - [sym__string_literal] = ACTIONS(674), - [sym__string_literal_kind] = ACTIONS(674), - }, - [900] = { + [898] = { [aux_sym_preproc_include_token1] = ACTIONS(4595), [aux_sym_preproc_def_token1] = ACTIONS(4595), [aux_sym_preproc_if_token1] = ACTIONS(4595), @@ -211895,7 +211617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4597), [sym__string_literal_kind] = ACTIONS(4597), }, - [901] = { + [899] = { [aux_sym_preproc_include_token1] = ACTIONS(4599), [aux_sym_preproc_def_token1] = ACTIONS(4599), [aux_sym_preproc_if_token1] = ACTIONS(4599), @@ -212034,7 +211756,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4601), [sym__string_literal_kind] = ACTIONS(4601), }, - [902] = { + [900] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [aux_sym_preproc_else_token1] = ACTIONS(4285), + [aux_sym_preproc_elif_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), + }, + [901] = { [aux_sym_preproc_include_token1] = ACTIONS(4603), [aux_sym_preproc_def_token1] = ACTIONS(4603), [aux_sym_preproc_if_token1] = ACTIONS(4603), @@ -212173,6 +212034,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4605), [sym__string_literal_kind] = ACTIONS(4605), }, + [902] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [aux_sym_preproc_else_token1] = ACTIONS(4297), + [aux_sym_preproc_elif_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), + }, [903] = { [aux_sym_preproc_include_token1] = ACTIONS(4607), [aux_sym_preproc_def_token1] = ACTIONS(4607), @@ -212730,2506 +212730,1010 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(4621), }, [907] = { - [ts_builtin_sym_end] = ACTIONS(4623), - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4275), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_end_program_statement_token2] = ACTIONS(4267), - [aux_sym_module_statement_token1] = ACTIONS(4275), - [aux_sym_submodule_statement_token1] = ACTIONS(4275), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_subroutine_statement_token1] = ACTIONS(4275), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_function_statement_token1] = ACTIONS(4275), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4275), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [ts_builtin_sym_end] = ACTIONS(4301), + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4297), + [sym_preproc_comment] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token2] = ACTIONS(4297), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4297), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4297), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token3] = ACTIONS(4297), + [aux_sym_contains_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token2] = ACTIONS(4297), + [aux_sym_implicit_statement_token1] = ACTIONS(4297), + [aux_sym_implicit_statement_token3] = ACTIONS(4297), + [aux_sym_implicit_statement_token4] = ACTIONS(4297), + [aux_sym_save_statement_token1] = ACTIONS(4297), + [aux_sym_private_statement_token1] = ACTIONS(4297), + [aux_sym_public_statement_token1] = ACTIONS(4297), + [aux_sym_namelist_statement_token1] = ACTIONS(4297), + [aux_sym_common_statement_token1] = ACTIONS(4297), + [aux_sym_import_statement_token1] = ACTIONS(4297), + [aux_sym_derived_type_definition_token1] = ACTIONS(4297), + [aux_sym_abstract_specifier_token1] = ACTIONS(4297), + [aux_sym_procedure_attribute_token6] = ACTIONS(4297), + [aux_sym_variable_attributes_token1] = ACTIONS(4297), + [aux_sym_variable_attributes_token2] = ACTIONS(4297), + [aux_sym_variable_attributes_token3] = ACTIONS(4297), + [aux_sym_variable_attributes_token4] = ACTIONS(4297), + [aux_sym_variable_attributes_token5] = ACTIONS(4297), + [aux_sym__intrinsic_type_token1] = ACTIONS(4297), + [aux_sym__intrinsic_type_token2] = ACTIONS(4297), + [aux_sym__intrinsic_type_token3] = ACTIONS(4297), + [aux_sym__intrinsic_type_token4] = ACTIONS(4297), + [aux_sym__intrinsic_type_token6] = ACTIONS(4297), + [aux_sym__intrinsic_type_token7] = ACTIONS(4297), + [aux_sym__intrinsic_type_token8] = ACTIONS(4297), + [aux_sym__intrinsic_type_token9] = ACTIONS(4297), + [aux_sym__intrinsic_type_token10] = ACTIONS(4297), + [aux_sym_derived_type_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4297), + [aux_sym_type_qualifier_token1] = ACTIONS(4297), + [aux_sym_type_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4301), + [aux_sym_stop_statement_token1] = ACTIONS(4297), + [aux_sym_stop_statement_token2] = ACTIONS(4297), + [aux_sym_subroutine_call_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token2] = ACTIONS(4297), + [aux_sym_keyword_statement_token3] = ACTIONS(4297), + [aux_sym_keyword_statement_token4] = ACTIONS(4297), + [aux_sym_keyword_statement_token6] = ACTIONS(4297), + [aux_sym_keyword_statement_token7] = ACTIONS(4297), + [aux_sym_include_statement_token1] = ACTIONS(4297), + [aux_sym_data_statement_token1] = ACTIONS(4297), + [aux_sym_do_loop_statement_token1] = ACTIONS(4297), + [aux_sym__inline_if_statement_token1] = ACTIONS(4297), + [aux_sym_end_if_statement_token1] = ACTIONS(4297), + [aux_sym_elseif_clause_token2] = ACTIONS(4297), + [aux_sym__inline_where_statement_token1] = ACTIONS(4297), + [aux_sym__forall_control_expression_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token3] = ACTIONS(4297), + [aux_sym_select_type_statement_token1] = ACTIONS(4297), + [aux_sym_select_rank_statement_token2] = ACTIONS(4297), + [aux_sym_block_construct_token1] = ACTIONS(4297), + [aux_sym_associate_statement_token1] = ACTIONS(4297), + [aux_sym_format_statement_token1] = ACTIONS(4297), + [aux_sym_print_statement_token1] = ACTIONS(4297), + [aux_sym_open_statement_token1] = ACTIONS(4297), + [aux_sym_close_statement_token1] = ACTIONS(4297), + [aux_sym_inquire_statement_token1] = ACTIONS(4297), + [aux_sym_enum_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token2] = ACTIONS(4297), + [aux_sym_file_position_statement_token3] = ACTIONS(4297), + [aux_sym_file_position_statement_token4] = ACTIONS(4297), + [aux_sym_allocate_statement_token1] = ACTIONS(4297), + [aux_sym_entry_statement_token1] = ACTIONS(4297), + [aux_sym_logical_expression_token5] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_LPAREN_SLASH] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [aux_sym_boolean_literal_token1] = ACTIONS(4301), + [aux_sym_boolean_literal_token2] = ACTIONS(4301), + [aux_sym_null_literal_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token2] = ACTIONS(4297), + [aux_sym_coarray_statement_token6] = ACTIONS(4297), + [aux_sym_coarray_statement_token8] = ACTIONS(4297), + [aux_sym_coarray_statement_token11] = ACTIONS(4297), + [aux_sym_coarray_statement_token12] = ACTIONS(4297), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4297), + [aux_sym_identifier_token1] = ACTIONS(4297), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4301), + [sym__float_literal] = ACTIONS(4301), + [sym__boz_literal] = ACTIONS(4301), + [sym__string_literal] = ACTIONS(4301), + [sym__string_literal_kind] = ACTIONS(4301), }, [908] = { - [ts_builtin_sym_end] = ACTIONS(4291), - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [909] = { - [aux_sym_preproc_include_token1] = ACTIONS(4355), - [aux_sym_preproc_def_token1] = ACTIONS(4355), - [aux_sym_preproc_if_token1] = ACTIONS(4355), - [aux_sym_preproc_if_token2] = ACTIONS(4355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4355), - [sym_preproc_directive] = ACTIONS(4355), - [anon_sym_LPAREN2] = ACTIONS(4355), + [ts_builtin_sym_end] = ACTIONS(4627), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), [sym_preproc_comment] = ACTIONS(4629), - [anon_sym_PLUS] = ACTIONS(4359), - [anon_sym_DASH] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4355), - [aux_sym_end_program_statement_token1] = ACTIONS(4355), - [aux_sym_end_program_statement_token2] = ACTIONS(4355), - [aux_sym_module_statement_token1] = ACTIONS(4355), - [aux_sym_submodule_statement_token1] = ACTIONS(4355), - [aux_sym_interface_statement_token1] = ACTIONS(4355), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4355), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4355), - [aux_sym_subroutine_statement_token1] = ACTIONS(4355), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4355), - [aux_sym_function_statement_token1] = ACTIONS(4355), - [aux_sym_language_binding_token1] = ACTIONS(4355), - [aux_sym_procedure_attributes_token1] = ACTIONS(4355), - [aux_sym_procedure_attributes_token3] = ACTIONS(4355), - [aux_sym_contains_statement_token1] = ACTIONS(4355), - [aux_sym_use_statement_token1] = ACTIONS(4355), - [aux_sym_use_statement_token2] = ACTIONS(4355), - [aux_sym_implicit_statement_token1] = ACTIONS(4355), - [aux_sym_implicit_statement_token3] = ACTIONS(4355), - [aux_sym_implicit_statement_token4] = ACTIONS(4355), - [aux_sym_save_statement_token1] = ACTIONS(4355), - [aux_sym_private_statement_token1] = ACTIONS(4355), - [aux_sym_public_statement_token1] = ACTIONS(4355), - [aux_sym_namelist_statement_token1] = ACTIONS(4355), - [aux_sym_common_statement_token1] = ACTIONS(4355), - [aux_sym_import_statement_token1] = ACTIONS(4355), - [aux_sym_derived_type_definition_token1] = ACTIONS(4355), - [aux_sym_abstract_specifier_token1] = ACTIONS(4355), - [aux_sym_procedure_attribute_token6] = ACTIONS(4355), - [aux_sym_variable_attributes_token1] = ACTIONS(4355), - [aux_sym_variable_attributes_token2] = ACTIONS(4355), - [aux_sym_variable_attributes_token3] = ACTIONS(4355), - [aux_sym_variable_attributes_token4] = ACTIONS(4355), - [aux_sym_variable_attributes_token5] = ACTIONS(4355), - [aux_sym__intrinsic_type_token1] = ACTIONS(4355), - [aux_sym__intrinsic_type_token2] = ACTIONS(4355), - [aux_sym__intrinsic_type_token3] = ACTIONS(4355), - [aux_sym__intrinsic_type_token4] = ACTIONS(4355), - [aux_sym__intrinsic_type_token6] = ACTIONS(4355), - [aux_sym__intrinsic_type_token7] = ACTIONS(4355), - [aux_sym__intrinsic_type_token8] = ACTIONS(4355), - [aux_sym__intrinsic_type_token9] = ACTIONS(4355), - [aux_sym__intrinsic_type_token10] = ACTIONS(4355), - [aux_sym_derived_type_token1] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4355), - [aux_sym_type_qualifier_token1] = ACTIONS(4355), - [aux_sym_type_qualifier_token2] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4355), - [aux_sym_equivalence_statement_token1] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4359), - [aux_sym_stop_statement_token1] = ACTIONS(4355), - [aux_sym_stop_statement_token2] = ACTIONS(4355), - [aux_sym_subroutine_call_token1] = ACTIONS(4355), - [aux_sym_keyword_statement_token1] = ACTIONS(4355), - [aux_sym_keyword_statement_token2] = ACTIONS(4355), - [aux_sym_keyword_statement_token3] = ACTIONS(4355), - [aux_sym_keyword_statement_token4] = ACTIONS(4355), - [aux_sym_keyword_statement_token6] = ACTIONS(4355), - [aux_sym_keyword_statement_token7] = ACTIONS(4355), - [aux_sym_include_statement_token1] = ACTIONS(4355), - [aux_sym_data_statement_token1] = ACTIONS(4355), - [aux_sym_do_loop_statement_token1] = ACTIONS(4355), - [aux_sym__inline_if_statement_token1] = ACTIONS(4355), - [aux_sym_end_if_statement_token1] = ACTIONS(4355), - [aux_sym_elseif_clause_token2] = ACTIONS(4355), - [aux_sym__inline_where_statement_token1] = ACTIONS(4355), - [aux_sym__forall_control_expression_token1] = ACTIONS(4355), - [aux_sym_select_case_statement_token1] = ACTIONS(4355), - [aux_sym_select_case_statement_token3] = ACTIONS(4355), - [aux_sym_select_type_statement_token1] = ACTIONS(4355), - [aux_sym_select_rank_statement_token2] = ACTIONS(4355), - [aux_sym_block_construct_token1] = ACTIONS(4355), - [aux_sym_associate_statement_token1] = ACTIONS(4355), - [aux_sym_format_statement_token1] = ACTIONS(4355), - [aux_sym_print_statement_token1] = ACTIONS(4355), - [aux_sym_open_statement_token1] = ACTIONS(4355), - [aux_sym_close_statement_token1] = ACTIONS(4355), - [aux_sym_inquire_statement_token1] = ACTIONS(4355), - [aux_sym_enum_statement_token1] = ACTIONS(4355), - [aux_sym_file_position_statement_token1] = ACTIONS(4355), - [aux_sym_file_position_statement_token2] = ACTIONS(4355), - [aux_sym_file_position_statement_token3] = ACTIONS(4355), - [aux_sym_file_position_statement_token4] = ACTIONS(4355), - [aux_sym_allocate_statement_token1] = ACTIONS(4355), - [aux_sym_entry_statement_token1] = ACTIONS(4355), - [aux_sym_logical_expression_token5] = ACTIONS(4359), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_LPAREN_SLASH] = ACTIONS(4359), - [anon_sym_LBRACK] = ACTIONS(4359), - [aux_sym_boolean_literal_token1] = ACTIONS(4359), - [aux_sym_boolean_literal_token2] = ACTIONS(4359), - [aux_sym_null_literal_token1] = ACTIONS(4355), - [aux_sym_coarray_statement_token1] = ACTIONS(4355), - [aux_sym_coarray_statement_token2] = ACTIONS(4355), - [aux_sym_coarray_statement_token6] = ACTIONS(4355), - [aux_sym_coarray_statement_token8] = ACTIONS(4355), - [aux_sym_coarray_statement_token11] = ACTIONS(4355), - [aux_sym_coarray_statement_token12] = ACTIONS(4355), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4355), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4355), - [aux_sym_identifier_token1] = ACTIONS(4355), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4359), - [sym__float_literal] = ACTIONS(4359), - [sym__boz_literal] = ACTIONS(4359), - [sym__string_literal] = ACTIONS(4359), - [sym__string_literal_kind] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4329), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token2] = ACTIONS(4327), + [aux_sym_module_statement_token1] = ACTIONS(4329), + [aux_sym_submodule_statement_token1] = ACTIONS(4329), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_subroutine_statement_token1] = ACTIONS(4329), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_function_statement_token1] = ACTIONS(4329), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4329), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), }, [910] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), + [ts_builtin_sym_end] = ACTIONS(4263), + [aux_sym_preproc_include_token1] = ACTIONS(4259), + [aux_sym_preproc_def_token1] = ACTIONS(4259), + [aux_sym_preproc_if_token1] = ACTIONS(4259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4259), + [sym_preproc_directive] = ACTIONS(4259), + [anon_sym_LPAREN2] = ACTIONS(4259), [sym_preproc_comment] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4259), + [aux_sym_end_program_statement_token1] = ACTIONS(4259), + [aux_sym_end_program_statement_token2] = ACTIONS(4259), + [aux_sym_module_statement_token1] = ACTIONS(4259), + [aux_sym_submodule_statement_token1] = ACTIONS(4259), + [aux_sym_interface_statement_token1] = ACTIONS(4259), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4259), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4259), + [aux_sym_subroutine_statement_token1] = ACTIONS(4259), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4259), + [aux_sym_function_statement_token1] = ACTIONS(4259), + [aux_sym_language_binding_token1] = ACTIONS(4259), + [aux_sym_procedure_attributes_token1] = ACTIONS(4259), + [aux_sym_procedure_attributes_token3] = ACTIONS(4259), + [aux_sym_contains_statement_token1] = ACTIONS(4259), + [aux_sym_use_statement_token1] = ACTIONS(4259), + [aux_sym_use_statement_token2] = ACTIONS(4259), + [aux_sym_implicit_statement_token1] = ACTIONS(4259), + [aux_sym_implicit_statement_token3] = ACTIONS(4259), + [aux_sym_implicit_statement_token4] = ACTIONS(4259), + [aux_sym_save_statement_token1] = ACTIONS(4259), + [aux_sym_private_statement_token1] = ACTIONS(4259), + [aux_sym_public_statement_token1] = ACTIONS(4259), + [aux_sym_namelist_statement_token1] = ACTIONS(4259), + [aux_sym_common_statement_token1] = ACTIONS(4259), + [aux_sym_import_statement_token1] = ACTIONS(4259), + [aux_sym_derived_type_definition_token1] = ACTIONS(4259), + [aux_sym_abstract_specifier_token1] = ACTIONS(4259), + [aux_sym_procedure_attribute_token6] = ACTIONS(4259), + [aux_sym_variable_attributes_token1] = ACTIONS(4259), + [aux_sym_variable_attributes_token2] = ACTIONS(4259), + [aux_sym_variable_attributes_token3] = ACTIONS(4259), + [aux_sym_variable_attributes_token4] = ACTIONS(4259), + [aux_sym_variable_attributes_token5] = ACTIONS(4259), + [aux_sym__intrinsic_type_token1] = ACTIONS(4259), + [aux_sym__intrinsic_type_token2] = ACTIONS(4259), + [aux_sym__intrinsic_type_token3] = ACTIONS(4259), + [aux_sym__intrinsic_type_token4] = ACTIONS(4259), + [aux_sym__intrinsic_type_token6] = ACTIONS(4259), + [aux_sym__intrinsic_type_token7] = ACTIONS(4259), + [aux_sym__intrinsic_type_token8] = ACTIONS(4259), + [aux_sym__intrinsic_type_token9] = ACTIONS(4259), + [aux_sym__intrinsic_type_token10] = ACTIONS(4259), + [aux_sym_derived_type_token1] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4259), + [aux_sym_type_qualifier_token1] = ACTIONS(4259), + [aux_sym_type_qualifier_token2] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4259), + [aux_sym_equivalence_statement_token1] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4263), + [aux_sym_stop_statement_token1] = ACTIONS(4259), + [aux_sym_stop_statement_token2] = ACTIONS(4259), + [aux_sym_subroutine_call_token1] = ACTIONS(4259), + [aux_sym_keyword_statement_token1] = ACTIONS(4259), + [aux_sym_keyword_statement_token2] = ACTIONS(4259), + [aux_sym_keyword_statement_token3] = ACTIONS(4259), + [aux_sym_keyword_statement_token4] = ACTIONS(4259), + [aux_sym_keyword_statement_token6] = ACTIONS(4259), + [aux_sym_keyword_statement_token7] = ACTIONS(4259), + [aux_sym_include_statement_token1] = ACTIONS(4259), + [aux_sym_data_statement_token1] = ACTIONS(4259), + [aux_sym_do_loop_statement_token1] = ACTIONS(4259), + [aux_sym__inline_if_statement_token1] = ACTIONS(4259), + [aux_sym_end_if_statement_token1] = ACTIONS(4259), + [aux_sym_elseif_clause_token2] = ACTIONS(4259), + [aux_sym__inline_where_statement_token1] = ACTIONS(4259), + [aux_sym__forall_control_expression_token1] = ACTIONS(4259), + [aux_sym_select_case_statement_token1] = ACTIONS(4259), + [aux_sym_select_case_statement_token3] = ACTIONS(4259), + [aux_sym_select_type_statement_token1] = ACTIONS(4259), + [aux_sym_select_rank_statement_token2] = ACTIONS(4259), + [aux_sym_block_construct_token1] = ACTIONS(4259), + [aux_sym_associate_statement_token1] = ACTIONS(4259), + [aux_sym_format_statement_token1] = ACTIONS(4259), + [aux_sym_print_statement_token1] = ACTIONS(4259), + [aux_sym_open_statement_token1] = ACTIONS(4259), + [aux_sym_close_statement_token1] = ACTIONS(4259), + [aux_sym_inquire_statement_token1] = ACTIONS(4259), + [aux_sym_enum_statement_token1] = ACTIONS(4259), + [aux_sym_file_position_statement_token1] = ACTIONS(4259), + [aux_sym_file_position_statement_token2] = ACTIONS(4259), + [aux_sym_file_position_statement_token3] = ACTIONS(4259), + [aux_sym_file_position_statement_token4] = ACTIONS(4259), + [aux_sym_allocate_statement_token1] = ACTIONS(4259), + [aux_sym_entry_statement_token1] = ACTIONS(4259), + [aux_sym_logical_expression_token5] = ACTIONS(4263), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_LPAREN_SLASH] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4263), + [aux_sym_boolean_literal_token1] = ACTIONS(4263), + [aux_sym_boolean_literal_token2] = ACTIONS(4263), + [aux_sym_null_literal_token1] = ACTIONS(4259), + [aux_sym_coarray_statement_token1] = ACTIONS(4259), + [aux_sym_coarray_statement_token2] = ACTIONS(4259), + [aux_sym_coarray_statement_token6] = ACTIONS(4259), + [aux_sym_coarray_statement_token8] = ACTIONS(4259), + [aux_sym_coarray_statement_token11] = ACTIONS(4259), + [aux_sym_coarray_statement_token12] = ACTIONS(4259), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4259), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4259), + [aux_sym_identifier_token1] = ACTIONS(4259), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4263), + [sym__float_literal] = ACTIONS(4263), + [sym__boz_literal] = ACTIONS(4263), + [sym__string_literal] = ACTIONS(4263), + [sym__string_literal_kind] = ACTIONS(4263), }, [911] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token2] = ACTIONS(4321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), [sym_preproc_comment] = ACTIONS(4633), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4321), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_end_program_statement_token2] = ACTIONS(4313), - [aux_sym_module_statement_token1] = ACTIONS(4321), - [aux_sym_submodule_statement_token1] = ACTIONS(4321), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), - [aux_sym_subroutine_statement_token1] = ACTIONS(4321), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_function_statement_token1] = ACTIONS(4321), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4321), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4321), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4321), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4321), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [912] = { - [aux_sym_preproc_include_token1] = ACTIONS(4341), - [aux_sym_preproc_def_token1] = ACTIONS(4341), - [aux_sym_preproc_if_token1] = ACTIONS(4341), - [aux_sym_preproc_if_token2] = ACTIONS(4341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4341), - [sym_preproc_directive] = ACTIONS(4341), - [anon_sym_LPAREN2] = ACTIONS(4341), + [aux_sym_preproc_include_token1] = ACTIONS(4265), + [aux_sym_preproc_def_token1] = ACTIONS(4265), + [aux_sym_preproc_if_token1] = ACTIONS(4265), + [aux_sym_preproc_if_token2] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4265), + [sym_preproc_directive] = ACTIONS(4265), + [anon_sym_LPAREN2] = ACTIONS(4265), [sym_preproc_comment] = ACTIONS(4635), - [anon_sym_PLUS] = ACTIONS(4345), - [anon_sym_DASH] = ACTIONS(4345), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4341), - [aux_sym_end_program_statement_token1] = ACTIONS(4341), - [aux_sym_end_program_statement_token2] = ACTIONS(4341), - [aux_sym_module_statement_token1] = ACTIONS(4341), - [aux_sym_submodule_statement_token1] = ACTIONS(4341), - [aux_sym_interface_statement_token1] = ACTIONS(4341), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4341), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4341), - [aux_sym_subroutine_statement_token1] = ACTIONS(4341), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4341), - [aux_sym_function_statement_token1] = ACTIONS(4341), - [aux_sym_language_binding_token1] = ACTIONS(4341), - [aux_sym_procedure_attributes_token1] = ACTIONS(4341), - [aux_sym_procedure_attributes_token3] = ACTIONS(4341), - [aux_sym_contains_statement_token1] = ACTIONS(4341), - [aux_sym_use_statement_token1] = ACTIONS(4341), - [aux_sym_use_statement_token2] = ACTIONS(4341), - [aux_sym_implicit_statement_token1] = ACTIONS(4341), - [aux_sym_implicit_statement_token3] = ACTIONS(4341), - [aux_sym_implicit_statement_token4] = ACTIONS(4341), - [aux_sym_save_statement_token1] = ACTIONS(4341), - [aux_sym_private_statement_token1] = ACTIONS(4341), - [aux_sym_public_statement_token1] = ACTIONS(4341), - [aux_sym_namelist_statement_token1] = ACTIONS(4341), - [aux_sym_common_statement_token1] = ACTIONS(4341), - [aux_sym_import_statement_token1] = ACTIONS(4341), - [aux_sym_derived_type_definition_token1] = ACTIONS(4341), - [aux_sym_abstract_specifier_token1] = ACTIONS(4341), - [aux_sym_procedure_attribute_token6] = ACTIONS(4341), - [aux_sym_variable_attributes_token1] = ACTIONS(4341), - [aux_sym_variable_attributes_token2] = ACTIONS(4341), - [aux_sym_variable_attributes_token3] = ACTIONS(4341), - [aux_sym_variable_attributes_token4] = ACTIONS(4341), - [aux_sym_variable_attributes_token5] = ACTIONS(4341), - [aux_sym__intrinsic_type_token1] = ACTIONS(4341), - [aux_sym__intrinsic_type_token2] = ACTIONS(4341), - [aux_sym__intrinsic_type_token3] = ACTIONS(4341), - [aux_sym__intrinsic_type_token4] = ACTIONS(4341), - [aux_sym__intrinsic_type_token6] = ACTIONS(4341), - [aux_sym__intrinsic_type_token7] = ACTIONS(4341), - [aux_sym__intrinsic_type_token8] = ACTIONS(4341), - [aux_sym__intrinsic_type_token9] = ACTIONS(4341), - [aux_sym__intrinsic_type_token10] = ACTIONS(4341), - [aux_sym_derived_type_token1] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4341), - [aux_sym_type_qualifier_token1] = ACTIONS(4341), - [aux_sym_type_qualifier_token2] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4341), - [aux_sym_equivalence_statement_token1] = ACTIONS(4341), - [anon_sym_SEMI] = ACTIONS(4345), - [aux_sym_stop_statement_token1] = ACTIONS(4341), - [aux_sym_stop_statement_token2] = ACTIONS(4341), - [aux_sym_subroutine_call_token1] = ACTIONS(4341), - [aux_sym_keyword_statement_token1] = ACTIONS(4341), - [aux_sym_keyword_statement_token2] = ACTIONS(4341), - [aux_sym_keyword_statement_token3] = ACTIONS(4341), - [aux_sym_keyword_statement_token4] = ACTIONS(4341), - [aux_sym_keyword_statement_token6] = ACTIONS(4341), - [aux_sym_keyword_statement_token7] = ACTIONS(4341), - [aux_sym_include_statement_token1] = ACTIONS(4341), - [aux_sym_data_statement_token1] = ACTIONS(4341), - [aux_sym_do_loop_statement_token1] = ACTIONS(4341), - [aux_sym__inline_if_statement_token1] = ACTIONS(4341), - [aux_sym_end_if_statement_token1] = ACTIONS(4341), - [aux_sym_elseif_clause_token2] = ACTIONS(4341), - [aux_sym__inline_where_statement_token1] = ACTIONS(4341), - [aux_sym__forall_control_expression_token1] = ACTIONS(4341), - [aux_sym_select_case_statement_token1] = ACTIONS(4341), - [aux_sym_select_case_statement_token3] = ACTIONS(4341), - [aux_sym_select_type_statement_token1] = ACTIONS(4341), - [aux_sym_select_rank_statement_token2] = ACTIONS(4341), - [aux_sym_block_construct_token1] = ACTIONS(4341), - [aux_sym_associate_statement_token1] = ACTIONS(4341), - [aux_sym_format_statement_token1] = ACTIONS(4341), - [aux_sym_print_statement_token1] = ACTIONS(4341), - [aux_sym_open_statement_token1] = ACTIONS(4341), - [aux_sym_close_statement_token1] = ACTIONS(4341), - [aux_sym_inquire_statement_token1] = ACTIONS(4341), - [aux_sym_enum_statement_token1] = ACTIONS(4341), - [aux_sym_file_position_statement_token1] = ACTIONS(4341), - [aux_sym_file_position_statement_token2] = ACTIONS(4341), - [aux_sym_file_position_statement_token3] = ACTIONS(4341), - [aux_sym_file_position_statement_token4] = ACTIONS(4341), - [aux_sym_allocate_statement_token1] = ACTIONS(4341), - [aux_sym_entry_statement_token1] = ACTIONS(4341), - [aux_sym_logical_expression_token5] = ACTIONS(4345), - [anon_sym_DOT] = ACTIONS(4341), - [anon_sym_LPAREN_SLASH] = ACTIONS(4345), - [anon_sym_LBRACK] = ACTIONS(4345), - [aux_sym_boolean_literal_token1] = ACTIONS(4345), - [aux_sym_boolean_literal_token2] = ACTIONS(4345), - [aux_sym_null_literal_token1] = ACTIONS(4341), - [aux_sym_coarray_statement_token1] = ACTIONS(4341), - [aux_sym_coarray_statement_token2] = ACTIONS(4341), - [aux_sym_coarray_statement_token6] = ACTIONS(4341), - [aux_sym_coarray_statement_token8] = ACTIONS(4341), - [aux_sym_coarray_statement_token11] = ACTIONS(4341), - [aux_sym_coarray_statement_token12] = ACTIONS(4341), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4341), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4341), - [aux_sym_identifier_token1] = ACTIONS(4341), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4345), - [sym__float_literal] = ACTIONS(4345), - [sym__boz_literal] = ACTIONS(4345), - [sym__string_literal] = ACTIONS(4345), - [sym__string_literal_kind] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token2] = ACTIONS(4265), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4265), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4265), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4265), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4265), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4265), + [aux_sym_procedure_attributes_token1] = ACTIONS(4265), + [aux_sym_procedure_attributes_token3] = ACTIONS(4265), + [aux_sym_contains_statement_token1] = ACTIONS(4265), + [aux_sym_use_statement_token1] = ACTIONS(4265), + [aux_sym_use_statement_token2] = ACTIONS(4265), + [aux_sym_implicit_statement_token1] = ACTIONS(4265), + [aux_sym_implicit_statement_token3] = ACTIONS(4265), + [aux_sym_implicit_statement_token4] = ACTIONS(4265), + [aux_sym_save_statement_token1] = ACTIONS(4265), + [aux_sym_private_statement_token1] = ACTIONS(4265), + [aux_sym_public_statement_token1] = ACTIONS(4265), + [aux_sym_namelist_statement_token1] = ACTIONS(4265), + [aux_sym_common_statement_token1] = ACTIONS(4265), + [aux_sym_import_statement_token1] = ACTIONS(4265), + [aux_sym_derived_type_definition_token1] = ACTIONS(4265), + [aux_sym_abstract_specifier_token1] = ACTIONS(4265), + [aux_sym_procedure_attribute_token6] = ACTIONS(4265), + [aux_sym_variable_attributes_token1] = ACTIONS(4265), + [aux_sym_variable_attributes_token2] = ACTIONS(4265), + [aux_sym_variable_attributes_token3] = ACTIONS(4265), + [aux_sym_variable_attributes_token4] = ACTIONS(4265), + [aux_sym_variable_attributes_token5] = ACTIONS(4265), + [aux_sym__intrinsic_type_token1] = ACTIONS(4265), + [aux_sym__intrinsic_type_token2] = ACTIONS(4265), + [aux_sym__intrinsic_type_token3] = ACTIONS(4265), + [aux_sym__intrinsic_type_token4] = ACTIONS(4265), + [aux_sym__intrinsic_type_token6] = ACTIONS(4265), + [aux_sym__intrinsic_type_token7] = ACTIONS(4265), + [aux_sym__intrinsic_type_token8] = ACTIONS(4265), + [aux_sym__intrinsic_type_token9] = ACTIONS(4265), + [aux_sym__intrinsic_type_token10] = ACTIONS(4265), + [aux_sym_derived_type_token1] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4265), + [aux_sym_type_qualifier_token1] = ACTIONS(4265), + [aux_sym_type_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4265), + [anon_sym_SEMI] = ACTIONS(4269), + [aux_sym_stop_statement_token1] = ACTIONS(4265), + [aux_sym_stop_statement_token2] = ACTIONS(4265), + [aux_sym_subroutine_call_token1] = ACTIONS(4265), + [aux_sym_keyword_statement_token1] = ACTIONS(4265), + [aux_sym_keyword_statement_token2] = ACTIONS(4265), + [aux_sym_keyword_statement_token3] = ACTIONS(4265), + [aux_sym_keyword_statement_token4] = ACTIONS(4265), + [aux_sym_keyword_statement_token6] = ACTIONS(4265), + [aux_sym_keyword_statement_token7] = ACTIONS(4265), + [aux_sym_include_statement_token1] = ACTIONS(4265), + [aux_sym_data_statement_token1] = ACTIONS(4265), + [aux_sym_do_loop_statement_token1] = ACTIONS(4265), + [aux_sym__inline_if_statement_token1] = ACTIONS(4265), + [aux_sym_end_if_statement_token1] = ACTIONS(4265), + [aux_sym_elseif_clause_token2] = ACTIONS(4265), + [aux_sym__inline_where_statement_token1] = ACTIONS(4265), + [aux_sym__forall_control_expression_token1] = ACTIONS(4265), + [aux_sym_select_case_statement_token1] = ACTIONS(4265), + [aux_sym_select_case_statement_token3] = ACTIONS(4265), + [aux_sym_select_type_statement_token1] = ACTIONS(4265), + [aux_sym_select_rank_statement_token2] = ACTIONS(4265), + [aux_sym_block_construct_token1] = ACTIONS(4265), + [aux_sym_associate_statement_token1] = ACTIONS(4265), + [aux_sym_format_statement_token1] = ACTIONS(4265), + [aux_sym_print_statement_token1] = ACTIONS(4265), + [aux_sym_open_statement_token1] = ACTIONS(4265), + [aux_sym_close_statement_token1] = ACTIONS(4265), + [aux_sym_inquire_statement_token1] = ACTIONS(4265), + [aux_sym_enum_statement_token1] = ACTIONS(4265), + [aux_sym_file_position_statement_token1] = ACTIONS(4265), + [aux_sym_file_position_statement_token2] = ACTIONS(4265), + [aux_sym_file_position_statement_token3] = ACTIONS(4265), + [aux_sym_file_position_statement_token4] = ACTIONS(4265), + [aux_sym_allocate_statement_token1] = ACTIONS(4265), + [aux_sym_entry_statement_token1] = ACTIONS(4265), + [aux_sym_logical_expression_token5] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_LPAREN_SLASH] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [aux_sym_boolean_literal_token1] = ACTIONS(4269), + [aux_sym_boolean_literal_token2] = ACTIONS(4269), + [aux_sym_null_literal_token1] = ACTIONS(4265), + [aux_sym_coarray_statement_token1] = ACTIONS(4265), + [aux_sym_coarray_statement_token2] = ACTIONS(4265), + [aux_sym_coarray_statement_token6] = ACTIONS(4265), + [aux_sym_coarray_statement_token8] = ACTIONS(4265), + [aux_sym_coarray_statement_token11] = ACTIONS(4265), + [aux_sym_coarray_statement_token12] = ACTIONS(4265), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4265), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4265), + [aux_sym_identifier_token1] = ACTIONS(4265), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4269), + [sym__float_literal] = ACTIONS(4269), + [sym__boz_literal] = ACTIONS(4269), + [sym__string_literal] = ACTIONS(4269), + [sym__string_literal_kind] = ACTIONS(4269), }, [913] = { - [ts_builtin_sym_end] = ACTIONS(4359), - [aux_sym_preproc_include_token1] = ACTIONS(4355), - [aux_sym_preproc_def_token1] = ACTIONS(4355), - [aux_sym_preproc_if_token1] = ACTIONS(4355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4355), - [sym_preproc_directive] = ACTIONS(4355), - [anon_sym_LPAREN2] = ACTIONS(4355), + [ts_builtin_sym_end] = ACTIONS(4269), + [aux_sym_preproc_include_token1] = ACTIONS(4265), + [aux_sym_preproc_def_token1] = ACTIONS(4265), + [aux_sym_preproc_if_token1] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4265), + [sym_preproc_directive] = ACTIONS(4265), + [anon_sym_LPAREN2] = ACTIONS(4265), [sym_preproc_comment] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4359), - [anon_sym_DASH] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4355), - [aux_sym_end_program_statement_token1] = ACTIONS(4355), - [aux_sym_end_program_statement_token2] = ACTIONS(4355), - [aux_sym_module_statement_token1] = ACTIONS(4355), - [aux_sym_submodule_statement_token1] = ACTIONS(4355), - [aux_sym_interface_statement_token1] = ACTIONS(4355), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4355), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4355), - [aux_sym_subroutine_statement_token1] = ACTIONS(4355), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4355), - [aux_sym_function_statement_token1] = ACTIONS(4355), - [aux_sym_language_binding_token1] = ACTIONS(4355), - [aux_sym_procedure_attributes_token1] = ACTIONS(4355), - [aux_sym_procedure_attributes_token3] = ACTIONS(4355), - [aux_sym_contains_statement_token1] = ACTIONS(4355), - [aux_sym_use_statement_token1] = ACTIONS(4355), - [aux_sym_use_statement_token2] = ACTIONS(4355), - [aux_sym_implicit_statement_token1] = ACTIONS(4355), - [aux_sym_implicit_statement_token3] = ACTIONS(4355), - [aux_sym_implicit_statement_token4] = ACTIONS(4355), - [aux_sym_save_statement_token1] = ACTIONS(4355), - [aux_sym_private_statement_token1] = ACTIONS(4355), - [aux_sym_public_statement_token1] = ACTIONS(4355), - [aux_sym_namelist_statement_token1] = ACTIONS(4355), - [aux_sym_common_statement_token1] = ACTIONS(4355), - [aux_sym_import_statement_token1] = ACTIONS(4355), - [aux_sym_derived_type_definition_token1] = ACTIONS(4355), - [aux_sym_abstract_specifier_token1] = ACTIONS(4355), - [aux_sym_procedure_attribute_token6] = ACTIONS(4355), - [aux_sym_variable_attributes_token1] = ACTIONS(4355), - [aux_sym_variable_attributes_token2] = ACTIONS(4355), - [aux_sym_variable_attributes_token3] = ACTIONS(4355), - [aux_sym_variable_attributes_token4] = ACTIONS(4355), - [aux_sym_variable_attributes_token5] = ACTIONS(4355), - [aux_sym__intrinsic_type_token1] = ACTIONS(4355), - [aux_sym__intrinsic_type_token2] = ACTIONS(4355), - [aux_sym__intrinsic_type_token3] = ACTIONS(4355), - [aux_sym__intrinsic_type_token4] = ACTIONS(4355), - [aux_sym__intrinsic_type_token6] = ACTIONS(4355), - [aux_sym__intrinsic_type_token7] = ACTIONS(4355), - [aux_sym__intrinsic_type_token8] = ACTIONS(4355), - [aux_sym__intrinsic_type_token9] = ACTIONS(4355), - [aux_sym__intrinsic_type_token10] = ACTIONS(4355), - [aux_sym_derived_type_token1] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4355), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4355), - [aux_sym_type_qualifier_token1] = ACTIONS(4355), - [aux_sym_type_qualifier_token2] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4355), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4355), - [aux_sym_equivalence_statement_token1] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(4359), - [aux_sym_stop_statement_token1] = ACTIONS(4355), - [aux_sym_stop_statement_token2] = ACTIONS(4355), - [aux_sym_subroutine_call_token1] = ACTIONS(4355), - [aux_sym_keyword_statement_token1] = ACTIONS(4355), - [aux_sym_keyword_statement_token2] = ACTIONS(4355), - [aux_sym_keyword_statement_token3] = ACTIONS(4355), - [aux_sym_keyword_statement_token4] = ACTIONS(4355), - [aux_sym_keyword_statement_token6] = ACTIONS(4355), - [aux_sym_keyword_statement_token7] = ACTIONS(4355), - [aux_sym_include_statement_token1] = ACTIONS(4355), - [aux_sym_data_statement_token1] = ACTIONS(4355), - [aux_sym_do_loop_statement_token1] = ACTIONS(4355), - [aux_sym__inline_if_statement_token1] = ACTIONS(4355), - [aux_sym_end_if_statement_token1] = ACTIONS(4355), - [aux_sym_elseif_clause_token2] = ACTIONS(4355), - [aux_sym__inline_where_statement_token1] = ACTIONS(4355), - [aux_sym__forall_control_expression_token1] = ACTIONS(4355), - [aux_sym_select_case_statement_token1] = ACTIONS(4355), - [aux_sym_select_case_statement_token3] = ACTIONS(4355), - [aux_sym_select_type_statement_token1] = ACTIONS(4355), - [aux_sym_select_rank_statement_token2] = ACTIONS(4355), - [aux_sym_block_construct_token1] = ACTIONS(4355), - [aux_sym_associate_statement_token1] = ACTIONS(4355), - [aux_sym_format_statement_token1] = ACTIONS(4355), - [aux_sym_print_statement_token1] = ACTIONS(4355), - [aux_sym_open_statement_token1] = ACTIONS(4355), - [aux_sym_close_statement_token1] = ACTIONS(4355), - [aux_sym_inquire_statement_token1] = ACTIONS(4355), - [aux_sym_enum_statement_token1] = ACTIONS(4355), - [aux_sym_file_position_statement_token1] = ACTIONS(4355), - [aux_sym_file_position_statement_token2] = ACTIONS(4355), - [aux_sym_file_position_statement_token3] = ACTIONS(4355), - [aux_sym_file_position_statement_token4] = ACTIONS(4355), - [aux_sym_allocate_statement_token1] = ACTIONS(4355), - [aux_sym_entry_statement_token1] = ACTIONS(4355), - [aux_sym_logical_expression_token5] = ACTIONS(4359), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_LPAREN_SLASH] = ACTIONS(4359), - [anon_sym_LBRACK] = ACTIONS(4359), - [aux_sym_boolean_literal_token1] = ACTIONS(4359), - [aux_sym_boolean_literal_token2] = ACTIONS(4359), - [aux_sym_null_literal_token1] = ACTIONS(4355), - [aux_sym_coarray_statement_token1] = ACTIONS(4355), - [aux_sym_coarray_statement_token2] = ACTIONS(4355), - [aux_sym_coarray_statement_token6] = ACTIONS(4355), - [aux_sym_coarray_statement_token8] = ACTIONS(4355), - [aux_sym_coarray_statement_token11] = ACTIONS(4355), - [aux_sym_coarray_statement_token12] = ACTIONS(4355), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4355), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4355), - [aux_sym_identifier_token1] = ACTIONS(4355), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4359), - [sym__float_literal] = ACTIONS(4359), - [sym__boz_literal] = ACTIONS(4359), - [sym__string_literal] = ACTIONS(4359), - [sym__string_literal_kind] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token2] = ACTIONS(4265), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4265), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4265), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4265), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4265), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4265), + [aux_sym_procedure_attributes_token1] = ACTIONS(4265), + [aux_sym_procedure_attributes_token3] = ACTIONS(4265), + [aux_sym_contains_statement_token1] = ACTIONS(4265), + [aux_sym_use_statement_token1] = ACTIONS(4265), + [aux_sym_use_statement_token2] = ACTIONS(4265), + [aux_sym_implicit_statement_token1] = ACTIONS(4265), + [aux_sym_implicit_statement_token3] = ACTIONS(4265), + [aux_sym_implicit_statement_token4] = ACTIONS(4265), + [aux_sym_save_statement_token1] = ACTIONS(4265), + [aux_sym_private_statement_token1] = ACTIONS(4265), + [aux_sym_public_statement_token1] = ACTIONS(4265), + [aux_sym_namelist_statement_token1] = ACTIONS(4265), + [aux_sym_common_statement_token1] = ACTIONS(4265), + [aux_sym_import_statement_token1] = ACTIONS(4265), + [aux_sym_derived_type_definition_token1] = ACTIONS(4265), + [aux_sym_abstract_specifier_token1] = ACTIONS(4265), + [aux_sym_procedure_attribute_token6] = ACTIONS(4265), + [aux_sym_variable_attributes_token1] = ACTIONS(4265), + [aux_sym_variable_attributes_token2] = ACTIONS(4265), + [aux_sym_variable_attributes_token3] = ACTIONS(4265), + [aux_sym_variable_attributes_token4] = ACTIONS(4265), + [aux_sym_variable_attributes_token5] = ACTIONS(4265), + [aux_sym__intrinsic_type_token1] = ACTIONS(4265), + [aux_sym__intrinsic_type_token2] = ACTIONS(4265), + [aux_sym__intrinsic_type_token3] = ACTIONS(4265), + [aux_sym__intrinsic_type_token4] = ACTIONS(4265), + [aux_sym__intrinsic_type_token6] = ACTIONS(4265), + [aux_sym__intrinsic_type_token7] = ACTIONS(4265), + [aux_sym__intrinsic_type_token8] = ACTIONS(4265), + [aux_sym__intrinsic_type_token9] = ACTIONS(4265), + [aux_sym__intrinsic_type_token10] = ACTIONS(4265), + [aux_sym_derived_type_token1] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4265), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4265), + [aux_sym_type_qualifier_token1] = ACTIONS(4265), + [aux_sym_type_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4265), + [anon_sym_SEMI] = ACTIONS(4269), + [aux_sym_stop_statement_token1] = ACTIONS(4265), + [aux_sym_stop_statement_token2] = ACTIONS(4265), + [aux_sym_subroutine_call_token1] = ACTIONS(4265), + [aux_sym_keyword_statement_token1] = ACTIONS(4265), + [aux_sym_keyword_statement_token2] = ACTIONS(4265), + [aux_sym_keyword_statement_token3] = ACTIONS(4265), + [aux_sym_keyword_statement_token4] = ACTIONS(4265), + [aux_sym_keyword_statement_token6] = ACTIONS(4265), + [aux_sym_keyword_statement_token7] = ACTIONS(4265), + [aux_sym_include_statement_token1] = ACTIONS(4265), + [aux_sym_data_statement_token1] = ACTIONS(4265), + [aux_sym_do_loop_statement_token1] = ACTIONS(4265), + [aux_sym__inline_if_statement_token1] = ACTIONS(4265), + [aux_sym_end_if_statement_token1] = ACTIONS(4265), + [aux_sym_elseif_clause_token2] = ACTIONS(4265), + [aux_sym__inline_where_statement_token1] = ACTIONS(4265), + [aux_sym__forall_control_expression_token1] = ACTIONS(4265), + [aux_sym_select_case_statement_token1] = ACTIONS(4265), + [aux_sym_select_case_statement_token3] = ACTIONS(4265), + [aux_sym_select_type_statement_token1] = ACTIONS(4265), + [aux_sym_select_rank_statement_token2] = ACTIONS(4265), + [aux_sym_block_construct_token1] = ACTIONS(4265), + [aux_sym_associate_statement_token1] = ACTIONS(4265), + [aux_sym_format_statement_token1] = ACTIONS(4265), + [aux_sym_print_statement_token1] = ACTIONS(4265), + [aux_sym_open_statement_token1] = ACTIONS(4265), + [aux_sym_close_statement_token1] = ACTIONS(4265), + [aux_sym_inquire_statement_token1] = ACTIONS(4265), + [aux_sym_enum_statement_token1] = ACTIONS(4265), + [aux_sym_file_position_statement_token1] = ACTIONS(4265), + [aux_sym_file_position_statement_token2] = ACTIONS(4265), + [aux_sym_file_position_statement_token3] = ACTIONS(4265), + [aux_sym_file_position_statement_token4] = ACTIONS(4265), + [aux_sym_allocate_statement_token1] = ACTIONS(4265), + [aux_sym_entry_statement_token1] = ACTIONS(4265), + [aux_sym_logical_expression_token5] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_LPAREN_SLASH] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [aux_sym_boolean_literal_token1] = ACTIONS(4269), + [aux_sym_boolean_literal_token2] = ACTIONS(4269), + [aux_sym_null_literal_token1] = ACTIONS(4265), + [aux_sym_coarray_statement_token1] = ACTIONS(4265), + [aux_sym_coarray_statement_token2] = ACTIONS(4265), + [aux_sym_coarray_statement_token6] = ACTIONS(4265), + [aux_sym_coarray_statement_token8] = ACTIONS(4265), + [aux_sym_coarray_statement_token11] = ACTIONS(4265), + [aux_sym_coarray_statement_token12] = ACTIONS(4265), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4265), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4265), + [aux_sym_identifier_token1] = ACTIONS(4265), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4269), + [sym__float_literal] = ACTIONS(4269), + [sym__boz_literal] = ACTIONS(4269), + [sym__string_literal] = ACTIONS(4269), + [sym__string_literal_kind] = ACTIONS(4269), }, [914] = { - [aux_sym_preproc_include_token1] = ACTIONS(4281), - [aux_sym_preproc_def_token1] = ACTIONS(4281), - [aux_sym_preproc_if_token1] = ACTIONS(4281), - [aux_sym_preproc_if_token2] = ACTIONS(4281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), - [sym_preproc_directive] = ACTIONS(4281), - [anon_sym_LPAREN2] = ACTIONS(4281), - [sym_preproc_comment] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4281), - [aux_sym_end_program_statement_token1] = ACTIONS(4281), - [aux_sym_end_program_statement_token2] = ACTIONS(4281), - [aux_sym_module_statement_token1] = ACTIONS(4281), - [aux_sym_submodule_statement_token1] = ACTIONS(4281), - [aux_sym_interface_statement_token1] = ACTIONS(4281), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4281), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4281), - [aux_sym_subroutine_statement_token1] = ACTIONS(4281), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4281), - [aux_sym_function_statement_token1] = ACTIONS(4281), - [aux_sym_language_binding_token1] = ACTIONS(4281), - [aux_sym_procedure_attributes_token1] = ACTIONS(4281), - [aux_sym_procedure_attributes_token3] = ACTIONS(4281), - [aux_sym_contains_statement_token1] = ACTIONS(4281), - [aux_sym_use_statement_token1] = ACTIONS(4281), - [aux_sym_use_statement_token2] = ACTIONS(4281), - [aux_sym_implicit_statement_token1] = ACTIONS(4281), - [aux_sym_implicit_statement_token3] = ACTIONS(4281), - [aux_sym_implicit_statement_token4] = ACTIONS(4281), - [aux_sym_save_statement_token1] = ACTIONS(4281), - [aux_sym_private_statement_token1] = ACTIONS(4281), - [aux_sym_public_statement_token1] = ACTIONS(4281), - [aux_sym_namelist_statement_token1] = ACTIONS(4281), - [aux_sym_common_statement_token1] = ACTIONS(4281), - [aux_sym_import_statement_token1] = ACTIONS(4281), - [aux_sym_derived_type_definition_token1] = ACTIONS(4281), - [aux_sym_abstract_specifier_token1] = ACTIONS(4281), - [aux_sym_procedure_attribute_token6] = ACTIONS(4281), - [aux_sym_variable_attributes_token1] = ACTIONS(4281), - [aux_sym_variable_attributes_token2] = ACTIONS(4281), - [aux_sym_variable_attributes_token3] = ACTIONS(4281), - [aux_sym_variable_attributes_token4] = ACTIONS(4281), - [aux_sym_variable_attributes_token5] = ACTIONS(4281), - [aux_sym__intrinsic_type_token1] = ACTIONS(4281), - [aux_sym__intrinsic_type_token2] = ACTIONS(4281), - [aux_sym__intrinsic_type_token3] = ACTIONS(4281), - [aux_sym__intrinsic_type_token4] = ACTIONS(4281), - [aux_sym__intrinsic_type_token6] = ACTIONS(4281), - [aux_sym__intrinsic_type_token7] = ACTIONS(4281), - [aux_sym__intrinsic_type_token8] = ACTIONS(4281), - [aux_sym__intrinsic_type_token9] = ACTIONS(4281), - [aux_sym__intrinsic_type_token10] = ACTIONS(4281), - [aux_sym_derived_type_token1] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4281), - [aux_sym_type_qualifier_token1] = ACTIONS(4281), - [aux_sym_type_qualifier_token2] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4281), - [aux_sym_equivalence_statement_token1] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4285), - [aux_sym_stop_statement_token1] = ACTIONS(4281), - [aux_sym_stop_statement_token2] = ACTIONS(4281), - [aux_sym_subroutine_call_token1] = ACTIONS(4281), - [aux_sym_keyword_statement_token1] = ACTIONS(4281), - [aux_sym_keyword_statement_token2] = ACTIONS(4281), - [aux_sym_keyword_statement_token3] = ACTIONS(4281), - [aux_sym_keyword_statement_token4] = ACTIONS(4281), - [aux_sym_keyword_statement_token6] = ACTIONS(4281), - [aux_sym_keyword_statement_token7] = ACTIONS(4281), - [aux_sym_include_statement_token1] = ACTIONS(4281), - [aux_sym_data_statement_token1] = ACTIONS(4281), - [aux_sym_do_loop_statement_token1] = ACTIONS(4281), - [aux_sym__inline_if_statement_token1] = ACTIONS(4281), - [aux_sym_end_if_statement_token1] = ACTIONS(4281), - [aux_sym_elseif_clause_token2] = ACTIONS(4281), - [aux_sym__inline_where_statement_token1] = ACTIONS(4281), - [aux_sym__forall_control_expression_token1] = ACTIONS(4281), - [aux_sym_select_case_statement_token1] = ACTIONS(4281), - [aux_sym_select_case_statement_token3] = ACTIONS(4281), - [aux_sym_select_type_statement_token1] = ACTIONS(4281), - [aux_sym_select_rank_statement_token2] = ACTIONS(4281), - [aux_sym_block_construct_token1] = ACTIONS(4281), - [aux_sym_associate_statement_token1] = ACTIONS(4281), - [aux_sym_format_statement_token1] = ACTIONS(4281), - [aux_sym_print_statement_token1] = ACTIONS(4281), - [aux_sym_open_statement_token1] = ACTIONS(4281), - [aux_sym_close_statement_token1] = ACTIONS(4281), - [aux_sym_inquire_statement_token1] = ACTIONS(4281), - [aux_sym_enum_statement_token1] = ACTIONS(4281), - [aux_sym_file_position_statement_token1] = ACTIONS(4281), - [aux_sym_file_position_statement_token2] = ACTIONS(4281), - [aux_sym_file_position_statement_token3] = ACTIONS(4281), - [aux_sym_file_position_statement_token4] = ACTIONS(4281), - [aux_sym_allocate_statement_token1] = ACTIONS(4281), - [aux_sym_entry_statement_token1] = ACTIONS(4281), - [aux_sym_logical_expression_token5] = ACTIONS(4285), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_LPAREN_SLASH] = ACTIONS(4285), - [anon_sym_LBRACK] = ACTIONS(4285), - [aux_sym_boolean_literal_token1] = ACTIONS(4285), - [aux_sym_boolean_literal_token2] = ACTIONS(4285), - [aux_sym_null_literal_token1] = ACTIONS(4281), - [aux_sym_coarray_statement_token1] = ACTIONS(4281), - [aux_sym_coarray_statement_token2] = ACTIONS(4281), - [aux_sym_coarray_statement_token6] = ACTIONS(4281), - [aux_sym_coarray_statement_token8] = ACTIONS(4281), - [aux_sym_coarray_statement_token11] = ACTIONS(4281), - [aux_sym_coarray_statement_token12] = ACTIONS(4281), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4281), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4281), - [aux_sym_identifier_token1] = ACTIONS(4281), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4285), - [sym__float_literal] = ACTIONS(4285), - [sym__boz_literal] = ACTIONS(4285), - [sym__string_literal] = ACTIONS(4285), - [sym__string_literal_kind] = ACTIONS(4285), - }, - [915] = { - [aux_sym_preproc_include_token1] = ACTIONS(4287), - [aux_sym_preproc_def_token1] = ACTIONS(4287), - [aux_sym_preproc_if_token1] = ACTIONS(4287), - [aux_sym_preproc_if_token2] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4287), - [sym_preproc_directive] = ACTIONS(4287), - [anon_sym_LPAREN2] = ACTIONS(4287), - [sym_preproc_comment] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token2] = ACTIONS(4287), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4287), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4287), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4287), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4287), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4287), - [aux_sym_procedure_attributes_token1] = ACTIONS(4287), - [aux_sym_procedure_attributes_token3] = ACTIONS(4287), - [aux_sym_contains_statement_token1] = ACTIONS(4287), - [aux_sym_use_statement_token1] = ACTIONS(4287), - [aux_sym_use_statement_token2] = ACTIONS(4287), - [aux_sym_implicit_statement_token1] = ACTIONS(4287), - [aux_sym_implicit_statement_token3] = ACTIONS(4287), - [aux_sym_implicit_statement_token4] = ACTIONS(4287), - [aux_sym_save_statement_token1] = ACTIONS(4287), - [aux_sym_private_statement_token1] = ACTIONS(4287), - [aux_sym_public_statement_token1] = ACTIONS(4287), - [aux_sym_namelist_statement_token1] = ACTIONS(4287), - [aux_sym_common_statement_token1] = ACTIONS(4287), - [aux_sym_import_statement_token1] = ACTIONS(4287), - [aux_sym_derived_type_definition_token1] = ACTIONS(4287), - [aux_sym_abstract_specifier_token1] = ACTIONS(4287), - [aux_sym_procedure_attribute_token6] = ACTIONS(4287), - [aux_sym_variable_attributes_token1] = ACTIONS(4287), - [aux_sym_variable_attributes_token2] = ACTIONS(4287), - [aux_sym_variable_attributes_token3] = ACTIONS(4287), - [aux_sym_variable_attributes_token4] = ACTIONS(4287), - [aux_sym_variable_attributes_token5] = ACTIONS(4287), - [aux_sym__intrinsic_type_token1] = ACTIONS(4287), - [aux_sym__intrinsic_type_token2] = ACTIONS(4287), - [aux_sym__intrinsic_type_token3] = ACTIONS(4287), - [aux_sym__intrinsic_type_token4] = ACTIONS(4287), - [aux_sym__intrinsic_type_token6] = ACTIONS(4287), - [aux_sym__intrinsic_type_token7] = ACTIONS(4287), - [aux_sym__intrinsic_type_token8] = ACTIONS(4287), - [aux_sym__intrinsic_type_token9] = ACTIONS(4287), - [aux_sym__intrinsic_type_token10] = ACTIONS(4287), - [aux_sym_derived_type_token1] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4287), - [aux_sym_type_qualifier_token1] = ACTIONS(4287), - [aux_sym_type_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4291), - [aux_sym_stop_statement_token1] = ACTIONS(4287), - [aux_sym_stop_statement_token2] = ACTIONS(4287), - [aux_sym_subroutine_call_token1] = ACTIONS(4287), - [aux_sym_keyword_statement_token1] = ACTIONS(4287), - [aux_sym_keyword_statement_token2] = ACTIONS(4287), - [aux_sym_keyword_statement_token3] = ACTIONS(4287), - [aux_sym_keyword_statement_token4] = ACTIONS(4287), - [aux_sym_keyword_statement_token6] = ACTIONS(4287), - [aux_sym_keyword_statement_token7] = ACTIONS(4287), - [aux_sym_include_statement_token1] = ACTIONS(4287), - [aux_sym_data_statement_token1] = ACTIONS(4287), - [aux_sym_do_loop_statement_token1] = ACTIONS(4287), - [aux_sym__inline_if_statement_token1] = ACTIONS(4287), - [aux_sym_end_if_statement_token1] = ACTIONS(4287), - [aux_sym_elseif_clause_token2] = ACTIONS(4287), - [aux_sym__inline_where_statement_token1] = ACTIONS(4287), - [aux_sym__forall_control_expression_token1] = ACTIONS(4287), - [aux_sym_select_case_statement_token1] = ACTIONS(4287), - [aux_sym_select_case_statement_token3] = ACTIONS(4287), - [aux_sym_select_type_statement_token1] = ACTIONS(4287), - [aux_sym_select_rank_statement_token2] = ACTIONS(4287), - [aux_sym_block_construct_token1] = ACTIONS(4287), - [aux_sym_associate_statement_token1] = ACTIONS(4287), - [aux_sym_format_statement_token1] = ACTIONS(4287), - [aux_sym_print_statement_token1] = ACTIONS(4287), - [aux_sym_open_statement_token1] = ACTIONS(4287), - [aux_sym_close_statement_token1] = ACTIONS(4287), - [aux_sym_inquire_statement_token1] = ACTIONS(4287), - [aux_sym_enum_statement_token1] = ACTIONS(4287), - [aux_sym_file_position_statement_token1] = ACTIONS(4287), - [aux_sym_file_position_statement_token2] = ACTIONS(4287), - [aux_sym_file_position_statement_token3] = ACTIONS(4287), - [aux_sym_file_position_statement_token4] = ACTIONS(4287), - [aux_sym_allocate_statement_token1] = ACTIONS(4287), - [aux_sym_entry_statement_token1] = ACTIONS(4287), - [aux_sym_logical_expression_token5] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_LPAREN_SLASH] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [aux_sym_boolean_literal_token1] = ACTIONS(4291), - [aux_sym_boolean_literal_token2] = ACTIONS(4291), - [aux_sym_null_literal_token1] = ACTIONS(4287), - [aux_sym_coarray_statement_token1] = ACTIONS(4287), - [aux_sym_coarray_statement_token2] = ACTIONS(4287), - [aux_sym_coarray_statement_token6] = ACTIONS(4287), - [aux_sym_coarray_statement_token8] = ACTIONS(4287), - [aux_sym_coarray_statement_token11] = ACTIONS(4287), - [aux_sym_coarray_statement_token12] = ACTIONS(4287), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4287), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4287), - [aux_sym_identifier_token1] = ACTIONS(4287), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4291), - [sym__float_literal] = ACTIONS(4291), - [sym__boz_literal] = ACTIONS(4291), - [sym__string_literal] = ACTIONS(4291), - [sym__string_literal_kind] = ACTIONS(4291), - }, - [916] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(4643), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), - }, - [917] = { - [aux_sym_preproc_include_token1] = ACTIONS(4301), - [aux_sym_preproc_def_token1] = ACTIONS(4301), - [aux_sym_preproc_if_token1] = ACTIONS(4301), - [aux_sym_preproc_if_token2] = ACTIONS(4301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), - [sym_preproc_directive] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4301), - [sym_preproc_comment] = ACTIONS(4645), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4301), - [aux_sym_end_program_statement_token1] = ACTIONS(4301), - [aux_sym_end_program_statement_token2] = ACTIONS(4301), - [aux_sym_module_statement_token1] = ACTIONS(4301), - [aux_sym_submodule_statement_token1] = ACTIONS(4301), - [aux_sym_interface_statement_token1] = ACTIONS(4301), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4301), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4301), - [aux_sym_subroutine_statement_token1] = ACTIONS(4301), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4301), - [aux_sym_function_statement_token1] = ACTIONS(4301), - [aux_sym_language_binding_token1] = ACTIONS(4301), - [aux_sym_procedure_attributes_token1] = ACTIONS(4301), - [aux_sym_procedure_attributes_token3] = ACTIONS(4301), - [aux_sym_contains_statement_token1] = ACTIONS(4301), - [aux_sym_use_statement_token1] = ACTIONS(4301), - [aux_sym_use_statement_token2] = ACTIONS(4301), - [aux_sym_implicit_statement_token1] = ACTIONS(4301), - [aux_sym_implicit_statement_token3] = ACTIONS(4301), - [aux_sym_implicit_statement_token4] = ACTIONS(4301), - [aux_sym_save_statement_token1] = ACTIONS(4301), - [aux_sym_private_statement_token1] = ACTIONS(4301), - [aux_sym_public_statement_token1] = ACTIONS(4301), - [aux_sym_namelist_statement_token1] = ACTIONS(4301), - [aux_sym_common_statement_token1] = ACTIONS(4301), - [aux_sym_import_statement_token1] = ACTIONS(4301), - [aux_sym_derived_type_definition_token1] = ACTIONS(4301), - [aux_sym_abstract_specifier_token1] = ACTIONS(4301), - [aux_sym_procedure_attribute_token6] = ACTIONS(4301), - [aux_sym_variable_attributes_token1] = ACTIONS(4301), - [aux_sym_variable_attributes_token2] = ACTIONS(4301), - [aux_sym_variable_attributes_token3] = ACTIONS(4301), - [aux_sym_variable_attributes_token4] = ACTIONS(4301), - [aux_sym_variable_attributes_token5] = ACTIONS(4301), - [aux_sym__intrinsic_type_token1] = ACTIONS(4301), - [aux_sym__intrinsic_type_token2] = ACTIONS(4301), - [aux_sym__intrinsic_type_token3] = ACTIONS(4301), - [aux_sym__intrinsic_type_token4] = ACTIONS(4301), - [aux_sym__intrinsic_type_token6] = ACTIONS(4301), - [aux_sym__intrinsic_type_token7] = ACTIONS(4301), - [aux_sym__intrinsic_type_token8] = ACTIONS(4301), - [aux_sym__intrinsic_type_token9] = ACTIONS(4301), - [aux_sym__intrinsic_type_token10] = ACTIONS(4301), - [aux_sym_derived_type_token1] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4301), - [aux_sym_type_qualifier_token1] = ACTIONS(4301), - [aux_sym_type_qualifier_token2] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4301), - [aux_sym_equivalence_statement_token1] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4305), - [aux_sym_stop_statement_token1] = ACTIONS(4301), - [aux_sym_stop_statement_token2] = ACTIONS(4301), - [aux_sym_subroutine_call_token1] = ACTIONS(4301), - [aux_sym_keyword_statement_token1] = ACTIONS(4301), - [aux_sym_keyword_statement_token2] = ACTIONS(4301), - [aux_sym_keyword_statement_token3] = ACTIONS(4301), - [aux_sym_keyword_statement_token4] = ACTIONS(4301), - [aux_sym_keyword_statement_token6] = ACTIONS(4301), - [aux_sym_keyword_statement_token7] = ACTIONS(4301), - [aux_sym_include_statement_token1] = ACTIONS(4301), - [aux_sym_data_statement_token1] = ACTIONS(4301), - [aux_sym_do_loop_statement_token1] = ACTIONS(4301), - [aux_sym__inline_if_statement_token1] = ACTIONS(4301), - [aux_sym_end_if_statement_token1] = ACTIONS(4301), - [aux_sym_elseif_clause_token2] = ACTIONS(4301), - [aux_sym__inline_where_statement_token1] = ACTIONS(4301), - [aux_sym__forall_control_expression_token1] = ACTIONS(4301), - [aux_sym_select_case_statement_token1] = ACTIONS(4301), - [aux_sym_select_case_statement_token3] = ACTIONS(4301), - [aux_sym_select_type_statement_token1] = ACTIONS(4301), - [aux_sym_select_rank_statement_token2] = ACTIONS(4301), - [aux_sym_block_construct_token1] = ACTIONS(4301), - [aux_sym_associate_statement_token1] = ACTIONS(4301), - [aux_sym_format_statement_token1] = ACTIONS(4301), - [aux_sym_print_statement_token1] = ACTIONS(4301), - [aux_sym_open_statement_token1] = ACTIONS(4301), - [aux_sym_close_statement_token1] = ACTIONS(4301), - [aux_sym_inquire_statement_token1] = ACTIONS(4301), - [aux_sym_enum_statement_token1] = ACTIONS(4301), - [aux_sym_file_position_statement_token1] = ACTIONS(4301), - [aux_sym_file_position_statement_token2] = ACTIONS(4301), - [aux_sym_file_position_statement_token3] = ACTIONS(4301), - [aux_sym_file_position_statement_token4] = ACTIONS(4301), - [aux_sym_allocate_statement_token1] = ACTIONS(4301), - [aux_sym_entry_statement_token1] = ACTIONS(4301), - [aux_sym_logical_expression_token5] = ACTIONS(4305), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_LPAREN_SLASH] = ACTIONS(4305), - [anon_sym_LBRACK] = ACTIONS(4305), - [aux_sym_boolean_literal_token1] = ACTIONS(4305), - [aux_sym_boolean_literal_token2] = ACTIONS(4305), - [aux_sym_null_literal_token1] = ACTIONS(4301), - [aux_sym_coarray_statement_token1] = ACTIONS(4301), - [aux_sym_coarray_statement_token2] = ACTIONS(4301), - [aux_sym_coarray_statement_token6] = ACTIONS(4301), - [aux_sym_coarray_statement_token8] = ACTIONS(4301), - [aux_sym_coarray_statement_token11] = ACTIONS(4301), - [aux_sym_coarray_statement_token12] = ACTIONS(4301), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4301), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4301), - [aux_sym_identifier_token1] = ACTIONS(4301), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4305), - [sym__float_literal] = ACTIONS(4305), - [sym__boz_literal] = ACTIONS(4305), - [sym__string_literal] = ACTIONS(4305), - [sym__string_literal_kind] = ACTIONS(4305), - }, - [918] = { - [aux_sym_preproc_include_token1] = ACTIONS(4307), - [aux_sym_preproc_def_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token2] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4307), - [sym_preproc_directive] = ACTIONS(4307), - [anon_sym_LPAREN2] = ACTIONS(4307), - [sym_preproc_comment] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token2] = ACTIONS(4307), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4307), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4307), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token3] = ACTIONS(4307), - [aux_sym_contains_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token2] = ACTIONS(4307), - [aux_sym_implicit_statement_token1] = ACTIONS(4307), - [aux_sym_implicit_statement_token3] = ACTIONS(4307), - [aux_sym_implicit_statement_token4] = ACTIONS(4307), - [aux_sym_save_statement_token1] = ACTIONS(4307), - [aux_sym_private_statement_token1] = ACTIONS(4307), - [aux_sym_public_statement_token1] = ACTIONS(4307), - [aux_sym_namelist_statement_token1] = ACTIONS(4307), - [aux_sym_common_statement_token1] = ACTIONS(4307), - [aux_sym_import_statement_token1] = ACTIONS(4307), - [aux_sym_derived_type_definition_token1] = ACTIONS(4307), - [aux_sym_abstract_specifier_token1] = ACTIONS(4307), - [aux_sym_procedure_attribute_token6] = ACTIONS(4307), - [aux_sym_variable_attributes_token1] = ACTIONS(4307), - [aux_sym_variable_attributes_token2] = ACTIONS(4307), - [aux_sym_variable_attributes_token3] = ACTIONS(4307), - [aux_sym_variable_attributes_token4] = ACTIONS(4307), - [aux_sym_variable_attributes_token5] = ACTIONS(4307), - [aux_sym__intrinsic_type_token1] = ACTIONS(4307), - [aux_sym__intrinsic_type_token2] = ACTIONS(4307), - [aux_sym__intrinsic_type_token3] = ACTIONS(4307), - [aux_sym__intrinsic_type_token4] = ACTIONS(4307), - [aux_sym__intrinsic_type_token6] = ACTIONS(4307), - [aux_sym__intrinsic_type_token7] = ACTIONS(4307), - [aux_sym__intrinsic_type_token8] = ACTIONS(4307), - [aux_sym__intrinsic_type_token9] = ACTIONS(4307), - [aux_sym__intrinsic_type_token10] = ACTIONS(4307), - [aux_sym_derived_type_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4307), - [aux_sym_type_qualifier_token1] = ACTIONS(4307), - [aux_sym_type_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4307), - [anon_sym_SEMI] = ACTIONS(4311), - [aux_sym_stop_statement_token1] = ACTIONS(4307), - [aux_sym_stop_statement_token2] = ACTIONS(4307), - [aux_sym_subroutine_call_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token2] = ACTIONS(4307), - [aux_sym_keyword_statement_token3] = ACTIONS(4307), - [aux_sym_keyword_statement_token4] = ACTIONS(4307), - [aux_sym_keyword_statement_token6] = ACTIONS(4307), - [aux_sym_keyword_statement_token7] = ACTIONS(4307), - [aux_sym_include_statement_token1] = ACTIONS(4307), - [aux_sym_data_statement_token1] = ACTIONS(4307), - [aux_sym_do_loop_statement_token1] = ACTIONS(4307), - [aux_sym__inline_if_statement_token1] = ACTIONS(4307), - [aux_sym_end_if_statement_token1] = ACTIONS(4307), - [aux_sym_elseif_clause_token2] = ACTIONS(4307), - [aux_sym__inline_where_statement_token1] = ACTIONS(4307), - [aux_sym__forall_control_expression_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token3] = ACTIONS(4307), - [aux_sym_select_type_statement_token1] = ACTIONS(4307), - [aux_sym_select_rank_statement_token2] = ACTIONS(4307), - [aux_sym_block_construct_token1] = ACTIONS(4307), - [aux_sym_associate_statement_token1] = ACTIONS(4307), - [aux_sym_format_statement_token1] = ACTIONS(4307), - [aux_sym_print_statement_token1] = ACTIONS(4307), - [aux_sym_open_statement_token1] = ACTIONS(4307), - [aux_sym_close_statement_token1] = ACTIONS(4307), - [aux_sym_inquire_statement_token1] = ACTIONS(4307), - [aux_sym_enum_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token2] = ACTIONS(4307), - [aux_sym_file_position_statement_token3] = ACTIONS(4307), - [aux_sym_file_position_statement_token4] = ACTIONS(4307), - [aux_sym_allocate_statement_token1] = ACTIONS(4307), - [aux_sym_entry_statement_token1] = ACTIONS(4307), - [aux_sym_logical_expression_token5] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LPAREN_SLASH] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [aux_sym_boolean_literal_token1] = ACTIONS(4311), - [aux_sym_boolean_literal_token2] = ACTIONS(4311), - [aux_sym_null_literal_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token2] = ACTIONS(4307), - [aux_sym_coarray_statement_token6] = ACTIONS(4307), - [aux_sym_coarray_statement_token8] = ACTIONS(4307), - [aux_sym_coarray_statement_token11] = ACTIONS(4307), - [aux_sym_coarray_statement_token12] = ACTIONS(4307), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4307), - [aux_sym_identifier_token1] = ACTIONS(4307), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4311), - [sym__float_literal] = ACTIONS(4311), - [sym__boz_literal] = ACTIONS(4311), - [sym__string_literal] = ACTIONS(4311), - [sym__string_literal_kind] = ACTIONS(4311), - }, - [919] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(4649), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [920] = { - [ts_builtin_sym_end] = ACTIONS(4265), - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [921] = { - [ts_builtin_sym_end] = ACTIONS(4291), - [aux_sym_preproc_include_token1] = ACTIONS(4287), - [aux_sym_preproc_def_token1] = ACTIONS(4287), - [aux_sym_preproc_if_token1] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4287), - [sym_preproc_directive] = ACTIONS(4287), - [anon_sym_LPAREN2] = ACTIONS(4287), - [sym_preproc_comment] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token2] = ACTIONS(4287), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4287), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4287), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4287), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4287), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4287), - [aux_sym_procedure_attributes_token1] = ACTIONS(4287), - [aux_sym_procedure_attributes_token3] = ACTIONS(4287), - [aux_sym_contains_statement_token1] = ACTIONS(4287), - [aux_sym_use_statement_token1] = ACTIONS(4287), - [aux_sym_use_statement_token2] = ACTIONS(4287), - [aux_sym_implicit_statement_token1] = ACTIONS(4287), - [aux_sym_implicit_statement_token3] = ACTIONS(4287), - [aux_sym_implicit_statement_token4] = ACTIONS(4287), - [aux_sym_save_statement_token1] = ACTIONS(4287), - [aux_sym_private_statement_token1] = ACTIONS(4287), - [aux_sym_public_statement_token1] = ACTIONS(4287), - [aux_sym_namelist_statement_token1] = ACTIONS(4287), - [aux_sym_common_statement_token1] = ACTIONS(4287), - [aux_sym_import_statement_token1] = ACTIONS(4287), - [aux_sym_derived_type_definition_token1] = ACTIONS(4287), - [aux_sym_abstract_specifier_token1] = ACTIONS(4287), - [aux_sym_procedure_attribute_token6] = ACTIONS(4287), - [aux_sym_variable_attributes_token1] = ACTIONS(4287), - [aux_sym_variable_attributes_token2] = ACTIONS(4287), - [aux_sym_variable_attributes_token3] = ACTIONS(4287), - [aux_sym_variable_attributes_token4] = ACTIONS(4287), - [aux_sym_variable_attributes_token5] = ACTIONS(4287), - [aux_sym__intrinsic_type_token1] = ACTIONS(4287), - [aux_sym__intrinsic_type_token2] = ACTIONS(4287), - [aux_sym__intrinsic_type_token3] = ACTIONS(4287), - [aux_sym__intrinsic_type_token4] = ACTIONS(4287), - [aux_sym__intrinsic_type_token6] = ACTIONS(4287), - [aux_sym__intrinsic_type_token7] = ACTIONS(4287), - [aux_sym__intrinsic_type_token8] = ACTIONS(4287), - [aux_sym__intrinsic_type_token9] = ACTIONS(4287), - [aux_sym__intrinsic_type_token10] = ACTIONS(4287), - [aux_sym_derived_type_token1] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4287), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4287), - [aux_sym_type_qualifier_token1] = ACTIONS(4287), - [aux_sym_type_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4291), - [aux_sym_stop_statement_token1] = ACTIONS(4287), - [aux_sym_stop_statement_token2] = ACTIONS(4287), - [aux_sym_subroutine_call_token1] = ACTIONS(4287), - [aux_sym_keyword_statement_token1] = ACTIONS(4287), - [aux_sym_keyword_statement_token2] = ACTIONS(4287), - [aux_sym_keyword_statement_token3] = ACTIONS(4287), - [aux_sym_keyword_statement_token4] = ACTIONS(4287), - [aux_sym_keyword_statement_token6] = ACTIONS(4287), - [aux_sym_keyword_statement_token7] = ACTIONS(4287), - [aux_sym_include_statement_token1] = ACTIONS(4287), - [aux_sym_data_statement_token1] = ACTIONS(4287), - [aux_sym_do_loop_statement_token1] = ACTIONS(4287), - [aux_sym__inline_if_statement_token1] = ACTIONS(4287), - [aux_sym_end_if_statement_token1] = ACTIONS(4287), - [aux_sym_elseif_clause_token2] = ACTIONS(4287), - [aux_sym__inline_where_statement_token1] = ACTIONS(4287), - [aux_sym__forall_control_expression_token1] = ACTIONS(4287), - [aux_sym_select_case_statement_token1] = ACTIONS(4287), - [aux_sym_select_case_statement_token3] = ACTIONS(4287), - [aux_sym_select_type_statement_token1] = ACTIONS(4287), - [aux_sym_select_rank_statement_token2] = ACTIONS(4287), - [aux_sym_block_construct_token1] = ACTIONS(4287), - [aux_sym_associate_statement_token1] = ACTIONS(4287), - [aux_sym_format_statement_token1] = ACTIONS(4287), - [aux_sym_print_statement_token1] = ACTIONS(4287), - [aux_sym_open_statement_token1] = ACTIONS(4287), - [aux_sym_close_statement_token1] = ACTIONS(4287), - [aux_sym_inquire_statement_token1] = ACTIONS(4287), - [aux_sym_enum_statement_token1] = ACTIONS(4287), - [aux_sym_file_position_statement_token1] = ACTIONS(4287), - [aux_sym_file_position_statement_token2] = ACTIONS(4287), - [aux_sym_file_position_statement_token3] = ACTIONS(4287), - [aux_sym_file_position_statement_token4] = ACTIONS(4287), - [aux_sym_allocate_statement_token1] = ACTIONS(4287), - [aux_sym_entry_statement_token1] = ACTIONS(4287), - [aux_sym_logical_expression_token5] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_LPAREN_SLASH] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [aux_sym_boolean_literal_token1] = ACTIONS(4291), - [aux_sym_boolean_literal_token2] = ACTIONS(4291), - [aux_sym_null_literal_token1] = ACTIONS(4287), - [aux_sym_coarray_statement_token1] = ACTIONS(4287), - [aux_sym_coarray_statement_token2] = ACTIONS(4287), - [aux_sym_coarray_statement_token6] = ACTIONS(4287), - [aux_sym_coarray_statement_token8] = ACTIONS(4287), - [aux_sym_coarray_statement_token11] = ACTIONS(4287), - [aux_sym_coarray_statement_token12] = ACTIONS(4287), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4287), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4287), - [aux_sym_identifier_token1] = ACTIONS(4287), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4291), - [sym__float_literal] = ACTIONS(4291), - [sym__boz_literal] = ACTIONS(4291), - [sym__string_literal] = ACTIONS(4291), - [sym__string_literal_kind] = ACTIONS(4291), - }, - [922] = { - [aux_sym_preproc_include_token1] = ACTIONS(4257), - [aux_sym_preproc_def_token1] = ACTIONS(4257), - [aux_sym_preproc_if_token1] = ACTIONS(4257), - [aux_sym_preproc_if_token2] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4257), - [sym_preproc_directive] = ACTIONS(4257), - [anon_sym_LPAREN2] = ACTIONS(4257), - [sym_preproc_comment] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4265), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token2] = ACTIONS(4257), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4257), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4257), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4257), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4257), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4257), - [aux_sym_procedure_attributes_token1] = ACTIONS(4257), - [aux_sym_procedure_attributes_token3] = ACTIONS(4257), - [aux_sym_contains_statement_token1] = ACTIONS(4257), - [aux_sym_use_statement_token1] = ACTIONS(4257), - [aux_sym_use_statement_token2] = ACTIONS(4257), - [aux_sym_implicit_statement_token1] = ACTIONS(4257), - [aux_sym_implicit_statement_token3] = ACTIONS(4257), - [aux_sym_implicit_statement_token4] = ACTIONS(4257), - [aux_sym_save_statement_token1] = ACTIONS(4257), - [aux_sym_private_statement_token1] = ACTIONS(4257), - [aux_sym_public_statement_token1] = ACTIONS(4257), - [aux_sym_namelist_statement_token1] = ACTIONS(4257), - [aux_sym_common_statement_token1] = ACTIONS(4257), - [aux_sym_import_statement_token1] = ACTIONS(4257), - [aux_sym_derived_type_definition_token1] = ACTIONS(4257), - [aux_sym_abstract_specifier_token1] = ACTIONS(4257), - [aux_sym_procedure_attribute_token6] = ACTIONS(4257), - [aux_sym_variable_attributes_token1] = ACTIONS(4257), - [aux_sym_variable_attributes_token2] = ACTIONS(4257), - [aux_sym_variable_attributes_token3] = ACTIONS(4257), - [aux_sym_variable_attributes_token4] = ACTIONS(4257), - [aux_sym_variable_attributes_token5] = ACTIONS(4257), - [aux_sym__intrinsic_type_token1] = ACTIONS(4257), - [aux_sym__intrinsic_type_token2] = ACTIONS(4257), - [aux_sym__intrinsic_type_token3] = ACTIONS(4257), - [aux_sym__intrinsic_type_token4] = ACTIONS(4257), - [aux_sym__intrinsic_type_token6] = ACTIONS(4257), - [aux_sym__intrinsic_type_token7] = ACTIONS(4257), - [aux_sym__intrinsic_type_token8] = ACTIONS(4257), - [aux_sym__intrinsic_type_token9] = ACTIONS(4257), - [aux_sym__intrinsic_type_token10] = ACTIONS(4257), - [aux_sym_derived_type_token1] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4257), - [aux_sym_type_qualifier_token1] = ACTIONS(4257), - [aux_sym_type_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4265), - [aux_sym_stop_statement_token1] = ACTIONS(4257), - [aux_sym_stop_statement_token2] = ACTIONS(4257), - [aux_sym_subroutine_call_token1] = ACTIONS(4257), - [aux_sym_keyword_statement_token1] = ACTIONS(4257), - [aux_sym_keyword_statement_token2] = ACTIONS(4257), - [aux_sym_keyword_statement_token3] = ACTIONS(4257), - [aux_sym_keyword_statement_token4] = ACTIONS(4257), - [aux_sym_keyword_statement_token6] = ACTIONS(4257), - [aux_sym_keyword_statement_token7] = ACTIONS(4257), - [aux_sym_include_statement_token1] = ACTIONS(4257), - [aux_sym_data_statement_token1] = ACTIONS(4257), - [aux_sym_do_loop_statement_token1] = ACTIONS(4257), - [aux_sym__inline_if_statement_token1] = ACTIONS(4257), - [aux_sym_end_if_statement_token1] = ACTIONS(4257), - [aux_sym_elseif_clause_token2] = ACTIONS(4257), - [aux_sym__inline_where_statement_token1] = ACTIONS(4257), - [aux_sym__forall_control_expression_token1] = ACTIONS(4257), - [aux_sym_select_case_statement_token1] = ACTIONS(4257), - [aux_sym_select_case_statement_token3] = ACTIONS(4257), - [aux_sym_select_type_statement_token1] = ACTIONS(4257), - [aux_sym_select_rank_statement_token2] = ACTIONS(4257), - [aux_sym_block_construct_token1] = ACTIONS(4257), - [aux_sym_associate_statement_token1] = ACTIONS(4257), - [aux_sym_format_statement_token1] = ACTIONS(4257), - [aux_sym_print_statement_token1] = ACTIONS(4257), - [aux_sym_open_statement_token1] = ACTIONS(4257), - [aux_sym_close_statement_token1] = ACTIONS(4257), - [aux_sym_inquire_statement_token1] = ACTIONS(4257), - [aux_sym_enum_statement_token1] = ACTIONS(4257), - [aux_sym_file_position_statement_token1] = ACTIONS(4257), - [aux_sym_file_position_statement_token2] = ACTIONS(4257), - [aux_sym_file_position_statement_token3] = ACTIONS(4257), - [aux_sym_file_position_statement_token4] = ACTIONS(4257), - [aux_sym_allocate_statement_token1] = ACTIONS(4257), - [aux_sym_entry_statement_token1] = ACTIONS(4257), - [aux_sym_logical_expression_token5] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4257), - [anon_sym_LPAREN_SLASH] = ACTIONS(4265), - [anon_sym_LBRACK] = ACTIONS(4265), - [aux_sym_boolean_literal_token1] = ACTIONS(4265), - [aux_sym_boolean_literal_token2] = ACTIONS(4265), - [aux_sym_null_literal_token1] = ACTIONS(4257), - [aux_sym_coarray_statement_token1] = ACTIONS(4257), - [aux_sym_coarray_statement_token2] = ACTIONS(4257), - [aux_sym_coarray_statement_token6] = ACTIONS(4257), - [aux_sym_coarray_statement_token8] = ACTIONS(4257), - [aux_sym_coarray_statement_token11] = ACTIONS(4257), - [aux_sym_coarray_statement_token12] = ACTIONS(4257), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4257), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4257), - [aux_sym_identifier_token1] = ACTIONS(4257), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4265), - [sym__float_literal] = ACTIONS(4265), - [sym__boz_literal] = ACTIONS(4265), - [sym__string_literal] = ACTIONS(4265), - [sym__string_literal_kind] = ACTIONS(4265), - }, - [923] = { - [ts_builtin_sym_end] = ACTIONS(4265), - [aux_sym_preproc_include_token1] = ACTIONS(4257), - [aux_sym_preproc_def_token1] = ACTIONS(4257), - [aux_sym_preproc_if_token1] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4257), - [sym_preproc_directive] = ACTIONS(4257), - [anon_sym_LPAREN2] = ACTIONS(4257), - [sym_preproc_comment] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4265), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token2] = ACTIONS(4257), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4257), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4257), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4257), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4257), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4257), - [aux_sym_procedure_attributes_token1] = ACTIONS(4257), - [aux_sym_procedure_attributes_token3] = ACTIONS(4257), - [aux_sym_contains_statement_token1] = ACTIONS(4257), - [aux_sym_use_statement_token1] = ACTIONS(4257), - [aux_sym_use_statement_token2] = ACTIONS(4257), - [aux_sym_implicit_statement_token1] = ACTIONS(4257), - [aux_sym_implicit_statement_token3] = ACTIONS(4257), - [aux_sym_implicit_statement_token4] = ACTIONS(4257), - [aux_sym_save_statement_token1] = ACTIONS(4257), - [aux_sym_private_statement_token1] = ACTIONS(4257), - [aux_sym_public_statement_token1] = ACTIONS(4257), - [aux_sym_namelist_statement_token1] = ACTIONS(4257), - [aux_sym_common_statement_token1] = ACTIONS(4257), - [aux_sym_import_statement_token1] = ACTIONS(4257), - [aux_sym_derived_type_definition_token1] = ACTIONS(4257), - [aux_sym_abstract_specifier_token1] = ACTIONS(4257), - [aux_sym_procedure_attribute_token6] = ACTIONS(4257), - [aux_sym_variable_attributes_token1] = ACTIONS(4257), - [aux_sym_variable_attributes_token2] = ACTIONS(4257), - [aux_sym_variable_attributes_token3] = ACTIONS(4257), - [aux_sym_variable_attributes_token4] = ACTIONS(4257), - [aux_sym_variable_attributes_token5] = ACTIONS(4257), - [aux_sym__intrinsic_type_token1] = ACTIONS(4257), - [aux_sym__intrinsic_type_token2] = ACTIONS(4257), - [aux_sym__intrinsic_type_token3] = ACTIONS(4257), - [aux_sym__intrinsic_type_token4] = ACTIONS(4257), - [aux_sym__intrinsic_type_token6] = ACTIONS(4257), - [aux_sym__intrinsic_type_token7] = ACTIONS(4257), - [aux_sym__intrinsic_type_token8] = ACTIONS(4257), - [aux_sym__intrinsic_type_token9] = ACTIONS(4257), - [aux_sym__intrinsic_type_token10] = ACTIONS(4257), - [aux_sym_derived_type_token1] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4257), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4257), - [aux_sym_type_qualifier_token1] = ACTIONS(4257), - [aux_sym_type_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4265), - [aux_sym_stop_statement_token1] = ACTIONS(4257), - [aux_sym_stop_statement_token2] = ACTIONS(4257), - [aux_sym_subroutine_call_token1] = ACTIONS(4257), - [aux_sym_keyword_statement_token1] = ACTIONS(4257), - [aux_sym_keyword_statement_token2] = ACTIONS(4257), - [aux_sym_keyword_statement_token3] = ACTIONS(4257), - [aux_sym_keyword_statement_token4] = ACTIONS(4257), - [aux_sym_keyword_statement_token6] = ACTIONS(4257), - [aux_sym_keyword_statement_token7] = ACTIONS(4257), - [aux_sym_include_statement_token1] = ACTIONS(4257), - [aux_sym_data_statement_token1] = ACTIONS(4257), - [aux_sym_do_loop_statement_token1] = ACTIONS(4257), - [aux_sym__inline_if_statement_token1] = ACTIONS(4257), - [aux_sym_end_if_statement_token1] = ACTIONS(4257), - [aux_sym_elseif_clause_token2] = ACTIONS(4257), - [aux_sym__inline_where_statement_token1] = ACTIONS(4257), - [aux_sym__forall_control_expression_token1] = ACTIONS(4257), - [aux_sym_select_case_statement_token1] = ACTIONS(4257), - [aux_sym_select_case_statement_token3] = ACTIONS(4257), - [aux_sym_select_type_statement_token1] = ACTIONS(4257), - [aux_sym_select_rank_statement_token2] = ACTIONS(4257), - [aux_sym_block_construct_token1] = ACTIONS(4257), - [aux_sym_associate_statement_token1] = ACTIONS(4257), - [aux_sym_format_statement_token1] = ACTIONS(4257), - [aux_sym_print_statement_token1] = ACTIONS(4257), - [aux_sym_open_statement_token1] = ACTIONS(4257), - [aux_sym_close_statement_token1] = ACTIONS(4257), - [aux_sym_inquire_statement_token1] = ACTIONS(4257), - [aux_sym_enum_statement_token1] = ACTIONS(4257), - [aux_sym_file_position_statement_token1] = ACTIONS(4257), - [aux_sym_file_position_statement_token2] = ACTIONS(4257), - [aux_sym_file_position_statement_token3] = ACTIONS(4257), - [aux_sym_file_position_statement_token4] = ACTIONS(4257), - [aux_sym_allocate_statement_token1] = ACTIONS(4257), - [aux_sym_entry_statement_token1] = ACTIONS(4257), - [aux_sym_logical_expression_token5] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4257), - [anon_sym_LPAREN_SLASH] = ACTIONS(4265), - [anon_sym_LBRACK] = ACTIONS(4265), - [aux_sym_boolean_literal_token1] = ACTIONS(4265), - [aux_sym_boolean_literal_token2] = ACTIONS(4265), - [aux_sym_null_literal_token1] = ACTIONS(4257), - [aux_sym_coarray_statement_token1] = ACTIONS(4257), - [aux_sym_coarray_statement_token2] = ACTIONS(4257), - [aux_sym_coarray_statement_token6] = ACTIONS(4257), - [aux_sym_coarray_statement_token8] = ACTIONS(4257), - [aux_sym_coarray_statement_token11] = ACTIONS(4257), - [aux_sym_coarray_statement_token12] = ACTIONS(4257), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4257), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4257), - [aux_sym_identifier_token1] = ACTIONS(4257), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4265), - [sym__float_literal] = ACTIONS(4265), - [sym__boz_literal] = ACTIONS(4265), - [sym__string_literal] = ACTIONS(4265), - [sym__string_literal_kind] = ACTIONS(4265), - }, - [924] = { - [aux_sym_preproc_include_token1] = ACTIONS(4347), - [aux_sym_preproc_def_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token2] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), - [sym_preproc_directive] = ACTIONS(4347), - [anon_sym_LPAREN2] = ACTIONS(4347), - [sym_preproc_comment] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token2] = ACTIONS(4347), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4347), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4347), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token3] = ACTIONS(4347), - [aux_sym_contains_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token2] = ACTIONS(4347), - [aux_sym_implicit_statement_token1] = ACTIONS(4347), - [aux_sym_implicit_statement_token3] = ACTIONS(4347), - [aux_sym_implicit_statement_token4] = ACTIONS(4347), - [aux_sym_save_statement_token1] = ACTIONS(4347), - [aux_sym_private_statement_token1] = ACTIONS(4347), - [aux_sym_public_statement_token1] = ACTIONS(4347), - [aux_sym_namelist_statement_token1] = ACTIONS(4347), - [aux_sym_common_statement_token1] = ACTIONS(4347), - [aux_sym_import_statement_token1] = ACTIONS(4347), - [aux_sym_derived_type_definition_token1] = ACTIONS(4347), - [aux_sym_abstract_specifier_token1] = ACTIONS(4347), - [aux_sym_procedure_attribute_token6] = ACTIONS(4347), - [aux_sym_variable_attributes_token1] = ACTIONS(4347), - [aux_sym_variable_attributes_token2] = ACTIONS(4347), - [aux_sym_variable_attributes_token3] = ACTIONS(4347), - [aux_sym_variable_attributes_token4] = ACTIONS(4347), - [aux_sym_variable_attributes_token5] = ACTIONS(4347), - [aux_sym__intrinsic_type_token1] = ACTIONS(4347), - [aux_sym__intrinsic_type_token2] = ACTIONS(4347), - [aux_sym__intrinsic_type_token3] = ACTIONS(4347), - [aux_sym__intrinsic_type_token4] = ACTIONS(4347), - [aux_sym__intrinsic_type_token6] = ACTIONS(4347), - [aux_sym__intrinsic_type_token7] = ACTIONS(4347), - [aux_sym__intrinsic_type_token8] = ACTIONS(4347), - [aux_sym__intrinsic_type_token9] = ACTIONS(4347), - [aux_sym__intrinsic_type_token10] = ACTIONS(4347), - [aux_sym_derived_type_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4347), - [aux_sym_type_qualifier_token1] = ACTIONS(4347), - [aux_sym_type_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4351), - [aux_sym_stop_statement_token1] = ACTIONS(4347), - [aux_sym_stop_statement_token2] = ACTIONS(4347), - [aux_sym_subroutine_call_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token2] = ACTIONS(4347), - [aux_sym_keyword_statement_token3] = ACTIONS(4347), - [aux_sym_keyword_statement_token4] = ACTIONS(4347), - [aux_sym_keyword_statement_token6] = ACTIONS(4347), - [aux_sym_keyword_statement_token7] = ACTIONS(4347), - [aux_sym_include_statement_token1] = ACTIONS(4347), - [aux_sym_data_statement_token1] = ACTIONS(4347), - [aux_sym_do_loop_statement_token1] = ACTIONS(4347), - [aux_sym__inline_if_statement_token1] = ACTIONS(4347), - [aux_sym_end_if_statement_token1] = ACTIONS(4347), - [aux_sym_elseif_clause_token2] = ACTIONS(4347), - [aux_sym__inline_where_statement_token1] = ACTIONS(4347), - [aux_sym__forall_control_expression_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token3] = ACTIONS(4347), - [aux_sym_select_type_statement_token1] = ACTIONS(4347), - [aux_sym_select_rank_statement_token2] = ACTIONS(4347), - [aux_sym_block_construct_token1] = ACTIONS(4347), - [aux_sym_associate_statement_token1] = ACTIONS(4347), - [aux_sym_format_statement_token1] = ACTIONS(4347), - [aux_sym_print_statement_token1] = ACTIONS(4347), - [aux_sym_open_statement_token1] = ACTIONS(4347), - [aux_sym_close_statement_token1] = ACTIONS(4347), - [aux_sym_inquire_statement_token1] = ACTIONS(4347), - [aux_sym_enum_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token2] = ACTIONS(4347), - [aux_sym_file_position_statement_token3] = ACTIONS(4347), - [aux_sym_file_position_statement_token4] = ACTIONS(4347), - [aux_sym_allocate_statement_token1] = ACTIONS(4347), - [aux_sym_entry_statement_token1] = ACTIONS(4347), - [aux_sym_logical_expression_token5] = ACTIONS(4351), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_LPAREN_SLASH] = ACTIONS(4351), - [anon_sym_LBRACK] = ACTIONS(4351), - [aux_sym_boolean_literal_token1] = ACTIONS(4351), - [aux_sym_boolean_literal_token2] = ACTIONS(4351), - [aux_sym_null_literal_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token2] = ACTIONS(4347), - [aux_sym_coarray_statement_token6] = ACTIONS(4347), - [aux_sym_coarray_statement_token8] = ACTIONS(4347), - [aux_sym_coarray_statement_token11] = ACTIONS(4347), - [aux_sym_coarray_statement_token12] = ACTIONS(4347), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4347), - [aux_sym_identifier_token1] = ACTIONS(4347), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4351), - [sym__float_literal] = ACTIONS(4351), - [sym__boz_literal] = ACTIONS(4351), - [sym__string_literal] = ACTIONS(4351), - [sym__string_literal_kind] = ACTIONS(4351), - }, - [925] = { - [sym_preproc_include] = STATE(1035), - [sym_preproc_def] = STATE(1035), - [sym_preproc_function_def] = STATE(1035), - [sym_preproc_call] = STATE(1035), - [sym_preproc_else_in_module] = STATE(7854), - [sym_preproc_elif_in_module] = STATE(7854), - [sym_preproc_elifdef_in_module] = STATE(7854), - [sym_interface] = STATE(1035), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5827), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1035), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1035), - [sym_public_statement] = STATE(1035), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1035), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [sym_preproc_include] = STATE(1009), + [sym_preproc_def] = STATE(1009), + [sym_preproc_function_def] = STATE(1009), + [sym_preproc_call] = STATE(1009), + [sym_preproc_else_in_module] = STATE(7465), + [sym_preproc_elif_in_module] = STATE(7465), + [sym_preproc_elifdef_in_module] = STATE(7465), + [sym_interface] = STATE(1009), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5829), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1009), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1009), + [sym_public_statement] = STATE(1009), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1009), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1035), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1009), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1035), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4665), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), - [sym_preproc_comment] = ACTIONS(4675), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1009), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4643), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), + [sym_preproc_comment] = ACTIONS(4653), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -215246,8 +213750,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -215259,9 +213763,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -215290,11 +213794,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -215311,605 +213815,605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, - [926] = { - [ts_builtin_sym_end] = ACTIONS(4305), - [aux_sym_preproc_include_token1] = ACTIONS(4301), - [aux_sym_preproc_def_token1] = ACTIONS(4301), - [aux_sym_preproc_if_token1] = ACTIONS(4301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), - [sym_preproc_directive] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4301), - [sym_preproc_comment] = ACTIONS(4689), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4301), - [aux_sym_end_program_statement_token1] = ACTIONS(4301), - [aux_sym_end_program_statement_token2] = ACTIONS(4301), - [aux_sym_module_statement_token1] = ACTIONS(4301), - [aux_sym_submodule_statement_token1] = ACTIONS(4301), - [aux_sym_interface_statement_token1] = ACTIONS(4301), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4301), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4301), - [aux_sym_subroutine_statement_token1] = ACTIONS(4301), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4301), - [aux_sym_function_statement_token1] = ACTIONS(4301), - [aux_sym_language_binding_token1] = ACTIONS(4301), - [aux_sym_procedure_attributes_token1] = ACTIONS(4301), - [aux_sym_procedure_attributes_token3] = ACTIONS(4301), - [aux_sym_contains_statement_token1] = ACTIONS(4301), - [aux_sym_use_statement_token1] = ACTIONS(4301), - [aux_sym_use_statement_token2] = ACTIONS(4301), - [aux_sym_implicit_statement_token1] = ACTIONS(4301), - [aux_sym_implicit_statement_token3] = ACTIONS(4301), - [aux_sym_implicit_statement_token4] = ACTIONS(4301), - [aux_sym_save_statement_token1] = ACTIONS(4301), - [aux_sym_private_statement_token1] = ACTIONS(4301), - [aux_sym_public_statement_token1] = ACTIONS(4301), - [aux_sym_namelist_statement_token1] = ACTIONS(4301), - [aux_sym_common_statement_token1] = ACTIONS(4301), - [aux_sym_import_statement_token1] = ACTIONS(4301), - [aux_sym_derived_type_definition_token1] = ACTIONS(4301), - [aux_sym_abstract_specifier_token1] = ACTIONS(4301), - [aux_sym_procedure_attribute_token6] = ACTIONS(4301), - [aux_sym_variable_attributes_token1] = ACTIONS(4301), - [aux_sym_variable_attributes_token2] = ACTIONS(4301), - [aux_sym_variable_attributes_token3] = ACTIONS(4301), - [aux_sym_variable_attributes_token4] = ACTIONS(4301), - [aux_sym_variable_attributes_token5] = ACTIONS(4301), - [aux_sym__intrinsic_type_token1] = ACTIONS(4301), - [aux_sym__intrinsic_type_token2] = ACTIONS(4301), - [aux_sym__intrinsic_type_token3] = ACTIONS(4301), - [aux_sym__intrinsic_type_token4] = ACTIONS(4301), - [aux_sym__intrinsic_type_token6] = ACTIONS(4301), - [aux_sym__intrinsic_type_token7] = ACTIONS(4301), - [aux_sym__intrinsic_type_token8] = ACTIONS(4301), - [aux_sym__intrinsic_type_token9] = ACTIONS(4301), - [aux_sym__intrinsic_type_token10] = ACTIONS(4301), - [aux_sym_derived_type_token1] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4301), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4301), - [aux_sym_type_qualifier_token1] = ACTIONS(4301), - [aux_sym_type_qualifier_token2] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4301), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4301), - [aux_sym_equivalence_statement_token1] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4305), - [aux_sym_stop_statement_token1] = ACTIONS(4301), - [aux_sym_stop_statement_token2] = ACTIONS(4301), - [aux_sym_subroutine_call_token1] = ACTIONS(4301), - [aux_sym_keyword_statement_token1] = ACTIONS(4301), - [aux_sym_keyword_statement_token2] = ACTIONS(4301), - [aux_sym_keyword_statement_token3] = ACTIONS(4301), - [aux_sym_keyword_statement_token4] = ACTIONS(4301), - [aux_sym_keyword_statement_token6] = ACTIONS(4301), - [aux_sym_keyword_statement_token7] = ACTIONS(4301), - [aux_sym_include_statement_token1] = ACTIONS(4301), - [aux_sym_data_statement_token1] = ACTIONS(4301), - [aux_sym_do_loop_statement_token1] = ACTIONS(4301), - [aux_sym__inline_if_statement_token1] = ACTIONS(4301), - [aux_sym_end_if_statement_token1] = ACTIONS(4301), - [aux_sym_elseif_clause_token2] = ACTIONS(4301), - [aux_sym__inline_where_statement_token1] = ACTIONS(4301), - [aux_sym__forall_control_expression_token1] = ACTIONS(4301), - [aux_sym_select_case_statement_token1] = ACTIONS(4301), - [aux_sym_select_case_statement_token3] = ACTIONS(4301), - [aux_sym_select_type_statement_token1] = ACTIONS(4301), - [aux_sym_select_rank_statement_token2] = ACTIONS(4301), - [aux_sym_block_construct_token1] = ACTIONS(4301), - [aux_sym_associate_statement_token1] = ACTIONS(4301), - [aux_sym_format_statement_token1] = ACTIONS(4301), - [aux_sym_print_statement_token1] = ACTIONS(4301), - [aux_sym_open_statement_token1] = ACTIONS(4301), - [aux_sym_close_statement_token1] = ACTIONS(4301), - [aux_sym_inquire_statement_token1] = ACTIONS(4301), - [aux_sym_enum_statement_token1] = ACTIONS(4301), - [aux_sym_file_position_statement_token1] = ACTIONS(4301), - [aux_sym_file_position_statement_token2] = ACTIONS(4301), - [aux_sym_file_position_statement_token3] = ACTIONS(4301), - [aux_sym_file_position_statement_token4] = ACTIONS(4301), - [aux_sym_allocate_statement_token1] = ACTIONS(4301), - [aux_sym_entry_statement_token1] = ACTIONS(4301), - [aux_sym_logical_expression_token5] = ACTIONS(4305), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_LPAREN_SLASH] = ACTIONS(4305), - [anon_sym_LBRACK] = ACTIONS(4305), - [aux_sym_boolean_literal_token1] = ACTIONS(4305), - [aux_sym_boolean_literal_token2] = ACTIONS(4305), - [aux_sym_null_literal_token1] = ACTIONS(4301), - [aux_sym_coarray_statement_token1] = ACTIONS(4301), - [aux_sym_coarray_statement_token2] = ACTIONS(4301), - [aux_sym_coarray_statement_token6] = ACTIONS(4301), - [aux_sym_coarray_statement_token8] = ACTIONS(4301), - [aux_sym_coarray_statement_token11] = ACTIONS(4301), - [aux_sym_coarray_statement_token12] = ACTIONS(4301), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4301), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4301), - [aux_sym_identifier_token1] = ACTIONS(4301), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4305), - [sym__float_literal] = ACTIONS(4305), - [sym__boz_literal] = ACTIONS(4305), - [sym__string_literal] = ACTIONS(4305), - [sym__string_literal_kind] = ACTIONS(4305), + [915] = { + [ts_builtin_sym_end] = ACTIONS(4307), + [aux_sym_preproc_include_token1] = ACTIONS(4303), + [aux_sym_preproc_def_token1] = ACTIONS(4303), + [aux_sym_preproc_if_token1] = ACTIONS(4303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4303), + [sym_preproc_directive] = ACTIONS(4303), + [anon_sym_LPAREN2] = ACTIONS(4303), + [sym_preproc_comment] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4303), + [aux_sym_end_program_statement_token1] = ACTIONS(4303), + [aux_sym_end_program_statement_token2] = ACTIONS(4303), + [aux_sym_module_statement_token1] = ACTIONS(4303), + [aux_sym_submodule_statement_token1] = ACTIONS(4303), + [aux_sym_interface_statement_token1] = ACTIONS(4303), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4303), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4303), + [aux_sym_subroutine_statement_token1] = ACTIONS(4303), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4303), + [aux_sym_function_statement_token1] = ACTIONS(4303), + [aux_sym_language_binding_token1] = ACTIONS(4303), + [aux_sym_procedure_attributes_token1] = ACTIONS(4303), + [aux_sym_procedure_attributes_token3] = ACTIONS(4303), + [aux_sym_contains_statement_token1] = ACTIONS(4303), + [aux_sym_use_statement_token1] = ACTIONS(4303), + [aux_sym_use_statement_token2] = ACTIONS(4303), + [aux_sym_implicit_statement_token1] = ACTIONS(4303), + [aux_sym_implicit_statement_token3] = ACTIONS(4303), + [aux_sym_implicit_statement_token4] = ACTIONS(4303), + [aux_sym_save_statement_token1] = ACTIONS(4303), + [aux_sym_private_statement_token1] = ACTIONS(4303), + [aux_sym_public_statement_token1] = ACTIONS(4303), + [aux_sym_namelist_statement_token1] = ACTIONS(4303), + [aux_sym_common_statement_token1] = ACTIONS(4303), + [aux_sym_import_statement_token1] = ACTIONS(4303), + [aux_sym_derived_type_definition_token1] = ACTIONS(4303), + [aux_sym_abstract_specifier_token1] = ACTIONS(4303), + [aux_sym_procedure_attribute_token6] = ACTIONS(4303), + [aux_sym_variable_attributes_token1] = ACTIONS(4303), + [aux_sym_variable_attributes_token2] = ACTIONS(4303), + [aux_sym_variable_attributes_token3] = ACTIONS(4303), + [aux_sym_variable_attributes_token4] = ACTIONS(4303), + [aux_sym_variable_attributes_token5] = ACTIONS(4303), + [aux_sym__intrinsic_type_token1] = ACTIONS(4303), + [aux_sym__intrinsic_type_token2] = ACTIONS(4303), + [aux_sym__intrinsic_type_token3] = ACTIONS(4303), + [aux_sym__intrinsic_type_token4] = ACTIONS(4303), + [aux_sym__intrinsic_type_token6] = ACTIONS(4303), + [aux_sym__intrinsic_type_token7] = ACTIONS(4303), + [aux_sym__intrinsic_type_token8] = ACTIONS(4303), + [aux_sym__intrinsic_type_token9] = ACTIONS(4303), + [aux_sym__intrinsic_type_token10] = ACTIONS(4303), + [aux_sym_derived_type_token1] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4303), + [aux_sym_type_qualifier_token1] = ACTIONS(4303), + [aux_sym_type_qualifier_token2] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4303), + [aux_sym_equivalence_statement_token1] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4307), + [aux_sym_stop_statement_token1] = ACTIONS(4303), + [aux_sym_stop_statement_token2] = ACTIONS(4303), + [aux_sym_subroutine_call_token1] = ACTIONS(4303), + [aux_sym_keyword_statement_token1] = ACTIONS(4303), + [aux_sym_keyword_statement_token2] = ACTIONS(4303), + [aux_sym_keyword_statement_token3] = ACTIONS(4303), + [aux_sym_keyword_statement_token4] = ACTIONS(4303), + [aux_sym_keyword_statement_token6] = ACTIONS(4303), + [aux_sym_keyword_statement_token7] = ACTIONS(4303), + [aux_sym_include_statement_token1] = ACTIONS(4303), + [aux_sym_data_statement_token1] = ACTIONS(4303), + [aux_sym_do_loop_statement_token1] = ACTIONS(4303), + [aux_sym__inline_if_statement_token1] = ACTIONS(4303), + [aux_sym_end_if_statement_token1] = ACTIONS(4303), + [aux_sym_elseif_clause_token2] = ACTIONS(4303), + [aux_sym__inline_where_statement_token1] = ACTIONS(4303), + [aux_sym__forall_control_expression_token1] = ACTIONS(4303), + [aux_sym_select_case_statement_token1] = ACTIONS(4303), + [aux_sym_select_case_statement_token3] = ACTIONS(4303), + [aux_sym_select_type_statement_token1] = ACTIONS(4303), + [aux_sym_select_rank_statement_token2] = ACTIONS(4303), + [aux_sym_block_construct_token1] = ACTIONS(4303), + [aux_sym_associate_statement_token1] = ACTIONS(4303), + [aux_sym_format_statement_token1] = ACTIONS(4303), + [aux_sym_print_statement_token1] = ACTIONS(4303), + [aux_sym_open_statement_token1] = ACTIONS(4303), + [aux_sym_close_statement_token1] = ACTIONS(4303), + [aux_sym_inquire_statement_token1] = ACTIONS(4303), + [aux_sym_enum_statement_token1] = ACTIONS(4303), + [aux_sym_file_position_statement_token1] = ACTIONS(4303), + [aux_sym_file_position_statement_token2] = ACTIONS(4303), + [aux_sym_file_position_statement_token3] = ACTIONS(4303), + [aux_sym_file_position_statement_token4] = ACTIONS(4303), + [aux_sym_allocate_statement_token1] = ACTIONS(4303), + [aux_sym_entry_statement_token1] = ACTIONS(4303), + [aux_sym_logical_expression_token5] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_LPAREN_SLASH] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [aux_sym_boolean_literal_token1] = ACTIONS(4307), + [aux_sym_boolean_literal_token2] = ACTIONS(4307), + [aux_sym_null_literal_token1] = ACTIONS(4303), + [aux_sym_coarray_statement_token1] = ACTIONS(4303), + [aux_sym_coarray_statement_token2] = ACTIONS(4303), + [aux_sym_coarray_statement_token6] = ACTIONS(4303), + [aux_sym_coarray_statement_token8] = ACTIONS(4303), + [aux_sym_coarray_statement_token11] = ACTIONS(4303), + [aux_sym_coarray_statement_token12] = ACTIONS(4303), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4303), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4303), + [aux_sym_identifier_token1] = ACTIONS(4303), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4307), + [sym__float_literal] = ACTIONS(4307), + [sym__boz_literal] = ACTIONS(4307), + [sym__string_literal] = ACTIONS(4307), + [sym__string_literal_kind] = ACTIONS(4307), }, - [927] = { - [ts_builtin_sym_end] = ACTIONS(4345), - [aux_sym_preproc_include_token1] = ACTIONS(4341), - [aux_sym_preproc_def_token1] = ACTIONS(4341), - [aux_sym_preproc_if_token1] = ACTIONS(4341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4341), - [sym_preproc_directive] = ACTIONS(4341), - [anon_sym_LPAREN2] = ACTIONS(4341), - [sym_preproc_comment] = ACTIONS(4691), - [anon_sym_PLUS] = ACTIONS(4345), - [anon_sym_DASH] = ACTIONS(4345), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4341), - [aux_sym_end_program_statement_token1] = ACTIONS(4341), - [aux_sym_end_program_statement_token2] = ACTIONS(4341), - [aux_sym_module_statement_token1] = ACTIONS(4341), - [aux_sym_submodule_statement_token1] = ACTIONS(4341), - [aux_sym_interface_statement_token1] = ACTIONS(4341), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4341), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4341), - [aux_sym_subroutine_statement_token1] = ACTIONS(4341), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4341), - [aux_sym_function_statement_token1] = ACTIONS(4341), - [aux_sym_language_binding_token1] = ACTIONS(4341), - [aux_sym_procedure_attributes_token1] = ACTIONS(4341), - [aux_sym_procedure_attributes_token3] = ACTIONS(4341), - [aux_sym_contains_statement_token1] = ACTIONS(4341), - [aux_sym_use_statement_token1] = ACTIONS(4341), - [aux_sym_use_statement_token2] = ACTIONS(4341), - [aux_sym_implicit_statement_token1] = ACTIONS(4341), - [aux_sym_implicit_statement_token3] = ACTIONS(4341), - [aux_sym_implicit_statement_token4] = ACTIONS(4341), - [aux_sym_save_statement_token1] = ACTIONS(4341), - [aux_sym_private_statement_token1] = ACTIONS(4341), - [aux_sym_public_statement_token1] = ACTIONS(4341), - [aux_sym_namelist_statement_token1] = ACTIONS(4341), - [aux_sym_common_statement_token1] = ACTIONS(4341), - [aux_sym_import_statement_token1] = ACTIONS(4341), - [aux_sym_derived_type_definition_token1] = ACTIONS(4341), - [aux_sym_abstract_specifier_token1] = ACTIONS(4341), - [aux_sym_procedure_attribute_token6] = ACTIONS(4341), - [aux_sym_variable_attributes_token1] = ACTIONS(4341), - [aux_sym_variable_attributes_token2] = ACTIONS(4341), - [aux_sym_variable_attributes_token3] = ACTIONS(4341), - [aux_sym_variable_attributes_token4] = ACTIONS(4341), - [aux_sym_variable_attributes_token5] = ACTIONS(4341), - [aux_sym__intrinsic_type_token1] = ACTIONS(4341), - [aux_sym__intrinsic_type_token2] = ACTIONS(4341), - [aux_sym__intrinsic_type_token3] = ACTIONS(4341), - [aux_sym__intrinsic_type_token4] = ACTIONS(4341), - [aux_sym__intrinsic_type_token6] = ACTIONS(4341), - [aux_sym__intrinsic_type_token7] = ACTIONS(4341), - [aux_sym__intrinsic_type_token8] = ACTIONS(4341), - [aux_sym__intrinsic_type_token9] = ACTIONS(4341), - [aux_sym__intrinsic_type_token10] = ACTIONS(4341), - [aux_sym_derived_type_token1] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4341), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4341), - [aux_sym_type_qualifier_token1] = ACTIONS(4341), - [aux_sym_type_qualifier_token2] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4341), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4341), - [aux_sym_equivalence_statement_token1] = ACTIONS(4341), - [anon_sym_SEMI] = ACTIONS(4345), - [aux_sym_stop_statement_token1] = ACTIONS(4341), - [aux_sym_stop_statement_token2] = ACTIONS(4341), - [aux_sym_subroutine_call_token1] = ACTIONS(4341), - [aux_sym_keyword_statement_token1] = ACTIONS(4341), - [aux_sym_keyword_statement_token2] = ACTIONS(4341), - [aux_sym_keyword_statement_token3] = ACTIONS(4341), - [aux_sym_keyword_statement_token4] = ACTIONS(4341), - [aux_sym_keyword_statement_token6] = ACTIONS(4341), - [aux_sym_keyword_statement_token7] = ACTIONS(4341), - [aux_sym_include_statement_token1] = ACTIONS(4341), - [aux_sym_data_statement_token1] = ACTIONS(4341), - [aux_sym_do_loop_statement_token1] = ACTIONS(4341), - [aux_sym__inline_if_statement_token1] = ACTIONS(4341), - [aux_sym_end_if_statement_token1] = ACTIONS(4341), - [aux_sym_elseif_clause_token2] = ACTIONS(4341), - [aux_sym__inline_where_statement_token1] = ACTIONS(4341), - [aux_sym__forall_control_expression_token1] = ACTIONS(4341), - [aux_sym_select_case_statement_token1] = ACTIONS(4341), - [aux_sym_select_case_statement_token3] = ACTIONS(4341), - [aux_sym_select_type_statement_token1] = ACTIONS(4341), - [aux_sym_select_rank_statement_token2] = ACTIONS(4341), - [aux_sym_block_construct_token1] = ACTIONS(4341), - [aux_sym_associate_statement_token1] = ACTIONS(4341), - [aux_sym_format_statement_token1] = ACTIONS(4341), - [aux_sym_print_statement_token1] = ACTIONS(4341), - [aux_sym_open_statement_token1] = ACTIONS(4341), - [aux_sym_close_statement_token1] = ACTIONS(4341), - [aux_sym_inquire_statement_token1] = ACTIONS(4341), - [aux_sym_enum_statement_token1] = ACTIONS(4341), - [aux_sym_file_position_statement_token1] = ACTIONS(4341), - [aux_sym_file_position_statement_token2] = ACTIONS(4341), - [aux_sym_file_position_statement_token3] = ACTIONS(4341), - [aux_sym_file_position_statement_token4] = ACTIONS(4341), - [aux_sym_allocate_statement_token1] = ACTIONS(4341), - [aux_sym_entry_statement_token1] = ACTIONS(4341), - [aux_sym_logical_expression_token5] = ACTIONS(4345), - [anon_sym_DOT] = ACTIONS(4341), - [anon_sym_LPAREN_SLASH] = ACTIONS(4345), - [anon_sym_LBRACK] = ACTIONS(4345), - [aux_sym_boolean_literal_token1] = ACTIONS(4345), - [aux_sym_boolean_literal_token2] = ACTIONS(4345), - [aux_sym_null_literal_token1] = ACTIONS(4341), - [aux_sym_coarray_statement_token1] = ACTIONS(4341), - [aux_sym_coarray_statement_token2] = ACTIONS(4341), - [aux_sym_coarray_statement_token6] = ACTIONS(4341), - [aux_sym_coarray_statement_token8] = ACTIONS(4341), - [aux_sym_coarray_statement_token11] = ACTIONS(4341), - [aux_sym_coarray_statement_token12] = ACTIONS(4341), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4341), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4341), - [aux_sym_identifier_token1] = ACTIONS(4341), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4345), - [sym__float_literal] = ACTIONS(4345), - [sym__boz_literal] = ACTIONS(4345), - [sym__string_literal] = ACTIONS(4345), - [sym__string_literal_kind] = ACTIONS(4345), + [916] = { + [aux_sym_preproc_include_token1] = ACTIONS(4365), + [aux_sym_preproc_def_token1] = ACTIONS(4365), + [aux_sym_preproc_if_token1] = ACTIONS(4365), + [aux_sym_preproc_if_token2] = ACTIONS(4365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4365), + [sym_preproc_directive] = ACTIONS(4365), + [anon_sym_LPAREN2] = ACTIONS(4365), + [sym_preproc_comment] = ACTIONS(4669), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4365), + [aux_sym_end_program_statement_token1] = ACTIONS(4365), + [aux_sym_end_program_statement_token2] = ACTIONS(4365), + [aux_sym_module_statement_token1] = ACTIONS(4365), + [aux_sym_submodule_statement_token1] = ACTIONS(4365), + [aux_sym_interface_statement_token1] = ACTIONS(4365), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4365), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4365), + [aux_sym_subroutine_statement_token1] = ACTIONS(4365), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4365), + [aux_sym_function_statement_token1] = ACTIONS(4365), + [aux_sym_language_binding_token1] = ACTIONS(4365), + [aux_sym_procedure_attributes_token1] = ACTIONS(4365), + [aux_sym_procedure_attributes_token3] = ACTIONS(4365), + [aux_sym_contains_statement_token1] = ACTIONS(4365), + [aux_sym_use_statement_token1] = ACTIONS(4365), + [aux_sym_use_statement_token2] = ACTIONS(4365), + [aux_sym_implicit_statement_token1] = ACTIONS(4365), + [aux_sym_implicit_statement_token3] = ACTIONS(4365), + [aux_sym_implicit_statement_token4] = ACTIONS(4365), + [aux_sym_save_statement_token1] = ACTIONS(4365), + [aux_sym_private_statement_token1] = ACTIONS(4365), + [aux_sym_public_statement_token1] = ACTIONS(4365), + [aux_sym_namelist_statement_token1] = ACTIONS(4365), + [aux_sym_common_statement_token1] = ACTIONS(4365), + [aux_sym_import_statement_token1] = ACTIONS(4365), + [aux_sym_derived_type_definition_token1] = ACTIONS(4365), + [aux_sym_abstract_specifier_token1] = ACTIONS(4365), + [aux_sym_procedure_attribute_token6] = ACTIONS(4365), + [aux_sym_variable_attributes_token1] = ACTIONS(4365), + [aux_sym_variable_attributes_token2] = ACTIONS(4365), + [aux_sym_variable_attributes_token3] = ACTIONS(4365), + [aux_sym_variable_attributes_token4] = ACTIONS(4365), + [aux_sym_variable_attributes_token5] = ACTIONS(4365), + [aux_sym__intrinsic_type_token1] = ACTIONS(4365), + [aux_sym__intrinsic_type_token2] = ACTIONS(4365), + [aux_sym__intrinsic_type_token3] = ACTIONS(4365), + [aux_sym__intrinsic_type_token4] = ACTIONS(4365), + [aux_sym__intrinsic_type_token6] = ACTIONS(4365), + [aux_sym__intrinsic_type_token7] = ACTIONS(4365), + [aux_sym__intrinsic_type_token8] = ACTIONS(4365), + [aux_sym__intrinsic_type_token9] = ACTIONS(4365), + [aux_sym__intrinsic_type_token10] = ACTIONS(4365), + [aux_sym_derived_type_token1] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4365), + [aux_sym_type_qualifier_token1] = ACTIONS(4365), + [aux_sym_type_qualifier_token2] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4365), + [aux_sym_equivalence_statement_token1] = ACTIONS(4365), + [anon_sym_SEMI] = ACTIONS(4369), + [aux_sym_stop_statement_token1] = ACTIONS(4365), + [aux_sym_stop_statement_token2] = ACTIONS(4365), + [aux_sym_subroutine_call_token1] = ACTIONS(4365), + [aux_sym_keyword_statement_token1] = ACTIONS(4365), + [aux_sym_keyword_statement_token2] = ACTIONS(4365), + [aux_sym_keyword_statement_token3] = ACTIONS(4365), + [aux_sym_keyword_statement_token4] = ACTIONS(4365), + [aux_sym_keyword_statement_token6] = ACTIONS(4365), + [aux_sym_keyword_statement_token7] = ACTIONS(4365), + [aux_sym_include_statement_token1] = ACTIONS(4365), + [aux_sym_data_statement_token1] = ACTIONS(4365), + [aux_sym_do_loop_statement_token1] = ACTIONS(4365), + [aux_sym__inline_if_statement_token1] = ACTIONS(4365), + [aux_sym_end_if_statement_token1] = ACTIONS(4365), + [aux_sym_elseif_clause_token2] = ACTIONS(4365), + [aux_sym__inline_where_statement_token1] = ACTIONS(4365), + [aux_sym__forall_control_expression_token1] = ACTIONS(4365), + [aux_sym_select_case_statement_token1] = ACTIONS(4365), + [aux_sym_select_case_statement_token3] = ACTIONS(4365), + [aux_sym_select_type_statement_token1] = ACTIONS(4365), + [aux_sym_select_rank_statement_token2] = ACTIONS(4365), + [aux_sym_block_construct_token1] = ACTIONS(4365), + [aux_sym_associate_statement_token1] = ACTIONS(4365), + [aux_sym_format_statement_token1] = ACTIONS(4365), + [aux_sym_print_statement_token1] = ACTIONS(4365), + [aux_sym_open_statement_token1] = ACTIONS(4365), + [aux_sym_close_statement_token1] = ACTIONS(4365), + [aux_sym_inquire_statement_token1] = ACTIONS(4365), + [aux_sym_enum_statement_token1] = ACTIONS(4365), + [aux_sym_file_position_statement_token1] = ACTIONS(4365), + [aux_sym_file_position_statement_token2] = ACTIONS(4365), + [aux_sym_file_position_statement_token3] = ACTIONS(4365), + [aux_sym_file_position_statement_token4] = ACTIONS(4365), + [aux_sym_allocate_statement_token1] = ACTIONS(4365), + [aux_sym_entry_statement_token1] = ACTIONS(4365), + [aux_sym_logical_expression_token5] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4365), + [anon_sym_LPAREN_SLASH] = ACTIONS(4369), + [anon_sym_LBRACK] = ACTIONS(4369), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [aux_sym_null_literal_token1] = ACTIONS(4365), + [aux_sym_coarray_statement_token1] = ACTIONS(4365), + [aux_sym_coarray_statement_token2] = ACTIONS(4365), + [aux_sym_coarray_statement_token6] = ACTIONS(4365), + [aux_sym_coarray_statement_token8] = ACTIONS(4365), + [aux_sym_coarray_statement_token11] = ACTIONS(4365), + [aux_sym_coarray_statement_token12] = ACTIONS(4365), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4365), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4365), + [aux_sym_identifier_token1] = ACTIONS(4365), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4369), + [sym__float_literal] = ACTIONS(4369), + [sym__boz_literal] = ACTIONS(4369), + [sym__string_literal] = ACTIONS(4369), + [sym__string_literal_kind] = ACTIONS(4369), }, - [928] = { - [ts_builtin_sym_end] = ACTIONS(4351), - [aux_sym_preproc_include_token1] = ACTIONS(4347), - [aux_sym_preproc_def_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token1] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), - [sym_preproc_directive] = ACTIONS(4347), - [anon_sym_LPAREN2] = ACTIONS(4347), - [sym_preproc_comment] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), + [917] = { + [ts_builtin_sym_end] = ACTIONS(4283), + [aux_sym_preproc_include_token1] = ACTIONS(4279), + [aux_sym_preproc_def_token1] = ACTIONS(4279), + [aux_sym_preproc_if_token1] = ACTIONS(4279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4279), + [sym_preproc_directive] = ACTIONS(4279), + [anon_sym_LPAREN2] = ACTIONS(4279), + [sym_preproc_comment] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token2] = ACTIONS(4347), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4347), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4347), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token3] = ACTIONS(4347), - [aux_sym_contains_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token2] = ACTIONS(4347), - [aux_sym_implicit_statement_token1] = ACTIONS(4347), - [aux_sym_implicit_statement_token3] = ACTIONS(4347), - [aux_sym_implicit_statement_token4] = ACTIONS(4347), - [aux_sym_save_statement_token1] = ACTIONS(4347), - [aux_sym_private_statement_token1] = ACTIONS(4347), - [aux_sym_public_statement_token1] = ACTIONS(4347), - [aux_sym_namelist_statement_token1] = ACTIONS(4347), - [aux_sym_common_statement_token1] = ACTIONS(4347), - [aux_sym_import_statement_token1] = ACTIONS(4347), - [aux_sym_derived_type_definition_token1] = ACTIONS(4347), - [aux_sym_abstract_specifier_token1] = ACTIONS(4347), - [aux_sym_procedure_attribute_token6] = ACTIONS(4347), - [aux_sym_variable_attributes_token1] = ACTIONS(4347), - [aux_sym_variable_attributes_token2] = ACTIONS(4347), - [aux_sym_variable_attributes_token3] = ACTIONS(4347), - [aux_sym_variable_attributes_token4] = ACTIONS(4347), - [aux_sym_variable_attributes_token5] = ACTIONS(4347), - [aux_sym__intrinsic_type_token1] = ACTIONS(4347), - [aux_sym__intrinsic_type_token2] = ACTIONS(4347), - [aux_sym__intrinsic_type_token3] = ACTIONS(4347), - [aux_sym__intrinsic_type_token4] = ACTIONS(4347), - [aux_sym__intrinsic_type_token6] = ACTIONS(4347), - [aux_sym__intrinsic_type_token7] = ACTIONS(4347), - [aux_sym__intrinsic_type_token8] = ACTIONS(4347), - [aux_sym__intrinsic_type_token9] = ACTIONS(4347), - [aux_sym__intrinsic_type_token10] = ACTIONS(4347), - [aux_sym_derived_type_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4347), - [aux_sym_type_qualifier_token1] = ACTIONS(4347), - [aux_sym_type_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4351), - [aux_sym_stop_statement_token1] = ACTIONS(4347), - [aux_sym_stop_statement_token2] = ACTIONS(4347), - [aux_sym_subroutine_call_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token2] = ACTIONS(4347), - [aux_sym_keyword_statement_token3] = ACTIONS(4347), - [aux_sym_keyword_statement_token4] = ACTIONS(4347), - [aux_sym_keyword_statement_token6] = ACTIONS(4347), - [aux_sym_keyword_statement_token7] = ACTIONS(4347), - [aux_sym_include_statement_token1] = ACTIONS(4347), - [aux_sym_data_statement_token1] = ACTIONS(4347), - [aux_sym_do_loop_statement_token1] = ACTIONS(4347), - [aux_sym__inline_if_statement_token1] = ACTIONS(4347), - [aux_sym_end_if_statement_token1] = ACTIONS(4347), - [aux_sym_elseif_clause_token2] = ACTIONS(4347), - [aux_sym__inline_where_statement_token1] = ACTIONS(4347), - [aux_sym__forall_control_expression_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token3] = ACTIONS(4347), - [aux_sym_select_type_statement_token1] = ACTIONS(4347), - [aux_sym_select_rank_statement_token2] = ACTIONS(4347), - [aux_sym_block_construct_token1] = ACTIONS(4347), - [aux_sym_associate_statement_token1] = ACTIONS(4347), - [aux_sym_format_statement_token1] = ACTIONS(4347), - [aux_sym_print_statement_token1] = ACTIONS(4347), - [aux_sym_open_statement_token1] = ACTIONS(4347), - [aux_sym_close_statement_token1] = ACTIONS(4347), - [aux_sym_inquire_statement_token1] = ACTIONS(4347), - [aux_sym_enum_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token2] = ACTIONS(4347), - [aux_sym_file_position_statement_token3] = ACTIONS(4347), - [aux_sym_file_position_statement_token4] = ACTIONS(4347), - [aux_sym_allocate_statement_token1] = ACTIONS(4347), - [aux_sym_entry_statement_token1] = ACTIONS(4347), - [aux_sym_logical_expression_token5] = ACTIONS(4351), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_LPAREN_SLASH] = ACTIONS(4351), - [anon_sym_LBRACK] = ACTIONS(4351), - [aux_sym_boolean_literal_token1] = ACTIONS(4351), - [aux_sym_boolean_literal_token2] = ACTIONS(4351), - [aux_sym_null_literal_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token2] = ACTIONS(4347), - [aux_sym_coarray_statement_token6] = ACTIONS(4347), - [aux_sym_coarray_statement_token8] = ACTIONS(4347), - [aux_sym_coarray_statement_token11] = ACTIONS(4347), - [aux_sym_coarray_statement_token12] = ACTIONS(4347), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4347), - [aux_sym_identifier_token1] = ACTIONS(4347), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4351), - [sym__float_literal] = ACTIONS(4351), - [sym__boz_literal] = ACTIONS(4351), - [sym__string_literal] = ACTIONS(4351), - [sym__string_literal_kind] = ACTIONS(4351), + [aux_sym_program_statement_token1] = ACTIONS(4279), + [aux_sym_end_program_statement_token1] = ACTIONS(4279), + [aux_sym_end_program_statement_token2] = ACTIONS(4279), + [aux_sym_module_statement_token1] = ACTIONS(4279), + [aux_sym_submodule_statement_token1] = ACTIONS(4279), + [aux_sym_interface_statement_token1] = ACTIONS(4279), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4279), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4279), + [aux_sym_subroutine_statement_token1] = ACTIONS(4279), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4279), + [aux_sym_function_statement_token1] = ACTIONS(4279), + [aux_sym_language_binding_token1] = ACTIONS(4279), + [aux_sym_procedure_attributes_token1] = ACTIONS(4279), + [aux_sym_procedure_attributes_token3] = ACTIONS(4279), + [aux_sym_contains_statement_token1] = ACTIONS(4279), + [aux_sym_use_statement_token1] = ACTIONS(4279), + [aux_sym_use_statement_token2] = ACTIONS(4279), + [aux_sym_implicit_statement_token1] = ACTIONS(4279), + [aux_sym_implicit_statement_token3] = ACTIONS(4279), + [aux_sym_implicit_statement_token4] = ACTIONS(4279), + [aux_sym_save_statement_token1] = ACTIONS(4279), + [aux_sym_private_statement_token1] = ACTIONS(4279), + [aux_sym_public_statement_token1] = ACTIONS(4279), + [aux_sym_namelist_statement_token1] = ACTIONS(4279), + [aux_sym_common_statement_token1] = ACTIONS(4279), + [aux_sym_import_statement_token1] = ACTIONS(4279), + [aux_sym_derived_type_definition_token1] = ACTIONS(4279), + [aux_sym_abstract_specifier_token1] = ACTIONS(4279), + [aux_sym_procedure_attribute_token6] = ACTIONS(4279), + [aux_sym_variable_attributes_token1] = ACTIONS(4279), + [aux_sym_variable_attributes_token2] = ACTIONS(4279), + [aux_sym_variable_attributes_token3] = ACTIONS(4279), + [aux_sym_variable_attributes_token4] = ACTIONS(4279), + [aux_sym_variable_attributes_token5] = ACTIONS(4279), + [aux_sym__intrinsic_type_token1] = ACTIONS(4279), + [aux_sym__intrinsic_type_token2] = ACTIONS(4279), + [aux_sym__intrinsic_type_token3] = ACTIONS(4279), + [aux_sym__intrinsic_type_token4] = ACTIONS(4279), + [aux_sym__intrinsic_type_token6] = ACTIONS(4279), + [aux_sym__intrinsic_type_token7] = ACTIONS(4279), + [aux_sym__intrinsic_type_token8] = ACTIONS(4279), + [aux_sym__intrinsic_type_token9] = ACTIONS(4279), + [aux_sym__intrinsic_type_token10] = ACTIONS(4279), + [aux_sym_derived_type_token1] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4279), + [aux_sym_type_qualifier_token1] = ACTIONS(4279), + [aux_sym_type_qualifier_token2] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4279), + [aux_sym_equivalence_statement_token1] = ACTIONS(4279), + [anon_sym_SEMI] = ACTIONS(4283), + [aux_sym_stop_statement_token1] = ACTIONS(4279), + [aux_sym_stop_statement_token2] = ACTIONS(4279), + [aux_sym_subroutine_call_token1] = ACTIONS(4279), + [aux_sym_keyword_statement_token1] = ACTIONS(4279), + [aux_sym_keyword_statement_token2] = ACTIONS(4279), + [aux_sym_keyword_statement_token3] = ACTIONS(4279), + [aux_sym_keyword_statement_token4] = ACTIONS(4279), + [aux_sym_keyword_statement_token6] = ACTIONS(4279), + [aux_sym_keyword_statement_token7] = ACTIONS(4279), + [aux_sym_include_statement_token1] = ACTIONS(4279), + [aux_sym_data_statement_token1] = ACTIONS(4279), + [aux_sym_do_loop_statement_token1] = ACTIONS(4279), + [aux_sym__inline_if_statement_token1] = ACTIONS(4279), + [aux_sym_end_if_statement_token1] = ACTIONS(4279), + [aux_sym_elseif_clause_token2] = ACTIONS(4279), + [aux_sym__inline_where_statement_token1] = ACTIONS(4279), + [aux_sym__forall_control_expression_token1] = ACTIONS(4279), + [aux_sym_select_case_statement_token1] = ACTIONS(4279), + [aux_sym_select_case_statement_token3] = ACTIONS(4279), + [aux_sym_select_type_statement_token1] = ACTIONS(4279), + [aux_sym_select_rank_statement_token2] = ACTIONS(4279), + [aux_sym_block_construct_token1] = ACTIONS(4279), + [aux_sym_associate_statement_token1] = ACTIONS(4279), + [aux_sym_format_statement_token1] = ACTIONS(4279), + [aux_sym_print_statement_token1] = ACTIONS(4279), + [aux_sym_open_statement_token1] = ACTIONS(4279), + [aux_sym_close_statement_token1] = ACTIONS(4279), + [aux_sym_inquire_statement_token1] = ACTIONS(4279), + [aux_sym_enum_statement_token1] = ACTIONS(4279), + [aux_sym_file_position_statement_token1] = ACTIONS(4279), + [aux_sym_file_position_statement_token2] = ACTIONS(4279), + [aux_sym_file_position_statement_token3] = ACTIONS(4279), + [aux_sym_file_position_statement_token4] = ACTIONS(4279), + [aux_sym_allocate_statement_token1] = ACTIONS(4279), + [aux_sym_entry_statement_token1] = ACTIONS(4279), + [aux_sym_logical_expression_token5] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4279), + [anon_sym_LPAREN_SLASH] = ACTIONS(4283), + [anon_sym_LBRACK] = ACTIONS(4283), + [aux_sym_boolean_literal_token1] = ACTIONS(4283), + [aux_sym_boolean_literal_token2] = ACTIONS(4283), + [aux_sym_null_literal_token1] = ACTIONS(4279), + [aux_sym_coarray_statement_token1] = ACTIONS(4279), + [aux_sym_coarray_statement_token2] = ACTIONS(4279), + [aux_sym_coarray_statement_token6] = ACTIONS(4279), + [aux_sym_coarray_statement_token8] = ACTIONS(4279), + [aux_sym_coarray_statement_token11] = ACTIONS(4279), + [aux_sym_coarray_statement_token12] = ACTIONS(4279), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4279), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4279), + [aux_sym_identifier_token1] = ACTIONS(4279), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4283), + [sym__float_literal] = ACTIONS(4283), + [sym__boz_literal] = ACTIONS(4283), + [sym__string_literal] = ACTIONS(4283), + [sym__string_literal_kind] = ACTIONS(4283), }, - [929] = { - [ts_builtin_sym_end] = ACTIONS(4371), - [aux_sym_preproc_include_token1] = ACTIONS(4367), - [aux_sym_preproc_def_token1] = ACTIONS(4367), - [aux_sym_preproc_if_token1] = ACTIONS(4367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), - [sym_preproc_directive] = ACTIONS(4367), - [anon_sym_LPAREN2] = ACTIONS(4367), - [sym_preproc_comment] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4367), - [aux_sym_end_program_statement_token1] = ACTIONS(4367), - [aux_sym_end_program_statement_token2] = ACTIONS(4367), - [aux_sym_module_statement_token1] = ACTIONS(4367), - [aux_sym_submodule_statement_token1] = ACTIONS(4367), - [aux_sym_interface_statement_token1] = ACTIONS(4367), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4367), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4367), - [aux_sym_subroutine_statement_token1] = ACTIONS(4367), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4367), - [aux_sym_function_statement_token1] = ACTIONS(4367), - [aux_sym_language_binding_token1] = ACTIONS(4367), - [aux_sym_procedure_attributes_token1] = ACTIONS(4367), - [aux_sym_procedure_attributes_token3] = ACTIONS(4367), - [aux_sym_contains_statement_token1] = ACTIONS(4367), - [aux_sym_use_statement_token1] = ACTIONS(4367), - [aux_sym_use_statement_token2] = ACTIONS(4367), - [aux_sym_implicit_statement_token1] = ACTIONS(4367), - [aux_sym_implicit_statement_token3] = ACTIONS(4367), - [aux_sym_implicit_statement_token4] = ACTIONS(4367), - [aux_sym_save_statement_token1] = ACTIONS(4367), - [aux_sym_private_statement_token1] = ACTIONS(4367), - [aux_sym_public_statement_token1] = ACTIONS(4367), - [aux_sym_namelist_statement_token1] = ACTIONS(4367), - [aux_sym_common_statement_token1] = ACTIONS(4367), - [aux_sym_import_statement_token1] = ACTIONS(4367), - [aux_sym_derived_type_definition_token1] = ACTIONS(4367), - [aux_sym_abstract_specifier_token1] = ACTIONS(4367), - [aux_sym_procedure_attribute_token6] = ACTIONS(4367), - [aux_sym_variable_attributes_token1] = ACTIONS(4367), - [aux_sym_variable_attributes_token2] = ACTIONS(4367), - [aux_sym_variable_attributes_token3] = ACTIONS(4367), - [aux_sym_variable_attributes_token4] = ACTIONS(4367), - [aux_sym_variable_attributes_token5] = ACTIONS(4367), - [aux_sym__intrinsic_type_token1] = ACTIONS(4367), - [aux_sym__intrinsic_type_token2] = ACTIONS(4367), - [aux_sym__intrinsic_type_token3] = ACTIONS(4367), - [aux_sym__intrinsic_type_token4] = ACTIONS(4367), - [aux_sym__intrinsic_type_token6] = ACTIONS(4367), - [aux_sym__intrinsic_type_token7] = ACTIONS(4367), - [aux_sym__intrinsic_type_token8] = ACTIONS(4367), - [aux_sym__intrinsic_type_token9] = ACTIONS(4367), - [aux_sym__intrinsic_type_token10] = ACTIONS(4367), - [aux_sym_derived_type_token1] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4367), - [aux_sym_type_qualifier_token1] = ACTIONS(4367), - [aux_sym_type_qualifier_token2] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4367), - [aux_sym_equivalence_statement_token1] = ACTIONS(4367), - [anon_sym_SEMI] = ACTIONS(4371), - [aux_sym_stop_statement_token1] = ACTIONS(4367), - [aux_sym_stop_statement_token2] = ACTIONS(4367), - [aux_sym_subroutine_call_token1] = ACTIONS(4367), - [aux_sym_keyword_statement_token1] = ACTIONS(4367), - [aux_sym_keyword_statement_token2] = ACTIONS(4367), - [aux_sym_keyword_statement_token3] = ACTIONS(4367), - [aux_sym_keyword_statement_token4] = ACTIONS(4367), - [aux_sym_keyword_statement_token6] = ACTIONS(4367), - [aux_sym_keyword_statement_token7] = ACTIONS(4367), - [aux_sym_include_statement_token1] = ACTIONS(4367), - [aux_sym_data_statement_token1] = ACTIONS(4367), - [aux_sym_do_loop_statement_token1] = ACTIONS(4367), - [aux_sym__inline_if_statement_token1] = ACTIONS(4367), - [aux_sym_end_if_statement_token1] = ACTIONS(4367), - [aux_sym_elseif_clause_token2] = ACTIONS(4367), - [aux_sym__inline_where_statement_token1] = ACTIONS(4367), - [aux_sym__forall_control_expression_token1] = ACTIONS(4367), - [aux_sym_select_case_statement_token1] = ACTIONS(4367), - [aux_sym_select_case_statement_token3] = ACTIONS(4367), - [aux_sym_select_type_statement_token1] = ACTIONS(4367), - [aux_sym_select_rank_statement_token2] = ACTIONS(4367), - [aux_sym_block_construct_token1] = ACTIONS(4367), - [aux_sym_associate_statement_token1] = ACTIONS(4367), - [aux_sym_format_statement_token1] = ACTIONS(4367), - [aux_sym_print_statement_token1] = ACTIONS(4367), - [aux_sym_open_statement_token1] = ACTIONS(4367), - [aux_sym_close_statement_token1] = ACTIONS(4367), - [aux_sym_inquire_statement_token1] = ACTIONS(4367), - [aux_sym_enum_statement_token1] = ACTIONS(4367), - [aux_sym_file_position_statement_token1] = ACTIONS(4367), - [aux_sym_file_position_statement_token2] = ACTIONS(4367), - [aux_sym_file_position_statement_token3] = ACTIONS(4367), - [aux_sym_file_position_statement_token4] = ACTIONS(4367), - [aux_sym_allocate_statement_token1] = ACTIONS(4367), - [aux_sym_entry_statement_token1] = ACTIONS(4367), - [aux_sym_logical_expression_token5] = ACTIONS(4371), - [anon_sym_DOT] = ACTIONS(4367), - [anon_sym_LPAREN_SLASH] = ACTIONS(4371), - [anon_sym_LBRACK] = ACTIONS(4371), - [aux_sym_boolean_literal_token1] = ACTIONS(4371), - [aux_sym_boolean_literal_token2] = ACTIONS(4371), - [aux_sym_null_literal_token1] = ACTIONS(4367), - [aux_sym_coarray_statement_token1] = ACTIONS(4367), - [aux_sym_coarray_statement_token2] = ACTIONS(4367), - [aux_sym_coarray_statement_token6] = ACTIONS(4367), - [aux_sym_coarray_statement_token8] = ACTIONS(4367), - [aux_sym_coarray_statement_token11] = ACTIONS(4367), - [aux_sym_coarray_statement_token12] = ACTIONS(4367), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4367), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4367), - [aux_sym_identifier_token1] = ACTIONS(4367), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4371), - [sym__float_literal] = ACTIONS(4371), - [sym__boz_literal] = ACTIONS(4371), - [sym__string_literal] = ACTIONS(4371), - [sym__string_literal_kind] = ACTIONS(4371), + [918] = { + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4297), + [sym_preproc_comment] = ACTIONS(4673), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token2] = ACTIONS(4297), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4297), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4297), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token3] = ACTIONS(4297), + [aux_sym_contains_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token2] = ACTIONS(4297), + [aux_sym_implicit_statement_token1] = ACTIONS(4297), + [aux_sym_implicit_statement_token3] = ACTIONS(4297), + [aux_sym_implicit_statement_token4] = ACTIONS(4297), + [aux_sym_save_statement_token1] = ACTIONS(4297), + [aux_sym_private_statement_token1] = ACTIONS(4297), + [aux_sym_public_statement_token1] = ACTIONS(4297), + [aux_sym_namelist_statement_token1] = ACTIONS(4297), + [aux_sym_common_statement_token1] = ACTIONS(4297), + [aux_sym_import_statement_token1] = ACTIONS(4297), + [aux_sym_derived_type_definition_token1] = ACTIONS(4297), + [aux_sym_abstract_specifier_token1] = ACTIONS(4297), + [aux_sym_procedure_attribute_token6] = ACTIONS(4297), + [aux_sym_variable_attributes_token1] = ACTIONS(4297), + [aux_sym_variable_attributes_token2] = ACTIONS(4297), + [aux_sym_variable_attributes_token3] = ACTIONS(4297), + [aux_sym_variable_attributes_token4] = ACTIONS(4297), + [aux_sym_variable_attributes_token5] = ACTIONS(4297), + [aux_sym__intrinsic_type_token1] = ACTIONS(4297), + [aux_sym__intrinsic_type_token2] = ACTIONS(4297), + [aux_sym__intrinsic_type_token3] = ACTIONS(4297), + [aux_sym__intrinsic_type_token4] = ACTIONS(4297), + [aux_sym__intrinsic_type_token6] = ACTIONS(4297), + [aux_sym__intrinsic_type_token7] = ACTIONS(4297), + [aux_sym__intrinsic_type_token8] = ACTIONS(4297), + [aux_sym__intrinsic_type_token9] = ACTIONS(4297), + [aux_sym__intrinsic_type_token10] = ACTIONS(4297), + [aux_sym_derived_type_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4297), + [aux_sym_type_qualifier_token1] = ACTIONS(4297), + [aux_sym_type_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4301), + [aux_sym_stop_statement_token1] = ACTIONS(4297), + [aux_sym_stop_statement_token2] = ACTIONS(4297), + [aux_sym_subroutine_call_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token2] = ACTIONS(4297), + [aux_sym_keyword_statement_token3] = ACTIONS(4297), + [aux_sym_keyword_statement_token4] = ACTIONS(4297), + [aux_sym_keyword_statement_token6] = ACTIONS(4297), + [aux_sym_keyword_statement_token7] = ACTIONS(4297), + [aux_sym_include_statement_token1] = ACTIONS(4297), + [aux_sym_data_statement_token1] = ACTIONS(4297), + [aux_sym_do_loop_statement_token1] = ACTIONS(4297), + [aux_sym__inline_if_statement_token1] = ACTIONS(4297), + [aux_sym_end_if_statement_token1] = ACTIONS(4297), + [aux_sym_elseif_clause_token2] = ACTIONS(4297), + [aux_sym__inline_where_statement_token1] = ACTIONS(4297), + [aux_sym__forall_control_expression_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token3] = ACTIONS(4297), + [aux_sym_select_type_statement_token1] = ACTIONS(4297), + [aux_sym_select_rank_statement_token2] = ACTIONS(4297), + [aux_sym_block_construct_token1] = ACTIONS(4297), + [aux_sym_associate_statement_token1] = ACTIONS(4297), + [aux_sym_format_statement_token1] = ACTIONS(4297), + [aux_sym_print_statement_token1] = ACTIONS(4297), + [aux_sym_open_statement_token1] = ACTIONS(4297), + [aux_sym_close_statement_token1] = ACTIONS(4297), + [aux_sym_inquire_statement_token1] = ACTIONS(4297), + [aux_sym_enum_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token2] = ACTIONS(4297), + [aux_sym_file_position_statement_token3] = ACTIONS(4297), + [aux_sym_file_position_statement_token4] = ACTIONS(4297), + [aux_sym_allocate_statement_token1] = ACTIONS(4297), + [aux_sym_entry_statement_token1] = ACTIONS(4297), + [aux_sym_logical_expression_token5] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_LPAREN_SLASH] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [aux_sym_boolean_literal_token1] = ACTIONS(4301), + [aux_sym_boolean_literal_token2] = ACTIONS(4301), + [aux_sym_null_literal_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token2] = ACTIONS(4297), + [aux_sym_coarray_statement_token6] = ACTIONS(4297), + [aux_sym_coarray_statement_token8] = ACTIONS(4297), + [aux_sym_coarray_statement_token11] = ACTIONS(4297), + [aux_sym_coarray_statement_token12] = ACTIONS(4297), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4297), + [aux_sym_identifier_token1] = ACTIONS(4297), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4301), + [sym__float_literal] = ACTIONS(4301), + [sym__boz_literal] = ACTIONS(4301), + [sym__string_literal] = ACTIONS(4301), + [sym__string_literal_kind] = ACTIONS(4301), }, - [930] = { - [sym_preproc_include] = STATE(965), - [sym_preproc_def] = STATE(965), - [sym_preproc_function_def] = STATE(965), - [sym_preproc_call] = STATE(965), - [sym_preproc_else_in_module] = STATE(8395), - [sym_preproc_elif_in_module] = STATE(8395), - [sym_preproc_elifdef_in_module] = STATE(8395), - [sym_interface] = STATE(965), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5720), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(965), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(965), - [sym_public_statement] = STATE(965), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(965), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [919] = { + [sym_preproc_include] = STATE(999), + [sym_preproc_def] = STATE(999), + [sym_preproc_function_def] = STATE(999), + [sym_preproc_call] = STATE(999), + [sym_preproc_else_in_module] = STATE(8344), + [sym_preproc_elif_in_module] = STATE(8344), + [sym_preproc_elifdef_in_module] = STATE(8344), + [sym_interface] = STATE(999), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5621), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(999), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(999), + [sym_public_statement] = STATE(999), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(999), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(965), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(999), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(965), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4697), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), - [sym_preproc_comment] = ACTIONS(4699), + [aux_sym_preproc_if_in_module_repeat1] = STATE(999), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4675), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), + [sym_preproc_comment] = ACTIONS(4677), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -215926,8 +214430,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -215939,9 +214443,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -215970,11 +214474,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -215991,487 +214495,2391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(4365), - [aux_sym_preproc_include_token1] = ACTIONS(4361), - [aux_sym_preproc_def_token1] = ACTIONS(4361), - [aux_sym_preproc_if_token1] = ACTIONS(4361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), - [sym_preproc_directive] = ACTIONS(4361), - [anon_sym_LPAREN2] = ACTIONS(4361), - [sym_preproc_comment] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4365), - [anon_sym_DASH] = ACTIONS(4365), + [920] = { + [aux_sym_preproc_include_token1] = ACTIONS(4279), + [aux_sym_preproc_def_token1] = ACTIONS(4279), + [aux_sym_preproc_if_token1] = ACTIONS(4279), + [aux_sym_preproc_if_token2] = ACTIONS(4279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4279), + [sym_preproc_directive] = ACTIONS(4279), + [anon_sym_LPAREN2] = ACTIONS(4279), + [sym_preproc_comment] = ACTIONS(4679), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4361), - [aux_sym_end_program_statement_token1] = ACTIONS(4361), - [aux_sym_end_program_statement_token2] = ACTIONS(4361), - [aux_sym_module_statement_token1] = ACTIONS(4361), - [aux_sym_submodule_statement_token1] = ACTIONS(4361), - [aux_sym_interface_statement_token1] = ACTIONS(4361), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), - [aux_sym_subroutine_statement_token1] = ACTIONS(4361), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4361), - [aux_sym_function_statement_token1] = ACTIONS(4361), - [aux_sym_language_binding_token1] = ACTIONS(4361), - [aux_sym_procedure_attributes_token1] = ACTIONS(4361), - [aux_sym_procedure_attributes_token3] = ACTIONS(4361), - [aux_sym_contains_statement_token1] = ACTIONS(4361), - [aux_sym_use_statement_token1] = ACTIONS(4361), - [aux_sym_use_statement_token2] = ACTIONS(4361), - [aux_sym_implicit_statement_token1] = ACTIONS(4361), - [aux_sym_implicit_statement_token3] = ACTIONS(4361), - [aux_sym_implicit_statement_token4] = ACTIONS(4361), - [aux_sym_save_statement_token1] = ACTIONS(4361), - [aux_sym_private_statement_token1] = ACTIONS(4361), - [aux_sym_public_statement_token1] = ACTIONS(4361), - [aux_sym_namelist_statement_token1] = ACTIONS(4361), - [aux_sym_common_statement_token1] = ACTIONS(4361), - [aux_sym_import_statement_token1] = ACTIONS(4361), - [aux_sym_derived_type_definition_token1] = ACTIONS(4361), - [aux_sym_abstract_specifier_token1] = ACTIONS(4361), - [aux_sym_procedure_attribute_token6] = ACTIONS(4361), - [aux_sym_variable_attributes_token1] = ACTIONS(4361), - [aux_sym_variable_attributes_token2] = ACTIONS(4361), - [aux_sym_variable_attributes_token3] = ACTIONS(4361), - [aux_sym_variable_attributes_token4] = ACTIONS(4361), - [aux_sym_variable_attributes_token5] = ACTIONS(4361), - [aux_sym__intrinsic_type_token1] = ACTIONS(4361), - [aux_sym__intrinsic_type_token2] = ACTIONS(4361), - [aux_sym__intrinsic_type_token3] = ACTIONS(4361), - [aux_sym__intrinsic_type_token4] = ACTIONS(4361), - [aux_sym__intrinsic_type_token6] = ACTIONS(4361), - [aux_sym__intrinsic_type_token7] = ACTIONS(4361), - [aux_sym__intrinsic_type_token8] = ACTIONS(4361), - [aux_sym__intrinsic_type_token9] = ACTIONS(4361), - [aux_sym__intrinsic_type_token10] = ACTIONS(4361), - [aux_sym_derived_type_token1] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4361), - [aux_sym_type_qualifier_token1] = ACTIONS(4361), - [aux_sym_type_qualifier_token2] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4361), - [aux_sym_equivalence_statement_token1] = ACTIONS(4361), - [anon_sym_SEMI] = ACTIONS(4365), - [aux_sym_stop_statement_token1] = ACTIONS(4361), - [aux_sym_stop_statement_token2] = ACTIONS(4361), - [aux_sym_subroutine_call_token1] = ACTIONS(4361), - [aux_sym_keyword_statement_token1] = ACTIONS(4361), - [aux_sym_keyword_statement_token2] = ACTIONS(4361), - [aux_sym_keyword_statement_token3] = ACTIONS(4361), - [aux_sym_keyword_statement_token4] = ACTIONS(4361), - [aux_sym_keyword_statement_token6] = ACTIONS(4361), - [aux_sym_keyword_statement_token7] = ACTIONS(4361), - [aux_sym_include_statement_token1] = ACTIONS(4361), - [aux_sym_data_statement_token1] = ACTIONS(4361), - [aux_sym_do_loop_statement_token1] = ACTIONS(4361), - [aux_sym__inline_if_statement_token1] = ACTIONS(4361), - [aux_sym_end_if_statement_token1] = ACTIONS(4361), - [aux_sym_elseif_clause_token2] = ACTIONS(4361), - [aux_sym__inline_where_statement_token1] = ACTIONS(4361), - [aux_sym__forall_control_expression_token1] = ACTIONS(4361), - [aux_sym_select_case_statement_token1] = ACTIONS(4361), - [aux_sym_select_case_statement_token3] = ACTIONS(4361), - [aux_sym_select_type_statement_token1] = ACTIONS(4361), - [aux_sym_select_rank_statement_token2] = ACTIONS(4361), - [aux_sym_block_construct_token1] = ACTIONS(4361), - [aux_sym_associate_statement_token1] = ACTIONS(4361), - [aux_sym_format_statement_token1] = ACTIONS(4361), - [aux_sym_print_statement_token1] = ACTIONS(4361), - [aux_sym_open_statement_token1] = ACTIONS(4361), - [aux_sym_close_statement_token1] = ACTIONS(4361), - [aux_sym_inquire_statement_token1] = ACTIONS(4361), - [aux_sym_enum_statement_token1] = ACTIONS(4361), - [aux_sym_file_position_statement_token1] = ACTIONS(4361), - [aux_sym_file_position_statement_token2] = ACTIONS(4361), - [aux_sym_file_position_statement_token3] = ACTIONS(4361), - [aux_sym_file_position_statement_token4] = ACTIONS(4361), - [aux_sym_allocate_statement_token1] = ACTIONS(4361), - [aux_sym_entry_statement_token1] = ACTIONS(4361), - [aux_sym_logical_expression_token5] = ACTIONS(4365), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_LPAREN_SLASH] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4365), - [aux_sym_boolean_literal_token1] = ACTIONS(4365), - [aux_sym_boolean_literal_token2] = ACTIONS(4365), - [aux_sym_null_literal_token1] = ACTIONS(4361), - [aux_sym_coarray_statement_token1] = ACTIONS(4361), - [aux_sym_coarray_statement_token2] = ACTIONS(4361), - [aux_sym_coarray_statement_token6] = ACTIONS(4361), - [aux_sym_coarray_statement_token8] = ACTIONS(4361), - [aux_sym_coarray_statement_token11] = ACTIONS(4361), - [aux_sym_coarray_statement_token12] = ACTIONS(4361), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), - [aux_sym_identifier_token1] = ACTIONS(4361), + [aux_sym_program_statement_token1] = ACTIONS(4279), + [aux_sym_end_program_statement_token1] = ACTIONS(4279), + [aux_sym_end_program_statement_token2] = ACTIONS(4279), + [aux_sym_module_statement_token1] = ACTIONS(4279), + [aux_sym_submodule_statement_token1] = ACTIONS(4279), + [aux_sym_interface_statement_token1] = ACTIONS(4279), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4279), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4279), + [aux_sym_subroutine_statement_token1] = ACTIONS(4279), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4279), + [aux_sym_function_statement_token1] = ACTIONS(4279), + [aux_sym_language_binding_token1] = ACTIONS(4279), + [aux_sym_procedure_attributes_token1] = ACTIONS(4279), + [aux_sym_procedure_attributes_token3] = ACTIONS(4279), + [aux_sym_contains_statement_token1] = ACTIONS(4279), + [aux_sym_use_statement_token1] = ACTIONS(4279), + [aux_sym_use_statement_token2] = ACTIONS(4279), + [aux_sym_implicit_statement_token1] = ACTIONS(4279), + [aux_sym_implicit_statement_token3] = ACTIONS(4279), + [aux_sym_implicit_statement_token4] = ACTIONS(4279), + [aux_sym_save_statement_token1] = ACTIONS(4279), + [aux_sym_private_statement_token1] = ACTIONS(4279), + [aux_sym_public_statement_token1] = ACTIONS(4279), + [aux_sym_namelist_statement_token1] = ACTIONS(4279), + [aux_sym_common_statement_token1] = ACTIONS(4279), + [aux_sym_import_statement_token1] = ACTIONS(4279), + [aux_sym_derived_type_definition_token1] = ACTIONS(4279), + [aux_sym_abstract_specifier_token1] = ACTIONS(4279), + [aux_sym_procedure_attribute_token6] = ACTIONS(4279), + [aux_sym_variable_attributes_token1] = ACTIONS(4279), + [aux_sym_variable_attributes_token2] = ACTIONS(4279), + [aux_sym_variable_attributes_token3] = ACTIONS(4279), + [aux_sym_variable_attributes_token4] = ACTIONS(4279), + [aux_sym_variable_attributes_token5] = ACTIONS(4279), + [aux_sym__intrinsic_type_token1] = ACTIONS(4279), + [aux_sym__intrinsic_type_token2] = ACTIONS(4279), + [aux_sym__intrinsic_type_token3] = ACTIONS(4279), + [aux_sym__intrinsic_type_token4] = ACTIONS(4279), + [aux_sym__intrinsic_type_token6] = ACTIONS(4279), + [aux_sym__intrinsic_type_token7] = ACTIONS(4279), + [aux_sym__intrinsic_type_token8] = ACTIONS(4279), + [aux_sym__intrinsic_type_token9] = ACTIONS(4279), + [aux_sym__intrinsic_type_token10] = ACTIONS(4279), + [aux_sym_derived_type_token1] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4279), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4279), + [aux_sym_type_qualifier_token1] = ACTIONS(4279), + [aux_sym_type_qualifier_token2] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4279), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4279), + [aux_sym_equivalence_statement_token1] = ACTIONS(4279), + [anon_sym_SEMI] = ACTIONS(4283), + [aux_sym_stop_statement_token1] = ACTIONS(4279), + [aux_sym_stop_statement_token2] = ACTIONS(4279), + [aux_sym_subroutine_call_token1] = ACTIONS(4279), + [aux_sym_keyword_statement_token1] = ACTIONS(4279), + [aux_sym_keyword_statement_token2] = ACTIONS(4279), + [aux_sym_keyword_statement_token3] = ACTIONS(4279), + [aux_sym_keyword_statement_token4] = ACTIONS(4279), + [aux_sym_keyword_statement_token6] = ACTIONS(4279), + [aux_sym_keyword_statement_token7] = ACTIONS(4279), + [aux_sym_include_statement_token1] = ACTIONS(4279), + [aux_sym_data_statement_token1] = ACTIONS(4279), + [aux_sym_do_loop_statement_token1] = ACTIONS(4279), + [aux_sym__inline_if_statement_token1] = ACTIONS(4279), + [aux_sym_end_if_statement_token1] = ACTIONS(4279), + [aux_sym_elseif_clause_token2] = ACTIONS(4279), + [aux_sym__inline_where_statement_token1] = ACTIONS(4279), + [aux_sym__forall_control_expression_token1] = ACTIONS(4279), + [aux_sym_select_case_statement_token1] = ACTIONS(4279), + [aux_sym_select_case_statement_token3] = ACTIONS(4279), + [aux_sym_select_type_statement_token1] = ACTIONS(4279), + [aux_sym_select_rank_statement_token2] = ACTIONS(4279), + [aux_sym_block_construct_token1] = ACTIONS(4279), + [aux_sym_associate_statement_token1] = ACTIONS(4279), + [aux_sym_format_statement_token1] = ACTIONS(4279), + [aux_sym_print_statement_token1] = ACTIONS(4279), + [aux_sym_open_statement_token1] = ACTIONS(4279), + [aux_sym_close_statement_token1] = ACTIONS(4279), + [aux_sym_inquire_statement_token1] = ACTIONS(4279), + [aux_sym_enum_statement_token1] = ACTIONS(4279), + [aux_sym_file_position_statement_token1] = ACTIONS(4279), + [aux_sym_file_position_statement_token2] = ACTIONS(4279), + [aux_sym_file_position_statement_token3] = ACTIONS(4279), + [aux_sym_file_position_statement_token4] = ACTIONS(4279), + [aux_sym_allocate_statement_token1] = ACTIONS(4279), + [aux_sym_entry_statement_token1] = ACTIONS(4279), + [aux_sym_logical_expression_token5] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4279), + [anon_sym_LPAREN_SLASH] = ACTIONS(4283), + [anon_sym_LBRACK] = ACTIONS(4283), + [aux_sym_boolean_literal_token1] = ACTIONS(4283), + [aux_sym_boolean_literal_token2] = ACTIONS(4283), + [aux_sym_null_literal_token1] = ACTIONS(4279), + [aux_sym_coarray_statement_token1] = ACTIONS(4279), + [aux_sym_coarray_statement_token2] = ACTIONS(4279), + [aux_sym_coarray_statement_token6] = ACTIONS(4279), + [aux_sym_coarray_statement_token8] = ACTIONS(4279), + [aux_sym_coarray_statement_token11] = ACTIONS(4279), + [aux_sym_coarray_statement_token12] = ACTIONS(4279), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4279), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4279), + [aux_sym_identifier_token1] = ACTIONS(4279), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4283), + [sym__float_literal] = ACTIONS(4283), + [sym__boz_literal] = ACTIONS(4283), + [sym__string_literal] = ACTIONS(4283), + [sym__string_literal_kind] = ACTIONS(4283), + }, + [921] = { + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4285), + [sym_preproc_comment] = ACTIONS(4681), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token2] = ACTIONS(4285), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4285), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4285), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token3] = ACTIONS(4285), + [aux_sym_contains_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token2] = ACTIONS(4285), + [aux_sym_implicit_statement_token1] = ACTIONS(4285), + [aux_sym_implicit_statement_token3] = ACTIONS(4285), + [aux_sym_implicit_statement_token4] = ACTIONS(4285), + [aux_sym_save_statement_token1] = ACTIONS(4285), + [aux_sym_private_statement_token1] = ACTIONS(4285), + [aux_sym_public_statement_token1] = ACTIONS(4285), + [aux_sym_namelist_statement_token1] = ACTIONS(4285), + [aux_sym_common_statement_token1] = ACTIONS(4285), + [aux_sym_import_statement_token1] = ACTIONS(4285), + [aux_sym_derived_type_definition_token1] = ACTIONS(4285), + [aux_sym_abstract_specifier_token1] = ACTIONS(4285), + [aux_sym_procedure_attribute_token6] = ACTIONS(4285), + [aux_sym_variable_attributes_token1] = ACTIONS(4285), + [aux_sym_variable_attributes_token2] = ACTIONS(4285), + [aux_sym_variable_attributes_token3] = ACTIONS(4285), + [aux_sym_variable_attributes_token4] = ACTIONS(4285), + [aux_sym_variable_attributes_token5] = ACTIONS(4285), + [aux_sym__intrinsic_type_token1] = ACTIONS(4285), + [aux_sym__intrinsic_type_token2] = ACTIONS(4285), + [aux_sym__intrinsic_type_token3] = ACTIONS(4285), + [aux_sym__intrinsic_type_token4] = ACTIONS(4285), + [aux_sym__intrinsic_type_token6] = ACTIONS(4285), + [aux_sym__intrinsic_type_token7] = ACTIONS(4285), + [aux_sym__intrinsic_type_token8] = ACTIONS(4285), + [aux_sym__intrinsic_type_token9] = ACTIONS(4285), + [aux_sym__intrinsic_type_token10] = ACTIONS(4285), + [aux_sym_derived_type_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4285), + [aux_sym_type_qualifier_token1] = ACTIONS(4285), + [aux_sym_type_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4289), + [aux_sym_stop_statement_token1] = ACTIONS(4285), + [aux_sym_stop_statement_token2] = ACTIONS(4285), + [aux_sym_subroutine_call_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token2] = ACTIONS(4285), + [aux_sym_keyword_statement_token3] = ACTIONS(4285), + [aux_sym_keyword_statement_token4] = ACTIONS(4285), + [aux_sym_keyword_statement_token6] = ACTIONS(4285), + [aux_sym_keyword_statement_token7] = ACTIONS(4285), + [aux_sym_include_statement_token1] = ACTIONS(4285), + [aux_sym_data_statement_token1] = ACTIONS(4285), + [aux_sym_do_loop_statement_token1] = ACTIONS(4285), + [aux_sym__inline_if_statement_token1] = ACTIONS(4285), + [aux_sym_end_if_statement_token1] = ACTIONS(4285), + [aux_sym_elseif_clause_token2] = ACTIONS(4285), + [aux_sym__inline_where_statement_token1] = ACTIONS(4285), + [aux_sym__forall_control_expression_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token3] = ACTIONS(4285), + [aux_sym_select_type_statement_token1] = ACTIONS(4285), + [aux_sym_select_rank_statement_token2] = ACTIONS(4285), + [aux_sym_block_construct_token1] = ACTIONS(4285), + [aux_sym_associate_statement_token1] = ACTIONS(4285), + [aux_sym_format_statement_token1] = ACTIONS(4285), + [aux_sym_print_statement_token1] = ACTIONS(4285), + [aux_sym_open_statement_token1] = ACTIONS(4285), + [aux_sym_close_statement_token1] = ACTIONS(4285), + [aux_sym_inquire_statement_token1] = ACTIONS(4285), + [aux_sym_enum_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token2] = ACTIONS(4285), + [aux_sym_file_position_statement_token3] = ACTIONS(4285), + [aux_sym_file_position_statement_token4] = ACTIONS(4285), + [aux_sym_allocate_statement_token1] = ACTIONS(4285), + [aux_sym_entry_statement_token1] = ACTIONS(4285), + [aux_sym_logical_expression_token5] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4285), + [anon_sym_LPAREN_SLASH] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [aux_sym_boolean_literal_token1] = ACTIONS(4289), + [aux_sym_boolean_literal_token2] = ACTIONS(4289), + [aux_sym_null_literal_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token2] = ACTIONS(4285), + [aux_sym_coarray_statement_token6] = ACTIONS(4285), + [aux_sym_coarray_statement_token8] = ACTIONS(4285), + [aux_sym_coarray_statement_token11] = ACTIONS(4285), + [aux_sym_coarray_statement_token12] = ACTIONS(4285), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4285), + [aux_sym_identifier_token1] = ACTIONS(4285), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4289), + [sym__float_literal] = ACTIONS(4289), + [sym__boz_literal] = ACTIONS(4289), + [sym__string_literal] = ACTIONS(4289), + [sym__string_literal_kind] = ACTIONS(4289), + }, + [922] = { + [ts_builtin_sym_end] = ACTIONS(4313), + [aux_sym_preproc_include_token1] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4309), + [sym_preproc_comment] = ACTIONS(4683), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4309), + [aux_sym_end_program_statement_token1] = ACTIONS(4309), + [aux_sym_end_program_statement_token2] = ACTIONS(4309), + [aux_sym_module_statement_token1] = ACTIONS(4309), + [aux_sym_submodule_statement_token1] = ACTIONS(4309), + [aux_sym_interface_statement_token1] = ACTIONS(4309), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4309), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4309), + [aux_sym_subroutine_statement_token1] = ACTIONS(4309), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4309), + [aux_sym_function_statement_token1] = ACTIONS(4309), + [aux_sym_language_binding_token1] = ACTIONS(4309), + [aux_sym_procedure_attributes_token1] = ACTIONS(4309), + [aux_sym_procedure_attributes_token3] = ACTIONS(4309), + [aux_sym_contains_statement_token1] = ACTIONS(4309), + [aux_sym_use_statement_token1] = ACTIONS(4309), + [aux_sym_use_statement_token2] = ACTIONS(4309), + [aux_sym_implicit_statement_token1] = ACTIONS(4309), + [aux_sym_implicit_statement_token3] = ACTIONS(4309), + [aux_sym_implicit_statement_token4] = ACTIONS(4309), + [aux_sym_save_statement_token1] = ACTIONS(4309), + [aux_sym_private_statement_token1] = ACTIONS(4309), + [aux_sym_public_statement_token1] = ACTIONS(4309), + [aux_sym_namelist_statement_token1] = ACTIONS(4309), + [aux_sym_common_statement_token1] = ACTIONS(4309), + [aux_sym_import_statement_token1] = ACTIONS(4309), + [aux_sym_derived_type_definition_token1] = ACTIONS(4309), + [aux_sym_abstract_specifier_token1] = ACTIONS(4309), + [aux_sym_procedure_attribute_token6] = ACTIONS(4309), + [aux_sym_variable_attributes_token1] = ACTIONS(4309), + [aux_sym_variable_attributes_token2] = ACTIONS(4309), + [aux_sym_variable_attributes_token3] = ACTIONS(4309), + [aux_sym_variable_attributes_token4] = ACTIONS(4309), + [aux_sym_variable_attributes_token5] = ACTIONS(4309), + [aux_sym__intrinsic_type_token1] = ACTIONS(4309), + [aux_sym__intrinsic_type_token2] = ACTIONS(4309), + [aux_sym__intrinsic_type_token3] = ACTIONS(4309), + [aux_sym__intrinsic_type_token4] = ACTIONS(4309), + [aux_sym__intrinsic_type_token6] = ACTIONS(4309), + [aux_sym__intrinsic_type_token7] = ACTIONS(4309), + [aux_sym__intrinsic_type_token8] = ACTIONS(4309), + [aux_sym__intrinsic_type_token9] = ACTIONS(4309), + [aux_sym__intrinsic_type_token10] = ACTIONS(4309), + [aux_sym_derived_type_token1] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4309), + [aux_sym_type_qualifier_token1] = ACTIONS(4309), + [aux_sym_type_qualifier_token2] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4309), + [aux_sym_equivalence_statement_token1] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4313), + [aux_sym_stop_statement_token1] = ACTIONS(4309), + [aux_sym_stop_statement_token2] = ACTIONS(4309), + [aux_sym_subroutine_call_token1] = ACTIONS(4309), + [aux_sym_keyword_statement_token1] = ACTIONS(4309), + [aux_sym_keyword_statement_token2] = ACTIONS(4309), + [aux_sym_keyword_statement_token3] = ACTIONS(4309), + [aux_sym_keyword_statement_token4] = ACTIONS(4309), + [aux_sym_keyword_statement_token6] = ACTIONS(4309), + [aux_sym_keyword_statement_token7] = ACTIONS(4309), + [aux_sym_include_statement_token1] = ACTIONS(4309), + [aux_sym_data_statement_token1] = ACTIONS(4309), + [aux_sym_do_loop_statement_token1] = ACTIONS(4309), + [aux_sym__inline_if_statement_token1] = ACTIONS(4309), + [aux_sym_end_if_statement_token1] = ACTIONS(4309), + [aux_sym_elseif_clause_token2] = ACTIONS(4309), + [aux_sym__inline_where_statement_token1] = ACTIONS(4309), + [aux_sym__forall_control_expression_token1] = ACTIONS(4309), + [aux_sym_select_case_statement_token1] = ACTIONS(4309), + [aux_sym_select_case_statement_token3] = ACTIONS(4309), + [aux_sym_select_type_statement_token1] = ACTIONS(4309), + [aux_sym_select_rank_statement_token2] = ACTIONS(4309), + [aux_sym_block_construct_token1] = ACTIONS(4309), + [aux_sym_associate_statement_token1] = ACTIONS(4309), + [aux_sym_format_statement_token1] = ACTIONS(4309), + [aux_sym_print_statement_token1] = ACTIONS(4309), + [aux_sym_open_statement_token1] = ACTIONS(4309), + [aux_sym_close_statement_token1] = ACTIONS(4309), + [aux_sym_inquire_statement_token1] = ACTIONS(4309), + [aux_sym_enum_statement_token1] = ACTIONS(4309), + [aux_sym_file_position_statement_token1] = ACTIONS(4309), + [aux_sym_file_position_statement_token2] = ACTIONS(4309), + [aux_sym_file_position_statement_token3] = ACTIONS(4309), + [aux_sym_file_position_statement_token4] = ACTIONS(4309), + [aux_sym_allocate_statement_token1] = ACTIONS(4309), + [aux_sym_entry_statement_token1] = ACTIONS(4309), + [aux_sym_logical_expression_token5] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4309), + [anon_sym_LPAREN_SLASH] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [aux_sym_boolean_literal_token1] = ACTIONS(4313), + [aux_sym_boolean_literal_token2] = ACTIONS(4313), + [aux_sym_null_literal_token1] = ACTIONS(4309), + [aux_sym_coarray_statement_token1] = ACTIONS(4309), + [aux_sym_coarray_statement_token2] = ACTIONS(4309), + [aux_sym_coarray_statement_token6] = ACTIONS(4309), + [aux_sym_coarray_statement_token8] = ACTIONS(4309), + [aux_sym_coarray_statement_token11] = ACTIONS(4309), + [aux_sym_coarray_statement_token12] = ACTIONS(4309), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4309), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4309), + [aux_sym_identifier_token1] = ACTIONS(4309), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4313), + [sym__float_literal] = ACTIONS(4313), + [sym__boz_literal] = ACTIONS(4313), + [sym__string_literal] = ACTIONS(4313), + [sym__string_literal_kind] = ACTIONS(4313), + }, + [923] = { + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(4685), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4329), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token2] = ACTIONS(4327), + [aux_sym_module_statement_token1] = ACTIONS(4329), + [aux_sym_submodule_statement_token1] = ACTIONS(4329), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_subroutine_statement_token1] = ACTIONS(4329), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_function_statement_token1] = ACTIONS(4329), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4329), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4365), - [sym__float_literal] = ACTIONS(4365), - [sym__boz_literal] = ACTIONS(4365), - [sym__string_literal] = ACTIONS(4365), - [sym__string_literal_kind] = ACTIONS(4365), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), }, - [932] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token2] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4275), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_end_program_statement_token2] = ACTIONS(4267), - [aux_sym_module_statement_token1] = ACTIONS(4275), - [aux_sym_submodule_statement_token1] = ACTIONS(4275), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_subroutine_statement_token1] = ACTIONS(4275), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_function_statement_token1] = ACTIONS(4275), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4275), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [924] = { + [aux_sym_preproc_include_token1] = ACTIONS(4303), + [aux_sym_preproc_def_token1] = ACTIONS(4303), + [aux_sym_preproc_if_token1] = ACTIONS(4303), + [aux_sym_preproc_if_token2] = ACTIONS(4303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4303), + [sym_preproc_directive] = ACTIONS(4303), + [anon_sym_LPAREN2] = ACTIONS(4303), + [sym_preproc_comment] = ACTIONS(4687), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4303), + [aux_sym_end_program_statement_token1] = ACTIONS(4303), + [aux_sym_end_program_statement_token2] = ACTIONS(4303), + [aux_sym_module_statement_token1] = ACTIONS(4303), + [aux_sym_submodule_statement_token1] = ACTIONS(4303), + [aux_sym_interface_statement_token1] = ACTIONS(4303), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4303), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4303), + [aux_sym_subroutine_statement_token1] = ACTIONS(4303), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4303), + [aux_sym_function_statement_token1] = ACTIONS(4303), + [aux_sym_language_binding_token1] = ACTIONS(4303), + [aux_sym_procedure_attributes_token1] = ACTIONS(4303), + [aux_sym_procedure_attributes_token3] = ACTIONS(4303), + [aux_sym_contains_statement_token1] = ACTIONS(4303), + [aux_sym_use_statement_token1] = ACTIONS(4303), + [aux_sym_use_statement_token2] = ACTIONS(4303), + [aux_sym_implicit_statement_token1] = ACTIONS(4303), + [aux_sym_implicit_statement_token3] = ACTIONS(4303), + [aux_sym_implicit_statement_token4] = ACTIONS(4303), + [aux_sym_save_statement_token1] = ACTIONS(4303), + [aux_sym_private_statement_token1] = ACTIONS(4303), + [aux_sym_public_statement_token1] = ACTIONS(4303), + [aux_sym_namelist_statement_token1] = ACTIONS(4303), + [aux_sym_common_statement_token1] = ACTIONS(4303), + [aux_sym_import_statement_token1] = ACTIONS(4303), + [aux_sym_derived_type_definition_token1] = ACTIONS(4303), + [aux_sym_abstract_specifier_token1] = ACTIONS(4303), + [aux_sym_procedure_attribute_token6] = ACTIONS(4303), + [aux_sym_variable_attributes_token1] = ACTIONS(4303), + [aux_sym_variable_attributes_token2] = ACTIONS(4303), + [aux_sym_variable_attributes_token3] = ACTIONS(4303), + [aux_sym_variable_attributes_token4] = ACTIONS(4303), + [aux_sym_variable_attributes_token5] = ACTIONS(4303), + [aux_sym__intrinsic_type_token1] = ACTIONS(4303), + [aux_sym__intrinsic_type_token2] = ACTIONS(4303), + [aux_sym__intrinsic_type_token3] = ACTIONS(4303), + [aux_sym__intrinsic_type_token4] = ACTIONS(4303), + [aux_sym__intrinsic_type_token6] = ACTIONS(4303), + [aux_sym__intrinsic_type_token7] = ACTIONS(4303), + [aux_sym__intrinsic_type_token8] = ACTIONS(4303), + [aux_sym__intrinsic_type_token9] = ACTIONS(4303), + [aux_sym__intrinsic_type_token10] = ACTIONS(4303), + [aux_sym_derived_type_token1] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4303), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4303), + [aux_sym_type_qualifier_token1] = ACTIONS(4303), + [aux_sym_type_qualifier_token2] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4303), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4303), + [aux_sym_equivalence_statement_token1] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4307), + [aux_sym_stop_statement_token1] = ACTIONS(4303), + [aux_sym_stop_statement_token2] = ACTIONS(4303), + [aux_sym_subroutine_call_token1] = ACTIONS(4303), + [aux_sym_keyword_statement_token1] = ACTIONS(4303), + [aux_sym_keyword_statement_token2] = ACTIONS(4303), + [aux_sym_keyword_statement_token3] = ACTIONS(4303), + [aux_sym_keyword_statement_token4] = ACTIONS(4303), + [aux_sym_keyword_statement_token6] = ACTIONS(4303), + [aux_sym_keyword_statement_token7] = ACTIONS(4303), + [aux_sym_include_statement_token1] = ACTIONS(4303), + [aux_sym_data_statement_token1] = ACTIONS(4303), + [aux_sym_do_loop_statement_token1] = ACTIONS(4303), + [aux_sym__inline_if_statement_token1] = ACTIONS(4303), + [aux_sym_end_if_statement_token1] = ACTIONS(4303), + [aux_sym_elseif_clause_token2] = ACTIONS(4303), + [aux_sym__inline_where_statement_token1] = ACTIONS(4303), + [aux_sym__forall_control_expression_token1] = ACTIONS(4303), + [aux_sym_select_case_statement_token1] = ACTIONS(4303), + [aux_sym_select_case_statement_token3] = ACTIONS(4303), + [aux_sym_select_type_statement_token1] = ACTIONS(4303), + [aux_sym_select_rank_statement_token2] = ACTIONS(4303), + [aux_sym_block_construct_token1] = ACTIONS(4303), + [aux_sym_associate_statement_token1] = ACTIONS(4303), + [aux_sym_format_statement_token1] = ACTIONS(4303), + [aux_sym_print_statement_token1] = ACTIONS(4303), + [aux_sym_open_statement_token1] = ACTIONS(4303), + [aux_sym_close_statement_token1] = ACTIONS(4303), + [aux_sym_inquire_statement_token1] = ACTIONS(4303), + [aux_sym_enum_statement_token1] = ACTIONS(4303), + [aux_sym_file_position_statement_token1] = ACTIONS(4303), + [aux_sym_file_position_statement_token2] = ACTIONS(4303), + [aux_sym_file_position_statement_token3] = ACTIONS(4303), + [aux_sym_file_position_statement_token4] = ACTIONS(4303), + [aux_sym_allocate_statement_token1] = ACTIONS(4303), + [aux_sym_entry_statement_token1] = ACTIONS(4303), + [aux_sym_logical_expression_token5] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_LPAREN_SLASH] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [aux_sym_boolean_literal_token1] = ACTIONS(4307), + [aux_sym_boolean_literal_token2] = ACTIONS(4307), + [aux_sym_null_literal_token1] = ACTIONS(4303), + [aux_sym_coarray_statement_token1] = ACTIONS(4303), + [aux_sym_coarray_statement_token2] = ACTIONS(4303), + [aux_sym_coarray_statement_token6] = ACTIONS(4303), + [aux_sym_coarray_statement_token8] = ACTIONS(4303), + [aux_sym_coarray_statement_token11] = ACTIONS(4303), + [aux_sym_coarray_statement_token12] = ACTIONS(4303), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4303), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4303), + [aux_sym_identifier_token1] = ACTIONS(4303), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4307), + [sym__float_literal] = ACTIONS(4307), + [sym__boz_literal] = ACTIONS(4307), + [sym__string_literal] = ACTIONS(4307), + [sym__string_literal_kind] = ACTIONS(4307), }, - [933] = { - [ts_builtin_sym_end] = ACTIONS(4311), - [aux_sym_preproc_include_token1] = ACTIONS(4307), - [aux_sym_preproc_def_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token1] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4307), - [sym_preproc_directive] = ACTIONS(4307), - [anon_sym_LPAREN2] = ACTIONS(4307), - [sym_preproc_comment] = ACTIONS(4705), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token2] = ACTIONS(4307), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4307), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4307), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token3] = ACTIONS(4307), - [aux_sym_contains_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token2] = ACTIONS(4307), - [aux_sym_implicit_statement_token1] = ACTIONS(4307), - [aux_sym_implicit_statement_token3] = ACTIONS(4307), - [aux_sym_implicit_statement_token4] = ACTIONS(4307), - [aux_sym_save_statement_token1] = ACTIONS(4307), - [aux_sym_private_statement_token1] = ACTIONS(4307), - [aux_sym_public_statement_token1] = ACTIONS(4307), - [aux_sym_namelist_statement_token1] = ACTIONS(4307), - [aux_sym_common_statement_token1] = ACTIONS(4307), - [aux_sym_import_statement_token1] = ACTIONS(4307), - [aux_sym_derived_type_definition_token1] = ACTIONS(4307), - [aux_sym_abstract_specifier_token1] = ACTIONS(4307), - [aux_sym_procedure_attribute_token6] = ACTIONS(4307), - [aux_sym_variable_attributes_token1] = ACTIONS(4307), - [aux_sym_variable_attributes_token2] = ACTIONS(4307), - [aux_sym_variable_attributes_token3] = ACTIONS(4307), - [aux_sym_variable_attributes_token4] = ACTIONS(4307), - [aux_sym_variable_attributes_token5] = ACTIONS(4307), - [aux_sym__intrinsic_type_token1] = ACTIONS(4307), - [aux_sym__intrinsic_type_token2] = ACTIONS(4307), - [aux_sym__intrinsic_type_token3] = ACTIONS(4307), - [aux_sym__intrinsic_type_token4] = ACTIONS(4307), - [aux_sym__intrinsic_type_token6] = ACTIONS(4307), - [aux_sym__intrinsic_type_token7] = ACTIONS(4307), - [aux_sym__intrinsic_type_token8] = ACTIONS(4307), - [aux_sym__intrinsic_type_token9] = ACTIONS(4307), - [aux_sym__intrinsic_type_token10] = ACTIONS(4307), - [aux_sym_derived_type_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4307), - [aux_sym_type_qualifier_token1] = ACTIONS(4307), - [aux_sym_type_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4307), - [anon_sym_SEMI] = ACTIONS(4311), - [aux_sym_stop_statement_token1] = ACTIONS(4307), - [aux_sym_stop_statement_token2] = ACTIONS(4307), - [aux_sym_subroutine_call_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token2] = ACTIONS(4307), - [aux_sym_keyword_statement_token3] = ACTIONS(4307), - [aux_sym_keyword_statement_token4] = ACTIONS(4307), - [aux_sym_keyword_statement_token6] = ACTIONS(4307), - [aux_sym_keyword_statement_token7] = ACTIONS(4307), - [aux_sym_include_statement_token1] = ACTIONS(4307), - [aux_sym_data_statement_token1] = ACTIONS(4307), - [aux_sym_do_loop_statement_token1] = ACTIONS(4307), - [aux_sym__inline_if_statement_token1] = ACTIONS(4307), - [aux_sym_end_if_statement_token1] = ACTIONS(4307), - [aux_sym_elseif_clause_token2] = ACTIONS(4307), - [aux_sym__inline_where_statement_token1] = ACTIONS(4307), - [aux_sym__forall_control_expression_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token3] = ACTIONS(4307), - [aux_sym_select_type_statement_token1] = ACTIONS(4307), - [aux_sym_select_rank_statement_token2] = ACTIONS(4307), - [aux_sym_block_construct_token1] = ACTIONS(4307), - [aux_sym_associate_statement_token1] = ACTIONS(4307), - [aux_sym_format_statement_token1] = ACTIONS(4307), - [aux_sym_print_statement_token1] = ACTIONS(4307), - [aux_sym_open_statement_token1] = ACTIONS(4307), - [aux_sym_close_statement_token1] = ACTIONS(4307), - [aux_sym_inquire_statement_token1] = ACTIONS(4307), - [aux_sym_enum_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token2] = ACTIONS(4307), - [aux_sym_file_position_statement_token3] = ACTIONS(4307), - [aux_sym_file_position_statement_token4] = ACTIONS(4307), - [aux_sym_allocate_statement_token1] = ACTIONS(4307), - [aux_sym_entry_statement_token1] = ACTIONS(4307), - [aux_sym_logical_expression_token5] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LPAREN_SLASH] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [aux_sym_boolean_literal_token1] = ACTIONS(4311), - [aux_sym_boolean_literal_token2] = ACTIONS(4311), - [aux_sym_null_literal_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token2] = ACTIONS(4307), - [aux_sym_coarray_statement_token6] = ACTIONS(4307), - [aux_sym_coarray_statement_token8] = ACTIONS(4307), - [aux_sym_coarray_statement_token11] = ACTIONS(4307), - [aux_sym_coarray_statement_token12] = ACTIONS(4307), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4307), - [aux_sym_identifier_token1] = ACTIONS(4307), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4311), - [sym__float_literal] = ACTIONS(4311), - [sym__boz_literal] = ACTIONS(4311), - [sym__string_literal] = ACTIONS(4311), - [sym__string_literal_kind] = ACTIONS(4311), + [925] = { + [ts_builtin_sym_end] = ACTIONS(4269), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(4689), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, - [934] = { - [sym_preproc_include] = STATE(979), - [sym_preproc_def] = STATE(979), - [sym_preproc_function_def] = STATE(979), - [sym_preproc_call] = STATE(979), - [sym_preproc_else_in_module] = STATE(8288), - [sym_preproc_elif_in_module] = STATE(8288), - [sym_preproc_elifdef_in_module] = STATE(8288), - [sym_interface] = STATE(979), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5708), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(979), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(979), - [sym_public_statement] = STATE(979), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(979), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(979), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(979), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4707), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), - [sym_preproc_comment] = ACTIONS(4709), + [926] = { + [aux_sym_preproc_include_token1] = ACTIONS(4337), + [aux_sym_preproc_def_token1] = ACTIONS(4337), + [aux_sym_preproc_if_token1] = ACTIONS(4337), + [aux_sym_preproc_if_token2] = ACTIONS(4337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4337), + [sym_preproc_directive] = ACTIONS(4337), + [anon_sym_LPAREN2] = ACTIONS(4337), + [sym_preproc_comment] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token2] = ACTIONS(4337), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4337), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4337), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4337), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4337), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4337), + [aux_sym_procedure_attributes_token1] = ACTIONS(4337), + [aux_sym_procedure_attributes_token3] = ACTIONS(4337), + [aux_sym_contains_statement_token1] = ACTIONS(4337), + [aux_sym_use_statement_token1] = ACTIONS(4337), + [aux_sym_use_statement_token2] = ACTIONS(4337), + [aux_sym_implicit_statement_token1] = ACTIONS(4337), + [aux_sym_implicit_statement_token3] = ACTIONS(4337), + [aux_sym_implicit_statement_token4] = ACTIONS(4337), + [aux_sym_save_statement_token1] = ACTIONS(4337), + [aux_sym_private_statement_token1] = ACTIONS(4337), + [aux_sym_public_statement_token1] = ACTIONS(4337), + [aux_sym_namelist_statement_token1] = ACTIONS(4337), + [aux_sym_common_statement_token1] = ACTIONS(4337), + [aux_sym_import_statement_token1] = ACTIONS(4337), + [aux_sym_derived_type_definition_token1] = ACTIONS(4337), + [aux_sym_abstract_specifier_token1] = ACTIONS(4337), + [aux_sym_procedure_attribute_token6] = ACTIONS(4337), + [aux_sym_variable_attributes_token1] = ACTIONS(4337), + [aux_sym_variable_attributes_token2] = ACTIONS(4337), + [aux_sym_variable_attributes_token3] = ACTIONS(4337), + [aux_sym_variable_attributes_token4] = ACTIONS(4337), + [aux_sym_variable_attributes_token5] = ACTIONS(4337), + [aux_sym__intrinsic_type_token1] = ACTIONS(4337), + [aux_sym__intrinsic_type_token2] = ACTIONS(4337), + [aux_sym__intrinsic_type_token3] = ACTIONS(4337), + [aux_sym__intrinsic_type_token4] = ACTIONS(4337), + [aux_sym__intrinsic_type_token6] = ACTIONS(4337), + [aux_sym__intrinsic_type_token7] = ACTIONS(4337), + [aux_sym__intrinsic_type_token8] = ACTIONS(4337), + [aux_sym__intrinsic_type_token9] = ACTIONS(4337), + [aux_sym__intrinsic_type_token10] = ACTIONS(4337), + [aux_sym_derived_type_token1] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4337), + [aux_sym_type_qualifier_token1] = ACTIONS(4337), + [aux_sym_type_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4373), + [aux_sym_stop_statement_token1] = ACTIONS(4337), + [aux_sym_stop_statement_token2] = ACTIONS(4337), + [aux_sym_subroutine_call_token1] = ACTIONS(4337), + [aux_sym_keyword_statement_token1] = ACTIONS(4337), + [aux_sym_keyword_statement_token2] = ACTIONS(4337), + [aux_sym_keyword_statement_token3] = ACTIONS(4337), + [aux_sym_keyword_statement_token4] = ACTIONS(4337), + [aux_sym_keyword_statement_token6] = ACTIONS(4337), + [aux_sym_keyword_statement_token7] = ACTIONS(4337), + [aux_sym_include_statement_token1] = ACTIONS(4337), + [aux_sym_data_statement_token1] = ACTIONS(4337), + [aux_sym_do_loop_statement_token1] = ACTIONS(4337), + [aux_sym__inline_if_statement_token1] = ACTIONS(4337), + [aux_sym_end_if_statement_token1] = ACTIONS(4337), + [aux_sym_elseif_clause_token2] = ACTIONS(4337), + [aux_sym__inline_where_statement_token1] = ACTIONS(4337), + [aux_sym__forall_control_expression_token1] = ACTIONS(4337), + [aux_sym_select_case_statement_token1] = ACTIONS(4337), + [aux_sym_select_case_statement_token3] = ACTIONS(4337), + [aux_sym_select_type_statement_token1] = ACTIONS(4337), + [aux_sym_select_rank_statement_token2] = ACTIONS(4337), + [aux_sym_block_construct_token1] = ACTIONS(4337), + [aux_sym_associate_statement_token1] = ACTIONS(4337), + [aux_sym_format_statement_token1] = ACTIONS(4337), + [aux_sym_print_statement_token1] = ACTIONS(4337), + [aux_sym_open_statement_token1] = ACTIONS(4337), + [aux_sym_close_statement_token1] = ACTIONS(4337), + [aux_sym_inquire_statement_token1] = ACTIONS(4337), + [aux_sym_enum_statement_token1] = ACTIONS(4337), + [aux_sym_file_position_statement_token1] = ACTIONS(4337), + [aux_sym_file_position_statement_token2] = ACTIONS(4337), + [aux_sym_file_position_statement_token3] = ACTIONS(4337), + [aux_sym_file_position_statement_token4] = ACTIONS(4337), + [aux_sym_allocate_statement_token1] = ACTIONS(4337), + [aux_sym_entry_statement_token1] = ACTIONS(4337), + [aux_sym_logical_expression_token5] = ACTIONS(4373), + [anon_sym_DOT] = ACTIONS(4337), + [anon_sym_LPAREN_SLASH] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4373), + [aux_sym_boolean_literal_token1] = ACTIONS(4373), + [aux_sym_boolean_literal_token2] = ACTIONS(4373), + [aux_sym_null_literal_token1] = ACTIONS(4337), + [aux_sym_coarray_statement_token1] = ACTIONS(4337), + [aux_sym_coarray_statement_token2] = ACTIONS(4337), + [aux_sym_coarray_statement_token6] = ACTIONS(4337), + [aux_sym_coarray_statement_token8] = ACTIONS(4337), + [aux_sym_coarray_statement_token11] = ACTIONS(4337), + [aux_sym_coarray_statement_token12] = ACTIONS(4337), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4337), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4337), + [aux_sym_identifier_token1] = ACTIONS(4337), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4373), + [sym__float_literal] = ACTIONS(4373), + [sym__boz_literal] = ACTIONS(4373), + [sym__string_literal] = ACTIONS(4373), + [sym__string_literal_kind] = ACTIONS(4373), + }, + [927] = { + [ts_builtin_sym_end] = ACTIONS(4373), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(4693), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), + }, + [928] = { + [ts_builtin_sym_end] = ACTIONS(4695), + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(4697), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4321), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_end_program_statement_token2] = ACTIONS(4319), + [aux_sym_module_statement_token1] = ACTIONS(4321), + [aux_sym_submodule_statement_token1] = ACTIONS(4321), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), + [aux_sym_subroutine_statement_token1] = ACTIONS(4321), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_function_statement_token1] = ACTIONS(4321), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4321), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4321), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4321), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4321), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), + }, + [929] = { + [aux_sym_preproc_include_token1] = ACTIONS(4291), + [aux_sym_preproc_def_token1] = ACTIONS(4291), + [aux_sym_preproc_if_token1] = ACTIONS(4291), + [aux_sym_preproc_if_token2] = ACTIONS(4291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4291), + [sym_preproc_directive] = ACTIONS(4291), + [anon_sym_LPAREN2] = ACTIONS(4291), + [sym_preproc_comment] = ACTIONS(4699), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4291), + [aux_sym_end_program_statement_token1] = ACTIONS(4291), + [aux_sym_end_program_statement_token2] = ACTIONS(4291), + [aux_sym_module_statement_token1] = ACTIONS(4291), + [aux_sym_submodule_statement_token1] = ACTIONS(4291), + [aux_sym_interface_statement_token1] = ACTIONS(4291), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4291), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4291), + [aux_sym_subroutine_statement_token1] = ACTIONS(4291), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4291), + [aux_sym_function_statement_token1] = ACTIONS(4291), + [aux_sym_language_binding_token1] = ACTIONS(4291), + [aux_sym_procedure_attributes_token1] = ACTIONS(4291), + [aux_sym_procedure_attributes_token3] = ACTIONS(4291), + [aux_sym_contains_statement_token1] = ACTIONS(4291), + [aux_sym_use_statement_token1] = ACTIONS(4291), + [aux_sym_use_statement_token2] = ACTIONS(4291), + [aux_sym_implicit_statement_token1] = ACTIONS(4291), + [aux_sym_implicit_statement_token3] = ACTIONS(4291), + [aux_sym_implicit_statement_token4] = ACTIONS(4291), + [aux_sym_save_statement_token1] = ACTIONS(4291), + [aux_sym_private_statement_token1] = ACTIONS(4291), + [aux_sym_public_statement_token1] = ACTIONS(4291), + [aux_sym_namelist_statement_token1] = ACTIONS(4291), + [aux_sym_common_statement_token1] = ACTIONS(4291), + [aux_sym_import_statement_token1] = ACTIONS(4291), + [aux_sym_derived_type_definition_token1] = ACTIONS(4291), + [aux_sym_abstract_specifier_token1] = ACTIONS(4291), + [aux_sym_procedure_attribute_token6] = ACTIONS(4291), + [aux_sym_variable_attributes_token1] = ACTIONS(4291), + [aux_sym_variable_attributes_token2] = ACTIONS(4291), + [aux_sym_variable_attributes_token3] = ACTIONS(4291), + [aux_sym_variable_attributes_token4] = ACTIONS(4291), + [aux_sym_variable_attributes_token5] = ACTIONS(4291), + [aux_sym__intrinsic_type_token1] = ACTIONS(4291), + [aux_sym__intrinsic_type_token2] = ACTIONS(4291), + [aux_sym__intrinsic_type_token3] = ACTIONS(4291), + [aux_sym__intrinsic_type_token4] = ACTIONS(4291), + [aux_sym__intrinsic_type_token6] = ACTIONS(4291), + [aux_sym__intrinsic_type_token7] = ACTIONS(4291), + [aux_sym__intrinsic_type_token8] = ACTIONS(4291), + [aux_sym__intrinsic_type_token9] = ACTIONS(4291), + [aux_sym__intrinsic_type_token10] = ACTIONS(4291), + [aux_sym_derived_type_token1] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4291), + [aux_sym_type_qualifier_token1] = ACTIONS(4291), + [aux_sym_type_qualifier_token2] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4291), + [aux_sym_equivalence_statement_token1] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(4295), + [aux_sym_stop_statement_token1] = ACTIONS(4291), + [aux_sym_stop_statement_token2] = ACTIONS(4291), + [aux_sym_subroutine_call_token1] = ACTIONS(4291), + [aux_sym_keyword_statement_token1] = ACTIONS(4291), + [aux_sym_keyword_statement_token2] = ACTIONS(4291), + [aux_sym_keyword_statement_token3] = ACTIONS(4291), + [aux_sym_keyword_statement_token4] = ACTIONS(4291), + [aux_sym_keyword_statement_token6] = ACTIONS(4291), + [aux_sym_keyword_statement_token7] = ACTIONS(4291), + [aux_sym_include_statement_token1] = ACTIONS(4291), + [aux_sym_data_statement_token1] = ACTIONS(4291), + [aux_sym_do_loop_statement_token1] = ACTIONS(4291), + [aux_sym__inline_if_statement_token1] = ACTIONS(4291), + [aux_sym_end_if_statement_token1] = ACTIONS(4291), + [aux_sym_elseif_clause_token2] = ACTIONS(4291), + [aux_sym__inline_where_statement_token1] = ACTIONS(4291), + [aux_sym__forall_control_expression_token1] = ACTIONS(4291), + [aux_sym_select_case_statement_token1] = ACTIONS(4291), + [aux_sym_select_case_statement_token3] = ACTIONS(4291), + [aux_sym_select_type_statement_token1] = ACTIONS(4291), + [aux_sym_select_rank_statement_token2] = ACTIONS(4291), + [aux_sym_block_construct_token1] = ACTIONS(4291), + [aux_sym_associate_statement_token1] = ACTIONS(4291), + [aux_sym_format_statement_token1] = ACTIONS(4291), + [aux_sym_print_statement_token1] = ACTIONS(4291), + [aux_sym_open_statement_token1] = ACTIONS(4291), + [aux_sym_close_statement_token1] = ACTIONS(4291), + [aux_sym_inquire_statement_token1] = ACTIONS(4291), + [aux_sym_enum_statement_token1] = ACTIONS(4291), + [aux_sym_file_position_statement_token1] = ACTIONS(4291), + [aux_sym_file_position_statement_token2] = ACTIONS(4291), + [aux_sym_file_position_statement_token3] = ACTIONS(4291), + [aux_sym_file_position_statement_token4] = ACTIONS(4291), + [aux_sym_allocate_statement_token1] = ACTIONS(4291), + [aux_sym_entry_statement_token1] = ACTIONS(4291), + [aux_sym_logical_expression_token5] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4291), + [anon_sym_LPAREN_SLASH] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [aux_sym_boolean_literal_token1] = ACTIONS(4295), + [aux_sym_boolean_literal_token2] = ACTIONS(4295), + [aux_sym_null_literal_token1] = ACTIONS(4291), + [aux_sym_coarray_statement_token1] = ACTIONS(4291), + [aux_sym_coarray_statement_token2] = ACTIONS(4291), + [aux_sym_coarray_statement_token6] = ACTIONS(4291), + [aux_sym_coarray_statement_token8] = ACTIONS(4291), + [aux_sym_coarray_statement_token11] = ACTIONS(4291), + [aux_sym_coarray_statement_token12] = ACTIONS(4291), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4291), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4291), + [aux_sym_identifier_token1] = ACTIONS(4291), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4295), + [sym__float_literal] = ACTIONS(4295), + [sym__boz_literal] = ACTIONS(4295), + [sym__string_literal] = ACTIONS(4295), + [sym__string_literal_kind] = ACTIONS(4295), + }, + [930] = { + [aux_sym_preproc_include_token1] = ACTIONS(4259), + [aux_sym_preproc_def_token1] = ACTIONS(4259), + [aux_sym_preproc_if_token1] = ACTIONS(4259), + [aux_sym_preproc_if_token2] = ACTIONS(4259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4259), + [sym_preproc_directive] = ACTIONS(4259), + [anon_sym_LPAREN2] = ACTIONS(4259), + [sym_preproc_comment] = ACTIONS(4701), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4259), + [aux_sym_end_program_statement_token1] = ACTIONS(4259), + [aux_sym_end_program_statement_token2] = ACTIONS(4259), + [aux_sym_module_statement_token1] = ACTIONS(4259), + [aux_sym_submodule_statement_token1] = ACTIONS(4259), + [aux_sym_interface_statement_token1] = ACTIONS(4259), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4259), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4259), + [aux_sym_subroutine_statement_token1] = ACTIONS(4259), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4259), + [aux_sym_function_statement_token1] = ACTIONS(4259), + [aux_sym_language_binding_token1] = ACTIONS(4259), + [aux_sym_procedure_attributes_token1] = ACTIONS(4259), + [aux_sym_procedure_attributes_token3] = ACTIONS(4259), + [aux_sym_contains_statement_token1] = ACTIONS(4259), + [aux_sym_use_statement_token1] = ACTIONS(4259), + [aux_sym_use_statement_token2] = ACTIONS(4259), + [aux_sym_implicit_statement_token1] = ACTIONS(4259), + [aux_sym_implicit_statement_token3] = ACTIONS(4259), + [aux_sym_implicit_statement_token4] = ACTIONS(4259), + [aux_sym_save_statement_token1] = ACTIONS(4259), + [aux_sym_private_statement_token1] = ACTIONS(4259), + [aux_sym_public_statement_token1] = ACTIONS(4259), + [aux_sym_namelist_statement_token1] = ACTIONS(4259), + [aux_sym_common_statement_token1] = ACTIONS(4259), + [aux_sym_import_statement_token1] = ACTIONS(4259), + [aux_sym_derived_type_definition_token1] = ACTIONS(4259), + [aux_sym_abstract_specifier_token1] = ACTIONS(4259), + [aux_sym_procedure_attribute_token6] = ACTIONS(4259), + [aux_sym_variable_attributes_token1] = ACTIONS(4259), + [aux_sym_variable_attributes_token2] = ACTIONS(4259), + [aux_sym_variable_attributes_token3] = ACTIONS(4259), + [aux_sym_variable_attributes_token4] = ACTIONS(4259), + [aux_sym_variable_attributes_token5] = ACTIONS(4259), + [aux_sym__intrinsic_type_token1] = ACTIONS(4259), + [aux_sym__intrinsic_type_token2] = ACTIONS(4259), + [aux_sym__intrinsic_type_token3] = ACTIONS(4259), + [aux_sym__intrinsic_type_token4] = ACTIONS(4259), + [aux_sym__intrinsic_type_token6] = ACTIONS(4259), + [aux_sym__intrinsic_type_token7] = ACTIONS(4259), + [aux_sym__intrinsic_type_token8] = ACTIONS(4259), + [aux_sym__intrinsic_type_token9] = ACTIONS(4259), + [aux_sym__intrinsic_type_token10] = ACTIONS(4259), + [aux_sym_derived_type_token1] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4259), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4259), + [aux_sym_type_qualifier_token1] = ACTIONS(4259), + [aux_sym_type_qualifier_token2] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4259), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4259), + [aux_sym_equivalence_statement_token1] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4263), + [aux_sym_stop_statement_token1] = ACTIONS(4259), + [aux_sym_stop_statement_token2] = ACTIONS(4259), + [aux_sym_subroutine_call_token1] = ACTIONS(4259), + [aux_sym_keyword_statement_token1] = ACTIONS(4259), + [aux_sym_keyword_statement_token2] = ACTIONS(4259), + [aux_sym_keyword_statement_token3] = ACTIONS(4259), + [aux_sym_keyword_statement_token4] = ACTIONS(4259), + [aux_sym_keyword_statement_token6] = ACTIONS(4259), + [aux_sym_keyword_statement_token7] = ACTIONS(4259), + [aux_sym_include_statement_token1] = ACTIONS(4259), + [aux_sym_data_statement_token1] = ACTIONS(4259), + [aux_sym_do_loop_statement_token1] = ACTIONS(4259), + [aux_sym__inline_if_statement_token1] = ACTIONS(4259), + [aux_sym_end_if_statement_token1] = ACTIONS(4259), + [aux_sym_elseif_clause_token2] = ACTIONS(4259), + [aux_sym__inline_where_statement_token1] = ACTIONS(4259), + [aux_sym__forall_control_expression_token1] = ACTIONS(4259), + [aux_sym_select_case_statement_token1] = ACTIONS(4259), + [aux_sym_select_case_statement_token3] = ACTIONS(4259), + [aux_sym_select_type_statement_token1] = ACTIONS(4259), + [aux_sym_select_rank_statement_token2] = ACTIONS(4259), + [aux_sym_block_construct_token1] = ACTIONS(4259), + [aux_sym_associate_statement_token1] = ACTIONS(4259), + [aux_sym_format_statement_token1] = ACTIONS(4259), + [aux_sym_print_statement_token1] = ACTIONS(4259), + [aux_sym_open_statement_token1] = ACTIONS(4259), + [aux_sym_close_statement_token1] = ACTIONS(4259), + [aux_sym_inquire_statement_token1] = ACTIONS(4259), + [aux_sym_enum_statement_token1] = ACTIONS(4259), + [aux_sym_file_position_statement_token1] = ACTIONS(4259), + [aux_sym_file_position_statement_token2] = ACTIONS(4259), + [aux_sym_file_position_statement_token3] = ACTIONS(4259), + [aux_sym_file_position_statement_token4] = ACTIONS(4259), + [aux_sym_allocate_statement_token1] = ACTIONS(4259), + [aux_sym_entry_statement_token1] = ACTIONS(4259), + [aux_sym_logical_expression_token5] = ACTIONS(4263), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_LPAREN_SLASH] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4263), + [aux_sym_boolean_literal_token1] = ACTIONS(4263), + [aux_sym_boolean_literal_token2] = ACTIONS(4263), + [aux_sym_null_literal_token1] = ACTIONS(4259), + [aux_sym_coarray_statement_token1] = ACTIONS(4259), + [aux_sym_coarray_statement_token2] = ACTIONS(4259), + [aux_sym_coarray_statement_token6] = ACTIONS(4259), + [aux_sym_coarray_statement_token8] = ACTIONS(4259), + [aux_sym_coarray_statement_token11] = ACTIONS(4259), + [aux_sym_coarray_statement_token12] = ACTIONS(4259), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4259), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4259), + [aux_sym_identifier_token1] = ACTIONS(4259), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4263), + [sym__float_literal] = ACTIONS(4263), + [sym__boz_literal] = ACTIONS(4263), + [sym__string_literal] = ACTIONS(4263), + [sym__string_literal_kind] = ACTIONS(4263), + }, + [931] = { + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(4703), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4329), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token2] = ACTIONS(4327), + [aux_sym_module_statement_token1] = ACTIONS(4329), + [aux_sym_submodule_statement_token1] = ACTIONS(4329), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_subroutine_statement_token1] = ACTIONS(4329), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_function_statement_token1] = ACTIONS(4329), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4329), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4329), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), + }, + [932] = { + [ts_builtin_sym_end] = ACTIONS(4369), + [aux_sym_preproc_include_token1] = ACTIONS(4365), + [aux_sym_preproc_def_token1] = ACTIONS(4365), + [aux_sym_preproc_if_token1] = ACTIONS(4365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4365), + [sym_preproc_directive] = ACTIONS(4365), + [anon_sym_LPAREN2] = ACTIONS(4365), + [sym_preproc_comment] = ACTIONS(4705), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4365), + [aux_sym_end_program_statement_token1] = ACTIONS(4365), + [aux_sym_end_program_statement_token2] = ACTIONS(4365), + [aux_sym_module_statement_token1] = ACTIONS(4365), + [aux_sym_submodule_statement_token1] = ACTIONS(4365), + [aux_sym_interface_statement_token1] = ACTIONS(4365), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4365), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4365), + [aux_sym_subroutine_statement_token1] = ACTIONS(4365), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4365), + [aux_sym_function_statement_token1] = ACTIONS(4365), + [aux_sym_language_binding_token1] = ACTIONS(4365), + [aux_sym_procedure_attributes_token1] = ACTIONS(4365), + [aux_sym_procedure_attributes_token3] = ACTIONS(4365), + [aux_sym_contains_statement_token1] = ACTIONS(4365), + [aux_sym_use_statement_token1] = ACTIONS(4365), + [aux_sym_use_statement_token2] = ACTIONS(4365), + [aux_sym_implicit_statement_token1] = ACTIONS(4365), + [aux_sym_implicit_statement_token3] = ACTIONS(4365), + [aux_sym_implicit_statement_token4] = ACTIONS(4365), + [aux_sym_save_statement_token1] = ACTIONS(4365), + [aux_sym_private_statement_token1] = ACTIONS(4365), + [aux_sym_public_statement_token1] = ACTIONS(4365), + [aux_sym_namelist_statement_token1] = ACTIONS(4365), + [aux_sym_common_statement_token1] = ACTIONS(4365), + [aux_sym_import_statement_token1] = ACTIONS(4365), + [aux_sym_derived_type_definition_token1] = ACTIONS(4365), + [aux_sym_abstract_specifier_token1] = ACTIONS(4365), + [aux_sym_procedure_attribute_token6] = ACTIONS(4365), + [aux_sym_variable_attributes_token1] = ACTIONS(4365), + [aux_sym_variable_attributes_token2] = ACTIONS(4365), + [aux_sym_variable_attributes_token3] = ACTIONS(4365), + [aux_sym_variable_attributes_token4] = ACTIONS(4365), + [aux_sym_variable_attributes_token5] = ACTIONS(4365), + [aux_sym__intrinsic_type_token1] = ACTIONS(4365), + [aux_sym__intrinsic_type_token2] = ACTIONS(4365), + [aux_sym__intrinsic_type_token3] = ACTIONS(4365), + [aux_sym__intrinsic_type_token4] = ACTIONS(4365), + [aux_sym__intrinsic_type_token6] = ACTIONS(4365), + [aux_sym__intrinsic_type_token7] = ACTIONS(4365), + [aux_sym__intrinsic_type_token8] = ACTIONS(4365), + [aux_sym__intrinsic_type_token9] = ACTIONS(4365), + [aux_sym__intrinsic_type_token10] = ACTIONS(4365), + [aux_sym_derived_type_token1] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4365), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4365), + [aux_sym_type_qualifier_token1] = ACTIONS(4365), + [aux_sym_type_qualifier_token2] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4365), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4365), + [aux_sym_equivalence_statement_token1] = ACTIONS(4365), + [anon_sym_SEMI] = ACTIONS(4369), + [aux_sym_stop_statement_token1] = ACTIONS(4365), + [aux_sym_stop_statement_token2] = ACTIONS(4365), + [aux_sym_subroutine_call_token1] = ACTIONS(4365), + [aux_sym_keyword_statement_token1] = ACTIONS(4365), + [aux_sym_keyword_statement_token2] = ACTIONS(4365), + [aux_sym_keyword_statement_token3] = ACTIONS(4365), + [aux_sym_keyword_statement_token4] = ACTIONS(4365), + [aux_sym_keyword_statement_token6] = ACTIONS(4365), + [aux_sym_keyword_statement_token7] = ACTIONS(4365), + [aux_sym_include_statement_token1] = ACTIONS(4365), + [aux_sym_data_statement_token1] = ACTIONS(4365), + [aux_sym_do_loop_statement_token1] = ACTIONS(4365), + [aux_sym__inline_if_statement_token1] = ACTIONS(4365), + [aux_sym_end_if_statement_token1] = ACTIONS(4365), + [aux_sym_elseif_clause_token2] = ACTIONS(4365), + [aux_sym__inline_where_statement_token1] = ACTIONS(4365), + [aux_sym__forall_control_expression_token1] = ACTIONS(4365), + [aux_sym_select_case_statement_token1] = ACTIONS(4365), + [aux_sym_select_case_statement_token3] = ACTIONS(4365), + [aux_sym_select_type_statement_token1] = ACTIONS(4365), + [aux_sym_select_rank_statement_token2] = ACTIONS(4365), + [aux_sym_block_construct_token1] = ACTIONS(4365), + [aux_sym_associate_statement_token1] = ACTIONS(4365), + [aux_sym_format_statement_token1] = ACTIONS(4365), + [aux_sym_print_statement_token1] = ACTIONS(4365), + [aux_sym_open_statement_token1] = ACTIONS(4365), + [aux_sym_close_statement_token1] = ACTIONS(4365), + [aux_sym_inquire_statement_token1] = ACTIONS(4365), + [aux_sym_enum_statement_token1] = ACTIONS(4365), + [aux_sym_file_position_statement_token1] = ACTIONS(4365), + [aux_sym_file_position_statement_token2] = ACTIONS(4365), + [aux_sym_file_position_statement_token3] = ACTIONS(4365), + [aux_sym_file_position_statement_token4] = ACTIONS(4365), + [aux_sym_allocate_statement_token1] = ACTIONS(4365), + [aux_sym_entry_statement_token1] = ACTIONS(4365), + [aux_sym_logical_expression_token5] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4365), + [anon_sym_LPAREN_SLASH] = ACTIONS(4369), + [anon_sym_LBRACK] = ACTIONS(4369), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [aux_sym_null_literal_token1] = ACTIONS(4365), + [aux_sym_coarray_statement_token1] = ACTIONS(4365), + [aux_sym_coarray_statement_token2] = ACTIONS(4365), + [aux_sym_coarray_statement_token6] = ACTIONS(4365), + [aux_sym_coarray_statement_token8] = ACTIONS(4365), + [aux_sym_coarray_statement_token11] = ACTIONS(4365), + [aux_sym_coarray_statement_token12] = ACTIONS(4365), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4365), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4365), + [aux_sym_identifier_token1] = ACTIONS(4365), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4369), + [sym__float_literal] = ACTIONS(4369), + [sym__boz_literal] = ACTIONS(4369), + [sym__string_literal] = ACTIONS(4369), + [sym__string_literal_kind] = ACTIONS(4369), + }, + [933] = { + [ts_builtin_sym_end] = ACTIONS(4373), + [aux_sym_preproc_include_token1] = ACTIONS(4337), + [aux_sym_preproc_def_token1] = ACTIONS(4337), + [aux_sym_preproc_if_token1] = ACTIONS(4337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4337), + [sym_preproc_directive] = ACTIONS(4337), + [anon_sym_LPAREN2] = ACTIONS(4337), + [sym_preproc_comment] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token2] = ACTIONS(4337), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4337), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4337), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4337), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4337), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4337), + [aux_sym_procedure_attributes_token1] = ACTIONS(4337), + [aux_sym_procedure_attributes_token3] = ACTIONS(4337), + [aux_sym_contains_statement_token1] = ACTIONS(4337), + [aux_sym_use_statement_token1] = ACTIONS(4337), + [aux_sym_use_statement_token2] = ACTIONS(4337), + [aux_sym_implicit_statement_token1] = ACTIONS(4337), + [aux_sym_implicit_statement_token3] = ACTIONS(4337), + [aux_sym_implicit_statement_token4] = ACTIONS(4337), + [aux_sym_save_statement_token1] = ACTIONS(4337), + [aux_sym_private_statement_token1] = ACTIONS(4337), + [aux_sym_public_statement_token1] = ACTIONS(4337), + [aux_sym_namelist_statement_token1] = ACTIONS(4337), + [aux_sym_common_statement_token1] = ACTIONS(4337), + [aux_sym_import_statement_token1] = ACTIONS(4337), + [aux_sym_derived_type_definition_token1] = ACTIONS(4337), + [aux_sym_abstract_specifier_token1] = ACTIONS(4337), + [aux_sym_procedure_attribute_token6] = ACTIONS(4337), + [aux_sym_variable_attributes_token1] = ACTIONS(4337), + [aux_sym_variable_attributes_token2] = ACTIONS(4337), + [aux_sym_variable_attributes_token3] = ACTIONS(4337), + [aux_sym_variable_attributes_token4] = ACTIONS(4337), + [aux_sym_variable_attributes_token5] = ACTIONS(4337), + [aux_sym__intrinsic_type_token1] = ACTIONS(4337), + [aux_sym__intrinsic_type_token2] = ACTIONS(4337), + [aux_sym__intrinsic_type_token3] = ACTIONS(4337), + [aux_sym__intrinsic_type_token4] = ACTIONS(4337), + [aux_sym__intrinsic_type_token6] = ACTIONS(4337), + [aux_sym__intrinsic_type_token7] = ACTIONS(4337), + [aux_sym__intrinsic_type_token8] = ACTIONS(4337), + [aux_sym__intrinsic_type_token9] = ACTIONS(4337), + [aux_sym__intrinsic_type_token10] = ACTIONS(4337), + [aux_sym_derived_type_token1] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4337), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4337), + [aux_sym_type_qualifier_token1] = ACTIONS(4337), + [aux_sym_type_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4373), + [aux_sym_stop_statement_token1] = ACTIONS(4337), + [aux_sym_stop_statement_token2] = ACTIONS(4337), + [aux_sym_subroutine_call_token1] = ACTIONS(4337), + [aux_sym_keyword_statement_token1] = ACTIONS(4337), + [aux_sym_keyword_statement_token2] = ACTIONS(4337), + [aux_sym_keyword_statement_token3] = ACTIONS(4337), + [aux_sym_keyword_statement_token4] = ACTIONS(4337), + [aux_sym_keyword_statement_token6] = ACTIONS(4337), + [aux_sym_keyword_statement_token7] = ACTIONS(4337), + [aux_sym_include_statement_token1] = ACTIONS(4337), + [aux_sym_data_statement_token1] = ACTIONS(4337), + [aux_sym_do_loop_statement_token1] = ACTIONS(4337), + [aux_sym__inline_if_statement_token1] = ACTIONS(4337), + [aux_sym_end_if_statement_token1] = ACTIONS(4337), + [aux_sym_elseif_clause_token2] = ACTIONS(4337), + [aux_sym__inline_where_statement_token1] = ACTIONS(4337), + [aux_sym__forall_control_expression_token1] = ACTIONS(4337), + [aux_sym_select_case_statement_token1] = ACTIONS(4337), + [aux_sym_select_case_statement_token3] = ACTIONS(4337), + [aux_sym_select_type_statement_token1] = ACTIONS(4337), + [aux_sym_select_rank_statement_token2] = ACTIONS(4337), + [aux_sym_block_construct_token1] = ACTIONS(4337), + [aux_sym_associate_statement_token1] = ACTIONS(4337), + [aux_sym_format_statement_token1] = ACTIONS(4337), + [aux_sym_print_statement_token1] = ACTIONS(4337), + [aux_sym_open_statement_token1] = ACTIONS(4337), + [aux_sym_close_statement_token1] = ACTIONS(4337), + [aux_sym_inquire_statement_token1] = ACTIONS(4337), + [aux_sym_enum_statement_token1] = ACTIONS(4337), + [aux_sym_file_position_statement_token1] = ACTIONS(4337), + [aux_sym_file_position_statement_token2] = ACTIONS(4337), + [aux_sym_file_position_statement_token3] = ACTIONS(4337), + [aux_sym_file_position_statement_token4] = ACTIONS(4337), + [aux_sym_allocate_statement_token1] = ACTIONS(4337), + [aux_sym_entry_statement_token1] = ACTIONS(4337), + [aux_sym_logical_expression_token5] = ACTIONS(4373), + [anon_sym_DOT] = ACTIONS(4337), + [anon_sym_LPAREN_SLASH] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4373), + [aux_sym_boolean_literal_token1] = ACTIONS(4373), + [aux_sym_boolean_literal_token2] = ACTIONS(4373), + [aux_sym_null_literal_token1] = ACTIONS(4337), + [aux_sym_coarray_statement_token1] = ACTIONS(4337), + [aux_sym_coarray_statement_token2] = ACTIONS(4337), + [aux_sym_coarray_statement_token6] = ACTIONS(4337), + [aux_sym_coarray_statement_token8] = ACTIONS(4337), + [aux_sym_coarray_statement_token11] = ACTIONS(4337), + [aux_sym_coarray_statement_token12] = ACTIONS(4337), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4337), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4337), + [aux_sym_identifier_token1] = ACTIONS(4337), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4373), + [sym__float_literal] = ACTIONS(4373), + [sym__boz_literal] = ACTIONS(4373), + [sym__string_literal] = ACTIONS(4373), + [sym__string_literal_kind] = ACTIONS(4373), + }, + [934] = { + [ts_builtin_sym_end] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4285), + [sym_preproc_comment] = ACTIONS(4709), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token2] = ACTIONS(4285), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4285), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4285), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token3] = ACTIONS(4285), + [aux_sym_contains_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token2] = ACTIONS(4285), + [aux_sym_implicit_statement_token1] = ACTIONS(4285), + [aux_sym_implicit_statement_token3] = ACTIONS(4285), + [aux_sym_implicit_statement_token4] = ACTIONS(4285), + [aux_sym_save_statement_token1] = ACTIONS(4285), + [aux_sym_private_statement_token1] = ACTIONS(4285), + [aux_sym_public_statement_token1] = ACTIONS(4285), + [aux_sym_namelist_statement_token1] = ACTIONS(4285), + [aux_sym_common_statement_token1] = ACTIONS(4285), + [aux_sym_import_statement_token1] = ACTIONS(4285), + [aux_sym_derived_type_definition_token1] = ACTIONS(4285), + [aux_sym_abstract_specifier_token1] = ACTIONS(4285), + [aux_sym_procedure_attribute_token6] = ACTIONS(4285), + [aux_sym_variable_attributes_token1] = ACTIONS(4285), + [aux_sym_variable_attributes_token2] = ACTIONS(4285), + [aux_sym_variable_attributes_token3] = ACTIONS(4285), + [aux_sym_variable_attributes_token4] = ACTIONS(4285), + [aux_sym_variable_attributes_token5] = ACTIONS(4285), + [aux_sym__intrinsic_type_token1] = ACTIONS(4285), + [aux_sym__intrinsic_type_token2] = ACTIONS(4285), + [aux_sym__intrinsic_type_token3] = ACTIONS(4285), + [aux_sym__intrinsic_type_token4] = ACTIONS(4285), + [aux_sym__intrinsic_type_token6] = ACTIONS(4285), + [aux_sym__intrinsic_type_token7] = ACTIONS(4285), + [aux_sym__intrinsic_type_token8] = ACTIONS(4285), + [aux_sym__intrinsic_type_token9] = ACTIONS(4285), + [aux_sym__intrinsic_type_token10] = ACTIONS(4285), + [aux_sym_derived_type_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4285), + [aux_sym_type_qualifier_token1] = ACTIONS(4285), + [aux_sym_type_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4289), + [aux_sym_stop_statement_token1] = ACTIONS(4285), + [aux_sym_stop_statement_token2] = ACTIONS(4285), + [aux_sym_subroutine_call_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token2] = ACTIONS(4285), + [aux_sym_keyword_statement_token3] = ACTIONS(4285), + [aux_sym_keyword_statement_token4] = ACTIONS(4285), + [aux_sym_keyword_statement_token6] = ACTIONS(4285), + [aux_sym_keyword_statement_token7] = ACTIONS(4285), + [aux_sym_include_statement_token1] = ACTIONS(4285), + [aux_sym_data_statement_token1] = ACTIONS(4285), + [aux_sym_do_loop_statement_token1] = ACTIONS(4285), + [aux_sym__inline_if_statement_token1] = ACTIONS(4285), + [aux_sym_end_if_statement_token1] = ACTIONS(4285), + [aux_sym_elseif_clause_token2] = ACTIONS(4285), + [aux_sym__inline_where_statement_token1] = ACTIONS(4285), + [aux_sym__forall_control_expression_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token3] = ACTIONS(4285), + [aux_sym_select_type_statement_token1] = ACTIONS(4285), + [aux_sym_select_rank_statement_token2] = ACTIONS(4285), + [aux_sym_block_construct_token1] = ACTIONS(4285), + [aux_sym_associate_statement_token1] = ACTIONS(4285), + [aux_sym_format_statement_token1] = ACTIONS(4285), + [aux_sym_print_statement_token1] = ACTIONS(4285), + [aux_sym_open_statement_token1] = ACTIONS(4285), + [aux_sym_close_statement_token1] = ACTIONS(4285), + [aux_sym_inquire_statement_token1] = ACTIONS(4285), + [aux_sym_enum_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token2] = ACTIONS(4285), + [aux_sym_file_position_statement_token3] = ACTIONS(4285), + [aux_sym_file_position_statement_token4] = ACTIONS(4285), + [aux_sym_allocate_statement_token1] = ACTIONS(4285), + [aux_sym_entry_statement_token1] = ACTIONS(4285), + [aux_sym_logical_expression_token5] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4285), + [anon_sym_LPAREN_SLASH] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [aux_sym_boolean_literal_token1] = ACTIONS(4289), + [aux_sym_boolean_literal_token2] = ACTIONS(4289), + [aux_sym_null_literal_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token2] = ACTIONS(4285), + [aux_sym_coarray_statement_token6] = ACTIONS(4285), + [aux_sym_coarray_statement_token8] = ACTIONS(4285), + [aux_sym_coarray_statement_token11] = ACTIONS(4285), + [aux_sym_coarray_statement_token12] = ACTIONS(4285), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4285), + [aux_sym_identifier_token1] = ACTIONS(4285), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4289), + [sym__float_literal] = ACTIONS(4289), + [sym__boz_literal] = ACTIONS(4289), + [sym__string_literal] = ACTIONS(4289), + [sym__string_literal_kind] = ACTIONS(4289), + }, + [935] = { + [ts_builtin_sym_end] = ACTIONS(4295), + [aux_sym_preproc_include_token1] = ACTIONS(4291), + [aux_sym_preproc_def_token1] = ACTIONS(4291), + [aux_sym_preproc_if_token1] = ACTIONS(4291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4291), + [sym_preproc_directive] = ACTIONS(4291), + [anon_sym_LPAREN2] = ACTIONS(4291), + [sym_preproc_comment] = ACTIONS(4711), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4291), + [aux_sym_end_program_statement_token1] = ACTIONS(4291), + [aux_sym_end_program_statement_token2] = ACTIONS(4291), + [aux_sym_module_statement_token1] = ACTIONS(4291), + [aux_sym_submodule_statement_token1] = ACTIONS(4291), + [aux_sym_interface_statement_token1] = ACTIONS(4291), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4291), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4291), + [aux_sym_subroutine_statement_token1] = ACTIONS(4291), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4291), + [aux_sym_function_statement_token1] = ACTIONS(4291), + [aux_sym_language_binding_token1] = ACTIONS(4291), + [aux_sym_procedure_attributes_token1] = ACTIONS(4291), + [aux_sym_procedure_attributes_token3] = ACTIONS(4291), + [aux_sym_contains_statement_token1] = ACTIONS(4291), + [aux_sym_use_statement_token1] = ACTIONS(4291), + [aux_sym_use_statement_token2] = ACTIONS(4291), + [aux_sym_implicit_statement_token1] = ACTIONS(4291), + [aux_sym_implicit_statement_token3] = ACTIONS(4291), + [aux_sym_implicit_statement_token4] = ACTIONS(4291), + [aux_sym_save_statement_token1] = ACTIONS(4291), + [aux_sym_private_statement_token1] = ACTIONS(4291), + [aux_sym_public_statement_token1] = ACTIONS(4291), + [aux_sym_namelist_statement_token1] = ACTIONS(4291), + [aux_sym_common_statement_token1] = ACTIONS(4291), + [aux_sym_import_statement_token1] = ACTIONS(4291), + [aux_sym_derived_type_definition_token1] = ACTIONS(4291), + [aux_sym_abstract_specifier_token1] = ACTIONS(4291), + [aux_sym_procedure_attribute_token6] = ACTIONS(4291), + [aux_sym_variable_attributes_token1] = ACTIONS(4291), + [aux_sym_variable_attributes_token2] = ACTIONS(4291), + [aux_sym_variable_attributes_token3] = ACTIONS(4291), + [aux_sym_variable_attributes_token4] = ACTIONS(4291), + [aux_sym_variable_attributes_token5] = ACTIONS(4291), + [aux_sym__intrinsic_type_token1] = ACTIONS(4291), + [aux_sym__intrinsic_type_token2] = ACTIONS(4291), + [aux_sym__intrinsic_type_token3] = ACTIONS(4291), + [aux_sym__intrinsic_type_token4] = ACTIONS(4291), + [aux_sym__intrinsic_type_token6] = ACTIONS(4291), + [aux_sym__intrinsic_type_token7] = ACTIONS(4291), + [aux_sym__intrinsic_type_token8] = ACTIONS(4291), + [aux_sym__intrinsic_type_token9] = ACTIONS(4291), + [aux_sym__intrinsic_type_token10] = ACTIONS(4291), + [aux_sym_derived_type_token1] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4291), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4291), + [aux_sym_type_qualifier_token1] = ACTIONS(4291), + [aux_sym_type_qualifier_token2] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4291), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4291), + [aux_sym_equivalence_statement_token1] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(4295), + [aux_sym_stop_statement_token1] = ACTIONS(4291), + [aux_sym_stop_statement_token2] = ACTIONS(4291), + [aux_sym_subroutine_call_token1] = ACTIONS(4291), + [aux_sym_keyword_statement_token1] = ACTIONS(4291), + [aux_sym_keyword_statement_token2] = ACTIONS(4291), + [aux_sym_keyword_statement_token3] = ACTIONS(4291), + [aux_sym_keyword_statement_token4] = ACTIONS(4291), + [aux_sym_keyword_statement_token6] = ACTIONS(4291), + [aux_sym_keyword_statement_token7] = ACTIONS(4291), + [aux_sym_include_statement_token1] = ACTIONS(4291), + [aux_sym_data_statement_token1] = ACTIONS(4291), + [aux_sym_do_loop_statement_token1] = ACTIONS(4291), + [aux_sym__inline_if_statement_token1] = ACTIONS(4291), + [aux_sym_end_if_statement_token1] = ACTIONS(4291), + [aux_sym_elseif_clause_token2] = ACTIONS(4291), + [aux_sym__inline_where_statement_token1] = ACTIONS(4291), + [aux_sym__forall_control_expression_token1] = ACTIONS(4291), + [aux_sym_select_case_statement_token1] = ACTIONS(4291), + [aux_sym_select_case_statement_token3] = ACTIONS(4291), + [aux_sym_select_type_statement_token1] = ACTIONS(4291), + [aux_sym_select_rank_statement_token2] = ACTIONS(4291), + [aux_sym_block_construct_token1] = ACTIONS(4291), + [aux_sym_associate_statement_token1] = ACTIONS(4291), + [aux_sym_format_statement_token1] = ACTIONS(4291), + [aux_sym_print_statement_token1] = ACTIONS(4291), + [aux_sym_open_statement_token1] = ACTIONS(4291), + [aux_sym_close_statement_token1] = ACTIONS(4291), + [aux_sym_inquire_statement_token1] = ACTIONS(4291), + [aux_sym_enum_statement_token1] = ACTIONS(4291), + [aux_sym_file_position_statement_token1] = ACTIONS(4291), + [aux_sym_file_position_statement_token2] = ACTIONS(4291), + [aux_sym_file_position_statement_token3] = ACTIONS(4291), + [aux_sym_file_position_statement_token4] = ACTIONS(4291), + [aux_sym_allocate_statement_token1] = ACTIONS(4291), + [aux_sym_entry_statement_token1] = ACTIONS(4291), + [aux_sym_logical_expression_token5] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4291), + [anon_sym_LPAREN_SLASH] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [aux_sym_boolean_literal_token1] = ACTIONS(4295), + [aux_sym_boolean_literal_token2] = ACTIONS(4295), + [aux_sym_null_literal_token1] = ACTIONS(4291), + [aux_sym_coarray_statement_token1] = ACTIONS(4291), + [aux_sym_coarray_statement_token2] = ACTIONS(4291), + [aux_sym_coarray_statement_token6] = ACTIONS(4291), + [aux_sym_coarray_statement_token8] = ACTIONS(4291), + [aux_sym_coarray_statement_token11] = ACTIONS(4291), + [aux_sym_coarray_statement_token12] = ACTIONS(4291), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4291), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4291), + [aux_sym_identifier_token1] = ACTIONS(4291), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4295), + [sym__float_literal] = ACTIONS(4295), + [sym__boz_literal] = ACTIONS(4295), + [sym__string_literal] = ACTIONS(4295), + [sym__string_literal_kind] = ACTIONS(4295), + }, + [936] = { + [aux_sym_preproc_include_token1] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token2] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4309), + [sym_preproc_comment] = ACTIONS(4713), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4309), + [aux_sym_end_program_statement_token1] = ACTIONS(4309), + [aux_sym_end_program_statement_token2] = ACTIONS(4309), + [aux_sym_module_statement_token1] = ACTIONS(4309), + [aux_sym_submodule_statement_token1] = ACTIONS(4309), + [aux_sym_interface_statement_token1] = ACTIONS(4309), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4309), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4309), + [aux_sym_subroutine_statement_token1] = ACTIONS(4309), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4309), + [aux_sym_function_statement_token1] = ACTIONS(4309), + [aux_sym_language_binding_token1] = ACTIONS(4309), + [aux_sym_procedure_attributes_token1] = ACTIONS(4309), + [aux_sym_procedure_attributes_token3] = ACTIONS(4309), + [aux_sym_contains_statement_token1] = ACTIONS(4309), + [aux_sym_use_statement_token1] = ACTIONS(4309), + [aux_sym_use_statement_token2] = ACTIONS(4309), + [aux_sym_implicit_statement_token1] = ACTIONS(4309), + [aux_sym_implicit_statement_token3] = ACTIONS(4309), + [aux_sym_implicit_statement_token4] = ACTIONS(4309), + [aux_sym_save_statement_token1] = ACTIONS(4309), + [aux_sym_private_statement_token1] = ACTIONS(4309), + [aux_sym_public_statement_token1] = ACTIONS(4309), + [aux_sym_namelist_statement_token1] = ACTIONS(4309), + [aux_sym_common_statement_token1] = ACTIONS(4309), + [aux_sym_import_statement_token1] = ACTIONS(4309), + [aux_sym_derived_type_definition_token1] = ACTIONS(4309), + [aux_sym_abstract_specifier_token1] = ACTIONS(4309), + [aux_sym_procedure_attribute_token6] = ACTIONS(4309), + [aux_sym_variable_attributes_token1] = ACTIONS(4309), + [aux_sym_variable_attributes_token2] = ACTIONS(4309), + [aux_sym_variable_attributes_token3] = ACTIONS(4309), + [aux_sym_variable_attributes_token4] = ACTIONS(4309), + [aux_sym_variable_attributes_token5] = ACTIONS(4309), + [aux_sym__intrinsic_type_token1] = ACTIONS(4309), + [aux_sym__intrinsic_type_token2] = ACTIONS(4309), + [aux_sym__intrinsic_type_token3] = ACTIONS(4309), + [aux_sym__intrinsic_type_token4] = ACTIONS(4309), + [aux_sym__intrinsic_type_token6] = ACTIONS(4309), + [aux_sym__intrinsic_type_token7] = ACTIONS(4309), + [aux_sym__intrinsic_type_token8] = ACTIONS(4309), + [aux_sym__intrinsic_type_token9] = ACTIONS(4309), + [aux_sym__intrinsic_type_token10] = ACTIONS(4309), + [aux_sym_derived_type_token1] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4309), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4309), + [aux_sym_type_qualifier_token1] = ACTIONS(4309), + [aux_sym_type_qualifier_token2] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4309), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4309), + [aux_sym_equivalence_statement_token1] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4313), + [aux_sym_stop_statement_token1] = ACTIONS(4309), + [aux_sym_stop_statement_token2] = ACTIONS(4309), + [aux_sym_subroutine_call_token1] = ACTIONS(4309), + [aux_sym_keyword_statement_token1] = ACTIONS(4309), + [aux_sym_keyword_statement_token2] = ACTIONS(4309), + [aux_sym_keyword_statement_token3] = ACTIONS(4309), + [aux_sym_keyword_statement_token4] = ACTIONS(4309), + [aux_sym_keyword_statement_token6] = ACTIONS(4309), + [aux_sym_keyword_statement_token7] = ACTIONS(4309), + [aux_sym_include_statement_token1] = ACTIONS(4309), + [aux_sym_data_statement_token1] = ACTIONS(4309), + [aux_sym_do_loop_statement_token1] = ACTIONS(4309), + [aux_sym__inline_if_statement_token1] = ACTIONS(4309), + [aux_sym_end_if_statement_token1] = ACTIONS(4309), + [aux_sym_elseif_clause_token2] = ACTIONS(4309), + [aux_sym__inline_where_statement_token1] = ACTIONS(4309), + [aux_sym__forall_control_expression_token1] = ACTIONS(4309), + [aux_sym_select_case_statement_token1] = ACTIONS(4309), + [aux_sym_select_case_statement_token3] = ACTIONS(4309), + [aux_sym_select_type_statement_token1] = ACTIONS(4309), + [aux_sym_select_rank_statement_token2] = ACTIONS(4309), + [aux_sym_block_construct_token1] = ACTIONS(4309), + [aux_sym_associate_statement_token1] = ACTIONS(4309), + [aux_sym_format_statement_token1] = ACTIONS(4309), + [aux_sym_print_statement_token1] = ACTIONS(4309), + [aux_sym_open_statement_token1] = ACTIONS(4309), + [aux_sym_close_statement_token1] = ACTIONS(4309), + [aux_sym_inquire_statement_token1] = ACTIONS(4309), + [aux_sym_enum_statement_token1] = ACTIONS(4309), + [aux_sym_file_position_statement_token1] = ACTIONS(4309), + [aux_sym_file_position_statement_token2] = ACTIONS(4309), + [aux_sym_file_position_statement_token3] = ACTIONS(4309), + [aux_sym_file_position_statement_token4] = ACTIONS(4309), + [aux_sym_allocate_statement_token1] = ACTIONS(4309), + [aux_sym_entry_statement_token1] = ACTIONS(4309), + [aux_sym_logical_expression_token5] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4309), + [anon_sym_LPAREN_SLASH] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [aux_sym_boolean_literal_token1] = ACTIONS(4313), + [aux_sym_boolean_literal_token2] = ACTIONS(4313), + [aux_sym_null_literal_token1] = ACTIONS(4309), + [aux_sym_coarray_statement_token1] = ACTIONS(4309), + [aux_sym_coarray_statement_token2] = ACTIONS(4309), + [aux_sym_coarray_statement_token6] = ACTIONS(4309), + [aux_sym_coarray_statement_token8] = ACTIONS(4309), + [aux_sym_coarray_statement_token11] = ACTIONS(4309), + [aux_sym_coarray_statement_token12] = ACTIONS(4309), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4309), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4309), + [aux_sym_identifier_token1] = ACTIONS(4309), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4313), + [sym__float_literal] = ACTIONS(4313), + [sym__boz_literal] = ACTIONS(4313), + [sym__string_literal] = ACTIONS(4313), + [sym__string_literal_kind] = ACTIONS(4313), + }, + [937] = { + [sym_preproc_include] = STATE(1014), + [sym_preproc_def] = STATE(1014), + [sym_preproc_function_def] = STATE(1014), + [sym_preproc_call] = STATE(1014), + [sym_preproc_else_in_module] = STATE(8271), + [sym_preproc_elif_in_module] = STATE(8271), + [sym_preproc_elifdef_in_module] = STATE(8271), + [sym_interface] = STATE(1014), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5827), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1014), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1014), + [sym_public_statement] = STATE(1014), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1014), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1014), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1014), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4715), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), + [sym_preproc_comment] = ACTIONS(4717), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -216483,9 +216891,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -216514,11 +216922,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -216535,1781 +216943,833 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [935] = { - [ts_builtin_sym_end] = ACTIONS(4285), - [aux_sym_preproc_include_token1] = ACTIONS(4281), - [aux_sym_preproc_def_token1] = ACTIONS(4281), - [aux_sym_preproc_if_token1] = ACTIONS(4281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), - [sym_preproc_directive] = ACTIONS(4281), - [anon_sym_LPAREN2] = ACTIONS(4281), - [sym_preproc_comment] = ACTIONS(4711), - [anon_sym_PLUS] = ACTIONS(4285), - [anon_sym_DASH] = ACTIONS(4285), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4281), - [aux_sym_end_program_statement_token1] = ACTIONS(4281), - [aux_sym_end_program_statement_token2] = ACTIONS(4281), - [aux_sym_module_statement_token1] = ACTIONS(4281), - [aux_sym_submodule_statement_token1] = ACTIONS(4281), - [aux_sym_interface_statement_token1] = ACTIONS(4281), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4281), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4281), - [aux_sym_subroutine_statement_token1] = ACTIONS(4281), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4281), - [aux_sym_function_statement_token1] = ACTIONS(4281), - [aux_sym_language_binding_token1] = ACTIONS(4281), - [aux_sym_procedure_attributes_token1] = ACTIONS(4281), - [aux_sym_procedure_attributes_token3] = ACTIONS(4281), - [aux_sym_contains_statement_token1] = ACTIONS(4281), - [aux_sym_use_statement_token1] = ACTIONS(4281), - [aux_sym_use_statement_token2] = ACTIONS(4281), - [aux_sym_implicit_statement_token1] = ACTIONS(4281), - [aux_sym_implicit_statement_token3] = ACTIONS(4281), - [aux_sym_implicit_statement_token4] = ACTIONS(4281), - [aux_sym_save_statement_token1] = ACTIONS(4281), - [aux_sym_private_statement_token1] = ACTIONS(4281), - [aux_sym_public_statement_token1] = ACTIONS(4281), - [aux_sym_namelist_statement_token1] = ACTIONS(4281), - [aux_sym_common_statement_token1] = ACTIONS(4281), - [aux_sym_import_statement_token1] = ACTIONS(4281), - [aux_sym_derived_type_definition_token1] = ACTIONS(4281), - [aux_sym_abstract_specifier_token1] = ACTIONS(4281), - [aux_sym_procedure_attribute_token6] = ACTIONS(4281), - [aux_sym_variable_attributes_token1] = ACTIONS(4281), - [aux_sym_variable_attributes_token2] = ACTIONS(4281), - [aux_sym_variable_attributes_token3] = ACTIONS(4281), - [aux_sym_variable_attributes_token4] = ACTIONS(4281), - [aux_sym_variable_attributes_token5] = ACTIONS(4281), - [aux_sym__intrinsic_type_token1] = ACTIONS(4281), - [aux_sym__intrinsic_type_token2] = ACTIONS(4281), - [aux_sym__intrinsic_type_token3] = ACTIONS(4281), - [aux_sym__intrinsic_type_token4] = ACTIONS(4281), - [aux_sym__intrinsic_type_token6] = ACTIONS(4281), - [aux_sym__intrinsic_type_token7] = ACTIONS(4281), - [aux_sym__intrinsic_type_token8] = ACTIONS(4281), - [aux_sym__intrinsic_type_token9] = ACTIONS(4281), - [aux_sym__intrinsic_type_token10] = ACTIONS(4281), - [aux_sym_derived_type_token1] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4281), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4281), - [aux_sym_type_qualifier_token1] = ACTIONS(4281), - [aux_sym_type_qualifier_token2] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4281), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4281), - [aux_sym_equivalence_statement_token1] = ACTIONS(4281), - [anon_sym_SEMI] = ACTIONS(4285), - [aux_sym_stop_statement_token1] = ACTIONS(4281), - [aux_sym_stop_statement_token2] = ACTIONS(4281), - [aux_sym_subroutine_call_token1] = ACTIONS(4281), - [aux_sym_keyword_statement_token1] = ACTIONS(4281), - [aux_sym_keyword_statement_token2] = ACTIONS(4281), - [aux_sym_keyword_statement_token3] = ACTIONS(4281), - [aux_sym_keyword_statement_token4] = ACTIONS(4281), - [aux_sym_keyword_statement_token6] = ACTIONS(4281), - [aux_sym_keyword_statement_token7] = ACTIONS(4281), - [aux_sym_include_statement_token1] = ACTIONS(4281), - [aux_sym_data_statement_token1] = ACTIONS(4281), - [aux_sym_do_loop_statement_token1] = ACTIONS(4281), - [aux_sym__inline_if_statement_token1] = ACTIONS(4281), - [aux_sym_end_if_statement_token1] = ACTIONS(4281), - [aux_sym_elseif_clause_token2] = ACTIONS(4281), - [aux_sym__inline_where_statement_token1] = ACTIONS(4281), - [aux_sym__forall_control_expression_token1] = ACTIONS(4281), - [aux_sym_select_case_statement_token1] = ACTIONS(4281), - [aux_sym_select_case_statement_token3] = ACTIONS(4281), - [aux_sym_select_type_statement_token1] = ACTIONS(4281), - [aux_sym_select_rank_statement_token2] = ACTIONS(4281), - [aux_sym_block_construct_token1] = ACTIONS(4281), - [aux_sym_associate_statement_token1] = ACTIONS(4281), - [aux_sym_format_statement_token1] = ACTIONS(4281), - [aux_sym_print_statement_token1] = ACTIONS(4281), - [aux_sym_open_statement_token1] = ACTIONS(4281), - [aux_sym_close_statement_token1] = ACTIONS(4281), - [aux_sym_inquire_statement_token1] = ACTIONS(4281), - [aux_sym_enum_statement_token1] = ACTIONS(4281), - [aux_sym_file_position_statement_token1] = ACTIONS(4281), - [aux_sym_file_position_statement_token2] = ACTIONS(4281), - [aux_sym_file_position_statement_token3] = ACTIONS(4281), - [aux_sym_file_position_statement_token4] = ACTIONS(4281), - [aux_sym_allocate_statement_token1] = ACTIONS(4281), - [aux_sym_entry_statement_token1] = ACTIONS(4281), - [aux_sym_logical_expression_token5] = ACTIONS(4285), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_LPAREN_SLASH] = ACTIONS(4285), - [anon_sym_LBRACK] = ACTIONS(4285), - [aux_sym_boolean_literal_token1] = ACTIONS(4285), - [aux_sym_boolean_literal_token2] = ACTIONS(4285), - [aux_sym_null_literal_token1] = ACTIONS(4281), - [aux_sym_coarray_statement_token1] = ACTIONS(4281), - [aux_sym_coarray_statement_token2] = ACTIONS(4281), - [aux_sym_coarray_statement_token6] = ACTIONS(4281), - [aux_sym_coarray_statement_token8] = ACTIONS(4281), - [aux_sym_coarray_statement_token11] = ACTIONS(4281), - [aux_sym_coarray_statement_token12] = ACTIONS(4281), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4281), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4281), - [aux_sym_identifier_token1] = ACTIONS(4281), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4285), - [sym__float_literal] = ACTIONS(4285), - [sym__boz_literal] = ACTIONS(4285), - [sym__string_literal] = ACTIONS(4285), - [sym__string_literal_kind] = ACTIONS(4285), - }, - [936] = { - [aux_sym_preproc_include_token1] = ACTIONS(4367), - [aux_sym_preproc_def_token1] = ACTIONS(4367), - [aux_sym_preproc_if_token1] = ACTIONS(4367), - [aux_sym_preproc_if_token2] = ACTIONS(4367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), - [sym_preproc_directive] = ACTIONS(4367), - [anon_sym_LPAREN2] = ACTIONS(4367), - [sym_preproc_comment] = ACTIONS(4713), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4367), - [aux_sym_end_program_statement_token1] = ACTIONS(4367), - [aux_sym_end_program_statement_token2] = ACTIONS(4367), - [aux_sym_module_statement_token1] = ACTIONS(4367), - [aux_sym_submodule_statement_token1] = ACTIONS(4367), - [aux_sym_interface_statement_token1] = ACTIONS(4367), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4367), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4367), - [aux_sym_subroutine_statement_token1] = ACTIONS(4367), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4367), - [aux_sym_function_statement_token1] = ACTIONS(4367), - [aux_sym_language_binding_token1] = ACTIONS(4367), - [aux_sym_procedure_attributes_token1] = ACTIONS(4367), - [aux_sym_procedure_attributes_token3] = ACTIONS(4367), - [aux_sym_contains_statement_token1] = ACTIONS(4367), - [aux_sym_use_statement_token1] = ACTIONS(4367), - [aux_sym_use_statement_token2] = ACTIONS(4367), - [aux_sym_implicit_statement_token1] = ACTIONS(4367), - [aux_sym_implicit_statement_token3] = ACTIONS(4367), - [aux_sym_implicit_statement_token4] = ACTIONS(4367), - [aux_sym_save_statement_token1] = ACTIONS(4367), - [aux_sym_private_statement_token1] = ACTIONS(4367), - [aux_sym_public_statement_token1] = ACTIONS(4367), - [aux_sym_namelist_statement_token1] = ACTIONS(4367), - [aux_sym_common_statement_token1] = ACTIONS(4367), - [aux_sym_import_statement_token1] = ACTIONS(4367), - [aux_sym_derived_type_definition_token1] = ACTIONS(4367), - [aux_sym_abstract_specifier_token1] = ACTIONS(4367), - [aux_sym_procedure_attribute_token6] = ACTIONS(4367), - [aux_sym_variable_attributes_token1] = ACTIONS(4367), - [aux_sym_variable_attributes_token2] = ACTIONS(4367), - [aux_sym_variable_attributes_token3] = ACTIONS(4367), - [aux_sym_variable_attributes_token4] = ACTIONS(4367), - [aux_sym_variable_attributes_token5] = ACTIONS(4367), - [aux_sym__intrinsic_type_token1] = ACTIONS(4367), - [aux_sym__intrinsic_type_token2] = ACTIONS(4367), - [aux_sym__intrinsic_type_token3] = ACTIONS(4367), - [aux_sym__intrinsic_type_token4] = ACTIONS(4367), - [aux_sym__intrinsic_type_token6] = ACTIONS(4367), - [aux_sym__intrinsic_type_token7] = ACTIONS(4367), - [aux_sym__intrinsic_type_token8] = ACTIONS(4367), - [aux_sym__intrinsic_type_token9] = ACTIONS(4367), - [aux_sym__intrinsic_type_token10] = ACTIONS(4367), - [aux_sym_derived_type_token1] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4367), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4367), - [aux_sym_type_qualifier_token1] = ACTIONS(4367), - [aux_sym_type_qualifier_token2] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4367), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4367), - [aux_sym_equivalence_statement_token1] = ACTIONS(4367), - [anon_sym_SEMI] = ACTIONS(4371), - [aux_sym_stop_statement_token1] = ACTIONS(4367), - [aux_sym_stop_statement_token2] = ACTIONS(4367), - [aux_sym_subroutine_call_token1] = ACTIONS(4367), - [aux_sym_keyword_statement_token1] = ACTIONS(4367), - [aux_sym_keyword_statement_token2] = ACTIONS(4367), - [aux_sym_keyword_statement_token3] = ACTIONS(4367), - [aux_sym_keyword_statement_token4] = ACTIONS(4367), - [aux_sym_keyword_statement_token6] = ACTIONS(4367), - [aux_sym_keyword_statement_token7] = ACTIONS(4367), - [aux_sym_include_statement_token1] = ACTIONS(4367), - [aux_sym_data_statement_token1] = ACTIONS(4367), - [aux_sym_do_loop_statement_token1] = ACTIONS(4367), - [aux_sym__inline_if_statement_token1] = ACTIONS(4367), - [aux_sym_end_if_statement_token1] = ACTIONS(4367), - [aux_sym_elseif_clause_token2] = ACTIONS(4367), - [aux_sym__inline_where_statement_token1] = ACTIONS(4367), - [aux_sym__forall_control_expression_token1] = ACTIONS(4367), - [aux_sym_select_case_statement_token1] = ACTIONS(4367), - [aux_sym_select_case_statement_token3] = ACTIONS(4367), - [aux_sym_select_type_statement_token1] = ACTIONS(4367), - [aux_sym_select_rank_statement_token2] = ACTIONS(4367), - [aux_sym_block_construct_token1] = ACTIONS(4367), - [aux_sym_associate_statement_token1] = ACTIONS(4367), - [aux_sym_format_statement_token1] = ACTIONS(4367), - [aux_sym_print_statement_token1] = ACTIONS(4367), - [aux_sym_open_statement_token1] = ACTIONS(4367), - [aux_sym_close_statement_token1] = ACTIONS(4367), - [aux_sym_inquire_statement_token1] = ACTIONS(4367), - [aux_sym_enum_statement_token1] = ACTIONS(4367), - [aux_sym_file_position_statement_token1] = ACTIONS(4367), - [aux_sym_file_position_statement_token2] = ACTIONS(4367), - [aux_sym_file_position_statement_token3] = ACTIONS(4367), - [aux_sym_file_position_statement_token4] = ACTIONS(4367), - [aux_sym_allocate_statement_token1] = ACTIONS(4367), - [aux_sym_entry_statement_token1] = ACTIONS(4367), - [aux_sym_logical_expression_token5] = ACTIONS(4371), - [anon_sym_DOT] = ACTIONS(4367), - [anon_sym_LPAREN_SLASH] = ACTIONS(4371), - [anon_sym_LBRACK] = ACTIONS(4371), - [aux_sym_boolean_literal_token1] = ACTIONS(4371), - [aux_sym_boolean_literal_token2] = ACTIONS(4371), - [aux_sym_null_literal_token1] = ACTIONS(4367), - [aux_sym_coarray_statement_token1] = ACTIONS(4367), - [aux_sym_coarray_statement_token2] = ACTIONS(4367), - [aux_sym_coarray_statement_token6] = ACTIONS(4367), - [aux_sym_coarray_statement_token8] = ACTIONS(4367), - [aux_sym_coarray_statement_token11] = ACTIONS(4367), - [aux_sym_coarray_statement_token12] = ACTIONS(4367), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4367), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4367), - [aux_sym_identifier_token1] = ACTIONS(4367), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4371), - [sym__float_literal] = ACTIONS(4371), - [sym__boz_literal] = ACTIONS(4371), - [sym__string_literal] = ACTIONS(4371), - [sym__string_literal_kind] = ACTIONS(4371), + [sym__integer_literal] = ACTIONS(4665), }, - [937] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token2] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(4715), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), + [938] = { + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token2] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(4719), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), [anon_sym_AMP] = ACTIONS(21), [aux_sym_program_statement_token1] = ACTIONS(4321), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_end_program_statement_token2] = ACTIONS(4313), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_end_program_statement_token2] = ACTIONS(4319), [aux_sym_module_statement_token1] = ACTIONS(4321), [aux_sym_submodule_statement_token1] = ACTIONS(4321), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), [aux_sym_subroutine_statement_token1] = ACTIONS(4321), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), [aux_sym_function_statement_token1] = ACTIONS(4321), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), [aux_sym_procedure_qualifier_token1] = ACTIONS(4321), [aux_sym_procedure_qualifier_token2] = ACTIONS(4321), [aux_sym_procedure_qualifier_token3] = ACTIONS(4321), [aux_sym_procedure_qualifier_token4] = ACTIONS(4321), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), - }, - [938] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(4717), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), }, [939] = { - [ts_builtin_sym_end] = ACTIONS(4719), - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), [sym_preproc_comment] = ACTIONS(4721), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [940] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), + }, + [941] = { + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token2] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(4725), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), [anon_sym_AMP] = ACTIONS(21), [aux_sym_program_statement_token1] = ACTIONS(4321), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_end_program_statement_token2] = ACTIONS(4313), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_end_program_statement_token2] = ACTIONS(4319), [aux_sym_module_statement_token1] = ACTIONS(4321), [aux_sym_submodule_statement_token1] = ACTIONS(4321), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), [aux_sym_subroutine_statement_token1] = ACTIONS(4321), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), [aux_sym_function_statement_token1] = ACTIONS(4321), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), [aux_sym_procedure_qualifier_token1] = ACTIONS(4321), [aux_sym_procedure_qualifier_token2] = ACTIONS(4321), [aux_sym_procedure_qualifier_token3] = ACTIONS(4321), [aux_sym_procedure_qualifier_token4] = ACTIONS(4321), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), - }, - [940] = { - [aux_sym_preproc_include_token1] = ACTIONS(4361), - [aux_sym_preproc_def_token1] = ACTIONS(4361), - [aux_sym_preproc_if_token1] = ACTIONS(4361), - [aux_sym_preproc_if_token2] = ACTIONS(4361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), - [sym_preproc_directive] = ACTIONS(4361), - [anon_sym_LPAREN2] = ACTIONS(4361), - [sym_preproc_comment] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4365), - [anon_sym_DASH] = ACTIONS(4365), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4361), - [aux_sym_end_program_statement_token1] = ACTIONS(4361), - [aux_sym_end_program_statement_token2] = ACTIONS(4361), - [aux_sym_module_statement_token1] = ACTIONS(4361), - [aux_sym_submodule_statement_token1] = ACTIONS(4361), - [aux_sym_interface_statement_token1] = ACTIONS(4361), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), - [aux_sym_subroutine_statement_token1] = ACTIONS(4361), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4361), - [aux_sym_function_statement_token1] = ACTIONS(4361), - [aux_sym_language_binding_token1] = ACTIONS(4361), - [aux_sym_procedure_attributes_token1] = ACTIONS(4361), - [aux_sym_procedure_attributes_token3] = ACTIONS(4361), - [aux_sym_contains_statement_token1] = ACTIONS(4361), - [aux_sym_use_statement_token1] = ACTIONS(4361), - [aux_sym_use_statement_token2] = ACTIONS(4361), - [aux_sym_implicit_statement_token1] = ACTIONS(4361), - [aux_sym_implicit_statement_token3] = ACTIONS(4361), - [aux_sym_implicit_statement_token4] = ACTIONS(4361), - [aux_sym_save_statement_token1] = ACTIONS(4361), - [aux_sym_private_statement_token1] = ACTIONS(4361), - [aux_sym_public_statement_token1] = ACTIONS(4361), - [aux_sym_namelist_statement_token1] = ACTIONS(4361), - [aux_sym_common_statement_token1] = ACTIONS(4361), - [aux_sym_import_statement_token1] = ACTIONS(4361), - [aux_sym_derived_type_definition_token1] = ACTIONS(4361), - [aux_sym_abstract_specifier_token1] = ACTIONS(4361), - [aux_sym_procedure_attribute_token6] = ACTIONS(4361), - [aux_sym_variable_attributes_token1] = ACTIONS(4361), - [aux_sym_variable_attributes_token2] = ACTIONS(4361), - [aux_sym_variable_attributes_token3] = ACTIONS(4361), - [aux_sym_variable_attributes_token4] = ACTIONS(4361), - [aux_sym_variable_attributes_token5] = ACTIONS(4361), - [aux_sym__intrinsic_type_token1] = ACTIONS(4361), - [aux_sym__intrinsic_type_token2] = ACTIONS(4361), - [aux_sym__intrinsic_type_token3] = ACTIONS(4361), - [aux_sym__intrinsic_type_token4] = ACTIONS(4361), - [aux_sym__intrinsic_type_token6] = ACTIONS(4361), - [aux_sym__intrinsic_type_token7] = ACTIONS(4361), - [aux_sym__intrinsic_type_token8] = ACTIONS(4361), - [aux_sym__intrinsic_type_token9] = ACTIONS(4361), - [aux_sym__intrinsic_type_token10] = ACTIONS(4361), - [aux_sym_derived_type_token1] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4361), - [aux_sym_type_qualifier_token1] = ACTIONS(4361), - [aux_sym_type_qualifier_token2] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4361), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4361), - [aux_sym_equivalence_statement_token1] = ACTIONS(4361), - [anon_sym_SEMI] = ACTIONS(4365), - [aux_sym_stop_statement_token1] = ACTIONS(4361), - [aux_sym_stop_statement_token2] = ACTIONS(4361), - [aux_sym_subroutine_call_token1] = ACTIONS(4361), - [aux_sym_keyword_statement_token1] = ACTIONS(4361), - [aux_sym_keyword_statement_token2] = ACTIONS(4361), - [aux_sym_keyword_statement_token3] = ACTIONS(4361), - [aux_sym_keyword_statement_token4] = ACTIONS(4361), - [aux_sym_keyword_statement_token6] = ACTIONS(4361), - [aux_sym_keyword_statement_token7] = ACTIONS(4361), - [aux_sym_include_statement_token1] = ACTIONS(4361), - [aux_sym_data_statement_token1] = ACTIONS(4361), - [aux_sym_do_loop_statement_token1] = ACTIONS(4361), - [aux_sym__inline_if_statement_token1] = ACTIONS(4361), - [aux_sym_end_if_statement_token1] = ACTIONS(4361), - [aux_sym_elseif_clause_token2] = ACTIONS(4361), - [aux_sym__inline_where_statement_token1] = ACTIONS(4361), - [aux_sym__forall_control_expression_token1] = ACTIONS(4361), - [aux_sym_select_case_statement_token1] = ACTIONS(4361), - [aux_sym_select_case_statement_token3] = ACTIONS(4361), - [aux_sym_select_type_statement_token1] = ACTIONS(4361), - [aux_sym_select_rank_statement_token2] = ACTIONS(4361), - [aux_sym_block_construct_token1] = ACTIONS(4361), - [aux_sym_associate_statement_token1] = ACTIONS(4361), - [aux_sym_format_statement_token1] = ACTIONS(4361), - [aux_sym_print_statement_token1] = ACTIONS(4361), - [aux_sym_open_statement_token1] = ACTIONS(4361), - [aux_sym_close_statement_token1] = ACTIONS(4361), - [aux_sym_inquire_statement_token1] = ACTIONS(4361), - [aux_sym_enum_statement_token1] = ACTIONS(4361), - [aux_sym_file_position_statement_token1] = ACTIONS(4361), - [aux_sym_file_position_statement_token2] = ACTIONS(4361), - [aux_sym_file_position_statement_token3] = ACTIONS(4361), - [aux_sym_file_position_statement_token4] = ACTIONS(4361), - [aux_sym_allocate_statement_token1] = ACTIONS(4361), - [aux_sym_entry_statement_token1] = ACTIONS(4361), - [aux_sym_logical_expression_token5] = ACTIONS(4365), - [anon_sym_DOT] = ACTIONS(4361), - [anon_sym_LPAREN_SLASH] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4365), - [aux_sym_boolean_literal_token1] = ACTIONS(4365), - [aux_sym_boolean_literal_token2] = ACTIONS(4365), - [aux_sym_null_literal_token1] = ACTIONS(4361), - [aux_sym_coarray_statement_token1] = ACTIONS(4361), - [aux_sym_coarray_statement_token2] = ACTIONS(4361), - [aux_sym_coarray_statement_token6] = ACTIONS(4361), - [aux_sym_coarray_statement_token8] = ACTIONS(4361), - [aux_sym_coarray_statement_token11] = ACTIONS(4361), - [aux_sym_coarray_statement_token12] = ACTIONS(4361), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), - [aux_sym_identifier_token1] = ACTIONS(4361), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4365), - [sym__float_literal] = ACTIONS(4365), - [sym__boz_literal] = ACTIONS(4365), - [sym__string_literal] = ACTIONS(4365), - [sym__string_literal_kind] = ACTIONS(4365), - }, - [941] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token2] = ACTIONS(4275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(4725), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4275), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_end_program_statement_token2] = ACTIONS(4267), - [aux_sym_module_statement_token1] = ACTIONS(4275), - [aux_sym_submodule_statement_token1] = ACTIONS(4275), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_subroutine_statement_token1] = ACTIONS(4275), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_function_statement_token1] = ACTIONS(4275), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4275), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4275), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), }, [942] = { - [ts_builtin_sym_end] = ACTIONS(4593), - [aux_sym_preproc_include_token1] = ACTIONS(4591), - [aux_sym_preproc_def_token1] = ACTIONS(4591), - [aux_sym_preproc_if_token1] = ACTIONS(4591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4591), - [sym_preproc_directive] = ACTIONS(4591), - [anon_sym_LPAREN2] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), + [aux_sym_preproc_include_token1] = ACTIONS(4471), + [aux_sym_preproc_def_token1] = ACTIONS(4471), + [aux_sym_preproc_if_token1] = ACTIONS(4471), + [aux_sym_preproc_if_token2] = ACTIONS(4471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4471), + [sym_preproc_directive] = ACTIONS(4471), + [anon_sym_LPAREN2] = ACTIONS(4471), + [anon_sym_PLUS] = ACTIONS(4473), + [anon_sym_DASH] = ACTIONS(4473), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4471), + [aux_sym_end_program_statement_token1] = ACTIONS(4471), + [aux_sym_end_program_statement_token2] = ACTIONS(4471), + [aux_sym_module_statement_token1] = ACTIONS(4471), + [aux_sym_submodule_statement_token1] = ACTIONS(4471), + [aux_sym_interface_statement_token1] = ACTIONS(4471), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4471), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4471), + [aux_sym_subroutine_statement_token1] = ACTIONS(4471), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4471), + [aux_sym_function_statement_token1] = ACTIONS(4471), + [aux_sym_language_binding_token1] = ACTIONS(4471), + [aux_sym_procedure_attributes_token1] = ACTIONS(4471), + [aux_sym_procedure_attributes_token3] = ACTIONS(4471), + [aux_sym_contains_statement_token1] = ACTIONS(4471), + [aux_sym_use_statement_token1] = ACTIONS(4471), + [aux_sym_use_statement_token2] = ACTIONS(4471), + [aux_sym_implicit_statement_token1] = ACTIONS(4471), + [aux_sym_implicit_statement_token3] = ACTIONS(4471), + [aux_sym_implicit_statement_token4] = ACTIONS(4471), + [aux_sym_save_statement_token1] = ACTIONS(4471), + [aux_sym_private_statement_token1] = ACTIONS(4471), + [aux_sym_public_statement_token1] = ACTIONS(4471), + [aux_sym_namelist_statement_token1] = ACTIONS(4471), + [aux_sym_common_statement_token1] = ACTIONS(4471), + [aux_sym_import_statement_token1] = ACTIONS(4471), + [aux_sym_derived_type_definition_token1] = ACTIONS(4471), + [aux_sym_abstract_specifier_token1] = ACTIONS(4471), + [aux_sym_procedure_attribute_token6] = ACTIONS(4471), + [aux_sym_variable_attributes_token1] = ACTIONS(4471), + [aux_sym_variable_attributes_token2] = ACTIONS(4471), + [aux_sym_variable_attributes_token3] = ACTIONS(4471), + [aux_sym_variable_attributes_token4] = ACTIONS(4471), + [aux_sym_variable_attributes_token5] = ACTIONS(4471), + [aux_sym__intrinsic_type_token1] = ACTIONS(4471), + [aux_sym__intrinsic_type_token2] = ACTIONS(4471), + [aux_sym__intrinsic_type_token3] = ACTIONS(4471), + [aux_sym__intrinsic_type_token4] = ACTIONS(4471), + [aux_sym__intrinsic_type_token6] = ACTIONS(4471), + [aux_sym__intrinsic_type_token7] = ACTIONS(4471), + [aux_sym__intrinsic_type_token8] = ACTIONS(4471), + [aux_sym__intrinsic_type_token9] = ACTIONS(4471), + [aux_sym__intrinsic_type_token10] = ACTIONS(4471), + [aux_sym_derived_type_token1] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4471), + [aux_sym_type_qualifier_token1] = ACTIONS(4471), + [aux_sym_type_qualifier_token2] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4471), + [aux_sym_equivalence_statement_token1] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4473), + [aux_sym_stop_statement_token1] = ACTIONS(4471), + [aux_sym_stop_statement_token2] = ACTIONS(4471), + [aux_sym_subroutine_call_token1] = ACTIONS(4471), + [aux_sym_keyword_statement_token1] = ACTIONS(4471), + [aux_sym_keyword_statement_token2] = ACTIONS(4471), + [aux_sym_keyword_statement_token3] = ACTIONS(4471), + [aux_sym_keyword_statement_token4] = ACTIONS(4471), + [aux_sym_keyword_statement_token6] = ACTIONS(4471), + [aux_sym_keyword_statement_token7] = ACTIONS(4471), + [aux_sym_include_statement_token1] = ACTIONS(4471), + [aux_sym_data_statement_token1] = ACTIONS(4471), + [aux_sym_do_loop_statement_token1] = ACTIONS(4471), + [aux_sym__inline_if_statement_token1] = ACTIONS(4471), + [aux_sym_end_if_statement_token1] = ACTIONS(4471), + [aux_sym_elseif_clause_token2] = ACTIONS(4471), + [aux_sym__inline_where_statement_token1] = ACTIONS(4471), + [aux_sym__forall_control_expression_token1] = ACTIONS(4471), + [aux_sym_select_case_statement_token1] = ACTIONS(4471), + [aux_sym_select_case_statement_token3] = ACTIONS(4471), + [aux_sym_select_type_statement_token1] = ACTIONS(4471), + [aux_sym_select_rank_statement_token2] = ACTIONS(4471), + [aux_sym_block_construct_token1] = ACTIONS(4471), + [aux_sym_associate_statement_token1] = ACTIONS(4471), + [aux_sym_format_statement_token1] = ACTIONS(4471), + [aux_sym_print_statement_token1] = ACTIONS(4471), + [aux_sym_open_statement_token1] = ACTIONS(4471), + [aux_sym_close_statement_token1] = ACTIONS(4471), + [aux_sym_inquire_statement_token1] = ACTIONS(4471), + [aux_sym_enum_statement_token1] = ACTIONS(4471), + [aux_sym_file_position_statement_token1] = ACTIONS(4471), + [aux_sym_file_position_statement_token2] = ACTIONS(4471), + [aux_sym_file_position_statement_token3] = ACTIONS(4471), + [aux_sym_file_position_statement_token4] = ACTIONS(4471), + [aux_sym_allocate_statement_token1] = ACTIONS(4471), + [aux_sym_entry_statement_token1] = ACTIONS(4471), + [aux_sym_logical_expression_token5] = ACTIONS(4473), + [anon_sym_DOT] = ACTIONS(4471), + [anon_sym_LPAREN_SLASH] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [aux_sym_boolean_literal_token1] = ACTIONS(4473), + [aux_sym_boolean_literal_token2] = ACTIONS(4473), + [aux_sym_null_literal_token1] = ACTIONS(4471), + [aux_sym_coarray_statement_token1] = ACTIONS(4471), + [aux_sym_coarray_statement_token2] = ACTIONS(4471), + [aux_sym_coarray_statement_token6] = ACTIONS(4471), + [aux_sym_coarray_statement_token8] = ACTIONS(4471), + [aux_sym_coarray_statement_token11] = ACTIONS(4471), + [aux_sym_coarray_statement_token12] = ACTIONS(4471), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4471), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4471), + [aux_sym_identifier_token1] = ACTIONS(4471), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4473), + [sym__float_literal] = ACTIONS(4473), + [sym__boz_literal] = ACTIONS(4473), + [sym__string_literal] = ACTIONS(4473), + [sym__string_literal_kind] = ACTIONS(4473), + }, + [943] = { + [ts_builtin_sym_end] = ACTIONS(4597), + [aux_sym_preproc_include_token1] = ACTIONS(4595), + [aux_sym_preproc_def_token1] = ACTIONS(4595), + [aux_sym_preproc_if_token1] = ACTIONS(4595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4595), + [sym_preproc_directive] = ACTIONS(4595), + [anon_sym_LPAREN2] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4597), + [anon_sym_DASH] = ACTIONS(4597), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4591), - [aux_sym_end_program_statement_token1] = ACTIONS(4591), - [aux_sym_end_program_statement_token2] = ACTIONS(4591), - [aux_sym_module_statement_token1] = ACTIONS(4591), - [aux_sym_submodule_statement_token1] = ACTIONS(4591), - [aux_sym_interface_statement_token1] = ACTIONS(4591), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4591), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4591), - [aux_sym_subroutine_statement_token1] = ACTIONS(4591), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4591), - [aux_sym_function_statement_token1] = ACTIONS(4591), - [aux_sym_language_binding_token1] = ACTIONS(4591), - [aux_sym_procedure_attributes_token1] = ACTIONS(4591), - [aux_sym_procedure_attributes_token3] = ACTIONS(4591), - [aux_sym_contains_statement_token1] = ACTIONS(4591), - [aux_sym_use_statement_token1] = ACTIONS(4591), - [aux_sym_use_statement_token2] = ACTIONS(4591), - [aux_sym_implicit_statement_token1] = ACTIONS(4591), - [aux_sym_implicit_statement_token3] = ACTIONS(4591), - [aux_sym_implicit_statement_token4] = ACTIONS(4591), - [aux_sym_save_statement_token1] = ACTIONS(4591), - [aux_sym_private_statement_token1] = ACTIONS(4591), - [aux_sym_public_statement_token1] = ACTIONS(4591), - [aux_sym_namelist_statement_token1] = ACTIONS(4591), - [aux_sym_common_statement_token1] = ACTIONS(4591), - [aux_sym_import_statement_token1] = ACTIONS(4591), - [aux_sym_derived_type_definition_token1] = ACTIONS(4591), - [aux_sym_abstract_specifier_token1] = ACTIONS(4591), - [aux_sym_procedure_attribute_token6] = ACTIONS(4591), - [aux_sym_variable_attributes_token1] = ACTIONS(4591), - [aux_sym_variable_attributes_token2] = ACTIONS(4591), - [aux_sym_variable_attributes_token3] = ACTIONS(4591), - [aux_sym_variable_attributes_token4] = ACTIONS(4591), - [aux_sym_variable_attributes_token5] = ACTIONS(4591), - [aux_sym__intrinsic_type_token1] = ACTIONS(4591), - [aux_sym__intrinsic_type_token2] = ACTIONS(4591), - [aux_sym__intrinsic_type_token3] = ACTIONS(4591), - [aux_sym__intrinsic_type_token4] = ACTIONS(4591), - [aux_sym__intrinsic_type_token6] = ACTIONS(4591), - [aux_sym__intrinsic_type_token7] = ACTIONS(4591), - [aux_sym__intrinsic_type_token8] = ACTIONS(4591), - [aux_sym__intrinsic_type_token9] = ACTIONS(4591), - [aux_sym__intrinsic_type_token10] = ACTIONS(4591), - [aux_sym_derived_type_token1] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4591), - [aux_sym_type_qualifier_token1] = ACTIONS(4591), - [aux_sym_type_qualifier_token2] = ACTIONS(4591), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4591), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4591), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4591), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4591), - [aux_sym_equivalence_statement_token1] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [aux_sym_stop_statement_token1] = ACTIONS(4591), - [aux_sym_stop_statement_token2] = ACTIONS(4591), - [aux_sym_subroutine_call_token1] = ACTIONS(4591), - [aux_sym_keyword_statement_token1] = ACTIONS(4591), - [aux_sym_keyword_statement_token2] = ACTIONS(4591), - [aux_sym_keyword_statement_token3] = ACTIONS(4591), - [aux_sym_keyword_statement_token4] = ACTIONS(4591), - [aux_sym_keyword_statement_token6] = ACTIONS(4591), - [aux_sym_keyword_statement_token7] = ACTIONS(4591), - [aux_sym_include_statement_token1] = ACTIONS(4591), - [aux_sym_data_statement_token1] = ACTIONS(4591), - [aux_sym_do_loop_statement_token1] = ACTIONS(4591), - [aux_sym__inline_if_statement_token1] = ACTIONS(4591), - [aux_sym_end_if_statement_token1] = ACTIONS(4591), - [aux_sym_elseif_clause_token2] = ACTIONS(4591), - [aux_sym__inline_where_statement_token1] = ACTIONS(4591), - [aux_sym__forall_control_expression_token1] = ACTIONS(4591), - [aux_sym_select_case_statement_token1] = ACTIONS(4591), - [aux_sym_select_case_statement_token3] = ACTIONS(4591), - [aux_sym_select_type_statement_token1] = ACTIONS(4591), - [aux_sym_select_rank_statement_token2] = ACTIONS(4591), - [aux_sym_block_construct_token1] = ACTIONS(4591), - [aux_sym_associate_statement_token1] = ACTIONS(4591), - [aux_sym_format_statement_token1] = ACTIONS(4591), - [aux_sym_print_statement_token1] = ACTIONS(4591), - [aux_sym_open_statement_token1] = ACTIONS(4591), - [aux_sym_close_statement_token1] = ACTIONS(4591), - [aux_sym_inquire_statement_token1] = ACTIONS(4591), - [aux_sym_enum_statement_token1] = ACTIONS(4591), - [aux_sym_file_position_statement_token1] = ACTIONS(4591), - [aux_sym_file_position_statement_token2] = ACTIONS(4591), - [aux_sym_file_position_statement_token3] = ACTIONS(4591), - [aux_sym_file_position_statement_token4] = ACTIONS(4591), - [aux_sym_allocate_statement_token1] = ACTIONS(4591), - [aux_sym_entry_statement_token1] = ACTIONS(4591), - [aux_sym_logical_expression_token5] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_LPAREN_SLASH] = ACTIONS(4593), - [anon_sym_LBRACK] = ACTIONS(4593), - [aux_sym_boolean_literal_token1] = ACTIONS(4593), - [aux_sym_boolean_literal_token2] = ACTIONS(4593), - [aux_sym_null_literal_token1] = ACTIONS(4591), - [aux_sym_coarray_statement_token1] = ACTIONS(4591), - [aux_sym_coarray_statement_token2] = ACTIONS(4591), - [aux_sym_coarray_statement_token6] = ACTIONS(4591), - [aux_sym_coarray_statement_token8] = ACTIONS(4591), - [aux_sym_coarray_statement_token11] = ACTIONS(4591), - [aux_sym_coarray_statement_token12] = ACTIONS(4591), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4591), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4591), - [aux_sym_identifier_token1] = ACTIONS(4591), + [aux_sym_program_statement_token1] = ACTIONS(4595), + [aux_sym_end_program_statement_token1] = ACTIONS(4595), + [aux_sym_end_program_statement_token2] = ACTIONS(4595), + [aux_sym_module_statement_token1] = ACTIONS(4595), + [aux_sym_submodule_statement_token1] = ACTIONS(4595), + [aux_sym_interface_statement_token1] = ACTIONS(4595), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4595), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4595), + [aux_sym_subroutine_statement_token1] = ACTIONS(4595), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4595), + [aux_sym_function_statement_token1] = ACTIONS(4595), + [aux_sym_language_binding_token1] = ACTIONS(4595), + [aux_sym_procedure_attributes_token1] = ACTIONS(4595), + [aux_sym_procedure_attributes_token3] = ACTIONS(4595), + [aux_sym_contains_statement_token1] = ACTIONS(4595), + [aux_sym_use_statement_token1] = ACTIONS(4595), + [aux_sym_use_statement_token2] = ACTIONS(4595), + [aux_sym_implicit_statement_token1] = ACTIONS(4595), + [aux_sym_implicit_statement_token3] = ACTIONS(4595), + [aux_sym_implicit_statement_token4] = ACTIONS(4595), + [aux_sym_save_statement_token1] = ACTIONS(4595), + [aux_sym_private_statement_token1] = ACTIONS(4595), + [aux_sym_public_statement_token1] = ACTIONS(4595), + [aux_sym_namelist_statement_token1] = ACTIONS(4595), + [aux_sym_common_statement_token1] = ACTIONS(4595), + [aux_sym_import_statement_token1] = ACTIONS(4595), + [aux_sym_derived_type_definition_token1] = ACTIONS(4595), + [aux_sym_abstract_specifier_token1] = ACTIONS(4595), + [aux_sym_procedure_attribute_token6] = ACTIONS(4595), + [aux_sym_variable_attributes_token1] = ACTIONS(4595), + [aux_sym_variable_attributes_token2] = ACTIONS(4595), + [aux_sym_variable_attributes_token3] = ACTIONS(4595), + [aux_sym_variable_attributes_token4] = ACTIONS(4595), + [aux_sym_variable_attributes_token5] = ACTIONS(4595), + [aux_sym__intrinsic_type_token1] = ACTIONS(4595), + [aux_sym__intrinsic_type_token2] = ACTIONS(4595), + [aux_sym__intrinsic_type_token3] = ACTIONS(4595), + [aux_sym__intrinsic_type_token4] = ACTIONS(4595), + [aux_sym__intrinsic_type_token6] = ACTIONS(4595), + [aux_sym__intrinsic_type_token7] = ACTIONS(4595), + [aux_sym__intrinsic_type_token8] = ACTIONS(4595), + [aux_sym__intrinsic_type_token9] = ACTIONS(4595), + [aux_sym__intrinsic_type_token10] = ACTIONS(4595), + [aux_sym_derived_type_token1] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4595), + [aux_sym_type_qualifier_token1] = ACTIONS(4595), + [aux_sym_type_qualifier_token2] = ACTIONS(4595), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4595), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4595), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4595), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4595), + [aux_sym_equivalence_statement_token1] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4597), + [aux_sym_stop_statement_token1] = ACTIONS(4595), + [aux_sym_stop_statement_token2] = ACTIONS(4595), + [aux_sym_subroutine_call_token1] = ACTIONS(4595), + [aux_sym_keyword_statement_token1] = ACTIONS(4595), + [aux_sym_keyword_statement_token2] = ACTIONS(4595), + [aux_sym_keyword_statement_token3] = ACTIONS(4595), + [aux_sym_keyword_statement_token4] = ACTIONS(4595), + [aux_sym_keyword_statement_token6] = ACTIONS(4595), + [aux_sym_keyword_statement_token7] = ACTIONS(4595), + [aux_sym_include_statement_token1] = ACTIONS(4595), + [aux_sym_data_statement_token1] = ACTIONS(4595), + [aux_sym_do_loop_statement_token1] = ACTIONS(4595), + [aux_sym__inline_if_statement_token1] = ACTIONS(4595), + [aux_sym_end_if_statement_token1] = ACTIONS(4595), + [aux_sym_elseif_clause_token2] = ACTIONS(4595), + [aux_sym__inline_where_statement_token1] = ACTIONS(4595), + [aux_sym__forall_control_expression_token1] = ACTIONS(4595), + [aux_sym_select_case_statement_token1] = ACTIONS(4595), + [aux_sym_select_case_statement_token3] = ACTIONS(4595), + [aux_sym_select_type_statement_token1] = ACTIONS(4595), + [aux_sym_select_rank_statement_token2] = ACTIONS(4595), + [aux_sym_block_construct_token1] = ACTIONS(4595), + [aux_sym_associate_statement_token1] = ACTIONS(4595), + [aux_sym_format_statement_token1] = ACTIONS(4595), + [aux_sym_print_statement_token1] = ACTIONS(4595), + [aux_sym_open_statement_token1] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4595), + [aux_sym_inquire_statement_token1] = ACTIONS(4595), + [aux_sym_enum_statement_token1] = ACTIONS(4595), + [aux_sym_file_position_statement_token1] = ACTIONS(4595), + [aux_sym_file_position_statement_token2] = ACTIONS(4595), + [aux_sym_file_position_statement_token3] = ACTIONS(4595), + [aux_sym_file_position_statement_token4] = ACTIONS(4595), + [aux_sym_allocate_statement_token1] = ACTIONS(4595), + [aux_sym_entry_statement_token1] = ACTIONS(4595), + [aux_sym_logical_expression_token5] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_LPAREN_SLASH] = ACTIONS(4597), + [anon_sym_LBRACK] = ACTIONS(4597), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [aux_sym_null_literal_token1] = ACTIONS(4595), + [aux_sym_coarray_statement_token1] = ACTIONS(4595), + [aux_sym_coarray_statement_token2] = ACTIONS(4595), + [aux_sym_coarray_statement_token6] = ACTIONS(4595), + [aux_sym_coarray_statement_token8] = ACTIONS(4595), + [aux_sym_coarray_statement_token11] = ACTIONS(4595), + [aux_sym_coarray_statement_token12] = ACTIONS(4595), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4595), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4595), + [aux_sym_identifier_token1] = ACTIONS(4595), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4593), - [sym__float_literal] = ACTIONS(4593), - [sym__boz_literal] = ACTIONS(4593), - [sym__string_literal] = ACTIONS(4593), - [sym__string_literal_kind] = ACTIONS(4593), + [sym__integer_literal] = ACTIONS(4597), + [sym__float_literal] = ACTIONS(4597), + [sym__boz_literal] = ACTIONS(4597), + [sym__string_literal] = ACTIONS(4597), + [sym__string_literal_kind] = ACTIONS(4597), }, - [943] = { - [aux_sym_preproc_include_token1] = ACTIONS(4507), - [aux_sym_preproc_def_token1] = ACTIONS(4507), - [aux_sym_preproc_if_token1] = ACTIONS(4507), - [aux_sym_preproc_if_token2] = ACTIONS(4507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4507), - [sym_preproc_directive] = ACTIONS(4507), - [anon_sym_LPAREN2] = ACTIONS(4507), - [anon_sym_PLUS] = ACTIONS(4509), - [anon_sym_DASH] = ACTIONS(4509), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4507), - [aux_sym_end_program_statement_token1] = ACTIONS(4507), - [aux_sym_end_program_statement_token2] = ACTIONS(4507), - [aux_sym_module_statement_token1] = ACTIONS(4507), - [aux_sym_submodule_statement_token1] = ACTIONS(4507), - [aux_sym_interface_statement_token1] = ACTIONS(4507), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4507), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4507), - [aux_sym_subroutine_statement_token1] = ACTIONS(4507), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4507), - [aux_sym_function_statement_token1] = ACTIONS(4507), - [aux_sym_language_binding_token1] = ACTIONS(4507), - [aux_sym_procedure_attributes_token1] = ACTIONS(4507), - [aux_sym_procedure_attributes_token3] = ACTIONS(4507), - [aux_sym_contains_statement_token1] = ACTIONS(4507), - [aux_sym_use_statement_token1] = ACTIONS(4507), - [aux_sym_use_statement_token2] = ACTIONS(4507), - [aux_sym_implicit_statement_token1] = ACTIONS(4507), - [aux_sym_implicit_statement_token3] = ACTIONS(4507), - [aux_sym_implicit_statement_token4] = ACTIONS(4507), - [aux_sym_save_statement_token1] = ACTIONS(4507), - [aux_sym_private_statement_token1] = ACTIONS(4507), - [aux_sym_public_statement_token1] = ACTIONS(4507), - [aux_sym_namelist_statement_token1] = ACTIONS(4507), - [aux_sym_common_statement_token1] = ACTIONS(4507), - [aux_sym_import_statement_token1] = ACTIONS(4507), - [aux_sym_derived_type_definition_token1] = ACTIONS(4507), - [aux_sym_abstract_specifier_token1] = ACTIONS(4507), - [aux_sym_procedure_attribute_token6] = ACTIONS(4507), - [aux_sym_variable_attributes_token1] = ACTIONS(4507), - [aux_sym_variable_attributes_token2] = ACTIONS(4507), - [aux_sym_variable_attributes_token3] = ACTIONS(4507), - [aux_sym_variable_attributes_token4] = ACTIONS(4507), - [aux_sym_variable_attributes_token5] = ACTIONS(4507), - [aux_sym__intrinsic_type_token1] = ACTIONS(4507), - [aux_sym__intrinsic_type_token2] = ACTIONS(4507), - [aux_sym__intrinsic_type_token3] = ACTIONS(4507), - [aux_sym__intrinsic_type_token4] = ACTIONS(4507), - [aux_sym__intrinsic_type_token6] = ACTIONS(4507), - [aux_sym__intrinsic_type_token7] = ACTIONS(4507), - [aux_sym__intrinsic_type_token8] = ACTIONS(4507), - [aux_sym__intrinsic_type_token9] = ACTIONS(4507), - [aux_sym__intrinsic_type_token10] = ACTIONS(4507), - [aux_sym_derived_type_token1] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4507), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4507), - [aux_sym_type_qualifier_token1] = ACTIONS(4507), - [aux_sym_type_qualifier_token2] = ACTIONS(4507), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4507), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4507), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4507), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4507), - [aux_sym_equivalence_statement_token1] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [aux_sym_stop_statement_token1] = ACTIONS(4507), - [aux_sym_stop_statement_token2] = ACTIONS(4507), - [aux_sym_subroutine_call_token1] = ACTIONS(4507), - [aux_sym_keyword_statement_token1] = ACTIONS(4507), - [aux_sym_keyword_statement_token2] = ACTIONS(4507), - [aux_sym_keyword_statement_token3] = ACTIONS(4507), - [aux_sym_keyword_statement_token4] = ACTIONS(4507), - [aux_sym_keyword_statement_token6] = ACTIONS(4507), - [aux_sym_keyword_statement_token7] = ACTIONS(4507), - [aux_sym_include_statement_token1] = ACTIONS(4507), - [aux_sym_data_statement_token1] = ACTIONS(4507), - [aux_sym_do_loop_statement_token1] = ACTIONS(4507), - [aux_sym__inline_if_statement_token1] = ACTIONS(4507), - [aux_sym_end_if_statement_token1] = ACTIONS(4507), - [aux_sym_elseif_clause_token2] = ACTIONS(4507), - [aux_sym__inline_where_statement_token1] = ACTIONS(4507), - [aux_sym__forall_control_expression_token1] = ACTIONS(4507), - [aux_sym_select_case_statement_token1] = ACTIONS(4507), - [aux_sym_select_case_statement_token3] = ACTIONS(4507), - [aux_sym_select_type_statement_token1] = ACTIONS(4507), - [aux_sym_select_rank_statement_token2] = ACTIONS(4507), - [aux_sym_block_construct_token1] = ACTIONS(4507), - [aux_sym_associate_statement_token1] = ACTIONS(4507), - [aux_sym_format_statement_token1] = ACTIONS(4507), - [aux_sym_print_statement_token1] = ACTIONS(4507), - [aux_sym_open_statement_token1] = ACTIONS(4507), - [aux_sym_close_statement_token1] = ACTIONS(4507), - [aux_sym_inquire_statement_token1] = ACTIONS(4507), - [aux_sym_enum_statement_token1] = ACTIONS(4507), - [aux_sym_file_position_statement_token1] = ACTIONS(4507), - [aux_sym_file_position_statement_token2] = ACTIONS(4507), - [aux_sym_file_position_statement_token3] = ACTIONS(4507), - [aux_sym_file_position_statement_token4] = ACTIONS(4507), - [aux_sym_allocate_statement_token1] = ACTIONS(4507), - [aux_sym_entry_statement_token1] = ACTIONS(4507), - [aux_sym_logical_expression_token5] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_LPAREN_SLASH] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [aux_sym_boolean_literal_token1] = ACTIONS(4509), - [aux_sym_boolean_literal_token2] = ACTIONS(4509), - [aux_sym_null_literal_token1] = ACTIONS(4507), - [aux_sym_coarray_statement_token1] = ACTIONS(4507), - [aux_sym_coarray_statement_token2] = ACTIONS(4507), - [aux_sym_coarray_statement_token6] = ACTIONS(4507), - [aux_sym_coarray_statement_token8] = ACTIONS(4507), - [aux_sym_coarray_statement_token11] = ACTIONS(4507), - [aux_sym_coarray_statement_token12] = ACTIONS(4507), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4507), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4507), - [aux_sym_identifier_token1] = ACTIONS(4507), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4509), - [sym__float_literal] = ACTIONS(4509), - [sym__boz_literal] = ACTIONS(4509), - [sym__string_literal] = ACTIONS(4509), - [sym__string_literal_kind] = ACTIONS(4509), - }, - [944] = { - [aux_sym_preproc_include_token1] = ACTIONS(4515), - [aux_sym_preproc_def_token1] = ACTIONS(4515), - [aux_sym_preproc_if_token1] = ACTIONS(4515), - [aux_sym_preproc_if_token2] = ACTIONS(4515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4515), - [sym_preproc_directive] = ACTIONS(4515), - [anon_sym_LPAREN2] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4515), - [aux_sym_end_program_statement_token1] = ACTIONS(4515), - [aux_sym_end_program_statement_token2] = ACTIONS(4515), - [aux_sym_module_statement_token1] = ACTIONS(4515), - [aux_sym_submodule_statement_token1] = ACTIONS(4515), - [aux_sym_interface_statement_token1] = ACTIONS(4515), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4515), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4515), - [aux_sym_subroutine_statement_token1] = ACTIONS(4515), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4515), - [aux_sym_function_statement_token1] = ACTIONS(4515), - [aux_sym_language_binding_token1] = ACTIONS(4515), - [aux_sym_procedure_attributes_token1] = ACTIONS(4515), - [aux_sym_procedure_attributes_token3] = ACTIONS(4515), - [aux_sym_contains_statement_token1] = ACTIONS(4515), - [aux_sym_use_statement_token1] = ACTIONS(4515), - [aux_sym_use_statement_token2] = ACTIONS(4515), - [aux_sym_implicit_statement_token1] = ACTIONS(4515), - [aux_sym_implicit_statement_token3] = ACTIONS(4515), - [aux_sym_implicit_statement_token4] = ACTIONS(4515), - [aux_sym_save_statement_token1] = ACTIONS(4515), - [aux_sym_private_statement_token1] = ACTIONS(4515), - [aux_sym_public_statement_token1] = ACTIONS(4515), - [aux_sym_namelist_statement_token1] = ACTIONS(4515), - [aux_sym_common_statement_token1] = ACTIONS(4515), - [aux_sym_import_statement_token1] = ACTIONS(4515), - [aux_sym_derived_type_definition_token1] = ACTIONS(4515), - [aux_sym_abstract_specifier_token1] = ACTIONS(4515), - [aux_sym_procedure_attribute_token6] = ACTIONS(4515), - [aux_sym_variable_attributes_token1] = ACTIONS(4515), - [aux_sym_variable_attributes_token2] = ACTIONS(4515), - [aux_sym_variable_attributes_token3] = ACTIONS(4515), - [aux_sym_variable_attributes_token4] = ACTIONS(4515), - [aux_sym_variable_attributes_token5] = ACTIONS(4515), - [aux_sym__intrinsic_type_token1] = ACTIONS(4515), - [aux_sym__intrinsic_type_token2] = ACTIONS(4515), - [aux_sym__intrinsic_type_token3] = ACTIONS(4515), - [aux_sym__intrinsic_type_token4] = ACTIONS(4515), - [aux_sym__intrinsic_type_token6] = ACTIONS(4515), - [aux_sym__intrinsic_type_token7] = ACTIONS(4515), - [aux_sym__intrinsic_type_token8] = ACTIONS(4515), - [aux_sym__intrinsic_type_token9] = ACTIONS(4515), - [aux_sym__intrinsic_type_token10] = ACTIONS(4515), - [aux_sym_derived_type_token1] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4515), - [aux_sym_type_qualifier_token1] = ACTIONS(4515), - [aux_sym_type_qualifier_token2] = ACTIONS(4515), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4515), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4515), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4515), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4515), - [aux_sym_equivalence_statement_token1] = ACTIONS(4515), - [anon_sym_SEMI] = ACTIONS(4517), - [aux_sym_stop_statement_token1] = ACTIONS(4515), - [aux_sym_stop_statement_token2] = ACTIONS(4515), - [aux_sym_subroutine_call_token1] = ACTIONS(4515), - [aux_sym_keyword_statement_token1] = ACTIONS(4515), - [aux_sym_keyword_statement_token2] = ACTIONS(4515), - [aux_sym_keyword_statement_token3] = ACTIONS(4515), - [aux_sym_keyword_statement_token4] = ACTIONS(4515), - [aux_sym_keyword_statement_token6] = ACTIONS(4515), - [aux_sym_keyword_statement_token7] = ACTIONS(4515), - [aux_sym_include_statement_token1] = ACTIONS(4515), - [aux_sym_data_statement_token1] = ACTIONS(4515), - [aux_sym_do_loop_statement_token1] = ACTIONS(4515), - [aux_sym__inline_if_statement_token1] = ACTIONS(4515), - [aux_sym_end_if_statement_token1] = ACTIONS(4515), - [aux_sym_elseif_clause_token2] = ACTIONS(4515), - [aux_sym__inline_where_statement_token1] = ACTIONS(4515), - [aux_sym__forall_control_expression_token1] = ACTIONS(4515), - [aux_sym_select_case_statement_token1] = ACTIONS(4515), - [aux_sym_select_case_statement_token3] = ACTIONS(4515), - [aux_sym_select_type_statement_token1] = ACTIONS(4515), - [aux_sym_select_rank_statement_token2] = ACTIONS(4515), - [aux_sym_block_construct_token1] = ACTIONS(4515), - [aux_sym_associate_statement_token1] = ACTIONS(4515), - [aux_sym_format_statement_token1] = ACTIONS(4515), - [aux_sym_print_statement_token1] = ACTIONS(4515), - [aux_sym_open_statement_token1] = ACTIONS(4515), - [aux_sym_close_statement_token1] = ACTIONS(4515), - [aux_sym_inquire_statement_token1] = ACTIONS(4515), - [aux_sym_enum_statement_token1] = ACTIONS(4515), - [aux_sym_file_position_statement_token1] = ACTIONS(4515), - [aux_sym_file_position_statement_token2] = ACTIONS(4515), - [aux_sym_file_position_statement_token3] = ACTIONS(4515), - [aux_sym_file_position_statement_token4] = ACTIONS(4515), - [aux_sym_allocate_statement_token1] = ACTIONS(4515), - [aux_sym_entry_statement_token1] = ACTIONS(4515), - [aux_sym_logical_expression_token5] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4515), - [anon_sym_LPAREN_SLASH] = ACTIONS(4517), - [anon_sym_LBRACK] = ACTIONS(4517), - [aux_sym_boolean_literal_token1] = ACTIONS(4517), - [aux_sym_boolean_literal_token2] = ACTIONS(4517), - [aux_sym_null_literal_token1] = ACTIONS(4515), - [aux_sym_coarray_statement_token1] = ACTIONS(4515), - [aux_sym_coarray_statement_token2] = ACTIONS(4515), - [aux_sym_coarray_statement_token6] = ACTIONS(4515), - [aux_sym_coarray_statement_token8] = ACTIONS(4515), - [aux_sym_coarray_statement_token11] = ACTIONS(4515), - [aux_sym_coarray_statement_token12] = ACTIONS(4515), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4515), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4515), - [aux_sym_identifier_token1] = ACTIONS(4515), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4517), - [sym__float_literal] = ACTIONS(4517), - [sym__boz_literal] = ACTIONS(4517), - [sym__string_literal] = ACTIONS(4517), - [sym__string_literal_kind] = ACTIONS(4517), - }, - [945] = { - [aux_sym_preproc_include_token1] = ACTIONS(4347), - [aux_sym_preproc_def_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token2] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), - [sym_preproc_directive] = ACTIONS(4347), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token2] = ACTIONS(4347), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4347), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4347), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token3] = ACTIONS(4347), - [aux_sym_contains_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token2] = ACTIONS(4347), - [aux_sym_implicit_statement_token1] = ACTIONS(4347), - [aux_sym_implicit_statement_token3] = ACTIONS(4347), - [aux_sym_implicit_statement_token4] = ACTIONS(4347), - [aux_sym_save_statement_token1] = ACTIONS(4347), - [aux_sym_private_statement_token1] = ACTIONS(4347), - [aux_sym_public_statement_token1] = ACTIONS(4347), - [aux_sym_namelist_statement_token1] = ACTIONS(4347), - [aux_sym_common_statement_token1] = ACTIONS(4347), - [aux_sym_import_statement_token1] = ACTIONS(4347), - [aux_sym_derived_type_definition_token1] = ACTIONS(4347), - [aux_sym_abstract_specifier_token1] = ACTIONS(4347), - [aux_sym_procedure_attribute_token6] = ACTIONS(4347), - [aux_sym_variable_attributes_token1] = ACTIONS(4347), - [aux_sym_variable_attributes_token2] = ACTIONS(4347), - [aux_sym_variable_attributes_token3] = ACTIONS(4347), - [aux_sym_variable_attributes_token4] = ACTIONS(4347), - [aux_sym_variable_attributes_token5] = ACTIONS(4347), - [aux_sym__intrinsic_type_token1] = ACTIONS(4347), - [aux_sym__intrinsic_type_token2] = ACTIONS(4347), - [aux_sym__intrinsic_type_token3] = ACTIONS(4347), - [aux_sym__intrinsic_type_token4] = ACTIONS(4347), - [aux_sym__intrinsic_type_token6] = ACTIONS(4347), - [aux_sym__intrinsic_type_token7] = ACTIONS(4347), - [aux_sym__intrinsic_type_token8] = ACTIONS(4347), - [aux_sym__intrinsic_type_token9] = ACTIONS(4347), - [aux_sym__intrinsic_type_token10] = ACTIONS(4347), - [aux_sym_derived_type_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4347), - [aux_sym_type_qualifier_token1] = ACTIONS(4347), - [aux_sym_type_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4351), - [aux_sym_stop_statement_token1] = ACTIONS(4347), - [aux_sym_stop_statement_token2] = ACTIONS(4347), - [aux_sym_subroutine_call_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token2] = ACTIONS(4347), - [aux_sym_keyword_statement_token3] = ACTIONS(4347), - [aux_sym_keyword_statement_token4] = ACTIONS(4347), - [aux_sym_keyword_statement_token6] = ACTIONS(4347), - [aux_sym_keyword_statement_token7] = ACTIONS(4347), - [aux_sym_include_statement_token1] = ACTIONS(4347), - [aux_sym_data_statement_token1] = ACTIONS(4347), - [aux_sym_do_loop_statement_token1] = ACTIONS(4347), - [aux_sym__inline_if_statement_token1] = ACTIONS(4347), - [aux_sym_end_if_statement_token1] = ACTIONS(4347), - [aux_sym_elseif_clause_token2] = ACTIONS(4347), - [aux_sym__inline_where_statement_token1] = ACTIONS(4347), - [aux_sym__forall_control_expression_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token3] = ACTIONS(4347), - [aux_sym_select_type_statement_token1] = ACTIONS(4347), - [aux_sym_select_rank_statement_token2] = ACTIONS(4347), - [aux_sym_block_construct_token1] = ACTIONS(4347), - [aux_sym_associate_statement_token1] = ACTIONS(4347), - [aux_sym_format_statement_token1] = ACTIONS(4347), - [aux_sym_print_statement_token1] = ACTIONS(4347), - [aux_sym_open_statement_token1] = ACTIONS(4347), - [aux_sym_close_statement_token1] = ACTIONS(4347), - [aux_sym_inquire_statement_token1] = ACTIONS(4347), - [aux_sym_enum_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token2] = ACTIONS(4347), - [aux_sym_file_position_statement_token3] = ACTIONS(4347), - [aux_sym_file_position_statement_token4] = ACTIONS(4347), - [aux_sym_allocate_statement_token1] = ACTIONS(4347), - [aux_sym_entry_statement_token1] = ACTIONS(4347), - [aux_sym_logical_expression_token5] = ACTIONS(4351), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_LPAREN_SLASH] = ACTIONS(4351), - [anon_sym_LBRACK] = ACTIONS(4351), - [aux_sym_boolean_literal_token1] = ACTIONS(4351), - [aux_sym_boolean_literal_token2] = ACTIONS(4351), - [aux_sym_null_literal_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token2] = ACTIONS(4347), - [aux_sym_coarray_statement_token6] = ACTIONS(4347), - [aux_sym_coarray_statement_token8] = ACTIONS(4347), - [aux_sym_coarray_statement_token11] = ACTIONS(4347), - [aux_sym_coarray_statement_token12] = ACTIONS(4347), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4347), - [aux_sym_identifier_token1] = ACTIONS(4347), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4351), - [sym__float_literal] = ACTIONS(4351), - [sym__boz_literal] = ACTIONS(4351), - [sym__string_literal] = ACTIONS(4351), - [sym__string_literal_kind] = ACTIONS(4351), - }, - [946] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token2] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4461), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_end_program_statement_token2] = ACTIONS(4461), - [aux_sym_module_statement_token1] = ACTIONS(4461), - [aux_sym_submodule_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_subroutine_statement_token1] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_function_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), - }, - [947] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token2] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4481), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_end_program_statement_token2] = ACTIONS(4481), - [aux_sym_module_statement_token1] = ACTIONS(4481), - [aux_sym_submodule_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_subroutine_statement_token1] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_function_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), - }, - [948] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token2] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), + [944] = { + [aux_sym_preproc_include_token1] = ACTIONS(4487), + [aux_sym_preproc_def_token1] = ACTIONS(4487), + [aux_sym_preproc_if_token1] = ACTIONS(4487), + [aux_sym_preproc_if_token2] = ACTIONS(4487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), + [sym_preproc_directive] = ACTIONS(4487), + [anon_sym_LPAREN2] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), [anon_sym_AMP] = ACTIONS(21), [aux_sym_program_statement_token1] = ACTIONS(4487), [aux_sym_end_program_statement_token1] = ACTIONS(4487), @@ -218434,809 +217894,2294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4489), [sym__string_literal_kind] = ACTIONS(4489), }, - [949] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token2] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_LPAREN2] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), + [945] = { + [aux_sym_preproc_include_token1] = ACTIONS(4531), + [aux_sym_preproc_def_token1] = ACTIONS(4531), + [aux_sym_preproc_if_token1] = ACTIONS(4531), + [aux_sym_preproc_if_token2] = ACTIONS(4531), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4531), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4531), + [sym_preproc_directive] = ACTIONS(4531), + [anon_sym_LPAREN2] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4533), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4619), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_end_program_statement_token2] = ACTIONS(4619), - [aux_sym_module_statement_token1] = ACTIONS(4619), - [aux_sym_submodule_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_subroutine_statement_token1] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_function_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4619), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4619), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4619), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_subroutine_call_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_keyword_statement_token4] = ACTIONS(4619), - [aux_sym_keyword_statement_token6] = ACTIONS(4619), - [aux_sym_keyword_statement_token7] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym_do_loop_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym__inline_where_statement_token1] = ACTIONS(4619), - [aux_sym__forall_control_expression_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token3] = ACTIONS(4619), - [aux_sym_select_type_statement_token1] = ACTIONS(4619), - [aux_sym_select_rank_statement_token2] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_associate_statement_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_print_statement_token1] = ACTIONS(4619), - [aux_sym_open_statement_token1] = ACTIONS(4619), - [aux_sym_close_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token2] = ACTIONS(4619), - [aux_sym_file_position_statement_token3] = ACTIONS(4619), - [aux_sym_file_position_statement_token4] = ACTIONS(4619), - [aux_sym_allocate_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_logical_expression_token5] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_LPAREN_SLASH] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [aux_sym_boolean_literal_token1] = ACTIONS(4621), - [aux_sym_boolean_literal_token2] = ACTIONS(4621), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), + [aux_sym_program_statement_token1] = ACTIONS(4531), + [aux_sym_end_program_statement_token1] = ACTIONS(4531), + [aux_sym_end_program_statement_token2] = ACTIONS(4531), + [aux_sym_module_statement_token1] = ACTIONS(4531), + [aux_sym_submodule_statement_token1] = ACTIONS(4531), + [aux_sym_interface_statement_token1] = ACTIONS(4531), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4531), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4531), + [aux_sym_subroutine_statement_token1] = ACTIONS(4531), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4531), + [aux_sym_function_statement_token1] = ACTIONS(4531), + [aux_sym_language_binding_token1] = ACTIONS(4531), + [aux_sym_procedure_attributes_token1] = ACTIONS(4531), + [aux_sym_procedure_attributes_token3] = ACTIONS(4531), + [aux_sym_contains_statement_token1] = ACTIONS(4531), + [aux_sym_use_statement_token1] = ACTIONS(4531), + [aux_sym_use_statement_token2] = ACTIONS(4531), + [aux_sym_implicit_statement_token1] = ACTIONS(4531), + [aux_sym_implicit_statement_token3] = ACTIONS(4531), + [aux_sym_implicit_statement_token4] = ACTIONS(4531), + [aux_sym_save_statement_token1] = ACTIONS(4531), + [aux_sym_private_statement_token1] = ACTIONS(4531), + [aux_sym_public_statement_token1] = ACTIONS(4531), + [aux_sym_namelist_statement_token1] = ACTIONS(4531), + [aux_sym_common_statement_token1] = ACTIONS(4531), + [aux_sym_import_statement_token1] = ACTIONS(4531), + [aux_sym_derived_type_definition_token1] = ACTIONS(4531), + [aux_sym_abstract_specifier_token1] = ACTIONS(4531), + [aux_sym_procedure_attribute_token6] = ACTIONS(4531), + [aux_sym_variable_attributes_token1] = ACTIONS(4531), + [aux_sym_variable_attributes_token2] = ACTIONS(4531), + [aux_sym_variable_attributes_token3] = ACTIONS(4531), + [aux_sym_variable_attributes_token4] = ACTIONS(4531), + [aux_sym_variable_attributes_token5] = ACTIONS(4531), + [aux_sym__intrinsic_type_token1] = ACTIONS(4531), + [aux_sym__intrinsic_type_token2] = ACTIONS(4531), + [aux_sym__intrinsic_type_token3] = ACTIONS(4531), + [aux_sym__intrinsic_type_token4] = ACTIONS(4531), + [aux_sym__intrinsic_type_token6] = ACTIONS(4531), + [aux_sym__intrinsic_type_token7] = ACTIONS(4531), + [aux_sym__intrinsic_type_token8] = ACTIONS(4531), + [aux_sym__intrinsic_type_token9] = ACTIONS(4531), + [aux_sym__intrinsic_type_token10] = ACTIONS(4531), + [aux_sym_derived_type_token1] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4531), + [aux_sym_type_qualifier_token1] = ACTIONS(4531), + [aux_sym_type_qualifier_token2] = ACTIONS(4531), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4531), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4531), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4531), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4531), + [aux_sym_equivalence_statement_token1] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [aux_sym_stop_statement_token1] = ACTIONS(4531), + [aux_sym_stop_statement_token2] = ACTIONS(4531), + [aux_sym_subroutine_call_token1] = ACTIONS(4531), + [aux_sym_keyword_statement_token1] = ACTIONS(4531), + [aux_sym_keyword_statement_token2] = ACTIONS(4531), + [aux_sym_keyword_statement_token3] = ACTIONS(4531), + [aux_sym_keyword_statement_token4] = ACTIONS(4531), + [aux_sym_keyword_statement_token6] = ACTIONS(4531), + [aux_sym_keyword_statement_token7] = ACTIONS(4531), + [aux_sym_include_statement_token1] = ACTIONS(4531), + [aux_sym_data_statement_token1] = ACTIONS(4531), + [aux_sym_do_loop_statement_token1] = ACTIONS(4531), + [aux_sym__inline_if_statement_token1] = ACTIONS(4531), + [aux_sym_end_if_statement_token1] = ACTIONS(4531), + [aux_sym_elseif_clause_token2] = ACTIONS(4531), + [aux_sym__inline_where_statement_token1] = ACTIONS(4531), + [aux_sym__forall_control_expression_token1] = ACTIONS(4531), + [aux_sym_select_case_statement_token1] = ACTIONS(4531), + [aux_sym_select_case_statement_token3] = ACTIONS(4531), + [aux_sym_select_type_statement_token1] = ACTIONS(4531), + [aux_sym_select_rank_statement_token2] = ACTIONS(4531), + [aux_sym_block_construct_token1] = ACTIONS(4531), + [aux_sym_associate_statement_token1] = ACTIONS(4531), + [aux_sym_format_statement_token1] = ACTIONS(4531), + [aux_sym_print_statement_token1] = ACTIONS(4531), + [aux_sym_open_statement_token1] = ACTIONS(4531), + [aux_sym_close_statement_token1] = ACTIONS(4531), + [aux_sym_inquire_statement_token1] = ACTIONS(4531), + [aux_sym_enum_statement_token1] = ACTIONS(4531), + [aux_sym_file_position_statement_token1] = ACTIONS(4531), + [aux_sym_file_position_statement_token2] = ACTIONS(4531), + [aux_sym_file_position_statement_token3] = ACTIONS(4531), + [aux_sym_file_position_statement_token4] = ACTIONS(4531), + [aux_sym_allocate_statement_token1] = ACTIONS(4531), + [aux_sym_entry_statement_token1] = ACTIONS(4531), + [aux_sym_logical_expression_token5] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_LPAREN_SLASH] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [aux_sym_boolean_literal_token1] = ACTIONS(4533), + [aux_sym_boolean_literal_token2] = ACTIONS(4533), + [aux_sym_null_literal_token1] = ACTIONS(4531), + [aux_sym_coarray_statement_token1] = ACTIONS(4531), + [aux_sym_coarray_statement_token2] = ACTIONS(4531), + [aux_sym_coarray_statement_token6] = ACTIONS(4531), + [aux_sym_coarray_statement_token8] = ACTIONS(4531), + [aux_sym_coarray_statement_token11] = ACTIONS(4531), + [aux_sym_coarray_statement_token12] = ACTIONS(4531), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4531), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4531), + [aux_sym_identifier_token1] = ACTIONS(4531), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - [sym__float_literal] = ACTIONS(4621), - [sym__boz_literal] = ACTIONS(4621), - [sym__string_literal] = ACTIONS(4621), - [sym__string_literal_kind] = ACTIONS(4621), + [sym__integer_literal] = ACTIONS(4533), + [sym__float_literal] = ACTIONS(4533), + [sym__boz_literal] = ACTIONS(4533), + [sym__string_literal] = ACTIONS(4533), + [sym__string_literal_kind] = ACTIONS(4533), }, - [950] = { - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token2] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), + [946] = { + [aux_sym_preproc_include_token1] = ACTIONS(4545), + [aux_sym_preproc_def_token1] = ACTIONS(4545), + [aux_sym_preproc_if_token1] = ACTIONS(4545), + [aux_sym_preproc_if_token2] = ACTIONS(4545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4545), + [sym_preproc_directive] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4545), + [aux_sym_end_program_statement_token1] = ACTIONS(4545), + [aux_sym_end_program_statement_token2] = ACTIONS(4545), + [aux_sym_module_statement_token1] = ACTIONS(4545), + [aux_sym_submodule_statement_token1] = ACTIONS(4545), + [aux_sym_interface_statement_token1] = ACTIONS(4545), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4545), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4545), + [aux_sym_subroutine_statement_token1] = ACTIONS(4545), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4545), + [aux_sym_function_statement_token1] = ACTIONS(4545), + [aux_sym_language_binding_token1] = ACTIONS(4545), + [aux_sym_procedure_attributes_token1] = ACTIONS(4545), + [aux_sym_procedure_attributes_token3] = ACTIONS(4545), + [aux_sym_contains_statement_token1] = ACTIONS(4545), + [aux_sym_use_statement_token1] = ACTIONS(4545), + [aux_sym_use_statement_token2] = ACTIONS(4545), + [aux_sym_implicit_statement_token1] = ACTIONS(4545), + [aux_sym_implicit_statement_token3] = ACTIONS(4545), + [aux_sym_implicit_statement_token4] = ACTIONS(4545), + [aux_sym_save_statement_token1] = ACTIONS(4545), + [aux_sym_private_statement_token1] = ACTIONS(4545), + [aux_sym_public_statement_token1] = ACTIONS(4545), + [aux_sym_namelist_statement_token1] = ACTIONS(4545), + [aux_sym_common_statement_token1] = ACTIONS(4545), + [aux_sym_import_statement_token1] = ACTIONS(4545), + [aux_sym_derived_type_definition_token1] = ACTIONS(4545), + [aux_sym_abstract_specifier_token1] = ACTIONS(4545), + [aux_sym_procedure_attribute_token6] = ACTIONS(4545), + [aux_sym_variable_attributes_token1] = ACTIONS(4545), + [aux_sym_variable_attributes_token2] = ACTIONS(4545), + [aux_sym_variable_attributes_token3] = ACTIONS(4545), + [aux_sym_variable_attributes_token4] = ACTIONS(4545), + [aux_sym_variable_attributes_token5] = ACTIONS(4545), + [aux_sym__intrinsic_type_token1] = ACTIONS(4545), + [aux_sym__intrinsic_type_token2] = ACTIONS(4545), + [aux_sym__intrinsic_type_token3] = ACTIONS(4545), + [aux_sym__intrinsic_type_token4] = ACTIONS(4545), + [aux_sym__intrinsic_type_token6] = ACTIONS(4545), + [aux_sym__intrinsic_type_token7] = ACTIONS(4545), + [aux_sym__intrinsic_type_token8] = ACTIONS(4545), + [aux_sym__intrinsic_type_token9] = ACTIONS(4545), + [aux_sym__intrinsic_type_token10] = ACTIONS(4545), + [aux_sym_derived_type_token1] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4545), + [aux_sym_type_qualifier_token1] = ACTIONS(4545), + [aux_sym_type_qualifier_token2] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4545), + [aux_sym_equivalence_statement_token1] = ACTIONS(4545), + [anon_sym_SEMI] = ACTIONS(4547), + [aux_sym_stop_statement_token1] = ACTIONS(4545), + [aux_sym_stop_statement_token2] = ACTIONS(4545), + [aux_sym_subroutine_call_token1] = ACTIONS(4545), + [aux_sym_keyword_statement_token1] = ACTIONS(4545), + [aux_sym_keyword_statement_token2] = ACTIONS(4545), + [aux_sym_keyword_statement_token3] = ACTIONS(4545), + [aux_sym_keyword_statement_token4] = ACTIONS(4545), + [aux_sym_keyword_statement_token6] = ACTIONS(4545), + [aux_sym_keyword_statement_token7] = ACTIONS(4545), + [aux_sym_include_statement_token1] = ACTIONS(4545), + [aux_sym_data_statement_token1] = ACTIONS(4545), + [aux_sym_do_loop_statement_token1] = ACTIONS(4545), + [aux_sym__inline_if_statement_token1] = ACTIONS(4545), + [aux_sym_end_if_statement_token1] = ACTIONS(4545), + [aux_sym_elseif_clause_token2] = ACTIONS(4545), + [aux_sym__inline_where_statement_token1] = ACTIONS(4545), + [aux_sym__forall_control_expression_token1] = ACTIONS(4545), + [aux_sym_select_case_statement_token1] = ACTIONS(4545), + [aux_sym_select_case_statement_token3] = ACTIONS(4545), + [aux_sym_select_type_statement_token1] = ACTIONS(4545), + [aux_sym_select_rank_statement_token2] = ACTIONS(4545), + [aux_sym_block_construct_token1] = ACTIONS(4545), + [aux_sym_associate_statement_token1] = ACTIONS(4545), + [aux_sym_format_statement_token1] = ACTIONS(4545), + [aux_sym_print_statement_token1] = ACTIONS(4545), + [aux_sym_open_statement_token1] = ACTIONS(4545), + [aux_sym_close_statement_token1] = ACTIONS(4545), + [aux_sym_inquire_statement_token1] = ACTIONS(4545), + [aux_sym_enum_statement_token1] = ACTIONS(4545), + [aux_sym_file_position_statement_token1] = ACTIONS(4545), + [aux_sym_file_position_statement_token2] = ACTIONS(4545), + [aux_sym_file_position_statement_token3] = ACTIONS(4545), + [aux_sym_file_position_statement_token4] = ACTIONS(4545), + [aux_sym_allocate_statement_token1] = ACTIONS(4545), + [aux_sym_entry_statement_token1] = ACTIONS(4545), + [aux_sym_logical_expression_token5] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4545), + [anon_sym_LPAREN_SLASH] = ACTIONS(4547), + [anon_sym_LBRACK] = ACTIONS(4547), + [aux_sym_boolean_literal_token1] = ACTIONS(4547), + [aux_sym_boolean_literal_token2] = ACTIONS(4547), + [aux_sym_null_literal_token1] = ACTIONS(4545), + [aux_sym_coarray_statement_token1] = ACTIONS(4545), + [aux_sym_coarray_statement_token2] = ACTIONS(4545), + [aux_sym_coarray_statement_token6] = ACTIONS(4545), + [aux_sym_coarray_statement_token8] = ACTIONS(4545), + [aux_sym_coarray_statement_token11] = ACTIONS(4545), + [aux_sym_coarray_statement_token12] = ACTIONS(4545), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4545), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4545), + [aux_sym_identifier_token1] = ACTIONS(4545), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4547), + [sym__float_literal] = ACTIONS(4547), + [sym__boz_literal] = ACTIONS(4547), + [sym__string_literal] = ACTIONS(4547), + [sym__string_literal_kind] = ACTIONS(4547), + }, + [947] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4511), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_end_program_statement_token2] = ACTIONS(4511), - [aux_sym_module_statement_token1] = ACTIONS(4511), - [aux_sym_submodule_statement_token1] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_subroutine_statement_token1] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_function_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_contains_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4511), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4511), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4511), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [anon_sym_SEMI] = ACTIONS(4513), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_subroutine_call_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_keyword_statement_token4] = ACTIONS(4511), - [aux_sym_keyword_statement_token6] = ACTIONS(4511), - [aux_sym_keyword_statement_token7] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym_do_loop_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym__inline_where_statement_token1] = ACTIONS(4511), - [aux_sym__forall_control_expression_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token3] = ACTIONS(4511), - [aux_sym_select_type_statement_token1] = ACTIONS(4511), - [aux_sym_select_rank_statement_token2] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_associate_statement_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_print_statement_token1] = ACTIONS(4511), - [aux_sym_open_statement_token1] = ACTIONS(4511), - [aux_sym_close_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token2] = ACTIONS(4511), - [aux_sym_file_position_statement_token3] = ACTIONS(4511), - [aux_sym_file_position_statement_token4] = ACTIONS(4511), - [aux_sym_allocate_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_logical_expression_token5] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4511), - [anon_sym_LPAREN_SLASH] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [aux_sym_boolean_literal_token1] = ACTIONS(4513), - [aux_sym_boolean_literal_token2] = ACTIONS(4513), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), - [sym__float_literal] = ACTIONS(4513), - [sym__boz_literal] = ACTIONS(4513), - [sym__string_literal] = ACTIONS(4513), - [sym__string_literal_kind] = ACTIONS(4513), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [951] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token2] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4547), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_end_program_statement_token2] = ACTIONS(4547), - [aux_sym_module_statement_token1] = ACTIONS(4547), - [aux_sym_submodule_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_subroutine_statement_token1] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_function_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), - }, - [952] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token2] = ACTIONS(4559), - [aux_sym_module_statement_token1] = ACTIONS(4559), - [aux_sym_submodule_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_subroutine_statement_token1] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_function_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [948] = { + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4285), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token2] = ACTIONS(4285), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4285), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4285), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token3] = ACTIONS(4285), + [aux_sym_contains_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token2] = ACTIONS(4285), + [aux_sym_implicit_statement_token1] = ACTIONS(4285), + [aux_sym_implicit_statement_token3] = ACTIONS(4285), + [aux_sym_implicit_statement_token4] = ACTIONS(4285), + [aux_sym_save_statement_token1] = ACTIONS(4285), + [aux_sym_private_statement_token1] = ACTIONS(4285), + [aux_sym_public_statement_token1] = ACTIONS(4285), + [aux_sym_namelist_statement_token1] = ACTIONS(4285), + [aux_sym_common_statement_token1] = ACTIONS(4285), + [aux_sym_import_statement_token1] = ACTIONS(4285), + [aux_sym_derived_type_definition_token1] = ACTIONS(4285), + [aux_sym_abstract_specifier_token1] = ACTIONS(4285), + [aux_sym_procedure_attribute_token6] = ACTIONS(4285), + [aux_sym_variable_attributes_token1] = ACTIONS(4285), + [aux_sym_variable_attributes_token2] = ACTIONS(4285), + [aux_sym_variable_attributes_token3] = ACTIONS(4285), + [aux_sym_variable_attributes_token4] = ACTIONS(4285), + [aux_sym_variable_attributes_token5] = ACTIONS(4285), + [aux_sym__intrinsic_type_token1] = ACTIONS(4285), + [aux_sym__intrinsic_type_token2] = ACTIONS(4285), + [aux_sym__intrinsic_type_token3] = ACTIONS(4285), + [aux_sym__intrinsic_type_token4] = ACTIONS(4285), + [aux_sym__intrinsic_type_token6] = ACTIONS(4285), + [aux_sym__intrinsic_type_token7] = ACTIONS(4285), + [aux_sym__intrinsic_type_token8] = ACTIONS(4285), + [aux_sym__intrinsic_type_token9] = ACTIONS(4285), + [aux_sym__intrinsic_type_token10] = ACTIONS(4285), + [aux_sym_derived_type_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4285), + [aux_sym_type_qualifier_token1] = ACTIONS(4285), + [aux_sym_type_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4289), + [aux_sym_stop_statement_token1] = ACTIONS(4285), + [aux_sym_stop_statement_token2] = ACTIONS(4285), + [aux_sym_subroutine_call_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token2] = ACTIONS(4285), + [aux_sym_keyword_statement_token3] = ACTIONS(4285), + [aux_sym_keyword_statement_token4] = ACTIONS(4285), + [aux_sym_keyword_statement_token6] = ACTIONS(4285), + [aux_sym_keyword_statement_token7] = ACTIONS(4285), + [aux_sym_include_statement_token1] = ACTIONS(4285), + [aux_sym_data_statement_token1] = ACTIONS(4285), + [aux_sym_do_loop_statement_token1] = ACTIONS(4285), + [aux_sym__inline_if_statement_token1] = ACTIONS(4285), + [aux_sym_end_if_statement_token1] = ACTIONS(4285), + [aux_sym_elseif_clause_token2] = ACTIONS(4285), + [aux_sym__inline_where_statement_token1] = ACTIONS(4285), + [aux_sym__forall_control_expression_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token3] = ACTIONS(4285), + [aux_sym_select_type_statement_token1] = ACTIONS(4285), + [aux_sym_select_rank_statement_token2] = ACTIONS(4285), + [aux_sym_block_construct_token1] = ACTIONS(4285), + [aux_sym_associate_statement_token1] = ACTIONS(4285), + [aux_sym_format_statement_token1] = ACTIONS(4285), + [aux_sym_print_statement_token1] = ACTIONS(4285), + [aux_sym_open_statement_token1] = ACTIONS(4285), + [aux_sym_close_statement_token1] = ACTIONS(4285), + [aux_sym_inquire_statement_token1] = ACTIONS(4285), + [aux_sym_enum_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token2] = ACTIONS(4285), + [aux_sym_file_position_statement_token3] = ACTIONS(4285), + [aux_sym_file_position_statement_token4] = ACTIONS(4285), + [aux_sym_allocate_statement_token1] = ACTIONS(4285), + [aux_sym_entry_statement_token1] = ACTIONS(4285), + [aux_sym_logical_expression_token5] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4285), + [anon_sym_LPAREN_SLASH] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [aux_sym_boolean_literal_token1] = ACTIONS(4289), + [aux_sym_boolean_literal_token2] = ACTIONS(4289), + [aux_sym_null_literal_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token2] = ACTIONS(4285), + [aux_sym_coarray_statement_token6] = ACTIONS(4285), + [aux_sym_coarray_statement_token8] = ACTIONS(4285), + [aux_sym_coarray_statement_token11] = ACTIONS(4285), + [aux_sym_coarray_statement_token12] = ACTIONS(4285), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4285), + [aux_sym_identifier_token1] = ACTIONS(4285), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4289), + [sym__float_literal] = ACTIONS(4289), + [sym__boz_literal] = ACTIONS(4289), + [sym__string_literal] = ACTIONS(4289), + [sym__string_literal_kind] = ACTIONS(4289), }, - [953] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token2] = ACTIONS(4567), - [aux_sym_module_statement_token1] = ACTIONS(4567), - [aux_sym_submodule_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_subroutine_statement_token1] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_function_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [949] = { + [aux_sym_preproc_include_token1] = ACTIONS(4419), + [aux_sym_preproc_def_token1] = ACTIONS(4419), + [aux_sym_preproc_if_token1] = ACTIONS(4419), + [aux_sym_preproc_if_token2] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4419), + [sym_preproc_directive] = ACTIONS(4419), + [anon_sym_LPAREN2] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4419), + [aux_sym_end_program_statement_token1] = ACTIONS(4419), + [aux_sym_end_program_statement_token2] = ACTIONS(4419), + [aux_sym_module_statement_token1] = ACTIONS(4419), + [aux_sym_submodule_statement_token1] = ACTIONS(4419), + [aux_sym_interface_statement_token1] = ACTIONS(4419), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4419), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4419), + [aux_sym_subroutine_statement_token1] = ACTIONS(4419), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4419), + [aux_sym_function_statement_token1] = ACTIONS(4419), + [aux_sym_language_binding_token1] = ACTIONS(4419), + [aux_sym_procedure_attributes_token1] = ACTIONS(4419), + [aux_sym_procedure_attributes_token3] = ACTIONS(4419), + [aux_sym_contains_statement_token1] = ACTIONS(4419), + [aux_sym_use_statement_token1] = ACTIONS(4419), + [aux_sym_use_statement_token2] = ACTIONS(4419), + [aux_sym_implicit_statement_token1] = ACTIONS(4419), + [aux_sym_implicit_statement_token3] = ACTIONS(4419), + [aux_sym_implicit_statement_token4] = ACTIONS(4419), + [aux_sym_save_statement_token1] = ACTIONS(4419), + [aux_sym_private_statement_token1] = ACTIONS(4419), + [aux_sym_public_statement_token1] = ACTIONS(4419), + [aux_sym_namelist_statement_token1] = ACTIONS(4419), + [aux_sym_common_statement_token1] = ACTIONS(4419), + [aux_sym_import_statement_token1] = ACTIONS(4419), + [aux_sym_derived_type_definition_token1] = ACTIONS(4419), + [aux_sym_abstract_specifier_token1] = ACTIONS(4419), + [aux_sym_procedure_attribute_token6] = ACTIONS(4419), + [aux_sym_variable_attributes_token1] = ACTIONS(4419), + [aux_sym_variable_attributes_token2] = ACTIONS(4419), + [aux_sym_variable_attributes_token3] = ACTIONS(4419), + [aux_sym_variable_attributes_token4] = ACTIONS(4419), + [aux_sym_variable_attributes_token5] = ACTIONS(4419), + [aux_sym__intrinsic_type_token1] = ACTIONS(4419), + [aux_sym__intrinsic_type_token2] = ACTIONS(4419), + [aux_sym__intrinsic_type_token3] = ACTIONS(4419), + [aux_sym__intrinsic_type_token4] = ACTIONS(4419), + [aux_sym__intrinsic_type_token6] = ACTIONS(4419), + [aux_sym__intrinsic_type_token7] = ACTIONS(4419), + [aux_sym__intrinsic_type_token8] = ACTIONS(4419), + [aux_sym__intrinsic_type_token9] = ACTIONS(4419), + [aux_sym__intrinsic_type_token10] = ACTIONS(4419), + [aux_sym_derived_type_token1] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4419), + [aux_sym_type_qualifier_token1] = ACTIONS(4419), + [aux_sym_type_qualifier_token2] = ACTIONS(4419), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4419), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4419), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4419), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4419), + [aux_sym_equivalence_statement_token1] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [aux_sym_stop_statement_token1] = ACTIONS(4419), + [aux_sym_stop_statement_token2] = ACTIONS(4419), + [aux_sym_subroutine_call_token1] = ACTIONS(4419), + [aux_sym_keyword_statement_token1] = ACTIONS(4419), + [aux_sym_keyword_statement_token2] = ACTIONS(4419), + [aux_sym_keyword_statement_token3] = ACTIONS(4419), + [aux_sym_keyword_statement_token4] = ACTIONS(4419), + [aux_sym_keyword_statement_token6] = ACTIONS(4419), + [aux_sym_keyword_statement_token7] = ACTIONS(4419), + [aux_sym_include_statement_token1] = ACTIONS(4419), + [aux_sym_data_statement_token1] = ACTIONS(4419), + [aux_sym_do_loop_statement_token1] = ACTIONS(4419), + [aux_sym__inline_if_statement_token1] = ACTIONS(4419), + [aux_sym_end_if_statement_token1] = ACTIONS(4419), + [aux_sym_elseif_clause_token2] = ACTIONS(4419), + [aux_sym__inline_where_statement_token1] = ACTIONS(4419), + [aux_sym__forall_control_expression_token1] = ACTIONS(4419), + [aux_sym_select_case_statement_token1] = ACTIONS(4419), + [aux_sym_select_case_statement_token3] = ACTIONS(4419), + [aux_sym_select_type_statement_token1] = ACTIONS(4419), + [aux_sym_select_rank_statement_token2] = ACTIONS(4419), + [aux_sym_block_construct_token1] = ACTIONS(4419), + [aux_sym_associate_statement_token1] = ACTIONS(4419), + [aux_sym_format_statement_token1] = ACTIONS(4419), + [aux_sym_print_statement_token1] = ACTIONS(4419), + [aux_sym_open_statement_token1] = ACTIONS(4419), + [aux_sym_close_statement_token1] = ACTIONS(4419), + [aux_sym_inquire_statement_token1] = ACTIONS(4419), + [aux_sym_enum_statement_token1] = ACTIONS(4419), + [aux_sym_file_position_statement_token1] = ACTIONS(4419), + [aux_sym_file_position_statement_token2] = ACTIONS(4419), + [aux_sym_file_position_statement_token3] = ACTIONS(4419), + [aux_sym_file_position_statement_token4] = ACTIONS(4419), + [aux_sym_allocate_statement_token1] = ACTIONS(4419), + [aux_sym_entry_statement_token1] = ACTIONS(4419), + [aux_sym_logical_expression_token5] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_LPAREN_SLASH] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [aux_sym_boolean_literal_token1] = ACTIONS(4421), + [aux_sym_boolean_literal_token2] = ACTIONS(4421), + [aux_sym_null_literal_token1] = ACTIONS(4419), + [aux_sym_coarray_statement_token1] = ACTIONS(4419), + [aux_sym_coarray_statement_token2] = ACTIONS(4419), + [aux_sym_coarray_statement_token6] = ACTIONS(4419), + [aux_sym_coarray_statement_token8] = ACTIONS(4419), + [aux_sym_coarray_statement_token11] = ACTIONS(4419), + [aux_sym_coarray_statement_token12] = ACTIONS(4419), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4419), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4419), + [aux_sym_identifier_token1] = ACTIONS(4419), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4421), + [sym__float_literal] = ACTIONS(4421), + [sym__boz_literal] = ACTIONS(4421), + [sym__string_literal] = ACTIONS(4421), + [sym__string_literal_kind] = ACTIONS(4421), }, - [954] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [950] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_program_statement_token2] = ACTIONS(4571), - [aux_sym_module_statement_token1] = ACTIONS(4571), - [aux_sym_submodule_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_subroutine_statement_token1] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_function_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), + }, + [951] = { + [aux_sym_preproc_include_token1] = ACTIONS(4443), + [aux_sym_preproc_def_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token2] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), + [sym_preproc_directive] = ACTIONS(4443), + [anon_sym_LPAREN2] = ACTIONS(4443), + [anon_sym_PLUS] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(4445), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token2] = ACTIONS(4443), + [aux_sym_module_statement_token1] = ACTIONS(4443), + [aux_sym_submodule_statement_token1] = ACTIONS(4443), + [aux_sym_interface_statement_token1] = ACTIONS(4443), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), + [aux_sym_subroutine_statement_token1] = ACTIONS(4443), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), + [aux_sym_function_statement_token1] = ACTIONS(4443), + [aux_sym_language_binding_token1] = ACTIONS(4443), + [aux_sym_procedure_attributes_token1] = ACTIONS(4443), + [aux_sym_procedure_attributes_token3] = ACTIONS(4443), + [aux_sym_contains_statement_token1] = ACTIONS(4443), + [aux_sym_use_statement_token1] = ACTIONS(4443), + [aux_sym_use_statement_token2] = ACTIONS(4443), + [aux_sym_implicit_statement_token1] = ACTIONS(4443), + [aux_sym_implicit_statement_token3] = ACTIONS(4443), + [aux_sym_implicit_statement_token4] = ACTIONS(4443), + [aux_sym_save_statement_token1] = ACTIONS(4443), + [aux_sym_private_statement_token1] = ACTIONS(4443), + [aux_sym_public_statement_token1] = ACTIONS(4443), + [aux_sym_namelist_statement_token1] = ACTIONS(4443), + [aux_sym_common_statement_token1] = ACTIONS(4443), + [aux_sym_import_statement_token1] = ACTIONS(4443), + [aux_sym_derived_type_definition_token1] = ACTIONS(4443), + [aux_sym_abstract_specifier_token1] = ACTIONS(4443), + [aux_sym_procedure_attribute_token6] = ACTIONS(4443), + [aux_sym_variable_attributes_token1] = ACTIONS(4443), + [aux_sym_variable_attributes_token2] = ACTIONS(4443), + [aux_sym_variable_attributes_token3] = ACTIONS(4443), + [aux_sym_variable_attributes_token4] = ACTIONS(4443), + [aux_sym_variable_attributes_token5] = ACTIONS(4443), + [aux_sym__intrinsic_type_token1] = ACTIONS(4443), + [aux_sym__intrinsic_type_token2] = ACTIONS(4443), + [aux_sym__intrinsic_type_token3] = ACTIONS(4443), + [aux_sym__intrinsic_type_token4] = ACTIONS(4443), + [aux_sym__intrinsic_type_token6] = ACTIONS(4443), + [aux_sym__intrinsic_type_token7] = ACTIONS(4443), + [aux_sym__intrinsic_type_token8] = ACTIONS(4443), + [aux_sym__intrinsic_type_token9] = ACTIONS(4443), + [aux_sym__intrinsic_type_token10] = ACTIONS(4443), + [aux_sym_derived_type_token1] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), + [aux_sym_type_qualifier_token1] = ACTIONS(4443), + [aux_sym_type_qualifier_token2] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4443), + [aux_sym_equivalence_statement_token1] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4443), + [aux_sym_stop_statement_token2] = ACTIONS(4443), + [aux_sym_subroutine_call_token1] = ACTIONS(4443), + [aux_sym_keyword_statement_token1] = ACTIONS(4443), + [aux_sym_keyword_statement_token2] = ACTIONS(4443), + [aux_sym_keyword_statement_token3] = ACTIONS(4443), + [aux_sym_keyword_statement_token4] = ACTIONS(4443), + [aux_sym_keyword_statement_token6] = ACTIONS(4443), + [aux_sym_keyword_statement_token7] = ACTIONS(4443), + [aux_sym_include_statement_token1] = ACTIONS(4443), + [aux_sym_data_statement_token1] = ACTIONS(4443), + [aux_sym_do_loop_statement_token1] = ACTIONS(4443), + [aux_sym__inline_if_statement_token1] = ACTIONS(4443), + [aux_sym_end_if_statement_token1] = ACTIONS(4443), + [aux_sym_elseif_clause_token2] = ACTIONS(4443), + [aux_sym__inline_where_statement_token1] = ACTIONS(4443), + [aux_sym__forall_control_expression_token1] = ACTIONS(4443), + [aux_sym_select_case_statement_token1] = ACTIONS(4443), + [aux_sym_select_case_statement_token3] = ACTIONS(4443), + [aux_sym_select_type_statement_token1] = ACTIONS(4443), + [aux_sym_select_rank_statement_token2] = ACTIONS(4443), + [aux_sym_block_construct_token1] = ACTIONS(4443), + [aux_sym_associate_statement_token1] = ACTIONS(4443), + [aux_sym_format_statement_token1] = ACTIONS(4443), + [aux_sym_print_statement_token1] = ACTIONS(4443), + [aux_sym_open_statement_token1] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4443), + [aux_sym_inquire_statement_token1] = ACTIONS(4443), + [aux_sym_enum_statement_token1] = ACTIONS(4443), + [aux_sym_file_position_statement_token1] = ACTIONS(4443), + [aux_sym_file_position_statement_token2] = ACTIONS(4443), + [aux_sym_file_position_statement_token3] = ACTIONS(4443), + [aux_sym_file_position_statement_token4] = ACTIONS(4443), + [aux_sym_allocate_statement_token1] = ACTIONS(4443), + [aux_sym_entry_statement_token1] = ACTIONS(4443), + [aux_sym_logical_expression_token5] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_LPAREN_SLASH] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [aux_sym_boolean_literal_token1] = ACTIONS(4445), + [aux_sym_boolean_literal_token2] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4443), + [aux_sym_coarray_statement_token1] = ACTIONS(4443), + [aux_sym_coarray_statement_token2] = ACTIONS(4443), + [aux_sym_coarray_statement_token6] = ACTIONS(4443), + [aux_sym_coarray_statement_token8] = ACTIONS(4443), + [aux_sym_coarray_statement_token11] = ACTIONS(4443), + [aux_sym_coarray_statement_token12] = ACTIONS(4443), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), + [aux_sym_identifier_token1] = ACTIONS(4443), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4445), + [sym__float_literal] = ACTIONS(4445), + [sym__boz_literal] = ACTIONS(4445), + [sym__string_literal] = ACTIONS(4445), + [sym__string_literal_kind] = ACTIONS(4445), + }, + [952] = { + [aux_sym_preproc_include_token1] = ACTIONS(4447), + [aux_sym_preproc_def_token1] = ACTIONS(4447), + [aux_sym_preproc_if_token1] = ACTIONS(4447), + [aux_sym_preproc_if_token2] = ACTIONS(4447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4447), + [sym_preproc_directive] = ACTIONS(4447), + [anon_sym_LPAREN2] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4449), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4447), + [aux_sym_end_program_statement_token1] = ACTIONS(4447), + [aux_sym_end_program_statement_token2] = ACTIONS(4447), + [aux_sym_module_statement_token1] = ACTIONS(4447), + [aux_sym_submodule_statement_token1] = ACTIONS(4447), + [aux_sym_interface_statement_token1] = ACTIONS(4447), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4447), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4447), + [aux_sym_subroutine_statement_token1] = ACTIONS(4447), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4447), + [aux_sym_function_statement_token1] = ACTIONS(4447), + [aux_sym_language_binding_token1] = ACTIONS(4447), + [aux_sym_procedure_attributes_token1] = ACTIONS(4447), + [aux_sym_procedure_attributes_token3] = ACTIONS(4447), + [aux_sym_contains_statement_token1] = ACTIONS(4447), + [aux_sym_use_statement_token1] = ACTIONS(4447), + [aux_sym_use_statement_token2] = ACTIONS(4447), + [aux_sym_implicit_statement_token1] = ACTIONS(4447), + [aux_sym_implicit_statement_token3] = ACTIONS(4447), + [aux_sym_implicit_statement_token4] = ACTIONS(4447), + [aux_sym_save_statement_token1] = ACTIONS(4447), + [aux_sym_private_statement_token1] = ACTIONS(4447), + [aux_sym_public_statement_token1] = ACTIONS(4447), + [aux_sym_namelist_statement_token1] = ACTIONS(4447), + [aux_sym_common_statement_token1] = ACTIONS(4447), + [aux_sym_import_statement_token1] = ACTIONS(4447), + [aux_sym_derived_type_definition_token1] = ACTIONS(4447), + [aux_sym_abstract_specifier_token1] = ACTIONS(4447), + [aux_sym_procedure_attribute_token6] = ACTIONS(4447), + [aux_sym_variable_attributes_token1] = ACTIONS(4447), + [aux_sym_variable_attributes_token2] = ACTIONS(4447), + [aux_sym_variable_attributes_token3] = ACTIONS(4447), + [aux_sym_variable_attributes_token4] = ACTIONS(4447), + [aux_sym_variable_attributes_token5] = ACTIONS(4447), + [aux_sym__intrinsic_type_token1] = ACTIONS(4447), + [aux_sym__intrinsic_type_token2] = ACTIONS(4447), + [aux_sym__intrinsic_type_token3] = ACTIONS(4447), + [aux_sym__intrinsic_type_token4] = ACTIONS(4447), + [aux_sym__intrinsic_type_token6] = ACTIONS(4447), + [aux_sym__intrinsic_type_token7] = ACTIONS(4447), + [aux_sym__intrinsic_type_token8] = ACTIONS(4447), + [aux_sym__intrinsic_type_token9] = ACTIONS(4447), + [aux_sym__intrinsic_type_token10] = ACTIONS(4447), + [aux_sym_derived_type_token1] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4447), + [aux_sym_type_qualifier_token1] = ACTIONS(4447), + [aux_sym_type_qualifier_token2] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4447), + [aux_sym_equivalence_statement_token1] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [aux_sym_stop_statement_token1] = ACTIONS(4447), + [aux_sym_stop_statement_token2] = ACTIONS(4447), + [aux_sym_subroutine_call_token1] = ACTIONS(4447), + [aux_sym_keyword_statement_token1] = ACTIONS(4447), + [aux_sym_keyword_statement_token2] = ACTIONS(4447), + [aux_sym_keyword_statement_token3] = ACTIONS(4447), + [aux_sym_keyword_statement_token4] = ACTIONS(4447), + [aux_sym_keyword_statement_token6] = ACTIONS(4447), + [aux_sym_keyword_statement_token7] = ACTIONS(4447), + [aux_sym_include_statement_token1] = ACTIONS(4447), + [aux_sym_data_statement_token1] = ACTIONS(4447), + [aux_sym_do_loop_statement_token1] = ACTIONS(4447), + [aux_sym__inline_if_statement_token1] = ACTIONS(4447), + [aux_sym_end_if_statement_token1] = ACTIONS(4447), + [aux_sym_elseif_clause_token2] = ACTIONS(4447), + [aux_sym__inline_where_statement_token1] = ACTIONS(4447), + [aux_sym__forall_control_expression_token1] = ACTIONS(4447), + [aux_sym_select_case_statement_token1] = ACTIONS(4447), + [aux_sym_select_case_statement_token3] = ACTIONS(4447), + [aux_sym_select_type_statement_token1] = ACTIONS(4447), + [aux_sym_select_rank_statement_token2] = ACTIONS(4447), + [aux_sym_block_construct_token1] = ACTIONS(4447), + [aux_sym_associate_statement_token1] = ACTIONS(4447), + [aux_sym_format_statement_token1] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_inquire_statement_token1] = ACTIONS(4447), + [aux_sym_enum_statement_token1] = ACTIONS(4447), + [aux_sym_file_position_statement_token1] = ACTIONS(4447), + [aux_sym_file_position_statement_token2] = ACTIONS(4447), + [aux_sym_file_position_statement_token3] = ACTIONS(4447), + [aux_sym_file_position_statement_token4] = ACTIONS(4447), + [aux_sym_allocate_statement_token1] = ACTIONS(4447), + [aux_sym_entry_statement_token1] = ACTIONS(4447), + [aux_sym_logical_expression_token5] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_LPAREN_SLASH] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4449), + [aux_sym_boolean_literal_token2] = ACTIONS(4449), + [aux_sym_null_literal_token1] = ACTIONS(4447), + [aux_sym_coarray_statement_token1] = ACTIONS(4447), + [aux_sym_coarray_statement_token2] = ACTIONS(4447), + [aux_sym_coarray_statement_token6] = ACTIONS(4447), + [aux_sym_coarray_statement_token8] = ACTIONS(4447), + [aux_sym_coarray_statement_token11] = ACTIONS(4447), + [aux_sym_coarray_statement_token12] = ACTIONS(4447), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4447), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4447), + [aux_sym_identifier_token1] = ACTIONS(4447), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4449), + [sym__float_literal] = ACTIONS(4449), + [sym__boz_literal] = ACTIONS(4449), + [sym__string_literal] = ACTIONS(4449), + [sym__string_literal_kind] = ACTIONS(4449), + }, + [953] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [954] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), + }, + [955] = { + [aux_sym_preproc_include_token1] = ACTIONS(4595), + [aux_sym_preproc_def_token1] = ACTIONS(4595), + [aux_sym_preproc_if_token1] = ACTIONS(4595), + [aux_sym_preproc_if_token2] = ACTIONS(4595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4595), + [sym_preproc_directive] = ACTIONS(4595), + [anon_sym_LPAREN2] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4597), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4595), + [aux_sym_end_program_statement_token1] = ACTIONS(4595), + [aux_sym_end_program_statement_token2] = ACTIONS(4595), + [aux_sym_module_statement_token1] = ACTIONS(4595), + [aux_sym_submodule_statement_token1] = ACTIONS(4595), + [aux_sym_interface_statement_token1] = ACTIONS(4595), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4595), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4595), + [aux_sym_subroutine_statement_token1] = ACTIONS(4595), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4595), + [aux_sym_function_statement_token1] = ACTIONS(4595), + [aux_sym_language_binding_token1] = ACTIONS(4595), + [aux_sym_procedure_attributes_token1] = ACTIONS(4595), + [aux_sym_procedure_attributes_token3] = ACTIONS(4595), + [aux_sym_contains_statement_token1] = ACTIONS(4595), + [aux_sym_use_statement_token1] = ACTIONS(4595), + [aux_sym_use_statement_token2] = ACTIONS(4595), + [aux_sym_implicit_statement_token1] = ACTIONS(4595), + [aux_sym_implicit_statement_token3] = ACTIONS(4595), + [aux_sym_implicit_statement_token4] = ACTIONS(4595), + [aux_sym_save_statement_token1] = ACTIONS(4595), + [aux_sym_private_statement_token1] = ACTIONS(4595), + [aux_sym_public_statement_token1] = ACTIONS(4595), + [aux_sym_namelist_statement_token1] = ACTIONS(4595), + [aux_sym_common_statement_token1] = ACTIONS(4595), + [aux_sym_import_statement_token1] = ACTIONS(4595), + [aux_sym_derived_type_definition_token1] = ACTIONS(4595), + [aux_sym_abstract_specifier_token1] = ACTIONS(4595), + [aux_sym_procedure_attribute_token6] = ACTIONS(4595), + [aux_sym_variable_attributes_token1] = ACTIONS(4595), + [aux_sym_variable_attributes_token2] = ACTIONS(4595), + [aux_sym_variable_attributes_token3] = ACTIONS(4595), + [aux_sym_variable_attributes_token4] = ACTIONS(4595), + [aux_sym_variable_attributes_token5] = ACTIONS(4595), + [aux_sym__intrinsic_type_token1] = ACTIONS(4595), + [aux_sym__intrinsic_type_token2] = ACTIONS(4595), + [aux_sym__intrinsic_type_token3] = ACTIONS(4595), + [aux_sym__intrinsic_type_token4] = ACTIONS(4595), + [aux_sym__intrinsic_type_token6] = ACTIONS(4595), + [aux_sym__intrinsic_type_token7] = ACTIONS(4595), + [aux_sym__intrinsic_type_token8] = ACTIONS(4595), + [aux_sym__intrinsic_type_token9] = ACTIONS(4595), + [aux_sym__intrinsic_type_token10] = ACTIONS(4595), + [aux_sym_derived_type_token1] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4595), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4595), + [aux_sym_type_qualifier_token1] = ACTIONS(4595), + [aux_sym_type_qualifier_token2] = ACTIONS(4595), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4595), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4595), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4595), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4595), + [aux_sym_equivalence_statement_token1] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4597), + [aux_sym_stop_statement_token1] = ACTIONS(4595), + [aux_sym_stop_statement_token2] = ACTIONS(4595), + [aux_sym_subroutine_call_token1] = ACTIONS(4595), + [aux_sym_keyword_statement_token1] = ACTIONS(4595), + [aux_sym_keyword_statement_token2] = ACTIONS(4595), + [aux_sym_keyword_statement_token3] = ACTIONS(4595), + [aux_sym_keyword_statement_token4] = ACTIONS(4595), + [aux_sym_keyword_statement_token6] = ACTIONS(4595), + [aux_sym_keyword_statement_token7] = ACTIONS(4595), + [aux_sym_include_statement_token1] = ACTIONS(4595), + [aux_sym_data_statement_token1] = ACTIONS(4595), + [aux_sym_do_loop_statement_token1] = ACTIONS(4595), + [aux_sym__inline_if_statement_token1] = ACTIONS(4595), + [aux_sym_end_if_statement_token1] = ACTIONS(4595), + [aux_sym_elseif_clause_token2] = ACTIONS(4595), + [aux_sym__inline_where_statement_token1] = ACTIONS(4595), + [aux_sym__forall_control_expression_token1] = ACTIONS(4595), + [aux_sym_select_case_statement_token1] = ACTIONS(4595), + [aux_sym_select_case_statement_token3] = ACTIONS(4595), + [aux_sym_select_type_statement_token1] = ACTIONS(4595), + [aux_sym_select_rank_statement_token2] = ACTIONS(4595), + [aux_sym_block_construct_token1] = ACTIONS(4595), + [aux_sym_associate_statement_token1] = ACTIONS(4595), + [aux_sym_format_statement_token1] = ACTIONS(4595), + [aux_sym_print_statement_token1] = ACTIONS(4595), + [aux_sym_open_statement_token1] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4595), + [aux_sym_inquire_statement_token1] = ACTIONS(4595), + [aux_sym_enum_statement_token1] = ACTIONS(4595), + [aux_sym_file_position_statement_token1] = ACTIONS(4595), + [aux_sym_file_position_statement_token2] = ACTIONS(4595), + [aux_sym_file_position_statement_token3] = ACTIONS(4595), + [aux_sym_file_position_statement_token4] = ACTIONS(4595), + [aux_sym_allocate_statement_token1] = ACTIONS(4595), + [aux_sym_entry_statement_token1] = ACTIONS(4595), + [aux_sym_logical_expression_token5] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_LPAREN_SLASH] = ACTIONS(4597), + [anon_sym_LBRACK] = ACTIONS(4597), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [aux_sym_null_literal_token1] = ACTIONS(4595), + [aux_sym_coarray_statement_token1] = ACTIONS(4595), + [aux_sym_coarray_statement_token2] = ACTIONS(4595), + [aux_sym_coarray_statement_token6] = ACTIONS(4595), + [aux_sym_coarray_statement_token8] = ACTIONS(4595), + [aux_sym_coarray_statement_token11] = ACTIONS(4595), + [aux_sym_coarray_statement_token12] = ACTIONS(4595), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4595), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4595), + [aux_sym_identifier_token1] = ACTIONS(4595), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4597), + [sym__float_literal] = ACTIONS(4597), + [sym__boz_literal] = ACTIONS(4597), + [sym__string_literal] = ACTIONS(4597), + [sym__string_literal_kind] = ACTIONS(4597), + }, + [956] = { + [aux_sym_preproc_include_token1] = ACTIONS(4599), + [aux_sym_preproc_def_token1] = ACTIONS(4599), + [aux_sym_preproc_if_token1] = ACTIONS(4599), + [aux_sym_preproc_if_token2] = ACTIONS(4599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4599), + [sym_preproc_directive] = ACTIONS(4599), + [anon_sym_LPAREN2] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4599), + [aux_sym_end_program_statement_token1] = ACTIONS(4599), + [aux_sym_end_program_statement_token2] = ACTIONS(4599), + [aux_sym_module_statement_token1] = ACTIONS(4599), + [aux_sym_submodule_statement_token1] = ACTIONS(4599), + [aux_sym_interface_statement_token1] = ACTIONS(4599), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4599), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4599), + [aux_sym_subroutine_statement_token1] = ACTIONS(4599), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4599), + [aux_sym_function_statement_token1] = ACTIONS(4599), + [aux_sym_language_binding_token1] = ACTIONS(4599), + [aux_sym_procedure_attributes_token1] = ACTIONS(4599), + [aux_sym_procedure_attributes_token3] = ACTIONS(4599), + [aux_sym_contains_statement_token1] = ACTIONS(4599), + [aux_sym_use_statement_token1] = ACTIONS(4599), + [aux_sym_use_statement_token2] = ACTIONS(4599), + [aux_sym_implicit_statement_token1] = ACTIONS(4599), + [aux_sym_implicit_statement_token3] = ACTIONS(4599), + [aux_sym_implicit_statement_token4] = ACTIONS(4599), + [aux_sym_save_statement_token1] = ACTIONS(4599), + [aux_sym_private_statement_token1] = ACTIONS(4599), + [aux_sym_public_statement_token1] = ACTIONS(4599), + [aux_sym_namelist_statement_token1] = ACTIONS(4599), + [aux_sym_common_statement_token1] = ACTIONS(4599), + [aux_sym_import_statement_token1] = ACTIONS(4599), + [aux_sym_derived_type_definition_token1] = ACTIONS(4599), + [aux_sym_abstract_specifier_token1] = ACTIONS(4599), + [aux_sym_procedure_attribute_token6] = ACTIONS(4599), + [aux_sym_variable_attributes_token1] = ACTIONS(4599), + [aux_sym_variable_attributes_token2] = ACTIONS(4599), + [aux_sym_variable_attributes_token3] = ACTIONS(4599), + [aux_sym_variable_attributes_token4] = ACTIONS(4599), + [aux_sym_variable_attributes_token5] = ACTIONS(4599), + [aux_sym__intrinsic_type_token1] = ACTIONS(4599), + [aux_sym__intrinsic_type_token2] = ACTIONS(4599), + [aux_sym__intrinsic_type_token3] = ACTIONS(4599), + [aux_sym__intrinsic_type_token4] = ACTIONS(4599), + [aux_sym__intrinsic_type_token6] = ACTIONS(4599), + [aux_sym__intrinsic_type_token7] = ACTIONS(4599), + [aux_sym__intrinsic_type_token8] = ACTIONS(4599), + [aux_sym__intrinsic_type_token9] = ACTIONS(4599), + [aux_sym__intrinsic_type_token10] = ACTIONS(4599), + [aux_sym_derived_type_token1] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4599), + [aux_sym_type_qualifier_token1] = ACTIONS(4599), + [aux_sym_type_qualifier_token2] = ACTIONS(4599), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4599), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4599), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4599), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4599), + [aux_sym_equivalence_statement_token1] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4601), + [aux_sym_stop_statement_token1] = ACTIONS(4599), + [aux_sym_stop_statement_token2] = ACTIONS(4599), + [aux_sym_subroutine_call_token1] = ACTIONS(4599), + [aux_sym_keyword_statement_token1] = ACTIONS(4599), + [aux_sym_keyword_statement_token2] = ACTIONS(4599), + [aux_sym_keyword_statement_token3] = ACTIONS(4599), + [aux_sym_keyword_statement_token4] = ACTIONS(4599), + [aux_sym_keyword_statement_token6] = ACTIONS(4599), + [aux_sym_keyword_statement_token7] = ACTIONS(4599), + [aux_sym_include_statement_token1] = ACTIONS(4599), + [aux_sym_data_statement_token1] = ACTIONS(4599), + [aux_sym_do_loop_statement_token1] = ACTIONS(4599), + [aux_sym__inline_if_statement_token1] = ACTIONS(4599), + [aux_sym_end_if_statement_token1] = ACTIONS(4599), + [aux_sym_elseif_clause_token2] = ACTIONS(4599), + [aux_sym__inline_where_statement_token1] = ACTIONS(4599), + [aux_sym__forall_control_expression_token1] = ACTIONS(4599), + [aux_sym_select_case_statement_token1] = ACTIONS(4599), + [aux_sym_select_case_statement_token3] = ACTIONS(4599), + [aux_sym_select_type_statement_token1] = ACTIONS(4599), + [aux_sym_select_rank_statement_token2] = ACTIONS(4599), + [aux_sym_block_construct_token1] = ACTIONS(4599), + [aux_sym_associate_statement_token1] = ACTIONS(4599), + [aux_sym_format_statement_token1] = ACTIONS(4599), + [aux_sym_print_statement_token1] = ACTIONS(4599), + [aux_sym_open_statement_token1] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4599), + [aux_sym_inquire_statement_token1] = ACTIONS(4599), + [aux_sym_enum_statement_token1] = ACTIONS(4599), + [aux_sym_file_position_statement_token1] = ACTIONS(4599), + [aux_sym_file_position_statement_token2] = ACTIONS(4599), + [aux_sym_file_position_statement_token3] = ACTIONS(4599), + [aux_sym_file_position_statement_token4] = ACTIONS(4599), + [aux_sym_allocate_statement_token1] = ACTIONS(4599), + [aux_sym_entry_statement_token1] = ACTIONS(4599), + [aux_sym_logical_expression_token5] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4599), + [anon_sym_LPAREN_SLASH] = ACTIONS(4601), + [anon_sym_LBRACK] = ACTIONS(4601), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [aux_sym_null_literal_token1] = ACTIONS(4599), + [aux_sym_coarray_statement_token1] = ACTIONS(4599), + [aux_sym_coarray_statement_token2] = ACTIONS(4599), + [aux_sym_coarray_statement_token6] = ACTIONS(4599), + [aux_sym_coarray_statement_token8] = ACTIONS(4599), + [aux_sym_coarray_statement_token11] = ACTIONS(4599), + [aux_sym_coarray_statement_token12] = ACTIONS(4599), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4599), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4599), + [aux_sym_identifier_token1] = ACTIONS(4599), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4601), + [sym__float_literal] = ACTIONS(4601), + [sym__boz_literal] = ACTIONS(4601), + [sym__string_literal] = ACTIONS(4601), + [sym__string_literal_kind] = ACTIONS(4601), + }, + [957] = { + [aux_sym_preproc_include_token1] = ACTIONS(4603), + [aux_sym_preproc_def_token1] = ACTIONS(4603), + [aux_sym_preproc_if_token1] = ACTIONS(4603), + [aux_sym_preproc_if_token2] = ACTIONS(4603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4603), + [sym_preproc_directive] = ACTIONS(4603), + [anon_sym_LPAREN2] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4605), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4603), + [aux_sym_end_program_statement_token1] = ACTIONS(4603), + [aux_sym_end_program_statement_token2] = ACTIONS(4603), + [aux_sym_module_statement_token1] = ACTIONS(4603), + [aux_sym_submodule_statement_token1] = ACTIONS(4603), + [aux_sym_interface_statement_token1] = ACTIONS(4603), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4603), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4603), + [aux_sym_subroutine_statement_token1] = ACTIONS(4603), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4603), + [aux_sym_function_statement_token1] = ACTIONS(4603), + [aux_sym_language_binding_token1] = ACTIONS(4603), + [aux_sym_procedure_attributes_token1] = ACTIONS(4603), + [aux_sym_procedure_attributes_token3] = ACTIONS(4603), + [aux_sym_contains_statement_token1] = ACTIONS(4603), + [aux_sym_use_statement_token1] = ACTIONS(4603), + [aux_sym_use_statement_token2] = ACTIONS(4603), + [aux_sym_implicit_statement_token1] = ACTIONS(4603), + [aux_sym_implicit_statement_token3] = ACTIONS(4603), + [aux_sym_implicit_statement_token4] = ACTIONS(4603), + [aux_sym_save_statement_token1] = ACTIONS(4603), + [aux_sym_private_statement_token1] = ACTIONS(4603), + [aux_sym_public_statement_token1] = ACTIONS(4603), + [aux_sym_namelist_statement_token1] = ACTIONS(4603), + [aux_sym_common_statement_token1] = ACTIONS(4603), + [aux_sym_import_statement_token1] = ACTIONS(4603), + [aux_sym_derived_type_definition_token1] = ACTIONS(4603), + [aux_sym_abstract_specifier_token1] = ACTIONS(4603), + [aux_sym_procedure_attribute_token6] = ACTIONS(4603), + [aux_sym_variable_attributes_token1] = ACTIONS(4603), + [aux_sym_variable_attributes_token2] = ACTIONS(4603), + [aux_sym_variable_attributes_token3] = ACTIONS(4603), + [aux_sym_variable_attributes_token4] = ACTIONS(4603), + [aux_sym_variable_attributes_token5] = ACTIONS(4603), + [aux_sym__intrinsic_type_token1] = ACTIONS(4603), + [aux_sym__intrinsic_type_token2] = ACTIONS(4603), + [aux_sym__intrinsic_type_token3] = ACTIONS(4603), + [aux_sym__intrinsic_type_token4] = ACTIONS(4603), + [aux_sym__intrinsic_type_token6] = ACTIONS(4603), + [aux_sym__intrinsic_type_token7] = ACTIONS(4603), + [aux_sym__intrinsic_type_token8] = ACTIONS(4603), + [aux_sym__intrinsic_type_token9] = ACTIONS(4603), + [aux_sym__intrinsic_type_token10] = ACTIONS(4603), + [aux_sym_derived_type_token1] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4603), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4603), + [aux_sym_type_qualifier_token1] = ACTIONS(4603), + [aux_sym_type_qualifier_token2] = ACTIONS(4603), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4603), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4603), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4603), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4603), + [aux_sym_equivalence_statement_token1] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4605), + [aux_sym_stop_statement_token1] = ACTIONS(4603), + [aux_sym_stop_statement_token2] = ACTIONS(4603), + [aux_sym_subroutine_call_token1] = ACTIONS(4603), + [aux_sym_keyword_statement_token1] = ACTIONS(4603), + [aux_sym_keyword_statement_token2] = ACTIONS(4603), + [aux_sym_keyword_statement_token3] = ACTIONS(4603), + [aux_sym_keyword_statement_token4] = ACTIONS(4603), + [aux_sym_keyword_statement_token6] = ACTIONS(4603), + [aux_sym_keyword_statement_token7] = ACTIONS(4603), + [aux_sym_include_statement_token1] = ACTIONS(4603), + [aux_sym_data_statement_token1] = ACTIONS(4603), + [aux_sym_do_loop_statement_token1] = ACTIONS(4603), + [aux_sym__inline_if_statement_token1] = ACTIONS(4603), + [aux_sym_end_if_statement_token1] = ACTIONS(4603), + [aux_sym_elseif_clause_token2] = ACTIONS(4603), + [aux_sym__inline_where_statement_token1] = ACTIONS(4603), + [aux_sym__forall_control_expression_token1] = ACTIONS(4603), + [aux_sym_select_case_statement_token1] = ACTIONS(4603), + [aux_sym_select_case_statement_token3] = ACTIONS(4603), + [aux_sym_select_type_statement_token1] = ACTIONS(4603), + [aux_sym_select_rank_statement_token2] = ACTIONS(4603), + [aux_sym_block_construct_token1] = ACTIONS(4603), + [aux_sym_associate_statement_token1] = ACTIONS(4603), + [aux_sym_format_statement_token1] = ACTIONS(4603), + [aux_sym_print_statement_token1] = ACTIONS(4603), + [aux_sym_open_statement_token1] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4603), + [aux_sym_inquire_statement_token1] = ACTIONS(4603), + [aux_sym_enum_statement_token1] = ACTIONS(4603), + [aux_sym_file_position_statement_token1] = ACTIONS(4603), + [aux_sym_file_position_statement_token2] = ACTIONS(4603), + [aux_sym_file_position_statement_token3] = ACTIONS(4603), + [aux_sym_file_position_statement_token4] = ACTIONS(4603), + [aux_sym_allocate_statement_token1] = ACTIONS(4603), + [aux_sym_entry_statement_token1] = ACTIONS(4603), + [aux_sym_logical_expression_token5] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4603), + [anon_sym_LPAREN_SLASH] = ACTIONS(4605), + [anon_sym_LBRACK] = ACTIONS(4605), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [aux_sym_null_literal_token1] = ACTIONS(4603), + [aux_sym_coarray_statement_token1] = ACTIONS(4603), + [aux_sym_coarray_statement_token2] = ACTIONS(4603), + [aux_sym_coarray_statement_token6] = ACTIONS(4603), + [aux_sym_coarray_statement_token8] = ACTIONS(4603), + [aux_sym_coarray_statement_token11] = ACTIONS(4603), + [aux_sym_coarray_statement_token12] = ACTIONS(4603), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4603), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4603), + [aux_sym_identifier_token1] = ACTIONS(4603), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4605), + [sym__float_literal] = ACTIONS(4605), + [sym__boz_literal] = ACTIONS(4605), + [sym__string_literal] = ACTIONS(4605), + [sym__string_literal_kind] = ACTIONS(4605), + }, + [958] = { + [aux_sym_preproc_include_token1] = ACTIONS(4527), + [aux_sym_preproc_def_token1] = ACTIONS(4527), + [aux_sym_preproc_if_token1] = ACTIONS(4527), + [aux_sym_preproc_if_token2] = ACTIONS(4527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4527), + [sym_preproc_directive] = ACTIONS(4527), + [anon_sym_LPAREN2] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4527), + [aux_sym_end_program_statement_token1] = ACTIONS(4527), + [aux_sym_end_program_statement_token2] = ACTIONS(4527), + [aux_sym_module_statement_token1] = ACTIONS(4527), + [aux_sym_submodule_statement_token1] = ACTIONS(4527), + [aux_sym_interface_statement_token1] = ACTIONS(4527), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4527), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4527), + [aux_sym_subroutine_statement_token1] = ACTIONS(4527), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4527), + [aux_sym_function_statement_token1] = ACTIONS(4527), + [aux_sym_language_binding_token1] = ACTIONS(4527), + [aux_sym_procedure_attributes_token1] = ACTIONS(4527), + [aux_sym_procedure_attributes_token3] = ACTIONS(4527), + [aux_sym_contains_statement_token1] = ACTIONS(4527), + [aux_sym_use_statement_token1] = ACTIONS(4527), + [aux_sym_use_statement_token2] = ACTIONS(4527), + [aux_sym_implicit_statement_token1] = ACTIONS(4527), + [aux_sym_implicit_statement_token3] = ACTIONS(4527), + [aux_sym_implicit_statement_token4] = ACTIONS(4527), + [aux_sym_save_statement_token1] = ACTIONS(4527), + [aux_sym_private_statement_token1] = ACTIONS(4527), + [aux_sym_public_statement_token1] = ACTIONS(4527), + [aux_sym_namelist_statement_token1] = ACTIONS(4527), + [aux_sym_common_statement_token1] = ACTIONS(4527), + [aux_sym_import_statement_token1] = ACTIONS(4527), + [aux_sym_derived_type_definition_token1] = ACTIONS(4527), + [aux_sym_abstract_specifier_token1] = ACTIONS(4527), + [aux_sym_procedure_attribute_token6] = ACTIONS(4527), + [aux_sym_variable_attributes_token1] = ACTIONS(4527), + [aux_sym_variable_attributes_token2] = ACTIONS(4527), + [aux_sym_variable_attributes_token3] = ACTIONS(4527), + [aux_sym_variable_attributes_token4] = ACTIONS(4527), + [aux_sym_variable_attributes_token5] = ACTIONS(4527), + [aux_sym__intrinsic_type_token1] = ACTIONS(4527), + [aux_sym__intrinsic_type_token2] = ACTIONS(4527), + [aux_sym__intrinsic_type_token3] = ACTIONS(4527), + [aux_sym__intrinsic_type_token4] = ACTIONS(4527), + [aux_sym__intrinsic_type_token6] = ACTIONS(4527), + [aux_sym__intrinsic_type_token7] = ACTIONS(4527), + [aux_sym__intrinsic_type_token8] = ACTIONS(4527), + [aux_sym__intrinsic_type_token9] = ACTIONS(4527), + [aux_sym__intrinsic_type_token10] = ACTIONS(4527), + [aux_sym_derived_type_token1] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4527), + [aux_sym_type_qualifier_token1] = ACTIONS(4527), + [aux_sym_type_qualifier_token2] = ACTIONS(4527), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4527), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4527), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4527), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4527), + [aux_sym_equivalence_statement_token1] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [aux_sym_stop_statement_token1] = ACTIONS(4527), + [aux_sym_stop_statement_token2] = ACTIONS(4527), + [aux_sym_subroutine_call_token1] = ACTIONS(4527), + [aux_sym_keyword_statement_token1] = ACTIONS(4527), + [aux_sym_keyword_statement_token2] = ACTIONS(4527), + [aux_sym_keyword_statement_token3] = ACTIONS(4527), + [aux_sym_keyword_statement_token4] = ACTIONS(4527), + [aux_sym_keyword_statement_token6] = ACTIONS(4527), + [aux_sym_keyword_statement_token7] = ACTIONS(4527), + [aux_sym_include_statement_token1] = ACTIONS(4527), + [aux_sym_data_statement_token1] = ACTIONS(4527), + [aux_sym_do_loop_statement_token1] = ACTIONS(4527), + [aux_sym__inline_if_statement_token1] = ACTIONS(4527), + [aux_sym_end_if_statement_token1] = ACTIONS(4527), + [aux_sym_elseif_clause_token2] = ACTIONS(4527), + [aux_sym__inline_where_statement_token1] = ACTIONS(4527), + [aux_sym__forall_control_expression_token1] = ACTIONS(4527), + [aux_sym_select_case_statement_token1] = ACTIONS(4527), + [aux_sym_select_case_statement_token3] = ACTIONS(4527), + [aux_sym_select_type_statement_token1] = ACTIONS(4527), + [aux_sym_select_rank_statement_token2] = ACTIONS(4527), + [aux_sym_block_construct_token1] = ACTIONS(4527), + [aux_sym_associate_statement_token1] = ACTIONS(4527), + [aux_sym_format_statement_token1] = ACTIONS(4527), + [aux_sym_print_statement_token1] = ACTIONS(4527), + [aux_sym_open_statement_token1] = ACTIONS(4527), + [aux_sym_close_statement_token1] = ACTIONS(4527), + [aux_sym_inquire_statement_token1] = ACTIONS(4527), + [aux_sym_enum_statement_token1] = ACTIONS(4527), + [aux_sym_file_position_statement_token1] = ACTIONS(4527), + [aux_sym_file_position_statement_token2] = ACTIONS(4527), + [aux_sym_file_position_statement_token3] = ACTIONS(4527), + [aux_sym_file_position_statement_token4] = ACTIONS(4527), + [aux_sym_allocate_statement_token1] = ACTIONS(4527), + [aux_sym_entry_statement_token1] = ACTIONS(4527), + [aux_sym_logical_expression_token5] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_LPAREN_SLASH] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [aux_sym_boolean_literal_token1] = ACTIONS(4529), + [aux_sym_boolean_literal_token2] = ACTIONS(4529), + [aux_sym_null_literal_token1] = ACTIONS(4527), + [aux_sym_coarray_statement_token1] = ACTIONS(4527), + [aux_sym_coarray_statement_token2] = ACTIONS(4527), + [aux_sym_coarray_statement_token6] = ACTIONS(4527), + [aux_sym_coarray_statement_token8] = ACTIONS(4527), + [aux_sym_coarray_statement_token11] = ACTIONS(4527), + [aux_sym_coarray_statement_token12] = ACTIONS(4527), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4527), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4527), + [aux_sym_identifier_token1] = ACTIONS(4527), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4529), + [sym__float_literal] = ACTIONS(4529), + [sym__boz_literal] = ACTIONS(4529), + [sym__string_literal] = ACTIONS(4529), + [sym__string_literal_kind] = ACTIONS(4529), + }, + [959] = { + [aux_sym_preproc_include_token1] = ACTIONS(4541), + [aux_sym_preproc_def_token1] = ACTIONS(4541), + [aux_sym_preproc_if_token1] = ACTIONS(4541), + [aux_sym_preproc_if_token2] = ACTIONS(4541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4541), + [sym_preproc_directive] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4541), + [aux_sym_end_program_statement_token1] = ACTIONS(4541), + [aux_sym_end_program_statement_token2] = ACTIONS(4541), + [aux_sym_module_statement_token1] = ACTIONS(4541), + [aux_sym_submodule_statement_token1] = ACTIONS(4541), + [aux_sym_interface_statement_token1] = ACTIONS(4541), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4541), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4541), + [aux_sym_subroutine_statement_token1] = ACTIONS(4541), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4541), + [aux_sym_function_statement_token1] = ACTIONS(4541), + [aux_sym_language_binding_token1] = ACTIONS(4541), + [aux_sym_procedure_attributes_token1] = ACTIONS(4541), + [aux_sym_procedure_attributes_token3] = ACTIONS(4541), + [aux_sym_contains_statement_token1] = ACTIONS(4541), + [aux_sym_use_statement_token1] = ACTIONS(4541), + [aux_sym_use_statement_token2] = ACTIONS(4541), + [aux_sym_implicit_statement_token1] = ACTIONS(4541), + [aux_sym_implicit_statement_token3] = ACTIONS(4541), + [aux_sym_implicit_statement_token4] = ACTIONS(4541), + [aux_sym_save_statement_token1] = ACTIONS(4541), + [aux_sym_private_statement_token1] = ACTIONS(4541), + [aux_sym_public_statement_token1] = ACTIONS(4541), + [aux_sym_namelist_statement_token1] = ACTIONS(4541), + [aux_sym_common_statement_token1] = ACTIONS(4541), + [aux_sym_import_statement_token1] = ACTIONS(4541), + [aux_sym_derived_type_definition_token1] = ACTIONS(4541), + [aux_sym_abstract_specifier_token1] = ACTIONS(4541), + [aux_sym_procedure_attribute_token6] = ACTIONS(4541), + [aux_sym_variable_attributes_token1] = ACTIONS(4541), + [aux_sym_variable_attributes_token2] = ACTIONS(4541), + [aux_sym_variable_attributes_token3] = ACTIONS(4541), + [aux_sym_variable_attributes_token4] = ACTIONS(4541), + [aux_sym_variable_attributes_token5] = ACTIONS(4541), + [aux_sym__intrinsic_type_token1] = ACTIONS(4541), + [aux_sym__intrinsic_type_token2] = ACTIONS(4541), + [aux_sym__intrinsic_type_token3] = ACTIONS(4541), + [aux_sym__intrinsic_type_token4] = ACTIONS(4541), + [aux_sym__intrinsic_type_token6] = ACTIONS(4541), + [aux_sym__intrinsic_type_token7] = ACTIONS(4541), + [aux_sym__intrinsic_type_token8] = ACTIONS(4541), + [aux_sym__intrinsic_type_token9] = ACTIONS(4541), + [aux_sym__intrinsic_type_token10] = ACTIONS(4541), + [aux_sym_derived_type_token1] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4541), + [aux_sym_type_qualifier_token1] = ACTIONS(4541), + [aux_sym_type_qualifier_token2] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4541), + [aux_sym_equivalence_statement_token1] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(4543), + [aux_sym_stop_statement_token1] = ACTIONS(4541), + [aux_sym_stop_statement_token2] = ACTIONS(4541), + [aux_sym_subroutine_call_token1] = ACTIONS(4541), + [aux_sym_keyword_statement_token1] = ACTIONS(4541), + [aux_sym_keyword_statement_token2] = ACTIONS(4541), + [aux_sym_keyword_statement_token3] = ACTIONS(4541), + [aux_sym_keyword_statement_token4] = ACTIONS(4541), + [aux_sym_keyword_statement_token6] = ACTIONS(4541), + [aux_sym_keyword_statement_token7] = ACTIONS(4541), + [aux_sym_include_statement_token1] = ACTIONS(4541), + [aux_sym_data_statement_token1] = ACTIONS(4541), + [aux_sym_do_loop_statement_token1] = ACTIONS(4541), + [aux_sym__inline_if_statement_token1] = ACTIONS(4541), + [aux_sym_end_if_statement_token1] = ACTIONS(4541), + [aux_sym_elseif_clause_token2] = ACTIONS(4541), + [aux_sym__inline_where_statement_token1] = ACTIONS(4541), + [aux_sym__forall_control_expression_token1] = ACTIONS(4541), + [aux_sym_select_case_statement_token1] = ACTIONS(4541), + [aux_sym_select_case_statement_token3] = ACTIONS(4541), + [aux_sym_select_type_statement_token1] = ACTIONS(4541), + [aux_sym_select_rank_statement_token2] = ACTIONS(4541), + [aux_sym_block_construct_token1] = ACTIONS(4541), + [aux_sym_associate_statement_token1] = ACTIONS(4541), + [aux_sym_format_statement_token1] = ACTIONS(4541), + [aux_sym_print_statement_token1] = ACTIONS(4541), + [aux_sym_open_statement_token1] = ACTIONS(4541), + [aux_sym_close_statement_token1] = ACTIONS(4541), + [aux_sym_inquire_statement_token1] = ACTIONS(4541), + [aux_sym_enum_statement_token1] = ACTIONS(4541), + [aux_sym_file_position_statement_token1] = ACTIONS(4541), + [aux_sym_file_position_statement_token2] = ACTIONS(4541), + [aux_sym_file_position_statement_token3] = ACTIONS(4541), + [aux_sym_file_position_statement_token4] = ACTIONS(4541), + [aux_sym_allocate_statement_token1] = ACTIONS(4541), + [aux_sym_entry_statement_token1] = ACTIONS(4541), + [aux_sym_logical_expression_token5] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_LPAREN_SLASH] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [aux_sym_boolean_literal_token1] = ACTIONS(4543), + [aux_sym_boolean_literal_token2] = ACTIONS(4543), + [aux_sym_null_literal_token1] = ACTIONS(4541), + [aux_sym_coarray_statement_token1] = ACTIONS(4541), + [aux_sym_coarray_statement_token2] = ACTIONS(4541), + [aux_sym_coarray_statement_token6] = ACTIONS(4541), + [aux_sym_coarray_statement_token8] = ACTIONS(4541), + [aux_sym_coarray_statement_token11] = ACTIONS(4541), + [aux_sym_coarray_statement_token12] = ACTIONS(4541), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4541), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4541), + [aux_sym_identifier_token1] = ACTIONS(4541), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4543), + [sym__float_literal] = ACTIONS(4543), + [sym__boz_literal] = ACTIONS(4543), + [sym__string_literal] = ACTIONS(4543), + [sym__string_literal_kind] = ACTIONS(4543), + }, + [960] = { + [aux_sym_preproc_include_token1] = ACTIONS(4565), + [aux_sym_preproc_def_token1] = ACTIONS(4565), + [aux_sym_preproc_if_token1] = ACTIONS(4565), + [aux_sym_preproc_if_token2] = ACTIONS(4565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4565), + [sym_preproc_directive] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4565), + [aux_sym_end_program_statement_token1] = ACTIONS(4565), + [aux_sym_end_program_statement_token2] = ACTIONS(4565), + [aux_sym_module_statement_token1] = ACTIONS(4565), + [aux_sym_submodule_statement_token1] = ACTIONS(4565), + [aux_sym_interface_statement_token1] = ACTIONS(4565), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4565), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4565), + [aux_sym_subroutine_statement_token1] = ACTIONS(4565), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4565), + [aux_sym_function_statement_token1] = ACTIONS(4565), + [aux_sym_language_binding_token1] = ACTIONS(4565), + [aux_sym_procedure_attributes_token1] = ACTIONS(4565), + [aux_sym_procedure_attributes_token3] = ACTIONS(4565), + [aux_sym_contains_statement_token1] = ACTIONS(4565), + [aux_sym_use_statement_token1] = ACTIONS(4565), + [aux_sym_use_statement_token2] = ACTIONS(4565), + [aux_sym_implicit_statement_token1] = ACTIONS(4565), + [aux_sym_implicit_statement_token3] = ACTIONS(4565), + [aux_sym_implicit_statement_token4] = ACTIONS(4565), + [aux_sym_save_statement_token1] = ACTIONS(4565), + [aux_sym_private_statement_token1] = ACTIONS(4565), + [aux_sym_public_statement_token1] = ACTIONS(4565), + [aux_sym_namelist_statement_token1] = ACTIONS(4565), + [aux_sym_common_statement_token1] = ACTIONS(4565), + [aux_sym_import_statement_token1] = ACTIONS(4565), + [aux_sym_derived_type_definition_token1] = ACTIONS(4565), + [aux_sym_abstract_specifier_token1] = ACTIONS(4565), + [aux_sym_procedure_attribute_token6] = ACTIONS(4565), + [aux_sym_variable_attributes_token1] = ACTIONS(4565), + [aux_sym_variable_attributes_token2] = ACTIONS(4565), + [aux_sym_variable_attributes_token3] = ACTIONS(4565), + [aux_sym_variable_attributes_token4] = ACTIONS(4565), + [aux_sym_variable_attributes_token5] = ACTIONS(4565), + [aux_sym__intrinsic_type_token1] = ACTIONS(4565), + [aux_sym__intrinsic_type_token2] = ACTIONS(4565), + [aux_sym__intrinsic_type_token3] = ACTIONS(4565), + [aux_sym__intrinsic_type_token4] = ACTIONS(4565), + [aux_sym__intrinsic_type_token6] = ACTIONS(4565), + [aux_sym__intrinsic_type_token7] = ACTIONS(4565), + [aux_sym__intrinsic_type_token8] = ACTIONS(4565), + [aux_sym__intrinsic_type_token9] = ACTIONS(4565), + [aux_sym__intrinsic_type_token10] = ACTIONS(4565), + [aux_sym_derived_type_token1] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4565), + [aux_sym_type_qualifier_token1] = ACTIONS(4565), + [aux_sym_type_qualifier_token2] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4565), + [aux_sym_equivalence_statement_token1] = ACTIONS(4565), + [anon_sym_SEMI] = ACTIONS(4567), + [aux_sym_stop_statement_token1] = ACTIONS(4565), + [aux_sym_stop_statement_token2] = ACTIONS(4565), + [aux_sym_subroutine_call_token1] = ACTIONS(4565), + [aux_sym_keyword_statement_token1] = ACTIONS(4565), + [aux_sym_keyword_statement_token2] = ACTIONS(4565), + [aux_sym_keyword_statement_token3] = ACTIONS(4565), + [aux_sym_keyword_statement_token4] = ACTIONS(4565), + [aux_sym_keyword_statement_token6] = ACTIONS(4565), + [aux_sym_keyword_statement_token7] = ACTIONS(4565), + [aux_sym_include_statement_token1] = ACTIONS(4565), + [aux_sym_data_statement_token1] = ACTIONS(4565), + [aux_sym_do_loop_statement_token1] = ACTIONS(4565), + [aux_sym__inline_if_statement_token1] = ACTIONS(4565), + [aux_sym_end_if_statement_token1] = ACTIONS(4565), + [aux_sym_elseif_clause_token2] = ACTIONS(4565), + [aux_sym__inline_where_statement_token1] = ACTIONS(4565), + [aux_sym__forall_control_expression_token1] = ACTIONS(4565), + [aux_sym_select_case_statement_token1] = ACTIONS(4565), + [aux_sym_select_case_statement_token3] = ACTIONS(4565), + [aux_sym_select_type_statement_token1] = ACTIONS(4565), + [aux_sym_select_rank_statement_token2] = ACTIONS(4565), + [aux_sym_block_construct_token1] = ACTIONS(4565), + [aux_sym_associate_statement_token1] = ACTIONS(4565), + [aux_sym_format_statement_token1] = ACTIONS(4565), + [aux_sym_print_statement_token1] = ACTIONS(4565), + [aux_sym_open_statement_token1] = ACTIONS(4565), + [aux_sym_close_statement_token1] = ACTIONS(4565), + [aux_sym_inquire_statement_token1] = ACTIONS(4565), + [aux_sym_enum_statement_token1] = ACTIONS(4565), + [aux_sym_file_position_statement_token1] = ACTIONS(4565), + [aux_sym_file_position_statement_token2] = ACTIONS(4565), + [aux_sym_file_position_statement_token3] = ACTIONS(4565), + [aux_sym_file_position_statement_token4] = ACTIONS(4565), + [aux_sym_allocate_statement_token1] = ACTIONS(4565), + [aux_sym_entry_statement_token1] = ACTIONS(4565), + [aux_sym_logical_expression_token5] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4565), + [anon_sym_LPAREN_SLASH] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4567), + [aux_sym_boolean_literal_token1] = ACTIONS(4567), + [aux_sym_boolean_literal_token2] = ACTIONS(4567), + [aux_sym_null_literal_token1] = ACTIONS(4565), + [aux_sym_coarray_statement_token1] = ACTIONS(4565), + [aux_sym_coarray_statement_token2] = ACTIONS(4565), + [aux_sym_coarray_statement_token6] = ACTIONS(4565), + [aux_sym_coarray_statement_token8] = ACTIONS(4565), + [aux_sym_coarray_statement_token11] = ACTIONS(4565), + [aux_sym_coarray_statement_token12] = ACTIONS(4565), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4565), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4565), + [aux_sym_identifier_token1] = ACTIONS(4565), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4567), + [sym__float_literal] = ACTIONS(4567), + [sym__boz_literal] = ACTIONS(4567), + [sym__string_literal] = ACTIONS(4567), + [sym__string_literal_kind] = ACTIONS(4567), + }, + [961] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4569), [anon_sym_LPAREN_SLASH] = ACTIONS(4573), [anon_sym_LBRACK] = ACTIONS(4573), [aux_sym_boolean_literal_token1] = ACTIONS(4573), [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(4573), [sym__float_literal] = ACTIONS(4573), @@ -219244,4192 +220189,4597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4573), [sym__string_literal_kind] = ACTIONS(4573), }, - [955] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [962] = { + [aux_sym_preproc_include_token1] = ACTIONS(4607), + [aux_sym_preproc_def_token1] = ACTIONS(4607), + [aux_sym_preproc_if_token1] = ACTIONS(4607), + [aux_sym_preproc_if_token2] = ACTIONS(4607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4607), + [sym_preproc_directive] = ACTIONS(4607), + [anon_sym_LPAREN2] = ACTIONS(4607), + [anon_sym_PLUS] = ACTIONS(4609), + [anon_sym_DASH] = ACTIONS(4609), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_program_statement_token2] = ACTIONS(4575), - [aux_sym_module_statement_token1] = ACTIONS(4575), - [aux_sym_submodule_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_subroutine_statement_token1] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_function_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4575), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4575), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4575), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_program_statement_token1] = ACTIONS(4607), + [aux_sym_end_program_statement_token1] = ACTIONS(4607), + [aux_sym_end_program_statement_token2] = ACTIONS(4607), + [aux_sym_module_statement_token1] = ACTIONS(4607), + [aux_sym_submodule_statement_token1] = ACTIONS(4607), + [aux_sym_interface_statement_token1] = ACTIONS(4607), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4607), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4607), + [aux_sym_subroutine_statement_token1] = ACTIONS(4607), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4607), + [aux_sym_function_statement_token1] = ACTIONS(4607), + [aux_sym_language_binding_token1] = ACTIONS(4607), + [aux_sym_procedure_attributes_token1] = ACTIONS(4607), + [aux_sym_procedure_attributes_token3] = ACTIONS(4607), + [aux_sym_contains_statement_token1] = ACTIONS(4607), + [aux_sym_use_statement_token1] = ACTIONS(4607), + [aux_sym_use_statement_token2] = ACTIONS(4607), + [aux_sym_implicit_statement_token1] = ACTIONS(4607), + [aux_sym_implicit_statement_token3] = ACTIONS(4607), + [aux_sym_implicit_statement_token4] = ACTIONS(4607), + [aux_sym_save_statement_token1] = ACTIONS(4607), + [aux_sym_private_statement_token1] = ACTIONS(4607), + [aux_sym_public_statement_token1] = ACTIONS(4607), + [aux_sym_namelist_statement_token1] = ACTIONS(4607), + [aux_sym_common_statement_token1] = ACTIONS(4607), + [aux_sym_import_statement_token1] = ACTIONS(4607), + [aux_sym_derived_type_definition_token1] = ACTIONS(4607), + [aux_sym_abstract_specifier_token1] = ACTIONS(4607), + [aux_sym_procedure_attribute_token6] = ACTIONS(4607), + [aux_sym_variable_attributes_token1] = ACTIONS(4607), + [aux_sym_variable_attributes_token2] = ACTIONS(4607), + [aux_sym_variable_attributes_token3] = ACTIONS(4607), + [aux_sym_variable_attributes_token4] = ACTIONS(4607), + [aux_sym_variable_attributes_token5] = ACTIONS(4607), + [aux_sym__intrinsic_type_token1] = ACTIONS(4607), + [aux_sym__intrinsic_type_token2] = ACTIONS(4607), + [aux_sym__intrinsic_type_token3] = ACTIONS(4607), + [aux_sym__intrinsic_type_token4] = ACTIONS(4607), + [aux_sym__intrinsic_type_token6] = ACTIONS(4607), + [aux_sym__intrinsic_type_token7] = ACTIONS(4607), + [aux_sym__intrinsic_type_token8] = ACTIONS(4607), + [aux_sym__intrinsic_type_token9] = ACTIONS(4607), + [aux_sym__intrinsic_type_token10] = ACTIONS(4607), + [aux_sym_derived_type_token1] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4607), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4607), + [aux_sym_type_qualifier_token1] = ACTIONS(4607), + [aux_sym_type_qualifier_token2] = ACTIONS(4607), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4607), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4607), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4607), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4607), + [aux_sym_equivalence_statement_token1] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4609), + [aux_sym_stop_statement_token1] = ACTIONS(4607), + [aux_sym_stop_statement_token2] = ACTIONS(4607), + [aux_sym_subroutine_call_token1] = ACTIONS(4607), + [aux_sym_keyword_statement_token1] = ACTIONS(4607), + [aux_sym_keyword_statement_token2] = ACTIONS(4607), + [aux_sym_keyword_statement_token3] = ACTIONS(4607), + [aux_sym_keyword_statement_token4] = ACTIONS(4607), + [aux_sym_keyword_statement_token6] = ACTIONS(4607), + [aux_sym_keyword_statement_token7] = ACTIONS(4607), + [aux_sym_include_statement_token1] = ACTIONS(4607), + [aux_sym_data_statement_token1] = ACTIONS(4607), + [aux_sym_do_loop_statement_token1] = ACTIONS(4607), + [aux_sym__inline_if_statement_token1] = ACTIONS(4607), + [aux_sym_end_if_statement_token1] = ACTIONS(4607), + [aux_sym_elseif_clause_token2] = ACTIONS(4607), + [aux_sym__inline_where_statement_token1] = ACTIONS(4607), + [aux_sym__forall_control_expression_token1] = ACTIONS(4607), + [aux_sym_select_case_statement_token1] = ACTIONS(4607), + [aux_sym_select_case_statement_token3] = ACTIONS(4607), + [aux_sym_select_type_statement_token1] = ACTIONS(4607), + [aux_sym_select_rank_statement_token2] = ACTIONS(4607), + [aux_sym_block_construct_token1] = ACTIONS(4607), + [aux_sym_associate_statement_token1] = ACTIONS(4607), + [aux_sym_format_statement_token1] = ACTIONS(4607), + [aux_sym_print_statement_token1] = ACTIONS(4607), + [aux_sym_open_statement_token1] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4607), + [aux_sym_inquire_statement_token1] = ACTIONS(4607), + [aux_sym_enum_statement_token1] = ACTIONS(4607), + [aux_sym_file_position_statement_token1] = ACTIONS(4607), + [aux_sym_file_position_statement_token2] = ACTIONS(4607), + [aux_sym_file_position_statement_token3] = ACTIONS(4607), + [aux_sym_file_position_statement_token4] = ACTIONS(4607), + [aux_sym_allocate_statement_token1] = ACTIONS(4607), + [aux_sym_entry_statement_token1] = ACTIONS(4607), + [aux_sym_logical_expression_token5] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_LPAREN_SLASH] = ACTIONS(4609), + [anon_sym_LBRACK] = ACTIONS(4609), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [aux_sym_null_literal_token1] = ACTIONS(4607), + [aux_sym_coarray_statement_token1] = ACTIONS(4607), + [aux_sym_coarray_statement_token2] = ACTIONS(4607), + [aux_sym_coarray_statement_token6] = ACTIONS(4607), + [aux_sym_coarray_statement_token8] = ACTIONS(4607), + [aux_sym_coarray_statement_token11] = ACTIONS(4607), + [aux_sym_coarray_statement_token12] = ACTIONS(4607), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4607), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4607), + [aux_sym_identifier_token1] = ACTIONS(4607), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(4609), + [sym__float_literal] = ACTIONS(4609), + [sym__boz_literal] = ACTIONS(4609), + [sym__string_literal] = ACTIONS(4609), + [sym__string_literal_kind] = ACTIONS(4609), }, - [956] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [963] = { + [aux_sym_preproc_include_token1] = ACTIONS(4451), + [aux_sym_preproc_def_token1] = ACTIONS(4451), + [aux_sym_preproc_if_token1] = ACTIONS(4451), + [aux_sym_preproc_if_token2] = ACTIONS(4451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4451), + [sym_preproc_directive] = ACTIONS(4451), + [anon_sym_LPAREN2] = ACTIONS(4451), + [anon_sym_PLUS] = ACTIONS(4453), + [anon_sym_DASH] = ACTIONS(4453), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4451), + [aux_sym_end_program_statement_token1] = ACTIONS(4451), + [aux_sym_end_program_statement_token2] = ACTIONS(4451), + [aux_sym_module_statement_token1] = ACTIONS(4451), + [aux_sym_submodule_statement_token1] = ACTIONS(4451), + [aux_sym_interface_statement_token1] = ACTIONS(4451), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4451), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4451), + [aux_sym_subroutine_statement_token1] = ACTIONS(4451), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4451), + [aux_sym_function_statement_token1] = ACTIONS(4451), + [aux_sym_language_binding_token1] = ACTIONS(4451), + [aux_sym_procedure_attributes_token1] = ACTIONS(4451), + [aux_sym_procedure_attributes_token3] = ACTIONS(4451), + [aux_sym_contains_statement_token1] = ACTIONS(4451), + [aux_sym_use_statement_token1] = ACTIONS(4451), + [aux_sym_use_statement_token2] = ACTIONS(4451), + [aux_sym_implicit_statement_token1] = ACTIONS(4451), + [aux_sym_implicit_statement_token3] = ACTIONS(4451), + [aux_sym_implicit_statement_token4] = ACTIONS(4451), + [aux_sym_save_statement_token1] = ACTIONS(4451), + [aux_sym_private_statement_token1] = ACTIONS(4451), + [aux_sym_public_statement_token1] = ACTIONS(4451), + [aux_sym_namelist_statement_token1] = ACTIONS(4451), + [aux_sym_common_statement_token1] = ACTIONS(4451), + [aux_sym_import_statement_token1] = ACTIONS(4451), + [aux_sym_derived_type_definition_token1] = ACTIONS(4451), + [aux_sym_abstract_specifier_token1] = ACTIONS(4451), + [aux_sym_procedure_attribute_token6] = ACTIONS(4451), + [aux_sym_variable_attributes_token1] = ACTIONS(4451), + [aux_sym_variable_attributes_token2] = ACTIONS(4451), + [aux_sym_variable_attributes_token3] = ACTIONS(4451), + [aux_sym_variable_attributes_token4] = ACTIONS(4451), + [aux_sym_variable_attributes_token5] = ACTIONS(4451), + [aux_sym__intrinsic_type_token1] = ACTIONS(4451), + [aux_sym__intrinsic_type_token2] = ACTIONS(4451), + [aux_sym__intrinsic_type_token3] = ACTIONS(4451), + [aux_sym__intrinsic_type_token4] = ACTIONS(4451), + [aux_sym__intrinsic_type_token6] = ACTIONS(4451), + [aux_sym__intrinsic_type_token7] = ACTIONS(4451), + [aux_sym__intrinsic_type_token8] = ACTIONS(4451), + [aux_sym__intrinsic_type_token9] = ACTIONS(4451), + [aux_sym__intrinsic_type_token10] = ACTIONS(4451), + [aux_sym_derived_type_token1] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4451), + [aux_sym_type_qualifier_token1] = ACTIONS(4451), + [aux_sym_type_qualifier_token2] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4451), + [aux_sym_equivalence_statement_token1] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [aux_sym_stop_statement_token1] = ACTIONS(4451), + [aux_sym_stop_statement_token2] = ACTIONS(4451), + [aux_sym_subroutine_call_token1] = ACTIONS(4451), + [aux_sym_keyword_statement_token1] = ACTIONS(4451), + [aux_sym_keyword_statement_token2] = ACTIONS(4451), + [aux_sym_keyword_statement_token3] = ACTIONS(4451), + [aux_sym_keyword_statement_token4] = ACTIONS(4451), + [aux_sym_keyword_statement_token6] = ACTIONS(4451), + [aux_sym_keyword_statement_token7] = ACTIONS(4451), + [aux_sym_include_statement_token1] = ACTIONS(4451), + [aux_sym_data_statement_token1] = ACTIONS(4451), + [aux_sym_do_loop_statement_token1] = ACTIONS(4451), + [aux_sym__inline_if_statement_token1] = ACTIONS(4451), + [aux_sym_end_if_statement_token1] = ACTIONS(4451), + [aux_sym_elseif_clause_token2] = ACTIONS(4451), + [aux_sym__inline_where_statement_token1] = ACTIONS(4451), + [aux_sym__forall_control_expression_token1] = ACTIONS(4451), + [aux_sym_select_case_statement_token1] = ACTIONS(4451), + [aux_sym_select_case_statement_token3] = ACTIONS(4451), + [aux_sym_select_type_statement_token1] = ACTIONS(4451), + [aux_sym_select_rank_statement_token2] = ACTIONS(4451), + [aux_sym_block_construct_token1] = ACTIONS(4451), + [aux_sym_associate_statement_token1] = ACTIONS(4451), + [aux_sym_format_statement_token1] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_inquire_statement_token1] = ACTIONS(4451), + [aux_sym_enum_statement_token1] = ACTIONS(4451), + [aux_sym_file_position_statement_token1] = ACTIONS(4451), + [aux_sym_file_position_statement_token2] = ACTIONS(4451), + [aux_sym_file_position_statement_token3] = ACTIONS(4451), + [aux_sym_file_position_statement_token4] = ACTIONS(4451), + [aux_sym_allocate_statement_token1] = ACTIONS(4451), + [aux_sym_entry_statement_token1] = ACTIONS(4451), + [aux_sym_logical_expression_token5] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_LPAREN_SLASH] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4453), + [aux_sym_boolean_literal_token2] = ACTIONS(4453), + [aux_sym_null_literal_token1] = ACTIONS(4451), + [aux_sym_coarray_statement_token1] = ACTIONS(4451), + [aux_sym_coarray_statement_token2] = ACTIONS(4451), + [aux_sym_coarray_statement_token6] = ACTIONS(4451), + [aux_sym_coarray_statement_token8] = ACTIONS(4451), + [aux_sym_coarray_statement_token11] = ACTIONS(4451), + [aux_sym_coarray_statement_token12] = ACTIONS(4451), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4451), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4451), + [aux_sym_identifier_token1] = ACTIONS(4451), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4453), + [sym__float_literal] = ACTIONS(4453), + [sym__boz_literal] = ACTIONS(4453), + [sym__string_literal] = ACTIONS(4453), + [sym__string_literal_kind] = ACTIONS(4453), + }, + [964] = { + [aux_sym_preproc_include_token1] = ACTIONS(4479), + [aux_sym_preproc_def_token1] = ACTIONS(4479), + [aux_sym_preproc_if_token1] = ACTIONS(4479), + [aux_sym_preproc_if_token2] = ACTIONS(4479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4479), + [sym_preproc_directive] = ACTIONS(4479), + [anon_sym_LPAREN2] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4479), + [aux_sym_end_program_statement_token1] = ACTIONS(4479), + [aux_sym_end_program_statement_token2] = ACTIONS(4479), + [aux_sym_module_statement_token1] = ACTIONS(4479), + [aux_sym_submodule_statement_token1] = ACTIONS(4479), + [aux_sym_interface_statement_token1] = ACTIONS(4479), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4479), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4479), + [aux_sym_subroutine_statement_token1] = ACTIONS(4479), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4479), + [aux_sym_function_statement_token1] = ACTIONS(4479), + [aux_sym_language_binding_token1] = ACTIONS(4479), + [aux_sym_procedure_attributes_token1] = ACTIONS(4479), + [aux_sym_procedure_attributes_token3] = ACTIONS(4479), + [aux_sym_contains_statement_token1] = ACTIONS(4479), + [aux_sym_use_statement_token1] = ACTIONS(4479), + [aux_sym_use_statement_token2] = ACTIONS(4479), + [aux_sym_implicit_statement_token1] = ACTIONS(4479), + [aux_sym_implicit_statement_token3] = ACTIONS(4479), + [aux_sym_implicit_statement_token4] = ACTIONS(4479), + [aux_sym_save_statement_token1] = ACTIONS(4479), + [aux_sym_private_statement_token1] = ACTIONS(4479), + [aux_sym_public_statement_token1] = ACTIONS(4479), + [aux_sym_namelist_statement_token1] = ACTIONS(4479), + [aux_sym_common_statement_token1] = ACTIONS(4479), + [aux_sym_import_statement_token1] = ACTIONS(4479), + [aux_sym_derived_type_definition_token1] = ACTIONS(4479), + [aux_sym_abstract_specifier_token1] = ACTIONS(4479), + [aux_sym_procedure_attribute_token6] = ACTIONS(4479), + [aux_sym_variable_attributes_token1] = ACTIONS(4479), + [aux_sym_variable_attributes_token2] = ACTIONS(4479), + [aux_sym_variable_attributes_token3] = ACTIONS(4479), + [aux_sym_variable_attributes_token4] = ACTIONS(4479), + [aux_sym_variable_attributes_token5] = ACTIONS(4479), + [aux_sym__intrinsic_type_token1] = ACTIONS(4479), + [aux_sym__intrinsic_type_token2] = ACTIONS(4479), + [aux_sym__intrinsic_type_token3] = ACTIONS(4479), + [aux_sym__intrinsic_type_token4] = ACTIONS(4479), + [aux_sym__intrinsic_type_token6] = ACTIONS(4479), + [aux_sym__intrinsic_type_token7] = ACTIONS(4479), + [aux_sym__intrinsic_type_token8] = ACTIONS(4479), + [aux_sym__intrinsic_type_token9] = ACTIONS(4479), + [aux_sym__intrinsic_type_token10] = ACTIONS(4479), + [aux_sym_derived_type_token1] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4479), + [aux_sym_type_qualifier_token1] = ACTIONS(4479), + [aux_sym_type_qualifier_token2] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4479), + [aux_sym_equivalence_statement_token1] = ACTIONS(4479), + [anon_sym_SEMI] = ACTIONS(4481), + [aux_sym_stop_statement_token1] = ACTIONS(4479), + [aux_sym_stop_statement_token2] = ACTIONS(4479), + [aux_sym_subroutine_call_token1] = ACTIONS(4479), + [aux_sym_keyword_statement_token1] = ACTIONS(4479), + [aux_sym_keyword_statement_token2] = ACTIONS(4479), + [aux_sym_keyword_statement_token3] = ACTIONS(4479), + [aux_sym_keyword_statement_token4] = ACTIONS(4479), + [aux_sym_keyword_statement_token6] = ACTIONS(4479), + [aux_sym_keyword_statement_token7] = ACTIONS(4479), + [aux_sym_include_statement_token1] = ACTIONS(4479), + [aux_sym_data_statement_token1] = ACTIONS(4479), + [aux_sym_do_loop_statement_token1] = ACTIONS(4479), + [aux_sym__inline_if_statement_token1] = ACTIONS(4479), + [aux_sym_end_if_statement_token1] = ACTIONS(4479), + [aux_sym_elseif_clause_token2] = ACTIONS(4479), + [aux_sym__inline_where_statement_token1] = ACTIONS(4479), + [aux_sym__forall_control_expression_token1] = ACTIONS(4479), + [aux_sym_select_case_statement_token1] = ACTIONS(4479), + [aux_sym_select_case_statement_token3] = ACTIONS(4479), + [aux_sym_select_type_statement_token1] = ACTIONS(4479), + [aux_sym_select_rank_statement_token2] = ACTIONS(4479), + [aux_sym_block_construct_token1] = ACTIONS(4479), + [aux_sym_associate_statement_token1] = ACTIONS(4479), + [aux_sym_format_statement_token1] = ACTIONS(4479), + [aux_sym_print_statement_token1] = ACTIONS(4479), + [aux_sym_open_statement_token1] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4479), + [aux_sym_inquire_statement_token1] = ACTIONS(4479), + [aux_sym_enum_statement_token1] = ACTIONS(4479), + [aux_sym_file_position_statement_token1] = ACTIONS(4479), + [aux_sym_file_position_statement_token2] = ACTIONS(4479), + [aux_sym_file_position_statement_token3] = ACTIONS(4479), + [aux_sym_file_position_statement_token4] = ACTIONS(4479), + [aux_sym_allocate_statement_token1] = ACTIONS(4479), + [aux_sym_entry_statement_token1] = ACTIONS(4479), + [aux_sym_logical_expression_token5] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4479), + [anon_sym_LPAREN_SLASH] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [aux_sym_null_literal_token1] = ACTIONS(4479), + [aux_sym_coarray_statement_token1] = ACTIONS(4479), + [aux_sym_coarray_statement_token2] = ACTIONS(4479), + [aux_sym_coarray_statement_token6] = ACTIONS(4479), + [aux_sym_coarray_statement_token8] = ACTIONS(4479), + [aux_sym_coarray_statement_token11] = ACTIONS(4479), + [aux_sym_coarray_statement_token12] = ACTIONS(4479), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4479), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4479), + [aux_sym_identifier_token1] = ACTIONS(4479), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4481), + [sym__float_literal] = ACTIONS(4481), + [sym__boz_literal] = ACTIONS(4481), + [sym__string_literal] = ACTIONS(4481), + [sym__string_literal_kind] = ACTIONS(4481), + }, + [965] = { + [aux_sym_preproc_include_token1] = ACTIONS(4523), + [aux_sym_preproc_def_token1] = ACTIONS(4523), + [aux_sym_preproc_if_token1] = ACTIONS(4523), + [aux_sym_preproc_if_token2] = ACTIONS(4523), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4523), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4523), + [sym_preproc_directive] = ACTIONS(4523), + [anon_sym_LPAREN2] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_program_statement_token2] = ACTIONS(4579), - [aux_sym_module_statement_token1] = ACTIONS(4579), - [aux_sym_submodule_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_subroutine_statement_token1] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_function_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4579), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4579), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4579), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_program_statement_token1] = ACTIONS(4523), + [aux_sym_end_program_statement_token1] = ACTIONS(4523), + [aux_sym_end_program_statement_token2] = ACTIONS(4523), + [aux_sym_module_statement_token1] = ACTIONS(4523), + [aux_sym_submodule_statement_token1] = ACTIONS(4523), + [aux_sym_interface_statement_token1] = ACTIONS(4523), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4523), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4523), + [aux_sym_subroutine_statement_token1] = ACTIONS(4523), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4523), + [aux_sym_function_statement_token1] = ACTIONS(4523), + [aux_sym_language_binding_token1] = ACTIONS(4523), + [aux_sym_procedure_attributes_token1] = ACTIONS(4523), + [aux_sym_procedure_attributes_token3] = ACTIONS(4523), + [aux_sym_contains_statement_token1] = ACTIONS(4523), + [aux_sym_use_statement_token1] = ACTIONS(4523), + [aux_sym_use_statement_token2] = ACTIONS(4523), + [aux_sym_implicit_statement_token1] = ACTIONS(4523), + [aux_sym_implicit_statement_token3] = ACTIONS(4523), + [aux_sym_implicit_statement_token4] = ACTIONS(4523), + [aux_sym_save_statement_token1] = ACTIONS(4523), + [aux_sym_private_statement_token1] = ACTIONS(4523), + [aux_sym_public_statement_token1] = ACTIONS(4523), + [aux_sym_namelist_statement_token1] = ACTIONS(4523), + [aux_sym_common_statement_token1] = ACTIONS(4523), + [aux_sym_import_statement_token1] = ACTIONS(4523), + [aux_sym_derived_type_definition_token1] = ACTIONS(4523), + [aux_sym_abstract_specifier_token1] = ACTIONS(4523), + [aux_sym_procedure_attribute_token6] = ACTIONS(4523), + [aux_sym_variable_attributes_token1] = ACTIONS(4523), + [aux_sym_variable_attributes_token2] = ACTIONS(4523), + [aux_sym_variable_attributes_token3] = ACTIONS(4523), + [aux_sym_variable_attributes_token4] = ACTIONS(4523), + [aux_sym_variable_attributes_token5] = ACTIONS(4523), + [aux_sym__intrinsic_type_token1] = ACTIONS(4523), + [aux_sym__intrinsic_type_token2] = ACTIONS(4523), + [aux_sym__intrinsic_type_token3] = ACTIONS(4523), + [aux_sym__intrinsic_type_token4] = ACTIONS(4523), + [aux_sym__intrinsic_type_token6] = ACTIONS(4523), + [aux_sym__intrinsic_type_token7] = ACTIONS(4523), + [aux_sym__intrinsic_type_token8] = ACTIONS(4523), + [aux_sym__intrinsic_type_token9] = ACTIONS(4523), + [aux_sym__intrinsic_type_token10] = ACTIONS(4523), + [aux_sym_derived_type_token1] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4523), + [aux_sym_type_qualifier_token1] = ACTIONS(4523), + [aux_sym_type_qualifier_token2] = ACTIONS(4523), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4523), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4523), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4523), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4523), + [aux_sym_equivalence_statement_token1] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [aux_sym_stop_statement_token1] = ACTIONS(4523), + [aux_sym_stop_statement_token2] = ACTIONS(4523), + [aux_sym_subroutine_call_token1] = ACTIONS(4523), + [aux_sym_keyword_statement_token1] = ACTIONS(4523), + [aux_sym_keyword_statement_token2] = ACTIONS(4523), + [aux_sym_keyword_statement_token3] = ACTIONS(4523), + [aux_sym_keyword_statement_token4] = ACTIONS(4523), + [aux_sym_keyword_statement_token6] = ACTIONS(4523), + [aux_sym_keyword_statement_token7] = ACTIONS(4523), + [aux_sym_include_statement_token1] = ACTIONS(4523), + [aux_sym_data_statement_token1] = ACTIONS(4523), + [aux_sym_do_loop_statement_token1] = ACTIONS(4523), + [aux_sym__inline_if_statement_token1] = ACTIONS(4523), + [aux_sym_end_if_statement_token1] = ACTIONS(4523), + [aux_sym_elseif_clause_token2] = ACTIONS(4523), + [aux_sym__inline_where_statement_token1] = ACTIONS(4523), + [aux_sym__forall_control_expression_token1] = ACTIONS(4523), + [aux_sym_select_case_statement_token1] = ACTIONS(4523), + [aux_sym_select_case_statement_token3] = ACTIONS(4523), + [aux_sym_select_type_statement_token1] = ACTIONS(4523), + [aux_sym_select_rank_statement_token2] = ACTIONS(4523), + [aux_sym_block_construct_token1] = ACTIONS(4523), + [aux_sym_associate_statement_token1] = ACTIONS(4523), + [aux_sym_format_statement_token1] = ACTIONS(4523), + [aux_sym_print_statement_token1] = ACTIONS(4523), + [aux_sym_open_statement_token1] = ACTIONS(4523), + [aux_sym_close_statement_token1] = ACTIONS(4523), + [aux_sym_inquire_statement_token1] = ACTIONS(4523), + [aux_sym_enum_statement_token1] = ACTIONS(4523), + [aux_sym_file_position_statement_token1] = ACTIONS(4523), + [aux_sym_file_position_statement_token2] = ACTIONS(4523), + [aux_sym_file_position_statement_token3] = ACTIONS(4523), + [aux_sym_file_position_statement_token4] = ACTIONS(4523), + [aux_sym_allocate_statement_token1] = ACTIONS(4523), + [aux_sym_entry_statement_token1] = ACTIONS(4523), + [aux_sym_logical_expression_token5] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_LPAREN_SLASH] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [aux_sym_boolean_literal_token1] = ACTIONS(4525), + [aux_sym_boolean_literal_token2] = ACTIONS(4525), + [aux_sym_null_literal_token1] = ACTIONS(4523), + [aux_sym_coarray_statement_token1] = ACTIONS(4523), + [aux_sym_coarray_statement_token2] = ACTIONS(4523), + [aux_sym_coarray_statement_token6] = ACTIONS(4523), + [aux_sym_coarray_statement_token8] = ACTIONS(4523), + [aux_sym_coarray_statement_token11] = ACTIONS(4523), + [aux_sym_coarray_statement_token12] = ACTIONS(4523), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4523), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4523), + [aux_sym_identifier_token1] = ACTIONS(4523), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4525), + [sym__float_literal] = ACTIONS(4525), + [sym__boz_literal] = ACTIONS(4525), + [sym__string_literal] = ACTIONS(4525), + [sym__string_literal_kind] = ACTIONS(4525), }, - [957] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [966] = { + [aux_sym_preproc_include_token1] = ACTIONS(4549), + [aux_sym_preproc_def_token1] = ACTIONS(4549), + [aux_sym_preproc_if_token1] = ACTIONS(4549), + [aux_sym_preproc_if_token2] = ACTIONS(4549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4549), + [sym_preproc_directive] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4549), + [aux_sym_end_program_statement_token1] = ACTIONS(4549), + [aux_sym_end_program_statement_token2] = ACTIONS(4549), + [aux_sym_module_statement_token1] = ACTIONS(4549), + [aux_sym_submodule_statement_token1] = ACTIONS(4549), + [aux_sym_interface_statement_token1] = ACTIONS(4549), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4549), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4549), + [aux_sym_subroutine_statement_token1] = ACTIONS(4549), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4549), + [aux_sym_function_statement_token1] = ACTIONS(4549), + [aux_sym_language_binding_token1] = ACTIONS(4549), + [aux_sym_procedure_attributes_token1] = ACTIONS(4549), + [aux_sym_procedure_attributes_token3] = ACTIONS(4549), + [aux_sym_contains_statement_token1] = ACTIONS(4549), + [aux_sym_use_statement_token1] = ACTIONS(4549), + [aux_sym_use_statement_token2] = ACTIONS(4549), + [aux_sym_implicit_statement_token1] = ACTIONS(4549), + [aux_sym_implicit_statement_token3] = ACTIONS(4549), + [aux_sym_implicit_statement_token4] = ACTIONS(4549), + [aux_sym_save_statement_token1] = ACTIONS(4549), + [aux_sym_private_statement_token1] = ACTIONS(4549), + [aux_sym_public_statement_token1] = ACTIONS(4549), + [aux_sym_namelist_statement_token1] = ACTIONS(4549), + [aux_sym_common_statement_token1] = ACTIONS(4549), + [aux_sym_import_statement_token1] = ACTIONS(4549), + [aux_sym_derived_type_definition_token1] = ACTIONS(4549), + [aux_sym_abstract_specifier_token1] = ACTIONS(4549), + [aux_sym_procedure_attribute_token6] = ACTIONS(4549), + [aux_sym_variable_attributes_token1] = ACTIONS(4549), + [aux_sym_variable_attributes_token2] = ACTIONS(4549), + [aux_sym_variable_attributes_token3] = ACTIONS(4549), + [aux_sym_variable_attributes_token4] = ACTIONS(4549), + [aux_sym_variable_attributes_token5] = ACTIONS(4549), + [aux_sym__intrinsic_type_token1] = ACTIONS(4549), + [aux_sym__intrinsic_type_token2] = ACTIONS(4549), + [aux_sym__intrinsic_type_token3] = ACTIONS(4549), + [aux_sym__intrinsic_type_token4] = ACTIONS(4549), + [aux_sym__intrinsic_type_token6] = ACTIONS(4549), + [aux_sym__intrinsic_type_token7] = ACTIONS(4549), + [aux_sym__intrinsic_type_token8] = ACTIONS(4549), + [aux_sym__intrinsic_type_token9] = ACTIONS(4549), + [aux_sym__intrinsic_type_token10] = ACTIONS(4549), + [aux_sym_derived_type_token1] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4549), + [aux_sym_type_qualifier_token1] = ACTIONS(4549), + [aux_sym_type_qualifier_token2] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4549), + [aux_sym_equivalence_statement_token1] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [aux_sym_stop_statement_token1] = ACTIONS(4549), + [aux_sym_stop_statement_token2] = ACTIONS(4549), + [aux_sym_subroutine_call_token1] = ACTIONS(4549), + [aux_sym_keyword_statement_token1] = ACTIONS(4549), + [aux_sym_keyword_statement_token2] = ACTIONS(4549), + [aux_sym_keyword_statement_token3] = ACTIONS(4549), + [aux_sym_keyword_statement_token4] = ACTIONS(4549), + [aux_sym_keyword_statement_token6] = ACTIONS(4549), + [aux_sym_keyword_statement_token7] = ACTIONS(4549), + [aux_sym_include_statement_token1] = ACTIONS(4549), + [aux_sym_data_statement_token1] = ACTIONS(4549), + [aux_sym_do_loop_statement_token1] = ACTIONS(4549), + [aux_sym__inline_if_statement_token1] = ACTIONS(4549), + [aux_sym_end_if_statement_token1] = ACTIONS(4549), + [aux_sym_elseif_clause_token2] = ACTIONS(4549), + [aux_sym__inline_where_statement_token1] = ACTIONS(4549), + [aux_sym__forall_control_expression_token1] = ACTIONS(4549), + [aux_sym_select_case_statement_token1] = ACTIONS(4549), + [aux_sym_select_case_statement_token3] = ACTIONS(4549), + [aux_sym_select_type_statement_token1] = ACTIONS(4549), + [aux_sym_select_rank_statement_token2] = ACTIONS(4549), + [aux_sym_block_construct_token1] = ACTIONS(4549), + [aux_sym_associate_statement_token1] = ACTIONS(4549), + [aux_sym_format_statement_token1] = ACTIONS(4549), + [aux_sym_print_statement_token1] = ACTIONS(4549), + [aux_sym_open_statement_token1] = ACTIONS(4549), + [aux_sym_close_statement_token1] = ACTIONS(4549), + [aux_sym_inquire_statement_token1] = ACTIONS(4549), + [aux_sym_enum_statement_token1] = ACTIONS(4549), + [aux_sym_file_position_statement_token1] = ACTIONS(4549), + [aux_sym_file_position_statement_token2] = ACTIONS(4549), + [aux_sym_file_position_statement_token3] = ACTIONS(4549), + [aux_sym_file_position_statement_token4] = ACTIONS(4549), + [aux_sym_allocate_statement_token1] = ACTIONS(4549), + [aux_sym_entry_statement_token1] = ACTIONS(4549), + [aux_sym_logical_expression_token5] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_LPAREN_SLASH] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [aux_sym_boolean_literal_token1] = ACTIONS(4551), + [aux_sym_boolean_literal_token2] = ACTIONS(4551), + [aux_sym_null_literal_token1] = ACTIONS(4549), + [aux_sym_coarray_statement_token1] = ACTIONS(4549), + [aux_sym_coarray_statement_token2] = ACTIONS(4549), + [aux_sym_coarray_statement_token6] = ACTIONS(4549), + [aux_sym_coarray_statement_token8] = ACTIONS(4549), + [aux_sym_coarray_statement_token11] = ACTIONS(4549), + [aux_sym_coarray_statement_token12] = ACTIONS(4549), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4549), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4549), + [aux_sym_identifier_token1] = ACTIONS(4549), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4551), + [sym__float_literal] = ACTIONS(4551), + [sym__boz_literal] = ACTIONS(4551), + [sym__string_literal] = ACTIONS(4551), + [sym__string_literal_kind] = ACTIONS(4551), + }, + [967] = { + [aux_sym_preproc_include_token1] = ACTIONS(4553), + [aux_sym_preproc_def_token1] = ACTIONS(4553), + [aux_sym_preproc_if_token1] = ACTIONS(4553), + [aux_sym_preproc_if_token2] = ACTIONS(4553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4553), + [sym_preproc_directive] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4553), + [aux_sym_end_program_statement_token1] = ACTIONS(4553), + [aux_sym_end_program_statement_token2] = ACTIONS(4553), + [aux_sym_module_statement_token1] = ACTIONS(4553), + [aux_sym_submodule_statement_token1] = ACTIONS(4553), + [aux_sym_interface_statement_token1] = ACTIONS(4553), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4553), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4553), + [aux_sym_subroutine_statement_token1] = ACTIONS(4553), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4553), + [aux_sym_function_statement_token1] = ACTIONS(4553), + [aux_sym_language_binding_token1] = ACTIONS(4553), + [aux_sym_procedure_attributes_token1] = ACTIONS(4553), + [aux_sym_procedure_attributes_token3] = ACTIONS(4553), + [aux_sym_contains_statement_token1] = ACTIONS(4553), + [aux_sym_use_statement_token1] = ACTIONS(4553), + [aux_sym_use_statement_token2] = ACTIONS(4553), + [aux_sym_implicit_statement_token1] = ACTIONS(4553), + [aux_sym_implicit_statement_token3] = ACTIONS(4553), + [aux_sym_implicit_statement_token4] = ACTIONS(4553), + [aux_sym_save_statement_token1] = ACTIONS(4553), + [aux_sym_private_statement_token1] = ACTIONS(4553), + [aux_sym_public_statement_token1] = ACTIONS(4553), + [aux_sym_namelist_statement_token1] = ACTIONS(4553), + [aux_sym_common_statement_token1] = ACTIONS(4553), + [aux_sym_import_statement_token1] = ACTIONS(4553), + [aux_sym_derived_type_definition_token1] = ACTIONS(4553), + [aux_sym_abstract_specifier_token1] = ACTIONS(4553), + [aux_sym_procedure_attribute_token6] = ACTIONS(4553), + [aux_sym_variable_attributes_token1] = ACTIONS(4553), + [aux_sym_variable_attributes_token2] = ACTIONS(4553), + [aux_sym_variable_attributes_token3] = ACTIONS(4553), + [aux_sym_variable_attributes_token4] = ACTIONS(4553), + [aux_sym_variable_attributes_token5] = ACTIONS(4553), + [aux_sym__intrinsic_type_token1] = ACTIONS(4553), + [aux_sym__intrinsic_type_token2] = ACTIONS(4553), + [aux_sym__intrinsic_type_token3] = ACTIONS(4553), + [aux_sym__intrinsic_type_token4] = ACTIONS(4553), + [aux_sym__intrinsic_type_token6] = ACTIONS(4553), + [aux_sym__intrinsic_type_token7] = ACTIONS(4553), + [aux_sym__intrinsic_type_token8] = ACTIONS(4553), + [aux_sym__intrinsic_type_token9] = ACTIONS(4553), + [aux_sym__intrinsic_type_token10] = ACTIONS(4553), + [aux_sym_derived_type_token1] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4553), + [aux_sym_type_qualifier_token1] = ACTIONS(4553), + [aux_sym_type_qualifier_token2] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4553), + [aux_sym_equivalence_statement_token1] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4555), + [aux_sym_stop_statement_token1] = ACTIONS(4553), + [aux_sym_stop_statement_token2] = ACTIONS(4553), + [aux_sym_subroutine_call_token1] = ACTIONS(4553), + [aux_sym_keyword_statement_token1] = ACTIONS(4553), + [aux_sym_keyword_statement_token2] = ACTIONS(4553), + [aux_sym_keyword_statement_token3] = ACTIONS(4553), + [aux_sym_keyword_statement_token4] = ACTIONS(4553), + [aux_sym_keyword_statement_token6] = ACTIONS(4553), + [aux_sym_keyword_statement_token7] = ACTIONS(4553), + [aux_sym_include_statement_token1] = ACTIONS(4553), + [aux_sym_data_statement_token1] = ACTIONS(4553), + [aux_sym_do_loop_statement_token1] = ACTIONS(4553), + [aux_sym__inline_if_statement_token1] = ACTIONS(4553), + [aux_sym_end_if_statement_token1] = ACTIONS(4553), + [aux_sym_elseif_clause_token2] = ACTIONS(4553), + [aux_sym__inline_where_statement_token1] = ACTIONS(4553), + [aux_sym__forall_control_expression_token1] = ACTIONS(4553), + [aux_sym_select_case_statement_token1] = ACTIONS(4553), + [aux_sym_select_case_statement_token3] = ACTIONS(4553), + [aux_sym_select_type_statement_token1] = ACTIONS(4553), + [aux_sym_select_rank_statement_token2] = ACTIONS(4553), + [aux_sym_block_construct_token1] = ACTIONS(4553), + [aux_sym_associate_statement_token1] = ACTIONS(4553), + [aux_sym_format_statement_token1] = ACTIONS(4553), + [aux_sym_print_statement_token1] = ACTIONS(4553), + [aux_sym_open_statement_token1] = ACTIONS(4553), + [aux_sym_close_statement_token1] = ACTIONS(4553), + [aux_sym_inquire_statement_token1] = ACTIONS(4553), + [aux_sym_enum_statement_token1] = ACTIONS(4553), + [aux_sym_file_position_statement_token1] = ACTIONS(4553), + [aux_sym_file_position_statement_token2] = ACTIONS(4553), + [aux_sym_file_position_statement_token3] = ACTIONS(4553), + [aux_sym_file_position_statement_token4] = ACTIONS(4553), + [aux_sym_allocate_statement_token1] = ACTIONS(4553), + [aux_sym_entry_statement_token1] = ACTIONS(4553), + [aux_sym_logical_expression_token5] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_LPAREN_SLASH] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4555), + [aux_sym_boolean_literal_token1] = ACTIONS(4555), + [aux_sym_boolean_literal_token2] = ACTIONS(4555), + [aux_sym_null_literal_token1] = ACTIONS(4553), + [aux_sym_coarray_statement_token1] = ACTIONS(4553), + [aux_sym_coarray_statement_token2] = ACTIONS(4553), + [aux_sym_coarray_statement_token6] = ACTIONS(4553), + [aux_sym_coarray_statement_token8] = ACTIONS(4553), + [aux_sym_coarray_statement_token11] = ACTIONS(4553), + [aux_sym_coarray_statement_token12] = ACTIONS(4553), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4553), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4553), + [aux_sym_identifier_token1] = ACTIONS(4553), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4555), + [sym__float_literal] = ACTIONS(4555), + [sym__boz_literal] = ACTIONS(4555), + [sym__string_literal] = ACTIONS(4555), + [sym__string_literal_kind] = ACTIONS(4555), + }, + [968] = { + [aux_sym_preproc_include_token1] = ACTIONS(4557), + [aux_sym_preproc_def_token1] = ACTIONS(4557), + [aux_sym_preproc_if_token1] = ACTIONS(4557), + [aux_sym_preproc_if_token2] = ACTIONS(4557), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4557), + [sym_preproc_directive] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4557), + [aux_sym_end_program_statement_token1] = ACTIONS(4557), + [aux_sym_end_program_statement_token2] = ACTIONS(4557), + [aux_sym_module_statement_token1] = ACTIONS(4557), + [aux_sym_submodule_statement_token1] = ACTIONS(4557), + [aux_sym_interface_statement_token1] = ACTIONS(4557), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4557), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4557), + [aux_sym_subroutine_statement_token1] = ACTIONS(4557), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4557), + [aux_sym_function_statement_token1] = ACTIONS(4557), + [aux_sym_language_binding_token1] = ACTIONS(4557), + [aux_sym_procedure_attributes_token1] = ACTIONS(4557), + [aux_sym_procedure_attributes_token3] = ACTIONS(4557), + [aux_sym_contains_statement_token1] = ACTIONS(4557), + [aux_sym_use_statement_token1] = ACTIONS(4557), + [aux_sym_use_statement_token2] = ACTIONS(4557), + [aux_sym_implicit_statement_token1] = ACTIONS(4557), + [aux_sym_implicit_statement_token3] = ACTIONS(4557), + [aux_sym_implicit_statement_token4] = ACTIONS(4557), + [aux_sym_save_statement_token1] = ACTIONS(4557), + [aux_sym_private_statement_token1] = ACTIONS(4557), + [aux_sym_public_statement_token1] = ACTIONS(4557), + [aux_sym_namelist_statement_token1] = ACTIONS(4557), + [aux_sym_common_statement_token1] = ACTIONS(4557), + [aux_sym_import_statement_token1] = ACTIONS(4557), + [aux_sym_derived_type_definition_token1] = ACTIONS(4557), + [aux_sym_abstract_specifier_token1] = ACTIONS(4557), + [aux_sym_procedure_attribute_token6] = ACTIONS(4557), + [aux_sym_variable_attributes_token1] = ACTIONS(4557), + [aux_sym_variable_attributes_token2] = ACTIONS(4557), + [aux_sym_variable_attributes_token3] = ACTIONS(4557), + [aux_sym_variable_attributes_token4] = ACTIONS(4557), + [aux_sym_variable_attributes_token5] = ACTIONS(4557), + [aux_sym__intrinsic_type_token1] = ACTIONS(4557), + [aux_sym__intrinsic_type_token2] = ACTIONS(4557), + [aux_sym__intrinsic_type_token3] = ACTIONS(4557), + [aux_sym__intrinsic_type_token4] = ACTIONS(4557), + [aux_sym__intrinsic_type_token6] = ACTIONS(4557), + [aux_sym__intrinsic_type_token7] = ACTIONS(4557), + [aux_sym__intrinsic_type_token8] = ACTIONS(4557), + [aux_sym__intrinsic_type_token9] = ACTIONS(4557), + [aux_sym__intrinsic_type_token10] = ACTIONS(4557), + [aux_sym_derived_type_token1] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4557), + [aux_sym_type_qualifier_token1] = ACTIONS(4557), + [aux_sym_type_qualifier_token2] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4557), + [aux_sym_equivalence_statement_token1] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [aux_sym_stop_statement_token1] = ACTIONS(4557), + [aux_sym_stop_statement_token2] = ACTIONS(4557), + [aux_sym_subroutine_call_token1] = ACTIONS(4557), + [aux_sym_keyword_statement_token1] = ACTIONS(4557), + [aux_sym_keyword_statement_token2] = ACTIONS(4557), + [aux_sym_keyword_statement_token3] = ACTIONS(4557), + [aux_sym_keyword_statement_token4] = ACTIONS(4557), + [aux_sym_keyword_statement_token6] = ACTIONS(4557), + [aux_sym_keyword_statement_token7] = ACTIONS(4557), + [aux_sym_include_statement_token1] = ACTIONS(4557), + [aux_sym_data_statement_token1] = ACTIONS(4557), + [aux_sym_do_loop_statement_token1] = ACTIONS(4557), + [aux_sym__inline_if_statement_token1] = ACTIONS(4557), + [aux_sym_end_if_statement_token1] = ACTIONS(4557), + [aux_sym_elseif_clause_token2] = ACTIONS(4557), + [aux_sym__inline_where_statement_token1] = ACTIONS(4557), + [aux_sym__forall_control_expression_token1] = ACTIONS(4557), + [aux_sym_select_case_statement_token1] = ACTIONS(4557), + [aux_sym_select_case_statement_token3] = ACTIONS(4557), + [aux_sym_select_type_statement_token1] = ACTIONS(4557), + [aux_sym_select_rank_statement_token2] = ACTIONS(4557), + [aux_sym_block_construct_token1] = ACTIONS(4557), + [aux_sym_associate_statement_token1] = ACTIONS(4557), + [aux_sym_format_statement_token1] = ACTIONS(4557), + [aux_sym_print_statement_token1] = ACTIONS(4557), + [aux_sym_open_statement_token1] = ACTIONS(4557), + [aux_sym_close_statement_token1] = ACTIONS(4557), + [aux_sym_inquire_statement_token1] = ACTIONS(4557), + [aux_sym_enum_statement_token1] = ACTIONS(4557), + [aux_sym_file_position_statement_token1] = ACTIONS(4557), + [aux_sym_file_position_statement_token2] = ACTIONS(4557), + [aux_sym_file_position_statement_token3] = ACTIONS(4557), + [aux_sym_file_position_statement_token4] = ACTIONS(4557), + [aux_sym_allocate_statement_token1] = ACTIONS(4557), + [aux_sym_entry_statement_token1] = ACTIONS(4557), + [aux_sym_logical_expression_token5] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_LPAREN_SLASH] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [aux_sym_boolean_literal_token1] = ACTIONS(4559), + [aux_sym_boolean_literal_token2] = ACTIONS(4559), + [aux_sym_null_literal_token1] = ACTIONS(4557), + [aux_sym_coarray_statement_token1] = ACTIONS(4557), + [aux_sym_coarray_statement_token2] = ACTIONS(4557), + [aux_sym_coarray_statement_token6] = ACTIONS(4557), + [aux_sym_coarray_statement_token8] = ACTIONS(4557), + [aux_sym_coarray_statement_token11] = ACTIONS(4557), + [aux_sym_coarray_statement_token12] = ACTIONS(4557), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4557), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4557), + [aux_sym_identifier_token1] = ACTIONS(4557), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4559), + [sym__float_literal] = ACTIONS(4559), + [sym__boz_literal] = ACTIONS(4559), + [sym__string_literal] = ACTIONS(4559), + [sym__string_literal_kind] = ACTIONS(4559), + }, + [969] = { + [ts_builtin_sym_end] = ACTIONS(4613), + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_LPAREN2] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4583), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_end_program_statement_token2] = ACTIONS(4583), - [aux_sym_module_statement_token1] = ACTIONS(4583), - [aux_sym_submodule_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_subroutine_statement_token1] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_function_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4583), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4583), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4583), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_program_statement_token1] = ACTIONS(4611), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_end_program_statement_token2] = ACTIONS(4611), + [aux_sym_module_statement_token1] = ACTIONS(4611), + [aux_sym_submodule_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_subroutine_statement_token1] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_function_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4611), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4611), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4611), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_subroutine_call_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_keyword_statement_token4] = ACTIONS(4611), + [aux_sym_keyword_statement_token6] = ACTIONS(4611), + [aux_sym_keyword_statement_token7] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym_do_loop_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym__inline_where_statement_token1] = ACTIONS(4611), + [aux_sym__forall_control_expression_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token3] = ACTIONS(4611), + [aux_sym_select_type_statement_token1] = ACTIONS(4611), + [aux_sym_select_rank_statement_token2] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_associate_statement_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_print_statement_token1] = ACTIONS(4611), + [aux_sym_open_statement_token1] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token2] = ACTIONS(4611), + [aux_sym_file_position_statement_token3] = ACTIONS(4611), + [aux_sym_file_position_statement_token4] = ACTIONS(4611), + [aux_sym_allocate_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_logical_expression_token5] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LPAREN_SLASH] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4613), + [sym__float_literal] = ACTIONS(4613), + [sym__boz_literal] = ACTIONS(4613), + [sym__string_literal] = ACTIONS(4613), + [sym__string_literal_kind] = ACTIONS(4613), }, - [958] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [970] = { + [ts_builtin_sym_end] = ACTIONS(4373), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_program_statement_token2] = ACTIONS(4587), - [aux_sym_module_statement_token1] = ACTIONS(4587), - [aux_sym_submodule_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_subroutine_statement_token1] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_function_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4587), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4587), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4587), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [959] = { - [ts_builtin_sym_end] = ACTIONS(4265), - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [971] = { + [ts_builtin_sym_end] = ACTIONS(4601), + [aux_sym_preproc_include_token1] = ACTIONS(4599), + [aux_sym_preproc_def_token1] = ACTIONS(4599), + [aux_sym_preproc_if_token1] = ACTIONS(4599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4599), + [sym_preproc_directive] = ACTIONS(4599), + [anon_sym_LPAREN2] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_DASH] = ACTIONS(4601), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_program_statement_token1] = ACTIONS(4599), + [aux_sym_end_program_statement_token1] = ACTIONS(4599), + [aux_sym_end_program_statement_token2] = ACTIONS(4599), + [aux_sym_module_statement_token1] = ACTIONS(4599), + [aux_sym_submodule_statement_token1] = ACTIONS(4599), + [aux_sym_interface_statement_token1] = ACTIONS(4599), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4599), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4599), + [aux_sym_subroutine_statement_token1] = ACTIONS(4599), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4599), + [aux_sym_function_statement_token1] = ACTIONS(4599), + [aux_sym_language_binding_token1] = ACTIONS(4599), + [aux_sym_procedure_attributes_token1] = ACTIONS(4599), + [aux_sym_procedure_attributes_token3] = ACTIONS(4599), + [aux_sym_contains_statement_token1] = ACTIONS(4599), + [aux_sym_use_statement_token1] = ACTIONS(4599), + [aux_sym_use_statement_token2] = ACTIONS(4599), + [aux_sym_implicit_statement_token1] = ACTIONS(4599), + [aux_sym_implicit_statement_token3] = ACTIONS(4599), + [aux_sym_implicit_statement_token4] = ACTIONS(4599), + [aux_sym_save_statement_token1] = ACTIONS(4599), + [aux_sym_private_statement_token1] = ACTIONS(4599), + [aux_sym_public_statement_token1] = ACTIONS(4599), + [aux_sym_namelist_statement_token1] = ACTIONS(4599), + [aux_sym_common_statement_token1] = ACTIONS(4599), + [aux_sym_import_statement_token1] = ACTIONS(4599), + [aux_sym_derived_type_definition_token1] = ACTIONS(4599), + [aux_sym_abstract_specifier_token1] = ACTIONS(4599), + [aux_sym_procedure_attribute_token6] = ACTIONS(4599), + [aux_sym_variable_attributes_token1] = ACTIONS(4599), + [aux_sym_variable_attributes_token2] = ACTIONS(4599), + [aux_sym_variable_attributes_token3] = ACTIONS(4599), + [aux_sym_variable_attributes_token4] = ACTIONS(4599), + [aux_sym_variable_attributes_token5] = ACTIONS(4599), + [aux_sym__intrinsic_type_token1] = ACTIONS(4599), + [aux_sym__intrinsic_type_token2] = ACTIONS(4599), + [aux_sym__intrinsic_type_token3] = ACTIONS(4599), + [aux_sym__intrinsic_type_token4] = ACTIONS(4599), + [aux_sym__intrinsic_type_token6] = ACTIONS(4599), + [aux_sym__intrinsic_type_token7] = ACTIONS(4599), + [aux_sym__intrinsic_type_token8] = ACTIONS(4599), + [aux_sym__intrinsic_type_token9] = ACTIONS(4599), + [aux_sym__intrinsic_type_token10] = ACTIONS(4599), + [aux_sym_derived_type_token1] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4599), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4599), + [aux_sym_type_qualifier_token1] = ACTIONS(4599), + [aux_sym_type_qualifier_token2] = ACTIONS(4599), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4599), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4599), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4599), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4599), + [aux_sym_equivalence_statement_token1] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4601), + [aux_sym_stop_statement_token1] = ACTIONS(4599), + [aux_sym_stop_statement_token2] = ACTIONS(4599), + [aux_sym_subroutine_call_token1] = ACTIONS(4599), + [aux_sym_keyword_statement_token1] = ACTIONS(4599), + [aux_sym_keyword_statement_token2] = ACTIONS(4599), + [aux_sym_keyword_statement_token3] = ACTIONS(4599), + [aux_sym_keyword_statement_token4] = ACTIONS(4599), + [aux_sym_keyword_statement_token6] = ACTIONS(4599), + [aux_sym_keyword_statement_token7] = ACTIONS(4599), + [aux_sym_include_statement_token1] = ACTIONS(4599), + [aux_sym_data_statement_token1] = ACTIONS(4599), + [aux_sym_do_loop_statement_token1] = ACTIONS(4599), + [aux_sym__inline_if_statement_token1] = ACTIONS(4599), + [aux_sym_end_if_statement_token1] = ACTIONS(4599), + [aux_sym_elseif_clause_token2] = ACTIONS(4599), + [aux_sym__inline_where_statement_token1] = ACTIONS(4599), + [aux_sym__forall_control_expression_token1] = ACTIONS(4599), + [aux_sym_select_case_statement_token1] = ACTIONS(4599), + [aux_sym_select_case_statement_token3] = ACTIONS(4599), + [aux_sym_select_type_statement_token1] = ACTIONS(4599), + [aux_sym_select_rank_statement_token2] = ACTIONS(4599), + [aux_sym_block_construct_token1] = ACTIONS(4599), + [aux_sym_associate_statement_token1] = ACTIONS(4599), + [aux_sym_format_statement_token1] = ACTIONS(4599), + [aux_sym_print_statement_token1] = ACTIONS(4599), + [aux_sym_open_statement_token1] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4599), + [aux_sym_inquire_statement_token1] = ACTIONS(4599), + [aux_sym_enum_statement_token1] = ACTIONS(4599), + [aux_sym_file_position_statement_token1] = ACTIONS(4599), + [aux_sym_file_position_statement_token2] = ACTIONS(4599), + [aux_sym_file_position_statement_token3] = ACTIONS(4599), + [aux_sym_file_position_statement_token4] = ACTIONS(4599), + [aux_sym_allocate_statement_token1] = ACTIONS(4599), + [aux_sym_entry_statement_token1] = ACTIONS(4599), + [aux_sym_logical_expression_token5] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4599), + [anon_sym_LPAREN_SLASH] = ACTIONS(4601), + [anon_sym_LBRACK] = ACTIONS(4601), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [aux_sym_null_literal_token1] = ACTIONS(4599), + [aux_sym_coarray_statement_token1] = ACTIONS(4599), + [aux_sym_coarray_statement_token2] = ACTIONS(4599), + [aux_sym_coarray_statement_token6] = ACTIONS(4599), + [aux_sym_coarray_statement_token8] = ACTIONS(4599), + [aux_sym_coarray_statement_token11] = ACTIONS(4599), + [aux_sym_coarray_statement_token12] = ACTIONS(4599), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4599), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4599), + [aux_sym_identifier_token1] = ACTIONS(4599), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [960] = { - [ts_builtin_sym_end] = ACTIONS(4455), - [aux_sym_preproc_include_token1] = ACTIONS(4453), - [aux_sym_preproc_def_token1] = ACTIONS(4453), - [aux_sym_preproc_if_token1] = ACTIONS(4453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4453), - [sym_preproc_directive] = ACTIONS(4453), - [anon_sym_LPAREN2] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4453), - [aux_sym_end_program_statement_token1] = ACTIONS(4453), - [aux_sym_end_program_statement_token2] = ACTIONS(4453), - [aux_sym_module_statement_token1] = ACTIONS(4453), - [aux_sym_submodule_statement_token1] = ACTIONS(4453), - [aux_sym_interface_statement_token1] = ACTIONS(4453), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4453), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4453), - [aux_sym_subroutine_statement_token1] = ACTIONS(4453), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4453), - [aux_sym_function_statement_token1] = ACTIONS(4453), - [aux_sym_language_binding_token1] = ACTIONS(4453), - [aux_sym_procedure_attributes_token1] = ACTIONS(4453), - [aux_sym_procedure_attributes_token3] = ACTIONS(4453), - [aux_sym_contains_statement_token1] = ACTIONS(4453), - [aux_sym_use_statement_token1] = ACTIONS(4453), - [aux_sym_use_statement_token2] = ACTIONS(4453), - [aux_sym_implicit_statement_token1] = ACTIONS(4453), - [aux_sym_implicit_statement_token3] = ACTIONS(4453), - [aux_sym_implicit_statement_token4] = ACTIONS(4453), - [aux_sym_save_statement_token1] = ACTIONS(4453), - [aux_sym_private_statement_token1] = ACTIONS(4453), - [aux_sym_public_statement_token1] = ACTIONS(4453), - [aux_sym_namelist_statement_token1] = ACTIONS(4453), - [aux_sym_common_statement_token1] = ACTIONS(4453), - [aux_sym_import_statement_token1] = ACTIONS(4453), - [aux_sym_derived_type_definition_token1] = ACTIONS(4453), - [aux_sym_abstract_specifier_token1] = ACTIONS(4453), - [aux_sym_procedure_attribute_token6] = ACTIONS(4453), - [aux_sym_variable_attributes_token1] = ACTIONS(4453), - [aux_sym_variable_attributes_token2] = ACTIONS(4453), - [aux_sym_variable_attributes_token3] = ACTIONS(4453), - [aux_sym_variable_attributes_token4] = ACTIONS(4453), - [aux_sym_variable_attributes_token5] = ACTIONS(4453), - [aux_sym__intrinsic_type_token1] = ACTIONS(4453), - [aux_sym__intrinsic_type_token2] = ACTIONS(4453), - [aux_sym__intrinsic_type_token3] = ACTIONS(4453), - [aux_sym__intrinsic_type_token4] = ACTIONS(4453), - [aux_sym__intrinsic_type_token6] = ACTIONS(4453), - [aux_sym__intrinsic_type_token7] = ACTIONS(4453), - [aux_sym__intrinsic_type_token8] = ACTIONS(4453), - [aux_sym__intrinsic_type_token9] = ACTIONS(4453), - [aux_sym__intrinsic_type_token10] = ACTIONS(4453), - [aux_sym_derived_type_token1] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4453), - [aux_sym_type_qualifier_token1] = ACTIONS(4453), - [aux_sym_type_qualifier_token2] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4453), - [aux_sym_equivalence_statement_token1] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [aux_sym_stop_statement_token1] = ACTIONS(4453), - [aux_sym_stop_statement_token2] = ACTIONS(4453), - [aux_sym_subroutine_call_token1] = ACTIONS(4453), - [aux_sym_keyword_statement_token1] = ACTIONS(4453), - [aux_sym_keyword_statement_token2] = ACTIONS(4453), - [aux_sym_keyword_statement_token3] = ACTIONS(4453), - [aux_sym_keyword_statement_token4] = ACTIONS(4453), - [aux_sym_keyword_statement_token6] = ACTIONS(4453), - [aux_sym_keyword_statement_token7] = ACTIONS(4453), - [aux_sym_include_statement_token1] = ACTIONS(4453), - [aux_sym_data_statement_token1] = ACTIONS(4453), - [aux_sym_do_loop_statement_token1] = ACTIONS(4453), - [aux_sym__inline_if_statement_token1] = ACTIONS(4453), - [aux_sym_end_if_statement_token1] = ACTIONS(4453), - [aux_sym_elseif_clause_token2] = ACTIONS(4453), - [aux_sym__inline_where_statement_token1] = ACTIONS(4453), - [aux_sym__forall_control_expression_token1] = ACTIONS(4453), - [aux_sym_select_case_statement_token1] = ACTIONS(4453), - [aux_sym_select_case_statement_token3] = ACTIONS(4453), - [aux_sym_select_type_statement_token1] = ACTIONS(4453), - [aux_sym_select_rank_statement_token2] = ACTIONS(4453), - [aux_sym_block_construct_token1] = ACTIONS(4453), - [aux_sym_associate_statement_token1] = ACTIONS(4453), - [aux_sym_format_statement_token1] = ACTIONS(4453), - [aux_sym_print_statement_token1] = ACTIONS(4453), - [aux_sym_open_statement_token1] = ACTIONS(4453), - [aux_sym_close_statement_token1] = ACTIONS(4453), - [aux_sym_inquire_statement_token1] = ACTIONS(4453), - [aux_sym_enum_statement_token1] = ACTIONS(4453), - [aux_sym_file_position_statement_token1] = ACTIONS(4453), - [aux_sym_file_position_statement_token2] = ACTIONS(4453), - [aux_sym_file_position_statement_token3] = ACTIONS(4453), - [aux_sym_file_position_statement_token4] = ACTIONS(4453), - [aux_sym_allocate_statement_token1] = ACTIONS(4453), - [aux_sym_entry_statement_token1] = ACTIONS(4453), - [aux_sym_logical_expression_token5] = ACTIONS(4455), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_LPAREN_SLASH] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [aux_sym_boolean_literal_token1] = ACTIONS(4455), - [aux_sym_boolean_literal_token2] = ACTIONS(4455), - [aux_sym_null_literal_token1] = ACTIONS(4453), - [aux_sym_coarray_statement_token1] = ACTIONS(4453), - [aux_sym_coarray_statement_token2] = ACTIONS(4453), - [aux_sym_coarray_statement_token6] = ACTIONS(4453), - [aux_sym_coarray_statement_token8] = ACTIONS(4453), - [aux_sym_coarray_statement_token11] = ACTIONS(4453), - [aux_sym_coarray_statement_token12] = ACTIONS(4453), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4453), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4453), - [aux_sym_identifier_token1] = ACTIONS(4453), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4455), - [sym__float_literal] = ACTIONS(4455), - [sym__boz_literal] = ACTIONS(4455), - [sym__string_literal] = ACTIONS(4455), - [sym__string_literal_kind] = ACTIONS(4455), + [sym__integer_literal] = ACTIONS(4601), + [sym__float_literal] = ACTIONS(4601), + [sym__boz_literal] = ACTIONS(4601), + [sym__string_literal] = ACTIONS(4601), + [sym__string_literal_kind] = ACTIONS(4601), }, - [961] = { - [aux_sym_preproc_include_token1] = ACTIONS(4519), - [aux_sym_preproc_def_token1] = ACTIONS(4519), - [aux_sym_preproc_if_token1] = ACTIONS(4519), - [aux_sym_preproc_if_token2] = ACTIONS(4519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4519), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4519), - [sym_preproc_directive] = ACTIONS(4519), - [anon_sym_LPAREN2] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4521), - [anon_sym_DASH] = ACTIONS(4521), + [972] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token2] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_LPAREN2] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4519), - [aux_sym_end_program_statement_token1] = ACTIONS(4519), - [aux_sym_end_program_statement_token2] = ACTIONS(4519), - [aux_sym_module_statement_token1] = ACTIONS(4519), - [aux_sym_submodule_statement_token1] = ACTIONS(4519), - [aux_sym_interface_statement_token1] = ACTIONS(4519), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4519), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4519), - [aux_sym_subroutine_statement_token1] = ACTIONS(4519), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4519), - [aux_sym_function_statement_token1] = ACTIONS(4519), - [aux_sym_language_binding_token1] = ACTIONS(4519), - [aux_sym_procedure_attributes_token1] = ACTIONS(4519), - [aux_sym_procedure_attributes_token3] = ACTIONS(4519), - [aux_sym_contains_statement_token1] = ACTIONS(4519), - [aux_sym_use_statement_token1] = ACTIONS(4519), - [aux_sym_use_statement_token2] = ACTIONS(4519), - [aux_sym_implicit_statement_token1] = ACTIONS(4519), - [aux_sym_implicit_statement_token3] = ACTIONS(4519), - [aux_sym_implicit_statement_token4] = ACTIONS(4519), - [aux_sym_save_statement_token1] = ACTIONS(4519), - [aux_sym_private_statement_token1] = ACTIONS(4519), - [aux_sym_public_statement_token1] = ACTIONS(4519), - [aux_sym_namelist_statement_token1] = ACTIONS(4519), - [aux_sym_common_statement_token1] = ACTIONS(4519), - [aux_sym_import_statement_token1] = ACTIONS(4519), - [aux_sym_derived_type_definition_token1] = ACTIONS(4519), - [aux_sym_abstract_specifier_token1] = ACTIONS(4519), - [aux_sym_procedure_attribute_token6] = ACTIONS(4519), - [aux_sym_variable_attributes_token1] = ACTIONS(4519), - [aux_sym_variable_attributes_token2] = ACTIONS(4519), - [aux_sym_variable_attributes_token3] = ACTIONS(4519), - [aux_sym_variable_attributes_token4] = ACTIONS(4519), - [aux_sym_variable_attributes_token5] = ACTIONS(4519), - [aux_sym__intrinsic_type_token1] = ACTIONS(4519), - [aux_sym__intrinsic_type_token2] = ACTIONS(4519), - [aux_sym__intrinsic_type_token3] = ACTIONS(4519), - [aux_sym__intrinsic_type_token4] = ACTIONS(4519), - [aux_sym__intrinsic_type_token6] = ACTIONS(4519), - [aux_sym__intrinsic_type_token7] = ACTIONS(4519), - [aux_sym__intrinsic_type_token8] = ACTIONS(4519), - [aux_sym__intrinsic_type_token9] = ACTIONS(4519), - [aux_sym__intrinsic_type_token10] = ACTIONS(4519), - [aux_sym_derived_type_token1] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4519), - [aux_sym_type_qualifier_token1] = ACTIONS(4519), - [aux_sym_type_qualifier_token2] = ACTIONS(4519), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4519), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4519), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4519), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4519), - [aux_sym_equivalence_statement_token1] = ACTIONS(4519), - [anon_sym_SEMI] = ACTIONS(4521), - [aux_sym_stop_statement_token1] = ACTIONS(4519), - [aux_sym_stop_statement_token2] = ACTIONS(4519), - [aux_sym_subroutine_call_token1] = ACTIONS(4519), - [aux_sym_keyword_statement_token1] = ACTIONS(4519), - [aux_sym_keyword_statement_token2] = ACTIONS(4519), - [aux_sym_keyword_statement_token3] = ACTIONS(4519), - [aux_sym_keyword_statement_token4] = ACTIONS(4519), - [aux_sym_keyword_statement_token6] = ACTIONS(4519), - [aux_sym_keyword_statement_token7] = ACTIONS(4519), - [aux_sym_include_statement_token1] = ACTIONS(4519), - [aux_sym_data_statement_token1] = ACTIONS(4519), - [aux_sym_do_loop_statement_token1] = ACTIONS(4519), - [aux_sym__inline_if_statement_token1] = ACTIONS(4519), - [aux_sym_end_if_statement_token1] = ACTIONS(4519), - [aux_sym_elseif_clause_token2] = ACTIONS(4519), - [aux_sym__inline_where_statement_token1] = ACTIONS(4519), - [aux_sym__forall_control_expression_token1] = ACTIONS(4519), - [aux_sym_select_case_statement_token1] = ACTIONS(4519), - [aux_sym_select_case_statement_token3] = ACTIONS(4519), - [aux_sym_select_type_statement_token1] = ACTIONS(4519), - [aux_sym_select_rank_statement_token2] = ACTIONS(4519), - [aux_sym_block_construct_token1] = ACTIONS(4519), - [aux_sym_associate_statement_token1] = ACTIONS(4519), - [aux_sym_format_statement_token1] = ACTIONS(4519), - [aux_sym_print_statement_token1] = ACTIONS(4519), - [aux_sym_open_statement_token1] = ACTIONS(4519), - [aux_sym_close_statement_token1] = ACTIONS(4519), - [aux_sym_inquire_statement_token1] = ACTIONS(4519), - [aux_sym_enum_statement_token1] = ACTIONS(4519), - [aux_sym_file_position_statement_token1] = ACTIONS(4519), - [aux_sym_file_position_statement_token2] = ACTIONS(4519), - [aux_sym_file_position_statement_token3] = ACTIONS(4519), - [aux_sym_file_position_statement_token4] = ACTIONS(4519), - [aux_sym_allocate_statement_token1] = ACTIONS(4519), - [aux_sym_entry_statement_token1] = ACTIONS(4519), - [aux_sym_logical_expression_token5] = ACTIONS(4521), - [anon_sym_DOT] = ACTIONS(4519), - [anon_sym_LPAREN_SLASH] = ACTIONS(4521), - [anon_sym_LBRACK] = ACTIONS(4521), - [aux_sym_boolean_literal_token1] = ACTIONS(4521), - [aux_sym_boolean_literal_token2] = ACTIONS(4521), - [aux_sym_null_literal_token1] = ACTIONS(4519), - [aux_sym_coarray_statement_token1] = ACTIONS(4519), - [aux_sym_coarray_statement_token2] = ACTIONS(4519), - [aux_sym_coarray_statement_token6] = ACTIONS(4519), - [aux_sym_coarray_statement_token8] = ACTIONS(4519), - [aux_sym_coarray_statement_token11] = ACTIONS(4519), - [aux_sym_coarray_statement_token12] = ACTIONS(4519), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4519), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4519), - [aux_sym_identifier_token1] = ACTIONS(4519), + [aux_sym_program_statement_token1] = ACTIONS(4611), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_end_program_statement_token2] = ACTIONS(4611), + [aux_sym_module_statement_token1] = ACTIONS(4611), + [aux_sym_submodule_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_subroutine_statement_token1] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_function_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4611), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4611), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4611), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_subroutine_call_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_keyword_statement_token4] = ACTIONS(4611), + [aux_sym_keyword_statement_token6] = ACTIONS(4611), + [aux_sym_keyword_statement_token7] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym_do_loop_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym__inline_where_statement_token1] = ACTIONS(4611), + [aux_sym__forall_control_expression_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token3] = ACTIONS(4611), + [aux_sym_select_type_statement_token1] = ACTIONS(4611), + [aux_sym_select_rank_statement_token2] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_associate_statement_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_print_statement_token1] = ACTIONS(4611), + [aux_sym_open_statement_token1] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token2] = ACTIONS(4611), + [aux_sym_file_position_statement_token3] = ACTIONS(4611), + [aux_sym_file_position_statement_token4] = ACTIONS(4611), + [aux_sym_allocate_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_logical_expression_token5] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LPAREN_SLASH] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4521), - [sym__float_literal] = ACTIONS(4521), - [sym__boz_literal] = ACTIONS(4521), - [sym__string_literal] = ACTIONS(4521), - [sym__string_literal_kind] = ACTIONS(4521), + [sym__integer_literal] = ACTIONS(4613), + [sym__float_literal] = ACTIONS(4613), + [sym__boz_literal] = ACTIONS(4613), + [sym__string_literal] = ACTIONS(4613), + [sym__string_literal_kind] = ACTIONS(4613), }, - [962] = { - [ts_builtin_sym_end] = ACTIONS(4409), - [aux_sym_preproc_include_token1] = ACTIONS(4407), - [aux_sym_preproc_def_token1] = ACTIONS(4407), - [aux_sym_preproc_if_token1] = ACTIONS(4407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), - [sym_preproc_directive] = ACTIONS(4407), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), + [973] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token2] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4407), - [aux_sym_end_program_statement_token1] = ACTIONS(4407), - [aux_sym_end_program_statement_token2] = ACTIONS(4407), - [aux_sym_module_statement_token1] = ACTIONS(4407), - [aux_sym_submodule_statement_token1] = ACTIONS(4407), - [aux_sym_interface_statement_token1] = ACTIONS(4407), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), - [aux_sym_subroutine_statement_token1] = ACTIONS(4407), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), - [aux_sym_function_statement_token1] = ACTIONS(4407), - [aux_sym_language_binding_token1] = ACTIONS(4407), - [aux_sym_procedure_attributes_token1] = ACTIONS(4407), - [aux_sym_procedure_attributes_token3] = ACTIONS(4407), - [aux_sym_contains_statement_token1] = ACTIONS(4407), - [aux_sym_use_statement_token1] = ACTIONS(4407), - [aux_sym_use_statement_token2] = ACTIONS(4407), - [aux_sym_implicit_statement_token1] = ACTIONS(4407), - [aux_sym_implicit_statement_token3] = ACTIONS(4407), - [aux_sym_implicit_statement_token4] = ACTIONS(4407), - [aux_sym_save_statement_token1] = ACTIONS(4407), - [aux_sym_private_statement_token1] = ACTIONS(4407), - [aux_sym_public_statement_token1] = ACTIONS(4407), - [aux_sym_namelist_statement_token1] = ACTIONS(4407), - [aux_sym_common_statement_token1] = ACTIONS(4407), - [aux_sym_import_statement_token1] = ACTIONS(4407), - [aux_sym_derived_type_definition_token1] = ACTIONS(4407), - [aux_sym_abstract_specifier_token1] = ACTIONS(4407), - [aux_sym_procedure_attribute_token6] = ACTIONS(4407), - [aux_sym_variable_attributes_token1] = ACTIONS(4407), - [aux_sym_variable_attributes_token2] = ACTIONS(4407), - [aux_sym_variable_attributes_token3] = ACTIONS(4407), - [aux_sym_variable_attributes_token4] = ACTIONS(4407), - [aux_sym_variable_attributes_token5] = ACTIONS(4407), - [aux_sym__intrinsic_type_token1] = ACTIONS(4407), - [aux_sym__intrinsic_type_token2] = ACTIONS(4407), - [aux_sym__intrinsic_type_token3] = ACTIONS(4407), - [aux_sym__intrinsic_type_token4] = ACTIONS(4407), - [aux_sym__intrinsic_type_token6] = ACTIONS(4407), - [aux_sym__intrinsic_type_token7] = ACTIONS(4407), - [aux_sym__intrinsic_type_token8] = ACTIONS(4407), - [aux_sym__intrinsic_type_token9] = ACTIONS(4407), - [aux_sym__intrinsic_type_token10] = ACTIONS(4407), - [aux_sym_derived_type_token1] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), - [aux_sym_type_qualifier_token1] = ACTIONS(4407), - [aux_sym_type_qualifier_token2] = ACTIONS(4407), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4407), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4407), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4407), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4407), - [aux_sym_equivalence_statement_token1] = ACTIONS(4407), - [anon_sym_SEMI] = ACTIONS(4409), - [aux_sym_stop_statement_token1] = ACTIONS(4407), - [aux_sym_stop_statement_token2] = ACTIONS(4407), - [aux_sym_subroutine_call_token1] = ACTIONS(4407), - [aux_sym_keyword_statement_token1] = ACTIONS(4407), - [aux_sym_keyword_statement_token2] = ACTIONS(4407), - [aux_sym_keyword_statement_token3] = ACTIONS(4407), - [aux_sym_keyword_statement_token4] = ACTIONS(4407), - [aux_sym_keyword_statement_token6] = ACTIONS(4407), - [aux_sym_keyword_statement_token7] = ACTIONS(4407), - [aux_sym_include_statement_token1] = ACTIONS(4407), - [aux_sym_data_statement_token1] = ACTIONS(4407), - [aux_sym_do_loop_statement_token1] = ACTIONS(4407), - [aux_sym__inline_if_statement_token1] = ACTIONS(4407), - [aux_sym_end_if_statement_token1] = ACTIONS(4407), - [aux_sym_elseif_clause_token2] = ACTIONS(4407), - [aux_sym__inline_where_statement_token1] = ACTIONS(4407), - [aux_sym__forall_control_expression_token1] = ACTIONS(4407), - [aux_sym_select_case_statement_token1] = ACTIONS(4407), - [aux_sym_select_case_statement_token3] = ACTIONS(4407), - [aux_sym_select_type_statement_token1] = ACTIONS(4407), - [aux_sym_select_rank_statement_token2] = ACTIONS(4407), - [aux_sym_block_construct_token1] = ACTIONS(4407), - [aux_sym_associate_statement_token1] = ACTIONS(4407), - [aux_sym_format_statement_token1] = ACTIONS(4407), - [aux_sym_print_statement_token1] = ACTIONS(4407), - [aux_sym_open_statement_token1] = ACTIONS(4407), - [aux_sym_close_statement_token1] = ACTIONS(4407), - [aux_sym_inquire_statement_token1] = ACTIONS(4407), - [aux_sym_enum_statement_token1] = ACTIONS(4407), - [aux_sym_file_position_statement_token1] = ACTIONS(4407), - [aux_sym_file_position_statement_token2] = ACTIONS(4407), - [aux_sym_file_position_statement_token3] = ACTIONS(4407), - [aux_sym_file_position_statement_token4] = ACTIONS(4407), - [aux_sym_allocate_statement_token1] = ACTIONS(4407), - [aux_sym_entry_statement_token1] = ACTIONS(4407), - [aux_sym_logical_expression_token5] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_LPAREN_SLASH] = ACTIONS(4409), - [anon_sym_LBRACK] = ACTIONS(4409), - [aux_sym_boolean_literal_token1] = ACTIONS(4409), - [aux_sym_boolean_literal_token2] = ACTIONS(4409), - [aux_sym_null_literal_token1] = ACTIONS(4407), - [aux_sym_coarray_statement_token1] = ACTIONS(4407), - [aux_sym_coarray_statement_token2] = ACTIONS(4407), - [aux_sym_coarray_statement_token6] = ACTIONS(4407), - [aux_sym_coarray_statement_token8] = ACTIONS(4407), - [aux_sym_coarray_statement_token11] = ACTIONS(4407), - [aux_sym_coarray_statement_token12] = ACTIONS(4407), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), - [aux_sym_identifier_token1] = ACTIONS(4407), + [aux_sym_program_statement_token1] = ACTIONS(4615), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_end_program_statement_token2] = ACTIONS(4615), + [aux_sym_module_statement_token1] = ACTIONS(4615), + [aux_sym_submodule_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_subroutine_statement_token1] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_function_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4615), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4615), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4615), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_subroutine_call_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_keyword_statement_token4] = ACTIONS(4615), + [aux_sym_keyword_statement_token6] = ACTIONS(4615), + [aux_sym_keyword_statement_token7] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym_do_loop_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym__inline_where_statement_token1] = ACTIONS(4615), + [aux_sym__forall_control_expression_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token3] = ACTIONS(4615), + [aux_sym_select_type_statement_token1] = ACTIONS(4615), + [aux_sym_select_rank_statement_token2] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_associate_statement_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_print_statement_token1] = ACTIONS(4615), + [aux_sym_open_statement_token1] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token2] = ACTIONS(4615), + [aux_sym_file_position_statement_token3] = ACTIONS(4615), + [aux_sym_file_position_statement_token4] = ACTIONS(4615), + [aux_sym_allocate_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_logical_expression_token5] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LPAREN_SLASH] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(4617), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4409), - [sym__float_literal] = ACTIONS(4409), - [sym__boz_literal] = ACTIONS(4409), - [sym__string_literal] = ACTIONS(4409), - [sym__string_literal_kind] = ACTIONS(4409), + [sym__integer_literal] = ACTIONS(4617), + [sym__float_literal] = ACTIONS(4617), + [sym__boz_literal] = ACTIONS(4617), + [sym__string_literal] = ACTIONS(4617), + [sym__string_literal_kind] = ACTIONS(4617), }, - [963] = { - [sym_preproc_include] = STATE(1014), - [sym_preproc_def] = STATE(1014), - [sym_preproc_function_def] = STATE(1014), - [sym_preproc_call] = STATE(1014), - [sym_preproc_else_in_module] = STATE(7983), - [sym_preproc_elif_in_module] = STATE(7983), - [sym_preproc_elifdef_in_module] = STATE(7983), - [sym_interface] = STATE(1014), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5666), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1014), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1014), - [sym_public_statement] = STATE(1014), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1014), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1014), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1014), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4727), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [974] = { + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token2] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), + [anon_sym_LPAREN2] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token2] = ACTIONS(4511), + [aux_sym_module_statement_token1] = ACTIONS(4511), + [aux_sym_submodule_statement_token1] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_subroutine_statement_token1] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_function_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_contains_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4511), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4511), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4511), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_subroutine_call_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_keyword_statement_token4] = ACTIONS(4511), + [aux_sym_keyword_statement_token6] = ACTIONS(4511), + [aux_sym_keyword_statement_token7] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym_do_loop_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym__inline_where_statement_token1] = ACTIONS(4511), + [aux_sym__forall_control_expression_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token3] = ACTIONS(4511), + [aux_sym_select_type_statement_token1] = ACTIONS(4511), + [aux_sym_select_rank_statement_token2] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_associate_statement_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_print_statement_token1] = ACTIONS(4511), + [aux_sym_open_statement_token1] = ACTIONS(4511), + [aux_sym_close_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token2] = ACTIONS(4511), + [aux_sym_file_position_statement_token3] = ACTIONS(4511), + [aux_sym_file_position_statement_token4] = ACTIONS(4511), + [aux_sym_allocate_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_logical_expression_token5] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_LPAREN_SLASH] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [aux_sym_boolean_literal_token1] = ACTIONS(4513), + [aux_sym_boolean_literal_token2] = ACTIONS(4513), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4513), + [sym__float_literal] = ACTIONS(4513), + [sym__boz_literal] = ACTIONS(4513), + [sym__string_literal] = ACTIONS(4513), + [sym__string_literal_kind] = ACTIONS(4513), }, - [964] = { - [sym_preproc_include] = STATE(1017), - [sym_preproc_def] = STATE(1017), - [sym_preproc_function_def] = STATE(1017), - [sym_preproc_call] = STATE(1017), - [sym_preproc_else_in_module] = STATE(8026), - [sym_preproc_elif_in_module] = STATE(8026), - [sym_preproc_elifdef_in_module] = STATE(8026), - [sym_interface] = STATE(1017), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5685), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1017), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1017), - [sym_public_statement] = STATE(1017), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1017), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1017), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1017), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4729), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [975] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token2] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4379), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_end_program_statement_token2] = ACTIONS(4379), + [aux_sym_module_statement_token1] = ACTIONS(4379), + [aux_sym_submodule_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_subroutine_statement_token1] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_function_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4379), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4379), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4379), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_subroutine_call_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_keyword_statement_token4] = ACTIONS(4379), + [aux_sym_keyword_statement_token6] = ACTIONS(4379), + [aux_sym_keyword_statement_token7] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym_do_loop_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym__inline_where_statement_token1] = ACTIONS(4379), + [aux_sym__forall_control_expression_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token3] = ACTIONS(4379), + [aux_sym_select_type_statement_token1] = ACTIONS(4379), + [aux_sym_select_rank_statement_token2] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_associate_statement_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_print_statement_token1] = ACTIONS(4379), + [aux_sym_open_statement_token1] = ACTIONS(4379), + [aux_sym_close_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token2] = ACTIONS(4379), + [aux_sym_file_position_statement_token3] = ACTIONS(4379), + [aux_sym_file_position_statement_token4] = ACTIONS(4379), + [aux_sym_allocate_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_logical_expression_token5] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LPAREN_SLASH] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [aux_sym_boolean_literal_token1] = ACTIONS(4381), + [aux_sym_boolean_literal_token2] = ACTIONS(4381), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4381), + [sym__float_literal] = ACTIONS(4381), + [sym__boz_literal] = ACTIONS(4381), + [sym__string_literal] = ACTIONS(4381), + [sym__string_literal_kind] = ACTIONS(4381), }, - [965] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(8026), - [sym_preproc_elif_in_module] = STATE(8026), - [sym_preproc_elifdef_in_module] = STATE(8026), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5685), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4729), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [976] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token2] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4383), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_end_program_statement_token2] = ACTIONS(4383), + [aux_sym_module_statement_token1] = ACTIONS(4383), + [aux_sym_submodule_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_subroutine_statement_token1] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_function_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4383), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4383), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4383), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_subroutine_call_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_keyword_statement_token4] = ACTIONS(4383), + [aux_sym_keyword_statement_token6] = ACTIONS(4383), + [aux_sym_keyword_statement_token7] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym_do_loop_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym__inline_where_statement_token1] = ACTIONS(4383), + [aux_sym__forall_control_expression_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token3] = ACTIONS(4383), + [aux_sym_select_type_statement_token1] = ACTIONS(4383), + [aux_sym_select_rank_statement_token2] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_associate_statement_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_print_statement_token1] = ACTIONS(4383), + [aux_sym_open_statement_token1] = ACTIONS(4383), + [aux_sym_close_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token2] = ACTIONS(4383), + [aux_sym_file_position_statement_token3] = ACTIONS(4383), + [aux_sym_file_position_statement_token4] = ACTIONS(4383), + [aux_sym_allocate_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_logical_expression_token5] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LPAREN_SLASH] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [aux_sym_boolean_literal_token1] = ACTIONS(4385), + [aux_sym_boolean_literal_token2] = ACTIONS(4385), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4385), + [sym__float_literal] = ACTIONS(4385), + [sym__boz_literal] = ACTIONS(4385), + [sym__string_literal] = ACTIONS(4385), + [sym__string_literal_kind] = ACTIONS(4385), }, - [966] = { - [ts_builtin_sym_end] = ACTIONS(4413), - [aux_sym_preproc_include_token1] = ACTIONS(4411), - [aux_sym_preproc_def_token1] = ACTIONS(4411), - [aux_sym_preproc_if_token1] = ACTIONS(4411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), - [sym_preproc_directive] = ACTIONS(4411), - [anon_sym_LPAREN2] = ACTIONS(4411), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4413), + [977] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token2] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4411), - [aux_sym_end_program_statement_token1] = ACTIONS(4411), - [aux_sym_end_program_statement_token2] = ACTIONS(4411), - [aux_sym_module_statement_token1] = ACTIONS(4411), - [aux_sym_submodule_statement_token1] = ACTIONS(4411), - [aux_sym_interface_statement_token1] = ACTIONS(4411), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), - [aux_sym_subroutine_statement_token1] = ACTIONS(4411), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), - [aux_sym_function_statement_token1] = ACTIONS(4411), - [aux_sym_language_binding_token1] = ACTIONS(4411), - [aux_sym_procedure_attributes_token1] = ACTIONS(4411), - [aux_sym_procedure_attributes_token3] = ACTIONS(4411), - [aux_sym_contains_statement_token1] = ACTIONS(4411), - [aux_sym_use_statement_token1] = ACTIONS(4411), - [aux_sym_use_statement_token2] = ACTIONS(4411), - [aux_sym_implicit_statement_token1] = ACTIONS(4411), - [aux_sym_implicit_statement_token3] = ACTIONS(4411), - [aux_sym_implicit_statement_token4] = ACTIONS(4411), - [aux_sym_save_statement_token1] = ACTIONS(4411), - [aux_sym_private_statement_token1] = ACTIONS(4411), - [aux_sym_public_statement_token1] = ACTIONS(4411), - [aux_sym_namelist_statement_token1] = ACTIONS(4411), - [aux_sym_common_statement_token1] = ACTIONS(4411), - [aux_sym_import_statement_token1] = ACTIONS(4411), - [aux_sym_derived_type_definition_token1] = ACTIONS(4411), - [aux_sym_abstract_specifier_token1] = ACTIONS(4411), - [aux_sym_procedure_attribute_token6] = ACTIONS(4411), - [aux_sym_variable_attributes_token1] = ACTIONS(4411), - [aux_sym_variable_attributes_token2] = ACTIONS(4411), - [aux_sym_variable_attributes_token3] = ACTIONS(4411), - [aux_sym_variable_attributes_token4] = ACTIONS(4411), - [aux_sym_variable_attributes_token5] = ACTIONS(4411), - [aux_sym__intrinsic_type_token1] = ACTIONS(4411), - [aux_sym__intrinsic_type_token2] = ACTIONS(4411), - [aux_sym__intrinsic_type_token3] = ACTIONS(4411), - [aux_sym__intrinsic_type_token4] = ACTIONS(4411), - [aux_sym__intrinsic_type_token6] = ACTIONS(4411), - [aux_sym__intrinsic_type_token7] = ACTIONS(4411), - [aux_sym__intrinsic_type_token8] = ACTIONS(4411), - [aux_sym__intrinsic_type_token9] = ACTIONS(4411), - [aux_sym__intrinsic_type_token10] = ACTIONS(4411), - [aux_sym_derived_type_token1] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), - [aux_sym_type_qualifier_token1] = ACTIONS(4411), - [aux_sym_type_qualifier_token2] = ACTIONS(4411), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4411), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4411), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4411), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4411), - [aux_sym_equivalence_statement_token1] = ACTIONS(4411), - [anon_sym_SEMI] = ACTIONS(4413), - [aux_sym_stop_statement_token1] = ACTIONS(4411), - [aux_sym_stop_statement_token2] = ACTIONS(4411), - [aux_sym_subroutine_call_token1] = ACTIONS(4411), - [aux_sym_keyword_statement_token1] = ACTIONS(4411), - [aux_sym_keyword_statement_token2] = ACTIONS(4411), - [aux_sym_keyword_statement_token3] = ACTIONS(4411), - [aux_sym_keyword_statement_token4] = ACTIONS(4411), - [aux_sym_keyword_statement_token6] = ACTIONS(4411), - [aux_sym_keyword_statement_token7] = ACTIONS(4411), - [aux_sym_include_statement_token1] = ACTIONS(4411), - [aux_sym_data_statement_token1] = ACTIONS(4411), - [aux_sym_do_loop_statement_token1] = ACTIONS(4411), - [aux_sym__inline_if_statement_token1] = ACTIONS(4411), - [aux_sym_end_if_statement_token1] = ACTIONS(4411), - [aux_sym_elseif_clause_token2] = ACTIONS(4411), - [aux_sym__inline_where_statement_token1] = ACTIONS(4411), - [aux_sym__forall_control_expression_token1] = ACTIONS(4411), - [aux_sym_select_case_statement_token1] = ACTIONS(4411), - [aux_sym_select_case_statement_token3] = ACTIONS(4411), - [aux_sym_select_type_statement_token1] = ACTIONS(4411), - [aux_sym_select_rank_statement_token2] = ACTIONS(4411), - [aux_sym_block_construct_token1] = ACTIONS(4411), - [aux_sym_associate_statement_token1] = ACTIONS(4411), - [aux_sym_format_statement_token1] = ACTIONS(4411), - [aux_sym_print_statement_token1] = ACTIONS(4411), - [aux_sym_open_statement_token1] = ACTIONS(4411), - [aux_sym_close_statement_token1] = ACTIONS(4411), - [aux_sym_inquire_statement_token1] = ACTIONS(4411), - [aux_sym_enum_statement_token1] = ACTIONS(4411), - [aux_sym_file_position_statement_token1] = ACTIONS(4411), - [aux_sym_file_position_statement_token2] = ACTIONS(4411), - [aux_sym_file_position_statement_token3] = ACTIONS(4411), - [aux_sym_file_position_statement_token4] = ACTIONS(4411), - [aux_sym_allocate_statement_token1] = ACTIONS(4411), - [aux_sym_entry_statement_token1] = ACTIONS(4411), - [aux_sym_logical_expression_token5] = ACTIONS(4413), - [anon_sym_DOT] = ACTIONS(4411), - [anon_sym_LPAREN_SLASH] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4413), - [aux_sym_boolean_literal_token1] = ACTIONS(4413), - [aux_sym_boolean_literal_token2] = ACTIONS(4413), - [aux_sym_null_literal_token1] = ACTIONS(4411), - [aux_sym_coarray_statement_token1] = ACTIONS(4411), - [aux_sym_coarray_statement_token2] = ACTIONS(4411), - [aux_sym_coarray_statement_token6] = ACTIONS(4411), - [aux_sym_coarray_statement_token8] = ACTIONS(4411), - [aux_sym_coarray_statement_token11] = ACTIONS(4411), - [aux_sym_coarray_statement_token12] = ACTIONS(4411), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), - [aux_sym_identifier_token1] = ACTIONS(4411), + [aux_sym_program_statement_token1] = ACTIONS(4387), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_end_program_statement_token2] = ACTIONS(4387), + [aux_sym_module_statement_token1] = ACTIONS(4387), + [aux_sym_submodule_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_subroutine_statement_token1] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_function_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4387), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4387), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4387), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_subroutine_call_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_keyword_statement_token4] = ACTIONS(4387), + [aux_sym_keyword_statement_token6] = ACTIONS(4387), + [aux_sym_keyword_statement_token7] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym_do_loop_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym__inline_where_statement_token1] = ACTIONS(4387), + [aux_sym__forall_control_expression_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token3] = ACTIONS(4387), + [aux_sym_select_type_statement_token1] = ACTIONS(4387), + [aux_sym_select_rank_statement_token2] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_associate_statement_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_print_statement_token1] = ACTIONS(4387), + [aux_sym_open_statement_token1] = ACTIONS(4387), + [aux_sym_close_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token2] = ACTIONS(4387), + [aux_sym_file_position_statement_token3] = ACTIONS(4387), + [aux_sym_file_position_statement_token4] = ACTIONS(4387), + [aux_sym_allocate_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_logical_expression_token5] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LPAREN_SLASH] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [aux_sym_boolean_literal_token1] = ACTIONS(4389), + [aux_sym_boolean_literal_token2] = ACTIONS(4389), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4413), - [sym__float_literal] = ACTIONS(4413), - [sym__boz_literal] = ACTIONS(4413), - [sym__string_literal] = ACTIONS(4413), - [sym__string_literal_kind] = ACTIONS(4413), + [sym__integer_literal] = ACTIONS(4389), + [sym__float_literal] = ACTIONS(4389), + [sym__boz_literal] = ACTIONS(4389), + [sym__string_literal] = ACTIONS(4389), + [sym__string_literal_kind] = ACTIONS(4389), }, - [967] = { - [ts_builtin_sym_end] = ACTIONS(4417), - [aux_sym_preproc_include_token1] = ACTIONS(4415), - [aux_sym_preproc_def_token1] = ACTIONS(4415), - [aux_sym_preproc_if_token1] = ACTIONS(4415), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), - [sym_preproc_directive] = ACTIONS(4415), - [anon_sym_LPAREN2] = ACTIONS(4415), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), + [978] = { + [ts_builtin_sym_end] = ACTIONS(4301), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4415), - [aux_sym_end_program_statement_token1] = ACTIONS(4415), - [aux_sym_end_program_statement_token2] = ACTIONS(4415), - [aux_sym_module_statement_token1] = ACTIONS(4415), - [aux_sym_submodule_statement_token1] = ACTIONS(4415), - [aux_sym_interface_statement_token1] = ACTIONS(4415), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), - [aux_sym_subroutine_statement_token1] = ACTIONS(4415), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), - [aux_sym_function_statement_token1] = ACTIONS(4415), - [aux_sym_language_binding_token1] = ACTIONS(4415), - [aux_sym_procedure_attributes_token1] = ACTIONS(4415), - [aux_sym_procedure_attributes_token3] = ACTIONS(4415), - [aux_sym_contains_statement_token1] = ACTIONS(4415), - [aux_sym_use_statement_token1] = ACTIONS(4415), - [aux_sym_use_statement_token2] = ACTIONS(4415), - [aux_sym_implicit_statement_token1] = ACTIONS(4415), - [aux_sym_implicit_statement_token3] = ACTIONS(4415), - [aux_sym_implicit_statement_token4] = ACTIONS(4415), - [aux_sym_save_statement_token1] = ACTIONS(4415), - [aux_sym_private_statement_token1] = ACTIONS(4415), - [aux_sym_public_statement_token1] = ACTIONS(4415), - [aux_sym_namelist_statement_token1] = ACTIONS(4415), - [aux_sym_common_statement_token1] = ACTIONS(4415), - [aux_sym_import_statement_token1] = ACTIONS(4415), - [aux_sym_derived_type_definition_token1] = ACTIONS(4415), - [aux_sym_abstract_specifier_token1] = ACTIONS(4415), - [aux_sym_procedure_attribute_token6] = ACTIONS(4415), - [aux_sym_variable_attributes_token1] = ACTIONS(4415), - [aux_sym_variable_attributes_token2] = ACTIONS(4415), - [aux_sym_variable_attributes_token3] = ACTIONS(4415), - [aux_sym_variable_attributes_token4] = ACTIONS(4415), - [aux_sym_variable_attributes_token5] = ACTIONS(4415), - [aux_sym__intrinsic_type_token1] = ACTIONS(4415), - [aux_sym__intrinsic_type_token2] = ACTIONS(4415), - [aux_sym__intrinsic_type_token3] = ACTIONS(4415), - [aux_sym__intrinsic_type_token4] = ACTIONS(4415), - [aux_sym__intrinsic_type_token6] = ACTIONS(4415), - [aux_sym__intrinsic_type_token7] = ACTIONS(4415), - [aux_sym__intrinsic_type_token8] = ACTIONS(4415), - [aux_sym__intrinsic_type_token9] = ACTIONS(4415), - [aux_sym__intrinsic_type_token10] = ACTIONS(4415), - [aux_sym_derived_type_token1] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), - [aux_sym_type_qualifier_token1] = ACTIONS(4415), - [aux_sym_type_qualifier_token2] = ACTIONS(4415), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4415), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4415), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4415), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4415), - [aux_sym_equivalence_statement_token1] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [aux_sym_stop_statement_token1] = ACTIONS(4415), - [aux_sym_stop_statement_token2] = ACTIONS(4415), - [aux_sym_subroutine_call_token1] = ACTIONS(4415), - [aux_sym_keyword_statement_token1] = ACTIONS(4415), - [aux_sym_keyword_statement_token2] = ACTIONS(4415), - [aux_sym_keyword_statement_token3] = ACTIONS(4415), - [aux_sym_keyword_statement_token4] = ACTIONS(4415), - [aux_sym_keyword_statement_token6] = ACTIONS(4415), - [aux_sym_keyword_statement_token7] = ACTIONS(4415), - [aux_sym_include_statement_token1] = ACTIONS(4415), - [aux_sym_data_statement_token1] = ACTIONS(4415), - [aux_sym_do_loop_statement_token1] = ACTIONS(4415), - [aux_sym__inline_if_statement_token1] = ACTIONS(4415), - [aux_sym_end_if_statement_token1] = ACTIONS(4415), - [aux_sym_elseif_clause_token2] = ACTIONS(4415), - [aux_sym__inline_where_statement_token1] = ACTIONS(4415), - [aux_sym__forall_control_expression_token1] = ACTIONS(4415), - [aux_sym_select_case_statement_token1] = ACTIONS(4415), - [aux_sym_select_case_statement_token3] = ACTIONS(4415), - [aux_sym_select_type_statement_token1] = ACTIONS(4415), - [aux_sym_select_rank_statement_token2] = ACTIONS(4415), - [aux_sym_block_construct_token1] = ACTIONS(4415), - [aux_sym_associate_statement_token1] = ACTIONS(4415), - [aux_sym_format_statement_token1] = ACTIONS(4415), - [aux_sym_print_statement_token1] = ACTIONS(4415), - [aux_sym_open_statement_token1] = ACTIONS(4415), - [aux_sym_close_statement_token1] = ACTIONS(4415), - [aux_sym_inquire_statement_token1] = ACTIONS(4415), - [aux_sym_enum_statement_token1] = ACTIONS(4415), - [aux_sym_file_position_statement_token1] = ACTIONS(4415), - [aux_sym_file_position_statement_token2] = ACTIONS(4415), - [aux_sym_file_position_statement_token3] = ACTIONS(4415), - [aux_sym_file_position_statement_token4] = ACTIONS(4415), - [aux_sym_allocate_statement_token1] = ACTIONS(4415), - [aux_sym_entry_statement_token1] = ACTIONS(4415), - [aux_sym_logical_expression_token5] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_LPAREN_SLASH] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [aux_sym_boolean_literal_token1] = ACTIONS(4417), - [aux_sym_boolean_literal_token2] = ACTIONS(4417), - [aux_sym_null_literal_token1] = ACTIONS(4415), - [aux_sym_coarray_statement_token1] = ACTIONS(4415), - [aux_sym_coarray_statement_token2] = ACTIONS(4415), - [aux_sym_coarray_statement_token6] = ACTIONS(4415), - [aux_sym_coarray_statement_token8] = ACTIONS(4415), - [aux_sym_coarray_statement_token11] = ACTIONS(4415), - [aux_sym_coarray_statement_token12] = ACTIONS(4415), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), - [aux_sym_identifier_token1] = ACTIONS(4415), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4417), - [sym__float_literal] = ACTIONS(4417), - [sym__boz_literal] = ACTIONS(4417), - [sym__string_literal] = ACTIONS(4417), - [sym__string_literal_kind] = ACTIONS(4417), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, - [968] = { - [ts_builtin_sym_end] = ACTIONS(4421), - [aux_sym_preproc_include_token1] = ACTIONS(4419), - [aux_sym_preproc_def_token1] = ACTIONS(4419), - [aux_sym_preproc_if_token1] = ACTIONS(4419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4419), - [sym_preproc_directive] = ACTIONS(4419), - [anon_sym_LPAREN2] = ACTIONS(4419), - [anon_sym_PLUS] = ACTIONS(4421), - [anon_sym_DASH] = ACTIONS(4421), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4419), - [aux_sym_end_program_statement_token1] = ACTIONS(4419), - [aux_sym_end_program_statement_token2] = ACTIONS(4419), - [aux_sym_module_statement_token1] = ACTIONS(4419), - [aux_sym_submodule_statement_token1] = ACTIONS(4419), - [aux_sym_interface_statement_token1] = ACTIONS(4419), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4419), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4419), - [aux_sym_subroutine_statement_token1] = ACTIONS(4419), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4419), - [aux_sym_function_statement_token1] = ACTIONS(4419), - [aux_sym_language_binding_token1] = ACTIONS(4419), - [aux_sym_procedure_attributes_token1] = ACTIONS(4419), - [aux_sym_procedure_attributes_token3] = ACTIONS(4419), - [aux_sym_contains_statement_token1] = ACTIONS(4419), - [aux_sym_use_statement_token1] = ACTIONS(4419), - [aux_sym_use_statement_token2] = ACTIONS(4419), - [aux_sym_implicit_statement_token1] = ACTIONS(4419), - [aux_sym_implicit_statement_token3] = ACTIONS(4419), - [aux_sym_implicit_statement_token4] = ACTIONS(4419), - [aux_sym_save_statement_token1] = ACTIONS(4419), - [aux_sym_private_statement_token1] = ACTIONS(4419), - [aux_sym_public_statement_token1] = ACTIONS(4419), - [aux_sym_namelist_statement_token1] = ACTIONS(4419), - [aux_sym_common_statement_token1] = ACTIONS(4419), - [aux_sym_import_statement_token1] = ACTIONS(4419), - [aux_sym_derived_type_definition_token1] = ACTIONS(4419), - [aux_sym_abstract_specifier_token1] = ACTIONS(4419), - [aux_sym_procedure_attribute_token6] = ACTIONS(4419), - [aux_sym_variable_attributes_token1] = ACTIONS(4419), - [aux_sym_variable_attributes_token2] = ACTIONS(4419), - [aux_sym_variable_attributes_token3] = ACTIONS(4419), - [aux_sym_variable_attributes_token4] = ACTIONS(4419), - [aux_sym_variable_attributes_token5] = ACTIONS(4419), - [aux_sym__intrinsic_type_token1] = ACTIONS(4419), - [aux_sym__intrinsic_type_token2] = ACTIONS(4419), - [aux_sym__intrinsic_type_token3] = ACTIONS(4419), - [aux_sym__intrinsic_type_token4] = ACTIONS(4419), - [aux_sym__intrinsic_type_token6] = ACTIONS(4419), - [aux_sym__intrinsic_type_token7] = ACTIONS(4419), - [aux_sym__intrinsic_type_token8] = ACTIONS(4419), - [aux_sym__intrinsic_type_token9] = ACTIONS(4419), - [aux_sym__intrinsic_type_token10] = ACTIONS(4419), - [aux_sym_derived_type_token1] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4419), - [aux_sym_type_qualifier_token1] = ACTIONS(4419), - [aux_sym_type_qualifier_token2] = ACTIONS(4419), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4419), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4419), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4419), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4419), - [aux_sym_equivalence_statement_token1] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [aux_sym_stop_statement_token1] = ACTIONS(4419), - [aux_sym_stop_statement_token2] = ACTIONS(4419), - [aux_sym_subroutine_call_token1] = ACTIONS(4419), - [aux_sym_keyword_statement_token1] = ACTIONS(4419), - [aux_sym_keyword_statement_token2] = ACTIONS(4419), - [aux_sym_keyword_statement_token3] = ACTIONS(4419), - [aux_sym_keyword_statement_token4] = ACTIONS(4419), - [aux_sym_keyword_statement_token6] = ACTIONS(4419), - [aux_sym_keyword_statement_token7] = ACTIONS(4419), - [aux_sym_include_statement_token1] = ACTIONS(4419), - [aux_sym_data_statement_token1] = ACTIONS(4419), - [aux_sym_do_loop_statement_token1] = ACTIONS(4419), - [aux_sym__inline_if_statement_token1] = ACTIONS(4419), - [aux_sym_end_if_statement_token1] = ACTIONS(4419), - [aux_sym_elseif_clause_token2] = ACTIONS(4419), - [aux_sym__inline_where_statement_token1] = ACTIONS(4419), - [aux_sym__forall_control_expression_token1] = ACTIONS(4419), - [aux_sym_select_case_statement_token1] = ACTIONS(4419), - [aux_sym_select_case_statement_token3] = ACTIONS(4419), - [aux_sym_select_type_statement_token1] = ACTIONS(4419), - [aux_sym_select_rank_statement_token2] = ACTIONS(4419), - [aux_sym_block_construct_token1] = ACTIONS(4419), - [aux_sym_associate_statement_token1] = ACTIONS(4419), - [aux_sym_format_statement_token1] = ACTIONS(4419), - [aux_sym_print_statement_token1] = ACTIONS(4419), - [aux_sym_open_statement_token1] = ACTIONS(4419), - [aux_sym_close_statement_token1] = ACTIONS(4419), - [aux_sym_inquire_statement_token1] = ACTIONS(4419), - [aux_sym_enum_statement_token1] = ACTIONS(4419), - [aux_sym_file_position_statement_token1] = ACTIONS(4419), - [aux_sym_file_position_statement_token2] = ACTIONS(4419), - [aux_sym_file_position_statement_token3] = ACTIONS(4419), - [aux_sym_file_position_statement_token4] = ACTIONS(4419), - [aux_sym_allocate_statement_token1] = ACTIONS(4419), - [aux_sym_entry_statement_token1] = ACTIONS(4419), - [aux_sym_logical_expression_token5] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_LPAREN_SLASH] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [aux_sym_boolean_literal_token1] = ACTIONS(4421), - [aux_sym_boolean_literal_token2] = ACTIONS(4421), - [aux_sym_null_literal_token1] = ACTIONS(4419), - [aux_sym_coarray_statement_token1] = ACTIONS(4419), - [aux_sym_coarray_statement_token2] = ACTIONS(4419), - [aux_sym_coarray_statement_token6] = ACTIONS(4419), - [aux_sym_coarray_statement_token8] = ACTIONS(4419), - [aux_sym_coarray_statement_token11] = ACTIONS(4419), - [aux_sym_coarray_statement_token12] = ACTIONS(4419), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4419), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4419), - [aux_sym_identifier_token1] = ACTIONS(4419), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4421), - [sym__float_literal] = ACTIONS(4421), - [sym__boz_literal] = ACTIONS(4421), - [sym__string_literal] = ACTIONS(4421), - [sym__string_literal_kind] = ACTIONS(4421), + [979] = { + [aux_sym_preproc_include_token1] = ACTIONS(4561), + [aux_sym_preproc_def_token1] = ACTIONS(4561), + [aux_sym_preproc_if_token1] = ACTIONS(4561), + [aux_sym_preproc_if_token2] = ACTIONS(4561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4561), + [sym_preproc_directive] = ACTIONS(4561), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4561), + [aux_sym_end_program_statement_token1] = ACTIONS(4561), + [aux_sym_end_program_statement_token2] = ACTIONS(4561), + [aux_sym_module_statement_token1] = ACTIONS(4561), + [aux_sym_submodule_statement_token1] = ACTIONS(4561), + [aux_sym_interface_statement_token1] = ACTIONS(4561), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4561), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4561), + [aux_sym_subroutine_statement_token1] = ACTIONS(4561), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4561), + [aux_sym_function_statement_token1] = ACTIONS(4561), + [aux_sym_language_binding_token1] = ACTIONS(4561), + [aux_sym_procedure_attributes_token1] = ACTIONS(4561), + [aux_sym_procedure_attributes_token3] = ACTIONS(4561), + [aux_sym_contains_statement_token1] = ACTIONS(4561), + [aux_sym_use_statement_token1] = ACTIONS(4561), + [aux_sym_use_statement_token2] = ACTIONS(4561), + [aux_sym_implicit_statement_token1] = ACTIONS(4561), + [aux_sym_implicit_statement_token3] = ACTIONS(4561), + [aux_sym_implicit_statement_token4] = ACTIONS(4561), + [aux_sym_save_statement_token1] = ACTIONS(4561), + [aux_sym_private_statement_token1] = ACTIONS(4561), + [aux_sym_public_statement_token1] = ACTIONS(4561), + [aux_sym_namelist_statement_token1] = ACTIONS(4561), + [aux_sym_common_statement_token1] = ACTIONS(4561), + [aux_sym_import_statement_token1] = ACTIONS(4561), + [aux_sym_derived_type_definition_token1] = ACTIONS(4561), + [aux_sym_abstract_specifier_token1] = ACTIONS(4561), + [aux_sym_procedure_attribute_token6] = ACTIONS(4561), + [aux_sym_variable_attributes_token1] = ACTIONS(4561), + [aux_sym_variable_attributes_token2] = ACTIONS(4561), + [aux_sym_variable_attributes_token3] = ACTIONS(4561), + [aux_sym_variable_attributes_token4] = ACTIONS(4561), + [aux_sym_variable_attributes_token5] = ACTIONS(4561), + [aux_sym__intrinsic_type_token1] = ACTIONS(4561), + [aux_sym__intrinsic_type_token2] = ACTIONS(4561), + [aux_sym__intrinsic_type_token3] = ACTIONS(4561), + [aux_sym__intrinsic_type_token4] = ACTIONS(4561), + [aux_sym__intrinsic_type_token6] = ACTIONS(4561), + [aux_sym__intrinsic_type_token7] = ACTIONS(4561), + [aux_sym__intrinsic_type_token8] = ACTIONS(4561), + [aux_sym__intrinsic_type_token9] = ACTIONS(4561), + [aux_sym__intrinsic_type_token10] = ACTIONS(4561), + [aux_sym_derived_type_token1] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4561), + [aux_sym_type_qualifier_token1] = ACTIONS(4561), + [aux_sym_type_qualifier_token2] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4561), + [aux_sym_equivalence_statement_token1] = ACTIONS(4561), + [anon_sym_SEMI] = ACTIONS(4563), + [aux_sym_stop_statement_token1] = ACTIONS(4561), + [aux_sym_stop_statement_token2] = ACTIONS(4561), + [aux_sym_subroutine_call_token1] = ACTIONS(4561), + [aux_sym_keyword_statement_token1] = ACTIONS(4561), + [aux_sym_keyword_statement_token2] = ACTIONS(4561), + [aux_sym_keyword_statement_token3] = ACTIONS(4561), + [aux_sym_keyword_statement_token4] = ACTIONS(4561), + [aux_sym_keyword_statement_token6] = ACTIONS(4561), + [aux_sym_keyword_statement_token7] = ACTIONS(4561), + [aux_sym_include_statement_token1] = ACTIONS(4561), + [aux_sym_data_statement_token1] = ACTIONS(4561), + [aux_sym_do_loop_statement_token1] = ACTIONS(4561), + [aux_sym__inline_if_statement_token1] = ACTIONS(4561), + [aux_sym_end_if_statement_token1] = ACTIONS(4561), + [aux_sym_elseif_clause_token2] = ACTIONS(4561), + [aux_sym__inline_where_statement_token1] = ACTIONS(4561), + [aux_sym__forall_control_expression_token1] = ACTIONS(4561), + [aux_sym_select_case_statement_token1] = ACTIONS(4561), + [aux_sym_select_case_statement_token3] = ACTIONS(4561), + [aux_sym_select_type_statement_token1] = ACTIONS(4561), + [aux_sym_select_rank_statement_token2] = ACTIONS(4561), + [aux_sym_block_construct_token1] = ACTIONS(4561), + [aux_sym_associate_statement_token1] = ACTIONS(4561), + [aux_sym_format_statement_token1] = ACTIONS(4561), + [aux_sym_print_statement_token1] = ACTIONS(4561), + [aux_sym_open_statement_token1] = ACTIONS(4561), + [aux_sym_close_statement_token1] = ACTIONS(4561), + [aux_sym_inquire_statement_token1] = ACTIONS(4561), + [aux_sym_enum_statement_token1] = ACTIONS(4561), + [aux_sym_file_position_statement_token1] = ACTIONS(4561), + [aux_sym_file_position_statement_token2] = ACTIONS(4561), + [aux_sym_file_position_statement_token3] = ACTIONS(4561), + [aux_sym_file_position_statement_token4] = ACTIONS(4561), + [aux_sym_allocate_statement_token1] = ACTIONS(4561), + [aux_sym_entry_statement_token1] = ACTIONS(4561), + [aux_sym_logical_expression_token5] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4561), + [anon_sym_LPAREN_SLASH] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4563), + [aux_sym_boolean_literal_token1] = ACTIONS(4563), + [aux_sym_boolean_literal_token2] = ACTIONS(4563), + [aux_sym_null_literal_token1] = ACTIONS(4561), + [aux_sym_coarray_statement_token1] = ACTIONS(4561), + [aux_sym_coarray_statement_token2] = ACTIONS(4561), + [aux_sym_coarray_statement_token6] = ACTIONS(4561), + [aux_sym_coarray_statement_token8] = ACTIONS(4561), + [aux_sym_coarray_statement_token11] = ACTIONS(4561), + [aux_sym_coarray_statement_token12] = ACTIONS(4561), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4561), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4561), + [aux_sym_identifier_token1] = ACTIONS(4561), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4563), + [sym__float_literal] = ACTIONS(4563), + [sym__boz_literal] = ACTIONS(4563), + [sym__string_literal] = ACTIONS(4563), + [sym__string_literal_kind] = ACTIONS(4563), }, - [969] = { - [ts_builtin_sym_end] = ACTIONS(4425), - [aux_sym_preproc_include_token1] = ACTIONS(4423), - [aux_sym_preproc_def_token1] = ACTIONS(4423), - [aux_sym_preproc_if_token1] = ACTIONS(4423), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4423), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4423), - [sym_preproc_directive] = ACTIONS(4423), - [anon_sym_LPAREN2] = ACTIONS(4423), - [anon_sym_PLUS] = ACTIONS(4425), - [anon_sym_DASH] = ACTIONS(4425), + [980] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4423), - [aux_sym_end_program_statement_token1] = ACTIONS(4423), - [aux_sym_end_program_statement_token2] = ACTIONS(4423), - [aux_sym_module_statement_token1] = ACTIONS(4423), - [aux_sym_submodule_statement_token1] = ACTIONS(4423), - [aux_sym_interface_statement_token1] = ACTIONS(4423), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4423), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4423), - [aux_sym_subroutine_statement_token1] = ACTIONS(4423), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4423), - [aux_sym_function_statement_token1] = ACTIONS(4423), - [aux_sym_language_binding_token1] = ACTIONS(4423), - [aux_sym_procedure_attributes_token1] = ACTIONS(4423), - [aux_sym_procedure_attributes_token3] = ACTIONS(4423), - [aux_sym_contains_statement_token1] = ACTIONS(4423), - [aux_sym_use_statement_token1] = ACTIONS(4423), - [aux_sym_use_statement_token2] = ACTIONS(4423), - [aux_sym_implicit_statement_token1] = ACTIONS(4423), - [aux_sym_implicit_statement_token3] = ACTIONS(4423), - [aux_sym_implicit_statement_token4] = ACTIONS(4423), - [aux_sym_save_statement_token1] = ACTIONS(4423), - [aux_sym_private_statement_token1] = ACTIONS(4423), - [aux_sym_public_statement_token1] = ACTIONS(4423), - [aux_sym_namelist_statement_token1] = ACTIONS(4423), - [aux_sym_common_statement_token1] = ACTIONS(4423), - [aux_sym_import_statement_token1] = ACTIONS(4423), - [aux_sym_derived_type_definition_token1] = ACTIONS(4423), - [aux_sym_abstract_specifier_token1] = ACTIONS(4423), - [aux_sym_procedure_attribute_token6] = ACTIONS(4423), - [aux_sym_variable_attributes_token1] = ACTIONS(4423), - [aux_sym_variable_attributes_token2] = ACTIONS(4423), - [aux_sym_variable_attributes_token3] = ACTIONS(4423), - [aux_sym_variable_attributes_token4] = ACTIONS(4423), - [aux_sym_variable_attributes_token5] = ACTIONS(4423), - [aux_sym__intrinsic_type_token1] = ACTIONS(4423), - [aux_sym__intrinsic_type_token2] = ACTIONS(4423), - [aux_sym__intrinsic_type_token3] = ACTIONS(4423), - [aux_sym__intrinsic_type_token4] = ACTIONS(4423), - [aux_sym__intrinsic_type_token6] = ACTIONS(4423), - [aux_sym__intrinsic_type_token7] = ACTIONS(4423), - [aux_sym__intrinsic_type_token8] = ACTIONS(4423), - [aux_sym__intrinsic_type_token9] = ACTIONS(4423), - [aux_sym__intrinsic_type_token10] = ACTIONS(4423), - [aux_sym_derived_type_token1] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4423), - [aux_sym_type_qualifier_token1] = ACTIONS(4423), - [aux_sym_type_qualifier_token2] = ACTIONS(4423), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4423), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4423), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4423), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4423), - [aux_sym_equivalence_statement_token1] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [aux_sym_stop_statement_token1] = ACTIONS(4423), - [aux_sym_stop_statement_token2] = ACTIONS(4423), - [aux_sym_subroutine_call_token1] = ACTIONS(4423), - [aux_sym_keyword_statement_token1] = ACTIONS(4423), - [aux_sym_keyword_statement_token2] = ACTIONS(4423), - [aux_sym_keyword_statement_token3] = ACTIONS(4423), - [aux_sym_keyword_statement_token4] = ACTIONS(4423), - [aux_sym_keyword_statement_token6] = ACTIONS(4423), - [aux_sym_keyword_statement_token7] = ACTIONS(4423), - [aux_sym_include_statement_token1] = ACTIONS(4423), - [aux_sym_data_statement_token1] = ACTIONS(4423), - [aux_sym_do_loop_statement_token1] = ACTIONS(4423), - [aux_sym__inline_if_statement_token1] = ACTIONS(4423), - [aux_sym_end_if_statement_token1] = ACTIONS(4423), - [aux_sym_elseif_clause_token2] = ACTIONS(4423), - [aux_sym__inline_where_statement_token1] = ACTIONS(4423), - [aux_sym__forall_control_expression_token1] = ACTIONS(4423), - [aux_sym_select_case_statement_token1] = ACTIONS(4423), - [aux_sym_select_case_statement_token3] = ACTIONS(4423), - [aux_sym_select_type_statement_token1] = ACTIONS(4423), - [aux_sym_select_rank_statement_token2] = ACTIONS(4423), - [aux_sym_block_construct_token1] = ACTIONS(4423), - [aux_sym_associate_statement_token1] = ACTIONS(4423), - [aux_sym_format_statement_token1] = ACTIONS(4423), - [aux_sym_print_statement_token1] = ACTIONS(4423), - [aux_sym_open_statement_token1] = ACTIONS(4423), - [aux_sym_close_statement_token1] = ACTIONS(4423), - [aux_sym_inquire_statement_token1] = ACTIONS(4423), - [aux_sym_enum_statement_token1] = ACTIONS(4423), - [aux_sym_file_position_statement_token1] = ACTIONS(4423), - [aux_sym_file_position_statement_token2] = ACTIONS(4423), - [aux_sym_file_position_statement_token3] = ACTIONS(4423), - [aux_sym_file_position_statement_token4] = ACTIONS(4423), - [aux_sym_allocate_statement_token1] = ACTIONS(4423), - [aux_sym_entry_statement_token1] = ACTIONS(4423), - [aux_sym_logical_expression_token5] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_LPAREN_SLASH] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [aux_sym_boolean_literal_token1] = ACTIONS(4425), - [aux_sym_boolean_literal_token2] = ACTIONS(4425), - [aux_sym_null_literal_token1] = ACTIONS(4423), - [aux_sym_coarray_statement_token1] = ACTIONS(4423), - [aux_sym_coarray_statement_token2] = ACTIONS(4423), - [aux_sym_coarray_statement_token6] = ACTIONS(4423), - [aux_sym_coarray_statement_token8] = ACTIONS(4423), - [aux_sym_coarray_statement_token11] = ACTIONS(4423), - [aux_sym_coarray_statement_token12] = ACTIONS(4423), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4423), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4423), - [aux_sym_identifier_token1] = ACTIONS(4423), + [aux_sym_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token2] = ACTIONS(4391), + [aux_sym_module_statement_token1] = ACTIONS(4391), + [aux_sym_submodule_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_subroutine_statement_token1] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_function_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4391), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4391), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4391), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4425), - [sym__float_literal] = ACTIONS(4425), - [sym__boz_literal] = ACTIONS(4425), - [sym__string_literal] = ACTIONS(4425), - [sym__string_literal_kind] = ACTIONS(4425), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [970] = { - [ts_builtin_sym_end] = ACTIONS(4433), - [aux_sym_preproc_include_token1] = ACTIONS(4431), - [aux_sym_preproc_def_token1] = ACTIONS(4431), - [aux_sym_preproc_if_token1] = ACTIONS(4431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4431), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4431), - [sym_preproc_directive] = ACTIONS(4431), - [anon_sym_LPAREN2] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), + [981] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4431), - [aux_sym_end_program_statement_token1] = ACTIONS(4431), - [aux_sym_end_program_statement_token2] = ACTIONS(4431), - [aux_sym_module_statement_token1] = ACTIONS(4431), - [aux_sym_submodule_statement_token1] = ACTIONS(4431), - [aux_sym_interface_statement_token1] = ACTIONS(4431), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4431), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4431), - [aux_sym_subroutine_statement_token1] = ACTIONS(4431), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4431), - [aux_sym_function_statement_token1] = ACTIONS(4431), - [aux_sym_language_binding_token1] = ACTIONS(4431), - [aux_sym_procedure_attributes_token1] = ACTIONS(4431), - [aux_sym_procedure_attributes_token3] = ACTIONS(4431), - [aux_sym_contains_statement_token1] = ACTIONS(4431), - [aux_sym_use_statement_token1] = ACTIONS(4431), - [aux_sym_use_statement_token2] = ACTIONS(4431), - [aux_sym_implicit_statement_token1] = ACTIONS(4431), - [aux_sym_implicit_statement_token3] = ACTIONS(4431), - [aux_sym_implicit_statement_token4] = ACTIONS(4431), - [aux_sym_save_statement_token1] = ACTIONS(4431), - [aux_sym_private_statement_token1] = ACTIONS(4431), - [aux_sym_public_statement_token1] = ACTIONS(4431), - [aux_sym_namelist_statement_token1] = ACTIONS(4431), - [aux_sym_common_statement_token1] = ACTIONS(4431), - [aux_sym_import_statement_token1] = ACTIONS(4431), - [aux_sym_derived_type_definition_token1] = ACTIONS(4431), - [aux_sym_abstract_specifier_token1] = ACTIONS(4431), - [aux_sym_procedure_attribute_token6] = ACTIONS(4431), - [aux_sym_variable_attributes_token1] = ACTIONS(4431), - [aux_sym_variable_attributes_token2] = ACTIONS(4431), - [aux_sym_variable_attributes_token3] = ACTIONS(4431), - [aux_sym_variable_attributes_token4] = ACTIONS(4431), - [aux_sym_variable_attributes_token5] = ACTIONS(4431), - [aux_sym__intrinsic_type_token1] = ACTIONS(4431), - [aux_sym__intrinsic_type_token2] = ACTIONS(4431), - [aux_sym__intrinsic_type_token3] = ACTIONS(4431), - [aux_sym__intrinsic_type_token4] = ACTIONS(4431), - [aux_sym__intrinsic_type_token6] = ACTIONS(4431), - [aux_sym__intrinsic_type_token7] = ACTIONS(4431), - [aux_sym__intrinsic_type_token8] = ACTIONS(4431), - [aux_sym__intrinsic_type_token9] = ACTIONS(4431), - [aux_sym__intrinsic_type_token10] = ACTIONS(4431), - [aux_sym_derived_type_token1] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4431), - [aux_sym_type_qualifier_token1] = ACTIONS(4431), - [aux_sym_type_qualifier_token2] = ACTIONS(4431), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4431), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4431), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4431), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4431), - [aux_sym_equivalence_statement_token1] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [aux_sym_stop_statement_token1] = ACTIONS(4431), - [aux_sym_stop_statement_token2] = ACTIONS(4431), - [aux_sym_subroutine_call_token1] = ACTIONS(4431), - [aux_sym_keyword_statement_token1] = ACTIONS(4431), - [aux_sym_keyword_statement_token2] = ACTIONS(4431), - [aux_sym_keyword_statement_token3] = ACTIONS(4431), - [aux_sym_keyword_statement_token4] = ACTIONS(4431), - [aux_sym_keyword_statement_token6] = ACTIONS(4431), - [aux_sym_keyword_statement_token7] = ACTIONS(4431), - [aux_sym_include_statement_token1] = ACTIONS(4431), - [aux_sym_data_statement_token1] = ACTIONS(4431), - [aux_sym_do_loop_statement_token1] = ACTIONS(4431), - [aux_sym__inline_if_statement_token1] = ACTIONS(4431), - [aux_sym_end_if_statement_token1] = ACTIONS(4431), - [aux_sym_elseif_clause_token2] = ACTIONS(4431), - [aux_sym__inline_where_statement_token1] = ACTIONS(4431), - [aux_sym__forall_control_expression_token1] = ACTIONS(4431), - [aux_sym_select_case_statement_token1] = ACTIONS(4431), - [aux_sym_select_case_statement_token3] = ACTIONS(4431), - [aux_sym_select_type_statement_token1] = ACTIONS(4431), - [aux_sym_select_rank_statement_token2] = ACTIONS(4431), - [aux_sym_block_construct_token1] = ACTIONS(4431), - [aux_sym_associate_statement_token1] = ACTIONS(4431), - [aux_sym_format_statement_token1] = ACTIONS(4431), - [aux_sym_print_statement_token1] = ACTIONS(4431), - [aux_sym_open_statement_token1] = ACTIONS(4431), - [aux_sym_close_statement_token1] = ACTIONS(4431), - [aux_sym_inquire_statement_token1] = ACTIONS(4431), - [aux_sym_enum_statement_token1] = ACTIONS(4431), - [aux_sym_file_position_statement_token1] = ACTIONS(4431), - [aux_sym_file_position_statement_token2] = ACTIONS(4431), - [aux_sym_file_position_statement_token3] = ACTIONS(4431), - [aux_sym_file_position_statement_token4] = ACTIONS(4431), - [aux_sym_allocate_statement_token1] = ACTIONS(4431), - [aux_sym_entry_statement_token1] = ACTIONS(4431), - [aux_sym_logical_expression_token5] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LPAREN_SLASH] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [aux_sym_boolean_literal_token1] = ACTIONS(4433), - [aux_sym_boolean_literal_token2] = ACTIONS(4433), - [aux_sym_null_literal_token1] = ACTIONS(4431), - [aux_sym_coarray_statement_token1] = ACTIONS(4431), - [aux_sym_coarray_statement_token2] = ACTIONS(4431), - [aux_sym_coarray_statement_token6] = ACTIONS(4431), - [aux_sym_coarray_statement_token8] = ACTIONS(4431), - [aux_sym_coarray_statement_token11] = ACTIONS(4431), - [aux_sym_coarray_statement_token12] = ACTIONS(4431), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4431), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4431), - [aux_sym_identifier_token1] = ACTIONS(4431), + [aux_sym_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_program_statement_token2] = ACTIONS(4395), + [aux_sym_module_statement_token1] = ACTIONS(4395), + [aux_sym_submodule_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_subroutine_statement_token1] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_function_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4395), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4395), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4395), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4433), - [sym__float_literal] = ACTIONS(4433), - [sym__boz_literal] = ACTIONS(4433), - [sym__string_literal] = ACTIONS(4433), - [sym__string_literal_kind] = ACTIONS(4433), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [971] = { - [ts_builtin_sym_end] = ACTIONS(4437), - [aux_sym_preproc_include_token1] = ACTIONS(4435), - [aux_sym_preproc_def_token1] = ACTIONS(4435), - [aux_sym_preproc_if_token1] = ACTIONS(4435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4435), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4435), - [sym_preproc_directive] = ACTIONS(4435), - [anon_sym_LPAREN2] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), + [982] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4435), - [aux_sym_end_program_statement_token1] = ACTIONS(4435), - [aux_sym_end_program_statement_token2] = ACTIONS(4435), - [aux_sym_module_statement_token1] = ACTIONS(4435), - [aux_sym_submodule_statement_token1] = ACTIONS(4435), - [aux_sym_interface_statement_token1] = ACTIONS(4435), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4435), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4435), - [aux_sym_subroutine_statement_token1] = ACTIONS(4435), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4435), - [aux_sym_function_statement_token1] = ACTIONS(4435), - [aux_sym_language_binding_token1] = ACTIONS(4435), - [aux_sym_procedure_attributes_token1] = ACTIONS(4435), - [aux_sym_procedure_attributes_token3] = ACTIONS(4435), - [aux_sym_contains_statement_token1] = ACTIONS(4435), - [aux_sym_use_statement_token1] = ACTIONS(4435), - [aux_sym_use_statement_token2] = ACTIONS(4435), - [aux_sym_implicit_statement_token1] = ACTIONS(4435), - [aux_sym_implicit_statement_token3] = ACTIONS(4435), - [aux_sym_implicit_statement_token4] = ACTIONS(4435), - [aux_sym_save_statement_token1] = ACTIONS(4435), - [aux_sym_private_statement_token1] = ACTIONS(4435), - [aux_sym_public_statement_token1] = ACTIONS(4435), - [aux_sym_namelist_statement_token1] = ACTIONS(4435), - [aux_sym_common_statement_token1] = ACTIONS(4435), - [aux_sym_import_statement_token1] = ACTIONS(4435), - [aux_sym_derived_type_definition_token1] = ACTIONS(4435), - [aux_sym_abstract_specifier_token1] = ACTIONS(4435), - [aux_sym_procedure_attribute_token6] = ACTIONS(4435), - [aux_sym_variable_attributes_token1] = ACTIONS(4435), - [aux_sym_variable_attributes_token2] = ACTIONS(4435), - [aux_sym_variable_attributes_token3] = ACTIONS(4435), - [aux_sym_variable_attributes_token4] = ACTIONS(4435), - [aux_sym_variable_attributes_token5] = ACTIONS(4435), - [aux_sym__intrinsic_type_token1] = ACTIONS(4435), - [aux_sym__intrinsic_type_token2] = ACTIONS(4435), - [aux_sym__intrinsic_type_token3] = ACTIONS(4435), - [aux_sym__intrinsic_type_token4] = ACTIONS(4435), - [aux_sym__intrinsic_type_token6] = ACTIONS(4435), - [aux_sym__intrinsic_type_token7] = ACTIONS(4435), - [aux_sym__intrinsic_type_token8] = ACTIONS(4435), - [aux_sym__intrinsic_type_token9] = ACTIONS(4435), - [aux_sym__intrinsic_type_token10] = ACTIONS(4435), - [aux_sym_derived_type_token1] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4435), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4435), - [aux_sym_type_qualifier_token1] = ACTIONS(4435), - [aux_sym_type_qualifier_token2] = ACTIONS(4435), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4435), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4435), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4435), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4435), - [aux_sym_equivalence_statement_token1] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [aux_sym_stop_statement_token1] = ACTIONS(4435), - [aux_sym_stop_statement_token2] = ACTIONS(4435), - [aux_sym_subroutine_call_token1] = ACTIONS(4435), - [aux_sym_keyword_statement_token1] = ACTIONS(4435), - [aux_sym_keyword_statement_token2] = ACTIONS(4435), - [aux_sym_keyword_statement_token3] = ACTIONS(4435), - [aux_sym_keyword_statement_token4] = ACTIONS(4435), - [aux_sym_keyword_statement_token6] = ACTIONS(4435), - [aux_sym_keyword_statement_token7] = ACTIONS(4435), - [aux_sym_include_statement_token1] = ACTIONS(4435), - [aux_sym_data_statement_token1] = ACTIONS(4435), - [aux_sym_do_loop_statement_token1] = ACTIONS(4435), - [aux_sym__inline_if_statement_token1] = ACTIONS(4435), - [aux_sym_end_if_statement_token1] = ACTIONS(4435), - [aux_sym_elseif_clause_token2] = ACTIONS(4435), - [aux_sym__inline_where_statement_token1] = ACTIONS(4435), - [aux_sym__forall_control_expression_token1] = ACTIONS(4435), - [aux_sym_select_case_statement_token1] = ACTIONS(4435), - [aux_sym_select_case_statement_token3] = ACTIONS(4435), - [aux_sym_select_type_statement_token1] = ACTIONS(4435), - [aux_sym_select_rank_statement_token2] = ACTIONS(4435), - [aux_sym_block_construct_token1] = ACTIONS(4435), - [aux_sym_associate_statement_token1] = ACTIONS(4435), - [aux_sym_format_statement_token1] = ACTIONS(4435), - [aux_sym_print_statement_token1] = ACTIONS(4435), - [aux_sym_open_statement_token1] = ACTIONS(4435), - [aux_sym_close_statement_token1] = ACTIONS(4435), - [aux_sym_inquire_statement_token1] = ACTIONS(4435), - [aux_sym_enum_statement_token1] = ACTIONS(4435), - [aux_sym_file_position_statement_token1] = ACTIONS(4435), - [aux_sym_file_position_statement_token2] = ACTIONS(4435), - [aux_sym_file_position_statement_token3] = ACTIONS(4435), - [aux_sym_file_position_statement_token4] = ACTIONS(4435), - [aux_sym_allocate_statement_token1] = ACTIONS(4435), - [aux_sym_entry_statement_token1] = ACTIONS(4435), - [aux_sym_logical_expression_token5] = ACTIONS(4437), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_LPAREN_SLASH] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4437), - [aux_sym_boolean_literal_token1] = ACTIONS(4437), - [aux_sym_boolean_literal_token2] = ACTIONS(4437), - [aux_sym_null_literal_token1] = ACTIONS(4435), - [aux_sym_coarray_statement_token1] = ACTIONS(4435), - [aux_sym_coarray_statement_token2] = ACTIONS(4435), - [aux_sym_coarray_statement_token6] = ACTIONS(4435), - [aux_sym_coarray_statement_token8] = ACTIONS(4435), - [aux_sym_coarray_statement_token11] = ACTIONS(4435), - [aux_sym_coarray_statement_token12] = ACTIONS(4435), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4435), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4435), - [aux_sym_identifier_token1] = ACTIONS(4435), + [aux_sym_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token2] = ACTIONS(4399), + [aux_sym_module_statement_token1] = ACTIONS(4399), + [aux_sym_submodule_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_subroutine_statement_token1] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_function_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4399), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4399), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4399), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4437), - [sym__float_literal] = ACTIONS(4437), - [sym__boz_literal] = ACTIONS(4437), - [sym__string_literal] = ACTIONS(4437), - [sym__string_literal_kind] = ACTIONS(4437), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [972] = { - [ts_builtin_sym_end] = ACTIONS(4621), - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_LPAREN2] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), + [983] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4619), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_end_program_statement_token2] = ACTIONS(4619), - [aux_sym_module_statement_token1] = ACTIONS(4619), - [aux_sym_submodule_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_subroutine_statement_token1] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_function_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4619), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4619), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4619), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_subroutine_call_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_keyword_statement_token4] = ACTIONS(4619), - [aux_sym_keyword_statement_token6] = ACTIONS(4619), - [aux_sym_keyword_statement_token7] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym_do_loop_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym__inline_where_statement_token1] = ACTIONS(4619), - [aux_sym__forall_control_expression_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token3] = ACTIONS(4619), - [aux_sym_select_type_statement_token1] = ACTIONS(4619), - [aux_sym_select_rank_statement_token2] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_associate_statement_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_print_statement_token1] = ACTIONS(4619), - [aux_sym_open_statement_token1] = ACTIONS(4619), - [aux_sym_close_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token2] = ACTIONS(4619), - [aux_sym_file_position_statement_token3] = ACTIONS(4619), - [aux_sym_file_position_statement_token4] = ACTIONS(4619), - [aux_sym_allocate_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_logical_expression_token5] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_LPAREN_SLASH] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [aux_sym_boolean_literal_token1] = ACTIONS(4621), - [aux_sym_boolean_literal_token2] = ACTIONS(4621), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), + [aux_sym_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_program_statement_token2] = ACTIONS(4403), + [aux_sym_module_statement_token1] = ACTIONS(4403), + [aux_sym_submodule_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_subroutine_statement_token1] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_function_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4403), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4403), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4403), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - [sym__float_literal] = ACTIONS(4621), - [sym__boz_literal] = ACTIONS(4621), - [sym__string_literal] = ACTIONS(4621), - [sym__string_literal_kind] = ACTIONS(4621), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [973] = { - [ts_builtin_sym_end] = ACTIONS(4513), - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), + [984] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4511), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_end_program_statement_token2] = ACTIONS(4511), - [aux_sym_module_statement_token1] = ACTIONS(4511), - [aux_sym_submodule_statement_token1] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_subroutine_statement_token1] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_function_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_contains_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4511), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4511), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4511), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [anon_sym_SEMI] = ACTIONS(4513), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_subroutine_call_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_keyword_statement_token4] = ACTIONS(4511), - [aux_sym_keyword_statement_token6] = ACTIONS(4511), - [aux_sym_keyword_statement_token7] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym_do_loop_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym__inline_where_statement_token1] = ACTIONS(4511), - [aux_sym__forall_control_expression_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token3] = ACTIONS(4511), - [aux_sym_select_type_statement_token1] = ACTIONS(4511), - [aux_sym_select_rank_statement_token2] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_associate_statement_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_print_statement_token1] = ACTIONS(4511), - [aux_sym_open_statement_token1] = ACTIONS(4511), - [aux_sym_close_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token2] = ACTIONS(4511), - [aux_sym_file_position_statement_token3] = ACTIONS(4511), - [aux_sym_file_position_statement_token4] = ACTIONS(4511), - [aux_sym_allocate_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_logical_expression_token5] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4511), - [anon_sym_LPAREN_SLASH] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [aux_sym_boolean_literal_token1] = ACTIONS(4513), - [aux_sym_boolean_literal_token2] = ACTIONS(4513), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), + [aux_sym_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_program_statement_token2] = ACTIONS(4407), + [aux_sym_module_statement_token1] = ACTIONS(4407), + [aux_sym_submodule_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_subroutine_statement_token1] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_function_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4407), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4407), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4407), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), - [sym__float_literal] = ACTIONS(4513), - [sym__boz_literal] = ACTIONS(4513), - [sym__string_literal] = ACTIONS(4513), - [sym__string_literal_kind] = ACTIONS(4513), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [974] = { - [ts_builtin_sym_end] = ACTIONS(4533), - [aux_sym_preproc_include_token1] = ACTIONS(4531), - [aux_sym_preproc_def_token1] = ACTIONS(4531), - [aux_sym_preproc_if_token1] = ACTIONS(4531), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4531), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4531), - [sym_preproc_directive] = ACTIONS(4531), - [anon_sym_LPAREN2] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4533), - [anon_sym_DASH] = ACTIONS(4533), + [985] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4531), - [aux_sym_end_program_statement_token1] = ACTIONS(4531), - [aux_sym_end_program_statement_token2] = ACTIONS(4531), - [aux_sym_module_statement_token1] = ACTIONS(4531), - [aux_sym_submodule_statement_token1] = ACTIONS(4531), - [aux_sym_interface_statement_token1] = ACTIONS(4531), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4531), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4531), - [aux_sym_subroutine_statement_token1] = ACTIONS(4531), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4531), - [aux_sym_function_statement_token1] = ACTIONS(4531), - [aux_sym_language_binding_token1] = ACTIONS(4531), - [aux_sym_procedure_attributes_token1] = ACTIONS(4531), - [aux_sym_procedure_attributes_token3] = ACTIONS(4531), - [aux_sym_contains_statement_token1] = ACTIONS(4531), - [aux_sym_use_statement_token1] = ACTIONS(4531), - [aux_sym_use_statement_token2] = ACTIONS(4531), - [aux_sym_implicit_statement_token1] = ACTIONS(4531), - [aux_sym_implicit_statement_token3] = ACTIONS(4531), - [aux_sym_implicit_statement_token4] = ACTIONS(4531), - [aux_sym_save_statement_token1] = ACTIONS(4531), - [aux_sym_private_statement_token1] = ACTIONS(4531), - [aux_sym_public_statement_token1] = ACTIONS(4531), - [aux_sym_namelist_statement_token1] = ACTIONS(4531), - [aux_sym_common_statement_token1] = ACTIONS(4531), - [aux_sym_import_statement_token1] = ACTIONS(4531), - [aux_sym_derived_type_definition_token1] = ACTIONS(4531), - [aux_sym_abstract_specifier_token1] = ACTIONS(4531), - [aux_sym_procedure_attribute_token6] = ACTIONS(4531), - [aux_sym_variable_attributes_token1] = ACTIONS(4531), - [aux_sym_variable_attributes_token2] = ACTIONS(4531), - [aux_sym_variable_attributes_token3] = ACTIONS(4531), - [aux_sym_variable_attributes_token4] = ACTIONS(4531), - [aux_sym_variable_attributes_token5] = ACTIONS(4531), - [aux_sym__intrinsic_type_token1] = ACTIONS(4531), - [aux_sym__intrinsic_type_token2] = ACTIONS(4531), - [aux_sym__intrinsic_type_token3] = ACTIONS(4531), - [aux_sym__intrinsic_type_token4] = ACTIONS(4531), - [aux_sym__intrinsic_type_token6] = ACTIONS(4531), - [aux_sym__intrinsic_type_token7] = ACTIONS(4531), - [aux_sym__intrinsic_type_token8] = ACTIONS(4531), - [aux_sym__intrinsic_type_token9] = ACTIONS(4531), - [aux_sym__intrinsic_type_token10] = ACTIONS(4531), - [aux_sym_derived_type_token1] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4531), - [aux_sym_type_qualifier_token1] = ACTIONS(4531), - [aux_sym_type_qualifier_token2] = ACTIONS(4531), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4531), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4531), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4531), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4531), - [aux_sym_equivalence_statement_token1] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4533), - [aux_sym_stop_statement_token1] = ACTIONS(4531), - [aux_sym_stop_statement_token2] = ACTIONS(4531), - [aux_sym_subroutine_call_token1] = ACTIONS(4531), - [aux_sym_keyword_statement_token1] = ACTIONS(4531), - [aux_sym_keyword_statement_token2] = ACTIONS(4531), - [aux_sym_keyword_statement_token3] = ACTIONS(4531), - [aux_sym_keyword_statement_token4] = ACTIONS(4531), - [aux_sym_keyword_statement_token6] = ACTIONS(4531), - [aux_sym_keyword_statement_token7] = ACTIONS(4531), - [aux_sym_include_statement_token1] = ACTIONS(4531), - [aux_sym_data_statement_token1] = ACTIONS(4531), - [aux_sym_do_loop_statement_token1] = ACTIONS(4531), - [aux_sym__inline_if_statement_token1] = ACTIONS(4531), - [aux_sym_end_if_statement_token1] = ACTIONS(4531), - [aux_sym_elseif_clause_token2] = ACTIONS(4531), - [aux_sym__inline_where_statement_token1] = ACTIONS(4531), - [aux_sym__forall_control_expression_token1] = ACTIONS(4531), - [aux_sym_select_case_statement_token1] = ACTIONS(4531), - [aux_sym_select_case_statement_token3] = ACTIONS(4531), - [aux_sym_select_type_statement_token1] = ACTIONS(4531), - [aux_sym_select_rank_statement_token2] = ACTIONS(4531), - [aux_sym_block_construct_token1] = ACTIONS(4531), - [aux_sym_associate_statement_token1] = ACTIONS(4531), - [aux_sym_format_statement_token1] = ACTIONS(4531), - [aux_sym_print_statement_token1] = ACTIONS(4531), - [aux_sym_open_statement_token1] = ACTIONS(4531), - [aux_sym_close_statement_token1] = ACTIONS(4531), - [aux_sym_inquire_statement_token1] = ACTIONS(4531), - [aux_sym_enum_statement_token1] = ACTIONS(4531), - [aux_sym_file_position_statement_token1] = ACTIONS(4531), - [aux_sym_file_position_statement_token2] = ACTIONS(4531), - [aux_sym_file_position_statement_token3] = ACTIONS(4531), - [aux_sym_file_position_statement_token4] = ACTIONS(4531), - [aux_sym_allocate_statement_token1] = ACTIONS(4531), - [aux_sym_entry_statement_token1] = ACTIONS(4531), - [aux_sym_logical_expression_token5] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4531), - [anon_sym_LPAREN_SLASH] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4533), - [aux_sym_boolean_literal_token1] = ACTIONS(4533), - [aux_sym_boolean_literal_token2] = ACTIONS(4533), - [aux_sym_null_literal_token1] = ACTIONS(4531), - [aux_sym_coarray_statement_token1] = ACTIONS(4531), - [aux_sym_coarray_statement_token2] = ACTIONS(4531), - [aux_sym_coarray_statement_token6] = ACTIONS(4531), - [aux_sym_coarray_statement_token8] = ACTIONS(4531), - [aux_sym_coarray_statement_token11] = ACTIONS(4531), - [aux_sym_coarray_statement_token12] = ACTIONS(4531), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4531), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4531), - [aux_sym_identifier_token1] = ACTIONS(4531), + [aux_sym_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_program_statement_token2] = ACTIONS(4411), + [aux_sym_module_statement_token1] = ACTIONS(4411), + [aux_sym_submodule_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_subroutine_statement_token1] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_function_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4411), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4411), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4411), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4533), - [sym__float_literal] = ACTIONS(4533), - [sym__boz_literal] = ACTIONS(4533), - [sym__string_literal] = ACTIONS(4533), - [sym__string_literal_kind] = ACTIONS(4533), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [975] = { - [ts_builtin_sym_end] = ACTIONS(4537), - [aux_sym_preproc_include_token1] = ACTIONS(4535), - [aux_sym_preproc_def_token1] = ACTIONS(4535), - [aux_sym_preproc_if_token1] = ACTIONS(4535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), - [sym_preproc_directive] = ACTIONS(4535), - [anon_sym_LPAREN2] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4537), - [anon_sym_DASH] = ACTIONS(4537), + [986] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4535), - [aux_sym_end_program_statement_token1] = ACTIONS(4535), - [aux_sym_end_program_statement_token2] = ACTIONS(4535), - [aux_sym_module_statement_token1] = ACTIONS(4535), - [aux_sym_submodule_statement_token1] = ACTIONS(4535), - [aux_sym_interface_statement_token1] = ACTIONS(4535), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), - [aux_sym_subroutine_statement_token1] = ACTIONS(4535), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), - [aux_sym_function_statement_token1] = ACTIONS(4535), - [aux_sym_language_binding_token1] = ACTIONS(4535), - [aux_sym_procedure_attributes_token1] = ACTIONS(4535), - [aux_sym_procedure_attributes_token3] = ACTIONS(4535), - [aux_sym_contains_statement_token1] = ACTIONS(4535), - [aux_sym_use_statement_token1] = ACTIONS(4535), - [aux_sym_use_statement_token2] = ACTIONS(4535), - [aux_sym_implicit_statement_token1] = ACTIONS(4535), - [aux_sym_implicit_statement_token3] = ACTIONS(4535), - [aux_sym_implicit_statement_token4] = ACTIONS(4535), - [aux_sym_save_statement_token1] = ACTIONS(4535), - [aux_sym_private_statement_token1] = ACTIONS(4535), - [aux_sym_public_statement_token1] = ACTIONS(4535), - [aux_sym_namelist_statement_token1] = ACTIONS(4535), - [aux_sym_common_statement_token1] = ACTIONS(4535), - [aux_sym_import_statement_token1] = ACTIONS(4535), - [aux_sym_derived_type_definition_token1] = ACTIONS(4535), - [aux_sym_abstract_specifier_token1] = ACTIONS(4535), - [aux_sym_procedure_attribute_token6] = ACTIONS(4535), - [aux_sym_variable_attributes_token1] = ACTIONS(4535), - [aux_sym_variable_attributes_token2] = ACTIONS(4535), - [aux_sym_variable_attributes_token3] = ACTIONS(4535), - [aux_sym_variable_attributes_token4] = ACTIONS(4535), - [aux_sym_variable_attributes_token5] = ACTIONS(4535), - [aux_sym__intrinsic_type_token1] = ACTIONS(4535), - [aux_sym__intrinsic_type_token2] = ACTIONS(4535), - [aux_sym__intrinsic_type_token3] = ACTIONS(4535), - [aux_sym__intrinsic_type_token4] = ACTIONS(4535), - [aux_sym__intrinsic_type_token6] = ACTIONS(4535), - [aux_sym__intrinsic_type_token7] = ACTIONS(4535), - [aux_sym__intrinsic_type_token8] = ACTIONS(4535), - [aux_sym__intrinsic_type_token9] = ACTIONS(4535), - [aux_sym__intrinsic_type_token10] = ACTIONS(4535), - [aux_sym_derived_type_token1] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), - [aux_sym_type_qualifier_token1] = ACTIONS(4535), - [aux_sym_type_qualifier_token2] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4535), - [aux_sym_equivalence_statement_token1] = ACTIONS(4535), - [anon_sym_SEMI] = ACTIONS(4537), - [aux_sym_stop_statement_token1] = ACTIONS(4535), - [aux_sym_stop_statement_token2] = ACTIONS(4535), - [aux_sym_subroutine_call_token1] = ACTIONS(4535), - [aux_sym_keyword_statement_token1] = ACTIONS(4535), - [aux_sym_keyword_statement_token2] = ACTIONS(4535), - [aux_sym_keyword_statement_token3] = ACTIONS(4535), - [aux_sym_keyword_statement_token4] = ACTIONS(4535), - [aux_sym_keyword_statement_token6] = ACTIONS(4535), - [aux_sym_keyword_statement_token7] = ACTIONS(4535), - [aux_sym_include_statement_token1] = ACTIONS(4535), - [aux_sym_data_statement_token1] = ACTIONS(4535), - [aux_sym_do_loop_statement_token1] = ACTIONS(4535), - [aux_sym__inline_if_statement_token1] = ACTIONS(4535), - [aux_sym_end_if_statement_token1] = ACTIONS(4535), - [aux_sym_elseif_clause_token2] = ACTIONS(4535), - [aux_sym__inline_where_statement_token1] = ACTIONS(4535), - [aux_sym__forall_control_expression_token1] = ACTIONS(4535), - [aux_sym_select_case_statement_token1] = ACTIONS(4535), - [aux_sym_select_case_statement_token3] = ACTIONS(4535), - [aux_sym_select_type_statement_token1] = ACTIONS(4535), - [aux_sym_select_rank_statement_token2] = ACTIONS(4535), - [aux_sym_block_construct_token1] = ACTIONS(4535), - [aux_sym_associate_statement_token1] = ACTIONS(4535), - [aux_sym_format_statement_token1] = ACTIONS(4535), - [aux_sym_print_statement_token1] = ACTIONS(4535), - [aux_sym_open_statement_token1] = ACTIONS(4535), - [aux_sym_close_statement_token1] = ACTIONS(4535), - [aux_sym_inquire_statement_token1] = ACTIONS(4535), - [aux_sym_enum_statement_token1] = ACTIONS(4535), - [aux_sym_file_position_statement_token1] = ACTIONS(4535), - [aux_sym_file_position_statement_token2] = ACTIONS(4535), - [aux_sym_file_position_statement_token3] = ACTIONS(4535), - [aux_sym_file_position_statement_token4] = ACTIONS(4535), - [aux_sym_allocate_statement_token1] = ACTIONS(4535), - [aux_sym_entry_statement_token1] = ACTIONS(4535), - [aux_sym_logical_expression_token5] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4535), - [anon_sym_LPAREN_SLASH] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4537), - [aux_sym_boolean_literal_token1] = ACTIONS(4537), - [aux_sym_boolean_literal_token2] = ACTIONS(4537), - [aux_sym_null_literal_token1] = ACTIONS(4535), - [aux_sym_coarray_statement_token1] = ACTIONS(4535), - [aux_sym_coarray_statement_token2] = ACTIONS(4535), - [aux_sym_coarray_statement_token6] = ACTIONS(4535), - [aux_sym_coarray_statement_token8] = ACTIONS(4535), - [aux_sym_coarray_statement_token11] = ACTIONS(4535), - [aux_sym_coarray_statement_token12] = ACTIONS(4535), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), - [aux_sym_identifier_token1] = ACTIONS(4535), + [aux_sym_program_statement_token1] = ACTIONS(4415), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_end_program_statement_token2] = ACTIONS(4415), + [aux_sym_module_statement_token1] = ACTIONS(4415), + [aux_sym_submodule_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_subroutine_statement_token1] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_function_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4415), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4415), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4415), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4537), - [sym__float_literal] = ACTIONS(4537), - [sym__boz_literal] = ACTIONS(4537), - [sym__string_literal] = ACTIONS(4537), - [sym__string_literal_kind] = ACTIONS(4537), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [976] = { - [aux_sym_preproc_include_token1] = ACTIONS(4473), - [aux_sym_preproc_def_token1] = ACTIONS(4473), - [aux_sym_preproc_if_token1] = ACTIONS(4473), - [aux_sym_preproc_if_token2] = ACTIONS(4473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4473), - [sym_preproc_directive] = ACTIONS(4473), - [anon_sym_LPAREN2] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4473), - [aux_sym_end_program_statement_token1] = ACTIONS(4473), - [aux_sym_end_program_statement_token2] = ACTIONS(4473), - [aux_sym_module_statement_token1] = ACTIONS(4473), - [aux_sym_submodule_statement_token1] = ACTIONS(4473), - [aux_sym_interface_statement_token1] = ACTIONS(4473), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4473), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4473), - [aux_sym_subroutine_statement_token1] = ACTIONS(4473), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4473), - [aux_sym_function_statement_token1] = ACTIONS(4473), - [aux_sym_language_binding_token1] = ACTIONS(4473), - [aux_sym_procedure_attributes_token1] = ACTIONS(4473), - [aux_sym_procedure_attributes_token3] = ACTIONS(4473), - [aux_sym_contains_statement_token1] = ACTIONS(4473), - [aux_sym_use_statement_token1] = ACTIONS(4473), - [aux_sym_use_statement_token2] = ACTIONS(4473), - [aux_sym_implicit_statement_token1] = ACTIONS(4473), - [aux_sym_implicit_statement_token3] = ACTIONS(4473), - [aux_sym_implicit_statement_token4] = ACTIONS(4473), - [aux_sym_save_statement_token1] = ACTIONS(4473), - [aux_sym_private_statement_token1] = ACTIONS(4473), - [aux_sym_public_statement_token1] = ACTIONS(4473), - [aux_sym_namelist_statement_token1] = ACTIONS(4473), - [aux_sym_common_statement_token1] = ACTIONS(4473), - [aux_sym_import_statement_token1] = ACTIONS(4473), - [aux_sym_derived_type_definition_token1] = ACTIONS(4473), - [aux_sym_abstract_specifier_token1] = ACTIONS(4473), - [aux_sym_procedure_attribute_token6] = ACTIONS(4473), - [aux_sym_variable_attributes_token1] = ACTIONS(4473), - [aux_sym_variable_attributes_token2] = ACTIONS(4473), - [aux_sym_variable_attributes_token3] = ACTIONS(4473), - [aux_sym_variable_attributes_token4] = ACTIONS(4473), - [aux_sym_variable_attributes_token5] = ACTIONS(4473), - [aux_sym__intrinsic_type_token1] = ACTIONS(4473), - [aux_sym__intrinsic_type_token2] = ACTIONS(4473), - [aux_sym__intrinsic_type_token3] = ACTIONS(4473), - [aux_sym__intrinsic_type_token4] = ACTIONS(4473), - [aux_sym__intrinsic_type_token6] = ACTIONS(4473), - [aux_sym__intrinsic_type_token7] = ACTIONS(4473), - [aux_sym__intrinsic_type_token8] = ACTIONS(4473), - [aux_sym__intrinsic_type_token9] = ACTIONS(4473), - [aux_sym__intrinsic_type_token10] = ACTIONS(4473), - [aux_sym_derived_type_token1] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4473), - [aux_sym_type_qualifier_token1] = ACTIONS(4473), - [aux_sym_type_qualifier_token2] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4473), - [aux_sym_equivalence_statement_token1] = ACTIONS(4473), - [anon_sym_SEMI] = ACTIONS(4475), - [aux_sym_stop_statement_token1] = ACTIONS(4473), - [aux_sym_stop_statement_token2] = ACTIONS(4473), - [aux_sym_subroutine_call_token1] = ACTIONS(4473), - [aux_sym_keyword_statement_token1] = ACTIONS(4473), - [aux_sym_keyword_statement_token2] = ACTIONS(4473), - [aux_sym_keyword_statement_token3] = ACTIONS(4473), - [aux_sym_keyword_statement_token4] = ACTIONS(4473), - [aux_sym_keyword_statement_token6] = ACTIONS(4473), - [aux_sym_keyword_statement_token7] = ACTIONS(4473), - [aux_sym_include_statement_token1] = ACTIONS(4473), - [aux_sym_data_statement_token1] = ACTIONS(4473), - [aux_sym_do_loop_statement_token1] = ACTIONS(4473), - [aux_sym__inline_if_statement_token1] = ACTIONS(4473), - [aux_sym_end_if_statement_token1] = ACTIONS(4473), - [aux_sym_elseif_clause_token2] = ACTIONS(4473), - [aux_sym__inline_where_statement_token1] = ACTIONS(4473), - [aux_sym__forall_control_expression_token1] = ACTIONS(4473), - [aux_sym_select_case_statement_token1] = ACTIONS(4473), - [aux_sym_select_case_statement_token3] = ACTIONS(4473), - [aux_sym_select_type_statement_token1] = ACTIONS(4473), - [aux_sym_select_rank_statement_token2] = ACTIONS(4473), - [aux_sym_block_construct_token1] = ACTIONS(4473), - [aux_sym_associate_statement_token1] = ACTIONS(4473), - [aux_sym_format_statement_token1] = ACTIONS(4473), - [aux_sym_print_statement_token1] = ACTIONS(4473), - [aux_sym_open_statement_token1] = ACTIONS(4473), - [aux_sym_close_statement_token1] = ACTIONS(4473), - [aux_sym_inquire_statement_token1] = ACTIONS(4473), - [aux_sym_enum_statement_token1] = ACTIONS(4473), - [aux_sym_file_position_statement_token1] = ACTIONS(4473), - [aux_sym_file_position_statement_token2] = ACTIONS(4473), - [aux_sym_file_position_statement_token3] = ACTIONS(4473), - [aux_sym_file_position_statement_token4] = ACTIONS(4473), - [aux_sym_allocate_statement_token1] = ACTIONS(4473), - [aux_sym_entry_statement_token1] = ACTIONS(4473), - [aux_sym_logical_expression_token5] = ACTIONS(4475), - [anon_sym_DOT] = ACTIONS(4473), - [anon_sym_LPAREN_SLASH] = ACTIONS(4475), - [anon_sym_LBRACK] = ACTIONS(4475), - [aux_sym_boolean_literal_token1] = ACTIONS(4475), - [aux_sym_boolean_literal_token2] = ACTIONS(4475), - [aux_sym_null_literal_token1] = ACTIONS(4473), - [aux_sym_coarray_statement_token1] = ACTIONS(4473), - [aux_sym_coarray_statement_token2] = ACTIONS(4473), - [aux_sym_coarray_statement_token6] = ACTIONS(4473), - [aux_sym_coarray_statement_token8] = ACTIONS(4473), - [aux_sym_coarray_statement_token11] = ACTIONS(4473), - [aux_sym_coarray_statement_token12] = ACTIONS(4473), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4473), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4473), - [aux_sym_identifier_token1] = ACTIONS(4473), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4475), - [sym__float_literal] = ACTIONS(4475), - [sym__boz_literal] = ACTIONS(4475), - [sym__string_literal] = ACTIONS(4475), - [sym__string_literal_kind] = ACTIONS(4475), + [987] = { + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token2] = ACTIONS(4297), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4297), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4297), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token3] = ACTIONS(4297), + [aux_sym_contains_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token2] = ACTIONS(4297), + [aux_sym_implicit_statement_token1] = ACTIONS(4297), + [aux_sym_implicit_statement_token3] = ACTIONS(4297), + [aux_sym_implicit_statement_token4] = ACTIONS(4297), + [aux_sym_save_statement_token1] = ACTIONS(4297), + [aux_sym_private_statement_token1] = ACTIONS(4297), + [aux_sym_public_statement_token1] = ACTIONS(4297), + [aux_sym_namelist_statement_token1] = ACTIONS(4297), + [aux_sym_common_statement_token1] = ACTIONS(4297), + [aux_sym_import_statement_token1] = ACTIONS(4297), + [aux_sym_derived_type_definition_token1] = ACTIONS(4297), + [aux_sym_abstract_specifier_token1] = ACTIONS(4297), + [aux_sym_procedure_attribute_token6] = ACTIONS(4297), + [aux_sym_variable_attributes_token1] = ACTIONS(4297), + [aux_sym_variable_attributes_token2] = ACTIONS(4297), + [aux_sym_variable_attributes_token3] = ACTIONS(4297), + [aux_sym_variable_attributes_token4] = ACTIONS(4297), + [aux_sym_variable_attributes_token5] = ACTIONS(4297), + [aux_sym__intrinsic_type_token1] = ACTIONS(4297), + [aux_sym__intrinsic_type_token2] = ACTIONS(4297), + [aux_sym__intrinsic_type_token3] = ACTIONS(4297), + [aux_sym__intrinsic_type_token4] = ACTIONS(4297), + [aux_sym__intrinsic_type_token6] = ACTIONS(4297), + [aux_sym__intrinsic_type_token7] = ACTIONS(4297), + [aux_sym__intrinsic_type_token8] = ACTIONS(4297), + [aux_sym__intrinsic_type_token9] = ACTIONS(4297), + [aux_sym__intrinsic_type_token10] = ACTIONS(4297), + [aux_sym_derived_type_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4297), + [aux_sym_type_qualifier_token1] = ACTIONS(4297), + [aux_sym_type_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4301), + [aux_sym_stop_statement_token1] = ACTIONS(4297), + [aux_sym_stop_statement_token2] = ACTIONS(4297), + [aux_sym_subroutine_call_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token2] = ACTIONS(4297), + [aux_sym_keyword_statement_token3] = ACTIONS(4297), + [aux_sym_keyword_statement_token4] = ACTIONS(4297), + [aux_sym_keyword_statement_token6] = ACTIONS(4297), + [aux_sym_keyword_statement_token7] = ACTIONS(4297), + [aux_sym_include_statement_token1] = ACTIONS(4297), + [aux_sym_data_statement_token1] = ACTIONS(4297), + [aux_sym_do_loop_statement_token1] = ACTIONS(4297), + [aux_sym__inline_if_statement_token1] = ACTIONS(4297), + [aux_sym_end_if_statement_token1] = ACTIONS(4297), + [aux_sym_elseif_clause_token2] = ACTIONS(4297), + [aux_sym__inline_where_statement_token1] = ACTIONS(4297), + [aux_sym__forall_control_expression_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token3] = ACTIONS(4297), + [aux_sym_select_type_statement_token1] = ACTIONS(4297), + [aux_sym_select_rank_statement_token2] = ACTIONS(4297), + [aux_sym_block_construct_token1] = ACTIONS(4297), + [aux_sym_associate_statement_token1] = ACTIONS(4297), + [aux_sym_format_statement_token1] = ACTIONS(4297), + [aux_sym_print_statement_token1] = ACTIONS(4297), + [aux_sym_open_statement_token1] = ACTIONS(4297), + [aux_sym_close_statement_token1] = ACTIONS(4297), + [aux_sym_inquire_statement_token1] = ACTIONS(4297), + [aux_sym_enum_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token2] = ACTIONS(4297), + [aux_sym_file_position_statement_token3] = ACTIONS(4297), + [aux_sym_file_position_statement_token4] = ACTIONS(4297), + [aux_sym_allocate_statement_token1] = ACTIONS(4297), + [aux_sym_entry_statement_token1] = ACTIONS(4297), + [aux_sym_logical_expression_token5] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_LPAREN_SLASH] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [aux_sym_boolean_literal_token1] = ACTIONS(4301), + [aux_sym_boolean_literal_token2] = ACTIONS(4301), + [aux_sym_null_literal_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token2] = ACTIONS(4297), + [aux_sym_coarray_statement_token6] = ACTIONS(4297), + [aux_sym_coarray_statement_token8] = ACTIONS(4297), + [aux_sym_coarray_statement_token11] = ACTIONS(4297), + [aux_sym_coarray_statement_token12] = ACTIONS(4297), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4297), + [aux_sym_identifier_token1] = ACTIONS(4297), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4301), + [sym__float_literal] = ACTIONS(4301), + [sym__boz_literal] = ACTIONS(4301), + [sym__string_literal] = ACTIONS(4301), + [sym__string_literal_kind] = ACTIONS(4301), }, - [977] = { - [sym_preproc_include] = STATE(982), - [sym_preproc_def] = STATE(982), - [sym_preproc_function_def] = STATE(982), - [sym_preproc_call] = STATE(982), - [sym_preproc_else_in_module] = STATE(8352), - [sym_preproc_elif_in_module] = STATE(8352), - [sym_preproc_elifdef_in_module] = STATE(8352), - [sym_interface] = STATE(982), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5676), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(982), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(982), - [sym_public_statement] = STATE(982), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(982), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(982), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(982), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4731), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [988] = { + [ts_builtin_sym_end] = ACTIONS(4397), + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_program_statement_token2] = ACTIONS(4395), + [aux_sym_module_statement_token1] = ACTIONS(4395), + [aux_sym_submodule_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_subroutine_statement_token1] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_function_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4395), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4395), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4395), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [978] = { - [sym_preproc_include] = STATE(984), - [sym_preproc_def] = STATE(984), - [sym_preproc_function_def] = STATE(984), - [sym_preproc_call] = STATE(984), - [sym_preproc_else_in_module] = STATE(8357), - [sym_preproc_elif_in_module] = STATE(8357), - [sym_preproc_elifdef_in_module] = STATE(8357), - [sym_interface] = STATE(984), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5692), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(984), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(984), - [sym_public_statement] = STATE(984), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(984), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(984), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(984), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4733), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [989] = { + [ts_builtin_sym_end] = ACTIONS(4577), + [aux_sym_preproc_include_token1] = ACTIONS(4575), + [aux_sym_preproc_def_token1] = ACTIONS(4575), + [aux_sym_preproc_if_token1] = ACTIONS(4575), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), + [sym_preproc_directive] = ACTIONS(4575), + [anon_sym_LPAREN2] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token2] = ACTIONS(4575), + [aux_sym_module_statement_token1] = ACTIONS(4575), + [aux_sym_submodule_statement_token1] = ACTIONS(4575), + [aux_sym_interface_statement_token1] = ACTIONS(4575), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), + [aux_sym_subroutine_statement_token1] = ACTIONS(4575), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), + [aux_sym_function_statement_token1] = ACTIONS(4575), + [aux_sym_language_binding_token1] = ACTIONS(4575), + [aux_sym_procedure_attributes_token1] = ACTIONS(4575), + [aux_sym_procedure_attributes_token3] = ACTIONS(4575), + [aux_sym_contains_statement_token1] = ACTIONS(4575), + [aux_sym_use_statement_token1] = ACTIONS(4575), + [aux_sym_use_statement_token2] = ACTIONS(4575), + [aux_sym_implicit_statement_token1] = ACTIONS(4575), + [aux_sym_implicit_statement_token3] = ACTIONS(4575), + [aux_sym_implicit_statement_token4] = ACTIONS(4575), + [aux_sym_save_statement_token1] = ACTIONS(4575), + [aux_sym_private_statement_token1] = ACTIONS(4575), + [aux_sym_public_statement_token1] = ACTIONS(4575), + [aux_sym_namelist_statement_token1] = ACTIONS(4575), + [aux_sym_common_statement_token1] = ACTIONS(4575), + [aux_sym_import_statement_token1] = ACTIONS(4575), + [aux_sym_derived_type_definition_token1] = ACTIONS(4575), + [aux_sym_abstract_specifier_token1] = ACTIONS(4575), + [aux_sym_procedure_attribute_token6] = ACTIONS(4575), + [aux_sym_variable_attributes_token1] = ACTIONS(4575), + [aux_sym_variable_attributes_token2] = ACTIONS(4575), + [aux_sym_variable_attributes_token3] = ACTIONS(4575), + [aux_sym_variable_attributes_token4] = ACTIONS(4575), + [aux_sym_variable_attributes_token5] = ACTIONS(4575), + [aux_sym__intrinsic_type_token1] = ACTIONS(4575), + [aux_sym__intrinsic_type_token2] = ACTIONS(4575), + [aux_sym__intrinsic_type_token3] = ACTIONS(4575), + [aux_sym__intrinsic_type_token4] = ACTIONS(4575), + [aux_sym__intrinsic_type_token6] = ACTIONS(4575), + [aux_sym__intrinsic_type_token7] = ACTIONS(4575), + [aux_sym__intrinsic_type_token8] = ACTIONS(4575), + [aux_sym__intrinsic_type_token9] = ACTIONS(4575), + [aux_sym__intrinsic_type_token10] = ACTIONS(4575), + [aux_sym_derived_type_token1] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), + [aux_sym_type_qualifier_token1] = ACTIONS(4575), + [aux_sym_type_qualifier_token2] = ACTIONS(4575), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4575), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4575), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4575), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4575), + [aux_sym_equivalence_statement_token1] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4577), + [aux_sym_stop_statement_token1] = ACTIONS(4575), + [aux_sym_stop_statement_token2] = ACTIONS(4575), + [aux_sym_subroutine_call_token1] = ACTIONS(4575), + [aux_sym_keyword_statement_token1] = ACTIONS(4575), + [aux_sym_keyword_statement_token2] = ACTIONS(4575), + [aux_sym_keyword_statement_token3] = ACTIONS(4575), + [aux_sym_keyword_statement_token4] = ACTIONS(4575), + [aux_sym_keyword_statement_token6] = ACTIONS(4575), + [aux_sym_keyword_statement_token7] = ACTIONS(4575), + [aux_sym_include_statement_token1] = ACTIONS(4575), + [aux_sym_data_statement_token1] = ACTIONS(4575), + [aux_sym_do_loop_statement_token1] = ACTIONS(4575), + [aux_sym__inline_if_statement_token1] = ACTIONS(4575), + [aux_sym_end_if_statement_token1] = ACTIONS(4575), + [aux_sym_elseif_clause_token2] = ACTIONS(4575), + [aux_sym__inline_where_statement_token1] = ACTIONS(4575), + [aux_sym__forall_control_expression_token1] = ACTIONS(4575), + [aux_sym_select_case_statement_token1] = ACTIONS(4575), + [aux_sym_select_case_statement_token3] = ACTIONS(4575), + [aux_sym_select_type_statement_token1] = ACTIONS(4575), + [aux_sym_select_rank_statement_token2] = ACTIONS(4575), + [aux_sym_block_construct_token1] = ACTIONS(4575), + [aux_sym_associate_statement_token1] = ACTIONS(4575), + [aux_sym_format_statement_token1] = ACTIONS(4575), + [aux_sym_print_statement_token1] = ACTIONS(4575), + [aux_sym_open_statement_token1] = ACTIONS(4575), + [aux_sym_close_statement_token1] = ACTIONS(4575), + [aux_sym_inquire_statement_token1] = ACTIONS(4575), + [aux_sym_enum_statement_token1] = ACTIONS(4575), + [aux_sym_file_position_statement_token1] = ACTIONS(4575), + [aux_sym_file_position_statement_token2] = ACTIONS(4575), + [aux_sym_file_position_statement_token3] = ACTIONS(4575), + [aux_sym_file_position_statement_token4] = ACTIONS(4575), + [aux_sym_allocate_statement_token1] = ACTIONS(4575), + [aux_sym_entry_statement_token1] = ACTIONS(4575), + [aux_sym_logical_expression_token5] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4575), + [anon_sym_LPAREN_SLASH] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4577), + [aux_sym_boolean_literal_token1] = ACTIONS(4577), + [aux_sym_boolean_literal_token2] = ACTIONS(4577), + [aux_sym_null_literal_token1] = ACTIONS(4575), + [aux_sym_coarray_statement_token1] = ACTIONS(4575), + [aux_sym_coarray_statement_token2] = ACTIONS(4575), + [aux_sym_coarray_statement_token6] = ACTIONS(4575), + [aux_sym_coarray_statement_token8] = ACTIONS(4575), + [aux_sym_coarray_statement_token11] = ACTIONS(4575), + [aux_sym_coarray_statement_token12] = ACTIONS(4575), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), + [aux_sym_identifier_token1] = ACTIONS(4575), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4577), + [sym__float_literal] = ACTIONS(4577), + [sym__boz_literal] = ACTIONS(4577), + [sym__string_literal] = ACTIONS(4577), + [sym__string_literal_kind] = ACTIONS(4577), + }, + [990] = { + [ts_builtin_sym_end] = ACTIONS(4581), + [aux_sym_preproc_include_token1] = ACTIONS(4579), + [aux_sym_preproc_def_token1] = ACTIONS(4579), + [aux_sym_preproc_if_token1] = ACTIONS(4579), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), + [sym_preproc_directive] = ACTIONS(4579), + [anon_sym_LPAREN2] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token2] = ACTIONS(4579), + [aux_sym_module_statement_token1] = ACTIONS(4579), + [aux_sym_submodule_statement_token1] = ACTIONS(4579), + [aux_sym_interface_statement_token1] = ACTIONS(4579), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), + [aux_sym_subroutine_statement_token1] = ACTIONS(4579), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), + [aux_sym_function_statement_token1] = ACTIONS(4579), + [aux_sym_language_binding_token1] = ACTIONS(4579), + [aux_sym_procedure_attributes_token1] = ACTIONS(4579), + [aux_sym_procedure_attributes_token3] = ACTIONS(4579), + [aux_sym_contains_statement_token1] = ACTIONS(4579), + [aux_sym_use_statement_token1] = ACTIONS(4579), + [aux_sym_use_statement_token2] = ACTIONS(4579), + [aux_sym_implicit_statement_token1] = ACTIONS(4579), + [aux_sym_implicit_statement_token3] = ACTIONS(4579), + [aux_sym_implicit_statement_token4] = ACTIONS(4579), + [aux_sym_save_statement_token1] = ACTIONS(4579), + [aux_sym_private_statement_token1] = ACTIONS(4579), + [aux_sym_public_statement_token1] = ACTIONS(4579), + [aux_sym_namelist_statement_token1] = ACTIONS(4579), + [aux_sym_common_statement_token1] = ACTIONS(4579), + [aux_sym_import_statement_token1] = ACTIONS(4579), + [aux_sym_derived_type_definition_token1] = ACTIONS(4579), + [aux_sym_abstract_specifier_token1] = ACTIONS(4579), + [aux_sym_procedure_attribute_token6] = ACTIONS(4579), + [aux_sym_variable_attributes_token1] = ACTIONS(4579), + [aux_sym_variable_attributes_token2] = ACTIONS(4579), + [aux_sym_variable_attributes_token3] = ACTIONS(4579), + [aux_sym_variable_attributes_token4] = ACTIONS(4579), + [aux_sym_variable_attributes_token5] = ACTIONS(4579), + [aux_sym__intrinsic_type_token1] = ACTIONS(4579), + [aux_sym__intrinsic_type_token2] = ACTIONS(4579), + [aux_sym__intrinsic_type_token3] = ACTIONS(4579), + [aux_sym__intrinsic_type_token4] = ACTIONS(4579), + [aux_sym__intrinsic_type_token6] = ACTIONS(4579), + [aux_sym__intrinsic_type_token7] = ACTIONS(4579), + [aux_sym__intrinsic_type_token8] = ACTIONS(4579), + [aux_sym__intrinsic_type_token9] = ACTIONS(4579), + [aux_sym__intrinsic_type_token10] = ACTIONS(4579), + [aux_sym_derived_type_token1] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), + [aux_sym_type_qualifier_token1] = ACTIONS(4579), + [aux_sym_type_qualifier_token2] = ACTIONS(4579), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4579), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4579), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4579), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4579), + [aux_sym_equivalence_statement_token1] = ACTIONS(4579), + [anon_sym_SEMI] = ACTIONS(4581), + [aux_sym_stop_statement_token1] = ACTIONS(4579), + [aux_sym_stop_statement_token2] = ACTIONS(4579), + [aux_sym_subroutine_call_token1] = ACTIONS(4579), + [aux_sym_keyword_statement_token1] = ACTIONS(4579), + [aux_sym_keyword_statement_token2] = ACTIONS(4579), + [aux_sym_keyword_statement_token3] = ACTIONS(4579), + [aux_sym_keyword_statement_token4] = ACTIONS(4579), + [aux_sym_keyword_statement_token6] = ACTIONS(4579), + [aux_sym_keyword_statement_token7] = ACTIONS(4579), + [aux_sym_include_statement_token1] = ACTIONS(4579), + [aux_sym_data_statement_token1] = ACTIONS(4579), + [aux_sym_do_loop_statement_token1] = ACTIONS(4579), + [aux_sym__inline_if_statement_token1] = ACTIONS(4579), + [aux_sym_end_if_statement_token1] = ACTIONS(4579), + [aux_sym_elseif_clause_token2] = ACTIONS(4579), + [aux_sym__inline_where_statement_token1] = ACTIONS(4579), + [aux_sym__forall_control_expression_token1] = ACTIONS(4579), + [aux_sym_select_case_statement_token1] = ACTIONS(4579), + [aux_sym_select_case_statement_token3] = ACTIONS(4579), + [aux_sym_select_type_statement_token1] = ACTIONS(4579), + [aux_sym_select_rank_statement_token2] = ACTIONS(4579), + [aux_sym_block_construct_token1] = ACTIONS(4579), + [aux_sym_associate_statement_token1] = ACTIONS(4579), + [aux_sym_format_statement_token1] = ACTIONS(4579), + [aux_sym_print_statement_token1] = ACTIONS(4579), + [aux_sym_open_statement_token1] = ACTIONS(4579), + [aux_sym_close_statement_token1] = ACTIONS(4579), + [aux_sym_inquire_statement_token1] = ACTIONS(4579), + [aux_sym_enum_statement_token1] = ACTIONS(4579), + [aux_sym_file_position_statement_token1] = ACTIONS(4579), + [aux_sym_file_position_statement_token2] = ACTIONS(4579), + [aux_sym_file_position_statement_token3] = ACTIONS(4579), + [aux_sym_file_position_statement_token4] = ACTIONS(4579), + [aux_sym_allocate_statement_token1] = ACTIONS(4579), + [aux_sym_entry_statement_token1] = ACTIONS(4579), + [aux_sym_logical_expression_token5] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4579), + [anon_sym_LPAREN_SLASH] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4581), + [aux_sym_boolean_literal_token1] = ACTIONS(4581), + [aux_sym_boolean_literal_token2] = ACTIONS(4581), + [aux_sym_null_literal_token1] = ACTIONS(4579), + [aux_sym_coarray_statement_token1] = ACTIONS(4579), + [aux_sym_coarray_statement_token2] = ACTIONS(4579), + [aux_sym_coarray_statement_token6] = ACTIONS(4579), + [aux_sym_coarray_statement_token8] = ACTIONS(4579), + [aux_sym_coarray_statement_token11] = ACTIONS(4579), + [aux_sym_coarray_statement_token12] = ACTIONS(4579), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), + [aux_sym_identifier_token1] = ACTIONS(4579), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4581), + [sym__float_literal] = ACTIONS(4581), + [sym__boz_literal] = ACTIONS(4581), + [sym__string_literal] = ACTIONS(4581), + [sym__string_literal_kind] = ACTIONS(4581), }, - [979] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(8357), - [sym_preproc_elif_in_module] = STATE(8357), - [sym_preproc_elifdef_in_module] = STATE(8357), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5692), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4733), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [991] = { + [ts_builtin_sym_end] = ACTIONS(4401), + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token2] = ACTIONS(4399), + [aux_sym_module_statement_token1] = ACTIONS(4399), + [aux_sym_submodule_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_subroutine_statement_token1] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_function_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4399), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4399), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4399), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [980] = { - [ts_builtin_sym_end] = ACTIONS(4541), - [aux_sym_preproc_include_token1] = ACTIONS(4539), - [aux_sym_preproc_def_token1] = ACTIONS(4539), - [aux_sym_preproc_if_token1] = ACTIONS(4539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4539), - [sym_preproc_directive] = ACTIONS(4539), - [anon_sym_LPAREN2] = ACTIONS(4539), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4539), - [aux_sym_end_program_statement_token1] = ACTIONS(4539), - [aux_sym_end_program_statement_token2] = ACTIONS(4539), - [aux_sym_module_statement_token1] = ACTIONS(4539), - [aux_sym_submodule_statement_token1] = ACTIONS(4539), - [aux_sym_interface_statement_token1] = ACTIONS(4539), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4539), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4539), - [aux_sym_subroutine_statement_token1] = ACTIONS(4539), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4539), - [aux_sym_function_statement_token1] = ACTIONS(4539), - [aux_sym_language_binding_token1] = ACTIONS(4539), - [aux_sym_procedure_attributes_token1] = ACTIONS(4539), - [aux_sym_procedure_attributes_token3] = ACTIONS(4539), - [aux_sym_contains_statement_token1] = ACTIONS(4539), - [aux_sym_use_statement_token1] = ACTIONS(4539), - [aux_sym_use_statement_token2] = ACTIONS(4539), - [aux_sym_implicit_statement_token1] = ACTIONS(4539), - [aux_sym_implicit_statement_token3] = ACTIONS(4539), - [aux_sym_implicit_statement_token4] = ACTIONS(4539), - [aux_sym_save_statement_token1] = ACTIONS(4539), - [aux_sym_private_statement_token1] = ACTIONS(4539), - [aux_sym_public_statement_token1] = ACTIONS(4539), - [aux_sym_namelist_statement_token1] = ACTIONS(4539), - [aux_sym_common_statement_token1] = ACTIONS(4539), - [aux_sym_import_statement_token1] = ACTIONS(4539), - [aux_sym_derived_type_definition_token1] = ACTIONS(4539), - [aux_sym_abstract_specifier_token1] = ACTIONS(4539), - [aux_sym_procedure_attribute_token6] = ACTIONS(4539), - [aux_sym_variable_attributes_token1] = ACTIONS(4539), - [aux_sym_variable_attributes_token2] = ACTIONS(4539), - [aux_sym_variable_attributes_token3] = ACTIONS(4539), - [aux_sym_variable_attributes_token4] = ACTIONS(4539), - [aux_sym_variable_attributes_token5] = ACTIONS(4539), - [aux_sym__intrinsic_type_token1] = ACTIONS(4539), - [aux_sym__intrinsic_type_token2] = ACTIONS(4539), - [aux_sym__intrinsic_type_token3] = ACTIONS(4539), - [aux_sym__intrinsic_type_token4] = ACTIONS(4539), - [aux_sym__intrinsic_type_token6] = ACTIONS(4539), - [aux_sym__intrinsic_type_token7] = ACTIONS(4539), - [aux_sym__intrinsic_type_token8] = ACTIONS(4539), - [aux_sym__intrinsic_type_token9] = ACTIONS(4539), - [aux_sym__intrinsic_type_token10] = ACTIONS(4539), - [aux_sym_derived_type_token1] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4539), - [aux_sym_type_qualifier_token1] = ACTIONS(4539), - [aux_sym_type_qualifier_token2] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4539), - [aux_sym_equivalence_statement_token1] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [aux_sym_stop_statement_token1] = ACTIONS(4539), - [aux_sym_stop_statement_token2] = ACTIONS(4539), - [aux_sym_subroutine_call_token1] = ACTIONS(4539), - [aux_sym_keyword_statement_token1] = ACTIONS(4539), - [aux_sym_keyword_statement_token2] = ACTIONS(4539), - [aux_sym_keyword_statement_token3] = ACTIONS(4539), - [aux_sym_keyword_statement_token4] = ACTIONS(4539), - [aux_sym_keyword_statement_token6] = ACTIONS(4539), - [aux_sym_keyword_statement_token7] = ACTIONS(4539), - [aux_sym_include_statement_token1] = ACTIONS(4539), - [aux_sym_data_statement_token1] = ACTIONS(4539), - [aux_sym_do_loop_statement_token1] = ACTIONS(4539), - [aux_sym__inline_if_statement_token1] = ACTIONS(4539), - [aux_sym_end_if_statement_token1] = ACTIONS(4539), - [aux_sym_elseif_clause_token2] = ACTIONS(4539), - [aux_sym__inline_where_statement_token1] = ACTIONS(4539), - [aux_sym__forall_control_expression_token1] = ACTIONS(4539), - [aux_sym_select_case_statement_token1] = ACTIONS(4539), - [aux_sym_select_case_statement_token3] = ACTIONS(4539), - [aux_sym_select_type_statement_token1] = ACTIONS(4539), - [aux_sym_select_rank_statement_token2] = ACTIONS(4539), - [aux_sym_block_construct_token1] = ACTIONS(4539), - [aux_sym_associate_statement_token1] = ACTIONS(4539), - [aux_sym_format_statement_token1] = ACTIONS(4539), - [aux_sym_print_statement_token1] = ACTIONS(4539), - [aux_sym_open_statement_token1] = ACTIONS(4539), - [aux_sym_close_statement_token1] = ACTIONS(4539), - [aux_sym_inquire_statement_token1] = ACTIONS(4539), - [aux_sym_enum_statement_token1] = ACTIONS(4539), - [aux_sym_file_position_statement_token1] = ACTIONS(4539), - [aux_sym_file_position_statement_token2] = ACTIONS(4539), - [aux_sym_file_position_statement_token3] = ACTIONS(4539), - [aux_sym_file_position_statement_token4] = ACTIONS(4539), - [aux_sym_allocate_statement_token1] = ACTIONS(4539), - [aux_sym_entry_statement_token1] = ACTIONS(4539), - [aux_sym_logical_expression_token5] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_LPAREN_SLASH] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [aux_sym_boolean_literal_token1] = ACTIONS(4541), - [aux_sym_boolean_literal_token2] = ACTIONS(4541), - [aux_sym_null_literal_token1] = ACTIONS(4539), - [aux_sym_coarray_statement_token1] = ACTIONS(4539), - [aux_sym_coarray_statement_token2] = ACTIONS(4539), - [aux_sym_coarray_statement_token6] = ACTIONS(4539), - [aux_sym_coarray_statement_token8] = ACTIONS(4539), - [aux_sym_coarray_statement_token11] = ACTIONS(4539), - [aux_sym_coarray_statement_token12] = ACTIONS(4539), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4539), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4539), - [aux_sym_identifier_token1] = ACTIONS(4539), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4541), - [sym__float_literal] = ACTIONS(4541), - [sym__boz_literal] = ACTIONS(4541), - [sym__string_literal] = ACTIONS(4541), - [sym__string_literal_kind] = ACTIONS(4541), - }, - [981] = { - [ts_builtin_sym_end] = ACTIONS(4545), - [aux_sym_preproc_include_token1] = ACTIONS(4543), - [aux_sym_preproc_def_token1] = ACTIONS(4543), - [aux_sym_preproc_if_token1] = ACTIONS(4543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4543), - [sym_preproc_directive] = ACTIONS(4543), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4543), - [aux_sym_end_program_statement_token1] = ACTIONS(4543), - [aux_sym_end_program_statement_token2] = ACTIONS(4543), - [aux_sym_module_statement_token1] = ACTIONS(4543), - [aux_sym_submodule_statement_token1] = ACTIONS(4543), - [aux_sym_interface_statement_token1] = ACTIONS(4543), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4543), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4543), - [aux_sym_subroutine_statement_token1] = ACTIONS(4543), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4543), - [aux_sym_function_statement_token1] = ACTIONS(4543), - [aux_sym_language_binding_token1] = ACTIONS(4543), - [aux_sym_procedure_attributes_token1] = ACTIONS(4543), - [aux_sym_procedure_attributes_token3] = ACTIONS(4543), - [aux_sym_contains_statement_token1] = ACTIONS(4543), - [aux_sym_use_statement_token1] = ACTIONS(4543), - [aux_sym_use_statement_token2] = ACTIONS(4543), - [aux_sym_implicit_statement_token1] = ACTIONS(4543), - [aux_sym_implicit_statement_token3] = ACTIONS(4543), - [aux_sym_implicit_statement_token4] = ACTIONS(4543), - [aux_sym_save_statement_token1] = ACTIONS(4543), - [aux_sym_private_statement_token1] = ACTIONS(4543), - [aux_sym_public_statement_token1] = ACTIONS(4543), - [aux_sym_namelist_statement_token1] = ACTIONS(4543), - [aux_sym_common_statement_token1] = ACTIONS(4543), - [aux_sym_import_statement_token1] = ACTIONS(4543), - [aux_sym_derived_type_definition_token1] = ACTIONS(4543), - [aux_sym_abstract_specifier_token1] = ACTIONS(4543), - [aux_sym_procedure_attribute_token6] = ACTIONS(4543), - [aux_sym_variable_attributes_token1] = ACTIONS(4543), - [aux_sym_variable_attributes_token2] = ACTIONS(4543), - [aux_sym_variable_attributes_token3] = ACTIONS(4543), - [aux_sym_variable_attributes_token4] = ACTIONS(4543), - [aux_sym_variable_attributes_token5] = ACTIONS(4543), - [aux_sym__intrinsic_type_token1] = ACTIONS(4543), - [aux_sym__intrinsic_type_token2] = ACTIONS(4543), - [aux_sym__intrinsic_type_token3] = ACTIONS(4543), - [aux_sym__intrinsic_type_token4] = ACTIONS(4543), - [aux_sym__intrinsic_type_token6] = ACTIONS(4543), - [aux_sym__intrinsic_type_token7] = ACTIONS(4543), - [aux_sym__intrinsic_type_token8] = ACTIONS(4543), - [aux_sym__intrinsic_type_token9] = ACTIONS(4543), - [aux_sym__intrinsic_type_token10] = ACTIONS(4543), - [aux_sym_derived_type_token1] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4543), - [aux_sym_type_qualifier_token1] = ACTIONS(4543), - [aux_sym_type_qualifier_token2] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4543), - [aux_sym_equivalence_statement_token1] = ACTIONS(4543), - [anon_sym_SEMI] = ACTIONS(4545), - [aux_sym_stop_statement_token1] = ACTIONS(4543), - [aux_sym_stop_statement_token2] = ACTIONS(4543), - [aux_sym_subroutine_call_token1] = ACTIONS(4543), - [aux_sym_keyword_statement_token1] = ACTIONS(4543), - [aux_sym_keyword_statement_token2] = ACTIONS(4543), - [aux_sym_keyword_statement_token3] = ACTIONS(4543), - [aux_sym_keyword_statement_token4] = ACTIONS(4543), - [aux_sym_keyword_statement_token6] = ACTIONS(4543), - [aux_sym_keyword_statement_token7] = ACTIONS(4543), - [aux_sym_include_statement_token1] = ACTIONS(4543), - [aux_sym_data_statement_token1] = ACTIONS(4543), - [aux_sym_do_loop_statement_token1] = ACTIONS(4543), - [aux_sym__inline_if_statement_token1] = ACTIONS(4543), - [aux_sym_end_if_statement_token1] = ACTIONS(4543), - [aux_sym_elseif_clause_token2] = ACTIONS(4543), - [aux_sym__inline_where_statement_token1] = ACTIONS(4543), - [aux_sym__forall_control_expression_token1] = ACTIONS(4543), - [aux_sym_select_case_statement_token1] = ACTIONS(4543), - [aux_sym_select_case_statement_token3] = ACTIONS(4543), - [aux_sym_select_type_statement_token1] = ACTIONS(4543), - [aux_sym_select_rank_statement_token2] = ACTIONS(4543), - [aux_sym_block_construct_token1] = ACTIONS(4543), - [aux_sym_associate_statement_token1] = ACTIONS(4543), - [aux_sym_format_statement_token1] = ACTIONS(4543), - [aux_sym_print_statement_token1] = ACTIONS(4543), - [aux_sym_open_statement_token1] = ACTIONS(4543), - [aux_sym_close_statement_token1] = ACTIONS(4543), - [aux_sym_inquire_statement_token1] = ACTIONS(4543), - [aux_sym_enum_statement_token1] = ACTIONS(4543), - [aux_sym_file_position_statement_token1] = ACTIONS(4543), - [aux_sym_file_position_statement_token2] = ACTIONS(4543), - [aux_sym_file_position_statement_token3] = ACTIONS(4543), - [aux_sym_file_position_statement_token4] = ACTIONS(4543), - [aux_sym_allocate_statement_token1] = ACTIONS(4543), - [aux_sym_entry_statement_token1] = ACTIONS(4543), - [aux_sym_logical_expression_token5] = ACTIONS(4545), - [anon_sym_DOT] = ACTIONS(4543), - [anon_sym_LPAREN_SLASH] = ACTIONS(4545), - [anon_sym_LBRACK] = ACTIONS(4545), - [aux_sym_boolean_literal_token1] = ACTIONS(4545), - [aux_sym_boolean_literal_token2] = ACTIONS(4545), - [aux_sym_null_literal_token1] = ACTIONS(4543), - [aux_sym_coarray_statement_token1] = ACTIONS(4543), - [aux_sym_coarray_statement_token2] = ACTIONS(4543), - [aux_sym_coarray_statement_token6] = ACTIONS(4543), - [aux_sym_coarray_statement_token8] = ACTIONS(4543), - [aux_sym_coarray_statement_token11] = ACTIONS(4543), - [aux_sym_coarray_statement_token12] = ACTIONS(4543), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4543), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4543), - [aux_sym_identifier_token1] = ACTIONS(4543), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4545), - [sym__float_literal] = ACTIONS(4545), - [sym__boz_literal] = ACTIONS(4545), - [sym__string_literal] = ACTIONS(4545), - [sym__string_literal_kind] = ACTIONS(4545), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [982] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(8218), - [sym_preproc_elif_in_module] = STATE(8218), - [sym_preproc_elifdef_in_module] = STATE(8218), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5732), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4735), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [992] = { + [ts_builtin_sym_end] = ACTIONS(4493), + [aux_sym_preproc_include_token1] = ACTIONS(4491), + [aux_sym_preproc_def_token1] = ACTIONS(4491), + [aux_sym_preproc_if_token1] = ACTIONS(4491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4491), + [sym_preproc_directive] = ACTIONS(4491), + [anon_sym_LPAREN2] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4491), + [aux_sym_end_program_statement_token1] = ACTIONS(4491), + [aux_sym_end_program_statement_token2] = ACTIONS(4491), + [aux_sym_module_statement_token1] = ACTIONS(4491), + [aux_sym_submodule_statement_token1] = ACTIONS(4491), + [aux_sym_interface_statement_token1] = ACTIONS(4491), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4491), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4491), + [aux_sym_subroutine_statement_token1] = ACTIONS(4491), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4491), + [aux_sym_function_statement_token1] = ACTIONS(4491), + [aux_sym_language_binding_token1] = ACTIONS(4491), + [aux_sym_procedure_attributes_token1] = ACTIONS(4491), + [aux_sym_procedure_attributes_token3] = ACTIONS(4491), + [aux_sym_contains_statement_token1] = ACTIONS(4491), + [aux_sym_use_statement_token1] = ACTIONS(4491), + [aux_sym_use_statement_token2] = ACTIONS(4491), + [aux_sym_implicit_statement_token1] = ACTIONS(4491), + [aux_sym_implicit_statement_token3] = ACTIONS(4491), + [aux_sym_implicit_statement_token4] = ACTIONS(4491), + [aux_sym_save_statement_token1] = ACTIONS(4491), + [aux_sym_private_statement_token1] = ACTIONS(4491), + [aux_sym_public_statement_token1] = ACTIONS(4491), + [aux_sym_namelist_statement_token1] = ACTIONS(4491), + [aux_sym_common_statement_token1] = ACTIONS(4491), + [aux_sym_import_statement_token1] = ACTIONS(4491), + [aux_sym_derived_type_definition_token1] = ACTIONS(4491), + [aux_sym_abstract_specifier_token1] = ACTIONS(4491), + [aux_sym_procedure_attribute_token6] = ACTIONS(4491), + [aux_sym_variable_attributes_token1] = ACTIONS(4491), + [aux_sym_variable_attributes_token2] = ACTIONS(4491), + [aux_sym_variable_attributes_token3] = ACTIONS(4491), + [aux_sym_variable_attributes_token4] = ACTIONS(4491), + [aux_sym_variable_attributes_token5] = ACTIONS(4491), + [aux_sym__intrinsic_type_token1] = ACTIONS(4491), + [aux_sym__intrinsic_type_token2] = ACTIONS(4491), + [aux_sym__intrinsic_type_token3] = ACTIONS(4491), + [aux_sym__intrinsic_type_token4] = ACTIONS(4491), + [aux_sym__intrinsic_type_token6] = ACTIONS(4491), + [aux_sym__intrinsic_type_token7] = ACTIONS(4491), + [aux_sym__intrinsic_type_token8] = ACTIONS(4491), + [aux_sym__intrinsic_type_token9] = ACTIONS(4491), + [aux_sym__intrinsic_type_token10] = ACTIONS(4491), + [aux_sym_derived_type_token1] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4491), + [aux_sym_type_qualifier_token1] = ACTIONS(4491), + [aux_sym_type_qualifier_token2] = ACTIONS(4491), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4491), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4491), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4491), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4491), + [aux_sym_equivalence_statement_token1] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [aux_sym_stop_statement_token1] = ACTIONS(4491), + [aux_sym_stop_statement_token2] = ACTIONS(4491), + [aux_sym_subroutine_call_token1] = ACTIONS(4491), + [aux_sym_keyword_statement_token1] = ACTIONS(4491), + [aux_sym_keyword_statement_token2] = ACTIONS(4491), + [aux_sym_keyword_statement_token3] = ACTIONS(4491), + [aux_sym_keyword_statement_token4] = ACTIONS(4491), + [aux_sym_keyword_statement_token6] = ACTIONS(4491), + [aux_sym_keyword_statement_token7] = ACTIONS(4491), + [aux_sym_include_statement_token1] = ACTIONS(4491), + [aux_sym_data_statement_token1] = ACTIONS(4491), + [aux_sym_do_loop_statement_token1] = ACTIONS(4491), + [aux_sym__inline_if_statement_token1] = ACTIONS(4491), + [aux_sym_end_if_statement_token1] = ACTIONS(4491), + [aux_sym_elseif_clause_token2] = ACTIONS(4491), + [aux_sym__inline_where_statement_token1] = ACTIONS(4491), + [aux_sym__forall_control_expression_token1] = ACTIONS(4491), + [aux_sym_select_case_statement_token1] = ACTIONS(4491), + [aux_sym_select_case_statement_token3] = ACTIONS(4491), + [aux_sym_select_type_statement_token1] = ACTIONS(4491), + [aux_sym_select_rank_statement_token2] = ACTIONS(4491), + [aux_sym_block_construct_token1] = ACTIONS(4491), + [aux_sym_associate_statement_token1] = ACTIONS(4491), + [aux_sym_format_statement_token1] = ACTIONS(4491), + [aux_sym_print_statement_token1] = ACTIONS(4491), + [aux_sym_open_statement_token1] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4491), + [aux_sym_inquire_statement_token1] = ACTIONS(4491), + [aux_sym_enum_statement_token1] = ACTIONS(4491), + [aux_sym_file_position_statement_token1] = ACTIONS(4491), + [aux_sym_file_position_statement_token2] = ACTIONS(4491), + [aux_sym_file_position_statement_token3] = ACTIONS(4491), + [aux_sym_file_position_statement_token4] = ACTIONS(4491), + [aux_sym_allocate_statement_token1] = ACTIONS(4491), + [aux_sym_entry_statement_token1] = ACTIONS(4491), + [aux_sym_logical_expression_token5] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_LPAREN_SLASH] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [aux_sym_boolean_literal_token1] = ACTIONS(4493), + [aux_sym_boolean_literal_token2] = ACTIONS(4493), + [aux_sym_null_literal_token1] = ACTIONS(4491), + [aux_sym_coarray_statement_token1] = ACTIONS(4491), + [aux_sym_coarray_statement_token2] = ACTIONS(4491), + [aux_sym_coarray_statement_token6] = ACTIONS(4491), + [aux_sym_coarray_statement_token8] = ACTIONS(4491), + [aux_sym_coarray_statement_token11] = ACTIONS(4491), + [aux_sym_coarray_statement_token12] = ACTIONS(4491), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4491), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4491), + [aux_sym_identifier_token1] = ACTIONS(4491), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4493), + [sym__float_literal] = ACTIONS(4493), + [sym__boz_literal] = ACTIONS(4493), + [sym__string_literal] = ACTIONS(4493), + [sym__string_literal_kind] = ACTIONS(4493), }, - [983] = { - [sym_preproc_include] = STATE(987), - [sym_preproc_def] = STATE(987), - [sym_preproc_function_def] = STATE(987), - [sym_preproc_call] = STATE(987), - [sym_preproc_else_in_module] = STATE(8218), - [sym_preproc_elif_in_module] = STATE(8218), - [sym_preproc_elifdef_in_module] = STATE(8218), - [sym_interface] = STATE(987), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5732), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(987), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(987), - [sym_public_statement] = STATE(987), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(987), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(987), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(987), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4735), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [993] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, - [984] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(7659), - [sym_preproc_elif_in_module] = STATE(7659), - [sym_preproc_elifdef_in_module] = STATE(7659), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5736), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4737), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [994] = { + [aux_sym_preproc_include_token1] = ACTIONS(4575), + [aux_sym_preproc_def_token1] = ACTIONS(4575), + [aux_sym_preproc_if_token1] = ACTIONS(4575), + [aux_sym_preproc_if_token2] = ACTIONS(4575), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), + [sym_preproc_directive] = ACTIONS(4575), + [anon_sym_LPAREN2] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token2] = ACTIONS(4575), + [aux_sym_module_statement_token1] = ACTIONS(4575), + [aux_sym_submodule_statement_token1] = ACTIONS(4575), + [aux_sym_interface_statement_token1] = ACTIONS(4575), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), + [aux_sym_subroutine_statement_token1] = ACTIONS(4575), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), + [aux_sym_function_statement_token1] = ACTIONS(4575), + [aux_sym_language_binding_token1] = ACTIONS(4575), + [aux_sym_procedure_attributes_token1] = ACTIONS(4575), + [aux_sym_procedure_attributes_token3] = ACTIONS(4575), + [aux_sym_contains_statement_token1] = ACTIONS(4575), + [aux_sym_use_statement_token1] = ACTIONS(4575), + [aux_sym_use_statement_token2] = ACTIONS(4575), + [aux_sym_implicit_statement_token1] = ACTIONS(4575), + [aux_sym_implicit_statement_token3] = ACTIONS(4575), + [aux_sym_implicit_statement_token4] = ACTIONS(4575), + [aux_sym_save_statement_token1] = ACTIONS(4575), + [aux_sym_private_statement_token1] = ACTIONS(4575), + [aux_sym_public_statement_token1] = ACTIONS(4575), + [aux_sym_namelist_statement_token1] = ACTIONS(4575), + [aux_sym_common_statement_token1] = ACTIONS(4575), + [aux_sym_import_statement_token1] = ACTIONS(4575), + [aux_sym_derived_type_definition_token1] = ACTIONS(4575), + [aux_sym_abstract_specifier_token1] = ACTIONS(4575), + [aux_sym_procedure_attribute_token6] = ACTIONS(4575), + [aux_sym_variable_attributes_token1] = ACTIONS(4575), + [aux_sym_variable_attributes_token2] = ACTIONS(4575), + [aux_sym_variable_attributes_token3] = ACTIONS(4575), + [aux_sym_variable_attributes_token4] = ACTIONS(4575), + [aux_sym_variable_attributes_token5] = ACTIONS(4575), + [aux_sym__intrinsic_type_token1] = ACTIONS(4575), + [aux_sym__intrinsic_type_token2] = ACTIONS(4575), + [aux_sym__intrinsic_type_token3] = ACTIONS(4575), + [aux_sym__intrinsic_type_token4] = ACTIONS(4575), + [aux_sym__intrinsic_type_token6] = ACTIONS(4575), + [aux_sym__intrinsic_type_token7] = ACTIONS(4575), + [aux_sym__intrinsic_type_token8] = ACTIONS(4575), + [aux_sym__intrinsic_type_token9] = ACTIONS(4575), + [aux_sym__intrinsic_type_token10] = ACTIONS(4575), + [aux_sym_derived_type_token1] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), + [aux_sym_type_qualifier_token1] = ACTIONS(4575), + [aux_sym_type_qualifier_token2] = ACTIONS(4575), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4575), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4575), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4575), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4575), + [aux_sym_equivalence_statement_token1] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4577), + [aux_sym_stop_statement_token1] = ACTIONS(4575), + [aux_sym_stop_statement_token2] = ACTIONS(4575), + [aux_sym_subroutine_call_token1] = ACTIONS(4575), + [aux_sym_keyword_statement_token1] = ACTIONS(4575), + [aux_sym_keyword_statement_token2] = ACTIONS(4575), + [aux_sym_keyword_statement_token3] = ACTIONS(4575), + [aux_sym_keyword_statement_token4] = ACTIONS(4575), + [aux_sym_keyword_statement_token6] = ACTIONS(4575), + [aux_sym_keyword_statement_token7] = ACTIONS(4575), + [aux_sym_include_statement_token1] = ACTIONS(4575), + [aux_sym_data_statement_token1] = ACTIONS(4575), + [aux_sym_do_loop_statement_token1] = ACTIONS(4575), + [aux_sym__inline_if_statement_token1] = ACTIONS(4575), + [aux_sym_end_if_statement_token1] = ACTIONS(4575), + [aux_sym_elseif_clause_token2] = ACTIONS(4575), + [aux_sym__inline_where_statement_token1] = ACTIONS(4575), + [aux_sym__forall_control_expression_token1] = ACTIONS(4575), + [aux_sym_select_case_statement_token1] = ACTIONS(4575), + [aux_sym_select_case_statement_token3] = ACTIONS(4575), + [aux_sym_select_type_statement_token1] = ACTIONS(4575), + [aux_sym_select_rank_statement_token2] = ACTIONS(4575), + [aux_sym_block_construct_token1] = ACTIONS(4575), + [aux_sym_associate_statement_token1] = ACTIONS(4575), + [aux_sym_format_statement_token1] = ACTIONS(4575), + [aux_sym_print_statement_token1] = ACTIONS(4575), + [aux_sym_open_statement_token1] = ACTIONS(4575), + [aux_sym_close_statement_token1] = ACTIONS(4575), + [aux_sym_inquire_statement_token1] = ACTIONS(4575), + [aux_sym_enum_statement_token1] = ACTIONS(4575), + [aux_sym_file_position_statement_token1] = ACTIONS(4575), + [aux_sym_file_position_statement_token2] = ACTIONS(4575), + [aux_sym_file_position_statement_token3] = ACTIONS(4575), + [aux_sym_file_position_statement_token4] = ACTIONS(4575), + [aux_sym_allocate_statement_token1] = ACTIONS(4575), + [aux_sym_entry_statement_token1] = ACTIONS(4575), + [aux_sym_logical_expression_token5] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4575), + [anon_sym_LPAREN_SLASH] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4577), + [aux_sym_boolean_literal_token1] = ACTIONS(4577), + [aux_sym_boolean_literal_token2] = ACTIONS(4577), + [aux_sym_null_literal_token1] = ACTIONS(4575), + [aux_sym_coarray_statement_token1] = ACTIONS(4575), + [aux_sym_coarray_statement_token2] = ACTIONS(4575), + [aux_sym_coarray_statement_token6] = ACTIONS(4575), + [aux_sym_coarray_statement_token8] = ACTIONS(4575), + [aux_sym_coarray_statement_token11] = ACTIONS(4575), + [aux_sym_coarray_statement_token12] = ACTIONS(4575), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), + [aux_sym_identifier_token1] = ACTIONS(4575), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4577), + [sym__float_literal] = ACTIONS(4577), + [sym__boz_literal] = ACTIONS(4577), + [sym__string_literal] = ACTIONS(4577), + [sym__string_literal_kind] = ACTIONS(4577), }, - [985] = { - [ts_builtin_sym_end] = ACTIONS(4601), - [aux_sym_preproc_include_token1] = ACTIONS(4599), - [aux_sym_preproc_def_token1] = ACTIONS(4599), - [aux_sym_preproc_if_token1] = ACTIONS(4599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4599), - [sym_preproc_directive] = ACTIONS(4599), - [anon_sym_LPAREN2] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4601), - [anon_sym_DASH] = ACTIONS(4601), + [995] = { + [aux_sym_preproc_include_token1] = ACTIONS(4579), + [aux_sym_preproc_def_token1] = ACTIONS(4579), + [aux_sym_preproc_if_token1] = ACTIONS(4579), + [aux_sym_preproc_if_token2] = ACTIONS(4579), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), + [sym_preproc_directive] = ACTIONS(4579), + [anon_sym_LPAREN2] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4599), - [aux_sym_end_program_statement_token1] = ACTIONS(4599), - [aux_sym_end_program_statement_token2] = ACTIONS(4599), - [aux_sym_module_statement_token1] = ACTIONS(4599), - [aux_sym_submodule_statement_token1] = ACTIONS(4599), - [aux_sym_interface_statement_token1] = ACTIONS(4599), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4599), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4599), - [aux_sym_subroutine_statement_token1] = ACTIONS(4599), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4599), - [aux_sym_function_statement_token1] = ACTIONS(4599), - [aux_sym_language_binding_token1] = ACTIONS(4599), - [aux_sym_procedure_attributes_token1] = ACTIONS(4599), - [aux_sym_procedure_attributes_token3] = ACTIONS(4599), - [aux_sym_contains_statement_token1] = ACTIONS(4599), - [aux_sym_use_statement_token1] = ACTIONS(4599), - [aux_sym_use_statement_token2] = ACTIONS(4599), - [aux_sym_implicit_statement_token1] = ACTIONS(4599), - [aux_sym_implicit_statement_token3] = ACTIONS(4599), - [aux_sym_implicit_statement_token4] = ACTIONS(4599), - [aux_sym_save_statement_token1] = ACTIONS(4599), - [aux_sym_private_statement_token1] = ACTIONS(4599), - [aux_sym_public_statement_token1] = ACTIONS(4599), - [aux_sym_namelist_statement_token1] = ACTIONS(4599), - [aux_sym_common_statement_token1] = ACTIONS(4599), - [aux_sym_import_statement_token1] = ACTIONS(4599), - [aux_sym_derived_type_definition_token1] = ACTIONS(4599), - [aux_sym_abstract_specifier_token1] = ACTIONS(4599), - [aux_sym_procedure_attribute_token6] = ACTIONS(4599), - [aux_sym_variable_attributes_token1] = ACTIONS(4599), - [aux_sym_variable_attributes_token2] = ACTIONS(4599), - [aux_sym_variable_attributes_token3] = ACTIONS(4599), - [aux_sym_variable_attributes_token4] = ACTIONS(4599), - [aux_sym_variable_attributes_token5] = ACTIONS(4599), - [aux_sym__intrinsic_type_token1] = ACTIONS(4599), - [aux_sym__intrinsic_type_token2] = ACTIONS(4599), - [aux_sym__intrinsic_type_token3] = ACTIONS(4599), - [aux_sym__intrinsic_type_token4] = ACTIONS(4599), - [aux_sym__intrinsic_type_token6] = ACTIONS(4599), - [aux_sym__intrinsic_type_token7] = ACTIONS(4599), - [aux_sym__intrinsic_type_token8] = ACTIONS(4599), - [aux_sym__intrinsic_type_token9] = ACTIONS(4599), - [aux_sym__intrinsic_type_token10] = ACTIONS(4599), - [aux_sym_derived_type_token1] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4599), - [aux_sym_type_qualifier_token1] = ACTIONS(4599), - [aux_sym_type_qualifier_token2] = ACTIONS(4599), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4599), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4599), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4599), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4599), - [aux_sym_equivalence_statement_token1] = ACTIONS(4599), - [anon_sym_SEMI] = ACTIONS(4601), - [aux_sym_stop_statement_token1] = ACTIONS(4599), - [aux_sym_stop_statement_token2] = ACTIONS(4599), - [aux_sym_subroutine_call_token1] = ACTIONS(4599), - [aux_sym_keyword_statement_token1] = ACTIONS(4599), - [aux_sym_keyword_statement_token2] = ACTIONS(4599), - [aux_sym_keyword_statement_token3] = ACTIONS(4599), - [aux_sym_keyword_statement_token4] = ACTIONS(4599), - [aux_sym_keyword_statement_token6] = ACTIONS(4599), - [aux_sym_keyword_statement_token7] = ACTIONS(4599), - [aux_sym_include_statement_token1] = ACTIONS(4599), - [aux_sym_data_statement_token1] = ACTIONS(4599), - [aux_sym_do_loop_statement_token1] = ACTIONS(4599), - [aux_sym__inline_if_statement_token1] = ACTIONS(4599), - [aux_sym_end_if_statement_token1] = ACTIONS(4599), - [aux_sym_elseif_clause_token2] = ACTIONS(4599), - [aux_sym__inline_where_statement_token1] = ACTIONS(4599), - [aux_sym__forall_control_expression_token1] = ACTIONS(4599), - [aux_sym_select_case_statement_token1] = ACTIONS(4599), - [aux_sym_select_case_statement_token3] = ACTIONS(4599), - [aux_sym_select_type_statement_token1] = ACTIONS(4599), - [aux_sym_select_rank_statement_token2] = ACTIONS(4599), - [aux_sym_block_construct_token1] = ACTIONS(4599), - [aux_sym_associate_statement_token1] = ACTIONS(4599), - [aux_sym_format_statement_token1] = ACTIONS(4599), - [aux_sym_print_statement_token1] = ACTIONS(4599), - [aux_sym_open_statement_token1] = ACTIONS(4599), - [aux_sym_close_statement_token1] = ACTIONS(4599), - [aux_sym_inquire_statement_token1] = ACTIONS(4599), - [aux_sym_enum_statement_token1] = ACTIONS(4599), - [aux_sym_file_position_statement_token1] = ACTIONS(4599), - [aux_sym_file_position_statement_token2] = ACTIONS(4599), - [aux_sym_file_position_statement_token3] = ACTIONS(4599), - [aux_sym_file_position_statement_token4] = ACTIONS(4599), - [aux_sym_allocate_statement_token1] = ACTIONS(4599), - [aux_sym_entry_statement_token1] = ACTIONS(4599), - [aux_sym_logical_expression_token5] = ACTIONS(4601), - [anon_sym_DOT] = ACTIONS(4599), - [anon_sym_LPAREN_SLASH] = ACTIONS(4601), - [anon_sym_LBRACK] = ACTIONS(4601), - [aux_sym_boolean_literal_token1] = ACTIONS(4601), - [aux_sym_boolean_literal_token2] = ACTIONS(4601), - [aux_sym_null_literal_token1] = ACTIONS(4599), - [aux_sym_coarray_statement_token1] = ACTIONS(4599), - [aux_sym_coarray_statement_token2] = ACTIONS(4599), - [aux_sym_coarray_statement_token6] = ACTIONS(4599), - [aux_sym_coarray_statement_token8] = ACTIONS(4599), - [aux_sym_coarray_statement_token11] = ACTIONS(4599), - [aux_sym_coarray_statement_token12] = ACTIONS(4599), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4599), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4599), - [aux_sym_identifier_token1] = ACTIONS(4599), + [aux_sym_program_statement_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token2] = ACTIONS(4579), + [aux_sym_module_statement_token1] = ACTIONS(4579), + [aux_sym_submodule_statement_token1] = ACTIONS(4579), + [aux_sym_interface_statement_token1] = ACTIONS(4579), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), + [aux_sym_subroutine_statement_token1] = ACTIONS(4579), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), + [aux_sym_function_statement_token1] = ACTIONS(4579), + [aux_sym_language_binding_token1] = ACTIONS(4579), + [aux_sym_procedure_attributes_token1] = ACTIONS(4579), + [aux_sym_procedure_attributes_token3] = ACTIONS(4579), + [aux_sym_contains_statement_token1] = ACTIONS(4579), + [aux_sym_use_statement_token1] = ACTIONS(4579), + [aux_sym_use_statement_token2] = ACTIONS(4579), + [aux_sym_implicit_statement_token1] = ACTIONS(4579), + [aux_sym_implicit_statement_token3] = ACTIONS(4579), + [aux_sym_implicit_statement_token4] = ACTIONS(4579), + [aux_sym_save_statement_token1] = ACTIONS(4579), + [aux_sym_private_statement_token1] = ACTIONS(4579), + [aux_sym_public_statement_token1] = ACTIONS(4579), + [aux_sym_namelist_statement_token1] = ACTIONS(4579), + [aux_sym_common_statement_token1] = ACTIONS(4579), + [aux_sym_import_statement_token1] = ACTIONS(4579), + [aux_sym_derived_type_definition_token1] = ACTIONS(4579), + [aux_sym_abstract_specifier_token1] = ACTIONS(4579), + [aux_sym_procedure_attribute_token6] = ACTIONS(4579), + [aux_sym_variable_attributes_token1] = ACTIONS(4579), + [aux_sym_variable_attributes_token2] = ACTIONS(4579), + [aux_sym_variable_attributes_token3] = ACTIONS(4579), + [aux_sym_variable_attributes_token4] = ACTIONS(4579), + [aux_sym_variable_attributes_token5] = ACTIONS(4579), + [aux_sym__intrinsic_type_token1] = ACTIONS(4579), + [aux_sym__intrinsic_type_token2] = ACTIONS(4579), + [aux_sym__intrinsic_type_token3] = ACTIONS(4579), + [aux_sym__intrinsic_type_token4] = ACTIONS(4579), + [aux_sym__intrinsic_type_token6] = ACTIONS(4579), + [aux_sym__intrinsic_type_token7] = ACTIONS(4579), + [aux_sym__intrinsic_type_token8] = ACTIONS(4579), + [aux_sym__intrinsic_type_token9] = ACTIONS(4579), + [aux_sym__intrinsic_type_token10] = ACTIONS(4579), + [aux_sym_derived_type_token1] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), + [aux_sym_type_qualifier_token1] = ACTIONS(4579), + [aux_sym_type_qualifier_token2] = ACTIONS(4579), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4579), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4579), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4579), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4579), + [aux_sym_equivalence_statement_token1] = ACTIONS(4579), + [anon_sym_SEMI] = ACTIONS(4581), + [aux_sym_stop_statement_token1] = ACTIONS(4579), + [aux_sym_stop_statement_token2] = ACTIONS(4579), + [aux_sym_subroutine_call_token1] = ACTIONS(4579), + [aux_sym_keyword_statement_token1] = ACTIONS(4579), + [aux_sym_keyword_statement_token2] = ACTIONS(4579), + [aux_sym_keyword_statement_token3] = ACTIONS(4579), + [aux_sym_keyword_statement_token4] = ACTIONS(4579), + [aux_sym_keyword_statement_token6] = ACTIONS(4579), + [aux_sym_keyword_statement_token7] = ACTIONS(4579), + [aux_sym_include_statement_token1] = ACTIONS(4579), + [aux_sym_data_statement_token1] = ACTIONS(4579), + [aux_sym_do_loop_statement_token1] = ACTIONS(4579), + [aux_sym__inline_if_statement_token1] = ACTIONS(4579), + [aux_sym_end_if_statement_token1] = ACTIONS(4579), + [aux_sym_elseif_clause_token2] = ACTIONS(4579), + [aux_sym__inline_where_statement_token1] = ACTIONS(4579), + [aux_sym__forall_control_expression_token1] = ACTIONS(4579), + [aux_sym_select_case_statement_token1] = ACTIONS(4579), + [aux_sym_select_case_statement_token3] = ACTIONS(4579), + [aux_sym_select_type_statement_token1] = ACTIONS(4579), + [aux_sym_select_rank_statement_token2] = ACTIONS(4579), + [aux_sym_block_construct_token1] = ACTIONS(4579), + [aux_sym_associate_statement_token1] = ACTIONS(4579), + [aux_sym_format_statement_token1] = ACTIONS(4579), + [aux_sym_print_statement_token1] = ACTIONS(4579), + [aux_sym_open_statement_token1] = ACTIONS(4579), + [aux_sym_close_statement_token1] = ACTIONS(4579), + [aux_sym_inquire_statement_token1] = ACTIONS(4579), + [aux_sym_enum_statement_token1] = ACTIONS(4579), + [aux_sym_file_position_statement_token1] = ACTIONS(4579), + [aux_sym_file_position_statement_token2] = ACTIONS(4579), + [aux_sym_file_position_statement_token3] = ACTIONS(4579), + [aux_sym_file_position_statement_token4] = ACTIONS(4579), + [aux_sym_allocate_statement_token1] = ACTIONS(4579), + [aux_sym_entry_statement_token1] = ACTIONS(4579), + [aux_sym_logical_expression_token5] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4579), + [anon_sym_LPAREN_SLASH] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(4581), + [aux_sym_boolean_literal_token1] = ACTIONS(4581), + [aux_sym_boolean_literal_token2] = ACTIONS(4581), + [aux_sym_null_literal_token1] = ACTIONS(4579), + [aux_sym_coarray_statement_token1] = ACTIONS(4579), + [aux_sym_coarray_statement_token2] = ACTIONS(4579), + [aux_sym_coarray_statement_token6] = ACTIONS(4579), + [aux_sym_coarray_statement_token8] = ACTIONS(4579), + [aux_sym_coarray_statement_token11] = ACTIONS(4579), + [aux_sym_coarray_statement_token12] = ACTIONS(4579), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), + [aux_sym_identifier_token1] = ACTIONS(4579), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4601), - [sym__float_literal] = ACTIONS(4601), - [sym__boz_literal] = ACTIONS(4601), - [sym__string_literal] = ACTIONS(4601), - [sym__string_literal_kind] = ACTIONS(4601), + [sym__integer_literal] = ACTIONS(4581), + [sym__float_literal] = ACTIONS(4581), + [sym__boz_literal] = ACTIONS(4581), + [sym__string_literal] = ACTIONS(4581), + [sym__string_literal_kind] = ACTIONS(4581), }, - [986] = { + [996] = { [ts_builtin_sym_end] = ACTIONS(674), [aux_sym_preproc_include_token1] = ACTIONS(368), [aux_sym_preproc_def_token1] = ACTIONS(368), @@ -223564,1273 +224914,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(674), [sym__string_literal_kind] = ACTIONS(674), }, - [987] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(7501), - [sym_preproc_elif_in_module] = STATE(7501), - [sym_preproc_elifdef_in_module] = STATE(7501), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5755), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4739), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(4561), - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token2] = ACTIONS(4559), - [aux_sym_module_statement_token1] = ACTIONS(4559), - [aux_sym_submodule_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_subroutine_statement_token1] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_function_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4559), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), - }, - [989] = { - [ts_builtin_sym_end] = ACTIONS(4589), - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_program_statement_token2] = ACTIONS(4587), - [aux_sym_module_statement_token1] = ACTIONS(4587), - [aux_sym_submodule_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_subroutine_statement_token1] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_function_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4587), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4587), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4587), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [990] = { - [ts_builtin_sym_end] = ACTIONS(4291), - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), - }, - [991] = { - [ts_builtin_sym_end] = ACTIONS(4441), - [aux_sym_preproc_include_token1] = ACTIONS(4439), - [aux_sym_preproc_def_token1] = ACTIONS(4439), - [aux_sym_preproc_if_token1] = ACTIONS(4439), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4439), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4439), - [sym_preproc_directive] = ACTIONS(4439), - [anon_sym_LPAREN2] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4439), - [aux_sym_end_program_statement_token1] = ACTIONS(4439), - [aux_sym_end_program_statement_token2] = ACTIONS(4439), - [aux_sym_module_statement_token1] = ACTIONS(4439), - [aux_sym_submodule_statement_token1] = ACTIONS(4439), - [aux_sym_interface_statement_token1] = ACTIONS(4439), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4439), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4439), - [aux_sym_subroutine_statement_token1] = ACTIONS(4439), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4439), - [aux_sym_function_statement_token1] = ACTIONS(4439), - [aux_sym_language_binding_token1] = ACTIONS(4439), - [aux_sym_procedure_attributes_token1] = ACTIONS(4439), - [aux_sym_procedure_attributes_token3] = ACTIONS(4439), - [aux_sym_contains_statement_token1] = ACTIONS(4439), - [aux_sym_use_statement_token1] = ACTIONS(4439), - [aux_sym_use_statement_token2] = ACTIONS(4439), - [aux_sym_implicit_statement_token1] = ACTIONS(4439), - [aux_sym_implicit_statement_token3] = ACTIONS(4439), - [aux_sym_implicit_statement_token4] = ACTIONS(4439), - [aux_sym_save_statement_token1] = ACTIONS(4439), - [aux_sym_private_statement_token1] = ACTIONS(4439), - [aux_sym_public_statement_token1] = ACTIONS(4439), - [aux_sym_namelist_statement_token1] = ACTIONS(4439), - [aux_sym_common_statement_token1] = ACTIONS(4439), - [aux_sym_import_statement_token1] = ACTIONS(4439), - [aux_sym_derived_type_definition_token1] = ACTIONS(4439), - [aux_sym_abstract_specifier_token1] = ACTIONS(4439), - [aux_sym_procedure_attribute_token6] = ACTIONS(4439), - [aux_sym_variable_attributes_token1] = ACTIONS(4439), - [aux_sym_variable_attributes_token2] = ACTIONS(4439), - [aux_sym_variable_attributes_token3] = ACTIONS(4439), - [aux_sym_variable_attributes_token4] = ACTIONS(4439), - [aux_sym_variable_attributes_token5] = ACTIONS(4439), - [aux_sym__intrinsic_type_token1] = ACTIONS(4439), - [aux_sym__intrinsic_type_token2] = ACTIONS(4439), - [aux_sym__intrinsic_type_token3] = ACTIONS(4439), - [aux_sym__intrinsic_type_token4] = ACTIONS(4439), - [aux_sym__intrinsic_type_token6] = ACTIONS(4439), - [aux_sym__intrinsic_type_token7] = ACTIONS(4439), - [aux_sym__intrinsic_type_token8] = ACTIONS(4439), - [aux_sym__intrinsic_type_token9] = ACTIONS(4439), - [aux_sym__intrinsic_type_token10] = ACTIONS(4439), - [aux_sym_derived_type_token1] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4439), - [aux_sym_type_qualifier_token1] = ACTIONS(4439), - [aux_sym_type_qualifier_token2] = ACTIONS(4439), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4439), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4439), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4439), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4439), - [aux_sym_equivalence_statement_token1] = ACTIONS(4439), - [anon_sym_SEMI] = ACTIONS(4441), - [aux_sym_stop_statement_token1] = ACTIONS(4439), - [aux_sym_stop_statement_token2] = ACTIONS(4439), - [aux_sym_subroutine_call_token1] = ACTIONS(4439), - [aux_sym_keyword_statement_token1] = ACTIONS(4439), - [aux_sym_keyword_statement_token2] = ACTIONS(4439), - [aux_sym_keyword_statement_token3] = ACTIONS(4439), - [aux_sym_keyword_statement_token4] = ACTIONS(4439), - [aux_sym_keyword_statement_token6] = ACTIONS(4439), - [aux_sym_keyword_statement_token7] = ACTIONS(4439), - [aux_sym_include_statement_token1] = ACTIONS(4439), - [aux_sym_data_statement_token1] = ACTIONS(4439), - [aux_sym_do_loop_statement_token1] = ACTIONS(4439), - [aux_sym__inline_if_statement_token1] = ACTIONS(4439), - [aux_sym_end_if_statement_token1] = ACTIONS(4439), - [aux_sym_elseif_clause_token2] = ACTIONS(4439), - [aux_sym__inline_where_statement_token1] = ACTIONS(4439), - [aux_sym__forall_control_expression_token1] = ACTIONS(4439), - [aux_sym_select_case_statement_token1] = ACTIONS(4439), - [aux_sym_select_case_statement_token3] = ACTIONS(4439), - [aux_sym_select_type_statement_token1] = ACTIONS(4439), - [aux_sym_select_rank_statement_token2] = ACTIONS(4439), - [aux_sym_block_construct_token1] = ACTIONS(4439), - [aux_sym_associate_statement_token1] = ACTIONS(4439), - [aux_sym_format_statement_token1] = ACTIONS(4439), - [aux_sym_print_statement_token1] = ACTIONS(4439), - [aux_sym_open_statement_token1] = ACTIONS(4439), - [aux_sym_close_statement_token1] = ACTIONS(4439), - [aux_sym_inquire_statement_token1] = ACTIONS(4439), - [aux_sym_enum_statement_token1] = ACTIONS(4439), - [aux_sym_file_position_statement_token1] = ACTIONS(4439), - [aux_sym_file_position_statement_token2] = ACTIONS(4439), - [aux_sym_file_position_statement_token3] = ACTIONS(4439), - [aux_sym_file_position_statement_token4] = ACTIONS(4439), - [aux_sym_allocate_statement_token1] = ACTIONS(4439), - [aux_sym_entry_statement_token1] = ACTIONS(4439), - [aux_sym_logical_expression_token5] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4439), - [anon_sym_LPAREN_SLASH] = ACTIONS(4441), - [anon_sym_LBRACK] = ACTIONS(4441), - [aux_sym_boolean_literal_token1] = ACTIONS(4441), - [aux_sym_boolean_literal_token2] = ACTIONS(4441), - [aux_sym_null_literal_token1] = ACTIONS(4439), - [aux_sym_coarray_statement_token1] = ACTIONS(4439), - [aux_sym_coarray_statement_token2] = ACTIONS(4439), - [aux_sym_coarray_statement_token6] = ACTIONS(4439), - [aux_sym_coarray_statement_token8] = ACTIONS(4439), - [aux_sym_coarray_statement_token11] = ACTIONS(4439), - [aux_sym_coarray_statement_token12] = ACTIONS(4439), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4439), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4439), - [aux_sym_identifier_token1] = ACTIONS(4439), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4441), - [sym__float_literal] = ACTIONS(4441), - [sym__boz_literal] = ACTIONS(4441), - [sym__string_literal] = ACTIONS(4441), - [sym__string_literal_kind] = ACTIONS(4441), - }, - [992] = { - [ts_builtin_sym_end] = ACTIONS(4459), - [aux_sym_preproc_include_token1] = ACTIONS(4457), - [aux_sym_preproc_def_token1] = ACTIONS(4457), - [aux_sym_preproc_if_token1] = ACTIONS(4457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4457), - [sym_preproc_directive] = ACTIONS(4457), - [anon_sym_LPAREN2] = ACTIONS(4457), - [anon_sym_PLUS] = ACTIONS(4459), - [anon_sym_DASH] = ACTIONS(4459), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4457), - [aux_sym_end_program_statement_token1] = ACTIONS(4457), - [aux_sym_end_program_statement_token2] = ACTIONS(4457), - [aux_sym_module_statement_token1] = ACTIONS(4457), - [aux_sym_submodule_statement_token1] = ACTIONS(4457), - [aux_sym_interface_statement_token1] = ACTIONS(4457), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4457), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4457), - [aux_sym_subroutine_statement_token1] = ACTIONS(4457), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4457), - [aux_sym_function_statement_token1] = ACTIONS(4457), - [aux_sym_language_binding_token1] = ACTIONS(4457), - [aux_sym_procedure_attributes_token1] = ACTIONS(4457), - [aux_sym_procedure_attributes_token3] = ACTIONS(4457), - [aux_sym_contains_statement_token1] = ACTIONS(4457), - [aux_sym_use_statement_token1] = ACTIONS(4457), - [aux_sym_use_statement_token2] = ACTIONS(4457), - [aux_sym_implicit_statement_token1] = ACTIONS(4457), - [aux_sym_implicit_statement_token3] = ACTIONS(4457), - [aux_sym_implicit_statement_token4] = ACTIONS(4457), - [aux_sym_save_statement_token1] = ACTIONS(4457), - [aux_sym_private_statement_token1] = ACTIONS(4457), - [aux_sym_public_statement_token1] = ACTIONS(4457), - [aux_sym_namelist_statement_token1] = ACTIONS(4457), - [aux_sym_common_statement_token1] = ACTIONS(4457), - [aux_sym_import_statement_token1] = ACTIONS(4457), - [aux_sym_derived_type_definition_token1] = ACTIONS(4457), - [aux_sym_abstract_specifier_token1] = ACTIONS(4457), - [aux_sym_procedure_attribute_token6] = ACTIONS(4457), - [aux_sym_variable_attributes_token1] = ACTIONS(4457), - [aux_sym_variable_attributes_token2] = ACTIONS(4457), - [aux_sym_variable_attributes_token3] = ACTIONS(4457), - [aux_sym_variable_attributes_token4] = ACTIONS(4457), - [aux_sym_variable_attributes_token5] = ACTIONS(4457), - [aux_sym__intrinsic_type_token1] = ACTIONS(4457), - [aux_sym__intrinsic_type_token2] = ACTIONS(4457), - [aux_sym__intrinsic_type_token3] = ACTIONS(4457), - [aux_sym__intrinsic_type_token4] = ACTIONS(4457), - [aux_sym__intrinsic_type_token6] = ACTIONS(4457), - [aux_sym__intrinsic_type_token7] = ACTIONS(4457), - [aux_sym__intrinsic_type_token8] = ACTIONS(4457), - [aux_sym__intrinsic_type_token9] = ACTIONS(4457), - [aux_sym__intrinsic_type_token10] = ACTIONS(4457), - [aux_sym_derived_type_token1] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4457), - [aux_sym_type_qualifier_token1] = ACTIONS(4457), - [aux_sym_type_qualifier_token2] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4457), - [aux_sym_equivalence_statement_token1] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [aux_sym_stop_statement_token1] = ACTIONS(4457), - [aux_sym_stop_statement_token2] = ACTIONS(4457), - [aux_sym_subroutine_call_token1] = ACTIONS(4457), - [aux_sym_keyword_statement_token1] = ACTIONS(4457), - [aux_sym_keyword_statement_token2] = ACTIONS(4457), - [aux_sym_keyword_statement_token3] = ACTIONS(4457), - [aux_sym_keyword_statement_token4] = ACTIONS(4457), - [aux_sym_keyword_statement_token6] = ACTIONS(4457), - [aux_sym_keyword_statement_token7] = ACTIONS(4457), - [aux_sym_include_statement_token1] = ACTIONS(4457), - [aux_sym_data_statement_token1] = ACTIONS(4457), - [aux_sym_do_loop_statement_token1] = ACTIONS(4457), - [aux_sym__inline_if_statement_token1] = ACTIONS(4457), - [aux_sym_end_if_statement_token1] = ACTIONS(4457), - [aux_sym_elseif_clause_token2] = ACTIONS(4457), - [aux_sym__inline_where_statement_token1] = ACTIONS(4457), - [aux_sym__forall_control_expression_token1] = ACTIONS(4457), - [aux_sym_select_case_statement_token1] = ACTIONS(4457), - [aux_sym_select_case_statement_token3] = ACTIONS(4457), - [aux_sym_select_type_statement_token1] = ACTIONS(4457), - [aux_sym_select_rank_statement_token2] = ACTIONS(4457), - [aux_sym_block_construct_token1] = ACTIONS(4457), - [aux_sym_associate_statement_token1] = ACTIONS(4457), - [aux_sym_format_statement_token1] = ACTIONS(4457), - [aux_sym_print_statement_token1] = ACTIONS(4457), - [aux_sym_open_statement_token1] = ACTIONS(4457), - [aux_sym_close_statement_token1] = ACTIONS(4457), - [aux_sym_inquire_statement_token1] = ACTIONS(4457), - [aux_sym_enum_statement_token1] = ACTIONS(4457), - [aux_sym_file_position_statement_token1] = ACTIONS(4457), - [aux_sym_file_position_statement_token2] = ACTIONS(4457), - [aux_sym_file_position_statement_token3] = ACTIONS(4457), - [aux_sym_file_position_statement_token4] = ACTIONS(4457), - [aux_sym_allocate_statement_token1] = ACTIONS(4457), - [aux_sym_entry_statement_token1] = ACTIONS(4457), - [aux_sym_logical_expression_token5] = ACTIONS(4459), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_LPAREN_SLASH] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [aux_sym_boolean_literal_token1] = ACTIONS(4459), - [aux_sym_boolean_literal_token2] = ACTIONS(4459), - [aux_sym_null_literal_token1] = ACTIONS(4457), - [aux_sym_coarray_statement_token1] = ACTIONS(4457), - [aux_sym_coarray_statement_token2] = ACTIONS(4457), - [aux_sym_coarray_statement_token6] = ACTIONS(4457), - [aux_sym_coarray_statement_token8] = ACTIONS(4457), - [aux_sym_coarray_statement_token11] = ACTIONS(4457), - [aux_sym_coarray_statement_token12] = ACTIONS(4457), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4457), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4457), - [aux_sym_identifier_token1] = ACTIONS(4457), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4459), - [sym__float_literal] = ACTIONS(4459), - [sym__boz_literal] = ACTIONS(4459), - [sym__string_literal] = ACTIONS(4459), - [sym__string_literal_kind] = ACTIONS(4459), - }, - [993] = { - [ts_builtin_sym_end] = ACTIONS(4529), - [aux_sym_preproc_include_token1] = ACTIONS(4527), - [aux_sym_preproc_def_token1] = ACTIONS(4527), - [aux_sym_preproc_if_token1] = ACTIONS(4527), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4527), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4527), - [sym_preproc_directive] = ACTIONS(4527), - [anon_sym_LPAREN2] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4529), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4527), - [aux_sym_end_program_statement_token1] = ACTIONS(4527), - [aux_sym_end_program_statement_token2] = ACTIONS(4527), - [aux_sym_module_statement_token1] = ACTIONS(4527), - [aux_sym_submodule_statement_token1] = ACTIONS(4527), - [aux_sym_interface_statement_token1] = ACTIONS(4527), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4527), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4527), - [aux_sym_subroutine_statement_token1] = ACTIONS(4527), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4527), - [aux_sym_function_statement_token1] = ACTIONS(4527), - [aux_sym_language_binding_token1] = ACTIONS(4527), - [aux_sym_procedure_attributes_token1] = ACTIONS(4527), - [aux_sym_procedure_attributes_token3] = ACTIONS(4527), - [aux_sym_contains_statement_token1] = ACTIONS(4527), - [aux_sym_use_statement_token1] = ACTIONS(4527), - [aux_sym_use_statement_token2] = ACTIONS(4527), - [aux_sym_implicit_statement_token1] = ACTIONS(4527), - [aux_sym_implicit_statement_token3] = ACTIONS(4527), - [aux_sym_implicit_statement_token4] = ACTIONS(4527), - [aux_sym_save_statement_token1] = ACTIONS(4527), - [aux_sym_private_statement_token1] = ACTIONS(4527), - [aux_sym_public_statement_token1] = ACTIONS(4527), - [aux_sym_namelist_statement_token1] = ACTIONS(4527), - [aux_sym_common_statement_token1] = ACTIONS(4527), - [aux_sym_import_statement_token1] = ACTIONS(4527), - [aux_sym_derived_type_definition_token1] = ACTIONS(4527), - [aux_sym_abstract_specifier_token1] = ACTIONS(4527), - [aux_sym_procedure_attribute_token6] = ACTIONS(4527), - [aux_sym_variable_attributes_token1] = ACTIONS(4527), - [aux_sym_variable_attributes_token2] = ACTIONS(4527), - [aux_sym_variable_attributes_token3] = ACTIONS(4527), - [aux_sym_variable_attributes_token4] = ACTIONS(4527), - [aux_sym_variable_attributes_token5] = ACTIONS(4527), - [aux_sym__intrinsic_type_token1] = ACTIONS(4527), - [aux_sym__intrinsic_type_token2] = ACTIONS(4527), - [aux_sym__intrinsic_type_token3] = ACTIONS(4527), - [aux_sym__intrinsic_type_token4] = ACTIONS(4527), - [aux_sym__intrinsic_type_token6] = ACTIONS(4527), - [aux_sym__intrinsic_type_token7] = ACTIONS(4527), - [aux_sym__intrinsic_type_token8] = ACTIONS(4527), - [aux_sym__intrinsic_type_token9] = ACTIONS(4527), - [aux_sym__intrinsic_type_token10] = ACTIONS(4527), - [aux_sym_derived_type_token1] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4527), - [aux_sym_type_qualifier_token1] = ACTIONS(4527), - [aux_sym_type_qualifier_token2] = ACTIONS(4527), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4527), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4527), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4527), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4527), - [aux_sym_equivalence_statement_token1] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4529), - [aux_sym_stop_statement_token1] = ACTIONS(4527), - [aux_sym_stop_statement_token2] = ACTIONS(4527), - [aux_sym_subroutine_call_token1] = ACTIONS(4527), - [aux_sym_keyword_statement_token1] = ACTIONS(4527), - [aux_sym_keyword_statement_token2] = ACTIONS(4527), - [aux_sym_keyword_statement_token3] = ACTIONS(4527), - [aux_sym_keyword_statement_token4] = ACTIONS(4527), - [aux_sym_keyword_statement_token6] = ACTIONS(4527), - [aux_sym_keyword_statement_token7] = ACTIONS(4527), - [aux_sym_include_statement_token1] = ACTIONS(4527), - [aux_sym_data_statement_token1] = ACTIONS(4527), - [aux_sym_do_loop_statement_token1] = ACTIONS(4527), - [aux_sym__inline_if_statement_token1] = ACTIONS(4527), - [aux_sym_end_if_statement_token1] = ACTIONS(4527), - [aux_sym_elseif_clause_token2] = ACTIONS(4527), - [aux_sym__inline_where_statement_token1] = ACTIONS(4527), - [aux_sym__forall_control_expression_token1] = ACTIONS(4527), - [aux_sym_select_case_statement_token1] = ACTIONS(4527), - [aux_sym_select_case_statement_token3] = ACTIONS(4527), - [aux_sym_select_type_statement_token1] = ACTIONS(4527), - [aux_sym_select_rank_statement_token2] = ACTIONS(4527), - [aux_sym_block_construct_token1] = ACTIONS(4527), - [aux_sym_associate_statement_token1] = ACTIONS(4527), - [aux_sym_format_statement_token1] = ACTIONS(4527), - [aux_sym_print_statement_token1] = ACTIONS(4527), - [aux_sym_open_statement_token1] = ACTIONS(4527), - [aux_sym_close_statement_token1] = ACTIONS(4527), - [aux_sym_inquire_statement_token1] = ACTIONS(4527), - [aux_sym_enum_statement_token1] = ACTIONS(4527), - [aux_sym_file_position_statement_token1] = ACTIONS(4527), - [aux_sym_file_position_statement_token2] = ACTIONS(4527), - [aux_sym_file_position_statement_token3] = ACTIONS(4527), - [aux_sym_file_position_statement_token4] = ACTIONS(4527), - [aux_sym_allocate_statement_token1] = ACTIONS(4527), - [aux_sym_entry_statement_token1] = ACTIONS(4527), - [aux_sym_logical_expression_token5] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4527), - [anon_sym_LPAREN_SLASH] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4529), - [aux_sym_boolean_literal_token1] = ACTIONS(4529), - [aux_sym_boolean_literal_token2] = ACTIONS(4529), - [aux_sym_null_literal_token1] = ACTIONS(4527), - [aux_sym_coarray_statement_token1] = ACTIONS(4527), - [aux_sym_coarray_statement_token2] = ACTIONS(4527), - [aux_sym_coarray_statement_token6] = ACTIONS(4527), - [aux_sym_coarray_statement_token8] = ACTIONS(4527), - [aux_sym_coarray_statement_token11] = ACTIONS(4527), - [aux_sym_coarray_statement_token12] = ACTIONS(4527), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4527), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4527), - [aux_sym_identifier_token1] = ACTIONS(4527), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4529), - [sym__float_literal] = ACTIONS(4529), - [sym__boz_literal] = ACTIONS(4529), - [sym__string_literal] = ACTIONS(4529), - [sym__string_literal_kind] = ACTIONS(4529), - }, - [994] = { - [ts_builtin_sym_end] = ACTIONS(4483), - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4481), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_end_program_statement_token2] = ACTIONS(4481), - [aux_sym_module_statement_token1] = ACTIONS(4481), - [aux_sym_submodule_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_subroutine_statement_token1] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_function_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4481), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), - }, - [995] = { - [ts_builtin_sym_end] = ACTIONS(4597), - [aux_sym_preproc_include_token1] = ACTIONS(4595), - [aux_sym_preproc_def_token1] = ACTIONS(4595), - [aux_sym_preproc_if_token1] = ACTIONS(4595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4595), - [sym_preproc_directive] = ACTIONS(4595), - [anon_sym_LPAREN2] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4595), - [aux_sym_end_program_statement_token1] = ACTIONS(4595), - [aux_sym_end_program_statement_token2] = ACTIONS(4595), - [aux_sym_module_statement_token1] = ACTIONS(4595), - [aux_sym_submodule_statement_token1] = ACTIONS(4595), - [aux_sym_interface_statement_token1] = ACTIONS(4595), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4595), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4595), - [aux_sym_subroutine_statement_token1] = ACTIONS(4595), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4595), - [aux_sym_function_statement_token1] = ACTIONS(4595), - [aux_sym_language_binding_token1] = ACTIONS(4595), - [aux_sym_procedure_attributes_token1] = ACTIONS(4595), - [aux_sym_procedure_attributes_token3] = ACTIONS(4595), - [aux_sym_contains_statement_token1] = ACTIONS(4595), - [aux_sym_use_statement_token1] = ACTIONS(4595), - [aux_sym_use_statement_token2] = ACTIONS(4595), - [aux_sym_implicit_statement_token1] = ACTIONS(4595), - [aux_sym_implicit_statement_token3] = ACTIONS(4595), - [aux_sym_implicit_statement_token4] = ACTIONS(4595), - [aux_sym_save_statement_token1] = ACTIONS(4595), - [aux_sym_private_statement_token1] = ACTIONS(4595), - [aux_sym_public_statement_token1] = ACTIONS(4595), - [aux_sym_namelist_statement_token1] = ACTIONS(4595), - [aux_sym_common_statement_token1] = ACTIONS(4595), - [aux_sym_import_statement_token1] = ACTIONS(4595), - [aux_sym_derived_type_definition_token1] = ACTIONS(4595), - [aux_sym_abstract_specifier_token1] = ACTIONS(4595), - [aux_sym_procedure_attribute_token6] = ACTIONS(4595), - [aux_sym_variable_attributes_token1] = ACTIONS(4595), - [aux_sym_variable_attributes_token2] = ACTIONS(4595), - [aux_sym_variable_attributes_token3] = ACTIONS(4595), - [aux_sym_variable_attributes_token4] = ACTIONS(4595), - [aux_sym_variable_attributes_token5] = ACTIONS(4595), - [aux_sym__intrinsic_type_token1] = ACTIONS(4595), - [aux_sym__intrinsic_type_token2] = ACTIONS(4595), - [aux_sym__intrinsic_type_token3] = ACTIONS(4595), - [aux_sym__intrinsic_type_token4] = ACTIONS(4595), - [aux_sym__intrinsic_type_token6] = ACTIONS(4595), - [aux_sym__intrinsic_type_token7] = ACTIONS(4595), - [aux_sym__intrinsic_type_token8] = ACTIONS(4595), - [aux_sym__intrinsic_type_token9] = ACTIONS(4595), - [aux_sym__intrinsic_type_token10] = ACTIONS(4595), - [aux_sym_derived_type_token1] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4595), - [aux_sym_type_qualifier_token1] = ACTIONS(4595), - [aux_sym_type_qualifier_token2] = ACTIONS(4595), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4595), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4595), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4595), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4595), - [aux_sym_equivalence_statement_token1] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [aux_sym_stop_statement_token1] = ACTIONS(4595), - [aux_sym_stop_statement_token2] = ACTIONS(4595), - [aux_sym_subroutine_call_token1] = ACTIONS(4595), - [aux_sym_keyword_statement_token1] = ACTIONS(4595), - [aux_sym_keyword_statement_token2] = ACTIONS(4595), - [aux_sym_keyword_statement_token3] = ACTIONS(4595), - [aux_sym_keyword_statement_token4] = ACTIONS(4595), - [aux_sym_keyword_statement_token6] = ACTIONS(4595), - [aux_sym_keyword_statement_token7] = ACTIONS(4595), - [aux_sym_include_statement_token1] = ACTIONS(4595), - [aux_sym_data_statement_token1] = ACTIONS(4595), - [aux_sym_do_loop_statement_token1] = ACTIONS(4595), - [aux_sym__inline_if_statement_token1] = ACTIONS(4595), - [aux_sym_end_if_statement_token1] = ACTIONS(4595), - [aux_sym_elseif_clause_token2] = ACTIONS(4595), - [aux_sym__inline_where_statement_token1] = ACTIONS(4595), - [aux_sym__forall_control_expression_token1] = ACTIONS(4595), - [aux_sym_select_case_statement_token1] = ACTIONS(4595), - [aux_sym_select_case_statement_token3] = ACTIONS(4595), - [aux_sym_select_type_statement_token1] = ACTIONS(4595), - [aux_sym_select_rank_statement_token2] = ACTIONS(4595), - [aux_sym_block_construct_token1] = ACTIONS(4595), - [aux_sym_associate_statement_token1] = ACTIONS(4595), - [aux_sym_format_statement_token1] = ACTIONS(4595), - [aux_sym_print_statement_token1] = ACTIONS(4595), - [aux_sym_open_statement_token1] = ACTIONS(4595), - [aux_sym_close_statement_token1] = ACTIONS(4595), - [aux_sym_inquire_statement_token1] = ACTIONS(4595), - [aux_sym_enum_statement_token1] = ACTIONS(4595), - [aux_sym_file_position_statement_token1] = ACTIONS(4595), - [aux_sym_file_position_statement_token2] = ACTIONS(4595), - [aux_sym_file_position_statement_token3] = ACTIONS(4595), - [aux_sym_file_position_statement_token4] = ACTIONS(4595), - [aux_sym_allocate_statement_token1] = ACTIONS(4595), - [aux_sym_entry_statement_token1] = ACTIONS(4595), - [aux_sym_logical_expression_token5] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_LPAREN_SLASH] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [aux_sym_boolean_literal_token1] = ACTIONS(4597), - [aux_sym_boolean_literal_token2] = ACTIONS(4597), - [aux_sym_null_literal_token1] = ACTIONS(4595), - [aux_sym_coarray_statement_token1] = ACTIONS(4595), - [aux_sym_coarray_statement_token2] = ACTIONS(4595), - [aux_sym_coarray_statement_token6] = ACTIONS(4595), - [aux_sym_coarray_statement_token8] = ACTIONS(4595), - [aux_sym_coarray_statement_token11] = ACTIONS(4595), - [aux_sym_coarray_statement_token12] = ACTIONS(4595), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4595), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4595), - [aux_sym_identifier_token1] = ACTIONS(4595), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4597), - [sym__float_literal] = ACTIONS(4597), - [sym__boz_literal] = ACTIONS(4597), - [sym__string_literal] = ACTIONS(4597), - [sym__string_literal_kind] = ACTIONS(4597), - }, - [996] = { - [sym_preproc_include] = STATE(1042), - [sym_preproc_def] = STATE(1042), - [sym_preproc_function_def] = STATE(1042), - [sym_preproc_call] = STATE(1042), - [sym_preproc_else_in_module] = STATE(8046), - [sym_preproc_elif_in_module] = STATE(8046), - [sym_preproc_elifdef_in_module] = STATE(8046), - [sym_interface] = STATE(1042), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5785), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1042), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1042), - [sym_public_statement] = STATE(1042), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1042), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [997] = { + [sym_preproc_include] = STATE(1004), + [sym_preproc_def] = STATE(1004), + [sym_preproc_function_def] = STATE(1004), + [sym_preproc_call] = STATE(1004), + [sym_preproc_else_in_module] = STATE(7621), + [sym_preproc_elif_in_module] = STATE(7621), + [sym_preproc_elifdef_in_module] = STATE(7621), + [sym_interface] = STATE(1004), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5626), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1004), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1004), + [sym_public_statement] = STATE(1004), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1004), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1042), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1004), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1042), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4741), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1004), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4727), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -224847,8 +224982,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -224860,9 +224995,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -224891,11 +225026,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -224911,466 +225046,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_team_statement_token1] = ACTIONS(93), [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [997] = { - [ts_builtin_sym_end] = ACTIONS(4405), - [aux_sym_preproc_include_token1] = ACTIONS(4403), - [aux_sym_preproc_def_token1] = ACTIONS(4403), - [aux_sym_preproc_if_token1] = ACTIONS(4403), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), - [sym_preproc_directive] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4403), - [aux_sym_end_program_statement_token1] = ACTIONS(4403), - [aux_sym_end_program_statement_token2] = ACTIONS(4403), - [aux_sym_module_statement_token1] = ACTIONS(4403), - [aux_sym_submodule_statement_token1] = ACTIONS(4403), - [aux_sym_interface_statement_token1] = ACTIONS(4403), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), - [aux_sym_subroutine_statement_token1] = ACTIONS(4403), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), - [aux_sym_function_statement_token1] = ACTIONS(4403), - [aux_sym_language_binding_token1] = ACTIONS(4403), - [aux_sym_procedure_attributes_token1] = ACTIONS(4403), - [aux_sym_procedure_attributes_token3] = ACTIONS(4403), - [aux_sym_contains_statement_token1] = ACTIONS(4403), - [aux_sym_use_statement_token1] = ACTIONS(4403), - [aux_sym_use_statement_token2] = ACTIONS(4403), - [aux_sym_implicit_statement_token1] = ACTIONS(4403), - [aux_sym_implicit_statement_token3] = ACTIONS(4403), - [aux_sym_implicit_statement_token4] = ACTIONS(4403), - [aux_sym_save_statement_token1] = ACTIONS(4403), - [aux_sym_private_statement_token1] = ACTIONS(4403), - [aux_sym_public_statement_token1] = ACTIONS(4403), - [aux_sym_namelist_statement_token1] = ACTIONS(4403), - [aux_sym_common_statement_token1] = ACTIONS(4403), - [aux_sym_import_statement_token1] = ACTIONS(4403), - [aux_sym_derived_type_definition_token1] = ACTIONS(4403), - [aux_sym_abstract_specifier_token1] = ACTIONS(4403), - [aux_sym_procedure_attribute_token6] = ACTIONS(4403), - [aux_sym_variable_attributes_token1] = ACTIONS(4403), - [aux_sym_variable_attributes_token2] = ACTIONS(4403), - [aux_sym_variable_attributes_token3] = ACTIONS(4403), - [aux_sym_variable_attributes_token4] = ACTIONS(4403), - [aux_sym_variable_attributes_token5] = ACTIONS(4403), - [aux_sym__intrinsic_type_token1] = ACTIONS(4403), - [aux_sym__intrinsic_type_token2] = ACTIONS(4403), - [aux_sym__intrinsic_type_token3] = ACTIONS(4403), - [aux_sym__intrinsic_type_token4] = ACTIONS(4403), - [aux_sym__intrinsic_type_token6] = ACTIONS(4403), - [aux_sym__intrinsic_type_token7] = ACTIONS(4403), - [aux_sym__intrinsic_type_token8] = ACTIONS(4403), - [aux_sym__intrinsic_type_token9] = ACTIONS(4403), - [aux_sym__intrinsic_type_token10] = ACTIONS(4403), - [aux_sym_derived_type_token1] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), - [aux_sym_type_qualifier_token1] = ACTIONS(4403), - [aux_sym_type_qualifier_token2] = ACTIONS(4403), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4403), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4403), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4403), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4403), - [aux_sym_equivalence_statement_token1] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4405), - [aux_sym_stop_statement_token1] = ACTIONS(4403), - [aux_sym_stop_statement_token2] = ACTIONS(4403), - [aux_sym_subroutine_call_token1] = ACTIONS(4403), - [aux_sym_keyword_statement_token1] = ACTIONS(4403), - [aux_sym_keyword_statement_token2] = ACTIONS(4403), - [aux_sym_keyword_statement_token3] = ACTIONS(4403), - [aux_sym_keyword_statement_token4] = ACTIONS(4403), - [aux_sym_keyword_statement_token6] = ACTIONS(4403), - [aux_sym_keyword_statement_token7] = ACTIONS(4403), - [aux_sym_include_statement_token1] = ACTIONS(4403), - [aux_sym_data_statement_token1] = ACTIONS(4403), - [aux_sym_do_loop_statement_token1] = ACTIONS(4403), - [aux_sym__inline_if_statement_token1] = ACTIONS(4403), - [aux_sym_end_if_statement_token1] = ACTIONS(4403), - [aux_sym_elseif_clause_token2] = ACTIONS(4403), - [aux_sym__inline_where_statement_token1] = ACTIONS(4403), - [aux_sym__forall_control_expression_token1] = ACTIONS(4403), - [aux_sym_select_case_statement_token1] = ACTIONS(4403), - [aux_sym_select_case_statement_token3] = ACTIONS(4403), - [aux_sym_select_type_statement_token1] = ACTIONS(4403), - [aux_sym_select_rank_statement_token2] = ACTIONS(4403), - [aux_sym_block_construct_token1] = ACTIONS(4403), - [aux_sym_associate_statement_token1] = ACTIONS(4403), - [aux_sym_format_statement_token1] = ACTIONS(4403), - [aux_sym_print_statement_token1] = ACTIONS(4403), - [aux_sym_open_statement_token1] = ACTIONS(4403), - [aux_sym_close_statement_token1] = ACTIONS(4403), - [aux_sym_inquire_statement_token1] = ACTIONS(4403), - [aux_sym_enum_statement_token1] = ACTIONS(4403), - [aux_sym_file_position_statement_token1] = ACTIONS(4403), - [aux_sym_file_position_statement_token2] = ACTIONS(4403), - [aux_sym_file_position_statement_token3] = ACTIONS(4403), - [aux_sym_file_position_statement_token4] = ACTIONS(4403), - [aux_sym_allocate_statement_token1] = ACTIONS(4403), - [aux_sym_entry_statement_token1] = ACTIONS(4403), - [aux_sym_logical_expression_token5] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4403), - [anon_sym_LPAREN_SLASH] = ACTIONS(4405), - [anon_sym_LBRACK] = ACTIONS(4405), - [aux_sym_boolean_literal_token1] = ACTIONS(4405), - [aux_sym_boolean_literal_token2] = ACTIONS(4405), - [aux_sym_null_literal_token1] = ACTIONS(4403), - [aux_sym_coarray_statement_token1] = ACTIONS(4403), - [aux_sym_coarray_statement_token2] = ACTIONS(4403), - [aux_sym_coarray_statement_token6] = ACTIONS(4403), - [aux_sym_coarray_statement_token8] = ACTIONS(4403), - [aux_sym_coarray_statement_token11] = ACTIONS(4403), - [aux_sym_coarray_statement_token12] = ACTIONS(4403), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), - [aux_sym_identifier_token1] = ACTIONS(4403), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4405), - [sym__float_literal] = ACTIONS(4405), - [sym__boz_literal] = ACTIONS(4405), - [sym__string_literal] = ACTIONS(4405), - [sym__string_literal_kind] = ACTIONS(4405), - }, - [998] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), - }, - [999] = { - [aux_sym_preproc_include_token1] = ACTIONS(4491), - [aux_sym_preproc_def_token1] = ACTIONS(4491), - [aux_sym_preproc_if_token1] = ACTIONS(4491), - [aux_sym_preproc_if_token2] = ACTIONS(4491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4491), - [sym_preproc_directive] = ACTIONS(4491), - [anon_sym_LPAREN2] = ACTIONS(4491), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4491), - [aux_sym_end_program_statement_token1] = ACTIONS(4491), - [aux_sym_end_program_statement_token2] = ACTIONS(4491), - [aux_sym_module_statement_token1] = ACTIONS(4491), - [aux_sym_submodule_statement_token1] = ACTIONS(4491), - [aux_sym_interface_statement_token1] = ACTIONS(4491), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4491), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4491), - [aux_sym_subroutine_statement_token1] = ACTIONS(4491), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4491), - [aux_sym_function_statement_token1] = ACTIONS(4491), - [aux_sym_language_binding_token1] = ACTIONS(4491), - [aux_sym_procedure_attributes_token1] = ACTIONS(4491), - [aux_sym_procedure_attributes_token3] = ACTIONS(4491), - [aux_sym_contains_statement_token1] = ACTIONS(4491), - [aux_sym_use_statement_token1] = ACTIONS(4491), - [aux_sym_use_statement_token2] = ACTIONS(4491), - [aux_sym_implicit_statement_token1] = ACTIONS(4491), - [aux_sym_implicit_statement_token3] = ACTIONS(4491), - [aux_sym_implicit_statement_token4] = ACTIONS(4491), - [aux_sym_save_statement_token1] = ACTIONS(4491), - [aux_sym_private_statement_token1] = ACTIONS(4491), - [aux_sym_public_statement_token1] = ACTIONS(4491), - [aux_sym_namelist_statement_token1] = ACTIONS(4491), - [aux_sym_common_statement_token1] = ACTIONS(4491), - [aux_sym_import_statement_token1] = ACTIONS(4491), - [aux_sym_derived_type_definition_token1] = ACTIONS(4491), - [aux_sym_abstract_specifier_token1] = ACTIONS(4491), - [aux_sym_procedure_attribute_token6] = ACTIONS(4491), - [aux_sym_variable_attributes_token1] = ACTIONS(4491), - [aux_sym_variable_attributes_token2] = ACTIONS(4491), - [aux_sym_variable_attributes_token3] = ACTIONS(4491), - [aux_sym_variable_attributes_token4] = ACTIONS(4491), - [aux_sym_variable_attributes_token5] = ACTIONS(4491), - [aux_sym__intrinsic_type_token1] = ACTIONS(4491), - [aux_sym__intrinsic_type_token2] = ACTIONS(4491), - [aux_sym__intrinsic_type_token3] = ACTIONS(4491), - [aux_sym__intrinsic_type_token4] = ACTIONS(4491), - [aux_sym__intrinsic_type_token6] = ACTIONS(4491), - [aux_sym__intrinsic_type_token7] = ACTIONS(4491), - [aux_sym__intrinsic_type_token8] = ACTIONS(4491), - [aux_sym__intrinsic_type_token9] = ACTIONS(4491), - [aux_sym__intrinsic_type_token10] = ACTIONS(4491), - [aux_sym_derived_type_token1] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4491), - [aux_sym_type_qualifier_token1] = ACTIONS(4491), - [aux_sym_type_qualifier_token2] = ACTIONS(4491), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4491), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4491), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4491), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4491), - [aux_sym_equivalence_statement_token1] = ACTIONS(4491), - [anon_sym_SEMI] = ACTIONS(4493), - [aux_sym_stop_statement_token1] = ACTIONS(4491), - [aux_sym_stop_statement_token2] = ACTIONS(4491), - [aux_sym_subroutine_call_token1] = ACTIONS(4491), - [aux_sym_keyword_statement_token1] = ACTIONS(4491), - [aux_sym_keyword_statement_token2] = ACTIONS(4491), - [aux_sym_keyword_statement_token3] = ACTIONS(4491), - [aux_sym_keyword_statement_token4] = ACTIONS(4491), - [aux_sym_keyword_statement_token6] = ACTIONS(4491), - [aux_sym_keyword_statement_token7] = ACTIONS(4491), - [aux_sym_include_statement_token1] = ACTIONS(4491), - [aux_sym_data_statement_token1] = ACTIONS(4491), - [aux_sym_do_loop_statement_token1] = ACTIONS(4491), - [aux_sym__inline_if_statement_token1] = ACTIONS(4491), - [aux_sym_end_if_statement_token1] = ACTIONS(4491), - [aux_sym_elseif_clause_token2] = ACTIONS(4491), - [aux_sym__inline_where_statement_token1] = ACTIONS(4491), - [aux_sym__forall_control_expression_token1] = ACTIONS(4491), - [aux_sym_select_case_statement_token1] = ACTIONS(4491), - [aux_sym_select_case_statement_token3] = ACTIONS(4491), - [aux_sym_select_type_statement_token1] = ACTIONS(4491), - [aux_sym_select_rank_statement_token2] = ACTIONS(4491), - [aux_sym_block_construct_token1] = ACTIONS(4491), - [aux_sym_associate_statement_token1] = ACTIONS(4491), - [aux_sym_format_statement_token1] = ACTIONS(4491), - [aux_sym_print_statement_token1] = ACTIONS(4491), - [aux_sym_open_statement_token1] = ACTIONS(4491), - [aux_sym_close_statement_token1] = ACTIONS(4491), - [aux_sym_inquire_statement_token1] = ACTIONS(4491), - [aux_sym_enum_statement_token1] = ACTIONS(4491), - [aux_sym_file_position_statement_token1] = ACTIONS(4491), - [aux_sym_file_position_statement_token2] = ACTIONS(4491), - [aux_sym_file_position_statement_token3] = ACTIONS(4491), - [aux_sym_file_position_statement_token4] = ACTIONS(4491), - [aux_sym_allocate_statement_token1] = ACTIONS(4491), - [aux_sym_entry_statement_token1] = ACTIONS(4491), - [aux_sym_logical_expression_token5] = ACTIONS(4493), - [anon_sym_DOT] = ACTIONS(4491), - [anon_sym_LPAREN_SLASH] = ACTIONS(4493), - [anon_sym_LBRACK] = ACTIONS(4493), - [aux_sym_boolean_literal_token1] = ACTIONS(4493), - [aux_sym_boolean_literal_token2] = ACTIONS(4493), - [aux_sym_null_literal_token1] = ACTIONS(4491), - [aux_sym_coarray_statement_token1] = ACTIONS(4491), - [aux_sym_coarray_statement_token2] = ACTIONS(4491), - [aux_sym_coarray_statement_token6] = ACTIONS(4491), - [aux_sym_coarray_statement_token8] = ACTIONS(4491), - [aux_sym_coarray_statement_token11] = ACTIONS(4491), - [aux_sym_coarray_statement_token12] = ACTIONS(4491), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4491), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4491), - [aux_sym_identifier_token1] = ACTIONS(4491), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4493), - [sym__float_literal] = ACTIONS(4493), - [sym__boz_literal] = ACTIONS(4493), - [sym__string_literal] = ACTIONS(4493), - [sym__string_literal_kind] = ACTIONS(4493), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4665), }, - [1000] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(8141), - [sym_preproc_elif_in_module] = STATE(8141), - [sym_preproc_elifdef_in_module] = STATE(8141), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5793), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [998] = { + [sym_preproc_include] = STATE(1006), + [sym_preproc_def] = STATE(1006), + [sym_preproc_function_def] = STATE(1006), + [sym_preproc_call] = STATE(1006), + [sym_preproc_else_in_module] = STATE(7687), + [sym_preproc_elif_in_module] = STATE(7687), + [sym_preproc_elifdef_in_module] = STATE(7687), + [sym_interface] = STATE(1006), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5627), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1006), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1006), + [sym_public_statement] = STATE(1006), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1006), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1006), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4743), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1006), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4729), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -225387,8 +225117,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -225400,9 +225130,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -225431,11 +225161,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -225452,330 +225182,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [1001] = { - [ts_builtin_sym_end] = ACTIONS(4569), - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token2] = ACTIONS(4567), - [aux_sym_module_statement_token1] = ACTIONS(4567), - [aux_sym_submodule_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_subroutine_statement_token1] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_function_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4567), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), - }, - [1002] = { - [ts_builtin_sym_end] = ACTIONS(4573), - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_program_statement_token2] = ACTIONS(4571), - [aux_sym_module_statement_token1] = ACTIONS(4571), - [aux_sym_submodule_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_subroutine_statement_token1] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_function_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4571), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(4665), }, - [1003] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(8152), - [sym_preproc_elif_in_module] = STATE(8152), - [sym_preproc_elifdef_in_module] = STATE(8152), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5662), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [999] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(7687), + [sym_preproc_elif_in_module] = STATE(7687), + [sym_preproc_elifdef_in_module] = STATE(7687), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5627), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4745), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4729), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -225792,8 +225252,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -225805,9 +225265,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -225836,11 +225296,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -225857,954 +225317,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [1004] = { - [ts_builtin_sym_end] = ACTIONS(4311), - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(4489), - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4487), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_end_program_statement_token2] = ACTIONS(4487), - [aux_sym_module_statement_token1] = ACTIONS(4487), - [aux_sym_submodule_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_subroutine_statement_token1] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_function_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4487), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4487), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4487), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_subroutine_call_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_keyword_statement_token4] = ACTIONS(4487), - [aux_sym_keyword_statement_token6] = ACTIONS(4487), - [aux_sym_keyword_statement_token7] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym_do_loop_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym__inline_where_statement_token1] = ACTIONS(4487), - [aux_sym__forall_control_expression_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token3] = ACTIONS(4487), - [aux_sym_select_type_statement_token1] = ACTIONS(4487), - [aux_sym_select_rank_statement_token2] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_associate_statement_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_print_statement_token1] = ACTIONS(4487), - [aux_sym_open_statement_token1] = ACTIONS(4487), - [aux_sym_close_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token2] = ACTIONS(4487), - [aux_sym_file_position_statement_token3] = ACTIONS(4487), - [aux_sym_file_position_statement_token4] = ACTIONS(4487), - [aux_sym_allocate_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_logical_expression_token5] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_LPAREN_SLASH] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [aux_sym_boolean_literal_token1] = ACTIONS(4489), - [aux_sym_boolean_literal_token2] = ACTIONS(4489), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - [sym__float_literal] = ACTIONS(4489), - [sym__boz_literal] = ACTIONS(4489), - [sym__string_literal] = ACTIONS(4489), - [sym__string_literal_kind] = ACTIONS(4489), - }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(4377), - [aux_sym_preproc_include_token1] = ACTIONS(4375), - [aux_sym_preproc_def_token1] = ACTIONS(4375), - [aux_sym_preproc_if_token1] = ACTIONS(4375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4375), - [sym_preproc_directive] = ACTIONS(4375), - [anon_sym_LPAREN2] = ACTIONS(4375), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4375), - [aux_sym_end_program_statement_token1] = ACTIONS(4375), - [aux_sym_end_program_statement_token2] = ACTIONS(4375), - [aux_sym_module_statement_token1] = ACTIONS(4375), - [aux_sym_submodule_statement_token1] = ACTIONS(4375), - [aux_sym_interface_statement_token1] = ACTIONS(4375), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4375), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4375), - [aux_sym_subroutine_statement_token1] = ACTIONS(4375), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4375), - [aux_sym_function_statement_token1] = ACTIONS(4375), - [aux_sym_language_binding_token1] = ACTIONS(4375), - [aux_sym_procedure_attributes_token1] = ACTIONS(4375), - [aux_sym_procedure_attributes_token3] = ACTIONS(4375), - [aux_sym_contains_statement_token1] = ACTIONS(4375), - [aux_sym_use_statement_token1] = ACTIONS(4375), - [aux_sym_use_statement_token2] = ACTIONS(4375), - [aux_sym_implicit_statement_token1] = ACTIONS(4375), - [aux_sym_implicit_statement_token3] = ACTIONS(4375), - [aux_sym_implicit_statement_token4] = ACTIONS(4375), - [aux_sym_save_statement_token1] = ACTIONS(4375), - [aux_sym_private_statement_token1] = ACTIONS(4375), - [aux_sym_public_statement_token1] = ACTIONS(4375), - [aux_sym_namelist_statement_token1] = ACTIONS(4375), - [aux_sym_common_statement_token1] = ACTIONS(4375), - [aux_sym_import_statement_token1] = ACTIONS(4375), - [aux_sym_derived_type_definition_token1] = ACTIONS(4375), - [aux_sym_abstract_specifier_token1] = ACTIONS(4375), - [aux_sym_procedure_attribute_token6] = ACTIONS(4375), - [aux_sym_variable_attributes_token1] = ACTIONS(4375), - [aux_sym_variable_attributes_token2] = ACTIONS(4375), - [aux_sym_variable_attributes_token3] = ACTIONS(4375), - [aux_sym_variable_attributes_token4] = ACTIONS(4375), - [aux_sym_variable_attributes_token5] = ACTIONS(4375), - [aux_sym__intrinsic_type_token1] = ACTIONS(4375), - [aux_sym__intrinsic_type_token2] = ACTIONS(4375), - [aux_sym__intrinsic_type_token3] = ACTIONS(4375), - [aux_sym__intrinsic_type_token4] = ACTIONS(4375), - [aux_sym__intrinsic_type_token6] = ACTIONS(4375), - [aux_sym__intrinsic_type_token7] = ACTIONS(4375), - [aux_sym__intrinsic_type_token8] = ACTIONS(4375), - [aux_sym__intrinsic_type_token9] = ACTIONS(4375), - [aux_sym__intrinsic_type_token10] = ACTIONS(4375), - [aux_sym_derived_type_token1] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4375), - [aux_sym_type_qualifier_token1] = ACTIONS(4375), - [aux_sym_type_qualifier_token2] = ACTIONS(4375), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4375), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4375), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4375), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4375), - [aux_sym_equivalence_statement_token1] = ACTIONS(4375), - [anon_sym_SEMI] = ACTIONS(4377), - [aux_sym_stop_statement_token1] = ACTIONS(4375), - [aux_sym_stop_statement_token2] = ACTIONS(4375), - [aux_sym_subroutine_call_token1] = ACTIONS(4375), - [aux_sym_keyword_statement_token1] = ACTIONS(4375), - [aux_sym_keyword_statement_token2] = ACTIONS(4375), - [aux_sym_keyword_statement_token3] = ACTIONS(4375), - [aux_sym_keyword_statement_token4] = ACTIONS(4375), - [aux_sym_keyword_statement_token6] = ACTIONS(4375), - [aux_sym_keyword_statement_token7] = ACTIONS(4375), - [aux_sym_include_statement_token1] = ACTIONS(4375), - [aux_sym_data_statement_token1] = ACTIONS(4375), - [aux_sym_do_loop_statement_token1] = ACTIONS(4375), - [aux_sym__inline_if_statement_token1] = ACTIONS(4375), - [aux_sym_end_if_statement_token1] = ACTIONS(4375), - [aux_sym_elseif_clause_token2] = ACTIONS(4375), - [aux_sym__inline_where_statement_token1] = ACTIONS(4375), - [aux_sym__forall_control_expression_token1] = ACTIONS(4375), - [aux_sym_select_case_statement_token1] = ACTIONS(4375), - [aux_sym_select_case_statement_token3] = ACTIONS(4375), - [aux_sym_select_type_statement_token1] = ACTIONS(4375), - [aux_sym_select_rank_statement_token2] = ACTIONS(4375), - [aux_sym_block_construct_token1] = ACTIONS(4375), - [aux_sym_associate_statement_token1] = ACTIONS(4375), - [aux_sym_format_statement_token1] = ACTIONS(4375), - [aux_sym_print_statement_token1] = ACTIONS(4375), - [aux_sym_open_statement_token1] = ACTIONS(4375), - [aux_sym_close_statement_token1] = ACTIONS(4375), - [aux_sym_inquire_statement_token1] = ACTIONS(4375), - [aux_sym_enum_statement_token1] = ACTIONS(4375), - [aux_sym_file_position_statement_token1] = ACTIONS(4375), - [aux_sym_file_position_statement_token2] = ACTIONS(4375), - [aux_sym_file_position_statement_token3] = ACTIONS(4375), - [aux_sym_file_position_statement_token4] = ACTIONS(4375), - [aux_sym_allocate_statement_token1] = ACTIONS(4375), - [aux_sym_entry_statement_token1] = ACTIONS(4375), - [aux_sym_logical_expression_token5] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4375), - [anon_sym_LPAREN_SLASH] = ACTIONS(4377), - [anon_sym_LBRACK] = ACTIONS(4377), - [aux_sym_boolean_literal_token1] = ACTIONS(4377), - [aux_sym_boolean_literal_token2] = ACTIONS(4377), - [aux_sym_null_literal_token1] = ACTIONS(4375), - [aux_sym_coarray_statement_token1] = ACTIONS(4375), - [aux_sym_coarray_statement_token2] = ACTIONS(4375), - [aux_sym_coarray_statement_token6] = ACTIONS(4375), - [aux_sym_coarray_statement_token8] = ACTIONS(4375), - [aux_sym_coarray_statement_token11] = ACTIONS(4375), - [aux_sym_coarray_statement_token12] = ACTIONS(4375), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4375), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4375), - [aux_sym_identifier_token1] = ACTIONS(4375), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4377), - [sym__float_literal] = ACTIONS(4377), - [sym__boz_literal] = ACTIONS(4377), - [sym__string_literal] = ACTIONS(4377), - [sym__string_literal_kind] = ACTIONS(4377), - }, - [1007] = { - [aux_sym_preproc_include_token1] = ACTIONS(4495), - [aux_sym_preproc_def_token1] = ACTIONS(4495), - [aux_sym_preproc_if_token1] = ACTIONS(4495), - [aux_sym_preproc_if_token2] = ACTIONS(4495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4495), - [sym_preproc_directive] = ACTIONS(4495), - [anon_sym_LPAREN2] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4497), - [anon_sym_DASH] = ACTIONS(4497), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4495), - [aux_sym_end_program_statement_token1] = ACTIONS(4495), - [aux_sym_end_program_statement_token2] = ACTIONS(4495), - [aux_sym_module_statement_token1] = ACTIONS(4495), - [aux_sym_submodule_statement_token1] = ACTIONS(4495), - [aux_sym_interface_statement_token1] = ACTIONS(4495), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4495), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4495), - [aux_sym_subroutine_statement_token1] = ACTIONS(4495), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4495), - [aux_sym_function_statement_token1] = ACTIONS(4495), - [aux_sym_language_binding_token1] = ACTIONS(4495), - [aux_sym_procedure_attributes_token1] = ACTIONS(4495), - [aux_sym_procedure_attributes_token3] = ACTIONS(4495), - [aux_sym_contains_statement_token1] = ACTIONS(4495), - [aux_sym_use_statement_token1] = ACTIONS(4495), - [aux_sym_use_statement_token2] = ACTIONS(4495), - [aux_sym_implicit_statement_token1] = ACTIONS(4495), - [aux_sym_implicit_statement_token3] = ACTIONS(4495), - [aux_sym_implicit_statement_token4] = ACTIONS(4495), - [aux_sym_save_statement_token1] = ACTIONS(4495), - [aux_sym_private_statement_token1] = ACTIONS(4495), - [aux_sym_public_statement_token1] = ACTIONS(4495), - [aux_sym_namelist_statement_token1] = ACTIONS(4495), - [aux_sym_common_statement_token1] = ACTIONS(4495), - [aux_sym_import_statement_token1] = ACTIONS(4495), - [aux_sym_derived_type_definition_token1] = ACTIONS(4495), - [aux_sym_abstract_specifier_token1] = ACTIONS(4495), - [aux_sym_procedure_attribute_token6] = ACTIONS(4495), - [aux_sym_variable_attributes_token1] = ACTIONS(4495), - [aux_sym_variable_attributes_token2] = ACTIONS(4495), - [aux_sym_variable_attributes_token3] = ACTIONS(4495), - [aux_sym_variable_attributes_token4] = ACTIONS(4495), - [aux_sym_variable_attributes_token5] = ACTIONS(4495), - [aux_sym__intrinsic_type_token1] = ACTIONS(4495), - [aux_sym__intrinsic_type_token2] = ACTIONS(4495), - [aux_sym__intrinsic_type_token3] = ACTIONS(4495), - [aux_sym__intrinsic_type_token4] = ACTIONS(4495), - [aux_sym__intrinsic_type_token6] = ACTIONS(4495), - [aux_sym__intrinsic_type_token7] = ACTIONS(4495), - [aux_sym__intrinsic_type_token8] = ACTIONS(4495), - [aux_sym__intrinsic_type_token9] = ACTIONS(4495), - [aux_sym__intrinsic_type_token10] = ACTIONS(4495), - [aux_sym_derived_type_token1] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4495), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4495), - [aux_sym_type_qualifier_token1] = ACTIONS(4495), - [aux_sym_type_qualifier_token2] = ACTIONS(4495), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4495), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4495), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4495), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4495), - [aux_sym_equivalence_statement_token1] = ACTIONS(4495), - [anon_sym_SEMI] = ACTIONS(4497), - [aux_sym_stop_statement_token1] = ACTIONS(4495), - [aux_sym_stop_statement_token2] = ACTIONS(4495), - [aux_sym_subroutine_call_token1] = ACTIONS(4495), - [aux_sym_keyword_statement_token1] = ACTIONS(4495), - [aux_sym_keyword_statement_token2] = ACTIONS(4495), - [aux_sym_keyword_statement_token3] = ACTIONS(4495), - [aux_sym_keyword_statement_token4] = ACTIONS(4495), - [aux_sym_keyword_statement_token6] = ACTIONS(4495), - [aux_sym_keyword_statement_token7] = ACTIONS(4495), - [aux_sym_include_statement_token1] = ACTIONS(4495), - [aux_sym_data_statement_token1] = ACTIONS(4495), - [aux_sym_do_loop_statement_token1] = ACTIONS(4495), - [aux_sym__inline_if_statement_token1] = ACTIONS(4495), - [aux_sym_end_if_statement_token1] = ACTIONS(4495), - [aux_sym_elseif_clause_token2] = ACTIONS(4495), - [aux_sym__inline_where_statement_token1] = ACTIONS(4495), - [aux_sym__forall_control_expression_token1] = ACTIONS(4495), - [aux_sym_select_case_statement_token1] = ACTIONS(4495), - [aux_sym_select_case_statement_token3] = ACTIONS(4495), - [aux_sym_select_type_statement_token1] = ACTIONS(4495), - [aux_sym_select_rank_statement_token2] = ACTIONS(4495), - [aux_sym_block_construct_token1] = ACTIONS(4495), - [aux_sym_associate_statement_token1] = ACTIONS(4495), - [aux_sym_format_statement_token1] = ACTIONS(4495), - [aux_sym_print_statement_token1] = ACTIONS(4495), - [aux_sym_open_statement_token1] = ACTIONS(4495), - [aux_sym_close_statement_token1] = ACTIONS(4495), - [aux_sym_inquire_statement_token1] = ACTIONS(4495), - [aux_sym_enum_statement_token1] = ACTIONS(4495), - [aux_sym_file_position_statement_token1] = ACTIONS(4495), - [aux_sym_file_position_statement_token2] = ACTIONS(4495), - [aux_sym_file_position_statement_token3] = ACTIONS(4495), - [aux_sym_file_position_statement_token4] = ACTIONS(4495), - [aux_sym_allocate_statement_token1] = ACTIONS(4495), - [aux_sym_entry_statement_token1] = ACTIONS(4495), - [aux_sym_logical_expression_token5] = ACTIONS(4497), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_LPAREN_SLASH] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [aux_sym_boolean_literal_token1] = ACTIONS(4497), - [aux_sym_boolean_literal_token2] = ACTIONS(4497), - [aux_sym_null_literal_token1] = ACTIONS(4495), - [aux_sym_coarray_statement_token1] = ACTIONS(4495), - [aux_sym_coarray_statement_token2] = ACTIONS(4495), - [aux_sym_coarray_statement_token6] = ACTIONS(4495), - [aux_sym_coarray_statement_token8] = ACTIONS(4495), - [aux_sym_coarray_statement_token11] = ACTIONS(4495), - [aux_sym_coarray_statement_token12] = ACTIONS(4495), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4495), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4495), - [aux_sym_identifier_token1] = ACTIONS(4495), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4497), - [sym__float_literal] = ACTIONS(4497), - [sym__boz_literal] = ACTIONS(4497), - [sym__string_literal] = ACTIONS(4497), - [sym__string_literal_kind] = ACTIONS(4497), - }, - [1008] = { - [ts_builtin_sym_end] = ACTIONS(4311), - [aux_sym_preproc_include_token1] = ACTIONS(4307), - [aux_sym_preproc_def_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token1] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4307), - [sym_preproc_directive] = ACTIONS(4307), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token2] = ACTIONS(4307), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4307), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4307), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token3] = ACTIONS(4307), - [aux_sym_contains_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token2] = ACTIONS(4307), - [aux_sym_implicit_statement_token1] = ACTIONS(4307), - [aux_sym_implicit_statement_token3] = ACTIONS(4307), - [aux_sym_implicit_statement_token4] = ACTIONS(4307), - [aux_sym_save_statement_token1] = ACTIONS(4307), - [aux_sym_private_statement_token1] = ACTIONS(4307), - [aux_sym_public_statement_token1] = ACTIONS(4307), - [aux_sym_namelist_statement_token1] = ACTIONS(4307), - [aux_sym_common_statement_token1] = ACTIONS(4307), - [aux_sym_import_statement_token1] = ACTIONS(4307), - [aux_sym_derived_type_definition_token1] = ACTIONS(4307), - [aux_sym_abstract_specifier_token1] = ACTIONS(4307), - [aux_sym_procedure_attribute_token6] = ACTIONS(4307), - [aux_sym_variable_attributes_token1] = ACTIONS(4307), - [aux_sym_variable_attributes_token2] = ACTIONS(4307), - [aux_sym_variable_attributes_token3] = ACTIONS(4307), - [aux_sym_variable_attributes_token4] = ACTIONS(4307), - [aux_sym_variable_attributes_token5] = ACTIONS(4307), - [aux_sym__intrinsic_type_token1] = ACTIONS(4307), - [aux_sym__intrinsic_type_token2] = ACTIONS(4307), - [aux_sym__intrinsic_type_token3] = ACTIONS(4307), - [aux_sym__intrinsic_type_token4] = ACTIONS(4307), - [aux_sym__intrinsic_type_token6] = ACTIONS(4307), - [aux_sym__intrinsic_type_token7] = ACTIONS(4307), - [aux_sym__intrinsic_type_token8] = ACTIONS(4307), - [aux_sym__intrinsic_type_token9] = ACTIONS(4307), - [aux_sym__intrinsic_type_token10] = ACTIONS(4307), - [aux_sym_derived_type_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4307), - [aux_sym_type_qualifier_token1] = ACTIONS(4307), - [aux_sym_type_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4307), - [anon_sym_SEMI] = ACTIONS(4311), - [aux_sym_stop_statement_token1] = ACTIONS(4307), - [aux_sym_stop_statement_token2] = ACTIONS(4307), - [aux_sym_subroutine_call_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token2] = ACTIONS(4307), - [aux_sym_keyword_statement_token3] = ACTIONS(4307), - [aux_sym_keyword_statement_token4] = ACTIONS(4307), - [aux_sym_keyword_statement_token6] = ACTIONS(4307), - [aux_sym_keyword_statement_token7] = ACTIONS(4307), - [aux_sym_include_statement_token1] = ACTIONS(4307), - [aux_sym_data_statement_token1] = ACTIONS(4307), - [aux_sym_do_loop_statement_token1] = ACTIONS(4307), - [aux_sym__inline_if_statement_token1] = ACTIONS(4307), - [aux_sym_end_if_statement_token1] = ACTIONS(4307), - [aux_sym_elseif_clause_token2] = ACTIONS(4307), - [aux_sym__inline_where_statement_token1] = ACTIONS(4307), - [aux_sym__forall_control_expression_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token3] = ACTIONS(4307), - [aux_sym_select_type_statement_token1] = ACTIONS(4307), - [aux_sym_select_rank_statement_token2] = ACTIONS(4307), - [aux_sym_block_construct_token1] = ACTIONS(4307), - [aux_sym_associate_statement_token1] = ACTIONS(4307), - [aux_sym_format_statement_token1] = ACTIONS(4307), - [aux_sym_print_statement_token1] = ACTIONS(4307), - [aux_sym_open_statement_token1] = ACTIONS(4307), - [aux_sym_close_statement_token1] = ACTIONS(4307), - [aux_sym_inquire_statement_token1] = ACTIONS(4307), - [aux_sym_enum_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token2] = ACTIONS(4307), - [aux_sym_file_position_statement_token3] = ACTIONS(4307), - [aux_sym_file_position_statement_token4] = ACTIONS(4307), - [aux_sym_allocate_statement_token1] = ACTIONS(4307), - [aux_sym_entry_statement_token1] = ACTIONS(4307), - [aux_sym_logical_expression_token5] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LPAREN_SLASH] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [aux_sym_boolean_literal_token1] = ACTIONS(4311), - [aux_sym_boolean_literal_token2] = ACTIONS(4311), - [aux_sym_null_literal_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token2] = ACTIONS(4307), - [aux_sym_coarray_statement_token6] = ACTIONS(4307), - [aux_sym_coarray_statement_token8] = ACTIONS(4307), - [aux_sym_coarray_statement_token11] = ACTIONS(4307), - [aux_sym_coarray_statement_token12] = ACTIONS(4307), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4307), - [aux_sym_identifier_token1] = ACTIONS(4307), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4311), - [sym__float_literal] = ACTIONS(4311), - [sym__boz_literal] = ACTIONS(4311), - [sym__string_literal] = ACTIONS(4311), - [sym__string_literal_kind] = ACTIONS(4311), - }, - [1009] = { - [aux_sym_preproc_include_token1] = ACTIONS(4465), - [aux_sym_preproc_def_token1] = ACTIONS(4465), - [aux_sym_preproc_if_token1] = ACTIONS(4465), - [aux_sym_preproc_if_token2] = ACTIONS(4465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4465), - [sym_preproc_directive] = ACTIONS(4465), - [anon_sym_LPAREN2] = ACTIONS(4465), - [anon_sym_PLUS] = ACTIONS(4467), - [anon_sym_DASH] = ACTIONS(4467), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4465), - [aux_sym_end_program_statement_token1] = ACTIONS(4465), - [aux_sym_end_program_statement_token2] = ACTIONS(4465), - [aux_sym_module_statement_token1] = ACTIONS(4465), - [aux_sym_submodule_statement_token1] = ACTIONS(4465), - [aux_sym_interface_statement_token1] = ACTIONS(4465), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4465), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4465), - [aux_sym_subroutine_statement_token1] = ACTIONS(4465), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4465), - [aux_sym_function_statement_token1] = ACTIONS(4465), - [aux_sym_language_binding_token1] = ACTIONS(4465), - [aux_sym_procedure_attributes_token1] = ACTIONS(4465), - [aux_sym_procedure_attributes_token3] = ACTIONS(4465), - [aux_sym_contains_statement_token1] = ACTIONS(4465), - [aux_sym_use_statement_token1] = ACTIONS(4465), - [aux_sym_use_statement_token2] = ACTIONS(4465), - [aux_sym_implicit_statement_token1] = ACTIONS(4465), - [aux_sym_implicit_statement_token3] = ACTIONS(4465), - [aux_sym_implicit_statement_token4] = ACTIONS(4465), - [aux_sym_save_statement_token1] = ACTIONS(4465), - [aux_sym_private_statement_token1] = ACTIONS(4465), - [aux_sym_public_statement_token1] = ACTIONS(4465), - [aux_sym_namelist_statement_token1] = ACTIONS(4465), - [aux_sym_common_statement_token1] = ACTIONS(4465), - [aux_sym_import_statement_token1] = ACTIONS(4465), - [aux_sym_derived_type_definition_token1] = ACTIONS(4465), - [aux_sym_abstract_specifier_token1] = ACTIONS(4465), - [aux_sym_procedure_attribute_token6] = ACTIONS(4465), - [aux_sym_variable_attributes_token1] = ACTIONS(4465), - [aux_sym_variable_attributes_token2] = ACTIONS(4465), - [aux_sym_variable_attributes_token3] = ACTIONS(4465), - [aux_sym_variable_attributes_token4] = ACTIONS(4465), - [aux_sym_variable_attributes_token5] = ACTIONS(4465), - [aux_sym__intrinsic_type_token1] = ACTIONS(4465), - [aux_sym__intrinsic_type_token2] = ACTIONS(4465), - [aux_sym__intrinsic_type_token3] = ACTIONS(4465), - [aux_sym__intrinsic_type_token4] = ACTIONS(4465), - [aux_sym__intrinsic_type_token6] = ACTIONS(4465), - [aux_sym__intrinsic_type_token7] = ACTIONS(4465), - [aux_sym__intrinsic_type_token8] = ACTIONS(4465), - [aux_sym__intrinsic_type_token9] = ACTIONS(4465), - [aux_sym__intrinsic_type_token10] = ACTIONS(4465), - [aux_sym_derived_type_token1] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4465), - [aux_sym_type_qualifier_token1] = ACTIONS(4465), - [aux_sym_type_qualifier_token2] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4465), - [aux_sym_equivalence_statement_token1] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [aux_sym_stop_statement_token1] = ACTIONS(4465), - [aux_sym_stop_statement_token2] = ACTIONS(4465), - [aux_sym_subroutine_call_token1] = ACTIONS(4465), - [aux_sym_keyword_statement_token1] = ACTIONS(4465), - [aux_sym_keyword_statement_token2] = ACTIONS(4465), - [aux_sym_keyword_statement_token3] = ACTIONS(4465), - [aux_sym_keyword_statement_token4] = ACTIONS(4465), - [aux_sym_keyword_statement_token6] = ACTIONS(4465), - [aux_sym_keyword_statement_token7] = ACTIONS(4465), - [aux_sym_include_statement_token1] = ACTIONS(4465), - [aux_sym_data_statement_token1] = ACTIONS(4465), - [aux_sym_do_loop_statement_token1] = ACTIONS(4465), - [aux_sym__inline_if_statement_token1] = ACTIONS(4465), - [aux_sym_end_if_statement_token1] = ACTIONS(4465), - [aux_sym_elseif_clause_token2] = ACTIONS(4465), - [aux_sym__inline_where_statement_token1] = ACTIONS(4465), - [aux_sym__forall_control_expression_token1] = ACTIONS(4465), - [aux_sym_select_case_statement_token1] = ACTIONS(4465), - [aux_sym_select_case_statement_token3] = ACTIONS(4465), - [aux_sym_select_type_statement_token1] = ACTIONS(4465), - [aux_sym_select_rank_statement_token2] = ACTIONS(4465), - [aux_sym_block_construct_token1] = ACTIONS(4465), - [aux_sym_associate_statement_token1] = ACTIONS(4465), - [aux_sym_format_statement_token1] = ACTIONS(4465), - [aux_sym_print_statement_token1] = ACTIONS(4465), - [aux_sym_open_statement_token1] = ACTIONS(4465), - [aux_sym_close_statement_token1] = ACTIONS(4465), - [aux_sym_inquire_statement_token1] = ACTIONS(4465), - [aux_sym_enum_statement_token1] = ACTIONS(4465), - [aux_sym_file_position_statement_token1] = ACTIONS(4465), - [aux_sym_file_position_statement_token2] = ACTIONS(4465), - [aux_sym_file_position_statement_token3] = ACTIONS(4465), - [aux_sym_file_position_statement_token4] = ACTIONS(4465), - [aux_sym_allocate_statement_token1] = ACTIONS(4465), - [aux_sym_entry_statement_token1] = ACTIONS(4465), - [aux_sym_logical_expression_token5] = ACTIONS(4467), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_LPAREN_SLASH] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [aux_sym_boolean_literal_token1] = ACTIONS(4467), - [aux_sym_boolean_literal_token2] = ACTIONS(4467), - [aux_sym_null_literal_token1] = ACTIONS(4465), - [aux_sym_coarray_statement_token1] = ACTIONS(4465), - [aux_sym_coarray_statement_token2] = ACTIONS(4465), - [aux_sym_coarray_statement_token6] = ACTIONS(4465), - [aux_sym_coarray_statement_token8] = ACTIONS(4465), - [aux_sym_coarray_statement_token11] = ACTIONS(4465), - [aux_sym_coarray_statement_token12] = ACTIONS(4465), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4465), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4465), - [aux_sym_identifier_token1] = ACTIONS(4465), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4467), - [sym__float_literal] = ACTIONS(4467), - [sym__boz_literal] = ACTIONS(4467), - [sym__string_literal] = ACTIONS(4467), - [sym__string_literal_kind] = ACTIONS(4467), + [sym__integer_literal] = ACTIONS(4665), }, - [1010] = { - [ts_builtin_sym_end] = ACTIONS(4577), - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [1000] = { + [ts_builtin_sym_end] = ACTIONS(4429), + [aux_sym_preproc_include_token1] = ACTIONS(4427), + [aux_sym_preproc_def_token1] = ACTIONS(4427), + [aux_sym_preproc_if_token1] = ACTIONS(4427), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4427), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4427), + [sym_preproc_directive] = ACTIONS(4427), + [anon_sym_LPAREN2] = ACTIONS(4427), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_program_statement_token2] = ACTIONS(4575), - [aux_sym_module_statement_token1] = ACTIONS(4575), - [aux_sym_submodule_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_subroutine_statement_token1] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_function_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4575), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4575), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4575), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_program_statement_token1] = ACTIONS(4427), + [aux_sym_end_program_statement_token1] = ACTIONS(4427), + [aux_sym_end_program_statement_token2] = ACTIONS(4427), + [aux_sym_module_statement_token1] = ACTIONS(4427), + [aux_sym_submodule_statement_token1] = ACTIONS(4427), + [aux_sym_interface_statement_token1] = ACTIONS(4427), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4427), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4427), + [aux_sym_subroutine_statement_token1] = ACTIONS(4427), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4427), + [aux_sym_function_statement_token1] = ACTIONS(4427), + [aux_sym_language_binding_token1] = ACTIONS(4427), + [aux_sym_procedure_attributes_token1] = ACTIONS(4427), + [aux_sym_procedure_attributes_token3] = ACTIONS(4427), + [aux_sym_contains_statement_token1] = ACTIONS(4427), + [aux_sym_use_statement_token1] = ACTIONS(4427), + [aux_sym_use_statement_token2] = ACTIONS(4427), + [aux_sym_implicit_statement_token1] = ACTIONS(4427), + [aux_sym_implicit_statement_token3] = ACTIONS(4427), + [aux_sym_implicit_statement_token4] = ACTIONS(4427), + [aux_sym_save_statement_token1] = ACTIONS(4427), + [aux_sym_private_statement_token1] = ACTIONS(4427), + [aux_sym_public_statement_token1] = ACTIONS(4427), + [aux_sym_namelist_statement_token1] = ACTIONS(4427), + [aux_sym_common_statement_token1] = ACTIONS(4427), + [aux_sym_import_statement_token1] = ACTIONS(4427), + [aux_sym_derived_type_definition_token1] = ACTIONS(4427), + [aux_sym_abstract_specifier_token1] = ACTIONS(4427), + [aux_sym_procedure_attribute_token6] = ACTIONS(4427), + [aux_sym_variable_attributes_token1] = ACTIONS(4427), + [aux_sym_variable_attributes_token2] = ACTIONS(4427), + [aux_sym_variable_attributes_token3] = ACTIONS(4427), + [aux_sym_variable_attributes_token4] = ACTIONS(4427), + [aux_sym_variable_attributes_token5] = ACTIONS(4427), + [aux_sym__intrinsic_type_token1] = ACTIONS(4427), + [aux_sym__intrinsic_type_token2] = ACTIONS(4427), + [aux_sym__intrinsic_type_token3] = ACTIONS(4427), + [aux_sym__intrinsic_type_token4] = ACTIONS(4427), + [aux_sym__intrinsic_type_token6] = ACTIONS(4427), + [aux_sym__intrinsic_type_token7] = ACTIONS(4427), + [aux_sym__intrinsic_type_token8] = ACTIONS(4427), + [aux_sym__intrinsic_type_token9] = ACTIONS(4427), + [aux_sym__intrinsic_type_token10] = ACTIONS(4427), + [aux_sym_derived_type_token1] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4427), + [aux_sym_type_qualifier_token1] = ACTIONS(4427), + [aux_sym_type_qualifier_token2] = ACTIONS(4427), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4427), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4427), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4427), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4427), + [aux_sym_equivalence_statement_token1] = ACTIONS(4427), + [anon_sym_SEMI] = ACTIONS(4429), + [aux_sym_stop_statement_token1] = ACTIONS(4427), + [aux_sym_stop_statement_token2] = ACTIONS(4427), + [aux_sym_subroutine_call_token1] = ACTIONS(4427), + [aux_sym_keyword_statement_token1] = ACTIONS(4427), + [aux_sym_keyword_statement_token2] = ACTIONS(4427), + [aux_sym_keyword_statement_token3] = ACTIONS(4427), + [aux_sym_keyword_statement_token4] = ACTIONS(4427), + [aux_sym_keyword_statement_token6] = ACTIONS(4427), + [aux_sym_keyword_statement_token7] = ACTIONS(4427), + [aux_sym_include_statement_token1] = ACTIONS(4427), + [aux_sym_data_statement_token1] = ACTIONS(4427), + [aux_sym_do_loop_statement_token1] = ACTIONS(4427), + [aux_sym__inline_if_statement_token1] = ACTIONS(4427), + [aux_sym_end_if_statement_token1] = ACTIONS(4427), + [aux_sym_elseif_clause_token2] = ACTIONS(4427), + [aux_sym__inline_where_statement_token1] = ACTIONS(4427), + [aux_sym__forall_control_expression_token1] = ACTIONS(4427), + [aux_sym_select_case_statement_token1] = ACTIONS(4427), + [aux_sym_select_case_statement_token3] = ACTIONS(4427), + [aux_sym_select_type_statement_token1] = ACTIONS(4427), + [aux_sym_select_rank_statement_token2] = ACTIONS(4427), + [aux_sym_block_construct_token1] = ACTIONS(4427), + [aux_sym_associate_statement_token1] = ACTIONS(4427), + [aux_sym_format_statement_token1] = ACTIONS(4427), + [aux_sym_print_statement_token1] = ACTIONS(4427), + [aux_sym_open_statement_token1] = ACTIONS(4427), + [aux_sym_close_statement_token1] = ACTIONS(4427), + [aux_sym_inquire_statement_token1] = ACTIONS(4427), + [aux_sym_enum_statement_token1] = ACTIONS(4427), + [aux_sym_file_position_statement_token1] = ACTIONS(4427), + [aux_sym_file_position_statement_token2] = ACTIONS(4427), + [aux_sym_file_position_statement_token3] = ACTIONS(4427), + [aux_sym_file_position_statement_token4] = ACTIONS(4427), + [aux_sym_allocate_statement_token1] = ACTIONS(4427), + [aux_sym_entry_statement_token1] = ACTIONS(4427), + [aux_sym_logical_expression_token5] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4427), + [anon_sym_LPAREN_SLASH] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4429), + [aux_sym_boolean_literal_token1] = ACTIONS(4429), + [aux_sym_boolean_literal_token2] = ACTIONS(4429), + [aux_sym_null_literal_token1] = ACTIONS(4427), + [aux_sym_coarray_statement_token1] = ACTIONS(4427), + [aux_sym_coarray_statement_token2] = ACTIONS(4427), + [aux_sym_coarray_statement_token6] = ACTIONS(4427), + [aux_sym_coarray_statement_token8] = ACTIONS(4427), + [aux_sym_coarray_statement_token11] = ACTIONS(4427), + [aux_sym_coarray_statement_token12] = ACTIONS(4427), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4427), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4427), + [aux_sym_identifier_token1] = ACTIONS(4427), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(4429), + [sym__float_literal] = ACTIONS(4429), + [sym__boz_literal] = ACTIONS(4429), + [sym__string_literal] = ACTIONS(4429), + [sym__string_literal_kind] = ACTIONS(4429), }, - [1011] = { + [1001] = { [ts_builtin_sym_end] = ACTIONS(4605), [aux_sym_preproc_include_token1] = ACTIONS(4603), [aux_sym_preproc_def_token1] = ACTIONS(4603), @@ -226933,334 +225583,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4603), [aux_sym_identifier_token1] = ACTIONS(4603), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4605), - [sym__float_literal] = ACTIONS(4605), - [sym__boz_literal] = ACTIONS(4605), - [sym__string_literal] = ACTIONS(4605), - [sym__string_literal_kind] = ACTIONS(4605), - }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(4557), - [aux_sym_preproc_include_token1] = ACTIONS(4555), - [aux_sym_preproc_def_token1] = ACTIONS(4555), - [aux_sym_preproc_if_token1] = ACTIONS(4555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4555), - [sym_preproc_directive] = ACTIONS(4555), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_PLUS] = ACTIONS(4557), - [anon_sym_DASH] = ACTIONS(4557), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4555), - [aux_sym_end_program_statement_token1] = ACTIONS(4555), - [aux_sym_end_program_statement_token2] = ACTIONS(4555), - [aux_sym_module_statement_token1] = ACTIONS(4555), - [aux_sym_submodule_statement_token1] = ACTIONS(4555), - [aux_sym_interface_statement_token1] = ACTIONS(4555), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4555), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4555), - [aux_sym_subroutine_statement_token1] = ACTIONS(4555), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4555), - [aux_sym_function_statement_token1] = ACTIONS(4555), - [aux_sym_language_binding_token1] = ACTIONS(4555), - [aux_sym_procedure_attributes_token1] = ACTIONS(4555), - [aux_sym_procedure_attributes_token3] = ACTIONS(4555), - [aux_sym_contains_statement_token1] = ACTIONS(4555), - [aux_sym_use_statement_token1] = ACTIONS(4555), - [aux_sym_use_statement_token2] = ACTIONS(4555), - [aux_sym_implicit_statement_token1] = ACTIONS(4555), - [aux_sym_implicit_statement_token3] = ACTIONS(4555), - [aux_sym_implicit_statement_token4] = ACTIONS(4555), - [aux_sym_save_statement_token1] = ACTIONS(4555), - [aux_sym_private_statement_token1] = ACTIONS(4555), - [aux_sym_public_statement_token1] = ACTIONS(4555), - [aux_sym_namelist_statement_token1] = ACTIONS(4555), - [aux_sym_common_statement_token1] = ACTIONS(4555), - [aux_sym_import_statement_token1] = ACTIONS(4555), - [aux_sym_derived_type_definition_token1] = ACTIONS(4555), - [aux_sym_abstract_specifier_token1] = ACTIONS(4555), - [aux_sym_procedure_attribute_token6] = ACTIONS(4555), - [aux_sym_variable_attributes_token1] = ACTIONS(4555), - [aux_sym_variable_attributes_token2] = ACTIONS(4555), - [aux_sym_variable_attributes_token3] = ACTIONS(4555), - [aux_sym_variable_attributes_token4] = ACTIONS(4555), - [aux_sym_variable_attributes_token5] = ACTIONS(4555), - [aux_sym__intrinsic_type_token1] = ACTIONS(4555), - [aux_sym__intrinsic_type_token2] = ACTIONS(4555), - [aux_sym__intrinsic_type_token3] = ACTIONS(4555), - [aux_sym__intrinsic_type_token4] = ACTIONS(4555), - [aux_sym__intrinsic_type_token6] = ACTIONS(4555), - [aux_sym__intrinsic_type_token7] = ACTIONS(4555), - [aux_sym__intrinsic_type_token8] = ACTIONS(4555), - [aux_sym__intrinsic_type_token9] = ACTIONS(4555), - [aux_sym__intrinsic_type_token10] = ACTIONS(4555), - [aux_sym_derived_type_token1] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4555), - [aux_sym_type_qualifier_token1] = ACTIONS(4555), - [aux_sym_type_qualifier_token2] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4555), - [aux_sym_equivalence_statement_token1] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(4557), - [aux_sym_stop_statement_token1] = ACTIONS(4555), - [aux_sym_stop_statement_token2] = ACTIONS(4555), - [aux_sym_subroutine_call_token1] = ACTIONS(4555), - [aux_sym_keyword_statement_token1] = ACTIONS(4555), - [aux_sym_keyword_statement_token2] = ACTIONS(4555), - [aux_sym_keyword_statement_token3] = ACTIONS(4555), - [aux_sym_keyword_statement_token4] = ACTIONS(4555), - [aux_sym_keyword_statement_token6] = ACTIONS(4555), - [aux_sym_keyword_statement_token7] = ACTIONS(4555), - [aux_sym_include_statement_token1] = ACTIONS(4555), - [aux_sym_data_statement_token1] = ACTIONS(4555), - [aux_sym_do_loop_statement_token1] = ACTIONS(4555), - [aux_sym__inline_if_statement_token1] = ACTIONS(4555), - [aux_sym_end_if_statement_token1] = ACTIONS(4555), - [aux_sym_elseif_clause_token2] = ACTIONS(4555), - [aux_sym__inline_where_statement_token1] = ACTIONS(4555), - [aux_sym__forall_control_expression_token1] = ACTIONS(4555), - [aux_sym_select_case_statement_token1] = ACTIONS(4555), - [aux_sym_select_case_statement_token3] = ACTIONS(4555), - [aux_sym_select_type_statement_token1] = ACTIONS(4555), - [aux_sym_select_rank_statement_token2] = ACTIONS(4555), - [aux_sym_block_construct_token1] = ACTIONS(4555), - [aux_sym_associate_statement_token1] = ACTIONS(4555), - [aux_sym_format_statement_token1] = ACTIONS(4555), - [aux_sym_print_statement_token1] = ACTIONS(4555), - [aux_sym_open_statement_token1] = ACTIONS(4555), - [aux_sym_close_statement_token1] = ACTIONS(4555), - [aux_sym_inquire_statement_token1] = ACTIONS(4555), - [aux_sym_enum_statement_token1] = ACTIONS(4555), - [aux_sym_file_position_statement_token1] = ACTIONS(4555), - [aux_sym_file_position_statement_token2] = ACTIONS(4555), - [aux_sym_file_position_statement_token3] = ACTIONS(4555), - [aux_sym_file_position_statement_token4] = ACTIONS(4555), - [aux_sym_allocate_statement_token1] = ACTIONS(4555), - [aux_sym_entry_statement_token1] = ACTIONS(4555), - [aux_sym_logical_expression_token5] = ACTIONS(4557), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_LPAREN_SLASH] = ACTIONS(4557), - [anon_sym_LBRACK] = ACTIONS(4557), - [aux_sym_boolean_literal_token1] = ACTIONS(4557), - [aux_sym_boolean_literal_token2] = ACTIONS(4557), - [aux_sym_null_literal_token1] = ACTIONS(4555), - [aux_sym_coarray_statement_token1] = ACTIONS(4555), - [aux_sym_coarray_statement_token2] = ACTIONS(4555), - [aux_sym_coarray_statement_token6] = ACTIONS(4555), - [aux_sym_coarray_statement_token8] = ACTIONS(4555), - [aux_sym_coarray_statement_token11] = ACTIONS(4555), - [aux_sym_coarray_statement_token12] = ACTIONS(4555), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4555), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4555), - [aux_sym_identifier_token1] = ACTIONS(4555), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4557), - [sym__float_literal] = ACTIONS(4557), - [sym__boz_literal] = ACTIONS(4557), - [sym__string_literal] = ACTIONS(4557), - [sym__string_literal_kind] = ACTIONS(4557), - }, - [1013] = { - [ts_builtin_sym_end] = ACTIONS(4467), - [aux_sym_preproc_include_token1] = ACTIONS(4465), - [aux_sym_preproc_def_token1] = ACTIONS(4465), - [aux_sym_preproc_if_token1] = ACTIONS(4465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4465), - [sym_preproc_directive] = ACTIONS(4465), - [anon_sym_LPAREN2] = ACTIONS(4465), - [anon_sym_PLUS] = ACTIONS(4467), - [anon_sym_DASH] = ACTIONS(4467), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4465), - [aux_sym_end_program_statement_token1] = ACTIONS(4465), - [aux_sym_end_program_statement_token2] = ACTIONS(4465), - [aux_sym_module_statement_token1] = ACTIONS(4465), - [aux_sym_submodule_statement_token1] = ACTIONS(4465), - [aux_sym_interface_statement_token1] = ACTIONS(4465), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4465), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4465), - [aux_sym_subroutine_statement_token1] = ACTIONS(4465), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4465), - [aux_sym_function_statement_token1] = ACTIONS(4465), - [aux_sym_language_binding_token1] = ACTIONS(4465), - [aux_sym_procedure_attributes_token1] = ACTIONS(4465), - [aux_sym_procedure_attributes_token3] = ACTIONS(4465), - [aux_sym_contains_statement_token1] = ACTIONS(4465), - [aux_sym_use_statement_token1] = ACTIONS(4465), - [aux_sym_use_statement_token2] = ACTIONS(4465), - [aux_sym_implicit_statement_token1] = ACTIONS(4465), - [aux_sym_implicit_statement_token3] = ACTIONS(4465), - [aux_sym_implicit_statement_token4] = ACTIONS(4465), - [aux_sym_save_statement_token1] = ACTIONS(4465), - [aux_sym_private_statement_token1] = ACTIONS(4465), - [aux_sym_public_statement_token1] = ACTIONS(4465), - [aux_sym_namelist_statement_token1] = ACTIONS(4465), - [aux_sym_common_statement_token1] = ACTIONS(4465), - [aux_sym_import_statement_token1] = ACTIONS(4465), - [aux_sym_derived_type_definition_token1] = ACTIONS(4465), - [aux_sym_abstract_specifier_token1] = ACTIONS(4465), - [aux_sym_procedure_attribute_token6] = ACTIONS(4465), - [aux_sym_variable_attributes_token1] = ACTIONS(4465), - [aux_sym_variable_attributes_token2] = ACTIONS(4465), - [aux_sym_variable_attributes_token3] = ACTIONS(4465), - [aux_sym_variable_attributes_token4] = ACTIONS(4465), - [aux_sym_variable_attributes_token5] = ACTIONS(4465), - [aux_sym__intrinsic_type_token1] = ACTIONS(4465), - [aux_sym__intrinsic_type_token2] = ACTIONS(4465), - [aux_sym__intrinsic_type_token3] = ACTIONS(4465), - [aux_sym__intrinsic_type_token4] = ACTIONS(4465), - [aux_sym__intrinsic_type_token6] = ACTIONS(4465), - [aux_sym__intrinsic_type_token7] = ACTIONS(4465), - [aux_sym__intrinsic_type_token8] = ACTIONS(4465), - [aux_sym__intrinsic_type_token9] = ACTIONS(4465), - [aux_sym__intrinsic_type_token10] = ACTIONS(4465), - [aux_sym_derived_type_token1] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4465), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4465), - [aux_sym_type_qualifier_token1] = ACTIONS(4465), - [aux_sym_type_qualifier_token2] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4465), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4465), - [aux_sym_equivalence_statement_token1] = ACTIONS(4465), - [anon_sym_SEMI] = ACTIONS(4467), - [aux_sym_stop_statement_token1] = ACTIONS(4465), - [aux_sym_stop_statement_token2] = ACTIONS(4465), - [aux_sym_subroutine_call_token1] = ACTIONS(4465), - [aux_sym_keyword_statement_token1] = ACTIONS(4465), - [aux_sym_keyword_statement_token2] = ACTIONS(4465), - [aux_sym_keyword_statement_token3] = ACTIONS(4465), - [aux_sym_keyword_statement_token4] = ACTIONS(4465), - [aux_sym_keyword_statement_token6] = ACTIONS(4465), - [aux_sym_keyword_statement_token7] = ACTIONS(4465), - [aux_sym_include_statement_token1] = ACTIONS(4465), - [aux_sym_data_statement_token1] = ACTIONS(4465), - [aux_sym_do_loop_statement_token1] = ACTIONS(4465), - [aux_sym__inline_if_statement_token1] = ACTIONS(4465), - [aux_sym_end_if_statement_token1] = ACTIONS(4465), - [aux_sym_elseif_clause_token2] = ACTIONS(4465), - [aux_sym__inline_where_statement_token1] = ACTIONS(4465), - [aux_sym__forall_control_expression_token1] = ACTIONS(4465), - [aux_sym_select_case_statement_token1] = ACTIONS(4465), - [aux_sym_select_case_statement_token3] = ACTIONS(4465), - [aux_sym_select_type_statement_token1] = ACTIONS(4465), - [aux_sym_select_rank_statement_token2] = ACTIONS(4465), - [aux_sym_block_construct_token1] = ACTIONS(4465), - [aux_sym_associate_statement_token1] = ACTIONS(4465), - [aux_sym_format_statement_token1] = ACTIONS(4465), - [aux_sym_print_statement_token1] = ACTIONS(4465), - [aux_sym_open_statement_token1] = ACTIONS(4465), - [aux_sym_close_statement_token1] = ACTIONS(4465), - [aux_sym_inquire_statement_token1] = ACTIONS(4465), - [aux_sym_enum_statement_token1] = ACTIONS(4465), - [aux_sym_file_position_statement_token1] = ACTIONS(4465), - [aux_sym_file_position_statement_token2] = ACTIONS(4465), - [aux_sym_file_position_statement_token3] = ACTIONS(4465), - [aux_sym_file_position_statement_token4] = ACTIONS(4465), - [aux_sym_allocate_statement_token1] = ACTIONS(4465), - [aux_sym_entry_statement_token1] = ACTIONS(4465), - [aux_sym_logical_expression_token5] = ACTIONS(4467), - [anon_sym_DOT] = ACTIONS(4465), - [anon_sym_LPAREN_SLASH] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4467), - [aux_sym_boolean_literal_token1] = ACTIONS(4467), - [aux_sym_boolean_literal_token2] = ACTIONS(4467), - [aux_sym_null_literal_token1] = ACTIONS(4465), - [aux_sym_coarray_statement_token1] = ACTIONS(4465), - [aux_sym_coarray_statement_token2] = ACTIONS(4465), - [aux_sym_coarray_statement_token6] = ACTIONS(4465), - [aux_sym_coarray_statement_token8] = ACTIONS(4465), - [aux_sym_coarray_statement_token11] = ACTIONS(4465), - [aux_sym_coarray_statement_token12] = ACTIONS(4465), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4465), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4465), - [aux_sym_identifier_token1] = ACTIONS(4465), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4467), - [sym__float_literal] = ACTIONS(4467), - [sym__boz_literal] = ACTIONS(4467), - [sym__string_literal] = ACTIONS(4467), - [sym__string_literal_kind] = ACTIONS(4467), + [sym__integer_literal] = ACTIONS(4605), + [sym__float_literal] = ACTIONS(4605), + [sym__boz_literal] = ACTIONS(4605), + [sym__string_literal] = ACTIONS(4605), + [sym__string_literal_kind] = ACTIONS(4605), + }, + [1002] = { + [ts_builtin_sym_end] = ACTIONS(4393), + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token2] = ACTIONS(4391), + [aux_sym_module_statement_token1] = ACTIONS(4391), + [aux_sym_submodule_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_subroutine_statement_token1] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_function_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4391), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4391), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4391), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [1014] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(7510), - [sym_preproc_elif_in_module] = STATE(7510), - [sym_preproc_elifdef_in_module] = STATE(7510), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5817), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [1003] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(7809), + [sym_preproc_elif_in_module] = STATE(7809), + [sym_preproc_elifdef_in_module] = STATE(7809), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5662), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4747), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4731), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -227277,8 +225792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -227290,9 +225805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -227321,11 +225836,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -227342,60 +225857,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, - [1015] = { - [sym_preproc_include] = STATE(1029), - [sym_preproc_def] = STATE(1029), - [sym_preproc_function_def] = STATE(1029), - [sym_preproc_call] = STATE(1029), - [sym_preproc_else_in_module] = STATE(7510), - [sym_preproc_elif_in_module] = STATE(7510), - [sym_preproc_elifdef_in_module] = STATE(7510), - [sym_interface] = STATE(1029), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5817), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1029), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1029), - [sym_public_statement] = STATE(1029), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1029), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [1004] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(8359), + [sym_preproc_elif_in_module] = STATE(8359), + [sym_preproc_elifdef_in_module] = STATE(8359), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5637), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1029), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1029), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4747), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4733), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -227412,8 +225927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -227425,9 +225940,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -227456,11 +225971,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -227477,195 +225992,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(4525), - [aux_sym_preproc_include_token1] = ACTIONS(4523), - [aux_sym_preproc_def_token1] = ACTIONS(4523), - [aux_sym_preproc_if_token1] = ACTIONS(4523), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4523), - [sym_preproc_directive] = ACTIONS(4523), - [anon_sym_LPAREN2] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4523), - [aux_sym_end_program_statement_token1] = ACTIONS(4523), - [aux_sym_end_program_statement_token2] = ACTIONS(4523), - [aux_sym_module_statement_token1] = ACTIONS(4523), - [aux_sym_submodule_statement_token1] = ACTIONS(4523), - [aux_sym_interface_statement_token1] = ACTIONS(4523), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4523), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4523), - [aux_sym_subroutine_statement_token1] = ACTIONS(4523), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4523), - [aux_sym_function_statement_token1] = ACTIONS(4523), - [aux_sym_language_binding_token1] = ACTIONS(4523), - [aux_sym_procedure_attributes_token1] = ACTIONS(4523), - [aux_sym_procedure_attributes_token3] = ACTIONS(4523), - [aux_sym_contains_statement_token1] = ACTIONS(4523), - [aux_sym_use_statement_token1] = ACTIONS(4523), - [aux_sym_use_statement_token2] = ACTIONS(4523), - [aux_sym_implicit_statement_token1] = ACTIONS(4523), - [aux_sym_implicit_statement_token3] = ACTIONS(4523), - [aux_sym_implicit_statement_token4] = ACTIONS(4523), - [aux_sym_save_statement_token1] = ACTIONS(4523), - [aux_sym_private_statement_token1] = ACTIONS(4523), - [aux_sym_public_statement_token1] = ACTIONS(4523), - [aux_sym_namelist_statement_token1] = ACTIONS(4523), - [aux_sym_common_statement_token1] = ACTIONS(4523), - [aux_sym_import_statement_token1] = ACTIONS(4523), - [aux_sym_derived_type_definition_token1] = ACTIONS(4523), - [aux_sym_abstract_specifier_token1] = ACTIONS(4523), - [aux_sym_procedure_attribute_token6] = ACTIONS(4523), - [aux_sym_variable_attributes_token1] = ACTIONS(4523), - [aux_sym_variable_attributes_token2] = ACTIONS(4523), - [aux_sym_variable_attributes_token3] = ACTIONS(4523), - [aux_sym_variable_attributes_token4] = ACTIONS(4523), - [aux_sym_variable_attributes_token5] = ACTIONS(4523), - [aux_sym__intrinsic_type_token1] = ACTIONS(4523), - [aux_sym__intrinsic_type_token2] = ACTIONS(4523), - [aux_sym__intrinsic_type_token3] = ACTIONS(4523), - [aux_sym__intrinsic_type_token4] = ACTIONS(4523), - [aux_sym__intrinsic_type_token6] = ACTIONS(4523), - [aux_sym__intrinsic_type_token7] = ACTIONS(4523), - [aux_sym__intrinsic_type_token8] = ACTIONS(4523), - [aux_sym__intrinsic_type_token9] = ACTIONS(4523), - [aux_sym__intrinsic_type_token10] = ACTIONS(4523), - [aux_sym_derived_type_token1] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4523), - [aux_sym_type_qualifier_token1] = ACTIONS(4523), - [aux_sym_type_qualifier_token2] = ACTIONS(4523), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4523), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4523), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4523), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4523), - [aux_sym_equivalence_statement_token1] = ACTIONS(4523), - [anon_sym_SEMI] = ACTIONS(4525), - [aux_sym_stop_statement_token1] = ACTIONS(4523), - [aux_sym_stop_statement_token2] = ACTIONS(4523), - [aux_sym_subroutine_call_token1] = ACTIONS(4523), - [aux_sym_keyword_statement_token1] = ACTIONS(4523), - [aux_sym_keyword_statement_token2] = ACTIONS(4523), - [aux_sym_keyword_statement_token3] = ACTIONS(4523), - [aux_sym_keyword_statement_token4] = ACTIONS(4523), - [aux_sym_keyword_statement_token6] = ACTIONS(4523), - [aux_sym_keyword_statement_token7] = ACTIONS(4523), - [aux_sym_include_statement_token1] = ACTIONS(4523), - [aux_sym_data_statement_token1] = ACTIONS(4523), - [aux_sym_do_loop_statement_token1] = ACTIONS(4523), - [aux_sym__inline_if_statement_token1] = ACTIONS(4523), - [aux_sym_end_if_statement_token1] = ACTIONS(4523), - [aux_sym_elseif_clause_token2] = ACTIONS(4523), - [aux_sym__inline_where_statement_token1] = ACTIONS(4523), - [aux_sym__forall_control_expression_token1] = ACTIONS(4523), - [aux_sym_select_case_statement_token1] = ACTIONS(4523), - [aux_sym_select_case_statement_token3] = ACTIONS(4523), - [aux_sym_select_type_statement_token1] = ACTIONS(4523), - [aux_sym_select_rank_statement_token2] = ACTIONS(4523), - [aux_sym_block_construct_token1] = ACTIONS(4523), - [aux_sym_associate_statement_token1] = ACTIONS(4523), - [aux_sym_format_statement_token1] = ACTIONS(4523), - [aux_sym_print_statement_token1] = ACTIONS(4523), - [aux_sym_open_statement_token1] = ACTIONS(4523), - [aux_sym_close_statement_token1] = ACTIONS(4523), - [aux_sym_inquire_statement_token1] = ACTIONS(4523), - [aux_sym_enum_statement_token1] = ACTIONS(4523), - [aux_sym_file_position_statement_token1] = ACTIONS(4523), - [aux_sym_file_position_statement_token2] = ACTIONS(4523), - [aux_sym_file_position_statement_token3] = ACTIONS(4523), - [aux_sym_file_position_statement_token4] = ACTIONS(4523), - [aux_sym_allocate_statement_token1] = ACTIONS(4523), - [aux_sym_entry_statement_token1] = ACTIONS(4523), - [aux_sym_logical_expression_token5] = ACTIONS(4525), - [anon_sym_DOT] = ACTIONS(4523), - [anon_sym_LPAREN_SLASH] = ACTIONS(4525), - [anon_sym_LBRACK] = ACTIONS(4525), - [aux_sym_boolean_literal_token1] = ACTIONS(4525), - [aux_sym_boolean_literal_token2] = ACTIONS(4525), - [aux_sym_null_literal_token1] = ACTIONS(4523), - [aux_sym_coarray_statement_token1] = ACTIONS(4523), - [aux_sym_coarray_statement_token2] = ACTIONS(4523), - [aux_sym_coarray_statement_token6] = ACTIONS(4523), - [aux_sym_coarray_statement_token8] = ACTIONS(4523), - [aux_sym_coarray_statement_token11] = ACTIONS(4523), - [aux_sym_coarray_statement_token12] = ACTIONS(4523), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4523), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4523), - [aux_sym_identifier_token1] = ACTIONS(4523), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4525), - [sym__float_literal] = ACTIONS(4525), - [sym__boz_literal] = ACTIONS(4525), - [sym__string_literal] = ACTIONS(4525), - [sym__string_literal_kind] = ACTIONS(4525), + [sym__integer_literal] = ACTIONS(4665), }, - [1017] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(8154), - [sym_preproc_elif_in_module] = STATE(8154), - [sym_preproc_elifdef_in_module] = STATE(8154), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5706), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [1005] = { + [sym_preproc_include] = STATE(1013), + [sym_preproc_def] = STATE(1013), + [sym_preproc_function_def] = STATE(1013), + [sym_preproc_call] = STATE(1013), + [sym_preproc_else_in_module] = STATE(8359), + [sym_preproc_elif_in_module] = STATE(8359), + [sym_preproc_elifdef_in_module] = STATE(8359), + [sym_interface] = STATE(1013), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5637), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1013), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1013), + [sym_public_statement] = STATE(1013), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1013), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1013), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4749), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1013), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4733), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -227682,8 +226062,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -227695,9 +226075,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -227726,11 +226106,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -227747,1545 +226127,735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(4471), - [aux_sym_preproc_include_token1] = ACTIONS(4469), - [aux_sym_preproc_def_token1] = ACTIONS(4469), - [aux_sym_preproc_if_token1] = ACTIONS(4469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4469), - [sym_preproc_directive] = ACTIONS(4469), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4469), - [aux_sym_end_program_statement_token1] = ACTIONS(4469), - [aux_sym_end_program_statement_token2] = ACTIONS(4469), - [aux_sym_module_statement_token1] = ACTIONS(4469), - [aux_sym_submodule_statement_token1] = ACTIONS(4469), - [aux_sym_interface_statement_token1] = ACTIONS(4469), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4469), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4469), - [aux_sym_subroutine_statement_token1] = ACTIONS(4469), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4469), - [aux_sym_function_statement_token1] = ACTIONS(4469), - [aux_sym_language_binding_token1] = ACTIONS(4469), - [aux_sym_procedure_attributes_token1] = ACTIONS(4469), - [aux_sym_procedure_attributes_token3] = ACTIONS(4469), - [aux_sym_contains_statement_token1] = ACTIONS(4469), - [aux_sym_use_statement_token1] = ACTIONS(4469), - [aux_sym_use_statement_token2] = ACTIONS(4469), - [aux_sym_implicit_statement_token1] = ACTIONS(4469), - [aux_sym_implicit_statement_token3] = ACTIONS(4469), - [aux_sym_implicit_statement_token4] = ACTIONS(4469), - [aux_sym_save_statement_token1] = ACTIONS(4469), - [aux_sym_private_statement_token1] = ACTIONS(4469), - [aux_sym_public_statement_token1] = ACTIONS(4469), - [aux_sym_namelist_statement_token1] = ACTIONS(4469), - [aux_sym_common_statement_token1] = ACTIONS(4469), - [aux_sym_import_statement_token1] = ACTIONS(4469), - [aux_sym_derived_type_definition_token1] = ACTIONS(4469), - [aux_sym_abstract_specifier_token1] = ACTIONS(4469), - [aux_sym_procedure_attribute_token6] = ACTIONS(4469), - [aux_sym_variable_attributes_token1] = ACTIONS(4469), - [aux_sym_variable_attributes_token2] = ACTIONS(4469), - [aux_sym_variable_attributes_token3] = ACTIONS(4469), - [aux_sym_variable_attributes_token4] = ACTIONS(4469), - [aux_sym_variable_attributes_token5] = ACTIONS(4469), - [aux_sym__intrinsic_type_token1] = ACTIONS(4469), - [aux_sym__intrinsic_type_token2] = ACTIONS(4469), - [aux_sym__intrinsic_type_token3] = ACTIONS(4469), - [aux_sym__intrinsic_type_token4] = ACTIONS(4469), - [aux_sym__intrinsic_type_token6] = ACTIONS(4469), - [aux_sym__intrinsic_type_token7] = ACTIONS(4469), - [aux_sym__intrinsic_type_token8] = ACTIONS(4469), - [aux_sym__intrinsic_type_token9] = ACTIONS(4469), - [aux_sym__intrinsic_type_token10] = ACTIONS(4469), - [aux_sym_derived_type_token1] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4469), - [aux_sym_type_qualifier_token1] = ACTIONS(4469), - [aux_sym_type_qualifier_token2] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4469), - [aux_sym_equivalence_statement_token1] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [aux_sym_stop_statement_token1] = ACTIONS(4469), - [aux_sym_stop_statement_token2] = ACTIONS(4469), - [aux_sym_subroutine_call_token1] = ACTIONS(4469), - [aux_sym_keyword_statement_token1] = ACTIONS(4469), - [aux_sym_keyword_statement_token2] = ACTIONS(4469), - [aux_sym_keyword_statement_token3] = ACTIONS(4469), - [aux_sym_keyword_statement_token4] = ACTIONS(4469), - [aux_sym_keyword_statement_token6] = ACTIONS(4469), - [aux_sym_keyword_statement_token7] = ACTIONS(4469), - [aux_sym_include_statement_token1] = ACTIONS(4469), - [aux_sym_data_statement_token1] = ACTIONS(4469), - [aux_sym_do_loop_statement_token1] = ACTIONS(4469), - [aux_sym__inline_if_statement_token1] = ACTIONS(4469), - [aux_sym_end_if_statement_token1] = ACTIONS(4469), - [aux_sym_elseif_clause_token2] = ACTIONS(4469), - [aux_sym__inline_where_statement_token1] = ACTIONS(4469), - [aux_sym__forall_control_expression_token1] = ACTIONS(4469), - [aux_sym_select_case_statement_token1] = ACTIONS(4469), - [aux_sym_select_case_statement_token3] = ACTIONS(4469), - [aux_sym_select_type_statement_token1] = ACTIONS(4469), - [aux_sym_select_rank_statement_token2] = ACTIONS(4469), - [aux_sym_block_construct_token1] = ACTIONS(4469), - [aux_sym_associate_statement_token1] = ACTIONS(4469), - [aux_sym_format_statement_token1] = ACTIONS(4469), - [aux_sym_print_statement_token1] = ACTIONS(4469), - [aux_sym_open_statement_token1] = ACTIONS(4469), - [aux_sym_close_statement_token1] = ACTIONS(4469), - [aux_sym_inquire_statement_token1] = ACTIONS(4469), - [aux_sym_enum_statement_token1] = ACTIONS(4469), - [aux_sym_file_position_statement_token1] = ACTIONS(4469), - [aux_sym_file_position_statement_token2] = ACTIONS(4469), - [aux_sym_file_position_statement_token3] = ACTIONS(4469), - [aux_sym_file_position_statement_token4] = ACTIONS(4469), - [aux_sym_allocate_statement_token1] = ACTIONS(4469), - [aux_sym_entry_statement_token1] = ACTIONS(4469), - [aux_sym_logical_expression_token5] = ACTIONS(4471), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_LPAREN_SLASH] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [aux_sym_boolean_literal_token1] = ACTIONS(4471), - [aux_sym_boolean_literal_token2] = ACTIONS(4471), - [aux_sym_null_literal_token1] = ACTIONS(4469), - [aux_sym_coarray_statement_token1] = ACTIONS(4469), - [aux_sym_coarray_statement_token2] = ACTIONS(4469), - [aux_sym_coarray_statement_token6] = ACTIONS(4469), - [aux_sym_coarray_statement_token8] = ACTIONS(4469), - [aux_sym_coarray_statement_token11] = ACTIONS(4469), - [aux_sym_coarray_statement_token12] = ACTIONS(4469), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4469), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4469), - [aux_sym_identifier_token1] = ACTIONS(4469), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4471), - [sym__float_literal] = ACTIONS(4471), - [sym__boz_literal] = ACTIONS(4471), - [sym__string_literal] = ACTIONS(4471), - [sym__string_literal_kind] = ACTIONS(4471), - }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(4475), - [aux_sym_preproc_include_token1] = ACTIONS(4473), - [aux_sym_preproc_def_token1] = ACTIONS(4473), - [aux_sym_preproc_if_token1] = ACTIONS(4473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4473), - [sym_preproc_directive] = ACTIONS(4473), - [anon_sym_LPAREN2] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4473), - [aux_sym_end_program_statement_token1] = ACTIONS(4473), - [aux_sym_end_program_statement_token2] = ACTIONS(4473), - [aux_sym_module_statement_token1] = ACTIONS(4473), - [aux_sym_submodule_statement_token1] = ACTIONS(4473), - [aux_sym_interface_statement_token1] = ACTIONS(4473), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4473), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4473), - [aux_sym_subroutine_statement_token1] = ACTIONS(4473), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4473), - [aux_sym_function_statement_token1] = ACTIONS(4473), - [aux_sym_language_binding_token1] = ACTIONS(4473), - [aux_sym_procedure_attributes_token1] = ACTIONS(4473), - [aux_sym_procedure_attributes_token3] = ACTIONS(4473), - [aux_sym_contains_statement_token1] = ACTIONS(4473), - [aux_sym_use_statement_token1] = ACTIONS(4473), - [aux_sym_use_statement_token2] = ACTIONS(4473), - [aux_sym_implicit_statement_token1] = ACTIONS(4473), - [aux_sym_implicit_statement_token3] = ACTIONS(4473), - [aux_sym_implicit_statement_token4] = ACTIONS(4473), - [aux_sym_save_statement_token1] = ACTIONS(4473), - [aux_sym_private_statement_token1] = ACTIONS(4473), - [aux_sym_public_statement_token1] = ACTIONS(4473), - [aux_sym_namelist_statement_token1] = ACTIONS(4473), - [aux_sym_common_statement_token1] = ACTIONS(4473), - [aux_sym_import_statement_token1] = ACTIONS(4473), - [aux_sym_derived_type_definition_token1] = ACTIONS(4473), - [aux_sym_abstract_specifier_token1] = ACTIONS(4473), - [aux_sym_procedure_attribute_token6] = ACTIONS(4473), - [aux_sym_variable_attributes_token1] = ACTIONS(4473), - [aux_sym_variable_attributes_token2] = ACTIONS(4473), - [aux_sym_variable_attributes_token3] = ACTIONS(4473), - [aux_sym_variable_attributes_token4] = ACTIONS(4473), - [aux_sym_variable_attributes_token5] = ACTIONS(4473), - [aux_sym__intrinsic_type_token1] = ACTIONS(4473), - [aux_sym__intrinsic_type_token2] = ACTIONS(4473), - [aux_sym__intrinsic_type_token3] = ACTIONS(4473), - [aux_sym__intrinsic_type_token4] = ACTIONS(4473), - [aux_sym__intrinsic_type_token6] = ACTIONS(4473), - [aux_sym__intrinsic_type_token7] = ACTIONS(4473), - [aux_sym__intrinsic_type_token8] = ACTIONS(4473), - [aux_sym__intrinsic_type_token9] = ACTIONS(4473), - [aux_sym__intrinsic_type_token10] = ACTIONS(4473), - [aux_sym_derived_type_token1] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4473), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4473), - [aux_sym_type_qualifier_token1] = ACTIONS(4473), - [aux_sym_type_qualifier_token2] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4473), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4473), - [aux_sym_equivalence_statement_token1] = ACTIONS(4473), - [anon_sym_SEMI] = ACTIONS(4475), - [aux_sym_stop_statement_token1] = ACTIONS(4473), - [aux_sym_stop_statement_token2] = ACTIONS(4473), - [aux_sym_subroutine_call_token1] = ACTIONS(4473), - [aux_sym_keyword_statement_token1] = ACTIONS(4473), - [aux_sym_keyword_statement_token2] = ACTIONS(4473), - [aux_sym_keyword_statement_token3] = ACTIONS(4473), - [aux_sym_keyword_statement_token4] = ACTIONS(4473), - [aux_sym_keyword_statement_token6] = ACTIONS(4473), - [aux_sym_keyword_statement_token7] = ACTIONS(4473), - [aux_sym_include_statement_token1] = ACTIONS(4473), - [aux_sym_data_statement_token1] = ACTIONS(4473), - [aux_sym_do_loop_statement_token1] = ACTIONS(4473), - [aux_sym__inline_if_statement_token1] = ACTIONS(4473), - [aux_sym_end_if_statement_token1] = ACTIONS(4473), - [aux_sym_elseif_clause_token2] = ACTIONS(4473), - [aux_sym__inline_where_statement_token1] = ACTIONS(4473), - [aux_sym__forall_control_expression_token1] = ACTIONS(4473), - [aux_sym_select_case_statement_token1] = ACTIONS(4473), - [aux_sym_select_case_statement_token3] = ACTIONS(4473), - [aux_sym_select_type_statement_token1] = ACTIONS(4473), - [aux_sym_select_rank_statement_token2] = ACTIONS(4473), - [aux_sym_block_construct_token1] = ACTIONS(4473), - [aux_sym_associate_statement_token1] = ACTIONS(4473), - [aux_sym_format_statement_token1] = ACTIONS(4473), - [aux_sym_print_statement_token1] = ACTIONS(4473), - [aux_sym_open_statement_token1] = ACTIONS(4473), - [aux_sym_close_statement_token1] = ACTIONS(4473), - [aux_sym_inquire_statement_token1] = ACTIONS(4473), - [aux_sym_enum_statement_token1] = ACTIONS(4473), - [aux_sym_file_position_statement_token1] = ACTIONS(4473), - [aux_sym_file_position_statement_token2] = ACTIONS(4473), - [aux_sym_file_position_statement_token3] = ACTIONS(4473), - [aux_sym_file_position_statement_token4] = ACTIONS(4473), - [aux_sym_allocate_statement_token1] = ACTIONS(4473), - [aux_sym_entry_statement_token1] = ACTIONS(4473), - [aux_sym_logical_expression_token5] = ACTIONS(4475), - [anon_sym_DOT] = ACTIONS(4473), - [anon_sym_LPAREN_SLASH] = ACTIONS(4475), - [anon_sym_LBRACK] = ACTIONS(4475), - [aux_sym_boolean_literal_token1] = ACTIONS(4475), - [aux_sym_boolean_literal_token2] = ACTIONS(4475), - [aux_sym_null_literal_token1] = ACTIONS(4473), - [aux_sym_coarray_statement_token1] = ACTIONS(4473), - [aux_sym_coarray_statement_token2] = ACTIONS(4473), - [aux_sym_coarray_statement_token6] = ACTIONS(4473), - [aux_sym_coarray_statement_token8] = ACTIONS(4473), - [aux_sym_coarray_statement_token11] = ACTIONS(4473), - [aux_sym_coarray_statement_token12] = ACTIONS(4473), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4473), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4473), - [aux_sym_identifier_token1] = ACTIONS(4473), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4475), - [sym__float_literal] = ACTIONS(4475), - [sym__boz_literal] = ACTIONS(4475), - [sym__string_literal] = ACTIONS(4475), - [sym__string_literal_kind] = ACTIONS(4475), - }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(4549), - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4547), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_end_program_statement_token2] = ACTIONS(4547), - [aux_sym_module_statement_token1] = ACTIONS(4547), - [aux_sym_submodule_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_subroutine_statement_token1] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_function_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4547), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), - }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(4463), - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4461), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_end_program_statement_token2] = ACTIONS(4461), - [aux_sym_module_statement_token1] = ACTIONS(4461), - [aux_sym_submodule_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_subroutine_statement_token1] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_function_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4461), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), - }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(4385), - [aux_sym_preproc_include_token1] = ACTIONS(4383), - [aux_sym_preproc_def_token1] = ACTIONS(4383), - [aux_sym_preproc_if_token1] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), - [sym_preproc_directive] = ACTIONS(4383), - [anon_sym_LPAREN2] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4383), - [aux_sym_end_program_statement_token1] = ACTIONS(4383), - [aux_sym_end_program_statement_token2] = ACTIONS(4383), - [aux_sym_module_statement_token1] = ACTIONS(4383), - [aux_sym_submodule_statement_token1] = ACTIONS(4383), - [aux_sym_interface_statement_token1] = ACTIONS(4383), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), - [aux_sym_subroutine_statement_token1] = ACTIONS(4383), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), - [aux_sym_function_statement_token1] = ACTIONS(4383), - [aux_sym_language_binding_token1] = ACTIONS(4383), - [aux_sym_procedure_attributes_token1] = ACTIONS(4383), - [aux_sym_procedure_attributes_token3] = ACTIONS(4383), - [aux_sym_contains_statement_token1] = ACTIONS(4383), - [aux_sym_use_statement_token1] = ACTIONS(4383), - [aux_sym_use_statement_token2] = ACTIONS(4383), - [aux_sym_implicit_statement_token1] = ACTIONS(4383), - [aux_sym_implicit_statement_token3] = ACTIONS(4383), - [aux_sym_implicit_statement_token4] = ACTIONS(4383), - [aux_sym_save_statement_token1] = ACTIONS(4383), - [aux_sym_private_statement_token1] = ACTIONS(4383), - [aux_sym_public_statement_token1] = ACTIONS(4383), - [aux_sym_namelist_statement_token1] = ACTIONS(4383), - [aux_sym_common_statement_token1] = ACTIONS(4383), - [aux_sym_import_statement_token1] = ACTIONS(4383), - [aux_sym_derived_type_definition_token1] = ACTIONS(4383), - [aux_sym_abstract_specifier_token1] = ACTIONS(4383), - [aux_sym_procedure_attribute_token6] = ACTIONS(4383), - [aux_sym_variable_attributes_token1] = ACTIONS(4383), - [aux_sym_variable_attributes_token2] = ACTIONS(4383), - [aux_sym_variable_attributes_token3] = ACTIONS(4383), - [aux_sym_variable_attributes_token4] = ACTIONS(4383), - [aux_sym_variable_attributes_token5] = ACTIONS(4383), - [aux_sym__intrinsic_type_token1] = ACTIONS(4383), - [aux_sym__intrinsic_type_token2] = ACTIONS(4383), - [aux_sym__intrinsic_type_token3] = ACTIONS(4383), - [aux_sym__intrinsic_type_token4] = ACTIONS(4383), - [aux_sym__intrinsic_type_token6] = ACTIONS(4383), - [aux_sym__intrinsic_type_token7] = ACTIONS(4383), - [aux_sym__intrinsic_type_token8] = ACTIONS(4383), - [aux_sym__intrinsic_type_token9] = ACTIONS(4383), - [aux_sym__intrinsic_type_token10] = ACTIONS(4383), - [aux_sym_derived_type_token1] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), - [aux_sym_type_qualifier_token1] = ACTIONS(4383), - [aux_sym_type_qualifier_token2] = ACTIONS(4383), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4383), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4383), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4383), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4383), - [aux_sym_equivalence_statement_token1] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4385), - [aux_sym_stop_statement_token1] = ACTIONS(4383), - [aux_sym_stop_statement_token2] = ACTIONS(4383), - [aux_sym_subroutine_call_token1] = ACTIONS(4383), - [aux_sym_keyword_statement_token1] = ACTIONS(4383), - [aux_sym_keyword_statement_token2] = ACTIONS(4383), - [aux_sym_keyword_statement_token3] = ACTIONS(4383), - [aux_sym_keyword_statement_token4] = ACTIONS(4383), - [aux_sym_keyword_statement_token6] = ACTIONS(4383), - [aux_sym_keyword_statement_token7] = ACTIONS(4383), - [aux_sym_include_statement_token1] = ACTIONS(4383), - [aux_sym_data_statement_token1] = ACTIONS(4383), - [aux_sym_do_loop_statement_token1] = ACTIONS(4383), - [aux_sym__inline_if_statement_token1] = ACTIONS(4383), - [aux_sym_end_if_statement_token1] = ACTIONS(4383), - [aux_sym_elseif_clause_token2] = ACTIONS(4383), - [aux_sym__inline_where_statement_token1] = ACTIONS(4383), - [aux_sym__forall_control_expression_token1] = ACTIONS(4383), - [aux_sym_select_case_statement_token1] = ACTIONS(4383), - [aux_sym_select_case_statement_token3] = ACTIONS(4383), - [aux_sym_select_type_statement_token1] = ACTIONS(4383), - [aux_sym_select_rank_statement_token2] = ACTIONS(4383), - [aux_sym_block_construct_token1] = ACTIONS(4383), - [aux_sym_associate_statement_token1] = ACTIONS(4383), - [aux_sym_format_statement_token1] = ACTIONS(4383), - [aux_sym_print_statement_token1] = ACTIONS(4383), - [aux_sym_open_statement_token1] = ACTIONS(4383), - [aux_sym_close_statement_token1] = ACTIONS(4383), - [aux_sym_inquire_statement_token1] = ACTIONS(4383), - [aux_sym_enum_statement_token1] = ACTIONS(4383), - [aux_sym_file_position_statement_token1] = ACTIONS(4383), - [aux_sym_file_position_statement_token2] = ACTIONS(4383), - [aux_sym_file_position_statement_token3] = ACTIONS(4383), - [aux_sym_file_position_statement_token4] = ACTIONS(4383), - [aux_sym_allocate_statement_token1] = ACTIONS(4383), - [aux_sym_entry_statement_token1] = ACTIONS(4383), - [aux_sym_logical_expression_token5] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4383), - [anon_sym_LPAREN_SLASH] = ACTIONS(4385), - [anon_sym_LBRACK] = ACTIONS(4385), - [aux_sym_boolean_literal_token1] = ACTIONS(4385), - [aux_sym_boolean_literal_token2] = ACTIONS(4385), - [aux_sym_null_literal_token1] = ACTIONS(4383), - [aux_sym_coarray_statement_token1] = ACTIONS(4383), - [aux_sym_coarray_statement_token2] = ACTIONS(4383), - [aux_sym_coarray_statement_token6] = ACTIONS(4383), - [aux_sym_coarray_statement_token8] = ACTIONS(4383), - [aux_sym_coarray_statement_token11] = ACTIONS(4383), - [aux_sym_coarray_statement_token12] = ACTIONS(4383), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), - [aux_sym_identifier_token1] = ACTIONS(4383), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4385), - [sym__float_literal] = ACTIONS(4385), - [sym__boz_literal] = ACTIONS(4385), - [sym__string_literal] = ACTIONS(4385), - [sym__string_literal_kind] = ACTIONS(4385), - }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(4389), - [aux_sym_preproc_include_token1] = ACTIONS(4387), - [aux_sym_preproc_def_token1] = ACTIONS(4387), - [aux_sym_preproc_if_token1] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), - [sym_preproc_directive] = ACTIONS(4387), - [anon_sym_LPAREN2] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4389), - [anon_sym_DASH] = ACTIONS(4389), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4387), - [aux_sym_end_program_statement_token1] = ACTIONS(4387), - [aux_sym_end_program_statement_token2] = ACTIONS(4387), - [aux_sym_module_statement_token1] = ACTIONS(4387), - [aux_sym_submodule_statement_token1] = ACTIONS(4387), - [aux_sym_interface_statement_token1] = ACTIONS(4387), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), - [aux_sym_subroutine_statement_token1] = ACTIONS(4387), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), - [aux_sym_function_statement_token1] = ACTIONS(4387), - [aux_sym_language_binding_token1] = ACTIONS(4387), - [aux_sym_procedure_attributes_token1] = ACTIONS(4387), - [aux_sym_procedure_attributes_token3] = ACTIONS(4387), - [aux_sym_contains_statement_token1] = ACTIONS(4387), - [aux_sym_use_statement_token1] = ACTIONS(4387), - [aux_sym_use_statement_token2] = ACTIONS(4387), - [aux_sym_implicit_statement_token1] = ACTIONS(4387), - [aux_sym_implicit_statement_token3] = ACTIONS(4387), - [aux_sym_implicit_statement_token4] = ACTIONS(4387), - [aux_sym_save_statement_token1] = ACTIONS(4387), - [aux_sym_private_statement_token1] = ACTIONS(4387), - [aux_sym_public_statement_token1] = ACTIONS(4387), - [aux_sym_namelist_statement_token1] = ACTIONS(4387), - [aux_sym_common_statement_token1] = ACTIONS(4387), - [aux_sym_import_statement_token1] = ACTIONS(4387), - [aux_sym_derived_type_definition_token1] = ACTIONS(4387), - [aux_sym_abstract_specifier_token1] = ACTIONS(4387), - [aux_sym_procedure_attribute_token6] = ACTIONS(4387), - [aux_sym_variable_attributes_token1] = ACTIONS(4387), - [aux_sym_variable_attributes_token2] = ACTIONS(4387), - [aux_sym_variable_attributes_token3] = ACTIONS(4387), - [aux_sym_variable_attributes_token4] = ACTIONS(4387), - [aux_sym_variable_attributes_token5] = ACTIONS(4387), - [aux_sym__intrinsic_type_token1] = ACTIONS(4387), - [aux_sym__intrinsic_type_token2] = ACTIONS(4387), - [aux_sym__intrinsic_type_token3] = ACTIONS(4387), - [aux_sym__intrinsic_type_token4] = ACTIONS(4387), - [aux_sym__intrinsic_type_token6] = ACTIONS(4387), - [aux_sym__intrinsic_type_token7] = ACTIONS(4387), - [aux_sym__intrinsic_type_token8] = ACTIONS(4387), - [aux_sym__intrinsic_type_token9] = ACTIONS(4387), - [aux_sym__intrinsic_type_token10] = ACTIONS(4387), - [aux_sym_derived_type_token1] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), - [aux_sym_type_qualifier_token1] = ACTIONS(4387), - [aux_sym_type_qualifier_token2] = ACTIONS(4387), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4387), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4387), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4387), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4387), - [aux_sym_equivalence_statement_token1] = ACTIONS(4387), - [anon_sym_SEMI] = ACTIONS(4389), - [aux_sym_stop_statement_token1] = ACTIONS(4387), - [aux_sym_stop_statement_token2] = ACTIONS(4387), - [aux_sym_subroutine_call_token1] = ACTIONS(4387), - [aux_sym_keyword_statement_token1] = ACTIONS(4387), - [aux_sym_keyword_statement_token2] = ACTIONS(4387), - [aux_sym_keyword_statement_token3] = ACTIONS(4387), - [aux_sym_keyword_statement_token4] = ACTIONS(4387), - [aux_sym_keyword_statement_token6] = ACTIONS(4387), - [aux_sym_keyword_statement_token7] = ACTIONS(4387), - [aux_sym_include_statement_token1] = ACTIONS(4387), - [aux_sym_data_statement_token1] = ACTIONS(4387), - [aux_sym_do_loop_statement_token1] = ACTIONS(4387), - [aux_sym__inline_if_statement_token1] = ACTIONS(4387), - [aux_sym_end_if_statement_token1] = ACTIONS(4387), - [aux_sym_elseif_clause_token2] = ACTIONS(4387), - [aux_sym__inline_where_statement_token1] = ACTIONS(4387), - [aux_sym__forall_control_expression_token1] = ACTIONS(4387), - [aux_sym_select_case_statement_token1] = ACTIONS(4387), - [aux_sym_select_case_statement_token3] = ACTIONS(4387), - [aux_sym_select_type_statement_token1] = ACTIONS(4387), - [aux_sym_select_rank_statement_token2] = ACTIONS(4387), - [aux_sym_block_construct_token1] = ACTIONS(4387), - [aux_sym_associate_statement_token1] = ACTIONS(4387), - [aux_sym_format_statement_token1] = ACTIONS(4387), - [aux_sym_print_statement_token1] = ACTIONS(4387), - [aux_sym_open_statement_token1] = ACTIONS(4387), - [aux_sym_close_statement_token1] = ACTIONS(4387), - [aux_sym_inquire_statement_token1] = ACTIONS(4387), - [aux_sym_enum_statement_token1] = ACTIONS(4387), - [aux_sym_file_position_statement_token1] = ACTIONS(4387), - [aux_sym_file_position_statement_token2] = ACTIONS(4387), - [aux_sym_file_position_statement_token3] = ACTIONS(4387), - [aux_sym_file_position_statement_token4] = ACTIONS(4387), - [aux_sym_allocate_statement_token1] = ACTIONS(4387), - [aux_sym_entry_statement_token1] = ACTIONS(4387), - [aux_sym_logical_expression_token5] = ACTIONS(4389), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_LPAREN_SLASH] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [aux_sym_boolean_literal_token1] = ACTIONS(4389), - [aux_sym_boolean_literal_token2] = ACTIONS(4389), - [aux_sym_null_literal_token1] = ACTIONS(4387), - [aux_sym_coarray_statement_token1] = ACTIONS(4387), - [aux_sym_coarray_statement_token2] = ACTIONS(4387), - [aux_sym_coarray_statement_token6] = ACTIONS(4387), - [aux_sym_coarray_statement_token8] = ACTIONS(4387), - [aux_sym_coarray_statement_token11] = ACTIONS(4387), - [aux_sym_coarray_statement_token12] = ACTIONS(4387), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), - [aux_sym_identifier_token1] = ACTIONS(4387), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4389), - [sym__float_literal] = ACTIONS(4389), - [sym__boz_literal] = ACTIONS(4389), - [sym__string_literal] = ACTIONS(4389), - [sym__string_literal_kind] = ACTIONS(4389), + [sym__integer_literal] = ACTIONS(4665), }, - [1024] = { - [ts_builtin_sym_end] = ACTIONS(4393), - [aux_sym_preproc_include_token1] = ACTIONS(4391), - [aux_sym_preproc_def_token1] = ACTIONS(4391), - [aux_sym_preproc_if_token1] = ACTIONS(4391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), - [sym_preproc_directive] = ACTIONS(4391), - [anon_sym_LPAREN2] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), + [1006] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(7460), + [sym_preproc_elif_in_module] = STATE(7460), + [sym_preproc_elifdef_in_module] = STATE(7460), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5638), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4735), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4391), - [aux_sym_end_program_statement_token1] = ACTIONS(4391), - [aux_sym_end_program_statement_token2] = ACTIONS(4391), - [aux_sym_module_statement_token1] = ACTIONS(4391), - [aux_sym_submodule_statement_token1] = ACTIONS(4391), - [aux_sym_interface_statement_token1] = ACTIONS(4391), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), - [aux_sym_subroutine_statement_token1] = ACTIONS(4391), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), - [aux_sym_function_statement_token1] = ACTIONS(4391), - [aux_sym_language_binding_token1] = ACTIONS(4391), - [aux_sym_procedure_attributes_token1] = ACTIONS(4391), - [aux_sym_procedure_attributes_token3] = ACTIONS(4391), - [aux_sym_contains_statement_token1] = ACTIONS(4391), - [aux_sym_use_statement_token1] = ACTIONS(4391), - [aux_sym_use_statement_token2] = ACTIONS(4391), - [aux_sym_implicit_statement_token1] = ACTIONS(4391), - [aux_sym_implicit_statement_token3] = ACTIONS(4391), - [aux_sym_implicit_statement_token4] = ACTIONS(4391), - [aux_sym_save_statement_token1] = ACTIONS(4391), - [aux_sym_private_statement_token1] = ACTIONS(4391), - [aux_sym_public_statement_token1] = ACTIONS(4391), - [aux_sym_namelist_statement_token1] = ACTIONS(4391), - [aux_sym_common_statement_token1] = ACTIONS(4391), - [aux_sym_import_statement_token1] = ACTIONS(4391), - [aux_sym_derived_type_definition_token1] = ACTIONS(4391), - [aux_sym_abstract_specifier_token1] = ACTIONS(4391), - [aux_sym_procedure_attribute_token6] = ACTIONS(4391), - [aux_sym_variable_attributes_token1] = ACTIONS(4391), - [aux_sym_variable_attributes_token2] = ACTIONS(4391), - [aux_sym_variable_attributes_token3] = ACTIONS(4391), - [aux_sym_variable_attributes_token4] = ACTIONS(4391), - [aux_sym_variable_attributes_token5] = ACTIONS(4391), - [aux_sym__intrinsic_type_token1] = ACTIONS(4391), - [aux_sym__intrinsic_type_token2] = ACTIONS(4391), - [aux_sym__intrinsic_type_token3] = ACTIONS(4391), - [aux_sym__intrinsic_type_token4] = ACTIONS(4391), - [aux_sym__intrinsic_type_token6] = ACTIONS(4391), - [aux_sym__intrinsic_type_token7] = ACTIONS(4391), - [aux_sym__intrinsic_type_token8] = ACTIONS(4391), - [aux_sym__intrinsic_type_token9] = ACTIONS(4391), - [aux_sym__intrinsic_type_token10] = ACTIONS(4391), - [aux_sym_derived_type_token1] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), - [aux_sym_type_qualifier_token1] = ACTIONS(4391), - [aux_sym_type_qualifier_token2] = ACTIONS(4391), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4391), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4391), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4391), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4391), - [aux_sym_equivalence_statement_token1] = ACTIONS(4391), - [anon_sym_SEMI] = ACTIONS(4393), - [aux_sym_stop_statement_token1] = ACTIONS(4391), - [aux_sym_stop_statement_token2] = ACTIONS(4391), - [aux_sym_subroutine_call_token1] = ACTIONS(4391), - [aux_sym_keyword_statement_token1] = ACTIONS(4391), - [aux_sym_keyword_statement_token2] = ACTIONS(4391), - [aux_sym_keyword_statement_token3] = ACTIONS(4391), - [aux_sym_keyword_statement_token4] = ACTIONS(4391), - [aux_sym_keyword_statement_token6] = ACTIONS(4391), - [aux_sym_keyword_statement_token7] = ACTIONS(4391), - [aux_sym_include_statement_token1] = ACTIONS(4391), - [aux_sym_data_statement_token1] = ACTIONS(4391), - [aux_sym_do_loop_statement_token1] = ACTIONS(4391), - [aux_sym__inline_if_statement_token1] = ACTIONS(4391), - [aux_sym_end_if_statement_token1] = ACTIONS(4391), - [aux_sym_elseif_clause_token2] = ACTIONS(4391), - [aux_sym__inline_where_statement_token1] = ACTIONS(4391), - [aux_sym__forall_control_expression_token1] = ACTIONS(4391), - [aux_sym_select_case_statement_token1] = ACTIONS(4391), - [aux_sym_select_case_statement_token3] = ACTIONS(4391), - [aux_sym_select_type_statement_token1] = ACTIONS(4391), - [aux_sym_select_rank_statement_token2] = ACTIONS(4391), - [aux_sym_block_construct_token1] = ACTIONS(4391), - [aux_sym_associate_statement_token1] = ACTIONS(4391), - [aux_sym_format_statement_token1] = ACTIONS(4391), - [aux_sym_print_statement_token1] = ACTIONS(4391), - [aux_sym_open_statement_token1] = ACTIONS(4391), - [aux_sym_close_statement_token1] = ACTIONS(4391), - [aux_sym_inquire_statement_token1] = ACTIONS(4391), - [aux_sym_enum_statement_token1] = ACTIONS(4391), - [aux_sym_file_position_statement_token1] = ACTIONS(4391), - [aux_sym_file_position_statement_token2] = ACTIONS(4391), - [aux_sym_file_position_statement_token3] = ACTIONS(4391), - [aux_sym_file_position_statement_token4] = ACTIONS(4391), - [aux_sym_allocate_statement_token1] = ACTIONS(4391), - [aux_sym_entry_statement_token1] = ACTIONS(4391), - [aux_sym_logical_expression_token5] = ACTIONS(4393), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_LPAREN_SLASH] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [aux_sym_boolean_literal_token1] = ACTIONS(4393), - [aux_sym_boolean_literal_token2] = ACTIONS(4393), - [aux_sym_null_literal_token1] = ACTIONS(4391), - [aux_sym_coarray_statement_token1] = ACTIONS(4391), - [aux_sym_coarray_statement_token2] = ACTIONS(4391), - [aux_sym_coarray_statement_token6] = ACTIONS(4391), - [aux_sym_coarray_statement_token8] = ACTIONS(4391), - [aux_sym_coarray_statement_token11] = ACTIONS(4391), - [aux_sym_coarray_statement_token12] = ACTIONS(4391), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), - [aux_sym_identifier_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4393), - [sym__float_literal] = ACTIONS(4393), - [sym__boz_literal] = ACTIONS(4393), - [sym__string_literal] = ACTIONS(4393), - [sym__string_literal_kind] = ACTIONS(4393), + [sym__integer_literal] = ACTIONS(4665), }, - [1025] = { - [ts_builtin_sym_end] = ACTIONS(4517), - [aux_sym_preproc_include_token1] = ACTIONS(4515), - [aux_sym_preproc_def_token1] = ACTIONS(4515), - [aux_sym_preproc_if_token1] = ACTIONS(4515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4515), - [sym_preproc_directive] = ACTIONS(4515), - [anon_sym_LPAREN2] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), + [1007] = { + [sym_preproc_include] = STATE(1046), + [sym_preproc_def] = STATE(1046), + [sym_preproc_function_def] = STATE(1046), + [sym_preproc_call] = STATE(1046), + [sym_preproc_else_in_module] = STATE(7833), + [sym_preproc_elif_in_module] = STATE(7833), + [sym_preproc_elifdef_in_module] = STATE(7833), + [sym_interface] = STATE(1046), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5663), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1046), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1046), + [sym_public_statement] = STATE(1046), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1046), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1046), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1046), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4737), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4515), - [aux_sym_end_program_statement_token1] = ACTIONS(4515), - [aux_sym_end_program_statement_token2] = ACTIONS(4515), - [aux_sym_module_statement_token1] = ACTIONS(4515), - [aux_sym_submodule_statement_token1] = ACTIONS(4515), - [aux_sym_interface_statement_token1] = ACTIONS(4515), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4515), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4515), - [aux_sym_subroutine_statement_token1] = ACTIONS(4515), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4515), - [aux_sym_function_statement_token1] = ACTIONS(4515), - [aux_sym_language_binding_token1] = ACTIONS(4515), - [aux_sym_procedure_attributes_token1] = ACTIONS(4515), - [aux_sym_procedure_attributes_token3] = ACTIONS(4515), - [aux_sym_contains_statement_token1] = ACTIONS(4515), - [aux_sym_use_statement_token1] = ACTIONS(4515), - [aux_sym_use_statement_token2] = ACTIONS(4515), - [aux_sym_implicit_statement_token1] = ACTIONS(4515), - [aux_sym_implicit_statement_token3] = ACTIONS(4515), - [aux_sym_implicit_statement_token4] = ACTIONS(4515), - [aux_sym_save_statement_token1] = ACTIONS(4515), - [aux_sym_private_statement_token1] = ACTIONS(4515), - [aux_sym_public_statement_token1] = ACTIONS(4515), - [aux_sym_namelist_statement_token1] = ACTIONS(4515), - [aux_sym_common_statement_token1] = ACTIONS(4515), - [aux_sym_import_statement_token1] = ACTIONS(4515), - [aux_sym_derived_type_definition_token1] = ACTIONS(4515), - [aux_sym_abstract_specifier_token1] = ACTIONS(4515), - [aux_sym_procedure_attribute_token6] = ACTIONS(4515), - [aux_sym_variable_attributes_token1] = ACTIONS(4515), - [aux_sym_variable_attributes_token2] = ACTIONS(4515), - [aux_sym_variable_attributes_token3] = ACTIONS(4515), - [aux_sym_variable_attributes_token4] = ACTIONS(4515), - [aux_sym_variable_attributes_token5] = ACTIONS(4515), - [aux_sym__intrinsic_type_token1] = ACTIONS(4515), - [aux_sym__intrinsic_type_token2] = ACTIONS(4515), - [aux_sym__intrinsic_type_token3] = ACTIONS(4515), - [aux_sym__intrinsic_type_token4] = ACTIONS(4515), - [aux_sym__intrinsic_type_token6] = ACTIONS(4515), - [aux_sym__intrinsic_type_token7] = ACTIONS(4515), - [aux_sym__intrinsic_type_token8] = ACTIONS(4515), - [aux_sym__intrinsic_type_token9] = ACTIONS(4515), - [aux_sym__intrinsic_type_token10] = ACTIONS(4515), - [aux_sym_derived_type_token1] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4515), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4515), - [aux_sym_type_qualifier_token1] = ACTIONS(4515), - [aux_sym_type_qualifier_token2] = ACTIONS(4515), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4515), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4515), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4515), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4515), - [aux_sym_equivalence_statement_token1] = ACTIONS(4515), - [anon_sym_SEMI] = ACTIONS(4517), - [aux_sym_stop_statement_token1] = ACTIONS(4515), - [aux_sym_stop_statement_token2] = ACTIONS(4515), - [aux_sym_subroutine_call_token1] = ACTIONS(4515), - [aux_sym_keyword_statement_token1] = ACTIONS(4515), - [aux_sym_keyword_statement_token2] = ACTIONS(4515), - [aux_sym_keyword_statement_token3] = ACTIONS(4515), - [aux_sym_keyword_statement_token4] = ACTIONS(4515), - [aux_sym_keyword_statement_token6] = ACTIONS(4515), - [aux_sym_keyword_statement_token7] = ACTIONS(4515), - [aux_sym_include_statement_token1] = ACTIONS(4515), - [aux_sym_data_statement_token1] = ACTIONS(4515), - [aux_sym_do_loop_statement_token1] = ACTIONS(4515), - [aux_sym__inline_if_statement_token1] = ACTIONS(4515), - [aux_sym_end_if_statement_token1] = ACTIONS(4515), - [aux_sym_elseif_clause_token2] = ACTIONS(4515), - [aux_sym__inline_where_statement_token1] = ACTIONS(4515), - [aux_sym__forall_control_expression_token1] = ACTIONS(4515), - [aux_sym_select_case_statement_token1] = ACTIONS(4515), - [aux_sym_select_case_statement_token3] = ACTIONS(4515), - [aux_sym_select_type_statement_token1] = ACTIONS(4515), - [aux_sym_select_rank_statement_token2] = ACTIONS(4515), - [aux_sym_block_construct_token1] = ACTIONS(4515), - [aux_sym_associate_statement_token1] = ACTIONS(4515), - [aux_sym_format_statement_token1] = ACTIONS(4515), - [aux_sym_print_statement_token1] = ACTIONS(4515), - [aux_sym_open_statement_token1] = ACTIONS(4515), - [aux_sym_close_statement_token1] = ACTIONS(4515), - [aux_sym_inquire_statement_token1] = ACTIONS(4515), - [aux_sym_enum_statement_token1] = ACTIONS(4515), - [aux_sym_file_position_statement_token1] = ACTIONS(4515), - [aux_sym_file_position_statement_token2] = ACTIONS(4515), - [aux_sym_file_position_statement_token3] = ACTIONS(4515), - [aux_sym_file_position_statement_token4] = ACTIONS(4515), - [aux_sym_allocate_statement_token1] = ACTIONS(4515), - [aux_sym_entry_statement_token1] = ACTIONS(4515), - [aux_sym_logical_expression_token5] = ACTIONS(4517), - [anon_sym_DOT] = ACTIONS(4515), - [anon_sym_LPAREN_SLASH] = ACTIONS(4517), - [anon_sym_LBRACK] = ACTIONS(4517), - [aux_sym_boolean_literal_token1] = ACTIONS(4517), - [aux_sym_boolean_literal_token2] = ACTIONS(4517), - [aux_sym_null_literal_token1] = ACTIONS(4515), - [aux_sym_coarray_statement_token1] = ACTIONS(4515), - [aux_sym_coarray_statement_token2] = ACTIONS(4515), - [aux_sym_coarray_statement_token6] = ACTIONS(4515), - [aux_sym_coarray_statement_token8] = ACTIONS(4515), - [aux_sym_coarray_statement_token11] = ACTIONS(4515), - [aux_sym_coarray_statement_token12] = ACTIONS(4515), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4515), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4515), - [aux_sym_identifier_token1] = ACTIONS(4515), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4517), - [sym__float_literal] = ACTIONS(4517), - [sym__boz_literal] = ACTIONS(4517), - [sym__string_literal] = ACTIONS(4517), - [sym__string_literal_kind] = ACTIONS(4517), + [sym__integer_literal] = ACTIONS(4665), }, - [1026] = { - [ts_builtin_sym_end] = ACTIONS(4397), - [aux_sym_preproc_include_token1] = ACTIONS(4395), - [aux_sym_preproc_def_token1] = ACTIONS(4395), - [aux_sym_preproc_if_token1] = ACTIONS(4395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), - [sym_preproc_directive] = ACTIONS(4395), - [anon_sym_LPAREN2] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4397), - [anon_sym_DASH] = ACTIONS(4397), + [1008] = { + [sym_preproc_include] = STATE(1047), + [sym_preproc_def] = STATE(1047), + [sym_preproc_function_def] = STATE(1047), + [sym_preproc_call] = STATE(1047), + [sym_preproc_else_in_module] = STATE(7857), + [sym_preproc_elif_in_module] = STATE(7857), + [sym_preproc_elifdef_in_module] = STATE(7857), + [sym_interface] = STATE(1047), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5664), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1047), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1047), + [sym_public_statement] = STATE(1047), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1047), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1047), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1047), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4739), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4395), - [aux_sym_end_program_statement_token1] = ACTIONS(4395), - [aux_sym_end_program_statement_token2] = ACTIONS(4395), - [aux_sym_module_statement_token1] = ACTIONS(4395), - [aux_sym_submodule_statement_token1] = ACTIONS(4395), - [aux_sym_interface_statement_token1] = ACTIONS(4395), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), - [aux_sym_subroutine_statement_token1] = ACTIONS(4395), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), - [aux_sym_function_statement_token1] = ACTIONS(4395), - [aux_sym_language_binding_token1] = ACTIONS(4395), - [aux_sym_procedure_attributes_token1] = ACTIONS(4395), - [aux_sym_procedure_attributes_token3] = ACTIONS(4395), - [aux_sym_contains_statement_token1] = ACTIONS(4395), - [aux_sym_use_statement_token1] = ACTIONS(4395), - [aux_sym_use_statement_token2] = ACTIONS(4395), - [aux_sym_implicit_statement_token1] = ACTIONS(4395), - [aux_sym_implicit_statement_token3] = ACTIONS(4395), - [aux_sym_implicit_statement_token4] = ACTIONS(4395), - [aux_sym_save_statement_token1] = ACTIONS(4395), - [aux_sym_private_statement_token1] = ACTIONS(4395), - [aux_sym_public_statement_token1] = ACTIONS(4395), - [aux_sym_namelist_statement_token1] = ACTIONS(4395), - [aux_sym_common_statement_token1] = ACTIONS(4395), - [aux_sym_import_statement_token1] = ACTIONS(4395), - [aux_sym_derived_type_definition_token1] = ACTIONS(4395), - [aux_sym_abstract_specifier_token1] = ACTIONS(4395), - [aux_sym_procedure_attribute_token6] = ACTIONS(4395), - [aux_sym_variable_attributes_token1] = ACTIONS(4395), - [aux_sym_variable_attributes_token2] = ACTIONS(4395), - [aux_sym_variable_attributes_token3] = ACTIONS(4395), - [aux_sym_variable_attributes_token4] = ACTIONS(4395), - [aux_sym_variable_attributes_token5] = ACTIONS(4395), - [aux_sym__intrinsic_type_token1] = ACTIONS(4395), - [aux_sym__intrinsic_type_token2] = ACTIONS(4395), - [aux_sym__intrinsic_type_token3] = ACTIONS(4395), - [aux_sym__intrinsic_type_token4] = ACTIONS(4395), - [aux_sym__intrinsic_type_token6] = ACTIONS(4395), - [aux_sym__intrinsic_type_token7] = ACTIONS(4395), - [aux_sym__intrinsic_type_token8] = ACTIONS(4395), - [aux_sym__intrinsic_type_token9] = ACTIONS(4395), - [aux_sym__intrinsic_type_token10] = ACTIONS(4395), - [aux_sym_derived_type_token1] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), - [aux_sym_type_qualifier_token1] = ACTIONS(4395), - [aux_sym_type_qualifier_token2] = ACTIONS(4395), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4395), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4395), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4395), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4395), - [aux_sym_equivalence_statement_token1] = ACTIONS(4395), - [anon_sym_SEMI] = ACTIONS(4397), - [aux_sym_stop_statement_token1] = ACTIONS(4395), - [aux_sym_stop_statement_token2] = ACTIONS(4395), - [aux_sym_subroutine_call_token1] = ACTIONS(4395), - [aux_sym_keyword_statement_token1] = ACTIONS(4395), - [aux_sym_keyword_statement_token2] = ACTIONS(4395), - [aux_sym_keyword_statement_token3] = ACTIONS(4395), - [aux_sym_keyword_statement_token4] = ACTIONS(4395), - [aux_sym_keyword_statement_token6] = ACTIONS(4395), - [aux_sym_keyword_statement_token7] = ACTIONS(4395), - [aux_sym_include_statement_token1] = ACTIONS(4395), - [aux_sym_data_statement_token1] = ACTIONS(4395), - [aux_sym_do_loop_statement_token1] = ACTIONS(4395), - [aux_sym__inline_if_statement_token1] = ACTIONS(4395), - [aux_sym_end_if_statement_token1] = ACTIONS(4395), - [aux_sym_elseif_clause_token2] = ACTIONS(4395), - [aux_sym__inline_where_statement_token1] = ACTIONS(4395), - [aux_sym__forall_control_expression_token1] = ACTIONS(4395), - [aux_sym_select_case_statement_token1] = ACTIONS(4395), - [aux_sym_select_case_statement_token3] = ACTIONS(4395), - [aux_sym_select_type_statement_token1] = ACTIONS(4395), - [aux_sym_select_rank_statement_token2] = ACTIONS(4395), - [aux_sym_block_construct_token1] = ACTIONS(4395), - [aux_sym_associate_statement_token1] = ACTIONS(4395), - [aux_sym_format_statement_token1] = ACTIONS(4395), - [aux_sym_print_statement_token1] = ACTIONS(4395), - [aux_sym_open_statement_token1] = ACTIONS(4395), - [aux_sym_close_statement_token1] = ACTIONS(4395), - [aux_sym_inquire_statement_token1] = ACTIONS(4395), - [aux_sym_enum_statement_token1] = ACTIONS(4395), - [aux_sym_file_position_statement_token1] = ACTIONS(4395), - [aux_sym_file_position_statement_token2] = ACTIONS(4395), - [aux_sym_file_position_statement_token3] = ACTIONS(4395), - [aux_sym_file_position_statement_token4] = ACTIONS(4395), - [aux_sym_allocate_statement_token1] = ACTIONS(4395), - [aux_sym_entry_statement_token1] = ACTIONS(4395), - [aux_sym_logical_expression_token5] = ACTIONS(4397), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_LPAREN_SLASH] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4397), - [aux_sym_boolean_literal_token1] = ACTIONS(4397), - [aux_sym_boolean_literal_token2] = ACTIONS(4397), - [aux_sym_null_literal_token1] = ACTIONS(4395), - [aux_sym_coarray_statement_token1] = ACTIONS(4395), - [aux_sym_coarray_statement_token2] = ACTIONS(4395), - [aux_sym_coarray_statement_token6] = ACTIONS(4395), - [aux_sym_coarray_statement_token8] = ACTIONS(4395), - [aux_sym_coarray_statement_token11] = ACTIONS(4395), - [aux_sym_coarray_statement_token12] = ACTIONS(4395), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), - [aux_sym_identifier_token1] = ACTIONS(4395), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4397), - [sym__float_literal] = ACTIONS(4397), - [sym__boz_literal] = ACTIONS(4397), - [sym__string_literal] = ACTIONS(4397), - [sym__string_literal_kind] = ACTIONS(4397), + [sym__integer_literal] = ACTIONS(4665), }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(4401), - [aux_sym_preproc_include_token1] = ACTIONS(4399), - [aux_sym_preproc_def_token1] = ACTIONS(4399), - [aux_sym_preproc_if_token1] = ACTIONS(4399), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), - [sym_preproc_directive] = ACTIONS(4399), - [anon_sym_LPAREN2] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), + [1009] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(7857), + [sym_preproc_elif_in_module] = STATE(7857), + [sym_preproc_elifdef_in_module] = STATE(7857), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5664), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4739), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4399), - [aux_sym_end_program_statement_token1] = ACTIONS(4399), - [aux_sym_end_program_statement_token2] = ACTIONS(4399), - [aux_sym_module_statement_token1] = ACTIONS(4399), - [aux_sym_submodule_statement_token1] = ACTIONS(4399), - [aux_sym_interface_statement_token1] = ACTIONS(4399), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), - [aux_sym_subroutine_statement_token1] = ACTIONS(4399), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), - [aux_sym_function_statement_token1] = ACTIONS(4399), - [aux_sym_language_binding_token1] = ACTIONS(4399), - [aux_sym_procedure_attributes_token1] = ACTIONS(4399), - [aux_sym_procedure_attributes_token3] = ACTIONS(4399), - [aux_sym_contains_statement_token1] = ACTIONS(4399), - [aux_sym_use_statement_token1] = ACTIONS(4399), - [aux_sym_use_statement_token2] = ACTIONS(4399), - [aux_sym_implicit_statement_token1] = ACTIONS(4399), - [aux_sym_implicit_statement_token3] = ACTIONS(4399), - [aux_sym_implicit_statement_token4] = ACTIONS(4399), - [aux_sym_save_statement_token1] = ACTIONS(4399), - [aux_sym_private_statement_token1] = ACTIONS(4399), - [aux_sym_public_statement_token1] = ACTIONS(4399), - [aux_sym_namelist_statement_token1] = ACTIONS(4399), - [aux_sym_common_statement_token1] = ACTIONS(4399), - [aux_sym_import_statement_token1] = ACTIONS(4399), - [aux_sym_derived_type_definition_token1] = ACTIONS(4399), - [aux_sym_abstract_specifier_token1] = ACTIONS(4399), - [aux_sym_procedure_attribute_token6] = ACTIONS(4399), - [aux_sym_variable_attributes_token1] = ACTIONS(4399), - [aux_sym_variable_attributes_token2] = ACTIONS(4399), - [aux_sym_variable_attributes_token3] = ACTIONS(4399), - [aux_sym_variable_attributes_token4] = ACTIONS(4399), - [aux_sym_variable_attributes_token5] = ACTIONS(4399), - [aux_sym__intrinsic_type_token1] = ACTIONS(4399), - [aux_sym__intrinsic_type_token2] = ACTIONS(4399), - [aux_sym__intrinsic_type_token3] = ACTIONS(4399), - [aux_sym__intrinsic_type_token4] = ACTIONS(4399), - [aux_sym__intrinsic_type_token6] = ACTIONS(4399), - [aux_sym__intrinsic_type_token7] = ACTIONS(4399), - [aux_sym__intrinsic_type_token8] = ACTIONS(4399), - [aux_sym__intrinsic_type_token9] = ACTIONS(4399), - [aux_sym__intrinsic_type_token10] = ACTIONS(4399), - [aux_sym_derived_type_token1] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), - [aux_sym_type_qualifier_token1] = ACTIONS(4399), - [aux_sym_type_qualifier_token2] = ACTIONS(4399), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4399), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4399), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4399), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4399), - [aux_sym_equivalence_statement_token1] = ACTIONS(4399), - [anon_sym_SEMI] = ACTIONS(4401), - [aux_sym_stop_statement_token1] = ACTIONS(4399), - [aux_sym_stop_statement_token2] = ACTIONS(4399), - [aux_sym_subroutine_call_token1] = ACTIONS(4399), - [aux_sym_keyword_statement_token1] = ACTIONS(4399), - [aux_sym_keyword_statement_token2] = ACTIONS(4399), - [aux_sym_keyword_statement_token3] = ACTIONS(4399), - [aux_sym_keyword_statement_token4] = ACTIONS(4399), - [aux_sym_keyword_statement_token6] = ACTIONS(4399), - [aux_sym_keyword_statement_token7] = ACTIONS(4399), - [aux_sym_include_statement_token1] = ACTIONS(4399), - [aux_sym_data_statement_token1] = ACTIONS(4399), - [aux_sym_do_loop_statement_token1] = ACTIONS(4399), - [aux_sym__inline_if_statement_token1] = ACTIONS(4399), - [aux_sym_end_if_statement_token1] = ACTIONS(4399), - [aux_sym_elseif_clause_token2] = ACTIONS(4399), - [aux_sym__inline_where_statement_token1] = ACTIONS(4399), - [aux_sym__forall_control_expression_token1] = ACTIONS(4399), - [aux_sym_select_case_statement_token1] = ACTIONS(4399), - [aux_sym_select_case_statement_token3] = ACTIONS(4399), - [aux_sym_select_type_statement_token1] = ACTIONS(4399), - [aux_sym_select_rank_statement_token2] = ACTIONS(4399), - [aux_sym_block_construct_token1] = ACTIONS(4399), - [aux_sym_associate_statement_token1] = ACTIONS(4399), - [aux_sym_format_statement_token1] = ACTIONS(4399), - [aux_sym_print_statement_token1] = ACTIONS(4399), - [aux_sym_open_statement_token1] = ACTIONS(4399), - [aux_sym_close_statement_token1] = ACTIONS(4399), - [aux_sym_inquire_statement_token1] = ACTIONS(4399), - [aux_sym_enum_statement_token1] = ACTIONS(4399), - [aux_sym_file_position_statement_token1] = ACTIONS(4399), - [aux_sym_file_position_statement_token2] = ACTIONS(4399), - [aux_sym_file_position_statement_token3] = ACTIONS(4399), - [aux_sym_file_position_statement_token4] = ACTIONS(4399), - [aux_sym_allocate_statement_token1] = ACTIONS(4399), - [aux_sym_entry_statement_token1] = ACTIONS(4399), - [aux_sym_logical_expression_token5] = ACTIONS(4401), - [anon_sym_DOT] = ACTIONS(4399), - [anon_sym_LPAREN_SLASH] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [aux_sym_boolean_literal_token1] = ACTIONS(4401), - [aux_sym_boolean_literal_token2] = ACTIONS(4401), - [aux_sym_null_literal_token1] = ACTIONS(4399), - [aux_sym_coarray_statement_token1] = ACTIONS(4399), - [aux_sym_coarray_statement_token2] = ACTIONS(4399), - [aux_sym_coarray_statement_token6] = ACTIONS(4399), - [aux_sym_coarray_statement_token8] = ACTIONS(4399), - [aux_sym_coarray_statement_token11] = ACTIONS(4399), - [aux_sym_coarray_statement_token12] = ACTIONS(4399), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), - [aux_sym_identifier_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4401), - [sym__float_literal] = ACTIONS(4401), - [sym__boz_literal] = ACTIONS(4401), - [sym__string_literal] = ACTIONS(4401), - [sym__string_literal_kind] = ACTIONS(4401), + [sym__integer_literal] = ACTIONS(4665), }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(4429), - [aux_sym_preproc_include_token1] = ACTIONS(4427), - [aux_sym_preproc_def_token1] = ACTIONS(4427), - [aux_sym_preproc_if_token1] = ACTIONS(4427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4427), - [sym_preproc_directive] = ACTIONS(4427), - [anon_sym_LPAREN2] = ACTIONS(4427), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), + [1010] = { + [ts_builtin_sym_end] = ACTIONS(4497), + [aux_sym_preproc_include_token1] = ACTIONS(4495), + [aux_sym_preproc_def_token1] = ACTIONS(4495), + [aux_sym_preproc_if_token1] = ACTIONS(4495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4495), + [sym_preproc_directive] = ACTIONS(4495), + [anon_sym_LPAREN2] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4427), - [aux_sym_end_program_statement_token1] = ACTIONS(4427), - [aux_sym_end_program_statement_token2] = ACTIONS(4427), - [aux_sym_module_statement_token1] = ACTIONS(4427), - [aux_sym_submodule_statement_token1] = ACTIONS(4427), - [aux_sym_interface_statement_token1] = ACTIONS(4427), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4427), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4427), - [aux_sym_subroutine_statement_token1] = ACTIONS(4427), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4427), - [aux_sym_function_statement_token1] = ACTIONS(4427), - [aux_sym_language_binding_token1] = ACTIONS(4427), - [aux_sym_procedure_attributes_token1] = ACTIONS(4427), - [aux_sym_procedure_attributes_token3] = ACTIONS(4427), - [aux_sym_contains_statement_token1] = ACTIONS(4427), - [aux_sym_use_statement_token1] = ACTIONS(4427), - [aux_sym_use_statement_token2] = ACTIONS(4427), - [aux_sym_implicit_statement_token1] = ACTIONS(4427), - [aux_sym_implicit_statement_token3] = ACTIONS(4427), - [aux_sym_implicit_statement_token4] = ACTIONS(4427), - [aux_sym_save_statement_token1] = ACTIONS(4427), - [aux_sym_private_statement_token1] = ACTIONS(4427), - [aux_sym_public_statement_token1] = ACTIONS(4427), - [aux_sym_namelist_statement_token1] = ACTIONS(4427), - [aux_sym_common_statement_token1] = ACTIONS(4427), - [aux_sym_import_statement_token1] = ACTIONS(4427), - [aux_sym_derived_type_definition_token1] = ACTIONS(4427), - [aux_sym_abstract_specifier_token1] = ACTIONS(4427), - [aux_sym_procedure_attribute_token6] = ACTIONS(4427), - [aux_sym_variable_attributes_token1] = ACTIONS(4427), - [aux_sym_variable_attributes_token2] = ACTIONS(4427), - [aux_sym_variable_attributes_token3] = ACTIONS(4427), - [aux_sym_variable_attributes_token4] = ACTIONS(4427), - [aux_sym_variable_attributes_token5] = ACTIONS(4427), - [aux_sym__intrinsic_type_token1] = ACTIONS(4427), - [aux_sym__intrinsic_type_token2] = ACTIONS(4427), - [aux_sym__intrinsic_type_token3] = ACTIONS(4427), - [aux_sym__intrinsic_type_token4] = ACTIONS(4427), - [aux_sym__intrinsic_type_token6] = ACTIONS(4427), - [aux_sym__intrinsic_type_token7] = ACTIONS(4427), - [aux_sym__intrinsic_type_token8] = ACTIONS(4427), - [aux_sym__intrinsic_type_token9] = ACTIONS(4427), - [aux_sym__intrinsic_type_token10] = ACTIONS(4427), - [aux_sym_derived_type_token1] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4427), - [aux_sym_type_qualifier_token1] = ACTIONS(4427), - [aux_sym_type_qualifier_token2] = ACTIONS(4427), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4427), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4427), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4427), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4427), - [aux_sym_equivalence_statement_token1] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [aux_sym_stop_statement_token1] = ACTIONS(4427), - [aux_sym_stop_statement_token2] = ACTIONS(4427), - [aux_sym_subroutine_call_token1] = ACTIONS(4427), - [aux_sym_keyword_statement_token1] = ACTIONS(4427), - [aux_sym_keyword_statement_token2] = ACTIONS(4427), - [aux_sym_keyword_statement_token3] = ACTIONS(4427), - [aux_sym_keyword_statement_token4] = ACTIONS(4427), - [aux_sym_keyword_statement_token6] = ACTIONS(4427), - [aux_sym_keyword_statement_token7] = ACTIONS(4427), - [aux_sym_include_statement_token1] = ACTIONS(4427), - [aux_sym_data_statement_token1] = ACTIONS(4427), - [aux_sym_do_loop_statement_token1] = ACTIONS(4427), - [aux_sym__inline_if_statement_token1] = ACTIONS(4427), - [aux_sym_end_if_statement_token1] = ACTIONS(4427), - [aux_sym_elseif_clause_token2] = ACTIONS(4427), - [aux_sym__inline_where_statement_token1] = ACTIONS(4427), - [aux_sym__forall_control_expression_token1] = ACTIONS(4427), - [aux_sym_select_case_statement_token1] = ACTIONS(4427), - [aux_sym_select_case_statement_token3] = ACTIONS(4427), - [aux_sym_select_type_statement_token1] = ACTIONS(4427), - [aux_sym_select_rank_statement_token2] = ACTIONS(4427), - [aux_sym_block_construct_token1] = ACTIONS(4427), - [aux_sym_associate_statement_token1] = ACTIONS(4427), - [aux_sym_format_statement_token1] = ACTIONS(4427), - [aux_sym_print_statement_token1] = ACTIONS(4427), - [aux_sym_open_statement_token1] = ACTIONS(4427), - [aux_sym_close_statement_token1] = ACTIONS(4427), - [aux_sym_inquire_statement_token1] = ACTIONS(4427), - [aux_sym_enum_statement_token1] = ACTIONS(4427), - [aux_sym_file_position_statement_token1] = ACTIONS(4427), - [aux_sym_file_position_statement_token2] = ACTIONS(4427), - [aux_sym_file_position_statement_token3] = ACTIONS(4427), - [aux_sym_file_position_statement_token4] = ACTIONS(4427), - [aux_sym_allocate_statement_token1] = ACTIONS(4427), - [aux_sym_entry_statement_token1] = ACTIONS(4427), - [aux_sym_logical_expression_token5] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_LPAREN_SLASH] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [aux_sym_boolean_literal_token1] = ACTIONS(4429), - [aux_sym_boolean_literal_token2] = ACTIONS(4429), - [aux_sym_null_literal_token1] = ACTIONS(4427), - [aux_sym_coarray_statement_token1] = ACTIONS(4427), - [aux_sym_coarray_statement_token2] = ACTIONS(4427), - [aux_sym_coarray_statement_token6] = ACTIONS(4427), - [aux_sym_coarray_statement_token8] = ACTIONS(4427), - [aux_sym_coarray_statement_token11] = ACTIONS(4427), - [aux_sym_coarray_statement_token12] = ACTIONS(4427), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4427), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4427), - [aux_sym_identifier_token1] = ACTIONS(4427), + [aux_sym_program_statement_token1] = ACTIONS(4495), + [aux_sym_end_program_statement_token1] = ACTIONS(4495), + [aux_sym_end_program_statement_token2] = ACTIONS(4495), + [aux_sym_module_statement_token1] = ACTIONS(4495), + [aux_sym_submodule_statement_token1] = ACTIONS(4495), + [aux_sym_interface_statement_token1] = ACTIONS(4495), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4495), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4495), + [aux_sym_subroutine_statement_token1] = ACTIONS(4495), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4495), + [aux_sym_function_statement_token1] = ACTIONS(4495), + [aux_sym_language_binding_token1] = ACTIONS(4495), + [aux_sym_procedure_attributes_token1] = ACTIONS(4495), + [aux_sym_procedure_attributes_token3] = ACTIONS(4495), + [aux_sym_contains_statement_token1] = ACTIONS(4495), + [aux_sym_use_statement_token1] = ACTIONS(4495), + [aux_sym_use_statement_token2] = ACTIONS(4495), + [aux_sym_implicit_statement_token1] = ACTIONS(4495), + [aux_sym_implicit_statement_token3] = ACTIONS(4495), + [aux_sym_implicit_statement_token4] = ACTIONS(4495), + [aux_sym_save_statement_token1] = ACTIONS(4495), + [aux_sym_private_statement_token1] = ACTIONS(4495), + [aux_sym_public_statement_token1] = ACTIONS(4495), + [aux_sym_namelist_statement_token1] = ACTIONS(4495), + [aux_sym_common_statement_token1] = ACTIONS(4495), + [aux_sym_import_statement_token1] = ACTIONS(4495), + [aux_sym_derived_type_definition_token1] = ACTIONS(4495), + [aux_sym_abstract_specifier_token1] = ACTIONS(4495), + [aux_sym_procedure_attribute_token6] = ACTIONS(4495), + [aux_sym_variable_attributes_token1] = ACTIONS(4495), + [aux_sym_variable_attributes_token2] = ACTIONS(4495), + [aux_sym_variable_attributes_token3] = ACTIONS(4495), + [aux_sym_variable_attributes_token4] = ACTIONS(4495), + [aux_sym_variable_attributes_token5] = ACTIONS(4495), + [aux_sym__intrinsic_type_token1] = ACTIONS(4495), + [aux_sym__intrinsic_type_token2] = ACTIONS(4495), + [aux_sym__intrinsic_type_token3] = ACTIONS(4495), + [aux_sym__intrinsic_type_token4] = ACTIONS(4495), + [aux_sym__intrinsic_type_token6] = ACTIONS(4495), + [aux_sym__intrinsic_type_token7] = ACTIONS(4495), + [aux_sym__intrinsic_type_token8] = ACTIONS(4495), + [aux_sym__intrinsic_type_token9] = ACTIONS(4495), + [aux_sym__intrinsic_type_token10] = ACTIONS(4495), + [aux_sym_derived_type_token1] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4495), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4495), + [aux_sym_type_qualifier_token1] = ACTIONS(4495), + [aux_sym_type_qualifier_token2] = ACTIONS(4495), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4495), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4495), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4495), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4495), + [aux_sym_equivalence_statement_token1] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4497), + [aux_sym_stop_statement_token1] = ACTIONS(4495), + [aux_sym_stop_statement_token2] = ACTIONS(4495), + [aux_sym_subroutine_call_token1] = ACTIONS(4495), + [aux_sym_keyword_statement_token1] = ACTIONS(4495), + [aux_sym_keyword_statement_token2] = ACTIONS(4495), + [aux_sym_keyword_statement_token3] = ACTIONS(4495), + [aux_sym_keyword_statement_token4] = ACTIONS(4495), + [aux_sym_keyword_statement_token6] = ACTIONS(4495), + [aux_sym_keyword_statement_token7] = ACTIONS(4495), + [aux_sym_include_statement_token1] = ACTIONS(4495), + [aux_sym_data_statement_token1] = ACTIONS(4495), + [aux_sym_do_loop_statement_token1] = ACTIONS(4495), + [aux_sym__inline_if_statement_token1] = ACTIONS(4495), + [aux_sym_end_if_statement_token1] = ACTIONS(4495), + [aux_sym_elseif_clause_token2] = ACTIONS(4495), + [aux_sym__inline_where_statement_token1] = ACTIONS(4495), + [aux_sym__forall_control_expression_token1] = ACTIONS(4495), + [aux_sym_select_case_statement_token1] = ACTIONS(4495), + [aux_sym_select_case_statement_token3] = ACTIONS(4495), + [aux_sym_select_type_statement_token1] = ACTIONS(4495), + [aux_sym_select_rank_statement_token2] = ACTIONS(4495), + [aux_sym_block_construct_token1] = ACTIONS(4495), + [aux_sym_associate_statement_token1] = ACTIONS(4495), + [aux_sym_format_statement_token1] = ACTIONS(4495), + [aux_sym_print_statement_token1] = ACTIONS(4495), + [aux_sym_open_statement_token1] = ACTIONS(4495), + [aux_sym_close_statement_token1] = ACTIONS(4495), + [aux_sym_inquire_statement_token1] = ACTIONS(4495), + [aux_sym_enum_statement_token1] = ACTIONS(4495), + [aux_sym_file_position_statement_token1] = ACTIONS(4495), + [aux_sym_file_position_statement_token2] = ACTIONS(4495), + [aux_sym_file_position_statement_token3] = ACTIONS(4495), + [aux_sym_file_position_statement_token4] = ACTIONS(4495), + [aux_sym_allocate_statement_token1] = ACTIONS(4495), + [aux_sym_entry_statement_token1] = ACTIONS(4495), + [aux_sym_logical_expression_token5] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4495), + [anon_sym_LPAREN_SLASH] = ACTIONS(4497), + [anon_sym_LBRACK] = ACTIONS(4497), + [aux_sym_boolean_literal_token1] = ACTIONS(4497), + [aux_sym_boolean_literal_token2] = ACTIONS(4497), + [aux_sym_null_literal_token1] = ACTIONS(4495), + [aux_sym_coarray_statement_token1] = ACTIONS(4495), + [aux_sym_coarray_statement_token2] = ACTIONS(4495), + [aux_sym_coarray_statement_token6] = ACTIONS(4495), + [aux_sym_coarray_statement_token8] = ACTIONS(4495), + [aux_sym_coarray_statement_token11] = ACTIONS(4495), + [aux_sym_coarray_statement_token12] = ACTIONS(4495), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4495), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4495), + [aux_sym_identifier_token1] = ACTIONS(4495), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4429), - [sym__float_literal] = ACTIONS(4429), - [sym__boz_literal] = ACTIONS(4429), - [sym__string_literal] = ACTIONS(4429), - [sym__string_literal_kind] = ACTIONS(4429), + [sym__integer_literal] = ACTIONS(4497), + [sym__float_literal] = ACTIONS(4497), + [sym__boz_literal] = ACTIONS(4497), + [sym__string_literal] = ACTIONS(4497), + [sym__string_literal_kind] = ACTIONS(4497), }, - [1029] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(7603), - [sym_preproc_elif_in_module] = STATE(7603), - [sym_preproc_elifdef_in_module] = STATE(7603), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5733), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [1011] = { + [sym_preproc_include] = STATE(1089), + [sym_preproc_def] = STATE(1089), + [sym_preproc_function_def] = STATE(1089), + [sym_preproc_call] = STATE(1089), + [sym_preproc_else_in_module] = STATE(8174), + [sym_preproc_elif_in_module] = STATE(8174), + [sym_preproc_elifdef_in_module] = STATE(8174), + [sym_interface] = STATE(1089), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5722), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1089), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1089), + [sym_public_statement] = STATE(1089), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1089), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1089), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4751), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1089), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4741), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -229302,8 +226872,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -229315,9 +226885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -229346,11 +226916,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -229367,60 +226937,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, - [1030] = { - [sym_preproc_include] = STATE(1000), - [sym_preproc_def] = STATE(1000), - [sym_preproc_function_def] = STATE(1000), - [sym_preproc_call] = STATE(1000), - [sym_preproc_else_in_module] = STATE(7708), - [sym_preproc_elif_in_module] = STATE(7708), - [sym_preproc_elifdef_in_module] = STATE(7708), - [sym_interface] = STATE(1000), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5737), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1000), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1000), - [sym_public_statement] = STATE(1000), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1000), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [1012] = { + [sym_preproc_include] = STATE(1092), + [sym_preproc_def] = STATE(1092), + [sym_preproc_function_def] = STATE(1092), + [sym_preproc_call] = STATE(1092), + [sym_preproc_else_in_module] = STATE(8257), + [sym_preproc_elif_in_module] = STATE(8257), + [sym_preproc_elifdef_in_module] = STATE(8257), + [sym_interface] = STATE(1092), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5725), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1092), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1092), + [sym_public_statement] = STATE(1092), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1092), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1000), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1092), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1000), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4753), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1092), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4743), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -229437,8 +227007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -229450,9 +227020,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -229481,11 +227051,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -229502,60 +227072,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, - [1031] = { - [sym_preproc_include] = STATE(1003), - [sym_preproc_def] = STATE(1003), - [sym_preproc_function_def] = STATE(1003), - [sym_preproc_call] = STATE(1003), - [sym_preproc_else_in_module] = STATE(7796), - [sym_preproc_elif_in_module] = STATE(7796), - [sym_preproc_elifdef_in_module] = STATE(7796), - [sym_interface] = STATE(1003), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5738), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1003), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1003), - [sym_public_statement] = STATE(1003), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1003), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [1013] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(7858), + [sym_preproc_elif_in_module] = STATE(7858), + [sym_preproc_elifdef_in_module] = STATE(7858), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5643), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1003), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1003), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4755), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4745), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_interface_statement_token1] = ACTIONS(33), @@ -229572,8 +227142,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -229585,9 +227155,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -229616,11 +227186,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -229637,9 +227207,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, - [1032] = { + [1014] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(8257), + [sym_preproc_elif_in_module] = STATE(8257), + [sym_preproc_elifdef_in_module] = STATE(8257), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5725), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4743), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4665), + }, + [1015] = { [ts_builtin_sym_end] = ACTIONS(4609), [aux_sym_preproc_include_token1] = ACTIONS(4607), [aux_sym_preproc_def_token1] = ACTIONS(4607), @@ -229774,547 +227479,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4609), [sym__string_literal_kind] = ACTIONS(4609), }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(4521), - [aux_sym_preproc_include_token1] = ACTIONS(4519), - [aux_sym_preproc_def_token1] = ACTIONS(4519), - [aux_sym_preproc_if_token1] = ACTIONS(4519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4519), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4519), - [sym_preproc_directive] = ACTIONS(4519), - [anon_sym_LPAREN2] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4521), - [anon_sym_DASH] = ACTIONS(4521), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4519), - [aux_sym_end_program_statement_token1] = ACTIONS(4519), - [aux_sym_end_program_statement_token2] = ACTIONS(4519), - [aux_sym_module_statement_token1] = ACTIONS(4519), - [aux_sym_submodule_statement_token1] = ACTIONS(4519), - [aux_sym_interface_statement_token1] = ACTIONS(4519), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4519), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4519), - [aux_sym_subroutine_statement_token1] = ACTIONS(4519), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4519), - [aux_sym_function_statement_token1] = ACTIONS(4519), - [aux_sym_language_binding_token1] = ACTIONS(4519), - [aux_sym_procedure_attributes_token1] = ACTIONS(4519), - [aux_sym_procedure_attributes_token3] = ACTIONS(4519), - [aux_sym_contains_statement_token1] = ACTIONS(4519), - [aux_sym_use_statement_token1] = ACTIONS(4519), - [aux_sym_use_statement_token2] = ACTIONS(4519), - [aux_sym_implicit_statement_token1] = ACTIONS(4519), - [aux_sym_implicit_statement_token3] = ACTIONS(4519), - [aux_sym_implicit_statement_token4] = ACTIONS(4519), - [aux_sym_save_statement_token1] = ACTIONS(4519), - [aux_sym_private_statement_token1] = ACTIONS(4519), - [aux_sym_public_statement_token1] = ACTIONS(4519), - [aux_sym_namelist_statement_token1] = ACTIONS(4519), - [aux_sym_common_statement_token1] = ACTIONS(4519), - [aux_sym_import_statement_token1] = ACTIONS(4519), - [aux_sym_derived_type_definition_token1] = ACTIONS(4519), - [aux_sym_abstract_specifier_token1] = ACTIONS(4519), - [aux_sym_procedure_attribute_token6] = ACTIONS(4519), - [aux_sym_variable_attributes_token1] = ACTIONS(4519), - [aux_sym_variable_attributes_token2] = ACTIONS(4519), - [aux_sym_variable_attributes_token3] = ACTIONS(4519), - [aux_sym_variable_attributes_token4] = ACTIONS(4519), - [aux_sym_variable_attributes_token5] = ACTIONS(4519), - [aux_sym__intrinsic_type_token1] = ACTIONS(4519), - [aux_sym__intrinsic_type_token2] = ACTIONS(4519), - [aux_sym__intrinsic_type_token3] = ACTIONS(4519), - [aux_sym__intrinsic_type_token4] = ACTIONS(4519), - [aux_sym__intrinsic_type_token6] = ACTIONS(4519), - [aux_sym__intrinsic_type_token7] = ACTIONS(4519), - [aux_sym__intrinsic_type_token8] = ACTIONS(4519), - [aux_sym__intrinsic_type_token9] = ACTIONS(4519), - [aux_sym__intrinsic_type_token10] = ACTIONS(4519), - [aux_sym_derived_type_token1] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4519), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4519), - [aux_sym_type_qualifier_token1] = ACTIONS(4519), - [aux_sym_type_qualifier_token2] = ACTIONS(4519), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4519), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4519), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4519), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4519), - [aux_sym_equivalence_statement_token1] = ACTIONS(4519), - [anon_sym_SEMI] = ACTIONS(4521), - [aux_sym_stop_statement_token1] = ACTIONS(4519), - [aux_sym_stop_statement_token2] = ACTIONS(4519), - [aux_sym_subroutine_call_token1] = ACTIONS(4519), - [aux_sym_keyword_statement_token1] = ACTIONS(4519), - [aux_sym_keyword_statement_token2] = ACTIONS(4519), - [aux_sym_keyword_statement_token3] = ACTIONS(4519), - [aux_sym_keyword_statement_token4] = ACTIONS(4519), - [aux_sym_keyword_statement_token6] = ACTIONS(4519), - [aux_sym_keyword_statement_token7] = ACTIONS(4519), - [aux_sym_include_statement_token1] = ACTIONS(4519), - [aux_sym_data_statement_token1] = ACTIONS(4519), - [aux_sym_do_loop_statement_token1] = ACTIONS(4519), - [aux_sym__inline_if_statement_token1] = ACTIONS(4519), - [aux_sym_end_if_statement_token1] = ACTIONS(4519), - [aux_sym_elseif_clause_token2] = ACTIONS(4519), - [aux_sym__inline_where_statement_token1] = ACTIONS(4519), - [aux_sym__forall_control_expression_token1] = ACTIONS(4519), - [aux_sym_select_case_statement_token1] = ACTIONS(4519), - [aux_sym_select_case_statement_token3] = ACTIONS(4519), - [aux_sym_select_type_statement_token1] = ACTIONS(4519), - [aux_sym_select_rank_statement_token2] = ACTIONS(4519), - [aux_sym_block_construct_token1] = ACTIONS(4519), - [aux_sym_associate_statement_token1] = ACTIONS(4519), - [aux_sym_format_statement_token1] = ACTIONS(4519), - [aux_sym_print_statement_token1] = ACTIONS(4519), - [aux_sym_open_statement_token1] = ACTIONS(4519), - [aux_sym_close_statement_token1] = ACTIONS(4519), - [aux_sym_inquire_statement_token1] = ACTIONS(4519), - [aux_sym_enum_statement_token1] = ACTIONS(4519), - [aux_sym_file_position_statement_token1] = ACTIONS(4519), - [aux_sym_file_position_statement_token2] = ACTIONS(4519), - [aux_sym_file_position_statement_token3] = ACTIONS(4519), - [aux_sym_file_position_statement_token4] = ACTIONS(4519), - [aux_sym_allocate_statement_token1] = ACTIONS(4519), - [aux_sym_entry_statement_token1] = ACTIONS(4519), - [aux_sym_logical_expression_token5] = ACTIONS(4521), - [anon_sym_DOT] = ACTIONS(4519), - [anon_sym_LPAREN_SLASH] = ACTIONS(4521), - [anon_sym_LBRACK] = ACTIONS(4521), - [aux_sym_boolean_literal_token1] = ACTIONS(4521), - [aux_sym_boolean_literal_token2] = ACTIONS(4521), - [aux_sym_null_literal_token1] = ACTIONS(4519), - [aux_sym_coarray_statement_token1] = ACTIONS(4519), - [aux_sym_coarray_statement_token2] = ACTIONS(4519), - [aux_sym_coarray_statement_token6] = ACTIONS(4519), - [aux_sym_coarray_statement_token8] = ACTIONS(4519), - [aux_sym_coarray_statement_token11] = ACTIONS(4519), - [aux_sym_coarray_statement_token12] = ACTIONS(4519), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4519), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4519), - [aux_sym_identifier_token1] = ACTIONS(4519), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4521), - [sym__float_literal] = ACTIONS(4521), - [sym__boz_literal] = ACTIONS(4521), - [sym__string_literal] = ACTIONS(4521), - [sym__string_literal_kind] = ACTIONS(4521), - }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(4479), - [aux_sym_preproc_include_token1] = ACTIONS(4477), - [aux_sym_preproc_def_token1] = ACTIONS(4477), - [aux_sym_preproc_if_token1] = ACTIONS(4477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4477), - [sym_preproc_directive] = ACTIONS(4477), - [anon_sym_LPAREN2] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4477), - [aux_sym_end_program_statement_token1] = ACTIONS(4477), - [aux_sym_end_program_statement_token2] = ACTIONS(4477), - [aux_sym_module_statement_token1] = ACTIONS(4477), - [aux_sym_submodule_statement_token1] = ACTIONS(4477), - [aux_sym_interface_statement_token1] = ACTIONS(4477), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4477), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4477), - [aux_sym_subroutine_statement_token1] = ACTIONS(4477), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4477), - [aux_sym_function_statement_token1] = ACTIONS(4477), - [aux_sym_language_binding_token1] = ACTIONS(4477), - [aux_sym_procedure_attributes_token1] = ACTIONS(4477), - [aux_sym_procedure_attributes_token3] = ACTIONS(4477), - [aux_sym_contains_statement_token1] = ACTIONS(4477), - [aux_sym_use_statement_token1] = ACTIONS(4477), - [aux_sym_use_statement_token2] = ACTIONS(4477), - [aux_sym_implicit_statement_token1] = ACTIONS(4477), - [aux_sym_implicit_statement_token3] = ACTIONS(4477), - [aux_sym_implicit_statement_token4] = ACTIONS(4477), - [aux_sym_save_statement_token1] = ACTIONS(4477), - [aux_sym_private_statement_token1] = ACTIONS(4477), - [aux_sym_public_statement_token1] = ACTIONS(4477), - [aux_sym_namelist_statement_token1] = ACTIONS(4477), - [aux_sym_common_statement_token1] = ACTIONS(4477), - [aux_sym_import_statement_token1] = ACTIONS(4477), - [aux_sym_derived_type_definition_token1] = ACTIONS(4477), - [aux_sym_abstract_specifier_token1] = ACTIONS(4477), - [aux_sym_procedure_attribute_token6] = ACTIONS(4477), - [aux_sym_variable_attributes_token1] = ACTIONS(4477), - [aux_sym_variable_attributes_token2] = ACTIONS(4477), - [aux_sym_variable_attributes_token3] = ACTIONS(4477), - [aux_sym_variable_attributes_token4] = ACTIONS(4477), - [aux_sym_variable_attributes_token5] = ACTIONS(4477), - [aux_sym__intrinsic_type_token1] = ACTIONS(4477), - [aux_sym__intrinsic_type_token2] = ACTIONS(4477), - [aux_sym__intrinsic_type_token3] = ACTIONS(4477), - [aux_sym__intrinsic_type_token4] = ACTIONS(4477), - [aux_sym__intrinsic_type_token6] = ACTIONS(4477), - [aux_sym__intrinsic_type_token7] = ACTIONS(4477), - [aux_sym__intrinsic_type_token8] = ACTIONS(4477), - [aux_sym__intrinsic_type_token9] = ACTIONS(4477), - [aux_sym__intrinsic_type_token10] = ACTIONS(4477), - [aux_sym_derived_type_token1] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4477), - [aux_sym_type_qualifier_token1] = ACTIONS(4477), - [aux_sym_type_qualifier_token2] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4477), - [aux_sym_equivalence_statement_token1] = ACTIONS(4477), - [anon_sym_SEMI] = ACTIONS(4479), - [aux_sym_stop_statement_token1] = ACTIONS(4477), - [aux_sym_stop_statement_token2] = ACTIONS(4477), - [aux_sym_subroutine_call_token1] = ACTIONS(4477), - [aux_sym_keyword_statement_token1] = ACTIONS(4477), - [aux_sym_keyword_statement_token2] = ACTIONS(4477), - [aux_sym_keyword_statement_token3] = ACTIONS(4477), - [aux_sym_keyword_statement_token4] = ACTIONS(4477), - [aux_sym_keyword_statement_token6] = ACTIONS(4477), - [aux_sym_keyword_statement_token7] = ACTIONS(4477), - [aux_sym_include_statement_token1] = ACTIONS(4477), - [aux_sym_data_statement_token1] = ACTIONS(4477), - [aux_sym_do_loop_statement_token1] = ACTIONS(4477), - [aux_sym__inline_if_statement_token1] = ACTIONS(4477), - [aux_sym_end_if_statement_token1] = ACTIONS(4477), - [aux_sym_elseif_clause_token2] = ACTIONS(4477), - [aux_sym__inline_where_statement_token1] = ACTIONS(4477), - [aux_sym__forall_control_expression_token1] = ACTIONS(4477), - [aux_sym_select_case_statement_token1] = ACTIONS(4477), - [aux_sym_select_case_statement_token3] = ACTIONS(4477), - [aux_sym_select_type_statement_token1] = ACTIONS(4477), - [aux_sym_select_rank_statement_token2] = ACTIONS(4477), - [aux_sym_block_construct_token1] = ACTIONS(4477), - [aux_sym_associate_statement_token1] = ACTIONS(4477), - [aux_sym_format_statement_token1] = ACTIONS(4477), - [aux_sym_print_statement_token1] = ACTIONS(4477), - [aux_sym_open_statement_token1] = ACTIONS(4477), - [aux_sym_close_statement_token1] = ACTIONS(4477), - [aux_sym_inquire_statement_token1] = ACTIONS(4477), - [aux_sym_enum_statement_token1] = ACTIONS(4477), - [aux_sym_file_position_statement_token1] = ACTIONS(4477), - [aux_sym_file_position_statement_token2] = ACTIONS(4477), - [aux_sym_file_position_statement_token3] = ACTIONS(4477), - [aux_sym_file_position_statement_token4] = ACTIONS(4477), - [aux_sym_allocate_statement_token1] = ACTIONS(4477), - [aux_sym_entry_statement_token1] = ACTIONS(4477), - [aux_sym_logical_expression_token5] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(4477), - [anon_sym_LPAREN_SLASH] = ACTIONS(4479), - [anon_sym_LBRACK] = ACTIONS(4479), - [aux_sym_boolean_literal_token1] = ACTIONS(4479), - [aux_sym_boolean_literal_token2] = ACTIONS(4479), - [aux_sym_null_literal_token1] = ACTIONS(4477), - [aux_sym_coarray_statement_token1] = ACTIONS(4477), - [aux_sym_coarray_statement_token2] = ACTIONS(4477), - [aux_sym_coarray_statement_token6] = ACTIONS(4477), - [aux_sym_coarray_statement_token8] = ACTIONS(4477), - [aux_sym_coarray_statement_token11] = ACTIONS(4477), - [aux_sym_coarray_statement_token12] = ACTIONS(4477), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4477), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4477), - [aux_sym_identifier_token1] = ACTIONS(4477), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4479), - [sym__float_literal] = ACTIONS(4479), - [sym__boz_literal] = ACTIONS(4479), - [sym__string_literal] = ACTIONS(4479), - [sym__string_literal_kind] = ACTIONS(4479), - }, - [1035] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(7796), - [sym_preproc_elif_in_module] = STATE(7796), - [sym_preproc_elifdef_in_module] = STATE(7796), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5738), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4755), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [1016] = { + [ts_builtin_sym_end] = ACTIONS(4453), + [aux_sym_preproc_include_token1] = ACTIONS(4451), + [aux_sym_preproc_def_token1] = ACTIONS(4451), + [aux_sym_preproc_if_token1] = ACTIONS(4451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4451), + [sym_preproc_directive] = ACTIONS(4451), + [anon_sym_LPAREN2] = ACTIONS(4451), + [anon_sym_PLUS] = ACTIONS(4453), + [anon_sym_DASH] = ACTIONS(4453), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4451), + [aux_sym_end_program_statement_token1] = ACTIONS(4451), + [aux_sym_end_program_statement_token2] = ACTIONS(4451), + [aux_sym_module_statement_token1] = ACTIONS(4451), + [aux_sym_submodule_statement_token1] = ACTIONS(4451), + [aux_sym_interface_statement_token1] = ACTIONS(4451), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4451), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4451), + [aux_sym_subroutine_statement_token1] = ACTIONS(4451), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4451), + [aux_sym_function_statement_token1] = ACTIONS(4451), + [aux_sym_language_binding_token1] = ACTIONS(4451), + [aux_sym_procedure_attributes_token1] = ACTIONS(4451), + [aux_sym_procedure_attributes_token3] = ACTIONS(4451), + [aux_sym_contains_statement_token1] = ACTIONS(4451), + [aux_sym_use_statement_token1] = ACTIONS(4451), + [aux_sym_use_statement_token2] = ACTIONS(4451), + [aux_sym_implicit_statement_token1] = ACTIONS(4451), + [aux_sym_implicit_statement_token3] = ACTIONS(4451), + [aux_sym_implicit_statement_token4] = ACTIONS(4451), + [aux_sym_save_statement_token1] = ACTIONS(4451), + [aux_sym_private_statement_token1] = ACTIONS(4451), + [aux_sym_public_statement_token1] = ACTIONS(4451), + [aux_sym_namelist_statement_token1] = ACTIONS(4451), + [aux_sym_common_statement_token1] = ACTIONS(4451), + [aux_sym_import_statement_token1] = ACTIONS(4451), + [aux_sym_derived_type_definition_token1] = ACTIONS(4451), + [aux_sym_abstract_specifier_token1] = ACTIONS(4451), + [aux_sym_procedure_attribute_token6] = ACTIONS(4451), + [aux_sym_variable_attributes_token1] = ACTIONS(4451), + [aux_sym_variable_attributes_token2] = ACTIONS(4451), + [aux_sym_variable_attributes_token3] = ACTIONS(4451), + [aux_sym_variable_attributes_token4] = ACTIONS(4451), + [aux_sym_variable_attributes_token5] = ACTIONS(4451), + [aux_sym__intrinsic_type_token1] = ACTIONS(4451), + [aux_sym__intrinsic_type_token2] = ACTIONS(4451), + [aux_sym__intrinsic_type_token3] = ACTIONS(4451), + [aux_sym__intrinsic_type_token4] = ACTIONS(4451), + [aux_sym__intrinsic_type_token6] = ACTIONS(4451), + [aux_sym__intrinsic_type_token7] = ACTIONS(4451), + [aux_sym__intrinsic_type_token8] = ACTIONS(4451), + [aux_sym__intrinsic_type_token9] = ACTIONS(4451), + [aux_sym__intrinsic_type_token10] = ACTIONS(4451), + [aux_sym_derived_type_token1] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4451), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4451), + [aux_sym_type_qualifier_token1] = ACTIONS(4451), + [aux_sym_type_qualifier_token2] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4451), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4451), + [aux_sym_equivalence_statement_token1] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [aux_sym_stop_statement_token1] = ACTIONS(4451), + [aux_sym_stop_statement_token2] = ACTIONS(4451), + [aux_sym_subroutine_call_token1] = ACTIONS(4451), + [aux_sym_keyword_statement_token1] = ACTIONS(4451), + [aux_sym_keyword_statement_token2] = ACTIONS(4451), + [aux_sym_keyword_statement_token3] = ACTIONS(4451), + [aux_sym_keyword_statement_token4] = ACTIONS(4451), + [aux_sym_keyword_statement_token6] = ACTIONS(4451), + [aux_sym_keyword_statement_token7] = ACTIONS(4451), + [aux_sym_include_statement_token1] = ACTIONS(4451), + [aux_sym_data_statement_token1] = ACTIONS(4451), + [aux_sym_do_loop_statement_token1] = ACTIONS(4451), + [aux_sym__inline_if_statement_token1] = ACTIONS(4451), + [aux_sym_end_if_statement_token1] = ACTIONS(4451), + [aux_sym_elseif_clause_token2] = ACTIONS(4451), + [aux_sym__inline_where_statement_token1] = ACTIONS(4451), + [aux_sym__forall_control_expression_token1] = ACTIONS(4451), + [aux_sym_select_case_statement_token1] = ACTIONS(4451), + [aux_sym_select_case_statement_token3] = ACTIONS(4451), + [aux_sym_select_type_statement_token1] = ACTIONS(4451), + [aux_sym_select_rank_statement_token2] = ACTIONS(4451), + [aux_sym_block_construct_token1] = ACTIONS(4451), + [aux_sym_associate_statement_token1] = ACTIONS(4451), + [aux_sym_format_statement_token1] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_inquire_statement_token1] = ACTIONS(4451), + [aux_sym_enum_statement_token1] = ACTIONS(4451), + [aux_sym_file_position_statement_token1] = ACTIONS(4451), + [aux_sym_file_position_statement_token2] = ACTIONS(4451), + [aux_sym_file_position_statement_token3] = ACTIONS(4451), + [aux_sym_file_position_statement_token4] = ACTIONS(4451), + [aux_sym_allocate_statement_token1] = ACTIONS(4451), + [aux_sym_entry_statement_token1] = ACTIONS(4451), + [aux_sym_logical_expression_token5] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_LPAREN_SLASH] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4453), + [aux_sym_boolean_literal_token2] = ACTIONS(4453), + [aux_sym_null_literal_token1] = ACTIONS(4451), + [aux_sym_coarray_statement_token1] = ACTIONS(4451), + [aux_sym_coarray_statement_token2] = ACTIONS(4451), + [aux_sym_coarray_statement_token6] = ACTIONS(4451), + [aux_sym_coarray_statement_token8] = ACTIONS(4451), + [aux_sym_coarray_statement_token11] = ACTIONS(4451), + [aux_sym_coarray_statement_token12] = ACTIONS(4451), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4451), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4451), + [aux_sym_identifier_token1] = ACTIONS(4451), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4453), + [sym__float_literal] = ACTIONS(4453), + [sym__boz_literal] = ACTIONS(4453), + [sym__string_literal] = ACTIONS(4453), + [sym__string_literal_kind] = ACTIONS(4453), }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(4351), - [aux_sym_preproc_include_token1] = ACTIONS(4347), - [aux_sym_preproc_def_token1] = ACTIONS(4347), - [aux_sym_preproc_if_token1] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), - [sym_preproc_directive] = ACTIONS(4347), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_PLUS] = ACTIONS(4351), - [anon_sym_DASH] = ACTIONS(4351), + [1017] = { + [ts_builtin_sym_end] = ACTIONS(4501), + [aux_sym_preproc_include_token1] = ACTIONS(4499), + [aux_sym_preproc_def_token1] = ACTIONS(4499), + [aux_sym_preproc_if_token1] = ACTIONS(4499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4499), + [sym_preproc_directive] = ACTIONS(4499), + [anon_sym_LPAREN2] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4501), + [anon_sym_DASH] = ACTIONS(4501), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token2] = ACTIONS(4347), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4347), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4347), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4347), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token1] = ACTIONS(4347), - [aux_sym_procedure_attributes_token3] = ACTIONS(4347), - [aux_sym_contains_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token1] = ACTIONS(4347), - [aux_sym_use_statement_token2] = ACTIONS(4347), - [aux_sym_implicit_statement_token1] = ACTIONS(4347), - [aux_sym_implicit_statement_token3] = ACTIONS(4347), - [aux_sym_implicit_statement_token4] = ACTIONS(4347), - [aux_sym_save_statement_token1] = ACTIONS(4347), - [aux_sym_private_statement_token1] = ACTIONS(4347), - [aux_sym_public_statement_token1] = ACTIONS(4347), - [aux_sym_namelist_statement_token1] = ACTIONS(4347), - [aux_sym_common_statement_token1] = ACTIONS(4347), - [aux_sym_import_statement_token1] = ACTIONS(4347), - [aux_sym_derived_type_definition_token1] = ACTIONS(4347), - [aux_sym_abstract_specifier_token1] = ACTIONS(4347), - [aux_sym_procedure_attribute_token6] = ACTIONS(4347), - [aux_sym_variable_attributes_token1] = ACTIONS(4347), - [aux_sym_variable_attributes_token2] = ACTIONS(4347), - [aux_sym_variable_attributes_token3] = ACTIONS(4347), - [aux_sym_variable_attributes_token4] = ACTIONS(4347), - [aux_sym_variable_attributes_token5] = ACTIONS(4347), - [aux_sym__intrinsic_type_token1] = ACTIONS(4347), - [aux_sym__intrinsic_type_token2] = ACTIONS(4347), - [aux_sym__intrinsic_type_token3] = ACTIONS(4347), - [aux_sym__intrinsic_type_token4] = ACTIONS(4347), - [aux_sym__intrinsic_type_token6] = ACTIONS(4347), - [aux_sym__intrinsic_type_token7] = ACTIONS(4347), - [aux_sym__intrinsic_type_token8] = ACTIONS(4347), - [aux_sym__intrinsic_type_token9] = ACTIONS(4347), - [aux_sym__intrinsic_type_token10] = ACTIONS(4347), - [aux_sym_derived_type_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4347), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4347), - [aux_sym_type_qualifier_token1] = ACTIONS(4347), - [aux_sym_type_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4347), - [anon_sym_SEMI] = ACTIONS(4351), - [aux_sym_stop_statement_token1] = ACTIONS(4347), - [aux_sym_stop_statement_token2] = ACTIONS(4347), - [aux_sym_subroutine_call_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token1] = ACTIONS(4347), - [aux_sym_keyword_statement_token2] = ACTIONS(4347), - [aux_sym_keyword_statement_token3] = ACTIONS(4347), - [aux_sym_keyword_statement_token4] = ACTIONS(4347), - [aux_sym_keyword_statement_token6] = ACTIONS(4347), - [aux_sym_keyword_statement_token7] = ACTIONS(4347), - [aux_sym_include_statement_token1] = ACTIONS(4347), - [aux_sym_data_statement_token1] = ACTIONS(4347), - [aux_sym_do_loop_statement_token1] = ACTIONS(4347), - [aux_sym__inline_if_statement_token1] = ACTIONS(4347), - [aux_sym_end_if_statement_token1] = ACTIONS(4347), - [aux_sym_elseif_clause_token2] = ACTIONS(4347), - [aux_sym__inline_where_statement_token1] = ACTIONS(4347), - [aux_sym__forall_control_expression_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token1] = ACTIONS(4347), - [aux_sym_select_case_statement_token3] = ACTIONS(4347), - [aux_sym_select_type_statement_token1] = ACTIONS(4347), - [aux_sym_select_rank_statement_token2] = ACTIONS(4347), - [aux_sym_block_construct_token1] = ACTIONS(4347), - [aux_sym_associate_statement_token1] = ACTIONS(4347), - [aux_sym_format_statement_token1] = ACTIONS(4347), - [aux_sym_print_statement_token1] = ACTIONS(4347), - [aux_sym_open_statement_token1] = ACTIONS(4347), - [aux_sym_close_statement_token1] = ACTIONS(4347), - [aux_sym_inquire_statement_token1] = ACTIONS(4347), - [aux_sym_enum_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token1] = ACTIONS(4347), - [aux_sym_file_position_statement_token2] = ACTIONS(4347), - [aux_sym_file_position_statement_token3] = ACTIONS(4347), - [aux_sym_file_position_statement_token4] = ACTIONS(4347), - [aux_sym_allocate_statement_token1] = ACTIONS(4347), - [aux_sym_entry_statement_token1] = ACTIONS(4347), - [aux_sym_logical_expression_token5] = ACTIONS(4351), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_LPAREN_SLASH] = ACTIONS(4351), - [anon_sym_LBRACK] = ACTIONS(4351), - [aux_sym_boolean_literal_token1] = ACTIONS(4351), - [aux_sym_boolean_literal_token2] = ACTIONS(4351), - [aux_sym_null_literal_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_statement_token2] = ACTIONS(4347), - [aux_sym_coarray_statement_token6] = ACTIONS(4347), - [aux_sym_coarray_statement_token8] = ACTIONS(4347), - [aux_sym_coarray_statement_token11] = ACTIONS(4347), - [aux_sym_coarray_statement_token12] = ACTIONS(4347), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4347), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4347), - [aux_sym_identifier_token1] = ACTIONS(4347), + [aux_sym_program_statement_token1] = ACTIONS(4499), + [aux_sym_end_program_statement_token1] = ACTIONS(4499), + [aux_sym_end_program_statement_token2] = ACTIONS(4499), + [aux_sym_module_statement_token1] = ACTIONS(4499), + [aux_sym_submodule_statement_token1] = ACTIONS(4499), + [aux_sym_interface_statement_token1] = ACTIONS(4499), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4499), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4499), + [aux_sym_subroutine_statement_token1] = ACTIONS(4499), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4499), + [aux_sym_function_statement_token1] = ACTIONS(4499), + [aux_sym_language_binding_token1] = ACTIONS(4499), + [aux_sym_procedure_attributes_token1] = ACTIONS(4499), + [aux_sym_procedure_attributes_token3] = ACTIONS(4499), + [aux_sym_contains_statement_token1] = ACTIONS(4499), + [aux_sym_use_statement_token1] = ACTIONS(4499), + [aux_sym_use_statement_token2] = ACTIONS(4499), + [aux_sym_implicit_statement_token1] = ACTIONS(4499), + [aux_sym_implicit_statement_token3] = ACTIONS(4499), + [aux_sym_implicit_statement_token4] = ACTIONS(4499), + [aux_sym_save_statement_token1] = ACTIONS(4499), + [aux_sym_private_statement_token1] = ACTIONS(4499), + [aux_sym_public_statement_token1] = ACTIONS(4499), + [aux_sym_namelist_statement_token1] = ACTIONS(4499), + [aux_sym_common_statement_token1] = ACTIONS(4499), + [aux_sym_import_statement_token1] = ACTIONS(4499), + [aux_sym_derived_type_definition_token1] = ACTIONS(4499), + [aux_sym_abstract_specifier_token1] = ACTIONS(4499), + [aux_sym_procedure_attribute_token6] = ACTIONS(4499), + [aux_sym_variable_attributes_token1] = ACTIONS(4499), + [aux_sym_variable_attributes_token2] = ACTIONS(4499), + [aux_sym_variable_attributes_token3] = ACTIONS(4499), + [aux_sym_variable_attributes_token4] = ACTIONS(4499), + [aux_sym_variable_attributes_token5] = ACTIONS(4499), + [aux_sym__intrinsic_type_token1] = ACTIONS(4499), + [aux_sym__intrinsic_type_token2] = ACTIONS(4499), + [aux_sym__intrinsic_type_token3] = ACTIONS(4499), + [aux_sym__intrinsic_type_token4] = ACTIONS(4499), + [aux_sym__intrinsic_type_token6] = ACTIONS(4499), + [aux_sym__intrinsic_type_token7] = ACTIONS(4499), + [aux_sym__intrinsic_type_token8] = ACTIONS(4499), + [aux_sym__intrinsic_type_token9] = ACTIONS(4499), + [aux_sym__intrinsic_type_token10] = ACTIONS(4499), + [aux_sym_derived_type_token1] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4499), + [aux_sym_type_qualifier_token1] = ACTIONS(4499), + [aux_sym_type_qualifier_token2] = ACTIONS(4499), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4499), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4499), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4499), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4499), + [aux_sym_equivalence_statement_token1] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4501), + [aux_sym_stop_statement_token1] = ACTIONS(4499), + [aux_sym_stop_statement_token2] = ACTIONS(4499), + [aux_sym_subroutine_call_token1] = ACTIONS(4499), + [aux_sym_keyword_statement_token1] = ACTIONS(4499), + [aux_sym_keyword_statement_token2] = ACTIONS(4499), + [aux_sym_keyword_statement_token3] = ACTIONS(4499), + [aux_sym_keyword_statement_token4] = ACTIONS(4499), + [aux_sym_keyword_statement_token6] = ACTIONS(4499), + [aux_sym_keyword_statement_token7] = ACTIONS(4499), + [aux_sym_include_statement_token1] = ACTIONS(4499), + [aux_sym_data_statement_token1] = ACTIONS(4499), + [aux_sym_do_loop_statement_token1] = ACTIONS(4499), + [aux_sym__inline_if_statement_token1] = ACTIONS(4499), + [aux_sym_end_if_statement_token1] = ACTIONS(4499), + [aux_sym_elseif_clause_token2] = ACTIONS(4499), + [aux_sym__inline_where_statement_token1] = ACTIONS(4499), + [aux_sym__forall_control_expression_token1] = ACTIONS(4499), + [aux_sym_select_case_statement_token1] = ACTIONS(4499), + [aux_sym_select_case_statement_token3] = ACTIONS(4499), + [aux_sym_select_type_statement_token1] = ACTIONS(4499), + [aux_sym_select_rank_statement_token2] = ACTIONS(4499), + [aux_sym_block_construct_token1] = ACTIONS(4499), + [aux_sym_associate_statement_token1] = ACTIONS(4499), + [aux_sym_format_statement_token1] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_inquire_statement_token1] = ACTIONS(4499), + [aux_sym_enum_statement_token1] = ACTIONS(4499), + [aux_sym_file_position_statement_token1] = ACTIONS(4499), + [aux_sym_file_position_statement_token2] = ACTIONS(4499), + [aux_sym_file_position_statement_token3] = ACTIONS(4499), + [aux_sym_file_position_statement_token4] = ACTIONS(4499), + [aux_sym_allocate_statement_token1] = ACTIONS(4499), + [aux_sym_entry_statement_token1] = ACTIONS(4499), + [aux_sym_logical_expression_token5] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_LPAREN_SLASH] = ACTIONS(4501), + [anon_sym_LBRACK] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4501), + [aux_sym_boolean_literal_token2] = ACTIONS(4501), + [aux_sym_null_literal_token1] = ACTIONS(4499), + [aux_sym_coarray_statement_token1] = ACTIONS(4499), + [aux_sym_coarray_statement_token2] = ACTIONS(4499), + [aux_sym_coarray_statement_token6] = ACTIONS(4499), + [aux_sym_coarray_statement_token8] = ACTIONS(4499), + [aux_sym_coarray_statement_token11] = ACTIONS(4499), + [aux_sym_coarray_statement_token12] = ACTIONS(4499), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4499), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4499), + [aux_sym_identifier_token1] = ACTIONS(4499), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4351), - [sym__float_literal] = ACTIONS(4351), - [sym__boz_literal] = ACTIONS(4351), - [sym__string_literal] = ACTIONS(4351), - [sym__string_literal_kind] = ACTIONS(4351), + [sym__integer_literal] = ACTIONS(4501), + [sym__float_literal] = ACTIONS(4501), + [sym__boz_literal] = ACTIONS(4501), + [sym__string_literal] = ACTIONS(4501), + [sym__string_literal_kind] = ACTIONS(4501), }, - [1037] = { + [1018] = { [ts_builtin_sym_end] = ACTIONS(4505), [aux_sym_preproc_include_token1] = ACTIONS(4503), [aux_sym_preproc_def_token1] = ACTIONS(4503), @@ -230449,142 +227884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4505), [sym__string_literal_kind] = ACTIONS(4505), }, - [1038] = { - [ts_builtin_sym_end] = ACTIONS(4351), - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), - }, - [1039] = { + [1019] = { [ts_builtin_sym_end] = ACTIONS(4509), [aux_sym_preproc_include_token1] = ACTIONS(4507), [aux_sym_preproc_def_token1] = ACTIONS(4507), @@ -230719,2846 +228019,2981 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4509), [sym__string_literal_kind] = ACTIONS(4509), }, - [1040] = { - [ts_builtin_sym_end] = ACTIONS(4553), - [aux_sym_preproc_include_token1] = ACTIONS(4551), - [aux_sym_preproc_def_token1] = ACTIONS(4551), - [aux_sym_preproc_if_token1] = ACTIONS(4551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4551), - [sym_preproc_directive] = ACTIONS(4551), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4551), - [aux_sym_end_program_statement_token1] = ACTIONS(4551), - [aux_sym_end_program_statement_token2] = ACTIONS(4551), - [aux_sym_module_statement_token1] = ACTIONS(4551), - [aux_sym_submodule_statement_token1] = ACTIONS(4551), - [aux_sym_interface_statement_token1] = ACTIONS(4551), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4551), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4551), - [aux_sym_subroutine_statement_token1] = ACTIONS(4551), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4551), - [aux_sym_function_statement_token1] = ACTIONS(4551), - [aux_sym_language_binding_token1] = ACTIONS(4551), - [aux_sym_procedure_attributes_token1] = ACTIONS(4551), - [aux_sym_procedure_attributes_token3] = ACTIONS(4551), - [aux_sym_contains_statement_token1] = ACTIONS(4551), - [aux_sym_use_statement_token1] = ACTIONS(4551), - [aux_sym_use_statement_token2] = ACTIONS(4551), - [aux_sym_implicit_statement_token1] = ACTIONS(4551), - [aux_sym_implicit_statement_token3] = ACTIONS(4551), - [aux_sym_implicit_statement_token4] = ACTIONS(4551), - [aux_sym_save_statement_token1] = ACTIONS(4551), - [aux_sym_private_statement_token1] = ACTIONS(4551), - [aux_sym_public_statement_token1] = ACTIONS(4551), - [aux_sym_namelist_statement_token1] = ACTIONS(4551), - [aux_sym_common_statement_token1] = ACTIONS(4551), - [aux_sym_import_statement_token1] = ACTIONS(4551), - [aux_sym_derived_type_definition_token1] = ACTIONS(4551), - [aux_sym_abstract_specifier_token1] = ACTIONS(4551), - [aux_sym_procedure_attribute_token6] = ACTIONS(4551), - [aux_sym_variable_attributes_token1] = ACTIONS(4551), - [aux_sym_variable_attributes_token2] = ACTIONS(4551), - [aux_sym_variable_attributes_token3] = ACTIONS(4551), - [aux_sym_variable_attributes_token4] = ACTIONS(4551), - [aux_sym_variable_attributes_token5] = ACTIONS(4551), - [aux_sym__intrinsic_type_token1] = ACTIONS(4551), - [aux_sym__intrinsic_type_token2] = ACTIONS(4551), - [aux_sym__intrinsic_type_token3] = ACTIONS(4551), - [aux_sym__intrinsic_type_token4] = ACTIONS(4551), - [aux_sym__intrinsic_type_token6] = ACTIONS(4551), - [aux_sym__intrinsic_type_token7] = ACTIONS(4551), - [aux_sym__intrinsic_type_token8] = ACTIONS(4551), - [aux_sym__intrinsic_type_token9] = ACTIONS(4551), - [aux_sym__intrinsic_type_token10] = ACTIONS(4551), - [aux_sym_derived_type_token1] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4551), - [aux_sym_type_qualifier_token1] = ACTIONS(4551), - [aux_sym_type_qualifier_token2] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4551), - [aux_sym_equivalence_statement_token1] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4553), - [aux_sym_stop_statement_token1] = ACTIONS(4551), - [aux_sym_stop_statement_token2] = ACTIONS(4551), - [aux_sym_subroutine_call_token1] = ACTIONS(4551), - [aux_sym_keyword_statement_token1] = ACTIONS(4551), - [aux_sym_keyword_statement_token2] = ACTIONS(4551), - [aux_sym_keyword_statement_token3] = ACTIONS(4551), - [aux_sym_keyword_statement_token4] = ACTIONS(4551), - [aux_sym_keyword_statement_token6] = ACTIONS(4551), - [aux_sym_keyword_statement_token7] = ACTIONS(4551), - [aux_sym_include_statement_token1] = ACTIONS(4551), - [aux_sym_data_statement_token1] = ACTIONS(4551), - [aux_sym_do_loop_statement_token1] = ACTIONS(4551), - [aux_sym__inline_if_statement_token1] = ACTIONS(4551), - [aux_sym_end_if_statement_token1] = ACTIONS(4551), - [aux_sym_elseif_clause_token2] = ACTIONS(4551), - [aux_sym__inline_where_statement_token1] = ACTIONS(4551), - [aux_sym__forall_control_expression_token1] = ACTIONS(4551), - [aux_sym_select_case_statement_token1] = ACTIONS(4551), - [aux_sym_select_case_statement_token3] = ACTIONS(4551), - [aux_sym_select_type_statement_token1] = ACTIONS(4551), - [aux_sym_select_rank_statement_token2] = ACTIONS(4551), - [aux_sym_block_construct_token1] = ACTIONS(4551), - [aux_sym_associate_statement_token1] = ACTIONS(4551), - [aux_sym_format_statement_token1] = ACTIONS(4551), - [aux_sym_print_statement_token1] = ACTIONS(4551), - [aux_sym_open_statement_token1] = ACTIONS(4551), - [aux_sym_close_statement_token1] = ACTIONS(4551), - [aux_sym_inquire_statement_token1] = ACTIONS(4551), - [aux_sym_enum_statement_token1] = ACTIONS(4551), - [aux_sym_file_position_statement_token1] = ACTIONS(4551), - [aux_sym_file_position_statement_token2] = ACTIONS(4551), - [aux_sym_file_position_statement_token3] = ACTIONS(4551), - [aux_sym_file_position_statement_token4] = ACTIONS(4551), - [aux_sym_allocate_statement_token1] = ACTIONS(4551), - [aux_sym_entry_statement_token1] = ACTIONS(4551), - [aux_sym_logical_expression_token5] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4551), - [anon_sym_LPAREN_SLASH] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4553), - [aux_sym_boolean_literal_token1] = ACTIONS(4553), - [aux_sym_boolean_literal_token2] = ACTIONS(4553), - [aux_sym_null_literal_token1] = ACTIONS(4551), - [aux_sym_coarray_statement_token1] = ACTIONS(4551), - [aux_sym_coarray_statement_token2] = ACTIONS(4551), - [aux_sym_coarray_statement_token6] = ACTIONS(4551), - [aux_sym_coarray_statement_token8] = ACTIONS(4551), - [aux_sym_coarray_statement_token11] = ACTIONS(4551), - [aux_sym_coarray_statement_token12] = ACTIONS(4551), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4551), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4551), - [aux_sym_identifier_token1] = ACTIONS(4551), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4553), - [sym__float_literal] = ACTIONS(4553), - [sym__boz_literal] = ACTIONS(4553), - [sym__string_literal] = ACTIONS(4553), - [sym__string_literal_kind] = ACTIONS(4553), + [1020] = { + [ts_builtin_sym_end] = ACTIONS(4621), + [aux_sym_preproc_include_token1] = ACTIONS(4619), + [aux_sym_preproc_def_token1] = ACTIONS(4619), + [aux_sym_preproc_if_token1] = ACTIONS(4619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), + [sym_preproc_directive] = ACTIONS(4619), + [anon_sym_LPAREN2] = ACTIONS(4619), + [anon_sym_PLUS] = ACTIONS(4621), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4619), + [aux_sym_end_program_statement_token1] = ACTIONS(4619), + [aux_sym_end_program_statement_token2] = ACTIONS(4619), + [aux_sym_module_statement_token1] = ACTIONS(4619), + [aux_sym_submodule_statement_token1] = ACTIONS(4619), + [aux_sym_interface_statement_token1] = ACTIONS(4619), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), + [aux_sym_subroutine_statement_token1] = ACTIONS(4619), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), + [aux_sym_function_statement_token1] = ACTIONS(4619), + [aux_sym_language_binding_token1] = ACTIONS(4619), + [aux_sym_procedure_attributes_token1] = ACTIONS(4619), + [aux_sym_procedure_attributes_token3] = ACTIONS(4619), + [aux_sym_contains_statement_token1] = ACTIONS(4619), + [aux_sym_use_statement_token1] = ACTIONS(4619), + [aux_sym_use_statement_token2] = ACTIONS(4619), + [aux_sym_implicit_statement_token1] = ACTIONS(4619), + [aux_sym_implicit_statement_token3] = ACTIONS(4619), + [aux_sym_implicit_statement_token4] = ACTIONS(4619), + [aux_sym_save_statement_token1] = ACTIONS(4619), + [aux_sym_private_statement_token1] = ACTIONS(4619), + [aux_sym_public_statement_token1] = ACTIONS(4619), + [aux_sym_namelist_statement_token1] = ACTIONS(4619), + [aux_sym_common_statement_token1] = ACTIONS(4619), + [aux_sym_import_statement_token1] = ACTIONS(4619), + [aux_sym_derived_type_definition_token1] = ACTIONS(4619), + [aux_sym_abstract_specifier_token1] = ACTIONS(4619), + [aux_sym_procedure_attribute_token6] = ACTIONS(4619), + [aux_sym_variable_attributes_token1] = ACTIONS(4619), + [aux_sym_variable_attributes_token2] = ACTIONS(4619), + [aux_sym_variable_attributes_token3] = ACTIONS(4619), + [aux_sym_variable_attributes_token4] = ACTIONS(4619), + [aux_sym_variable_attributes_token5] = ACTIONS(4619), + [aux_sym__intrinsic_type_token1] = ACTIONS(4619), + [aux_sym__intrinsic_type_token2] = ACTIONS(4619), + [aux_sym__intrinsic_type_token3] = ACTIONS(4619), + [aux_sym__intrinsic_type_token4] = ACTIONS(4619), + [aux_sym__intrinsic_type_token6] = ACTIONS(4619), + [aux_sym__intrinsic_type_token7] = ACTIONS(4619), + [aux_sym__intrinsic_type_token8] = ACTIONS(4619), + [aux_sym__intrinsic_type_token9] = ACTIONS(4619), + [aux_sym__intrinsic_type_token10] = ACTIONS(4619), + [aux_sym_derived_type_token1] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), + [aux_sym_type_qualifier_token1] = ACTIONS(4619), + [aux_sym_type_qualifier_token2] = ACTIONS(4619), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4619), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4619), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4619), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4619), + [aux_sym_equivalence_statement_token1] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4621), + [aux_sym_stop_statement_token1] = ACTIONS(4619), + [aux_sym_stop_statement_token2] = ACTIONS(4619), + [aux_sym_subroutine_call_token1] = ACTIONS(4619), + [aux_sym_keyword_statement_token1] = ACTIONS(4619), + [aux_sym_keyword_statement_token2] = ACTIONS(4619), + [aux_sym_keyword_statement_token3] = ACTIONS(4619), + [aux_sym_keyword_statement_token4] = ACTIONS(4619), + [aux_sym_keyword_statement_token6] = ACTIONS(4619), + [aux_sym_keyword_statement_token7] = ACTIONS(4619), + [aux_sym_include_statement_token1] = ACTIONS(4619), + [aux_sym_data_statement_token1] = ACTIONS(4619), + [aux_sym_do_loop_statement_token1] = ACTIONS(4619), + [aux_sym__inline_if_statement_token1] = ACTIONS(4619), + [aux_sym_end_if_statement_token1] = ACTIONS(4619), + [aux_sym_elseif_clause_token2] = ACTIONS(4619), + [aux_sym__inline_where_statement_token1] = ACTIONS(4619), + [aux_sym__forall_control_expression_token1] = ACTIONS(4619), + [aux_sym_select_case_statement_token1] = ACTIONS(4619), + [aux_sym_select_case_statement_token3] = ACTIONS(4619), + [aux_sym_select_type_statement_token1] = ACTIONS(4619), + [aux_sym_select_rank_statement_token2] = ACTIONS(4619), + [aux_sym_block_construct_token1] = ACTIONS(4619), + [aux_sym_associate_statement_token1] = ACTIONS(4619), + [aux_sym_format_statement_token1] = ACTIONS(4619), + [aux_sym_print_statement_token1] = ACTIONS(4619), + [aux_sym_open_statement_token1] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4619), + [aux_sym_inquire_statement_token1] = ACTIONS(4619), + [aux_sym_enum_statement_token1] = ACTIONS(4619), + [aux_sym_file_position_statement_token1] = ACTIONS(4619), + [aux_sym_file_position_statement_token2] = ACTIONS(4619), + [aux_sym_file_position_statement_token3] = ACTIONS(4619), + [aux_sym_file_position_statement_token4] = ACTIONS(4619), + [aux_sym_allocate_statement_token1] = ACTIONS(4619), + [aux_sym_entry_statement_token1] = ACTIONS(4619), + [aux_sym_logical_expression_token5] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_LPAREN_SLASH] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4621), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [aux_sym_null_literal_token1] = ACTIONS(4619), + [aux_sym_coarray_statement_token1] = ACTIONS(4619), + [aux_sym_coarray_statement_token2] = ACTIONS(4619), + [aux_sym_coarray_statement_token6] = ACTIONS(4619), + [aux_sym_coarray_statement_token8] = ACTIONS(4619), + [aux_sym_coarray_statement_token11] = ACTIONS(4619), + [aux_sym_coarray_statement_token12] = ACTIONS(4619), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), + [aux_sym_identifier_token1] = ACTIONS(4619), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4621), + [sym__float_literal] = ACTIONS(4621), + [sym__boz_literal] = ACTIONS(4621), + [sym__string_literal] = ACTIONS(4621), + [sym__string_literal_kind] = ACTIONS(4621), }, - [1041] = { - [ts_builtin_sym_end] = ACTIONS(4581), - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [1021] = { + [ts_builtin_sym_end] = ACTIONS(4481), + [aux_sym_preproc_include_token1] = ACTIONS(4479), + [aux_sym_preproc_def_token1] = ACTIONS(4479), + [aux_sym_preproc_if_token1] = ACTIONS(4479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4479), + [sym_preproc_directive] = ACTIONS(4479), + [anon_sym_LPAREN2] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4479), + [aux_sym_end_program_statement_token1] = ACTIONS(4479), + [aux_sym_end_program_statement_token2] = ACTIONS(4479), + [aux_sym_module_statement_token1] = ACTIONS(4479), + [aux_sym_submodule_statement_token1] = ACTIONS(4479), + [aux_sym_interface_statement_token1] = ACTIONS(4479), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4479), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4479), + [aux_sym_subroutine_statement_token1] = ACTIONS(4479), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4479), + [aux_sym_function_statement_token1] = ACTIONS(4479), + [aux_sym_language_binding_token1] = ACTIONS(4479), + [aux_sym_procedure_attributes_token1] = ACTIONS(4479), + [aux_sym_procedure_attributes_token3] = ACTIONS(4479), + [aux_sym_contains_statement_token1] = ACTIONS(4479), + [aux_sym_use_statement_token1] = ACTIONS(4479), + [aux_sym_use_statement_token2] = ACTIONS(4479), + [aux_sym_implicit_statement_token1] = ACTIONS(4479), + [aux_sym_implicit_statement_token3] = ACTIONS(4479), + [aux_sym_implicit_statement_token4] = ACTIONS(4479), + [aux_sym_save_statement_token1] = ACTIONS(4479), + [aux_sym_private_statement_token1] = ACTIONS(4479), + [aux_sym_public_statement_token1] = ACTIONS(4479), + [aux_sym_namelist_statement_token1] = ACTIONS(4479), + [aux_sym_common_statement_token1] = ACTIONS(4479), + [aux_sym_import_statement_token1] = ACTIONS(4479), + [aux_sym_derived_type_definition_token1] = ACTIONS(4479), + [aux_sym_abstract_specifier_token1] = ACTIONS(4479), + [aux_sym_procedure_attribute_token6] = ACTIONS(4479), + [aux_sym_variable_attributes_token1] = ACTIONS(4479), + [aux_sym_variable_attributes_token2] = ACTIONS(4479), + [aux_sym_variable_attributes_token3] = ACTIONS(4479), + [aux_sym_variable_attributes_token4] = ACTIONS(4479), + [aux_sym_variable_attributes_token5] = ACTIONS(4479), + [aux_sym__intrinsic_type_token1] = ACTIONS(4479), + [aux_sym__intrinsic_type_token2] = ACTIONS(4479), + [aux_sym__intrinsic_type_token3] = ACTIONS(4479), + [aux_sym__intrinsic_type_token4] = ACTIONS(4479), + [aux_sym__intrinsic_type_token6] = ACTIONS(4479), + [aux_sym__intrinsic_type_token7] = ACTIONS(4479), + [aux_sym__intrinsic_type_token8] = ACTIONS(4479), + [aux_sym__intrinsic_type_token9] = ACTIONS(4479), + [aux_sym__intrinsic_type_token10] = ACTIONS(4479), + [aux_sym_derived_type_token1] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4479), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4479), + [aux_sym_type_qualifier_token1] = ACTIONS(4479), + [aux_sym_type_qualifier_token2] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4479), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4479), + [aux_sym_equivalence_statement_token1] = ACTIONS(4479), + [anon_sym_SEMI] = ACTIONS(4481), + [aux_sym_stop_statement_token1] = ACTIONS(4479), + [aux_sym_stop_statement_token2] = ACTIONS(4479), + [aux_sym_subroutine_call_token1] = ACTIONS(4479), + [aux_sym_keyword_statement_token1] = ACTIONS(4479), + [aux_sym_keyword_statement_token2] = ACTIONS(4479), + [aux_sym_keyword_statement_token3] = ACTIONS(4479), + [aux_sym_keyword_statement_token4] = ACTIONS(4479), + [aux_sym_keyword_statement_token6] = ACTIONS(4479), + [aux_sym_keyword_statement_token7] = ACTIONS(4479), + [aux_sym_include_statement_token1] = ACTIONS(4479), + [aux_sym_data_statement_token1] = ACTIONS(4479), + [aux_sym_do_loop_statement_token1] = ACTIONS(4479), + [aux_sym__inline_if_statement_token1] = ACTIONS(4479), + [aux_sym_end_if_statement_token1] = ACTIONS(4479), + [aux_sym_elseif_clause_token2] = ACTIONS(4479), + [aux_sym__inline_where_statement_token1] = ACTIONS(4479), + [aux_sym__forall_control_expression_token1] = ACTIONS(4479), + [aux_sym_select_case_statement_token1] = ACTIONS(4479), + [aux_sym_select_case_statement_token3] = ACTIONS(4479), + [aux_sym_select_type_statement_token1] = ACTIONS(4479), + [aux_sym_select_rank_statement_token2] = ACTIONS(4479), + [aux_sym_block_construct_token1] = ACTIONS(4479), + [aux_sym_associate_statement_token1] = ACTIONS(4479), + [aux_sym_format_statement_token1] = ACTIONS(4479), + [aux_sym_print_statement_token1] = ACTIONS(4479), + [aux_sym_open_statement_token1] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4479), + [aux_sym_inquire_statement_token1] = ACTIONS(4479), + [aux_sym_enum_statement_token1] = ACTIONS(4479), + [aux_sym_file_position_statement_token1] = ACTIONS(4479), + [aux_sym_file_position_statement_token2] = ACTIONS(4479), + [aux_sym_file_position_statement_token3] = ACTIONS(4479), + [aux_sym_file_position_statement_token4] = ACTIONS(4479), + [aux_sym_allocate_statement_token1] = ACTIONS(4479), + [aux_sym_entry_statement_token1] = ACTIONS(4479), + [aux_sym_logical_expression_token5] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4479), + [anon_sym_LPAREN_SLASH] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [aux_sym_null_literal_token1] = ACTIONS(4479), + [aux_sym_coarray_statement_token1] = ACTIONS(4479), + [aux_sym_coarray_statement_token2] = ACTIONS(4479), + [aux_sym_coarray_statement_token6] = ACTIONS(4479), + [aux_sym_coarray_statement_token8] = ACTIONS(4479), + [aux_sym_coarray_statement_token11] = ACTIONS(4479), + [aux_sym_coarray_statement_token12] = ACTIONS(4479), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4479), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4479), + [aux_sym_identifier_token1] = ACTIONS(4479), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4481), + [sym__float_literal] = ACTIONS(4481), + [sym__boz_literal] = ACTIONS(4481), + [sym__string_literal] = ACTIONS(4481), + [sym__string_literal_kind] = ACTIONS(4481), + }, + [1022] = { + [ts_builtin_sym_end] = ACTIONS(4525), + [aux_sym_preproc_include_token1] = ACTIONS(4523), + [aux_sym_preproc_def_token1] = ACTIONS(4523), + [aux_sym_preproc_if_token1] = ACTIONS(4523), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4523), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4523), + [sym_preproc_directive] = ACTIONS(4523), + [anon_sym_LPAREN2] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_program_statement_token2] = ACTIONS(4579), - [aux_sym_module_statement_token1] = ACTIONS(4579), - [aux_sym_submodule_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_subroutine_statement_token1] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_function_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4579), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4579), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4579), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_program_statement_token1] = ACTIONS(4523), + [aux_sym_end_program_statement_token1] = ACTIONS(4523), + [aux_sym_end_program_statement_token2] = ACTIONS(4523), + [aux_sym_module_statement_token1] = ACTIONS(4523), + [aux_sym_submodule_statement_token1] = ACTIONS(4523), + [aux_sym_interface_statement_token1] = ACTIONS(4523), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4523), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4523), + [aux_sym_subroutine_statement_token1] = ACTIONS(4523), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4523), + [aux_sym_function_statement_token1] = ACTIONS(4523), + [aux_sym_language_binding_token1] = ACTIONS(4523), + [aux_sym_procedure_attributes_token1] = ACTIONS(4523), + [aux_sym_procedure_attributes_token3] = ACTIONS(4523), + [aux_sym_contains_statement_token1] = ACTIONS(4523), + [aux_sym_use_statement_token1] = ACTIONS(4523), + [aux_sym_use_statement_token2] = ACTIONS(4523), + [aux_sym_implicit_statement_token1] = ACTIONS(4523), + [aux_sym_implicit_statement_token3] = ACTIONS(4523), + [aux_sym_implicit_statement_token4] = ACTIONS(4523), + [aux_sym_save_statement_token1] = ACTIONS(4523), + [aux_sym_private_statement_token1] = ACTIONS(4523), + [aux_sym_public_statement_token1] = ACTIONS(4523), + [aux_sym_namelist_statement_token1] = ACTIONS(4523), + [aux_sym_common_statement_token1] = ACTIONS(4523), + [aux_sym_import_statement_token1] = ACTIONS(4523), + [aux_sym_derived_type_definition_token1] = ACTIONS(4523), + [aux_sym_abstract_specifier_token1] = ACTIONS(4523), + [aux_sym_procedure_attribute_token6] = ACTIONS(4523), + [aux_sym_variable_attributes_token1] = ACTIONS(4523), + [aux_sym_variable_attributes_token2] = ACTIONS(4523), + [aux_sym_variable_attributes_token3] = ACTIONS(4523), + [aux_sym_variable_attributes_token4] = ACTIONS(4523), + [aux_sym_variable_attributes_token5] = ACTIONS(4523), + [aux_sym__intrinsic_type_token1] = ACTIONS(4523), + [aux_sym__intrinsic_type_token2] = ACTIONS(4523), + [aux_sym__intrinsic_type_token3] = ACTIONS(4523), + [aux_sym__intrinsic_type_token4] = ACTIONS(4523), + [aux_sym__intrinsic_type_token6] = ACTIONS(4523), + [aux_sym__intrinsic_type_token7] = ACTIONS(4523), + [aux_sym__intrinsic_type_token8] = ACTIONS(4523), + [aux_sym__intrinsic_type_token9] = ACTIONS(4523), + [aux_sym__intrinsic_type_token10] = ACTIONS(4523), + [aux_sym_derived_type_token1] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4523), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4523), + [aux_sym_type_qualifier_token1] = ACTIONS(4523), + [aux_sym_type_qualifier_token2] = ACTIONS(4523), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4523), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4523), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4523), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4523), + [aux_sym_equivalence_statement_token1] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [aux_sym_stop_statement_token1] = ACTIONS(4523), + [aux_sym_stop_statement_token2] = ACTIONS(4523), + [aux_sym_subroutine_call_token1] = ACTIONS(4523), + [aux_sym_keyword_statement_token1] = ACTIONS(4523), + [aux_sym_keyword_statement_token2] = ACTIONS(4523), + [aux_sym_keyword_statement_token3] = ACTIONS(4523), + [aux_sym_keyword_statement_token4] = ACTIONS(4523), + [aux_sym_keyword_statement_token6] = ACTIONS(4523), + [aux_sym_keyword_statement_token7] = ACTIONS(4523), + [aux_sym_include_statement_token1] = ACTIONS(4523), + [aux_sym_data_statement_token1] = ACTIONS(4523), + [aux_sym_do_loop_statement_token1] = ACTIONS(4523), + [aux_sym__inline_if_statement_token1] = ACTIONS(4523), + [aux_sym_end_if_statement_token1] = ACTIONS(4523), + [aux_sym_elseif_clause_token2] = ACTIONS(4523), + [aux_sym__inline_where_statement_token1] = ACTIONS(4523), + [aux_sym__forall_control_expression_token1] = ACTIONS(4523), + [aux_sym_select_case_statement_token1] = ACTIONS(4523), + [aux_sym_select_case_statement_token3] = ACTIONS(4523), + [aux_sym_select_type_statement_token1] = ACTIONS(4523), + [aux_sym_select_rank_statement_token2] = ACTIONS(4523), + [aux_sym_block_construct_token1] = ACTIONS(4523), + [aux_sym_associate_statement_token1] = ACTIONS(4523), + [aux_sym_format_statement_token1] = ACTIONS(4523), + [aux_sym_print_statement_token1] = ACTIONS(4523), + [aux_sym_open_statement_token1] = ACTIONS(4523), + [aux_sym_close_statement_token1] = ACTIONS(4523), + [aux_sym_inquire_statement_token1] = ACTIONS(4523), + [aux_sym_enum_statement_token1] = ACTIONS(4523), + [aux_sym_file_position_statement_token1] = ACTIONS(4523), + [aux_sym_file_position_statement_token2] = ACTIONS(4523), + [aux_sym_file_position_statement_token3] = ACTIONS(4523), + [aux_sym_file_position_statement_token4] = ACTIONS(4523), + [aux_sym_allocate_statement_token1] = ACTIONS(4523), + [aux_sym_entry_statement_token1] = ACTIONS(4523), + [aux_sym_logical_expression_token5] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_LPAREN_SLASH] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [aux_sym_boolean_literal_token1] = ACTIONS(4525), + [aux_sym_boolean_literal_token2] = ACTIONS(4525), + [aux_sym_null_literal_token1] = ACTIONS(4523), + [aux_sym_coarray_statement_token1] = ACTIONS(4523), + [aux_sym_coarray_statement_token2] = ACTIONS(4523), + [aux_sym_coarray_statement_token6] = ACTIONS(4523), + [aux_sym_coarray_statement_token8] = ACTIONS(4523), + [aux_sym_coarray_statement_token11] = ACTIONS(4523), + [aux_sym_coarray_statement_token12] = ACTIONS(4523), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4523), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4523), + [aux_sym_identifier_token1] = ACTIONS(4523), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4525), + [sym__float_literal] = ACTIONS(4525), + [sym__boz_literal] = ACTIONS(4525), + [sym__string_literal] = ACTIONS(4525), + [sym__string_literal_kind] = ACTIONS(4525), }, - [1042] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_else_in_module] = STATE(7610), - [sym_preproc_elif_in_module] = STATE(7610), - [sym_preproc_elifdef_in_module] = STATE(7610), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(5631), - [sym_contains_statement] = STATE(6907), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4661), - [aux_sym_preproc_def_token1] = ACTIONS(4663), - [aux_sym_preproc_if_token2] = ACTIONS(4757), - [aux_sym_preproc_else_token1] = ACTIONS(4667), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4671), - [sym_preproc_directive] = ACTIONS(4673), + [1023] = { + [ts_builtin_sym_end] = ACTIONS(4517), + [aux_sym_preproc_include_token1] = ACTIONS(4515), + [aux_sym_preproc_def_token1] = ACTIONS(4515), + [aux_sym_preproc_if_token1] = ACTIONS(4515), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4515), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4515), + [sym_preproc_directive] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_DASH] = ACTIONS(4517), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4677), - [aux_sym_public_statement_token1] = ACTIONS(4679), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_program_statement_token1] = ACTIONS(4515), + [aux_sym_end_program_statement_token1] = ACTIONS(4515), + [aux_sym_end_program_statement_token2] = ACTIONS(4515), + [aux_sym_module_statement_token1] = ACTIONS(4515), + [aux_sym_submodule_statement_token1] = ACTIONS(4515), + [aux_sym_interface_statement_token1] = ACTIONS(4515), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4515), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4515), + [aux_sym_subroutine_statement_token1] = ACTIONS(4515), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4515), + [aux_sym_function_statement_token1] = ACTIONS(4515), + [aux_sym_language_binding_token1] = ACTIONS(4515), + [aux_sym_procedure_attributes_token1] = ACTIONS(4515), + [aux_sym_procedure_attributes_token3] = ACTIONS(4515), + [aux_sym_contains_statement_token1] = ACTIONS(4515), + [aux_sym_use_statement_token1] = ACTIONS(4515), + [aux_sym_use_statement_token2] = ACTIONS(4515), + [aux_sym_implicit_statement_token1] = ACTIONS(4515), + [aux_sym_implicit_statement_token3] = ACTIONS(4515), + [aux_sym_implicit_statement_token4] = ACTIONS(4515), + [aux_sym_save_statement_token1] = ACTIONS(4515), + [aux_sym_private_statement_token1] = ACTIONS(4515), + [aux_sym_public_statement_token1] = ACTIONS(4515), + [aux_sym_namelist_statement_token1] = ACTIONS(4515), + [aux_sym_common_statement_token1] = ACTIONS(4515), + [aux_sym_import_statement_token1] = ACTIONS(4515), + [aux_sym_derived_type_definition_token1] = ACTIONS(4515), + [aux_sym_abstract_specifier_token1] = ACTIONS(4515), + [aux_sym_procedure_attribute_token6] = ACTIONS(4515), + [aux_sym_variable_attributes_token1] = ACTIONS(4515), + [aux_sym_variable_attributes_token2] = ACTIONS(4515), + [aux_sym_variable_attributes_token3] = ACTIONS(4515), + [aux_sym_variable_attributes_token4] = ACTIONS(4515), + [aux_sym_variable_attributes_token5] = ACTIONS(4515), + [aux_sym__intrinsic_type_token1] = ACTIONS(4515), + [aux_sym__intrinsic_type_token2] = ACTIONS(4515), + [aux_sym__intrinsic_type_token3] = ACTIONS(4515), + [aux_sym__intrinsic_type_token4] = ACTIONS(4515), + [aux_sym__intrinsic_type_token6] = ACTIONS(4515), + [aux_sym__intrinsic_type_token7] = ACTIONS(4515), + [aux_sym__intrinsic_type_token8] = ACTIONS(4515), + [aux_sym__intrinsic_type_token9] = ACTIONS(4515), + [aux_sym__intrinsic_type_token10] = ACTIONS(4515), + [aux_sym_derived_type_token1] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4515), + [aux_sym_type_qualifier_token1] = ACTIONS(4515), + [aux_sym_type_qualifier_token2] = ACTIONS(4515), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4515), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4515), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4515), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4515), + [aux_sym_equivalence_statement_token1] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [aux_sym_stop_statement_token1] = ACTIONS(4515), + [aux_sym_stop_statement_token2] = ACTIONS(4515), + [aux_sym_subroutine_call_token1] = ACTIONS(4515), + [aux_sym_keyword_statement_token1] = ACTIONS(4515), + [aux_sym_keyword_statement_token2] = ACTIONS(4515), + [aux_sym_keyword_statement_token3] = ACTIONS(4515), + [aux_sym_keyword_statement_token4] = ACTIONS(4515), + [aux_sym_keyword_statement_token6] = ACTIONS(4515), + [aux_sym_keyword_statement_token7] = ACTIONS(4515), + [aux_sym_include_statement_token1] = ACTIONS(4515), + [aux_sym_data_statement_token1] = ACTIONS(4515), + [aux_sym_do_loop_statement_token1] = ACTIONS(4515), + [aux_sym__inline_if_statement_token1] = ACTIONS(4515), + [aux_sym_end_if_statement_token1] = ACTIONS(4515), + [aux_sym_elseif_clause_token2] = ACTIONS(4515), + [aux_sym__inline_where_statement_token1] = ACTIONS(4515), + [aux_sym__forall_control_expression_token1] = ACTIONS(4515), + [aux_sym_select_case_statement_token1] = ACTIONS(4515), + [aux_sym_select_case_statement_token3] = ACTIONS(4515), + [aux_sym_select_type_statement_token1] = ACTIONS(4515), + [aux_sym_select_rank_statement_token2] = ACTIONS(4515), + [aux_sym_block_construct_token1] = ACTIONS(4515), + [aux_sym_associate_statement_token1] = ACTIONS(4515), + [aux_sym_format_statement_token1] = ACTIONS(4515), + [aux_sym_print_statement_token1] = ACTIONS(4515), + [aux_sym_open_statement_token1] = ACTIONS(4515), + [aux_sym_close_statement_token1] = ACTIONS(4515), + [aux_sym_inquire_statement_token1] = ACTIONS(4515), + [aux_sym_enum_statement_token1] = ACTIONS(4515), + [aux_sym_file_position_statement_token1] = ACTIONS(4515), + [aux_sym_file_position_statement_token2] = ACTIONS(4515), + [aux_sym_file_position_statement_token3] = ACTIONS(4515), + [aux_sym_file_position_statement_token4] = ACTIONS(4515), + [aux_sym_allocate_statement_token1] = ACTIONS(4515), + [aux_sym_entry_statement_token1] = ACTIONS(4515), + [aux_sym_logical_expression_token5] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_LPAREN_SLASH] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [aux_sym_null_literal_token1] = ACTIONS(4515), + [aux_sym_coarray_statement_token1] = ACTIONS(4515), + [aux_sym_coarray_statement_token2] = ACTIONS(4515), + [aux_sym_coarray_statement_token6] = ACTIONS(4515), + [aux_sym_coarray_statement_token8] = ACTIONS(4515), + [aux_sym_coarray_statement_token11] = ACTIONS(4515), + [aux_sym_coarray_statement_token12] = ACTIONS(4515), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4515), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4515), + [aux_sym_identifier_token1] = ACTIONS(4515), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4517), + [sym__float_literal] = ACTIONS(4517), + [sym__boz_literal] = ACTIONS(4517), + [sym__string_literal] = ACTIONS(4517), + [sym__string_literal_kind] = ACTIONS(4517), + }, + [1024] = { + [ts_builtin_sym_end] = ACTIONS(4521), + [aux_sym_preproc_include_token1] = ACTIONS(4519), + [aux_sym_preproc_def_token1] = ACTIONS(4519), + [aux_sym_preproc_if_token1] = ACTIONS(4519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4519), + [sym_preproc_directive] = ACTIONS(4519), + [anon_sym_LPAREN2] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4521), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4519), + [aux_sym_end_program_statement_token1] = ACTIONS(4519), + [aux_sym_end_program_statement_token2] = ACTIONS(4519), + [aux_sym_module_statement_token1] = ACTIONS(4519), + [aux_sym_submodule_statement_token1] = ACTIONS(4519), + [aux_sym_interface_statement_token1] = ACTIONS(4519), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4519), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4519), + [aux_sym_subroutine_statement_token1] = ACTIONS(4519), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4519), + [aux_sym_function_statement_token1] = ACTIONS(4519), + [aux_sym_language_binding_token1] = ACTIONS(4519), + [aux_sym_procedure_attributes_token1] = ACTIONS(4519), + [aux_sym_procedure_attributes_token3] = ACTIONS(4519), + [aux_sym_contains_statement_token1] = ACTIONS(4519), + [aux_sym_use_statement_token1] = ACTIONS(4519), + [aux_sym_use_statement_token2] = ACTIONS(4519), + [aux_sym_implicit_statement_token1] = ACTIONS(4519), + [aux_sym_implicit_statement_token3] = ACTIONS(4519), + [aux_sym_implicit_statement_token4] = ACTIONS(4519), + [aux_sym_save_statement_token1] = ACTIONS(4519), + [aux_sym_private_statement_token1] = ACTIONS(4519), + [aux_sym_public_statement_token1] = ACTIONS(4519), + [aux_sym_namelist_statement_token1] = ACTIONS(4519), + [aux_sym_common_statement_token1] = ACTIONS(4519), + [aux_sym_import_statement_token1] = ACTIONS(4519), + [aux_sym_derived_type_definition_token1] = ACTIONS(4519), + [aux_sym_abstract_specifier_token1] = ACTIONS(4519), + [aux_sym_procedure_attribute_token6] = ACTIONS(4519), + [aux_sym_variable_attributes_token1] = ACTIONS(4519), + [aux_sym_variable_attributes_token2] = ACTIONS(4519), + [aux_sym_variable_attributes_token3] = ACTIONS(4519), + [aux_sym_variable_attributes_token4] = ACTIONS(4519), + [aux_sym_variable_attributes_token5] = ACTIONS(4519), + [aux_sym__intrinsic_type_token1] = ACTIONS(4519), + [aux_sym__intrinsic_type_token2] = ACTIONS(4519), + [aux_sym__intrinsic_type_token3] = ACTIONS(4519), + [aux_sym__intrinsic_type_token4] = ACTIONS(4519), + [aux_sym__intrinsic_type_token6] = ACTIONS(4519), + [aux_sym__intrinsic_type_token7] = ACTIONS(4519), + [aux_sym__intrinsic_type_token8] = ACTIONS(4519), + [aux_sym__intrinsic_type_token9] = ACTIONS(4519), + [aux_sym__intrinsic_type_token10] = ACTIONS(4519), + [aux_sym_derived_type_token1] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4519), + [aux_sym_type_qualifier_token1] = ACTIONS(4519), + [aux_sym_type_qualifier_token2] = ACTIONS(4519), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4519), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4519), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4519), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4519), + [aux_sym_equivalence_statement_token1] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [aux_sym_stop_statement_token1] = ACTIONS(4519), + [aux_sym_stop_statement_token2] = ACTIONS(4519), + [aux_sym_subroutine_call_token1] = ACTIONS(4519), + [aux_sym_keyword_statement_token1] = ACTIONS(4519), + [aux_sym_keyword_statement_token2] = ACTIONS(4519), + [aux_sym_keyword_statement_token3] = ACTIONS(4519), + [aux_sym_keyword_statement_token4] = ACTIONS(4519), + [aux_sym_keyword_statement_token6] = ACTIONS(4519), + [aux_sym_keyword_statement_token7] = ACTIONS(4519), + [aux_sym_include_statement_token1] = ACTIONS(4519), + [aux_sym_data_statement_token1] = ACTIONS(4519), + [aux_sym_do_loop_statement_token1] = ACTIONS(4519), + [aux_sym__inline_if_statement_token1] = ACTIONS(4519), + [aux_sym_end_if_statement_token1] = ACTIONS(4519), + [aux_sym_elseif_clause_token2] = ACTIONS(4519), + [aux_sym__inline_where_statement_token1] = ACTIONS(4519), + [aux_sym__forall_control_expression_token1] = ACTIONS(4519), + [aux_sym_select_case_statement_token1] = ACTIONS(4519), + [aux_sym_select_case_statement_token3] = ACTIONS(4519), + [aux_sym_select_type_statement_token1] = ACTIONS(4519), + [aux_sym_select_rank_statement_token2] = ACTIONS(4519), + [aux_sym_block_construct_token1] = ACTIONS(4519), + [aux_sym_associate_statement_token1] = ACTIONS(4519), + [aux_sym_format_statement_token1] = ACTIONS(4519), + [aux_sym_print_statement_token1] = ACTIONS(4519), + [aux_sym_open_statement_token1] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4519), + [aux_sym_inquire_statement_token1] = ACTIONS(4519), + [aux_sym_enum_statement_token1] = ACTIONS(4519), + [aux_sym_file_position_statement_token1] = ACTIONS(4519), + [aux_sym_file_position_statement_token2] = ACTIONS(4519), + [aux_sym_file_position_statement_token3] = ACTIONS(4519), + [aux_sym_file_position_statement_token4] = ACTIONS(4519), + [aux_sym_allocate_statement_token1] = ACTIONS(4519), + [aux_sym_entry_statement_token1] = ACTIONS(4519), + [aux_sym_logical_expression_token5] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_LPAREN_SLASH] = ACTIONS(4521), + [anon_sym_LBRACK] = ACTIONS(4521), + [aux_sym_boolean_literal_token1] = ACTIONS(4521), + [aux_sym_boolean_literal_token2] = ACTIONS(4521), + [aux_sym_null_literal_token1] = ACTIONS(4519), + [aux_sym_coarray_statement_token1] = ACTIONS(4519), + [aux_sym_coarray_statement_token2] = ACTIONS(4519), + [aux_sym_coarray_statement_token6] = ACTIONS(4519), + [aux_sym_coarray_statement_token8] = ACTIONS(4519), + [aux_sym_coarray_statement_token11] = ACTIONS(4519), + [aux_sym_coarray_statement_token12] = ACTIONS(4519), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4519), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4519), + [aux_sym_identifier_token1] = ACTIONS(4519), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4521), + [sym__float_literal] = ACTIONS(4521), + [sym__boz_literal] = ACTIONS(4521), + [sym__string_literal] = ACTIONS(4521), + [sym__string_literal_kind] = ACTIONS(4521), + }, + [1025] = { + [ts_builtin_sym_end] = ACTIONS(4381), + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4379), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_end_program_statement_token2] = ACTIONS(4379), + [aux_sym_module_statement_token1] = ACTIONS(4379), + [aux_sym_submodule_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_subroutine_statement_token1] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_function_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4379), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4379), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4379), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_subroutine_call_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_keyword_statement_token4] = ACTIONS(4379), + [aux_sym_keyword_statement_token6] = ACTIONS(4379), + [aux_sym_keyword_statement_token7] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym_do_loop_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym__inline_where_statement_token1] = ACTIONS(4379), + [aux_sym__forall_control_expression_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token3] = ACTIONS(4379), + [aux_sym_select_type_statement_token1] = ACTIONS(4379), + [aux_sym_select_rank_statement_token2] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_associate_statement_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_print_statement_token1] = ACTIONS(4379), + [aux_sym_open_statement_token1] = ACTIONS(4379), + [aux_sym_close_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token2] = ACTIONS(4379), + [aux_sym_file_position_statement_token3] = ACTIONS(4379), + [aux_sym_file_position_statement_token4] = ACTIONS(4379), + [aux_sym_allocate_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_logical_expression_token5] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LPAREN_SLASH] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [aux_sym_boolean_literal_token1] = ACTIONS(4381), + [aux_sym_boolean_literal_token2] = ACTIONS(4381), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4381), + [sym__float_literal] = ACTIONS(4381), + [sym__boz_literal] = ACTIONS(4381), + [sym__string_literal] = ACTIONS(4381), + [sym__string_literal_kind] = ACTIONS(4381), + }, + [1026] = { + [ts_builtin_sym_end] = ACTIONS(4385), + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4383), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_end_program_statement_token2] = ACTIONS(4383), + [aux_sym_module_statement_token1] = ACTIONS(4383), + [aux_sym_submodule_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_subroutine_statement_token1] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_function_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4383), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4383), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4383), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_subroutine_call_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_keyword_statement_token4] = ACTIONS(4383), + [aux_sym_keyword_statement_token6] = ACTIONS(4383), + [aux_sym_keyword_statement_token7] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym_do_loop_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym__inline_where_statement_token1] = ACTIONS(4383), + [aux_sym__forall_control_expression_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token3] = ACTIONS(4383), + [aux_sym_select_type_statement_token1] = ACTIONS(4383), + [aux_sym_select_rank_statement_token2] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_associate_statement_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_print_statement_token1] = ACTIONS(4383), + [aux_sym_open_statement_token1] = ACTIONS(4383), + [aux_sym_close_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token2] = ACTIONS(4383), + [aux_sym_file_position_statement_token3] = ACTIONS(4383), + [aux_sym_file_position_statement_token4] = ACTIONS(4383), + [aux_sym_allocate_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_logical_expression_token5] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LPAREN_SLASH] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [aux_sym_boolean_literal_token1] = ACTIONS(4385), + [aux_sym_boolean_literal_token2] = ACTIONS(4385), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [1043] = { - [ts_builtin_sym_end] = ACTIONS(4565), - [aux_sym_preproc_include_token1] = ACTIONS(4563), - [aux_sym_preproc_def_token1] = ACTIONS(4563), - [aux_sym_preproc_if_token1] = ACTIONS(4563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4563), - [sym_preproc_directive] = ACTIONS(4563), - [anon_sym_LPAREN2] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4563), - [aux_sym_end_program_statement_token1] = ACTIONS(4563), - [aux_sym_end_program_statement_token2] = ACTIONS(4563), - [aux_sym_module_statement_token1] = ACTIONS(4563), - [aux_sym_submodule_statement_token1] = ACTIONS(4563), - [aux_sym_interface_statement_token1] = ACTIONS(4563), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4563), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4563), - [aux_sym_subroutine_statement_token1] = ACTIONS(4563), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4563), - [aux_sym_function_statement_token1] = ACTIONS(4563), - [aux_sym_language_binding_token1] = ACTIONS(4563), - [aux_sym_procedure_attributes_token1] = ACTIONS(4563), - [aux_sym_procedure_attributes_token3] = ACTIONS(4563), - [aux_sym_contains_statement_token1] = ACTIONS(4563), - [aux_sym_use_statement_token1] = ACTIONS(4563), - [aux_sym_use_statement_token2] = ACTIONS(4563), - [aux_sym_implicit_statement_token1] = ACTIONS(4563), - [aux_sym_implicit_statement_token3] = ACTIONS(4563), - [aux_sym_implicit_statement_token4] = ACTIONS(4563), - [aux_sym_save_statement_token1] = ACTIONS(4563), - [aux_sym_private_statement_token1] = ACTIONS(4563), - [aux_sym_public_statement_token1] = ACTIONS(4563), - [aux_sym_namelist_statement_token1] = ACTIONS(4563), - [aux_sym_common_statement_token1] = ACTIONS(4563), - [aux_sym_import_statement_token1] = ACTIONS(4563), - [aux_sym_derived_type_definition_token1] = ACTIONS(4563), - [aux_sym_abstract_specifier_token1] = ACTIONS(4563), - [aux_sym_procedure_attribute_token6] = ACTIONS(4563), - [aux_sym_variable_attributes_token1] = ACTIONS(4563), - [aux_sym_variable_attributes_token2] = ACTIONS(4563), - [aux_sym_variable_attributes_token3] = ACTIONS(4563), - [aux_sym_variable_attributes_token4] = ACTIONS(4563), - [aux_sym_variable_attributes_token5] = ACTIONS(4563), - [aux_sym__intrinsic_type_token1] = ACTIONS(4563), - [aux_sym__intrinsic_type_token2] = ACTIONS(4563), - [aux_sym__intrinsic_type_token3] = ACTIONS(4563), - [aux_sym__intrinsic_type_token4] = ACTIONS(4563), - [aux_sym__intrinsic_type_token6] = ACTIONS(4563), - [aux_sym__intrinsic_type_token7] = ACTIONS(4563), - [aux_sym__intrinsic_type_token8] = ACTIONS(4563), - [aux_sym__intrinsic_type_token9] = ACTIONS(4563), - [aux_sym__intrinsic_type_token10] = ACTIONS(4563), - [aux_sym_derived_type_token1] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4563), - [aux_sym_type_qualifier_token1] = ACTIONS(4563), - [aux_sym_type_qualifier_token2] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4563), - [aux_sym_equivalence_statement_token1] = ACTIONS(4563), - [anon_sym_SEMI] = ACTIONS(4565), - [aux_sym_stop_statement_token1] = ACTIONS(4563), - [aux_sym_stop_statement_token2] = ACTIONS(4563), - [aux_sym_subroutine_call_token1] = ACTIONS(4563), - [aux_sym_keyword_statement_token1] = ACTIONS(4563), - [aux_sym_keyword_statement_token2] = ACTIONS(4563), - [aux_sym_keyword_statement_token3] = ACTIONS(4563), - [aux_sym_keyword_statement_token4] = ACTIONS(4563), - [aux_sym_keyword_statement_token6] = ACTIONS(4563), - [aux_sym_keyword_statement_token7] = ACTIONS(4563), - [aux_sym_include_statement_token1] = ACTIONS(4563), - [aux_sym_data_statement_token1] = ACTIONS(4563), - [aux_sym_do_loop_statement_token1] = ACTIONS(4563), - [aux_sym__inline_if_statement_token1] = ACTIONS(4563), - [aux_sym_end_if_statement_token1] = ACTIONS(4563), - [aux_sym_elseif_clause_token2] = ACTIONS(4563), - [aux_sym__inline_where_statement_token1] = ACTIONS(4563), - [aux_sym__forall_control_expression_token1] = ACTIONS(4563), - [aux_sym_select_case_statement_token1] = ACTIONS(4563), - [aux_sym_select_case_statement_token3] = ACTIONS(4563), - [aux_sym_select_type_statement_token1] = ACTIONS(4563), - [aux_sym_select_rank_statement_token2] = ACTIONS(4563), - [aux_sym_block_construct_token1] = ACTIONS(4563), - [aux_sym_associate_statement_token1] = ACTIONS(4563), - [aux_sym_format_statement_token1] = ACTIONS(4563), - [aux_sym_print_statement_token1] = ACTIONS(4563), - [aux_sym_open_statement_token1] = ACTIONS(4563), - [aux_sym_close_statement_token1] = ACTIONS(4563), - [aux_sym_inquire_statement_token1] = ACTIONS(4563), - [aux_sym_enum_statement_token1] = ACTIONS(4563), - [aux_sym_file_position_statement_token1] = ACTIONS(4563), - [aux_sym_file_position_statement_token2] = ACTIONS(4563), - [aux_sym_file_position_statement_token3] = ACTIONS(4563), - [aux_sym_file_position_statement_token4] = ACTIONS(4563), - [aux_sym_allocate_statement_token1] = ACTIONS(4563), - [aux_sym_entry_statement_token1] = ACTIONS(4563), - [aux_sym_logical_expression_token5] = ACTIONS(4565), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_LPAREN_SLASH] = ACTIONS(4565), - [anon_sym_LBRACK] = ACTIONS(4565), - [aux_sym_boolean_literal_token1] = ACTIONS(4565), - [aux_sym_boolean_literal_token2] = ACTIONS(4565), - [aux_sym_null_literal_token1] = ACTIONS(4563), - [aux_sym_coarray_statement_token1] = ACTIONS(4563), - [aux_sym_coarray_statement_token2] = ACTIONS(4563), - [aux_sym_coarray_statement_token6] = ACTIONS(4563), - [aux_sym_coarray_statement_token8] = ACTIONS(4563), - [aux_sym_coarray_statement_token11] = ACTIONS(4563), - [aux_sym_coarray_statement_token12] = ACTIONS(4563), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4563), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4563), - [aux_sym_identifier_token1] = ACTIONS(4563), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4565), - [sym__float_literal] = ACTIONS(4565), - [sym__boz_literal] = ACTIONS(4565), - [sym__string_literal] = ACTIONS(4565), - [sym__string_literal_kind] = ACTIONS(4565), - }, - [1044] = { - [aux_sym_preproc_include_token1] = ACTIONS(4453), - [aux_sym_preproc_def_token1] = ACTIONS(4453), - [aux_sym_preproc_if_token1] = ACTIONS(4453), - [aux_sym_preproc_if_token2] = ACTIONS(4453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4453), - [sym_preproc_directive] = ACTIONS(4453), - [anon_sym_LPAREN2] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4453), - [aux_sym_end_program_statement_token1] = ACTIONS(4453), - [aux_sym_end_program_statement_token2] = ACTIONS(4453), - [aux_sym_module_statement_token1] = ACTIONS(4453), - [aux_sym_submodule_statement_token1] = ACTIONS(4453), - [aux_sym_interface_statement_token1] = ACTIONS(4453), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4453), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4453), - [aux_sym_subroutine_statement_token1] = ACTIONS(4453), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4453), - [aux_sym_function_statement_token1] = ACTIONS(4453), - [aux_sym_language_binding_token1] = ACTIONS(4453), - [aux_sym_procedure_attributes_token1] = ACTIONS(4453), - [aux_sym_procedure_attributes_token3] = ACTIONS(4453), - [aux_sym_contains_statement_token1] = ACTIONS(4453), - [aux_sym_use_statement_token1] = ACTIONS(4453), - [aux_sym_use_statement_token2] = ACTIONS(4453), - [aux_sym_implicit_statement_token1] = ACTIONS(4453), - [aux_sym_implicit_statement_token3] = ACTIONS(4453), - [aux_sym_implicit_statement_token4] = ACTIONS(4453), - [aux_sym_save_statement_token1] = ACTIONS(4453), - [aux_sym_private_statement_token1] = ACTIONS(4453), - [aux_sym_public_statement_token1] = ACTIONS(4453), - [aux_sym_namelist_statement_token1] = ACTIONS(4453), - [aux_sym_common_statement_token1] = ACTIONS(4453), - [aux_sym_import_statement_token1] = ACTIONS(4453), - [aux_sym_derived_type_definition_token1] = ACTIONS(4453), - [aux_sym_abstract_specifier_token1] = ACTIONS(4453), - [aux_sym_procedure_attribute_token6] = ACTIONS(4453), - [aux_sym_variable_attributes_token1] = ACTIONS(4453), - [aux_sym_variable_attributes_token2] = ACTIONS(4453), - [aux_sym_variable_attributes_token3] = ACTIONS(4453), - [aux_sym_variable_attributes_token4] = ACTIONS(4453), - [aux_sym_variable_attributes_token5] = ACTIONS(4453), - [aux_sym__intrinsic_type_token1] = ACTIONS(4453), - [aux_sym__intrinsic_type_token2] = ACTIONS(4453), - [aux_sym__intrinsic_type_token3] = ACTIONS(4453), - [aux_sym__intrinsic_type_token4] = ACTIONS(4453), - [aux_sym__intrinsic_type_token6] = ACTIONS(4453), - [aux_sym__intrinsic_type_token7] = ACTIONS(4453), - [aux_sym__intrinsic_type_token8] = ACTIONS(4453), - [aux_sym__intrinsic_type_token9] = ACTIONS(4453), - [aux_sym__intrinsic_type_token10] = ACTIONS(4453), - [aux_sym_derived_type_token1] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4453), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4453), - [aux_sym_type_qualifier_token1] = ACTIONS(4453), - [aux_sym_type_qualifier_token2] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4453), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4453), - [aux_sym_equivalence_statement_token1] = ACTIONS(4453), - [anon_sym_SEMI] = ACTIONS(4455), - [aux_sym_stop_statement_token1] = ACTIONS(4453), - [aux_sym_stop_statement_token2] = ACTIONS(4453), - [aux_sym_subroutine_call_token1] = ACTIONS(4453), - [aux_sym_keyword_statement_token1] = ACTIONS(4453), - [aux_sym_keyword_statement_token2] = ACTIONS(4453), - [aux_sym_keyword_statement_token3] = ACTIONS(4453), - [aux_sym_keyword_statement_token4] = ACTIONS(4453), - [aux_sym_keyword_statement_token6] = ACTIONS(4453), - [aux_sym_keyword_statement_token7] = ACTIONS(4453), - [aux_sym_include_statement_token1] = ACTIONS(4453), - [aux_sym_data_statement_token1] = ACTIONS(4453), - [aux_sym_do_loop_statement_token1] = ACTIONS(4453), - [aux_sym__inline_if_statement_token1] = ACTIONS(4453), - [aux_sym_end_if_statement_token1] = ACTIONS(4453), - [aux_sym_elseif_clause_token2] = ACTIONS(4453), - [aux_sym__inline_where_statement_token1] = ACTIONS(4453), - [aux_sym__forall_control_expression_token1] = ACTIONS(4453), - [aux_sym_select_case_statement_token1] = ACTIONS(4453), - [aux_sym_select_case_statement_token3] = ACTIONS(4453), - [aux_sym_select_type_statement_token1] = ACTIONS(4453), - [aux_sym_select_rank_statement_token2] = ACTIONS(4453), - [aux_sym_block_construct_token1] = ACTIONS(4453), - [aux_sym_associate_statement_token1] = ACTIONS(4453), - [aux_sym_format_statement_token1] = ACTIONS(4453), - [aux_sym_print_statement_token1] = ACTIONS(4453), - [aux_sym_open_statement_token1] = ACTIONS(4453), - [aux_sym_close_statement_token1] = ACTIONS(4453), - [aux_sym_inquire_statement_token1] = ACTIONS(4453), - [aux_sym_enum_statement_token1] = ACTIONS(4453), - [aux_sym_file_position_statement_token1] = ACTIONS(4453), - [aux_sym_file_position_statement_token2] = ACTIONS(4453), - [aux_sym_file_position_statement_token3] = ACTIONS(4453), - [aux_sym_file_position_statement_token4] = ACTIONS(4453), - [aux_sym_allocate_statement_token1] = ACTIONS(4453), - [aux_sym_entry_statement_token1] = ACTIONS(4453), - [aux_sym_logical_expression_token5] = ACTIONS(4455), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_LPAREN_SLASH] = ACTIONS(4455), - [anon_sym_LBRACK] = ACTIONS(4455), - [aux_sym_boolean_literal_token1] = ACTIONS(4455), - [aux_sym_boolean_literal_token2] = ACTIONS(4455), - [aux_sym_null_literal_token1] = ACTIONS(4453), - [aux_sym_coarray_statement_token1] = ACTIONS(4453), - [aux_sym_coarray_statement_token2] = ACTIONS(4453), - [aux_sym_coarray_statement_token6] = ACTIONS(4453), - [aux_sym_coarray_statement_token8] = ACTIONS(4453), - [aux_sym_coarray_statement_token11] = ACTIONS(4453), - [aux_sym_coarray_statement_token12] = ACTIONS(4453), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4453), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4453), - [aux_sym_identifier_token1] = ACTIONS(4453), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4455), - [sym__float_literal] = ACTIONS(4455), - [sym__boz_literal] = ACTIONS(4455), - [sym__string_literal] = ACTIONS(4455), - [sym__string_literal_kind] = ACTIONS(4455), + [sym__integer_literal] = ACTIONS(4385), + [sym__float_literal] = ACTIONS(4385), + [sym__boz_literal] = ACTIONS(4385), + [sym__string_literal] = ACTIONS(4385), + [sym__string_literal_kind] = ACTIONS(4385), }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(4613), - [aux_sym_preproc_include_token1] = ACTIONS(4611), - [aux_sym_preproc_def_token1] = ACTIONS(4611), - [aux_sym_preproc_if_token1] = ACTIONS(4611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), - [sym_preproc_directive] = ACTIONS(4611), - [anon_sym_LPAREN2] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), + [1027] = { + [ts_builtin_sym_end] = ACTIONS(4421), + [aux_sym_preproc_include_token1] = ACTIONS(4419), + [aux_sym_preproc_def_token1] = ACTIONS(4419), + [aux_sym_preproc_if_token1] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4419), + [sym_preproc_directive] = ACTIONS(4419), + [anon_sym_LPAREN2] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4611), - [aux_sym_end_program_statement_token1] = ACTIONS(4611), - [aux_sym_end_program_statement_token2] = ACTIONS(4611), - [aux_sym_module_statement_token1] = ACTIONS(4611), - [aux_sym_submodule_statement_token1] = ACTIONS(4611), - [aux_sym_interface_statement_token1] = ACTIONS(4611), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), - [aux_sym_subroutine_statement_token1] = ACTIONS(4611), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), - [aux_sym_function_statement_token1] = ACTIONS(4611), - [aux_sym_language_binding_token1] = ACTIONS(4611), - [aux_sym_procedure_attributes_token1] = ACTIONS(4611), - [aux_sym_procedure_attributes_token3] = ACTIONS(4611), - [aux_sym_contains_statement_token1] = ACTIONS(4611), - [aux_sym_use_statement_token1] = ACTIONS(4611), - [aux_sym_use_statement_token2] = ACTIONS(4611), - [aux_sym_implicit_statement_token1] = ACTIONS(4611), - [aux_sym_implicit_statement_token3] = ACTIONS(4611), - [aux_sym_implicit_statement_token4] = ACTIONS(4611), - [aux_sym_save_statement_token1] = ACTIONS(4611), - [aux_sym_private_statement_token1] = ACTIONS(4611), - [aux_sym_public_statement_token1] = ACTIONS(4611), - [aux_sym_namelist_statement_token1] = ACTIONS(4611), - [aux_sym_common_statement_token1] = ACTIONS(4611), - [aux_sym_import_statement_token1] = ACTIONS(4611), - [aux_sym_derived_type_definition_token1] = ACTIONS(4611), - [aux_sym_abstract_specifier_token1] = ACTIONS(4611), - [aux_sym_procedure_attribute_token6] = ACTIONS(4611), - [aux_sym_variable_attributes_token1] = ACTIONS(4611), - [aux_sym_variable_attributes_token2] = ACTIONS(4611), - [aux_sym_variable_attributes_token3] = ACTIONS(4611), - [aux_sym_variable_attributes_token4] = ACTIONS(4611), - [aux_sym_variable_attributes_token5] = ACTIONS(4611), - [aux_sym__intrinsic_type_token1] = ACTIONS(4611), - [aux_sym__intrinsic_type_token2] = ACTIONS(4611), - [aux_sym__intrinsic_type_token3] = ACTIONS(4611), - [aux_sym__intrinsic_type_token4] = ACTIONS(4611), - [aux_sym__intrinsic_type_token6] = ACTIONS(4611), - [aux_sym__intrinsic_type_token7] = ACTIONS(4611), - [aux_sym__intrinsic_type_token8] = ACTIONS(4611), - [aux_sym__intrinsic_type_token9] = ACTIONS(4611), - [aux_sym__intrinsic_type_token10] = ACTIONS(4611), - [aux_sym_derived_type_token1] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), - [aux_sym_type_qualifier_token1] = ACTIONS(4611), - [aux_sym_type_qualifier_token2] = ACTIONS(4611), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4611), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4611), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4611), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4611), - [aux_sym_equivalence_statement_token1] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4613), - [aux_sym_stop_statement_token1] = ACTIONS(4611), - [aux_sym_stop_statement_token2] = ACTIONS(4611), - [aux_sym_subroutine_call_token1] = ACTIONS(4611), - [aux_sym_keyword_statement_token1] = ACTIONS(4611), - [aux_sym_keyword_statement_token2] = ACTIONS(4611), - [aux_sym_keyword_statement_token3] = ACTIONS(4611), - [aux_sym_keyword_statement_token4] = ACTIONS(4611), - [aux_sym_keyword_statement_token6] = ACTIONS(4611), - [aux_sym_keyword_statement_token7] = ACTIONS(4611), - [aux_sym_include_statement_token1] = ACTIONS(4611), - [aux_sym_data_statement_token1] = ACTIONS(4611), - [aux_sym_do_loop_statement_token1] = ACTIONS(4611), - [aux_sym__inline_if_statement_token1] = ACTIONS(4611), - [aux_sym_end_if_statement_token1] = ACTIONS(4611), - [aux_sym_elseif_clause_token2] = ACTIONS(4611), - [aux_sym__inline_where_statement_token1] = ACTIONS(4611), - [aux_sym__forall_control_expression_token1] = ACTIONS(4611), - [aux_sym_select_case_statement_token1] = ACTIONS(4611), - [aux_sym_select_case_statement_token3] = ACTIONS(4611), - [aux_sym_select_type_statement_token1] = ACTIONS(4611), - [aux_sym_select_rank_statement_token2] = ACTIONS(4611), - [aux_sym_block_construct_token1] = ACTIONS(4611), - [aux_sym_associate_statement_token1] = ACTIONS(4611), - [aux_sym_format_statement_token1] = ACTIONS(4611), - [aux_sym_print_statement_token1] = ACTIONS(4611), - [aux_sym_open_statement_token1] = ACTIONS(4611), - [aux_sym_close_statement_token1] = ACTIONS(4611), - [aux_sym_inquire_statement_token1] = ACTIONS(4611), - [aux_sym_enum_statement_token1] = ACTIONS(4611), - [aux_sym_file_position_statement_token1] = ACTIONS(4611), - [aux_sym_file_position_statement_token2] = ACTIONS(4611), - [aux_sym_file_position_statement_token3] = ACTIONS(4611), - [aux_sym_file_position_statement_token4] = ACTIONS(4611), - [aux_sym_allocate_statement_token1] = ACTIONS(4611), - [aux_sym_entry_statement_token1] = ACTIONS(4611), - [aux_sym_logical_expression_token5] = ACTIONS(4613), - [anon_sym_DOT] = ACTIONS(4611), - [anon_sym_LPAREN_SLASH] = ACTIONS(4613), - [anon_sym_LBRACK] = ACTIONS(4613), - [aux_sym_boolean_literal_token1] = ACTIONS(4613), - [aux_sym_boolean_literal_token2] = ACTIONS(4613), - [aux_sym_null_literal_token1] = ACTIONS(4611), - [aux_sym_coarray_statement_token1] = ACTIONS(4611), - [aux_sym_coarray_statement_token2] = ACTIONS(4611), - [aux_sym_coarray_statement_token6] = ACTIONS(4611), - [aux_sym_coarray_statement_token8] = ACTIONS(4611), - [aux_sym_coarray_statement_token11] = ACTIONS(4611), - [aux_sym_coarray_statement_token12] = ACTIONS(4611), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), - [aux_sym_identifier_token1] = ACTIONS(4611), + [aux_sym_program_statement_token1] = ACTIONS(4419), + [aux_sym_end_program_statement_token1] = ACTIONS(4419), + [aux_sym_end_program_statement_token2] = ACTIONS(4419), + [aux_sym_module_statement_token1] = ACTIONS(4419), + [aux_sym_submodule_statement_token1] = ACTIONS(4419), + [aux_sym_interface_statement_token1] = ACTIONS(4419), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4419), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4419), + [aux_sym_subroutine_statement_token1] = ACTIONS(4419), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4419), + [aux_sym_function_statement_token1] = ACTIONS(4419), + [aux_sym_language_binding_token1] = ACTIONS(4419), + [aux_sym_procedure_attributes_token1] = ACTIONS(4419), + [aux_sym_procedure_attributes_token3] = ACTIONS(4419), + [aux_sym_contains_statement_token1] = ACTIONS(4419), + [aux_sym_use_statement_token1] = ACTIONS(4419), + [aux_sym_use_statement_token2] = ACTIONS(4419), + [aux_sym_implicit_statement_token1] = ACTIONS(4419), + [aux_sym_implicit_statement_token3] = ACTIONS(4419), + [aux_sym_implicit_statement_token4] = ACTIONS(4419), + [aux_sym_save_statement_token1] = ACTIONS(4419), + [aux_sym_private_statement_token1] = ACTIONS(4419), + [aux_sym_public_statement_token1] = ACTIONS(4419), + [aux_sym_namelist_statement_token1] = ACTIONS(4419), + [aux_sym_common_statement_token1] = ACTIONS(4419), + [aux_sym_import_statement_token1] = ACTIONS(4419), + [aux_sym_derived_type_definition_token1] = ACTIONS(4419), + [aux_sym_abstract_specifier_token1] = ACTIONS(4419), + [aux_sym_procedure_attribute_token6] = ACTIONS(4419), + [aux_sym_variable_attributes_token1] = ACTIONS(4419), + [aux_sym_variable_attributes_token2] = ACTIONS(4419), + [aux_sym_variable_attributes_token3] = ACTIONS(4419), + [aux_sym_variable_attributes_token4] = ACTIONS(4419), + [aux_sym_variable_attributes_token5] = ACTIONS(4419), + [aux_sym__intrinsic_type_token1] = ACTIONS(4419), + [aux_sym__intrinsic_type_token2] = ACTIONS(4419), + [aux_sym__intrinsic_type_token3] = ACTIONS(4419), + [aux_sym__intrinsic_type_token4] = ACTIONS(4419), + [aux_sym__intrinsic_type_token6] = ACTIONS(4419), + [aux_sym__intrinsic_type_token7] = ACTIONS(4419), + [aux_sym__intrinsic_type_token8] = ACTIONS(4419), + [aux_sym__intrinsic_type_token9] = ACTIONS(4419), + [aux_sym__intrinsic_type_token10] = ACTIONS(4419), + [aux_sym_derived_type_token1] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4419), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4419), + [aux_sym_type_qualifier_token1] = ACTIONS(4419), + [aux_sym_type_qualifier_token2] = ACTIONS(4419), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4419), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4419), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4419), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4419), + [aux_sym_equivalence_statement_token1] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [aux_sym_stop_statement_token1] = ACTIONS(4419), + [aux_sym_stop_statement_token2] = ACTIONS(4419), + [aux_sym_subroutine_call_token1] = ACTIONS(4419), + [aux_sym_keyword_statement_token1] = ACTIONS(4419), + [aux_sym_keyword_statement_token2] = ACTIONS(4419), + [aux_sym_keyword_statement_token3] = ACTIONS(4419), + [aux_sym_keyword_statement_token4] = ACTIONS(4419), + [aux_sym_keyword_statement_token6] = ACTIONS(4419), + [aux_sym_keyword_statement_token7] = ACTIONS(4419), + [aux_sym_include_statement_token1] = ACTIONS(4419), + [aux_sym_data_statement_token1] = ACTIONS(4419), + [aux_sym_do_loop_statement_token1] = ACTIONS(4419), + [aux_sym__inline_if_statement_token1] = ACTIONS(4419), + [aux_sym_end_if_statement_token1] = ACTIONS(4419), + [aux_sym_elseif_clause_token2] = ACTIONS(4419), + [aux_sym__inline_where_statement_token1] = ACTIONS(4419), + [aux_sym__forall_control_expression_token1] = ACTIONS(4419), + [aux_sym_select_case_statement_token1] = ACTIONS(4419), + [aux_sym_select_case_statement_token3] = ACTIONS(4419), + [aux_sym_select_type_statement_token1] = ACTIONS(4419), + [aux_sym_select_rank_statement_token2] = ACTIONS(4419), + [aux_sym_block_construct_token1] = ACTIONS(4419), + [aux_sym_associate_statement_token1] = ACTIONS(4419), + [aux_sym_format_statement_token1] = ACTIONS(4419), + [aux_sym_print_statement_token1] = ACTIONS(4419), + [aux_sym_open_statement_token1] = ACTIONS(4419), + [aux_sym_close_statement_token1] = ACTIONS(4419), + [aux_sym_inquire_statement_token1] = ACTIONS(4419), + [aux_sym_enum_statement_token1] = ACTIONS(4419), + [aux_sym_file_position_statement_token1] = ACTIONS(4419), + [aux_sym_file_position_statement_token2] = ACTIONS(4419), + [aux_sym_file_position_statement_token3] = ACTIONS(4419), + [aux_sym_file_position_statement_token4] = ACTIONS(4419), + [aux_sym_allocate_statement_token1] = ACTIONS(4419), + [aux_sym_entry_statement_token1] = ACTIONS(4419), + [aux_sym_logical_expression_token5] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_LPAREN_SLASH] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [aux_sym_boolean_literal_token1] = ACTIONS(4421), + [aux_sym_boolean_literal_token2] = ACTIONS(4421), + [aux_sym_null_literal_token1] = ACTIONS(4419), + [aux_sym_coarray_statement_token1] = ACTIONS(4419), + [aux_sym_coarray_statement_token2] = ACTIONS(4419), + [aux_sym_coarray_statement_token6] = ACTIONS(4419), + [aux_sym_coarray_statement_token8] = ACTIONS(4419), + [aux_sym_coarray_statement_token11] = ACTIONS(4419), + [aux_sym_coarray_statement_token12] = ACTIONS(4419), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4419), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4419), + [aux_sym_identifier_token1] = ACTIONS(4419), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4613), - [sym__float_literal] = ACTIONS(4613), - [sym__boz_literal] = ACTIONS(4613), - [sym__string_literal] = ACTIONS(4613), - [sym__string_literal_kind] = ACTIONS(4613), - }, - [1046] = { - [aux_sym_preproc_include_token1] = ACTIONS(4551), - [aux_sym_preproc_def_token1] = ACTIONS(4551), - [aux_sym_preproc_if_token1] = ACTIONS(4551), - [aux_sym_preproc_if_token2] = ACTIONS(4551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4551), - [sym_preproc_directive] = ACTIONS(4551), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4551), - [aux_sym_end_program_statement_token1] = ACTIONS(4551), - [aux_sym_end_program_statement_token2] = ACTIONS(4551), - [aux_sym_module_statement_token1] = ACTIONS(4551), - [aux_sym_submodule_statement_token1] = ACTIONS(4551), - [aux_sym_interface_statement_token1] = ACTIONS(4551), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4551), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4551), - [aux_sym_subroutine_statement_token1] = ACTIONS(4551), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4551), - [aux_sym_function_statement_token1] = ACTIONS(4551), - [aux_sym_language_binding_token1] = ACTIONS(4551), - [aux_sym_procedure_attributes_token1] = ACTIONS(4551), - [aux_sym_procedure_attributes_token3] = ACTIONS(4551), - [aux_sym_contains_statement_token1] = ACTIONS(4551), - [aux_sym_use_statement_token1] = ACTIONS(4551), - [aux_sym_use_statement_token2] = ACTIONS(4551), - [aux_sym_implicit_statement_token1] = ACTIONS(4551), - [aux_sym_implicit_statement_token3] = ACTIONS(4551), - [aux_sym_implicit_statement_token4] = ACTIONS(4551), - [aux_sym_save_statement_token1] = ACTIONS(4551), - [aux_sym_private_statement_token1] = ACTIONS(4551), - [aux_sym_public_statement_token1] = ACTIONS(4551), - [aux_sym_namelist_statement_token1] = ACTIONS(4551), - [aux_sym_common_statement_token1] = ACTIONS(4551), - [aux_sym_import_statement_token1] = ACTIONS(4551), - [aux_sym_derived_type_definition_token1] = ACTIONS(4551), - [aux_sym_abstract_specifier_token1] = ACTIONS(4551), - [aux_sym_procedure_attribute_token6] = ACTIONS(4551), - [aux_sym_variable_attributes_token1] = ACTIONS(4551), - [aux_sym_variable_attributes_token2] = ACTIONS(4551), - [aux_sym_variable_attributes_token3] = ACTIONS(4551), - [aux_sym_variable_attributes_token4] = ACTIONS(4551), - [aux_sym_variable_attributes_token5] = ACTIONS(4551), - [aux_sym__intrinsic_type_token1] = ACTIONS(4551), - [aux_sym__intrinsic_type_token2] = ACTIONS(4551), - [aux_sym__intrinsic_type_token3] = ACTIONS(4551), - [aux_sym__intrinsic_type_token4] = ACTIONS(4551), - [aux_sym__intrinsic_type_token6] = ACTIONS(4551), - [aux_sym__intrinsic_type_token7] = ACTIONS(4551), - [aux_sym__intrinsic_type_token8] = ACTIONS(4551), - [aux_sym__intrinsic_type_token9] = ACTIONS(4551), - [aux_sym__intrinsic_type_token10] = ACTIONS(4551), - [aux_sym_derived_type_token1] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4551), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4551), - [aux_sym_type_qualifier_token1] = ACTIONS(4551), - [aux_sym_type_qualifier_token2] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4551), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4551), - [aux_sym_equivalence_statement_token1] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4553), - [aux_sym_stop_statement_token1] = ACTIONS(4551), - [aux_sym_stop_statement_token2] = ACTIONS(4551), - [aux_sym_subroutine_call_token1] = ACTIONS(4551), - [aux_sym_keyword_statement_token1] = ACTIONS(4551), - [aux_sym_keyword_statement_token2] = ACTIONS(4551), - [aux_sym_keyword_statement_token3] = ACTIONS(4551), - [aux_sym_keyword_statement_token4] = ACTIONS(4551), - [aux_sym_keyword_statement_token6] = ACTIONS(4551), - [aux_sym_keyword_statement_token7] = ACTIONS(4551), - [aux_sym_include_statement_token1] = ACTIONS(4551), - [aux_sym_data_statement_token1] = ACTIONS(4551), - [aux_sym_do_loop_statement_token1] = ACTIONS(4551), - [aux_sym__inline_if_statement_token1] = ACTIONS(4551), - [aux_sym_end_if_statement_token1] = ACTIONS(4551), - [aux_sym_elseif_clause_token2] = ACTIONS(4551), - [aux_sym__inline_where_statement_token1] = ACTIONS(4551), - [aux_sym__forall_control_expression_token1] = ACTIONS(4551), - [aux_sym_select_case_statement_token1] = ACTIONS(4551), - [aux_sym_select_case_statement_token3] = ACTIONS(4551), - [aux_sym_select_type_statement_token1] = ACTIONS(4551), - [aux_sym_select_rank_statement_token2] = ACTIONS(4551), - [aux_sym_block_construct_token1] = ACTIONS(4551), - [aux_sym_associate_statement_token1] = ACTIONS(4551), - [aux_sym_format_statement_token1] = ACTIONS(4551), - [aux_sym_print_statement_token1] = ACTIONS(4551), - [aux_sym_open_statement_token1] = ACTIONS(4551), - [aux_sym_close_statement_token1] = ACTIONS(4551), - [aux_sym_inquire_statement_token1] = ACTIONS(4551), - [aux_sym_enum_statement_token1] = ACTIONS(4551), - [aux_sym_file_position_statement_token1] = ACTIONS(4551), - [aux_sym_file_position_statement_token2] = ACTIONS(4551), - [aux_sym_file_position_statement_token3] = ACTIONS(4551), - [aux_sym_file_position_statement_token4] = ACTIONS(4551), - [aux_sym_allocate_statement_token1] = ACTIONS(4551), - [aux_sym_entry_statement_token1] = ACTIONS(4551), - [aux_sym_logical_expression_token5] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4551), - [anon_sym_LPAREN_SLASH] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4553), - [aux_sym_boolean_literal_token1] = ACTIONS(4553), - [aux_sym_boolean_literal_token2] = ACTIONS(4553), - [aux_sym_null_literal_token1] = ACTIONS(4551), - [aux_sym_coarray_statement_token1] = ACTIONS(4551), - [aux_sym_coarray_statement_token2] = ACTIONS(4551), - [aux_sym_coarray_statement_token6] = ACTIONS(4551), - [aux_sym_coarray_statement_token8] = ACTIONS(4551), - [aux_sym_coarray_statement_token11] = ACTIONS(4551), - [aux_sym_coarray_statement_token12] = ACTIONS(4551), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4551), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4551), - [aux_sym_identifier_token1] = ACTIONS(4551), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4553), - [sym__float_literal] = ACTIONS(4553), - [sym__boz_literal] = ACTIONS(4553), - [sym__string_literal] = ACTIONS(4553), - [sym__string_literal_kind] = ACTIONS(4553), - }, - [1047] = { - [aux_sym_preproc_include_token1] = ACTIONS(4555), - [aux_sym_preproc_def_token1] = ACTIONS(4555), - [aux_sym_preproc_if_token1] = ACTIONS(4555), - [aux_sym_preproc_if_token2] = ACTIONS(4555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4555), - [sym_preproc_directive] = ACTIONS(4555), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_PLUS] = ACTIONS(4557), - [anon_sym_DASH] = ACTIONS(4557), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4555), - [aux_sym_end_program_statement_token1] = ACTIONS(4555), - [aux_sym_end_program_statement_token2] = ACTIONS(4555), - [aux_sym_module_statement_token1] = ACTIONS(4555), - [aux_sym_submodule_statement_token1] = ACTIONS(4555), - [aux_sym_interface_statement_token1] = ACTIONS(4555), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4555), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4555), - [aux_sym_subroutine_statement_token1] = ACTIONS(4555), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4555), - [aux_sym_function_statement_token1] = ACTIONS(4555), - [aux_sym_language_binding_token1] = ACTIONS(4555), - [aux_sym_procedure_attributes_token1] = ACTIONS(4555), - [aux_sym_procedure_attributes_token3] = ACTIONS(4555), - [aux_sym_contains_statement_token1] = ACTIONS(4555), - [aux_sym_use_statement_token1] = ACTIONS(4555), - [aux_sym_use_statement_token2] = ACTIONS(4555), - [aux_sym_implicit_statement_token1] = ACTIONS(4555), - [aux_sym_implicit_statement_token3] = ACTIONS(4555), - [aux_sym_implicit_statement_token4] = ACTIONS(4555), - [aux_sym_save_statement_token1] = ACTIONS(4555), - [aux_sym_private_statement_token1] = ACTIONS(4555), - [aux_sym_public_statement_token1] = ACTIONS(4555), - [aux_sym_namelist_statement_token1] = ACTIONS(4555), - [aux_sym_common_statement_token1] = ACTIONS(4555), - [aux_sym_import_statement_token1] = ACTIONS(4555), - [aux_sym_derived_type_definition_token1] = ACTIONS(4555), - [aux_sym_abstract_specifier_token1] = ACTIONS(4555), - [aux_sym_procedure_attribute_token6] = ACTIONS(4555), - [aux_sym_variable_attributes_token1] = ACTIONS(4555), - [aux_sym_variable_attributes_token2] = ACTIONS(4555), - [aux_sym_variable_attributes_token3] = ACTIONS(4555), - [aux_sym_variable_attributes_token4] = ACTIONS(4555), - [aux_sym_variable_attributes_token5] = ACTIONS(4555), - [aux_sym__intrinsic_type_token1] = ACTIONS(4555), - [aux_sym__intrinsic_type_token2] = ACTIONS(4555), - [aux_sym__intrinsic_type_token3] = ACTIONS(4555), - [aux_sym__intrinsic_type_token4] = ACTIONS(4555), - [aux_sym__intrinsic_type_token6] = ACTIONS(4555), - [aux_sym__intrinsic_type_token7] = ACTIONS(4555), - [aux_sym__intrinsic_type_token8] = ACTIONS(4555), - [aux_sym__intrinsic_type_token9] = ACTIONS(4555), - [aux_sym__intrinsic_type_token10] = ACTIONS(4555), - [aux_sym_derived_type_token1] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4555), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4555), - [aux_sym_type_qualifier_token1] = ACTIONS(4555), - [aux_sym_type_qualifier_token2] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4555), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4555), - [aux_sym_equivalence_statement_token1] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(4557), - [aux_sym_stop_statement_token1] = ACTIONS(4555), - [aux_sym_stop_statement_token2] = ACTIONS(4555), - [aux_sym_subroutine_call_token1] = ACTIONS(4555), - [aux_sym_keyword_statement_token1] = ACTIONS(4555), - [aux_sym_keyword_statement_token2] = ACTIONS(4555), - [aux_sym_keyword_statement_token3] = ACTIONS(4555), - [aux_sym_keyword_statement_token4] = ACTIONS(4555), - [aux_sym_keyword_statement_token6] = ACTIONS(4555), - [aux_sym_keyword_statement_token7] = ACTIONS(4555), - [aux_sym_include_statement_token1] = ACTIONS(4555), - [aux_sym_data_statement_token1] = ACTIONS(4555), - [aux_sym_do_loop_statement_token1] = ACTIONS(4555), - [aux_sym__inline_if_statement_token1] = ACTIONS(4555), - [aux_sym_end_if_statement_token1] = ACTIONS(4555), - [aux_sym_elseif_clause_token2] = ACTIONS(4555), - [aux_sym__inline_where_statement_token1] = ACTIONS(4555), - [aux_sym__forall_control_expression_token1] = ACTIONS(4555), - [aux_sym_select_case_statement_token1] = ACTIONS(4555), - [aux_sym_select_case_statement_token3] = ACTIONS(4555), - [aux_sym_select_type_statement_token1] = ACTIONS(4555), - [aux_sym_select_rank_statement_token2] = ACTIONS(4555), - [aux_sym_block_construct_token1] = ACTIONS(4555), - [aux_sym_associate_statement_token1] = ACTIONS(4555), - [aux_sym_format_statement_token1] = ACTIONS(4555), - [aux_sym_print_statement_token1] = ACTIONS(4555), - [aux_sym_open_statement_token1] = ACTIONS(4555), - [aux_sym_close_statement_token1] = ACTIONS(4555), - [aux_sym_inquire_statement_token1] = ACTIONS(4555), - [aux_sym_enum_statement_token1] = ACTIONS(4555), - [aux_sym_file_position_statement_token1] = ACTIONS(4555), - [aux_sym_file_position_statement_token2] = ACTIONS(4555), - [aux_sym_file_position_statement_token3] = ACTIONS(4555), - [aux_sym_file_position_statement_token4] = ACTIONS(4555), - [aux_sym_allocate_statement_token1] = ACTIONS(4555), - [aux_sym_entry_statement_token1] = ACTIONS(4555), - [aux_sym_logical_expression_token5] = ACTIONS(4557), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_LPAREN_SLASH] = ACTIONS(4557), - [anon_sym_LBRACK] = ACTIONS(4557), - [aux_sym_boolean_literal_token1] = ACTIONS(4557), - [aux_sym_boolean_literal_token2] = ACTIONS(4557), - [aux_sym_null_literal_token1] = ACTIONS(4555), - [aux_sym_coarray_statement_token1] = ACTIONS(4555), - [aux_sym_coarray_statement_token2] = ACTIONS(4555), - [aux_sym_coarray_statement_token6] = ACTIONS(4555), - [aux_sym_coarray_statement_token8] = ACTIONS(4555), - [aux_sym_coarray_statement_token11] = ACTIONS(4555), - [aux_sym_coarray_statement_token12] = ACTIONS(4555), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4555), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4555), - [aux_sym_identifier_token1] = ACTIONS(4555), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4557), - [sym__float_literal] = ACTIONS(4557), - [sym__boz_literal] = ACTIONS(4557), - [sym__string_literal] = ACTIONS(4557), - [sym__string_literal_kind] = ACTIONS(4557), - }, - [1048] = { - [aux_sym_preproc_include_token1] = ACTIONS(4563), - [aux_sym_preproc_def_token1] = ACTIONS(4563), - [aux_sym_preproc_if_token1] = ACTIONS(4563), - [aux_sym_preproc_if_token2] = ACTIONS(4563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4563), - [sym_preproc_directive] = ACTIONS(4563), - [anon_sym_LPAREN2] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4563), - [aux_sym_end_program_statement_token1] = ACTIONS(4563), - [aux_sym_end_program_statement_token2] = ACTIONS(4563), - [aux_sym_module_statement_token1] = ACTIONS(4563), - [aux_sym_submodule_statement_token1] = ACTIONS(4563), - [aux_sym_interface_statement_token1] = ACTIONS(4563), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4563), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4563), - [aux_sym_subroutine_statement_token1] = ACTIONS(4563), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4563), - [aux_sym_function_statement_token1] = ACTIONS(4563), - [aux_sym_language_binding_token1] = ACTIONS(4563), - [aux_sym_procedure_attributes_token1] = ACTIONS(4563), - [aux_sym_procedure_attributes_token3] = ACTIONS(4563), - [aux_sym_contains_statement_token1] = ACTIONS(4563), - [aux_sym_use_statement_token1] = ACTIONS(4563), - [aux_sym_use_statement_token2] = ACTIONS(4563), - [aux_sym_implicit_statement_token1] = ACTIONS(4563), - [aux_sym_implicit_statement_token3] = ACTIONS(4563), - [aux_sym_implicit_statement_token4] = ACTIONS(4563), - [aux_sym_save_statement_token1] = ACTIONS(4563), - [aux_sym_private_statement_token1] = ACTIONS(4563), - [aux_sym_public_statement_token1] = ACTIONS(4563), - [aux_sym_namelist_statement_token1] = ACTIONS(4563), - [aux_sym_common_statement_token1] = ACTIONS(4563), - [aux_sym_import_statement_token1] = ACTIONS(4563), - [aux_sym_derived_type_definition_token1] = ACTIONS(4563), - [aux_sym_abstract_specifier_token1] = ACTIONS(4563), - [aux_sym_procedure_attribute_token6] = ACTIONS(4563), - [aux_sym_variable_attributes_token1] = ACTIONS(4563), - [aux_sym_variable_attributes_token2] = ACTIONS(4563), - [aux_sym_variable_attributes_token3] = ACTIONS(4563), - [aux_sym_variable_attributes_token4] = ACTIONS(4563), - [aux_sym_variable_attributes_token5] = ACTIONS(4563), - [aux_sym__intrinsic_type_token1] = ACTIONS(4563), - [aux_sym__intrinsic_type_token2] = ACTIONS(4563), - [aux_sym__intrinsic_type_token3] = ACTIONS(4563), - [aux_sym__intrinsic_type_token4] = ACTIONS(4563), - [aux_sym__intrinsic_type_token6] = ACTIONS(4563), - [aux_sym__intrinsic_type_token7] = ACTIONS(4563), - [aux_sym__intrinsic_type_token8] = ACTIONS(4563), - [aux_sym__intrinsic_type_token9] = ACTIONS(4563), - [aux_sym__intrinsic_type_token10] = ACTIONS(4563), - [aux_sym_derived_type_token1] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4563), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4563), - [aux_sym_type_qualifier_token1] = ACTIONS(4563), - [aux_sym_type_qualifier_token2] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4563), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4563), - [aux_sym_equivalence_statement_token1] = ACTIONS(4563), - [anon_sym_SEMI] = ACTIONS(4565), - [aux_sym_stop_statement_token1] = ACTIONS(4563), - [aux_sym_stop_statement_token2] = ACTIONS(4563), - [aux_sym_subroutine_call_token1] = ACTIONS(4563), - [aux_sym_keyword_statement_token1] = ACTIONS(4563), - [aux_sym_keyword_statement_token2] = ACTIONS(4563), - [aux_sym_keyword_statement_token3] = ACTIONS(4563), - [aux_sym_keyword_statement_token4] = ACTIONS(4563), - [aux_sym_keyword_statement_token6] = ACTIONS(4563), - [aux_sym_keyword_statement_token7] = ACTIONS(4563), - [aux_sym_include_statement_token1] = ACTIONS(4563), - [aux_sym_data_statement_token1] = ACTIONS(4563), - [aux_sym_do_loop_statement_token1] = ACTIONS(4563), - [aux_sym__inline_if_statement_token1] = ACTIONS(4563), - [aux_sym_end_if_statement_token1] = ACTIONS(4563), - [aux_sym_elseif_clause_token2] = ACTIONS(4563), - [aux_sym__inline_where_statement_token1] = ACTIONS(4563), - [aux_sym__forall_control_expression_token1] = ACTIONS(4563), - [aux_sym_select_case_statement_token1] = ACTIONS(4563), - [aux_sym_select_case_statement_token3] = ACTIONS(4563), - [aux_sym_select_type_statement_token1] = ACTIONS(4563), - [aux_sym_select_rank_statement_token2] = ACTIONS(4563), - [aux_sym_block_construct_token1] = ACTIONS(4563), - [aux_sym_associate_statement_token1] = ACTIONS(4563), - [aux_sym_format_statement_token1] = ACTIONS(4563), - [aux_sym_print_statement_token1] = ACTIONS(4563), - [aux_sym_open_statement_token1] = ACTIONS(4563), - [aux_sym_close_statement_token1] = ACTIONS(4563), - [aux_sym_inquire_statement_token1] = ACTIONS(4563), - [aux_sym_enum_statement_token1] = ACTIONS(4563), - [aux_sym_file_position_statement_token1] = ACTIONS(4563), - [aux_sym_file_position_statement_token2] = ACTIONS(4563), - [aux_sym_file_position_statement_token3] = ACTIONS(4563), - [aux_sym_file_position_statement_token4] = ACTIONS(4563), - [aux_sym_allocate_statement_token1] = ACTIONS(4563), - [aux_sym_entry_statement_token1] = ACTIONS(4563), - [aux_sym_logical_expression_token5] = ACTIONS(4565), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_LPAREN_SLASH] = ACTIONS(4565), - [anon_sym_LBRACK] = ACTIONS(4565), - [aux_sym_boolean_literal_token1] = ACTIONS(4565), - [aux_sym_boolean_literal_token2] = ACTIONS(4565), - [aux_sym_null_literal_token1] = ACTIONS(4563), - [aux_sym_coarray_statement_token1] = ACTIONS(4563), - [aux_sym_coarray_statement_token2] = ACTIONS(4563), - [aux_sym_coarray_statement_token6] = ACTIONS(4563), - [aux_sym_coarray_statement_token8] = ACTIONS(4563), - [aux_sym_coarray_statement_token11] = ACTIONS(4563), - [aux_sym_coarray_statement_token12] = ACTIONS(4563), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4563), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4563), - [aux_sym_identifier_token1] = ACTIONS(4563), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4565), - [sym__float_literal] = ACTIONS(4565), - [sym__boz_literal] = ACTIONS(4565), - [sym__string_literal] = ACTIONS(4565), - [sym__string_literal_kind] = ACTIONS(4565), + [sym__integer_literal] = ACTIONS(4421), + [sym__float_literal] = ACTIONS(4421), + [sym__boz_literal] = ACTIONS(4421), + [sym__string_literal] = ACTIONS(4421), + [sym__string_literal_kind] = ACTIONS(4421), }, - [1049] = { - [ts_builtin_sym_end] = ACTIONS(4617), - [aux_sym_preproc_include_token1] = ACTIONS(4615), - [aux_sym_preproc_def_token1] = ACTIONS(4615), - [aux_sym_preproc_if_token1] = ACTIONS(4615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), - [sym_preproc_directive] = ACTIONS(4615), - [anon_sym_LPAREN2] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4617), + [1028] = { + [ts_builtin_sym_end] = ACTIONS(4425), + [aux_sym_preproc_include_token1] = ACTIONS(4423), + [aux_sym_preproc_def_token1] = ACTIONS(4423), + [aux_sym_preproc_if_token1] = ACTIONS(4423), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4423), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4423), + [sym_preproc_directive] = ACTIONS(4423), + [anon_sym_LPAREN2] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4425), + [anon_sym_DASH] = ACTIONS(4425), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4615), - [aux_sym_end_program_statement_token1] = ACTIONS(4615), - [aux_sym_end_program_statement_token2] = ACTIONS(4615), - [aux_sym_module_statement_token1] = ACTIONS(4615), - [aux_sym_submodule_statement_token1] = ACTIONS(4615), - [aux_sym_interface_statement_token1] = ACTIONS(4615), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), - [aux_sym_subroutine_statement_token1] = ACTIONS(4615), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), - [aux_sym_function_statement_token1] = ACTIONS(4615), - [aux_sym_language_binding_token1] = ACTIONS(4615), - [aux_sym_procedure_attributes_token1] = ACTIONS(4615), - [aux_sym_procedure_attributes_token3] = ACTIONS(4615), - [aux_sym_contains_statement_token1] = ACTIONS(4615), - [aux_sym_use_statement_token1] = ACTIONS(4615), - [aux_sym_use_statement_token2] = ACTIONS(4615), - [aux_sym_implicit_statement_token1] = ACTIONS(4615), - [aux_sym_implicit_statement_token3] = ACTIONS(4615), - [aux_sym_implicit_statement_token4] = ACTIONS(4615), - [aux_sym_save_statement_token1] = ACTIONS(4615), - [aux_sym_private_statement_token1] = ACTIONS(4615), - [aux_sym_public_statement_token1] = ACTIONS(4615), - [aux_sym_namelist_statement_token1] = ACTIONS(4615), - [aux_sym_common_statement_token1] = ACTIONS(4615), - [aux_sym_import_statement_token1] = ACTIONS(4615), - [aux_sym_derived_type_definition_token1] = ACTIONS(4615), - [aux_sym_abstract_specifier_token1] = ACTIONS(4615), - [aux_sym_procedure_attribute_token6] = ACTIONS(4615), - [aux_sym_variable_attributes_token1] = ACTIONS(4615), - [aux_sym_variable_attributes_token2] = ACTIONS(4615), - [aux_sym_variable_attributes_token3] = ACTIONS(4615), - [aux_sym_variable_attributes_token4] = ACTIONS(4615), - [aux_sym_variable_attributes_token5] = ACTIONS(4615), - [aux_sym__intrinsic_type_token1] = ACTIONS(4615), - [aux_sym__intrinsic_type_token2] = ACTIONS(4615), - [aux_sym__intrinsic_type_token3] = ACTIONS(4615), - [aux_sym__intrinsic_type_token4] = ACTIONS(4615), - [aux_sym__intrinsic_type_token6] = ACTIONS(4615), - [aux_sym__intrinsic_type_token7] = ACTIONS(4615), - [aux_sym__intrinsic_type_token8] = ACTIONS(4615), - [aux_sym__intrinsic_type_token9] = ACTIONS(4615), - [aux_sym__intrinsic_type_token10] = ACTIONS(4615), - [aux_sym_derived_type_token1] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), - [aux_sym_type_qualifier_token1] = ACTIONS(4615), - [aux_sym_type_qualifier_token2] = ACTIONS(4615), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4615), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4615), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4615), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4615), - [aux_sym_equivalence_statement_token1] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4617), - [aux_sym_stop_statement_token1] = ACTIONS(4615), - [aux_sym_stop_statement_token2] = ACTIONS(4615), - [aux_sym_subroutine_call_token1] = ACTIONS(4615), - [aux_sym_keyword_statement_token1] = ACTIONS(4615), - [aux_sym_keyword_statement_token2] = ACTIONS(4615), - [aux_sym_keyword_statement_token3] = ACTIONS(4615), - [aux_sym_keyword_statement_token4] = ACTIONS(4615), - [aux_sym_keyword_statement_token6] = ACTIONS(4615), - [aux_sym_keyword_statement_token7] = ACTIONS(4615), - [aux_sym_include_statement_token1] = ACTIONS(4615), - [aux_sym_data_statement_token1] = ACTIONS(4615), - [aux_sym_do_loop_statement_token1] = ACTIONS(4615), - [aux_sym__inline_if_statement_token1] = ACTIONS(4615), - [aux_sym_end_if_statement_token1] = ACTIONS(4615), - [aux_sym_elseif_clause_token2] = ACTIONS(4615), - [aux_sym__inline_where_statement_token1] = ACTIONS(4615), - [aux_sym__forall_control_expression_token1] = ACTIONS(4615), - [aux_sym_select_case_statement_token1] = ACTIONS(4615), - [aux_sym_select_case_statement_token3] = ACTIONS(4615), - [aux_sym_select_type_statement_token1] = ACTIONS(4615), - [aux_sym_select_rank_statement_token2] = ACTIONS(4615), - [aux_sym_block_construct_token1] = ACTIONS(4615), - [aux_sym_associate_statement_token1] = ACTIONS(4615), - [aux_sym_format_statement_token1] = ACTIONS(4615), - [aux_sym_print_statement_token1] = ACTIONS(4615), - [aux_sym_open_statement_token1] = ACTIONS(4615), - [aux_sym_close_statement_token1] = ACTIONS(4615), - [aux_sym_inquire_statement_token1] = ACTIONS(4615), - [aux_sym_enum_statement_token1] = ACTIONS(4615), - [aux_sym_file_position_statement_token1] = ACTIONS(4615), - [aux_sym_file_position_statement_token2] = ACTIONS(4615), - [aux_sym_file_position_statement_token3] = ACTIONS(4615), - [aux_sym_file_position_statement_token4] = ACTIONS(4615), - [aux_sym_allocate_statement_token1] = ACTIONS(4615), - [aux_sym_entry_statement_token1] = ACTIONS(4615), - [aux_sym_logical_expression_token5] = ACTIONS(4617), - [anon_sym_DOT] = ACTIONS(4615), - [anon_sym_LPAREN_SLASH] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4617), - [aux_sym_boolean_literal_token1] = ACTIONS(4617), - [aux_sym_boolean_literal_token2] = ACTIONS(4617), - [aux_sym_null_literal_token1] = ACTIONS(4615), - [aux_sym_coarray_statement_token1] = ACTIONS(4615), - [aux_sym_coarray_statement_token2] = ACTIONS(4615), - [aux_sym_coarray_statement_token6] = ACTIONS(4615), - [aux_sym_coarray_statement_token8] = ACTIONS(4615), - [aux_sym_coarray_statement_token11] = ACTIONS(4615), - [aux_sym_coarray_statement_token12] = ACTIONS(4615), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), - [aux_sym_identifier_token1] = ACTIONS(4615), + [aux_sym_program_statement_token1] = ACTIONS(4423), + [aux_sym_end_program_statement_token1] = ACTIONS(4423), + [aux_sym_end_program_statement_token2] = ACTIONS(4423), + [aux_sym_module_statement_token1] = ACTIONS(4423), + [aux_sym_submodule_statement_token1] = ACTIONS(4423), + [aux_sym_interface_statement_token1] = ACTIONS(4423), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4423), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4423), + [aux_sym_subroutine_statement_token1] = ACTIONS(4423), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4423), + [aux_sym_function_statement_token1] = ACTIONS(4423), + [aux_sym_language_binding_token1] = ACTIONS(4423), + [aux_sym_procedure_attributes_token1] = ACTIONS(4423), + [aux_sym_procedure_attributes_token3] = ACTIONS(4423), + [aux_sym_contains_statement_token1] = ACTIONS(4423), + [aux_sym_use_statement_token1] = ACTIONS(4423), + [aux_sym_use_statement_token2] = ACTIONS(4423), + [aux_sym_implicit_statement_token1] = ACTIONS(4423), + [aux_sym_implicit_statement_token3] = ACTIONS(4423), + [aux_sym_implicit_statement_token4] = ACTIONS(4423), + [aux_sym_save_statement_token1] = ACTIONS(4423), + [aux_sym_private_statement_token1] = ACTIONS(4423), + [aux_sym_public_statement_token1] = ACTIONS(4423), + [aux_sym_namelist_statement_token1] = ACTIONS(4423), + [aux_sym_common_statement_token1] = ACTIONS(4423), + [aux_sym_import_statement_token1] = ACTIONS(4423), + [aux_sym_derived_type_definition_token1] = ACTIONS(4423), + [aux_sym_abstract_specifier_token1] = ACTIONS(4423), + [aux_sym_procedure_attribute_token6] = ACTIONS(4423), + [aux_sym_variable_attributes_token1] = ACTIONS(4423), + [aux_sym_variable_attributes_token2] = ACTIONS(4423), + [aux_sym_variable_attributes_token3] = ACTIONS(4423), + [aux_sym_variable_attributes_token4] = ACTIONS(4423), + [aux_sym_variable_attributes_token5] = ACTIONS(4423), + [aux_sym__intrinsic_type_token1] = ACTIONS(4423), + [aux_sym__intrinsic_type_token2] = ACTIONS(4423), + [aux_sym__intrinsic_type_token3] = ACTIONS(4423), + [aux_sym__intrinsic_type_token4] = ACTIONS(4423), + [aux_sym__intrinsic_type_token6] = ACTIONS(4423), + [aux_sym__intrinsic_type_token7] = ACTIONS(4423), + [aux_sym__intrinsic_type_token8] = ACTIONS(4423), + [aux_sym__intrinsic_type_token9] = ACTIONS(4423), + [aux_sym__intrinsic_type_token10] = ACTIONS(4423), + [aux_sym_derived_type_token1] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4423), + [aux_sym_type_qualifier_token1] = ACTIONS(4423), + [aux_sym_type_qualifier_token2] = ACTIONS(4423), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4423), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4423), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4423), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4423), + [aux_sym_equivalence_statement_token1] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [aux_sym_stop_statement_token1] = ACTIONS(4423), + [aux_sym_stop_statement_token2] = ACTIONS(4423), + [aux_sym_subroutine_call_token1] = ACTIONS(4423), + [aux_sym_keyword_statement_token1] = ACTIONS(4423), + [aux_sym_keyword_statement_token2] = ACTIONS(4423), + [aux_sym_keyword_statement_token3] = ACTIONS(4423), + [aux_sym_keyword_statement_token4] = ACTIONS(4423), + [aux_sym_keyword_statement_token6] = ACTIONS(4423), + [aux_sym_keyword_statement_token7] = ACTIONS(4423), + [aux_sym_include_statement_token1] = ACTIONS(4423), + [aux_sym_data_statement_token1] = ACTIONS(4423), + [aux_sym_do_loop_statement_token1] = ACTIONS(4423), + [aux_sym__inline_if_statement_token1] = ACTIONS(4423), + [aux_sym_end_if_statement_token1] = ACTIONS(4423), + [aux_sym_elseif_clause_token2] = ACTIONS(4423), + [aux_sym__inline_where_statement_token1] = ACTIONS(4423), + [aux_sym__forall_control_expression_token1] = ACTIONS(4423), + [aux_sym_select_case_statement_token1] = ACTIONS(4423), + [aux_sym_select_case_statement_token3] = ACTIONS(4423), + [aux_sym_select_type_statement_token1] = ACTIONS(4423), + [aux_sym_select_rank_statement_token2] = ACTIONS(4423), + [aux_sym_block_construct_token1] = ACTIONS(4423), + [aux_sym_associate_statement_token1] = ACTIONS(4423), + [aux_sym_format_statement_token1] = ACTIONS(4423), + [aux_sym_print_statement_token1] = ACTIONS(4423), + [aux_sym_open_statement_token1] = ACTIONS(4423), + [aux_sym_close_statement_token1] = ACTIONS(4423), + [aux_sym_inquire_statement_token1] = ACTIONS(4423), + [aux_sym_enum_statement_token1] = ACTIONS(4423), + [aux_sym_file_position_statement_token1] = ACTIONS(4423), + [aux_sym_file_position_statement_token2] = ACTIONS(4423), + [aux_sym_file_position_statement_token3] = ACTIONS(4423), + [aux_sym_file_position_statement_token4] = ACTIONS(4423), + [aux_sym_allocate_statement_token1] = ACTIONS(4423), + [aux_sym_entry_statement_token1] = ACTIONS(4423), + [aux_sym_logical_expression_token5] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_LPAREN_SLASH] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4425), + [aux_sym_boolean_literal_token1] = ACTIONS(4425), + [aux_sym_boolean_literal_token2] = ACTIONS(4425), + [aux_sym_null_literal_token1] = ACTIONS(4423), + [aux_sym_coarray_statement_token1] = ACTIONS(4423), + [aux_sym_coarray_statement_token2] = ACTIONS(4423), + [aux_sym_coarray_statement_token6] = ACTIONS(4423), + [aux_sym_coarray_statement_token8] = ACTIONS(4423), + [aux_sym_coarray_statement_token11] = ACTIONS(4423), + [aux_sym_coarray_statement_token12] = ACTIONS(4423), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4423), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4423), + [aux_sym_identifier_token1] = ACTIONS(4423), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4617), - [sym__float_literal] = ACTIONS(4617), - [sym__boz_literal] = ACTIONS(4617), - [sym__string_literal] = ACTIONS(4617), - [sym__string_literal_kind] = ACTIONS(4617), + [sym__integer_literal] = ACTIONS(4425), + [sym__float_literal] = ACTIONS(4425), + [sym__boz_literal] = ACTIONS(4425), + [sym__string_literal] = ACTIONS(4425), + [sym__string_literal_kind] = ACTIONS(4425), }, - [1050] = { - [ts_builtin_sym_end] = ACTIONS(4501), - [aux_sym_preproc_include_token1] = ACTIONS(4499), - [aux_sym_preproc_def_token1] = ACTIONS(4499), - [aux_sym_preproc_if_token1] = ACTIONS(4499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4499), - [sym_preproc_directive] = ACTIONS(4499), - [anon_sym_LPAREN2] = ACTIONS(4499), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), + [1029] = { + [aux_sym_preproc_include_token1] = ACTIONS(4427), + [aux_sym_preproc_def_token1] = ACTIONS(4427), + [aux_sym_preproc_if_token1] = ACTIONS(4427), + [aux_sym_preproc_if_token2] = ACTIONS(4427), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4427), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4427), + [sym_preproc_directive] = ACTIONS(4427), + [anon_sym_LPAREN2] = ACTIONS(4427), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4499), - [aux_sym_end_program_statement_token1] = ACTIONS(4499), - [aux_sym_end_program_statement_token2] = ACTIONS(4499), - [aux_sym_module_statement_token1] = ACTIONS(4499), - [aux_sym_submodule_statement_token1] = ACTIONS(4499), - [aux_sym_interface_statement_token1] = ACTIONS(4499), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4499), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4499), - [aux_sym_subroutine_statement_token1] = ACTIONS(4499), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4499), - [aux_sym_function_statement_token1] = ACTIONS(4499), - [aux_sym_language_binding_token1] = ACTIONS(4499), - [aux_sym_procedure_attributes_token1] = ACTIONS(4499), - [aux_sym_procedure_attributes_token3] = ACTIONS(4499), - [aux_sym_contains_statement_token1] = ACTIONS(4499), - [aux_sym_use_statement_token1] = ACTIONS(4499), - [aux_sym_use_statement_token2] = ACTIONS(4499), - [aux_sym_implicit_statement_token1] = ACTIONS(4499), - [aux_sym_implicit_statement_token3] = ACTIONS(4499), - [aux_sym_implicit_statement_token4] = ACTIONS(4499), - [aux_sym_save_statement_token1] = ACTIONS(4499), - [aux_sym_private_statement_token1] = ACTIONS(4499), - [aux_sym_public_statement_token1] = ACTIONS(4499), - [aux_sym_namelist_statement_token1] = ACTIONS(4499), - [aux_sym_common_statement_token1] = ACTIONS(4499), - [aux_sym_import_statement_token1] = ACTIONS(4499), - [aux_sym_derived_type_definition_token1] = ACTIONS(4499), - [aux_sym_abstract_specifier_token1] = ACTIONS(4499), - [aux_sym_procedure_attribute_token6] = ACTIONS(4499), - [aux_sym_variable_attributes_token1] = ACTIONS(4499), - [aux_sym_variable_attributes_token2] = ACTIONS(4499), - [aux_sym_variable_attributes_token3] = ACTIONS(4499), - [aux_sym_variable_attributes_token4] = ACTIONS(4499), - [aux_sym_variable_attributes_token5] = ACTIONS(4499), - [aux_sym__intrinsic_type_token1] = ACTIONS(4499), - [aux_sym__intrinsic_type_token2] = ACTIONS(4499), - [aux_sym__intrinsic_type_token3] = ACTIONS(4499), - [aux_sym__intrinsic_type_token4] = ACTIONS(4499), - [aux_sym__intrinsic_type_token6] = ACTIONS(4499), - [aux_sym__intrinsic_type_token7] = ACTIONS(4499), - [aux_sym__intrinsic_type_token8] = ACTIONS(4499), - [aux_sym__intrinsic_type_token9] = ACTIONS(4499), - [aux_sym__intrinsic_type_token10] = ACTIONS(4499), - [aux_sym_derived_type_token1] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4499), - [aux_sym_type_qualifier_token1] = ACTIONS(4499), - [aux_sym_type_qualifier_token2] = ACTIONS(4499), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4499), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4499), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4499), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4499), - [aux_sym_equivalence_statement_token1] = ACTIONS(4499), - [anon_sym_SEMI] = ACTIONS(4501), - [aux_sym_stop_statement_token1] = ACTIONS(4499), - [aux_sym_stop_statement_token2] = ACTIONS(4499), - [aux_sym_subroutine_call_token1] = ACTIONS(4499), - [aux_sym_keyword_statement_token1] = ACTIONS(4499), - [aux_sym_keyword_statement_token2] = ACTIONS(4499), - [aux_sym_keyword_statement_token3] = ACTIONS(4499), - [aux_sym_keyword_statement_token4] = ACTIONS(4499), - [aux_sym_keyword_statement_token6] = ACTIONS(4499), - [aux_sym_keyword_statement_token7] = ACTIONS(4499), - [aux_sym_include_statement_token1] = ACTIONS(4499), - [aux_sym_data_statement_token1] = ACTIONS(4499), - [aux_sym_do_loop_statement_token1] = ACTIONS(4499), - [aux_sym__inline_if_statement_token1] = ACTIONS(4499), - [aux_sym_end_if_statement_token1] = ACTIONS(4499), - [aux_sym_elseif_clause_token2] = ACTIONS(4499), - [aux_sym__inline_where_statement_token1] = ACTIONS(4499), - [aux_sym__forall_control_expression_token1] = ACTIONS(4499), - [aux_sym_select_case_statement_token1] = ACTIONS(4499), - [aux_sym_select_case_statement_token3] = ACTIONS(4499), - [aux_sym_select_type_statement_token1] = ACTIONS(4499), - [aux_sym_select_rank_statement_token2] = ACTIONS(4499), - [aux_sym_block_construct_token1] = ACTIONS(4499), - [aux_sym_associate_statement_token1] = ACTIONS(4499), - [aux_sym_format_statement_token1] = ACTIONS(4499), - [aux_sym_print_statement_token1] = ACTIONS(4499), - [aux_sym_open_statement_token1] = ACTIONS(4499), - [aux_sym_close_statement_token1] = ACTIONS(4499), - [aux_sym_inquire_statement_token1] = ACTIONS(4499), - [aux_sym_enum_statement_token1] = ACTIONS(4499), - [aux_sym_file_position_statement_token1] = ACTIONS(4499), - [aux_sym_file_position_statement_token2] = ACTIONS(4499), - [aux_sym_file_position_statement_token3] = ACTIONS(4499), - [aux_sym_file_position_statement_token4] = ACTIONS(4499), - [aux_sym_allocate_statement_token1] = ACTIONS(4499), - [aux_sym_entry_statement_token1] = ACTIONS(4499), - [aux_sym_logical_expression_token5] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4499), - [anon_sym_LPAREN_SLASH] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [aux_sym_boolean_literal_token1] = ACTIONS(4501), - [aux_sym_boolean_literal_token2] = ACTIONS(4501), - [aux_sym_null_literal_token1] = ACTIONS(4499), - [aux_sym_coarray_statement_token1] = ACTIONS(4499), - [aux_sym_coarray_statement_token2] = ACTIONS(4499), - [aux_sym_coarray_statement_token6] = ACTIONS(4499), - [aux_sym_coarray_statement_token8] = ACTIONS(4499), - [aux_sym_coarray_statement_token11] = ACTIONS(4499), - [aux_sym_coarray_statement_token12] = ACTIONS(4499), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4499), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4499), - [aux_sym_identifier_token1] = ACTIONS(4499), + [aux_sym_program_statement_token1] = ACTIONS(4427), + [aux_sym_end_program_statement_token1] = ACTIONS(4427), + [aux_sym_end_program_statement_token2] = ACTIONS(4427), + [aux_sym_module_statement_token1] = ACTIONS(4427), + [aux_sym_submodule_statement_token1] = ACTIONS(4427), + [aux_sym_interface_statement_token1] = ACTIONS(4427), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4427), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4427), + [aux_sym_subroutine_statement_token1] = ACTIONS(4427), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4427), + [aux_sym_function_statement_token1] = ACTIONS(4427), + [aux_sym_language_binding_token1] = ACTIONS(4427), + [aux_sym_procedure_attributes_token1] = ACTIONS(4427), + [aux_sym_procedure_attributes_token3] = ACTIONS(4427), + [aux_sym_contains_statement_token1] = ACTIONS(4427), + [aux_sym_use_statement_token1] = ACTIONS(4427), + [aux_sym_use_statement_token2] = ACTIONS(4427), + [aux_sym_implicit_statement_token1] = ACTIONS(4427), + [aux_sym_implicit_statement_token3] = ACTIONS(4427), + [aux_sym_implicit_statement_token4] = ACTIONS(4427), + [aux_sym_save_statement_token1] = ACTIONS(4427), + [aux_sym_private_statement_token1] = ACTIONS(4427), + [aux_sym_public_statement_token1] = ACTIONS(4427), + [aux_sym_namelist_statement_token1] = ACTIONS(4427), + [aux_sym_common_statement_token1] = ACTIONS(4427), + [aux_sym_import_statement_token1] = ACTIONS(4427), + [aux_sym_derived_type_definition_token1] = ACTIONS(4427), + [aux_sym_abstract_specifier_token1] = ACTIONS(4427), + [aux_sym_procedure_attribute_token6] = ACTIONS(4427), + [aux_sym_variable_attributes_token1] = ACTIONS(4427), + [aux_sym_variable_attributes_token2] = ACTIONS(4427), + [aux_sym_variable_attributes_token3] = ACTIONS(4427), + [aux_sym_variable_attributes_token4] = ACTIONS(4427), + [aux_sym_variable_attributes_token5] = ACTIONS(4427), + [aux_sym__intrinsic_type_token1] = ACTIONS(4427), + [aux_sym__intrinsic_type_token2] = ACTIONS(4427), + [aux_sym__intrinsic_type_token3] = ACTIONS(4427), + [aux_sym__intrinsic_type_token4] = ACTIONS(4427), + [aux_sym__intrinsic_type_token6] = ACTIONS(4427), + [aux_sym__intrinsic_type_token7] = ACTIONS(4427), + [aux_sym__intrinsic_type_token8] = ACTIONS(4427), + [aux_sym__intrinsic_type_token9] = ACTIONS(4427), + [aux_sym__intrinsic_type_token10] = ACTIONS(4427), + [aux_sym_derived_type_token1] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4427), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4427), + [aux_sym_type_qualifier_token1] = ACTIONS(4427), + [aux_sym_type_qualifier_token2] = ACTIONS(4427), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4427), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4427), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4427), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4427), + [aux_sym_equivalence_statement_token1] = ACTIONS(4427), + [anon_sym_SEMI] = ACTIONS(4429), + [aux_sym_stop_statement_token1] = ACTIONS(4427), + [aux_sym_stop_statement_token2] = ACTIONS(4427), + [aux_sym_subroutine_call_token1] = ACTIONS(4427), + [aux_sym_keyword_statement_token1] = ACTIONS(4427), + [aux_sym_keyword_statement_token2] = ACTIONS(4427), + [aux_sym_keyword_statement_token3] = ACTIONS(4427), + [aux_sym_keyword_statement_token4] = ACTIONS(4427), + [aux_sym_keyword_statement_token6] = ACTIONS(4427), + [aux_sym_keyword_statement_token7] = ACTIONS(4427), + [aux_sym_include_statement_token1] = ACTIONS(4427), + [aux_sym_data_statement_token1] = ACTIONS(4427), + [aux_sym_do_loop_statement_token1] = ACTIONS(4427), + [aux_sym__inline_if_statement_token1] = ACTIONS(4427), + [aux_sym_end_if_statement_token1] = ACTIONS(4427), + [aux_sym_elseif_clause_token2] = ACTIONS(4427), + [aux_sym__inline_where_statement_token1] = ACTIONS(4427), + [aux_sym__forall_control_expression_token1] = ACTIONS(4427), + [aux_sym_select_case_statement_token1] = ACTIONS(4427), + [aux_sym_select_case_statement_token3] = ACTIONS(4427), + [aux_sym_select_type_statement_token1] = ACTIONS(4427), + [aux_sym_select_rank_statement_token2] = ACTIONS(4427), + [aux_sym_block_construct_token1] = ACTIONS(4427), + [aux_sym_associate_statement_token1] = ACTIONS(4427), + [aux_sym_format_statement_token1] = ACTIONS(4427), + [aux_sym_print_statement_token1] = ACTIONS(4427), + [aux_sym_open_statement_token1] = ACTIONS(4427), + [aux_sym_close_statement_token1] = ACTIONS(4427), + [aux_sym_inquire_statement_token1] = ACTIONS(4427), + [aux_sym_enum_statement_token1] = ACTIONS(4427), + [aux_sym_file_position_statement_token1] = ACTIONS(4427), + [aux_sym_file_position_statement_token2] = ACTIONS(4427), + [aux_sym_file_position_statement_token3] = ACTIONS(4427), + [aux_sym_file_position_statement_token4] = ACTIONS(4427), + [aux_sym_allocate_statement_token1] = ACTIONS(4427), + [aux_sym_entry_statement_token1] = ACTIONS(4427), + [aux_sym_logical_expression_token5] = ACTIONS(4429), + [anon_sym_DOT] = ACTIONS(4427), + [anon_sym_LPAREN_SLASH] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4429), + [aux_sym_boolean_literal_token1] = ACTIONS(4429), + [aux_sym_boolean_literal_token2] = ACTIONS(4429), + [aux_sym_null_literal_token1] = ACTIONS(4427), + [aux_sym_coarray_statement_token1] = ACTIONS(4427), + [aux_sym_coarray_statement_token2] = ACTIONS(4427), + [aux_sym_coarray_statement_token6] = ACTIONS(4427), + [aux_sym_coarray_statement_token8] = ACTIONS(4427), + [aux_sym_coarray_statement_token11] = ACTIONS(4427), + [aux_sym_coarray_statement_token12] = ACTIONS(4427), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4427), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4427), + [aux_sym_identifier_token1] = ACTIONS(4427), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4501), - [sym__float_literal] = ACTIONS(4501), - [sym__boz_literal] = ACTIONS(4501), - [sym__string_literal] = ACTIONS(4501), - [sym__string_literal_kind] = ACTIONS(4501), + [sym__integer_literal] = ACTIONS(4429), + [sym__float_literal] = ACTIONS(4429), + [sym__boz_literal] = ACTIONS(4429), + [sym__string_literal] = ACTIONS(4429), + [sym__string_literal_kind] = ACTIONS(4429), }, - [1051] = { - [aux_sym_preproc_include_token1] = ACTIONS(4591), - [aux_sym_preproc_def_token1] = ACTIONS(4591), - [aux_sym_preproc_if_token1] = ACTIONS(4591), - [aux_sym_preproc_if_token2] = ACTIONS(4591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4591), - [sym_preproc_directive] = ACTIONS(4591), - [anon_sym_LPAREN2] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), + [1030] = { + [ts_builtin_sym_end] = ACTIONS(4585), + [aux_sym_preproc_include_token1] = ACTIONS(4583), + [aux_sym_preproc_def_token1] = ACTIONS(4583), + [aux_sym_preproc_if_token1] = ACTIONS(4583), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), + [sym_preproc_directive] = ACTIONS(4583), + [anon_sym_LPAREN2] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4591), - [aux_sym_end_program_statement_token1] = ACTIONS(4591), - [aux_sym_end_program_statement_token2] = ACTIONS(4591), - [aux_sym_module_statement_token1] = ACTIONS(4591), - [aux_sym_submodule_statement_token1] = ACTIONS(4591), - [aux_sym_interface_statement_token1] = ACTIONS(4591), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4591), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4591), - [aux_sym_subroutine_statement_token1] = ACTIONS(4591), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4591), - [aux_sym_function_statement_token1] = ACTIONS(4591), - [aux_sym_language_binding_token1] = ACTIONS(4591), - [aux_sym_procedure_attributes_token1] = ACTIONS(4591), - [aux_sym_procedure_attributes_token3] = ACTIONS(4591), - [aux_sym_contains_statement_token1] = ACTIONS(4591), - [aux_sym_use_statement_token1] = ACTIONS(4591), - [aux_sym_use_statement_token2] = ACTIONS(4591), - [aux_sym_implicit_statement_token1] = ACTIONS(4591), - [aux_sym_implicit_statement_token3] = ACTIONS(4591), - [aux_sym_implicit_statement_token4] = ACTIONS(4591), - [aux_sym_save_statement_token1] = ACTIONS(4591), - [aux_sym_private_statement_token1] = ACTIONS(4591), - [aux_sym_public_statement_token1] = ACTIONS(4591), - [aux_sym_namelist_statement_token1] = ACTIONS(4591), - [aux_sym_common_statement_token1] = ACTIONS(4591), - [aux_sym_import_statement_token1] = ACTIONS(4591), - [aux_sym_derived_type_definition_token1] = ACTIONS(4591), - [aux_sym_abstract_specifier_token1] = ACTIONS(4591), - [aux_sym_procedure_attribute_token6] = ACTIONS(4591), - [aux_sym_variable_attributes_token1] = ACTIONS(4591), - [aux_sym_variable_attributes_token2] = ACTIONS(4591), - [aux_sym_variable_attributes_token3] = ACTIONS(4591), - [aux_sym_variable_attributes_token4] = ACTIONS(4591), - [aux_sym_variable_attributes_token5] = ACTIONS(4591), - [aux_sym__intrinsic_type_token1] = ACTIONS(4591), - [aux_sym__intrinsic_type_token2] = ACTIONS(4591), - [aux_sym__intrinsic_type_token3] = ACTIONS(4591), - [aux_sym__intrinsic_type_token4] = ACTIONS(4591), - [aux_sym__intrinsic_type_token6] = ACTIONS(4591), - [aux_sym__intrinsic_type_token7] = ACTIONS(4591), - [aux_sym__intrinsic_type_token8] = ACTIONS(4591), - [aux_sym__intrinsic_type_token9] = ACTIONS(4591), - [aux_sym__intrinsic_type_token10] = ACTIONS(4591), - [aux_sym_derived_type_token1] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4591), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4591), - [aux_sym_type_qualifier_token1] = ACTIONS(4591), - [aux_sym_type_qualifier_token2] = ACTIONS(4591), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4591), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4591), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4591), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4591), - [aux_sym_equivalence_statement_token1] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4593), - [aux_sym_stop_statement_token1] = ACTIONS(4591), - [aux_sym_stop_statement_token2] = ACTIONS(4591), - [aux_sym_subroutine_call_token1] = ACTIONS(4591), - [aux_sym_keyword_statement_token1] = ACTIONS(4591), - [aux_sym_keyword_statement_token2] = ACTIONS(4591), - [aux_sym_keyword_statement_token3] = ACTIONS(4591), - [aux_sym_keyword_statement_token4] = ACTIONS(4591), - [aux_sym_keyword_statement_token6] = ACTIONS(4591), - [aux_sym_keyword_statement_token7] = ACTIONS(4591), - [aux_sym_include_statement_token1] = ACTIONS(4591), - [aux_sym_data_statement_token1] = ACTIONS(4591), - [aux_sym_do_loop_statement_token1] = ACTIONS(4591), - [aux_sym__inline_if_statement_token1] = ACTIONS(4591), - [aux_sym_end_if_statement_token1] = ACTIONS(4591), - [aux_sym_elseif_clause_token2] = ACTIONS(4591), - [aux_sym__inline_where_statement_token1] = ACTIONS(4591), - [aux_sym__forall_control_expression_token1] = ACTIONS(4591), - [aux_sym_select_case_statement_token1] = ACTIONS(4591), - [aux_sym_select_case_statement_token3] = ACTIONS(4591), - [aux_sym_select_type_statement_token1] = ACTIONS(4591), - [aux_sym_select_rank_statement_token2] = ACTIONS(4591), - [aux_sym_block_construct_token1] = ACTIONS(4591), - [aux_sym_associate_statement_token1] = ACTIONS(4591), - [aux_sym_format_statement_token1] = ACTIONS(4591), - [aux_sym_print_statement_token1] = ACTIONS(4591), - [aux_sym_open_statement_token1] = ACTIONS(4591), - [aux_sym_close_statement_token1] = ACTIONS(4591), - [aux_sym_inquire_statement_token1] = ACTIONS(4591), - [aux_sym_enum_statement_token1] = ACTIONS(4591), - [aux_sym_file_position_statement_token1] = ACTIONS(4591), - [aux_sym_file_position_statement_token2] = ACTIONS(4591), - [aux_sym_file_position_statement_token3] = ACTIONS(4591), - [aux_sym_file_position_statement_token4] = ACTIONS(4591), - [aux_sym_allocate_statement_token1] = ACTIONS(4591), - [aux_sym_entry_statement_token1] = ACTIONS(4591), - [aux_sym_logical_expression_token5] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4591), - [anon_sym_LPAREN_SLASH] = ACTIONS(4593), - [anon_sym_LBRACK] = ACTIONS(4593), - [aux_sym_boolean_literal_token1] = ACTIONS(4593), - [aux_sym_boolean_literal_token2] = ACTIONS(4593), - [aux_sym_null_literal_token1] = ACTIONS(4591), - [aux_sym_coarray_statement_token1] = ACTIONS(4591), - [aux_sym_coarray_statement_token2] = ACTIONS(4591), - [aux_sym_coarray_statement_token6] = ACTIONS(4591), - [aux_sym_coarray_statement_token8] = ACTIONS(4591), - [aux_sym_coarray_statement_token11] = ACTIONS(4591), - [aux_sym_coarray_statement_token12] = ACTIONS(4591), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4591), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4591), - [aux_sym_identifier_token1] = ACTIONS(4591), + [aux_sym_program_statement_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token2] = ACTIONS(4583), + [aux_sym_module_statement_token1] = ACTIONS(4583), + [aux_sym_submodule_statement_token1] = ACTIONS(4583), + [aux_sym_interface_statement_token1] = ACTIONS(4583), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), + [aux_sym_subroutine_statement_token1] = ACTIONS(4583), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), + [aux_sym_function_statement_token1] = ACTIONS(4583), + [aux_sym_language_binding_token1] = ACTIONS(4583), + [aux_sym_procedure_attributes_token1] = ACTIONS(4583), + [aux_sym_procedure_attributes_token3] = ACTIONS(4583), + [aux_sym_contains_statement_token1] = ACTIONS(4583), + [aux_sym_use_statement_token1] = ACTIONS(4583), + [aux_sym_use_statement_token2] = ACTIONS(4583), + [aux_sym_implicit_statement_token1] = ACTIONS(4583), + [aux_sym_implicit_statement_token3] = ACTIONS(4583), + [aux_sym_implicit_statement_token4] = ACTIONS(4583), + [aux_sym_save_statement_token1] = ACTIONS(4583), + [aux_sym_private_statement_token1] = ACTIONS(4583), + [aux_sym_public_statement_token1] = ACTIONS(4583), + [aux_sym_namelist_statement_token1] = ACTIONS(4583), + [aux_sym_common_statement_token1] = ACTIONS(4583), + [aux_sym_import_statement_token1] = ACTIONS(4583), + [aux_sym_derived_type_definition_token1] = ACTIONS(4583), + [aux_sym_abstract_specifier_token1] = ACTIONS(4583), + [aux_sym_procedure_attribute_token6] = ACTIONS(4583), + [aux_sym_variable_attributes_token1] = ACTIONS(4583), + [aux_sym_variable_attributes_token2] = ACTIONS(4583), + [aux_sym_variable_attributes_token3] = ACTIONS(4583), + [aux_sym_variable_attributes_token4] = ACTIONS(4583), + [aux_sym_variable_attributes_token5] = ACTIONS(4583), + [aux_sym__intrinsic_type_token1] = ACTIONS(4583), + [aux_sym__intrinsic_type_token2] = ACTIONS(4583), + [aux_sym__intrinsic_type_token3] = ACTIONS(4583), + [aux_sym__intrinsic_type_token4] = ACTIONS(4583), + [aux_sym__intrinsic_type_token6] = ACTIONS(4583), + [aux_sym__intrinsic_type_token7] = ACTIONS(4583), + [aux_sym__intrinsic_type_token8] = ACTIONS(4583), + [aux_sym__intrinsic_type_token9] = ACTIONS(4583), + [aux_sym__intrinsic_type_token10] = ACTIONS(4583), + [aux_sym_derived_type_token1] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), + [aux_sym_type_qualifier_token1] = ACTIONS(4583), + [aux_sym_type_qualifier_token2] = ACTIONS(4583), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4583), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4583), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4583), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4583), + [aux_sym_equivalence_statement_token1] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4585), + [aux_sym_stop_statement_token1] = ACTIONS(4583), + [aux_sym_stop_statement_token2] = ACTIONS(4583), + [aux_sym_subroutine_call_token1] = ACTIONS(4583), + [aux_sym_keyword_statement_token1] = ACTIONS(4583), + [aux_sym_keyword_statement_token2] = ACTIONS(4583), + [aux_sym_keyword_statement_token3] = ACTIONS(4583), + [aux_sym_keyword_statement_token4] = ACTIONS(4583), + [aux_sym_keyword_statement_token6] = ACTIONS(4583), + [aux_sym_keyword_statement_token7] = ACTIONS(4583), + [aux_sym_include_statement_token1] = ACTIONS(4583), + [aux_sym_data_statement_token1] = ACTIONS(4583), + [aux_sym_do_loop_statement_token1] = ACTIONS(4583), + [aux_sym__inline_if_statement_token1] = ACTIONS(4583), + [aux_sym_end_if_statement_token1] = ACTIONS(4583), + [aux_sym_elseif_clause_token2] = ACTIONS(4583), + [aux_sym__inline_where_statement_token1] = ACTIONS(4583), + [aux_sym__forall_control_expression_token1] = ACTIONS(4583), + [aux_sym_select_case_statement_token1] = ACTIONS(4583), + [aux_sym_select_case_statement_token3] = ACTIONS(4583), + [aux_sym_select_type_statement_token1] = ACTIONS(4583), + [aux_sym_select_rank_statement_token2] = ACTIONS(4583), + [aux_sym_block_construct_token1] = ACTIONS(4583), + [aux_sym_associate_statement_token1] = ACTIONS(4583), + [aux_sym_format_statement_token1] = ACTIONS(4583), + [aux_sym_print_statement_token1] = ACTIONS(4583), + [aux_sym_open_statement_token1] = ACTIONS(4583), + [aux_sym_close_statement_token1] = ACTIONS(4583), + [aux_sym_inquire_statement_token1] = ACTIONS(4583), + [aux_sym_enum_statement_token1] = ACTIONS(4583), + [aux_sym_file_position_statement_token1] = ACTIONS(4583), + [aux_sym_file_position_statement_token2] = ACTIONS(4583), + [aux_sym_file_position_statement_token3] = ACTIONS(4583), + [aux_sym_file_position_statement_token4] = ACTIONS(4583), + [aux_sym_allocate_statement_token1] = ACTIONS(4583), + [aux_sym_entry_statement_token1] = ACTIONS(4583), + [aux_sym_logical_expression_token5] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_LPAREN_SLASH] = ACTIONS(4585), + [anon_sym_LBRACK] = ACTIONS(4585), + [aux_sym_boolean_literal_token1] = ACTIONS(4585), + [aux_sym_boolean_literal_token2] = ACTIONS(4585), + [aux_sym_null_literal_token1] = ACTIONS(4583), + [aux_sym_coarray_statement_token1] = ACTIONS(4583), + [aux_sym_coarray_statement_token2] = ACTIONS(4583), + [aux_sym_coarray_statement_token6] = ACTIONS(4583), + [aux_sym_coarray_statement_token8] = ACTIONS(4583), + [aux_sym_coarray_statement_token11] = ACTIONS(4583), + [aux_sym_coarray_statement_token12] = ACTIONS(4583), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), + [aux_sym_identifier_token1] = ACTIONS(4583), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4593), - [sym__float_literal] = ACTIONS(4593), - [sym__boz_literal] = ACTIONS(4593), - [sym__string_literal] = ACTIONS(4593), - [sym__string_literal_kind] = ACTIONS(4593), + [sym__integer_literal] = ACTIONS(4585), + [sym__float_literal] = ACTIONS(4585), + [sym__boz_literal] = ACTIONS(4585), + [sym__string_literal] = ACTIONS(4585), + [sym__string_literal_kind] = ACTIONS(4585), }, - [1052] = { - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [aux_sym_preproc_if_token1] = ACTIONS(368), - [aux_sym_preproc_if_token2] = ACTIONS(368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(368), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_LPAREN2] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(674), + [1031] = { + [aux_sym_preproc_include_token1] = ACTIONS(4431), + [aux_sym_preproc_def_token1] = ACTIONS(4431), + [aux_sym_preproc_if_token1] = ACTIONS(4431), + [aux_sym_preproc_if_token2] = ACTIONS(4431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4431), + [sym_preproc_directive] = ACTIONS(4431), + [anon_sym_LPAREN2] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(368), - [aux_sym_end_program_statement_token1] = ACTIONS(368), - [aux_sym_end_program_statement_token2] = ACTIONS(368), - [aux_sym_module_statement_token1] = ACTIONS(368), - [aux_sym_submodule_statement_token1] = ACTIONS(368), - [aux_sym_interface_statement_token1] = ACTIONS(368), - [aux_sym_defined_io_procedure_token1] = ACTIONS(368), - [aux_sym_defined_io_procedure_token2] = ACTIONS(368), - [aux_sym_subroutine_statement_token1] = ACTIONS(368), - [aux_sym_module_procedure_statement_token1] = ACTIONS(368), - [aux_sym_function_statement_token1] = ACTIONS(368), - [aux_sym_language_binding_token1] = ACTIONS(368), - [aux_sym_procedure_attributes_token1] = ACTIONS(368), - [aux_sym_procedure_attributes_token3] = ACTIONS(368), - [aux_sym_contains_statement_token1] = ACTIONS(368), - [aux_sym_use_statement_token1] = ACTIONS(368), - [aux_sym_use_statement_token2] = ACTIONS(368), - [aux_sym_implicit_statement_token1] = ACTIONS(368), - [aux_sym_implicit_statement_token3] = ACTIONS(368), - [aux_sym_implicit_statement_token4] = ACTIONS(368), - [aux_sym_save_statement_token1] = ACTIONS(368), - [aux_sym_private_statement_token1] = ACTIONS(368), - [aux_sym_public_statement_token1] = ACTIONS(368), - [aux_sym_namelist_statement_token1] = ACTIONS(368), - [aux_sym_common_statement_token1] = ACTIONS(368), - [aux_sym_import_statement_token1] = ACTIONS(368), - [aux_sym_derived_type_definition_token1] = ACTIONS(368), - [aux_sym_abstract_specifier_token1] = ACTIONS(368), - [aux_sym_procedure_attribute_token6] = ACTIONS(368), - [aux_sym_variable_attributes_token1] = ACTIONS(368), - [aux_sym_variable_attributes_token2] = ACTIONS(368), - [aux_sym_variable_attributes_token3] = ACTIONS(368), - [aux_sym_variable_attributes_token4] = ACTIONS(368), - [aux_sym_variable_attributes_token5] = ACTIONS(368), - [aux_sym__intrinsic_type_token1] = ACTIONS(368), - [aux_sym__intrinsic_type_token2] = ACTIONS(368), - [aux_sym__intrinsic_type_token3] = ACTIONS(368), - [aux_sym__intrinsic_type_token4] = ACTIONS(368), - [aux_sym__intrinsic_type_token6] = ACTIONS(368), - [aux_sym__intrinsic_type_token7] = ACTIONS(368), - [aux_sym__intrinsic_type_token8] = ACTIONS(368), - [aux_sym__intrinsic_type_token9] = ACTIONS(368), - [aux_sym__intrinsic_type_token10] = ACTIONS(368), - [aux_sym_derived_type_token1] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(368), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(368), - [aux_sym_type_qualifier_token1] = ACTIONS(368), - [aux_sym_type_qualifier_token2] = ACTIONS(368), - [aux_sym_procedure_qualifier_token1] = ACTIONS(368), - [aux_sym_procedure_qualifier_token2] = ACTIONS(368), - [aux_sym_procedure_qualifier_token3] = ACTIONS(368), - [aux_sym_procedure_qualifier_token4] = ACTIONS(368), - [aux_sym_equivalence_statement_token1] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(674), - [aux_sym_stop_statement_token1] = ACTIONS(368), - [aux_sym_stop_statement_token2] = ACTIONS(368), - [aux_sym_subroutine_call_token1] = ACTIONS(368), - [aux_sym_keyword_statement_token1] = ACTIONS(368), - [aux_sym_keyword_statement_token2] = ACTIONS(368), - [aux_sym_keyword_statement_token3] = ACTIONS(368), - [aux_sym_keyword_statement_token4] = ACTIONS(368), - [aux_sym_keyword_statement_token6] = ACTIONS(368), - [aux_sym_keyword_statement_token7] = ACTIONS(368), - [aux_sym_include_statement_token1] = ACTIONS(368), - [aux_sym_data_statement_token1] = ACTIONS(368), - [aux_sym_do_loop_statement_token1] = ACTIONS(368), - [aux_sym__inline_if_statement_token1] = ACTIONS(368), - [aux_sym_end_if_statement_token1] = ACTIONS(368), - [aux_sym_elseif_clause_token2] = ACTIONS(368), - [aux_sym__inline_where_statement_token1] = ACTIONS(368), - [aux_sym__forall_control_expression_token1] = ACTIONS(368), - [aux_sym_select_case_statement_token1] = ACTIONS(368), - [aux_sym_select_case_statement_token3] = ACTIONS(368), - [aux_sym_select_type_statement_token1] = ACTIONS(368), - [aux_sym_select_rank_statement_token2] = ACTIONS(368), - [aux_sym_block_construct_token1] = ACTIONS(368), - [aux_sym_associate_statement_token1] = ACTIONS(368), - [aux_sym_format_statement_token1] = ACTIONS(368), - [aux_sym_print_statement_token1] = ACTIONS(368), - [aux_sym_open_statement_token1] = ACTIONS(368), - [aux_sym_close_statement_token1] = ACTIONS(368), - [aux_sym_inquire_statement_token1] = ACTIONS(368), - [aux_sym_enum_statement_token1] = ACTIONS(368), - [aux_sym_file_position_statement_token1] = ACTIONS(368), - [aux_sym_file_position_statement_token2] = ACTIONS(368), - [aux_sym_file_position_statement_token3] = ACTIONS(368), - [aux_sym_file_position_statement_token4] = ACTIONS(368), - [aux_sym_allocate_statement_token1] = ACTIONS(368), - [aux_sym_entry_statement_token1] = ACTIONS(368), - [aux_sym_logical_expression_token5] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_LPAREN_SLASH] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(674), - [aux_sym_boolean_literal_token1] = ACTIONS(674), - [aux_sym_boolean_literal_token2] = ACTIONS(674), - [aux_sym_null_literal_token1] = ACTIONS(368), - [aux_sym_coarray_statement_token1] = ACTIONS(368), - [aux_sym_coarray_statement_token2] = ACTIONS(368), - [aux_sym_coarray_statement_token6] = ACTIONS(368), - [aux_sym_coarray_statement_token8] = ACTIONS(368), - [aux_sym_coarray_statement_token11] = ACTIONS(368), - [aux_sym_coarray_statement_token12] = ACTIONS(368), - [aux_sym_coarray_team_statement_token1] = ACTIONS(368), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(368), - [aux_sym_identifier_token1] = ACTIONS(368), + [aux_sym_program_statement_token1] = ACTIONS(4431), + [aux_sym_end_program_statement_token1] = ACTIONS(4431), + [aux_sym_end_program_statement_token2] = ACTIONS(4431), + [aux_sym_module_statement_token1] = ACTIONS(4431), + [aux_sym_submodule_statement_token1] = ACTIONS(4431), + [aux_sym_interface_statement_token1] = ACTIONS(4431), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4431), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4431), + [aux_sym_subroutine_statement_token1] = ACTIONS(4431), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4431), + [aux_sym_function_statement_token1] = ACTIONS(4431), + [aux_sym_language_binding_token1] = ACTIONS(4431), + [aux_sym_procedure_attributes_token1] = ACTIONS(4431), + [aux_sym_procedure_attributes_token3] = ACTIONS(4431), + [aux_sym_contains_statement_token1] = ACTIONS(4431), + [aux_sym_use_statement_token1] = ACTIONS(4431), + [aux_sym_use_statement_token2] = ACTIONS(4431), + [aux_sym_implicit_statement_token1] = ACTIONS(4431), + [aux_sym_implicit_statement_token3] = ACTIONS(4431), + [aux_sym_implicit_statement_token4] = ACTIONS(4431), + [aux_sym_save_statement_token1] = ACTIONS(4431), + [aux_sym_private_statement_token1] = ACTIONS(4431), + [aux_sym_public_statement_token1] = ACTIONS(4431), + [aux_sym_namelist_statement_token1] = ACTIONS(4431), + [aux_sym_common_statement_token1] = ACTIONS(4431), + [aux_sym_import_statement_token1] = ACTIONS(4431), + [aux_sym_derived_type_definition_token1] = ACTIONS(4431), + [aux_sym_abstract_specifier_token1] = ACTIONS(4431), + [aux_sym_procedure_attribute_token6] = ACTIONS(4431), + [aux_sym_variable_attributes_token1] = ACTIONS(4431), + [aux_sym_variable_attributes_token2] = ACTIONS(4431), + [aux_sym_variable_attributes_token3] = ACTIONS(4431), + [aux_sym_variable_attributes_token4] = ACTIONS(4431), + [aux_sym_variable_attributes_token5] = ACTIONS(4431), + [aux_sym__intrinsic_type_token1] = ACTIONS(4431), + [aux_sym__intrinsic_type_token2] = ACTIONS(4431), + [aux_sym__intrinsic_type_token3] = ACTIONS(4431), + [aux_sym__intrinsic_type_token4] = ACTIONS(4431), + [aux_sym__intrinsic_type_token6] = ACTIONS(4431), + [aux_sym__intrinsic_type_token7] = ACTIONS(4431), + [aux_sym__intrinsic_type_token8] = ACTIONS(4431), + [aux_sym__intrinsic_type_token9] = ACTIONS(4431), + [aux_sym__intrinsic_type_token10] = ACTIONS(4431), + [aux_sym_derived_type_token1] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4431), + [aux_sym_type_qualifier_token1] = ACTIONS(4431), + [aux_sym_type_qualifier_token2] = ACTIONS(4431), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4431), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4431), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4431), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4431), + [aux_sym_equivalence_statement_token1] = ACTIONS(4431), + [anon_sym_SEMI] = ACTIONS(4433), + [aux_sym_stop_statement_token1] = ACTIONS(4431), + [aux_sym_stop_statement_token2] = ACTIONS(4431), + [aux_sym_subroutine_call_token1] = ACTIONS(4431), + [aux_sym_keyword_statement_token1] = ACTIONS(4431), + [aux_sym_keyword_statement_token2] = ACTIONS(4431), + [aux_sym_keyword_statement_token3] = ACTIONS(4431), + [aux_sym_keyword_statement_token4] = ACTIONS(4431), + [aux_sym_keyword_statement_token6] = ACTIONS(4431), + [aux_sym_keyword_statement_token7] = ACTIONS(4431), + [aux_sym_include_statement_token1] = ACTIONS(4431), + [aux_sym_data_statement_token1] = ACTIONS(4431), + [aux_sym_do_loop_statement_token1] = ACTIONS(4431), + [aux_sym__inline_if_statement_token1] = ACTIONS(4431), + [aux_sym_end_if_statement_token1] = ACTIONS(4431), + [aux_sym_elseif_clause_token2] = ACTIONS(4431), + [aux_sym__inline_where_statement_token1] = ACTIONS(4431), + [aux_sym__forall_control_expression_token1] = ACTIONS(4431), + [aux_sym_select_case_statement_token1] = ACTIONS(4431), + [aux_sym_select_case_statement_token3] = ACTIONS(4431), + [aux_sym_select_type_statement_token1] = ACTIONS(4431), + [aux_sym_select_rank_statement_token2] = ACTIONS(4431), + [aux_sym_block_construct_token1] = ACTIONS(4431), + [aux_sym_associate_statement_token1] = ACTIONS(4431), + [aux_sym_format_statement_token1] = ACTIONS(4431), + [aux_sym_print_statement_token1] = ACTIONS(4431), + [aux_sym_open_statement_token1] = ACTIONS(4431), + [aux_sym_close_statement_token1] = ACTIONS(4431), + [aux_sym_inquire_statement_token1] = ACTIONS(4431), + [aux_sym_enum_statement_token1] = ACTIONS(4431), + [aux_sym_file_position_statement_token1] = ACTIONS(4431), + [aux_sym_file_position_statement_token2] = ACTIONS(4431), + [aux_sym_file_position_statement_token3] = ACTIONS(4431), + [aux_sym_file_position_statement_token4] = ACTIONS(4431), + [aux_sym_allocate_statement_token1] = ACTIONS(4431), + [aux_sym_entry_statement_token1] = ACTIONS(4431), + [aux_sym_logical_expression_token5] = ACTIONS(4433), + [anon_sym_DOT] = ACTIONS(4431), + [anon_sym_LPAREN_SLASH] = ACTIONS(4433), + [anon_sym_LBRACK] = ACTIONS(4433), + [aux_sym_boolean_literal_token1] = ACTIONS(4433), + [aux_sym_boolean_literal_token2] = ACTIONS(4433), + [aux_sym_null_literal_token1] = ACTIONS(4431), + [aux_sym_coarray_statement_token1] = ACTIONS(4431), + [aux_sym_coarray_statement_token2] = ACTIONS(4431), + [aux_sym_coarray_statement_token6] = ACTIONS(4431), + [aux_sym_coarray_statement_token8] = ACTIONS(4431), + [aux_sym_coarray_statement_token11] = ACTIONS(4431), + [aux_sym_coarray_statement_token12] = ACTIONS(4431), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4431), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4431), + [aux_sym_identifier_token1] = ACTIONS(4431), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(674), - [sym__float_literal] = ACTIONS(674), - [sym__boz_literal] = ACTIONS(674), - [sym__string_literal] = ACTIONS(674), - [sym__string_literal_kind] = ACTIONS(674), + [sym__integer_literal] = ACTIONS(4433), + [sym__float_literal] = ACTIONS(4433), + [sym__boz_literal] = ACTIONS(4433), + [sym__string_literal] = ACTIONS(4433), + [sym__string_literal_kind] = ACTIONS(4433), }, - [1053] = { - [aux_sym_preproc_include_token1] = ACTIONS(4603), - [aux_sym_preproc_def_token1] = ACTIONS(4603), - [aux_sym_preproc_if_token1] = ACTIONS(4603), - [aux_sym_preproc_if_token2] = ACTIONS(4603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4603), - [sym_preproc_directive] = ACTIONS(4603), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_PLUS] = ACTIONS(4605), - [anon_sym_DASH] = ACTIONS(4605), + [1032] = { + [ts_builtin_sym_end] = ACTIONS(4589), + [aux_sym_preproc_include_token1] = ACTIONS(4587), + [aux_sym_preproc_def_token1] = ACTIONS(4587), + [aux_sym_preproc_if_token1] = ACTIONS(4587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), + [sym_preproc_directive] = ACTIONS(4587), + [anon_sym_LPAREN2] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4589), + [anon_sym_DASH] = ACTIONS(4589), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4603), - [aux_sym_end_program_statement_token1] = ACTIONS(4603), - [aux_sym_end_program_statement_token2] = ACTIONS(4603), - [aux_sym_module_statement_token1] = ACTIONS(4603), - [aux_sym_submodule_statement_token1] = ACTIONS(4603), - [aux_sym_interface_statement_token1] = ACTIONS(4603), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4603), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4603), - [aux_sym_subroutine_statement_token1] = ACTIONS(4603), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4603), - [aux_sym_function_statement_token1] = ACTIONS(4603), - [aux_sym_language_binding_token1] = ACTIONS(4603), - [aux_sym_procedure_attributes_token1] = ACTIONS(4603), - [aux_sym_procedure_attributes_token3] = ACTIONS(4603), - [aux_sym_contains_statement_token1] = ACTIONS(4603), - [aux_sym_use_statement_token1] = ACTIONS(4603), - [aux_sym_use_statement_token2] = ACTIONS(4603), - [aux_sym_implicit_statement_token1] = ACTIONS(4603), - [aux_sym_implicit_statement_token3] = ACTIONS(4603), - [aux_sym_implicit_statement_token4] = ACTIONS(4603), - [aux_sym_save_statement_token1] = ACTIONS(4603), - [aux_sym_private_statement_token1] = ACTIONS(4603), - [aux_sym_public_statement_token1] = ACTIONS(4603), - [aux_sym_namelist_statement_token1] = ACTIONS(4603), - [aux_sym_common_statement_token1] = ACTIONS(4603), - [aux_sym_import_statement_token1] = ACTIONS(4603), - [aux_sym_derived_type_definition_token1] = ACTIONS(4603), - [aux_sym_abstract_specifier_token1] = ACTIONS(4603), - [aux_sym_procedure_attribute_token6] = ACTIONS(4603), - [aux_sym_variable_attributes_token1] = ACTIONS(4603), - [aux_sym_variable_attributes_token2] = ACTIONS(4603), - [aux_sym_variable_attributes_token3] = ACTIONS(4603), - [aux_sym_variable_attributes_token4] = ACTIONS(4603), - [aux_sym_variable_attributes_token5] = ACTIONS(4603), - [aux_sym__intrinsic_type_token1] = ACTIONS(4603), - [aux_sym__intrinsic_type_token2] = ACTIONS(4603), - [aux_sym__intrinsic_type_token3] = ACTIONS(4603), - [aux_sym__intrinsic_type_token4] = ACTIONS(4603), - [aux_sym__intrinsic_type_token6] = ACTIONS(4603), - [aux_sym__intrinsic_type_token7] = ACTIONS(4603), - [aux_sym__intrinsic_type_token8] = ACTIONS(4603), - [aux_sym__intrinsic_type_token9] = ACTIONS(4603), - [aux_sym__intrinsic_type_token10] = ACTIONS(4603), - [aux_sym_derived_type_token1] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4603), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4603), - [aux_sym_type_qualifier_token1] = ACTIONS(4603), - [aux_sym_type_qualifier_token2] = ACTIONS(4603), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4603), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4603), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4603), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4603), - [aux_sym_equivalence_statement_token1] = ACTIONS(4603), - [anon_sym_SEMI] = ACTIONS(4605), - [aux_sym_stop_statement_token1] = ACTIONS(4603), - [aux_sym_stop_statement_token2] = ACTIONS(4603), - [aux_sym_subroutine_call_token1] = ACTIONS(4603), - [aux_sym_keyword_statement_token1] = ACTIONS(4603), - [aux_sym_keyword_statement_token2] = ACTIONS(4603), - [aux_sym_keyword_statement_token3] = ACTIONS(4603), - [aux_sym_keyword_statement_token4] = ACTIONS(4603), - [aux_sym_keyword_statement_token6] = ACTIONS(4603), - [aux_sym_keyword_statement_token7] = ACTIONS(4603), - [aux_sym_include_statement_token1] = ACTIONS(4603), - [aux_sym_data_statement_token1] = ACTIONS(4603), - [aux_sym_do_loop_statement_token1] = ACTIONS(4603), - [aux_sym__inline_if_statement_token1] = ACTIONS(4603), - [aux_sym_end_if_statement_token1] = ACTIONS(4603), - [aux_sym_elseif_clause_token2] = ACTIONS(4603), - [aux_sym__inline_where_statement_token1] = ACTIONS(4603), - [aux_sym__forall_control_expression_token1] = ACTIONS(4603), - [aux_sym_select_case_statement_token1] = ACTIONS(4603), - [aux_sym_select_case_statement_token3] = ACTIONS(4603), - [aux_sym_select_type_statement_token1] = ACTIONS(4603), - [aux_sym_select_rank_statement_token2] = ACTIONS(4603), - [aux_sym_block_construct_token1] = ACTIONS(4603), - [aux_sym_associate_statement_token1] = ACTIONS(4603), - [aux_sym_format_statement_token1] = ACTIONS(4603), - [aux_sym_print_statement_token1] = ACTIONS(4603), - [aux_sym_open_statement_token1] = ACTIONS(4603), - [aux_sym_close_statement_token1] = ACTIONS(4603), - [aux_sym_inquire_statement_token1] = ACTIONS(4603), - [aux_sym_enum_statement_token1] = ACTIONS(4603), - [aux_sym_file_position_statement_token1] = ACTIONS(4603), - [aux_sym_file_position_statement_token2] = ACTIONS(4603), - [aux_sym_file_position_statement_token3] = ACTIONS(4603), - [aux_sym_file_position_statement_token4] = ACTIONS(4603), - [aux_sym_allocate_statement_token1] = ACTIONS(4603), - [aux_sym_entry_statement_token1] = ACTIONS(4603), - [aux_sym_logical_expression_token5] = ACTIONS(4605), - [anon_sym_DOT] = ACTIONS(4603), - [anon_sym_LPAREN_SLASH] = ACTIONS(4605), - [anon_sym_LBRACK] = ACTIONS(4605), - [aux_sym_boolean_literal_token1] = ACTIONS(4605), - [aux_sym_boolean_literal_token2] = ACTIONS(4605), - [aux_sym_null_literal_token1] = ACTIONS(4603), - [aux_sym_coarray_statement_token1] = ACTIONS(4603), - [aux_sym_coarray_statement_token2] = ACTIONS(4603), - [aux_sym_coarray_statement_token6] = ACTIONS(4603), - [aux_sym_coarray_statement_token8] = ACTIONS(4603), - [aux_sym_coarray_statement_token11] = ACTIONS(4603), - [aux_sym_coarray_statement_token12] = ACTIONS(4603), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4603), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4603), - [aux_sym_identifier_token1] = ACTIONS(4603), + [aux_sym_program_statement_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token2] = ACTIONS(4587), + [aux_sym_module_statement_token1] = ACTIONS(4587), + [aux_sym_submodule_statement_token1] = ACTIONS(4587), + [aux_sym_interface_statement_token1] = ACTIONS(4587), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), + [aux_sym_subroutine_statement_token1] = ACTIONS(4587), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), + [aux_sym_function_statement_token1] = ACTIONS(4587), + [aux_sym_language_binding_token1] = ACTIONS(4587), + [aux_sym_procedure_attributes_token1] = ACTIONS(4587), + [aux_sym_procedure_attributes_token3] = ACTIONS(4587), + [aux_sym_contains_statement_token1] = ACTIONS(4587), + [aux_sym_use_statement_token1] = ACTIONS(4587), + [aux_sym_use_statement_token2] = ACTIONS(4587), + [aux_sym_implicit_statement_token1] = ACTIONS(4587), + [aux_sym_implicit_statement_token3] = ACTIONS(4587), + [aux_sym_implicit_statement_token4] = ACTIONS(4587), + [aux_sym_save_statement_token1] = ACTIONS(4587), + [aux_sym_private_statement_token1] = ACTIONS(4587), + [aux_sym_public_statement_token1] = ACTIONS(4587), + [aux_sym_namelist_statement_token1] = ACTIONS(4587), + [aux_sym_common_statement_token1] = ACTIONS(4587), + [aux_sym_import_statement_token1] = ACTIONS(4587), + [aux_sym_derived_type_definition_token1] = ACTIONS(4587), + [aux_sym_abstract_specifier_token1] = ACTIONS(4587), + [aux_sym_procedure_attribute_token6] = ACTIONS(4587), + [aux_sym_variable_attributes_token1] = ACTIONS(4587), + [aux_sym_variable_attributes_token2] = ACTIONS(4587), + [aux_sym_variable_attributes_token3] = ACTIONS(4587), + [aux_sym_variable_attributes_token4] = ACTIONS(4587), + [aux_sym_variable_attributes_token5] = ACTIONS(4587), + [aux_sym__intrinsic_type_token1] = ACTIONS(4587), + [aux_sym__intrinsic_type_token2] = ACTIONS(4587), + [aux_sym__intrinsic_type_token3] = ACTIONS(4587), + [aux_sym__intrinsic_type_token4] = ACTIONS(4587), + [aux_sym__intrinsic_type_token6] = ACTIONS(4587), + [aux_sym__intrinsic_type_token7] = ACTIONS(4587), + [aux_sym__intrinsic_type_token8] = ACTIONS(4587), + [aux_sym__intrinsic_type_token9] = ACTIONS(4587), + [aux_sym__intrinsic_type_token10] = ACTIONS(4587), + [aux_sym_derived_type_token1] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), + [aux_sym_type_qualifier_token1] = ACTIONS(4587), + [aux_sym_type_qualifier_token2] = ACTIONS(4587), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4587), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4587), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4587), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4587), + [aux_sym_equivalence_statement_token1] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [aux_sym_stop_statement_token1] = ACTIONS(4587), + [aux_sym_stop_statement_token2] = ACTIONS(4587), + [aux_sym_subroutine_call_token1] = ACTIONS(4587), + [aux_sym_keyword_statement_token1] = ACTIONS(4587), + [aux_sym_keyword_statement_token2] = ACTIONS(4587), + [aux_sym_keyword_statement_token3] = ACTIONS(4587), + [aux_sym_keyword_statement_token4] = ACTIONS(4587), + [aux_sym_keyword_statement_token6] = ACTIONS(4587), + [aux_sym_keyword_statement_token7] = ACTIONS(4587), + [aux_sym_include_statement_token1] = ACTIONS(4587), + [aux_sym_data_statement_token1] = ACTIONS(4587), + [aux_sym_do_loop_statement_token1] = ACTIONS(4587), + [aux_sym__inline_if_statement_token1] = ACTIONS(4587), + [aux_sym_end_if_statement_token1] = ACTIONS(4587), + [aux_sym_elseif_clause_token2] = ACTIONS(4587), + [aux_sym__inline_where_statement_token1] = ACTIONS(4587), + [aux_sym__forall_control_expression_token1] = ACTIONS(4587), + [aux_sym_select_case_statement_token1] = ACTIONS(4587), + [aux_sym_select_case_statement_token3] = ACTIONS(4587), + [aux_sym_select_type_statement_token1] = ACTIONS(4587), + [aux_sym_select_rank_statement_token2] = ACTIONS(4587), + [aux_sym_block_construct_token1] = ACTIONS(4587), + [aux_sym_associate_statement_token1] = ACTIONS(4587), + [aux_sym_format_statement_token1] = ACTIONS(4587), + [aux_sym_print_statement_token1] = ACTIONS(4587), + [aux_sym_open_statement_token1] = ACTIONS(4587), + [aux_sym_close_statement_token1] = ACTIONS(4587), + [aux_sym_inquire_statement_token1] = ACTIONS(4587), + [aux_sym_enum_statement_token1] = ACTIONS(4587), + [aux_sym_file_position_statement_token1] = ACTIONS(4587), + [aux_sym_file_position_statement_token2] = ACTIONS(4587), + [aux_sym_file_position_statement_token3] = ACTIONS(4587), + [aux_sym_file_position_statement_token4] = ACTIONS(4587), + [aux_sym_allocate_statement_token1] = ACTIONS(4587), + [aux_sym_entry_statement_token1] = ACTIONS(4587), + [aux_sym_logical_expression_token5] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_LPAREN_SLASH] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [aux_sym_null_literal_token1] = ACTIONS(4587), + [aux_sym_coarray_statement_token1] = ACTIONS(4587), + [aux_sym_coarray_statement_token2] = ACTIONS(4587), + [aux_sym_coarray_statement_token6] = ACTIONS(4587), + [aux_sym_coarray_statement_token8] = ACTIONS(4587), + [aux_sym_coarray_statement_token11] = ACTIONS(4587), + [aux_sym_coarray_statement_token12] = ACTIONS(4587), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), + [aux_sym_identifier_token1] = ACTIONS(4587), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4605), - [sym__float_literal] = ACTIONS(4605), - [sym__boz_literal] = ACTIONS(4605), - [sym__string_literal] = ACTIONS(4605), - [sym__string_literal_kind] = ACTIONS(4605), + [sym__integer_literal] = ACTIONS(4589), + [sym__float_literal] = ACTIONS(4589), + [sym__boz_literal] = ACTIONS(4589), + [sym__string_literal] = ACTIONS(4589), + [sym__string_literal_kind] = ACTIONS(4589), }, - [1054] = { - [ts_builtin_sym_end] = ACTIONS(4381), - [aux_sym_preproc_include_token1] = ACTIONS(4379), - [aux_sym_preproc_def_token1] = ACTIONS(4379), - [aux_sym_preproc_if_token1] = ACTIONS(4379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), - [sym_preproc_directive] = ACTIONS(4379), - [anon_sym_LPAREN2] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), + [1033] = { + [aux_sym_preproc_include_token1] = ACTIONS(4435), + [aux_sym_preproc_def_token1] = ACTIONS(4435), + [aux_sym_preproc_if_token1] = ACTIONS(4435), + [aux_sym_preproc_if_token2] = ACTIONS(4435), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4435), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4435), + [sym_preproc_directive] = ACTIONS(4435), + [anon_sym_LPAREN2] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4437), + [anon_sym_DASH] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4379), - [aux_sym_end_program_statement_token1] = ACTIONS(4379), - [aux_sym_end_program_statement_token2] = ACTIONS(4379), - [aux_sym_module_statement_token1] = ACTIONS(4379), - [aux_sym_submodule_statement_token1] = ACTIONS(4379), - [aux_sym_interface_statement_token1] = ACTIONS(4379), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), - [aux_sym_subroutine_statement_token1] = ACTIONS(4379), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), - [aux_sym_function_statement_token1] = ACTIONS(4379), - [aux_sym_language_binding_token1] = ACTIONS(4379), - [aux_sym_procedure_attributes_token1] = ACTIONS(4379), - [aux_sym_procedure_attributes_token3] = ACTIONS(4379), - [aux_sym_contains_statement_token1] = ACTIONS(4379), - [aux_sym_use_statement_token1] = ACTIONS(4379), - [aux_sym_use_statement_token2] = ACTIONS(4379), - [aux_sym_implicit_statement_token1] = ACTIONS(4379), - [aux_sym_implicit_statement_token3] = ACTIONS(4379), - [aux_sym_implicit_statement_token4] = ACTIONS(4379), - [aux_sym_save_statement_token1] = ACTIONS(4379), - [aux_sym_private_statement_token1] = ACTIONS(4379), - [aux_sym_public_statement_token1] = ACTIONS(4379), - [aux_sym_namelist_statement_token1] = ACTIONS(4379), - [aux_sym_common_statement_token1] = ACTIONS(4379), - [aux_sym_import_statement_token1] = ACTIONS(4379), - [aux_sym_derived_type_definition_token1] = ACTIONS(4379), - [aux_sym_abstract_specifier_token1] = ACTIONS(4379), - [aux_sym_procedure_attribute_token6] = ACTIONS(4379), - [aux_sym_variable_attributes_token1] = ACTIONS(4379), - [aux_sym_variable_attributes_token2] = ACTIONS(4379), - [aux_sym_variable_attributes_token3] = ACTIONS(4379), - [aux_sym_variable_attributes_token4] = ACTIONS(4379), - [aux_sym_variable_attributes_token5] = ACTIONS(4379), - [aux_sym__intrinsic_type_token1] = ACTIONS(4379), - [aux_sym__intrinsic_type_token2] = ACTIONS(4379), - [aux_sym__intrinsic_type_token3] = ACTIONS(4379), - [aux_sym__intrinsic_type_token4] = ACTIONS(4379), - [aux_sym__intrinsic_type_token6] = ACTIONS(4379), - [aux_sym__intrinsic_type_token7] = ACTIONS(4379), - [aux_sym__intrinsic_type_token8] = ACTIONS(4379), - [aux_sym__intrinsic_type_token9] = ACTIONS(4379), - [aux_sym__intrinsic_type_token10] = ACTIONS(4379), - [aux_sym_derived_type_token1] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), - [aux_sym_type_qualifier_token1] = ACTIONS(4379), - [aux_sym_type_qualifier_token2] = ACTIONS(4379), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4379), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4379), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4379), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4379), - [aux_sym_equivalence_statement_token1] = ACTIONS(4379), - [anon_sym_SEMI] = ACTIONS(4381), - [aux_sym_stop_statement_token1] = ACTIONS(4379), - [aux_sym_stop_statement_token2] = ACTIONS(4379), - [aux_sym_subroutine_call_token1] = ACTIONS(4379), - [aux_sym_keyword_statement_token1] = ACTIONS(4379), - [aux_sym_keyword_statement_token2] = ACTIONS(4379), - [aux_sym_keyword_statement_token3] = ACTIONS(4379), - [aux_sym_keyword_statement_token4] = ACTIONS(4379), - [aux_sym_keyword_statement_token6] = ACTIONS(4379), - [aux_sym_keyword_statement_token7] = ACTIONS(4379), - [aux_sym_include_statement_token1] = ACTIONS(4379), - [aux_sym_data_statement_token1] = ACTIONS(4379), - [aux_sym_do_loop_statement_token1] = ACTIONS(4379), - [aux_sym__inline_if_statement_token1] = ACTIONS(4379), - [aux_sym_end_if_statement_token1] = ACTIONS(4379), - [aux_sym_elseif_clause_token2] = ACTIONS(4379), - [aux_sym__inline_where_statement_token1] = ACTIONS(4379), - [aux_sym__forall_control_expression_token1] = ACTIONS(4379), - [aux_sym_select_case_statement_token1] = ACTIONS(4379), - [aux_sym_select_case_statement_token3] = ACTIONS(4379), - [aux_sym_select_type_statement_token1] = ACTIONS(4379), - [aux_sym_select_rank_statement_token2] = ACTIONS(4379), - [aux_sym_block_construct_token1] = ACTIONS(4379), - [aux_sym_associate_statement_token1] = ACTIONS(4379), - [aux_sym_format_statement_token1] = ACTIONS(4379), - [aux_sym_print_statement_token1] = ACTIONS(4379), - [aux_sym_open_statement_token1] = ACTIONS(4379), - [aux_sym_close_statement_token1] = ACTIONS(4379), - [aux_sym_inquire_statement_token1] = ACTIONS(4379), - [aux_sym_enum_statement_token1] = ACTIONS(4379), - [aux_sym_file_position_statement_token1] = ACTIONS(4379), - [aux_sym_file_position_statement_token2] = ACTIONS(4379), - [aux_sym_file_position_statement_token3] = ACTIONS(4379), - [aux_sym_file_position_statement_token4] = ACTIONS(4379), - [aux_sym_allocate_statement_token1] = ACTIONS(4379), - [aux_sym_entry_statement_token1] = ACTIONS(4379), - [aux_sym_logical_expression_token5] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4379), - [anon_sym_LPAREN_SLASH] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4381), - [aux_sym_boolean_literal_token1] = ACTIONS(4381), - [aux_sym_boolean_literal_token2] = ACTIONS(4381), - [aux_sym_null_literal_token1] = ACTIONS(4379), - [aux_sym_coarray_statement_token1] = ACTIONS(4379), - [aux_sym_coarray_statement_token2] = ACTIONS(4379), - [aux_sym_coarray_statement_token6] = ACTIONS(4379), - [aux_sym_coarray_statement_token8] = ACTIONS(4379), - [aux_sym_coarray_statement_token11] = ACTIONS(4379), - [aux_sym_coarray_statement_token12] = ACTIONS(4379), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), - [aux_sym_identifier_token1] = ACTIONS(4379), + [aux_sym_program_statement_token1] = ACTIONS(4435), + [aux_sym_end_program_statement_token1] = ACTIONS(4435), + [aux_sym_end_program_statement_token2] = ACTIONS(4435), + [aux_sym_module_statement_token1] = ACTIONS(4435), + [aux_sym_submodule_statement_token1] = ACTIONS(4435), + [aux_sym_interface_statement_token1] = ACTIONS(4435), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4435), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4435), + [aux_sym_subroutine_statement_token1] = ACTIONS(4435), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4435), + [aux_sym_function_statement_token1] = ACTIONS(4435), + [aux_sym_language_binding_token1] = ACTIONS(4435), + [aux_sym_procedure_attributes_token1] = ACTIONS(4435), + [aux_sym_procedure_attributes_token3] = ACTIONS(4435), + [aux_sym_contains_statement_token1] = ACTIONS(4435), + [aux_sym_use_statement_token1] = ACTIONS(4435), + [aux_sym_use_statement_token2] = ACTIONS(4435), + [aux_sym_implicit_statement_token1] = ACTIONS(4435), + [aux_sym_implicit_statement_token3] = ACTIONS(4435), + [aux_sym_implicit_statement_token4] = ACTIONS(4435), + [aux_sym_save_statement_token1] = ACTIONS(4435), + [aux_sym_private_statement_token1] = ACTIONS(4435), + [aux_sym_public_statement_token1] = ACTIONS(4435), + [aux_sym_namelist_statement_token1] = ACTIONS(4435), + [aux_sym_common_statement_token1] = ACTIONS(4435), + [aux_sym_import_statement_token1] = ACTIONS(4435), + [aux_sym_derived_type_definition_token1] = ACTIONS(4435), + [aux_sym_abstract_specifier_token1] = ACTIONS(4435), + [aux_sym_procedure_attribute_token6] = ACTIONS(4435), + [aux_sym_variable_attributes_token1] = ACTIONS(4435), + [aux_sym_variable_attributes_token2] = ACTIONS(4435), + [aux_sym_variable_attributes_token3] = ACTIONS(4435), + [aux_sym_variable_attributes_token4] = ACTIONS(4435), + [aux_sym_variable_attributes_token5] = ACTIONS(4435), + [aux_sym__intrinsic_type_token1] = ACTIONS(4435), + [aux_sym__intrinsic_type_token2] = ACTIONS(4435), + [aux_sym__intrinsic_type_token3] = ACTIONS(4435), + [aux_sym__intrinsic_type_token4] = ACTIONS(4435), + [aux_sym__intrinsic_type_token6] = ACTIONS(4435), + [aux_sym__intrinsic_type_token7] = ACTIONS(4435), + [aux_sym__intrinsic_type_token8] = ACTIONS(4435), + [aux_sym__intrinsic_type_token9] = ACTIONS(4435), + [aux_sym__intrinsic_type_token10] = ACTIONS(4435), + [aux_sym_derived_type_token1] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4435), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4435), + [aux_sym_type_qualifier_token1] = ACTIONS(4435), + [aux_sym_type_qualifier_token2] = ACTIONS(4435), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4435), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4435), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4435), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4435), + [aux_sym_equivalence_statement_token1] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [aux_sym_stop_statement_token1] = ACTIONS(4435), + [aux_sym_stop_statement_token2] = ACTIONS(4435), + [aux_sym_subroutine_call_token1] = ACTIONS(4435), + [aux_sym_keyword_statement_token1] = ACTIONS(4435), + [aux_sym_keyword_statement_token2] = ACTIONS(4435), + [aux_sym_keyword_statement_token3] = ACTIONS(4435), + [aux_sym_keyword_statement_token4] = ACTIONS(4435), + [aux_sym_keyword_statement_token6] = ACTIONS(4435), + [aux_sym_keyword_statement_token7] = ACTIONS(4435), + [aux_sym_include_statement_token1] = ACTIONS(4435), + [aux_sym_data_statement_token1] = ACTIONS(4435), + [aux_sym_do_loop_statement_token1] = ACTIONS(4435), + [aux_sym__inline_if_statement_token1] = ACTIONS(4435), + [aux_sym_end_if_statement_token1] = ACTIONS(4435), + [aux_sym_elseif_clause_token2] = ACTIONS(4435), + [aux_sym__inline_where_statement_token1] = ACTIONS(4435), + [aux_sym__forall_control_expression_token1] = ACTIONS(4435), + [aux_sym_select_case_statement_token1] = ACTIONS(4435), + [aux_sym_select_case_statement_token3] = ACTIONS(4435), + [aux_sym_select_type_statement_token1] = ACTIONS(4435), + [aux_sym_select_rank_statement_token2] = ACTIONS(4435), + [aux_sym_block_construct_token1] = ACTIONS(4435), + [aux_sym_associate_statement_token1] = ACTIONS(4435), + [aux_sym_format_statement_token1] = ACTIONS(4435), + [aux_sym_print_statement_token1] = ACTIONS(4435), + [aux_sym_open_statement_token1] = ACTIONS(4435), + [aux_sym_close_statement_token1] = ACTIONS(4435), + [aux_sym_inquire_statement_token1] = ACTIONS(4435), + [aux_sym_enum_statement_token1] = ACTIONS(4435), + [aux_sym_file_position_statement_token1] = ACTIONS(4435), + [aux_sym_file_position_statement_token2] = ACTIONS(4435), + [aux_sym_file_position_statement_token3] = ACTIONS(4435), + [aux_sym_file_position_statement_token4] = ACTIONS(4435), + [aux_sym_allocate_statement_token1] = ACTIONS(4435), + [aux_sym_entry_statement_token1] = ACTIONS(4435), + [aux_sym_logical_expression_token5] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_LPAREN_SLASH] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [aux_sym_null_literal_token1] = ACTIONS(4435), + [aux_sym_coarray_statement_token1] = ACTIONS(4435), + [aux_sym_coarray_statement_token2] = ACTIONS(4435), + [aux_sym_coarray_statement_token6] = ACTIONS(4435), + [aux_sym_coarray_statement_token8] = ACTIONS(4435), + [aux_sym_coarray_statement_token11] = ACTIONS(4435), + [aux_sym_coarray_statement_token12] = ACTIONS(4435), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4435), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4435), + [aux_sym_identifier_token1] = ACTIONS(4435), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4381), - [sym__float_literal] = ACTIONS(4381), - [sym__boz_literal] = ACTIONS(4381), - [sym__string_literal] = ACTIONS(4381), - [sym__string_literal_kind] = ACTIONS(4381), + [sym__integer_literal] = ACTIONS(4437), + [sym__float_literal] = ACTIONS(4437), + [sym__boz_literal] = ACTIONS(4437), + [sym__string_literal] = ACTIONS(4437), + [sym__string_literal_kind] = ACTIONS(4437), }, - [1055] = { - [aux_sym_preproc_include_token1] = ACTIONS(4607), - [aux_sym_preproc_def_token1] = ACTIONS(4607), - [aux_sym_preproc_if_token1] = ACTIONS(4607), - [aux_sym_preproc_if_token2] = ACTIONS(4607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4607), - [sym_preproc_directive] = ACTIONS(4607), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), + [1034] = { + [ts_builtin_sym_end] = ACTIONS(4433), + [aux_sym_preproc_include_token1] = ACTIONS(4431), + [aux_sym_preproc_def_token1] = ACTIONS(4431), + [aux_sym_preproc_if_token1] = ACTIONS(4431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4431), + [sym_preproc_directive] = ACTIONS(4431), + [anon_sym_LPAREN2] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4607), - [aux_sym_end_program_statement_token1] = ACTIONS(4607), - [aux_sym_end_program_statement_token2] = ACTIONS(4607), - [aux_sym_module_statement_token1] = ACTIONS(4607), - [aux_sym_submodule_statement_token1] = ACTIONS(4607), - [aux_sym_interface_statement_token1] = ACTIONS(4607), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4607), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4607), - [aux_sym_subroutine_statement_token1] = ACTIONS(4607), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4607), - [aux_sym_function_statement_token1] = ACTIONS(4607), - [aux_sym_language_binding_token1] = ACTIONS(4607), - [aux_sym_procedure_attributes_token1] = ACTIONS(4607), - [aux_sym_procedure_attributes_token3] = ACTIONS(4607), - [aux_sym_contains_statement_token1] = ACTIONS(4607), - [aux_sym_use_statement_token1] = ACTIONS(4607), - [aux_sym_use_statement_token2] = ACTIONS(4607), - [aux_sym_implicit_statement_token1] = ACTIONS(4607), - [aux_sym_implicit_statement_token3] = ACTIONS(4607), - [aux_sym_implicit_statement_token4] = ACTIONS(4607), - [aux_sym_save_statement_token1] = ACTIONS(4607), - [aux_sym_private_statement_token1] = ACTIONS(4607), - [aux_sym_public_statement_token1] = ACTIONS(4607), - [aux_sym_namelist_statement_token1] = ACTIONS(4607), - [aux_sym_common_statement_token1] = ACTIONS(4607), - [aux_sym_import_statement_token1] = ACTIONS(4607), - [aux_sym_derived_type_definition_token1] = ACTIONS(4607), - [aux_sym_abstract_specifier_token1] = ACTIONS(4607), - [aux_sym_procedure_attribute_token6] = ACTIONS(4607), - [aux_sym_variable_attributes_token1] = ACTIONS(4607), - [aux_sym_variable_attributes_token2] = ACTIONS(4607), - [aux_sym_variable_attributes_token3] = ACTIONS(4607), - [aux_sym_variable_attributes_token4] = ACTIONS(4607), - [aux_sym_variable_attributes_token5] = ACTIONS(4607), - [aux_sym__intrinsic_type_token1] = ACTIONS(4607), - [aux_sym__intrinsic_type_token2] = ACTIONS(4607), - [aux_sym__intrinsic_type_token3] = ACTIONS(4607), - [aux_sym__intrinsic_type_token4] = ACTIONS(4607), - [aux_sym__intrinsic_type_token6] = ACTIONS(4607), - [aux_sym__intrinsic_type_token7] = ACTIONS(4607), - [aux_sym__intrinsic_type_token8] = ACTIONS(4607), - [aux_sym__intrinsic_type_token9] = ACTIONS(4607), - [aux_sym__intrinsic_type_token10] = ACTIONS(4607), - [aux_sym_derived_type_token1] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4607), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4607), - [aux_sym_type_qualifier_token1] = ACTIONS(4607), - [aux_sym_type_qualifier_token2] = ACTIONS(4607), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4607), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4607), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4607), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4607), - [aux_sym_equivalence_statement_token1] = ACTIONS(4607), - [anon_sym_SEMI] = ACTIONS(4609), - [aux_sym_stop_statement_token1] = ACTIONS(4607), - [aux_sym_stop_statement_token2] = ACTIONS(4607), - [aux_sym_subroutine_call_token1] = ACTIONS(4607), - [aux_sym_keyword_statement_token1] = ACTIONS(4607), - [aux_sym_keyword_statement_token2] = ACTIONS(4607), - [aux_sym_keyword_statement_token3] = ACTIONS(4607), - [aux_sym_keyword_statement_token4] = ACTIONS(4607), - [aux_sym_keyword_statement_token6] = ACTIONS(4607), - [aux_sym_keyword_statement_token7] = ACTIONS(4607), - [aux_sym_include_statement_token1] = ACTIONS(4607), - [aux_sym_data_statement_token1] = ACTIONS(4607), - [aux_sym_do_loop_statement_token1] = ACTIONS(4607), - [aux_sym__inline_if_statement_token1] = ACTIONS(4607), - [aux_sym_end_if_statement_token1] = ACTIONS(4607), - [aux_sym_elseif_clause_token2] = ACTIONS(4607), - [aux_sym__inline_where_statement_token1] = ACTIONS(4607), - [aux_sym__forall_control_expression_token1] = ACTIONS(4607), - [aux_sym_select_case_statement_token1] = ACTIONS(4607), - [aux_sym_select_case_statement_token3] = ACTIONS(4607), - [aux_sym_select_type_statement_token1] = ACTIONS(4607), - [aux_sym_select_rank_statement_token2] = ACTIONS(4607), - [aux_sym_block_construct_token1] = ACTIONS(4607), - [aux_sym_associate_statement_token1] = ACTIONS(4607), - [aux_sym_format_statement_token1] = ACTIONS(4607), - [aux_sym_print_statement_token1] = ACTIONS(4607), - [aux_sym_open_statement_token1] = ACTIONS(4607), - [aux_sym_close_statement_token1] = ACTIONS(4607), - [aux_sym_inquire_statement_token1] = ACTIONS(4607), - [aux_sym_enum_statement_token1] = ACTIONS(4607), - [aux_sym_file_position_statement_token1] = ACTIONS(4607), - [aux_sym_file_position_statement_token2] = ACTIONS(4607), - [aux_sym_file_position_statement_token3] = ACTIONS(4607), - [aux_sym_file_position_statement_token4] = ACTIONS(4607), - [aux_sym_allocate_statement_token1] = ACTIONS(4607), - [aux_sym_entry_statement_token1] = ACTIONS(4607), - [aux_sym_logical_expression_token5] = ACTIONS(4609), - [anon_sym_DOT] = ACTIONS(4607), - [anon_sym_LPAREN_SLASH] = ACTIONS(4609), - [anon_sym_LBRACK] = ACTIONS(4609), - [aux_sym_boolean_literal_token1] = ACTIONS(4609), - [aux_sym_boolean_literal_token2] = ACTIONS(4609), - [aux_sym_null_literal_token1] = ACTIONS(4607), - [aux_sym_coarray_statement_token1] = ACTIONS(4607), - [aux_sym_coarray_statement_token2] = ACTIONS(4607), - [aux_sym_coarray_statement_token6] = ACTIONS(4607), - [aux_sym_coarray_statement_token8] = ACTIONS(4607), - [aux_sym_coarray_statement_token11] = ACTIONS(4607), - [aux_sym_coarray_statement_token12] = ACTIONS(4607), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4607), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4607), - [aux_sym_identifier_token1] = ACTIONS(4607), + [aux_sym_program_statement_token1] = ACTIONS(4431), + [aux_sym_end_program_statement_token1] = ACTIONS(4431), + [aux_sym_end_program_statement_token2] = ACTIONS(4431), + [aux_sym_module_statement_token1] = ACTIONS(4431), + [aux_sym_submodule_statement_token1] = ACTIONS(4431), + [aux_sym_interface_statement_token1] = ACTIONS(4431), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4431), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4431), + [aux_sym_subroutine_statement_token1] = ACTIONS(4431), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4431), + [aux_sym_function_statement_token1] = ACTIONS(4431), + [aux_sym_language_binding_token1] = ACTIONS(4431), + [aux_sym_procedure_attributes_token1] = ACTIONS(4431), + [aux_sym_procedure_attributes_token3] = ACTIONS(4431), + [aux_sym_contains_statement_token1] = ACTIONS(4431), + [aux_sym_use_statement_token1] = ACTIONS(4431), + [aux_sym_use_statement_token2] = ACTIONS(4431), + [aux_sym_implicit_statement_token1] = ACTIONS(4431), + [aux_sym_implicit_statement_token3] = ACTIONS(4431), + [aux_sym_implicit_statement_token4] = ACTIONS(4431), + [aux_sym_save_statement_token1] = ACTIONS(4431), + [aux_sym_private_statement_token1] = ACTIONS(4431), + [aux_sym_public_statement_token1] = ACTIONS(4431), + [aux_sym_namelist_statement_token1] = ACTIONS(4431), + [aux_sym_common_statement_token1] = ACTIONS(4431), + [aux_sym_import_statement_token1] = ACTIONS(4431), + [aux_sym_derived_type_definition_token1] = ACTIONS(4431), + [aux_sym_abstract_specifier_token1] = ACTIONS(4431), + [aux_sym_procedure_attribute_token6] = ACTIONS(4431), + [aux_sym_variable_attributes_token1] = ACTIONS(4431), + [aux_sym_variable_attributes_token2] = ACTIONS(4431), + [aux_sym_variable_attributes_token3] = ACTIONS(4431), + [aux_sym_variable_attributes_token4] = ACTIONS(4431), + [aux_sym_variable_attributes_token5] = ACTIONS(4431), + [aux_sym__intrinsic_type_token1] = ACTIONS(4431), + [aux_sym__intrinsic_type_token2] = ACTIONS(4431), + [aux_sym__intrinsic_type_token3] = ACTIONS(4431), + [aux_sym__intrinsic_type_token4] = ACTIONS(4431), + [aux_sym__intrinsic_type_token6] = ACTIONS(4431), + [aux_sym__intrinsic_type_token7] = ACTIONS(4431), + [aux_sym__intrinsic_type_token8] = ACTIONS(4431), + [aux_sym__intrinsic_type_token9] = ACTIONS(4431), + [aux_sym__intrinsic_type_token10] = ACTIONS(4431), + [aux_sym_derived_type_token1] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4431), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4431), + [aux_sym_type_qualifier_token1] = ACTIONS(4431), + [aux_sym_type_qualifier_token2] = ACTIONS(4431), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4431), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4431), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4431), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4431), + [aux_sym_equivalence_statement_token1] = ACTIONS(4431), + [anon_sym_SEMI] = ACTIONS(4433), + [aux_sym_stop_statement_token1] = ACTIONS(4431), + [aux_sym_stop_statement_token2] = ACTIONS(4431), + [aux_sym_subroutine_call_token1] = ACTIONS(4431), + [aux_sym_keyword_statement_token1] = ACTIONS(4431), + [aux_sym_keyword_statement_token2] = ACTIONS(4431), + [aux_sym_keyword_statement_token3] = ACTIONS(4431), + [aux_sym_keyword_statement_token4] = ACTIONS(4431), + [aux_sym_keyword_statement_token6] = ACTIONS(4431), + [aux_sym_keyword_statement_token7] = ACTIONS(4431), + [aux_sym_include_statement_token1] = ACTIONS(4431), + [aux_sym_data_statement_token1] = ACTIONS(4431), + [aux_sym_do_loop_statement_token1] = ACTIONS(4431), + [aux_sym__inline_if_statement_token1] = ACTIONS(4431), + [aux_sym_end_if_statement_token1] = ACTIONS(4431), + [aux_sym_elseif_clause_token2] = ACTIONS(4431), + [aux_sym__inline_where_statement_token1] = ACTIONS(4431), + [aux_sym__forall_control_expression_token1] = ACTIONS(4431), + [aux_sym_select_case_statement_token1] = ACTIONS(4431), + [aux_sym_select_case_statement_token3] = ACTIONS(4431), + [aux_sym_select_type_statement_token1] = ACTIONS(4431), + [aux_sym_select_rank_statement_token2] = ACTIONS(4431), + [aux_sym_block_construct_token1] = ACTIONS(4431), + [aux_sym_associate_statement_token1] = ACTIONS(4431), + [aux_sym_format_statement_token1] = ACTIONS(4431), + [aux_sym_print_statement_token1] = ACTIONS(4431), + [aux_sym_open_statement_token1] = ACTIONS(4431), + [aux_sym_close_statement_token1] = ACTIONS(4431), + [aux_sym_inquire_statement_token1] = ACTIONS(4431), + [aux_sym_enum_statement_token1] = ACTIONS(4431), + [aux_sym_file_position_statement_token1] = ACTIONS(4431), + [aux_sym_file_position_statement_token2] = ACTIONS(4431), + [aux_sym_file_position_statement_token3] = ACTIONS(4431), + [aux_sym_file_position_statement_token4] = ACTIONS(4431), + [aux_sym_allocate_statement_token1] = ACTIONS(4431), + [aux_sym_entry_statement_token1] = ACTIONS(4431), + [aux_sym_logical_expression_token5] = ACTIONS(4433), + [anon_sym_DOT] = ACTIONS(4431), + [anon_sym_LPAREN_SLASH] = ACTIONS(4433), + [anon_sym_LBRACK] = ACTIONS(4433), + [aux_sym_boolean_literal_token1] = ACTIONS(4433), + [aux_sym_boolean_literal_token2] = ACTIONS(4433), + [aux_sym_null_literal_token1] = ACTIONS(4431), + [aux_sym_coarray_statement_token1] = ACTIONS(4431), + [aux_sym_coarray_statement_token2] = ACTIONS(4431), + [aux_sym_coarray_statement_token6] = ACTIONS(4431), + [aux_sym_coarray_statement_token8] = ACTIONS(4431), + [aux_sym_coarray_statement_token11] = ACTIONS(4431), + [aux_sym_coarray_statement_token12] = ACTIONS(4431), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4431), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4431), + [aux_sym_identifier_token1] = ACTIONS(4431), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4609), - [sym__float_literal] = ACTIONS(4609), - [sym__boz_literal] = ACTIONS(4609), - [sym__string_literal] = ACTIONS(4609), - [sym__string_literal_kind] = ACTIONS(4609), + [sym__integer_literal] = ACTIONS(4433), + [sym__float_literal] = ACTIONS(4433), + [sym__boz_literal] = ACTIONS(4433), + [sym__string_literal] = ACTIONS(4433), + [sym__string_literal_kind] = ACTIONS(4433), }, - [1056] = { - [ts_builtin_sym_end] = ACTIONS(4493), - [aux_sym_preproc_include_token1] = ACTIONS(4491), - [aux_sym_preproc_def_token1] = ACTIONS(4491), - [aux_sym_preproc_if_token1] = ACTIONS(4491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4491), - [sym_preproc_directive] = ACTIONS(4491), - [anon_sym_LPAREN2] = ACTIONS(4491), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), + [1035] = { + [ts_builtin_sym_end] = ACTIONS(4445), + [aux_sym_preproc_include_token1] = ACTIONS(4443), + [aux_sym_preproc_def_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token1] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), + [sym_preproc_directive] = ACTIONS(4443), + [anon_sym_LPAREN2] = ACTIONS(4443), + [anon_sym_PLUS] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(4445), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4491), - [aux_sym_end_program_statement_token1] = ACTIONS(4491), - [aux_sym_end_program_statement_token2] = ACTIONS(4491), - [aux_sym_module_statement_token1] = ACTIONS(4491), - [aux_sym_submodule_statement_token1] = ACTIONS(4491), - [aux_sym_interface_statement_token1] = ACTIONS(4491), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4491), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4491), - [aux_sym_subroutine_statement_token1] = ACTIONS(4491), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4491), - [aux_sym_function_statement_token1] = ACTIONS(4491), - [aux_sym_language_binding_token1] = ACTIONS(4491), - [aux_sym_procedure_attributes_token1] = ACTIONS(4491), - [aux_sym_procedure_attributes_token3] = ACTIONS(4491), - [aux_sym_contains_statement_token1] = ACTIONS(4491), - [aux_sym_use_statement_token1] = ACTIONS(4491), - [aux_sym_use_statement_token2] = ACTIONS(4491), - [aux_sym_implicit_statement_token1] = ACTIONS(4491), - [aux_sym_implicit_statement_token3] = ACTIONS(4491), - [aux_sym_implicit_statement_token4] = ACTIONS(4491), - [aux_sym_save_statement_token1] = ACTIONS(4491), - [aux_sym_private_statement_token1] = ACTIONS(4491), - [aux_sym_public_statement_token1] = ACTIONS(4491), - [aux_sym_namelist_statement_token1] = ACTIONS(4491), - [aux_sym_common_statement_token1] = ACTIONS(4491), - [aux_sym_import_statement_token1] = ACTIONS(4491), - [aux_sym_derived_type_definition_token1] = ACTIONS(4491), - [aux_sym_abstract_specifier_token1] = ACTIONS(4491), - [aux_sym_procedure_attribute_token6] = ACTIONS(4491), - [aux_sym_variable_attributes_token1] = ACTIONS(4491), - [aux_sym_variable_attributes_token2] = ACTIONS(4491), - [aux_sym_variable_attributes_token3] = ACTIONS(4491), - [aux_sym_variable_attributes_token4] = ACTIONS(4491), - [aux_sym_variable_attributes_token5] = ACTIONS(4491), - [aux_sym__intrinsic_type_token1] = ACTIONS(4491), - [aux_sym__intrinsic_type_token2] = ACTIONS(4491), - [aux_sym__intrinsic_type_token3] = ACTIONS(4491), - [aux_sym__intrinsic_type_token4] = ACTIONS(4491), - [aux_sym__intrinsic_type_token6] = ACTIONS(4491), - [aux_sym__intrinsic_type_token7] = ACTIONS(4491), - [aux_sym__intrinsic_type_token8] = ACTIONS(4491), - [aux_sym__intrinsic_type_token9] = ACTIONS(4491), - [aux_sym__intrinsic_type_token10] = ACTIONS(4491), - [aux_sym_derived_type_token1] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4491), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4491), - [aux_sym_type_qualifier_token1] = ACTIONS(4491), - [aux_sym_type_qualifier_token2] = ACTIONS(4491), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4491), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4491), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4491), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4491), - [aux_sym_equivalence_statement_token1] = ACTIONS(4491), - [anon_sym_SEMI] = ACTIONS(4493), - [aux_sym_stop_statement_token1] = ACTIONS(4491), - [aux_sym_stop_statement_token2] = ACTIONS(4491), - [aux_sym_subroutine_call_token1] = ACTIONS(4491), - [aux_sym_keyword_statement_token1] = ACTIONS(4491), - [aux_sym_keyword_statement_token2] = ACTIONS(4491), - [aux_sym_keyword_statement_token3] = ACTIONS(4491), - [aux_sym_keyword_statement_token4] = ACTIONS(4491), - [aux_sym_keyword_statement_token6] = ACTIONS(4491), - [aux_sym_keyword_statement_token7] = ACTIONS(4491), - [aux_sym_include_statement_token1] = ACTIONS(4491), - [aux_sym_data_statement_token1] = ACTIONS(4491), - [aux_sym_do_loop_statement_token1] = ACTIONS(4491), - [aux_sym__inline_if_statement_token1] = ACTIONS(4491), - [aux_sym_end_if_statement_token1] = ACTIONS(4491), - [aux_sym_elseif_clause_token2] = ACTIONS(4491), - [aux_sym__inline_where_statement_token1] = ACTIONS(4491), - [aux_sym__forall_control_expression_token1] = ACTIONS(4491), - [aux_sym_select_case_statement_token1] = ACTIONS(4491), - [aux_sym_select_case_statement_token3] = ACTIONS(4491), - [aux_sym_select_type_statement_token1] = ACTIONS(4491), - [aux_sym_select_rank_statement_token2] = ACTIONS(4491), - [aux_sym_block_construct_token1] = ACTIONS(4491), - [aux_sym_associate_statement_token1] = ACTIONS(4491), - [aux_sym_format_statement_token1] = ACTIONS(4491), - [aux_sym_print_statement_token1] = ACTIONS(4491), - [aux_sym_open_statement_token1] = ACTIONS(4491), - [aux_sym_close_statement_token1] = ACTIONS(4491), - [aux_sym_inquire_statement_token1] = ACTIONS(4491), - [aux_sym_enum_statement_token1] = ACTIONS(4491), - [aux_sym_file_position_statement_token1] = ACTIONS(4491), - [aux_sym_file_position_statement_token2] = ACTIONS(4491), - [aux_sym_file_position_statement_token3] = ACTIONS(4491), - [aux_sym_file_position_statement_token4] = ACTIONS(4491), - [aux_sym_allocate_statement_token1] = ACTIONS(4491), - [aux_sym_entry_statement_token1] = ACTIONS(4491), - [aux_sym_logical_expression_token5] = ACTIONS(4493), - [anon_sym_DOT] = ACTIONS(4491), - [anon_sym_LPAREN_SLASH] = ACTIONS(4493), - [anon_sym_LBRACK] = ACTIONS(4493), - [aux_sym_boolean_literal_token1] = ACTIONS(4493), - [aux_sym_boolean_literal_token2] = ACTIONS(4493), - [aux_sym_null_literal_token1] = ACTIONS(4491), - [aux_sym_coarray_statement_token1] = ACTIONS(4491), - [aux_sym_coarray_statement_token2] = ACTIONS(4491), - [aux_sym_coarray_statement_token6] = ACTIONS(4491), - [aux_sym_coarray_statement_token8] = ACTIONS(4491), - [aux_sym_coarray_statement_token11] = ACTIONS(4491), - [aux_sym_coarray_statement_token12] = ACTIONS(4491), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4491), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4491), - [aux_sym_identifier_token1] = ACTIONS(4491), + [aux_sym_program_statement_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token2] = ACTIONS(4443), + [aux_sym_module_statement_token1] = ACTIONS(4443), + [aux_sym_submodule_statement_token1] = ACTIONS(4443), + [aux_sym_interface_statement_token1] = ACTIONS(4443), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), + [aux_sym_subroutine_statement_token1] = ACTIONS(4443), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), + [aux_sym_function_statement_token1] = ACTIONS(4443), + [aux_sym_language_binding_token1] = ACTIONS(4443), + [aux_sym_procedure_attributes_token1] = ACTIONS(4443), + [aux_sym_procedure_attributes_token3] = ACTIONS(4443), + [aux_sym_contains_statement_token1] = ACTIONS(4443), + [aux_sym_use_statement_token1] = ACTIONS(4443), + [aux_sym_use_statement_token2] = ACTIONS(4443), + [aux_sym_implicit_statement_token1] = ACTIONS(4443), + [aux_sym_implicit_statement_token3] = ACTIONS(4443), + [aux_sym_implicit_statement_token4] = ACTIONS(4443), + [aux_sym_save_statement_token1] = ACTIONS(4443), + [aux_sym_private_statement_token1] = ACTIONS(4443), + [aux_sym_public_statement_token1] = ACTIONS(4443), + [aux_sym_namelist_statement_token1] = ACTIONS(4443), + [aux_sym_common_statement_token1] = ACTIONS(4443), + [aux_sym_import_statement_token1] = ACTIONS(4443), + [aux_sym_derived_type_definition_token1] = ACTIONS(4443), + [aux_sym_abstract_specifier_token1] = ACTIONS(4443), + [aux_sym_procedure_attribute_token6] = ACTIONS(4443), + [aux_sym_variable_attributes_token1] = ACTIONS(4443), + [aux_sym_variable_attributes_token2] = ACTIONS(4443), + [aux_sym_variable_attributes_token3] = ACTIONS(4443), + [aux_sym_variable_attributes_token4] = ACTIONS(4443), + [aux_sym_variable_attributes_token5] = ACTIONS(4443), + [aux_sym__intrinsic_type_token1] = ACTIONS(4443), + [aux_sym__intrinsic_type_token2] = ACTIONS(4443), + [aux_sym__intrinsic_type_token3] = ACTIONS(4443), + [aux_sym__intrinsic_type_token4] = ACTIONS(4443), + [aux_sym__intrinsic_type_token6] = ACTIONS(4443), + [aux_sym__intrinsic_type_token7] = ACTIONS(4443), + [aux_sym__intrinsic_type_token8] = ACTIONS(4443), + [aux_sym__intrinsic_type_token9] = ACTIONS(4443), + [aux_sym__intrinsic_type_token10] = ACTIONS(4443), + [aux_sym_derived_type_token1] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), + [aux_sym_type_qualifier_token1] = ACTIONS(4443), + [aux_sym_type_qualifier_token2] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4443), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4443), + [aux_sym_equivalence_statement_token1] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4443), + [aux_sym_stop_statement_token2] = ACTIONS(4443), + [aux_sym_subroutine_call_token1] = ACTIONS(4443), + [aux_sym_keyword_statement_token1] = ACTIONS(4443), + [aux_sym_keyword_statement_token2] = ACTIONS(4443), + [aux_sym_keyword_statement_token3] = ACTIONS(4443), + [aux_sym_keyword_statement_token4] = ACTIONS(4443), + [aux_sym_keyword_statement_token6] = ACTIONS(4443), + [aux_sym_keyword_statement_token7] = ACTIONS(4443), + [aux_sym_include_statement_token1] = ACTIONS(4443), + [aux_sym_data_statement_token1] = ACTIONS(4443), + [aux_sym_do_loop_statement_token1] = ACTIONS(4443), + [aux_sym__inline_if_statement_token1] = ACTIONS(4443), + [aux_sym_end_if_statement_token1] = ACTIONS(4443), + [aux_sym_elseif_clause_token2] = ACTIONS(4443), + [aux_sym__inline_where_statement_token1] = ACTIONS(4443), + [aux_sym__forall_control_expression_token1] = ACTIONS(4443), + [aux_sym_select_case_statement_token1] = ACTIONS(4443), + [aux_sym_select_case_statement_token3] = ACTIONS(4443), + [aux_sym_select_type_statement_token1] = ACTIONS(4443), + [aux_sym_select_rank_statement_token2] = ACTIONS(4443), + [aux_sym_block_construct_token1] = ACTIONS(4443), + [aux_sym_associate_statement_token1] = ACTIONS(4443), + [aux_sym_format_statement_token1] = ACTIONS(4443), + [aux_sym_print_statement_token1] = ACTIONS(4443), + [aux_sym_open_statement_token1] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4443), + [aux_sym_inquire_statement_token1] = ACTIONS(4443), + [aux_sym_enum_statement_token1] = ACTIONS(4443), + [aux_sym_file_position_statement_token1] = ACTIONS(4443), + [aux_sym_file_position_statement_token2] = ACTIONS(4443), + [aux_sym_file_position_statement_token3] = ACTIONS(4443), + [aux_sym_file_position_statement_token4] = ACTIONS(4443), + [aux_sym_allocate_statement_token1] = ACTIONS(4443), + [aux_sym_entry_statement_token1] = ACTIONS(4443), + [aux_sym_logical_expression_token5] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_LPAREN_SLASH] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [aux_sym_boolean_literal_token1] = ACTIONS(4445), + [aux_sym_boolean_literal_token2] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4443), + [aux_sym_coarray_statement_token1] = ACTIONS(4443), + [aux_sym_coarray_statement_token2] = ACTIONS(4443), + [aux_sym_coarray_statement_token6] = ACTIONS(4443), + [aux_sym_coarray_statement_token8] = ACTIONS(4443), + [aux_sym_coarray_statement_token11] = ACTIONS(4443), + [aux_sym_coarray_statement_token12] = ACTIONS(4443), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), + [aux_sym_identifier_token1] = ACTIONS(4443), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4493), - [sym__float_literal] = ACTIONS(4493), - [sym__boz_literal] = ACTIONS(4493), - [sym__string_literal] = ACTIONS(4493), - [sym__string_literal_kind] = ACTIONS(4493), + [sym__integer_literal] = ACTIONS(4445), + [sym__float_literal] = ACTIONS(4445), + [sym__boz_literal] = ACTIONS(4445), + [sym__string_literal] = ACTIONS(4445), + [sym__string_literal_kind] = ACTIONS(4445), }, - [1057] = { - [aux_sym_preproc_include_token1] = ACTIONS(4611), - [aux_sym_preproc_def_token1] = ACTIONS(4611), - [aux_sym_preproc_if_token1] = ACTIONS(4611), - [aux_sym_preproc_if_token2] = ACTIONS(4611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), - [sym_preproc_directive] = ACTIONS(4611), - [anon_sym_LPAREN2] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), + [1036] = { + [ts_builtin_sym_end] = ACTIONS(4449), + [aux_sym_preproc_include_token1] = ACTIONS(4447), + [aux_sym_preproc_def_token1] = ACTIONS(4447), + [aux_sym_preproc_if_token1] = ACTIONS(4447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4447), + [sym_preproc_directive] = ACTIONS(4447), + [anon_sym_LPAREN2] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4449), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4447), + [aux_sym_end_program_statement_token1] = ACTIONS(4447), + [aux_sym_end_program_statement_token2] = ACTIONS(4447), + [aux_sym_module_statement_token1] = ACTIONS(4447), + [aux_sym_submodule_statement_token1] = ACTIONS(4447), + [aux_sym_interface_statement_token1] = ACTIONS(4447), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4447), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4447), + [aux_sym_subroutine_statement_token1] = ACTIONS(4447), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4447), + [aux_sym_function_statement_token1] = ACTIONS(4447), + [aux_sym_language_binding_token1] = ACTIONS(4447), + [aux_sym_procedure_attributes_token1] = ACTIONS(4447), + [aux_sym_procedure_attributes_token3] = ACTIONS(4447), + [aux_sym_contains_statement_token1] = ACTIONS(4447), + [aux_sym_use_statement_token1] = ACTIONS(4447), + [aux_sym_use_statement_token2] = ACTIONS(4447), + [aux_sym_implicit_statement_token1] = ACTIONS(4447), + [aux_sym_implicit_statement_token3] = ACTIONS(4447), + [aux_sym_implicit_statement_token4] = ACTIONS(4447), + [aux_sym_save_statement_token1] = ACTIONS(4447), + [aux_sym_private_statement_token1] = ACTIONS(4447), + [aux_sym_public_statement_token1] = ACTIONS(4447), + [aux_sym_namelist_statement_token1] = ACTIONS(4447), + [aux_sym_common_statement_token1] = ACTIONS(4447), + [aux_sym_import_statement_token1] = ACTIONS(4447), + [aux_sym_derived_type_definition_token1] = ACTIONS(4447), + [aux_sym_abstract_specifier_token1] = ACTIONS(4447), + [aux_sym_procedure_attribute_token6] = ACTIONS(4447), + [aux_sym_variable_attributes_token1] = ACTIONS(4447), + [aux_sym_variable_attributes_token2] = ACTIONS(4447), + [aux_sym_variable_attributes_token3] = ACTIONS(4447), + [aux_sym_variable_attributes_token4] = ACTIONS(4447), + [aux_sym_variable_attributes_token5] = ACTIONS(4447), + [aux_sym__intrinsic_type_token1] = ACTIONS(4447), + [aux_sym__intrinsic_type_token2] = ACTIONS(4447), + [aux_sym__intrinsic_type_token3] = ACTIONS(4447), + [aux_sym__intrinsic_type_token4] = ACTIONS(4447), + [aux_sym__intrinsic_type_token6] = ACTIONS(4447), + [aux_sym__intrinsic_type_token7] = ACTIONS(4447), + [aux_sym__intrinsic_type_token8] = ACTIONS(4447), + [aux_sym__intrinsic_type_token9] = ACTIONS(4447), + [aux_sym__intrinsic_type_token10] = ACTIONS(4447), + [aux_sym_derived_type_token1] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4447), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4447), + [aux_sym_type_qualifier_token1] = ACTIONS(4447), + [aux_sym_type_qualifier_token2] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4447), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4447), + [aux_sym_equivalence_statement_token1] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [aux_sym_stop_statement_token1] = ACTIONS(4447), + [aux_sym_stop_statement_token2] = ACTIONS(4447), + [aux_sym_subroutine_call_token1] = ACTIONS(4447), + [aux_sym_keyword_statement_token1] = ACTIONS(4447), + [aux_sym_keyword_statement_token2] = ACTIONS(4447), + [aux_sym_keyword_statement_token3] = ACTIONS(4447), + [aux_sym_keyword_statement_token4] = ACTIONS(4447), + [aux_sym_keyword_statement_token6] = ACTIONS(4447), + [aux_sym_keyword_statement_token7] = ACTIONS(4447), + [aux_sym_include_statement_token1] = ACTIONS(4447), + [aux_sym_data_statement_token1] = ACTIONS(4447), + [aux_sym_do_loop_statement_token1] = ACTIONS(4447), + [aux_sym__inline_if_statement_token1] = ACTIONS(4447), + [aux_sym_end_if_statement_token1] = ACTIONS(4447), + [aux_sym_elseif_clause_token2] = ACTIONS(4447), + [aux_sym__inline_where_statement_token1] = ACTIONS(4447), + [aux_sym__forall_control_expression_token1] = ACTIONS(4447), + [aux_sym_select_case_statement_token1] = ACTIONS(4447), + [aux_sym_select_case_statement_token3] = ACTIONS(4447), + [aux_sym_select_type_statement_token1] = ACTIONS(4447), + [aux_sym_select_rank_statement_token2] = ACTIONS(4447), + [aux_sym_block_construct_token1] = ACTIONS(4447), + [aux_sym_associate_statement_token1] = ACTIONS(4447), + [aux_sym_format_statement_token1] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_inquire_statement_token1] = ACTIONS(4447), + [aux_sym_enum_statement_token1] = ACTIONS(4447), + [aux_sym_file_position_statement_token1] = ACTIONS(4447), + [aux_sym_file_position_statement_token2] = ACTIONS(4447), + [aux_sym_file_position_statement_token3] = ACTIONS(4447), + [aux_sym_file_position_statement_token4] = ACTIONS(4447), + [aux_sym_allocate_statement_token1] = ACTIONS(4447), + [aux_sym_entry_statement_token1] = ACTIONS(4447), + [aux_sym_logical_expression_token5] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_LPAREN_SLASH] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4449), + [aux_sym_boolean_literal_token2] = ACTIONS(4449), + [aux_sym_null_literal_token1] = ACTIONS(4447), + [aux_sym_coarray_statement_token1] = ACTIONS(4447), + [aux_sym_coarray_statement_token2] = ACTIONS(4447), + [aux_sym_coarray_statement_token6] = ACTIONS(4447), + [aux_sym_coarray_statement_token8] = ACTIONS(4447), + [aux_sym_coarray_statement_token11] = ACTIONS(4447), + [aux_sym_coarray_statement_token12] = ACTIONS(4447), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4447), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4447), + [aux_sym_identifier_token1] = ACTIONS(4447), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4449), + [sym__float_literal] = ACTIONS(4449), + [sym__boz_literal] = ACTIONS(4449), + [sym__string_literal] = ACTIONS(4449), + [sym__string_literal_kind] = ACTIONS(4449), + }, + [1037] = { + [ts_builtin_sym_end] = ACTIONS(4405), + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4611), - [aux_sym_end_program_statement_token1] = ACTIONS(4611), - [aux_sym_end_program_statement_token2] = ACTIONS(4611), - [aux_sym_module_statement_token1] = ACTIONS(4611), - [aux_sym_submodule_statement_token1] = ACTIONS(4611), - [aux_sym_interface_statement_token1] = ACTIONS(4611), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), - [aux_sym_subroutine_statement_token1] = ACTIONS(4611), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), - [aux_sym_function_statement_token1] = ACTIONS(4611), - [aux_sym_language_binding_token1] = ACTIONS(4611), - [aux_sym_procedure_attributes_token1] = ACTIONS(4611), - [aux_sym_procedure_attributes_token3] = ACTIONS(4611), - [aux_sym_contains_statement_token1] = ACTIONS(4611), - [aux_sym_use_statement_token1] = ACTIONS(4611), - [aux_sym_use_statement_token2] = ACTIONS(4611), - [aux_sym_implicit_statement_token1] = ACTIONS(4611), - [aux_sym_implicit_statement_token3] = ACTIONS(4611), - [aux_sym_implicit_statement_token4] = ACTIONS(4611), - [aux_sym_save_statement_token1] = ACTIONS(4611), - [aux_sym_private_statement_token1] = ACTIONS(4611), - [aux_sym_public_statement_token1] = ACTIONS(4611), - [aux_sym_namelist_statement_token1] = ACTIONS(4611), - [aux_sym_common_statement_token1] = ACTIONS(4611), - [aux_sym_import_statement_token1] = ACTIONS(4611), - [aux_sym_derived_type_definition_token1] = ACTIONS(4611), - [aux_sym_abstract_specifier_token1] = ACTIONS(4611), - [aux_sym_procedure_attribute_token6] = ACTIONS(4611), - [aux_sym_variable_attributes_token1] = ACTIONS(4611), - [aux_sym_variable_attributes_token2] = ACTIONS(4611), - [aux_sym_variable_attributes_token3] = ACTIONS(4611), - [aux_sym_variable_attributes_token4] = ACTIONS(4611), - [aux_sym_variable_attributes_token5] = ACTIONS(4611), - [aux_sym__intrinsic_type_token1] = ACTIONS(4611), - [aux_sym__intrinsic_type_token2] = ACTIONS(4611), - [aux_sym__intrinsic_type_token3] = ACTIONS(4611), - [aux_sym__intrinsic_type_token4] = ACTIONS(4611), - [aux_sym__intrinsic_type_token6] = ACTIONS(4611), - [aux_sym__intrinsic_type_token7] = ACTIONS(4611), - [aux_sym__intrinsic_type_token8] = ACTIONS(4611), - [aux_sym__intrinsic_type_token9] = ACTIONS(4611), - [aux_sym__intrinsic_type_token10] = ACTIONS(4611), - [aux_sym_derived_type_token1] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), - [aux_sym_type_qualifier_token1] = ACTIONS(4611), - [aux_sym_type_qualifier_token2] = ACTIONS(4611), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4611), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4611), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4611), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4611), - [aux_sym_equivalence_statement_token1] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4613), - [aux_sym_stop_statement_token1] = ACTIONS(4611), - [aux_sym_stop_statement_token2] = ACTIONS(4611), - [aux_sym_subroutine_call_token1] = ACTIONS(4611), - [aux_sym_keyword_statement_token1] = ACTIONS(4611), - [aux_sym_keyword_statement_token2] = ACTIONS(4611), - [aux_sym_keyword_statement_token3] = ACTIONS(4611), - [aux_sym_keyword_statement_token4] = ACTIONS(4611), - [aux_sym_keyword_statement_token6] = ACTIONS(4611), - [aux_sym_keyword_statement_token7] = ACTIONS(4611), - [aux_sym_include_statement_token1] = ACTIONS(4611), - [aux_sym_data_statement_token1] = ACTIONS(4611), - [aux_sym_do_loop_statement_token1] = ACTIONS(4611), - [aux_sym__inline_if_statement_token1] = ACTIONS(4611), - [aux_sym_end_if_statement_token1] = ACTIONS(4611), - [aux_sym_elseif_clause_token2] = ACTIONS(4611), - [aux_sym__inline_where_statement_token1] = ACTIONS(4611), - [aux_sym__forall_control_expression_token1] = ACTIONS(4611), - [aux_sym_select_case_statement_token1] = ACTIONS(4611), - [aux_sym_select_case_statement_token3] = ACTIONS(4611), - [aux_sym_select_type_statement_token1] = ACTIONS(4611), - [aux_sym_select_rank_statement_token2] = ACTIONS(4611), - [aux_sym_block_construct_token1] = ACTIONS(4611), - [aux_sym_associate_statement_token1] = ACTIONS(4611), - [aux_sym_format_statement_token1] = ACTIONS(4611), - [aux_sym_print_statement_token1] = ACTIONS(4611), - [aux_sym_open_statement_token1] = ACTIONS(4611), - [aux_sym_close_statement_token1] = ACTIONS(4611), - [aux_sym_inquire_statement_token1] = ACTIONS(4611), - [aux_sym_enum_statement_token1] = ACTIONS(4611), - [aux_sym_file_position_statement_token1] = ACTIONS(4611), - [aux_sym_file_position_statement_token2] = ACTIONS(4611), - [aux_sym_file_position_statement_token3] = ACTIONS(4611), - [aux_sym_file_position_statement_token4] = ACTIONS(4611), - [aux_sym_allocate_statement_token1] = ACTIONS(4611), - [aux_sym_entry_statement_token1] = ACTIONS(4611), - [aux_sym_logical_expression_token5] = ACTIONS(4613), - [anon_sym_DOT] = ACTIONS(4611), - [anon_sym_LPAREN_SLASH] = ACTIONS(4613), - [anon_sym_LBRACK] = ACTIONS(4613), - [aux_sym_boolean_literal_token1] = ACTIONS(4613), - [aux_sym_boolean_literal_token2] = ACTIONS(4613), - [aux_sym_null_literal_token1] = ACTIONS(4611), - [aux_sym_coarray_statement_token1] = ACTIONS(4611), - [aux_sym_coarray_statement_token2] = ACTIONS(4611), - [aux_sym_coarray_statement_token6] = ACTIONS(4611), - [aux_sym_coarray_statement_token8] = ACTIONS(4611), - [aux_sym_coarray_statement_token11] = ACTIONS(4611), - [aux_sym_coarray_statement_token12] = ACTIONS(4611), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), - [aux_sym_identifier_token1] = ACTIONS(4611), + [aux_sym_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_program_statement_token2] = ACTIONS(4403), + [aux_sym_module_statement_token1] = ACTIONS(4403), + [aux_sym_submodule_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_subroutine_statement_token1] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_function_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4403), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4403), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4403), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4613), - [sym__float_literal] = ACTIONS(4613), - [sym__boz_literal] = ACTIONS(4613), - [sym__string_literal] = ACTIONS(4613), - [sym__string_literal_kind] = ACTIONS(4613), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1058] = { - [aux_sym_preproc_include_token1] = ACTIONS(4615), - [aux_sym_preproc_def_token1] = ACTIONS(4615), - [aux_sym_preproc_if_token1] = ACTIONS(4615), - [aux_sym_preproc_if_token2] = ACTIONS(4615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), - [sym_preproc_directive] = ACTIONS(4615), - [anon_sym_LPAREN2] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4617), + [1038] = { + [ts_builtin_sym_end] = ACTIONS(4457), + [aux_sym_preproc_include_token1] = ACTIONS(4455), + [aux_sym_preproc_def_token1] = ACTIONS(4455), + [aux_sym_preproc_if_token1] = ACTIONS(4455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4455), + [sym_preproc_directive] = ACTIONS(4455), + [anon_sym_LPAREN2] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4455), + [aux_sym_end_program_statement_token1] = ACTIONS(4455), + [aux_sym_end_program_statement_token2] = ACTIONS(4455), + [aux_sym_module_statement_token1] = ACTIONS(4455), + [aux_sym_submodule_statement_token1] = ACTIONS(4455), + [aux_sym_interface_statement_token1] = ACTIONS(4455), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4455), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4455), + [aux_sym_subroutine_statement_token1] = ACTIONS(4455), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4455), + [aux_sym_function_statement_token1] = ACTIONS(4455), + [aux_sym_language_binding_token1] = ACTIONS(4455), + [aux_sym_procedure_attributes_token1] = ACTIONS(4455), + [aux_sym_procedure_attributes_token3] = ACTIONS(4455), + [aux_sym_contains_statement_token1] = ACTIONS(4455), + [aux_sym_use_statement_token1] = ACTIONS(4455), + [aux_sym_use_statement_token2] = ACTIONS(4455), + [aux_sym_implicit_statement_token1] = ACTIONS(4455), + [aux_sym_implicit_statement_token3] = ACTIONS(4455), + [aux_sym_implicit_statement_token4] = ACTIONS(4455), + [aux_sym_save_statement_token1] = ACTIONS(4455), + [aux_sym_private_statement_token1] = ACTIONS(4455), + [aux_sym_public_statement_token1] = ACTIONS(4455), + [aux_sym_namelist_statement_token1] = ACTIONS(4455), + [aux_sym_common_statement_token1] = ACTIONS(4455), + [aux_sym_import_statement_token1] = ACTIONS(4455), + [aux_sym_derived_type_definition_token1] = ACTIONS(4455), + [aux_sym_abstract_specifier_token1] = ACTIONS(4455), + [aux_sym_procedure_attribute_token6] = ACTIONS(4455), + [aux_sym_variable_attributes_token1] = ACTIONS(4455), + [aux_sym_variable_attributes_token2] = ACTIONS(4455), + [aux_sym_variable_attributes_token3] = ACTIONS(4455), + [aux_sym_variable_attributes_token4] = ACTIONS(4455), + [aux_sym_variable_attributes_token5] = ACTIONS(4455), + [aux_sym__intrinsic_type_token1] = ACTIONS(4455), + [aux_sym__intrinsic_type_token2] = ACTIONS(4455), + [aux_sym__intrinsic_type_token3] = ACTIONS(4455), + [aux_sym__intrinsic_type_token4] = ACTIONS(4455), + [aux_sym__intrinsic_type_token6] = ACTIONS(4455), + [aux_sym__intrinsic_type_token7] = ACTIONS(4455), + [aux_sym__intrinsic_type_token8] = ACTIONS(4455), + [aux_sym__intrinsic_type_token9] = ACTIONS(4455), + [aux_sym__intrinsic_type_token10] = ACTIONS(4455), + [aux_sym_derived_type_token1] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4455), + [aux_sym_type_qualifier_token1] = ACTIONS(4455), + [aux_sym_type_qualifier_token2] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4455), + [aux_sym_equivalence_statement_token1] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [aux_sym_stop_statement_token1] = ACTIONS(4455), + [aux_sym_stop_statement_token2] = ACTIONS(4455), + [aux_sym_subroutine_call_token1] = ACTIONS(4455), + [aux_sym_keyword_statement_token1] = ACTIONS(4455), + [aux_sym_keyword_statement_token2] = ACTIONS(4455), + [aux_sym_keyword_statement_token3] = ACTIONS(4455), + [aux_sym_keyword_statement_token4] = ACTIONS(4455), + [aux_sym_keyword_statement_token6] = ACTIONS(4455), + [aux_sym_keyword_statement_token7] = ACTIONS(4455), + [aux_sym_include_statement_token1] = ACTIONS(4455), + [aux_sym_data_statement_token1] = ACTIONS(4455), + [aux_sym_do_loop_statement_token1] = ACTIONS(4455), + [aux_sym__inline_if_statement_token1] = ACTIONS(4455), + [aux_sym_end_if_statement_token1] = ACTIONS(4455), + [aux_sym_elseif_clause_token2] = ACTIONS(4455), + [aux_sym__inline_where_statement_token1] = ACTIONS(4455), + [aux_sym__forall_control_expression_token1] = ACTIONS(4455), + [aux_sym_select_case_statement_token1] = ACTIONS(4455), + [aux_sym_select_case_statement_token3] = ACTIONS(4455), + [aux_sym_select_type_statement_token1] = ACTIONS(4455), + [aux_sym_select_rank_statement_token2] = ACTIONS(4455), + [aux_sym_block_construct_token1] = ACTIONS(4455), + [aux_sym_associate_statement_token1] = ACTIONS(4455), + [aux_sym_format_statement_token1] = ACTIONS(4455), + [aux_sym_print_statement_token1] = ACTIONS(4455), + [aux_sym_open_statement_token1] = ACTIONS(4455), + [aux_sym_close_statement_token1] = ACTIONS(4455), + [aux_sym_inquire_statement_token1] = ACTIONS(4455), + [aux_sym_enum_statement_token1] = ACTIONS(4455), + [aux_sym_file_position_statement_token1] = ACTIONS(4455), + [aux_sym_file_position_statement_token2] = ACTIONS(4455), + [aux_sym_file_position_statement_token3] = ACTIONS(4455), + [aux_sym_file_position_statement_token4] = ACTIONS(4455), + [aux_sym_allocate_statement_token1] = ACTIONS(4455), + [aux_sym_entry_statement_token1] = ACTIONS(4455), + [aux_sym_logical_expression_token5] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_LPAREN_SLASH] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [aux_sym_boolean_literal_token1] = ACTIONS(4457), + [aux_sym_boolean_literal_token2] = ACTIONS(4457), + [aux_sym_null_literal_token1] = ACTIONS(4455), + [aux_sym_coarray_statement_token1] = ACTIONS(4455), + [aux_sym_coarray_statement_token2] = ACTIONS(4455), + [aux_sym_coarray_statement_token6] = ACTIONS(4455), + [aux_sym_coarray_statement_token8] = ACTIONS(4455), + [aux_sym_coarray_statement_token11] = ACTIONS(4455), + [aux_sym_coarray_statement_token12] = ACTIONS(4455), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4455), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4455), + [aux_sym_identifier_token1] = ACTIONS(4455), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4457), + [sym__float_literal] = ACTIONS(4457), + [sym__boz_literal] = ACTIONS(4457), + [sym__string_literal] = ACTIONS(4457), + [sym__string_literal_kind] = ACTIONS(4457), + }, + [1039] = { + [ts_builtin_sym_end] = ACTIONS(4593), + [aux_sym_preproc_include_token1] = ACTIONS(4591), + [aux_sym_preproc_def_token1] = ACTIONS(4591), + [aux_sym_preproc_if_token1] = ACTIONS(4591), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4591), + [sym_preproc_directive] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4593), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4615), - [aux_sym_end_program_statement_token1] = ACTIONS(4615), - [aux_sym_end_program_statement_token2] = ACTIONS(4615), - [aux_sym_module_statement_token1] = ACTIONS(4615), - [aux_sym_submodule_statement_token1] = ACTIONS(4615), - [aux_sym_interface_statement_token1] = ACTIONS(4615), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), - [aux_sym_subroutine_statement_token1] = ACTIONS(4615), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), - [aux_sym_function_statement_token1] = ACTIONS(4615), - [aux_sym_language_binding_token1] = ACTIONS(4615), - [aux_sym_procedure_attributes_token1] = ACTIONS(4615), - [aux_sym_procedure_attributes_token3] = ACTIONS(4615), - [aux_sym_contains_statement_token1] = ACTIONS(4615), - [aux_sym_use_statement_token1] = ACTIONS(4615), - [aux_sym_use_statement_token2] = ACTIONS(4615), - [aux_sym_implicit_statement_token1] = ACTIONS(4615), - [aux_sym_implicit_statement_token3] = ACTIONS(4615), - [aux_sym_implicit_statement_token4] = ACTIONS(4615), - [aux_sym_save_statement_token1] = ACTIONS(4615), - [aux_sym_private_statement_token1] = ACTIONS(4615), - [aux_sym_public_statement_token1] = ACTIONS(4615), - [aux_sym_namelist_statement_token1] = ACTIONS(4615), - [aux_sym_common_statement_token1] = ACTIONS(4615), - [aux_sym_import_statement_token1] = ACTIONS(4615), - [aux_sym_derived_type_definition_token1] = ACTIONS(4615), - [aux_sym_abstract_specifier_token1] = ACTIONS(4615), - [aux_sym_procedure_attribute_token6] = ACTIONS(4615), - [aux_sym_variable_attributes_token1] = ACTIONS(4615), - [aux_sym_variable_attributes_token2] = ACTIONS(4615), - [aux_sym_variable_attributes_token3] = ACTIONS(4615), - [aux_sym_variable_attributes_token4] = ACTIONS(4615), - [aux_sym_variable_attributes_token5] = ACTIONS(4615), - [aux_sym__intrinsic_type_token1] = ACTIONS(4615), - [aux_sym__intrinsic_type_token2] = ACTIONS(4615), - [aux_sym__intrinsic_type_token3] = ACTIONS(4615), - [aux_sym__intrinsic_type_token4] = ACTIONS(4615), - [aux_sym__intrinsic_type_token6] = ACTIONS(4615), - [aux_sym__intrinsic_type_token7] = ACTIONS(4615), - [aux_sym__intrinsic_type_token8] = ACTIONS(4615), - [aux_sym__intrinsic_type_token9] = ACTIONS(4615), - [aux_sym__intrinsic_type_token10] = ACTIONS(4615), - [aux_sym_derived_type_token1] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), - [aux_sym_type_qualifier_token1] = ACTIONS(4615), - [aux_sym_type_qualifier_token2] = ACTIONS(4615), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4615), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4615), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4615), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4615), - [aux_sym_equivalence_statement_token1] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4617), - [aux_sym_stop_statement_token1] = ACTIONS(4615), - [aux_sym_stop_statement_token2] = ACTIONS(4615), - [aux_sym_subroutine_call_token1] = ACTIONS(4615), - [aux_sym_keyword_statement_token1] = ACTIONS(4615), - [aux_sym_keyword_statement_token2] = ACTIONS(4615), - [aux_sym_keyword_statement_token3] = ACTIONS(4615), - [aux_sym_keyword_statement_token4] = ACTIONS(4615), - [aux_sym_keyword_statement_token6] = ACTIONS(4615), - [aux_sym_keyword_statement_token7] = ACTIONS(4615), - [aux_sym_include_statement_token1] = ACTIONS(4615), - [aux_sym_data_statement_token1] = ACTIONS(4615), - [aux_sym_do_loop_statement_token1] = ACTIONS(4615), - [aux_sym__inline_if_statement_token1] = ACTIONS(4615), - [aux_sym_end_if_statement_token1] = ACTIONS(4615), - [aux_sym_elseif_clause_token2] = ACTIONS(4615), - [aux_sym__inline_where_statement_token1] = ACTIONS(4615), - [aux_sym__forall_control_expression_token1] = ACTIONS(4615), - [aux_sym_select_case_statement_token1] = ACTIONS(4615), - [aux_sym_select_case_statement_token3] = ACTIONS(4615), - [aux_sym_select_type_statement_token1] = ACTIONS(4615), - [aux_sym_select_rank_statement_token2] = ACTIONS(4615), - [aux_sym_block_construct_token1] = ACTIONS(4615), - [aux_sym_associate_statement_token1] = ACTIONS(4615), - [aux_sym_format_statement_token1] = ACTIONS(4615), - [aux_sym_print_statement_token1] = ACTIONS(4615), - [aux_sym_open_statement_token1] = ACTIONS(4615), - [aux_sym_close_statement_token1] = ACTIONS(4615), - [aux_sym_inquire_statement_token1] = ACTIONS(4615), - [aux_sym_enum_statement_token1] = ACTIONS(4615), - [aux_sym_file_position_statement_token1] = ACTIONS(4615), - [aux_sym_file_position_statement_token2] = ACTIONS(4615), - [aux_sym_file_position_statement_token3] = ACTIONS(4615), - [aux_sym_file_position_statement_token4] = ACTIONS(4615), - [aux_sym_allocate_statement_token1] = ACTIONS(4615), - [aux_sym_entry_statement_token1] = ACTIONS(4615), - [aux_sym_logical_expression_token5] = ACTIONS(4617), - [anon_sym_DOT] = ACTIONS(4615), - [anon_sym_LPAREN_SLASH] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4617), - [aux_sym_boolean_literal_token1] = ACTIONS(4617), - [aux_sym_boolean_literal_token2] = ACTIONS(4617), - [aux_sym_null_literal_token1] = ACTIONS(4615), - [aux_sym_coarray_statement_token1] = ACTIONS(4615), - [aux_sym_coarray_statement_token2] = ACTIONS(4615), - [aux_sym_coarray_statement_token6] = ACTIONS(4615), - [aux_sym_coarray_statement_token8] = ACTIONS(4615), - [aux_sym_coarray_statement_token11] = ACTIONS(4615), - [aux_sym_coarray_statement_token12] = ACTIONS(4615), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), - [aux_sym_identifier_token1] = ACTIONS(4615), + [aux_sym_program_statement_token1] = ACTIONS(4591), + [aux_sym_end_program_statement_token1] = ACTIONS(4591), + [aux_sym_end_program_statement_token2] = ACTIONS(4591), + [aux_sym_module_statement_token1] = ACTIONS(4591), + [aux_sym_submodule_statement_token1] = ACTIONS(4591), + [aux_sym_interface_statement_token1] = ACTIONS(4591), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4591), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4591), + [aux_sym_subroutine_statement_token1] = ACTIONS(4591), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4591), + [aux_sym_function_statement_token1] = ACTIONS(4591), + [aux_sym_language_binding_token1] = ACTIONS(4591), + [aux_sym_procedure_attributes_token1] = ACTIONS(4591), + [aux_sym_procedure_attributes_token3] = ACTIONS(4591), + [aux_sym_contains_statement_token1] = ACTIONS(4591), + [aux_sym_use_statement_token1] = ACTIONS(4591), + [aux_sym_use_statement_token2] = ACTIONS(4591), + [aux_sym_implicit_statement_token1] = ACTIONS(4591), + [aux_sym_implicit_statement_token3] = ACTIONS(4591), + [aux_sym_implicit_statement_token4] = ACTIONS(4591), + [aux_sym_save_statement_token1] = ACTIONS(4591), + [aux_sym_private_statement_token1] = ACTIONS(4591), + [aux_sym_public_statement_token1] = ACTIONS(4591), + [aux_sym_namelist_statement_token1] = ACTIONS(4591), + [aux_sym_common_statement_token1] = ACTIONS(4591), + [aux_sym_import_statement_token1] = ACTIONS(4591), + [aux_sym_derived_type_definition_token1] = ACTIONS(4591), + [aux_sym_abstract_specifier_token1] = ACTIONS(4591), + [aux_sym_procedure_attribute_token6] = ACTIONS(4591), + [aux_sym_variable_attributes_token1] = ACTIONS(4591), + [aux_sym_variable_attributes_token2] = ACTIONS(4591), + [aux_sym_variable_attributes_token3] = ACTIONS(4591), + [aux_sym_variable_attributes_token4] = ACTIONS(4591), + [aux_sym_variable_attributes_token5] = ACTIONS(4591), + [aux_sym__intrinsic_type_token1] = ACTIONS(4591), + [aux_sym__intrinsic_type_token2] = ACTIONS(4591), + [aux_sym__intrinsic_type_token3] = ACTIONS(4591), + [aux_sym__intrinsic_type_token4] = ACTIONS(4591), + [aux_sym__intrinsic_type_token6] = ACTIONS(4591), + [aux_sym__intrinsic_type_token7] = ACTIONS(4591), + [aux_sym__intrinsic_type_token8] = ACTIONS(4591), + [aux_sym__intrinsic_type_token9] = ACTIONS(4591), + [aux_sym__intrinsic_type_token10] = ACTIONS(4591), + [aux_sym_derived_type_token1] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4591), + [aux_sym_type_qualifier_token1] = ACTIONS(4591), + [aux_sym_type_qualifier_token2] = ACTIONS(4591), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4591), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4591), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4591), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4591), + [aux_sym_equivalence_statement_token1] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4593), + [aux_sym_stop_statement_token1] = ACTIONS(4591), + [aux_sym_stop_statement_token2] = ACTIONS(4591), + [aux_sym_subroutine_call_token1] = ACTIONS(4591), + [aux_sym_keyword_statement_token1] = ACTIONS(4591), + [aux_sym_keyword_statement_token2] = ACTIONS(4591), + [aux_sym_keyword_statement_token3] = ACTIONS(4591), + [aux_sym_keyword_statement_token4] = ACTIONS(4591), + [aux_sym_keyword_statement_token6] = ACTIONS(4591), + [aux_sym_keyword_statement_token7] = ACTIONS(4591), + [aux_sym_include_statement_token1] = ACTIONS(4591), + [aux_sym_data_statement_token1] = ACTIONS(4591), + [aux_sym_do_loop_statement_token1] = ACTIONS(4591), + [aux_sym__inline_if_statement_token1] = ACTIONS(4591), + [aux_sym_end_if_statement_token1] = ACTIONS(4591), + [aux_sym_elseif_clause_token2] = ACTIONS(4591), + [aux_sym__inline_where_statement_token1] = ACTIONS(4591), + [aux_sym__forall_control_expression_token1] = ACTIONS(4591), + [aux_sym_select_case_statement_token1] = ACTIONS(4591), + [aux_sym_select_case_statement_token3] = ACTIONS(4591), + [aux_sym_select_type_statement_token1] = ACTIONS(4591), + [aux_sym_select_rank_statement_token2] = ACTIONS(4591), + [aux_sym_block_construct_token1] = ACTIONS(4591), + [aux_sym_associate_statement_token1] = ACTIONS(4591), + [aux_sym_format_statement_token1] = ACTIONS(4591), + [aux_sym_print_statement_token1] = ACTIONS(4591), + [aux_sym_open_statement_token1] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4591), + [aux_sym_inquire_statement_token1] = ACTIONS(4591), + [aux_sym_enum_statement_token1] = ACTIONS(4591), + [aux_sym_file_position_statement_token1] = ACTIONS(4591), + [aux_sym_file_position_statement_token2] = ACTIONS(4591), + [aux_sym_file_position_statement_token3] = ACTIONS(4591), + [aux_sym_file_position_statement_token4] = ACTIONS(4591), + [aux_sym_allocate_statement_token1] = ACTIONS(4591), + [aux_sym_entry_statement_token1] = ACTIONS(4591), + [aux_sym_logical_expression_token5] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_LPAREN_SLASH] = ACTIONS(4593), + [anon_sym_LBRACK] = ACTIONS(4593), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [aux_sym_null_literal_token1] = ACTIONS(4591), + [aux_sym_coarray_statement_token1] = ACTIONS(4591), + [aux_sym_coarray_statement_token2] = ACTIONS(4591), + [aux_sym_coarray_statement_token6] = ACTIONS(4591), + [aux_sym_coarray_statement_token8] = ACTIONS(4591), + [aux_sym_coarray_statement_token11] = ACTIONS(4591), + [aux_sym_coarray_statement_token12] = ACTIONS(4591), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4591), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4591), + [aux_sym_identifier_token1] = ACTIONS(4591), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4617), - [sym__float_literal] = ACTIONS(4617), - [sym__boz_literal] = ACTIONS(4617), - [sym__string_literal] = ACTIONS(4617), - [sym__string_literal_kind] = ACTIONS(4617), + [sym__integer_literal] = ACTIONS(4593), + [sym__float_literal] = ACTIONS(4593), + [sym__boz_literal] = ACTIONS(4593), + [sym__string_literal] = ACTIONS(4593), + [sym__string_literal_kind] = ACTIONS(4593), }, - [1059] = { - [aux_sym_preproc_include_token1] = ACTIONS(4499), - [aux_sym_preproc_def_token1] = ACTIONS(4499), - [aux_sym_preproc_if_token1] = ACTIONS(4499), - [aux_sym_preproc_if_token2] = ACTIONS(4499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4499), - [sym_preproc_directive] = ACTIONS(4499), - [anon_sym_LPAREN2] = ACTIONS(4499), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), + [1040] = { + [aux_sym_preproc_include_token1] = ACTIONS(4375), + [aux_sym_preproc_def_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token2] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4375), + [sym_preproc_directive] = ACTIONS(4375), + [anon_sym_LPAREN2] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4377), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4499), - [aux_sym_end_program_statement_token1] = ACTIONS(4499), - [aux_sym_end_program_statement_token2] = ACTIONS(4499), - [aux_sym_module_statement_token1] = ACTIONS(4499), - [aux_sym_submodule_statement_token1] = ACTIONS(4499), - [aux_sym_interface_statement_token1] = ACTIONS(4499), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4499), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4499), - [aux_sym_subroutine_statement_token1] = ACTIONS(4499), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4499), - [aux_sym_function_statement_token1] = ACTIONS(4499), - [aux_sym_language_binding_token1] = ACTIONS(4499), - [aux_sym_procedure_attributes_token1] = ACTIONS(4499), - [aux_sym_procedure_attributes_token3] = ACTIONS(4499), - [aux_sym_contains_statement_token1] = ACTIONS(4499), - [aux_sym_use_statement_token1] = ACTIONS(4499), - [aux_sym_use_statement_token2] = ACTIONS(4499), - [aux_sym_implicit_statement_token1] = ACTIONS(4499), - [aux_sym_implicit_statement_token3] = ACTIONS(4499), - [aux_sym_implicit_statement_token4] = ACTIONS(4499), - [aux_sym_save_statement_token1] = ACTIONS(4499), - [aux_sym_private_statement_token1] = ACTIONS(4499), - [aux_sym_public_statement_token1] = ACTIONS(4499), - [aux_sym_namelist_statement_token1] = ACTIONS(4499), - [aux_sym_common_statement_token1] = ACTIONS(4499), - [aux_sym_import_statement_token1] = ACTIONS(4499), - [aux_sym_derived_type_definition_token1] = ACTIONS(4499), - [aux_sym_abstract_specifier_token1] = ACTIONS(4499), - [aux_sym_procedure_attribute_token6] = ACTIONS(4499), - [aux_sym_variable_attributes_token1] = ACTIONS(4499), - [aux_sym_variable_attributes_token2] = ACTIONS(4499), - [aux_sym_variable_attributes_token3] = ACTIONS(4499), - [aux_sym_variable_attributes_token4] = ACTIONS(4499), - [aux_sym_variable_attributes_token5] = ACTIONS(4499), - [aux_sym__intrinsic_type_token1] = ACTIONS(4499), - [aux_sym__intrinsic_type_token2] = ACTIONS(4499), - [aux_sym__intrinsic_type_token3] = ACTIONS(4499), - [aux_sym__intrinsic_type_token4] = ACTIONS(4499), - [aux_sym__intrinsic_type_token6] = ACTIONS(4499), - [aux_sym__intrinsic_type_token7] = ACTIONS(4499), - [aux_sym__intrinsic_type_token8] = ACTIONS(4499), - [aux_sym__intrinsic_type_token9] = ACTIONS(4499), - [aux_sym__intrinsic_type_token10] = ACTIONS(4499), - [aux_sym_derived_type_token1] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4499), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4499), - [aux_sym_type_qualifier_token1] = ACTIONS(4499), - [aux_sym_type_qualifier_token2] = ACTIONS(4499), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4499), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4499), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4499), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4499), - [aux_sym_equivalence_statement_token1] = ACTIONS(4499), - [anon_sym_SEMI] = ACTIONS(4501), - [aux_sym_stop_statement_token1] = ACTIONS(4499), - [aux_sym_stop_statement_token2] = ACTIONS(4499), - [aux_sym_subroutine_call_token1] = ACTIONS(4499), - [aux_sym_keyword_statement_token1] = ACTIONS(4499), - [aux_sym_keyword_statement_token2] = ACTIONS(4499), - [aux_sym_keyword_statement_token3] = ACTIONS(4499), - [aux_sym_keyword_statement_token4] = ACTIONS(4499), - [aux_sym_keyword_statement_token6] = ACTIONS(4499), - [aux_sym_keyword_statement_token7] = ACTIONS(4499), - [aux_sym_include_statement_token1] = ACTIONS(4499), - [aux_sym_data_statement_token1] = ACTIONS(4499), - [aux_sym_do_loop_statement_token1] = ACTIONS(4499), - [aux_sym__inline_if_statement_token1] = ACTIONS(4499), - [aux_sym_end_if_statement_token1] = ACTIONS(4499), - [aux_sym_elseif_clause_token2] = ACTIONS(4499), - [aux_sym__inline_where_statement_token1] = ACTIONS(4499), - [aux_sym__forall_control_expression_token1] = ACTIONS(4499), - [aux_sym_select_case_statement_token1] = ACTIONS(4499), - [aux_sym_select_case_statement_token3] = ACTIONS(4499), - [aux_sym_select_type_statement_token1] = ACTIONS(4499), - [aux_sym_select_rank_statement_token2] = ACTIONS(4499), - [aux_sym_block_construct_token1] = ACTIONS(4499), - [aux_sym_associate_statement_token1] = ACTIONS(4499), - [aux_sym_format_statement_token1] = ACTIONS(4499), - [aux_sym_print_statement_token1] = ACTIONS(4499), - [aux_sym_open_statement_token1] = ACTIONS(4499), - [aux_sym_close_statement_token1] = ACTIONS(4499), - [aux_sym_inquire_statement_token1] = ACTIONS(4499), - [aux_sym_enum_statement_token1] = ACTIONS(4499), - [aux_sym_file_position_statement_token1] = ACTIONS(4499), - [aux_sym_file_position_statement_token2] = ACTIONS(4499), - [aux_sym_file_position_statement_token3] = ACTIONS(4499), - [aux_sym_file_position_statement_token4] = ACTIONS(4499), - [aux_sym_allocate_statement_token1] = ACTIONS(4499), - [aux_sym_entry_statement_token1] = ACTIONS(4499), - [aux_sym_logical_expression_token5] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4499), - [anon_sym_LPAREN_SLASH] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [aux_sym_boolean_literal_token1] = ACTIONS(4501), - [aux_sym_boolean_literal_token2] = ACTIONS(4501), - [aux_sym_null_literal_token1] = ACTIONS(4499), - [aux_sym_coarray_statement_token1] = ACTIONS(4499), - [aux_sym_coarray_statement_token2] = ACTIONS(4499), - [aux_sym_coarray_statement_token6] = ACTIONS(4499), - [aux_sym_coarray_statement_token8] = ACTIONS(4499), - [aux_sym_coarray_statement_token11] = ACTIONS(4499), - [aux_sym_coarray_statement_token12] = ACTIONS(4499), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4499), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4499), - [aux_sym_identifier_token1] = ACTIONS(4499), + [aux_sym_program_statement_token1] = ACTIONS(4375), + [aux_sym_end_program_statement_token1] = ACTIONS(4375), + [aux_sym_end_program_statement_token2] = ACTIONS(4375), + [aux_sym_module_statement_token1] = ACTIONS(4375), + [aux_sym_submodule_statement_token1] = ACTIONS(4375), + [aux_sym_interface_statement_token1] = ACTIONS(4375), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4375), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4375), + [aux_sym_subroutine_statement_token1] = ACTIONS(4375), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4375), + [aux_sym_function_statement_token1] = ACTIONS(4375), + [aux_sym_language_binding_token1] = ACTIONS(4375), + [aux_sym_procedure_attributes_token1] = ACTIONS(4375), + [aux_sym_procedure_attributes_token3] = ACTIONS(4375), + [aux_sym_contains_statement_token1] = ACTIONS(4375), + [aux_sym_use_statement_token1] = ACTIONS(4375), + [aux_sym_use_statement_token2] = ACTIONS(4375), + [aux_sym_implicit_statement_token1] = ACTIONS(4375), + [aux_sym_implicit_statement_token3] = ACTIONS(4375), + [aux_sym_implicit_statement_token4] = ACTIONS(4375), + [aux_sym_save_statement_token1] = ACTIONS(4375), + [aux_sym_private_statement_token1] = ACTIONS(4375), + [aux_sym_public_statement_token1] = ACTIONS(4375), + [aux_sym_namelist_statement_token1] = ACTIONS(4375), + [aux_sym_common_statement_token1] = ACTIONS(4375), + [aux_sym_import_statement_token1] = ACTIONS(4375), + [aux_sym_derived_type_definition_token1] = ACTIONS(4375), + [aux_sym_abstract_specifier_token1] = ACTIONS(4375), + [aux_sym_procedure_attribute_token6] = ACTIONS(4375), + [aux_sym_variable_attributes_token1] = ACTIONS(4375), + [aux_sym_variable_attributes_token2] = ACTIONS(4375), + [aux_sym_variable_attributes_token3] = ACTIONS(4375), + [aux_sym_variable_attributes_token4] = ACTIONS(4375), + [aux_sym_variable_attributes_token5] = ACTIONS(4375), + [aux_sym__intrinsic_type_token1] = ACTIONS(4375), + [aux_sym__intrinsic_type_token2] = ACTIONS(4375), + [aux_sym__intrinsic_type_token3] = ACTIONS(4375), + [aux_sym__intrinsic_type_token4] = ACTIONS(4375), + [aux_sym__intrinsic_type_token6] = ACTIONS(4375), + [aux_sym__intrinsic_type_token7] = ACTIONS(4375), + [aux_sym__intrinsic_type_token8] = ACTIONS(4375), + [aux_sym__intrinsic_type_token9] = ACTIONS(4375), + [aux_sym__intrinsic_type_token10] = ACTIONS(4375), + [aux_sym_derived_type_token1] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4375), + [aux_sym_type_qualifier_token1] = ACTIONS(4375), + [aux_sym_type_qualifier_token2] = ACTIONS(4375), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4375), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4375), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4375), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4375), + [aux_sym_equivalence_statement_token1] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [aux_sym_stop_statement_token1] = ACTIONS(4375), + [aux_sym_stop_statement_token2] = ACTIONS(4375), + [aux_sym_subroutine_call_token1] = ACTIONS(4375), + [aux_sym_keyword_statement_token1] = ACTIONS(4375), + [aux_sym_keyword_statement_token2] = ACTIONS(4375), + [aux_sym_keyword_statement_token3] = ACTIONS(4375), + [aux_sym_keyword_statement_token4] = ACTIONS(4375), + [aux_sym_keyword_statement_token6] = ACTIONS(4375), + [aux_sym_keyword_statement_token7] = ACTIONS(4375), + [aux_sym_include_statement_token1] = ACTIONS(4375), + [aux_sym_data_statement_token1] = ACTIONS(4375), + [aux_sym_do_loop_statement_token1] = ACTIONS(4375), + [aux_sym__inline_if_statement_token1] = ACTIONS(4375), + [aux_sym_end_if_statement_token1] = ACTIONS(4375), + [aux_sym_elseif_clause_token2] = ACTIONS(4375), + [aux_sym__inline_where_statement_token1] = ACTIONS(4375), + [aux_sym__forall_control_expression_token1] = ACTIONS(4375), + [aux_sym_select_case_statement_token1] = ACTIONS(4375), + [aux_sym_select_case_statement_token3] = ACTIONS(4375), + [aux_sym_select_type_statement_token1] = ACTIONS(4375), + [aux_sym_select_rank_statement_token2] = ACTIONS(4375), + [aux_sym_block_construct_token1] = ACTIONS(4375), + [aux_sym_associate_statement_token1] = ACTIONS(4375), + [aux_sym_format_statement_token1] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_inquire_statement_token1] = ACTIONS(4375), + [aux_sym_enum_statement_token1] = ACTIONS(4375), + [aux_sym_file_position_statement_token1] = ACTIONS(4375), + [aux_sym_file_position_statement_token2] = ACTIONS(4375), + [aux_sym_file_position_statement_token3] = ACTIONS(4375), + [aux_sym_file_position_statement_token4] = ACTIONS(4375), + [aux_sym_allocate_statement_token1] = ACTIONS(4375), + [aux_sym_entry_statement_token1] = ACTIONS(4375), + [aux_sym_logical_expression_token5] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_LPAREN_SLASH] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4377), + [aux_sym_boolean_literal_token2] = ACTIONS(4377), + [aux_sym_null_literal_token1] = ACTIONS(4375), + [aux_sym_coarray_statement_token1] = ACTIONS(4375), + [aux_sym_coarray_statement_token2] = ACTIONS(4375), + [aux_sym_coarray_statement_token6] = ACTIONS(4375), + [aux_sym_coarray_statement_token8] = ACTIONS(4375), + [aux_sym_coarray_statement_token11] = ACTIONS(4375), + [aux_sym_coarray_statement_token12] = ACTIONS(4375), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4375), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4375), + [aux_sym_identifier_token1] = ACTIONS(4375), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4501), - [sym__float_literal] = ACTIONS(4501), - [sym__boz_literal] = ACTIONS(4501), - [sym__string_literal] = ACTIONS(4501), - [sym__string_literal_kind] = ACTIONS(4501), + [sym__integer_literal] = ACTIONS(4377), + [sym__float_literal] = ACTIONS(4377), + [sym__boz_literal] = ACTIONS(4377), + [sym__string_literal] = ACTIONS(4377), + [sym__string_literal_kind] = ACTIONS(4377), }, - [1060] = { - [aux_sym_preproc_include_token1] = ACTIONS(4379), - [aux_sym_preproc_def_token1] = ACTIONS(4379), - [aux_sym_preproc_if_token1] = ACTIONS(4379), - [aux_sym_preproc_if_token2] = ACTIONS(4379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), - [sym_preproc_directive] = ACTIONS(4379), - [anon_sym_LPAREN2] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), + [1041] = { + [aux_sym_preproc_include_token1] = ACTIONS(4439), + [aux_sym_preproc_def_token1] = ACTIONS(4439), + [aux_sym_preproc_if_token1] = ACTIONS(4439), + [aux_sym_preproc_if_token2] = ACTIONS(4439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4439), + [sym_preproc_directive] = ACTIONS(4439), + [anon_sym_LPAREN2] = ACTIONS(4439), + [anon_sym_PLUS] = ACTIONS(4441), + [anon_sym_DASH] = ACTIONS(4441), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4379), - [aux_sym_end_program_statement_token1] = ACTIONS(4379), - [aux_sym_end_program_statement_token2] = ACTIONS(4379), - [aux_sym_module_statement_token1] = ACTIONS(4379), - [aux_sym_submodule_statement_token1] = ACTIONS(4379), - [aux_sym_interface_statement_token1] = ACTIONS(4379), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), - [aux_sym_subroutine_statement_token1] = ACTIONS(4379), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), - [aux_sym_function_statement_token1] = ACTIONS(4379), - [aux_sym_language_binding_token1] = ACTIONS(4379), - [aux_sym_procedure_attributes_token1] = ACTIONS(4379), - [aux_sym_procedure_attributes_token3] = ACTIONS(4379), - [aux_sym_contains_statement_token1] = ACTIONS(4379), - [aux_sym_use_statement_token1] = ACTIONS(4379), - [aux_sym_use_statement_token2] = ACTIONS(4379), - [aux_sym_implicit_statement_token1] = ACTIONS(4379), - [aux_sym_implicit_statement_token3] = ACTIONS(4379), - [aux_sym_implicit_statement_token4] = ACTIONS(4379), - [aux_sym_save_statement_token1] = ACTIONS(4379), - [aux_sym_private_statement_token1] = ACTIONS(4379), - [aux_sym_public_statement_token1] = ACTIONS(4379), - [aux_sym_namelist_statement_token1] = ACTIONS(4379), - [aux_sym_common_statement_token1] = ACTIONS(4379), - [aux_sym_import_statement_token1] = ACTIONS(4379), - [aux_sym_derived_type_definition_token1] = ACTIONS(4379), - [aux_sym_abstract_specifier_token1] = ACTIONS(4379), - [aux_sym_procedure_attribute_token6] = ACTIONS(4379), - [aux_sym_variable_attributes_token1] = ACTIONS(4379), - [aux_sym_variable_attributes_token2] = ACTIONS(4379), - [aux_sym_variable_attributes_token3] = ACTIONS(4379), - [aux_sym_variable_attributes_token4] = ACTIONS(4379), - [aux_sym_variable_attributes_token5] = ACTIONS(4379), - [aux_sym__intrinsic_type_token1] = ACTIONS(4379), - [aux_sym__intrinsic_type_token2] = ACTIONS(4379), - [aux_sym__intrinsic_type_token3] = ACTIONS(4379), - [aux_sym__intrinsic_type_token4] = ACTIONS(4379), - [aux_sym__intrinsic_type_token6] = ACTIONS(4379), - [aux_sym__intrinsic_type_token7] = ACTIONS(4379), - [aux_sym__intrinsic_type_token8] = ACTIONS(4379), - [aux_sym__intrinsic_type_token9] = ACTIONS(4379), - [aux_sym__intrinsic_type_token10] = ACTIONS(4379), - [aux_sym_derived_type_token1] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), - [aux_sym_type_qualifier_token1] = ACTIONS(4379), - [aux_sym_type_qualifier_token2] = ACTIONS(4379), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4379), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4379), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4379), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4379), - [aux_sym_equivalence_statement_token1] = ACTIONS(4379), - [anon_sym_SEMI] = ACTIONS(4381), - [aux_sym_stop_statement_token1] = ACTIONS(4379), - [aux_sym_stop_statement_token2] = ACTIONS(4379), - [aux_sym_subroutine_call_token1] = ACTIONS(4379), - [aux_sym_keyword_statement_token1] = ACTIONS(4379), - [aux_sym_keyword_statement_token2] = ACTIONS(4379), - [aux_sym_keyword_statement_token3] = ACTIONS(4379), - [aux_sym_keyword_statement_token4] = ACTIONS(4379), - [aux_sym_keyword_statement_token6] = ACTIONS(4379), - [aux_sym_keyword_statement_token7] = ACTIONS(4379), - [aux_sym_include_statement_token1] = ACTIONS(4379), - [aux_sym_data_statement_token1] = ACTIONS(4379), - [aux_sym_do_loop_statement_token1] = ACTIONS(4379), - [aux_sym__inline_if_statement_token1] = ACTIONS(4379), - [aux_sym_end_if_statement_token1] = ACTIONS(4379), - [aux_sym_elseif_clause_token2] = ACTIONS(4379), - [aux_sym__inline_where_statement_token1] = ACTIONS(4379), - [aux_sym__forall_control_expression_token1] = ACTIONS(4379), - [aux_sym_select_case_statement_token1] = ACTIONS(4379), - [aux_sym_select_case_statement_token3] = ACTIONS(4379), - [aux_sym_select_type_statement_token1] = ACTIONS(4379), - [aux_sym_select_rank_statement_token2] = ACTIONS(4379), - [aux_sym_block_construct_token1] = ACTIONS(4379), - [aux_sym_associate_statement_token1] = ACTIONS(4379), - [aux_sym_format_statement_token1] = ACTIONS(4379), - [aux_sym_print_statement_token1] = ACTIONS(4379), - [aux_sym_open_statement_token1] = ACTIONS(4379), - [aux_sym_close_statement_token1] = ACTIONS(4379), - [aux_sym_inquire_statement_token1] = ACTIONS(4379), - [aux_sym_enum_statement_token1] = ACTIONS(4379), - [aux_sym_file_position_statement_token1] = ACTIONS(4379), - [aux_sym_file_position_statement_token2] = ACTIONS(4379), - [aux_sym_file_position_statement_token3] = ACTIONS(4379), - [aux_sym_file_position_statement_token4] = ACTIONS(4379), - [aux_sym_allocate_statement_token1] = ACTIONS(4379), - [aux_sym_entry_statement_token1] = ACTIONS(4379), - [aux_sym_logical_expression_token5] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4379), - [anon_sym_LPAREN_SLASH] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4381), - [aux_sym_boolean_literal_token1] = ACTIONS(4381), - [aux_sym_boolean_literal_token2] = ACTIONS(4381), - [aux_sym_null_literal_token1] = ACTIONS(4379), - [aux_sym_coarray_statement_token1] = ACTIONS(4379), - [aux_sym_coarray_statement_token2] = ACTIONS(4379), - [aux_sym_coarray_statement_token6] = ACTIONS(4379), - [aux_sym_coarray_statement_token8] = ACTIONS(4379), - [aux_sym_coarray_statement_token11] = ACTIONS(4379), - [aux_sym_coarray_statement_token12] = ACTIONS(4379), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), - [aux_sym_identifier_token1] = ACTIONS(4379), + [aux_sym_program_statement_token1] = ACTIONS(4439), + [aux_sym_end_program_statement_token1] = ACTIONS(4439), + [aux_sym_end_program_statement_token2] = ACTIONS(4439), + [aux_sym_module_statement_token1] = ACTIONS(4439), + [aux_sym_submodule_statement_token1] = ACTIONS(4439), + [aux_sym_interface_statement_token1] = ACTIONS(4439), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4439), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4439), + [aux_sym_subroutine_statement_token1] = ACTIONS(4439), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4439), + [aux_sym_function_statement_token1] = ACTIONS(4439), + [aux_sym_language_binding_token1] = ACTIONS(4439), + [aux_sym_procedure_attributes_token1] = ACTIONS(4439), + [aux_sym_procedure_attributes_token3] = ACTIONS(4439), + [aux_sym_contains_statement_token1] = ACTIONS(4439), + [aux_sym_use_statement_token1] = ACTIONS(4439), + [aux_sym_use_statement_token2] = ACTIONS(4439), + [aux_sym_implicit_statement_token1] = ACTIONS(4439), + [aux_sym_implicit_statement_token3] = ACTIONS(4439), + [aux_sym_implicit_statement_token4] = ACTIONS(4439), + [aux_sym_save_statement_token1] = ACTIONS(4439), + [aux_sym_private_statement_token1] = ACTIONS(4439), + [aux_sym_public_statement_token1] = ACTIONS(4439), + [aux_sym_namelist_statement_token1] = ACTIONS(4439), + [aux_sym_common_statement_token1] = ACTIONS(4439), + [aux_sym_import_statement_token1] = ACTIONS(4439), + [aux_sym_derived_type_definition_token1] = ACTIONS(4439), + [aux_sym_abstract_specifier_token1] = ACTIONS(4439), + [aux_sym_procedure_attribute_token6] = ACTIONS(4439), + [aux_sym_variable_attributes_token1] = ACTIONS(4439), + [aux_sym_variable_attributes_token2] = ACTIONS(4439), + [aux_sym_variable_attributes_token3] = ACTIONS(4439), + [aux_sym_variable_attributes_token4] = ACTIONS(4439), + [aux_sym_variable_attributes_token5] = ACTIONS(4439), + [aux_sym__intrinsic_type_token1] = ACTIONS(4439), + [aux_sym__intrinsic_type_token2] = ACTIONS(4439), + [aux_sym__intrinsic_type_token3] = ACTIONS(4439), + [aux_sym__intrinsic_type_token4] = ACTIONS(4439), + [aux_sym__intrinsic_type_token6] = ACTIONS(4439), + [aux_sym__intrinsic_type_token7] = ACTIONS(4439), + [aux_sym__intrinsic_type_token8] = ACTIONS(4439), + [aux_sym__intrinsic_type_token9] = ACTIONS(4439), + [aux_sym__intrinsic_type_token10] = ACTIONS(4439), + [aux_sym_derived_type_token1] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4439), + [aux_sym_type_qualifier_token1] = ACTIONS(4439), + [aux_sym_type_qualifier_token2] = ACTIONS(4439), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4439), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4439), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4439), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4439), + [aux_sym_equivalence_statement_token1] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [aux_sym_stop_statement_token1] = ACTIONS(4439), + [aux_sym_stop_statement_token2] = ACTIONS(4439), + [aux_sym_subroutine_call_token1] = ACTIONS(4439), + [aux_sym_keyword_statement_token1] = ACTIONS(4439), + [aux_sym_keyword_statement_token2] = ACTIONS(4439), + [aux_sym_keyword_statement_token3] = ACTIONS(4439), + [aux_sym_keyword_statement_token4] = ACTIONS(4439), + [aux_sym_keyword_statement_token6] = ACTIONS(4439), + [aux_sym_keyword_statement_token7] = ACTIONS(4439), + [aux_sym_include_statement_token1] = ACTIONS(4439), + [aux_sym_data_statement_token1] = ACTIONS(4439), + [aux_sym_do_loop_statement_token1] = ACTIONS(4439), + [aux_sym__inline_if_statement_token1] = ACTIONS(4439), + [aux_sym_end_if_statement_token1] = ACTIONS(4439), + [aux_sym_elseif_clause_token2] = ACTIONS(4439), + [aux_sym__inline_where_statement_token1] = ACTIONS(4439), + [aux_sym__forall_control_expression_token1] = ACTIONS(4439), + [aux_sym_select_case_statement_token1] = ACTIONS(4439), + [aux_sym_select_case_statement_token3] = ACTIONS(4439), + [aux_sym_select_type_statement_token1] = ACTIONS(4439), + [aux_sym_select_rank_statement_token2] = ACTIONS(4439), + [aux_sym_block_construct_token1] = ACTIONS(4439), + [aux_sym_associate_statement_token1] = ACTIONS(4439), + [aux_sym_format_statement_token1] = ACTIONS(4439), + [aux_sym_print_statement_token1] = ACTIONS(4439), + [aux_sym_open_statement_token1] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4439), + [aux_sym_inquire_statement_token1] = ACTIONS(4439), + [aux_sym_enum_statement_token1] = ACTIONS(4439), + [aux_sym_file_position_statement_token1] = ACTIONS(4439), + [aux_sym_file_position_statement_token2] = ACTIONS(4439), + [aux_sym_file_position_statement_token3] = ACTIONS(4439), + [aux_sym_file_position_statement_token4] = ACTIONS(4439), + [aux_sym_allocate_statement_token1] = ACTIONS(4439), + [aux_sym_entry_statement_token1] = ACTIONS(4439), + [aux_sym_logical_expression_token5] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_LPAREN_SLASH] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [aux_sym_null_literal_token1] = ACTIONS(4439), + [aux_sym_coarray_statement_token1] = ACTIONS(4439), + [aux_sym_coarray_statement_token2] = ACTIONS(4439), + [aux_sym_coarray_statement_token6] = ACTIONS(4439), + [aux_sym_coarray_statement_token8] = ACTIONS(4439), + [aux_sym_coarray_statement_token11] = ACTIONS(4439), + [aux_sym_coarray_statement_token12] = ACTIONS(4439), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4439), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4439), + [aux_sym_identifier_token1] = ACTIONS(4439), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4381), - [sym__float_literal] = ACTIONS(4381), - [sym__boz_literal] = ACTIONS(4381), - [sym__string_literal] = ACTIONS(4381), - [sym__string_literal_kind] = ACTIONS(4381), + [sym__integer_literal] = ACTIONS(4441), + [sym__float_literal] = ACTIONS(4441), + [sym__boz_literal] = ACTIONS(4441), + [sym__string_literal] = ACTIONS(4441), + [sym__string_literal_kind] = ACTIONS(4441), }, - [1061] = { - [ts_builtin_sym_end] = ACTIONS(4585), + [1042] = { [aux_sym_preproc_include_token1] = ACTIONS(4583), [aux_sym_preproc_def_token1] = ACTIONS(4583), [aux_sym_preproc_if_token1] = ACTIONS(4583), + [aux_sym_preproc_if_token2] = ACTIONS(4583), [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), [sym_preproc_directive] = ACTIONS(4583), @@ -233689,821 +231124,686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4585), [sym__string_literal_kind] = ACTIONS(4585), }, - [1062] = { - [aux_sym_preproc_include_token1] = ACTIONS(4469), - [aux_sym_preproc_def_token1] = ACTIONS(4469), - [aux_sym_preproc_if_token1] = ACTIONS(4469), - [aux_sym_preproc_if_token2] = ACTIONS(4469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4469), - [sym_preproc_directive] = ACTIONS(4469), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4469), - [aux_sym_end_program_statement_token1] = ACTIONS(4469), - [aux_sym_end_program_statement_token2] = ACTIONS(4469), - [aux_sym_module_statement_token1] = ACTIONS(4469), - [aux_sym_submodule_statement_token1] = ACTIONS(4469), - [aux_sym_interface_statement_token1] = ACTIONS(4469), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4469), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4469), - [aux_sym_subroutine_statement_token1] = ACTIONS(4469), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4469), - [aux_sym_function_statement_token1] = ACTIONS(4469), - [aux_sym_language_binding_token1] = ACTIONS(4469), - [aux_sym_procedure_attributes_token1] = ACTIONS(4469), - [aux_sym_procedure_attributes_token3] = ACTIONS(4469), - [aux_sym_contains_statement_token1] = ACTIONS(4469), - [aux_sym_use_statement_token1] = ACTIONS(4469), - [aux_sym_use_statement_token2] = ACTIONS(4469), - [aux_sym_implicit_statement_token1] = ACTIONS(4469), - [aux_sym_implicit_statement_token3] = ACTIONS(4469), - [aux_sym_implicit_statement_token4] = ACTIONS(4469), - [aux_sym_save_statement_token1] = ACTIONS(4469), - [aux_sym_private_statement_token1] = ACTIONS(4469), - [aux_sym_public_statement_token1] = ACTIONS(4469), - [aux_sym_namelist_statement_token1] = ACTIONS(4469), - [aux_sym_common_statement_token1] = ACTIONS(4469), - [aux_sym_import_statement_token1] = ACTIONS(4469), - [aux_sym_derived_type_definition_token1] = ACTIONS(4469), - [aux_sym_abstract_specifier_token1] = ACTIONS(4469), - [aux_sym_procedure_attribute_token6] = ACTIONS(4469), - [aux_sym_variable_attributes_token1] = ACTIONS(4469), - [aux_sym_variable_attributes_token2] = ACTIONS(4469), - [aux_sym_variable_attributes_token3] = ACTIONS(4469), - [aux_sym_variable_attributes_token4] = ACTIONS(4469), - [aux_sym_variable_attributes_token5] = ACTIONS(4469), - [aux_sym__intrinsic_type_token1] = ACTIONS(4469), - [aux_sym__intrinsic_type_token2] = ACTIONS(4469), - [aux_sym__intrinsic_type_token3] = ACTIONS(4469), - [aux_sym__intrinsic_type_token4] = ACTIONS(4469), - [aux_sym__intrinsic_type_token6] = ACTIONS(4469), - [aux_sym__intrinsic_type_token7] = ACTIONS(4469), - [aux_sym__intrinsic_type_token8] = ACTIONS(4469), - [aux_sym__intrinsic_type_token9] = ACTIONS(4469), - [aux_sym__intrinsic_type_token10] = ACTIONS(4469), - [aux_sym_derived_type_token1] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4469), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4469), - [aux_sym_type_qualifier_token1] = ACTIONS(4469), - [aux_sym_type_qualifier_token2] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4469), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4469), - [aux_sym_equivalence_statement_token1] = ACTIONS(4469), - [anon_sym_SEMI] = ACTIONS(4471), - [aux_sym_stop_statement_token1] = ACTIONS(4469), - [aux_sym_stop_statement_token2] = ACTIONS(4469), - [aux_sym_subroutine_call_token1] = ACTIONS(4469), - [aux_sym_keyword_statement_token1] = ACTIONS(4469), - [aux_sym_keyword_statement_token2] = ACTIONS(4469), - [aux_sym_keyword_statement_token3] = ACTIONS(4469), - [aux_sym_keyword_statement_token4] = ACTIONS(4469), - [aux_sym_keyword_statement_token6] = ACTIONS(4469), - [aux_sym_keyword_statement_token7] = ACTIONS(4469), - [aux_sym_include_statement_token1] = ACTIONS(4469), - [aux_sym_data_statement_token1] = ACTIONS(4469), - [aux_sym_do_loop_statement_token1] = ACTIONS(4469), - [aux_sym__inline_if_statement_token1] = ACTIONS(4469), - [aux_sym_end_if_statement_token1] = ACTIONS(4469), - [aux_sym_elseif_clause_token2] = ACTIONS(4469), - [aux_sym__inline_where_statement_token1] = ACTIONS(4469), - [aux_sym__forall_control_expression_token1] = ACTIONS(4469), - [aux_sym_select_case_statement_token1] = ACTIONS(4469), - [aux_sym_select_case_statement_token3] = ACTIONS(4469), - [aux_sym_select_type_statement_token1] = ACTIONS(4469), - [aux_sym_select_rank_statement_token2] = ACTIONS(4469), - [aux_sym_block_construct_token1] = ACTIONS(4469), - [aux_sym_associate_statement_token1] = ACTIONS(4469), - [aux_sym_format_statement_token1] = ACTIONS(4469), - [aux_sym_print_statement_token1] = ACTIONS(4469), - [aux_sym_open_statement_token1] = ACTIONS(4469), - [aux_sym_close_statement_token1] = ACTIONS(4469), - [aux_sym_inquire_statement_token1] = ACTIONS(4469), - [aux_sym_enum_statement_token1] = ACTIONS(4469), - [aux_sym_file_position_statement_token1] = ACTIONS(4469), - [aux_sym_file_position_statement_token2] = ACTIONS(4469), - [aux_sym_file_position_statement_token3] = ACTIONS(4469), - [aux_sym_file_position_statement_token4] = ACTIONS(4469), - [aux_sym_allocate_statement_token1] = ACTIONS(4469), - [aux_sym_entry_statement_token1] = ACTIONS(4469), - [aux_sym_logical_expression_token5] = ACTIONS(4471), - [anon_sym_DOT] = ACTIONS(4469), - [anon_sym_LPAREN_SLASH] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4471), - [aux_sym_boolean_literal_token1] = ACTIONS(4471), - [aux_sym_boolean_literal_token2] = ACTIONS(4471), - [aux_sym_null_literal_token1] = ACTIONS(4469), - [aux_sym_coarray_statement_token1] = ACTIONS(4469), - [aux_sym_coarray_statement_token2] = ACTIONS(4469), - [aux_sym_coarray_statement_token6] = ACTIONS(4469), - [aux_sym_coarray_statement_token8] = ACTIONS(4469), - [aux_sym_coarray_statement_token11] = ACTIONS(4469), - [aux_sym_coarray_statement_token12] = ACTIONS(4469), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4469), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4469), - [aux_sym_identifier_token1] = ACTIONS(4469), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4471), - [sym__float_literal] = ACTIONS(4471), - [sym__boz_literal] = ACTIONS(4471), - [sym__string_literal] = ACTIONS(4471), - [sym__string_literal_kind] = ACTIONS(4471), - }, - [1063] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [1064] = { - [aux_sym_preproc_include_token1] = ACTIONS(4477), - [aux_sym_preproc_def_token1] = ACTIONS(4477), - [aux_sym_preproc_if_token1] = ACTIONS(4477), - [aux_sym_preproc_if_token2] = ACTIONS(4477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4477), - [sym_preproc_directive] = ACTIONS(4477), - [anon_sym_LPAREN2] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4477), - [aux_sym_end_program_statement_token1] = ACTIONS(4477), - [aux_sym_end_program_statement_token2] = ACTIONS(4477), - [aux_sym_module_statement_token1] = ACTIONS(4477), - [aux_sym_submodule_statement_token1] = ACTIONS(4477), - [aux_sym_interface_statement_token1] = ACTIONS(4477), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4477), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4477), - [aux_sym_subroutine_statement_token1] = ACTIONS(4477), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4477), - [aux_sym_function_statement_token1] = ACTIONS(4477), - [aux_sym_language_binding_token1] = ACTIONS(4477), - [aux_sym_procedure_attributes_token1] = ACTIONS(4477), - [aux_sym_procedure_attributes_token3] = ACTIONS(4477), - [aux_sym_contains_statement_token1] = ACTIONS(4477), - [aux_sym_use_statement_token1] = ACTIONS(4477), - [aux_sym_use_statement_token2] = ACTIONS(4477), - [aux_sym_implicit_statement_token1] = ACTIONS(4477), - [aux_sym_implicit_statement_token3] = ACTIONS(4477), - [aux_sym_implicit_statement_token4] = ACTIONS(4477), - [aux_sym_save_statement_token1] = ACTIONS(4477), - [aux_sym_private_statement_token1] = ACTIONS(4477), - [aux_sym_public_statement_token1] = ACTIONS(4477), - [aux_sym_namelist_statement_token1] = ACTIONS(4477), - [aux_sym_common_statement_token1] = ACTIONS(4477), - [aux_sym_import_statement_token1] = ACTIONS(4477), - [aux_sym_derived_type_definition_token1] = ACTIONS(4477), - [aux_sym_abstract_specifier_token1] = ACTIONS(4477), - [aux_sym_procedure_attribute_token6] = ACTIONS(4477), - [aux_sym_variable_attributes_token1] = ACTIONS(4477), - [aux_sym_variable_attributes_token2] = ACTIONS(4477), - [aux_sym_variable_attributes_token3] = ACTIONS(4477), - [aux_sym_variable_attributes_token4] = ACTIONS(4477), - [aux_sym_variable_attributes_token5] = ACTIONS(4477), - [aux_sym__intrinsic_type_token1] = ACTIONS(4477), - [aux_sym__intrinsic_type_token2] = ACTIONS(4477), - [aux_sym__intrinsic_type_token3] = ACTIONS(4477), - [aux_sym__intrinsic_type_token4] = ACTIONS(4477), - [aux_sym__intrinsic_type_token6] = ACTIONS(4477), - [aux_sym__intrinsic_type_token7] = ACTIONS(4477), - [aux_sym__intrinsic_type_token8] = ACTIONS(4477), - [aux_sym__intrinsic_type_token9] = ACTIONS(4477), - [aux_sym__intrinsic_type_token10] = ACTIONS(4477), - [aux_sym_derived_type_token1] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4477), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4477), - [aux_sym_type_qualifier_token1] = ACTIONS(4477), - [aux_sym_type_qualifier_token2] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4477), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4477), - [aux_sym_equivalence_statement_token1] = ACTIONS(4477), - [anon_sym_SEMI] = ACTIONS(4479), - [aux_sym_stop_statement_token1] = ACTIONS(4477), - [aux_sym_stop_statement_token2] = ACTIONS(4477), - [aux_sym_subroutine_call_token1] = ACTIONS(4477), - [aux_sym_keyword_statement_token1] = ACTIONS(4477), - [aux_sym_keyword_statement_token2] = ACTIONS(4477), - [aux_sym_keyword_statement_token3] = ACTIONS(4477), - [aux_sym_keyword_statement_token4] = ACTIONS(4477), - [aux_sym_keyword_statement_token6] = ACTIONS(4477), - [aux_sym_keyword_statement_token7] = ACTIONS(4477), - [aux_sym_include_statement_token1] = ACTIONS(4477), - [aux_sym_data_statement_token1] = ACTIONS(4477), - [aux_sym_do_loop_statement_token1] = ACTIONS(4477), - [aux_sym__inline_if_statement_token1] = ACTIONS(4477), - [aux_sym_end_if_statement_token1] = ACTIONS(4477), - [aux_sym_elseif_clause_token2] = ACTIONS(4477), - [aux_sym__inline_where_statement_token1] = ACTIONS(4477), - [aux_sym__forall_control_expression_token1] = ACTIONS(4477), - [aux_sym_select_case_statement_token1] = ACTIONS(4477), - [aux_sym_select_case_statement_token3] = ACTIONS(4477), - [aux_sym_select_type_statement_token1] = ACTIONS(4477), - [aux_sym_select_rank_statement_token2] = ACTIONS(4477), - [aux_sym_block_construct_token1] = ACTIONS(4477), - [aux_sym_associate_statement_token1] = ACTIONS(4477), - [aux_sym_format_statement_token1] = ACTIONS(4477), - [aux_sym_print_statement_token1] = ACTIONS(4477), - [aux_sym_open_statement_token1] = ACTIONS(4477), - [aux_sym_close_statement_token1] = ACTIONS(4477), - [aux_sym_inquire_statement_token1] = ACTIONS(4477), - [aux_sym_enum_statement_token1] = ACTIONS(4477), - [aux_sym_file_position_statement_token1] = ACTIONS(4477), - [aux_sym_file_position_statement_token2] = ACTIONS(4477), - [aux_sym_file_position_statement_token3] = ACTIONS(4477), - [aux_sym_file_position_statement_token4] = ACTIONS(4477), - [aux_sym_allocate_statement_token1] = ACTIONS(4477), - [aux_sym_entry_statement_token1] = ACTIONS(4477), - [aux_sym_logical_expression_token5] = ACTIONS(4479), - [anon_sym_DOT] = ACTIONS(4477), - [anon_sym_LPAREN_SLASH] = ACTIONS(4479), - [anon_sym_LBRACK] = ACTIONS(4479), - [aux_sym_boolean_literal_token1] = ACTIONS(4479), - [aux_sym_boolean_literal_token2] = ACTIONS(4479), - [aux_sym_null_literal_token1] = ACTIONS(4477), - [aux_sym_coarray_statement_token1] = ACTIONS(4477), - [aux_sym_coarray_statement_token2] = ACTIONS(4477), - [aux_sym_coarray_statement_token6] = ACTIONS(4477), - [aux_sym_coarray_statement_token8] = ACTIONS(4477), - [aux_sym_coarray_statement_token11] = ACTIONS(4477), - [aux_sym_coarray_statement_token12] = ACTIONS(4477), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4477), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4477), - [aux_sym_identifier_token1] = ACTIONS(4477), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4479), - [sym__float_literal] = ACTIONS(4479), - [sym__boz_literal] = ACTIONS(4479), - [sym__string_literal] = ACTIONS(4479), - [sym__string_literal_kind] = ACTIONS(4479), - }, - [1065] = { - [aux_sym_preproc_include_token1] = ACTIONS(4403), - [aux_sym_preproc_def_token1] = ACTIONS(4403), - [aux_sym_preproc_if_token1] = ACTIONS(4403), - [aux_sym_preproc_if_token2] = ACTIONS(4403), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), - [sym_preproc_directive] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), + [1043] = { + [aux_sym_preproc_include_token1] = ACTIONS(4587), + [aux_sym_preproc_def_token1] = ACTIONS(4587), + [aux_sym_preproc_if_token1] = ACTIONS(4587), + [aux_sym_preproc_if_token2] = ACTIONS(4587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), + [sym_preproc_directive] = ACTIONS(4587), + [anon_sym_LPAREN2] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4589), + [anon_sym_DASH] = ACTIONS(4589), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4403), - [aux_sym_end_program_statement_token1] = ACTIONS(4403), - [aux_sym_end_program_statement_token2] = ACTIONS(4403), - [aux_sym_module_statement_token1] = ACTIONS(4403), - [aux_sym_submodule_statement_token1] = ACTIONS(4403), - [aux_sym_interface_statement_token1] = ACTIONS(4403), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), - [aux_sym_subroutine_statement_token1] = ACTIONS(4403), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), - [aux_sym_function_statement_token1] = ACTIONS(4403), - [aux_sym_language_binding_token1] = ACTIONS(4403), - [aux_sym_procedure_attributes_token1] = ACTIONS(4403), - [aux_sym_procedure_attributes_token3] = ACTIONS(4403), - [aux_sym_contains_statement_token1] = ACTIONS(4403), - [aux_sym_use_statement_token1] = ACTIONS(4403), - [aux_sym_use_statement_token2] = ACTIONS(4403), - [aux_sym_implicit_statement_token1] = ACTIONS(4403), - [aux_sym_implicit_statement_token3] = ACTIONS(4403), - [aux_sym_implicit_statement_token4] = ACTIONS(4403), - [aux_sym_save_statement_token1] = ACTIONS(4403), - [aux_sym_private_statement_token1] = ACTIONS(4403), - [aux_sym_public_statement_token1] = ACTIONS(4403), - [aux_sym_namelist_statement_token1] = ACTIONS(4403), - [aux_sym_common_statement_token1] = ACTIONS(4403), - [aux_sym_import_statement_token1] = ACTIONS(4403), - [aux_sym_derived_type_definition_token1] = ACTIONS(4403), - [aux_sym_abstract_specifier_token1] = ACTIONS(4403), - [aux_sym_procedure_attribute_token6] = ACTIONS(4403), - [aux_sym_variable_attributes_token1] = ACTIONS(4403), - [aux_sym_variable_attributes_token2] = ACTIONS(4403), - [aux_sym_variable_attributes_token3] = ACTIONS(4403), - [aux_sym_variable_attributes_token4] = ACTIONS(4403), - [aux_sym_variable_attributes_token5] = ACTIONS(4403), - [aux_sym__intrinsic_type_token1] = ACTIONS(4403), - [aux_sym__intrinsic_type_token2] = ACTIONS(4403), - [aux_sym__intrinsic_type_token3] = ACTIONS(4403), - [aux_sym__intrinsic_type_token4] = ACTIONS(4403), - [aux_sym__intrinsic_type_token6] = ACTIONS(4403), - [aux_sym__intrinsic_type_token7] = ACTIONS(4403), - [aux_sym__intrinsic_type_token8] = ACTIONS(4403), - [aux_sym__intrinsic_type_token9] = ACTIONS(4403), - [aux_sym__intrinsic_type_token10] = ACTIONS(4403), - [aux_sym_derived_type_token1] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), - [aux_sym_type_qualifier_token1] = ACTIONS(4403), - [aux_sym_type_qualifier_token2] = ACTIONS(4403), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4403), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4403), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4403), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4403), - [aux_sym_equivalence_statement_token1] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4405), - [aux_sym_stop_statement_token1] = ACTIONS(4403), - [aux_sym_stop_statement_token2] = ACTIONS(4403), - [aux_sym_subroutine_call_token1] = ACTIONS(4403), - [aux_sym_keyword_statement_token1] = ACTIONS(4403), - [aux_sym_keyword_statement_token2] = ACTIONS(4403), - [aux_sym_keyword_statement_token3] = ACTIONS(4403), - [aux_sym_keyword_statement_token4] = ACTIONS(4403), - [aux_sym_keyword_statement_token6] = ACTIONS(4403), - [aux_sym_keyword_statement_token7] = ACTIONS(4403), - [aux_sym_include_statement_token1] = ACTIONS(4403), - [aux_sym_data_statement_token1] = ACTIONS(4403), - [aux_sym_do_loop_statement_token1] = ACTIONS(4403), - [aux_sym__inline_if_statement_token1] = ACTIONS(4403), - [aux_sym_end_if_statement_token1] = ACTIONS(4403), - [aux_sym_elseif_clause_token2] = ACTIONS(4403), - [aux_sym__inline_where_statement_token1] = ACTIONS(4403), - [aux_sym__forall_control_expression_token1] = ACTIONS(4403), - [aux_sym_select_case_statement_token1] = ACTIONS(4403), - [aux_sym_select_case_statement_token3] = ACTIONS(4403), - [aux_sym_select_type_statement_token1] = ACTIONS(4403), - [aux_sym_select_rank_statement_token2] = ACTIONS(4403), - [aux_sym_block_construct_token1] = ACTIONS(4403), - [aux_sym_associate_statement_token1] = ACTIONS(4403), - [aux_sym_format_statement_token1] = ACTIONS(4403), - [aux_sym_print_statement_token1] = ACTIONS(4403), - [aux_sym_open_statement_token1] = ACTIONS(4403), - [aux_sym_close_statement_token1] = ACTIONS(4403), - [aux_sym_inquire_statement_token1] = ACTIONS(4403), - [aux_sym_enum_statement_token1] = ACTIONS(4403), - [aux_sym_file_position_statement_token1] = ACTIONS(4403), - [aux_sym_file_position_statement_token2] = ACTIONS(4403), - [aux_sym_file_position_statement_token3] = ACTIONS(4403), - [aux_sym_file_position_statement_token4] = ACTIONS(4403), - [aux_sym_allocate_statement_token1] = ACTIONS(4403), - [aux_sym_entry_statement_token1] = ACTIONS(4403), - [aux_sym_logical_expression_token5] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4403), - [anon_sym_LPAREN_SLASH] = ACTIONS(4405), - [anon_sym_LBRACK] = ACTIONS(4405), - [aux_sym_boolean_literal_token1] = ACTIONS(4405), - [aux_sym_boolean_literal_token2] = ACTIONS(4405), - [aux_sym_null_literal_token1] = ACTIONS(4403), - [aux_sym_coarray_statement_token1] = ACTIONS(4403), - [aux_sym_coarray_statement_token2] = ACTIONS(4403), - [aux_sym_coarray_statement_token6] = ACTIONS(4403), - [aux_sym_coarray_statement_token8] = ACTIONS(4403), - [aux_sym_coarray_statement_token11] = ACTIONS(4403), - [aux_sym_coarray_statement_token12] = ACTIONS(4403), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), - [aux_sym_identifier_token1] = ACTIONS(4403), + [aux_sym_program_statement_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token2] = ACTIONS(4587), + [aux_sym_module_statement_token1] = ACTIONS(4587), + [aux_sym_submodule_statement_token1] = ACTIONS(4587), + [aux_sym_interface_statement_token1] = ACTIONS(4587), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), + [aux_sym_subroutine_statement_token1] = ACTIONS(4587), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), + [aux_sym_function_statement_token1] = ACTIONS(4587), + [aux_sym_language_binding_token1] = ACTIONS(4587), + [aux_sym_procedure_attributes_token1] = ACTIONS(4587), + [aux_sym_procedure_attributes_token3] = ACTIONS(4587), + [aux_sym_contains_statement_token1] = ACTIONS(4587), + [aux_sym_use_statement_token1] = ACTIONS(4587), + [aux_sym_use_statement_token2] = ACTIONS(4587), + [aux_sym_implicit_statement_token1] = ACTIONS(4587), + [aux_sym_implicit_statement_token3] = ACTIONS(4587), + [aux_sym_implicit_statement_token4] = ACTIONS(4587), + [aux_sym_save_statement_token1] = ACTIONS(4587), + [aux_sym_private_statement_token1] = ACTIONS(4587), + [aux_sym_public_statement_token1] = ACTIONS(4587), + [aux_sym_namelist_statement_token1] = ACTIONS(4587), + [aux_sym_common_statement_token1] = ACTIONS(4587), + [aux_sym_import_statement_token1] = ACTIONS(4587), + [aux_sym_derived_type_definition_token1] = ACTIONS(4587), + [aux_sym_abstract_specifier_token1] = ACTIONS(4587), + [aux_sym_procedure_attribute_token6] = ACTIONS(4587), + [aux_sym_variable_attributes_token1] = ACTIONS(4587), + [aux_sym_variable_attributes_token2] = ACTIONS(4587), + [aux_sym_variable_attributes_token3] = ACTIONS(4587), + [aux_sym_variable_attributes_token4] = ACTIONS(4587), + [aux_sym_variable_attributes_token5] = ACTIONS(4587), + [aux_sym__intrinsic_type_token1] = ACTIONS(4587), + [aux_sym__intrinsic_type_token2] = ACTIONS(4587), + [aux_sym__intrinsic_type_token3] = ACTIONS(4587), + [aux_sym__intrinsic_type_token4] = ACTIONS(4587), + [aux_sym__intrinsic_type_token6] = ACTIONS(4587), + [aux_sym__intrinsic_type_token7] = ACTIONS(4587), + [aux_sym__intrinsic_type_token8] = ACTIONS(4587), + [aux_sym__intrinsic_type_token9] = ACTIONS(4587), + [aux_sym__intrinsic_type_token10] = ACTIONS(4587), + [aux_sym_derived_type_token1] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), + [aux_sym_type_qualifier_token1] = ACTIONS(4587), + [aux_sym_type_qualifier_token2] = ACTIONS(4587), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4587), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4587), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4587), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4587), + [aux_sym_equivalence_statement_token1] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [aux_sym_stop_statement_token1] = ACTIONS(4587), + [aux_sym_stop_statement_token2] = ACTIONS(4587), + [aux_sym_subroutine_call_token1] = ACTIONS(4587), + [aux_sym_keyword_statement_token1] = ACTIONS(4587), + [aux_sym_keyword_statement_token2] = ACTIONS(4587), + [aux_sym_keyword_statement_token3] = ACTIONS(4587), + [aux_sym_keyword_statement_token4] = ACTIONS(4587), + [aux_sym_keyword_statement_token6] = ACTIONS(4587), + [aux_sym_keyword_statement_token7] = ACTIONS(4587), + [aux_sym_include_statement_token1] = ACTIONS(4587), + [aux_sym_data_statement_token1] = ACTIONS(4587), + [aux_sym_do_loop_statement_token1] = ACTIONS(4587), + [aux_sym__inline_if_statement_token1] = ACTIONS(4587), + [aux_sym_end_if_statement_token1] = ACTIONS(4587), + [aux_sym_elseif_clause_token2] = ACTIONS(4587), + [aux_sym__inline_where_statement_token1] = ACTIONS(4587), + [aux_sym__forall_control_expression_token1] = ACTIONS(4587), + [aux_sym_select_case_statement_token1] = ACTIONS(4587), + [aux_sym_select_case_statement_token3] = ACTIONS(4587), + [aux_sym_select_type_statement_token1] = ACTIONS(4587), + [aux_sym_select_rank_statement_token2] = ACTIONS(4587), + [aux_sym_block_construct_token1] = ACTIONS(4587), + [aux_sym_associate_statement_token1] = ACTIONS(4587), + [aux_sym_format_statement_token1] = ACTIONS(4587), + [aux_sym_print_statement_token1] = ACTIONS(4587), + [aux_sym_open_statement_token1] = ACTIONS(4587), + [aux_sym_close_statement_token1] = ACTIONS(4587), + [aux_sym_inquire_statement_token1] = ACTIONS(4587), + [aux_sym_enum_statement_token1] = ACTIONS(4587), + [aux_sym_file_position_statement_token1] = ACTIONS(4587), + [aux_sym_file_position_statement_token2] = ACTIONS(4587), + [aux_sym_file_position_statement_token3] = ACTIONS(4587), + [aux_sym_file_position_statement_token4] = ACTIONS(4587), + [aux_sym_allocate_statement_token1] = ACTIONS(4587), + [aux_sym_entry_statement_token1] = ACTIONS(4587), + [aux_sym_logical_expression_token5] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_LPAREN_SLASH] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [aux_sym_null_literal_token1] = ACTIONS(4587), + [aux_sym_coarray_statement_token1] = ACTIONS(4587), + [aux_sym_coarray_statement_token2] = ACTIONS(4587), + [aux_sym_coarray_statement_token6] = ACTIONS(4587), + [aux_sym_coarray_statement_token8] = ACTIONS(4587), + [aux_sym_coarray_statement_token11] = ACTIONS(4587), + [aux_sym_coarray_statement_token12] = ACTIONS(4587), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), + [aux_sym_identifier_token1] = ACTIONS(4587), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4405), - [sym__float_literal] = ACTIONS(4405), - [sym__boz_literal] = ACTIONS(4405), - [sym__string_literal] = ACTIONS(4405), - [sym__string_literal_kind] = ACTIONS(4405), + [sym__integer_literal] = ACTIONS(4589), + [sym__float_literal] = ACTIONS(4589), + [sym__boz_literal] = ACTIONS(4589), + [sym__string_literal] = ACTIONS(4589), + [sym__string_literal_kind] = ACTIONS(4589), }, - [1066] = { - [aux_sym_preproc_include_token1] = ACTIONS(4407), - [aux_sym_preproc_def_token1] = ACTIONS(4407), - [aux_sym_preproc_if_token1] = ACTIONS(4407), - [aux_sym_preproc_if_token2] = ACTIONS(4407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), - [sym_preproc_directive] = ACTIONS(4407), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), + [1044] = { + [aux_sym_preproc_include_token1] = ACTIONS(368), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [aux_sym_preproc_if_token2] = ACTIONS(368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(368), + [sym_preproc_directive] = ACTIONS(368), + [anon_sym_LPAREN2] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(674), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4407), - [aux_sym_end_program_statement_token1] = ACTIONS(4407), - [aux_sym_end_program_statement_token2] = ACTIONS(4407), - [aux_sym_module_statement_token1] = ACTIONS(4407), - [aux_sym_submodule_statement_token1] = ACTIONS(4407), - [aux_sym_interface_statement_token1] = ACTIONS(4407), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), - [aux_sym_subroutine_statement_token1] = ACTIONS(4407), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), - [aux_sym_function_statement_token1] = ACTIONS(4407), - [aux_sym_language_binding_token1] = ACTIONS(4407), - [aux_sym_procedure_attributes_token1] = ACTIONS(4407), - [aux_sym_procedure_attributes_token3] = ACTIONS(4407), - [aux_sym_contains_statement_token1] = ACTIONS(4407), - [aux_sym_use_statement_token1] = ACTIONS(4407), - [aux_sym_use_statement_token2] = ACTIONS(4407), - [aux_sym_implicit_statement_token1] = ACTIONS(4407), - [aux_sym_implicit_statement_token3] = ACTIONS(4407), - [aux_sym_implicit_statement_token4] = ACTIONS(4407), - [aux_sym_save_statement_token1] = ACTIONS(4407), - [aux_sym_private_statement_token1] = ACTIONS(4407), - [aux_sym_public_statement_token1] = ACTIONS(4407), - [aux_sym_namelist_statement_token1] = ACTIONS(4407), - [aux_sym_common_statement_token1] = ACTIONS(4407), - [aux_sym_import_statement_token1] = ACTIONS(4407), - [aux_sym_derived_type_definition_token1] = ACTIONS(4407), - [aux_sym_abstract_specifier_token1] = ACTIONS(4407), - [aux_sym_procedure_attribute_token6] = ACTIONS(4407), - [aux_sym_variable_attributes_token1] = ACTIONS(4407), - [aux_sym_variable_attributes_token2] = ACTIONS(4407), - [aux_sym_variable_attributes_token3] = ACTIONS(4407), - [aux_sym_variable_attributes_token4] = ACTIONS(4407), - [aux_sym_variable_attributes_token5] = ACTIONS(4407), - [aux_sym__intrinsic_type_token1] = ACTIONS(4407), - [aux_sym__intrinsic_type_token2] = ACTIONS(4407), - [aux_sym__intrinsic_type_token3] = ACTIONS(4407), - [aux_sym__intrinsic_type_token4] = ACTIONS(4407), - [aux_sym__intrinsic_type_token6] = ACTIONS(4407), - [aux_sym__intrinsic_type_token7] = ACTIONS(4407), - [aux_sym__intrinsic_type_token8] = ACTIONS(4407), - [aux_sym__intrinsic_type_token9] = ACTIONS(4407), - [aux_sym__intrinsic_type_token10] = ACTIONS(4407), - [aux_sym_derived_type_token1] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), - [aux_sym_type_qualifier_token1] = ACTIONS(4407), - [aux_sym_type_qualifier_token2] = ACTIONS(4407), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4407), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4407), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4407), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4407), - [aux_sym_equivalence_statement_token1] = ACTIONS(4407), - [anon_sym_SEMI] = ACTIONS(4409), - [aux_sym_stop_statement_token1] = ACTIONS(4407), - [aux_sym_stop_statement_token2] = ACTIONS(4407), - [aux_sym_subroutine_call_token1] = ACTIONS(4407), - [aux_sym_keyword_statement_token1] = ACTIONS(4407), - [aux_sym_keyword_statement_token2] = ACTIONS(4407), - [aux_sym_keyword_statement_token3] = ACTIONS(4407), - [aux_sym_keyword_statement_token4] = ACTIONS(4407), - [aux_sym_keyword_statement_token6] = ACTIONS(4407), - [aux_sym_keyword_statement_token7] = ACTIONS(4407), - [aux_sym_include_statement_token1] = ACTIONS(4407), - [aux_sym_data_statement_token1] = ACTIONS(4407), - [aux_sym_do_loop_statement_token1] = ACTIONS(4407), - [aux_sym__inline_if_statement_token1] = ACTIONS(4407), - [aux_sym_end_if_statement_token1] = ACTIONS(4407), - [aux_sym_elseif_clause_token2] = ACTIONS(4407), - [aux_sym__inline_where_statement_token1] = ACTIONS(4407), - [aux_sym__forall_control_expression_token1] = ACTIONS(4407), - [aux_sym_select_case_statement_token1] = ACTIONS(4407), - [aux_sym_select_case_statement_token3] = ACTIONS(4407), - [aux_sym_select_type_statement_token1] = ACTIONS(4407), - [aux_sym_select_rank_statement_token2] = ACTIONS(4407), - [aux_sym_block_construct_token1] = ACTIONS(4407), - [aux_sym_associate_statement_token1] = ACTIONS(4407), - [aux_sym_format_statement_token1] = ACTIONS(4407), - [aux_sym_print_statement_token1] = ACTIONS(4407), - [aux_sym_open_statement_token1] = ACTIONS(4407), - [aux_sym_close_statement_token1] = ACTIONS(4407), - [aux_sym_inquire_statement_token1] = ACTIONS(4407), - [aux_sym_enum_statement_token1] = ACTIONS(4407), - [aux_sym_file_position_statement_token1] = ACTIONS(4407), - [aux_sym_file_position_statement_token2] = ACTIONS(4407), - [aux_sym_file_position_statement_token3] = ACTIONS(4407), - [aux_sym_file_position_statement_token4] = ACTIONS(4407), - [aux_sym_allocate_statement_token1] = ACTIONS(4407), - [aux_sym_entry_statement_token1] = ACTIONS(4407), - [aux_sym_logical_expression_token5] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_LPAREN_SLASH] = ACTIONS(4409), - [anon_sym_LBRACK] = ACTIONS(4409), - [aux_sym_boolean_literal_token1] = ACTIONS(4409), - [aux_sym_boolean_literal_token2] = ACTIONS(4409), - [aux_sym_null_literal_token1] = ACTIONS(4407), - [aux_sym_coarray_statement_token1] = ACTIONS(4407), - [aux_sym_coarray_statement_token2] = ACTIONS(4407), - [aux_sym_coarray_statement_token6] = ACTIONS(4407), - [aux_sym_coarray_statement_token8] = ACTIONS(4407), - [aux_sym_coarray_statement_token11] = ACTIONS(4407), - [aux_sym_coarray_statement_token12] = ACTIONS(4407), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), - [aux_sym_identifier_token1] = ACTIONS(4407), + [aux_sym_program_statement_token1] = ACTIONS(368), + [aux_sym_end_program_statement_token1] = ACTIONS(368), + [aux_sym_end_program_statement_token2] = ACTIONS(368), + [aux_sym_module_statement_token1] = ACTIONS(368), + [aux_sym_submodule_statement_token1] = ACTIONS(368), + [aux_sym_interface_statement_token1] = ACTIONS(368), + [aux_sym_defined_io_procedure_token1] = ACTIONS(368), + [aux_sym_defined_io_procedure_token2] = ACTIONS(368), + [aux_sym_subroutine_statement_token1] = ACTIONS(368), + [aux_sym_module_procedure_statement_token1] = ACTIONS(368), + [aux_sym_function_statement_token1] = ACTIONS(368), + [aux_sym_language_binding_token1] = ACTIONS(368), + [aux_sym_procedure_attributes_token1] = ACTIONS(368), + [aux_sym_procedure_attributes_token3] = ACTIONS(368), + [aux_sym_contains_statement_token1] = ACTIONS(368), + [aux_sym_use_statement_token1] = ACTIONS(368), + [aux_sym_use_statement_token2] = ACTIONS(368), + [aux_sym_implicit_statement_token1] = ACTIONS(368), + [aux_sym_implicit_statement_token3] = ACTIONS(368), + [aux_sym_implicit_statement_token4] = ACTIONS(368), + [aux_sym_save_statement_token1] = ACTIONS(368), + [aux_sym_private_statement_token1] = ACTIONS(368), + [aux_sym_public_statement_token1] = ACTIONS(368), + [aux_sym_namelist_statement_token1] = ACTIONS(368), + [aux_sym_common_statement_token1] = ACTIONS(368), + [aux_sym_import_statement_token1] = ACTIONS(368), + [aux_sym_derived_type_definition_token1] = ACTIONS(368), + [aux_sym_abstract_specifier_token1] = ACTIONS(368), + [aux_sym_procedure_attribute_token6] = ACTIONS(368), + [aux_sym_variable_attributes_token1] = ACTIONS(368), + [aux_sym_variable_attributes_token2] = ACTIONS(368), + [aux_sym_variable_attributes_token3] = ACTIONS(368), + [aux_sym_variable_attributes_token4] = ACTIONS(368), + [aux_sym_variable_attributes_token5] = ACTIONS(368), + [aux_sym__intrinsic_type_token1] = ACTIONS(368), + [aux_sym__intrinsic_type_token2] = ACTIONS(368), + [aux_sym__intrinsic_type_token3] = ACTIONS(368), + [aux_sym__intrinsic_type_token4] = ACTIONS(368), + [aux_sym__intrinsic_type_token6] = ACTIONS(368), + [aux_sym__intrinsic_type_token7] = ACTIONS(368), + [aux_sym__intrinsic_type_token8] = ACTIONS(368), + [aux_sym__intrinsic_type_token9] = ACTIONS(368), + [aux_sym__intrinsic_type_token10] = ACTIONS(368), + [aux_sym_derived_type_token1] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(368), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(368), + [aux_sym_type_qualifier_token1] = ACTIONS(368), + [aux_sym_type_qualifier_token2] = ACTIONS(368), + [aux_sym_procedure_qualifier_token1] = ACTIONS(368), + [aux_sym_procedure_qualifier_token2] = ACTIONS(368), + [aux_sym_procedure_qualifier_token3] = ACTIONS(368), + [aux_sym_procedure_qualifier_token4] = ACTIONS(368), + [aux_sym_equivalence_statement_token1] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(674), + [aux_sym_stop_statement_token1] = ACTIONS(368), + [aux_sym_stop_statement_token2] = ACTIONS(368), + [aux_sym_subroutine_call_token1] = ACTIONS(368), + [aux_sym_keyword_statement_token1] = ACTIONS(368), + [aux_sym_keyword_statement_token2] = ACTIONS(368), + [aux_sym_keyword_statement_token3] = ACTIONS(368), + [aux_sym_keyword_statement_token4] = ACTIONS(368), + [aux_sym_keyword_statement_token6] = ACTIONS(368), + [aux_sym_keyword_statement_token7] = ACTIONS(368), + [aux_sym_include_statement_token1] = ACTIONS(368), + [aux_sym_data_statement_token1] = ACTIONS(368), + [aux_sym_do_loop_statement_token1] = ACTIONS(368), + [aux_sym__inline_if_statement_token1] = ACTIONS(368), + [aux_sym_end_if_statement_token1] = ACTIONS(368), + [aux_sym_elseif_clause_token2] = ACTIONS(368), + [aux_sym__inline_where_statement_token1] = ACTIONS(368), + [aux_sym__forall_control_expression_token1] = ACTIONS(368), + [aux_sym_select_case_statement_token1] = ACTIONS(368), + [aux_sym_select_case_statement_token3] = ACTIONS(368), + [aux_sym_select_type_statement_token1] = ACTIONS(368), + [aux_sym_select_rank_statement_token2] = ACTIONS(368), + [aux_sym_block_construct_token1] = ACTIONS(368), + [aux_sym_associate_statement_token1] = ACTIONS(368), + [aux_sym_format_statement_token1] = ACTIONS(368), + [aux_sym_print_statement_token1] = ACTIONS(368), + [aux_sym_open_statement_token1] = ACTIONS(368), + [aux_sym_close_statement_token1] = ACTIONS(368), + [aux_sym_inquire_statement_token1] = ACTIONS(368), + [aux_sym_enum_statement_token1] = ACTIONS(368), + [aux_sym_file_position_statement_token1] = ACTIONS(368), + [aux_sym_file_position_statement_token2] = ACTIONS(368), + [aux_sym_file_position_statement_token3] = ACTIONS(368), + [aux_sym_file_position_statement_token4] = ACTIONS(368), + [aux_sym_allocate_statement_token1] = ACTIONS(368), + [aux_sym_entry_statement_token1] = ACTIONS(368), + [aux_sym_logical_expression_token5] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(368), + [anon_sym_LPAREN_SLASH] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(674), + [aux_sym_boolean_literal_token1] = ACTIONS(674), + [aux_sym_boolean_literal_token2] = ACTIONS(674), + [aux_sym_null_literal_token1] = ACTIONS(368), + [aux_sym_coarray_statement_token1] = ACTIONS(368), + [aux_sym_coarray_statement_token2] = ACTIONS(368), + [aux_sym_coarray_statement_token6] = ACTIONS(368), + [aux_sym_coarray_statement_token8] = ACTIONS(368), + [aux_sym_coarray_statement_token11] = ACTIONS(368), + [aux_sym_coarray_statement_token12] = ACTIONS(368), + [aux_sym_coarray_team_statement_token1] = ACTIONS(368), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(368), + [aux_sym_identifier_token1] = ACTIONS(368), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4409), - [sym__float_literal] = ACTIONS(4409), - [sym__boz_literal] = ACTIONS(4409), - [sym__string_literal] = ACTIONS(4409), - [sym__string_literal_kind] = ACTIONS(4409), + [sym__integer_literal] = ACTIONS(674), + [sym__float_literal] = ACTIONS(674), + [sym__boz_literal] = ACTIONS(674), + [sym__string_literal] = ACTIONS(674), + [sym__string_literal_kind] = ACTIONS(674), }, - [1067] = { - [aux_sym_preproc_include_token1] = ACTIONS(4411), - [aux_sym_preproc_def_token1] = ACTIONS(4411), - [aux_sym_preproc_if_token1] = ACTIONS(4411), - [aux_sym_preproc_if_token2] = ACTIONS(4411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), - [sym_preproc_directive] = ACTIONS(4411), - [anon_sym_LPAREN2] = ACTIONS(4411), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4413), + [1045] = { + [sym_preproc_include] = STATE(1060), + [sym_preproc_def] = STATE(1060), + [sym_preproc_function_def] = STATE(1060), + [sym_preproc_call] = STATE(1060), + [sym_preproc_else_in_module] = STATE(8149), + [sym_preproc_elif_in_module] = STATE(8149), + [sym_preproc_elifdef_in_module] = STATE(8149), + [sym_interface] = STATE(1060), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5719), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1060), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1060), + [sym_public_statement] = STATE(1060), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1060), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1060), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1060), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4747), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4411), - [aux_sym_end_program_statement_token1] = ACTIONS(4411), - [aux_sym_end_program_statement_token2] = ACTIONS(4411), - [aux_sym_module_statement_token1] = ACTIONS(4411), - [aux_sym_submodule_statement_token1] = ACTIONS(4411), - [aux_sym_interface_statement_token1] = ACTIONS(4411), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), - [aux_sym_subroutine_statement_token1] = ACTIONS(4411), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), - [aux_sym_function_statement_token1] = ACTIONS(4411), - [aux_sym_language_binding_token1] = ACTIONS(4411), - [aux_sym_procedure_attributes_token1] = ACTIONS(4411), - [aux_sym_procedure_attributes_token3] = ACTIONS(4411), - [aux_sym_contains_statement_token1] = ACTIONS(4411), - [aux_sym_use_statement_token1] = ACTIONS(4411), - [aux_sym_use_statement_token2] = ACTIONS(4411), - [aux_sym_implicit_statement_token1] = ACTIONS(4411), - [aux_sym_implicit_statement_token3] = ACTIONS(4411), - [aux_sym_implicit_statement_token4] = ACTIONS(4411), - [aux_sym_save_statement_token1] = ACTIONS(4411), - [aux_sym_private_statement_token1] = ACTIONS(4411), - [aux_sym_public_statement_token1] = ACTIONS(4411), - [aux_sym_namelist_statement_token1] = ACTIONS(4411), - [aux_sym_common_statement_token1] = ACTIONS(4411), - [aux_sym_import_statement_token1] = ACTIONS(4411), - [aux_sym_derived_type_definition_token1] = ACTIONS(4411), - [aux_sym_abstract_specifier_token1] = ACTIONS(4411), - [aux_sym_procedure_attribute_token6] = ACTIONS(4411), - [aux_sym_variable_attributes_token1] = ACTIONS(4411), - [aux_sym_variable_attributes_token2] = ACTIONS(4411), - [aux_sym_variable_attributes_token3] = ACTIONS(4411), - [aux_sym_variable_attributes_token4] = ACTIONS(4411), - [aux_sym_variable_attributes_token5] = ACTIONS(4411), - [aux_sym__intrinsic_type_token1] = ACTIONS(4411), - [aux_sym__intrinsic_type_token2] = ACTIONS(4411), - [aux_sym__intrinsic_type_token3] = ACTIONS(4411), - [aux_sym__intrinsic_type_token4] = ACTIONS(4411), - [aux_sym__intrinsic_type_token6] = ACTIONS(4411), - [aux_sym__intrinsic_type_token7] = ACTIONS(4411), - [aux_sym__intrinsic_type_token8] = ACTIONS(4411), - [aux_sym__intrinsic_type_token9] = ACTIONS(4411), - [aux_sym__intrinsic_type_token10] = ACTIONS(4411), - [aux_sym_derived_type_token1] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), - [aux_sym_type_qualifier_token1] = ACTIONS(4411), - [aux_sym_type_qualifier_token2] = ACTIONS(4411), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4411), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4411), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4411), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4411), - [aux_sym_equivalence_statement_token1] = ACTIONS(4411), - [anon_sym_SEMI] = ACTIONS(4413), - [aux_sym_stop_statement_token1] = ACTIONS(4411), - [aux_sym_stop_statement_token2] = ACTIONS(4411), - [aux_sym_subroutine_call_token1] = ACTIONS(4411), - [aux_sym_keyword_statement_token1] = ACTIONS(4411), - [aux_sym_keyword_statement_token2] = ACTIONS(4411), - [aux_sym_keyword_statement_token3] = ACTIONS(4411), - [aux_sym_keyword_statement_token4] = ACTIONS(4411), - [aux_sym_keyword_statement_token6] = ACTIONS(4411), - [aux_sym_keyword_statement_token7] = ACTIONS(4411), - [aux_sym_include_statement_token1] = ACTIONS(4411), - [aux_sym_data_statement_token1] = ACTIONS(4411), - [aux_sym_do_loop_statement_token1] = ACTIONS(4411), - [aux_sym__inline_if_statement_token1] = ACTIONS(4411), - [aux_sym_end_if_statement_token1] = ACTIONS(4411), - [aux_sym_elseif_clause_token2] = ACTIONS(4411), - [aux_sym__inline_where_statement_token1] = ACTIONS(4411), - [aux_sym__forall_control_expression_token1] = ACTIONS(4411), - [aux_sym_select_case_statement_token1] = ACTIONS(4411), - [aux_sym_select_case_statement_token3] = ACTIONS(4411), - [aux_sym_select_type_statement_token1] = ACTIONS(4411), - [aux_sym_select_rank_statement_token2] = ACTIONS(4411), - [aux_sym_block_construct_token1] = ACTIONS(4411), - [aux_sym_associate_statement_token1] = ACTIONS(4411), - [aux_sym_format_statement_token1] = ACTIONS(4411), - [aux_sym_print_statement_token1] = ACTIONS(4411), - [aux_sym_open_statement_token1] = ACTIONS(4411), - [aux_sym_close_statement_token1] = ACTIONS(4411), - [aux_sym_inquire_statement_token1] = ACTIONS(4411), - [aux_sym_enum_statement_token1] = ACTIONS(4411), - [aux_sym_file_position_statement_token1] = ACTIONS(4411), - [aux_sym_file_position_statement_token2] = ACTIONS(4411), - [aux_sym_file_position_statement_token3] = ACTIONS(4411), - [aux_sym_file_position_statement_token4] = ACTIONS(4411), - [aux_sym_allocate_statement_token1] = ACTIONS(4411), - [aux_sym_entry_statement_token1] = ACTIONS(4411), - [aux_sym_logical_expression_token5] = ACTIONS(4413), - [anon_sym_DOT] = ACTIONS(4411), - [anon_sym_LPAREN_SLASH] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4413), - [aux_sym_boolean_literal_token1] = ACTIONS(4413), - [aux_sym_boolean_literal_token2] = ACTIONS(4413), - [aux_sym_null_literal_token1] = ACTIONS(4411), - [aux_sym_coarray_statement_token1] = ACTIONS(4411), - [aux_sym_coarray_statement_token2] = ACTIONS(4411), - [aux_sym_coarray_statement_token6] = ACTIONS(4411), - [aux_sym_coarray_statement_token8] = ACTIONS(4411), - [aux_sym_coarray_statement_token11] = ACTIONS(4411), - [aux_sym_coarray_statement_token12] = ACTIONS(4411), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), - [aux_sym_identifier_token1] = ACTIONS(4411), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4413), - [sym__float_literal] = ACTIONS(4413), - [sym__boz_literal] = ACTIONS(4413), - [sym__string_literal] = ACTIONS(4413), - [sym__string_literal_kind] = ACTIONS(4413), + [sym__integer_literal] = ACTIONS(4665), }, - [1068] = { + [1046] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(8154), + [sym_preproc_elif_in_module] = STATE(8154), + [sym_preproc_elifdef_in_module] = STATE(8154), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5720), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4749), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4665), + }, + [1047] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(8157), + [sym_preproc_elif_in_module] = STATE(8157), + [sym_preproc_elifdef_in_module] = STATE(8157), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5721), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4751), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4665), + }, + [1048] = { + [ts_builtin_sym_end] = ACTIONS(4417), [aux_sym_preproc_include_token1] = ACTIONS(4415), [aux_sym_preproc_def_token1] = ACTIONS(4415), [aux_sym_preproc_if_token1] = ACTIONS(4415), - [aux_sym_preproc_if_token2] = ACTIONS(4415), [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), [sym_preproc_directive] = ACTIONS(4415), @@ -234634,416 +231934,3386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4417), [sym__string_literal_kind] = ACTIONS(4417), }, + [1049] = { + [ts_builtin_sym_end] = ACTIONS(4269), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [1050] = { + [aux_sym_preproc_include_token1] = ACTIONS(4591), + [aux_sym_preproc_def_token1] = ACTIONS(4591), + [aux_sym_preproc_if_token1] = ACTIONS(4591), + [aux_sym_preproc_if_token2] = ACTIONS(4591), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4591), + [sym_preproc_directive] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4591), + [aux_sym_end_program_statement_token1] = ACTIONS(4591), + [aux_sym_end_program_statement_token2] = ACTIONS(4591), + [aux_sym_module_statement_token1] = ACTIONS(4591), + [aux_sym_submodule_statement_token1] = ACTIONS(4591), + [aux_sym_interface_statement_token1] = ACTIONS(4591), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4591), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4591), + [aux_sym_subroutine_statement_token1] = ACTIONS(4591), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4591), + [aux_sym_function_statement_token1] = ACTIONS(4591), + [aux_sym_language_binding_token1] = ACTIONS(4591), + [aux_sym_procedure_attributes_token1] = ACTIONS(4591), + [aux_sym_procedure_attributes_token3] = ACTIONS(4591), + [aux_sym_contains_statement_token1] = ACTIONS(4591), + [aux_sym_use_statement_token1] = ACTIONS(4591), + [aux_sym_use_statement_token2] = ACTIONS(4591), + [aux_sym_implicit_statement_token1] = ACTIONS(4591), + [aux_sym_implicit_statement_token3] = ACTIONS(4591), + [aux_sym_implicit_statement_token4] = ACTIONS(4591), + [aux_sym_save_statement_token1] = ACTIONS(4591), + [aux_sym_private_statement_token1] = ACTIONS(4591), + [aux_sym_public_statement_token1] = ACTIONS(4591), + [aux_sym_namelist_statement_token1] = ACTIONS(4591), + [aux_sym_common_statement_token1] = ACTIONS(4591), + [aux_sym_import_statement_token1] = ACTIONS(4591), + [aux_sym_derived_type_definition_token1] = ACTIONS(4591), + [aux_sym_abstract_specifier_token1] = ACTIONS(4591), + [aux_sym_procedure_attribute_token6] = ACTIONS(4591), + [aux_sym_variable_attributes_token1] = ACTIONS(4591), + [aux_sym_variable_attributes_token2] = ACTIONS(4591), + [aux_sym_variable_attributes_token3] = ACTIONS(4591), + [aux_sym_variable_attributes_token4] = ACTIONS(4591), + [aux_sym_variable_attributes_token5] = ACTIONS(4591), + [aux_sym__intrinsic_type_token1] = ACTIONS(4591), + [aux_sym__intrinsic_type_token2] = ACTIONS(4591), + [aux_sym__intrinsic_type_token3] = ACTIONS(4591), + [aux_sym__intrinsic_type_token4] = ACTIONS(4591), + [aux_sym__intrinsic_type_token6] = ACTIONS(4591), + [aux_sym__intrinsic_type_token7] = ACTIONS(4591), + [aux_sym__intrinsic_type_token8] = ACTIONS(4591), + [aux_sym__intrinsic_type_token9] = ACTIONS(4591), + [aux_sym__intrinsic_type_token10] = ACTIONS(4591), + [aux_sym_derived_type_token1] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4591), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4591), + [aux_sym_type_qualifier_token1] = ACTIONS(4591), + [aux_sym_type_qualifier_token2] = ACTIONS(4591), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4591), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4591), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4591), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4591), + [aux_sym_equivalence_statement_token1] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4593), + [aux_sym_stop_statement_token1] = ACTIONS(4591), + [aux_sym_stop_statement_token2] = ACTIONS(4591), + [aux_sym_subroutine_call_token1] = ACTIONS(4591), + [aux_sym_keyword_statement_token1] = ACTIONS(4591), + [aux_sym_keyword_statement_token2] = ACTIONS(4591), + [aux_sym_keyword_statement_token3] = ACTIONS(4591), + [aux_sym_keyword_statement_token4] = ACTIONS(4591), + [aux_sym_keyword_statement_token6] = ACTIONS(4591), + [aux_sym_keyword_statement_token7] = ACTIONS(4591), + [aux_sym_include_statement_token1] = ACTIONS(4591), + [aux_sym_data_statement_token1] = ACTIONS(4591), + [aux_sym_do_loop_statement_token1] = ACTIONS(4591), + [aux_sym__inline_if_statement_token1] = ACTIONS(4591), + [aux_sym_end_if_statement_token1] = ACTIONS(4591), + [aux_sym_elseif_clause_token2] = ACTIONS(4591), + [aux_sym__inline_where_statement_token1] = ACTIONS(4591), + [aux_sym__forall_control_expression_token1] = ACTIONS(4591), + [aux_sym_select_case_statement_token1] = ACTIONS(4591), + [aux_sym_select_case_statement_token3] = ACTIONS(4591), + [aux_sym_select_type_statement_token1] = ACTIONS(4591), + [aux_sym_select_rank_statement_token2] = ACTIONS(4591), + [aux_sym_block_construct_token1] = ACTIONS(4591), + [aux_sym_associate_statement_token1] = ACTIONS(4591), + [aux_sym_format_statement_token1] = ACTIONS(4591), + [aux_sym_print_statement_token1] = ACTIONS(4591), + [aux_sym_open_statement_token1] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4591), + [aux_sym_inquire_statement_token1] = ACTIONS(4591), + [aux_sym_enum_statement_token1] = ACTIONS(4591), + [aux_sym_file_position_statement_token1] = ACTIONS(4591), + [aux_sym_file_position_statement_token2] = ACTIONS(4591), + [aux_sym_file_position_statement_token3] = ACTIONS(4591), + [aux_sym_file_position_statement_token4] = ACTIONS(4591), + [aux_sym_allocate_statement_token1] = ACTIONS(4591), + [aux_sym_entry_statement_token1] = ACTIONS(4591), + [aux_sym_logical_expression_token5] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_LPAREN_SLASH] = ACTIONS(4593), + [anon_sym_LBRACK] = ACTIONS(4593), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [aux_sym_null_literal_token1] = ACTIONS(4591), + [aux_sym_coarray_statement_token1] = ACTIONS(4591), + [aux_sym_coarray_statement_token2] = ACTIONS(4591), + [aux_sym_coarray_statement_token6] = ACTIONS(4591), + [aux_sym_coarray_statement_token8] = ACTIONS(4591), + [aux_sym_coarray_statement_token11] = ACTIONS(4591), + [aux_sym_coarray_statement_token12] = ACTIONS(4591), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4591), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4591), + [aux_sym_identifier_token1] = ACTIONS(4591), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4593), + [sym__float_literal] = ACTIONS(4593), + [sym__boz_literal] = ACTIONS(4593), + [sym__string_literal] = ACTIONS(4593), + [sym__string_literal_kind] = ACTIONS(4593), + }, + [1051] = { + [ts_builtin_sym_end] = ACTIONS(4563), + [aux_sym_preproc_include_token1] = ACTIONS(4561), + [aux_sym_preproc_def_token1] = ACTIONS(4561), + [aux_sym_preproc_if_token1] = ACTIONS(4561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4561), + [sym_preproc_directive] = ACTIONS(4561), + [anon_sym_LPAREN2] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4561), + [aux_sym_end_program_statement_token1] = ACTIONS(4561), + [aux_sym_end_program_statement_token2] = ACTIONS(4561), + [aux_sym_module_statement_token1] = ACTIONS(4561), + [aux_sym_submodule_statement_token1] = ACTIONS(4561), + [aux_sym_interface_statement_token1] = ACTIONS(4561), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4561), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4561), + [aux_sym_subroutine_statement_token1] = ACTIONS(4561), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4561), + [aux_sym_function_statement_token1] = ACTIONS(4561), + [aux_sym_language_binding_token1] = ACTIONS(4561), + [aux_sym_procedure_attributes_token1] = ACTIONS(4561), + [aux_sym_procedure_attributes_token3] = ACTIONS(4561), + [aux_sym_contains_statement_token1] = ACTIONS(4561), + [aux_sym_use_statement_token1] = ACTIONS(4561), + [aux_sym_use_statement_token2] = ACTIONS(4561), + [aux_sym_implicit_statement_token1] = ACTIONS(4561), + [aux_sym_implicit_statement_token3] = ACTIONS(4561), + [aux_sym_implicit_statement_token4] = ACTIONS(4561), + [aux_sym_save_statement_token1] = ACTIONS(4561), + [aux_sym_private_statement_token1] = ACTIONS(4561), + [aux_sym_public_statement_token1] = ACTIONS(4561), + [aux_sym_namelist_statement_token1] = ACTIONS(4561), + [aux_sym_common_statement_token1] = ACTIONS(4561), + [aux_sym_import_statement_token1] = ACTIONS(4561), + [aux_sym_derived_type_definition_token1] = ACTIONS(4561), + [aux_sym_abstract_specifier_token1] = ACTIONS(4561), + [aux_sym_procedure_attribute_token6] = ACTIONS(4561), + [aux_sym_variable_attributes_token1] = ACTIONS(4561), + [aux_sym_variable_attributes_token2] = ACTIONS(4561), + [aux_sym_variable_attributes_token3] = ACTIONS(4561), + [aux_sym_variable_attributes_token4] = ACTIONS(4561), + [aux_sym_variable_attributes_token5] = ACTIONS(4561), + [aux_sym__intrinsic_type_token1] = ACTIONS(4561), + [aux_sym__intrinsic_type_token2] = ACTIONS(4561), + [aux_sym__intrinsic_type_token3] = ACTIONS(4561), + [aux_sym__intrinsic_type_token4] = ACTIONS(4561), + [aux_sym__intrinsic_type_token6] = ACTIONS(4561), + [aux_sym__intrinsic_type_token7] = ACTIONS(4561), + [aux_sym__intrinsic_type_token8] = ACTIONS(4561), + [aux_sym__intrinsic_type_token9] = ACTIONS(4561), + [aux_sym__intrinsic_type_token10] = ACTIONS(4561), + [aux_sym_derived_type_token1] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4561), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4561), + [aux_sym_type_qualifier_token1] = ACTIONS(4561), + [aux_sym_type_qualifier_token2] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4561), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4561), + [aux_sym_equivalence_statement_token1] = ACTIONS(4561), + [anon_sym_SEMI] = ACTIONS(4563), + [aux_sym_stop_statement_token1] = ACTIONS(4561), + [aux_sym_stop_statement_token2] = ACTIONS(4561), + [aux_sym_subroutine_call_token1] = ACTIONS(4561), + [aux_sym_keyword_statement_token1] = ACTIONS(4561), + [aux_sym_keyword_statement_token2] = ACTIONS(4561), + [aux_sym_keyword_statement_token3] = ACTIONS(4561), + [aux_sym_keyword_statement_token4] = ACTIONS(4561), + [aux_sym_keyword_statement_token6] = ACTIONS(4561), + [aux_sym_keyword_statement_token7] = ACTIONS(4561), + [aux_sym_include_statement_token1] = ACTIONS(4561), + [aux_sym_data_statement_token1] = ACTIONS(4561), + [aux_sym_do_loop_statement_token1] = ACTIONS(4561), + [aux_sym__inline_if_statement_token1] = ACTIONS(4561), + [aux_sym_end_if_statement_token1] = ACTIONS(4561), + [aux_sym_elseif_clause_token2] = ACTIONS(4561), + [aux_sym__inline_where_statement_token1] = ACTIONS(4561), + [aux_sym__forall_control_expression_token1] = ACTIONS(4561), + [aux_sym_select_case_statement_token1] = ACTIONS(4561), + [aux_sym_select_case_statement_token3] = ACTIONS(4561), + [aux_sym_select_type_statement_token1] = ACTIONS(4561), + [aux_sym_select_rank_statement_token2] = ACTIONS(4561), + [aux_sym_block_construct_token1] = ACTIONS(4561), + [aux_sym_associate_statement_token1] = ACTIONS(4561), + [aux_sym_format_statement_token1] = ACTIONS(4561), + [aux_sym_print_statement_token1] = ACTIONS(4561), + [aux_sym_open_statement_token1] = ACTIONS(4561), + [aux_sym_close_statement_token1] = ACTIONS(4561), + [aux_sym_inquire_statement_token1] = ACTIONS(4561), + [aux_sym_enum_statement_token1] = ACTIONS(4561), + [aux_sym_file_position_statement_token1] = ACTIONS(4561), + [aux_sym_file_position_statement_token2] = ACTIONS(4561), + [aux_sym_file_position_statement_token3] = ACTIONS(4561), + [aux_sym_file_position_statement_token4] = ACTIONS(4561), + [aux_sym_allocate_statement_token1] = ACTIONS(4561), + [aux_sym_entry_statement_token1] = ACTIONS(4561), + [aux_sym_logical_expression_token5] = ACTIONS(4563), + [anon_sym_DOT] = ACTIONS(4561), + [anon_sym_LPAREN_SLASH] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4563), + [aux_sym_boolean_literal_token1] = ACTIONS(4563), + [aux_sym_boolean_literal_token2] = ACTIONS(4563), + [aux_sym_null_literal_token1] = ACTIONS(4561), + [aux_sym_coarray_statement_token1] = ACTIONS(4561), + [aux_sym_coarray_statement_token2] = ACTIONS(4561), + [aux_sym_coarray_statement_token6] = ACTIONS(4561), + [aux_sym_coarray_statement_token8] = ACTIONS(4561), + [aux_sym_coarray_statement_token11] = ACTIONS(4561), + [aux_sym_coarray_statement_token12] = ACTIONS(4561), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4561), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4561), + [aux_sym_identifier_token1] = ACTIONS(4561), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4563), + [sym__float_literal] = ACTIONS(4563), + [sym__boz_literal] = ACTIONS(4563), + [sym__string_literal] = ACTIONS(4563), + [sym__string_literal_kind] = ACTIONS(4563), + }, + [1052] = { + [ts_builtin_sym_end] = ACTIONS(4529), + [aux_sym_preproc_include_token1] = ACTIONS(4527), + [aux_sym_preproc_def_token1] = ACTIONS(4527), + [aux_sym_preproc_if_token1] = ACTIONS(4527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4527), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4527), + [sym_preproc_directive] = ACTIONS(4527), + [anon_sym_LPAREN2] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4527), + [aux_sym_end_program_statement_token1] = ACTIONS(4527), + [aux_sym_end_program_statement_token2] = ACTIONS(4527), + [aux_sym_module_statement_token1] = ACTIONS(4527), + [aux_sym_submodule_statement_token1] = ACTIONS(4527), + [aux_sym_interface_statement_token1] = ACTIONS(4527), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4527), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4527), + [aux_sym_subroutine_statement_token1] = ACTIONS(4527), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4527), + [aux_sym_function_statement_token1] = ACTIONS(4527), + [aux_sym_language_binding_token1] = ACTIONS(4527), + [aux_sym_procedure_attributes_token1] = ACTIONS(4527), + [aux_sym_procedure_attributes_token3] = ACTIONS(4527), + [aux_sym_contains_statement_token1] = ACTIONS(4527), + [aux_sym_use_statement_token1] = ACTIONS(4527), + [aux_sym_use_statement_token2] = ACTIONS(4527), + [aux_sym_implicit_statement_token1] = ACTIONS(4527), + [aux_sym_implicit_statement_token3] = ACTIONS(4527), + [aux_sym_implicit_statement_token4] = ACTIONS(4527), + [aux_sym_save_statement_token1] = ACTIONS(4527), + [aux_sym_private_statement_token1] = ACTIONS(4527), + [aux_sym_public_statement_token1] = ACTIONS(4527), + [aux_sym_namelist_statement_token1] = ACTIONS(4527), + [aux_sym_common_statement_token1] = ACTIONS(4527), + [aux_sym_import_statement_token1] = ACTIONS(4527), + [aux_sym_derived_type_definition_token1] = ACTIONS(4527), + [aux_sym_abstract_specifier_token1] = ACTIONS(4527), + [aux_sym_procedure_attribute_token6] = ACTIONS(4527), + [aux_sym_variable_attributes_token1] = ACTIONS(4527), + [aux_sym_variable_attributes_token2] = ACTIONS(4527), + [aux_sym_variable_attributes_token3] = ACTIONS(4527), + [aux_sym_variable_attributes_token4] = ACTIONS(4527), + [aux_sym_variable_attributes_token5] = ACTIONS(4527), + [aux_sym__intrinsic_type_token1] = ACTIONS(4527), + [aux_sym__intrinsic_type_token2] = ACTIONS(4527), + [aux_sym__intrinsic_type_token3] = ACTIONS(4527), + [aux_sym__intrinsic_type_token4] = ACTIONS(4527), + [aux_sym__intrinsic_type_token6] = ACTIONS(4527), + [aux_sym__intrinsic_type_token7] = ACTIONS(4527), + [aux_sym__intrinsic_type_token8] = ACTIONS(4527), + [aux_sym__intrinsic_type_token9] = ACTIONS(4527), + [aux_sym__intrinsic_type_token10] = ACTIONS(4527), + [aux_sym_derived_type_token1] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4527), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4527), + [aux_sym_type_qualifier_token1] = ACTIONS(4527), + [aux_sym_type_qualifier_token2] = ACTIONS(4527), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4527), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4527), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4527), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4527), + [aux_sym_equivalence_statement_token1] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [aux_sym_stop_statement_token1] = ACTIONS(4527), + [aux_sym_stop_statement_token2] = ACTIONS(4527), + [aux_sym_subroutine_call_token1] = ACTIONS(4527), + [aux_sym_keyword_statement_token1] = ACTIONS(4527), + [aux_sym_keyword_statement_token2] = ACTIONS(4527), + [aux_sym_keyword_statement_token3] = ACTIONS(4527), + [aux_sym_keyword_statement_token4] = ACTIONS(4527), + [aux_sym_keyword_statement_token6] = ACTIONS(4527), + [aux_sym_keyword_statement_token7] = ACTIONS(4527), + [aux_sym_include_statement_token1] = ACTIONS(4527), + [aux_sym_data_statement_token1] = ACTIONS(4527), + [aux_sym_do_loop_statement_token1] = ACTIONS(4527), + [aux_sym__inline_if_statement_token1] = ACTIONS(4527), + [aux_sym_end_if_statement_token1] = ACTIONS(4527), + [aux_sym_elseif_clause_token2] = ACTIONS(4527), + [aux_sym__inline_where_statement_token1] = ACTIONS(4527), + [aux_sym__forall_control_expression_token1] = ACTIONS(4527), + [aux_sym_select_case_statement_token1] = ACTIONS(4527), + [aux_sym_select_case_statement_token3] = ACTIONS(4527), + [aux_sym_select_type_statement_token1] = ACTIONS(4527), + [aux_sym_select_rank_statement_token2] = ACTIONS(4527), + [aux_sym_block_construct_token1] = ACTIONS(4527), + [aux_sym_associate_statement_token1] = ACTIONS(4527), + [aux_sym_format_statement_token1] = ACTIONS(4527), + [aux_sym_print_statement_token1] = ACTIONS(4527), + [aux_sym_open_statement_token1] = ACTIONS(4527), + [aux_sym_close_statement_token1] = ACTIONS(4527), + [aux_sym_inquire_statement_token1] = ACTIONS(4527), + [aux_sym_enum_statement_token1] = ACTIONS(4527), + [aux_sym_file_position_statement_token1] = ACTIONS(4527), + [aux_sym_file_position_statement_token2] = ACTIONS(4527), + [aux_sym_file_position_statement_token3] = ACTIONS(4527), + [aux_sym_file_position_statement_token4] = ACTIONS(4527), + [aux_sym_allocate_statement_token1] = ACTIONS(4527), + [aux_sym_entry_statement_token1] = ACTIONS(4527), + [aux_sym_logical_expression_token5] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_LPAREN_SLASH] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [aux_sym_boolean_literal_token1] = ACTIONS(4529), + [aux_sym_boolean_literal_token2] = ACTIONS(4529), + [aux_sym_null_literal_token1] = ACTIONS(4527), + [aux_sym_coarray_statement_token1] = ACTIONS(4527), + [aux_sym_coarray_statement_token2] = ACTIONS(4527), + [aux_sym_coarray_statement_token6] = ACTIONS(4527), + [aux_sym_coarray_statement_token8] = ACTIONS(4527), + [aux_sym_coarray_statement_token11] = ACTIONS(4527), + [aux_sym_coarray_statement_token12] = ACTIONS(4527), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4527), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4527), + [aux_sym_identifier_token1] = ACTIONS(4527), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4529), + [sym__float_literal] = ACTIONS(4529), + [sym__boz_literal] = ACTIONS(4529), + [sym__string_literal] = ACTIONS(4529), + [sym__string_literal_kind] = ACTIONS(4529), + }, + [1053] = { + [ts_builtin_sym_end] = ACTIONS(4543), + [aux_sym_preproc_include_token1] = ACTIONS(4541), + [aux_sym_preproc_def_token1] = ACTIONS(4541), + [aux_sym_preproc_if_token1] = ACTIONS(4541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4541), + [sym_preproc_directive] = ACTIONS(4541), + [anon_sym_LPAREN2] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4541), + [aux_sym_end_program_statement_token1] = ACTIONS(4541), + [aux_sym_end_program_statement_token2] = ACTIONS(4541), + [aux_sym_module_statement_token1] = ACTIONS(4541), + [aux_sym_submodule_statement_token1] = ACTIONS(4541), + [aux_sym_interface_statement_token1] = ACTIONS(4541), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4541), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4541), + [aux_sym_subroutine_statement_token1] = ACTIONS(4541), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4541), + [aux_sym_function_statement_token1] = ACTIONS(4541), + [aux_sym_language_binding_token1] = ACTIONS(4541), + [aux_sym_procedure_attributes_token1] = ACTIONS(4541), + [aux_sym_procedure_attributes_token3] = ACTIONS(4541), + [aux_sym_contains_statement_token1] = ACTIONS(4541), + [aux_sym_use_statement_token1] = ACTIONS(4541), + [aux_sym_use_statement_token2] = ACTIONS(4541), + [aux_sym_implicit_statement_token1] = ACTIONS(4541), + [aux_sym_implicit_statement_token3] = ACTIONS(4541), + [aux_sym_implicit_statement_token4] = ACTIONS(4541), + [aux_sym_save_statement_token1] = ACTIONS(4541), + [aux_sym_private_statement_token1] = ACTIONS(4541), + [aux_sym_public_statement_token1] = ACTIONS(4541), + [aux_sym_namelist_statement_token1] = ACTIONS(4541), + [aux_sym_common_statement_token1] = ACTIONS(4541), + [aux_sym_import_statement_token1] = ACTIONS(4541), + [aux_sym_derived_type_definition_token1] = ACTIONS(4541), + [aux_sym_abstract_specifier_token1] = ACTIONS(4541), + [aux_sym_procedure_attribute_token6] = ACTIONS(4541), + [aux_sym_variable_attributes_token1] = ACTIONS(4541), + [aux_sym_variable_attributes_token2] = ACTIONS(4541), + [aux_sym_variable_attributes_token3] = ACTIONS(4541), + [aux_sym_variable_attributes_token4] = ACTIONS(4541), + [aux_sym_variable_attributes_token5] = ACTIONS(4541), + [aux_sym__intrinsic_type_token1] = ACTIONS(4541), + [aux_sym__intrinsic_type_token2] = ACTIONS(4541), + [aux_sym__intrinsic_type_token3] = ACTIONS(4541), + [aux_sym__intrinsic_type_token4] = ACTIONS(4541), + [aux_sym__intrinsic_type_token6] = ACTIONS(4541), + [aux_sym__intrinsic_type_token7] = ACTIONS(4541), + [aux_sym__intrinsic_type_token8] = ACTIONS(4541), + [aux_sym__intrinsic_type_token9] = ACTIONS(4541), + [aux_sym__intrinsic_type_token10] = ACTIONS(4541), + [aux_sym_derived_type_token1] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4541), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4541), + [aux_sym_type_qualifier_token1] = ACTIONS(4541), + [aux_sym_type_qualifier_token2] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4541), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4541), + [aux_sym_equivalence_statement_token1] = ACTIONS(4541), + [anon_sym_SEMI] = ACTIONS(4543), + [aux_sym_stop_statement_token1] = ACTIONS(4541), + [aux_sym_stop_statement_token2] = ACTIONS(4541), + [aux_sym_subroutine_call_token1] = ACTIONS(4541), + [aux_sym_keyword_statement_token1] = ACTIONS(4541), + [aux_sym_keyword_statement_token2] = ACTIONS(4541), + [aux_sym_keyword_statement_token3] = ACTIONS(4541), + [aux_sym_keyword_statement_token4] = ACTIONS(4541), + [aux_sym_keyword_statement_token6] = ACTIONS(4541), + [aux_sym_keyword_statement_token7] = ACTIONS(4541), + [aux_sym_include_statement_token1] = ACTIONS(4541), + [aux_sym_data_statement_token1] = ACTIONS(4541), + [aux_sym_do_loop_statement_token1] = ACTIONS(4541), + [aux_sym__inline_if_statement_token1] = ACTIONS(4541), + [aux_sym_end_if_statement_token1] = ACTIONS(4541), + [aux_sym_elseif_clause_token2] = ACTIONS(4541), + [aux_sym__inline_where_statement_token1] = ACTIONS(4541), + [aux_sym__forall_control_expression_token1] = ACTIONS(4541), + [aux_sym_select_case_statement_token1] = ACTIONS(4541), + [aux_sym_select_case_statement_token3] = ACTIONS(4541), + [aux_sym_select_type_statement_token1] = ACTIONS(4541), + [aux_sym_select_rank_statement_token2] = ACTIONS(4541), + [aux_sym_block_construct_token1] = ACTIONS(4541), + [aux_sym_associate_statement_token1] = ACTIONS(4541), + [aux_sym_format_statement_token1] = ACTIONS(4541), + [aux_sym_print_statement_token1] = ACTIONS(4541), + [aux_sym_open_statement_token1] = ACTIONS(4541), + [aux_sym_close_statement_token1] = ACTIONS(4541), + [aux_sym_inquire_statement_token1] = ACTIONS(4541), + [aux_sym_enum_statement_token1] = ACTIONS(4541), + [aux_sym_file_position_statement_token1] = ACTIONS(4541), + [aux_sym_file_position_statement_token2] = ACTIONS(4541), + [aux_sym_file_position_statement_token3] = ACTIONS(4541), + [aux_sym_file_position_statement_token4] = ACTIONS(4541), + [aux_sym_allocate_statement_token1] = ACTIONS(4541), + [aux_sym_entry_statement_token1] = ACTIONS(4541), + [aux_sym_logical_expression_token5] = ACTIONS(4543), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_LPAREN_SLASH] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [aux_sym_boolean_literal_token1] = ACTIONS(4543), + [aux_sym_boolean_literal_token2] = ACTIONS(4543), + [aux_sym_null_literal_token1] = ACTIONS(4541), + [aux_sym_coarray_statement_token1] = ACTIONS(4541), + [aux_sym_coarray_statement_token2] = ACTIONS(4541), + [aux_sym_coarray_statement_token6] = ACTIONS(4541), + [aux_sym_coarray_statement_token8] = ACTIONS(4541), + [aux_sym_coarray_statement_token11] = ACTIONS(4541), + [aux_sym_coarray_statement_token12] = ACTIONS(4541), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4541), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4541), + [aux_sym_identifier_token1] = ACTIONS(4541), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4543), + [sym__float_literal] = ACTIONS(4543), + [sym__boz_literal] = ACTIONS(4543), + [sym__string_literal] = ACTIONS(4543), + [sym__string_literal_kind] = ACTIONS(4543), + }, + [1054] = { + [ts_builtin_sym_end] = ACTIONS(4485), + [aux_sym_preproc_include_token1] = ACTIONS(4483), + [aux_sym_preproc_def_token1] = ACTIONS(4483), + [aux_sym_preproc_if_token1] = ACTIONS(4483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4483), + [sym_preproc_directive] = ACTIONS(4483), + [anon_sym_LPAREN2] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4483), + [aux_sym_end_program_statement_token1] = ACTIONS(4483), + [aux_sym_end_program_statement_token2] = ACTIONS(4483), + [aux_sym_module_statement_token1] = ACTIONS(4483), + [aux_sym_submodule_statement_token1] = ACTIONS(4483), + [aux_sym_interface_statement_token1] = ACTIONS(4483), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4483), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4483), + [aux_sym_subroutine_statement_token1] = ACTIONS(4483), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4483), + [aux_sym_function_statement_token1] = ACTIONS(4483), + [aux_sym_language_binding_token1] = ACTIONS(4483), + [aux_sym_procedure_attributes_token1] = ACTIONS(4483), + [aux_sym_procedure_attributes_token3] = ACTIONS(4483), + [aux_sym_contains_statement_token1] = ACTIONS(4483), + [aux_sym_use_statement_token1] = ACTIONS(4483), + [aux_sym_use_statement_token2] = ACTIONS(4483), + [aux_sym_implicit_statement_token1] = ACTIONS(4483), + [aux_sym_implicit_statement_token3] = ACTIONS(4483), + [aux_sym_implicit_statement_token4] = ACTIONS(4483), + [aux_sym_save_statement_token1] = ACTIONS(4483), + [aux_sym_private_statement_token1] = ACTIONS(4483), + [aux_sym_public_statement_token1] = ACTIONS(4483), + [aux_sym_namelist_statement_token1] = ACTIONS(4483), + [aux_sym_common_statement_token1] = ACTIONS(4483), + [aux_sym_import_statement_token1] = ACTIONS(4483), + [aux_sym_derived_type_definition_token1] = ACTIONS(4483), + [aux_sym_abstract_specifier_token1] = ACTIONS(4483), + [aux_sym_procedure_attribute_token6] = ACTIONS(4483), + [aux_sym_variable_attributes_token1] = ACTIONS(4483), + [aux_sym_variable_attributes_token2] = ACTIONS(4483), + [aux_sym_variable_attributes_token3] = ACTIONS(4483), + [aux_sym_variable_attributes_token4] = ACTIONS(4483), + [aux_sym_variable_attributes_token5] = ACTIONS(4483), + [aux_sym__intrinsic_type_token1] = ACTIONS(4483), + [aux_sym__intrinsic_type_token2] = ACTIONS(4483), + [aux_sym__intrinsic_type_token3] = ACTIONS(4483), + [aux_sym__intrinsic_type_token4] = ACTIONS(4483), + [aux_sym__intrinsic_type_token6] = ACTIONS(4483), + [aux_sym__intrinsic_type_token7] = ACTIONS(4483), + [aux_sym__intrinsic_type_token8] = ACTIONS(4483), + [aux_sym__intrinsic_type_token9] = ACTIONS(4483), + [aux_sym__intrinsic_type_token10] = ACTIONS(4483), + [aux_sym_derived_type_token1] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4483), + [aux_sym_type_qualifier_token1] = ACTIONS(4483), + [aux_sym_type_qualifier_token2] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4483), + [aux_sym_equivalence_statement_token1] = ACTIONS(4483), + [anon_sym_SEMI] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4483), + [aux_sym_stop_statement_token2] = ACTIONS(4483), + [aux_sym_subroutine_call_token1] = ACTIONS(4483), + [aux_sym_keyword_statement_token1] = ACTIONS(4483), + [aux_sym_keyword_statement_token2] = ACTIONS(4483), + [aux_sym_keyword_statement_token3] = ACTIONS(4483), + [aux_sym_keyword_statement_token4] = ACTIONS(4483), + [aux_sym_keyword_statement_token6] = ACTIONS(4483), + [aux_sym_keyword_statement_token7] = ACTIONS(4483), + [aux_sym_include_statement_token1] = ACTIONS(4483), + [aux_sym_data_statement_token1] = ACTIONS(4483), + [aux_sym_do_loop_statement_token1] = ACTIONS(4483), + [aux_sym__inline_if_statement_token1] = ACTIONS(4483), + [aux_sym_end_if_statement_token1] = ACTIONS(4483), + [aux_sym_elseif_clause_token2] = ACTIONS(4483), + [aux_sym__inline_where_statement_token1] = ACTIONS(4483), + [aux_sym__forall_control_expression_token1] = ACTIONS(4483), + [aux_sym_select_case_statement_token1] = ACTIONS(4483), + [aux_sym_select_case_statement_token3] = ACTIONS(4483), + [aux_sym_select_type_statement_token1] = ACTIONS(4483), + [aux_sym_select_rank_statement_token2] = ACTIONS(4483), + [aux_sym_block_construct_token1] = ACTIONS(4483), + [aux_sym_associate_statement_token1] = ACTIONS(4483), + [aux_sym_format_statement_token1] = ACTIONS(4483), + [aux_sym_print_statement_token1] = ACTIONS(4483), + [aux_sym_open_statement_token1] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4483), + [aux_sym_inquire_statement_token1] = ACTIONS(4483), + [aux_sym_enum_statement_token1] = ACTIONS(4483), + [aux_sym_file_position_statement_token1] = ACTIONS(4483), + [aux_sym_file_position_statement_token2] = ACTIONS(4483), + [aux_sym_file_position_statement_token3] = ACTIONS(4483), + [aux_sym_file_position_statement_token4] = ACTIONS(4483), + [aux_sym_allocate_statement_token1] = ACTIONS(4483), + [aux_sym_entry_statement_token1] = ACTIONS(4483), + [aux_sym_logical_expression_token5] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4483), + [anon_sym_LPAREN_SLASH] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4483), + [aux_sym_coarray_statement_token1] = ACTIONS(4483), + [aux_sym_coarray_statement_token2] = ACTIONS(4483), + [aux_sym_coarray_statement_token6] = ACTIONS(4483), + [aux_sym_coarray_statement_token8] = ACTIONS(4483), + [aux_sym_coarray_statement_token11] = ACTIONS(4483), + [aux_sym_coarray_statement_token12] = ACTIONS(4483), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4483), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4483), + [aux_sym_identifier_token1] = ACTIONS(4483), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4485), + [sym__float_literal] = ACTIONS(4485), + [sym__boz_literal] = ACTIONS(4485), + [sym__string_literal] = ACTIONS(4485), + [sym__string_literal_kind] = ACTIONS(4485), + }, + [1055] = { + [aux_sym_preproc_include_token1] = ACTIONS(4455), + [aux_sym_preproc_def_token1] = ACTIONS(4455), + [aux_sym_preproc_if_token1] = ACTIONS(4455), + [aux_sym_preproc_if_token2] = ACTIONS(4455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4455), + [sym_preproc_directive] = ACTIONS(4455), + [anon_sym_LPAREN2] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4455), + [aux_sym_end_program_statement_token1] = ACTIONS(4455), + [aux_sym_end_program_statement_token2] = ACTIONS(4455), + [aux_sym_module_statement_token1] = ACTIONS(4455), + [aux_sym_submodule_statement_token1] = ACTIONS(4455), + [aux_sym_interface_statement_token1] = ACTIONS(4455), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4455), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4455), + [aux_sym_subroutine_statement_token1] = ACTIONS(4455), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4455), + [aux_sym_function_statement_token1] = ACTIONS(4455), + [aux_sym_language_binding_token1] = ACTIONS(4455), + [aux_sym_procedure_attributes_token1] = ACTIONS(4455), + [aux_sym_procedure_attributes_token3] = ACTIONS(4455), + [aux_sym_contains_statement_token1] = ACTIONS(4455), + [aux_sym_use_statement_token1] = ACTIONS(4455), + [aux_sym_use_statement_token2] = ACTIONS(4455), + [aux_sym_implicit_statement_token1] = ACTIONS(4455), + [aux_sym_implicit_statement_token3] = ACTIONS(4455), + [aux_sym_implicit_statement_token4] = ACTIONS(4455), + [aux_sym_save_statement_token1] = ACTIONS(4455), + [aux_sym_private_statement_token1] = ACTIONS(4455), + [aux_sym_public_statement_token1] = ACTIONS(4455), + [aux_sym_namelist_statement_token1] = ACTIONS(4455), + [aux_sym_common_statement_token1] = ACTIONS(4455), + [aux_sym_import_statement_token1] = ACTIONS(4455), + [aux_sym_derived_type_definition_token1] = ACTIONS(4455), + [aux_sym_abstract_specifier_token1] = ACTIONS(4455), + [aux_sym_procedure_attribute_token6] = ACTIONS(4455), + [aux_sym_variable_attributes_token1] = ACTIONS(4455), + [aux_sym_variable_attributes_token2] = ACTIONS(4455), + [aux_sym_variable_attributes_token3] = ACTIONS(4455), + [aux_sym_variable_attributes_token4] = ACTIONS(4455), + [aux_sym_variable_attributes_token5] = ACTIONS(4455), + [aux_sym__intrinsic_type_token1] = ACTIONS(4455), + [aux_sym__intrinsic_type_token2] = ACTIONS(4455), + [aux_sym__intrinsic_type_token3] = ACTIONS(4455), + [aux_sym__intrinsic_type_token4] = ACTIONS(4455), + [aux_sym__intrinsic_type_token6] = ACTIONS(4455), + [aux_sym__intrinsic_type_token7] = ACTIONS(4455), + [aux_sym__intrinsic_type_token8] = ACTIONS(4455), + [aux_sym__intrinsic_type_token9] = ACTIONS(4455), + [aux_sym__intrinsic_type_token10] = ACTIONS(4455), + [aux_sym_derived_type_token1] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4455), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4455), + [aux_sym_type_qualifier_token1] = ACTIONS(4455), + [aux_sym_type_qualifier_token2] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4455), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4455), + [aux_sym_equivalence_statement_token1] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [aux_sym_stop_statement_token1] = ACTIONS(4455), + [aux_sym_stop_statement_token2] = ACTIONS(4455), + [aux_sym_subroutine_call_token1] = ACTIONS(4455), + [aux_sym_keyword_statement_token1] = ACTIONS(4455), + [aux_sym_keyword_statement_token2] = ACTIONS(4455), + [aux_sym_keyword_statement_token3] = ACTIONS(4455), + [aux_sym_keyword_statement_token4] = ACTIONS(4455), + [aux_sym_keyword_statement_token6] = ACTIONS(4455), + [aux_sym_keyword_statement_token7] = ACTIONS(4455), + [aux_sym_include_statement_token1] = ACTIONS(4455), + [aux_sym_data_statement_token1] = ACTIONS(4455), + [aux_sym_do_loop_statement_token1] = ACTIONS(4455), + [aux_sym__inline_if_statement_token1] = ACTIONS(4455), + [aux_sym_end_if_statement_token1] = ACTIONS(4455), + [aux_sym_elseif_clause_token2] = ACTIONS(4455), + [aux_sym__inline_where_statement_token1] = ACTIONS(4455), + [aux_sym__forall_control_expression_token1] = ACTIONS(4455), + [aux_sym_select_case_statement_token1] = ACTIONS(4455), + [aux_sym_select_case_statement_token3] = ACTIONS(4455), + [aux_sym_select_type_statement_token1] = ACTIONS(4455), + [aux_sym_select_rank_statement_token2] = ACTIONS(4455), + [aux_sym_block_construct_token1] = ACTIONS(4455), + [aux_sym_associate_statement_token1] = ACTIONS(4455), + [aux_sym_format_statement_token1] = ACTIONS(4455), + [aux_sym_print_statement_token1] = ACTIONS(4455), + [aux_sym_open_statement_token1] = ACTIONS(4455), + [aux_sym_close_statement_token1] = ACTIONS(4455), + [aux_sym_inquire_statement_token1] = ACTIONS(4455), + [aux_sym_enum_statement_token1] = ACTIONS(4455), + [aux_sym_file_position_statement_token1] = ACTIONS(4455), + [aux_sym_file_position_statement_token2] = ACTIONS(4455), + [aux_sym_file_position_statement_token3] = ACTIONS(4455), + [aux_sym_file_position_statement_token4] = ACTIONS(4455), + [aux_sym_allocate_statement_token1] = ACTIONS(4455), + [aux_sym_entry_statement_token1] = ACTIONS(4455), + [aux_sym_logical_expression_token5] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_LPAREN_SLASH] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [aux_sym_boolean_literal_token1] = ACTIONS(4457), + [aux_sym_boolean_literal_token2] = ACTIONS(4457), + [aux_sym_null_literal_token1] = ACTIONS(4455), + [aux_sym_coarray_statement_token1] = ACTIONS(4455), + [aux_sym_coarray_statement_token2] = ACTIONS(4455), + [aux_sym_coarray_statement_token6] = ACTIONS(4455), + [aux_sym_coarray_statement_token8] = ACTIONS(4455), + [aux_sym_coarray_statement_token11] = ACTIONS(4455), + [aux_sym_coarray_statement_token12] = ACTIONS(4455), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4455), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4455), + [aux_sym_identifier_token1] = ACTIONS(4455), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4457), + [sym__float_literal] = ACTIONS(4457), + [sym__boz_literal] = ACTIONS(4457), + [sym__string_literal] = ACTIONS(4457), + [sym__string_literal_kind] = ACTIONS(4457), + }, + [1056] = { + [ts_builtin_sym_end] = ACTIONS(4461), + [aux_sym_preproc_include_token1] = ACTIONS(4459), + [aux_sym_preproc_def_token1] = ACTIONS(4459), + [aux_sym_preproc_if_token1] = ACTIONS(4459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4459), + [sym_preproc_directive] = ACTIONS(4459), + [anon_sym_LPAREN2] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4459), + [aux_sym_end_program_statement_token1] = ACTIONS(4459), + [aux_sym_end_program_statement_token2] = ACTIONS(4459), + [aux_sym_module_statement_token1] = ACTIONS(4459), + [aux_sym_submodule_statement_token1] = ACTIONS(4459), + [aux_sym_interface_statement_token1] = ACTIONS(4459), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4459), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4459), + [aux_sym_subroutine_statement_token1] = ACTIONS(4459), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4459), + [aux_sym_function_statement_token1] = ACTIONS(4459), + [aux_sym_language_binding_token1] = ACTIONS(4459), + [aux_sym_procedure_attributes_token1] = ACTIONS(4459), + [aux_sym_procedure_attributes_token3] = ACTIONS(4459), + [aux_sym_contains_statement_token1] = ACTIONS(4459), + [aux_sym_use_statement_token1] = ACTIONS(4459), + [aux_sym_use_statement_token2] = ACTIONS(4459), + [aux_sym_implicit_statement_token1] = ACTIONS(4459), + [aux_sym_implicit_statement_token3] = ACTIONS(4459), + [aux_sym_implicit_statement_token4] = ACTIONS(4459), + [aux_sym_save_statement_token1] = ACTIONS(4459), + [aux_sym_private_statement_token1] = ACTIONS(4459), + [aux_sym_public_statement_token1] = ACTIONS(4459), + [aux_sym_namelist_statement_token1] = ACTIONS(4459), + [aux_sym_common_statement_token1] = ACTIONS(4459), + [aux_sym_import_statement_token1] = ACTIONS(4459), + [aux_sym_derived_type_definition_token1] = ACTIONS(4459), + [aux_sym_abstract_specifier_token1] = ACTIONS(4459), + [aux_sym_procedure_attribute_token6] = ACTIONS(4459), + [aux_sym_variable_attributes_token1] = ACTIONS(4459), + [aux_sym_variable_attributes_token2] = ACTIONS(4459), + [aux_sym_variable_attributes_token3] = ACTIONS(4459), + [aux_sym_variable_attributes_token4] = ACTIONS(4459), + [aux_sym_variable_attributes_token5] = ACTIONS(4459), + [aux_sym__intrinsic_type_token1] = ACTIONS(4459), + [aux_sym__intrinsic_type_token2] = ACTIONS(4459), + [aux_sym__intrinsic_type_token3] = ACTIONS(4459), + [aux_sym__intrinsic_type_token4] = ACTIONS(4459), + [aux_sym__intrinsic_type_token6] = ACTIONS(4459), + [aux_sym__intrinsic_type_token7] = ACTIONS(4459), + [aux_sym__intrinsic_type_token8] = ACTIONS(4459), + [aux_sym__intrinsic_type_token9] = ACTIONS(4459), + [aux_sym__intrinsic_type_token10] = ACTIONS(4459), + [aux_sym_derived_type_token1] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4459), + [aux_sym_type_qualifier_token1] = ACTIONS(4459), + [aux_sym_type_qualifier_token2] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4459), + [aux_sym_equivalence_statement_token1] = ACTIONS(4459), + [anon_sym_SEMI] = ACTIONS(4461), + [aux_sym_stop_statement_token1] = ACTIONS(4459), + [aux_sym_stop_statement_token2] = ACTIONS(4459), + [aux_sym_subroutine_call_token1] = ACTIONS(4459), + [aux_sym_keyword_statement_token1] = ACTIONS(4459), + [aux_sym_keyword_statement_token2] = ACTIONS(4459), + [aux_sym_keyword_statement_token3] = ACTIONS(4459), + [aux_sym_keyword_statement_token4] = ACTIONS(4459), + [aux_sym_keyword_statement_token6] = ACTIONS(4459), + [aux_sym_keyword_statement_token7] = ACTIONS(4459), + [aux_sym_include_statement_token1] = ACTIONS(4459), + [aux_sym_data_statement_token1] = ACTIONS(4459), + [aux_sym_do_loop_statement_token1] = ACTIONS(4459), + [aux_sym__inline_if_statement_token1] = ACTIONS(4459), + [aux_sym_end_if_statement_token1] = ACTIONS(4459), + [aux_sym_elseif_clause_token2] = ACTIONS(4459), + [aux_sym__inline_where_statement_token1] = ACTIONS(4459), + [aux_sym__forall_control_expression_token1] = ACTIONS(4459), + [aux_sym_select_case_statement_token1] = ACTIONS(4459), + [aux_sym_select_case_statement_token3] = ACTIONS(4459), + [aux_sym_select_type_statement_token1] = ACTIONS(4459), + [aux_sym_select_rank_statement_token2] = ACTIONS(4459), + [aux_sym_block_construct_token1] = ACTIONS(4459), + [aux_sym_associate_statement_token1] = ACTIONS(4459), + [aux_sym_format_statement_token1] = ACTIONS(4459), + [aux_sym_print_statement_token1] = ACTIONS(4459), + [aux_sym_open_statement_token1] = ACTIONS(4459), + [aux_sym_close_statement_token1] = ACTIONS(4459), + [aux_sym_inquire_statement_token1] = ACTIONS(4459), + [aux_sym_enum_statement_token1] = ACTIONS(4459), + [aux_sym_file_position_statement_token1] = ACTIONS(4459), + [aux_sym_file_position_statement_token2] = ACTIONS(4459), + [aux_sym_file_position_statement_token3] = ACTIONS(4459), + [aux_sym_file_position_statement_token4] = ACTIONS(4459), + [aux_sym_allocate_statement_token1] = ACTIONS(4459), + [aux_sym_entry_statement_token1] = ACTIONS(4459), + [aux_sym_logical_expression_token5] = ACTIONS(4461), + [anon_sym_DOT] = ACTIONS(4459), + [anon_sym_LPAREN_SLASH] = ACTIONS(4461), + [anon_sym_LBRACK] = ACTIONS(4461), + [aux_sym_boolean_literal_token1] = ACTIONS(4461), + [aux_sym_boolean_literal_token2] = ACTIONS(4461), + [aux_sym_null_literal_token1] = ACTIONS(4459), + [aux_sym_coarray_statement_token1] = ACTIONS(4459), + [aux_sym_coarray_statement_token2] = ACTIONS(4459), + [aux_sym_coarray_statement_token6] = ACTIONS(4459), + [aux_sym_coarray_statement_token8] = ACTIONS(4459), + [aux_sym_coarray_statement_token11] = ACTIONS(4459), + [aux_sym_coarray_statement_token12] = ACTIONS(4459), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4459), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4459), + [aux_sym_identifier_token1] = ACTIONS(4459), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4461), + [sym__float_literal] = ACTIONS(4461), + [sym__boz_literal] = ACTIONS(4461), + [sym__string_literal] = ACTIONS(4461), + [sym__string_literal_kind] = ACTIONS(4461), + }, + [1057] = { + [ts_builtin_sym_end] = ACTIONS(4465), + [aux_sym_preproc_include_token1] = ACTIONS(4463), + [aux_sym_preproc_def_token1] = ACTIONS(4463), + [aux_sym_preproc_if_token1] = ACTIONS(4463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4463), + [sym_preproc_directive] = ACTIONS(4463), + [anon_sym_LPAREN2] = ACTIONS(4463), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4463), + [aux_sym_end_program_statement_token1] = ACTIONS(4463), + [aux_sym_end_program_statement_token2] = ACTIONS(4463), + [aux_sym_module_statement_token1] = ACTIONS(4463), + [aux_sym_submodule_statement_token1] = ACTIONS(4463), + [aux_sym_interface_statement_token1] = ACTIONS(4463), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4463), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4463), + [aux_sym_subroutine_statement_token1] = ACTIONS(4463), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4463), + [aux_sym_function_statement_token1] = ACTIONS(4463), + [aux_sym_language_binding_token1] = ACTIONS(4463), + [aux_sym_procedure_attributes_token1] = ACTIONS(4463), + [aux_sym_procedure_attributes_token3] = ACTIONS(4463), + [aux_sym_contains_statement_token1] = ACTIONS(4463), + [aux_sym_use_statement_token1] = ACTIONS(4463), + [aux_sym_use_statement_token2] = ACTIONS(4463), + [aux_sym_implicit_statement_token1] = ACTIONS(4463), + [aux_sym_implicit_statement_token3] = ACTIONS(4463), + [aux_sym_implicit_statement_token4] = ACTIONS(4463), + [aux_sym_save_statement_token1] = ACTIONS(4463), + [aux_sym_private_statement_token1] = ACTIONS(4463), + [aux_sym_public_statement_token1] = ACTIONS(4463), + [aux_sym_namelist_statement_token1] = ACTIONS(4463), + [aux_sym_common_statement_token1] = ACTIONS(4463), + [aux_sym_import_statement_token1] = ACTIONS(4463), + [aux_sym_derived_type_definition_token1] = ACTIONS(4463), + [aux_sym_abstract_specifier_token1] = ACTIONS(4463), + [aux_sym_procedure_attribute_token6] = ACTIONS(4463), + [aux_sym_variable_attributes_token1] = ACTIONS(4463), + [aux_sym_variable_attributes_token2] = ACTIONS(4463), + [aux_sym_variable_attributes_token3] = ACTIONS(4463), + [aux_sym_variable_attributes_token4] = ACTIONS(4463), + [aux_sym_variable_attributes_token5] = ACTIONS(4463), + [aux_sym__intrinsic_type_token1] = ACTIONS(4463), + [aux_sym__intrinsic_type_token2] = ACTIONS(4463), + [aux_sym__intrinsic_type_token3] = ACTIONS(4463), + [aux_sym__intrinsic_type_token4] = ACTIONS(4463), + [aux_sym__intrinsic_type_token6] = ACTIONS(4463), + [aux_sym__intrinsic_type_token7] = ACTIONS(4463), + [aux_sym__intrinsic_type_token8] = ACTIONS(4463), + [aux_sym__intrinsic_type_token9] = ACTIONS(4463), + [aux_sym__intrinsic_type_token10] = ACTIONS(4463), + [aux_sym_derived_type_token1] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4463), + [aux_sym_type_qualifier_token1] = ACTIONS(4463), + [aux_sym_type_qualifier_token2] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4463), + [aux_sym_equivalence_statement_token1] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [aux_sym_stop_statement_token1] = ACTIONS(4463), + [aux_sym_stop_statement_token2] = ACTIONS(4463), + [aux_sym_subroutine_call_token1] = ACTIONS(4463), + [aux_sym_keyword_statement_token1] = ACTIONS(4463), + [aux_sym_keyword_statement_token2] = ACTIONS(4463), + [aux_sym_keyword_statement_token3] = ACTIONS(4463), + [aux_sym_keyword_statement_token4] = ACTIONS(4463), + [aux_sym_keyword_statement_token6] = ACTIONS(4463), + [aux_sym_keyword_statement_token7] = ACTIONS(4463), + [aux_sym_include_statement_token1] = ACTIONS(4463), + [aux_sym_data_statement_token1] = ACTIONS(4463), + [aux_sym_do_loop_statement_token1] = ACTIONS(4463), + [aux_sym__inline_if_statement_token1] = ACTIONS(4463), + [aux_sym_end_if_statement_token1] = ACTIONS(4463), + [aux_sym_elseif_clause_token2] = ACTIONS(4463), + [aux_sym__inline_where_statement_token1] = ACTIONS(4463), + [aux_sym__forall_control_expression_token1] = ACTIONS(4463), + [aux_sym_select_case_statement_token1] = ACTIONS(4463), + [aux_sym_select_case_statement_token3] = ACTIONS(4463), + [aux_sym_select_type_statement_token1] = ACTIONS(4463), + [aux_sym_select_rank_statement_token2] = ACTIONS(4463), + [aux_sym_block_construct_token1] = ACTIONS(4463), + [aux_sym_associate_statement_token1] = ACTIONS(4463), + [aux_sym_format_statement_token1] = ACTIONS(4463), + [aux_sym_print_statement_token1] = ACTIONS(4463), + [aux_sym_open_statement_token1] = ACTIONS(4463), + [aux_sym_close_statement_token1] = ACTIONS(4463), + [aux_sym_inquire_statement_token1] = ACTIONS(4463), + [aux_sym_enum_statement_token1] = ACTIONS(4463), + [aux_sym_file_position_statement_token1] = ACTIONS(4463), + [aux_sym_file_position_statement_token2] = ACTIONS(4463), + [aux_sym_file_position_statement_token3] = ACTIONS(4463), + [aux_sym_file_position_statement_token4] = ACTIONS(4463), + [aux_sym_allocate_statement_token1] = ACTIONS(4463), + [aux_sym_entry_statement_token1] = ACTIONS(4463), + [aux_sym_logical_expression_token5] = ACTIONS(4465), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_LPAREN_SLASH] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [aux_sym_boolean_literal_token1] = ACTIONS(4465), + [aux_sym_boolean_literal_token2] = ACTIONS(4465), + [aux_sym_null_literal_token1] = ACTIONS(4463), + [aux_sym_coarray_statement_token1] = ACTIONS(4463), + [aux_sym_coarray_statement_token2] = ACTIONS(4463), + [aux_sym_coarray_statement_token6] = ACTIONS(4463), + [aux_sym_coarray_statement_token8] = ACTIONS(4463), + [aux_sym_coarray_statement_token11] = ACTIONS(4463), + [aux_sym_coarray_statement_token12] = ACTIONS(4463), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4463), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4463), + [aux_sym_identifier_token1] = ACTIONS(4463), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4465), + [sym__float_literal] = ACTIONS(4465), + [sym__boz_literal] = ACTIONS(4465), + [sym__string_literal] = ACTIONS(4465), + [sym__string_literal_kind] = ACTIONS(4465), + }, + [1058] = { + [ts_builtin_sym_end] = ACTIONS(4469), + [aux_sym_preproc_include_token1] = ACTIONS(4467), + [aux_sym_preproc_def_token1] = ACTIONS(4467), + [aux_sym_preproc_if_token1] = ACTIONS(4467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4467), + [sym_preproc_directive] = ACTIONS(4467), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_PLUS] = ACTIONS(4469), + [anon_sym_DASH] = ACTIONS(4469), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4467), + [aux_sym_end_program_statement_token1] = ACTIONS(4467), + [aux_sym_end_program_statement_token2] = ACTIONS(4467), + [aux_sym_module_statement_token1] = ACTIONS(4467), + [aux_sym_submodule_statement_token1] = ACTIONS(4467), + [aux_sym_interface_statement_token1] = ACTIONS(4467), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4467), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4467), + [aux_sym_subroutine_statement_token1] = ACTIONS(4467), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4467), + [aux_sym_function_statement_token1] = ACTIONS(4467), + [aux_sym_language_binding_token1] = ACTIONS(4467), + [aux_sym_procedure_attributes_token1] = ACTIONS(4467), + [aux_sym_procedure_attributes_token3] = ACTIONS(4467), + [aux_sym_contains_statement_token1] = ACTIONS(4467), + [aux_sym_use_statement_token1] = ACTIONS(4467), + [aux_sym_use_statement_token2] = ACTIONS(4467), + [aux_sym_implicit_statement_token1] = ACTIONS(4467), + [aux_sym_implicit_statement_token3] = ACTIONS(4467), + [aux_sym_implicit_statement_token4] = ACTIONS(4467), + [aux_sym_save_statement_token1] = ACTIONS(4467), + [aux_sym_private_statement_token1] = ACTIONS(4467), + [aux_sym_public_statement_token1] = ACTIONS(4467), + [aux_sym_namelist_statement_token1] = ACTIONS(4467), + [aux_sym_common_statement_token1] = ACTIONS(4467), + [aux_sym_import_statement_token1] = ACTIONS(4467), + [aux_sym_derived_type_definition_token1] = ACTIONS(4467), + [aux_sym_abstract_specifier_token1] = ACTIONS(4467), + [aux_sym_procedure_attribute_token6] = ACTIONS(4467), + [aux_sym_variable_attributes_token1] = ACTIONS(4467), + [aux_sym_variable_attributes_token2] = ACTIONS(4467), + [aux_sym_variable_attributes_token3] = ACTIONS(4467), + [aux_sym_variable_attributes_token4] = ACTIONS(4467), + [aux_sym_variable_attributes_token5] = ACTIONS(4467), + [aux_sym__intrinsic_type_token1] = ACTIONS(4467), + [aux_sym__intrinsic_type_token2] = ACTIONS(4467), + [aux_sym__intrinsic_type_token3] = ACTIONS(4467), + [aux_sym__intrinsic_type_token4] = ACTIONS(4467), + [aux_sym__intrinsic_type_token6] = ACTIONS(4467), + [aux_sym__intrinsic_type_token7] = ACTIONS(4467), + [aux_sym__intrinsic_type_token8] = ACTIONS(4467), + [aux_sym__intrinsic_type_token9] = ACTIONS(4467), + [aux_sym__intrinsic_type_token10] = ACTIONS(4467), + [aux_sym_derived_type_token1] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4467), + [aux_sym_type_qualifier_token1] = ACTIONS(4467), + [aux_sym_type_qualifier_token2] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4467), + [aux_sym_equivalence_statement_token1] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [aux_sym_stop_statement_token1] = ACTIONS(4467), + [aux_sym_stop_statement_token2] = ACTIONS(4467), + [aux_sym_subroutine_call_token1] = ACTIONS(4467), + [aux_sym_keyword_statement_token1] = ACTIONS(4467), + [aux_sym_keyword_statement_token2] = ACTIONS(4467), + [aux_sym_keyword_statement_token3] = ACTIONS(4467), + [aux_sym_keyword_statement_token4] = ACTIONS(4467), + [aux_sym_keyword_statement_token6] = ACTIONS(4467), + [aux_sym_keyword_statement_token7] = ACTIONS(4467), + [aux_sym_include_statement_token1] = ACTIONS(4467), + [aux_sym_data_statement_token1] = ACTIONS(4467), + [aux_sym_do_loop_statement_token1] = ACTIONS(4467), + [aux_sym__inline_if_statement_token1] = ACTIONS(4467), + [aux_sym_end_if_statement_token1] = ACTIONS(4467), + [aux_sym_elseif_clause_token2] = ACTIONS(4467), + [aux_sym__inline_where_statement_token1] = ACTIONS(4467), + [aux_sym__forall_control_expression_token1] = ACTIONS(4467), + [aux_sym_select_case_statement_token1] = ACTIONS(4467), + [aux_sym_select_case_statement_token3] = ACTIONS(4467), + [aux_sym_select_type_statement_token1] = ACTIONS(4467), + [aux_sym_select_rank_statement_token2] = ACTIONS(4467), + [aux_sym_block_construct_token1] = ACTIONS(4467), + [aux_sym_associate_statement_token1] = ACTIONS(4467), + [aux_sym_format_statement_token1] = ACTIONS(4467), + [aux_sym_print_statement_token1] = ACTIONS(4467), + [aux_sym_open_statement_token1] = ACTIONS(4467), + [aux_sym_close_statement_token1] = ACTIONS(4467), + [aux_sym_inquire_statement_token1] = ACTIONS(4467), + [aux_sym_enum_statement_token1] = ACTIONS(4467), + [aux_sym_file_position_statement_token1] = ACTIONS(4467), + [aux_sym_file_position_statement_token2] = ACTIONS(4467), + [aux_sym_file_position_statement_token3] = ACTIONS(4467), + [aux_sym_file_position_statement_token4] = ACTIONS(4467), + [aux_sym_allocate_statement_token1] = ACTIONS(4467), + [aux_sym_entry_statement_token1] = ACTIONS(4467), + [aux_sym_logical_expression_token5] = ACTIONS(4469), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_LPAREN_SLASH] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [aux_sym_boolean_literal_token1] = ACTIONS(4469), + [aux_sym_boolean_literal_token2] = ACTIONS(4469), + [aux_sym_null_literal_token1] = ACTIONS(4467), + [aux_sym_coarray_statement_token1] = ACTIONS(4467), + [aux_sym_coarray_statement_token2] = ACTIONS(4467), + [aux_sym_coarray_statement_token6] = ACTIONS(4467), + [aux_sym_coarray_statement_token8] = ACTIONS(4467), + [aux_sym_coarray_statement_token11] = ACTIONS(4467), + [aux_sym_coarray_statement_token12] = ACTIONS(4467), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4467), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4467), + [aux_sym_identifier_token1] = ACTIONS(4467), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4469), + [sym__float_literal] = ACTIONS(4469), + [sym__boz_literal] = ACTIONS(4469), + [sym__string_literal] = ACTIONS(4469), + [sym__string_literal_kind] = ACTIONS(4469), + }, + [1059] = { + [ts_builtin_sym_end] = ACTIONS(4473), + [aux_sym_preproc_include_token1] = ACTIONS(4471), + [aux_sym_preproc_def_token1] = ACTIONS(4471), + [aux_sym_preproc_if_token1] = ACTIONS(4471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4471), + [sym_preproc_directive] = ACTIONS(4471), + [anon_sym_LPAREN2] = ACTIONS(4471), + [anon_sym_PLUS] = ACTIONS(4473), + [anon_sym_DASH] = ACTIONS(4473), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4471), + [aux_sym_end_program_statement_token1] = ACTIONS(4471), + [aux_sym_end_program_statement_token2] = ACTIONS(4471), + [aux_sym_module_statement_token1] = ACTIONS(4471), + [aux_sym_submodule_statement_token1] = ACTIONS(4471), + [aux_sym_interface_statement_token1] = ACTIONS(4471), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4471), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4471), + [aux_sym_subroutine_statement_token1] = ACTIONS(4471), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4471), + [aux_sym_function_statement_token1] = ACTIONS(4471), + [aux_sym_language_binding_token1] = ACTIONS(4471), + [aux_sym_procedure_attributes_token1] = ACTIONS(4471), + [aux_sym_procedure_attributes_token3] = ACTIONS(4471), + [aux_sym_contains_statement_token1] = ACTIONS(4471), + [aux_sym_use_statement_token1] = ACTIONS(4471), + [aux_sym_use_statement_token2] = ACTIONS(4471), + [aux_sym_implicit_statement_token1] = ACTIONS(4471), + [aux_sym_implicit_statement_token3] = ACTIONS(4471), + [aux_sym_implicit_statement_token4] = ACTIONS(4471), + [aux_sym_save_statement_token1] = ACTIONS(4471), + [aux_sym_private_statement_token1] = ACTIONS(4471), + [aux_sym_public_statement_token1] = ACTIONS(4471), + [aux_sym_namelist_statement_token1] = ACTIONS(4471), + [aux_sym_common_statement_token1] = ACTIONS(4471), + [aux_sym_import_statement_token1] = ACTIONS(4471), + [aux_sym_derived_type_definition_token1] = ACTIONS(4471), + [aux_sym_abstract_specifier_token1] = ACTIONS(4471), + [aux_sym_procedure_attribute_token6] = ACTIONS(4471), + [aux_sym_variable_attributes_token1] = ACTIONS(4471), + [aux_sym_variable_attributes_token2] = ACTIONS(4471), + [aux_sym_variable_attributes_token3] = ACTIONS(4471), + [aux_sym_variable_attributes_token4] = ACTIONS(4471), + [aux_sym_variable_attributes_token5] = ACTIONS(4471), + [aux_sym__intrinsic_type_token1] = ACTIONS(4471), + [aux_sym__intrinsic_type_token2] = ACTIONS(4471), + [aux_sym__intrinsic_type_token3] = ACTIONS(4471), + [aux_sym__intrinsic_type_token4] = ACTIONS(4471), + [aux_sym__intrinsic_type_token6] = ACTIONS(4471), + [aux_sym__intrinsic_type_token7] = ACTIONS(4471), + [aux_sym__intrinsic_type_token8] = ACTIONS(4471), + [aux_sym__intrinsic_type_token9] = ACTIONS(4471), + [aux_sym__intrinsic_type_token10] = ACTIONS(4471), + [aux_sym_derived_type_token1] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4471), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4471), + [aux_sym_type_qualifier_token1] = ACTIONS(4471), + [aux_sym_type_qualifier_token2] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4471), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4471), + [aux_sym_equivalence_statement_token1] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4473), + [aux_sym_stop_statement_token1] = ACTIONS(4471), + [aux_sym_stop_statement_token2] = ACTIONS(4471), + [aux_sym_subroutine_call_token1] = ACTIONS(4471), + [aux_sym_keyword_statement_token1] = ACTIONS(4471), + [aux_sym_keyword_statement_token2] = ACTIONS(4471), + [aux_sym_keyword_statement_token3] = ACTIONS(4471), + [aux_sym_keyword_statement_token4] = ACTIONS(4471), + [aux_sym_keyword_statement_token6] = ACTIONS(4471), + [aux_sym_keyword_statement_token7] = ACTIONS(4471), + [aux_sym_include_statement_token1] = ACTIONS(4471), + [aux_sym_data_statement_token1] = ACTIONS(4471), + [aux_sym_do_loop_statement_token1] = ACTIONS(4471), + [aux_sym__inline_if_statement_token1] = ACTIONS(4471), + [aux_sym_end_if_statement_token1] = ACTIONS(4471), + [aux_sym_elseif_clause_token2] = ACTIONS(4471), + [aux_sym__inline_where_statement_token1] = ACTIONS(4471), + [aux_sym__forall_control_expression_token1] = ACTIONS(4471), + [aux_sym_select_case_statement_token1] = ACTIONS(4471), + [aux_sym_select_case_statement_token3] = ACTIONS(4471), + [aux_sym_select_type_statement_token1] = ACTIONS(4471), + [aux_sym_select_rank_statement_token2] = ACTIONS(4471), + [aux_sym_block_construct_token1] = ACTIONS(4471), + [aux_sym_associate_statement_token1] = ACTIONS(4471), + [aux_sym_format_statement_token1] = ACTIONS(4471), + [aux_sym_print_statement_token1] = ACTIONS(4471), + [aux_sym_open_statement_token1] = ACTIONS(4471), + [aux_sym_close_statement_token1] = ACTIONS(4471), + [aux_sym_inquire_statement_token1] = ACTIONS(4471), + [aux_sym_enum_statement_token1] = ACTIONS(4471), + [aux_sym_file_position_statement_token1] = ACTIONS(4471), + [aux_sym_file_position_statement_token2] = ACTIONS(4471), + [aux_sym_file_position_statement_token3] = ACTIONS(4471), + [aux_sym_file_position_statement_token4] = ACTIONS(4471), + [aux_sym_allocate_statement_token1] = ACTIONS(4471), + [aux_sym_entry_statement_token1] = ACTIONS(4471), + [aux_sym_logical_expression_token5] = ACTIONS(4473), + [anon_sym_DOT] = ACTIONS(4471), + [anon_sym_LPAREN_SLASH] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [aux_sym_boolean_literal_token1] = ACTIONS(4473), + [aux_sym_boolean_literal_token2] = ACTIONS(4473), + [aux_sym_null_literal_token1] = ACTIONS(4471), + [aux_sym_coarray_statement_token1] = ACTIONS(4471), + [aux_sym_coarray_statement_token2] = ACTIONS(4471), + [aux_sym_coarray_statement_token6] = ACTIONS(4471), + [aux_sym_coarray_statement_token8] = ACTIONS(4471), + [aux_sym_coarray_statement_token11] = ACTIONS(4471), + [aux_sym_coarray_statement_token12] = ACTIONS(4471), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4471), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4471), + [aux_sym_identifier_token1] = ACTIONS(4471), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4473), + [sym__float_literal] = ACTIONS(4473), + [sym__boz_literal] = ACTIONS(4473), + [sym__string_literal] = ACTIONS(4473), + [sym__string_literal_kind] = ACTIONS(4473), + }, + [1060] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(8370), + [sym_preproc_elif_in_module] = STATE(8370), + [sym_preproc_elifdef_in_module] = STATE(8370), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5765), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4753), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4665), + }, + [1061] = { + [ts_builtin_sym_end] = ACTIONS(4477), + [aux_sym_preproc_include_token1] = ACTIONS(4475), + [aux_sym_preproc_def_token1] = ACTIONS(4475), + [aux_sym_preproc_if_token1] = ACTIONS(4475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4475), + [sym_preproc_directive] = ACTIONS(4475), + [anon_sym_LPAREN2] = ACTIONS(4475), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4475), + [aux_sym_end_program_statement_token1] = ACTIONS(4475), + [aux_sym_end_program_statement_token2] = ACTIONS(4475), + [aux_sym_module_statement_token1] = ACTIONS(4475), + [aux_sym_submodule_statement_token1] = ACTIONS(4475), + [aux_sym_interface_statement_token1] = ACTIONS(4475), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4475), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4475), + [aux_sym_subroutine_statement_token1] = ACTIONS(4475), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4475), + [aux_sym_function_statement_token1] = ACTIONS(4475), + [aux_sym_language_binding_token1] = ACTIONS(4475), + [aux_sym_procedure_attributes_token1] = ACTIONS(4475), + [aux_sym_procedure_attributes_token3] = ACTIONS(4475), + [aux_sym_contains_statement_token1] = ACTIONS(4475), + [aux_sym_use_statement_token1] = ACTIONS(4475), + [aux_sym_use_statement_token2] = ACTIONS(4475), + [aux_sym_implicit_statement_token1] = ACTIONS(4475), + [aux_sym_implicit_statement_token3] = ACTIONS(4475), + [aux_sym_implicit_statement_token4] = ACTIONS(4475), + [aux_sym_save_statement_token1] = ACTIONS(4475), + [aux_sym_private_statement_token1] = ACTIONS(4475), + [aux_sym_public_statement_token1] = ACTIONS(4475), + [aux_sym_namelist_statement_token1] = ACTIONS(4475), + [aux_sym_common_statement_token1] = ACTIONS(4475), + [aux_sym_import_statement_token1] = ACTIONS(4475), + [aux_sym_derived_type_definition_token1] = ACTIONS(4475), + [aux_sym_abstract_specifier_token1] = ACTIONS(4475), + [aux_sym_procedure_attribute_token6] = ACTIONS(4475), + [aux_sym_variable_attributes_token1] = ACTIONS(4475), + [aux_sym_variable_attributes_token2] = ACTIONS(4475), + [aux_sym_variable_attributes_token3] = ACTIONS(4475), + [aux_sym_variable_attributes_token4] = ACTIONS(4475), + [aux_sym_variable_attributes_token5] = ACTIONS(4475), + [aux_sym__intrinsic_type_token1] = ACTIONS(4475), + [aux_sym__intrinsic_type_token2] = ACTIONS(4475), + [aux_sym__intrinsic_type_token3] = ACTIONS(4475), + [aux_sym__intrinsic_type_token4] = ACTIONS(4475), + [aux_sym__intrinsic_type_token6] = ACTIONS(4475), + [aux_sym__intrinsic_type_token7] = ACTIONS(4475), + [aux_sym__intrinsic_type_token8] = ACTIONS(4475), + [aux_sym__intrinsic_type_token9] = ACTIONS(4475), + [aux_sym__intrinsic_type_token10] = ACTIONS(4475), + [aux_sym_derived_type_token1] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4475), + [aux_sym_type_qualifier_token1] = ACTIONS(4475), + [aux_sym_type_qualifier_token2] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4475), + [aux_sym_equivalence_statement_token1] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(4477), + [aux_sym_stop_statement_token1] = ACTIONS(4475), + [aux_sym_stop_statement_token2] = ACTIONS(4475), + [aux_sym_subroutine_call_token1] = ACTIONS(4475), + [aux_sym_keyword_statement_token1] = ACTIONS(4475), + [aux_sym_keyword_statement_token2] = ACTIONS(4475), + [aux_sym_keyword_statement_token3] = ACTIONS(4475), + [aux_sym_keyword_statement_token4] = ACTIONS(4475), + [aux_sym_keyword_statement_token6] = ACTIONS(4475), + [aux_sym_keyword_statement_token7] = ACTIONS(4475), + [aux_sym_include_statement_token1] = ACTIONS(4475), + [aux_sym_data_statement_token1] = ACTIONS(4475), + [aux_sym_do_loop_statement_token1] = ACTIONS(4475), + [aux_sym__inline_if_statement_token1] = ACTIONS(4475), + [aux_sym_end_if_statement_token1] = ACTIONS(4475), + [aux_sym_elseif_clause_token2] = ACTIONS(4475), + [aux_sym__inline_where_statement_token1] = ACTIONS(4475), + [aux_sym__forall_control_expression_token1] = ACTIONS(4475), + [aux_sym_select_case_statement_token1] = ACTIONS(4475), + [aux_sym_select_case_statement_token3] = ACTIONS(4475), + [aux_sym_select_type_statement_token1] = ACTIONS(4475), + [aux_sym_select_rank_statement_token2] = ACTIONS(4475), + [aux_sym_block_construct_token1] = ACTIONS(4475), + [aux_sym_associate_statement_token1] = ACTIONS(4475), + [aux_sym_format_statement_token1] = ACTIONS(4475), + [aux_sym_print_statement_token1] = ACTIONS(4475), + [aux_sym_open_statement_token1] = ACTIONS(4475), + [aux_sym_close_statement_token1] = ACTIONS(4475), + [aux_sym_inquire_statement_token1] = ACTIONS(4475), + [aux_sym_enum_statement_token1] = ACTIONS(4475), + [aux_sym_file_position_statement_token1] = ACTIONS(4475), + [aux_sym_file_position_statement_token2] = ACTIONS(4475), + [aux_sym_file_position_statement_token3] = ACTIONS(4475), + [aux_sym_file_position_statement_token4] = ACTIONS(4475), + [aux_sym_allocate_statement_token1] = ACTIONS(4475), + [aux_sym_entry_statement_token1] = ACTIONS(4475), + [aux_sym_logical_expression_token5] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4475), + [anon_sym_LPAREN_SLASH] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [aux_sym_null_literal_token1] = ACTIONS(4475), + [aux_sym_coarray_statement_token1] = ACTIONS(4475), + [aux_sym_coarray_statement_token2] = ACTIONS(4475), + [aux_sym_coarray_statement_token6] = ACTIONS(4475), + [aux_sym_coarray_statement_token8] = ACTIONS(4475), + [aux_sym_coarray_statement_token11] = ACTIONS(4475), + [aux_sym_coarray_statement_token12] = ACTIONS(4475), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4475), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4475), + [aux_sym_identifier_token1] = ACTIONS(4475), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4477), + [sym__float_literal] = ACTIONS(4477), + [sym__boz_literal] = ACTIONS(4477), + [sym__string_literal] = ACTIONS(4477), + [sym__string_literal_kind] = ACTIONS(4477), + }, + [1062] = { + [ts_builtin_sym_end] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), + }, + [1063] = { + [aux_sym_preproc_include_token1] = ACTIONS(4483), + [aux_sym_preproc_def_token1] = ACTIONS(4483), + [aux_sym_preproc_if_token1] = ACTIONS(4483), + [aux_sym_preproc_if_token2] = ACTIONS(4483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4483), + [sym_preproc_directive] = ACTIONS(4483), + [anon_sym_LPAREN2] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4485), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4483), + [aux_sym_end_program_statement_token1] = ACTIONS(4483), + [aux_sym_end_program_statement_token2] = ACTIONS(4483), + [aux_sym_module_statement_token1] = ACTIONS(4483), + [aux_sym_submodule_statement_token1] = ACTIONS(4483), + [aux_sym_interface_statement_token1] = ACTIONS(4483), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4483), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4483), + [aux_sym_subroutine_statement_token1] = ACTIONS(4483), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4483), + [aux_sym_function_statement_token1] = ACTIONS(4483), + [aux_sym_language_binding_token1] = ACTIONS(4483), + [aux_sym_procedure_attributes_token1] = ACTIONS(4483), + [aux_sym_procedure_attributes_token3] = ACTIONS(4483), + [aux_sym_contains_statement_token1] = ACTIONS(4483), + [aux_sym_use_statement_token1] = ACTIONS(4483), + [aux_sym_use_statement_token2] = ACTIONS(4483), + [aux_sym_implicit_statement_token1] = ACTIONS(4483), + [aux_sym_implicit_statement_token3] = ACTIONS(4483), + [aux_sym_implicit_statement_token4] = ACTIONS(4483), + [aux_sym_save_statement_token1] = ACTIONS(4483), + [aux_sym_private_statement_token1] = ACTIONS(4483), + [aux_sym_public_statement_token1] = ACTIONS(4483), + [aux_sym_namelist_statement_token1] = ACTIONS(4483), + [aux_sym_common_statement_token1] = ACTIONS(4483), + [aux_sym_import_statement_token1] = ACTIONS(4483), + [aux_sym_derived_type_definition_token1] = ACTIONS(4483), + [aux_sym_abstract_specifier_token1] = ACTIONS(4483), + [aux_sym_procedure_attribute_token6] = ACTIONS(4483), + [aux_sym_variable_attributes_token1] = ACTIONS(4483), + [aux_sym_variable_attributes_token2] = ACTIONS(4483), + [aux_sym_variable_attributes_token3] = ACTIONS(4483), + [aux_sym_variable_attributes_token4] = ACTIONS(4483), + [aux_sym_variable_attributes_token5] = ACTIONS(4483), + [aux_sym__intrinsic_type_token1] = ACTIONS(4483), + [aux_sym__intrinsic_type_token2] = ACTIONS(4483), + [aux_sym__intrinsic_type_token3] = ACTIONS(4483), + [aux_sym__intrinsic_type_token4] = ACTIONS(4483), + [aux_sym__intrinsic_type_token6] = ACTIONS(4483), + [aux_sym__intrinsic_type_token7] = ACTIONS(4483), + [aux_sym__intrinsic_type_token8] = ACTIONS(4483), + [aux_sym__intrinsic_type_token9] = ACTIONS(4483), + [aux_sym__intrinsic_type_token10] = ACTIONS(4483), + [aux_sym_derived_type_token1] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4483), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4483), + [aux_sym_type_qualifier_token1] = ACTIONS(4483), + [aux_sym_type_qualifier_token2] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4483), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4483), + [aux_sym_equivalence_statement_token1] = ACTIONS(4483), + [anon_sym_SEMI] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4483), + [aux_sym_stop_statement_token2] = ACTIONS(4483), + [aux_sym_subroutine_call_token1] = ACTIONS(4483), + [aux_sym_keyword_statement_token1] = ACTIONS(4483), + [aux_sym_keyword_statement_token2] = ACTIONS(4483), + [aux_sym_keyword_statement_token3] = ACTIONS(4483), + [aux_sym_keyword_statement_token4] = ACTIONS(4483), + [aux_sym_keyword_statement_token6] = ACTIONS(4483), + [aux_sym_keyword_statement_token7] = ACTIONS(4483), + [aux_sym_include_statement_token1] = ACTIONS(4483), + [aux_sym_data_statement_token1] = ACTIONS(4483), + [aux_sym_do_loop_statement_token1] = ACTIONS(4483), + [aux_sym__inline_if_statement_token1] = ACTIONS(4483), + [aux_sym_end_if_statement_token1] = ACTIONS(4483), + [aux_sym_elseif_clause_token2] = ACTIONS(4483), + [aux_sym__inline_where_statement_token1] = ACTIONS(4483), + [aux_sym__forall_control_expression_token1] = ACTIONS(4483), + [aux_sym_select_case_statement_token1] = ACTIONS(4483), + [aux_sym_select_case_statement_token3] = ACTIONS(4483), + [aux_sym_select_type_statement_token1] = ACTIONS(4483), + [aux_sym_select_rank_statement_token2] = ACTIONS(4483), + [aux_sym_block_construct_token1] = ACTIONS(4483), + [aux_sym_associate_statement_token1] = ACTIONS(4483), + [aux_sym_format_statement_token1] = ACTIONS(4483), + [aux_sym_print_statement_token1] = ACTIONS(4483), + [aux_sym_open_statement_token1] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4483), + [aux_sym_inquire_statement_token1] = ACTIONS(4483), + [aux_sym_enum_statement_token1] = ACTIONS(4483), + [aux_sym_file_position_statement_token1] = ACTIONS(4483), + [aux_sym_file_position_statement_token2] = ACTIONS(4483), + [aux_sym_file_position_statement_token3] = ACTIONS(4483), + [aux_sym_file_position_statement_token4] = ACTIONS(4483), + [aux_sym_allocate_statement_token1] = ACTIONS(4483), + [aux_sym_entry_statement_token1] = ACTIONS(4483), + [aux_sym_logical_expression_token5] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4483), + [anon_sym_LPAREN_SLASH] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4483), + [aux_sym_coarray_statement_token1] = ACTIONS(4483), + [aux_sym_coarray_statement_token2] = ACTIONS(4483), + [aux_sym_coarray_statement_token6] = ACTIONS(4483), + [aux_sym_coarray_statement_token8] = ACTIONS(4483), + [aux_sym_coarray_statement_token11] = ACTIONS(4483), + [aux_sym_coarray_statement_token12] = ACTIONS(4483), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4483), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4483), + [aux_sym_identifier_token1] = ACTIONS(4483), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4485), + [sym__float_literal] = ACTIONS(4485), + [sym__boz_literal] = ACTIONS(4485), + [sym__string_literal] = ACTIONS(4485), + [sym__string_literal_kind] = ACTIONS(4485), + }, + [1064] = { + [ts_builtin_sym_end] = ACTIONS(4617), + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4615), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_end_program_statement_token2] = ACTIONS(4615), + [aux_sym_module_statement_token1] = ACTIONS(4615), + [aux_sym_submodule_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_subroutine_statement_token1] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_function_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4615), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4615), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4615), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_subroutine_call_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_keyword_statement_token4] = ACTIONS(4615), + [aux_sym_keyword_statement_token6] = ACTIONS(4615), + [aux_sym_keyword_statement_token7] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym_do_loop_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym__inline_where_statement_token1] = ACTIONS(4615), + [aux_sym__forall_control_expression_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token3] = ACTIONS(4615), + [aux_sym_select_type_statement_token1] = ACTIONS(4615), + [aux_sym_select_rank_statement_token2] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_associate_statement_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_print_statement_token1] = ACTIONS(4615), + [aux_sym_open_statement_token1] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token2] = ACTIONS(4615), + [aux_sym_file_position_statement_token3] = ACTIONS(4615), + [aux_sym_file_position_statement_token4] = ACTIONS(4615), + [aux_sym_allocate_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_logical_expression_token5] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LPAREN_SLASH] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(4617), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4617), + [sym__float_literal] = ACTIONS(4617), + [sym__boz_literal] = ACTIONS(4617), + [sym__string_literal] = ACTIONS(4617), + [sym__string_literal_kind] = ACTIONS(4617), + }, + [1065] = { + [ts_builtin_sym_end] = ACTIONS(4547), + [aux_sym_preproc_include_token1] = ACTIONS(4545), + [aux_sym_preproc_def_token1] = ACTIONS(4545), + [aux_sym_preproc_if_token1] = ACTIONS(4545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4545), + [sym_preproc_directive] = ACTIONS(4545), + [anon_sym_LPAREN2] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4545), + [aux_sym_end_program_statement_token1] = ACTIONS(4545), + [aux_sym_end_program_statement_token2] = ACTIONS(4545), + [aux_sym_module_statement_token1] = ACTIONS(4545), + [aux_sym_submodule_statement_token1] = ACTIONS(4545), + [aux_sym_interface_statement_token1] = ACTIONS(4545), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4545), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4545), + [aux_sym_subroutine_statement_token1] = ACTIONS(4545), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4545), + [aux_sym_function_statement_token1] = ACTIONS(4545), + [aux_sym_language_binding_token1] = ACTIONS(4545), + [aux_sym_procedure_attributes_token1] = ACTIONS(4545), + [aux_sym_procedure_attributes_token3] = ACTIONS(4545), + [aux_sym_contains_statement_token1] = ACTIONS(4545), + [aux_sym_use_statement_token1] = ACTIONS(4545), + [aux_sym_use_statement_token2] = ACTIONS(4545), + [aux_sym_implicit_statement_token1] = ACTIONS(4545), + [aux_sym_implicit_statement_token3] = ACTIONS(4545), + [aux_sym_implicit_statement_token4] = ACTIONS(4545), + [aux_sym_save_statement_token1] = ACTIONS(4545), + [aux_sym_private_statement_token1] = ACTIONS(4545), + [aux_sym_public_statement_token1] = ACTIONS(4545), + [aux_sym_namelist_statement_token1] = ACTIONS(4545), + [aux_sym_common_statement_token1] = ACTIONS(4545), + [aux_sym_import_statement_token1] = ACTIONS(4545), + [aux_sym_derived_type_definition_token1] = ACTIONS(4545), + [aux_sym_abstract_specifier_token1] = ACTIONS(4545), + [aux_sym_procedure_attribute_token6] = ACTIONS(4545), + [aux_sym_variable_attributes_token1] = ACTIONS(4545), + [aux_sym_variable_attributes_token2] = ACTIONS(4545), + [aux_sym_variable_attributes_token3] = ACTIONS(4545), + [aux_sym_variable_attributes_token4] = ACTIONS(4545), + [aux_sym_variable_attributes_token5] = ACTIONS(4545), + [aux_sym__intrinsic_type_token1] = ACTIONS(4545), + [aux_sym__intrinsic_type_token2] = ACTIONS(4545), + [aux_sym__intrinsic_type_token3] = ACTIONS(4545), + [aux_sym__intrinsic_type_token4] = ACTIONS(4545), + [aux_sym__intrinsic_type_token6] = ACTIONS(4545), + [aux_sym__intrinsic_type_token7] = ACTIONS(4545), + [aux_sym__intrinsic_type_token8] = ACTIONS(4545), + [aux_sym__intrinsic_type_token9] = ACTIONS(4545), + [aux_sym__intrinsic_type_token10] = ACTIONS(4545), + [aux_sym_derived_type_token1] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4545), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4545), + [aux_sym_type_qualifier_token1] = ACTIONS(4545), + [aux_sym_type_qualifier_token2] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4545), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4545), + [aux_sym_equivalence_statement_token1] = ACTIONS(4545), + [anon_sym_SEMI] = ACTIONS(4547), + [aux_sym_stop_statement_token1] = ACTIONS(4545), + [aux_sym_stop_statement_token2] = ACTIONS(4545), + [aux_sym_subroutine_call_token1] = ACTIONS(4545), + [aux_sym_keyword_statement_token1] = ACTIONS(4545), + [aux_sym_keyword_statement_token2] = ACTIONS(4545), + [aux_sym_keyword_statement_token3] = ACTIONS(4545), + [aux_sym_keyword_statement_token4] = ACTIONS(4545), + [aux_sym_keyword_statement_token6] = ACTIONS(4545), + [aux_sym_keyword_statement_token7] = ACTIONS(4545), + [aux_sym_include_statement_token1] = ACTIONS(4545), + [aux_sym_data_statement_token1] = ACTIONS(4545), + [aux_sym_do_loop_statement_token1] = ACTIONS(4545), + [aux_sym__inline_if_statement_token1] = ACTIONS(4545), + [aux_sym_end_if_statement_token1] = ACTIONS(4545), + [aux_sym_elseif_clause_token2] = ACTIONS(4545), + [aux_sym__inline_where_statement_token1] = ACTIONS(4545), + [aux_sym__forall_control_expression_token1] = ACTIONS(4545), + [aux_sym_select_case_statement_token1] = ACTIONS(4545), + [aux_sym_select_case_statement_token3] = ACTIONS(4545), + [aux_sym_select_type_statement_token1] = ACTIONS(4545), + [aux_sym_select_rank_statement_token2] = ACTIONS(4545), + [aux_sym_block_construct_token1] = ACTIONS(4545), + [aux_sym_associate_statement_token1] = ACTIONS(4545), + [aux_sym_format_statement_token1] = ACTIONS(4545), + [aux_sym_print_statement_token1] = ACTIONS(4545), + [aux_sym_open_statement_token1] = ACTIONS(4545), + [aux_sym_close_statement_token1] = ACTIONS(4545), + [aux_sym_inquire_statement_token1] = ACTIONS(4545), + [aux_sym_enum_statement_token1] = ACTIONS(4545), + [aux_sym_file_position_statement_token1] = ACTIONS(4545), + [aux_sym_file_position_statement_token2] = ACTIONS(4545), + [aux_sym_file_position_statement_token3] = ACTIONS(4545), + [aux_sym_file_position_statement_token4] = ACTIONS(4545), + [aux_sym_allocate_statement_token1] = ACTIONS(4545), + [aux_sym_entry_statement_token1] = ACTIONS(4545), + [aux_sym_logical_expression_token5] = ACTIONS(4547), + [anon_sym_DOT] = ACTIONS(4545), + [anon_sym_LPAREN_SLASH] = ACTIONS(4547), + [anon_sym_LBRACK] = ACTIONS(4547), + [aux_sym_boolean_literal_token1] = ACTIONS(4547), + [aux_sym_boolean_literal_token2] = ACTIONS(4547), + [aux_sym_null_literal_token1] = ACTIONS(4545), + [aux_sym_coarray_statement_token1] = ACTIONS(4545), + [aux_sym_coarray_statement_token2] = ACTIONS(4545), + [aux_sym_coarray_statement_token6] = ACTIONS(4545), + [aux_sym_coarray_statement_token8] = ACTIONS(4545), + [aux_sym_coarray_statement_token11] = ACTIONS(4545), + [aux_sym_coarray_statement_token12] = ACTIONS(4545), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4545), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4545), + [aux_sym_identifier_token1] = ACTIONS(4545), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4547), + [sym__float_literal] = ACTIONS(4547), + [sym__boz_literal] = ACTIONS(4547), + [sym__string_literal] = ACTIONS(4547), + [sym__string_literal_kind] = ACTIONS(4547), + }, + [1066] = { + [aux_sym_preproc_include_token1] = ACTIONS(4459), + [aux_sym_preproc_def_token1] = ACTIONS(4459), + [aux_sym_preproc_if_token1] = ACTIONS(4459), + [aux_sym_preproc_if_token2] = ACTIONS(4459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4459), + [sym_preproc_directive] = ACTIONS(4459), + [anon_sym_LPAREN2] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4459), + [aux_sym_end_program_statement_token1] = ACTIONS(4459), + [aux_sym_end_program_statement_token2] = ACTIONS(4459), + [aux_sym_module_statement_token1] = ACTIONS(4459), + [aux_sym_submodule_statement_token1] = ACTIONS(4459), + [aux_sym_interface_statement_token1] = ACTIONS(4459), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4459), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4459), + [aux_sym_subroutine_statement_token1] = ACTIONS(4459), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4459), + [aux_sym_function_statement_token1] = ACTIONS(4459), + [aux_sym_language_binding_token1] = ACTIONS(4459), + [aux_sym_procedure_attributes_token1] = ACTIONS(4459), + [aux_sym_procedure_attributes_token3] = ACTIONS(4459), + [aux_sym_contains_statement_token1] = ACTIONS(4459), + [aux_sym_use_statement_token1] = ACTIONS(4459), + [aux_sym_use_statement_token2] = ACTIONS(4459), + [aux_sym_implicit_statement_token1] = ACTIONS(4459), + [aux_sym_implicit_statement_token3] = ACTIONS(4459), + [aux_sym_implicit_statement_token4] = ACTIONS(4459), + [aux_sym_save_statement_token1] = ACTIONS(4459), + [aux_sym_private_statement_token1] = ACTIONS(4459), + [aux_sym_public_statement_token1] = ACTIONS(4459), + [aux_sym_namelist_statement_token1] = ACTIONS(4459), + [aux_sym_common_statement_token1] = ACTIONS(4459), + [aux_sym_import_statement_token1] = ACTIONS(4459), + [aux_sym_derived_type_definition_token1] = ACTIONS(4459), + [aux_sym_abstract_specifier_token1] = ACTIONS(4459), + [aux_sym_procedure_attribute_token6] = ACTIONS(4459), + [aux_sym_variable_attributes_token1] = ACTIONS(4459), + [aux_sym_variable_attributes_token2] = ACTIONS(4459), + [aux_sym_variable_attributes_token3] = ACTIONS(4459), + [aux_sym_variable_attributes_token4] = ACTIONS(4459), + [aux_sym_variable_attributes_token5] = ACTIONS(4459), + [aux_sym__intrinsic_type_token1] = ACTIONS(4459), + [aux_sym__intrinsic_type_token2] = ACTIONS(4459), + [aux_sym__intrinsic_type_token3] = ACTIONS(4459), + [aux_sym__intrinsic_type_token4] = ACTIONS(4459), + [aux_sym__intrinsic_type_token6] = ACTIONS(4459), + [aux_sym__intrinsic_type_token7] = ACTIONS(4459), + [aux_sym__intrinsic_type_token8] = ACTIONS(4459), + [aux_sym__intrinsic_type_token9] = ACTIONS(4459), + [aux_sym__intrinsic_type_token10] = ACTIONS(4459), + [aux_sym_derived_type_token1] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4459), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4459), + [aux_sym_type_qualifier_token1] = ACTIONS(4459), + [aux_sym_type_qualifier_token2] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4459), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4459), + [aux_sym_equivalence_statement_token1] = ACTIONS(4459), + [anon_sym_SEMI] = ACTIONS(4461), + [aux_sym_stop_statement_token1] = ACTIONS(4459), + [aux_sym_stop_statement_token2] = ACTIONS(4459), + [aux_sym_subroutine_call_token1] = ACTIONS(4459), + [aux_sym_keyword_statement_token1] = ACTIONS(4459), + [aux_sym_keyword_statement_token2] = ACTIONS(4459), + [aux_sym_keyword_statement_token3] = ACTIONS(4459), + [aux_sym_keyword_statement_token4] = ACTIONS(4459), + [aux_sym_keyword_statement_token6] = ACTIONS(4459), + [aux_sym_keyword_statement_token7] = ACTIONS(4459), + [aux_sym_include_statement_token1] = ACTIONS(4459), + [aux_sym_data_statement_token1] = ACTIONS(4459), + [aux_sym_do_loop_statement_token1] = ACTIONS(4459), + [aux_sym__inline_if_statement_token1] = ACTIONS(4459), + [aux_sym_end_if_statement_token1] = ACTIONS(4459), + [aux_sym_elseif_clause_token2] = ACTIONS(4459), + [aux_sym__inline_where_statement_token1] = ACTIONS(4459), + [aux_sym__forall_control_expression_token1] = ACTIONS(4459), + [aux_sym_select_case_statement_token1] = ACTIONS(4459), + [aux_sym_select_case_statement_token3] = ACTIONS(4459), + [aux_sym_select_type_statement_token1] = ACTIONS(4459), + [aux_sym_select_rank_statement_token2] = ACTIONS(4459), + [aux_sym_block_construct_token1] = ACTIONS(4459), + [aux_sym_associate_statement_token1] = ACTIONS(4459), + [aux_sym_format_statement_token1] = ACTIONS(4459), + [aux_sym_print_statement_token1] = ACTIONS(4459), + [aux_sym_open_statement_token1] = ACTIONS(4459), + [aux_sym_close_statement_token1] = ACTIONS(4459), + [aux_sym_inquire_statement_token1] = ACTIONS(4459), + [aux_sym_enum_statement_token1] = ACTIONS(4459), + [aux_sym_file_position_statement_token1] = ACTIONS(4459), + [aux_sym_file_position_statement_token2] = ACTIONS(4459), + [aux_sym_file_position_statement_token3] = ACTIONS(4459), + [aux_sym_file_position_statement_token4] = ACTIONS(4459), + [aux_sym_allocate_statement_token1] = ACTIONS(4459), + [aux_sym_entry_statement_token1] = ACTIONS(4459), + [aux_sym_logical_expression_token5] = ACTIONS(4461), + [anon_sym_DOT] = ACTIONS(4459), + [anon_sym_LPAREN_SLASH] = ACTIONS(4461), + [anon_sym_LBRACK] = ACTIONS(4461), + [aux_sym_boolean_literal_token1] = ACTIONS(4461), + [aux_sym_boolean_literal_token2] = ACTIONS(4461), + [aux_sym_null_literal_token1] = ACTIONS(4459), + [aux_sym_coarray_statement_token1] = ACTIONS(4459), + [aux_sym_coarray_statement_token2] = ACTIONS(4459), + [aux_sym_coarray_statement_token6] = ACTIONS(4459), + [aux_sym_coarray_statement_token8] = ACTIONS(4459), + [aux_sym_coarray_statement_token11] = ACTIONS(4459), + [aux_sym_coarray_statement_token12] = ACTIONS(4459), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4459), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4459), + [aux_sym_identifier_token1] = ACTIONS(4459), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4461), + [sym__float_literal] = ACTIONS(4461), + [sym__boz_literal] = ACTIONS(4461), + [sym__string_literal] = ACTIONS(4461), + [sym__string_literal_kind] = ACTIONS(4461), + }, + [1067] = { + [aux_sym_preproc_include_token1] = ACTIONS(4463), + [aux_sym_preproc_def_token1] = ACTIONS(4463), + [aux_sym_preproc_if_token1] = ACTIONS(4463), + [aux_sym_preproc_if_token2] = ACTIONS(4463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4463), + [sym_preproc_directive] = ACTIONS(4463), + [anon_sym_LPAREN2] = ACTIONS(4463), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4463), + [aux_sym_end_program_statement_token1] = ACTIONS(4463), + [aux_sym_end_program_statement_token2] = ACTIONS(4463), + [aux_sym_module_statement_token1] = ACTIONS(4463), + [aux_sym_submodule_statement_token1] = ACTIONS(4463), + [aux_sym_interface_statement_token1] = ACTIONS(4463), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4463), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4463), + [aux_sym_subroutine_statement_token1] = ACTIONS(4463), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4463), + [aux_sym_function_statement_token1] = ACTIONS(4463), + [aux_sym_language_binding_token1] = ACTIONS(4463), + [aux_sym_procedure_attributes_token1] = ACTIONS(4463), + [aux_sym_procedure_attributes_token3] = ACTIONS(4463), + [aux_sym_contains_statement_token1] = ACTIONS(4463), + [aux_sym_use_statement_token1] = ACTIONS(4463), + [aux_sym_use_statement_token2] = ACTIONS(4463), + [aux_sym_implicit_statement_token1] = ACTIONS(4463), + [aux_sym_implicit_statement_token3] = ACTIONS(4463), + [aux_sym_implicit_statement_token4] = ACTIONS(4463), + [aux_sym_save_statement_token1] = ACTIONS(4463), + [aux_sym_private_statement_token1] = ACTIONS(4463), + [aux_sym_public_statement_token1] = ACTIONS(4463), + [aux_sym_namelist_statement_token1] = ACTIONS(4463), + [aux_sym_common_statement_token1] = ACTIONS(4463), + [aux_sym_import_statement_token1] = ACTIONS(4463), + [aux_sym_derived_type_definition_token1] = ACTIONS(4463), + [aux_sym_abstract_specifier_token1] = ACTIONS(4463), + [aux_sym_procedure_attribute_token6] = ACTIONS(4463), + [aux_sym_variable_attributes_token1] = ACTIONS(4463), + [aux_sym_variable_attributes_token2] = ACTIONS(4463), + [aux_sym_variable_attributes_token3] = ACTIONS(4463), + [aux_sym_variable_attributes_token4] = ACTIONS(4463), + [aux_sym_variable_attributes_token5] = ACTIONS(4463), + [aux_sym__intrinsic_type_token1] = ACTIONS(4463), + [aux_sym__intrinsic_type_token2] = ACTIONS(4463), + [aux_sym__intrinsic_type_token3] = ACTIONS(4463), + [aux_sym__intrinsic_type_token4] = ACTIONS(4463), + [aux_sym__intrinsic_type_token6] = ACTIONS(4463), + [aux_sym__intrinsic_type_token7] = ACTIONS(4463), + [aux_sym__intrinsic_type_token8] = ACTIONS(4463), + [aux_sym__intrinsic_type_token9] = ACTIONS(4463), + [aux_sym__intrinsic_type_token10] = ACTIONS(4463), + [aux_sym_derived_type_token1] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4463), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4463), + [aux_sym_type_qualifier_token1] = ACTIONS(4463), + [aux_sym_type_qualifier_token2] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4463), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4463), + [aux_sym_equivalence_statement_token1] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4465), + [aux_sym_stop_statement_token1] = ACTIONS(4463), + [aux_sym_stop_statement_token2] = ACTIONS(4463), + [aux_sym_subroutine_call_token1] = ACTIONS(4463), + [aux_sym_keyword_statement_token1] = ACTIONS(4463), + [aux_sym_keyword_statement_token2] = ACTIONS(4463), + [aux_sym_keyword_statement_token3] = ACTIONS(4463), + [aux_sym_keyword_statement_token4] = ACTIONS(4463), + [aux_sym_keyword_statement_token6] = ACTIONS(4463), + [aux_sym_keyword_statement_token7] = ACTIONS(4463), + [aux_sym_include_statement_token1] = ACTIONS(4463), + [aux_sym_data_statement_token1] = ACTIONS(4463), + [aux_sym_do_loop_statement_token1] = ACTIONS(4463), + [aux_sym__inline_if_statement_token1] = ACTIONS(4463), + [aux_sym_end_if_statement_token1] = ACTIONS(4463), + [aux_sym_elseif_clause_token2] = ACTIONS(4463), + [aux_sym__inline_where_statement_token1] = ACTIONS(4463), + [aux_sym__forall_control_expression_token1] = ACTIONS(4463), + [aux_sym_select_case_statement_token1] = ACTIONS(4463), + [aux_sym_select_case_statement_token3] = ACTIONS(4463), + [aux_sym_select_type_statement_token1] = ACTIONS(4463), + [aux_sym_select_rank_statement_token2] = ACTIONS(4463), + [aux_sym_block_construct_token1] = ACTIONS(4463), + [aux_sym_associate_statement_token1] = ACTIONS(4463), + [aux_sym_format_statement_token1] = ACTIONS(4463), + [aux_sym_print_statement_token1] = ACTIONS(4463), + [aux_sym_open_statement_token1] = ACTIONS(4463), + [aux_sym_close_statement_token1] = ACTIONS(4463), + [aux_sym_inquire_statement_token1] = ACTIONS(4463), + [aux_sym_enum_statement_token1] = ACTIONS(4463), + [aux_sym_file_position_statement_token1] = ACTIONS(4463), + [aux_sym_file_position_statement_token2] = ACTIONS(4463), + [aux_sym_file_position_statement_token3] = ACTIONS(4463), + [aux_sym_file_position_statement_token4] = ACTIONS(4463), + [aux_sym_allocate_statement_token1] = ACTIONS(4463), + [aux_sym_entry_statement_token1] = ACTIONS(4463), + [aux_sym_logical_expression_token5] = ACTIONS(4465), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_LPAREN_SLASH] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4465), + [aux_sym_boolean_literal_token1] = ACTIONS(4465), + [aux_sym_boolean_literal_token2] = ACTIONS(4465), + [aux_sym_null_literal_token1] = ACTIONS(4463), + [aux_sym_coarray_statement_token1] = ACTIONS(4463), + [aux_sym_coarray_statement_token2] = ACTIONS(4463), + [aux_sym_coarray_statement_token6] = ACTIONS(4463), + [aux_sym_coarray_statement_token8] = ACTIONS(4463), + [aux_sym_coarray_statement_token11] = ACTIONS(4463), + [aux_sym_coarray_statement_token12] = ACTIONS(4463), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4463), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4463), + [aux_sym_identifier_token1] = ACTIONS(4463), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4465), + [sym__float_literal] = ACTIONS(4465), + [sym__boz_literal] = ACTIONS(4465), + [sym__string_literal] = ACTIONS(4465), + [sym__string_literal_kind] = ACTIONS(4465), + }, + [1068] = { + [aux_sym_preproc_include_token1] = ACTIONS(4467), + [aux_sym_preproc_def_token1] = ACTIONS(4467), + [aux_sym_preproc_if_token1] = ACTIONS(4467), + [aux_sym_preproc_if_token2] = ACTIONS(4467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4467), + [sym_preproc_directive] = ACTIONS(4467), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_PLUS] = ACTIONS(4469), + [anon_sym_DASH] = ACTIONS(4469), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4467), + [aux_sym_end_program_statement_token1] = ACTIONS(4467), + [aux_sym_end_program_statement_token2] = ACTIONS(4467), + [aux_sym_module_statement_token1] = ACTIONS(4467), + [aux_sym_submodule_statement_token1] = ACTIONS(4467), + [aux_sym_interface_statement_token1] = ACTIONS(4467), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4467), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4467), + [aux_sym_subroutine_statement_token1] = ACTIONS(4467), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4467), + [aux_sym_function_statement_token1] = ACTIONS(4467), + [aux_sym_language_binding_token1] = ACTIONS(4467), + [aux_sym_procedure_attributes_token1] = ACTIONS(4467), + [aux_sym_procedure_attributes_token3] = ACTIONS(4467), + [aux_sym_contains_statement_token1] = ACTIONS(4467), + [aux_sym_use_statement_token1] = ACTIONS(4467), + [aux_sym_use_statement_token2] = ACTIONS(4467), + [aux_sym_implicit_statement_token1] = ACTIONS(4467), + [aux_sym_implicit_statement_token3] = ACTIONS(4467), + [aux_sym_implicit_statement_token4] = ACTIONS(4467), + [aux_sym_save_statement_token1] = ACTIONS(4467), + [aux_sym_private_statement_token1] = ACTIONS(4467), + [aux_sym_public_statement_token1] = ACTIONS(4467), + [aux_sym_namelist_statement_token1] = ACTIONS(4467), + [aux_sym_common_statement_token1] = ACTIONS(4467), + [aux_sym_import_statement_token1] = ACTIONS(4467), + [aux_sym_derived_type_definition_token1] = ACTIONS(4467), + [aux_sym_abstract_specifier_token1] = ACTIONS(4467), + [aux_sym_procedure_attribute_token6] = ACTIONS(4467), + [aux_sym_variable_attributes_token1] = ACTIONS(4467), + [aux_sym_variable_attributes_token2] = ACTIONS(4467), + [aux_sym_variable_attributes_token3] = ACTIONS(4467), + [aux_sym_variable_attributes_token4] = ACTIONS(4467), + [aux_sym_variable_attributes_token5] = ACTIONS(4467), + [aux_sym__intrinsic_type_token1] = ACTIONS(4467), + [aux_sym__intrinsic_type_token2] = ACTIONS(4467), + [aux_sym__intrinsic_type_token3] = ACTIONS(4467), + [aux_sym__intrinsic_type_token4] = ACTIONS(4467), + [aux_sym__intrinsic_type_token6] = ACTIONS(4467), + [aux_sym__intrinsic_type_token7] = ACTIONS(4467), + [aux_sym__intrinsic_type_token8] = ACTIONS(4467), + [aux_sym__intrinsic_type_token9] = ACTIONS(4467), + [aux_sym__intrinsic_type_token10] = ACTIONS(4467), + [aux_sym_derived_type_token1] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4467), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4467), + [aux_sym_type_qualifier_token1] = ACTIONS(4467), + [aux_sym_type_qualifier_token2] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4467), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4467), + [aux_sym_equivalence_statement_token1] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4469), + [aux_sym_stop_statement_token1] = ACTIONS(4467), + [aux_sym_stop_statement_token2] = ACTIONS(4467), + [aux_sym_subroutine_call_token1] = ACTIONS(4467), + [aux_sym_keyword_statement_token1] = ACTIONS(4467), + [aux_sym_keyword_statement_token2] = ACTIONS(4467), + [aux_sym_keyword_statement_token3] = ACTIONS(4467), + [aux_sym_keyword_statement_token4] = ACTIONS(4467), + [aux_sym_keyword_statement_token6] = ACTIONS(4467), + [aux_sym_keyword_statement_token7] = ACTIONS(4467), + [aux_sym_include_statement_token1] = ACTIONS(4467), + [aux_sym_data_statement_token1] = ACTIONS(4467), + [aux_sym_do_loop_statement_token1] = ACTIONS(4467), + [aux_sym__inline_if_statement_token1] = ACTIONS(4467), + [aux_sym_end_if_statement_token1] = ACTIONS(4467), + [aux_sym_elseif_clause_token2] = ACTIONS(4467), + [aux_sym__inline_where_statement_token1] = ACTIONS(4467), + [aux_sym__forall_control_expression_token1] = ACTIONS(4467), + [aux_sym_select_case_statement_token1] = ACTIONS(4467), + [aux_sym_select_case_statement_token3] = ACTIONS(4467), + [aux_sym_select_type_statement_token1] = ACTIONS(4467), + [aux_sym_select_rank_statement_token2] = ACTIONS(4467), + [aux_sym_block_construct_token1] = ACTIONS(4467), + [aux_sym_associate_statement_token1] = ACTIONS(4467), + [aux_sym_format_statement_token1] = ACTIONS(4467), + [aux_sym_print_statement_token1] = ACTIONS(4467), + [aux_sym_open_statement_token1] = ACTIONS(4467), + [aux_sym_close_statement_token1] = ACTIONS(4467), + [aux_sym_inquire_statement_token1] = ACTIONS(4467), + [aux_sym_enum_statement_token1] = ACTIONS(4467), + [aux_sym_file_position_statement_token1] = ACTIONS(4467), + [aux_sym_file_position_statement_token2] = ACTIONS(4467), + [aux_sym_file_position_statement_token3] = ACTIONS(4467), + [aux_sym_file_position_statement_token4] = ACTIONS(4467), + [aux_sym_allocate_statement_token1] = ACTIONS(4467), + [aux_sym_entry_statement_token1] = ACTIONS(4467), + [aux_sym_logical_expression_token5] = ACTIONS(4469), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_LPAREN_SLASH] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [aux_sym_boolean_literal_token1] = ACTIONS(4469), + [aux_sym_boolean_literal_token2] = ACTIONS(4469), + [aux_sym_null_literal_token1] = ACTIONS(4467), + [aux_sym_coarray_statement_token1] = ACTIONS(4467), + [aux_sym_coarray_statement_token2] = ACTIONS(4467), + [aux_sym_coarray_statement_token6] = ACTIONS(4467), + [aux_sym_coarray_statement_token8] = ACTIONS(4467), + [aux_sym_coarray_statement_token11] = ACTIONS(4467), + [aux_sym_coarray_statement_token12] = ACTIONS(4467), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4467), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4467), + [aux_sym_identifier_token1] = ACTIONS(4467), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4469), + [sym__float_literal] = ACTIONS(4469), + [sym__boz_literal] = ACTIONS(4469), + [sym__string_literal] = ACTIONS(4469), + [sym__string_literal_kind] = ACTIONS(4469), + }, [1069] = { - [aux_sym_preproc_include_token1] = ACTIONS(4419), - [aux_sym_preproc_def_token1] = ACTIONS(4419), - [aux_sym_preproc_if_token1] = ACTIONS(4419), - [aux_sym_preproc_if_token2] = ACTIONS(4419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4419), - [sym_preproc_directive] = ACTIONS(4419), - [anon_sym_LPAREN2] = ACTIONS(4419), - [anon_sym_PLUS] = ACTIONS(4421), - [anon_sym_DASH] = ACTIONS(4421), + [ts_builtin_sym_end] = ACTIONS(4513), + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), + [anon_sym_LPAREN2] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4419), - [aux_sym_end_program_statement_token1] = ACTIONS(4419), - [aux_sym_end_program_statement_token2] = ACTIONS(4419), - [aux_sym_module_statement_token1] = ACTIONS(4419), - [aux_sym_submodule_statement_token1] = ACTIONS(4419), - [aux_sym_interface_statement_token1] = ACTIONS(4419), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4419), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4419), - [aux_sym_subroutine_statement_token1] = ACTIONS(4419), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4419), - [aux_sym_function_statement_token1] = ACTIONS(4419), - [aux_sym_language_binding_token1] = ACTIONS(4419), - [aux_sym_procedure_attributes_token1] = ACTIONS(4419), - [aux_sym_procedure_attributes_token3] = ACTIONS(4419), - [aux_sym_contains_statement_token1] = ACTIONS(4419), - [aux_sym_use_statement_token1] = ACTIONS(4419), - [aux_sym_use_statement_token2] = ACTIONS(4419), - [aux_sym_implicit_statement_token1] = ACTIONS(4419), - [aux_sym_implicit_statement_token3] = ACTIONS(4419), - [aux_sym_implicit_statement_token4] = ACTIONS(4419), - [aux_sym_save_statement_token1] = ACTIONS(4419), - [aux_sym_private_statement_token1] = ACTIONS(4419), - [aux_sym_public_statement_token1] = ACTIONS(4419), - [aux_sym_namelist_statement_token1] = ACTIONS(4419), - [aux_sym_common_statement_token1] = ACTIONS(4419), - [aux_sym_import_statement_token1] = ACTIONS(4419), - [aux_sym_derived_type_definition_token1] = ACTIONS(4419), - [aux_sym_abstract_specifier_token1] = ACTIONS(4419), - [aux_sym_procedure_attribute_token6] = ACTIONS(4419), - [aux_sym_variable_attributes_token1] = ACTIONS(4419), - [aux_sym_variable_attributes_token2] = ACTIONS(4419), - [aux_sym_variable_attributes_token3] = ACTIONS(4419), - [aux_sym_variable_attributes_token4] = ACTIONS(4419), - [aux_sym_variable_attributes_token5] = ACTIONS(4419), - [aux_sym__intrinsic_type_token1] = ACTIONS(4419), - [aux_sym__intrinsic_type_token2] = ACTIONS(4419), - [aux_sym__intrinsic_type_token3] = ACTIONS(4419), - [aux_sym__intrinsic_type_token4] = ACTIONS(4419), - [aux_sym__intrinsic_type_token6] = ACTIONS(4419), - [aux_sym__intrinsic_type_token7] = ACTIONS(4419), - [aux_sym__intrinsic_type_token8] = ACTIONS(4419), - [aux_sym__intrinsic_type_token9] = ACTIONS(4419), - [aux_sym__intrinsic_type_token10] = ACTIONS(4419), - [aux_sym_derived_type_token1] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4419), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4419), - [aux_sym_type_qualifier_token1] = ACTIONS(4419), - [aux_sym_type_qualifier_token2] = ACTIONS(4419), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4419), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4419), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4419), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4419), - [aux_sym_equivalence_statement_token1] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [aux_sym_stop_statement_token1] = ACTIONS(4419), - [aux_sym_stop_statement_token2] = ACTIONS(4419), - [aux_sym_subroutine_call_token1] = ACTIONS(4419), - [aux_sym_keyword_statement_token1] = ACTIONS(4419), - [aux_sym_keyword_statement_token2] = ACTIONS(4419), - [aux_sym_keyword_statement_token3] = ACTIONS(4419), - [aux_sym_keyword_statement_token4] = ACTIONS(4419), - [aux_sym_keyword_statement_token6] = ACTIONS(4419), - [aux_sym_keyword_statement_token7] = ACTIONS(4419), - [aux_sym_include_statement_token1] = ACTIONS(4419), - [aux_sym_data_statement_token1] = ACTIONS(4419), - [aux_sym_do_loop_statement_token1] = ACTIONS(4419), - [aux_sym__inline_if_statement_token1] = ACTIONS(4419), - [aux_sym_end_if_statement_token1] = ACTIONS(4419), - [aux_sym_elseif_clause_token2] = ACTIONS(4419), - [aux_sym__inline_where_statement_token1] = ACTIONS(4419), - [aux_sym__forall_control_expression_token1] = ACTIONS(4419), - [aux_sym_select_case_statement_token1] = ACTIONS(4419), - [aux_sym_select_case_statement_token3] = ACTIONS(4419), - [aux_sym_select_type_statement_token1] = ACTIONS(4419), - [aux_sym_select_rank_statement_token2] = ACTIONS(4419), - [aux_sym_block_construct_token1] = ACTIONS(4419), - [aux_sym_associate_statement_token1] = ACTIONS(4419), - [aux_sym_format_statement_token1] = ACTIONS(4419), - [aux_sym_print_statement_token1] = ACTIONS(4419), - [aux_sym_open_statement_token1] = ACTIONS(4419), - [aux_sym_close_statement_token1] = ACTIONS(4419), - [aux_sym_inquire_statement_token1] = ACTIONS(4419), - [aux_sym_enum_statement_token1] = ACTIONS(4419), - [aux_sym_file_position_statement_token1] = ACTIONS(4419), - [aux_sym_file_position_statement_token2] = ACTIONS(4419), - [aux_sym_file_position_statement_token3] = ACTIONS(4419), - [aux_sym_file_position_statement_token4] = ACTIONS(4419), - [aux_sym_allocate_statement_token1] = ACTIONS(4419), - [aux_sym_entry_statement_token1] = ACTIONS(4419), - [aux_sym_logical_expression_token5] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_LPAREN_SLASH] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [aux_sym_boolean_literal_token1] = ACTIONS(4421), - [aux_sym_boolean_literal_token2] = ACTIONS(4421), - [aux_sym_null_literal_token1] = ACTIONS(4419), - [aux_sym_coarray_statement_token1] = ACTIONS(4419), - [aux_sym_coarray_statement_token2] = ACTIONS(4419), - [aux_sym_coarray_statement_token6] = ACTIONS(4419), - [aux_sym_coarray_statement_token8] = ACTIONS(4419), - [aux_sym_coarray_statement_token11] = ACTIONS(4419), - [aux_sym_coarray_statement_token12] = ACTIONS(4419), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4419), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4419), - [aux_sym_identifier_token1] = ACTIONS(4419), + [aux_sym_program_statement_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token2] = ACTIONS(4511), + [aux_sym_module_statement_token1] = ACTIONS(4511), + [aux_sym_submodule_statement_token1] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_subroutine_statement_token1] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_function_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_contains_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4511), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4511), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4511), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_subroutine_call_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_keyword_statement_token4] = ACTIONS(4511), + [aux_sym_keyword_statement_token6] = ACTIONS(4511), + [aux_sym_keyword_statement_token7] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym_do_loop_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym__inline_where_statement_token1] = ACTIONS(4511), + [aux_sym__forall_control_expression_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token3] = ACTIONS(4511), + [aux_sym_select_type_statement_token1] = ACTIONS(4511), + [aux_sym_select_rank_statement_token2] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_associate_statement_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_print_statement_token1] = ACTIONS(4511), + [aux_sym_open_statement_token1] = ACTIONS(4511), + [aux_sym_close_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token2] = ACTIONS(4511), + [aux_sym_file_position_statement_token3] = ACTIONS(4511), + [aux_sym_file_position_statement_token4] = ACTIONS(4511), + [aux_sym_allocate_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_logical_expression_token5] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_LPAREN_SLASH] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [aux_sym_boolean_literal_token1] = ACTIONS(4513), + [aux_sym_boolean_literal_token2] = ACTIONS(4513), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4421), - [sym__float_literal] = ACTIONS(4421), - [sym__boz_literal] = ACTIONS(4421), - [sym__string_literal] = ACTIONS(4421), - [sym__string_literal_kind] = ACTIONS(4421), + [sym__integer_literal] = ACTIONS(4513), + [sym__float_literal] = ACTIONS(4513), + [sym__boz_literal] = ACTIONS(4513), + [sym__string_literal] = ACTIONS(4513), + [sym__string_literal_kind] = ACTIONS(4513), }, [1070] = { - [aux_sym_preproc_include_token1] = ACTIONS(4423), - [aux_sym_preproc_def_token1] = ACTIONS(4423), - [aux_sym_preproc_if_token1] = ACTIONS(4423), - [aux_sym_preproc_if_token2] = ACTIONS(4423), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4423), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4423), - [sym_preproc_directive] = ACTIONS(4423), - [anon_sym_LPAREN2] = ACTIONS(4423), - [anon_sym_PLUS] = ACTIONS(4425), - [anon_sym_DASH] = ACTIONS(4425), + [ts_builtin_sym_end] = ACTIONS(4489), + [aux_sym_preproc_include_token1] = ACTIONS(4487), + [aux_sym_preproc_def_token1] = ACTIONS(4487), + [aux_sym_preproc_if_token1] = ACTIONS(4487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), + [sym_preproc_directive] = ACTIONS(4487), + [anon_sym_LPAREN2] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4423), - [aux_sym_end_program_statement_token1] = ACTIONS(4423), - [aux_sym_end_program_statement_token2] = ACTIONS(4423), - [aux_sym_module_statement_token1] = ACTIONS(4423), - [aux_sym_submodule_statement_token1] = ACTIONS(4423), - [aux_sym_interface_statement_token1] = ACTIONS(4423), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4423), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4423), - [aux_sym_subroutine_statement_token1] = ACTIONS(4423), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4423), - [aux_sym_function_statement_token1] = ACTIONS(4423), - [aux_sym_language_binding_token1] = ACTIONS(4423), - [aux_sym_procedure_attributes_token1] = ACTIONS(4423), - [aux_sym_procedure_attributes_token3] = ACTIONS(4423), - [aux_sym_contains_statement_token1] = ACTIONS(4423), - [aux_sym_use_statement_token1] = ACTIONS(4423), - [aux_sym_use_statement_token2] = ACTIONS(4423), - [aux_sym_implicit_statement_token1] = ACTIONS(4423), - [aux_sym_implicit_statement_token3] = ACTIONS(4423), - [aux_sym_implicit_statement_token4] = ACTIONS(4423), - [aux_sym_save_statement_token1] = ACTIONS(4423), - [aux_sym_private_statement_token1] = ACTIONS(4423), - [aux_sym_public_statement_token1] = ACTIONS(4423), - [aux_sym_namelist_statement_token1] = ACTIONS(4423), - [aux_sym_common_statement_token1] = ACTIONS(4423), - [aux_sym_import_statement_token1] = ACTIONS(4423), - [aux_sym_derived_type_definition_token1] = ACTIONS(4423), - [aux_sym_abstract_specifier_token1] = ACTIONS(4423), - [aux_sym_procedure_attribute_token6] = ACTIONS(4423), - [aux_sym_variable_attributes_token1] = ACTIONS(4423), - [aux_sym_variable_attributes_token2] = ACTIONS(4423), - [aux_sym_variable_attributes_token3] = ACTIONS(4423), - [aux_sym_variable_attributes_token4] = ACTIONS(4423), - [aux_sym_variable_attributes_token5] = ACTIONS(4423), - [aux_sym__intrinsic_type_token1] = ACTIONS(4423), - [aux_sym__intrinsic_type_token2] = ACTIONS(4423), - [aux_sym__intrinsic_type_token3] = ACTIONS(4423), - [aux_sym__intrinsic_type_token4] = ACTIONS(4423), - [aux_sym__intrinsic_type_token6] = ACTIONS(4423), - [aux_sym__intrinsic_type_token7] = ACTIONS(4423), - [aux_sym__intrinsic_type_token8] = ACTIONS(4423), - [aux_sym__intrinsic_type_token9] = ACTIONS(4423), - [aux_sym__intrinsic_type_token10] = ACTIONS(4423), - [aux_sym_derived_type_token1] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4423), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4423), - [aux_sym_type_qualifier_token1] = ACTIONS(4423), - [aux_sym_type_qualifier_token2] = ACTIONS(4423), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4423), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4423), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4423), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4423), - [aux_sym_equivalence_statement_token1] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [aux_sym_stop_statement_token1] = ACTIONS(4423), - [aux_sym_stop_statement_token2] = ACTIONS(4423), - [aux_sym_subroutine_call_token1] = ACTIONS(4423), - [aux_sym_keyword_statement_token1] = ACTIONS(4423), - [aux_sym_keyword_statement_token2] = ACTIONS(4423), - [aux_sym_keyword_statement_token3] = ACTIONS(4423), - [aux_sym_keyword_statement_token4] = ACTIONS(4423), - [aux_sym_keyword_statement_token6] = ACTIONS(4423), - [aux_sym_keyword_statement_token7] = ACTIONS(4423), - [aux_sym_include_statement_token1] = ACTIONS(4423), - [aux_sym_data_statement_token1] = ACTIONS(4423), - [aux_sym_do_loop_statement_token1] = ACTIONS(4423), - [aux_sym__inline_if_statement_token1] = ACTIONS(4423), - [aux_sym_end_if_statement_token1] = ACTIONS(4423), - [aux_sym_elseif_clause_token2] = ACTIONS(4423), - [aux_sym__inline_where_statement_token1] = ACTIONS(4423), - [aux_sym__forall_control_expression_token1] = ACTIONS(4423), - [aux_sym_select_case_statement_token1] = ACTIONS(4423), - [aux_sym_select_case_statement_token3] = ACTIONS(4423), - [aux_sym_select_type_statement_token1] = ACTIONS(4423), - [aux_sym_select_rank_statement_token2] = ACTIONS(4423), - [aux_sym_block_construct_token1] = ACTIONS(4423), - [aux_sym_associate_statement_token1] = ACTIONS(4423), - [aux_sym_format_statement_token1] = ACTIONS(4423), - [aux_sym_print_statement_token1] = ACTIONS(4423), - [aux_sym_open_statement_token1] = ACTIONS(4423), - [aux_sym_close_statement_token1] = ACTIONS(4423), - [aux_sym_inquire_statement_token1] = ACTIONS(4423), - [aux_sym_enum_statement_token1] = ACTIONS(4423), - [aux_sym_file_position_statement_token1] = ACTIONS(4423), - [aux_sym_file_position_statement_token2] = ACTIONS(4423), - [aux_sym_file_position_statement_token3] = ACTIONS(4423), - [aux_sym_file_position_statement_token4] = ACTIONS(4423), - [aux_sym_allocate_statement_token1] = ACTIONS(4423), - [aux_sym_entry_statement_token1] = ACTIONS(4423), - [aux_sym_logical_expression_token5] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_LPAREN_SLASH] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [aux_sym_boolean_literal_token1] = ACTIONS(4425), - [aux_sym_boolean_literal_token2] = ACTIONS(4425), - [aux_sym_null_literal_token1] = ACTIONS(4423), - [aux_sym_coarray_statement_token1] = ACTIONS(4423), - [aux_sym_coarray_statement_token2] = ACTIONS(4423), - [aux_sym_coarray_statement_token6] = ACTIONS(4423), - [aux_sym_coarray_statement_token8] = ACTIONS(4423), - [aux_sym_coarray_statement_token11] = ACTIONS(4423), - [aux_sym_coarray_statement_token12] = ACTIONS(4423), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4423), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4423), - [aux_sym_identifier_token1] = ACTIONS(4423), + [aux_sym_program_statement_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token2] = ACTIONS(4487), + [aux_sym_module_statement_token1] = ACTIONS(4487), + [aux_sym_submodule_statement_token1] = ACTIONS(4487), + [aux_sym_interface_statement_token1] = ACTIONS(4487), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), + [aux_sym_subroutine_statement_token1] = ACTIONS(4487), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), + [aux_sym_function_statement_token1] = ACTIONS(4487), + [aux_sym_language_binding_token1] = ACTIONS(4487), + [aux_sym_procedure_attributes_token1] = ACTIONS(4487), + [aux_sym_procedure_attributes_token3] = ACTIONS(4487), + [aux_sym_contains_statement_token1] = ACTIONS(4487), + [aux_sym_use_statement_token1] = ACTIONS(4487), + [aux_sym_use_statement_token2] = ACTIONS(4487), + [aux_sym_implicit_statement_token1] = ACTIONS(4487), + [aux_sym_implicit_statement_token3] = ACTIONS(4487), + [aux_sym_implicit_statement_token4] = ACTIONS(4487), + [aux_sym_save_statement_token1] = ACTIONS(4487), + [aux_sym_private_statement_token1] = ACTIONS(4487), + [aux_sym_public_statement_token1] = ACTIONS(4487), + [aux_sym_namelist_statement_token1] = ACTIONS(4487), + [aux_sym_common_statement_token1] = ACTIONS(4487), + [aux_sym_import_statement_token1] = ACTIONS(4487), + [aux_sym_derived_type_definition_token1] = ACTIONS(4487), + [aux_sym_abstract_specifier_token1] = ACTIONS(4487), + [aux_sym_procedure_attribute_token6] = ACTIONS(4487), + [aux_sym_variable_attributes_token1] = ACTIONS(4487), + [aux_sym_variable_attributes_token2] = ACTIONS(4487), + [aux_sym_variable_attributes_token3] = ACTIONS(4487), + [aux_sym_variable_attributes_token4] = ACTIONS(4487), + [aux_sym_variable_attributes_token5] = ACTIONS(4487), + [aux_sym__intrinsic_type_token1] = ACTIONS(4487), + [aux_sym__intrinsic_type_token2] = ACTIONS(4487), + [aux_sym__intrinsic_type_token3] = ACTIONS(4487), + [aux_sym__intrinsic_type_token4] = ACTIONS(4487), + [aux_sym__intrinsic_type_token6] = ACTIONS(4487), + [aux_sym__intrinsic_type_token7] = ACTIONS(4487), + [aux_sym__intrinsic_type_token8] = ACTIONS(4487), + [aux_sym__intrinsic_type_token9] = ACTIONS(4487), + [aux_sym__intrinsic_type_token10] = ACTIONS(4487), + [aux_sym_derived_type_token1] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), + [aux_sym_type_qualifier_token1] = ACTIONS(4487), + [aux_sym_type_qualifier_token2] = ACTIONS(4487), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4487), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4487), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4487), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4487), + [aux_sym_equivalence_statement_token1] = ACTIONS(4487), + [anon_sym_SEMI] = ACTIONS(4489), + [aux_sym_stop_statement_token1] = ACTIONS(4487), + [aux_sym_stop_statement_token2] = ACTIONS(4487), + [aux_sym_subroutine_call_token1] = ACTIONS(4487), + [aux_sym_keyword_statement_token1] = ACTIONS(4487), + [aux_sym_keyword_statement_token2] = ACTIONS(4487), + [aux_sym_keyword_statement_token3] = ACTIONS(4487), + [aux_sym_keyword_statement_token4] = ACTIONS(4487), + [aux_sym_keyword_statement_token6] = ACTIONS(4487), + [aux_sym_keyword_statement_token7] = ACTIONS(4487), + [aux_sym_include_statement_token1] = ACTIONS(4487), + [aux_sym_data_statement_token1] = ACTIONS(4487), + [aux_sym_do_loop_statement_token1] = ACTIONS(4487), + [aux_sym__inline_if_statement_token1] = ACTIONS(4487), + [aux_sym_end_if_statement_token1] = ACTIONS(4487), + [aux_sym_elseif_clause_token2] = ACTIONS(4487), + [aux_sym__inline_where_statement_token1] = ACTIONS(4487), + [aux_sym__forall_control_expression_token1] = ACTIONS(4487), + [aux_sym_select_case_statement_token1] = ACTIONS(4487), + [aux_sym_select_case_statement_token3] = ACTIONS(4487), + [aux_sym_select_type_statement_token1] = ACTIONS(4487), + [aux_sym_select_rank_statement_token2] = ACTIONS(4487), + [aux_sym_block_construct_token1] = ACTIONS(4487), + [aux_sym_associate_statement_token1] = ACTIONS(4487), + [aux_sym_format_statement_token1] = ACTIONS(4487), + [aux_sym_print_statement_token1] = ACTIONS(4487), + [aux_sym_open_statement_token1] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4487), + [aux_sym_inquire_statement_token1] = ACTIONS(4487), + [aux_sym_enum_statement_token1] = ACTIONS(4487), + [aux_sym_file_position_statement_token1] = ACTIONS(4487), + [aux_sym_file_position_statement_token2] = ACTIONS(4487), + [aux_sym_file_position_statement_token3] = ACTIONS(4487), + [aux_sym_file_position_statement_token4] = ACTIONS(4487), + [aux_sym_allocate_statement_token1] = ACTIONS(4487), + [aux_sym_entry_statement_token1] = ACTIONS(4487), + [aux_sym_logical_expression_token5] = ACTIONS(4489), + [anon_sym_DOT] = ACTIONS(4487), + [anon_sym_LPAREN_SLASH] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4489), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [aux_sym_null_literal_token1] = ACTIONS(4487), + [aux_sym_coarray_statement_token1] = ACTIONS(4487), + [aux_sym_coarray_statement_token2] = ACTIONS(4487), + [aux_sym_coarray_statement_token6] = ACTIONS(4487), + [aux_sym_coarray_statement_token8] = ACTIONS(4487), + [aux_sym_coarray_statement_token11] = ACTIONS(4487), + [aux_sym_coarray_statement_token12] = ACTIONS(4487), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), + [aux_sym_identifier_token1] = ACTIONS(4487), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4425), - [sym__float_literal] = ACTIONS(4425), - [sym__boz_literal] = ACTIONS(4425), - [sym__string_literal] = ACTIONS(4425), - [sym__string_literal_kind] = ACTIONS(4425), + [sym__integer_literal] = ACTIONS(4489), + [sym__float_literal] = ACTIONS(4489), + [sym__boz_literal] = ACTIONS(4489), + [sym__string_literal] = ACTIONS(4489), + [sym__string_literal_kind] = ACTIONS(4489), }, [1071] = { - [aux_sym_preproc_include_token1] = ACTIONS(4431), - [aux_sym_preproc_def_token1] = ACTIONS(4431), - [aux_sym_preproc_if_token1] = ACTIONS(4431), - [aux_sym_preproc_if_token2] = ACTIONS(4431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4431), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4431), - [sym_preproc_directive] = ACTIONS(4431), - [anon_sym_LPAREN2] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), + [ts_builtin_sym_end] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4285), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token1] = ACTIONS(4285), + [aux_sym_end_program_statement_token2] = ACTIONS(4285), + [aux_sym_module_statement_token1] = ACTIONS(4285), + [aux_sym_submodule_statement_token1] = ACTIONS(4285), + [aux_sym_interface_statement_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4285), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4285), + [aux_sym_subroutine_statement_token1] = ACTIONS(4285), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4285), + [aux_sym_function_statement_token1] = ACTIONS(4285), + [aux_sym_language_binding_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token1] = ACTIONS(4285), + [aux_sym_procedure_attributes_token3] = ACTIONS(4285), + [aux_sym_contains_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token1] = ACTIONS(4285), + [aux_sym_use_statement_token2] = ACTIONS(4285), + [aux_sym_implicit_statement_token1] = ACTIONS(4285), + [aux_sym_implicit_statement_token3] = ACTIONS(4285), + [aux_sym_implicit_statement_token4] = ACTIONS(4285), + [aux_sym_save_statement_token1] = ACTIONS(4285), + [aux_sym_private_statement_token1] = ACTIONS(4285), + [aux_sym_public_statement_token1] = ACTIONS(4285), + [aux_sym_namelist_statement_token1] = ACTIONS(4285), + [aux_sym_common_statement_token1] = ACTIONS(4285), + [aux_sym_import_statement_token1] = ACTIONS(4285), + [aux_sym_derived_type_definition_token1] = ACTIONS(4285), + [aux_sym_abstract_specifier_token1] = ACTIONS(4285), + [aux_sym_procedure_attribute_token6] = ACTIONS(4285), + [aux_sym_variable_attributes_token1] = ACTIONS(4285), + [aux_sym_variable_attributes_token2] = ACTIONS(4285), + [aux_sym_variable_attributes_token3] = ACTIONS(4285), + [aux_sym_variable_attributes_token4] = ACTIONS(4285), + [aux_sym_variable_attributes_token5] = ACTIONS(4285), + [aux_sym__intrinsic_type_token1] = ACTIONS(4285), + [aux_sym__intrinsic_type_token2] = ACTIONS(4285), + [aux_sym__intrinsic_type_token3] = ACTIONS(4285), + [aux_sym__intrinsic_type_token4] = ACTIONS(4285), + [aux_sym__intrinsic_type_token6] = ACTIONS(4285), + [aux_sym__intrinsic_type_token7] = ACTIONS(4285), + [aux_sym__intrinsic_type_token8] = ACTIONS(4285), + [aux_sym__intrinsic_type_token9] = ACTIONS(4285), + [aux_sym__intrinsic_type_token10] = ACTIONS(4285), + [aux_sym_derived_type_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4285), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4285), + [aux_sym_type_qualifier_token1] = ACTIONS(4285), + [aux_sym_type_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4285), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4285), + [aux_sym_equivalence_statement_token1] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4289), + [aux_sym_stop_statement_token1] = ACTIONS(4285), + [aux_sym_stop_statement_token2] = ACTIONS(4285), + [aux_sym_subroutine_call_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token1] = ACTIONS(4285), + [aux_sym_keyword_statement_token2] = ACTIONS(4285), + [aux_sym_keyword_statement_token3] = ACTIONS(4285), + [aux_sym_keyword_statement_token4] = ACTIONS(4285), + [aux_sym_keyword_statement_token6] = ACTIONS(4285), + [aux_sym_keyword_statement_token7] = ACTIONS(4285), + [aux_sym_include_statement_token1] = ACTIONS(4285), + [aux_sym_data_statement_token1] = ACTIONS(4285), + [aux_sym_do_loop_statement_token1] = ACTIONS(4285), + [aux_sym__inline_if_statement_token1] = ACTIONS(4285), + [aux_sym_end_if_statement_token1] = ACTIONS(4285), + [aux_sym_elseif_clause_token2] = ACTIONS(4285), + [aux_sym__inline_where_statement_token1] = ACTIONS(4285), + [aux_sym__forall_control_expression_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token1] = ACTIONS(4285), + [aux_sym_select_case_statement_token3] = ACTIONS(4285), + [aux_sym_select_type_statement_token1] = ACTIONS(4285), + [aux_sym_select_rank_statement_token2] = ACTIONS(4285), + [aux_sym_block_construct_token1] = ACTIONS(4285), + [aux_sym_associate_statement_token1] = ACTIONS(4285), + [aux_sym_format_statement_token1] = ACTIONS(4285), + [aux_sym_print_statement_token1] = ACTIONS(4285), + [aux_sym_open_statement_token1] = ACTIONS(4285), + [aux_sym_close_statement_token1] = ACTIONS(4285), + [aux_sym_inquire_statement_token1] = ACTIONS(4285), + [aux_sym_enum_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token1] = ACTIONS(4285), + [aux_sym_file_position_statement_token2] = ACTIONS(4285), + [aux_sym_file_position_statement_token3] = ACTIONS(4285), + [aux_sym_file_position_statement_token4] = ACTIONS(4285), + [aux_sym_allocate_statement_token1] = ACTIONS(4285), + [aux_sym_entry_statement_token1] = ACTIONS(4285), + [aux_sym_logical_expression_token5] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4285), + [anon_sym_LPAREN_SLASH] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [aux_sym_boolean_literal_token1] = ACTIONS(4289), + [aux_sym_boolean_literal_token2] = ACTIONS(4289), + [aux_sym_null_literal_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_statement_token2] = ACTIONS(4285), + [aux_sym_coarray_statement_token6] = ACTIONS(4285), + [aux_sym_coarray_statement_token8] = ACTIONS(4285), + [aux_sym_coarray_statement_token11] = ACTIONS(4285), + [aux_sym_coarray_statement_token12] = ACTIONS(4285), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4285), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4285), + [aux_sym_identifier_token1] = ACTIONS(4285), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4289), + [sym__float_literal] = ACTIONS(4289), + [sym__boz_literal] = ACTIONS(4289), + [sym__string_literal] = ACTIONS(4289), + [sym__string_literal_kind] = ACTIONS(4289), + }, + [1072] = { + [aux_sym_preproc_include_token1] = ACTIONS(4475), + [aux_sym_preproc_def_token1] = ACTIONS(4475), + [aux_sym_preproc_if_token1] = ACTIONS(4475), + [aux_sym_preproc_if_token2] = ACTIONS(4475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4475), + [sym_preproc_directive] = ACTIONS(4475), + [anon_sym_LPAREN2] = ACTIONS(4475), + [anon_sym_PLUS] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4475), + [aux_sym_end_program_statement_token1] = ACTIONS(4475), + [aux_sym_end_program_statement_token2] = ACTIONS(4475), + [aux_sym_module_statement_token1] = ACTIONS(4475), + [aux_sym_submodule_statement_token1] = ACTIONS(4475), + [aux_sym_interface_statement_token1] = ACTIONS(4475), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4475), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4475), + [aux_sym_subroutine_statement_token1] = ACTIONS(4475), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4475), + [aux_sym_function_statement_token1] = ACTIONS(4475), + [aux_sym_language_binding_token1] = ACTIONS(4475), + [aux_sym_procedure_attributes_token1] = ACTIONS(4475), + [aux_sym_procedure_attributes_token3] = ACTIONS(4475), + [aux_sym_contains_statement_token1] = ACTIONS(4475), + [aux_sym_use_statement_token1] = ACTIONS(4475), + [aux_sym_use_statement_token2] = ACTIONS(4475), + [aux_sym_implicit_statement_token1] = ACTIONS(4475), + [aux_sym_implicit_statement_token3] = ACTIONS(4475), + [aux_sym_implicit_statement_token4] = ACTIONS(4475), + [aux_sym_save_statement_token1] = ACTIONS(4475), + [aux_sym_private_statement_token1] = ACTIONS(4475), + [aux_sym_public_statement_token1] = ACTIONS(4475), + [aux_sym_namelist_statement_token1] = ACTIONS(4475), + [aux_sym_common_statement_token1] = ACTIONS(4475), + [aux_sym_import_statement_token1] = ACTIONS(4475), + [aux_sym_derived_type_definition_token1] = ACTIONS(4475), + [aux_sym_abstract_specifier_token1] = ACTIONS(4475), + [aux_sym_procedure_attribute_token6] = ACTIONS(4475), + [aux_sym_variable_attributes_token1] = ACTIONS(4475), + [aux_sym_variable_attributes_token2] = ACTIONS(4475), + [aux_sym_variable_attributes_token3] = ACTIONS(4475), + [aux_sym_variable_attributes_token4] = ACTIONS(4475), + [aux_sym_variable_attributes_token5] = ACTIONS(4475), + [aux_sym__intrinsic_type_token1] = ACTIONS(4475), + [aux_sym__intrinsic_type_token2] = ACTIONS(4475), + [aux_sym__intrinsic_type_token3] = ACTIONS(4475), + [aux_sym__intrinsic_type_token4] = ACTIONS(4475), + [aux_sym__intrinsic_type_token6] = ACTIONS(4475), + [aux_sym__intrinsic_type_token7] = ACTIONS(4475), + [aux_sym__intrinsic_type_token8] = ACTIONS(4475), + [aux_sym__intrinsic_type_token9] = ACTIONS(4475), + [aux_sym__intrinsic_type_token10] = ACTIONS(4475), + [aux_sym_derived_type_token1] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4475), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4475), + [aux_sym_type_qualifier_token1] = ACTIONS(4475), + [aux_sym_type_qualifier_token2] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4475), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4475), + [aux_sym_equivalence_statement_token1] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(4477), + [aux_sym_stop_statement_token1] = ACTIONS(4475), + [aux_sym_stop_statement_token2] = ACTIONS(4475), + [aux_sym_subroutine_call_token1] = ACTIONS(4475), + [aux_sym_keyword_statement_token1] = ACTIONS(4475), + [aux_sym_keyword_statement_token2] = ACTIONS(4475), + [aux_sym_keyword_statement_token3] = ACTIONS(4475), + [aux_sym_keyword_statement_token4] = ACTIONS(4475), + [aux_sym_keyword_statement_token6] = ACTIONS(4475), + [aux_sym_keyword_statement_token7] = ACTIONS(4475), + [aux_sym_include_statement_token1] = ACTIONS(4475), + [aux_sym_data_statement_token1] = ACTIONS(4475), + [aux_sym_do_loop_statement_token1] = ACTIONS(4475), + [aux_sym__inline_if_statement_token1] = ACTIONS(4475), + [aux_sym_end_if_statement_token1] = ACTIONS(4475), + [aux_sym_elseif_clause_token2] = ACTIONS(4475), + [aux_sym__inline_where_statement_token1] = ACTIONS(4475), + [aux_sym__forall_control_expression_token1] = ACTIONS(4475), + [aux_sym_select_case_statement_token1] = ACTIONS(4475), + [aux_sym_select_case_statement_token3] = ACTIONS(4475), + [aux_sym_select_type_statement_token1] = ACTIONS(4475), + [aux_sym_select_rank_statement_token2] = ACTIONS(4475), + [aux_sym_block_construct_token1] = ACTIONS(4475), + [aux_sym_associate_statement_token1] = ACTIONS(4475), + [aux_sym_format_statement_token1] = ACTIONS(4475), + [aux_sym_print_statement_token1] = ACTIONS(4475), + [aux_sym_open_statement_token1] = ACTIONS(4475), + [aux_sym_close_statement_token1] = ACTIONS(4475), + [aux_sym_inquire_statement_token1] = ACTIONS(4475), + [aux_sym_enum_statement_token1] = ACTIONS(4475), + [aux_sym_file_position_statement_token1] = ACTIONS(4475), + [aux_sym_file_position_statement_token2] = ACTIONS(4475), + [aux_sym_file_position_statement_token3] = ACTIONS(4475), + [aux_sym_file_position_statement_token4] = ACTIONS(4475), + [aux_sym_allocate_statement_token1] = ACTIONS(4475), + [aux_sym_entry_statement_token1] = ACTIONS(4475), + [aux_sym_logical_expression_token5] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4475), + [anon_sym_LPAREN_SLASH] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [aux_sym_null_literal_token1] = ACTIONS(4475), + [aux_sym_coarray_statement_token1] = ACTIONS(4475), + [aux_sym_coarray_statement_token2] = ACTIONS(4475), + [aux_sym_coarray_statement_token6] = ACTIONS(4475), + [aux_sym_coarray_statement_token8] = ACTIONS(4475), + [aux_sym_coarray_statement_token11] = ACTIONS(4475), + [aux_sym_coarray_statement_token12] = ACTIONS(4475), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4475), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4475), + [aux_sym_identifier_token1] = ACTIONS(4475), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4477), + [sym__float_literal] = ACTIONS(4477), + [sym__boz_literal] = ACTIONS(4477), + [sym__string_literal] = ACTIONS(4477), + [sym__string_literal_kind] = ACTIONS(4477), + }, + [1073] = { + [ts_builtin_sym_end] = ACTIONS(4533), + [aux_sym_preproc_include_token1] = ACTIONS(4531), + [aux_sym_preproc_def_token1] = ACTIONS(4531), + [aux_sym_preproc_if_token1] = ACTIONS(4531), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4531), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4531), + [sym_preproc_directive] = ACTIONS(4531), + [anon_sym_LPAREN2] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4533), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4431), - [aux_sym_end_program_statement_token1] = ACTIONS(4431), - [aux_sym_end_program_statement_token2] = ACTIONS(4431), - [aux_sym_module_statement_token1] = ACTIONS(4431), - [aux_sym_submodule_statement_token1] = ACTIONS(4431), - [aux_sym_interface_statement_token1] = ACTIONS(4431), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4431), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4431), - [aux_sym_subroutine_statement_token1] = ACTIONS(4431), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4431), - [aux_sym_function_statement_token1] = ACTIONS(4431), - [aux_sym_language_binding_token1] = ACTIONS(4431), - [aux_sym_procedure_attributes_token1] = ACTIONS(4431), - [aux_sym_procedure_attributes_token3] = ACTIONS(4431), - [aux_sym_contains_statement_token1] = ACTIONS(4431), - [aux_sym_use_statement_token1] = ACTIONS(4431), - [aux_sym_use_statement_token2] = ACTIONS(4431), - [aux_sym_implicit_statement_token1] = ACTIONS(4431), - [aux_sym_implicit_statement_token3] = ACTIONS(4431), - [aux_sym_implicit_statement_token4] = ACTIONS(4431), - [aux_sym_save_statement_token1] = ACTIONS(4431), - [aux_sym_private_statement_token1] = ACTIONS(4431), - [aux_sym_public_statement_token1] = ACTIONS(4431), - [aux_sym_namelist_statement_token1] = ACTIONS(4431), - [aux_sym_common_statement_token1] = ACTIONS(4431), - [aux_sym_import_statement_token1] = ACTIONS(4431), - [aux_sym_derived_type_definition_token1] = ACTIONS(4431), - [aux_sym_abstract_specifier_token1] = ACTIONS(4431), - [aux_sym_procedure_attribute_token6] = ACTIONS(4431), - [aux_sym_variable_attributes_token1] = ACTIONS(4431), - [aux_sym_variable_attributes_token2] = ACTIONS(4431), - [aux_sym_variable_attributes_token3] = ACTIONS(4431), - [aux_sym_variable_attributes_token4] = ACTIONS(4431), - [aux_sym_variable_attributes_token5] = ACTIONS(4431), - [aux_sym__intrinsic_type_token1] = ACTIONS(4431), - [aux_sym__intrinsic_type_token2] = ACTIONS(4431), - [aux_sym__intrinsic_type_token3] = ACTIONS(4431), - [aux_sym__intrinsic_type_token4] = ACTIONS(4431), - [aux_sym__intrinsic_type_token6] = ACTIONS(4431), - [aux_sym__intrinsic_type_token7] = ACTIONS(4431), - [aux_sym__intrinsic_type_token8] = ACTIONS(4431), - [aux_sym__intrinsic_type_token9] = ACTIONS(4431), - [aux_sym__intrinsic_type_token10] = ACTIONS(4431), - [aux_sym_derived_type_token1] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4431), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4431), - [aux_sym_type_qualifier_token1] = ACTIONS(4431), - [aux_sym_type_qualifier_token2] = ACTIONS(4431), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4431), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4431), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4431), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4431), - [aux_sym_equivalence_statement_token1] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [aux_sym_stop_statement_token1] = ACTIONS(4431), - [aux_sym_stop_statement_token2] = ACTIONS(4431), - [aux_sym_subroutine_call_token1] = ACTIONS(4431), - [aux_sym_keyword_statement_token1] = ACTIONS(4431), - [aux_sym_keyword_statement_token2] = ACTIONS(4431), - [aux_sym_keyword_statement_token3] = ACTIONS(4431), - [aux_sym_keyword_statement_token4] = ACTIONS(4431), - [aux_sym_keyword_statement_token6] = ACTIONS(4431), - [aux_sym_keyword_statement_token7] = ACTIONS(4431), - [aux_sym_include_statement_token1] = ACTIONS(4431), - [aux_sym_data_statement_token1] = ACTIONS(4431), - [aux_sym_do_loop_statement_token1] = ACTIONS(4431), - [aux_sym__inline_if_statement_token1] = ACTIONS(4431), - [aux_sym_end_if_statement_token1] = ACTIONS(4431), - [aux_sym_elseif_clause_token2] = ACTIONS(4431), - [aux_sym__inline_where_statement_token1] = ACTIONS(4431), - [aux_sym__forall_control_expression_token1] = ACTIONS(4431), - [aux_sym_select_case_statement_token1] = ACTIONS(4431), - [aux_sym_select_case_statement_token3] = ACTIONS(4431), - [aux_sym_select_type_statement_token1] = ACTIONS(4431), - [aux_sym_select_rank_statement_token2] = ACTIONS(4431), - [aux_sym_block_construct_token1] = ACTIONS(4431), - [aux_sym_associate_statement_token1] = ACTIONS(4431), - [aux_sym_format_statement_token1] = ACTIONS(4431), - [aux_sym_print_statement_token1] = ACTIONS(4431), - [aux_sym_open_statement_token1] = ACTIONS(4431), - [aux_sym_close_statement_token1] = ACTIONS(4431), - [aux_sym_inquire_statement_token1] = ACTIONS(4431), - [aux_sym_enum_statement_token1] = ACTIONS(4431), - [aux_sym_file_position_statement_token1] = ACTIONS(4431), - [aux_sym_file_position_statement_token2] = ACTIONS(4431), - [aux_sym_file_position_statement_token3] = ACTIONS(4431), - [aux_sym_file_position_statement_token4] = ACTIONS(4431), - [aux_sym_allocate_statement_token1] = ACTIONS(4431), - [aux_sym_entry_statement_token1] = ACTIONS(4431), - [aux_sym_logical_expression_token5] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LPAREN_SLASH] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [aux_sym_boolean_literal_token1] = ACTIONS(4433), - [aux_sym_boolean_literal_token2] = ACTIONS(4433), - [aux_sym_null_literal_token1] = ACTIONS(4431), - [aux_sym_coarray_statement_token1] = ACTIONS(4431), - [aux_sym_coarray_statement_token2] = ACTIONS(4431), - [aux_sym_coarray_statement_token6] = ACTIONS(4431), - [aux_sym_coarray_statement_token8] = ACTIONS(4431), - [aux_sym_coarray_statement_token11] = ACTIONS(4431), - [aux_sym_coarray_statement_token12] = ACTIONS(4431), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4431), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4431), - [aux_sym_identifier_token1] = ACTIONS(4431), + [aux_sym_program_statement_token1] = ACTIONS(4531), + [aux_sym_end_program_statement_token1] = ACTIONS(4531), + [aux_sym_end_program_statement_token2] = ACTIONS(4531), + [aux_sym_module_statement_token1] = ACTIONS(4531), + [aux_sym_submodule_statement_token1] = ACTIONS(4531), + [aux_sym_interface_statement_token1] = ACTIONS(4531), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4531), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4531), + [aux_sym_subroutine_statement_token1] = ACTIONS(4531), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4531), + [aux_sym_function_statement_token1] = ACTIONS(4531), + [aux_sym_language_binding_token1] = ACTIONS(4531), + [aux_sym_procedure_attributes_token1] = ACTIONS(4531), + [aux_sym_procedure_attributes_token3] = ACTIONS(4531), + [aux_sym_contains_statement_token1] = ACTIONS(4531), + [aux_sym_use_statement_token1] = ACTIONS(4531), + [aux_sym_use_statement_token2] = ACTIONS(4531), + [aux_sym_implicit_statement_token1] = ACTIONS(4531), + [aux_sym_implicit_statement_token3] = ACTIONS(4531), + [aux_sym_implicit_statement_token4] = ACTIONS(4531), + [aux_sym_save_statement_token1] = ACTIONS(4531), + [aux_sym_private_statement_token1] = ACTIONS(4531), + [aux_sym_public_statement_token1] = ACTIONS(4531), + [aux_sym_namelist_statement_token1] = ACTIONS(4531), + [aux_sym_common_statement_token1] = ACTIONS(4531), + [aux_sym_import_statement_token1] = ACTIONS(4531), + [aux_sym_derived_type_definition_token1] = ACTIONS(4531), + [aux_sym_abstract_specifier_token1] = ACTIONS(4531), + [aux_sym_procedure_attribute_token6] = ACTIONS(4531), + [aux_sym_variable_attributes_token1] = ACTIONS(4531), + [aux_sym_variable_attributes_token2] = ACTIONS(4531), + [aux_sym_variable_attributes_token3] = ACTIONS(4531), + [aux_sym_variable_attributes_token4] = ACTIONS(4531), + [aux_sym_variable_attributes_token5] = ACTIONS(4531), + [aux_sym__intrinsic_type_token1] = ACTIONS(4531), + [aux_sym__intrinsic_type_token2] = ACTIONS(4531), + [aux_sym__intrinsic_type_token3] = ACTIONS(4531), + [aux_sym__intrinsic_type_token4] = ACTIONS(4531), + [aux_sym__intrinsic_type_token6] = ACTIONS(4531), + [aux_sym__intrinsic_type_token7] = ACTIONS(4531), + [aux_sym__intrinsic_type_token8] = ACTIONS(4531), + [aux_sym__intrinsic_type_token9] = ACTIONS(4531), + [aux_sym__intrinsic_type_token10] = ACTIONS(4531), + [aux_sym_derived_type_token1] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4531), + [aux_sym_type_qualifier_token1] = ACTIONS(4531), + [aux_sym_type_qualifier_token2] = ACTIONS(4531), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4531), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4531), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4531), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4531), + [aux_sym_equivalence_statement_token1] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [aux_sym_stop_statement_token1] = ACTIONS(4531), + [aux_sym_stop_statement_token2] = ACTIONS(4531), + [aux_sym_subroutine_call_token1] = ACTIONS(4531), + [aux_sym_keyword_statement_token1] = ACTIONS(4531), + [aux_sym_keyword_statement_token2] = ACTIONS(4531), + [aux_sym_keyword_statement_token3] = ACTIONS(4531), + [aux_sym_keyword_statement_token4] = ACTIONS(4531), + [aux_sym_keyword_statement_token6] = ACTIONS(4531), + [aux_sym_keyword_statement_token7] = ACTIONS(4531), + [aux_sym_include_statement_token1] = ACTIONS(4531), + [aux_sym_data_statement_token1] = ACTIONS(4531), + [aux_sym_do_loop_statement_token1] = ACTIONS(4531), + [aux_sym__inline_if_statement_token1] = ACTIONS(4531), + [aux_sym_end_if_statement_token1] = ACTIONS(4531), + [aux_sym_elseif_clause_token2] = ACTIONS(4531), + [aux_sym__inline_where_statement_token1] = ACTIONS(4531), + [aux_sym__forall_control_expression_token1] = ACTIONS(4531), + [aux_sym_select_case_statement_token1] = ACTIONS(4531), + [aux_sym_select_case_statement_token3] = ACTIONS(4531), + [aux_sym_select_type_statement_token1] = ACTIONS(4531), + [aux_sym_select_rank_statement_token2] = ACTIONS(4531), + [aux_sym_block_construct_token1] = ACTIONS(4531), + [aux_sym_associate_statement_token1] = ACTIONS(4531), + [aux_sym_format_statement_token1] = ACTIONS(4531), + [aux_sym_print_statement_token1] = ACTIONS(4531), + [aux_sym_open_statement_token1] = ACTIONS(4531), + [aux_sym_close_statement_token1] = ACTIONS(4531), + [aux_sym_inquire_statement_token1] = ACTIONS(4531), + [aux_sym_enum_statement_token1] = ACTIONS(4531), + [aux_sym_file_position_statement_token1] = ACTIONS(4531), + [aux_sym_file_position_statement_token2] = ACTIONS(4531), + [aux_sym_file_position_statement_token3] = ACTIONS(4531), + [aux_sym_file_position_statement_token4] = ACTIONS(4531), + [aux_sym_allocate_statement_token1] = ACTIONS(4531), + [aux_sym_entry_statement_token1] = ACTIONS(4531), + [aux_sym_logical_expression_token5] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_LPAREN_SLASH] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [aux_sym_boolean_literal_token1] = ACTIONS(4533), + [aux_sym_boolean_literal_token2] = ACTIONS(4533), + [aux_sym_null_literal_token1] = ACTIONS(4531), + [aux_sym_coarray_statement_token1] = ACTIONS(4531), + [aux_sym_coarray_statement_token2] = ACTIONS(4531), + [aux_sym_coarray_statement_token6] = ACTIONS(4531), + [aux_sym_coarray_statement_token8] = ACTIONS(4531), + [aux_sym_coarray_statement_token11] = ACTIONS(4531), + [aux_sym_coarray_statement_token12] = ACTIONS(4531), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4531), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4531), + [aux_sym_identifier_token1] = ACTIONS(4531), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4433), - [sym__float_literal] = ACTIONS(4433), - [sym__boz_literal] = ACTIONS(4433), - [sym__string_literal] = ACTIONS(4433), - [sym__string_literal_kind] = ACTIONS(4433), + [sym__integer_literal] = ACTIONS(4533), + [sym__float_literal] = ACTIONS(4533), + [sym__boz_literal] = ACTIONS(4533), + [sym__string_literal] = ACTIONS(4533), + [sym__string_literal_kind] = ACTIONS(4533), }, - [1072] = { + [1074] = { + [ts_builtin_sym_end] = ACTIONS(4437), [aux_sym_preproc_include_token1] = ACTIONS(4435), [aux_sym_preproc_def_token1] = ACTIONS(4435), [aux_sym_preproc_if_token1] = ACTIONS(4435), - [aux_sym_preproc_if_token2] = ACTIONS(4435), [aux_sym_preproc_ifdef_token1] = ACTIONS(4435), [aux_sym_preproc_ifdef_token2] = ACTIONS(4435), [sym_preproc_directive] = ACTIONS(4435), @@ -235168,17 +235438,557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4435), [aux_sym_identifier_token1] = ACTIONS(4435), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4437), - [sym__float_literal] = ACTIONS(4437), - [sym__boz_literal] = ACTIONS(4437), - [sym__string_literal] = ACTIONS(4437), - [sym__string_literal_kind] = ACTIONS(4437), + [sym__integer_literal] = ACTIONS(4437), + [sym__float_literal] = ACTIONS(4437), + [sym__boz_literal] = ACTIONS(4437), + [sym__string_literal] = ACTIONS(4437), + [sym__string_literal_kind] = ACTIONS(4437), + }, + [1075] = { + [ts_builtin_sym_end] = ACTIONS(4301), + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token1] = ACTIONS(4297), + [aux_sym_end_program_statement_token2] = ACTIONS(4297), + [aux_sym_module_statement_token1] = ACTIONS(4297), + [aux_sym_submodule_statement_token1] = ACTIONS(4297), + [aux_sym_interface_statement_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4297), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4297), + [aux_sym_subroutine_statement_token1] = ACTIONS(4297), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4297), + [aux_sym_function_statement_token1] = ACTIONS(4297), + [aux_sym_language_binding_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token1] = ACTIONS(4297), + [aux_sym_procedure_attributes_token3] = ACTIONS(4297), + [aux_sym_contains_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token1] = ACTIONS(4297), + [aux_sym_use_statement_token2] = ACTIONS(4297), + [aux_sym_implicit_statement_token1] = ACTIONS(4297), + [aux_sym_implicit_statement_token3] = ACTIONS(4297), + [aux_sym_implicit_statement_token4] = ACTIONS(4297), + [aux_sym_save_statement_token1] = ACTIONS(4297), + [aux_sym_private_statement_token1] = ACTIONS(4297), + [aux_sym_public_statement_token1] = ACTIONS(4297), + [aux_sym_namelist_statement_token1] = ACTIONS(4297), + [aux_sym_common_statement_token1] = ACTIONS(4297), + [aux_sym_import_statement_token1] = ACTIONS(4297), + [aux_sym_derived_type_definition_token1] = ACTIONS(4297), + [aux_sym_abstract_specifier_token1] = ACTIONS(4297), + [aux_sym_procedure_attribute_token6] = ACTIONS(4297), + [aux_sym_variable_attributes_token1] = ACTIONS(4297), + [aux_sym_variable_attributes_token2] = ACTIONS(4297), + [aux_sym_variable_attributes_token3] = ACTIONS(4297), + [aux_sym_variable_attributes_token4] = ACTIONS(4297), + [aux_sym_variable_attributes_token5] = ACTIONS(4297), + [aux_sym__intrinsic_type_token1] = ACTIONS(4297), + [aux_sym__intrinsic_type_token2] = ACTIONS(4297), + [aux_sym__intrinsic_type_token3] = ACTIONS(4297), + [aux_sym__intrinsic_type_token4] = ACTIONS(4297), + [aux_sym__intrinsic_type_token6] = ACTIONS(4297), + [aux_sym__intrinsic_type_token7] = ACTIONS(4297), + [aux_sym__intrinsic_type_token8] = ACTIONS(4297), + [aux_sym__intrinsic_type_token9] = ACTIONS(4297), + [aux_sym__intrinsic_type_token10] = ACTIONS(4297), + [aux_sym_derived_type_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4297), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4297), + [aux_sym_type_qualifier_token1] = ACTIONS(4297), + [aux_sym_type_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4297), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4297), + [aux_sym_equivalence_statement_token1] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4301), + [aux_sym_stop_statement_token1] = ACTIONS(4297), + [aux_sym_stop_statement_token2] = ACTIONS(4297), + [aux_sym_subroutine_call_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token1] = ACTIONS(4297), + [aux_sym_keyword_statement_token2] = ACTIONS(4297), + [aux_sym_keyword_statement_token3] = ACTIONS(4297), + [aux_sym_keyword_statement_token4] = ACTIONS(4297), + [aux_sym_keyword_statement_token6] = ACTIONS(4297), + [aux_sym_keyword_statement_token7] = ACTIONS(4297), + [aux_sym_include_statement_token1] = ACTIONS(4297), + [aux_sym_data_statement_token1] = ACTIONS(4297), + [aux_sym_do_loop_statement_token1] = ACTIONS(4297), + [aux_sym__inline_if_statement_token1] = ACTIONS(4297), + [aux_sym_end_if_statement_token1] = ACTIONS(4297), + [aux_sym_elseif_clause_token2] = ACTIONS(4297), + [aux_sym__inline_where_statement_token1] = ACTIONS(4297), + [aux_sym__forall_control_expression_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token1] = ACTIONS(4297), + [aux_sym_select_case_statement_token3] = ACTIONS(4297), + [aux_sym_select_type_statement_token1] = ACTIONS(4297), + [aux_sym_select_rank_statement_token2] = ACTIONS(4297), + [aux_sym_block_construct_token1] = ACTIONS(4297), + [aux_sym_associate_statement_token1] = ACTIONS(4297), + [aux_sym_format_statement_token1] = ACTIONS(4297), + [aux_sym_print_statement_token1] = ACTIONS(4297), + [aux_sym_open_statement_token1] = ACTIONS(4297), + [aux_sym_close_statement_token1] = ACTIONS(4297), + [aux_sym_inquire_statement_token1] = ACTIONS(4297), + [aux_sym_enum_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token1] = ACTIONS(4297), + [aux_sym_file_position_statement_token2] = ACTIONS(4297), + [aux_sym_file_position_statement_token3] = ACTIONS(4297), + [aux_sym_file_position_statement_token4] = ACTIONS(4297), + [aux_sym_allocate_statement_token1] = ACTIONS(4297), + [aux_sym_entry_statement_token1] = ACTIONS(4297), + [aux_sym_logical_expression_token5] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_LPAREN_SLASH] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [aux_sym_boolean_literal_token1] = ACTIONS(4301), + [aux_sym_boolean_literal_token2] = ACTIONS(4301), + [aux_sym_null_literal_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_statement_token2] = ACTIONS(4297), + [aux_sym_coarray_statement_token6] = ACTIONS(4297), + [aux_sym_coarray_statement_token8] = ACTIONS(4297), + [aux_sym_coarray_statement_token11] = ACTIONS(4297), + [aux_sym_coarray_statement_token12] = ACTIONS(4297), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4297), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4297), + [aux_sym_identifier_token1] = ACTIONS(4297), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4301), + [sym__float_literal] = ACTIONS(4301), + [sym__boz_literal] = ACTIONS(4301), + [sym__string_literal] = ACTIONS(4301), + [sym__string_literal_kind] = ACTIONS(4301), + }, + [1076] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4337), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_module_statement_token1] = ACTIONS(4337), + [aux_sym_submodule_statement_token1] = ACTIONS(4337), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_subroutine_statement_token1] = ACTIONS(4337), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_function_statement_token1] = ACTIONS(4337), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), + }, + [1077] = { + [ts_builtin_sym_end] = ACTIONS(4567), + [aux_sym_preproc_include_token1] = ACTIONS(4565), + [aux_sym_preproc_def_token1] = ACTIONS(4565), + [aux_sym_preproc_if_token1] = ACTIONS(4565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4565), + [sym_preproc_directive] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4565), + [aux_sym_end_program_statement_token1] = ACTIONS(4565), + [aux_sym_end_program_statement_token2] = ACTIONS(4565), + [aux_sym_module_statement_token1] = ACTIONS(4565), + [aux_sym_submodule_statement_token1] = ACTIONS(4565), + [aux_sym_interface_statement_token1] = ACTIONS(4565), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4565), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4565), + [aux_sym_subroutine_statement_token1] = ACTIONS(4565), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4565), + [aux_sym_function_statement_token1] = ACTIONS(4565), + [aux_sym_language_binding_token1] = ACTIONS(4565), + [aux_sym_procedure_attributes_token1] = ACTIONS(4565), + [aux_sym_procedure_attributes_token3] = ACTIONS(4565), + [aux_sym_contains_statement_token1] = ACTIONS(4565), + [aux_sym_use_statement_token1] = ACTIONS(4565), + [aux_sym_use_statement_token2] = ACTIONS(4565), + [aux_sym_implicit_statement_token1] = ACTIONS(4565), + [aux_sym_implicit_statement_token3] = ACTIONS(4565), + [aux_sym_implicit_statement_token4] = ACTIONS(4565), + [aux_sym_save_statement_token1] = ACTIONS(4565), + [aux_sym_private_statement_token1] = ACTIONS(4565), + [aux_sym_public_statement_token1] = ACTIONS(4565), + [aux_sym_namelist_statement_token1] = ACTIONS(4565), + [aux_sym_common_statement_token1] = ACTIONS(4565), + [aux_sym_import_statement_token1] = ACTIONS(4565), + [aux_sym_derived_type_definition_token1] = ACTIONS(4565), + [aux_sym_abstract_specifier_token1] = ACTIONS(4565), + [aux_sym_procedure_attribute_token6] = ACTIONS(4565), + [aux_sym_variable_attributes_token1] = ACTIONS(4565), + [aux_sym_variable_attributes_token2] = ACTIONS(4565), + [aux_sym_variable_attributes_token3] = ACTIONS(4565), + [aux_sym_variable_attributes_token4] = ACTIONS(4565), + [aux_sym_variable_attributes_token5] = ACTIONS(4565), + [aux_sym__intrinsic_type_token1] = ACTIONS(4565), + [aux_sym__intrinsic_type_token2] = ACTIONS(4565), + [aux_sym__intrinsic_type_token3] = ACTIONS(4565), + [aux_sym__intrinsic_type_token4] = ACTIONS(4565), + [aux_sym__intrinsic_type_token6] = ACTIONS(4565), + [aux_sym__intrinsic_type_token7] = ACTIONS(4565), + [aux_sym__intrinsic_type_token8] = ACTIONS(4565), + [aux_sym__intrinsic_type_token9] = ACTIONS(4565), + [aux_sym__intrinsic_type_token10] = ACTIONS(4565), + [aux_sym_derived_type_token1] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4565), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4565), + [aux_sym_type_qualifier_token1] = ACTIONS(4565), + [aux_sym_type_qualifier_token2] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4565), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4565), + [aux_sym_equivalence_statement_token1] = ACTIONS(4565), + [anon_sym_SEMI] = ACTIONS(4567), + [aux_sym_stop_statement_token1] = ACTIONS(4565), + [aux_sym_stop_statement_token2] = ACTIONS(4565), + [aux_sym_subroutine_call_token1] = ACTIONS(4565), + [aux_sym_keyword_statement_token1] = ACTIONS(4565), + [aux_sym_keyword_statement_token2] = ACTIONS(4565), + [aux_sym_keyword_statement_token3] = ACTIONS(4565), + [aux_sym_keyword_statement_token4] = ACTIONS(4565), + [aux_sym_keyword_statement_token6] = ACTIONS(4565), + [aux_sym_keyword_statement_token7] = ACTIONS(4565), + [aux_sym_include_statement_token1] = ACTIONS(4565), + [aux_sym_data_statement_token1] = ACTIONS(4565), + [aux_sym_do_loop_statement_token1] = ACTIONS(4565), + [aux_sym__inline_if_statement_token1] = ACTIONS(4565), + [aux_sym_end_if_statement_token1] = ACTIONS(4565), + [aux_sym_elseif_clause_token2] = ACTIONS(4565), + [aux_sym__inline_where_statement_token1] = ACTIONS(4565), + [aux_sym__forall_control_expression_token1] = ACTIONS(4565), + [aux_sym_select_case_statement_token1] = ACTIONS(4565), + [aux_sym_select_case_statement_token3] = ACTIONS(4565), + [aux_sym_select_type_statement_token1] = ACTIONS(4565), + [aux_sym_select_rank_statement_token2] = ACTIONS(4565), + [aux_sym_block_construct_token1] = ACTIONS(4565), + [aux_sym_associate_statement_token1] = ACTIONS(4565), + [aux_sym_format_statement_token1] = ACTIONS(4565), + [aux_sym_print_statement_token1] = ACTIONS(4565), + [aux_sym_open_statement_token1] = ACTIONS(4565), + [aux_sym_close_statement_token1] = ACTIONS(4565), + [aux_sym_inquire_statement_token1] = ACTIONS(4565), + [aux_sym_enum_statement_token1] = ACTIONS(4565), + [aux_sym_file_position_statement_token1] = ACTIONS(4565), + [aux_sym_file_position_statement_token2] = ACTIONS(4565), + [aux_sym_file_position_statement_token3] = ACTIONS(4565), + [aux_sym_file_position_statement_token4] = ACTIONS(4565), + [aux_sym_allocate_statement_token1] = ACTIONS(4565), + [aux_sym_entry_statement_token1] = ACTIONS(4565), + [aux_sym_logical_expression_token5] = ACTIONS(4567), + [anon_sym_DOT] = ACTIONS(4565), + [anon_sym_LPAREN_SLASH] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4567), + [aux_sym_boolean_literal_token1] = ACTIONS(4567), + [aux_sym_boolean_literal_token2] = ACTIONS(4567), + [aux_sym_null_literal_token1] = ACTIONS(4565), + [aux_sym_coarray_statement_token1] = ACTIONS(4565), + [aux_sym_coarray_statement_token2] = ACTIONS(4565), + [aux_sym_coarray_statement_token6] = ACTIONS(4565), + [aux_sym_coarray_statement_token8] = ACTIONS(4565), + [aux_sym_coarray_statement_token11] = ACTIONS(4565), + [aux_sym_coarray_statement_token12] = ACTIONS(4565), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4565), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4565), + [aux_sym_identifier_token1] = ACTIONS(4565), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4567), + [sym__float_literal] = ACTIONS(4567), + [sym__boz_literal] = ACTIONS(4567), + [sym__string_literal] = ACTIONS(4567), + [sym__string_literal_kind] = ACTIONS(4567), + }, + [1078] = { + [aux_sym_preproc_include_token1] = ACTIONS(4491), + [aux_sym_preproc_def_token1] = ACTIONS(4491), + [aux_sym_preproc_if_token1] = ACTIONS(4491), + [aux_sym_preproc_if_token2] = ACTIONS(4491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4491), + [sym_preproc_directive] = ACTIONS(4491), + [anon_sym_LPAREN2] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4491), + [aux_sym_end_program_statement_token1] = ACTIONS(4491), + [aux_sym_end_program_statement_token2] = ACTIONS(4491), + [aux_sym_module_statement_token1] = ACTIONS(4491), + [aux_sym_submodule_statement_token1] = ACTIONS(4491), + [aux_sym_interface_statement_token1] = ACTIONS(4491), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4491), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4491), + [aux_sym_subroutine_statement_token1] = ACTIONS(4491), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4491), + [aux_sym_function_statement_token1] = ACTIONS(4491), + [aux_sym_language_binding_token1] = ACTIONS(4491), + [aux_sym_procedure_attributes_token1] = ACTIONS(4491), + [aux_sym_procedure_attributes_token3] = ACTIONS(4491), + [aux_sym_contains_statement_token1] = ACTIONS(4491), + [aux_sym_use_statement_token1] = ACTIONS(4491), + [aux_sym_use_statement_token2] = ACTIONS(4491), + [aux_sym_implicit_statement_token1] = ACTIONS(4491), + [aux_sym_implicit_statement_token3] = ACTIONS(4491), + [aux_sym_implicit_statement_token4] = ACTIONS(4491), + [aux_sym_save_statement_token1] = ACTIONS(4491), + [aux_sym_private_statement_token1] = ACTIONS(4491), + [aux_sym_public_statement_token1] = ACTIONS(4491), + [aux_sym_namelist_statement_token1] = ACTIONS(4491), + [aux_sym_common_statement_token1] = ACTIONS(4491), + [aux_sym_import_statement_token1] = ACTIONS(4491), + [aux_sym_derived_type_definition_token1] = ACTIONS(4491), + [aux_sym_abstract_specifier_token1] = ACTIONS(4491), + [aux_sym_procedure_attribute_token6] = ACTIONS(4491), + [aux_sym_variable_attributes_token1] = ACTIONS(4491), + [aux_sym_variable_attributes_token2] = ACTIONS(4491), + [aux_sym_variable_attributes_token3] = ACTIONS(4491), + [aux_sym_variable_attributes_token4] = ACTIONS(4491), + [aux_sym_variable_attributes_token5] = ACTIONS(4491), + [aux_sym__intrinsic_type_token1] = ACTIONS(4491), + [aux_sym__intrinsic_type_token2] = ACTIONS(4491), + [aux_sym__intrinsic_type_token3] = ACTIONS(4491), + [aux_sym__intrinsic_type_token4] = ACTIONS(4491), + [aux_sym__intrinsic_type_token6] = ACTIONS(4491), + [aux_sym__intrinsic_type_token7] = ACTIONS(4491), + [aux_sym__intrinsic_type_token8] = ACTIONS(4491), + [aux_sym__intrinsic_type_token9] = ACTIONS(4491), + [aux_sym__intrinsic_type_token10] = ACTIONS(4491), + [aux_sym_derived_type_token1] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4491), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4491), + [aux_sym_type_qualifier_token1] = ACTIONS(4491), + [aux_sym_type_qualifier_token2] = ACTIONS(4491), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4491), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4491), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4491), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4491), + [aux_sym_equivalence_statement_token1] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [aux_sym_stop_statement_token1] = ACTIONS(4491), + [aux_sym_stop_statement_token2] = ACTIONS(4491), + [aux_sym_subroutine_call_token1] = ACTIONS(4491), + [aux_sym_keyword_statement_token1] = ACTIONS(4491), + [aux_sym_keyword_statement_token2] = ACTIONS(4491), + [aux_sym_keyword_statement_token3] = ACTIONS(4491), + [aux_sym_keyword_statement_token4] = ACTIONS(4491), + [aux_sym_keyword_statement_token6] = ACTIONS(4491), + [aux_sym_keyword_statement_token7] = ACTIONS(4491), + [aux_sym_include_statement_token1] = ACTIONS(4491), + [aux_sym_data_statement_token1] = ACTIONS(4491), + [aux_sym_do_loop_statement_token1] = ACTIONS(4491), + [aux_sym__inline_if_statement_token1] = ACTIONS(4491), + [aux_sym_end_if_statement_token1] = ACTIONS(4491), + [aux_sym_elseif_clause_token2] = ACTIONS(4491), + [aux_sym__inline_where_statement_token1] = ACTIONS(4491), + [aux_sym__forall_control_expression_token1] = ACTIONS(4491), + [aux_sym_select_case_statement_token1] = ACTIONS(4491), + [aux_sym_select_case_statement_token3] = ACTIONS(4491), + [aux_sym_select_type_statement_token1] = ACTIONS(4491), + [aux_sym_select_rank_statement_token2] = ACTIONS(4491), + [aux_sym_block_construct_token1] = ACTIONS(4491), + [aux_sym_associate_statement_token1] = ACTIONS(4491), + [aux_sym_format_statement_token1] = ACTIONS(4491), + [aux_sym_print_statement_token1] = ACTIONS(4491), + [aux_sym_open_statement_token1] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4491), + [aux_sym_inquire_statement_token1] = ACTIONS(4491), + [aux_sym_enum_statement_token1] = ACTIONS(4491), + [aux_sym_file_position_statement_token1] = ACTIONS(4491), + [aux_sym_file_position_statement_token2] = ACTIONS(4491), + [aux_sym_file_position_statement_token3] = ACTIONS(4491), + [aux_sym_file_position_statement_token4] = ACTIONS(4491), + [aux_sym_allocate_statement_token1] = ACTIONS(4491), + [aux_sym_entry_statement_token1] = ACTIONS(4491), + [aux_sym_logical_expression_token5] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_LPAREN_SLASH] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [aux_sym_boolean_literal_token1] = ACTIONS(4493), + [aux_sym_boolean_literal_token2] = ACTIONS(4493), + [aux_sym_null_literal_token1] = ACTIONS(4491), + [aux_sym_coarray_statement_token1] = ACTIONS(4491), + [aux_sym_coarray_statement_token2] = ACTIONS(4491), + [aux_sym_coarray_statement_token6] = ACTIONS(4491), + [aux_sym_coarray_statement_token8] = ACTIONS(4491), + [aux_sym_coarray_statement_token11] = ACTIONS(4491), + [aux_sym_coarray_statement_token12] = ACTIONS(4491), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4491), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4491), + [aux_sym_identifier_token1] = ACTIONS(4491), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4493), + [sym__float_literal] = ACTIONS(4493), + [sym__boz_literal] = ACTIONS(4493), + [sym__string_literal] = ACTIONS(4493), + [sym__string_literal_kind] = ACTIONS(4493), }, - [1073] = { - [ts_builtin_sym_end] = ACTIONS(4497), + [1079] = { [aux_sym_preproc_include_token1] = ACTIONS(4495), [aux_sym_preproc_def_token1] = ACTIONS(4495), [aux_sym_preproc_if_token1] = ACTIONS(4495), + [aux_sym_preproc_if_token2] = ACTIONS(4495), [aux_sym_preproc_ifdef_token1] = ACTIONS(4495), [aux_sym_preproc_ifdef_token2] = ACTIONS(4495), [sym_preproc_directive] = ACTIONS(4495), @@ -235309,682 +236119,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4497), [sym__string_literal_kind] = ACTIONS(4497), }, - [1074] = { - [aux_sym_preproc_include_token1] = ACTIONS(4523), - [aux_sym_preproc_def_token1] = ACTIONS(4523), - [aux_sym_preproc_if_token1] = ACTIONS(4523), - [aux_sym_preproc_if_token2] = ACTIONS(4523), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4523), - [sym_preproc_directive] = ACTIONS(4523), - [anon_sym_LPAREN2] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4523), - [aux_sym_end_program_statement_token1] = ACTIONS(4523), - [aux_sym_end_program_statement_token2] = ACTIONS(4523), - [aux_sym_module_statement_token1] = ACTIONS(4523), - [aux_sym_submodule_statement_token1] = ACTIONS(4523), - [aux_sym_interface_statement_token1] = ACTIONS(4523), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4523), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4523), - [aux_sym_subroutine_statement_token1] = ACTIONS(4523), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4523), - [aux_sym_function_statement_token1] = ACTIONS(4523), - [aux_sym_language_binding_token1] = ACTIONS(4523), - [aux_sym_procedure_attributes_token1] = ACTIONS(4523), - [aux_sym_procedure_attributes_token3] = ACTIONS(4523), - [aux_sym_contains_statement_token1] = ACTIONS(4523), - [aux_sym_use_statement_token1] = ACTIONS(4523), - [aux_sym_use_statement_token2] = ACTIONS(4523), - [aux_sym_implicit_statement_token1] = ACTIONS(4523), - [aux_sym_implicit_statement_token3] = ACTIONS(4523), - [aux_sym_implicit_statement_token4] = ACTIONS(4523), - [aux_sym_save_statement_token1] = ACTIONS(4523), - [aux_sym_private_statement_token1] = ACTIONS(4523), - [aux_sym_public_statement_token1] = ACTIONS(4523), - [aux_sym_namelist_statement_token1] = ACTIONS(4523), - [aux_sym_common_statement_token1] = ACTIONS(4523), - [aux_sym_import_statement_token1] = ACTIONS(4523), - [aux_sym_derived_type_definition_token1] = ACTIONS(4523), - [aux_sym_abstract_specifier_token1] = ACTIONS(4523), - [aux_sym_procedure_attribute_token6] = ACTIONS(4523), - [aux_sym_variable_attributes_token1] = ACTIONS(4523), - [aux_sym_variable_attributes_token2] = ACTIONS(4523), - [aux_sym_variable_attributes_token3] = ACTIONS(4523), - [aux_sym_variable_attributes_token4] = ACTIONS(4523), - [aux_sym_variable_attributes_token5] = ACTIONS(4523), - [aux_sym__intrinsic_type_token1] = ACTIONS(4523), - [aux_sym__intrinsic_type_token2] = ACTIONS(4523), - [aux_sym__intrinsic_type_token3] = ACTIONS(4523), - [aux_sym__intrinsic_type_token4] = ACTIONS(4523), - [aux_sym__intrinsic_type_token6] = ACTIONS(4523), - [aux_sym__intrinsic_type_token7] = ACTIONS(4523), - [aux_sym__intrinsic_type_token8] = ACTIONS(4523), - [aux_sym__intrinsic_type_token9] = ACTIONS(4523), - [aux_sym__intrinsic_type_token10] = ACTIONS(4523), - [aux_sym_derived_type_token1] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4523), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4523), - [aux_sym_type_qualifier_token1] = ACTIONS(4523), - [aux_sym_type_qualifier_token2] = ACTIONS(4523), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4523), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4523), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4523), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4523), - [aux_sym_equivalence_statement_token1] = ACTIONS(4523), - [anon_sym_SEMI] = ACTIONS(4525), - [aux_sym_stop_statement_token1] = ACTIONS(4523), - [aux_sym_stop_statement_token2] = ACTIONS(4523), - [aux_sym_subroutine_call_token1] = ACTIONS(4523), - [aux_sym_keyword_statement_token1] = ACTIONS(4523), - [aux_sym_keyword_statement_token2] = ACTIONS(4523), - [aux_sym_keyword_statement_token3] = ACTIONS(4523), - [aux_sym_keyword_statement_token4] = ACTIONS(4523), - [aux_sym_keyword_statement_token6] = ACTIONS(4523), - [aux_sym_keyword_statement_token7] = ACTIONS(4523), - [aux_sym_include_statement_token1] = ACTIONS(4523), - [aux_sym_data_statement_token1] = ACTIONS(4523), - [aux_sym_do_loop_statement_token1] = ACTIONS(4523), - [aux_sym__inline_if_statement_token1] = ACTIONS(4523), - [aux_sym_end_if_statement_token1] = ACTIONS(4523), - [aux_sym_elseif_clause_token2] = ACTIONS(4523), - [aux_sym__inline_where_statement_token1] = ACTIONS(4523), - [aux_sym__forall_control_expression_token1] = ACTIONS(4523), - [aux_sym_select_case_statement_token1] = ACTIONS(4523), - [aux_sym_select_case_statement_token3] = ACTIONS(4523), - [aux_sym_select_type_statement_token1] = ACTIONS(4523), - [aux_sym_select_rank_statement_token2] = ACTIONS(4523), - [aux_sym_block_construct_token1] = ACTIONS(4523), - [aux_sym_associate_statement_token1] = ACTIONS(4523), - [aux_sym_format_statement_token1] = ACTIONS(4523), - [aux_sym_print_statement_token1] = ACTIONS(4523), - [aux_sym_open_statement_token1] = ACTIONS(4523), - [aux_sym_close_statement_token1] = ACTIONS(4523), - [aux_sym_inquire_statement_token1] = ACTIONS(4523), - [aux_sym_enum_statement_token1] = ACTIONS(4523), - [aux_sym_file_position_statement_token1] = ACTIONS(4523), - [aux_sym_file_position_statement_token2] = ACTIONS(4523), - [aux_sym_file_position_statement_token3] = ACTIONS(4523), - [aux_sym_file_position_statement_token4] = ACTIONS(4523), - [aux_sym_allocate_statement_token1] = ACTIONS(4523), - [aux_sym_entry_statement_token1] = ACTIONS(4523), - [aux_sym_logical_expression_token5] = ACTIONS(4525), - [anon_sym_DOT] = ACTIONS(4523), - [anon_sym_LPAREN_SLASH] = ACTIONS(4525), - [anon_sym_LBRACK] = ACTIONS(4525), - [aux_sym_boolean_literal_token1] = ACTIONS(4525), - [aux_sym_boolean_literal_token2] = ACTIONS(4525), - [aux_sym_null_literal_token1] = ACTIONS(4523), - [aux_sym_coarray_statement_token1] = ACTIONS(4523), - [aux_sym_coarray_statement_token2] = ACTIONS(4523), - [aux_sym_coarray_statement_token6] = ACTIONS(4523), - [aux_sym_coarray_statement_token8] = ACTIONS(4523), - [aux_sym_coarray_statement_token11] = ACTIONS(4523), - [aux_sym_coarray_statement_token12] = ACTIONS(4523), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4523), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4523), - [aux_sym_identifier_token1] = ACTIONS(4523), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4525), - [sym__float_literal] = ACTIONS(4525), - [sym__boz_literal] = ACTIONS(4525), - [sym__string_literal] = ACTIONS(4525), - [sym__string_literal_kind] = ACTIONS(4525), - }, - [1075] = { - [aux_sym_preproc_include_token1] = ACTIONS(4527), - [aux_sym_preproc_def_token1] = ACTIONS(4527), - [aux_sym_preproc_if_token1] = ACTIONS(4527), - [aux_sym_preproc_if_token2] = ACTIONS(4527), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4527), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4527), - [sym_preproc_directive] = ACTIONS(4527), - [anon_sym_LPAREN2] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4529), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4527), - [aux_sym_end_program_statement_token1] = ACTIONS(4527), - [aux_sym_end_program_statement_token2] = ACTIONS(4527), - [aux_sym_module_statement_token1] = ACTIONS(4527), - [aux_sym_submodule_statement_token1] = ACTIONS(4527), - [aux_sym_interface_statement_token1] = ACTIONS(4527), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4527), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4527), - [aux_sym_subroutine_statement_token1] = ACTIONS(4527), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4527), - [aux_sym_function_statement_token1] = ACTIONS(4527), - [aux_sym_language_binding_token1] = ACTIONS(4527), - [aux_sym_procedure_attributes_token1] = ACTIONS(4527), - [aux_sym_procedure_attributes_token3] = ACTIONS(4527), - [aux_sym_contains_statement_token1] = ACTIONS(4527), - [aux_sym_use_statement_token1] = ACTIONS(4527), - [aux_sym_use_statement_token2] = ACTIONS(4527), - [aux_sym_implicit_statement_token1] = ACTIONS(4527), - [aux_sym_implicit_statement_token3] = ACTIONS(4527), - [aux_sym_implicit_statement_token4] = ACTIONS(4527), - [aux_sym_save_statement_token1] = ACTIONS(4527), - [aux_sym_private_statement_token1] = ACTIONS(4527), - [aux_sym_public_statement_token1] = ACTIONS(4527), - [aux_sym_namelist_statement_token1] = ACTIONS(4527), - [aux_sym_common_statement_token1] = ACTIONS(4527), - [aux_sym_import_statement_token1] = ACTIONS(4527), - [aux_sym_derived_type_definition_token1] = ACTIONS(4527), - [aux_sym_abstract_specifier_token1] = ACTIONS(4527), - [aux_sym_procedure_attribute_token6] = ACTIONS(4527), - [aux_sym_variable_attributes_token1] = ACTIONS(4527), - [aux_sym_variable_attributes_token2] = ACTIONS(4527), - [aux_sym_variable_attributes_token3] = ACTIONS(4527), - [aux_sym_variable_attributes_token4] = ACTIONS(4527), - [aux_sym_variable_attributes_token5] = ACTIONS(4527), - [aux_sym__intrinsic_type_token1] = ACTIONS(4527), - [aux_sym__intrinsic_type_token2] = ACTIONS(4527), - [aux_sym__intrinsic_type_token3] = ACTIONS(4527), - [aux_sym__intrinsic_type_token4] = ACTIONS(4527), - [aux_sym__intrinsic_type_token6] = ACTIONS(4527), - [aux_sym__intrinsic_type_token7] = ACTIONS(4527), - [aux_sym__intrinsic_type_token8] = ACTIONS(4527), - [aux_sym__intrinsic_type_token9] = ACTIONS(4527), - [aux_sym__intrinsic_type_token10] = ACTIONS(4527), - [aux_sym_derived_type_token1] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4527), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4527), - [aux_sym_type_qualifier_token1] = ACTIONS(4527), - [aux_sym_type_qualifier_token2] = ACTIONS(4527), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4527), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4527), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4527), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4527), - [aux_sym_equivalence_statement_token1] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4529), - [aux_sym_stop_statement_token1] = ACTIONS(4527), - [aux_sym_stop_statement_token2] = ACTIONS(4527), - [aux_sym_subroutine_call_token1] = ACTIONS(4527), - [aux_sym_keyword_statement_token1] = ACTIONS(4527), - [aux_sym_keyword_statement_token2] = ACTIONS(4527), - [aux_sym_keyword_statement_token3] = ACTIONS(4527), - [aux_sym_keyword_statement_token4] = ACTIONS(4527), - [aux_sym_keyword_statement_token6] = ACTIONS(4527), - [aux_sym_keyword_statement_token7] = ACTIONS(4527), - [aux_sym_include_statement_token1] = ACTIONS(4527), - [aux_sym_data_statement_token1] = ACTIONS(4527), - [aux_sym_do_loop_statement_token1] = ACTIONS(4527), - [aux_sym__inline_if_statement_token1] = ACTIONS(4527), - [aux_sym_end_if_statement_token1] = ACTIONS(4527), - [aux_sym_elseif_clause_token2] = ACTIONS(4527), - [aux_sym__inline_where_statement_token1] = ACTIONS(4527), - [aux_sym__forall_control_expression_token1] = ACTIONS(4527), - [aux_sym_select_case_statement_token1] = ACTIONS(4527), - [aux_sym_select_case_statement_token3] = ACTIONS(4527), - [aux_sym_select_type_statement_token1] = ACTIONS(4527), - [aux_sym_select_rank_statement_token2] = ACTIONS(4527), - [aux_sym_block_construct_token1] = ACTIONS(4527), - [aux_sym_associate_statement_token1] = ACTIONS(4527), - [aux_sym_format_statement_token1] = ACTIONS(4527), - [aux_sym_print_statement_token1] = ACTIONS(4527), - [aux_sym_open_statement_token1] = ACTIONS(4527), - [aux_sym_close_statement_token1] = ACTIONS(4527), - [aux_sym_inquire_statement_token1] = ACTIONS(4527), - [aux_sym_enum_statement_token1] = ACTIONS(4527), - [aux_sym_file_position_statement_token1] = ACTIONS(4527), - [aux_sym_file_position_statement_token2] = ACTIONS(4527), - [aux_sym_file_position_statement_token3] = ACTIONS(4527), - [aux_sym_file_position_statement_token4] = ACTIONS(4527), - [aux_sym_allocate_statement_token1] = ACTIONS(4527), - [aux_sym_entry_statement_token1] = ACTIONS(4527), - [aux_sym_logical_expression_token5] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4527), - [anon_sym_LPAREN_SLASH] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4529), - [aux_sym_boolean_literal_token1] = ACTIONS(4529), - [aux_sym_boolean_literal_token2] = ACTIONS(4529), - [aux_sym_null_literal_token1] = ACTIONS(4527), - [aux_sym_coarray_statement_token1] = ACTIONS(4527), - [aux_sym_coarray_statement_token2] = ACTIONS(4527), - [aux_sym_coarray_statement_token6] = ACTIONS(4527), - [aux_sym_coarray_statement_token8] = ACTIONS(4527), - [aux_sym_coarray_statement_token11] = ACTIONS(4527), - [aux_sym_coarray_statement_token12] = ACTIONS(4527), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4527), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4527), - [aux_sym_identifier_token1] = ACTIONS(4527), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4529), - [sym__float_literal] = ACTIONS(4529), - [sym__boz_literal] = ACTIONS(4529), - [sym__string_literal] = ACTIONS(4529), - [sym__string_literal_kind] = ACTIONS(4529), - }, - [1076] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4257), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_module_statement_token1] = ACTIONS(4257), - [aux_sym_submodule_statement_token1] = ACTIONS(4257), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_subroutine_statement_token1] = ACTIONS(4257), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_function_statement_token1] = ACTIONS(4257), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [1077] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), - }, - [1078] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [1080] = { + [aux_sym_preproc_include_token1] = ACTIONS(4499), + [aux_sym_preproc_def_token1] = ACTIONS(4499), + [aux_sym_preproc_if_token1] = ACTIONS(4499), + [aux_sym_preproc_if_token2] = ACTIONS(4499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4499), + [sym_preproc_directive] = ACTIONS(4499), + [anon_sym_LPAREN2] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4501), + [anon_sym_DASH] = ACTIONS(4501), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_program_statement_token1] = ACTIONS(4499), + [aux_sym_end_program_statement_token1] = ACTIONS(4499), + [aux_sym_end_program_statement_token2] = ACTIONS(4499), + [aux_sym_module_statement_token1] = ACTIONS(4499), + [aux_sym_submodule_statement_token1] = ACTIONS(4499), + [aux_sym_interface_statement_token1] = ACTIONS(4499), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4499), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4499), + [aux_sym_subroutine_statement_token1] = ACTIONS(4499), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4499), + [aux_sym_function_statement_token1] = ACTIONS(4499), + [aux_sym_language_binding_token1] = ACTIONS(4499), + [aux_sym_procedure_attributes_token1] = ACTIONS(4499), + [aux_sym_procedure_attributes_token3] = ACTIONS(4499), + [aux_sym_contains_statement_token1] = ACTIONS(4499), + [aux_sym_use_statement_token1] = ACTIONS(4499), + [aux_sym_use_statement_token2] = ACTIONS(4499), + [aux_sym_implicit_statement_token1] = ACTIONS(4499), + [aux_sym_implicit_statement_token3] = ACTIONS(4499), + [aux_sym_implicit_statement_token4] = ACTIONS(4499), + [aux_sym_save_statement_token1] = ACTIONS(4499), + [aux_sym_private_statement_token1] = ACTIONS(4499), + [aux_sym_public_statement_token1] = ACTIONS(4499), + [aux_sym_namelist_statement_token1] = ACTIONS(4499), + [aux_sym_common_statement_token1] = ACTIONS(4499), + [aux_sym_import_statement_token1] = ACTIONS(4499), + [aux_sym_derived_type_definition_token1] = ACTIONS(4499), + [aux_sym_abstract_specifier_token1] = ACTIONS(4499), + [aux_sym_procedure_attribute_token6] = ACTIONS(4499), + [aux_sym_variable_attributes_token1] = ACTIONS(4499), + [aux_sym_variable_attributes_token2] = ACTIONS(4499), + [aux_sym_variable_attributes_token3] = ACTIONS(4499), + [aux_sym_variable_attributes_token4] = ACTIONS(4499), + [aux_sym_variable_attributes_token5] = ACTIONS(4499), + [aux_sym__intrinsic_type_token1] = ACTIONS(4499), + [aux_sym__intrinsic_type_token2] = ACTIONS(4499), + [aux_sym__intrinsic_type_token3] = ACTIONS(4499), + [aux_sym__intrinsic_type_token4] = ACTIONS(4499), + [aux_sym__intrinsic_type_token6] = ACTIONS(4499), + [aux_sym__intrinsic_type_token7] = ACTIONS(4499), + [aux_sym__intrinsic_type_token8] = ACTIONS(4499), + [aux_sym__intrinsic_type_token9] = ACTIONS(4499), + [aux_sym__intrinsic_type_token10] = ACTIONS(4499), + [aux_sym_derived_type_token1] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4499), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4499), + [aux_sym_type_qualifier_token1] = ACTIONS(4499), + [aux_sym_type_qualifier_token2] = ACTIONS(4499), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4499), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4499), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4499), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4499), + [aux_sym_equivalence_statement_token1] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4501), + [aux_sym_stop_statement_token1] = ACTIONS(4499), + [aux_sym_stop_statement_token2] = ACTIONS(4499), + [aux_sym_subroutine_call_token1] = ACTIONS(4499), + [aux_sym_keyword_statement_token1] = ACTIONS(4499), + [aux_sym_keyword_statement_token2] = ACTIONS(4499), + [aux_sym_keyword_statement_token3] = ACTIONS(4499), + [aux_sym_keyword_statement_token4] = ACTIONS(4499), + [aux_sym_keyword_statement_token6] = ACTIONS(4499), + [aux_sym_keyword_statement_token7] = ACTIONS(4499), + [aux_sym_include_statement_token1] = ACTIONS(4499), + [aux_sym_data_statement_token1] = ACTIONS(4499), + [aux_sym_do_loop_statement_token1] = ACTIONS(4499), + [aux_sym__inline_if_statement_token1] = ACTIONS(4499), + [aux_sym_end_if_statement_token1] = ACTIONS(4499), + [aux_sym_elseif_clause_token2] = ACTIONS(4499), + [aux_sym__inline_where_statement_token1] = ACTIONS(4499), + [aux_sym__forall_control_expression_token1] = ACTIONS(4499), + [aux_sym_select_case_statement_token1] = ACTIONS(4499), + [aux_sym_select_case_statement_token3] = ACTIONS(4499), + [aux_sym_select_type_statement_token1] = ACTIONS(4499), + [aux_sym_select_rank_statement_token2] = ACTIONS(4499), + [aux_sym_block_construct_token1] = ACTIONS(4499), + [aux_sym_associate_statement_token1] = ACTIONS(4499), + [aux_sym_format_statement_token1] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_inquire_statement_token1] = ACTIONS(4499), + [aux_sym_enum_statement_token1] = ACTIONS(4499), + [aux_sym_file_position_statement_token1] = ACTIONS(4499), + [aux_sym_file_position_statement_token2] = ACTIONS(4499), + [aux_sym_file_position_statement_token3] = ACTIONS(4499), + [aux_sym_file_position_statement_token4] = ACTIONS(4499), + [aux_sym_allocate_statement_token1] = ACTIONS(4499), + [aux_sym_entry_statement_token1] = ACTIONS(4499), + [aux_sym_logical_expression_token5] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_LPAREN_SLASH] = ACTIONS(4501), + [anon_sym_LBRACK] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4501), + [aux_sym_boolean_literal_token2] = ACTIONS(4501), + [aux_sym_null_literal_token1] = ACTIONS(4499), + [aux_sym_coarray_statement_token1] = ACTIONS(4499), + [aux_sym_coarray_statement_token2] = ACTIONS(4499), + [aux_sym_coarray_statement_token6] = ACTIONS(4499), + [aux_sym_coarray_statement_token8] = ACTIONS(4499), + [aux_sym_coarray_statement_token11] = ACTIONS(4499), + [aux_sym_coarray_statement_token12] = ACTIONS(4499), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4499), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4499), + [aux_sym_identifier_token1] = ACTIONS(4499), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4501), + [sym__float_literal] = ACTIONS(4501), + [sym__boz_literal] = ACTIONS(4501), + [sym__string_literal] = ACTIONS(4501), + [sym__string_literal_kind] = ACTIONS(4501), }, - [1079] = { + [1081] = { [aux_sym_preproc_include_token1] = ACTIONS(4503), [aux_sym_preproc_def_token1] = ACTIONS(4503), [aux_sym_preproc_if_token1] = ACTIONS(4503), @@ -236046,2688 +236316,2418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4503), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4503), [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4503), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4503), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4503), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4503), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4503), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4503), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4503), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4503), - [aux_sym_type_qualifier_token1] = ACTIONS(4503), - [aux_sym_type_qualifier_token2] = ACTIONS(4503), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4503), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4503), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4503), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4503), - [aux_sym_equivalence_statement_token1] = ACTIONS(4503), - [anon_sym_SEMI] = ACTIONS(4505), - [aux_sym_stop_statement_token1] = ACTIONS(4503), - [aux_sym_stop_statement_token2] = ACTIONS(4503), - [aux_sym_subroutine_call_token1] = ACTIONS(4503), - [aux_sym_keyword_statement_token1] = ACTIONS(4503), - [aux_sym_keyword_statement_token2] = ACTIONS(4503), - [aux_sym_keyword_statement_token3] = ACTIONS(4503), - [aux_sym_keyword_statement_token4] = ACTIONS(4503), - [aux_sym_keyword_statement_token6] = ACTIONS(4503), - [aux_sym_keyword_statement_token7] = ACTIONS(4503), - [aux_sym_include_statement_token1] = ACTIONS(4503), - [aux_sym_data_statement_token1] = ACTIONS(4503), - [aux_sym_do_loop_statement_token1] = ACTIONS(4503), - [aux_sym__inline_if_statement_token1] = ACTIONS(4503), - [aux_sym_end_if_statement_token1] = ACTIONS(4503), - [aux_sym_elseif_clause_token2] = ACTIONS(4503), - [aux_sym__inline_where_statement_token1] = ACTIONS(4503), - [aux_sym__forall_control_expression_token1] = ACTIONS(4503), - [aux_sym_select_case_statement_token1] = ACTIONS(4503), - [aux_sym_select_case_statement_token3] = ACTIONS(4503), - [aux_sym_select_type_statement_token1] = ACTIONS(4503), - [aux_sym_select_rank_statement_token2] = ACTIONS(4503), - [aux_sym_block_construct_token1] = ACTIONS(4503), - [aux_sym_associate_statement_token1] = ACTIONS(4503), - [aux_sym_format_statement_token1] = ACTIONS(4503), - [aux_sym_print_statement_token1] = ACTIONS(4503), - [aux_sym_open_statement_token1] = ACTIONS(4503), - [aux_sym_close_statement_token1] = ACTIONS(4503), - [aux_sym_inquire_statement_token1] = ACTIONS(4503), - [aux_sym_enum_statement_token1] = ACTIONS(4503), - [aux_sym_file_position_statement_token1] = ACTIONS(4503), - [aux_sym_file_position_statement_token2] = ACTIONS(4503), - [aux_sym_file_position_statement_token3] = ACTIONS(4503), - [aux_sym_file_position_statement_token4] = ACTIONS(4503), - [aux_sym_allocate_statement_token1] = ACTIONS(4503), - [aux_sym_entry_statement_token1] = ACTIONS(4503), - [aux_sym_logical_expression_token5] = ACTIONS(4505), - [anon_sym_DOT] = ACTIONS(4503), - [anon_sym_LPAREN_SLASH] = ACTIONS(4505), - [anon_sym_LBRACK] = ACTIONS(4505), - [aux_sym_boolean_literal_token1] = ACTIONS(4505), - [aux_sym_boolean_literal_token2] = ACTIONS(4505), - [aux_sym_null_literal_token1] = ACTIONS(4503), - [aux_sym_coarray_statement_token1] = ACTIONS(4503), - [aux_sym_coarray_statement_token2] = ACTIONS(4503), - [aux_sym_coarray_statement_token6] = ACTIONS(4503), - [aux_sym_coarray_statement_token8] = ACTIONS(4503), - [aux_sym_coarray_statement_token11] = ACTIONS(4503), - [aux_sym_coarray_statement_token12] = ACTIONS(4503), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4503), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4503), - [aux_sym_identifier_token1] = ACTIONS(4503), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4505), - [sym__float_literal] = ACTIONS(4505), - [sym__boz_literal] = ACTIONS(4505), - [sym__string_literal] = ACTIONS(4505), - [sym__string_literal_kind] = ACTIONS(4505), - }, - [1080] = { - [aux_sym_preproc_include_token1] = ACTIONS(4375), - [aux_sym_preproc_def_token1] = ACTIONS(4375), - [aux_sym_preproc_if_token1] = ACTIONS(4375), - [aux_sym_preproc_if_token2] = ACTIONS(4375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4375), - [sym_preproc_directive] = ACTIONS(4375), - [anon_sym_LPAREN2] = ACTIONS(4375), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4375), - [aux_sym_end_program_statement_token1] = ACTIONS(4375), - [aux_sym_end_program_statement_token2] = ACTIONS(4375), - [aux_sym_module_statement_token1] = ACTIONS(4375), - [aux_sym_submodule_statement_token1] = ACTIONS(4375), - [aux_sym_interface_statement_token1] = ACTIONS(4375), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4375), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4375), - [aux_sym_subroutine_statement_token1] = ACTIONS(4375), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4375), - [aux_sym_function_statement_token1] = ACTIONS(4375), - [aux_sym_language_binding_token1] = ACTIONS(4375), - [aux_sym_procedure_attributes_token1] = ACTIONS(4375), - [aux_sym_procedure_attributes_token3] = ACTIONS(4375), - [aux_sym_contains_statement_token1] = ACTIONS(4375), - [aux_sym_use_statement_token1] = ACTIONS(4375), - [aux_sym_use_statement_token2] = ACTIONS(4375), - [aux_sym_implicit_statement_token1] = ACTIONS(4375), - [aux_sym_implicit_statement_token3] = ACTIONS(4375), - [aux_sym_implicit_statement_token4] = ACTIONS(4375), - [aux_sym_save_statement_token1] = ACTIONS(4375), - [aux_sym_private_statement_token1] = ACTIONS(4375), - [aux_sym_public_statement_token1] = ACTIONS(4375), - [aux_sym_namelist_statement_token1] = ACTIONS(4375), - [aux_sym_common_statement_token1] = ACTIONS(4375), - [aux_sym_import_statement_token1] = ACTIONS(4375), - [aux_sym_derived_type_definition_token1] = ACTIONS(4375), - [aux_sym_abstract_specifier_token1] = ACTIONS(4375), - [aux_sym_procedure_attribute_token6] = ACTIONS(4375), - [aux_sym_variable_attributes_token1] = ACTIONS(4375), - [aux_sym_variable_attributes_token2] = ACTIONS(4375), - [aux_sym_variable_attributes_token3] = ACTIONS(4375), - [aux_sym_variable_attributes_token4] = ACTIONS(4375), - [aux_sym_variable_attributes_token5] = ACTIONS(4375), - [aux_sym__intrinsic_type_token1] = ACTIONS(4375), - [aux_sym__intrinsic_type_token2] = ACTIONS(4375), - [aux_sym__intrinsic_type_token3] = ACTIONS(4375), - [aux_sym__intrinsic_type_token4] = ACTIONS(4375), - [aux_sym__intrinsic_type_token6] = ACTIONS(4375), - [aux_sym__intrinsic_type_token7] = ACTIONS(4375), - [aux_sym__intrinsic_type_token8] = ACTIONS(4375), - [aux_sym__intrinsic_type_token9] = ACTIONS(4375), - [aux_sym__intrinsic_type_token10] = ACTIONS(4375), - [aux_sym_derived_type_token1] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4375), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4375), - [aux_sym_type_qualifier_token1] = ACTIONS(4375), - [aux_sym_type_qualifier_token2] = ACTIONS(4375), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4375), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4375), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4375), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4375), - [aux_sym_equivalence_statement_token1] = ACTIONS(4375), - [anon_sym_SEMI] = ACTIONS(4377), - [aux_sym_stop_statement_token1] = ACTIONS(4375), - [aux_sym_stop_statement_token2] = ACTIONS(4375), - [aux_sym_subroutine_call_token1] = ACTIONS(4375), - [aux_sym_keyword_statement_token1] = ACTIONS(4375), - [aux_sym_keyword_statement_token2] = ACTIONS(4375), - [aux_sym_keyword_statement_token3] = ACTIONS(4375), - [aux_sym_keyword_statement_token4] = ACTIONS(4375), - [aux_sym_keyword_statement_token6] = ACTIONS(4375), - [aux_sym_keyword_statement_token7] = ACTIONS(4375), - [aux_sym_include_statement_token1] = ACTIONS(4375), - [aux_sym_data_statement_token1] = ACTIONS(4375), - [aux_sym_do_loop_statement_token1] = ACTIONS(4375), - [aux_sym__inline_if_statement_token1] = ACTIONS(4375), - [aux_sym_end_if_statement_token1] = ACTIONS(4375), - [aux_sym_elseif_clause_token2] = ACTIONS(4375), - [aux_sym__inline_where_statement_token1] = ACTIONS(4375), - [aux_sym__forall_control_expression_token1] = ACTIONS(4375), - [aux_sym_select_case_statement_token1] = ACTIONS(4375), - [aux_sym_select_case_statement_token3] = ACTIONS(4375), - [aux_sym_select_type_statement_token1] = ACTIONS(4375), - [aux_sym_select_rank_statement_token2] = ACTIONS(4375), - [aux_sym_block_construct_token1] = ACTIONS(4375), - [aux_sym_associate_statement_token1] = ACTIONS(4375), - [aux_sym_format_statement_token1] = ACTIONS(4375), - [aux_sym_print_statement_token1] = ACTIONS(4375), - [aux_sym_open_statement_token1] = ACTIONS(4375), - [aux_sym_close_statement_token1] = ACTIONS(4375), - [aux_sym_inquire_statement_token1] = ACTIONS(4375), - [aux_sym_enum_statement_token1] = ACTIONS(4375), - [aux_sym_file_position_statement_token1] = ACTIONS(4375), - [aux_sym_file_position_statement_token2] = ACTIONS(4375), - [aux_sym_file_position_statement_token3] = ACTIONS(4375), - [aux_sym_file_position_statement_token4] = ACTIONS(4375), - [aux_sym_allocate_statement_token1] = ACTIONS(4375), - [aux_sym_entry_statement_token1] = ACTIONS(4375), - [aux_sym_logical_expression_token5] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4375), - [anon_sym_LPAREN_SLASH] = ACTIONS(4377), - [anon_sym_LBRACK] = ACTIONS(4377), - [aux_sym_boolean_literal_token1] = ACTIONS(4377), - [aux_sym_boolean_literal_token2] = ACTIONS(4377), - [aux_sym_null_literal_token1] = ACTIONS(4375), - [aux_sym_coarray_statement_token1] = ACTIONS(4375), - [aux_sym_coarray_statement_token2] = ACTIONS(4375), - [aux_sym_coarray_statement_token6] = ACTIONS(4375), - [aux_sym_coarray_statement_token8] = ACTIONS(4375), - [aux_sym_coarray_statement_token11] = ACTIONS(4375), - [aux_sym_coarray_statement_token12] = ACTIONS(4375), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4375), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4375), - [aux_sym_identifier_token1] = ACTIONS(4375), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4377), - [sym__float_literal] = ACTIONS(4377), - [sym__boz_literal] = ACTIONS(4377), - [sym__string_literal] = ACTIONS(4377), - [sym__string_literal_kind] = ACTIONS(4377), - }, - [1081] = { - [aux_sym_preproc_include_token1] = ACTIONS(4531), - [aux_sym_preproc_def_token1] = ACTIONS(4531), - [aux_sym_preproc_if_token1] = ACTIONS(4531), - [aux_sym_preproc_if_token2] = ACTIONS(4531), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4531), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4531), - [sym_preproc_directive] = ACTIONS(4531), - [anon_sym_LPAREN2] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4533), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4531), - [aux_sym_end_program_statement_token1] = ACTIONS(4531), - [aux_sym_end_program_statement_token2] = ACTIONS(4531), - [aux_sym_module_statement_token1] = ACTIONS(4531), - [aux_sym_submodule_statement_token1] = ACTIONS(4531), - [aux_sym_interface_statement_token1] = ACTIONS(4531), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4531), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4531), - [aux_sym_subroutine_statement_token1] = ACTIONS(4531), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4531), - [aux_sym_function_statement_token1] = ACTIONS(4531), - [aux_sym_language_binding_token1] = ACTIONS(4531), - [aux_sym_procedure_attributes_token1] = ACTIONS(4531), - [aux_sym_procedure_attributes_token3] = ACTIONS(4531), - [aux_sym_contains_statement_token1] = ACTIONS(4531), - [aux_sym_use_statement_token1] = ACTIONS(4531), - [aux_sym_use_statement_token2] = ACTIONS(4531), - [aux_sym_implicit_statement_token1] = ACTIONS(4531), - [aux_sym_implicit_statement_token3] = ACTIONS(4531), - [aux_sym_implicit_statement_token4] = ACTIONS(4531), - [aux_sym_save_statement_token1] = ACTIONS(4531), - [aux_sym_private_statement_token1] = ACTIONS(4531), - [aux_sym_public_statement_token1] = ACTIONS(4531), - [aux_sym_namelist_statement_token1] = ACTIONS(4531), - [aux_sym_common_statement_token1] = ACTIONS(4531), - [aux_sym_import_statement_token1] = ACTIONS(4531), - [aux_sym_derived_type_definition_token1] = ACTIONS(4531), - [aux_sym_abstract_specifier_token1] = ACTIONS(4531), - [aux_sym_procedure_attribute_token6] = ACTIONS(4531), - [aux_sym_variable_attributes_token1] = ACTIONS(4531), - [aux_sym_variable_attributes_token2] = ACTIONS(4531), - [aux_sym_variable_attributes_token3] = ACTIONS(4531), - [aux_sym_variable_attributes_token4] = ACTIONS(4531), - [aux_sym_variable_attributes_token5] = ACTIONS(4531), - [aux_sym__intrinsic_type_token1] = ACTIONS(4531), - [aux_sym__intrinsic_type_token2] = ACTIONS(4531), - [aux_sym__intrinsic_type_token3] = ACTIONS(4531), - [aux_sym__intrinsic_type_token4] = ACTIONS(4531), - [aux_sym__intrinsic_type_token6] = ACTIONS(4531), - [aux_sym__intrinsic_type_token7] = ACTIONS(4531), - [aux_sym__intrinsic_type_token8] = ACTIONS(4531), - [aux_sym__intrinsic_type_token9] = ACTIONS(4531), - [aux_sym__intrinsic_type_token10] = ACTIONS(4531), - [aux_sym_derived_type_token1] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4531), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4531), - [aux_sym_type_qualifier_token1] = ACTIONS(4531), - [aux_sym_type_qualifier_token2] = ACTIONS(4531), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4531), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4531), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4531), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4531), - [aux_sym_equivalence_statement_token1] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4533), - [aux_sym_stop_statement_token1] = ACTIONS(4531), - [aux_sym_stop_statement_token2] = ACTIONS(4531), - [aux_sym_subroutine_call_token1] = ACTIONS(4531), - [aux_sym_keyword_statement_token1] = ACTIONS(4531), - [aux_sym_keyword_statement_token2] = ACTIONS(4531), - [aux_sym_keyword_statement_token3] = ACTIONS(4531), - [aux_sym_keyword_statement_token4] = ACTIONS(4531), - [aux_sym_keyword_statement_token6] = ACTIONS(4531), - [aux_sym_keyword_statement_token7] = ACTIONS(4531), - [aux_sym_include_statement_token1] = ACTIONS(4531), - [aux_sym_data_statement_token1] = ACTIONS(4531), - [aux_sym_do_loop_statement_token1] = ACTIONS(4531), - [aux_sym__inline_if_statement_token1] = ACTIONS(4531), - [aux_sym_end_if_statement_token1] = ACTIONS(4531), - [aux_sym_elseif_clause_token2] = ACTIONS(4531), - [aux_sym__inline_where_statement_token1] = ACTIONS(4531), - [aux_sym__forall_control_expression_token1] = ACTIONS(4531), - [aux_sym_select_case_statement_token1] = ACTIONS(4531), - [aux_sym_select_case_statement_token3] = ACTIONS(4531), - [aux_sym_select_type_statement_token1] = ACTIONS(4531), - [aux_sym_select_rank_statement_token2] = ACTIONS(4531), - [aux_sym_block_construct_token1] = ACTIONS(4531), - [aux_sym_associate_statement_token1] = ACTIONS(4531), - [aux_sym_format_statement_token1] = ACTIONS(4531), - [aux_sym_print_statement_token1] = ACTIONS(4531), - [aux_sym_open_statement_token1] = ACTIONS(4531), - [aux_sym_close_statement_token1] = ACTIONS(4531), - [aux_sym_inquire_statement_token1] = ACTIONS(4531), - [aux_sym_enum_statement_token1] = ACTIONS(4531), - [aux_sym_file_position_statement_token1] = ACTIONS(4531), - [aux_sym_file_position_statement_token2] = ACTIONS(4531), - [aux_sym_file_position_statement_token3] = ACTIONS(4531), - [aux_sym_file_position_statement_token4] = ACTIONS(4531), - [aux_sym_allocate_statement_token1] = ACTIONS(4531), - [aux_sym_entry_statement_token1] = ACTIONS(4531), - [aux_sym_logical_expression_token5] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4531), - [anon_sym_LPAREN_SLASH] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4533), - [aux_sym_boolean_literal_token1] = ACTIONS(4533), - [aux_sym_boolean_literal_token2] = ACTIONS(4533), - [aux_sym_null_literal_token1] = ACTIONS(4531), - [aux_sym_coarray_statement_token1] = ACTIONS(4531), - [aux_sym_coarray_statement_token2] = ACTIONS(4531), - [aux_sym_coarray_statement_token6] = ACTIONS(4531), - [aux_sym_coarray_statement_token8] = ACTIONS(4531), - [aux_sym_coarray_statement_token11] = ACTIONS(4531), - [aux_sym_coarray_statement_token12] = ACTIONS(4531), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4531), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4531), - [aux_sym_identifier_token1] = ACTIONS(4531), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4503), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4503), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4503), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4503), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4503), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4503), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4503), + [aux_sym_type_qualifier_token1] = ACTIONS(4503), + [aux_sym_type_qualifier_token2] = ACTIONS(4503), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4503), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4503), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4503), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4503), + [aux_sym_equivalence_statement_token1] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [aux_sym_stop_statement_token1] = ACTIONS(4503), + [aux_sym_stop_statement_token2] = ACTIONS(4503), + [aux_sym_subroutine_call_token1] = ACTIONS(4503), + [aux_sym_keyword_statement_token1] = ACTIONS(4503), + [aux_sym_keyword_statement_token2] = ACTIONS(4503), + [aux_sym_keyword_statement_token3] = ACTIONS(4503), + [aux_sym_keyword_statement_token4] = ACTIONS(4503), + [aux_sym_keyword_statement_token6] = ACTIONS(4503), + [aux_sym_keyword_statement_token7] = ACTIONS(4503), + [aux_sym_include_statement_token1] = ACTIONS(4503), + [aux_sym_data_statement_token1] = ACTIONS(4503), + [aux_sym_do_loop_statement_token1] = ACTIONS(4503), + [aux_sym__inline_if_statement_token1] = ACTIONS(4503), + [aux_sym_end_if_statement_token1] = ACTIONS(4503), + [aux_sym_elseif_clause_token2] = ACTIONS(4503), + [aux_sym__inline_where_statement_token1] = ACTIONS(4503), + [aux_sym__forall_control_expression_token1] = ACTIONS(4503), + [aux_sym_select_case_statement_token1] = ACTIONS(4503), + [aux_sym_select_case_statement_token3] = ACTIONS(4503), + [aux_sym_select_type_statement_token1] = ACTIONS(4503), + [aux_sym_select_rank_statement_token2] = ACTIONS(4503), + [aux_sym_block_construct_token1] = ACTIONS(4503), + [aux_sym_associate_statement_token1] = ACTIONS(4503), + [aux_sym_format_statement_token1] = ACTIONS(4503), + [aux_sym_print_statement_token1] = ACTIONS(4503), + [aux_sym_open_statement_token1] = ACTIONS(4503), + [aux_sym_close_statement_token1] = ACTIONS(4503), + [aux_sym_inquire_statement_token1] = ACTIONS(4503), + [aux_sym_enum_statement_token1] = ACTIONS(4503), + [aux_sym_file_position_statement_token1] = ACTIONS(4503), + [aux_sym_file_position_statement_token2] = ACTIONS(4503), + [aux_sym_file_position_statement_token3] = ACTIONS(4503), + [aux_sym_file_position_statement_token4] = ACTIONS(4503), + [aux_sym_allocate_statement_token1] = ACTIONS(4503), + [aux_sym_entry_statement_token1] = ACTIONS(4503), + [aux_sym_logical_expression_token5] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4503), + [anon_sym_LPAREN_SLASH] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4505), + [aux_sym_boolean_literal_token2] = ACTIONS(4505), + [aux_sym_null_literal_token1] = ACTIONS(4503), + [aux_sym_coarray_statement_token1] = ACTIONS(4503), + [aux_sym_coarray_statement_token2] = ACTIONS(4503), + [aux_sym_coarray_statement_token6] = ACTIONS(4503), + [aux_sym_coarray_statement_token8] = ACTIONS(4503), + [aux_sym_coarray_statement_token11] = ACTIONS(4503), + [aux_sym_coarray_statement_token12] = ACTIONS(4503), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4503), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4503), + [aux_sym_identifier_token1] = ACTIONS(4503), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4533), - [sym__float_literal] = ACTIONS(4533), - [sym__boz_literal] = ACTIONS(4533), - [sym__string_literal] = ACTIONS(4533), - [sym__string_literal_kind] = ACTIONS(4533), + [sym__integer_literal] = ACTIONS(4505), + [sym__float_literal] = ACTIONS(4505), + [sym__boz_literal] = ACTIONS(4505), + [sym__string_literal] = ACTIONS(4505), + [sym__string_literal_kind] = ACTIONS(4505), }, [1082] = { - [aux_sym_preproc_include_token1] = ACTIONS(4535), - [aux_sym_preproc_def_token1] = ACTIONS(4535), - [aux_sym_preproc_if_token1] = ACTIONS(4535), - [aux_sym_preproc_if_token2] = ACTIONS(4535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), - [sym_preproc_directive] = ACTIONS(4535), - [anon_sym_LPAREN2] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4537), - [anon_sym_DASH] = ACTIONS(4537), + [aux_sym_preproc_include_token1] = ACTIONS(4507), + [aux_sym_preproc_def_token1] = ACTIONS(4507), + [aux_sym_preproc_if_token1] = ACTIONS(4507), + [aux_sym_preproc_if_token2] = ACTIONS(4507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4507), + [sym_preproc_directive] = ACTIONS(4507), + [anon_sym_LPAREN2] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4509), + [anon_sym_DASH] = ACTIONS(4509), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4535), - [aux_sym_end_program_statement_token1] = ACTIONS(4535), - [aux_sym_end_program_statement_token2] = ACTIONS(4535), - [aux_sym_module_statement_token1] = ACTIONS(4535), - [aux_sym_submodule_statement_token1] = ACTIONS(4535), - [aux_sym_interface_statement_token1] = ACTIONS(4535), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), - [aux_sym_subroutine_statement_token1] = ACTIONS(4535), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), - [aux_sym_function_statement_token1] = ACTIONS(4535), - [aux_sym_language_binding_token1] = ACTIONS(4535), - [aux_sym_procedure_attributes_token1] = ACTIONS(4535), - [aux_sym_procedure_attributes_token3] = ACTIONS(4535), - [aux_sym_contains_statement_token1] = ACTIONS(4535), - [aux_sym_use_statement_token1] = ACTIONS(4535), - [aux_sym_use_statement_token2] = ACTIONS(4535), - [aux_sym_implicit_statement_token1] = ACTIONS(4535), - [aux_sym_implicit_statement_token3] = ACTIONS(4535), - [aux_sym_implicit_statement_token4] = ACTIONS(4535), - [aux_sym_save_statement_token1] = ACTIONS(4535), - [aux_sym_private_statement_token1] = ACTIONS(4535), - [aux_sym_public_statement_token1] = ACTIONS(4535), - [aux_sym_namelist_statement_token1] = ACTIONS(4535), - [aux_sym_common_statement_token1] = ACTIONS(4535), - [aux_sym_import_statement_token1] = ACTIONS(4535), - [aux_sym_derived_type_definition_token1] = ACTIONS(4535), - [aux_sym_abstract_specifier_token1] = ACTIONS(4535), - [aux_sym_procedure_attribute_token6] = ACTIONS(4535), - [aux_sym_variable_attributes_token1] = ACTIONS(4535), - [aux_sym_variable_attributes_token2] = ACTIONS(4535), - [aux_sym_variable_attributes_token3] = ACTIONS(4535), - [aux_sym_variable_attributes_token4] = ACTIONS(4535), - [aux_sym_variable_attributes_token5] = ACTIONS(4535), - [aux_sym__intrinsic_type_token1] = ACTIONS(4535), - [aux_sym__intrinsic_type_token2] = ACTIONS(4535), - [aux_sym__intrinsic_type_token3] = ACTIONS(4535), - [aux_sym__intrinsic_type_token4] = ACTIONS(4535), - [aux_sym__intrinsic_type_token6] = ACTIONS(4535), - [aux_sym__intrinsic_type_token7] = ACTIONS(4535), - [aux_sym__intrinsic_type_token8] = ACTIONS(4535), - [aux_sym__intrinsic_type_token9] = ACTIONS(4535), - [aux_sym__intrinsic_type_token10] = ACTIONS(4535), - [aux_sym_derived_type_token1] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), - [aux_sym_type_qualifier_token1] = ACTIONS(4535), - [aux_sym_type_qualifier_token2] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4535), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4535), - [aux_sym_equivalence_statement_token1] = ACTIONS(4535), - [anon_sym_SEMI] = ACTIONS(4537), - [aux_sym_stop_statement_token1] = ACTIONS(4535), - [aux_sym_stop_statement_token2] = ACTIONS(4535), - [aux_sym_subroutine_call_token1] = ACTIONS(4535), - [aux_sym_keyword_statement_token1] = ACTIONS(4535), - [aux_sym_keyword_statement_token2] = ACTIONS(4535), - [aux_sym_keyword_statement_token3] = ACTIONS(4535), - [aux_sym_keyword_statement_token4] = ACTIONS(4535), - [aux_sym_keyword_statement_token6] = ACTIONS(4535), - [aux_sym_keyword_statement_token7] = ACTIONS(4535), - [aux_sym_include_statement_token1] = ACTIONS(4535), - [aux_sym_data_statement_token1] = ACTIONS(4535), - [aux_sym_do_loop_statement_token1] = ACTIONS(4535), - [aux_sym__inline_if_statement_token1] = ACTIONS(4535), - [aux_sym_end_if_statement_token1] = ACTIONS(4535), - [aux_sym_elseif_clause_token2] = ACTIONS(4535), - [aux_sym__inline_where_statement_token1] = ACTIONS(4535), - [aux_sym__forall_control_expression_token1] = ACTIONS(4535), - [aux_sym_select_case_statement_token1] = ACTIONS(4535), - [aux_sym_select_case_statement_token3] = ACTIONS(4535), - [aux_sym_select_type_statement_token1] = ACTIONS(4535), - [aux_sym_select_rank_statement_token2] = ACTIONS(4535), - [aux_sym_block_construct_token1] = ACTIONS(4535), - [aux_sym_associate_statement_token1] = ACTIONS(4535), - [aux_sym_format_statement_token1] = ACTIONS(4535), - [aux_sym_print_statement_token1] = ACTIONS(4535), - [aux_sym_open_statement_token1] = ACTIONS(4535), - [aux_sym_close_statement_token1] = ACTIONS(4535), - [aux_sym_inquire_statement_token1] = ACTIONS(4535), - [aux_sym_enum_statement_token1] = ACTIONS(4535), - [aux_sym_file_position_statement_token1] = ACTIONS(4535), - [aux_sym_file_position_statement_token2] = ACTIONS(4535), - [aux_sym_file_position_statement_token3] = ACTIONS(4535), - [aux_sym_file_position_statement_token4] = ACTIONS(4535), - [aux_sym_allocate_statement_token1] = ACTIONS(4535), - [aux_sym_entry_statement_token1] = ACTIONS(4535), - [aux_sym_logical_expression_token5] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4535), - [anon_sym_LPAREN_SLASH] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4537), - [aux_sym_boolean_literal_token1] = ACTIONS(4537), - [aux_sym_boolean_literal_token2] = ACTIONS(4537), - [aux_sym_null_literal_token1] = ACTIONS(4535), - [aux_sym_coarray_statement_token1] = ACTIONS(4535), - [aux_sym_coarray_statement_token2] = ACTIONS(4535), - [aux_sym_coarray_statement_token6] = ACTIONS(4535), - [aux_sym_coarray_statement_token8] = ACTIONS(4535), - [aux_sym_coarray_statement_token11] = ACTIONS(4535), - [aux_sym_coarray_statement_token12] = ACTIONS(4535), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), - [aux_sym_identifier_token1] = ACTIONS(4535), + [aux_sym_program_statement_token1] = ACTIONS(4507), + [aux_sym_end_program_statement_token1] = ACTIONS(4507), + [aux_sym_end_program_statement_token2] = ACTIONS(4507), + [aux_sym_module_statement_token1] = ACTIONS(4507), + [aux_sym_submodule_statement_token1] = ACTIONS(4507), + [aux_sym_interface_statement_token1] = ACTIONS(4507), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4507), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4507), + [aux_sym_subroutine_statement_token1] = ACTIONS(4507), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4507), + [aux_sym_function_statement_token1] = ACTIONS(4507), + [aux_sym_language_binding_token1] = ACTIONS(4507), + [aux_sym_procedure_attributes_token1] = ACTIONS(4507), + [aux_sym_procedure_attributes_token3] = ACTIONS(4507), + [aux_sym_contains_statement_token1] = ACTIONS(4507), + [aux_sym_use_statement_token1] = ACTIONS(4507), + [aux_sym_use_statement_token2] = ACTIONS(4507), + [aux_sym_implicit_statement_token1] = ACTIONS(4507), + [aux_sym_implicit_statement_token3] = ACTIONS(4507), + [aux_sym_implicit_statement_token4] = ACTIONS(4507), + [aux_sym_save_statement_token1] = ACTIONS(4507), + [aux_sym_private_statement_token1] = ACTIONS(4507), + [aux_sym_public_statement_token1] = ACTIONS(4507), + [aux_sym_namelist_statement_token1] = ACTIONS(4507), + [aux_sym_common_statement_token1] = ACTIONS(4507), + [aux_sym_import_statement_token1] = ACTIONS(4507), + [aux_sym_derived_type_definition_token1] = ACTIONS(4507), + [aux_sym_abstract_specifier_token1] = ACTIONS(4507), + [aux_sym_procedure_attribute_token6] = ACTIONS(4507), + [aux_sym_variable_attributes_token1] = ACTIONS(4507), + [aux_sym_variable_attributes_token2] = ACTIONS(4507), + [aux_sym_variable_attributes_token3] = ACTIONS(4507), + [aux_sym_variable_attributes_token4] = ACTIONS(4507), + [aux_sym_variable_attributes_token5] = ACTIONS(4507), + [aux_sym__intrinsic_type_token1] = ACTIONS(4507), + [aux_sym__intrinsic_type_token2] = ACTIONS(4507), + [aux_sym__intrinsic_type_token3] = ACTIONS(4507), + [aux_sym__intrinsic_type_token4] = ACTIONS(4507), + [aux_sym__intrinsic_type_token6] = ACTIONS(4507), + [aux_sym__intrinsic_type_token7] = ACTIONS(4507), + [aux_sym__intrinsic_type_token8] = ACTIONS(4507), + [aux_sym__intrinsic_type_token9] = ACTIONS(4507), + [aux_sym__intrinsic_type_token10] = ACTIONS(4507), + [aux_sym_derived_type_token1] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4507), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4507), + [aux_sym_type_qualifier_token1] = ACTIONS(4507), + [aux_sym_type_qualifier_token2] = ACTIONS(4507), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4507), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4507), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4507), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4507), + [aux_sym_equivalence_statement_token1] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [aux_sym_stop_statement_token1] = ACTIONS(4507), + [aux_sym_stop_statement_token2] = ACTIONS(4507), + [aux_sym_subroutine_call_token1] = ACTIONS(4507), + [aux_sym_keyword_statement_token1] = ACTIONS(4507), + [aux_sym_keyword_statement_token2] = ACTIONS(4507), + [aux_sym_keyword_statement_token3] = ACTIONS(4507), + [aux_sym_keyword_statement_token4] = ACTIONS(4507), + [aux_sym_keyword_statement_token6] = ACTIONS(4507), + [aux_sym_keyword_statement_token7] = ACTIONS(4507), + [aux_sym_include_statement_token1] = ACTIONS(4507), + [aux_sym_data_statement_token1] = ACTIONS(4507), + [aux_sym_do_loop_statement_token1] = ACTIONS(4507), + [aux_sym__inline_if_statement_token1] = ACTIONS(4507), + [aux_sym_end_if_statement_token1] = ACTIONS(4507), + [aux_sym_elseif_clause_token2] = ACTIONS(4507), + [aux_sym__inline_where_statement_token1] = ACTIONS(4507), + [aux_sym__forall_control_expression_token1] = ACTIONS(4507), + [aux_sym_select_case_statement_token1] = ACTIONS(4507), + [aux_sym_select_case_statement_token3] = ACTIONS(4507), + [aux_sym_select_type_statement_token1] = ACTIONS(4507), + [aux_sym_select_rank_statement_token2] = ACTIONS(4507), + [aux_sym_block_construct_token1] = ACTIONS(4507), + [aux_sym_associate_statement_token1] = ACTIONS(4507), + [aux_sym_format_statement_token1] = ACTIONS(4507), + [aux_sym_print_statement_token1] = ACTIONS(4507), + [aux_sym_open_statement_token1] = ACTIONS(4507), + [aux_sym_close_statement_token1] = ACTIONS(4507), + [aux_sym_inquire_statement_token1] = ACTIONS(4507), + [aux_sym_enum_statement_token1] = ACTIONS(4507), + [aux_sym_file_position_statement_token1] = ACTIONS(4507), + [aux_sym_file_position_statement_token2] = ACTIONS(4507), + [aux_sym_file_position_statement_token3] = ACTIONS(4507), + [aux_sym_file_position_statement_token4] = ACTIONS(4507), + [aux_sym_allocate_statement_token1] = ACTIONS(4507), + [aux_sym_entry_statement_token1] = ACTIONS(4507), + [aux_sym_logical_expression_token5] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_LPAREN_SLASH] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [aux_sym_null_literal_token1] = ACTIONS(4507), + [aux_sym_coarray_statement_token1] = ACTIONS(4507), + [aux_sym_coarray_statement_token2] = ACTIONS(4507), + [aux_sym_coarray_statement_token6] = ACTIONS(4507), + [aux_sym_coarray_statement_token8] = ACTIONS(4507), + [aux_sym_coarray_statement_token11] = ACTIONS(4507), + [aux_sym_coarray_statement_token12] = ACTIONS(4507), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4507), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4507), + [aux_sym_identifier_token1] = ACTIONS(4507), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4537), - [sym__float_literal] = ACTIONS(4537), - [sym__boz_literal] = ACTIONS(4537), - [sym__string_literal] = ACTIONS(4537), - [sym__string_literal_kind] = ACTIONS(4537), + [sym__integer_literal] = ACTIONS(4509), + [sym__float_literal] = ACTIONS(4509), + [sym__boz_literal] = ACTIONS(4509), + [sym__string_literal] = ACTIONS(4509), + [sym__string_literal_kind] = ACTIONS(4509), }, [1083] = { - [aux_sym_preproc_include_token1] = ACTIONS(4539), - [aux_sym_preproc_def_token1] = ACTIONS(4539), - [aux_sym_preproc_if_token1] = ACTIONS(4539), - [aux_sym_preproc_if_token2] = ACTIONS(4539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4539), - [sym_preproc_directive] = ACTIONS(4539), - [anon_sym_LPAREN2] = ACTIONS(4539), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4539), - [aux_sym_end_program_statement_token1] = ACTIONS(4539), - [aux_sym_end_program_statement_token2] = ACTIONS(4539), - [aux_sym_module_statement_token1] = ACTIONS(4539), - [aux_sym_submodule_statement_token1] = ACTIONS(4539), - [aux_sym_interface_statement_token1] = ACTIONS(4539), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4539), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4539), - [aux_sym_subroutine_statement_token1] = ACTIONS(4539), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4539), - [aux_sym_function_statement_token1] = ACTIONS(4539), - [aux_sym_language_binding_token1] = ACTIONS(4539), - [aux_sym_procedure_attributes_token1] = ACTIONS(4539), - [aux_sym_procedure_attributes_token3] = ACTIONS(4539), - [aux_sym_contains_statement_token1] = ACTIONS(4539), - [aux_sym_use_statement_token1] = ACTIONS(4539), - [aux_sym_use_statement_token2] = ACTIONS(4539), - [aux_sym_implicit_statement_token1] = ACTIONS(4539), - [aux_sym_implicit_statement_token3] = ACTIONS(4539), - [aux_sym_implicit_statement_token4] = ACTIONS(4539), - [aux_sym_save_statement_token1] = ACTIONS(4539), - [aux_sym_private_statement_token1] = ACTIONS(4539), - [aux_sym_public_statement_token1] = ACTIONS(4539), - [aux_sym_namelist_statement_token1] = ACTIONS(4539), - [aux_sym_common_statement_token1] = ACTIONS(4539), - [aux_sym_import_statement_token1] = ACTIONS(4539), - [aux_sym_derived_type_definition_token1] = ACTIONS(4539), - [aux_sym_abstract_specifier_token1] = ACTIONS(4539), - [aux_sym_procedure_attribute_token6] = ACTIONS(4539), - [aux_sym_variable_attributes_token1] = ACTIONS(4539), - [aux_sym_variable_attributes_token2] = ACTIONS(4539), - [aux_sym_variable_attributes_token3] = ACTIONS(4539), - [aux_sym_variable_attributes_token4] = ACTIONS(4539), - [aux_sym_variable_attributes_token5] = ACTIONS(4539), - [aux_sym__intrinsic_type_token1] = ACTIONS(4539), - [aux_sym__intrinsic_type_token2] = ACTIONS(4539), - [aux_sym__intrinsic_type_token3] = ACTIONS(4539), - [aux_sym__intrinsic_type_token4] = ACTIONS(4539), - [aux_sym__intrinsic_type_token6] = ACTIONS(4539), - [aux_sym__intrinsic_type_token7] = ACTIONS(4539), - [aux_sym__intrinsic_type_token8] = ACTIONS(4539), - [aux_sym__intrinsic_type_token9] = ACTIONS(4539), - [aux_sym__intrinsic_type_token10] = ACTIONS(4539), - [aux_sym_derived_type_token1] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4539), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4539), - [aux_sym_type_qualifier_token1] = ACTIONS(4539), - [aux_sym_type_qualifier_token2] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4539), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4539), - [aux_sym_equivalence_statement_token1] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [aux_sym_stop_statement_token1] = ACTIONS(4539), - [aux_sym_stop_statement_token2] = ACTIONS(4539), - [aux_sym_subroutine_call_token1] = ACTIONS(4539), - [aux_sym_keyword_statement_token1] = ACTIONS(4539), - [aux_sym_keyword_statement_token2] = ACTIONS(4539), - [aux_sym_keyword_statement_token3] = ACTIONS(4539), - [aux_sym_keyword_statement_token4] = ACTIONS(4539), - [aux_sym_keyword_statement_token6] = ACTIONS(4539), - [aux_sym_keyword_statement_token7] = ACTIONS(4539), - [aux_sym_include_statement_token1] = ACTIONS(4539), - [aux_sym_data_statement_token1] = ACTIONS(4539), - [aux_sym_do_loop_statement_token1] = ACTIONS(4539), - [aux_sym__inline_if_statement_token1] = ACTIONS(4539), - [aux_sym_end_if_statement_token1] = ACTIONS(4539), - [aux_sym_elseif_clause_token2] = ACTIONS(4539), - [aux_sym__inline_where_statement_token1] = ACTIONS(4539), - [aux_sym__forall_control_expression_token1] = ACTIONS(4539), - [aux_sym_select_case_statement_token1] = ACTIONS(4539), - [aux_sym_select_case_statement_token3] = ACTIONS(4539), - [aux_sym_select_type_statement_token1] = ACTIONS(4539), - [aux_sym_select_rank_statement_token2] = ACTIONS(4539), - [aux_sym_block_construct_token1] = ACTIONS(4539), - [aux_sym_associate_statement_token1] = ACTIONS(4539), - [aux_sym_format_statement_token1] = ACTIONS(4539), - [aux_sym_print_statement_token1] = ACTIONS(4539), - [aux_sym_open_statement_token1] = ACTIONS(4539), - [aux_sym_close_statement_token1] = ACTIONS(4539), - [aux_sym_inquire_statement_token1] = ACTIONS(4539), - [aux_sym_enum_statement_token1] = ACTIONS(4539), - [aux_sym_file_position_statement_token1] = ACTIONS(4539), - [aux_sym_file_position_statement_token2] = ACTIONS(4539), - [aux_sym_file_position_statement_token3] = ACTIONS(4539), - [aux_sym_file_position_statement_token4] = ACTIONS(4539), - [aux_sym_allocate_statement_token1] = ACTIONS(4539), - [aux_sym_entry_statement_token1] = ACTIONS(4539), - [aux_sym_logical_expression_token5] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_LPAREN_SLASH] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [aux_sym_boolean_literal_token1] = ACTIONS(4541), - [aux_sym_boolean_literal_token2] = ACTIONS(4541), - [aux_sym_null_literal_token1] = ACTIONS(4539), - [aux_sym_coarray_statement_token1] = ACTIONS(4539), - [aux_sym_coarray_statement_token2] = ACTIONS(4539), - [aux_sym_coarray_statement_token6] = ACTIONS(4539), - [aux_sym_coarray_statement_token8] = ACTIONS(4539), - [aux_sym_coarray_statement_token11] = ACTIONS(4539), - [aux_sym_coarray_statement_token12] = ACTIONS(4539), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4539), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4539), - [aux_sym_identifier_token1] = ACTIONS(4539), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4541), - [sym__float_literal] = ACTIONS(4541), - [sym__boz_literal] = ACTIONS(4541), - [sym__string_literal] = ACTIONS(4541), - [sym__string_literal_kind] = ACTIONS(4541), + [aux_sym_preproc_include_token1] = ACTIONS(4619), + [aux_sym_preproc_def_token1] = ACTIONS(4619), + [aux_sym_preproc_if_token1] = ACTIONS(4619), + [aux_sym_preproc_if_token2] = ACTIONS(4619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), + [sym_preproc_directive] = ACTIONS(4619), + [anon_sym_LPAREN2] = ACTIONS(4619), + [anon_sym_PLUS] = ACTIONS(4621), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4619), + [aux_sym_end_program_statement_token1] = ACTIONS(4619), + [aux_sym_end_program_statement_token2] = ACTIONS(4619), + [aux_sym_module_statement_token1] = ACTIONS(4619), + [aux_sym_submodule_statement_token1] = ACTIONS(4619), + [aux_sym_interface_statement_token1] = ACTIONS(4619), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), + [aux_sym_subroutine_statement_token1] = ACTIONS(4619), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), + [aux_sym_function_statement_token1] = ACTIONS(4619), + [aux_sym_language_binding_token1] = ACTIONS(4619), + [aux_sym_procedure_attributes_token1] = ACTIONS(4619), + [aux_sym_procedure_attributes_token3] = ACTIONS(4619), + [aux_sym_contains_statement_token1] = ACTIONS(4619), + [aux_sym_use_statement_token1] = ACTIONS(4619), + [aux_sym_use_statement_token2] = ACTIONS(4619), + [aux_sym_implicit_statement_token1] = ACTIONS(4619), + [aux_sym_implicit_statement_token3] = ACTIONS(4619), + [aux_sym_implicit_statement_token4] = ACTIONS(4619), + [aux_sym_save_statement_token1] = ACTIONS(4619), + [aux_sym_private_statement_token1] = ACTIONS(4619), + [aux_sym_public_statement_token1] = ACTIONS(4619), + [aux_sym_namelist_statement_token1] = ACTIONS(4619), + [aux_sym_common_statement_token1] = ACTIONS(4619), + [aux_sym_import_statement_token1] = ACTIONS(4619), + [aux_sym_derived_type_definition_token1] = ACTIONS(4619), + [aux_sym_abstract_specifier_token1] = ACTIONS(4619), + [aux_sym_procedure_attribute_token6] = ACTIONS(4619), + [aux_sym_variable_attributes_token1] = ACTIONS(4619), + [aux_sym_variable_attributes_token2] = ACTIONS(4619), + [aux_sym_variable_attributes_token3] = ACTIONS(4619), + [aux_sym_variable_attributes_token4] = ACTIONS(4619), + [aux_sym_variable_attributes_token5] = ACTIONS(4619), + [aux_sym__intrinsic_type_token1] = ACTIONS(4619), + [aux_sym__intrinsic_type_token2] = ACTIONS(4619), + [aux_sym__intrinsic_type_token3] = ACTIONS(4619), + [aux_sym__intrinsic_type_token4] = ACTIONS(4619), + [aux_sym__intrinsic_type_token6] = ACTIONS(4619), + [aux_sym__intrinsic_type_token7] = ACTIONS(4619), + [aux_sym__intrinsic_type_token8] = ACTIONS(4619), + [aux_sym__intrinsic_type_token9] = ACTIONS(4619), + [aux_sym__intrinsic_type_token10] = ACTIONS(4619), + [aux_sym_derived_type_token1] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), + [aux_sym_type_qualifier_token1] = ACTIONS(4619), + [aux_sym_type_qualifier_token2] = ACTIONS(4619), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4619), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4619), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4619), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4619), + [aux_sym_equivalence_statement_token1] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4621), + [aux_sym_stop_statement_token1] = ACTIONS(4619), + [aux_sym_stop_statement_token2] = ACTIONS(4619), + [aux_sym_subroutine_call_token1] = ACTIONS(4619), + [aux_sym_keyword_statement_token1] = ACTIONS(4619), + [aux_sym_keyword_statement_token2] = ACTIONS(4619), + [aux_sym_keyword_statement_token3] = ACTIONS(4619), + [aux_sym_keyword_statement_token4] = ACTIONS(4619), + [aux_sym_keyword_statement_token6] = ACTIONS(4619), + [aux_sym_keyword_statement_token7] = ACTIONS(4619), + [aux_sym_include_statement_token1] = ACTIONS(4619), + [aux_sym_data_statement_token1] = ACTIONS(4619), + [aux_sym_do_loop_statement_token1] = ACTIONS(4619), + [aux_sym__inline_if_statement_token1] = ACTIONS(4619), + [aux_sym_end_if_statement_token1] = ACTIONS(4619), + [aux_sym_elseif_clause_token2] = ACTIONS(4619), + [aux_sym__inline_where_statement_token1] = ACTIONS(4619), + [aux_sym__forall_control_expression_token1] = ACTIONS(4619), + [aux_sym_select_case_statement_token1] = ACTIONS(4619), + [aux_sym_select_case_statement_token3] = ACTIONS(4619), + [aux_sym_select_type_statement_token1] = ACTIONS(4619), + [aux_sym_select_rank_statement_token2] = ACTIONS(4619), + [aux_sym_block_construct_token1] = ACTIONS(4619), + [aux_sym_associate_statement_token1] = ACTIONS(4619), + [aux_sym_format_statement_token1] = ACTIONS(4619), + [aux_sym_print_statement_token1] = ACTIONS(4619), + [aux_sym_open_statement_token1] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4619), + [aux_sym_inquire_statement_token1] = ACTIONS(4619), + [aux_sym_enum_statement_token1] = ACTIONS(4619), + [aux_sym_file_position_statement_token1] = ACTIONS(4619), + [aux_sym_file_position_statement_token2] = ACTIONS(4619), + [aux_sym_file_position_statement_token3] = ACTIONS(4619), + [aux_sym_file_position_statement_token4] = ACTIONS(4619), + [aux_sym_allocate_statement_token1] = ACTIONS(4619), + [aux_sym_entry_statement_token1] = ACTIONS(4619), + [aux_sym_logical_expression_token5] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_LPAREN_SLASH] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4621), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [aux_sym_null_literal_token1] = ACTIONS(4619), + [aux_sym_coarray_statement_token1] = ACTIONS(4619), + [aux_sym_coarray_statement_token2] = ACTIONS(4619), + [aux_sym_coarray_statement_token6] = ACTIONS(4619), + [aux_sym_coarray_statement_token8] = ACTIONS(4619), + [aux_sym_coarray_statement_token11] = ACTIONS(4619), + [aux_sym_coarray_statement_token12] = ACTIONS(4619), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), + [aux_sym_identifier_token1] = ACTIONS(4619), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4621), + [sym__float_literal] = ACTIONS(4621), + [sym__boz_literal] = ACTIONS(4621), + [sym__string_literal] = ACTIONS(4621), + [sym__string_literal_kind] = ACTIONS(4621), }, [1084] = { - [aux_sym_preproc_include_token1] = ACTIONS(4543), - [aux_sym_preproc_def_token1] = ACTIONS(4543), - [aux_sym_preproc_if_token1] = ACTIONS(4543), - [aux_sym_preproc_if_token2] = ACTIONS(4543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4543), - [sym_preproc_directive] = ACTIONS(4543), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4543), - [aux_sym_end_program_statement_token1] = ACTIONS(4543), - [aux_sym_end_program_statement_token2] = ACTIONS(4543), - [aux_sym_module_statement_token1] = ACTIONS(4543), - [aux_sym_submodule_statement_token1] = ACTIONS(4543), - [aux_sym_interface_statement_token1] = ACTIONS(4543), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4543), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4543), - [aux_sym_subroutine_statement_token1] = ACTIONS(4543), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4543), - [aux_sym_function_statement_token1] = ACTIONS(4543), - [aux_sym_language_binding_token1] = ACTIONS(4543), - [aux_sym_procedure_attributes_token1] = ACTIONS(4543), - [aux_sym_procedure_attributes_token3] = ACTIONS(4543), - [aux_sym_contains_statement_token1] = ACTIONS(4543), - [aux_sym_use_statement_token1] = ACTIONS(4543), - [aux_sym_use_statement_token2] = ACTIONS(4543), - [aux_sym_implicit_statement_token1] = ACTIONS(4543), - [aux_sym_implicit_statement_token3] = ACTIONS(4543), - [aux_sym_implicit_statement_token4] = ACTIONS(4543), - [aux_sym_save_statement_token1] = ACTIONS(4543), - [aux_sym_private_statement_token1] = ACTIONS(4543), - [aux_sym_public_statement_token1] = ACTIONS(4543), - [aux_sym_namelist_statement_token1] = ACTIONS(4543), - [aux_sym_common_statement_token1] = ACTIONS(4543), - [aux_sym_import_statement_token1] = ACTIONS(4543), - [aux_sym_derived_type_definition_token1] = ACTIONS(4543), - [aux_sym_abstract_specifier_token1] = ACTIONS(4543), - [aux_sym_procedure_attribute_token6] = ACTIONS(4543), - [aux_sym_variable_attributes_token1] = ACTIONS(4543), - [aux_sym_variable_attributes_token2] = ACTIONS(4543), - [aux_sym_variable_attributes_token3] = ACTIONS(4543), - [aux_sym_variable_attributes_token4] = ACTIONS(4543), - [aux_sym_variable_attributes_token5] = ACTIONS(4543), - [aux_sym__intrinsic_type_token1] = ACTIONS(4543), - [aux_sym__intrinsic_type_token2] = ACTIONS(4543), - [aux_sym__intrinsic_type_token3] = ACTIONS(4543), - [aux_sym__intrinsic_type_token4] = ACTIONS(4543), - [aux_sym__intrinsic_type_token6] = ACTIONS(4543), - [aux_sym__intrinsic_type_token7] = ACTIONS(4543), - [aux_sym__intrinsic_type_token8] = ACTIONS(4543), - [aux_sym__intrinsic_type_token9] = ACTIONS(4543), - [aux_sym__intrinsic_type_token10] = ACTIONS(4543), - [aux_sym_derived_type_token1] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4543), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4543), - [aux_sym_type_qualifier_token1] = ACTIONS(4543), - [aux_sym_type_qualifier_token2] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4543), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4543), - [aux_sym_equivalence_statement_token1] = ACTIONS(4543), - [anon_sym_SEMI] = ACTIONS(4545), - [aux_sym_stop_statement_token1] = ACTIONS(4543), - [aux_sym_stop_statement_token2] = ACTIONS(4543), - [aux_sym_subroutine_call_token1] = ACTIONS(4543), - [aux_sym_keyword_statement_token1] = ACTIONS(4543), - [aux_sym_keyword_statement_token2] = ACTIONS(4543), - [aux_sym_keyword_statement_token3] = ACTIONS(4543), - [aux_sym_keyword_statement_token4] = ACTIONS(4543), - [aux_sym_keyword_statement_token6] = ACTIONS(4543), - [aux_sym_keyword_statement_token7] = ACTIONS(4543), - [aux_sym_include_statement_token1] = ACTIONS(4543), - [aux_sym_data_statement_token1] = ACTIONS(4543), - [aux_sym_do_loop_statement_token1] = ACTIONS(4543), - [aux_sym__inline_if_statement_token1] = ACTIONS(4543), - [aux_sym_end_if_statement_token1] = ACTIONS(4543), - [aux_sym_elseif_clause_token2] = ACTIONS(4543), - [aux_sym__inline_where_statement_token1] = ACTIONS(4543), - [aux_sym__forall_control_expression_token1] = ACTIONS(4543), - [aux_sym_select_case_statement_token1] = ACTIONS(4543), - [aux_sym_select_case_statement_token3] = ACTIONS(4543), - [aux_sym_select_type_statement_token1] = ACTIONS(4543), - [aux_sym_select_rank_statement_token2] = ACTIONS(4543), - [aux_sym_block_construct_token1] = ACTIONS(4543), - [aux_sym_associate_statement_token1] = ACTIONS(4543), - [aux_sym_format_statement_token1] = ACTIONS(4543), - [aux_sym_print_statement_token1] = ACTIONS(4543), - [aux_sym_open_statement_token1] = ACTIONS(4543), - [aux_sym_close_statement_token1] = ACTIONS(4543), - [aux_sym_inquire_statement_token1] = ACTIONS(4543), - [aux_sym_enum_statement_token1] = ACTIONS(4543), - [aux_sym_file_position_statement_token1] = ACTIONS(4543), - [aux_sym_file_position_statement_token2] = ACTIONS(4543), - [aux_sym_file_position_statement_token3] = ACTIONS(4543), - [aux_sym_file_position_statement_token4] = ACTIONS(4543), - [aux_sym_allocate_statement_token1] = ACTIONS(4543), - [aux_sym_entry_statement_token1] = ACTIONS(4543), - [aux_sym_logical_expression_token5] = ACTIONS(4545), - [anon_sym_DOT] = ACTIONS(4543), - [anon_sym_LPAREN_SLASH] = ACTIONS(4545), - [anon_sym_LBRACK] = ACTIONS(4545), - [aux_sym_boolean_literal_token1] = ACTIONS(4545), - [aux_sym_boolean_literal_token2] = ACTIONS(4545), - [aux_sym_null_literal_token1] = ACTIONS(4543), - [aux_sym_coarray_statement_token1] = ACTIONS(4543), - [aux_sym_coarray_statement_token2] = ACTIONS(4543), - [aux_sym_coarray_statement_token6] = ACTIONS(4543), - [aux_sym_coarray_statement_token8] = ACTIONS(4543), - [aux_sym_coarray_statement_token11] = ACTIONS(4543), - [aux_sym_coarray_statement_token12] = ACTIONS(4543), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4543), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4543), - [aux_sym_identifier_token1] = ACTIONS(4543), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4545), - [sym__float_literal] = ACTIONS(4545), - [sym__boz_literal] = ACTIONS(4545), - [sym__string_literal] = ACTIONS(4545), - [sym__string_literal_kind] = ACTIONS(4545), + [aux_sym_preproc_include_token1] = ACTIONS(4515), + [aux_sym_preproc_def_token1] = ACTIONS(4515), + [aux_sym_preproc_if_token1] = ACTIONS(4515), + [aux_sym_preproc_if_token2] = ACTIONS(4515), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4515), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4515), + [sym_preproc_directive] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4515), + [aux_sym_end_program_statement_token1] = ACTIONS(4515), + [aux_sym_end_program_statement_token2] = ACTIONS(4515), + [aux_sym_module_statement_token1] = ACTIONS(4515), + [aux_sym_submodule_statement_token1] = ACTIONS(4515), + [aux_sym_interface_statement_token1] = ACTIONS(4515), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4515), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4515), + [aux_sym_subroutine_statement_token1] = ACTIONS(4515), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4515), + [aux_sym_function_statement_token1] = ACTIONS(4515), + [aux_sym_language_binding_token1] = ACTIONS(4515), + [aux_sym_procedure_attributes_token1] = ACTIONS(4515), + [aux_sym_procedure_attributes_token3] = ACTIONS(4515), + [aux_sym_contains_statement_token1] = ACTIONS(4515), + [aux_sym_use_statement_token1] = ACTIONS(4515), + [aux_sym_use_statement_token2] = ACTIONS(4515), + [aux_sym_implicit_statement_token1] = ACTIONS(4515), + [aux_sym_implicit_statement_token3] = ACTIONS(4515), + [aux_sym_implicit_statement_token4] = ACTIONS(4515), + [aux_sym_save_statement_token1] = ACTIONS(4515), + [aux_sym_private_statement_token1] = ACTIONS(4515), + [aux_sym_public_statement_token1] = ACTIONS(4515), + [aux_sym_namelist_statement_token1] = ACTIONS(4515), + [aux_sym_common_statement_token1] = ACTIONS(4515), + [aux_sym_import_statement_token1] = ACTIONS(4515), + [aux_sym_derived_type_definition_token1] = ACTIONS(4515), + [aux_sym_abstract_specifier_token1] = ACTIONS(4515), + [aux_sym_procedure_attribute_token6] = ACTIONS(4515), + [aux_sym_variable_attributes_token1] = ACTIONS(4515), + [aux_sym_variable_attributes_token2] = ACTIONS(4515), + [aux_sym_variable_attributes_token3] = ACTIONS(4515), + [aux_sym_variable_attributes_token4] = ACTIONS(4515), + [aux_sym_variable_attributes_token5] = ACTIONS(4515), + [aux_sym__intrinsic_type_token1] = ACTIONS(4515), + [aux_sym__intrinsic_type_token2] = ACTIONS(4515), + [aux_sym__intrinsic_type_token3] = ACTIONS(4515), + [aux_sym__intrinsic_type_token4] = ACTIONS(4515), + [aux_sym__intrinsic_type_token6] = ACTIONS(4515), + [aux_sym__intrinsic_type_token7] = ACTIONS(4515), + [aux_sym__intrinsic_type_token8] = ACTIONS(4515), + [aux_sym__intrinsic_type_token9] = ACTIONS(4515), + [aux_sym__intrinsic_type_token10] = ACTIONS(4515), + [aux_sym_derived_type_token1] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4515), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4515), + [aux_sym_type_qualifier_token1] = ACTIONS(4515), + [aux_sym_type_qualifier_token2] = ACTIONS(4515), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4515), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4515), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4515), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4515), + [aux_sym_equivalence_statement_token1] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [aux_sym_stop_statement_token1] = ACTIONS(4515), + [aux_sym_stop_statement_token2] = ACTIONS(4515), + [aux_sym_subroutine_call_token1] = ACTIONS(4515), + [aux_sym_keyword_statement_token1] = ACTIONS(4515), + [aux_sym_keyword_statement_token2] = ACTIONS(4515), + [aux_sym_keyword_statement_token3] = ACTIONS(4515), + [aux_sym_keyword_statement_token4] = ACTIONS(4515), + [aux_sym_keyword_statement_token6] = ACTIONS(4515), + [aux_sym_keyword_statement_token7] = ACTIONS(4515), + [aux_sym_include_statement_token1] = ACTIONS(4515), + [aux_sym_data_statement_token1] = ACTIONS(4515), + [aux_sym_do_loop_statement_token1] = ACTIONS(4515), + [aux_sym__inline_if_statement_token1] = ACTIONS(4515), + [aux_sym_end_if_statement_token1] = ACTIONS(4515), + [aux_sym_elseif_clause_token2] = ACTIONS(4515), + [aux_sym__inline_where_statement_token1] = ACTIONS(4515), + [aux_sym__forall_control_expression_token1] = ACTIONS(4515), + [aux_sym_select_case_statement_token1] = ACTIONS(4515), + [aux_sym_select_case_statement_token3] = ACTIONS(4515), + [aux_sym_select_type_statement_token1] = ACTIONS(4515), + [aux_sym_select_rank_statement_token2] = ACTIONS(4515), + [aux_sym_block_construct_token1] = ACTIONS(4515), + [aux_sym_associate_statement_token1] = ACTIONS(4515), + [aux_sym_format_statement_token1] = ACTIONS(4515), + [aux_sym_print_statement_token1] = ACTIONS(4515), + [aux_sym_open_statement_token1] = ACTIONS(4515), + [aux_sym_close_statement_token1] = ACTIONS(4515), + [aux_sym_inquire_statement_token1] = ACTIONS(4515), + [aux_sym_enum_statement_token1] = ACTIONS(4515), + [aux_sym_file_position_statement_token1] = ACTIONS(4515), + [aux_sym_file_position_statement_token2] = ACTIONS(4515), + [aux_sym_file_position_statement_token3] = ACTIONS(4515), + [aux_sym_file_position_statement_token4] = ACTIONS(4515), + [aux_sym_allocate_statement_token1] = ACTIONS(4515), + [aux_sym_entry_statement_token1] = ACTIONS(4515), + [aux_sym_logical_expression_token5] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_LPAREN_SLASH] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [aux_sym_null_literal_token1] = ACTIONS(4515), + [aux_sym_coarray_statement_token1] = ACTIONS(4515), + [aux_sym_coarray_statement_token2] = ACTIONS(4515), + [aux_sym_coarray_statement_token6] = ACTIONS(4515), + [aux_sym_coarray_statement_token8] = ACTIONS(4515), + [aux_sym_coarray_statement_token11] = ACTIONS(4515), + [aux_sym_coarray_statement_token12] = ACTIONS(4515), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4515), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4515), + [aux_sym_identifier_token1] = ACTIONS(4515), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4517), + [sym__float_literal] = ACTIONS(4517), + [sym__boz_literal] = ACTIONS(4517), + [sym__string_literal] = ACTIONS(4517), + [sym__string_literal_kind] = ACTIONS(4517), }, [1085] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4287), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_module_statement_token1] = ACTIONS(4287), - [aux_sym_submodule_statement_token1] = ACTIONS(4287), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_subroutine_statement_token1] = ACTIONS(4287), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_function_statement_token1] = ACTIONS(4287), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4287), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4287), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), - }, - [1086] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [aux_sym_preproc_include_token1] = ACTIONS(4519), + [aux_sym_preproc_def_token1] = ACTIONS(4519), + [aux_sym_preproc_if_token1] = ACTIONS(4519), + [aux_sym_preproc_if_token2] = ACTIONS(4519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4519), + [sym_preproc_directive] = ACTIONS(4519), + [anon_sym_LPAREN2] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4521), + [anon_sym_DASH] = ACTIONS(4521), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_program_statement_token1] = ACTIONS(4519), + [aux_sym_end_program_statement_token1] = ACTIONS(4519), + [aux_sym_end_program_statement_token2] = ACTIONS(4519), + [aux_sym_module_statement_token1] = ACTIONS(4519), + [aux_sym_submodule_statement_token1] = ACTIONS(4519), + [aux_sym_interface_statement_token1] = ACTIONS(4519), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4519), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4519), + [aux_sym_subroutine_statement_token1] = ACTIONS(4519), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4519), + [aux_sym_function_statement_token1] = ACTIONS(4519), + [aux_sym_language_binding_token1] = ACTIONS(4519), + [aux_sym_procedure_attributes_token1] = ACTIONS(4519), + [aux_sym_procedure_attributes_token3] = ACTIONS(4519), + [aux_sym_contains_statement_token1] = ACTIONS(4519), + [aux_sym_use_statement_token1] = ACTIONS(4519), + [aux_sym_use_statement_token2] = ACTIONS(4519), + [aux_sym_implicit_statement_token1] = ACTIONS(4519), + [aux_sym_implicit_statement_token3] = ACTIONS(4519), + [aux_sym_implicit_statement_token4] = ACTIONS(4519), + [aux_sym_save_statement_token1] = ACTIONS(4519), + [aux_sym_private_statement_token1] = ACTIONS(4519), + [aux_sym_public_statement_token1] = ACTIONS(4519), + [aux_sym_namelist_statement_token1] = ACTIONS(4519), + [aux_sym_common_statement_token1] = ACTIONS(4519), + [aux_sym_import_statement_token1] = ACTIONS(4519), + [aux_sym_derived_type_definition_token1] = ACTIONS(4519), + [aux_sym_abstract_specifier_token1] = ACTIONS(4519), + [aux_sym_procedure_attribute_token6] = ACTIONS(4519), + [aux_sym_variable_attributes_token1] = ACTIONS(4519), + [aux_sym_variable_attributes_token2] = ACTIONS(4519), + [aux_sym_variable_attributes_token3] = ACTIONS(4519), + [aux_sym_variable_attributes_token4] = ACTIONS(4519), + [aux_sym_variable_attributes_token5] = ACTIONS(4519), + [aux_sym__intrinsic_type_token1] = ACTIONS(4519), + [aux_sym__intrinsic_type_token2] = ACTIONS(4519), + [aux_sym__intrinsic_type_token3] = ACTIONS(4519), + [aux_sym__intrinsic_type_token4] = ACTIONS(4519), + [aux_sym__intrinsic_type_token6] = ACTIONS(4519), + [aux_sym__intrinsic_type_token7] = ACTIONS(4519), + [aux_sym__intrinsic_type_token8] = ACTIONS(4519), + [aux_sym__intrinsic_type_token9] = ACTIONS(4519), + [aux_sym__intrinsic_type_token10] = ACTIONS(4519), + [aux_sym_derived_type_token1] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4519), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4519), + [aux_sym_type_qualifier_token1] = ACTIONS(4519), + [aux_sym_type_qualifier_token2] = ACTIONS(4519), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4519), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4519), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4519), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4519), + [aux_sym_equivalence_statement_token1] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [aux_sym_stop_statement_token1] = ACTIONS(4519), + [aux_sym_stop_statement_token2] = ACTIONS(4519), + [aux_sym_subroutine_call_token1] = ACTIONS(4519), + [aux_sym_keyword_statement_token1] = ACTIONS(4519), + [aux_sym_keyword_statement_token2] = ACTIONS(4519), + [aux_sym_keyword_statement_token3] = ACTIONS(4519), + [aux_sym_keyword_statement_token4] = ACTIONS(4519), + [aux_sym_keyword_statement_token6] = ACTIONS(4519), + [aux_sym_keyword_statement_token7] = ACTIONS(4519), + [aux_sym_include_statement_token1] = ACTIONS(4519), + [aux_sym_data_statement_token1] = ACTIONS(4519), + [aux_sym_do_loop_statement_token1] = ACTIONS(4519), + [aux_sym__inline_if_statement_token1] = ACTIONS(4519), + [aux_sym_end_if_statement_token1] = ACTIONS(4519), + [aux_sym_elseif_clause_token2] = ACTIONS(4519), + [aux_sym__inline_where_statement_token1] = ACTIONS(4519), + [aux_sym__forall_control_expression_token1] = ACTIONS(4519), + [aux_sym_select_case_statement_token1] = ACTIONS(4519), + [aux_sym_select_case_statement_token3] = ACTIONS(4519), + [aux_sym_select_type_statement_token1] = ACTIONS(4519), + [aux_sym_select_rank_statement_token2] = ACTIONS(4519), + [aux_sym_block_construct_token1] = ACTIONS(4519), + [aux_sym_associate_statement_token1] = ACTIONS(4519), + [aux_sym_format_statement_token1] = ACTIONS(4519), + [aux_sym_print_statement_token1] = ACTIONS(4519), + [aux_sym_open_statement_token1] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4519), + [aux_sym_inquire_statement_token1] = ACTIONS(4519), + [aux_sym_enum_statement_token1] = ACTIONS(4519), + [aux_sym_file_position_statement_token1] = ACTIONS(4519), + [aux_sym_file_position_statement_token2] = ACTIONS(4519), + [aux_sym_file_position_statement_token3] = ACTIONS(4519), + [aux_sym_file_position_statement_token4] = ACTIONS(4519), + [aux_sym_allocate_statement_token1] = ACTIONS(4519), + [aux_sym_entry_statement_token1] = ACTIONS(4519), + [aux_sym_logical_expression_token5] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_LPAREN_SLASH] = ACTIONS(4521), + [anon_sym_LBRACK] = ACTIONS(4521), + [aux_sym_boolean_literal_token1] = ACTIONS(4521), + [aux_sym_boolean_literal_token2] = ACTIONS(4521), + [aux_sym_null_literal_token1] = ACTIONS(4519), + [aux_sym_coarray_statement_token1] = ACTIONS(4519), + [aux_sym_coarray_statement_token2] = ACTIONS(4519), + [aux_sym_coarray_statement_token6] = ACTIONS(4519), + [aux_sym_coarray_statement_token8] = ACTIONS(4519), + [aux_sym_coarray_statement_token11] = ACTIONS(4519), + [aux_sym_coarray_statement_token12] = ACTIONS(4519), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4519), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4519), + [aux_sym_identifier_token1] = ACTIONS(4519), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4521), + [sym__float_literal] = ACTIONS(4521), + [sym__boz_literal] = ACTIONS(4521), + [sym__string_literal] = ACTIONS(4521), + [sym__string_literal_kind] = ACTIONS(4521), }, - [1087] = { - [aux_sym_preproc_include_token1] = ACTIONS(4383), - [aux_sym_preproc_def_token1] = ACTIONS(4383), - [aux_sym_preproc_if_token1] = ACTIONS(4383), - [aux_sym_preproc_if_token2] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), - [sym_preproc_directive] = ACTIONS(4383), - [anon_sym_LPAREN2] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), + [1086] = { + [ts_builtin_sym_end] = ACTIONS(4441), + [aux_sym_preproc_include_token1] = ACTIONS(4439), + [aux_sym_preproc_def_token1] = ACTIONS(4439), + [aux_sym_preproc_if_token1] = ACTIONS(4439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4439), + [sym_preproc_directive] = ACTIONS(4439), + [anon_sym_LPAREN2] = ACTIONS(4439), + [anon_sym_PLUS] = ACTIONS(4441), + [anon_sym_DASH] = ACTIONS(4441), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4383), - [aux_sym_end_program_statement_token1] = ACTIONS(4383), - [aux_sym_end_program_statement_token2] = ACTIONS(4383), - [aux_sym_module_statement_token1] = ACTIONS(4383), - [aux_sym_submodule_statement_token1] = ACTIONS(4383), - [aux_sym_interface_statement_token1] = ACTIONS(4383), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), - [aux_sym_subroutine_statement_token1] = ACTIONS(4383), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), - [aux_sym_function_statement_token1] = ACTIONS(4383), - [aux_sym_language_binding_token1] = ACTIONS(4383), - [aux_sym_procedure_attributes_token1] = ACTIONS(4383), - [aux_sym_procedure_attributes_token3] = ACTIONS(4383), - [aux_sym_contains_statement_token1] = ACTIONS(4383), - [aux_sym_use_statement_token1] = ACTIONS(4383), - [aux_sym_use_statement_token2] = ACTIONS(4383), - [aux_sym_implicit_statement_token1] = ACTIONS(4383), - [aux_sym_implicit_statement_token3] = ACTIONS(4383), - [aux_sym_implicit_statement_token4] = ACTIONS(4383), - [aux_sym_save_statement_token1] = ACTIONS(4383), - [aux_sym_private_statement_token1] = ACTIONS(4383), - [aux_sym_public_statement_token1] = ACTIONS(4383), - [aux_sym_namelist_statement_token1] = ACTIONS(4383), - [aux_sym_common_statement_token1] = ACTIONS(4383), - [aux_sym_import_statement_token1] = ACTIONS(4383), - [aux_sym_derived_type_definition_token1] = ACTIONS(4383), - [aux_sym_abstract_specifier_token1] = ACTIONS(4383), - [aux_sym_procedure_attribute_token6] = ACTIONS(4383), - [aux_sym_variable_attributes_token1] = ACTIONS(4383), - [aux_sym_variable_attributes_token2] = ACTIONS(4383), - [aux_sym_variable_attributes_token3] = ACTIONS(4383), - [aux_sym_variable_attributes_token4] = ACTIONS(4383), - [aux_sym_variable_attributes_token5] = ACTIONS(4383), - [aux_sym__intrinsic_type_token1] = ACTIONS(4383), - [aux_sym__intrinsic_type_token2] = ACTIONS(4383), - [aux_sym__intrinsic_type_token3] = ACTIONS(4383), - [aux_sym__intrinsic_type_token4] = ACTIONS(4383), - [aux_sym__intrinsic_type_token6] = ACTIONS(4383), - [aux_sym__intrinsic_type_token7] = ACTIONS(4383), - [aux_sym__intrinsic_type_token8] = ACTIONS(4383), - [aux_sym__intrinsic_type_token9] = ACTIONS(4383), - [aux_sym__intrinsic_type_token10] = ACTIONS(4383), - [aux_sym_derived_type_token1] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), - [aux_sym_type_qualifier_token1] = ACTIONS(4383), - [aux_sym_type_qualifier_token2] = ACTIONS(4383), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4383), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4383), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4383), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4383), - [aux_sym_equivalence_statement_token1] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4385), - [aux_sym_stop_statement_token1] = ACTIONS(4383), - [aux_sym_stop_statement_token2] = ACTIONS(4383), - [aux_sym_subroutine_call_token1] = ACTIONS(4383), - [aux_sym_keyword_statement_token1] = ACTIONS(4383), - [aux_sym_keyword_statement_token2] = ACTIONS(4383), - [aux_sym_keyword_statement_token3] = ACTIONS(4383), - [aux_sym_keyword_statement_token4] = ACTIONS(4383), - [aux_sym_keyword_statement_token6] = ACTIONS(4383), - [aux_sym_keyword_statement_token7] = ACTIONS(4383), - [aux_sym_include_statement_token1] = ACTIONS(4383), - [aux_sym_data_statement_token1] = ACTIONS(4383), - [aux_sym_do_loop_statement_token1] = ACTIONS(4383), - [aux_sym__inline_if_statement_token1] = ACTIONS(4383), - [aux_sym_end_if_statement_token1] = ACTIONS(4383), - [aux_sym_elseif_clause_token2] = ACTIONS(4383), - [aux_sym__inline_where_statement_token1] = ACTIONS(4383), - [aux_sym__forall_control_expression_token1] = ACTIONS(4383), - [aux_sym_select_case_statement_token1] = ACTIONS(4383), - [aux_sym_select_case_statement_token3] = ACTIONS(4383), - [aux_sym_select_type_statement_token1] = ACTIONS(4383), - [aux_sym_select_rank_statement_token2] = ACTIONS(4383), - [aux_sym_block_construct_token1] = ACTIONS(4383), - [aux_sym_associate_statement_token1] = ACTIONS(4383), - [aux_sym_format_statement_token1] = ACTIONS(4383), - [aux_sym_print_statement_token1] = ACTIONS(4383), - [aux_sym_open_statement_token1] = ACTIONS(4383), - [aux_sym_close_statement_token1] = ACTIONS(4383), - [aux_sym_inquire_statement_token1] = ACTIONS(4383), - [aux_sym_enum_statement_token1] = ACTIONS(4383), - [aux_sym_file_position_statement_token1] = ACTIONS(4383), - [aux_sym_file_position_statement_token2] = ACTIONS(4383), - [aux_sym_file_position_statement_token3] = ACTIONS(4383), - [aux_sym_file_position_statement_token4] = ACTIONS(4383), - [aux_sym_allocate_statement_token1] = ACTIONS(4383), - [aux_sym_entry_statement_token1] = ACTIONS(4383), - [aux_sym_logical_expression_token5] = ACTIONS(4385), - [anon_sym_DOT] = ACTIONS(4383), - [anon_sym_LPAREN_SLASH] = ACTIONS(4385), - [anon_sym_LBRACK] = ACTIONS(4385), - [aux_sym_boolean_literal_token1] = ACTIONS(4385), - [aux_sym_boolean_literal_token2] = ACTIONS(4385), - [aux_sym_null_literal_token1] = ACTIONS(4383), - [aux_sym_coarray_statement_token1] = ACTIONS(4383), - [aux_sym_coarray_statement_token2] = ACTIONS(4383), - [aux_sym_coarray_statement_token6] = ACTIONS(4383), - [aux_sym_coarray_statement_token8] = ACTIONS(4383), - [aux_sym_coarray_statement_token11] = ACTIONS(4383), - [aux_sym_coarray_statement_token12] = ACTIONS(4383), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), - [aux_sym_identifier_token1] = ACTIONS(4383), + [aux_sym_program_statement_token1] = ACTIONS(4439), + [aux_sym_end_program_statement_token1] = ACTIONS(4439), + [aux_sym_end_program_statement_token2] = ACTIONS(4439), + [aux_sym_module_statement_token1] = ACTIONS(4439), + [aux_sym_submodule_statement_token1] = ACTIONS(4439), + [aux_sym_interface_statement_token1] = ACTIONS(4439), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4439), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4439), + [aux_sym_subroutine_statement_token1] = ACTIONS(4439), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4439), + [aux_sym_function_statement_token1] = ACTIONS(4439), + [aux_sym_language_binding_token1] = ACTIONS(4439), + [aux_sym_procedure_attributes_token1] = ACTIONS(4439), + [aux_sym_procedure_attributes_token3] = ACTIONS(4439), + [aux_sym_contains_statement_token1] = ACTIONS(4439), + [aux_sym_use_statement_token1] = ACTIONS(4439), + [aux_sym_use_statement_token2] = ACTIONS(4439), + [aux_sym_implicit_statement_token1] = ACTIONS(4439), + [aux_sym_implicit_statement_token3] = ACTIONS(4439), + [aux_sym_implicit_statement_token4] = ACTIONS(4439), + [aux_sym_save_statement_token1] = ACTIONS(4439), + [aux_sym_private_statement_token1] = ACTIONS(4439), + [aux_sym_public_statement_token1] = ACTIONS(4439), + [aux_sym_namelist_statement_token1] = ACTIONS(4439), + [aux_sym_common_statement_token1] = ACTIONS(4439), + [aux_sym_import_statement_token1] = ACTIONS(4439), + [aux_sym_derived_type_definition_token1] = ACTIONS(4439), + [aux_sym_abstract_specifier_token1] = ACTIONS(4439), + [aux_sym_procedure_attribute_token6] = ACTIONS(4439), + [aux_sym_variable_attributes_token1] = ACTIONS(4439), + [aux_sym_variable_attributes_token2] = ACTIONS(4439), + [aux_sym_variable_attributes_token3] = ACTIONS(4439), + [aux_sym_variable_attributes_token4] = ACTIONS(4439), + [aux_sym_variable_attributes_token5] = ACTIONS(4439), + [aux_sym__intrinsic_type_token1] = ACTIONS(4439), + [aux_sym__intrinsic_type_token2] = ACTIONS(4439), + [aux_sym__intrinsic_type_token3] = ACTIONS(4439), + [aux_sym__intrinsic_type_token4] = ACTIONS(4439), + [aux_sym__intrinsic_type_token6] = ACTIONS(4439), + [aux_sym__intrinsic_type_token7] = ACTIONS(4439), + [aux_sym__intrinsic_type_token8] = ACTIONS(4439), + [aux_sym__intrinsic_type_token9] = ACTIONS(4439), + [aux_sym__intrinsic_type_token10] = ACTIONS(4439), + [aux_sym_derived_type_token1] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4439), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4439), + [aux_sym_type_qualifier_token1] = ACTIONS(4439), + [aux_sym_type_qualifier_token2] = ACTIONS(4439), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4439), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4439), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4439), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4439), + [aux_sym_equivalence_statement_token1] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [aux_sym_stop_statement_token1] = ACTIONS(4439), + [aux_sym_stop_statement_token2] = ACTIONS(4439), + [aux_sym_subroutine_call_token1] = ACTIONS(4439), + [aux_sym_keyword_statement_token1] = ACTIONS(4439), + [aux_sym_keyword_statement_token2] = ACTIONS(4439), + [aux_sym_keyword_statement_token3] = ACTIONS(4439), + [aux_sym_keyword_statement_token4] = ACTIONS(4439), + [aux_sym_keyword_statement_token6] = ACTIONS(4439), + [aux_sym_keyword_statement_token7] = ACTIONS(4439), + [aux_sym_include_statement_token1] = ACTIONS(4439), + [aux_sym_data_statement_token1] = ACTIONS(4439), + [aux_sym_do_loop_statement_token1] = ACTIONS(4439), + [aux_sym__inline_if_statement_token1] = ACTIONS(4439), + [aux_sym_end_if_statement_token1] = ACTIONS(4439), + [aux_sym_elseif_clause_token2] = ACTIONS(4439), + [aux_sym__inline_where_statement_token1] = ACTIONS(4439), + [aux_sym__forall_control_expression_token1] = ACTIONS(4439), + [aux_sym_select_case_statement_token1] = ACTIONS(4439), + [aux_sym_select_case_statement_token3] = ACTIONS(4439), + [aux_sym_select_type_statement_token1] = ACTIONS(4439), + [aux_sym_select_rank_statement_token2] = ACTIONS(4439), + [aux_sym_block_construct_token1] = ACTIONS(4439), + [aux_sym_associate_statement_token1] = ACTIONS(4439), + [aux_sym_format_statement_token1] = ACTIONS(4439), + [aux_sym_print_statement_token1] = ACTIONS(4439), + [aux_sym_open_statement_token1] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4439), + [aux_sym_inquire_statement_token1] = ACTIONS(4439), + [aux_sym_enum_statement_token1] = ACTIONS(4439), + [aux_sym_file_position_statement_token1] = ACTIONS(4439), + [aux_sym_file_position_statement_token2] = ACTIONS(4439), + [aux_sym_file_position_statement_token3] = ACTIONS(4439), + [aux_sym_file_position_statement_token4] = ACTIONS(4439), + [aux_sym_allocate_statement_token1] = ACTIONS(4439), + [aux_sym_entry_statement_token1] = ACTIONS(4439), + [aux_sym_logical_expression_token5] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_LPAREN_SLASH] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [aux_sym_null_literal_token1] = ACTIONS(4439), + [aux_sym_coarray_statement_token1] = ACTIONS(4439), + [aux_sym_coarray_statement_token2] = ACTIONS(4439), + [aux_sym_coarray_statement_token6] = ACTIONS(4439), + [aux_sym_coarray_statement_token8] = ACTIONS(4439), + [aux_sym_coarray_statement_token11] = ACTIONS(4439), + [aux_sym_coarray_statement_token12] = ACTIONS(4439), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4439), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4439), + [aux_sym_identifier_token1] = ACTIONS(4439), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4385), - [sym__float_literal] = ACTIONS(4385), - [sym__boz_literal] = ACTIONS(4385), - [sym__string_literal] = ACTIONS(4385), - [sym__string_literal_kind] = ACTIONS(4385), + [sym__integer_literal] = ACTIONS(4441), + [sym__float_literal] = ACTIONS(4441), + [sym__boz_literal] = ACTIONS(4441), + [sym__string_literal] = ACTIONS(4441), + [sym__string_literal_kind] = ACTIONS(4441), + }, + [1087] = { + [ts_builtin_sym_end] = ACTIONS(4551), + [aux_sym_preproc_include_token1] = ACTIONS(4549), + [aux_sym_preproc_def_token1] = ACTIONS(4549), + [aux_sym_preproc_if_token1] = ACTIONS(4549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4549), + [sym_preproc_directive] = ACTIONS(4549), + [anon_sym_LPAREN2] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4549), + [aux_sym_end_program_statement_token1] = ACTIONS(4549), + [aux_sym_end_program_statement_token2] = ACTIONS(4549), + [aux_sym_module_statement_token1] = ACTIONS(4549), + [aux_sym_submodule_statement_token1] = ACTIONS(4549), + [aux_sym_interface_statement_token1] = ACTIONS(4549), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4549), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4549), + [aux_sym_subroutine_statement_token1] = ACTIONS(4549), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4549), + [aux_sym_function_statement_token1] = ACTIONS(4549), + [aux_sym_language_binding_token1] = ACTIONS(4549), + [aux_sym_procedure_attributes_token1] = ACTIONS(4549), + [aux_sym_procedure_attributes_token3] = ACTIONS(4549), + [aux_sym_contains_statement_token1] = ACTIONS(4549), + [aux_sym_use_statement_token1] = ACTIONS(4549), + [aux_sym_use_statement_token2] = ACTIONS(4549), + [aux_sym_implicit_statement_token1] = ACTIONS(4549), + [aux_sym_implicit_statement_token3] = ACTIONS(4549), + [aux_sym_implicit_statement_token4] = ACTIONS(4549), + [aux_sym_save_statement_token1] = ACTIONS(4549), + [aux_sym_private_statement_token1] = ACTIONS(4549), + [aux_sym_public_statement_token1] = ACTIONS(4549), + [aux_sym_namelist_statement_token1] = ACTIONS(4549), + [aux_sym_common_statement_token1] = ACTIONS(4549), + [aux_sym_import_statement_token1] = ACTIONS(4549), + [aux_sym_derived_type_definition_token1] = ACTIONS(4549), + [aux_sym_abstract_specifier_token1] = ACTIONS(4549), + [aux_sym_procedure_attribute_token6] = ACTIONS(4549), + [aux_sym_variable_attributes_token1] = ACTIONS(4549), + [aux_sym_variable_attributes_token2] = ACTIONS(4549), + [aux_sym_variable_attributes_token3] = ACTIONS(4549), + [aux_sym_variable_attributes_token4] = ACTIONS(4549), + [aux_sym_variable_attributes_token5] = ACTIONS(4549), + [aux_sym__intrinsic_type_token1] = ACTIONS(4549), + [aux_sym__intrinsic_type_token2] = ACTIONS(4549), + [aux_sym__intrinsic_type_token3] = ACTIONS(4549), + [aux_sym__intrinsic_type_token4] = ACTIONS(4549), + [aux_sym__intrinsic_type_token6] = ACTIONS(4549), + [aux_sym__intrinsic_type_token7] = ACTIONS(4549), + [aux_sym__intrinsic_type_token8] = ACTIONS(4549), + [aux_sym__intrinsic_type_token9] = ACTIONS(4549), + [aux_sym__intrinsic_type_token10] = ACTIONS(4549), + [aux_sym_derived_type_token1] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4549), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4549), + [aux_sym_type_qualifier_token1] = ACTIONS(4549), + [aux_sym_type_qualifier_token2] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4549), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4549), + [aux_sym_equivalence_statement_token1] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [aux_sym_stop_statement_token1] = ACTIONS(4549), + [aux_sym_stop_statement_token2] = ACTIONS(4549), + [aux_sym_subroutine_call_token1] = ACTIONS(4549), + [aux_sym_keyword_statement_token1] = ACTIONS(4549), + [aux_sym_keyword_statement_token2] = ACTIONS(4549), + [aux_sym_keyword_statement_token3] = ACTIONS(4549), + [aux_sym_keyword_statement_token4] = ACTIONS(4549), + [aux_sym_keyword_statement_token6] = ACTIONS(4549), + [aux_sym_keyword_statement_token7] = ACTIONS(4549), + [aux_sym_include_statement_token1] = ACTIONS(4549), + [aux_sym_data_statement_token1] = ACTIONS(4549), + [aux_sym_do_loop_statement_token1] = ACTIONS(4549), + [aux_sym__inline_if_statement_token1] = ACTIONS(4549), + [aux_sym_end_if_statement_token1] = ACTIONS(4549), + [aux_sym_elseif_clause_token2] = ACTIONS(4549), + [aux_sym__inline_where_statement_token1] = ACTIONS(4549), + [aux_sym__forall_control_expression_token1] = ACTIONS(4549), + [aux_sym_select_case_statement_token1] = ACTIONS(4549), + [aux_sym_select_case_statement_token3] = ACTIONS(4549), + [aux_sym_select_type_statement_token1] = ACTIONS(4549), + [aux_sym_select_rank_statement_token2] = ACTIONS(4549), + [aux_sym_block_construct_token1] = ACTIONS(4549), + [aux_sym_associate_statement_token1] = ACTIONS(4549), + [aux_sym_format_statement_token1] = ACTIONS(4549), + [aux_sym_print_statement_token1] = ACTIONS(4549), + [aux_sym_open_statement_token1] = ACTIONS(4549), + [aux_sym_close_statement_token1] = ACTIONS(4549), + [aux_sym_inquire_statement_token1] = ACTIONS(4549), + [aux_sym_enum_statement_token1] = ACTIONS(4549), + [aux_sym_file_position_statement_token1] = ACTIONS(4549), + [aux_sym_file_position_statement_token2] = ACTIONS(4549), + [aux_sym_file_position_statement_token3] = ACTIONS(4549), + [aux_sym_file_position_statement_token4] = ACTIONS(4549), + [aux_sym_allocate_statement_token1] = ACTIONS(4549), + [aux_sym_entry_statement_token1] = ACTIONS(4549), + [aux_sym_logical_expression_token5] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_LPAREN_SLASH] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [aux_sym_boolean_literal_token1] = ACTIONS(4551), + [aux_sym_boolean_literal_token2] = ACTIONS(4551), + [aux_sym_null_literal_token1] = ACTIONS(4549), + [aux_sym_coarray_statement_token1] = ACTIONS(4549), + [aux_sym_coarray_statement_token2] = ACTIONS(4549), + [aux_sym_coarray_statement_token6] = ACTIONS(4549), + [aux_sym_coarray_statement_token8] = ACTIONS(4549), + [aux_sym_coarray_statement_token11] = ACTIONS(4549), + [aux_sym_coarray_statement_token12] = ACTIONS(4549), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4549), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4549), + [aux_sym_identifier_token1] = ACTIONS(4549), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4551), + [sym__float_literal] = ACTIONS(4551), + [sym__boz_literal] = ACTIONS(4551), + [sym__string_literal] = ACTIONS(4551), + [sym__string_literal_kind] = ACTIONS(4551), }, [1088] = { - [aux_sym_preproc_include_token1] = ACTIONS(4387), - [aux_sym_preproc_def_token1] = ACTIONS(4387), - [aux_sym_preproc_if_token1] = ACTIONS(4387), - [aux_sym_preproc_if_token2] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), - [sym_preproc_directive] = ACTIONS(4387), - [anon_sym_LPAREN2] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4389), - [anon_sym_DASH] = ACTIONS(4389), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4387), - [aux_sym_end_program_statement_token1] = ACTIONS(4387), - [aux_sym_end_program_statement_token2] = ACTIONS(4387), - [aux_sym_module_statement_token1] = ACTIONS(4387), - [aux_sym_submodule_statement_token1] = ACTIONS(4387), - [aux_sym_interface_statement_token1] = ACTIONS(4387), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), - [aux_sym_subroutine_statement_token1] = ACTIONS(4387), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), - [aux_sym_function_statement_token1] = ACTIONS(4387), - [aux_sym_language_binding_token1] = ACTIONS(4387), - [aux_sym_procedure_attributes_token1] = ACTIONS(4387), - [aux_sym_procedure_attributes_token3] = ACTIONS(4387), - [aux_sym_contains_statement_token1] = ACTIONS(4387), - [aux_sym_use_statement_token1] = ACTIONS(4387), - [aux_sym_use_statement_token2] = ACTIONS(4387), - [aux_sym_implicit_statement_token1] = ACTIONS(4387), - [aux_sym_implicit_statement_token3] = ACTIONS(4387), - [aux_sym_implicit_statement_token4] = ACTIONS(4387), - [aux_sym_save_statement_token1] = ACTIONS(4387), - [aux_sym_private_statement_token1] = ACTIONS(4387), - [aux_sym_public_statement_token1] = ACTIONS(4387), - [aux_sym_namelist_statement_token1] = ACTIONS(4387), - [aux_sym_common_statement_token1] = ACTIONS(4387), - [aux_sym_import_statement_token1] = ACTIONS(4387), - [aux_sym_derived_type_definition_token1] = ACTIONS(4387), - [aux_sym_abstract_specifier_token1] = ACTIONS(4387), - [aux_sym_procedure_attribute_token6] = ACTIONS(4387), - [aux_sym_variable_attributes_token1] = ACTIONS(4387), - [aux_sym_variable_attributes_token2] = ACTIONS(4387), - [aux_sym_variable_attributes_token3] = ACTIONS(4387), - [aux_sym_variable_attributes_token4] = ACTIONS(4387), - [aux_sym_variable_attributes_token5] = ACTIONS(4387), - [aux_sym__intrinsic_type_token1] = ACTIONS(4387), - [aux_sym__intrinsic_type_token2] = ACTIONS(4387), - [aux_sym__intrinsic_type_token3] = ACTIONS(4387), - [aux_sym__intrinsic_type_token4] = ACTIONS(4387), - [aux_sym__intrinsic_type_token6] = ACTIONS(4387), - [aux_sym__intrinsic_type_token7] = ACTIONS(4387), - [aux_sym__intrinsic_type_token8] = ACTIONS(4387), - [aux_sym__intrinsic_type_token9] = ACTIONS(4387), - [aux_sym__intrinsic_type_token10] = ACTIONS(4387), - [aux_sym_derived_type_token1] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), - [aux_sym_type_qualifier_token1] = ACTIONS(4387), - [aux_sym_type_qualifier_token2] = ACTIONS(4387), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4387), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4387), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4387), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4387), - [aux_sym_equivalence_statement_token1] = ACTIONS(4387), - [anon_sym_SEMI] = ACTIONS(4389), - [aux_sym_stop_statement_token1] = ACTIONS(4387), - [aux_sym_stop_statement_token2] = ACTIONS(4387), - [aux_sym_subroutine_call_token1] = ACTIONS(4387), - [aux_sym_keyword_statement_token1] = ACTIONS(4387), - [aux_sym_keyword_statement_token2] = ACTIONS(4387), - [aux_sym_keyword_statement_token3] = ACTIONS(4387), - [aux_sym_keyword_statement_token4] = ACTIONS(4387), - [aux_sym_keyword_statement_token6] = ACTIONS(4387), - [aux_sym_keyword_statement_token7] = ACTIONS(4387), - [aux_sym_include_statement_token1] = ACTIONS(4387), - [aux_sym_data_statement_token1] = ACTIONS(4387), - [aux_sym_do_loop_statement_token1] = ACTIONS(4387), - [aux_sym__inline_if_statement_token1] = ACTIONS(4387), - [aux_sym_end_if_statement_token1] = ACTIONS(4387), - [aux_sym_elseif_clause_token2] = ACTIONS(4387), - [aux_sym__inline_where_statement_token1] = ACTIONS(4387), - [aux_sym__forall_control_expression_token1] = ACTIONS(4387), - [aux_sym_select_case_statement_token1] = ACTIONS(4387), - [aux_sym_select_case_statement_token3] = ACTIONS(4387), - [aux_sym_select_type_statement_token1] = ACTIONS(4387), - [aux_sym_select_rank_statement_token2] = ACTIONS(4387), - [aux_sym_block_construct_token1] = ACTIONS(4387), - [aux_sym_associate_statement_token1] = ACTIONS(4387), - [aux_sym_format_statement_token1] = ACTIONS(4387), - [aux_sym_print_statement_token1] = ACTIONS(4387), - [aux_sym_open_statement_token1] = ACTIONS(4387), - [aux_sym_close_statement_token1] = ACTIONS(4387), - [aux_sym_inquire_statement_token1] = ACTIONS(4387), - [aux_sym_enum_statement_token1] = ACTIONS(4387), - [aux_sym_file_position_statement_token1] = ACTIONS(4387), - [aux_sym_file_position_statement_token2] = ACTIONS(4387), - [aux_sym_file_position_statement_token3] = ACTIONS(4387), - [aux_sym_file_position_statement_token4] = ACTIONS(4387), - [aux_sym_allocate_statement_token1] = ACTIONS(4387), - [aux_sym_entry_statement_token1] = ACTIONS(4387), - [aux_sym_logical_expression_token5] = ACTIONS(4389), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_LPAREN_SLASH] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [aux_sym_boolean_literal_token1] = ACTIONS(4389), - [aux_sym_boolean_literal_token2] = ACTIONS(4389), - [aux_sym_null_literal_token1] = ACTIONS(4387), - [aux_sym_coarray_statement_token1] = ACTIONS(4387), - [aux_sym_coarray_statement_token2] = ACTIONS(4387), - [aux_sym_coarray_statement_token6] = ACTIONS(4387), - [aux_sym_coarray_statement_token8] = ACTIONS(4387), - [aux_sym_coarray_statement_token11] = ACTIONS(4387), - [aux_sym_coarray_statement_token12] = ACTIONS(4387), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), - [aux_sym_identifier_token1] = ACTIONS(4387), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4389), - [sym__float_literal] = ACTIONS(4389), - [sym__boz_literal] = ACTIONS(4389), - [sym__string_literal] = ACTIONS(4389), - [sym__string_literal_kind] = ACTIONS(4389), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4265), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_module_statement_token1] = ACTIONS(4265), + [aux_sym_submodule_statement_token1] = ACTIONS(4265), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_subroutine_statement_token1] = ACTIONS(4265), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_function_statement_token1] = ACTIONS(4265), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4265), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4265), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [1089] = { - [aux_sym_preproc_include_token1] = ACTIONS(4391), - [aux_sym_preproc_def_token1] = ACTIONS(4391), - [aux_sym_preproc_if_token1] = ACTIONS(4391), - [aux_sym_preproc_if_token2] = ACTIONS(4391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), - [sym_preproc_directive] = ACTIONS(4391), - [anon_sym_LPAREN2] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(7982), + [sym_preproc_elif_in_module] = STATE(7982), + [sym_preproc_elifdef_in_module] = STATE(7982), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5718), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4755), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4391), - [aux_sym_end_program_statement_token1] = ACTIONS(4391), - [aux_sym_end_program_statement_token2] = ACTIONS(4391), - [aux_sym_module_statement_token1] = ACTIONS(4391), - [aux_sym_submodule_statement_token1] = ACTIONS(4391), - [aux_sym_interface_statement_token1] = ACTIONS(4391), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), - [aux_sym_subroutine_statement_token1] = ACTIONS(4391), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), - [aux_sym_function_statement_token1] = ACTIONS(4391), - [aux_sym_language_binding_token1] = ACTIONS(4391), - [aux_sym_procedure_attributes_token1] = ACTIONS(4391), - [aux_sym_procedure_attributes_token3] = ACTIONS(4391), - [aux_sym_contains_statement_token1] = ACTIONS(4391), - [aux_sym_use_statement_token1] = ACTIONS(4391), - [aux_sym_use_statement_token2] = ACTIONS(4391), - [aux_sym_implicit_statement_token1] = ACTIONS(4391), - [aux_sym_implicit_statement_token3] = ACTIONS(4391), - [aux_sym_implicit_statement_token4] = ACTIONS(4391), - [aux_sym_save_statement_token1] = ACTIONS(4391), - [aux_sym_private_statement_token1] = ACTIONS(4391), - [aux_sym_public_statement_token1] = ACTIONS(4391), - [aux_sym_namelist_statement_token1] = ACTIONS(4391), - [aux_sym_common_statement_token1] = ACTIONS(4391), - [aux_sym_import_statement_token1] = ACTIONS(4391), - [aux_sym_derived_type_definition_token1] = ACTIONS(4391), - [aux_sym_abstract_specifier_token1] = ACTIONS(4391), - [aux_sym_procedure_attribute_token6] = ACTIONS(4391), - [aux_sym_variable_attributes_token1] = ACTIONS(4391), - [aux_sym_variable_attributes_token2] = ACTIONS(4391), - [aux_sym_variable_attributes_token3] = ACTIONS(4391), - [aux_sym_variable_attributes_token4] = ACTIONS(4391), - [aux_sym_variable_attributes_token5] = ACTIONS(4391), - [aux_sym__intrinsic_type_token1] = ACTIONS(4391), - [aux_sym__intrinsic_type_token2] = ACTIONS(4391), - [aux_sym__intrinsic_type_token3] = ACTIONS(4391), - [aux_sym__intrinsic_type_token4] = ACTIONS(4391), - [aux_sym__intrinsic_type_token6] = ACTIONS(4391), - [aux_sym__intrinsic_type_token7] = ACTIONS(4391), - [aux_sym__intrinsic_type_token8] = ACTIONS(4391), - [aux_sym__intrinsic_type_token9] = ACTIONS(4391), - [aux_sym__intrinsic_type_token10] = ACTIONS(4391), - [aux_sym_derived_type_token1] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), - [aux_sym_type_qualifier_token1] = ACTIONS(4391), - [aux_sym_type_qualifier_token2] = ACTIONS(4391), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4391), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4391), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4391), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4391), - [aux_sym_equivalence_statement_token1] = ACTIONS(4391), - [anon_sym_SEMI] = ACTIONS(4393), - [aux_sym_stop_statement_token1] = ACTIONS(4391), - [aux_sym_stop_statement_token2] = ACTIONS(4391), - [aux_sym_subroutine_call_token1] = ACTIONS(4391), - [aux_sym_keyword_statement_token1] = ACTIONS(4391), - [aux_sym_keyword_statement_token2] = ACTIONS(4391), - [aux_sym_keyword_statement_token3] = ACTIONS(4391), - [aux_sym_keyword_statement_token4] = ACTIONS(4391), - [aux_sym_keyword_statement_token6] = ACTIONS(4391), - [aux_sym_keyword_statement_token7] = ACTIONS(4391), - [aux_sym_include_statement_token1] = ACTIONS(4391), - [aux_sym_data_statement_token1] = ACTIONS(4391), - [aux_sym_do_loop_statement_token1] = ACTIONS(4391), - [aux_sym__inline_if_statement_token1] = ACTIONS(4391), - [aux_sym_end_if_statement_token1] = ACTIONS(4391), - [aux_sym_elseif_clause_token2] = ACTIONS(4391), - [aux_sym__inline_where_statement_token1] = ACTIONS(4391), - [aux_sym__forall_control_expression_token1] = ACTIONS(4391), - [aux_sym_select_case_statement_token1] = ACTIONS(4391), - [aux_sym_select_case_statement_token3] = ACTIONS(4391), - [aux_sym_select_type_statement_token1] = ACTIONS(4391), - [aux_sym_select_rank_statement_token2] = ACTIONS(4391), - [aux_sym_block_construct_token1] = ACTIONS(4391), - [aux_sym_associate_statement_token1] = ACTIONS(4391), - [aux_sym_format_statement_token1] = ACTIONS(4391), - [aux_sym_print_statement_token1] = ACTIONS(4391), - [aux_sym_open_statement_token1] = ACTIONS(4391), - [aux_sym_close_statement_token1] = ACTIONS(4391), - [aux_sym_inquire_statement_token1] = ACTIONS(4391), - [aux_sym_enum_statement_token1] = ACTIONS(4391), - [aux_sym_file_position_statement_token1] = ACTIONS(4391), - [aux_sym_file_position_statement_token2] = ACTIONS(4391), - [aux_sym_file_position_statement_token3] = ACTIONS(4391), - [aux_sym_file_position_statement_token4] = ACTIONS(4391), - [aux_sym_allocate_statement_token1] = ACTIONS(4391), - [aux_sym_entry_statement_token1] = ACTIONS(4391), - [aux_sym_logical_expression_token5] = ACTIONS(4393), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_LPAREN_SLASH] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [aux_sym_boolean_literal_token1] = ACTIONS(4393), - [aux_sym_boolean_literal_token2] = ACTIONS(4393), - [aux_sym_null_literal_token1] = ACTIONS(4391), - [aux_sym_coarray_statement_token1] = ACTIONS(4391), - [aux_sym_coarray_statement_token2] = ACTIONS(4391), - [aux_sym_coarray_statement_token6] = ACTIONS(4391), - [aux_sym_coarray_statement_token8] = ACTIONS(4391), - [aux_sym_coarray_statement_token11] = ACTIONS(4391), - [aux_sym_coarray_statement_token12] = ACTIONS(4391), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), - [aux_sym_identifier_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4393), - [sym__float_literal] = ACTIONS(4393), - [sym__boz_literal] = ACTIONS(4393), - [sym__string_literal] = ACTIONS(4393), - [sym__string_literal_kind] = ACTIONS(4393), + [sym__integer_literal] = ACTIONS(4665), }, [1090] = { - [aux_sym_preproc_include_token1] = ACTIONS(4395), - [aux_sym_preproc_def_token1] = ACTIONS(4395), - [aux_sym_preproc_if_token1] = ACTIONS(4395), - [aux_sym_preproc_if_token2] = ACTIONS(4395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), - [sym_preproc_directive] = ACTIONS(4395), - [anon_sym_LPAREN2] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4397), - [anon_sym_DASH] = ACTIONS(4397), + [ts_builtin_sym_end] = ACTIONS(4413), + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4395), - [aux_sym_end_program_statement_token1] = ACTIONS(4395), - [aux_sym_end_program_statement_token2] = ACTIONS(4395), - [aux_sym_module_statement_token1] = ACTIONS(4395), - [aux_sym_submodule_statement_token1] = ACTIONS(4395), - [aux_sym_interface_statement_token1] = ACTIONS(4395), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), - [aux_sym_subroutine_statement_token1] = ACTIONS(4395), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), - [aux_sym_function_statement_token1] = ACTIONS(4395), - [aux_sym_language_binding_token1] = ACTIONS(4395), - [aux_sym_procedure_attributes_token1] = ACTIONS(4395), - [aux_sym_procedure_attributes_token3] = ACTIONS(4395), - [aux_sym_contains_statement_token1] = ACTIONS(4395), - [aux_sym_use_statement_token1] = ACTIONS(4395), - [aux_sym_use_statement_token2] = ACTIONS(4395), - [aux_sym_implicit_statement_token1] = ACTIONS(4395), - [aux_sym_implicit_statement_token3] = ACTIONS(4395), - [aux_sym_implicit_statement_token4] = ACTIONS(4395), - [aux_sym_save_statement_token1] = ACTIONS(4395), - [aux_sym_private_statement_token1] = ACTIONS(4395), - [aux_sym_public_statement_token1] = ACTIONS(4395), - [aux_sym_namelist_statement_token1] = ACTIONS(4395), - [aux_sym_common_statement_token1] = ACTIONS(4395), - [aux_sym_import_statement_token1] = ACTIONS(4395), - [aux_sym_derived_type_definition_token1] = ACTIONS(4395), - [aux_sym_abstract_specifier_token1] = ACTIONS(4395), - [aux_sym_procedure_attribute_token6] = ACTIONS(4395), - [aux_sym_variable_attributes_token1] = ACTIONS(4395), - [aux_sym_variable_attributes_token2] = ACTIONS(4395), - [aux_sym_variable_attributes_token3] = ACTIONS(4395), - [aux_sym_variable_attributes_token4] = ACTIONS(4395), - [aux_sym_variable_attributes_token5] = ACTIONS(4395), - [aux_sym__intrinsic_type_token1] = ACTIONS(4395), - [aux_sym__intrinsic_type_token2] = ACTIONS(4395), - [aux_sym__intrinsic_type_token3] = ACTIONS(4395), - [aux_sym__intrinsic_type_token4] = ACTIONS(4395), - [aux_sym__intrinsic_type_token6] = ACTIONS(4395), - [aux_sym__intrinsic_type_token7] = ACTIONS(4395), - [aux_sym__intrinsic_type_token8] = ACTIONS(4395), - [aux_sym__intrinsic_type_token9] = ACTIONS(4395), - [aux_sym__intrinsic_type_token10] = ACTIONS(4395), - [aux_sym_derived_type_token1] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), - [aux_sym_type_qualifier_token1] = ACTIONS(4395), - [aux_sym_type_qualifier_token2] = ACTIONS(4395), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4395), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4395), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4395), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4395), - [aux_sym_equivalence_statement_token1] = ACTIONS(4395), - [anon_sym_SEMI] = ACTIONS(4397), - [aux_sym_stop_statement_token1] = ACTIONS(4395), - [aux_sym_stop_statement_token2] = ACTIONS(4395), - [aux_sym_subroutine_call_token1] = ACTIONS(4395), - [aux_sym_keyword_statement_token1] = ACTIONS(4395), - [aux_sym_keyword_statement_token2] = ACTIONS(4395), - [aux_sym_keyword_statement_token3] = ACTIONS(4395), - [aux_sym_keyword_statement_token4] = ACTIONS(4395), - [aux_sym_keyword_statement_token6] = ACTIONS(4395), - [aux_sym_keyword_statement_token7] = ACTIONS(4395), - [aux_sym_include_statement_token1] = ACTIONS(4395), - [aux_sym_data_statement_token1] = ACTIONS(4395), - [aux_sym_do_loop_statement_token1] = ACTIONS(4395), - [aux_sym__inline_if_statement_token1] = ACTIONS(4395), - [aux_sym_end_if_statement_token1] = ACTIONS(4395), - [aux_sym_elseif_clause_token2] = ACTIONS(4395), - [aux_sym__inline_where_statement_token1] = ACTIONS(4395), - [aux_sym__forall_control_expression_token1] = ACTIONS(4395), - [aux_sym_select_case_statement_token1] = ACTIONS(4395), - [aux_sym_select_case_statement_token3] = ACTIONS(4395), - [aux_sym_select_type_statement_token1] = ACTIONS(4395), - [aux_sym_select_rank_statement_token2] = ACTIONS(4395), - [aux_sym_block_construct_token1] = ACTIONS(4395), - [aux_sym_associate_statement_token1] = ACTIONS(4395), - [aux_sym_format_statement_token1] = ACTIONS(4395), - [aux_sym_print_statement_token1] = ACTIONS(4395), - [aux_sym_open_statement_token1] = ACTIONS(4395), - [aux_sym_close_statement_token1] = ACTIONS(4395), - [aux_sym_inquire_statement_token1] = ACTIONS(4395), - [aux_sym_enum_statement_token1] = ACTIONS(4395), - [aux_sym_file_position_statement_token1] = ACTIONS(4395), - [aux_sym_file_position_statement_token2] = ACTIONS(4395), - [aux_sym_file_position_statement_token3] = ACTIONS(4395), - [aux_sym_file_position_statement_token4] = ACTIONS(4395), - [aux_sym_allocate_statement_token1] = ACTIONS(4395), - [aux_sym_entry_statement_token1] = ACTIONS(4395), - [aux_sym_logical_expression_token5] = ACTIONS(4397), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_LPAREN_SLASH] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4397), - [aux_sym_boolean_literal_token1] = ACTIONS(4397), - [aux_sym_boolean_literal_token2] = ACTIONS(4397), - [aux_sym_null_literal_token1] = ACTIONS(4395), - [aux_sym_coarray_statement_token1] = ACTIONS(4395), - [aux_sym_coarray_statement_token2] = ACTIONS(4395), - [aux_sym_coarray_statement_token6] = ACTIONS(4395), - [aux_sym_coarray_statement_token8] = ACTIONS(4395), - [aux_sym_coarray_statement_token11] = ACTIONS(4395), - [aux_sym_coarray_statement_token12] = ACTIONS(4395), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), - [aux_sym_identifier_token1] = ACTIONS(4395), + [aux_sym_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_program_statement_token2] = ACTIONS(4411), + [aux_sym_module_statement_token1] = ACTIONS(4411), + [aux_sym_submodule_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_subroutine_statement_token1] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_function_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4411), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4411), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4411), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4397), - [sym__float_literal] = ACTIONS(4397), - [sym__boz_literal] = ACTIONS(4397), - [sym__string_literal] = ACTIONS(4397), - [sym__string_literal_kind] = ACTIONS(4397), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, [1091] = { - [aux_sym_preproc_include_token1] = ACTIONS(4399), - [aux_sym_preproc_def_token1] = ACTIONS(4399), - [aux_sym_preproc_if_token1] = ACTIONS(4399), - [aux_sym_preproc_if_token2] = ACTIONS(4399), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), - [sym_preproc_directive] = ACTIONS(4399), - [anon_sym_LPAREN2] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), + [sym_preproc_include] = STATE(1003), + [sym_preproc_def] = STATE(1003), + [sym_preproc_function_def] = STATE(1003), + [sym_preproc_call] = STATE(1003), + [sym_preproc_else_in_module] = STATE(7982), + [sym_preproc_elif_in_module] = STATE(7982), + [sym_preproc_elifdef_in_module] = STATE(7982), + [sym_interface] = STATE(1003), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5718), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1003), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1003), + [sym_public_statement] = STATE(1003), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1003), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1003), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1003), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4755), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4399), - [aux_sym_end_program_statement_token1] = ACTIONS(4399), - [aux_sym_end_program_statement_token2] = ACTIONS(4399), - [aux_sym_module_statement_token1] = ACTIONS(4399), - [aux_sym_submodule_statement_token1] = ACTIONS(4399), - [aux_sym_interface_statement_token1] = ACTIONS(4399), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), - [aux_sym_subroutine_statement_token1] = ACTIONS(4399), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), - [aux_sym_function_statement_token1] = ACTIONS(4399), - [aux_sym_language_binding_token1] = ACTIONS(4399), - [aux_sym_procedure_attributes_token1] = ACTIONS(4399), - [aux_sym_procedure_attributes_token3] = ACTIONS(4399), - [aux_sym_contains_statement_token1] = ACTIONS(4399), - [aux_sym_use_statement_token1] = ACTIONS(4399), - [aux_sym_use_statement_token2] = ACTIONS(4399), - [aux_sym_implicit_statement_token1] = ACTIONS(4399), - [aux_sym_implicit_statement_token3] = ACTIONS(4399), - [aux_sym_implicit_statement_token4] = ACTIONS(4399), - [aux_sym_save_statement_token1] = ACTIONS(4399), - [aux_sym_private_statement_token1] = ACTIONS(4399), - [aux_sym_public_statement_token1] = ACTIONS(4399), - [aux_sym_namelist_statement_token1] = ACTIONS(4399), - [aux_sym_common_statement_token1] = ACTIONS(4399), - [aux_sym_import_statement_token1] = ACTIONS(4399), - [aux_sym_derived_type_definition_token1] = ACTIONS(4399), - [aux_sym_abstract_specifier_token1] = ACTIONS(4399), - [aux_sym_procedure_attribute_token6] = ACTIONS(4399), - [aux_sym_variable_attributes_token1] = ACTIONS(4399), - [aux_sym_variable_attributes_token2] = ACTIONS(4399), - [aux_sym_variable_attributes_token3] = ACTIONS(4399), - [aux_sym_variable_attributes_token4] = ACTIONS(4399), - [aux_sym_variable_attributes_token5] = ACTIONS(4399), - [aux_sym__intrinsic_type_token1] = ACTIONS(4399), - [aux_sym__intrinsic_type_token2] = ACTIONS(4399), - [aux_sym__intrinsic_type_token3] = ACTIONS(4399), - [aux_sym__intrinsic_type_token4] = ACTIONS(4399), - [aux_sym__intrinsic_type_token6] = ACTIONS(4399), - [aux_sym__intrinsic_type_token7] = ACTIONS(4399), - [aux_sym__intrinsic_type_token8] = ACTIONS(4399), - [aux_sym__intrinsic_type_token9] = ACTIONS(4399), - [aux_sym__intrinsic_type_token10] = ACTIONS(4399), - [aux_sym_derived_type_token1] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), - [aux_sym_type_qualifier_token1] = ACTIONS(4399), - [aux_sym_type_qualifier_token2] = ACTIONS(4399), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4399), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4399), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4399), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4399), - [aux_sym_equivalence_statement_token1] = ACTIONS(4399), - [anon_sym_SEMI] = ACTIONS(4401), - [aux_sym_stop_statement_token1] = ACTIONS(4399), - [aux_sym_stop_statement_token2] = ACTIONS(4399), - [aux_sym_subroutine_call_token1] = ACTIONS(4399), - [aux_sym_keyword_statement_token1] = ACTIONS(4399), - [aux_sym_keyword_statement_token2] = ACTIONS(4399), - [aux_sym_keyword_statement_token3] = ACTIONS(4399), - [aux_sym_keyword_statement_token4] = ACTIONS(4399), - [aux_sym_keyword_statement_token6] = ACTIONS(4399), - [aux_sym_keyword_statement_token7] = ACTIONS(4399), - [aux_sym_include_statement_token1] = ACTIONS(4399), - [aux_sym_data_statement_token1] = ACTIONS(4399), - [aux_sym_do_loop_statement_token1] = ACTIONS(4399), - [aux_sym__inline_if_statement_token1] = ACTIONS(4399), - [aux_sym_end_if_statement_token1] = ACTIONS(4399), - [aux_sym_elseif_clause_token2] = ACTIONS(4399), - [aux_sym__inline_where_statement_token1] = ACTIONS(4399), - [aux_sym__forall_control_expression_token1] = ACTIONS(4399), - [aux_sym_select_case_statement_token1] = ACTIONS(4399), - [aux_sym_select_case_statement_token3] = ACTIONS(4399), - [aux_sym_select_type_statement_token1] = ACTIONS(4399), - [aux_sym_select_rank_statement_token2] = ACTIONS(4399), - [aux_sym_block_construct_token1] = ACTIONS(4399), - [aux_sym_associate_statement_token1] = ACTIONS(4399), - [aux_sym_format_statement_token1] = ACTIONS(4399), - [aux_sym_print_statement_token1] = ACTIONS(4399), - [aux_sym_open_statement_token1] = ACTIONS(4399), - [aux_sym_close_statement_token1] = ACTIONS(4399), - [aux_sym_inquire_statement_token1] = ACTIONS(4399), - [aux_sym_enum_statement_token1] = ACTIONS(4399), - [aux_sym_file_position_statement_token1] = ACTIONS(4399), - [aux_sym_file_position_statement_token2] = ACTIONS(4399), - [aux_sym_file_position_statement_token3] = ACTIONS(4399), - [aux_sym_file_position_statement_token4] = ACTIONS(4399), - [aux_sym_allocate_statement_token1] = ACTIONS(4399), - [aux_sym_entry_statement_token1] = ACTIONS(4399), - [aux_sym_logical_expression_token5] = ACTIONS(4401), - [anon_sym_DOT] = ACTIONS(4399), - [anon_sym_LPAREN_SLASH] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4401), - [aux_sym_boolean_literal_token1] = ACTIONS(4401), - [aux_sym_boolean_literal_token2] = ACTIONS(4401), - [aux_sym_null_literal_token1] = ACTIONS(4399), - [aux_sym_coarray_statement_token1] = ACTIONS(4399), - [aux_sym_coarray_statement_token2] = ACTIONS(4399), - [aux_sym_coarray_statement_token6] = ACTIONS(4399), - [aux_sym_coarray_statement_token8] = ACTIONS(4399), - [aux_sym_coarray_statement_token11] = ACTIONS(4399), - [aux_sym_coarray_statement_token12] = ACTIONS(4399), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), - [aux_sym_identifier_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4401), - [sym__float_literal] = ACTIONS(4401), - [sym__boz_literal] = ACTIONS(4401), - [sym__string_literal] = ACTIONS(4401), - [sym__string_literal_kind] = ACTIONS(4401), + [sym__integer_literal] = ACTIONS(4665), }, [1092] = { - [aux_sym_preproc_include_token1] = ACTIONS(4427), - [aux_sym_preproc_def_token1] = ACTIONS(4427), - [aux_sym_preproc_if_token1] = ACTIONS(4427), - [aux_sym_preproc_if_token2] = ACTIONS(4427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4427), - [sym_preproc_directive] = ACTIONS(4427), - [anon_sym_LPAREN2] = ACTIONS(4427), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_preproc_else_in_module] = STATE(8373), + [sym_preproc_elif_in_module] = STATE(8373), + [sym_preproc_elifdef_in_module] = STATE(8373), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(5652), + [sym_contains_statement] = STATE(6869), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4639), + [aux_sym_preproc_def_token1] = ACTIONS(4641), + [aux_sym_preproc_if_token2] = ACTIONS(4757), + [aux_sym_preproc_else_token1] = ACTIONS(4645), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4649), + [sym_preproc_directive] = ACTIONS(4651), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4427), - [aux_sym_end_program_statement_token1] = ACTIONS(4427), - [aux_sym_end_program_statement_token2] = ACTIONS(4427), - [aux_sym_module_statement_token1] = ACTIONS(4427), - [aux_sym_submodule_statement_token1] = ACTIONS(4427), - [aux_sym_interface_statement_token1] = ACTIONS(4427), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4427), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4427), - [aux_sym_subroutine_statement_token1] = ACTIONS(4427), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4427), - [aux_sym_function_statement_token1] = ACTIONS(4427), - [aux_sym_language_binding_token1] = ACTIONS(4427), - [aux_sym_procedure_attributes_token1] = ACTIONS(4427), - [aux_sym_procedure_attributes_token3] = ACTIONS(4427), - [aux_sym_contains_statement_token1] = ACTIONS(4427), - [aux_sym_use_statement_token1] = ACTIONS(4427), - [aux_sym_use_statement_token2] = ACTIONS(4427), - [aux_sym_implicit_statement_token1] = ACTIONS(4427), - [aux_sym_implicit_statement_token3] = ACTIONS(4427), - [aux_sym_implicit_statement_token4] = ACTIONS(4427), - [aux_sym_save_statement_token1] = ACTIONS(4427), - [aux_sym_private_statement_token1] = ACTIONS(4427), - [aux_sym_public_statement_token1] = ACTIONS(4427), - [aux_sym_namelist_statement_token1] = ACTIONS(4427), - [aux_sym_common_statement_token1] = ACTIONS(4427), - [aux_sym_import_statement_token1] = ACTIONS(4427), - [aux_sym_derived_type_definition_token1] = ACTIONS(4427), - [aux_sym_abstract_specifier_token1] = ACTIONS(4427), - [aux_sym_procedure_attribute_token6] = ACTIONS(4427), - [aux_sym_variable_attributes_token1] = ACTIONS(4427), - [aux_sym_variable_attributes_token2] = ACTIONS(4427), - [aux_sym_variable_attributes_token3] = ACTIONS(4427), - [aux_sym_variable_attributes_token4] = ACTIONS(4427), - [aux_sym_variable_attributes_token5] = ACTIONS(4427), - [aux_sym__intrinsic_type_token1] = ACTIONS(4427), - [aux_sym__intrinsic_type_token2] = ACTIONS(4427), - [aux_sym__intrinsic_type_token3] = ACTIONS(4427), - [aux_sym__intrinsic_type_token4] = ACTIONS(4427), - [aux_sym__intrinsic_type_token6] = ACTIONS(4427), - [aux_sym__intrinsic_type_token7] = ACTIONS(4427), - [aux_sym__intrinsic_type_token8] = ACTIONS(4427), - [aux_sym__intrinsic_type_token9] = ACTIONS(4427), - [aux_sym__intrinsic_type_token10] = ACTIONS(4427), - [aux_sym_derived_type_token1] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4427), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4427), - [aux_sym_type_qualifier_token1] = ACTIONS(4427), - [aux_sym_type_qualifier_token2] = ACTIONS(4427), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4427), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4427), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4427), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4427), - [aux_sym_equivalence_statement_token1] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [aux_sym_stop_statement_token1] = ACTIONS(4427), - [aux_sym_stop_statement_token2] = ACTIONS(4427), - [aux_sym_subroutine_call_token1] = ACTIONS(4427), - [aux_sym_keyword_statement_token1] = ACTIONS(4427), - [aux_sym_keyword_statement_token2] = ACTIONS(4427), - [aux_sym_keyword_statement_token3] = ACTIONS(4427), - [aux_sym_keyword_statement_token4] = ACTIONS(4427), - [aux_sym_keyword_statement_token6] = ACTIONS(4427), - [aux_sym_keyword_statement_token7] = ACTIONS(4427), - [aux_sym_include_statement_token1] = ACTIONS(4427), - [aux_sym_data_statement_token1] = ACTIONS(4427), - [aux_sym_do_loop_statement_token1] = ACTIONS(4427), - [aux_sym__inline_if_statement_token1] = ACTIONS(4427), - [aux_sym_end_if_statement_token1] = ACTIONS(4427), - [aux_sym_elseif_clause_token2] = ACTIONS(4427), - [aux_sym__inline_where_statement_token1] = ACTIONS(4427), - [aux_sym__forall_control_expression_token1] = ACTIONS(4427), - [aux_sym_select_case_statement_token1] = ACTIONS(4427), - [aux_sym_select_case_statement_token3] = ACTIONS(4427), - [aux_sym_select_type_statement_token1] = ACTIONS(4427), - [aux_sym_select_rank_statement_token2] = ACTIONS(4427), - [aux_sym_block_construct_token1] = ACTIONS(4427), - [aux_sym_associate_statement_token1] = ACTIONS(4427), - [aux_sym_format_statement_token1] = ACTIONS(4427), - [aux_sym_print_statement_token1] = ACTIONS(4427), - [aux_sym_open_statement_token1] = ACTIONS(4427), - [aux_sym_close_statement_token1] = ACTIONS(4427), - [aux_sym_inquire_statement_token1] = ACTIONS(4427), - [aux_sym_enum_statement_token1] = ACTIONS(4427), - [aux_sym_file_position_statement_token1] = ACTIONS(4427), - [aux_sym_file_position_statement_token2] = ACTIONS(4427), - [aux_sym_file_position_statement_token3] = ACTIONS(4427), - [aux_sym_file_position_statement_token4] = ACTIONS(4427), - [aux_sym_allocate_statement_token1] = ACTIONS(4427), - [aux_sym_entry_statement_token1] = ACTIONS(4427), - [aux_sym_logical_expression_token5] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_LPAREN_SLASH] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [aux_sym_boolean_literal_token1] = ACTIONS(4429), - [aux_sym_boolean_literal_token2] = ACTIONS(4429), - [aux_sym_null_literal_token1] = ACTIONS(4427), - [aux_sym_coarray_statement_token1] = ACTIONS(4427), - [aux_sym_coarray_statement_token2] = ACTIONS(4427), - [aux_sym_coarray_statement_token6] = ACTIONS(4427), - [aux_sym_coarray_statement_token8] = ACTIONS(4427), - [aux_sym_coarray_statement_token11] = ACTIONS(4427), - [aux_sym_coarray_statement_token12] = ACTIONS(4427), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4427), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4427), - [aux_sym_identifier_token1] = ACTIONS(4427), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(4655), + [aux_sym_public_statement_token1] = ACTIONS(4657), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4429), - [sym__float_literal] = ACTIONS(4429), - [sym__boz_literal] = ACTIONS(4429), - [sym__string_literal] = ACTIONS(4429), - [sym__string_literal_kind] = ACTIONS(4429), + [sym__integer_literal] = ACTIONS(4665), }, [1093] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token2] = ACTIONS(4347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4347), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_module_statement_token1] = ACTIONS(4347), - [aux_sym_submodule_statement_token1] = ACTIONS(4347), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_subroutine_statement_token1] = ACTIONS(4347), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_function_statement_token1] = ACTIONS(4347), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [ts_builtin_sym_end] = ACTIONS(4555), + [aux_sym_preproc_include_token1] = ACTIONS(4553), + [aux_sym_preproc_def_token1] = ACTIONS(4553), + [aux_sym_preproc_if_token1] = ACTIONS(4553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4553), + [sym_preproc_directive] = ACTIONS(4553), + [anon_sym_LPAREN2] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4553), + [aux_sym_end_program_statement_token1] = ACTIONS(4553), + [aux_sym_end_program_statement_token2] = ACTIONS(4553), + [aux_sym_module_statement_token1] = ACTIONS(4553), + [aux_sym_submodule_statement_token1] = ACTIONS(4553), + [aux_sym_interface_statement_token1] = ACTIONS(4553), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4553), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4553), + [aux_sym_subroutine_statement_token1] = ACTIONS(4553), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4553), + [aux_sym_function_statement_token1] = ACTIONS(4553), + [aux_sym_language_binding_token1] = ACTIONS(4553), + [aux_sym_procedure_attributes_token1] = ACTIONS(4553), + [aux_sym_procedure_attributes_token3] = ACTIONS(4553), + [aux_sym_contains_statement_token1] = ACTIONS(4553), + [aux_sym_use_statement_token1] = ACTIONS(4553), + [aux_sym_use_statement_token2] = ACTIONS(4553), + [aux_sym_implicit_statement_token1] = ACTIONS(4553), + [aux_sym_implicit_statement_token3] = ACTIONS(4553), + [aux_sym_implicit_statement_token4] = ACTIONS(4553), + [aux_sym_save_statement_token1] = ACTIONS(4553), + [aux_sym_private_statement_token1] = ACTIONS(4553), + [aux_sym_public_statement_token1] = ACTIONS(4553), + [aux_sym_namelist_statement_token1] = ACTIONS(4553), + [aux_sym_common_statement_token1] = ACTIONS(4553), + [aux_sym_import_statement_token1] = ACTIONS(4553), + [aux_sym_derived_type_definition_token1] = ACTIONS(4553), + [aux_sym_abstract_specifier_token1] = ACTIONS(4553), + [aux_sym_procedure_attribute_token6] = ACTIONS(4553), + [aux_sym_variable_attributes_token1] = ACTIONS(4553), + [aux_sym_variable_attributes_token2] = ACTIONS(4553), + [aux_sym_variable_attributes_token3] = ACTIONS(4553), + [aux_sym_variable_attributes_token4] = ACTIONS(4553), + [aux_sym_variable_attributes_token5] = ACTIONS(4553), + [aux_sym__intrinsic_type_token1] = ACTIONS(4553), + [aux_sym__intrinsic_type_token2] = ACTIONS(4553), + [aux_sym__intrinsic_type_token3] = ACTIONS(4553), + [aux_sym__intrinsic_type_token4] = ACTIONS(4553), + [aux_sym__intrinsic_type_token6] = ACTIONS(4553), + [aux_sym__intrinsic_type_token7] = ACTIONS(4553), + [aux_sym__intrinsic_type_token8] = ACTIONS(4553), + [aux_sym__intrinsic_type_token9] = ACTIONS(4553), + [aux_sym__intrinsic_type_token10] = ACTIONS(4553), + [aux_sym_derived_type_token1] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4553), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4553), + [aux_sym_type_qualifier_token1] = ACTIONS(4553), + [aux_sym_type_qualifier_token2] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4553), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4553), + [aux_sym_equivalence_statement_token1] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4555), + [aux_sym_stop_statement_token1] = ACTIONS(4553), + [aux_sym_stop_statement_token2] = ACTIONS(4553), + [aux_sym_subroutine_call_token1] = ACTIONS(4553), + [aux_sym_keyword_statement_token1] = ACTIONS(4553), + [aux_sym_keyword_statement_token2] = ACTIONS(4553), + [aux_sym_keyword_statement_token3] = ACTIONS(4553), + [aux_sym_keyword_statement_token4] = ACTIONS(4553), + [aux_sym_keyword_statement_token6] = ACTIONS(4553), + [aux_sym_keyword_statement_token7] = ACTIONS(4553), + [aux_sym_include_statement_token1] = ACTIONS(4553), + [aux_sym_data_statement_token1] = ACTIONS(4553), + [aux_sym_do_loop_statement_token1] = ACTIONS(4553), + [aux_sym__inline_if_statement_token1] = ACTIONS(4553), + [aux_sym_end_if_statement_token1] = ACTIONS(4553), + [aux_sym_elseif_clause_token2] = ACTIONS(4553), + [aux_sym__inline_where_statement_token1] = ACTIONS(4553), + [aux_sym__forall_control_expression_token1] = ACTIONS(4553), + [aux_sym_select_case_statement_token1] = ACTIONS(4553), + [aux_sym_select_case_statement_token3] = ACTIONS(4553), + [aux_sym_select_type_statement_token1] = ACTIONS(4553), + [aux_sym_select_rank_statement_token2] = ACTIONS(4553), + [aux_sym_block_construct_token1] = ACTIONS(4553), + [aux_sym_associate_statement_token1] = ACTIONS(4553), + [aux_sym_format_statement_token1] = ACTIONS(4553), + [aux_sym_print_statement_token1] = ACTIONS(4553), + [aux_sym_open_statement_token1] = ACTIONS(4553), + [aux_sym_close_statement_token1] = ACTIONS(4553), + [aux_sym_inquire_statement_token1] = ACTIONS(4553), + [aux_sym_enum_statement_token1] = ACTIONS(4553), + [aux_sym_file_position_statement_token1] = ACTIONS(4553), + [aux_sym_file_position_statement_token2] = ACTIONS(4553), + [aux_sym_file_position_statement_token3] = ACTIONS(4553), + [aux_sym_file_position_statement_token4] = ACTIONS(4553), + [aux_sym_allocate_statement_token1] = ACTIONS(4553), + [aux_sym_entry_statement_token1] = ACTIONS(4553), + [aux_sym_logical_expression_token5] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_LPAREN_SLASH] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4555), + [aux_sym_boolean_literal_token1] = ACTIONS(4555), + [aux_sym_boolean_literal_token2] = ACTIONS(4555), + [aux_sym_null_literal_token1] = ACTIONS(4553), + [aux_sym_coarray_statement_token1] = ACTIONS(4553), + [aux_sym_coarray_statement_token2] = ACTIONS(4553), + [aux_sym_coarray_statement_token6] = ACTIONS(4553), + [aux_sym_coarray_statement_token8] = ACTIONS(4553), + [aux_sym_coarray_statement_token11] = ACTIONS(4553), + [aux_sym_coarray_statement_token12] = ACTIONS(4553), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4553), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4553), + [aux_sym_identifier_token1] = ACTIONS(4553), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4555), + [sym__float_literal] = ACTIONS(4555), + [sym__boz_literal] = ACTIONS(4555), + [sym__string_literal] = ACTIONS(4555), + [sym__string_literal_kind] = ACTIONS(4555), }, [1094] = { - [aux_sym_preproc_include_token1] = ACTIONS(4439), - [aux_sym_preproc_def_token1] = ACTIONS(4439), - [aux_sym_preproc_if_token1] = ACTIONS(4439), - [aux_sym_preproc_if_token2] = ACTIONS(4439), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4439), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4439), - [sym_preproc_directive] = ACTIONS(4439), - [anon_sym_LPAREN2] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4439), - [aux_sym_end_program_statement_token1] = ACTIONS(4439), - [aux_sym_end_program_statement_token2] = ACTIONS(4439), - [aux_sym_module_statement_token1] = ACTIONS(4439), - [aux_sym_submodule_statement_token1] = ACTIONS(4439), - [aux_sym_interface_statement_token1] = ACTIONS(4439), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4439), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4439), - [aux_sym_subroutine_statement_token1] = ACTIONS(4439), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4439), - [aux_sym_function_statement_token1] = ACTIONS(4439), - [aux_sym_language_binding_token1] = ACTIONS(4439), - [aux_sym_procedure_attributes_token1] = ACTIONS(4439), - [aux_sym_procedure_attributes_token3] = ACTIONS(4439), - [aux_sym_contains_statement_token1] = ACTIONS(4439), - [aux_sym_use_statement_token1] = ACTIONS(4439), - [aux_sym_use_statement_token2] = ACTIONS(4439), - [aux_sym_implicit_statement_token1] = ACTIONS(4439), - [aux_sym_implicit_statement_token3] = ACTIONS(4439), - [aux_sym_implicit_statement_token4] = ACTIONS(4439), - [aux_sym_save_statement_token1] = ACTIONS(4439), - [aux_sym_private_statement_token1] = ACTIONS(4439), - [aux_sym_public_statement_token1] = ACTIONS(4439), - [aux_sym_namelist_statement_token1] = ACTIONS(4439), - [aux_sym_common_statement_token1] = ACTIONS(4439), - [aux_sym_import_statement_token1] = ACTIONS(4439), - [aux_sym_derived_type_definition_token1] = ACTIONS(4439), - [aux_sym_abstract_specifier_token1] = ACTIONS(4439), - [aux_sym_procedure_attribute_token6] = ACTIONS(4439), - [aux_sym_variable_attributes_token1] = ACTIONS(4439), - [aux_sym_variable_attributes_token2] = ACTIONS(4439), - [aux_sym_variable_attributes_token3] = ACTIONS(4439), - [aux_sym_variable_attributes_token4] = ACTIONS(4439), - [aux_sym_variable_attributes_token5] = ACTIONS(4439), - [aux_sym__intrinsic_type_token1] = ACTIONS(4439), - [aux_sym__intrinsic_type_token2] = ACTIONS(4439), - [aux_sym__intrinsic_type_token3] = ACTIONS(4439), - [aux_sym__intrinsic_type_token4] = ACTIONS(4439), - [aux_sym__intrinsic_type_token6] = ACTIONS(4439), - [aux_sym__intrinsic_type_token7] = ACTIONS(4439), - [aux_sym__intrinsic_type_token8] = ACTIONS(4439), - [aux_sym__intrinsic_type_token9] = ACTIONS(4439), - [aux_sym__intrinsic_type_token10] = ACTIONS(4439), - [aux_sym_derived_type_token1] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4439), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4439), - [aux_sym_type_qualifier_token1] = ACTIONS(4439), - [aux_sym_type_qualifier_token2] = ACTIONS(4439), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4439), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4439), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4439), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4439), - [aux_sym_equivalence_statement_token1] = ACTIONS(4439), - [anon_sym_SEMI] = ACTIONS(4441), - [aux_sym_stop_statement_token1] = ACTIONS(4439), - [aux_sym_stop_statement_token2] = ACTIONS(4439), - [aux_sym_subroutine_call_token1] = ACTIONS(4439), - [aux_sym_keyword_statement_token1] = ACTIONS(4439), - [aux_sym_keyword_statement_token2] = ACTIONS(4439), - [aux_sym_keyword_statement_token3] = ACTIONS(4439), - [aux_sym_keyword_statement_token4] = ACTIONS(4439), - [aux_sym_keyword_statement_token6] = ACTIONS(4439), - [aux_sym_keyword_statement_token7] = ACTIONS(4439), - [aux_sym_include_statement_token1] = ACTIONS(4439), - [aux_sym_data_statement_token1] = ACTIONS(4439), - [aux_sym_do_loop_statement_token1] = ACTIONS(4439), - [aux_sym__inline_if_statement_token1] = ACTIONS(4439), - [aux_sym_end_if_statement_token1] = ACTIONS(4439), - [aux_sym_elseif_clause_token2] = ACTIONS(4439), - [aux_sym__inline_where_statement_token1] = ACTIONS(4439), - [aux_sym__forall_control_expression_token1] = ACTIONS(4439), - [aux_sym_select_case_statement_token1] = ACTIONS(4439), - [aux_sym_select_case_statement_token3] = ACTIONS(4439), - [aux_sym_select_type_statement_token1] = ACTIONS(4439), - [aux_sym_select_rank_statement_token2] = ACTIONS(4439), - [aux_sym_block_construct_token1] = ACTIONS(4439), - [aux_sym_associate_statement_token1] = ACTIONS(4439), - [aux_sym_format_statement_token1] = ACTIONS(4439), - [aux_sym_print_statement_token1] = ACTIONS(4439), - [aux_sym_open_statement_token1] = ACTIONS(4439), - [aux_sym_close_statement_token1] = ACTIONS(4439), - [aux_sym_inquire_statement_token1] = ACTIONS(4439), - [aux_sym_enum_statement_token1] = ACTIONS(4439), - [aux_sym_file_position_statement_token1] = ACTIONS(4439), - [aux_sym_file_position_statement_token2] = ACTIONS(4439), - [aux_sym_file_position_statement_token3] = ACTIONS(4439), - [aux_sym_file_position_statement_token4] = ACTIONS(4439), - [aux_sym_allocate_statement_token1] = ACTIONS(4439), - [aux_sym_entry_statement_token1] = ACTIONS(4439), - [aux_sym_logical_expression_token5] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4439), - [anon_sym_LPAREN_SLASH] = ACTIONS(4441), - [anon_sym_LBRACK] = ACTIONS(4441), - [aux_sym_boolean_literal_token1] = ACTIONS(4441), - [aux_sym_boolean_literal_token2] = ACTIONS(4441), - [aux_sym_null_literal_token1] = ACTIONS(4439), - [aux_sym_coarray_statement_token1] = ACTIONS(4439), - [aux_sym_coarray_statement_token2] = ACTIONS(4439), - [aux_sym_coarray_statement_token6] = ACTIONS(4439), - [aux_sym_coarray_statement_token8] = ACTIONS(4439), - [aux_sym_coarray_statement_token11] = ACTIONS(4439), - [aux_sym_coarray_statement_token12] = ACTIONS(4439), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4439), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4439), - [aux_sym_identifier_token1] = ACTIONS(4439), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4441), - [sym__float_literal] = ACTIONS(4441), - [sym__boz_literal] = ACTIONS(4441), - [sym__string_literal] = ACTIONS(4441), - [sym__string_literal_kind] = ACTIONS(4441), + [ts_builtin_sym_end] = ACTIONS(4559), + [aux_sym_preproc_include_token1] = ACTIONS(4557), + [aux_sym_preproc_def_token1] = ACTIONS(4557), + [aux_sym_preproc_if_token1] = ACTIONS(4557), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4557), + [sym_preproc_directive] = ACTIONS(4557), + [anon_sym_LPAREN2] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4557), + [aux_sym_end_program_statement_token1] = ACTIONS(4557), + [aux_sym_end_program_statement_token2] = ACTIONS(4557), + [aux_sym_module_statement_token1] = ACTIONS(4557), + [aux_sym_submodule_statement_token1] = ACTIONS(4557), + [aux_sym_interface_statement_token1] = ACTIONS(4557), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4557), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4557), + [aux_sym_subroutine_statement_token1] = ACTIONS(4557), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4557), + [aux_sym_function_statement_token1] = ACTIONS(4557), + [aux_sym_language_binding_token1] = ACTIONS(4557), + [aux_sym_procedure_attributes_token1] = ACTIONS(4557), + [aux_sym_procedure_attributes_token3] = ACTIONS(4557), + [aux_sym_contains_statement_token1] = ACTIONS(4557), + [aux_sym_use_statement_token1] = ACTIONS(4557), + [aux_sym_use_statement_token2] = ACTIONS(4557), + [aux_sym_implicit_statement_token1] = ACTIONS(4557), + [aux_sym_implicit_statement_token3] = ACTIONS(4557), + [aux_sym_implicit_statement_token4] = ACTIONS(4557), + [aux_sym_save_statement_token1] = ACTIONS(4557), + [aux_sym_private_statement_token1] = ACTIONS(4557), + [aux_sym_public_statement_token1] = ACTIONS(4557), + [aux_sym_namelist_statement_token1] = ACTIONS(4557), + [aux_sym_common_statement_token1] = ACTIONS(4557), + [aux_sym_import_statement_token1] = ACTIONS(4557), + [aux_sym_derived_type_definition_token1] = ACTIONS(4557), + [aux_sym_abstract_specifier_token1] = ACTIONS(4557), + [aux_sym_procedure_attribute_token6] = ACTIONS(4557), + [aux_sym_variable_attributes_token1] = ACTIONS(4557), + [aux_sym_variable_attributes_token2] = ACTIONS(4557), + [aux_sym_variable_attributes_token3] = ACTIONS(4557), + [aux_sym_variable_attributes_token4] = ACTIONS(4557), + [aux_sym_variable_attributes_token5] = ACTIONS(4557), + [aux_sym__intrinsic_type_token1] = ACTIONS(4557), + [aux_sym__intrinsic_type_token2] = ACTIONS(4557), + [aux_sym__intrinsic_type_token3] = ACTIONS(4557), + [aux_sym__intrinsic_type_token4] = ACTIONS(4557), + [aux_sym__intrinsic_type_token6] = ACTIONS(4557), + [aux_sym__intrinsic_type_token7] = ACTIONS(4557), + [aux_sym__intrinsic_type_token8] = ACTIONS(4557), + [aux_sym__intrinsic_type_token9] = ACTIONS(4557), + [aux_sym__intrinsic_type_token10] = ACTIONS(4557), + [aux_sym_derived_type_token1] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4557), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4557), + [aux_sym_type_qualifier_token1] = ACTIONS(4557), + [aux_sym_type_qualifier_token2] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4557), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4557), + [aux_sym_equivalence_statement_token1] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [aux_sym_stop_statement_token1] = ACTIONS(4557), + [aux_sym_stop_statement_token2] = ACTIONS(4557), + [aux_sym_subroutine_call_token1] = ACTIONS(4557), + [aux_sym_keyword_statement_token1] = ACTIONS(4557), + [aux_sym_keyword_statement_token2] = ACTIONS(4557), + [aux_sym_keyword_statement_token3] = ACTIONS(4557), + [aux_sym_keyword_statement_token4] = ACTIONS(4557), + [aux_sym_keyword_statement_token6] = ACTIONS(4557), + [aux_sym_keyword_statement_token7] = ACTIONS(4557), + [aux_sym_include_statement_token1] = ACTIONS(4557), + [aux_sym_data_statement_token1] = ACTIONS(4557), + [aux_sym_do_loop_statement_token1] = ACTIONS(4557), + [aux_sym__inline_if_statement_token1] = ACTIONS(4557), + [aux_sym_end_if_statement_token1] = ACTIONS(4557), + [aux_sym_elseif_clause_token2] = ACTIONS(4557), + [aux_sym__inline_where_statement_token1] = ACTIONS(4557), + [aux_sym__forall_control_expression_token1] = ACTIONS(4557), + [aux_sym_select_case_statement_token1] = ACTIONS(4557), + [aux_sym_select_case_statement_token3] = ACTIONS(4557), + [aux_sym_select_type_statement_token1] = ACTIONS(4557), + [aux_sym_select_rank_statement_token2] = ACTIONS(4557), + [aux_sym_block_construct_token1] = ACTIONS(4557), + [aux_sym_associate_statement_token1] = ACTIONS(4557), + [aux_sym_format_statement_token1] = ACTIONS(4557), + [aux_sym_print_statement_token1] = ACTIONS(4557), + [aux_sym_open_statement_token1] = ACTIONS(4557), + [aux_sym_close_statement_token1] = ACTIONS(4557), + [aux_sym_inquire_statement_token1] = ACTIONS(4557), + [aux_sym_enum_statement_token1] = ACTIONS(4557), + [aux_sym_file_position_statement_token1] = ACTIONS(4557), + [aux_sym_file_position_statement_token2] = ACTIONS(4557), + [aux_sym_file_position_statement_token3] = ACTIONS(4557), + [aux_sym_file_position_statement_token4] = ACTIONS(4557), + [aux_sym_allocate_statement_token1] = ACTIONS(4557), + [aux_sym_entry_statement_token1] = ACTIONS(4557), + [aux_sym_logical_expression_token5] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_LPAREN_SLASH] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [aux_sym_boolean_literal_token1] = ACTIONS(4559), + [aux_sym_boolean_literal_token2] = ACTIONS(4559), + [aux_sym_null_literal_token1] = ACTIONS(4557), + [aux_sym_coarray_statement_token1] = ACTIONS(4557), + [aux_sym_coarray_statement_token2] = ACTIONS(4557), + [aux_sym_coarray_statement_token6] = ACTIONS(4557), + [aux_sym_coarray_statement_token8] = ACTIONS(4557), + [aux_sym_coarray_statement_token11] = ACTIONS(4557), + [aux_sym_coarray_statement_token12] = ACTIONS(4557), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4557), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4557), + [aux_sym_identifier_token1] = ACTIONS(4557), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4559), + [sym__float_literal] = ACTIONS(4559), + [sym__boz_literal] = ACTIONS(4559), + [sym__string_literal] = ACTIONS(4559), + [sym__string_literal_kind] = ACTIONS(4559), }, [1095] = { - [aux_sym_preproc_include_token1] = ACTIONS(4457), - [aux_sym_preproc_def_token1] = ACTIONS(4457), - [aux_sym_preproc_if_token1] = ACTIONS(4457), - [aux_sym_preproc_if_token2] = ACTIONS(4457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4457), - [sym_preproc_directive] = ACTIONS(4457), - [anon_sym_LPAREN2] = ACTIONS(4457), - [anon_sym_PLUS] = ACTIONS(4459), - [anon_sym_DASH] = ACTIONS(4459), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4457), - [aux_sym_end_program_statement_token1] = ACTIONS(4457), - [aux_sym_end_program_statement_token2] = ACTIONS(4457), - [aux_sym_module_statement_token1] = ACTIONS(4457), - [aux_sym_submodule_statement_token1] = ACTIONS(4457), - [aux_sym_interface_statement_token1] = ACTIONS(4457), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4457), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4457), - [aux_sym_subroutine_statement_token1] = ACTIONS(4457), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4457), - [aux_sym_function_statement_token1] = ACTIONS(4457), - [aux_sym_language_binding_token1] = ACTIONS(4457), - [aux_sym_procedure_attributes_token1] = ACTIONS(4457), - [aux_sym_procedure_attributes_token3] = ACTIONS(4457), - [aux_sym_contains_statement_token1] = ACTIONS(4457), - [aux_sym_use_statement_token1] = ACTIONS(4457), - [aux_sym_use_statement_token2] = ACTIONS(4457), - [aux_sym_implicit_statement_token1] = ACTIONS(4457), - [aux_sym_implicit_statement_token3] = ACTIONS(4457), - [aux_sym_implicit_statement_token4] = ACTIONS(4457), - [aux_sym_save_statement_token1] = ACTIONS(4457), - [aux_sym_private_statement_token1] = ACTIONS(4457), - [aux_sym_public_statement_token1] = ACTIONS(4457), - [aux_sym_namelist_statement_token1] = ACTIONS(4457), - [aux_sym_common_statement_token1] = ACTIONS(4457), - [aux_sym_import_statement_token1] = ACTIONS(4457), - [aux_sym_derived_type_definition_token1] = ACTIONS(4457), - [aux_sym_abstract_specifier_token1] = ACTIONS(4457), - [aux_sym_procedure_attribute_token6] = ACTIONS(4457), - [aux_sym_variable_attributes_token1] = ACTIONS(4457), - [aux_sym_variable_attributes_token2] = ACTIONS(4457), - [aux_sym_variable_attributes_token3] = ACTIONS(4457), - [aux_sym_variable_attributes_token4] = ACTIONS(4457), - [aux_sym_variable_attributes_token5] = ACTIONS(4457), - [aux_sym__intrinsic_type_token1] = ACTIONS(4457), - [aux_sym__intrinsic_type_token2] = ACTIONS(4457), - [aux_sym__intrinsic_type_token3] = ACTIONS(4457), - [aux_sym__intrinsic_type_token4] = ACTIONS(4457), - [aux_sym__intrinsic_type_token6] = ACTIONS(4457), - [aux_sym__intrinsic_type_token7] = ACTIONS(4457), - [aux_sym__intrinsic_type_token8] = ACTIONS(4457), - [aux_sym__intrinsic_type_token9] = ACTIONS(4457), - [aux_sym__intrinsic_type_token10] = ACTIONS(4457), - [aux_sym_derived_type_token1] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4457), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4457), - [aux_sym_type_qualifier_token1] = ACTIONS(4457), - [aux_sym_type_qualifier_token2] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4457), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4457), - [aux_sym_equivalence_statement_token1] = ACTIONS(4457), - [anon_sym_SEMI] = ACTIONS(4459), - [aux_sym_stop_statement_token1] = ACTIONS(4457), - [aux_sym_stop_statement_token2] = ACTIONS(4457), - [aux_sym_subroutine_call_token1] = ACTIONS(4457), - [aux_sym_keyword_statement_token1] = ACTIONS(4457), - [aux_sym_keyword_statement_token2] = ACTIONS(4457), - [aux_sym_keyword_statement_token3] = ACTIONS(4457), - [aux_sym_keyword_statement_token4] = ACTIONS(4457), - [aux_sym_keyword_statement_token6] = ACTIONS(4457), - [aux_sym_keyword_statement_token7] = ACTIONS(4457), - [aux_sym_include_statement_token1] = ACTIONS(4457), - [aux_sym_data_statement_token1] = ACTIONS(4457), - [aux_sym_do_loop_statement_token1] = ACTIONS(4457), - [aux_sym__inline_if_statement_token1] = ACTIONS(4457), - [aux_sym_end_if_statement_token1] = ACTIONS(4457), - [aux_sym_elseif_clause_token2] = ACTIONS(4457), - [aux_sym__inline_where_statement_token1] = ACTIONS(4457), - [aux_sym__forall_control_expression_token1] = ACTIONS(4457), - [aux_sym_select_case_statement_token1] = ACTIONS(4457), - [aux_sym_select_case_statement_token3] = ACTIONS(4457), - [aux_sym_select_type_statement_token1] = ACTIONS(4457), - [aux_sym_select_rank_statement_token2] = ACTIONS(4457), - [aux_sym_block_construct_token1] = ACTIONS(4457), - [aux_sym_associate_statement_token1] = ACTIONS(4457), - [aux_sym_format_statement_token1] = ACTIONS(4457), - [aux_sym_print_statement_token1] = ACTIONS(4457), - [aux_sym_open_statement_token1] = ACTIONS(4457), - [aux_sym_close_statement_token1] = ACTIONS(4457), - [aux_sym_inquire_statement_token1] = ACTIONS(4457), - [aux_sym_enum_statement_token1] = ACTIONS(4457), - [aux_sym_file_position_statement_token1] = ACTIONS(4457), - [aux_sym_file_position_statement_token2] = ACTIONS(4457), - [aux_sym_file_position_statement_token3] = ACTIONS(4457), - [aux_sym_file_position_statement_token4] = ACTIONS(4457), - [aux_sym_allocate_statement_token1] = ACTIONS(4457), - [aux_sym_entry_statement_token1] = ACTIONS(4457), - [aux_sym_logical_expression_token5] = ACTIONS(4459), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_LPAREN_SLASH] = ACTIONS(4459), - [anon_sym_LBRACK] = ACTIONS(4459), - [aux_sym_boolean_literal_token1] = ACTIONS(4459), - [aux_sym_boolean_literal_token2] = ACTIONS(4459), - [aux_sym_null_literal_token1] = ACTIONS(4457), - [aux_sym_coarray_statement_token1] = ACTIONS(4457), - [aux_sym_coarray_statement_token2] = ACTIONS(4457), - [aux_sym_coarray_statement_token6] = ACTIONS(4457), - [aux_sym_coarray_statement_token8] = ACTIONS(4457), - [aux_sym_coarray_statement_token11] = ACTIONS(4457), - [aux_sym_coarray_statement_token12] = ACTIONS(4457), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4457), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4457), - [aux_sym_identifier_token1] = ACTIONS(4457), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4459), - [sym__float_literal] = ACTIONS(4459), - [sym__boz_literal] = ACTIONS(4459), - [sym__string_literal] = ACTIONS(4459), - [sym__string_literal_kind] = ACTIONS(4459), + [ts_builtin_sym_end] = ACTIONS(4389), + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4387), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_end_program_statement_token2] = ACTIONS(4387), + [aux_sym_module_statement_token1] = ACTIONS(4387), + [aux_sym_submodule_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_subroutine_statement_token1] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_function_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4387), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4387), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4387), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_subroutine_call_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_keyword_statement_token4] = ACTIONS(4387), + [aux_sym_keyword_statement_token6] = ACTIONS(4387), + [aux_sym_keyword_statement_token7] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym_do_loop_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym__inline_where_statement_token1] = ACTIONS(4387), + [aux_sym__forall_control_expression_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token3] = ACTIONS(4387), + [aux_sym_select_type_statement_token1] = ACTIONS(4387), + [aux_sym_select_rank_statement_token2] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_associate_statement_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_print_statement_token1] = ACTIONS(4387), + [aux_sym_open_statement_token1] = ACTIONS(4387), + [aux_sym_close_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token2] = ACTIONS(4387), + [aux_sym_file_position_statement_token3] = ACTIONS(4387), + [aux_sym_file_position_statement_token4] = ACTIONS(4387), + [aux_sym_allocate_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_logical_expression_token5] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LPAREN_SLASH] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [aux_sym_boolean_literal_token1] = ACTIONS(4389), + [aux_sym_boolean_literal_token2] = ACTIONS(4389), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4389), + [sym__float_literal] = ACTIONS(4389), + [sym__boz_literal] = ACTIONS(4389), + [sym__string_literal] = ACTIONS(4389), + [sym__string_literal_kind] = ACTIONS(4389), }, [1096] = { - [aux_sym_preproc_include_token1] = ACTIONS(4595), - [aux_sym_preproc_def_token1] = ACTIONS(4595), - [aux_sym_preproc_if_token1] = ACTIONS(4595), - [aux_sym_preproc_if_token2] = ACTIONS(4595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4595), - [sym_preproc_directive] = ACTIONS(4595), - [anon_sym_LPAREN2] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), + [ts_builtin_sym_end] = ACTIONS(4377), + [aux_sym_preproc_include_token1] = ACTIONS(4375), + [aux_sym_preproc_def_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token1] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4375), + [sym_preproc_directive] = ACTIONS(4375), + [anon_sym_LPAREN2] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4377), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4595), - [aux_sym_end_program_statement_token1] = ACTIONS(4595), - [aux_sym_end_program_statement_token2] = ACTIONS(4595), - [aux_sym_module_statement_token1] = ACTIONS(4595), - [aux_sym_submodule_statement_token1] = ACTIONS(4595), - [aux_sym_interface_statement_token1] = ACTIONS(4595), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4595), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4595), - [aux_sym_subroutine_statement_token1] = ACTIONS(4595), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4595), - [aux_sym_function_statement_token1] = ACTIONS(4595), - [aux_sym_language_binding_token1] = ACTIONS(4595), - [aux_sym_procedure_attributes_token1] = ACTIONS(4595), - [aux_sym_procedure_attributes_token3] = ACTIONS(4595), - [aux_sym_contains_statement_token1] = ACTIONS(4595), - [aux_sym_use_statement_token1] = ACTIONS(4595), - [aux_sym_use_statement_token2] = ACTIONS(4595), - [aux_sym_implicit_statement_token1] = ACTIONS(4595), - [aux_sym_implicit_statement_token3] = ACTIONS(4595), - [aux_sym_implicit_statement_token4] = ACTIONS(4595), - [aux_sym_save_statement_token1] = ACTIONS(4595), - [aux_sym_private_statement_token1] = ACTIONS(4595), - [aux_sym_public_statement_token1] = ACTIONS(4595), - [aux_sym_namelist_statement_token1] = ACTIONS(4595), - [aux_sym_common_statement_token1] = ACTIONS(4595), - [aux_sym_import_statement_token1] = ACTIONS(4595), - [aux_sym_derived_type_definition_token1] = ACTIONS(4595), - [aux_sym_abstract_specifier_token1] = ACTIONS(4595), - [aux_sym_procedure_attribute_token6] = ACTIONS(4595), - [aux_sym_variable_attributes_token1] = ACTIONS(4595), - [aux_sym_variable_attributes_token2] = ACTIONS(4595), - [aux_sym_variable_attributes_token3] = ACTIONS(4595), - [aux_sym_variable_attributes_token4] = ACTIONS(4595), - [aux_sym_variable_attributes_token5] = ACTIONS(4595), - [aux_sym__intrinsic_type_token1] = ACTIONS(4595), - [aux_sym__intrinsic_type_token2] = ACTIONS(4595), - [aux_sym__intrinsic_type_token3] = ACTIONS(4595), - [aux_sym__intrinsic_type_token4] = ACTIONS(4595), - [aux_sym__intrinsic_type_token6] = ACTIONS(4595), - [aux_sym__intrinsic_type_token7] = ACTIONS(4595), - [aux_sym__intrinsic_type_token8] = ACTIONS(4595), - [aux_sym__intrinsic_type_token9] = ACTIONS(4595), - [aux_sym__intrinsic_type_token10] = ACTIONS(4595), - [aux_sym_derived_type_token1] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4595), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4595), - [aux_sym_type_qualifier_token1] = ACTIONS(4595), - [aux_sym_type_qualifier_token2] = ACTIONS(4595), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4595), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4595), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4595), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4595), - [aux_sym_equivalence_statement_token1] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4597), - [aux_sym_stop_statement_token1] = ACTIONS(4595), - [aux_sym_stop_statement_token2] = ACTIONS(4595), - [aux_sym_subroutine_call_token1] = ACTIONS(4595), - [aux_sym_keyword_statement_token1] = ACTIONS(4595), - [aux_sym_keyword_statement_token2] = ACTIONS(4595), - [aux_sym_keyword_statement_token3] = ACTIONS(4595), - [aux_sym_keyword_statement_token4] = ACTIONS(4595), - [aux_sym_keyword_statement_token6] = ACTIONS(4595), - [aux_sym_keyword_statement_token7] = ACTIONS(4595), - [aux_sym_include_statement_token1] = ACTIONS(4595), - [aux_sym_data_statement_token1] = ACTIONS(4595), - [aux_sym_do_loop_statement_token1] = ACTIONS(4595), - [aux_sym__inline_if_statement_token1] = ACTIONS(4595), - [aux_sym_end_if_statement_token1] = ACTIONS(4595), - [aux_sym_elseif_clause_token2] = ACTIONS(4595), - [aux_sym__inline_where_statement_token1] = ACTIONS(4595), - [aux_sym__forall_control_expression_token1] = ACTIONS(4595), - [aux_sym_select_case_statement_token1] = ACTIONS(4595), - [aux_sym_select_case_statement_token3] = ACTIONS(4595), - [aux_sym_select_type_statement_token1] = ACTIONS(4595), - [aux_sym_select_rank_statement_token2] = ACTIONS(4595), - [aux_sym_block_construct_token1] = ACTIONS(4595), - [aux_sym_associate_statement_token1] = ACTIONS(4595), - [aux_sym_format_statement_token1] = ACTIONS(4595), - [aux_sym_print_statement_token1] = ACTIONS(4595), - [aux_sym_open_statement_token1] = ACTIONS(4595), - [aux_sym_close_statement_token1] = ACTIONS(4595), - [aux_sym_inquire_statement_token1] = ACTIONS(4595), - [aux_sym_enum_statement_token1] = ACTIONS(4595), - [aux_sym_file_position_statement_token1] = ACTIONS(4595), - [aux_sym_file_position_statement_token2] = ACTIONS(4595), - [aux_sym_file_position_statement_token3] = ACTIONS(4595), - [aux_sym_file_position_statement_token4] = ACTIONS(4595), - [aux_sym_allocate_statement_token1] = ACTIONS(4595), - [aux_sym_entry_statement_token1] = ACTIONS(4595), - [aux_sym_logical_expression_token5] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4595), - [anon_sym_LPAREN_SLASH] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4597), - [aux_sym_boolean_literal_token1] = ACTIONS(4597), - [aux_sym_boolean_literal_token2] = ACTIONS(4597), - [aux_sym_null_literal_token1] = ACTIONS(4595), - [aux_sym_coarray_statement_token1] = ACTIONS(4595), - [aux_sym_coarray_statement_token2] = ACTIONS(4595), - [aux_sym_coarray_statement_token6] = ACTIONS(4595), - [aux_sym_coarray_statement_token8] = ACTIONS(4595), - [aux_sym_coarray_statement_token11] = ACTIONS(4595), - [aux_sym_coarray_statement_token12] = ACTIONS(4595), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4595), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4595), - [aux_sym_identifier_token1] = ACTIONS(4595), + [aux_sym_program_statement_token1] = ACTIONS(4375), + [aux_sym_end_program_statement_token1] = ACTIONS(4375), + [aux_sym_end_program_statement_token2] = ACTIONS(4375), + [aux_sym_module_statement_token1] = ACTIONS(4375), + [aux_sym_submodule_statement_token1] = ACTIONS(4375), + [aux_sym_interface_statement_token1] = ACTIONS(4375), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4375), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4375), + [aux_sym_subroutine_statement_token1] = ACTIONS(4375), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4375), + [aux_sym_function_statement_token1] = ACTIONS(4375), + [aux_sym_language_binding_token1] = ACTIONS(4375), + [aux_sym_procedure_attributes_token1] = ACTIONS(4375), + [aux_sym_procedure_attributes_token3] = ACTIONS(4375), + [aux_sym_contains_statement_token1] = ACTIONS(4375), + [aux_sym_use_statement_token1] = ACTIONS(4375), + [aux_sym_use_statement_token2] = ACTIONS(4375), + [aux_sym_implicit_statement_token1] = ACTIONS(4375), + [aux_sym_implicit_statement_token3] = ACTIONS(4375), + [aux_sym_implicit_statement_token4] = ACTIONS(4375), + [aux_sym_save_statement_token1] = ACTIONS(4375), + [aux_sym_private_statement_token1] = ACTIONS(4375), + [aux_sym_public_statement_token1] = ACTIONS(4375), + [aux_sym_namelist_statement_token1] = ACTIONS(4375), + [aux_sym_common_statement_token1] = ACTIONS(4375), + [aux_sym_import_statement_token1] = ACTIONS(4375), + [aux_sym_derived_type_definition_token1] = ACTIONS(4375), + [aux_sym_abstract_specifier_token1] = ACTIONS(4375), + [aux_sym_procedure_attribute_token6] = ACTIONS(4375), + [aux_sym_variable_attributes_token1] = ACTIONS(4375), + [aux_sym_variable_attributes_token2] = ACTIONS(4375), + [aux_sym_variable_attributes_token3] = ACTIONS(4375), + [aux_sym_variable_attributes_token4] = ACTIONS(4375), + [aux_sym_variable_attributes_token5] = ACTIONS(4375), + [aux_sym__intrinsic_type_token1] = ACTIONS(4375), + [aux_sym__intrinsic_type_token2] = ACTIONS(4375), + [aux_sym__intrinsic_type_token3] = ACTIONS(4375), + [aux_sym__intrinsic_type_token4] = ACTIONS(4375), + [aux_sym__intrinsic_type_token6] = ACTIONS(4375), + [aux_sym__intrinsic_type_token7] = ACTIONS(4375), + [aux_sym__intrinsic_type_token8] = ACTIONS(4375), + [aux_sym__intrinsic_type_token9] = ACTIONS(4375), + [aux_sym__intrinsic_type_token10] = ACTIONS(4375), + [aux_sym_derived_type_token1] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4375), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4375), + [aux_sym_type_qualifier_token1] = ACTIONS(4375), + [aux_sym_type_qualifier_token2] = ACTIONS(4375), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4375), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4375), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4375), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4375), + [aux_sym_equivalence_statement_token1] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [aux_sym_stop_statement_token1] = ACTIONS(4375), + [aux_sym_stop_statement_token2] = ACTIONS(4375), + [aux_sym_subroutine_call_token1] = ACTIONS(4375), + [aux_sym_keyword_statement_token1] = ACTIONS(4375), + [aux_sym_keyword_statement_token2] = ACTIONS(4375), + [aux_sym_keyword_statement_token3] = ACTIONS(4375), + [aux_sym_keyword_statement_token4] = ACTIONS(4375), + [aux_sym_keyword_statement_token6] = ACTIONS(4375), + [aux_sym_keyword_statement_token7] = ACTIONS(4375), + [aux_sym_include_statement_token1] = ACTIONS(4375), + [aux_sym_data_statement_token1] = ACTIONS(4375), + [aux_sym_do_loop_statement_token1] = ACTIONS(4375), + [aux_sym__inline_if_statement_token1] = ACTIONS(4375), + [aux_sym_end_if_statement_token1] = ACTIONS(4375), + [aux_sym_elseif_clause_token2] = ACTIONS(4375), + [aux_sym__inline_where_statement_token1] = ACTIONS(4375), + [aux_sym__forall_control_expression_token1] = ACTIONS(4375), + [aux_sym_select_case_statement_token1] = ACTIONS(4375), + [aux_sym_select_case_statement_token3] = ACTIONS(4375), + [aux_sym_select_type_statement_token1] = ACTIONS(4375), + [aux_sym_select_rank_statement_token2] = ACTIONS(4375), + [aux_sym_block_construct_token1] = ACTIONS(4375), + [aux_sym_associate_statement_token1] = ACTIONS(4375), + [aux_sym_format_statement_token1] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_inquire_statement_token1] = ACTIONS(4375), + [aux_sym_enum_statement_token1] = ACTIONS(4375), + [aux_sym_file_position_statement_token1] = ACTIONS(4375), + [aux_sym_file_position_statement_token2] = ACTIONS(4375), + [aux_sym_file_position_statement_token3] = ACTIONS(4375), + [aux_sym_file_position_statement_token4] = ACTIONS(4375), + [aux_sym_allocate_statement_token1] = ACTIONS(4375), + [aux_sym_entry_statement_token1] = ACTIONS(4375), + [aux_sym_logical_expression_token5] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_LPAREN_SLASH] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4377), + [aux_sym_boolean_literal_token2] = ACTIONS(4377), + [aux_sym_null_literal_token1] = ACTIONS(4375), + [aux_sym_coarray_statement_token1] = ACTIONS(4375), + [aux_sym_coarray_statement_token2] = ACTIONS(4375), + [aux_sym_coarray_statement_token6] = ACTIONS(4375), + [aux_sym_coarray_statement_token8] = ACTIONS(4375), + [aux_sym_coarray_statement_token11] = ACTIONS(4375), + [aux_sym_coarray_statement_token12] = ACTIONS(4375), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4375), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4375), + [aux_sym_identifier_token1] = ACTIONS(4375), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4597), - [sym__float_literal] = ACTIONS(4597), - [sym__boz_literal] = ACTIONS(4597), - [sym__string_literal] = ACTIONS(4597), - [sym__string_literal_kind] = ACTIONS(4597), + [sym__integer_literal] = ACTIONS(4377), + [sym__float_literal] = ACTIONS(4377), + [sym__boz_literal] = ACTIONS(4377), + [sym__string_literal] = ACTIONS(4377), + [sym__string_literal_kind] = ACTIONS(4377), }, [1097] = { - [aux_sym_preproc_include_token1] = ACTIONS(4599), - [aux_sym_preproc_def_token1] = ACTIONS(4599), - [aux_sym_preproc_if_token1] = ACTIONS(4599), - [aux_sym_preproc_if_token2] = ACTIONS(4599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4599), - [sym_preproc_directive] = ACTIONS(4599), - [anon_sym_LPAREN2] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4601), - [anon_sym_DASH] = ACTIONS(4601), + [ts_builtin_sym_end] = ACTIONS(4409), + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4599), - [aux_sym_end_program_statement_token1] = ACTIONS(4599), - [aux_sym_end_program_statement_token2] = ACTIONS(4599), - [aux_sym_module_statement_token1] = ACTIONS(4599), - [aux_sym_submodule_statement_token1] = ACTIONS(4599), - [aux_sym_interface_statement_token1] = ACTIONS(4599), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4599), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4599), - [aux_sym_subroutine_statement_token1] = ACTIONS(4599), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4599), - [aux_sym_function_statement_token1] = ACTIONS(4599), - [aux_sym_language_binding_token1] = ACTIONS(4599), - [aux_sym_procedure_attributes_token1] = ACTIONS(4599), - [aux_sym_procedure_attributes_token3] = ACTIONS(4599), - [aux_sym_contains_statement_token1] = ACTIONS(4599), - [aux_sym_use_statement_token1] = ACTIONS(4599), - [aux_sym_use_statement_token2] = ACTIONS(4599), - [aux_sym_implicit_statement_token1] = ACTIONS(4599), - [aux_sym_implicit_statement_token3] = ACTIONS(4599), - [aux_sym_implicit_statement_token4] = ACTIONS(4599), - [aux_sym_save_statement_token1] = ACTIONS(4599), - [aux_sym_private_statement_token1] = ACTIONS(4599), - [aux_sym_public_statement_token1] = ACTIONS(4599), - [aux_sym_namelist_statement_token1] = ACTIONS(4599), - [aux_sym_common_statement_token1] = ACTIONS(4599), - [aux_sym_import_statement_token1] = ACTIONS(4599), - [aux_sym_derived_type_definition_token1] = ACTIONS(4599), - [aux_sym_abstract_specifier_token1] = ACTIONS(4599), - [aux_sym_procedure_attribute_token6] = ACTIONS(4599), - [aux_sym_variable_attributes_token1] = ACTIONS(4599), - [aux_sym_variable_attributes_token2] = ACTIONS(4599), - [aux_sym_variable_attributes_token3] = ACTIONS(4599), - [aux_sym_variable_attributes_token4] = ACTIONS(4599), - [aux_sym_variable_attributes_token5] = ACTIONS(4599), - [aux_sym__intrinsic_type_token1] = ACTIONS(4599), - [aux_sym__intrinsic_type_token2] = ACTIONS(4599), - [aux_sym__intrinsic_type_token3] = ACTIONS(4599), - [aux_sym__intrinsic_type_token4] = ACTIONS(4599), - [aux_sym__intrinsic_type_token6] = ACTIONS(4599), - [aux_sym__intrinsic_type_token7] = ACTIONS(4599), - [aux_sym__intrinsic_type_token8] = ACTIONS(4599), - [aux_sym__intrinsic_type_token9] = ACTIONS(4599), - [aux_sym__intrinsic_type_token10] = ACTIONS(4599), - [aux_sym_derived_type_token1] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4599), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4599), - [aux_sym_type_qualifier_token1] = ACTIONS(4599), - [aux_sym_type_qualifier_token2] = ACTIONS(4599), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4599), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4599), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4599), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4599), - [aux_sym_equivalence_statement_token1] = ACTIONS(4599), - [anon_sym_SEMI] = ACTIONS(4601), - [aux_sym_stop_statement_token1] = ACTIONS(4599), - [aux_sym_stop_statement_token2] = ACTIONS(4599), - [aux_sym_subroutine_call_token1] = ACTIONS(4599), - [aux_sym_keyword_statement_token1] = ACTIONS(4599), - [aux_sym_keyword_statement_token2] = ACTIONS(4599), - [aux_sym_keyword_statement_token3] = ACTIONS(4599), - [aux_sym_keyword_statement_token4] = ACTIONS(4599), - [aux_sym_keyword_statement_token6] = ACTIONS(4599), - [aux_sym_keyword_statement_token7] = ACTIONS(4599), - [aux_sym_include_statement_token1] = ACTIONS(4599), - [aux_sym_data_statement_token1] = ACTIONS(4599), - [aux_sym_do_loop_statement_token1] = ACTIONS(4599), - [aux_sym__inline_if_statement_token1] = ACTIONS(4599), - [aux_sym_end_if_statement_token1] = ACTIONS(4599), - [aux_sym_elseif_clause_token2] = ACTIONS(4599), - [aux_sym__inline_where_statement_token1] = ACTIONS(4599), - [aux_sym__forall_control_expression_token1] = ACTIONS(4599), - [aux_sym_select_case_statement_token1] = ACTIONS(4599), - [aux_sym_select_case_statement_token3] = ACTIONS(4599), - [aux_sym_select_type_statement_token1] = ACTIONS(4599), - [aux_sym_select_rank_statement_token2] = ACTIONS(4599), - [aux_sym_block_construct_token1] = ACTIONS(4599), - [aux_sym_associate_statement_token1] = ACTIONS(4599), - [aux_sym_format_statement_token1] = ACTIONS(4599), - [aux_sym_print_statement_token1] = ACTIONS(4599), - [aux_sym_open_statement_token1] = ACTIONS(4599), - [aux_sym_close_statement_token1] = ACTIONS(4599), - [aux_sym_inquire_statement_token1] = ACTIONS(4599), - [aux_sym_enum_statement_token1] = ACTIONS(4599), - [aux_sym_file_position_statement_token1] = ACTIONS(4599), - [aux_sym_file_position_statement_token2] = ACTIONS(4599), - [aux_sym_file_position_statement_token3] = ACTIONS(4599), - [aux_sym_file_position_statement_token4] = ACTIONS(4599), - [aux_sym_allocate_statement_token1] = ACTIONS(4599), - [aux_sym_entry_statement_token1] = ACTIONS(4599), - [aux_sym_logical_expression_token5] = ACTIONS(4601), - [anon_sym_DOT] = ACTIONS(4599), - [anon_sym_LPAREN_SLASH] = ACTIONS(4601), - [anon_sym_LBRACK] = ACTIONS(4601), - [aux_sym_boolean_literal_token1] = ACTIONS(4601), - [aux_sym_boolean_literal_token2] = ACTIONS(4601), - [aux_sym_null_literal_token1] = ACTIONS(4599), - [aux_sym_coarray_statement_token1] = ACTIONS(4599), - [aux_sym_coarray_statement_token2] = ACTIONS(4599), - [aux_sym_coarray_statement_token6] = ACTIONS(4599), - [aux_sym_coarray_statement_token8] = ACTIONS(4599), - [aux_sym_coarray_statement_token11] = ACTIONS(4599), - [aux_sym_coarray_statement_token12] = ACTIONS(4599), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4599), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4599), - [aux_sym_identifier_token1] = ACTIONS(4599), + [aux_sym_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_program_statement_token2] = ACTIONS(4407), + [aux_sym_module_statement_token1] = ACTIONS(4407), + [aux_sym_submodule_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_subroutine_statement_token1] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_function_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4407), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4407), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4407), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4601), - [sym__float_literal] = ACTIONS(4601), - [sym__boz_literal] = ACTIONS(4601), - [sym__string_literal] = ACTIONS(4601), - [sym__string_literal_kind] = ACTIONS(4601), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, [1098] = { - [aux_sym_preproc_include_token1] = ACTIONS(4307), - [aux_sym_preproc_def_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token1] = ACTIONS(4307), - [aux_sym_preproc_if_token2] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4307), - [sym_preproc_directive] = ACTIONS(4307), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token1] = ACTIONS(4307), - [aux_sym_end_program_statement_token2] = ACTIONS(4307), - [aux_sym_module_statement_token1] = ACTIONS(4307), - [aux_sym_submodule_statement_token1] = ACTIONS(4307), - [aux_sym_interface_statement_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4307), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4307), - [aux_sym_subroutine_statement_token1] = ACTIONS(4307), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4307), - [aux_sym_function_statement_token1] = ACTIONS(4307), - [aux_sym_language_binding_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token1] = ACTIONS(4307), - [aux_sym_procedure_attributes_token3] = ACTIONS(4307), - [aux_sym_contains_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token1] = ACTIONS(4307), - [aux_sym_use_statement_token2] = ACTIONS(4307), - [aux_sym_implicit_statement_token1] = ACTIONS(4307), - [aux_sym_implicit_statement_token3] = ACTIONS(4307), - [aux_sym_implicit_statement_token4] = ACTIONS(4307), - [aux_sym_save_statement_token1] = ACTIONS(4307), - [aux_sym_private_statement_token1] = ACTIONS(4307), - [aux_sym_public_statement_token1] = ACTIONS(4307), - [aux_sym_namelist_statement_token1] = ACTIONS(4307), - [aux_sym_common_statement_token1] = ACTIONS(4307), - [aux_sym_import_statement_token1] = ACTIONS(4307), - [aux_sym_derived_type_definition_token1] = ACTIONS(4307), - [aux_sym_abstract_specifier_token1] = ACTIONS(4307), - [aux_sym_procedure_attribute_token6] = ACTIONS(4307), - [aux_sym_variable_attributes_token1] = ACTIONS(4307), - [aux_sym_variable_attributes_token2] = ACTIONS(4307), - [aux_sym_variable_attributes_token3] = ACTIONS(4307), - [aux_sym_variable_attributes_token4] = ACTIONS(4307), - [aux_sym_variable_attributes_token5] = ACTIONS(4307), - [aux_sym__intrinsic_type_token1] = ACTIONS(4307), - [aux_sym__intrinsic_type_token2] = ACTIONS(4307), - [aux_sym__intrinsic_type_token3] = ACTIONS(4307), - [aux_sym__intrinsic_type_token4] = ACTIONS(4307), - [aux_sym__intrinsic_type_token6] = ACTIONS(4307), - [aux_sym__intrinsic_type_token7] = ACTIONS(4307), - [aux_sym__intrinsic_type_token8] = ACTIONS(4307), - [aux_sym__intrinsic_type_token9] = ACTIONS(4307), - [aux_sym__intrinsic_type_token10] = ACTIONS(4307), - [aux_sym_derived_type_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4307), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4307), - [aux_sym_type_qualifier_token1] = ACTIONS(4307), - [aux_sym_type_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4307), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4307), - [aux_sym_equivalence_statement_token1] = ACTIONS(4307), - [anon_sym_SEMI] = ACTIONS(4311), - [aux_sym_stop_statement_token1] = ACTIONS(4307), - [aux_sym_stop_statement_token2] = ACTIONS(4307), - [aux_sym_subroutine_call_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token1] = ACTIONS(4307), - [aux_sym_keyword_statement_token2] = ACTIONS(4307), - [aux_sym_keyword_statement_token3] = ACTIONS(4307), - [aux_sym_keyword_statement_token4] = ACTIONS(4307), - [aux_sym_keyword_statement_token6] = ACTIONS(4307), - [aux_sym_keyword_statement_token7] = ACTIONS(4307), - [aux_sym_include_statement_token1] = ACTIONS(4307), - [aux_sym_data_statement_token1] = ACTIONS(4307), - [aux_sym_do_loop_statement_token1] = ACTIONS(4307), - [aux_sym__inline_if_statement_token1] = ACTIONS(4307), - [aux_sym_end_if_statement_token1] = ACTIONS(4307), - [aux_sym_elseif_clause_token2] = ACTIONS(4307), - [aux_sym__inline_where_statement_token1] = ACTIONS(4307), - [aux_sym__forall_control_expression_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token1] = ACTIONS(4307), - [aux_sym_select_case_statement_token3] = ACTIONS(4307), - [aux_sym_select_type_statement_token1] = ACTIONS(4307), - [aux_sym_select_rank_statement_token2] = ACTIONS(4307), - [aux_sym_block_construct_token1] = ACTIONS(4307), - [aux_sym_associate_statement_token1] = ACTIONS(4307), - [aux_sym_format_statement_token1] = ACTIONS(4307), - [aux_sym_print_statement_token1] = ACTIONS(4307), - [aux_sym_open_statement_token1] = ACTIONS(4307), - [aux_sym_close_statement_token1] = ACTIONS(4307), - [aux_sym_inquire_statement_token1] = ACTIONS(4307), - [aux_sym_enum_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token1] = ACTIONS(4307), - [aux_sym_file_position_statement_token2] = ACTIONS(4307), - [aux_sym_file_position_statement_token3] = ACTIONS(4307), - [aux_sym_file_position_statement_token4] = ACTIONS(4307), - [aux_sym_allocate_statement_token1] = ACTIONS(4307), - [aux_sym_entry_statement_token1] = ACTIONS(4307), - [aux_sym_logical_expression_token5] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LPAREN_SLASH] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [aux_sym_boolean_literal_token1] = ACTIONS(4311), - [aux_sym_boolean_literal_token2] = ACTIONS(4311), - [aux_sym_null_literal_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_statement_token2] = ACTIONS(4307), - [aux_sym_coarray_statement_token6] = ACTIONS(4307), - [aux_sym_coarray_statement_token8] = ACTIONS(4307), - [aux_sym_coarray_statement_token11] = ACTIONS(4307), - [aux_sym_coarray_statement_token12] = ACTIONS(4307), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4307), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4307), - [aux_sym_identifier_token1] = ACTIONS(4307), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4311), - [sym__float_literal] = ACTIONS(4311), - [sym__boz_literal] = ACTIONS(4311), - [sym__string_literal] = ACTIONS(4311), - [sym__string_literal_kind] = ACTIONS(4311), + [aux_sym_preproc_include_token1] = ACTIONS(4423), + [aux_sym_preproc_def_token1] = ACTIONS(4423), + [aux_sym_preproc_if_token1] = ACTIONS(4423), + [aux_sym_preproc_if_token2] = ACTIONS(4423), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4423), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4423), + [sym_preproc_directive] = ACTIONS(4423), + [anon_sym_LPAREN2] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4425), + [anon_sym_DASH] = ACTIONS(4425), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_program_statement_token1] = ACTIONS(4423), + [aux_sym_end_program_statement_token1] = ACTIONS(4423), + [aux_sym_end_program_statement_token2] = ACTIONS(4423), + [aux_sym_module_statement_token1] = ACTIONS(4423), + [aux_sym_submodule_statement_token1] = ACTIONS(4423), + [aux_sym_interface_statement_token1] = ACTIONS(4423), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4423), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4423), + [aux_sym_subroutine_statement_token1] = ACTIONS(4423), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4423), + [aux_sym_function_statement_token1] = ACTIONS(4423), + [aux_sym_language_binding_token1] = ACTIONS(4423), + [aux_sym_procedure_attributes_token1] = ACTIONS(4423), + [aux_sym_procedure_attributes_token3] = ACTIONS(4423), + [aux_sym_contains_statement_token1] = ACTIONS(4423), + [aux_sym_use_statement_token1] = ACTIONS(4423), + [aux_sym_use_statement_token2] = ACTIONS(4423), + [aux_sym_implicit_statement_token1] = ACTIONS(4423), + [aux_sym_implicit_statement_token3] = ACTIONS(4423), + [aux_sym_implicit_statement_token4] = ACTIONS(4423), + [aux_sym_save_statement_token1] = ACTIONS(4423), + [aux_sym_private_statement_token1] = ACTIONS(4423), + [aux_sym_public_statement_token1] = ACTIONS(4423), + [aux_sym_namelist_statement_token1] = ACTIONS(4423), + [aux_sym_common_statement_token1] = ACTIONS(4423), + [aux_sym_import_statement_token1] = ACTIONS(4423), + [aux_sym_derived_type_definition_token1] = ACTIONS(4423), + [aux_sym_abstract_specifier_token1] = ACTIONS(4423), + [aux_sym_procedure_attribute_token6] = ACTIONS(4423), + [aux_sym_variable_attributes_token1] = ACTIONS(4423), + [aux_sym_variable_attributes_token2] = ACTIONS(4423), + [aux_sym_variable_attributes_token3] = ACTIONS(4423), + [aux_sym_variable_attributes_token4] = ACTIONS(4423), + [aux_sym_variable_attributes_token5] = ACTIONS(4423), + [aux_sym__intrinsic_type_token1] = ACTIONS(4423), + [aux_sym__intrinsic_type_token2] = ACTIONS(4423), + [aux_sym__intrinsic_type_token3] = ACTIONS(4423), + [aux_sym__intrinsic_type_token4] = ACTIONS(4423), + [aux_sym__intrinsic_type_token6] = ACTIONS(4423), + [aux_sym__intrinsic_type_token7] = ACTIONS(4423), + [aux_sym__intrinsic_type_token8] = ACTIONS(4423), + [aux_sym__intrinsic_type_token9] = ACTIONS(4423), + [aux_sym__intrinsic_type_token10] = ACTIONS(4423), + [aux_sym_derived_type_token1] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4423), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4423), + [aux_sym_type_qualifier_token1] = ACTIONS(4423), + [aux_sym_type_qualifier_token2] = ACTIONS(4423), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4423), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4423), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4423), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4423), + [aux_sym_equivalence_statement_token1] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [aux_sym_stop_statement_token1] = ACTIONS(4423), + [aux_sym_stop_statement_token2] = ACTIONS(4423), + [aux_sym_subroutine_call_token1] = ACTIONS(4423), + [aux_sym_keyword_statement_token1] = ACTIONS(4423), + [aux_sym_keyword_statement_token2] = ACTIONS(4423), + [aux_sym_keyword_statement_token3] = ACTIONS(4423), + [aux_sym_keyword_statement_token4] = ACTIONS(4423), + [aux_sym_keyword_statement_token6] = ACTIONS(4423), + [aux_sym_keyword_statement_token7] = ACTIONS(4423), + [aux_sym_include_statement_token1] = ACTIONS(4423), + [aux_sym_data_statement_token1] = ACTIONS(4423), + [aux_sym_do_loop_statement_token1] = ACTIONS(4423), + [aux_sym__inline_if_statement_token1] = ACTIONS(4423), + [aux_sym_end_if_statement_token1] = ACTIONS(4423), + [aux_sym_elseif_clause_token2] = ACTIONS(4423), + [aux_sym__inline_where_statement_token1] = ACTIONS(4423), + [aux_sym__forall_control_expression_token1] = ACTIONS(4423), + [aux_sym_select_case_statement_token1] = ACTIONS(4423), + [aux_sym_select_case_statement_token3] = ACTIONS(4423), + [aux_sym_select_type_statement_token1] = ACTIONS(4423), + [aux_sym_select_rank_statement_token2] = ACTIONS(4423), + [aux_sym_block_construct_token1] = ACTIONS(4423), + [aux_sym_associate_statement_token1] = ACTIONS(4423), + [aux_sym_format_statement_token1] = ACTIONS(4423), + [aux_sym_print_statement_token1] = ACTIONS(4423), + [aux_sym_open_statement_token1] = ACTIONS(4423), + [aux_sym_close_statement_token1] = ACTIONS(4423), + [aux_sym_inquire_statement_token1] = ACTIONS(4423), + [aux_sym_enum_statement_token1] = ACTIONS(4423), + [aux_sym_file_position_statement_token1] = ACTIONS(4423), + [aux_sym_file_position_statement_token2] = ACTIONS(4423), + [aux_sym_file_position_statement_token3] = ACTIONS(4423), + [aux_sym_file_position_statement_token4] = ACTIONS(4423), + [aux_sym_allocate_statement_token1] = ACTIONS(4423), + [aux_sym_entry_statement_token1] = ACTIONS(4423), + [aux_sym_logical_expression_token5] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_LPAREN_SLASH] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4425), + [aux_sym_boolean_literal_token1] = ACTIONS(4425), + [aux_sym_boolean_literal_token2] = ACTIONS(4425), + [aux_sym_null_literal_token1] = ACTIONS(4423), + [aux_sym_coarray_statement_token1] = ACTIONS(4423), + [aux_sym_coarray_statement_token2] = ACTIONS(4423), + [aux_sym_coarray_statement_token6] = ACTIONS(4423), + [aux_sym_coarray_statement_token8] = ACTIONS(4423), + [aux_sym_coarray_statement_token11] = ACTIONS(4423), + [aux_sym_coarray_statement_token12] = ACTIONS(4423), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4423), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4423), + [aux_sym_identifier_token1] = ACTIONS(4423), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4425), + [sym__float_literal] = ACTIONS(4425), + [sym__boz_literal] = ACTIONS(4425), + [sym__string_literal] = ACTIONS(4425), + [sym__string_literal_kind] = ACTIONS(4425), }, [1099] = { - [sym_preproc_include] = STATE(1117), - [sym_preproc_def] = STATE(1117), - [sym_preproc_function_def] = STATE(1117), - [sym_preproc_call] = STATE(1117), - [sym_preproc_if_in_module] = STATE(1117), - [sym_preproc_ifdef_in_module] = STATE(1117), - [sym_end_submodule_statement] = STATE(838), - [sym_interface] = STATE(1117), - [sym_interface_statement] = STATE(3810), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6536), - [sym_contains_statement] = STATE(6384), - [sym__specification_part] = STATE(1117), - [sym_use_statement] = STATE(6386), - [sym_implicit_statement] = STATE(6386), - [sym_save_statement] = STATE(6386), - [sym_private_statement] = STATE(1117), - [sym_public_statement] = STATE(1117), - [sym_namelist_statement] = STATE(6386), - [sym_common_statement] = STATE(6386), - [sym_import_statement] = STATE(6386), - [sym_derived_type_definition] = STATE(1117), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4208), - [sym_variable_declaration] = STATE(6386), + [sym_preproc_include] = STATE(1118), + [sym_preproc_def] = STATE(1118), + [sym_preproc_function_def] = STATE(1118), + [sym_preproc_call] = STATE(1118), + [sym_preproc_if_in_module] = STATE(1118), + [sym_preproc_ifdef_in_module] = STATE(1118), + [sym_end_module_statement] = STATE(861), + [sym_interface] = STATE(1118), + [sym_interface_statement] = STATE(3799), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7032), + [sym_contains_statement] = STATE(6769), + [sym__specification_part] = STATE(1118), + [sym_use_statement] = STATE(6901), + [sym_implicit_statement] = STATE(6901), + [sym_save_statement] = STATE(6901), + [sym_private_statement] = STATE(1118), + [sym_public_statement] = STATE(1118), + [sym_namelist_statement] = STATE(6901), + [sym_common_statement] = STATE(6901), + [sym_import_statement] = STATE(6901), + [sym_derived_type_definition] = STATE(1118), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4209), + [sym_variable_declaration] = STATE(6901), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6386), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6901), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6386), - [sym_equivalence_statement] = STATE(6386), - [sym_statement_label] = STATE(6886), - [sym_include_statement] = STATE(6386), - [sym_data_statement] = STATE(6386), - [sym_enum] = STATE(1117), - [sym_enum_statement] = STATE(5877), - [sym_statement_function] = STATE(6386), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6901), + [sym_equivalence_statement] = STATE(6901), + [sym_statement_label] = STATE(6627), + [sym_include_statement] = STATE(6901), + [sym_data_statement] = STATE(6901), + [sym_enum] = STATE(1118), + [sym_enum_statement] = STATE(5879), + [sym_statement_function] = STATE(6901), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1117), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_module_repeat1] = STATE(1118), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4759), [aux_sym_preproc_def_token1] = ACTIONS(4761), [aux_sym_preproc_if_token1] = ACTIONS(4763), @@ -238736,7 +238736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(4767), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4769), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4771), + [aux_sym_end_module_statement_token1] = ACTIONS(4771), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -238764,9 +238764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -238795,11 +238795,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -238814,54 +238814,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(93), [aux_sym_coarray_team_statement_token1] = ACTIONS(93), [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [1100] = { - [sym_preproc_include] = STATE(1104), - [sym_preproc_def] = STATE(1104), - [sym_preproc_function_def] = STATE(1104), - [sym_preproc_call] = STATE(1104), - [sym_preproc_if_in_module] = STATE(1104), - [sym_preproc_ifdef_in_module] = STATE(1104), - [sym_end_submodule_statement] = STATE(942), - [sym_interface] = STATE(1104), - [sym_interface_statement] = STATE(3810), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6652), - [sym_contains_statement] = STATE(6384), - [sym__specification_part] = STATE(1104), - [sym_use_statement] = STATE(6386), - [sym_implicit_statement] = STATE(6386), - [sym_save_statement] = STATE(6386), - [sym_private_statement] = STATE(1104), - [sym_public_statement] = STATE(1104), - [sym_namelist_statement] = STATE(6386), - [sym_common_statement] = STATE(6386), - [sym_import_statement] = STATE(6386), - [sym_derived_type_definition] = STATE(1104), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4208), - [sym_variable_declaration] = STATE(6386), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4665), + }, + [1100] = { + [sym_preproc_include] = STATE(1118), + [sym_preproc_def] = STATE(1118), + [sym_preproc_function_def] = STATE(1118), + [sym_preproc_call] = STATE(1118), + [sym_preproc_if_in_module] = STATE(1118), + [sym_preproc_ifdef_in_module] = STATE(1118), + [sym_end_module_statement] = STATE(1058), + [sym_interface] = STATE(1118), + [sym_interface_statement] = STATE(3799), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7062), + [sym_contains_statement] = STATE(6769), + [sym__specification_part] = STATE(1118), + [sym_use_statement] = STATE(6901), + [sym_implicit_statement] = STATE(6901), + [sym_save_statement] = STATE(6901), + [sym_private_statement] = STATE(1118), + [sym_public_statement] = STATE(1118), + [sym_namelist_statement] = STATE(6901), + [sym_common_statement] = STATE(6901), + [sym_import_statement] = STATE(6901), + [sym_derived_type_definition] = STATE(1118), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4209), + [sym_variable_declaration] = STATE(6901), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6386), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6901), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6386), - [sym_equivalence_statement] = STATE(6386), - [sym_statement_label] = STATE(6886), - [sym_include_statement] = STATE(6386), - [sym_data_statement] = STATE(6386), - [sym_enum] = STATE(1104), - [sym_enum_statement] = STATE(5877), - [sym_statement_function] = STATE(6386), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6901), + [sym_equivalence_statement] = STATE(6901), + [sym_statement_label] = STATE(6627), + [sym_include_statement] = STATE(6901), + [sym_data_statement] = STATE(6901), + [sym_enum] = STATE(1118), + [sym_enum_statement] = STATE(5879), + [sym_statement_function] = STATE(6901), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1104), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_module_repeat1] = STATE(1118), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4759), [aux_sym_preproc_def_token1] = ACTIONS(4761), [aux_sym_preproc_if_token1] = ACTIONS(4763), @@ -238870,7 +238870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(4767), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4777), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4779), + [aux_sym_end_module_statement_token1] = ACTIONS(4779), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -238898,9 +238898,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -238929,11 +238929,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -238950,52 +238950,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1101] = { - [sym_preproc_include] = STATE(1103), - [sym_preproc_def] = STATE(1103), - [sym_preproc_function_def] = STATE(1103), - [sym_preproc_call] = STATE(1103), - [sym_preproc_if_in_module] = STATE(1103), - [sym_preproc_ifdef_in_module] = STATE(1103), - [sym_end_module_statement] = STATE(891), - [sym_interface] = STATE(1103), - [sym_interface_statement] = STATE(3845), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6934), - [sym_contains_statement] = STATE(6894), - [sym__specification_part] = STATE(1103), - [sym_use_statement] = STATE(6896), - [sym_implicit_statement] = STATE(6896), - [sym_save_statement] = STATE(6896), - [sym_private_statement] = STATE(1103), - [sym_public_statement] = STATE(1103), - [sym_namelist_statement] = STATE(6896), - [sym_common_statement] = STATE(6896), - [sym_import_statement] = STATE(6896), - [sym_derived_type_definition] = STATE(1103), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4200), - [sym_variable_declaration] = STATE(6896), + [sym_preproc_include] = STATE(1112), + [sym_preproc_def] = STATE(1112), + [sym_preproc_function_def] = STATE(1112), + [sym_preproc_call] = STATE(1112), + [sym_preproc_if_in_module] = STATE(1112), + [sym_preproc_ifdef_in_module] = STATE(1112), + [sym_end_submodule_statement] = STATE(1072), + [sym_interface] = STATE(1112), + [sym_interface_statement] = STATE(3837), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6863), + [sym_contains_statement] = STATE(6302), + [sym__specification_part] = STATE(1112), + [sym_use_statement] = STATE(6304), + [sym_implicit_statement] = STATE(6304), + [sym_save_statement] = STATE(6304), + [sym_private_statement] = STATE(1112), + [sym_public_statement] = STATE(1112), + [sym_namelist_statement] = STATE(6304), + [sym_common_statement] = STATE(6304), + [sym_import_statement] = STATE(6304), + [sym_derived_type_definition] = STATE(1112), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4225), + [sym_variable_declaration] = STATE(6304), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6896), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6304), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6896), - [sym_equivalence_statement] = STATE(6896), - [sym_statement_label] = STATE(6558), - [sym_include_statement] = STATE(6896), - [sym_data_statement] = STATE(6896), - [sym_enum] = STATE(1103), - [sym_enum_statement] = STATE(5864), - [sym_statement_function] = STATE(6896), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6304), + [sym_equivalence_statement] = STATE(6304), + [sym_statement_label] = STATE(6846), + [sym_include_statement] = STATE(6304), + [sym_data_statement] = STATE(6304), + [sym_enum] = STATE(1112), + [sym_enum_statement] = STATE(5913), + [sym_statement_function] = STATE(6304), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1103), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_module_repeat1] = STATE(1112), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4781), [aux_sym_preproc_def_token1] = ACTIONS(4783), [aux_sym_preproc_if_token1] = ACTIONS(4785), @@ -239004,7 +239004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(4789), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4791), - [aux_sym_end_module_statement_token1] = ACTIONS(4793), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4793), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -239032,9 +239032,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -239063,11 +239063,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -239084,61 +239084,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1102] = { - [sym_preproc_include] = STATE(1099), - [sym_preproc_def] = STATE(1099), - [sym_preproc_function_def] = STATE(1099), - [sym_preproc_call] = STATE(1099), - [sym_preproc_if_in_module] = STATE(1099), - [sym_preproc_ifdef_in_module] = STATE(1099), - [sym_end_submodule_statement] = STATE(898), - [sym_interface] = STATE(1099), - [sym_interface_statement] = STATE(3810), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6939), - [sym_contains_statement] = STATE(6384), - [sym__specification_part] = STATE(1099), - [sym_use_statement] = STATE(6386), - [sym_implicit_statement] = STATE(6386), - [sym_save_statement] = STATE(6386), - [sym_private_statement] = STATE(1099), - [sym_public_statement] = STATE(1099), - [sym_namelist_statement] = STATE(6386), - [sym_common_statement] = STATE(6386), - [sym_import_statement] = STATE(6386), - [sym_derived_type_definition] = STATE(1099), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4208), - [sym_variable_declaration] = STATE(6386), + [sym_preproc_include] = STATE(1112), + [sym_preproc_def] = STATE(1112), + [sym_preproc_function_def] = STATE(1112), + [sym_preproc_call] = STATE(1112), + [sym_preproc_if_in_module] = STATE(1112), + [sym_preproc_ifdef_in_module] = STATE(1112), + [sym_end_submodule_statement] = STATE(863), + [sym_interface] = STATE(1112), + [sym_interface_statement] = STATE(3837), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7039), + [sym_contains_statement] = STATE(6302), + [sym__specification_part] = STATE(1112), + [sym_use_statement] = STATE(6304), + [sym_implicit_statement] = STATE(6304), + [sym_save_statement] = STATE(6304), + [sym_private_statement] = STATE(1112), + [sym_public_statement] = STATE(1112), + [sym_namelist_statement] = STATE(6304), + [sym_common_statement] = STATE(6304), + [sym_import_statement] = STATE(6304), + [sym_derived_type_definition] = STATE(1112), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4225), + [sym_variable_declaration] = STATE(6304), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6386), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6304), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6386), - [sym_equivalence_statement] = STATE(6386), - [sym_statement_label] = STATE(6886), - [sym_include_statement] = STATE(6386), - [sym_data_statement] = STATE(6386), - [sym_enum] = STATE(1099), - [sym_enum_statement] = STATE(5877), - [sym_statement_function] = STATE(6386), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6304), + [sym_equivalence_statement] = STATE(6304), + [sym_statement_label] = STATE(6846), + [sym_include_statement] = STATE(6304), + [sym_data_statement] = STATE(6304), + [sym_enum] = STATE(1112), + [sym_enum_statement] = STATE(5913), + [sym_statement_function] = STATE(6304), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1099), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4759), - [aux_sym_preproc_def_token1] = ACTIONS(4761), - [aux_sym_preproc_if_token1] = ACTIONS(4763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4765), - [sym_preproc_directive] = ACTIONS(4767), + [aux_sym_module_repeat1] = STATE(1112), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4781), + [aux_sym_preproc_def_token1] = ACTIONS(4783), + [aux_sym_preproc_if_token1] = ACTIONS(4785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4787), + [sym_preproc_directive] = ACTIONS(4789), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4769), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4771), + [aux_sym_end_program_statement_token1] = ACTIONS(4799), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4801), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -239153,8 +239153,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4773), - [aux_sym_public_statement_token1] = ACTIONS(4775), + [aux_sym_private_statement_token1] = ACTIONS(4795), + [aux_sym_public_statement_token1] = ACTIONS(4797), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -239166,9 +239166,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -239197,11 +239197,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -239218,61 +239218,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1103] = { - [sym_preproc_include] = STATE(1116), - [sym_preproc_def] = STATE(1116), - [sym_preproc_function_def] = STATE(1116), - [sym_preproc_call] = STATE(1116), - [sym_preproc_if_in_module] = STATE(1116), - [sym_preproc_ifdef_in_module] = STATE(1116), - [sym_end_module_statement] = STATE(905), - [sym_interface] = STATE(1116), - [sym_interface_statement] = STATE(3845), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6657), - [sym_contains_statement] = STATE(6894), - [sym__specification_part] = STATE(1116), - [sym_use_statement] = STATE(6896), - [sym_implicit_statement] = STATE(6896), - [sym_save_statement] = STATE(6896), - [sym_private_statement] = STATE(1116), - [sym_public_statement] = STATE(1116), - [sym_namelist_statement] = STATE(6896), - [sym_common_statement] = STATE(6896), - [sym_import_statement] = STATE(6896), - [sym_derived_type_definition] = STATE(1116), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4200), - [sym_variable_declaration] = STATE(6896), + [sym_preproc_include] = STATE(1110), + [sym_preproc_def] = STATE(1110), + [sym_preproc_function_def] = STATE(1110), + [sym_preproc_call] = STATE(1110), + [sym_preproc_if_in_module] = STATE(1110), + [sym_preproc_ifdef_in_module] = STATE(1110), + [sym_end_module_statement] = STATE(1040), + [sym_interface] = STATE(1110), + [sym_interface_statement] = STATE(3799), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6825), + [sym_contains_statement] = STATE(6769), + [sym__specification_part] = STATE(1110), + [sym_use_statement] = STATE(6901), + [sym_implicit_statement] = STATE(6901), + [sym_save_statement] = STATE(6901), + [sym_private_statement] = STATE(1110), + [sym_public_statement] = STATE(1110), + [sym_namelist_statement] = STATE(6901), + [sym_common_statement] = STATE(6901), + [sym_import_statement] = STATE(6901), + [sym_derived_type_definition] = STATE(1110), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4209), + [sym_variable_declaration] = STATE(6901), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6896), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6901), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6896), - [sym_equivalence_statement] = STATE(6896), - [sym_statement_label] = STATE(6558), - [sym_include_statement] = STATE(6896), - [sym_data_statement] = STATE(6896), - [sym_enum] = STATE(1116), - [sym_enum_statement] = STATE(5864), - [sym_statement_function] = STATE(6896), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6901), + [sym_equivalence_statement] = STATE(6901), + [sym_statement_label] = STATE(6627), + [sym_include_statement] = STATE(6901), + [sym_data_statement] = STATE(6901), + [sym_enum] = STATE(1110), + [sym_enum_statement] = STATE(5879), + [sym_statement_function] = STATE(6901), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1116), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4781), - [aux_sym_preproc_def_token1] = ACTIONS(4783), - [aux_sym_preproc_if_token1] = ACTIONS(4785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4787), - [sym_preproc_directive] = ACTIONS(4789), + [aux_sym_module_repeat1] = STATE(1110), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4759), + [aux_sym_preproc_def_token1] = ACTIONS(4761), + [aux_sym_preproc_if_token1] = ACTIONS(4763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4765), + [sym_preproc_directive] = ACTIONS(4767), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4791), - [aux_sym_end_module_statement_token1] = ACTIONS(4793), + [aux_sym_end_program_statement_token1] = ACTIONS(4803), + [aux_sym_end_module_statement_token1] = ACTIONS(4805), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -239287,8 +239287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4795), - [aux_sym_public_statement_token1] = ACTIONS(4797), + [aux_sym_private_statement_token1] = ACTIONS(4773), + [aux_sym_public_statement_token1] = ACTIONS(4775), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -239300,9 +239300,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -239331,11 +239331,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -239352,61 +239352,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1104] = { - [sym_preproc_include] = STATE(1117), - [sym_preproc_def] = STATE(1117), - [sym_preproc_function_def] = STATE(1117), - [sym_preproc_call] = STATE(1117), - [sym_preproc_if_in_module] = STATE(1117), - [sym_preproc_ifdef_in_module] = STATE(1117), - [sym_end_submodule_statement] = STATE(1054), - [sym_interface] = STATE(1117), - [sym_interface_statement] = STATE(3810), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6308), - [sym_contains_statement] = STATE(6384), - [sym__specification_part] = STATE(1117), - [sym_use_statement] = STATE(6386), - [sym_implicit_statement] = STATE(6386), - [sym_save_statement] = STATE(6386), - [sym_private_statement] = STATE(1117), - [sym_public_statement] = STATE(1117), - [sym_namelist_statement] = STATE(6386), - [sym_common_statement] = STATE(6386), - [sym_import_statement] = STATE(6386), - [sym_derived_type_definition] = STATE(1117), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4208), - [sym_variable_declaration] = STATE(6386), + [sym_preproc_include] = STATE(1112), + [sym_preproc_def] = STATE(1112), + [sym_preproc_function_def] = STATE(1112), + [sym_preproc_call] = STATE(1112), + [sym_preproc_if_in_module] = STATE(1112), + [sym_preproc_ifdef_in_module] = STATE(1112), + [sym_end_submodule_statement] = STATE(1061), + [sym_interface] = STATE(1112), + [sym_interface_statement] = STATE(3837), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6714), + [sym_contains_statement] = STATE(6302), + [sym__specification_part] = STATE(1112), + [sym_use_statement] = STATE(6304), + [sym_implicit_statement] = STATE(6304), + [sym_save_statement] = STATE(6304), + [sym_private_statement] = STATE(1112), + [sym_public_statement] = STATE(1112), + [sym_namelist_statement] = STATE(6304), + [sym_common_statement] = STATE(6304), + [sym_import_statement] = STATE(6304), + [sym_derived_type_definition] = STATE(1112), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4225), + [sym_variable_declaration] = STATE(6304), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6386), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6304), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6386), - [sym_equivalence_statement] = STATE(6386), - [sym_statement_label] = STATE(6886), - [sym_include_statement] = STATE(6386), - [sym_data_statement] = STATE(6386), - [sym_enum] = STATE(1117), - [sym_enum_statement] = STATE(5877), - [sym_statement_function] = STATE(6386), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6304), + [sym_equivalence_statement] = STATE(6304), + [sym_statement_label] = STATE(6846), + [sym_include_statement] = STATE(6304), + [sym_data_statement] = STATE(6304), + [sym_enum] = STATE(1112), + [sym_enum_statement] = STATE(5913), + [sym_statement_function] = STATE(6304), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1117), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4759), - [aux_sym_preproc_def_token1] = ACTIONS(4761), - [aux_sym_preproc_if_token1] = ACTIONS(4763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4765), - [sym_preproc_directive] = ACTIONS(4767), + [aux_sym_module_repeat1] = STATE(1112), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4781), + [aux_sym_preproc_def_token1] = ACTIONS(4783), + [aux_sym_preproc_if_token1] = ACTIONS(4785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4787), + [sym_preproc_directive] = ACTIONS(4789), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4777), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4779), + [aux_sym_end_program_statement_token1] = ACTIONS(4807), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4809), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -239421,8 +239421,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4773), - [aux_sym_public_statement_token1] = ACTIONS(4775), + [aux_sym_private_statement_token1] = ACTIONS(4795), + [aux_sym_public_statement_token1] = ACTIONS(4797), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -239434,9 +239434,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -239465,11 +239465,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -239486,52 +239486,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1105] = { - [sym_preproc_include] = STATE(1109), - [sym_preproc_def] = STATE(1109), - [sym_preproc_function_def] = STATE(1109), - [sym_preproc_call] = STATE(1109), - [sym_preproc_if_in_module] = STATE(1109), - [sym_preproc_ifdef_in_module] = STATE(1109), - [sym_end_module_statement] = STATE(1048), - [sym_interface] = STATE(1109), - [sym_interface_statement] = STATE(3845), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6655), - [sym_contains_statement] = STATE(6894), - [sym__specification_part] = STATE(1109), - [sym_use_statement] = STATE(6896), - [sym_implicit_statement] = STATE(6896), - [sym_save_statement] = STATE(6896), - [sym_private_statement] = STATE(1109), - [sym_public_statement] = STATE(1109), - [sym_namelist_statement] = STATE(6896), - [sym_common_statement] = STATE(6896), - [sym_import_statement] = STATE(6896), - [sym_derived_type_definition] = STATE(1109), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4200), - [sym_variable_declaration] = STATE(6896), + [sym_preproc_include] = STATE(1101), + [sym_preproc_def] = STATE(1101), + [sym_preproc_function_def] = STATE(1101), + [sym_preproc_call] = STATE(1101), + [sym_preproc_if_in_module] = STATE(1101), + [sym_preproc_ifdef_in_module] = STATE(1101), + [sym_end_submodule_statement] = STATE(1041), + [sym_interface] = STATE(1101), + [sym_interface_statement] = STATE(3837), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6830), + [sym_contains_statement] = STATE(6302), + [sym__specification_part] = STATE(1101), + [sym_use_statement] = STATE(6304), + [sym_implicit_statement] = STATE(6304), + [sym_save_statement] = STATE(6304), + [sym_private_statement] = STATE(1101), + [sym_public_statement] = STATE(1101), + [sym_namelist_statement] = STATE(6304), + [sym_common_statement] = STATE(6304), + [sym_import_statement] = STATE(6304), + [sym_derived_type_definition] = STATE(1101), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4225), + [sym_variable_declaration] = STATE(6304), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6896), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6304), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6896), - [sym_equivalence_statement] = STATE(6896), - [sym_statement_label] = STATE(6558), - [sym_include_statement] = STATE(6896), - [sym_data_statement] = STATE(6896), - [sym_enum] = STATE(1109), - [sym_enum_statement] = STATE(5864), - [sym_statement_function] = STATE(6896), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6304), + [sym_equivalence_statement] = STATE(6304), + [sym_statement_label] = STATE(6846), + [sym_include_statement] = STATE(6304), + [sym_data_statement] = STATE(6304), + [sym_enum] = STATE(1101), + [sym_enum_statement] = STATE(5913), + [sym_statement_function] = STATE(6304), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1109), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_module_repeat1] = STATE(1101), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4781), [aux_sym_preproc_def_token1] = ACTIONS(4783), [aux_sym_preproc_if_token1] = ACTIONS(4785), @@ -239539,8 +239539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4787), [sym_preproc_directive] = ACTIONS(4789), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4799), - [aux_sym_end_module_statement_token1] = ACTIONS(4801), + [aux_sym_end_program_statement_token1] = ACTIONS(4791), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4793), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -239568,9 +239568,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -239599,11 +239599,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -239620,61 +239620,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1106] = { - [sym_preproc_include] = STATE(1116), - [sym_preproc_def] = STATE(1116), - [sym_preproc_function_def] = STATE(1116), - [sym_preproc_call] = STATE(1116), - [sym_preproc_if_in_module] = STATE(1116), - [sym_preproc_ifdef_in_module] = STATE(1116), - [sym_end_module_statement] = STATE(1049), - [sym_interface] = STATE(1116), - [sym_interface_statement] = STATE(3845), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6599), - [sym_contains_statement] = STATE(6894), - [sym__specification_part] = STATE(1116), - [sym_use_statement] = STATE(6896), - [sym_implicit_statement] = STATE(6896), - [sym_save_statement] = STATE(6896), - [sym_private_statement] = STATE(1116), - [sym_public_statement] = STATE(1116), - [sym_namelist_statement] = STATE(6896), - [sym_common_statement] = STATE(6896), - [sym_import_statement] = STATE(6896), - [sym_derived_type_definition] = STATE(1116), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4200), - [sym_variable_declaration] = STATE(6896), + [sym_preproc_include] = STATE(1100), + [sym_preproc_def] = STATE(1100), + [sym_preproc_function_def] = STATE(1100), + [sym_preproc_call] = STATE(1100), + [sym_preproc_if_in_module] = STATE(1100), + [sym_preproc_ifdef_in_module] = STATE(1100), + [sym_end_module_statement] = STATE(1096), + [sym_interface] = STATE(1100), + [sym_interface_statement] = STATE(3799), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6567), + [sym_contains_statement] = STATE(6769), + [sym__specification_part] = STATE(1100), + [sym_use_statement] = STATE(6901), + [sym_implicit_statement] = STATE(6901), + [sym_save_statement] = STATE(6901), + [sym_private_statement] = STATE(1100), + [sym_public_statement] = STATE(1100), + [sym_namelist_statement] = STATE(6901), + [sym_common_statement] = STATE(6901), + [sym_import_statement] = STATE(6901), + [sym_derived_type_definition] = STATE(1100), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4209), + [sym_variable_declaration] = STATE(6901), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6896), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6901), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6896), - [sym_equivalence_statement] = STATE(6896), - [sym_statement_label] = STATE(6558), - [sym_include_statement] = STATE(6896), - [sym_data_statement] = STATE(6896), - [sym_enum] = STATE(1116), - [sym_enum_statement] = STATE(5864), - [sym_statement_function] = STATE(6896), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6901), + [sym_equivalence_statement] = STATE(6901), + [sym_statement_label] = STATE(6627), + [sym_include_statement] = STATE(6901), + [sym_data_statement] = STATE(6901), + [sym_enum] = STATE(1100), + [sym_enum_statement] = STATE(5879), + [sym_statement_function] = STATE(6901), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1116), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4781), - [aux_sym_preproc_def_token1] = ACTIONS(4783), - [aux_sym_preproc_if_token1] = ACTIONS(4785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4787), - [sym_preproc_directive] = ACTIONS(4789), + [aux_sym_module_repeat1] = STATE(1100), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4759), + [aux_sym_preproc_def_token1] = ACTIONS(4761), + [aux_sym_preproc_if_token1] = ACTIONS(4763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4765), + [sym_preproc_directive] = ACTIONS(4767), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4803), - [aux_sym_end_module_statement_token1] = ACTIONS(4805), + [aux_sym_end_program_statement_token1] = ACTIONS(4777), + [aux_sym_end_module_statement_token1] = ACTIONS(4779), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -239689,8 +239689,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4795), - [aux_sym_public_statement_token1] = ACTIONS(4797), + [aux_sym_private_statement_token1] = ACTIONS(4773), + [aux_sym_public_statement_token1] = ACTIONS(4775), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -239702,9 +239702,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -239733,11 +239733,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -239754,58 +239754,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1107] = { - [sym_preproc_include] = STATE(1117), - [sym_preproc_def] = STATE(1117), - [sym_preproc_function_def] = STATE(1117), - [sym_preproc_call] = STATE(1117), - [sym_preproc_if_in_module] = STATE(1117), - [sym_preproc_ifdef_in_module] = STATE(1117), - [sym_end_submodule_statement] = STATE(1060), - [sym_interface] = STATE(1117), - [sym_interface_statement] = STATE(3810), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6850), - [sym_contains_statement] = STATE(6384), - [sym__specification_part] = STATE(1117), - [sym_use_statement] = STATE(6386), - [sym_implicit_statement] = STATE(6386), - [sym_save_statement] = STATE(6386), - [sym_private_statement] = STATE(1117), - [sym_public_statement] = STATE(1117), - [sym_namelist_statement] = STATE(6386), - [sym_common_statement] = STATE(6386), - [sym_import_statement] = STATE(6386), - [sym_derived_type_definition] = STATE(1117), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4208), - [sym_variable_declaration] = STATE(6386), + [sym_preproc_include] = STATE(1104), + [sym_preproc_def] = STATE(1104), + [sym_preproc_function_def] = STATE(1104), + [sym_preproc_call] = STATE(1104), + [sym_preproc_if_in_module] = STATE(1104), + [sym_preproc_ifdef_in_module] = STATE(1104), + [sym_end_submodule_statement] = STATE(1086), + [sym_interface] = STATE(1104), + [sym_interface_statement] = STATE(3837), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6799), + [sym_contains_statement] = STATE(6302), + [sym__specification_part] = STATE(1104), + [sym_use_statement] = STATE(6304), + [sym_implicit_statement] = STATE(6304), + [sym_save_statement] = STATE(6304), + [sym_private_statement] = STATE(1104), + [sym_public_statement] = STATE(1104), + [sym_namelist_statement] = STATE(6304), + [sym_common_statement] = STATE(6304), + [sym_import_statement] = STATE(6304), + [sym_derived_type_definition] = STATE(1104), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4225), + [sym_variable_declaration] = STATE(6304), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6386), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6304), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6386), - [sym_equivalence_statement] = STATE(6386), - [sym_statement_label] = STATE(6886), - [sym_include_statement] = STATE(6386), - [sym_data_statement] = STATE(6386), - [sym_enum] = STATE(1117), - [sym_enum_statement] = STATE(5877), - [sym_statement_function] = STATE(6386), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6304), + [sym_equivalence_statement] = STATE(6304), + [sym_statement_label] = STATE(6846), + [sym_include_statement] = STATE(6304), + [sym_data_statement] = STATE(6304), + [sym_enum] = STATE(1104), + [sym_enum_statement] = STATE(5913), + [sym_statement_function] = STATE(6304), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1117), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4759), - [aux_sym_preproc_def_token1] = ACTIONS(4761), - [aux_sym_preproc_if_token1] = ACTIONS(4763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4765), - [sym_preproc_directive] = ACTIONS(4767), + [aux_sym_module_repeat1] = STATE(1104), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4781), + [aux_sym_preproc_def_token1] = ACTIONS(4783), + [aux_sym_preproc_if_token1] = ACTIONS(4785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4787), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4787), + [sym_preproc_directive] = ACTIONS(4789), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4807), [aux_sym_end_submodule_statement_token1] = ACTIONS(4809), @@ -239823,8 +239823,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4773), - [aux_sym_public_statement_token1] = ACTIONS(4775), + [aux_sym_private_statement_token1] = ACTIONS(4795), + [aux_sym_public_statement_token1] = ACTIONS(4797), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -239836,9 +239836,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -239867,11 +239867,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -239888,52 +239888,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1108] = { - [sym_preproc_include] = STATE(1107), - [sym_preproc_def] = STATE(1107), - [sym_preproc_function_def] = STATE(1107), - [sym_preproc_call] = STATE(1107), - [sym_preproc_if_in_module] = STATE(1107), - [sym_preproc_ifdef_in_module] = STATE(1107), - [sym_end_submodule_statement] = STATE(1051), - [sym_interface] = STATE(1107), - [sym_interface_statement] = STATE(3810), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6686), - [sym_contains_statement] = STATE(6384), - [sym__specification_part] = STATE(1107), - [sym_use_statement] = STATE(6386), - [sym_implicit_statement] = STATE(6386), - [sym_save_statement] = STATE(6386), - [sym_private_statement] = STATE(1107), - [sym_public_statement] = STATE(1107), - [sym_namelist_statement] = STATE(6386), - [sym_common_statement] = STATE(6386), - [sym_import_statement] = STATE(6386), - [sym_derived_type_definition] = STATE(1107), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4208), - [sym_variable_declaration] = STATE(6386), + [sym_preproc_include] = STATE(1099), + [sym_preproc_def] = STATE(1099), + [sym_preproc_function_def] = STATE(1099), + [sym_preproc_call] = STATE(1099), + [sym_preproc_if_in_module] = STATE(1099), + [sym_preproc_ifdef_in_module] = STATE(1099), + [sym_end_module_statement] = STATE(837), + [sym_interface] = STATE(1099), + [sym_interface_statement] = STATE(3799), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6978), + [sym_contains_statement] = STATE(6769), + [sym__specification_part] = STATE(1099), + [sym_use_statement] = STATE(6901), + [sym_implicit_statement] = STATE(6901), + [sym_save_statement] = STATE(6901), + [sym_private_statement] = STATE(1099), + [sym_public_statement] = STATE(1099), + [sym_namelist_statement] = STATE(6901), + [sym_common_statement] = STATE(6901), + [sym_import_statement] = STATE(6901), + [sym_derived_type_definition] = STATE(1099), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4209), + [sym_variable_declaration] = STATE(6901), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6386), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6901), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6386), - [sym_equivalence_statement] = STATE(6386), - [sym_statement_label] = STATE(6886), - [sym_include_statement] = STATE(6386), - [sym_data_statement] = STATE(6386), - [sym_enum] = STATE(1107), - [sym_enum_statement] = STATE(5877), - [sym_statement_function] = STATE(6386), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6901), + [sym_equivalence_statement] = STATE(6901), + [sym_statement_label] = STATE(6627), + [sym_include_statement] = STATE(6901), + [sym_data_statement] = STATE(6901), + [sym_enum] = STATE(1099), + [sym_enum_statement] = STATE(5879), + [sym_statement_function] = STATE(6901), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1107), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_module_repeat1] = STATE(1099), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4759), [aux_sym_preproc_def_token1] = ACTIONS(4761), [aux_sym_preproc_if_token1] = ACTIONS(4763), @@ -239941,8 +239941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4765), [sym_preproc_directive] = ACTIONS(4767), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4807), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4809), + [aux_sym_end_program_statement_token1] = ACTIONS(4769), + [aux_sym_end_module_statement_token1] = ACTIONS(4771), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -239970,9 +239970,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -240001,11 +240001,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -240022,52 +240022,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1109] = { - [sym_preproc_include] = STATE(1116), - [sym_preproc_def] = STATE(1116), - [sym_preproc_function_def] = STATE(1116), - [sym_preproc_call] = STATE(1116), - [sym_preproc_if_in_module] = STATE(1116), - [sym_preproc_ifdef_in_module] = STATE(1116), - [sym_end_module_statement] = STATE(1058), - [sym_interface] = STATE(1116), - [sym_interface_statement] = STATE(3845), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6822), - [sym_contains_statement] = STATE(6894), - [sym__specification_part] = STATE(1116), - [sym_use_statement] = STATE(6896), - [sym_implicit_statement] = STATE(6896), - [sym_save_statement] = STATE(6896), - [sym_private_statement] = STATE(1116), - [sym_public_statement] = STATE(1116), - [sym_namelist_statement] = STATE(6896), - [sym_common_statement] = STATE(6896), - [sym_import_statement] = STATE(6896), - [sym_derived_type_definition] = STATE(1116), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4200), - [sym_variable_declaration] = STATE(6896), + [sym_preproc_include] = STATE(1102), + [sym_preproc_def] = STATE(1102), + [sym_preproc_function_def] = STATE(1102), + [sym_preproc_call] = STATE(1102), + [sym_preproc_if_in_module] = STATE(1102), + [sym_preproc_ifdef_in_module] = STATE(1102), + [sym_end_submodule_statement] = STATE(853), + [sym_interface] = STATE(1102), + [sym_interface_statement] = STATE(3837), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6985), + [sym_contains_statement] = STATE(6302), + [sym__specification_part] = STATE(1102), + [sym_use_statement] = STATE(6304), + [sym_implicit_statement] = STATE(6304), + [sym_save_statement] = STATE(6304), + [sym_private_statement] = STATE(1102), + [sym_public_statement] = STATE(1102), + [sym_namelist_statement] = STATE(6304), + [sym_common_statement] = STATE(6304), + [sym_import_statement] = STATE(6304), + [sym_derived_type_definition] = STATE(1102), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4225), + [sym_variable_declaration] = STATE(6304), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6896), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6304), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6896), - [sym_equivalence_statement] = STATE(6896), - [sym_statement_label] = STATE(6558), - [sym_include_statement] = STATE(6896), - [sym_data_statement] = STATE(6896), - [sym_enum] = STATE(1116), - [sym_enum_statement] = STATE(5864), - [sym_statement_function] = STATE(6896), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6304), + [sym_equivalence_statement] = STATE(6304), + [sym_statement_label] = STATE(6846), + [sym_include_statement] = STATE(6304), + [sym_data_statement] = STATE(6304), + [sym_enum] = STATE(1102), + [sym_enum_statement] = STATE(5913), + [sym_statement_function] = STATE(6304), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1116), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_module_repeat1] = STATE(1102), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(4781), [aux_sym_preproc_def_token1] = ACTIONS(4783), [aux_sym_preproc_if_token1] = ACTIONS(4785), @@ -240076,7 +240076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(4789), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4799), - [aux_sym_end_module_statement_token1] = ACTIONS(4801), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4801), [aux_sym_interface_statement_token1] = ACTIONS(33), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), @@ -240104,9 +240104,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -240135,11 +240135,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -240156,58 +240156,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1110] = { - [sym_preproc_include] = STATE(1106), - [sym_preproc_def] = STATE(1106), - [sym_preproc_function_def] = STATE(1106), - [sym_preproc_call] = STATE(1106), - [sym_preproc_if_in_module] = STATE(1106), - [sym_preproc_ifdef_in_module] = STATE(1106), - [sym_end_module_statement] = STATE(1043), - [sym_interface] = STATE(1106), - [sym_interface_statement] = STATE(3845), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(6514), - [sym_contains_statement] = STATE(6894), - [sym__specification_part] = STATE(1106), - [sym_use_statement] = STATE(6896), - [sym_implicit_statement] = STATE(6896), - [sym_save_statement] = STATE(6896), - [sym_private_statement] = STATE(1106), - [sym_public_statement] = STATE(1106), - [sym_namelist_statement] = STATE(6896), - [sym_common_statement] = STATE(6896), - [sym_import_statement] = STATE(6896), - [sym_derived_type_definition] = STATE(1106), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4200), - [sym_variable_declaration] = STATE(6896), + [sym_preproc_include] = STATE(1118), + [sym_preproc_def] = STATE(1118), + [sym_preproc_function_def] = STATE(1118), + [sym_preproc_call] = STATE(1118), + [sym_preproc_if_in_module] = STATE(1118), + [sym_preproc_ifdef_in_module] = STATE(1118), + [sym_end_module_statement] = STATE(1068), + [sym_interface] = STATE(1118), + [sym_interface_statement] = STATE(3799), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(6852), + [sym_contains_statement] = STATE(6769), + [sym__specification_part] = STATE(1118), + [sym_use_statement] = STATE(6901), + [sym_implicit_statement] = STATE(6901), + [sym_save_statement] = STATE(6901), + [sym_private_statement] = STATE(1118), + [sym_public_statement] = STATE(1118), + [sym_namelist_statement] = STATE(6901), + [sym_common_statement] = STATE(6901), + [sym_import_statement] = STATE(6901), + [sym_derived_type_definition] = STATE(1118), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4209), + [sym_variable_declaration] = STATE(6901), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6896), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6901), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6896), - [sym_equivalence_statement] = STATE(6896), - [sym_statement_label] = STATE(6558), - [sym_include_statement] = STATE(6896), - [sym_data_statement] = STATE(6896), - [sym_enum] = STATE(1106), - [sym_enum_statement] = STATE(5864), - [sym_statement_function] = STATE(6896), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6901), + [sym_equivalence_statement] = STATE(6901), + [sym_statement_label] = STATE(6627), + [sym_include_statement] = STATE(6901), + [sym_data_statement] = STATE(6901), + [sym_enum] = STATE(1118), + [sym_enum_statement] = STATE(5879), + [sym_statement_function] = STATE(6901), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1106), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4781), - [aux_sym_preproc_def_token1] = ACTIONS(4783), - [aux_sym_preproc_if_token1] = ACTIONS(4785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4787), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4787), - [sym_preproc_directive] = ACTIONS(4789), + [aux_sym_module_repeat1] = STATE(1118), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4759), + [aux_sym_preproc_def_token1] = ACTIONS(4761), + [aux_sym_preproc_if_token1] = ACTIONS(4763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4765), + [sym_preproc_directive] = ACTIONS(4767), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4803), [aux_sym_end_module_statement_token1] = ACTIONS(4805), @@ -240225,8 +240225,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(752), [aux_sym_implicit_statement_token4] = ACTIONS(49), [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(4795), - [aux_sym_public_statement_token1] = ACTIONS(4797), + [aux_sym_private_statement_token1] = ACTIONS(4773), + [aux_sym_public_statement_token1] = ACTIONS(4775), [aux_sym_namelist_statement_token1] = ACTIONS(65), [aux_sym_common_statement_token1] = ACTIONS(67), [aux_sym_import_statement_token1] = ACTIONS(69), @@ -240238,9 +240238,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -240269,11 +240269,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -240290,1055 +240290,1055 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1111] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [aux_sym_preproc_else_token1] = ACTIONS(4295), - [aux_sym_preproc_elif_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), [sym_preproc_comment] = ACTIONS(4811), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1112] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [aux_sym_preproc_else_token1] = ACTIONS(4445), - [aux_sym_preproc_elif_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [sym_preproc_comment] = ACTIONS(4813), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [sym_preproc_include] = STATE(1112), + [sym_preproc_def] = STATE(1112), + [sym_preproc_function_def] = STATE(1112), + [sym_preproc_call] = STATE(1112), + [sym_preproc_if_in_module] = STATE(1112), + [sym_preproc_ifdef_in_module] = STATE(1112), + [sym_interface] = STATE(1112), + [sym_interface_statement] = STATE(3837), + [sym_language_binding] = STATE(3156), + [sym__specification_part] = STATE(1112), + [sym_use_statement] = STATE(6304), + [sym_implicit_statement] = STATE(6304), + [sym_save_statement] = STATE(6304), + [sym_private_statement] = STATE(1112), + [sym_public_statement] = STATE(1112), + [sym_namelist_statement] = STATE(6304), + [sym_common_statement] = STATE(6304), + [sym_import_statement] = STATE(6304), + [sym_derived_type_definition] = STATE(1112), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4225), + [sym_variable_declaration] = STATE(6304), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6304), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6304), + [sym_equivalence_statement] = STATE(6304), + [sym_statement_label] = STATE(6846), + [sym_include_statement] = STATE(6304), + [sym_data_statement] = STATE(6304), + [sym_enum] = STATE(1112), + [sym_enum_statement] = STATE(5913), + [sym_statement_function] = STATE(6304), + [sym_identifier] = STATE(7086), + [aux_sym_module_repeat1] = STATE(1112), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4813), + [aux_sym_preproc_def_token1] = ACTIONS(4816), + [aux_sym_preproc_if_token1] = ACTIONS(4819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4822), + [sym_preproc_directive] = ACTIONS(4825), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [aux_sym_end_program_statement_token1] = ACTIONS(4828), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4831), + [aux_sym_interface_statement_token1] = ACTIONS(4833), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4836), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4836), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4839), + [aux_sym_language_binding_token1] = ACTIONS(4842), + [aux_sym_procedure_attributes_token1] = ACTIONS(4845), + [aux_sym_procedure_attributes_token3] = ACTIONS(4848), + [aux_sym_contains_statement_token1] = ACTIONS(4831), + [aux_sym_use_statement_token1] = ACTIONS(4851), + [aux_sym_use_statement_token2] = ACTIONS(4848), + [aux_sym_implicit_statement_token1] = ACTIONS(4854), + [aux_sym_implicit_statement_token3] = ACTIONS(4857), + [aux_sym_implicit_statement_token4] = ACTIONS(4848), + [aux_sym_save_statement_token1] = ACTIONS(4860), + [aux_sym_private_statement_token1] = ACTIONS(4863), + [aux_sym_public_statement_token1] = ACTIONS(4866), + [aux_sym_namelist_statement_token1] = ACTIONS(4869), + [aux_sym_common_statement_token1] = ACTIONS(4872), + [aux_sym_import_statement_token1] = ACTIONS(4875), + [aux_sym_derived_type_definition_token1] = ACTIONS(4848), + [aux_sym_abstract_specifier_token1] = ACTIONS(4878), + [aux_sym_procedure_attribute_token6] = ACTIONS(4848), + [aux_sym_variable_attributes_token1] = ACTIONS(4881), + [aux_sym_variable_attributes_token2] = ACTIONS(4848), + [aux_sym_variable_attributes_token3] = ACTIONS(4848), + [aux_sym_variable_attributes_token4] = ACTIONS(4881), + [aux_sym_variable_attributes_token5] = ACTIONS(4848), + [aux_sym__intrinsic_type_token1] = ACTIONS(4884), + [aux_sym__intrinsic_type_token2] = ACTIONS(4887), + [aux_sym__intrinsic_type_token3] = ACTIONS(4884), + [aux_sym__intrinsic_type_token4] = ACTIONS(4890), + [aux_sym__intrinsic_type_token6] = ACTIONS(4887), + [aux_sym__intrinsic_type_token7] = ACTIONS(4887), + [aux_sym__intrinsic_type_token8] = ACTIONS(4893), + [aux_sym__intrinsic_type_token9] = ACTIONS(4887), + [aux_sym__intrinsic_type_token10] = ACTIONS(4887), + [aux_sym_derived_type_token1] = ACTIONS(4896), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4899), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4902), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4905), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4908), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4881), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4881), + [aux_sym_type_qualifier_token1] = ACTIONS(4836), + [aux_sym_type_qualifier_token2] = ACTIONS(4836), + [aux_sym_equivalence_statement_token1] = ACTIONS(4911), + [aux_sym_stop_statement_token1] = ACTIONS(4836), + [aux_sym_stop_statement_token2] = ACTIONS(4836), + [aux_sym_keyword_statement_token2] = ACTIONS(4836), + [aux_sym_keyword_statement_token3] = ACTIONS(4836), + [aux_sym_include_statement_token1] = ACTIONS(4914), + [aux_sym_data_statement_token1] = ACTIONS(4917), + [aux_sym__inline_if_statement_token1] = ACTIONS(4836), + [aux_sym_end_if_statement_token1] = ACTIONS(4836), + [aux_sym_elseif_clause_token2] = ACTIONS(4836), + [aux_sym_select_case_statement_token1] = ACTIONS(4920), + [aux_sym_block_construct_token1] = ACTIONS(4836), + [aux_sym_format_statement_token1] = ACTIONS(4836), + [aux_sym_inquire_statement_token1] = ACTIONS(4836), + [aux_sym_enum_statement_token1] = ACTIONS(4923), + [aux_sym_entry_statement_token1] = ACTIONS(4836), + [aux_sym_null_literal_token1] = ACTIONS(4836), + [aux_sym_coarray_statement_token1] = ACTIONS(4836), + [aux_sym_coarray_statement_token2] = ACTIONS(4836), + [aux_sym_coarray_statement_token6] = ACTIONS(4836), + [aux_sym_coarray_statement_token8] = ACTIONS(4836), + [aux_sym_coarray_statement_token11] = ACTIONS(4836), + [aux_sym_coarray_statement_token12] = ACTIONS(4836), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4836), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4836), + [aux_sym_identifier_token1] = ACTIONS(4836), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4926), }, [1113] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [aux_sym_preproc_else_token1] = ACTIONS(4817), - [aux_sym_preproc_elif_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [sym_preproc_comment] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_end_program_statement_token2] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(4929), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [1114] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [aux_sym_preproc_else_token1] = ACTIONS(4485), - [aux_sym_preproc_elif_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [sym_preproc_comment] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [aux_sym_preproc_else_token1] = ACTIONS(4571), + [aux_sym_preproc_elif_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [sym_preproc_comment] = ACTIONS(4931), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, [1115] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [aux_sym_preproc_else_token1] = ACTIONS(4827), - [aux_sym_preproc_elif_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [sym_preproc_comment] = ACTIONS(4829), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_end_program_statement_token2] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [sym_preproc_comment] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_end_program_statement_token2] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, [1116] = { - [sym_preproc_include] = STATE(1116), - [sym_preproc_def] = STATE(1116), - [sym_preproc_function_def] = STATE(1116), - [sym_preproc_call] = STATE(1116), - [sym_preproc_if_in_module] = STATE(1116), - [sym_preproc_ifdef_in_module] = STATE(1116), - [sym_interface] = STATE(1116), - [sym_interface_statement] = STATE(3845), - [sym_language_binding] = STATE(3142), - [sym__specification_part] = STATE(1116), - [sym_use_statement] = STATE(6896), - [sym_implicit_statement] = STATE(6896), - [sym_save_statement] = STATE(6896), - [sym_private_statement] = STATE(1116), - [sym_public_statement] = STATE(1116), - [sym_namelist_statement] = STATE(6896), - [sym_common_statement] = STATE(6896), - [sym_import_statement] = STATE(6896), - [sym_derived_type_definition] = STATE(1116), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4200), - [sym_variable_declaration] = STATE(6896), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6896), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6896), - [sym_equivalence_statement] = STATE(6896), - [sym_statement_label] = STATE(6558), - [sym_include_statement] = STATE(6896), - [sym_data_statement] = STATE(6896), - [sym_enum] = STATE(1116), - [sym_enum_statement] = STATE(5864), - [sym_statement_function] = STATE(6896), - [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1116), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4833), - [aux_sym_preproc_def_token1] = ACTIONS(4836), - [aux_sym_preproc_if_token1] = ACTIONS(4839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4842), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4842), - [sym_preproc_directive] = ACTIONS(4845), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4848), - [aux_sym_end_module_statement_token1] = ACTIONS(4851), - [aux_sym_interface_statement_token1] = ACTIONS(4853), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4856), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4856), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4859), - [aux_sym_language_binding_token1] = ACTIONS(4862), - [aux_sym_procedure_attributes_token1] = ACTIONS(4865), - [aux_sym_procedure_attributes_token3] = ACTIONS(4868), - [aux_sym_contains_statement_token1] = ACTIONS(4851), - [aux_sym_use_statement_token1] = ACTIONS(4871), - [aux_sym_use_statement_token2] = ACTIONS(4868), - [aux_sym_implicit_statement_token1] = ACTIONS(4874), - [aux_sym_implicit_statement_token3] = ACTIONS(4877), - [aux_sym_implicit_statement_token4] = ACTIONS(4868), - [aux_sym_save_statement_token1] = ACTIONS(4880), - [aux_sym_private_statement_token1] = ACTIONS(4883), - [aux_sym_public_statement_token1] = ACTIONS(4886), - [aux_sym_namelist_statement_token1] = ACTIONS(4889), - [aux_sym_common_statement_token1] = ACTIONS(4892), - [aux_sym_import_statement_token1] = ACTIONS(4895), - [aux_sym_derived_type_definition_token1] = ACTIONS(4868), - [aux_sym_abstract_specifier_token1] = ACTIONS(4898), - [aux_sym_procedure_attribute_token6] = ACTIONS(4868), - [aux_sym_variable_attributes_token1] = ACTIONS(4901), - [aux_sym_variable_attributes_token2] = ACTIONS(4868), - [aux_sym_variable_attributes_token3] = ACTIONS(4868), - [aux_sym_variable_attributes_token4] = ACTIONS(4901), - [aux_sym_variable_attributes_token5] = ACTIONS(4868), - [aux_sym__intrinsic_type_token1] = ACTIONS(4904), - [aux_sym__intrinsic_type_token2] = ACTIONS(4907), - [aux_sym__intrinsic_type_token3] = ACTIONS(4904), - [aux_sym__intrinsic_type_token4] = ACTIONS(4910), - [aux_sym__intrinsic_type_token6] = ACTIONS(4907), - [aux_sym__intrinsic_type_token7] = ACTIONS(4907), - [aux_sym__intrinsic_type_token8] = ACTIONS(4913), - [aux_sym__intrinsic_type_token9] = ACTIONS(4907), - [aux_sym__intrinsic_type_token10] = ACTIONS(4907), - [aux_sym_derived_type_token1] = ACTIONS(4916), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4919), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4922), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4925), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4928), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4901), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4901), - [aux_sym_type_qualifier_token1] = ACTIONS(4856), - [aux_sym_type_qualifier_token2] = ACTIONS(4856), - [aux_sym_equivalence_statement_token1] = ACTIONS(4931), - [aux_sym_stop_statement_token1] = ACTIONS(4856), - [aux_sym_stop_statement_token2] = ACTIONS(4856), - [aux_sym_keyword_statement_token2] = ACTIONS(4856), - [aux_sym_keyword_statement_token3] = ACTIONS(4856), - [aux_sym_include_statement_token1] = ACTIONS(4934), - [aux_sym_data_statement_token1] = ACTIONS(4937), - [aux_sym__inline_if_statement_token1] = ACTIONS(4856), - [aux_sym_end_if_statement_token1] = ACTIONS(4856), - [aux_sym_elseif_clause_token2] = ACTIONS(4856), - [aux_sym_select_case_statement_token1] = ACTIONS(4940), - [aux_sym_block_construct_token1] = ACTIONS(4856), - [aux_sym_format_statement_token1] = ACTIONS(4856), - [aux_sym_inquire_statement_token1] = ACTIONS(4856), - [aux_sym_enum_statement_token1] = ACTIONS(4943), - [aux_sym_entry_statement_token1] = ACTIONS(4856), - [aux_sym_null_literal_token1] = ACTIONS(4856), - [aux_sym_coarray_statement_token1] = ACTIONS(4856), - [aux_sym_coarray_statement_token2] = ACTIONS(4856), - [aux_sym_coarray_statement_token6] = ACTIONS(4856), - [aux_sym_coarray_statement_token8] = ACTIONS(4856), - [aux_sym_coarray_statement_token11] = ACTIONS(4856), - [aux_sym_coarray_statement_token12] = ACTIONS(4856), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4856), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4856), - [aux_sym_identifier_token1] = ACTIONS(4856), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4946), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [1117] = { - [sym_preproc_include] = STATE(1117), - [sym_preproc_def] = STATE(1117), - [sym_preproc_function_def] = STATE(1117), - [sym_preproc_call] = STATE(1117), - [sym_preproc_if_in_module] = STATE(1117), - [sym_preproc_ifdef_in_module] = STATE(1117), - [sym_interface] = STATE(1117), - [sym_interface_statement] = STATE(3810), - [sym_language_binding] = STATE(3142), - [sym__specification_part] = STATE(1117), - [sym_use_statement] = STATE(6386), - [sym_implicit_statement] = STATE(6386), - [sym_save_statement] = STATE(6386), - [sym_private_statement] = STATE(1117), - [sym_public_statement] = STATE(1117), - [sym_namelist_statement] = STATE(6386), - [sym_common_statement] = STATE(6386), - [sym_import_statement] = STATE(6386), - [sym_derived_type_definition] = STATE(1117), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4208), - [sym_variable_declaration] = STATE(6386), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [sym_preproc_comment] = ACTIONS(4947), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_end_program_statement_token2] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), + }, + [1118] = { + [sym_preproc_include] = STATE(1118), + [sym_preproc_def] = STATE(1118), + [sym_preproc_function_def] = STATE(1118), + [sym_preproc_call] = STATE(1118), + [sym_preproc_if_in_module] = STATE(1118), + [sym_preproc_ifdef_in_module] = STATE(1118), + [sym_interface] = STATE(1118), + [sym_interface_statement] = STATE(3799), + [sym_language_binding] = STATE(3156), + [sym__specification_part] = STATE(1118), + [sym_use_statement] = STATE(6901), + [sym_implicit_statement] = STATE(6901), + [sym_save_statement] = STATE(6901), + [sym_private_statement] = STATE(1118), + [sym_public_statement] = STATE(1118), + [sym_namelist_statement] = STATE(6901), + [sym_common_statement] = STATE(6901), + [sym_import_statement] = STATE(6901), + [sym_derived_type_definition] = STATE(1118), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4209), + [sym_variable_declaration] = STATE(6901), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6386), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6901), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6386), - [sym_equivalence_statement] = STATE(6386), - [sym_statement_label] = STATE(6886), - [sym_include_statement] = STATE(6386), - [sym_data_statement] = STATE(6386), - [sym_enum] = STATE(1117), - [sym_enum_statement] = STATE(5877), - [sym_statement_function] = STATE(6386), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6901), + [sym_equivalence_statement] = STATE(6901), + [sym_statement_label] = STATE(6627), + [sym_include_statement] = STATE(6901), + [sym_data_statement] = STATE(6901), + [sym_enum] = STATE(1118), + [sym_enum_statement] = STATE(5879), + [sym_statement_function] = STATE(6901), [sym_identifier] = STATE(7086), - [aux_sym_module_repeat1] = STATE(1117), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(4949), - [aux_sym_preproc_def_token1] = ACTIONS(4952), - [aux_sym_preproc_if_token1] = ACTIONS(4955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4958), - [sym_preproc_directive] = ACTIONS(4961), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4848), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4851), - [aux_sym_interface_statement_token1] = ACTIONS(4853), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4856), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4856), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4859), - [aux_sym_language_binding_token1] = ACTIONS(4862), - [aux_sym_procedure_attributes_token1] = ACTIONS(4865), - [aux_sym_procedure_attributes_token3] = ACTIONS(4868), - [aux_sym_contains_statement_token1] = ACTIONS(4851), - [aux_sym_use_statement_token1] = ACTIONS(4871), - [aux_sym_use_statement_token2] = ACTIONS(4868), - [aux_sym_implicit_statement_token1] = ACTIONS(4874), - [aux_sym_implicit_statement_token3] = ACTIONS(4877), - [aux_sym_implicit_statement_token4] = ACTIONS(4868), - [aux_sym_save_statement_token1] = ACTIONS(4880), - [aux_sym_private_statement_token1] = ACTIONS(4964), - [aux_sym_public_statement_token1] = ACTIONS(4967), - [aux_sym_namelist_statement_token1] = ACTIONS(4889), - [aux_sym_common_statement_token1] = ACTIONS(4892), - [aux_sym_import_statement_token1] = ACTIONS(4895), - [aux_sym_derived_type_definition_token1] = ACTIONS(4868), - [aux_sym_abstract_specifier_token1] = ACTIONS(4898), - [aux_sym_procedure_attribute_token6] = ACTIONS(4868), - [aux_sym_variable_attributes_token1] = ACTIONS(4901), - [aux_sym_variable_attributes_token2] = ACTIONS(4868), - [aux_sym_variable_attributes_token3] = ACTIONS(4868), - [aux_sym_variable_attributes_token4] = ACTIONS(4901), - [aux_sym_variable_attributes_token5] = ACTIONS(4868), - [aux_sym__intrinsic_type_token1] = ACTIONS(4904), - [aux_sym__intrinsic_type_token2] = ACTIONS(4907), - [aux_sym__intrinsic_type_token3] = ACTIONS(4904), - [aux_sym__intrinsic_type_token4] = ACTIONS(4910), - [aux_sym__intrinsic_type_token6] = ACTIONS(4907), - [aux_sym__intrinsic_type_token7] = ACTIONS(4907), - [aux_sym__intrinsic_type_token8] = ACTIONS(4913), - [aux_sym__intrinsic_type_token9] = ACTIONS(4907), - [aux_sym__intrinsic_type_token10] = ACTIONS(4907), - [aux_sym_derived_type_token1] = ACTIONS(4916), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4919), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4922), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4925), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4928), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4901), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4868), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4901), - [aux_sym_type_qualifier_token1] = ACTIONS(4856), - [aux_sym_type_qualifier_token2] = ACTIONS(4856), - [aux_sym_equivalence_statement_token1] = ACTIONS(4931), - [aux_sym_stop_statement_token1] = ACTIONS(4856), - [aux_sym_stop_statement_token2] = ACTIONS(4856), - [aux_sym_keyword_statement_token2] = ACTIONS(4856), - [aux_sym_keyword_statement_token3] = ACTIONS(4856), - [aux_sym_include_statement_token1] = ACTIONS(4934), - [aux_sym_data_statement_token1] = ACTIONS(4937), - [aux_sym__inline_if_statement_token1] = ACTIONS(4856), - [aux_sym_end_if_statement_token1] = ACTIONS(4856), - [aux_sym_elseif_clause_token2] = ACTIONS(4856), - [aux_sym_select_case_statement_token1] = ACTIONS(4940), - [aux_sym_block_construct_token1] = ACTIONS(4856), - [aux_sym_format_statement_token1] = ACTIONS(4856), - [aux_sym_inquire_statement_token1] = ACTIONS(4856), - [aux_sym_enum_statement_token1] = ACTIONS(4943), - [aux_sym_entry_statement_token1] = ACTIONS(4856), - [aux_sym_null_literal_token1] = ACTIONS(4856), - [aux_sym_coarray_statement_token1] = ACTIONS(4856), - [aux_sym_coarray_statement_token2] = ACTIONS(4856), - [aux_sym_coarray_statement_token6] = ACTIONS(4856), - [aux_sym_coarray_statement_token8] = ACTIONS(4856), - [aux_sym_coarray_statement_token11] = ACTIONS(4856), - [aux_sym_coarray_statement_token12] = ACTIONS(4856), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4856), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4856), - [aux_sym_identifier_token1] = ACTIONS(4856), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4946), - }, - [1118] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [aux_sym_preproc_else_token1] = ACTIONS(4327), - [aux_sym_preproc_elif_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [aux_sym_module_repeat1] = STATE(1118), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(4951), + [aux_sym_preproc_def_token1] = ACTIONS(4954), + [aux_sym_preproc_if_token1] = ACTIONS(4957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4960), + [sym_preproc_directive] = ACTIONS(4963), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4828), + [aux_sym_end_module_statement_token1] = ACTIONS(4831), + [aux_sym_interface_statement_token1] = ACTIONS(4833), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4836), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4836), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4839), + [aux_sym_language_binding_token1] = ACTIONS(4842), + [aux_sym_procedure_attributes_token1] = ACTIONS(4845), + [aux_sym_procedure_attributes_token3] = ACTIONS(4848), + [aux_sym_contains_statement_token1] = ACTIONS(4831), + [aux_sym_use_statement_token1] = ACTIONS(4851), + [aux_sym_use_statement_token2] = ACTIONS(4848), + [aux_sym_implicit_statement_token1] = ACTIONS(4854), + [aux_sym_implicit_statement_token3] = ACTIONS(4857), + [aux_sym_implicit_statement_token4] = ACTIONS(4848), + [aux_sym_save_statement_token1] = ACTIONS(4860), + [aux_sym_private_statement_token1] = ACTIONS(4966), + [aux_sym_public_statement_token1] = ACTIONS(4969), + [aux_sym_namelist_statement_token1] = ACTIONS(4869), + [aux_sym_common_statement_token1] = ACTIONS(4872), + [aux_sym_import_statement_token1] = ACTIONS(4875), + [aux_sym_derived_type_definition_token1] = ACTIONS(4848), + [aux_sym_abstract_specifier_token1] = ACTIONS(4878), + [aux_sym_procedure_attribute_token6] = ACTIONS(4848), + [aux_sym_variable_attributes_token1] = ACTIONS(4881), + [aux_sym_variable_attributes_token2] = ACTIONS(4848), + [aux_sym_variable_attributes_token3] = ACTIONS(4848), + [aux_sym_variable_attributes_token4] = ACTIONS(4881), + [aux_sym_variable_attributes_token5] = ACTIONS(4848), + [aux_sym__intrinsic_type_token1] = ACTIONS(4884), + [aux_sym__intrinsic_type_token2] = ACTIONS(4887), + [aux_sym__intrinsic_type_token3] = ACTIONS(4884), + [aux_sym__intrinsic_type_token4] = ACTIONS(4890), + [aux_sym__intrinsic_type_token6] = ACTIONS(4887), + [aux_sym__intrinsic_type_token7] = ACTIONS(4887), + [aux_sym__intrinsic_type_token8] = ACTIONS(4893), + [aux_sym__intrinsic_type_token9] = ACTIONS(4887), + [aux_sym__intrinsic_type_token10] = ACTIONS(4887), + [aux_sym_derived_type_token1] = ACTIONS(4896), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4899), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4902), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4905), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4908), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4881), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4848), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4881), + [aux_sym_type_qualifier_token1] = ACTIONS(4836), + [aux_sym_type_qualifier_token2] = ACTIONS(4836), + [aux_sym_equivalence_statement_token1] = ACTIONS(4911), + [aux_sym_stop_statement_token1] = ACTIONS(4836), + [aux_sym_stop_statement_token2] = ACTIONS(4836), + [aux_sym_keyword_statement_token2] = ACTIONS(4836), + [aux_sym_keyword_statement_token3] = ACTIONS(4836), + [aux_sym_include_statement_token1] = ACTIONS(4914), + [aux_sym_data_statement_token1] = ACTIONS(4917), + [aux_sym__inline_if_statement_token1] = ACTIONS(4836), + [aux_sym_end_if_statement_token1] = ACTIONS(4836), + [aux_sym_elseif_clause_token2] = ACTIONS(4836), + [aux_sym_select_case_statement_token1] = ACTIONS(4920), + [aux_sym_block_construct_token1] = ACTIONS(4836), + [aux_sym_format_statement_token1] = ACTIONS(4836), + [aux_sym_inquire_statement_token1] = ACTIONS(4836), + [aux_sym_enum_statement_token1] = ACTIONS(4923), + [aux_sym_entry_statement_token1] = ACTIONS(4836), + [aux_sym_null_literal_token1] = ACTIONS(4836), + [aux_sym_coarray_statement_token1] = ACTIONS(4836), + [aux_sym_coarray_statement_token2] = ACTIONS(4836), + [aux_sym_coarray_statement_token6] = ACTIONS(4836), + [aux_sym_coarray_statement_token8] = ACTIONS(4836), + [aux_sym_coarray_statement_token11] = ACTIONS(4836), + [aux_sym_coarray_statement_token12] = ACTIONS(4836), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4836), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4836), + [aux_sym_identifier_token1] = ACTIONS(4836), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4926), }, [1119] = { [aux_sym_preproc_include_token1] = ACTIONS(4972), @@ -241474,17 +241474,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(4976), [aux_sym_preproc_def_token1] = ACTIONS(4976), [aux_sym_preproc_if_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token2] = ACTIONS(4976), + [aux_sym_preproc_if_token2] = ACTIONS(4978), [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), - [aux_sym_preproc_else_token1] = ACTIONS(4976), - [aux_sym_preproc_elif_token1] = ACTIONS(4976), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4976), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4976), + [aux_sym_preproc_else_token1] = ACTIONS(4978), + [aux_sym_preproc_elif_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4978), [sym_preproc_directive] = ACTIONS(4976), [anon_sym_LPAREN2] = ACTIONS(4976), - [anon_sym_PLUS] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4976), [aux_sym_end_program_statement_token2] = ACTIONS(4976), @@ -241541,7 +241541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(4976), [aux_sym_type_qualifier_token2] = ACTIONS(4976), [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4980), [aux_sym_stop_statement_token1] = ACTIONS(4976), [aux_sym_stop_statement_token2] = ACTIONS(4976), [aux_sym_subroutine_call_token1] = ACTIONS(4976), @@ -241577,12 +241577,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4976), [aux_sym_allocate_statement_token1] = ACTIONS(4976), [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_logical_expression_token5] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(4980), [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_LPAREN_SLASH] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [aux_sym_boolean_literal_token1] = ACTIONS(4978), - [aux_sym_boolean_literal_token2] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), [aux_sym_null_literal_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token2] = ACTIONS(4976), @@ -241594,271 +241594,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), [aux_sym_identifier_token1] = ACTIONS(4976), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - [sym__float_literal] = ACTIONS(4978), - [sym__boz_literal] = ACTIONS(4978), - [sym__string_literal] = ACTIONS(4978), - [sym__string_literal_kind] = ACTIONS(4978), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, [1121] = { - [aux_sym_preproc_include_token1] = ACTIONS(4980), - [aux_sym_preproc_def_token1] = ACTIONS(4980), - [aux_sym_preproc_if_token1] = ACTIONS(4980), - [aux_sym_preproc_if_token2] = ACTIONS(4983), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4980), - [aux_sym_preproc_else_token1] = ACTIONS(4983), - [aux_sym_preproc_elif_token1] = ACTIONS(4983), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4983), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4983), - [sym_preproc_directive] = ACTIONS(4980), - [anon_sym_LPAREN2] = ACTIONS(4980), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4980), - [aux_sym_end_program_statement_token2] = ACTIONS(4988), - [aux_sym_interface_statement_token1] = ACTIONS(4980), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4980), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4980), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4980), - [aux_sym_language_binding_token1] = ACTIONS(4980), - [aux_sym_procedure_attributes_token1] = ACTIONS(4980), - [aux_sym_procedure_attributes_token3] = ACTIONS(4980), - [aux_sym_contains_statement_token1] = ACTIONS(4980), - [aux_sym_use_statement_token1] = ACTIONS(4980), - [aux_sym_use_statement_token2] = ACTIONS(4980), - [aux_sym_implicit_statement_token1] = ACTIONS(4980), - [aux_sym_implicit_statement_token3] = ACTIONS(4980), - [aux_sym_implicit_statement_token4] = ACTIONS(4980), - [aux_sym_save_statement_token1] = ACTIONS(4980), - [aux_sym_private_statement_token1] = ACTIONS(4980), - [aux_sym_public_statement_token1] = ACTIONS(4980), - [aux_sym_namelist_statement_token1] = ACTIONS(4980), - [aux_sym_common_statement_token1] = ACTIONS(4980), - [aux_sym_import_statement_token1] = ACTIONS(4980), - [aux_sym_derived_type_definition_token1] = ACTIONS(4980), - [aux_sym_abstract_specifier_token1] = ACTIONS(4980), - [aux_sym_procedure_attribute_token6] = ACTIONS(4980), - [aux_sym_variable_attributes_token1] = ACTIONS(4980), - [aux_sym_variable_attributes_token2] = ACTIONS(4980), - [aux_sym_variable_attributes_token3] = ACTIONS(4980), - [aux_sym_variable_attributes_token4] = ACTIONS(4980), - [aux_sym_variable_attributes_token5] = ACTIONS(4980), - [aux_sym__intrinsic_type_token1] = ACTIONS(4980), - [aux_sym__intrinsic_type_token2] = ACTIONS(4980), - [aux_sym__intrinsic_type_token3] = ACTIONS(4980), - [aux_sym__intrinsic_type_token4] = ACTIONS(4980), - [aux_sym__intrinsic_type_token6] = ACTIONS(4980), - [aux_sym__intrinsic_type_token7] = ACTIONS(4980), - [aux_sym__intrinsic_type_token8] = ACTIONS(4980), - [aux_sym__intrinsic_type_token9] = ACTIONS(4980), - [aux_sym__intrinsic_type_token10] = ACTIONS(4980), - [aux_sym_derived_type_token1] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4980), - [aux_sym_type_qualifier_token1] = ACTIONS(4980), - [aux_sym_type_qualifier_token2] = ACTIONS(4980), - [aux_sym_equivalence_statement_token1] = ACTIONS(4980), - [anon_sym_SEMI] = ACTIONS(4985), - [aux_sym_stop_statement_token1] = ACTIONS(4980), - [aux_sym_stop_statement_token2] = ACTIONS(4980), - [aux_sym_subroutine_call_token1] = ACTIONS(4980), - [aux_sym_keyword_statement_token1] = ACTIONS(4980), - [aux_sym_keyword_statement_token2] = ACTIONS(4980), - [aux_sym_keyword_statement_token3] = ACTIONS(4980), - [aux_sym_keyword_statement_token4] = ACTIONS(4980), - [aux_sym_keyword_statement_token6] = ACTIONS(4980), - [aux_sym_keyword_statement_token7] = ACTIONS(4980), - [aux_sym_include_statement_token1] = ACTIONS(4980), - [aux_sym_data_statement_token1] = ACTIONS(4980), - [aux_sym_do_loop_statement_token1] = ACTIONS(4980), - [aux_sym__inline_if_statement_token1] = ACTIONS(4980), - [aux_sym_end_if_statement_token1] = ACTIONS(4980), - [aux_sym_elseif_clause_token2] = ACTIONS(4980), - [aux_sym__inline_where_statement_token1] = ACTIONS(4980), - [aux_sym__forall_control_expression_token1] = ACTIONS(4980), - [aux_sym_select_case_statement_token1] = ACTIONS(4980), - [aux_sym_select_case_statement_token3] = ACTIONS(4980), - [aux_sym_select_type_statement_token1] = ACTIONS(4980), - [aux_sym_select_rank_statement_token2] = ACTIONS(4980), - [aux_sym_block_construct_token1] = ACTIONS(4980), - [aux_sym_associate_statement_token1] = ACTIONS(4980), - [aux_sym_format_statement_token1] = ACTIONS(4980), - [aux_sym_print_statement_token1] = ACTIONS(4980), - [aux_sym_open_statement_token1] = ACTIONS(4980), - [aux_sym_close_statement_token1] = ACTIONS(4980), - [aux_sym_inquire_statement_token1] = ACTIONS(4980), - [aux_sym_enum_statement_token1] = ACTIONS(4980), - [aux_sym_file_position_statement_token1] = ACTIONS(4980), - [aux_sym_file_position_statement_token2] = ACTIONS(4980), - [aux_sym_file_position_statement_token3] = ACTIONS(4980), - [aux_sym_file_position_statement_token4] = ACTIONS(4980), - [aux_sym_allocate_statement_token1] = ACTIONS(4980), - [aux_sym_entry_statement_token1] = ACTIONS(4980), - [aux_sym_logical_expression_token5] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_LPAREN_SLASH] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [aux_sym_boolean_literal_token1] = ACTIONS(4985), - [aux_sym_boolean_literal_token2] = ACTIONS(4985), - [aux_sym_null_literal_token1] = ACTIONS(4980), - [aux_sym_coarray_statement_token1] = ACTIONS(4980), - [aux_sym_coarray_statement_token2] = ACTIONS(4980), - [aux_sym_coarray_statement_token6] = ACTIONS(4980), - [aux_sym_coarray_statement_token8] = ACTIONS(4980), - [aux_sym_coarray_statement_token11] = ACTIONS(4980), - [aux_sym_coarray_statement_token12] = ACTIONS(4980), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4980), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4980), - [aux_sym_identifier_token1] = ACTIONS(4980), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4985), - [sym__float_literal] = ACTIONS(4985), - [sym__boz_literal] = ACTIONS(4985), - [sym__string_literal] = ACTIONS(4985), - [sym__string_literal_kind] = ACTIONS(4985), + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token2] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [aux_sym_preproc_else_token1] = ACTIONS(4982), + [aux_sym_preproc_elif_token1] = ACTIONS(4982), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_end_program_statement_token2] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_subroutine_call_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_keyword_statement_token4] = ACTIONS(4982), + [aux_sym_keyword_statement_token6] = ACTIONS(4982), + [aux_sym_keyword_statement_token7] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym_do_loop_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym__inline_where_statement_token1] = ACTIONS(4982), + [aux_sym__forall_control_expression_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token3] = ACTIONS(4982), + [aux_sym_select_type_statement_token1] = ACTIONS(4982), + [aux_sym_select_rank_statement_token2] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_associate_statement_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_print_statement_token1] = ACTIONS(4982), + [aux_sym_open_statement_token1] = ACTIONS(4982), + [aux_sym_close_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token2] = ACTIONS(4982), + [aux_sym_file_position_statement_token3] = ACTIONS(4982), + [aux_sym_file_position_statement_token4] = ACTIONS(4982), + [aux_sym_allocate_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_logical_expression_token5] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_LPAREN_SLASH] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [aux_sym_boolean_literal_token1] = ACTIONS(4984), + [aux_sym_boolean_literal_token2] = ACTIONS(4984), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + [sym__float_literal] = ACTIONS(4984), + [sym__boz_literal] = ACTIONS(4984), + [sym__string_literal] = ACTIONS(4984), + [sym__string_literal_kind] = ACTIONS(4984), }, [1122] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [aux_sym_preproc_else_token1] = ACTIONS(4827), - [aux_sym_preproc_elif_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_end_program_statement_token2] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token2] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [aux_sym_preproc_else_token1] = ACTIONS(4986), + [aux_sym_preproc_elif_token1] = ACTIONS(4986), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_end_program_statement_token2] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_subroutine_call_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_keyword_statement_token4] = ACTIONS(4986), + [aux_sym_keyword_statement_token6] = ACTIONS(4986), + [aux_sym_keyword_statement_token7] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym_do_loop_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym__inline_where_statement_token1] = ACTIONS(4986), + [aux_sym__forall_control_expression_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token3] = ACTIONS(4986), + [aux_sym_select_type_statement_token1] = ACTIONS(4986), + [aux_sym_select_rank_statement_token2] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_associate_statement_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_print_statement_token1] = ACTIONS(4986), + [aux_sym_open_statement_token1] = ACTIONS(4986), + [aux_sym_close_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token2] = ACTIONS(4986), + [aux_sym_file_position_statement_token3] = ACTIONS(4986), + [aux_sym_file_position_statement_token4] = ACTIONS(4986), + [aux_sym_allocate_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_logical_expression_token5] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LPAREN_SLASH] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [aux_sym_boolean_literal_token1] = ACTIONS(4988), + [aux_sym_boolean_literal_token2] = ACTIONS(4988), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + [sym__float_literal] = ACTIONS(4988), + [sym__boz_literal] = ACTIONS(4988), + [sym__string_literal] = ACTIONS(4988), + [sym__string_literal_kind] = ACTIONS(4988), }, [1123] = { [aux_sym_preproc_include_token1] = ACTIONS(4990), @@ -241994,17 +241994,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(4994), [aux_sym_preproc_def_token1] = ACTIONS(4994), [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token2] = ACTIONS(4996), + [aux_sym_preproc_if_token2] = ACTIONS(4994), [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [aux_sym_preproc_else_token1] = ACTIONS(4996), - [aux_sym_preproc_elif_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4996), + [aux_sym_preproc_else_token1] = ACTIONS(4994), + [aux_sym_preproc_elif_token1] = ACTIONS(4994), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4994), [sym_preproc_directive] = ACTIONS(4994), [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4994), [aux_sym_end_program_statement_token2] = ACTIONS(4994), @@ -242061,7 +242061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(4994), [aux_sym_type_qualifier_token2] = ACTIONS(4994), [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4996), [aux_sym_stop_statement_token1] = ACTIONS(4994), [aux_sym_stop_statement_token2] = ACTIONS(4994), [aux_sym_subroutine_call_token1] = ACTIONS(4994), @@ -242097,12 +242097,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4994), [aux_sym_allocate_statement_token1] = ACTIONS(4994), [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(4996), [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [aux_sym_boolean_literal_token1] = ACTIONS(4996), + [aux_sym_boolean_literal_token2] = ACTIONS(4996), [aux_sym_null_literal_token1] = ACTIONS(4994), [aux_sym_coarray_statement_token1] = ACTIONS(4994), [aux_sym_coarray_statement_token2] = ACTIONS(4994), @@ -242114,189 +242114,1879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), [aux_sym_identifier_token1] = ACTIONS(4994), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [sym__integer_literal] = ACTIONS(4996), + [sym__float_literal] = ACTIONS(4996), + [sym__boz_literal] = ACTIONS(4996), + [sym__string_literal] = ACTIONS(4996), + [sym__string_literal_kind] = ACTIONS(4996), }, [1125] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [aux_sym_preproc_else_token1] = ACTIONS(4998), + [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_end_program_statement_token2] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_subroutine_call_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_keyword_statement_token4] = ACTIONS(4998), + [aux_sym_keyword_statement_token6] = ACTIONS(4998), + [aux_sym_keyword_statement_token7] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym_do_loop_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym__inline_where_statement_token1] = ACTIONS(4998), + [aux_sym__forall_control_expression_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token3] = ACTIONS(4998), + [aux_sym_select_type_statement_token1] = ACTIONS(4998), + [aux_sym_select_rank_statement_token2] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_associate_statement_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_print_statement_token1] = ACTIONS(4998), + [aux_sym_open_statement_token1] = ACTIONS(4998), + [aux_sym_close_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token2] = ACTIONS(4998), + [aux_sym_file_position_statement_token3] = ACTIONS(4998), + [aux_sym_file_position_statement_token4] = ACTIONS(4998), + [aux_sym_allocate_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [aux_sym_boolean_literal_token1] = ACTIONS(5000), + [aux_sym_boolean_literal_token2] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + [sym__float_literal] = ACTIONS(5000), + [sym__boz_literal] = ACTIONS(5000), + [sym__string_literal] = ACTIONS(5000), + [sym__string_literal_kind] = ACTIONS(5000), + }, + [1126] = { + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), [aux_sym_preproc_if_token2] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), [aux_sym_preproc_else_token1] = ACTIONS(5002), [aux_sym_preproc_elif_token1] = ACTIONS(5002), [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5002), [anon_sym_PLUS] = ACTIONS(5004), [anon_sym_DASH] = ACTIONS(5004), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_end_program_statement_token2] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token2] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_subroutine_call_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_keyword_statement_token4] = ACTIONS(5002), + [aux_sym_keyword_statement_token6] = ACTIONS(5002), + [aux_sym_keyword_statement_token7] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym_do_loop_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym__inline_where_statement_token1] = ACTIONS(5002), + [aux_sym__forall_control_expression_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token3] = ACTIONS(5002), + [aux_sym_select_type_statement_token1] = ACTIONS(5002), + [aux_sym_select_rank_statement_token2] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_associate_statement_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_print_statement_token1] = ACTIONS(5002), + [aux_sym_open_statement_token1] = ACTIONS(5002), + [aux_sym_close_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token2] = ACTIONS(5002), + [aux_sym_file_position_statement_token3] = ACTIONS(5002), + [aux_sym_file_position_statement_token4] = ACTIONS(5002), + [aux_sym_allocate_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(5002), [anon_sym_LPAREN_SLASH] = ACTIONS(5004), [anon_sym_LBRACK] = ACTIONS(5004), [aux_sym_boolean_literal_token1] = ACTIONS(5004), [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5004), + [sym__float_literal] = ACTIONS(5004), + [sym__boz_literal] = ACTIONS(5004), + [sym__string_literal] = ACTIONS(5004), + [sym__string_literal_kind] = ACTIONS(5004), + }, + [1127] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token2] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [aux_sym_preproc_else_token1] = ACTIONS(5006), + [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_end_program_statement_token2] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_subroutine_call_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_keyword_statement_token4] = ACTIONS(5006), + [aux_sym_keyword_statement_token6] = ACTIONS(5006), + [aux_sym_keyword_statement_token7] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym_do_loop_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym__inline_where_statement_token1] = ACTIONS(5006), + [aux_sym__forall_control_expression_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token3] = ACTIONS(5006), + [aux_sym_select_type_statement_token1] = ACTIONS(5006), + [aux_sym_select_rank_statement_token2] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_associate_statement_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_print_statement_token1] = ACTIONS(5006), + [aux_sym_open_statement_token1] = ACTIONS(5006), + [aux_sym_close_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token2] = ACTIONS(5006), + [aux_sym_file_position_statement_token3] = ACTIONS(5006), + [aux_sym_file_position_statement_token4] = ACTIONS(5006), + [aux_sym_allocate_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_logical_expression_token5] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_LPAREN_SLASH] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [aux_sym_boolean_literal_token1] = ACTIONS(5008), + [aux_sym_boolean_literal_token2] = ACTIONS(5008), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + [sym__float_literal] = ACTIONS(5008), + [sym__boz_literal] = ACTIONS(5008), + [sym__string_literal] = ACTIONS(5008), + [sym__string_literal_kind] = ACTIONS(5008), + }, + [1128] = { + [aux_sym_preproc_include_token1] = ACTIONS(4345), + [aux_sym_preproc_def_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token2] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4345), + [sym_preproc_directive] = ACTIONS(4345), + [anon_sym_LPAREN2] = ACTIONS(4345), + [sym_preproc_comment] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4345), + [aux_sym_interface_statement_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4345), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4345), + [aux_sym_language_binding_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token3] = ACTIONS(4345), + [aux_sym_contains_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token2] = ACTIONS(4345), + [aux_sym_implicit_statement_token1] = ACTIONS(4345), + [aux_sym_implicit_statement_token3] = ACTIONS(4345), + [aux_sym_implicit_statement_token4] = ACTIONS(4345), + [aux_sym_save_statement_token1] = ACTIONS(4345), + [aux_sym_private_statement_token1] = ACTIONS(4345), + [aux_sym_public_statement_token1] = ACTIONS(4345), + [aux_sym_namelist_statement_token1] = ACTIONS(4345), + [aux_sym_common_statement_token1] = ACTIONS(4345), + [aux_sym_import_statement_token1] = ACTIONS(4345), + [aux_sym_derived_type_definition_token1] = ACTIONS(4345), + [aux_sym_abstract_specifier_token1] = ACTIONS(4345), + [aux_sym_procedure_attribute_token6] = ACTIONS(4345), + [aux_sym_variable_attributes_token1] = ACTIONS(4345), + [aux_sym_variable_attributes_token2] = ACTIONS(4345), + [aux_sym_variable_attributes_token3] = ACTIONS(4345), + [aux_sym_variable_attributes_token4] = ACTIONS(4345), + [aux_sym_variable_attributes_token5] = ACTIONS(4345), + [aux_sym__intrinsic_type_token1] = ACTIONS(4345), + [aux_sym__intrinsic_type_token2] = ACTIONS(4345), + [aux_sym__intrinsic_type_token3] = ACTIONS(4345), + [aux_sym__intrinsic_type_token4] = ACTIONS(4345), + [aux_sym__intrinsic_type_token6] = ACTIONS(4345), + [aux_sym__intrinsic_type_token7] = ACTIONS(4345), + [aux_sym__intrinsic_type_token8] = ACTIONS(4345), + [aux_sym__intrinsic_type_token9] = ACTIONS(4345), + [aux_sym__intrinsic_type_token10] = ACTIONS(4345), + [aux_sym_derived_type_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4345), + [aux_sym_type_qualifier_token1] = ACTIONS(4345), + [aux_sym_type_qualifier_token2] = ACTIONS(4345), + [aux_sym_equivalence_statement_token1] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [aux_sym_stop_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token2] = ACTIONS(4345), + [aux_sym_subroutine_call_token1] = ACTIONS(4345), + [aux_sym_keyword_statement_token1] = ACTIONS(4345), + [aux_sym_keyword_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token3] = ACTIONS(4345), + [aux_sym_keyword_statement_token4] = ACTIONS(4345), + [aux_sym_keyword_statement_token6] = ACTIONS(4345), + [aux_sym_keyword_statement_token7] = ACTIONS(4345), + [aux_sym_include_statement_token1] = ACTIONS(4345), + [aux_sym_data_statement_token1] = ACTIONS(4345), + [aux_sym_do_loop_statement_token1] = ACTIONS(4345), + [aux_sym__inline_if_statement_token1] = ACTIONS(4345), + [aux_sym_end_if_statement_token1] = ACTIONS(4345), + [aux_sym_elseif_clause_token2] = ACTIONS(4345), + [aux_sym__inline_where_statement_token1] = ACTIONS(4345), + [aux_sym__forall_control_expression_token1] = ACTIONS(4345), + [aux_sym_select_case_statement_token1] = ACTIONS(4345), + [aux_sym_select_case_statement_token3] = ACTIONS(4345), + [aux_sym_select_type_statement_token1] = ACTIONS(4345), + [aux_sym_select_rank_statement_token2] = ACTIONS(4345), + [aux_sym_block_construct_token1] = ACTIONS(4345), + [aux_sym_associate_statement_token1] = ACTIONS(4345), + [aux_sym_format_statement_token1] = ACTIONS(4345), + [aux_sym_print_statement_token1] = ACTIONS(4345), + [aux_sym_open_statement_token1] = ACTIONS(4345), + [aux_sym_close_statement_token1] = ACTIONS(4345), + [aux_sym_inquire_statement_token1] = ACTIONS(4345), + [aux_sym_enum_statement_token1] = ACTIONS(4345), + [aux_sym_file_position_statement_token1] = ACTIONS(4345), + [aux_sym_file_position_statement_token2] = ACTIONS(4345), + [aux_sym_file_position_statement_token3] = ACTIONS(4345), + [aux_sym_file_position_statement_token4] = ACTIONS(4345), + [aux_sym_allocate_statement_token1] = ACTIONS(4345), + [aux_sym_entry_statement_token1] = ACTIONS(4345), + [aux_sym_logical_expression_token5] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LPAREN_SLASH] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_boolean_literal_token1] = ACTIONS(4347), + [aux_sym_boolean_literal_token2] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token2] = ACTIONS(4345), + [aux_sym_coarray_statement_token6] = ACTIONS(4345), + [aux_sym_coarray_statement_token8] = ACTIONS(4345), + [aux_sym_coarray_statement_token11] = ACTIONS(4345), + [aux_sym_coarray_statement_token12] = ACTIONS(4345), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4345), + [aux_sym_identifier_token1] = ACTIONS(4345), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4347), + [sym__float_literal] = ACTIONS(4347), + [sym__boz_literal] = ACTIONS(4347), + [sym__string_literal] = ACTIONS(4347), + [sym__string_literal_kind] = ACTIONS(4347), + }, + [1129] = { + [aux_sym_preproc_include_token1] = ACTIONS(4349), + [aux_sym_preproc_def_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token2] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4349), + [aux_sym_preproc_else_token1] = ACTIONS(4349), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4349), + [sym_preproc_directive] = ACTIONS(4349), + [anon_sym_LPAREN2] = ACTIONS(4349), + [sym_preproc_comment] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4349), + [aux_sym_interface_statement_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4349), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4349), + [aux_sym_language_binding_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token3] = ACTIONS(4349), + [aux_sym_contains_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token2] = ACTIONS(4349), + [aux_sym_implicit_statement_token1] = ACTIONS(4349), + [aux_sym_implicit_statement_token3] = ACTIONS(4349), + [aux_sym_implicit_statement_token4] = ACTIONS(4349), + [aux_sym_save_statement_token1] = ACTIONS(4349), + [aux_sym_private_statement_token1] = ACTIONS(4349), + [aux_sym_public_statement_token1] = ACTIONS(4349), + [aux_sym_namelist_statement_token1] = ACTIONS(4349), + [aux_sym_common_statement_token1] = ACTIONS(4349), + [aux_sym_import_statement_token1] = ACTIONS(4349), + [aux_sym_derived_type_definition_token1] = ACTIONS(4349), + [aux_sym_abstract_specifier_token1] = ACTIONS(4349), + [aux_sym_procedure_attribute_token6] = ACTIONS(4349), + [aux_sym_variable_attributes_token1] = ACTIONS(4349), + [aux_sym_variable_attributes_token2] = ACTIONS(4349), + [aux_sym_variable_attributes_token3] = ACTIONS(4349), + [aux_sym_variable_attributes_token4] = ACTIONS(4349), + [aux_sym_variable_attributes_token5] = ACTIONS(4349), + [aux_sym__intrinsic_type_token1] = ACTIONS(4349), + [aux_sym__intrinsic_type_token2] = ACTIONS(4349), + [aux_sym__intrinsic_type_token3] = ACTIONS(4349), + [aux_sym__intrinsic_type_token4] = ACTIONS(4349), + [aux_sym__intrinsic_type_token6] = ACTIONS(4349), + [aux_sym__intrinsic_type_token7] = ACTIONS(4349), + [aux_sym__intrinsic_type_token8] = ACTIONS(4349), + [aux_sym__intrinsic_type_token9] = ACTIONS(4349), + [aux_sym__intrinsic_type_token10] = ACTIONS(4349), + [aux_sym_derived_type_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4349), + [aux_sym_type_qualifier_token1] = ACTIONS(4349), + [aux_sym_type_qualifier_token2] = ACTIONS(4349), + [aux_sym_equivalence_statement_token1] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [aux_sym_stop_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token2] = ACTIONS(4349), + [aux_sym_subroutine_call_token1] = ACTIONS(4349), + [aux_sym_keyword_statement_token1] = ACTIONS(4349), + [aux_sym_keyword_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token3] = ACTIONS(4349), + [aux_sym_keyword_statement_token4] = ACTIONS(4349), + [aux_sym_keyword_statement_token6] = ACTIONS(4349), + [aux_sym_keyword_statement_token7] = ACTIONS(4349), + [aux_sym_include_statement_token1] = ACTIONS(4349), + [aux_sym_data_statement_token1] = ACTIONS(4349), + [aux_sym_do_loop_statement_token1] = ACTIONS(4349), + [aux_sym__inline_if_statement_token1] = ACTIONS(4349), + [aux_sym_end_if_statement_token1] = ACTIONS(4349), + [aux_sym_elseif_clause_token2] = ACTIONS(4349), + [aux_sym__inline_where_statement_token1] = ACTIONS(4349), + [aux_sym__forall_control_expression_token1] = ACTIONS(4349), + [aux_sym_select_case_statement_token1] = ACTIONS(4349), + [aux_sym_select_case_statement_token3] = ACTIONS(4349), + [aux_sym_select_type_statement_token1] = ACTIONS(4349), + [aux_sym_select_rank_statement_token2] = ACTIONS(4349), + [aux_sym_block_construct_token1] = ACTIONS(4349), + [aux_sym_associate_statement_token1] = ACTIONS(4349), + [aux_sym_format_statement_token1] = ACTIONS(4349), + [aux_sym_print_statement_token1] = ACTIONS(4349), + [aux_sym_open_statement_token1] = ACTIONS(4349), + [aux_sym_close_statement_token1] = ACTIONS(4349), + [aux_sym_inquire_statement_token1] = ACTIONS(4349), + [aux_sym_enum_statement_token1] = ACTIONS(4349), + [aux_sym_file_position_statement_token1] = ACTIONS(4349), + [aux_sym_file_position_statement_token2] = ACTIONS(4349), + [aux_sym_file_position_statement_token3] = ACTIONS(4349), + [aux_sym_file_position_statement_token4] = ACTIONS(4349), + [aux_sym_allocate_statement_token1] = ACTIONS(4349), + [aux_sym_entry_statement_token1] = ACTIONS(4349), + [aux_sym_logical_expression_token5] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_LPAREN_SLASH] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [aux_sym_boolean_literal_token1] = ACTIONS(4351), + [aux_sym_boolean_literal_token2] = ACTIONS(4351), + [aux_sym_null_literal_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token2] = ACTIONS(4349), + [aux_sym_coarray_statement_token6] = ACTIONS(4349), + [aux_sym_coarray_statement_token8] = ACTIONS(4349), + [aux_sym_coarray_statement_token11] = ACTIONS(4349), + [aux_sym_coarray_statement_token12] = ACTIONS(4349), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4349), + [aux_sym_identifier_token1] = ACTIONS(4349), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4351), + [sym__float_literal] = ACTIONS(4351), + [sym__boz_literal] = ACTIONS(4351), + [sym__string_literal] = ACTIONS(4351), + [sym__string_literal_kind] = ACTIONS(4351), + }, + [1130] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token2] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [aux_sym_preproc_else_token1] = ACTIONS(4255), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), + [anon_sym_LPAREN2] = ACTIONS(4255), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_subroutine_call_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_keyword_statement_token4] = ACTIONS(4255), + [aux_sym_keyword_statement_token6] = ACTIONS(4255), + [aux_sym_keyword_statement_token7] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym_do_loop_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym__inline_where_statement_token1] = ACTIONS(4255), + [aux_sym__forall_control_expression_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token3] = ACTIONS(4255), + [aux_sym_select_type_statement_token1] = ACTIONS(4255), + [aux_sym_select_rank_statement_token2] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_associate_statement_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_print_statement_token1] = ACTIONS(4255), + [aux_sym_open_statement_token1] = ACTIONS(4255), + [aux_sym_close_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token2] = ACTIONS(4255), + [aux_sym_file_position_statement_token3] = ACTIONS(4255), + [aux_sym_file_position_statement_token4] = ACTIONS(4255), + [aux_sym_allocate_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_logical_expression_token5] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LPAREN_SLASH] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_boolean_literal_token1] = ACTIONS(4257), + [aux_sym_boolean_literal_token2] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4257), + [sym__float_literal] = ACTIONS(4257), + [sym__boz_literal] = ACTIONS(4257), + [sym__string_literal] = ACTIONS(4257), + [sym__string_literal_kind] = ACTIONS(4257), + }, + [1131] = { + [aux_sym_preproc_include_token1] = ACTIONS(4315), + [aux_sym_preproc_def_token1] = ACTIONS(4315), + [aux_sym_preproc_if_token1] = ACTIONS(4315), + [aux_sym_preproc_if_token2] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), + [aux_sym_preproc_else_token1] = ACTIONS(4315), + [aux_sym_preproc_elif_token1] = ACTIONS(4315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4315), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4315), + [sym_preproc_directive] = ACTIONS(4315), + [anon_sym_LPAREN2] = ACTIONS(4315), + [sym_preproc_comment] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4315), + [aux_sym_interface_statement_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4315), + [aux_sym_language_binding_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token3] = ACTIONS(4315), + [aux_sym_contains_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token2] = ACTIONS(4315), + [aux_sym_implicit_statement_token1] = ACTIONS(4315), + [aux_sym_implicit_statement_token3] = ACTIONS(4315), + [aux_sym_implicit_statement_token4] = ACTIONS(4315), + [aux_sym_save_statement_token1] = ACTIONS(4315), + [aux_sym_private_statement_token1] = ACTIONS(4315), + [aux_sym_public_statement_token1] = ACTIONS(4315), + [aux_sym_namelist_statement_token1] = ACTIONS(4315), + [aux_sym_common_statement_token1] = ACTIONS(4315), + [aux_sym_import_statement_token1] = ACTIONS(4315), + [aux_sym_derived_type_definition_token1] = ACTIONS(4315), + [aux_sym_abstract_specifier_token1] = ACTIONS(4315), + [aux_sym_procedure_attribute_token6] = ACTIONS(4315), + [aux_sym_variable_attributes_token1] = ACTIONS(4315), + [aux_sym_variable_attributes_token2] = ACTIONS(4315), + [aux_sym_variable_attributes_token3] = ACTIONS(4315), + [aux_sym_variable_attributes_token4] = ACTIONS(4315), + [aux_sym_variable_attributes_token5] = ACTIONS(4315), + [aux_sym__intrinsic_type_token1] = ACTIONS(4315), + [aux_sym__intrinsic_type_token2] = ACTIONS(4315), + [aux_sym__intrinsic_type_token3] = ACTIONS(4315), + [aux_sym__intrinsic_type_token4] = ACTIONS(4315), + [aux_sym__intrinsic_type_token6] = ACTIONS(4315), + [aux_sym__intrinsic_type_token7] = ACTIONS(4315), + [aux_sym__intrinsic_type_token8] = ACTIONS(4315), + [aux_sym__intrinsic_type_token9] = ACTIONS(4315), + [aux_sym__intrinsic_type_token10] = ACTIONS(4315), + [aux_sym_derived_type_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4315), + [aux_sym_type_qualifier_token1] = ACTIONS(4315), + [aux_sym_type_qualifier_token2] = ACTIONS(4315), + [aux_sym_equivalence_statement_token1] = ACTIONS(4315), + [anon_sym_SEMI] = ACTIONS(4317), + [aux_sym_stop_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token2] = ACTIONS(4315), + [aux_sym_subroutine_call_token1] = ACTIONS(4315), + [aux_sym_keyword_statement_token1] = ACTIONS(4315), + [aux_sym_keyword_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token3] = ACTIONS(4315), + [aux_sym_keyword_statement_token4] = ACTIONS(4315), + [aux_sym_keyword_statement_token6] = ACTIONS(4315), + [aux_sym_keyword_statement_token7] = ACTIONS(4315), + [aux_sym_include_statement_token1] = ACTIONS(4315), + [aux_sym_data_statement_token1] = ACTIONS(4315), + [aux_sym_do_loop_statement_token1] = ACTIONS(4315), + [aux_sym__inline_if_statement_token1] = ACTIONS(4315), + [aux_sym_end_if_statement_token1] = ACTIONS(4315), + [aux_sym_elseif_clause_token2] = ACTIONS(4315), + [aux_sym__inline_where_statement_token1] = ACTIONS(4315), + [aux_sym__forall_control_expression_token1] = ACTIONS(4315), + [aux_sym_select_case_statement_token1] = ACTIONS(4315), + [aux_sym_select_case_statement_token3] = ACTIONS(4315), + [aux_sym_select_type_statement_token1] = ACTIONS(4315), + [aux_sym_select_rank_statement_token2] = ACTIONS(4315), + [aux_sym_block_construct_token1] = ACTIONS(4315), + [aux_sym_associate_statement_token1] = ACTIONS(4315), + [aux_sym_format_statement_token1] = ACTIONS(4315), + [aux_sym_print_statement_token1] = ACTIONS(4315), + [aux_sym_open_statement_token1] = ACTIONS(4315), + [aux_sym_close_statement_token1] = ACTIONS(4315), + [aux_sym_inquire_statement_token1] = ACTIONS(4315), + [aux_sym_enum_statement_token1] = ACTIONS(4315), + [aux_sym_file_position_statement_token1] = ACTIONS(4315), + [aux_sym_file_position_statement_token2] = ACTIONS(4315), + [aux_sym_file_position_statement_token3] = ACTIONS(4315), + [aux_sym_file_position_statement_token4] = ACTIONS(4315), + [aux_sym_allocate_statement_token1] = ACTIONS(4315), + [aux_sym_entry_statement_token1] = ACTIONS(4315), + [aux_sym_logical_expression_token5] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4315), + [anon_sym_LPAREN_SLASH] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [aux_sym_boolean_literal_token1] = ACTIONS(4317), + [aux_sym_boolean_literal_token2] = ACTIONS(4317), + [aux_sym_null_literal_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token2] = ACTIONS(4315), + [aux_sym_coarray_statement_token6] = ACTIONS(4315), + [aux_sym_coarray_statement_token8] = ACTIONS(4315), + [aux_sym_coarray_statement_token11] = ACTIONS(4315), + [aux_sym_coarray_statement_token12] = ACTIONS(4315), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), + [aux_sym_identifier_token1] = ACTIONS(4315), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4317), + [sym__float_literal] = ACTIONS(4317), + [sym__boz_literal] = ACTIONS(4317), + [sym__string_literal] = ACTIONS(4317), + [sym__string_literal_kind] = ACTIONS(4317), + }, + [1132] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token2] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [aux_sym_preproc_else_token1] = ACTIONS(5010), + [aux_sym_preproc_elif_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_end_program_statement_token2] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_subroutine_call_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_keyword_statement_token4] = ACTIONS(5010), + [aux_sym_keyword_statement_token6] = ACTIONS(5010), + [aux_sym_keyword_statement_token7] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym_do_loop_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym__inline_where_statement_token1] = ACTIONS(5010), + [aux_sym__forall_control_expression_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token3] = ACTIONS(5010), + [aux_sym_select_type_statement_token1] = ACTIONS(5010), + [aux_sym_select_rank_statement_token2] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_associate_statement_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_print_statement_token1] = ACTIONS(5010), + [aux_sym_open_statement_token1] = ACTIONS(5010), + [aux_sym_close_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token2] = ACTIONS(5010), + [aux_sym_file_position_statement_token3] = ACTIONS(5010), + [aux_sym_file_position_statement_token4] = ACTIONS(5010), + [aux_sym_allocate_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_logical_expression_token5] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_LPAREN_SLASH] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [aux_sym_boolean_literal_token1] = ACTIONS(5012), + [aux_sym_boolean_literal_token2] = ACTIONS(5012), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + [sym__float_literal] = ACTIONS(5012), + [sym__boz_literal] = ACTIONS(5012), + [sym__string_literal] = ACTIONS(5012), + [sym__string_literal_kind] = ACTIONS(5012), + }, + [1133] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [aux_sym_preproc_else_token1] = ACTIONS(5014), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_end_program_statement_token2] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_subroutine_call_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_keyword_statement_token4] = ACTIONS(5014), + [aux_sym_keyword_statement_token6] = ACTIONS(5014), + [aux_sym_keyword_statement_token7] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym_do_loop_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym__inline_where_statement_token1] = ACTIONS(5014), + [aux_sym__forall_control_expression_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token3] = ACTIONS(5014), + [aux_sym_select_type_statement_token1] = ACTIONS(5014), + [aux_sym_select_rank_statement_token2] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_associate_statement_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_print_statement_token1] = ACTIONS(5014), + [aux_sym_open_statement_token1] = ACTIONS(5014), + [aux_sym_close_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token2] = ACTIONS(5014), + [aux_sym_file_position_statement_token3] = ACTIONS(5014), + [aux_sym_file_position_statement_token4] = ACTIONS(5014), + [aux_sym_allocate_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_logical_expression_token5] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LPAREN_SLASH] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [aux_sym_boolean_literal_token1] = ACTIONS(5016), + [aux_sym_boolean_literal_token2] = ACTIONS(5016), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + [sym__float_literal] = ACTIONS(5016), + [sym__boz_literal] = ACTIONS(5016), + [sym__string_literal] = ACTIONS(5016), + [sym__string_literal_kind] = ACTIONS(5016), + }, + [1134] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token2] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [aux_sym_preproc_else_token1] = ACTIONS(5018), + [aux_sym_preproc_elif_token1] = ACTIONS(5018), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_end_program_statement_token2] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_subroutine_call_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_keyword_statement_token4] = ACTIONS(5018), + [aux_sym_keyword_statement_token6] = ACTIONS(5018), + [aux_sym_keyword_statement_token7] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym_do_loop_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym__inline_where_statement_token1] = ACTIONS(5018), + [aux_sym__forall_control_expression_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token3] = ACTIONS(5018), + [aux_sym_select_type_statement_token1] = ACTIONS(5018), + [aux_sym_select_rank_statement_token2] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_associate_statement_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_print_statement_token1] = ACTIONS(5018), + [aux_sym_open_statement_token1] = ACTIONS(5018), + [aux_sym_close_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token2] = ACTIONS(5018), + [aux_sym_file_position_statement_token3] = ACTIONS(5018), + [aux_sym_file_position_statement_token4] = ACTIONS(5018), + [aux_sym_allocate_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_logical_expression_token5] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_LPAREN_SLASH] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [aux_sym_boolean_literal_token1] = ACTIONS(5020), + [aux_sym_boolean_literal_token2] = ACTIONS(5020), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + [sym__float_literal] = ACTIONS(5020), + [sym__boz_literal] = ACTIONS(5020), + [sym__string_literal] = ACTIONS(5020), + [sym__string_literal_kind] = ACTIONS(5020), + }, + [1135] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token2] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [aux_sym_preproc_else_token1] = ACTIONS(5022), + [aux_sym_preproc_elif_token1] = ACTIONS(5022), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_end_program_statement_token2] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_subroutine_call_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_keyword_statement_token4] = ACTIONS(5022), + [aux_sym_keyword_statement_token6] = ACTIONS(5022), + [aux_sym_keyword_statement_token7] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym_do_loop_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym__inline_where_statement_token1] = ACTIONS(5022), + [aux_sym__forall_control_expression_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token3] = ACTIONS(5022), + [aux_sym_select_type_statement_token1] = ACTIONS(5022), + [aux_sym_select_rank_statement_token2] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_associate_statement_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_print_statement_token1] = ACTIONS(5022), + [aux_sym_open_statement_token1] = ACTIONS(5022), + [aux_sym_close_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token2] = ACTIONS(5022), + [aux_sym_file_position_statement_token3] = ACTIONS(5022), + [aux_sym_file_position_statement_token4] = ACTIONS(5022), + [aux_sym_allocate_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_logical_expression_token5] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_LPAREN_SLASH] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [aux_sym_boolean_literal_token1] = ACTIONS(5024), + [aux_sym_boolean_literal_token2] = ACTIONS(5024), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + [sym__float_literal] = ACTIONS(5024), + [sym__boz_literal] = ACTIONS(5024), + [sym__string_literal] = ACTIONS(5024), + [sym__string_literal_kind] = ACTIONS(5024), + }, + [1136] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token2] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5026), + [aux_sym_preproc_elif_token1] = ACTIONS(5026), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_end_program_statement_token2] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_subroutine_call_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_keyword_statement_token4] = ACTIONS(5026), + [aux_sym_keyword_statement_token6] = ACTIONS(5026), + [aux_sym_keyword_statement_token7] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym_do_loop_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym__inline_where_statement_token1] = ACTIONS(5026), + [aux_sym__forall_control_expression_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token3] = ACTIONS(5026), + [aux_sym_select_type_statement_token1] = ACTIONS(5026), + [aux_sym_select_rank_statement_token2] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_associate_statement_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_print_statement_token1] = ACTIONS(5026), + [aux_sym_open_statement_token1] = ACTIONS(5026), + [aux_sym_close_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token2] = ACTIONS(5026), + [aux_sym_file_position_statement_token3] = ACTIONS(5026), + [aux_sym_file_position_statement_token4] = ACTIONS(5026), + [aux_sym_allocate_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_logical_expression_token5] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_LPAREN_SLASH] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [aux_sym_boolean_literal_token1] = ACTIONS(5028), + [aux_sym_boolean_literal_token2] = ACTIONS(5028), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + [sym__float_literal] = ACTIONS(5028), + [sym__boz_literal] = ACTIONS(5028), + [sym__string_literal] = ACTIONS(5028), + [sym__string_literal_kind] = ACTIONS(5028), + }, + [1137] = { + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token2] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [aux_sym_preproc_else_token1] = ACTIONS(5032), + [aux_sym_preproc_elif_token1] = ACTIONS(5032), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_end_program_statement_token2] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), + }, + [1138] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, - [1126] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_interface] = STATE(1126), - [sym_interface_statement] = STATE(3825), - [sym_language_binding] = STATE(3142), - [sym__specification_part] = STATE(1126), - [sym_use_statement] = STATE(6577), - [sym_implicit_statement] = STATE(6577), - [sym_save_statement] = STATE(6577), - [sym_private_statement] = STATE(1126), - [sym_public_statement] = STATE(1126), - [sym_namelist_statement] = STATE(6577), - [sym_common_statement] = STATE(6577), - [sym_import_statement] = STATE(6577), - [sym_derived_type_definition] = STATE(1126), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4211), - [sym_variable_declaration] = STATE(6577), + [1139] = { + [sym_preproc_include] = STATE(1139), + [sym_preproc_def] = STATE(1139), + [sym_preproc_function_def] = STATE(1139), + [sym_preproc_call] = STATE(1139), + [sym_interface] = STATE(1139), + [sym_interface_statement] = STATE(3800), + [sym_language_binding] = STATE(3156), + [sym__specification_part] = STATE(1139), + [sym_use_statement] = STATE(6495), + [sym_implicit_statement] = STATE(6495), + [sym_save_statement] = STATE(6495), + [sym_private_statement] = STATE(1139), + [sym_public_statement] = STATE(1139), + [sym_namelist_statement] = STATE(6495), + [sym_common_statement] = STATE(6495), + [sym_import_statement] = STATE(6495), + [sym_derived_type_definition] = STATE(1139), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4219), + [sym_variable_declaration] = STATE(6495), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6577), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6495), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6577), - [sym_equivalence_statement] = STATE(6577), - [sym_statement_label] = STATE(6936), - [sym_include_statement] = STATE(6577), - [sym_data_statement] = STATE(6577), - [sym_enum] = STATE(1126), - [sym_enum_statement] = STATE(5875), - [sym_statement_function] = STATE(6577), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6495), + [sym_equivalence_statement] = STATE(6495), + [sym_statement_label] = STATE(6888), + [sym_include_statement] = STATE(6495), + [sym_data_statement] = STATE(6495), + [sym_enum] = STATE(1139), + [sym_enum_statement] = STATE(5897), + [sym_statement_function] = STATE(6495), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1126), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(5006), - [aux_sym_preproc_def_token1] = ACTIONS(5009), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1139), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(5036), + [aux_sym_preproc_def_token1] = ACTIONS(5039), [aux_sym_preproc_if_token2] = ACTIONS(3916), [aux_sym_preproc_else_token1] = ACTIONS(3916), [aux_sym_preproc_elif_token1] = ACTIONS(3916), [aux_sym_preproc_elifdef_token1] = ACTIONS(3916), [aux_sym_preproc_elifdef_token2] = ACTIONS(3916), - [sym_preproc_directive] = ACTIONS(5012), + [sym_preproc_directive] = ACTIONS(5042), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(3923), [aux_sym_interface_statement_token1] = ACTIONS(3926), @@ -242313,8 +244003,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_implicit_statement_token3] = ACTIONS(3950), [aux_sym_implicit_statement_token4] = ACTIONS(3941), [aux_sym_save_statement_token1] = ACTIONS(3953), - [aux_sym_private_statement_token1] = ACTIONS(5015), - [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5045), + [aux_sym_public_statement_token1] = ACTIONS(5048), [aux_sym_namelist_statement_token1] = ACTIONS(3962), [aux_sym_common_statement_token1] = ACTIONS(3965), [aux_sym_import_statement_token1] = ACTIONS(3968), @@ -242380,2995 +244070,1305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(4019), }, - [1127] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token2] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [aux_sym_preproc_else_token1] = ACTIONS(5021), - [aux_sym_preproc_elif_token1] = ACTIONS(5021), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_LPAREN2] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_end_program_statement_token2] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_subroutine_call_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_keyword_statement_token4] = ACTIONS(5021), - [aux_sym_keyword_statement_token6] = ACTIONS(5021), - [aux_sym_keyword_statement_token7] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym_do_loop_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym__inline_where_statement_token1] = ACTIONS(5021), - [aux_sym__forall_control_expression_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token3] = ACTIONS(5021), - [aux_sym_select_type_statement_token1] = ACTIONS(5021), - [aux_sym_select_rank_statement_token2] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_associate_statement_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_print_statement_token1] = ACTIONS(5021), - [aux_sym_open_statement_token1] = ACTIONS(5021), - [aux_sym_close_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token2] = ACTIONS(5021), - [aux_sym_file_position_statement_token3] = ACTIONS(5021), - [aux_sym_file_position_statement_token4] = ACTIONS(5021), - [aux_sym_allocate_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_logical_expression_token5] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_LPAREN_SLASH] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [aux_sym_boolean_literal_token1] = ACTIONS(5023), - [aux_sym_boolean_literal_token2] = ACTIONS(5023), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - [sym__float_literal] = ACTIONS(5023), - [sym__boz_literal] = ACTIONS(5023), - [sym__string_literal] = ACTIONS(5023), - [sym__string_literal_kind] = ACTIONS(5023), - }, - [1128] = { - [aux_sym_preproc_include_token1] = ACTIONS(4277), - [aux_sym_preproc_def_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token2] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4277), - [aux_sym_preproc_else_token1] = ACTIONS(4277), - [aux_sym_preproc_elif_token1] = ACTIONS(4277), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4277), - [sym_preproc_directive] = ACTIONS(4277), - [anon_sym_LPAREN2] = ACTIONS(4277), - [sym_preproc_comment] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4277), - [aux_sym_interface_statement_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4277), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4277), - [aux_sym_language_binding_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token3] = ACTIONS(4277), - [aux_sym_contains_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token2] = ACTIONS(4277), - [aux_sym_implicit_statement_token1] = ACTIONS(4277), - [aux_sym_implicit_statement_token3] = ACTIONS(4277), - [aux_sym_implicit_statement_token4] = ACTIONS(4277), - [aux_sym_save_statement_token1] = ACTIONS(4277), - [aux_sym_private_statement_token1] = ACTIONS(4277), - [aux_sym_public_statement_token1] = ACTIONS(4277), - [aux_sym_namelist_statement_token1] = ACTIONS(4277), - [aux_sym_common_statement_token1] = ACTIONS(4277), - [aux_sym_import_statement_token1] = ACTIONS(4277), - [aux_sym_derived_type_definition_token1] = ACTIONS(4277), - [aux_sym_abstract_specifier_token1] = ACTIONS(4277), - [aux_sym_procedure_attribute_token6] = ACTIONS(4277), - [aux_sym_variable_attributes_token1] = ACTIONS(4277), - [aux_sym_variable_attributes_token2] = ACTIONS(4277), - [aux_sym_variable_attributes_token3] = ACTIONS(4277), - [aux_sym_variable_attributes_token4] = ACTIONS(4277), - [aux_sym_variable_attributes_token5] = ACTIONS(4277), - [aux_sym__intrinsic_type_token1] = ACTIONS(4277), - [aux_sym__intrinsic_type_token2] = ACTIONS(4277), - [aux_sym__intrinsic_type_token3] = ACTIONS(4277), - [aux_sym__intrinsic_type_token4] = ACTIONS(4277), - [aux_sym__intrinsic_type_token6] = ACTIONS(4277), - [aux_sym__intrinsic_type_token7] = ACTIONS(4277), - [aux_sym__intrinsic_type_token8] = ACTIONS(4277), - [aux_sym__intrinsic_type_token9] = ACTIONS(4277), - [aux_sym__intrinsic_type_token10] = ACTIONS(4277), - [aux_sym_derived_type_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4277), - [aux_sym_type_qualifier_token1] = ACTIONS(4277), - [aux_sym_type_qualifier_token2] = ACTIONS(4277), - [aux_sym_equivalence_statement_token1] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4279), - [aux_sym_stop_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token2] = ACTIONS(4277), - [aux_sym_subroutine_call_token1] = ACTIONS(4277), - [aux_sym_keyword_statement_token1] = ACTIONS(4277), - [aux_sym_keyword_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token3] = ACTIONS(4277), - [aux_sym_keyword_statement_token4] = ACTIONS(4277), - [aux_sym_keyword_statement_token6] = ACTIONS(4277), - [aux_sym_keyword_statement_token7] = ACTIONS(4277), - [aux_sym_include_statement_token1] = ACTIONS(4277), - [aux_sym_data_statement_token1] = ACTIONS(4277), - [aux_sym_do_loop_statement_token1] = ACTIONS(4277), - [aux_sym__inline_if_statement_token1] = ACTIONS(4277), - [aux_sym_end_if_statement_token1] = ACTIONS(4277), - [aux_sym_elseif_clause_token2] = ACTIONS(4277), - [aux_sym__inline_where_statement_token1] = ACTIONS(4277), - [aux_sym__forall_control_expression_token1] = ACTIONS(4277), - [aux_sym_select_case_statement_token1] = ACTIONS(4277), - [aux_sym_select_case_statement_token3] = ACTIONS(4277), - [aux_sym_select_type_statement_token1] = ACTIONS(4277), - [aux_sym_select_rank_statement_token2] = ACTIONS(4277), - [aux_sym_block_construct_token1] = ACTIONS(4277), - [aux_sym_associate_statement_token1] = ACTIONS(4277), - [aux_sym_format_statement_token1] = ACTIONS(4277), - [aux_sym_print_statement_token1] = ACTIONS(4277), - [aux_sym_open_statement_token1] = ACTIONS(4277), - [aux_sym_close_statement_token1] = ACTIONS(4277), - [aux_sym_inquire_statement_token1] = ACTIONS(4277), - [aux_sym_enum_statement_token1] = ACTIONS(4277), - [aux_sym_file_position_statement_token1] = ACTIONS(4277), - [aux_sym_file_position_statement_token2] = ACTIONS(4277), - [aux_sym_file_position_statement_token3] = ACTIONS(4277), - [aux_sym_file_position_statement_token4] = ACTIONS(4277), - [aux_sym_allocate_statement_token1] = ACTIONS(4277), - [aux_sym_entry_statement_token1] = ACTIONS(4277), - [aux_sym_logical_expression_token5] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LPAREN_SLASH] = ACTIONS(4279), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_boolean_literal_token1] = ACTIONS(4279), - [aux_sym_boolean_literal_token2] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token2] = ACTIONS(4277), - [aux_sym_coarray_statement_token6] = ACTIONS(4277), - [aux_sym_coarray_statement_token8] = ACTIONS(4277), - [aux_sym_coarray_statement_token11] = ACTIONS(4277), - [aux_sym_coarray_statement_token12] = ACTIONS(4277), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4277), - [aux_sym_identifier_token1] = ACTIONS(4277), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4279), - [sym__float_literal] = ACTIONS(4279), - [sym__boz_literal] = ACTIONS(4279), - [sym__string_literal] = ACTIONS(4279), - [sym__string_literal_kind] = ACTIONS(4279), - }, - [1129] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token2] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [aux_sym_preproc_else_token1] = ACTIONS(5025), - [aux_sym_preproc_elif_token1] = ACTIONS(5025), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_end_program_statement_token2] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_subroutine_call_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_keyword_statement_token4] = ACTIONS(5025), - [aux_sym_keyword_statement_token6] = ACTIONS(5025), - [aux_sym_keyword_statement_token7] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym_do_loop_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym__inline_where_statement_token1] = ACTIONS(5025), - [aux_sym__forall_control_expression_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token3] = ACTIONS(5025), - [aux_sym_select_type_statement_token1] = ACTIONS(5025), - [aux_sym_select_rank_statement_token2] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_associate_statement_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_print_statement_token1] = ACTIONS(5025), - [aux_sym_open_statement_token1] = ACTIONS(5025), - [aux_sym_close_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token2] = ACTIONS(5025), - [aux_sym_file_position_statement_token3] = ACTIONS(5025), - [aux_sym_file_position_statement_token4] = ACTIONS(5025), - [aux_sym_allocate_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_logical_expression_token5] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_LPAREN_SLASH] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [aux_sym_boolean_literal_token1] = ACTIONS(5027), - [aux_sym_boolean_literal_token2] = ACTIONS(5027), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - [sym__float_literal] = ACTIONS(5027), - [sym__boz_literal] = ACTIONS(5027), - [sym__string_literal] = ACTIONS(5027), - [sym__string_literal_kind] = ACTIONS(5027), - }, - [1130] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token2] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [aux_sym_preproc_else_token1] = ACTIONS(5029), - [aux_sym_preproc_elif_token1] = ACTIONS(5029), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_LPAREN2] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_end_program_statement_token2] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_subroutine_call_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_keyword_statement_token4] = ACTIONS(5029), - [aux_sym_keyword_statement_token6] = ACTIONS(5029), - [aux_sym_keyword_statement_token7] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym_do_loop_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym__inline_where_statement_token1] = ACTIONS(5029), - [aux_sym__forall_control_expression_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token3] = ACTIONS(5029), - [aux_sym_select_type_statement_token1] = ACTIONS(5029), - [aux_sym_select_rank_statement_token2] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_associate_statement_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_print_statement_token1] = ACTIONS(5029), - [aux_sym_open_statement_token1] = ACTIONS(5029), - [aux_sym_close_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token2] = ACTIONS(5029), - [aux_sym_file_position_statement_token3] = ACTIONS(5029), - [aux_sym_file_position_statement_token4] = ACTIONS(5029), - [aux_sym_allocate_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_logical_expression_token5] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_LPAREN_SLASH] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [aux_sym_boolean_literal_token1] = ACTIONS(5031), - [aux_sym_boolean_literal_token2] = ACTIONS(5031), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - [sym__float_literal] = ACTIONS(5031), - [sym__boz_literal] = ACTIONS(5031), - [sym__string_literal] = ACTIONS(5031), - [sym__string_literal_kind] = ACTIONS(5031), - }, - [1131] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token2] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [aux_sym_preproc_else_token1] = ACTIONS(5033), - [aux_sym_preproc_elif_token1] = ACTIONS(5033), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_LPAREN2] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_end_program_statement_token2] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_subroutine_call_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_keyword_statement_token4] = ACTIONS(5033), - [aux_sym_keyword_statement_token6] = ACTIONS(5033), - [aux_sym_keyword_statement_token7] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym_do_loop_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym__inline_where_statement_token1] = ACTIONS(5033), - [aux_sym__forall_control_expression_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token3] = ACTIONS(5033), - [aux_sym_select_type_statement_token1] = ACTIONS(5033), - [aux_sym_select_rank_statement_token2] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_associate_statement_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_print_statement_token1] = ACTIONS(5033), - [aux_sym_open_statement_token1] = ACTIONS(5033), - [aux_sym_close_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token2] = ACTIONS(5033), - [aux_sym_file_position_statement_token3] = ACTIONS(5033), - [aux_sym_file_position_statement_token4] = ACTIONS(5033), - [aux_sym_allocate_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_logical_expression_token5] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_LPAREN_SLASH] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [aux_sym_boolean_literal_token1] = ACTIONS(5035), - [aux_sym_boolean_literal_token2] = ACTIONS(5035), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - [sym__float_literal] = ACTIONS(5035), - [sym__boz_literal] = ACTIONS(5035), - [sym__string_literal] = ACTIONS(5035), - [sym__string_literal_kind] = ACTIONS(5035), - }, - [1132] = { - [aux_sym_preproc_include_token1] = ACTIONS(4331), - [aux_sym_preproc_def_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token2] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4331), - [sym_preproc_directive] = ACTIONS(4331), - [anon_sym_LPAREN2] = ACTIONS(4331), - [sym_preproc_comment] = ACTIONS(4333), - [anon_sym_PLUS] = ACTIONS(4333), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4331), - [aux_sym_interface_statement_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4331), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4331), - [aux_sym_language_binding_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token3] = ACTIONS(4331), - [aux_sym_contains_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token2] = ACTIONS(4331), - [aux_sym_implicit_statement_token1] = ACTIONS(4331), - [aux_sym_implicit_statement_token3] = ACTIONS(4331), - [aux_sym_implicit_statement_token4] = ACTIONS(4331), - [aux_sym_save_statement_token1] = ACTIONS(4331), - [aux_sym_private_statement_token1] = ACTIONS(4331), - [aux_sym_public_statement_token1] = ACTIONS(4331), - [aux_sym_namelist_statement_token1] = ACTIONS(4331), - [aux_sym_common_statement_token1] = ACTIONS(4331), - [aux_sym_import_statement_token1] = ACTIONS(4331), - [aux_sym_derived_type_definition_token1] = ACTIONS(4331), - [aux_sym_abstract_specifier_token1] = ACTIONS(4331), - [aux_sym_procedure_attribute_token6] = ACTIONS(4331), - [aux_sym_variable_attributes_token1] = ACTIONS(4331), - [aux_sym_variable_attributes_token2] = ACTIONS(4331), - [aux_sym_variable_attributes_token3] = ACTIONS(4331), - [aux_sym_variable_attributes_token4] = ACTIONS(4331), - [aux_sym_variable_attributes_token5] = ACTIONS(4331), - [aux_sym__intrinsic_type_token1] = ACTIONS(4331), - [aux_sym__intrinsic_type_token2] = ACTIONS(4331), - [aux_sym__intrinsic_type_token3] = ACTIONS(4331), - [aux_sym__intrinsic_type_token4] = ACTIONS(4331), - [aux_sym__intrinsic_type_token6] = ACTIONS(4331), - [aux_sym__intrinsic_type_token7] = ACTIONS(4331), - [aux_sym__intrinsic_type_token8] = ACTIONS(4331), - [aux_sym__intrinsic_type_token9] = ACTIONS(4331), - [aux_sym__intrinsic_type_token10] = ACTIONS(4331), - [aux_sym_derived_type_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4331), - [aux_sym_type_qualifier_token1] = ACTIONS(4331), - [aux_sym_type_qualifier_token2] = ACTIONS(4331), - [aux_sym_equivalence_statement_token1] = ACTIONS(4331), - [anon_sym_SEMI] = ACTIONS(4333), - [aux_sym_stop_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token2] = ACTIONS(4331), - [aux_sym_subroutine_call_token1] = ACTIONS(4331), - [aux_sym_keyword_statement_token1] = ACTIONS(4331), - [aux_sym_keyword_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token3] = ACTIONS(4331), - [aux_sym_keyword_statement_token4] = ACTIONS(4331), - [aux_sym_keyword_statement_token6] = ACTIONS(4331), - [aux_sym_keyword_statement_token7] = ACTIONS(4331), - [aux_sym_include_statement_token1] = ACTIONS(4331), - [aux_sym_data_statement_token1] = ACTIONS(4331), - [aux_sym_do_loop_statement_token1] = ACTIONS(4331), - [aux_sym__inline_if_statement_token1] = ACTIONS(4331), - [aux_sym_end_if_statement_token1] = ACTIONS(4331), - [aux_sym_elseif_clause_token2] = ACTIONS(4331), - [aux_sym__inline_where_statement_token1] = ACTIONS(4331), - [aux_sym__forall_control_expression_token1] = ACTIONS(4331), - [aux_sym_select_case_statement_token1] = ACTIONS(4331), - [aux_sym_select_case_statement_token3] = ACTIONS(4331), - [aux_sym_select_type_statement_token1] = ACTIONS(4331), - [aux_sym_select_rank_statement_token2] = ACTIONS(4331), - [aux_sym_block_construct_token1] = ACTIONS(4331), - [aux_sym_associate_statement_token1] = ACTIONS(4331), - [aux_sym_format_statement_token1] = ACTIONS(4331), - [aux_sym_print_statement_token1] = ACTIONS(4331), - [aux_sym_open_statement_token1] = ACTIONS(4331), - [aux_sym_close_statement_token1] = ACTIONS(4331), - [aux_sym_inquire_statement_token1] = ACTIONS(4331), - [aux_sym_enum_statement_token1] = ACTIONS(4331), - [aux_sym_file_position_statement_token1] = ACTIONS(4331), - [aux_sym_file_position_statement_token2] = ACTIONS(4331), - [aux_sym_file_position_statement_token3] = ACTIONS(4331), - [aux_sym_file_position_statement_token4] = ACTIONS(4331), - [aux_sym_allocate_statement_token1] = ACTIONS(4331), - [aux_sym_entry_statement_token1] = ACTIONS(4331), - [aux_sym_logical_expression_token5] = ACTIONS(4333), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_LPAREN_SLASH] = ACTIONS(4333), - [anon_sym_LBRACK] = ACTIONS(4333), - [aux_sym_boolean_literal_token1] = ACTIONS(4333), - [aux_sym_boolean_literal_token2] = ACTIONS(4333), - [aux_sym_null_literal_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token2] = ACTIONS(4331), - [aux_sym_coarray_statement_token6] = ACTIONS(4331), - [aux_sym_coarray_statement_token8] = ACTIONS(4331), - [aux_sym_coarray_statement_token11] = ACTIONS(4331), - [aux_sym_coarray_statement_token12] = ACTIONS(4331), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4331), - [aux_sym_identifier_token1] = ACTIONS(4331), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4333), - [sym__float_literal] = ACTIONS(4333), - [sym__boz_literal] = ACTIONS(4333), - [sym__string_literal] = ACTIONS(4333), - [sym__string_literal_kind] = ACTIONS(4333), - }, - [1133] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token2] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [aux_sym_preproc_else_token1] = ACTIONS(5037), - [aux_sym_preproc_elif_token1] = ACTIONS(5037), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_end_program_statement_token2] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_subroutine_call_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_keyword_statement_token4] = ACTIONS(5037), - [aux_sym_keyword_statement_token6] = ACTIONS(5037), - [aux_sym_keyword_statement_token7] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym_do_loop_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym__inline_where_statement_token1] = ACTIONS(5037), - [aux_sym__forall_control_expression_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token3] = ACTIONS(5037), - [aux_sym_select_type_statement_token1] = ACTIONS(5037), - [aux_sym_select_rank_statement_token2] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_associate_statement_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_print_statement_token1] = ACTIONS(5037), - [aux_sym_open_statement_token1] = ACTIONS(5037), - [aux_sym_close_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token2] = ACTIONS(5037), - [aux_sym_file_position_statement_token3] = ACTIONS(5037), - [aux_sym_file_position_statement_token4] = ACTIONS(5037), - [aux_sym_allocate_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_logical_expression_token5] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_LPAREN_SLASH] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [aux_sym_boolean_literal_token1] = ACTIONS(5039), - [aux_sym_boolean_literal_token2] = ACTIONS(5039), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - [sym__float_literal] = ACTIONS(5039), - [sym__boz_literal] = ACTIONS(5039), - [sym__string_literal] = ACTIONS(5039), - [sym__string_literal_kind] = ACTIONS(5039), - }, - [1134] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token2] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [aux_sym_preproc_else_token1] = ACTIONS(4323), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(4323), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_subroutine_call_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_keyword_statement_token4] = ACTIONS(4323), - [aux_sym_keyword_statement_token6] = ACTIONS(4323), - [aux_sym_keyword_statement_token7] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym_do_loop_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym__inline_where_statement_token1] = ACTIONS(4323), - [aux_sym__forall_control_expression_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token3] = ACTIONS(4323), - [aux_sym_select_type_statement_token1] = ACTIONS(4323), - [aux_sym_select_rank_statement_token2] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_associate_statement_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_print_statement_token1] = ACTIONS(4323), - [aux_sym_open_statement_token1] = ACTIONS(4323), - [aux_sym_close_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token2] = ACTIONS(4323), - [aux_sym_file_position_statement_token3] = ACTIONS(4323), - [aux_sym_file_position_statement_token4] = ACTIONS(4323), - [aux_sym_allocate_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_logical_expression_token5] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LPAREN_SLASH] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_boolean_literal_token1] = ACTIONS(4325), - [aux_sym_boolean_literal_token2] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - [sym__float_literal] = ACTIONS(4325), - [sym__boz_literal] = ACTIONS(4325), - [sym__string_literal] = ACTIONS(4325), - [sym__string_literal_kind] = ACTIONS(4325), - }, - [1135] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token2] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [aux_sym_preproc_else_token1] = ACTIONS(5041), - [aux_sym_preproc_elif_token1] = ACTIONS(5041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_LPAREN2] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_end_program_statement_token2] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_subroutine_call_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_keyword_statement_token4] = ACTIONS(5041), - [aux_sym_keyword_statement_token6] = ACTIONS(5041), - [aux_sym_keyword_statement_token7] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym_do_loop_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym__inline_where_statement_token1] = ACTIONS(5041), - [aux_sym__forall_control_expression_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token3] = ACTIONS(5041), - [aux_sym_select_type_statement_token1] = ACTIONS(5041), - [aux_sym_select_rank_statement_token2] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_associate_statement_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_print_statement_token1] = ACTIONS(5041), - [aux_sym_open_statement_token1] = ACTIONS(5041), - [aux_sym_close_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token2] = ACTIONS(5041), - [aux_sym_file_position_statement_token3] = ACTIONS(5041), - [aux_sym_file_position_statement_token4] = ACTIONS(5041), - [aux_sym_allocate_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_logical_expression_token5] = ACTIONS(5043), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_LPAREN_SLASH] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [aux_sym_boolean_literal_token1] = ACTIONS(5043), - [aux_sym_boolean_literal_token2] = ACTIONS(5043), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - [sym__float_literal] = ACTIONS(5043), - [sym__boz_literal] = ACTIONS(5043), - [sym__string_literal] = ACTIONS(5043), - [sym__string_literal_kind] = ACTIONS(5043), - }, - [1136] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token2] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [aux_sym_preproc_else_token1] = ACTIONS(5045), - [aux_sym_preproc_elif_token1] = ACTIONS(5045), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_LPAREN2] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_end_program_statement_token2] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_subroutine_call_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_keyword_statement_token4] = ACTIONS(5045), - [aux_sym_keyword_statement_token6] = ACTIONS(5045), - [aux_sym_keyword_statement_token7] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym_do_loop_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym__inline_where_statement_token1] = ACTIONS(5045), - [aux_sym__forall_control_expression_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token3] = ACTIONS(5045), - [aux_sym_select_type_statement_token1] = ACTIONS(5045), - [aux_sym_select_rank_statement_token2] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_associate_statement_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_print_statement_token1] = ACTIONS(5045), - [aux_sym_open_statement_token1] = ACTIONS(5045), - [aux_sym_close_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token2] = ACTIONS(5045), - [aux_sym_file_position_statement_token3] = ACTIONS(5045), - [aux_sym_file_position_statement_token4] = ACTIONS(5045), - [aux_sym_allocate_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_logical_expression_token5] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_LPAREN_SLASH] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [aux_sym_boolean_literal_token1] = ACTIONS(5047), - [aux_sym_boolean_literal_token2] = ACTIONS(5047), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - [sym__float_literal] = ACTIONS(5047), - [sym__boz_literal] = ACTIONS(5047), - [sym__string_literal] = ACTIONS(5047), - [sym__string_literal_kind] = ACTIONS(5047), - }, - [1137] = { - [aux_sym_preproc_include_token1] = ACTIONS(4335), - [aux_sym_preproc_def_token1] = ACTIONS(4335), - [aux_sym_preproc_if_token1] = ACTIONS(4335), - [aux_sym_preproc_if_token2] = ACTIONS(4335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), - [aux_sym_preproc_else_token1] = ACTIONS(4335), - [aux_sym_preproc_elif_token1] = ACTIONS(4335), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4335), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4335), - [sym_preproc_directive] = ACTIONS(4335), - [anon_sym_LPAREN2] = ACTIONS(4335), - [sym_preproc_comment] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4337), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4335), - [aux_sym_interface_statement_token1] = ACTIONS(4335), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), - [aux_sym_language_binding_token1] = ACTIONS(4335), - [aux_sym_procedure_attributes_token1] = ACTIONS(4335), - [aux_sym_procedure_attributes_token3] = ACTIONS(4335), - [aux_sym_contains_statement_token1] = ACTIONS(4335), - [aux_sym_use_statement_token1] = ACTIONS(4335), - [aux_sym_use_statement_token2] = ACTIONS(4335), - [aux_sym_implicit_statement_token1] = ACTIONS(4335), - [aux_sym_implicit_statement_token3] = ACTIONS(4335), - [aux_sym_implicit_statement_token4] = ACTIONS(4335), - [aux_sym_save_statement_token1] = ACTIONS(4335), - [aux_sym_private_statement_token1] = ACTIONS(4335), - [aux_sym_public_statement_token1] = ACTIONS(4335), - [aux_sym_namelist_statement_token1] = ACTIONS(4335), - [aux_sym_common_statement_token1] = ACTIONS(4335), - [aux_sym_import_statement_token1] = ACTIONS(4335), - [aux_sym_derived_type_definition_token1] = ACTIONS(4335), - [aux_sym_abstract_specifier_token1] = ACTIONS(4335), - [aux_sym_procedure_attribute_token6] = ACTIONS(4335), - [aux_sym_variable_attributes_token1] = ACTIONS(4335), - [aux_sym_variable_attributes_token2] = ACTIONS(4335), - [aux_sym_variable_attributes_token3] = ACTIONS(4335), - [aux_sym_variable_attributes_token4] = ACTIONS(4335), - [aux_sym_variable_attributes_token5] = ACTIONS(4335), - [aux_sym__intrinsic_type_token1] = ACTIONS(4335), - [aux_sym__intrinsic_type_token2] = ACTIONS(4335), - [aux_sym__intrinsic_type_token3] = ACTIONS(4335), - [aux_sym__intrinsic_type_token4] = ACTIONS(4335), - [aux_sym__intrinsic_type_token6] = ACTIONS(4335), - [aux_sym__intrinsic_type_token7] = ACTIONS(4335), - [aux_sym__intrinsic_type_token8] = ACTIONS(4335), - [aux_sym__intrinsic_type_token9] = ACTIONS(4335), - [aux_sym__intrinsic_type_token10] = ACTIONS(4335), - [aux_sym_derived_type_token1] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), - [aux_sym_type_qualifier_token1] = ACTIONS(4335), - [aux_sym_type_qualifier_token2] = ACTIONS(4335), - [aux_sym_equivalence_statement_token1] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4337), - [aux_sym_stop_statement_token1] = ACTIONS(4335), - [aux_sym_stop_statement_token2] = ACTIONS(4335), - [aux_sym_subroutine_call_token1] = ACTIONS(4335), - [aux_sym_keyword_statement_token1] = ACTIONS(4335), - [aux_sym_keyword_statement_token2] = ACTIONS(4335), - [aux_sym_keyword_statement_token3] = ACTIONS(4335), - [aux_sym_keyword_statement_token4] = ACTIONS(4335), - [aux_sym_keyword_statement_token6] = ACTIONS(4335), - [aux_sym_keyword_statement_token7] = ACTIONS(4335), - [aux_sym_include_statement_token1] = ACTIONS(4335), - [aux_sym_data_statement_token1] = ACTIONS(4335), - [aux_sym_do_loop_statement_token1] = ACTIONS(4335), - [aux_sym__inline_if_statement_token1] = ACTIONS(4335), - [aux_sym_end_if_statement_token1] = ACTIONS(4335), - [aux_sym_elseif_clause_token2] = ACTIONS(4335), - [aux_sym__inline_where_statement_token1] = ACTIONS(4335), - [aux_sym__forall_control_expression_token1] = ACTIONS(4335), - [aux_sym_select_case_statement_token1] = ACTIONS(4335), - [aux_sym_select_case_statement_token3] = ACTIONS(4335), - [aux_sym_select_type_statement_token1] = ACTIONS(4335), - [aux_sym_select_rank_statement_token2] = ACTIONS(4335), - [aux_sym_block_construct_token1] = ACTIONS(4335), - [aux_sym_associate_statement_token1] = ACTIONS(4335), - [aux_sym_format_statement_token1] = ACTIONS(4335), - [aux_sym_print_statement_token1] = ACTIONS(4335), - [aux_sym_open_statement_token1] = ACTIONS(4335), - [aux_sym_close_statement_token1] = ACTIONS(4335), - [aux_sym_inquire_statement_token1] = ACTIONS(4335), - [aux_sym_enum_statement_token1] = ACTIONS(4335), - [aux_sym_file_position_statement_token1] = ACTIONS(4335), - [aux_sym_file_position_statement_token2] = ACTIONS(4335), - [aux_sym_file_position_statement_token3] = ACTIONS(4335), - [aux_sym_file_position_statement_token4] = ACTIONS(4335), - [aux_sym_allocate_statement_token1] = ACTIONS(4335), - [aux_sym_entry_statement_token1] = ACTIONS(4335), - [aux_sym_logical_expression_token5] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_LPAREN_SLASH] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [aux_sym_boolean_literal_token1] = ACTIONS(4337), - [aux_sym_boolean_literal_token2] = ACTIONS(4337), - [aux_sym_null_literal_token1] = ACTIONS(4335), - [aux_sym_coarray_statement_token1] = ACTIONS(4335), - [aux_sym_coarray_statement_token2] = ACTIONS(4335), - [aux_sym_coarray_statement_token6] = ACTIONS(4335), - [aux_sym_coarray_statement_token8] = ACTIONS(4335), - [aux_sym_coarray_statement_token11] = ACTIONS(4335), - [aux_sym_coarray_statement_token12] = ACTIONS(4335), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), - [aux_sym_identifier_token1] = ACTIONS(4335), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4337), - [sym__float_literal] = ACTIONS(4337), - [sym__boz_literal] = ACTIONS(4337), - [sym__string_literal] = ACTIONS(4337), - [sym__string_literal_kind] = ACTIONS(4337), - }, - [1138] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [aux_sym_preproc_else_token1] = ACTIONS(4445), - [aux_sym_preproc_elif_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), - }, - [1139] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token2] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [aux_sym_preproc_else_token1] = ACTIONS(5049), - [aux_sym_preproc_elif_token1] = ACTIONS(5049), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_end_program_statement_token2] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_subroutine_call_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_keyword_statement_token4] = ACTIONS(5049), - [aux_sym_keyword_statement_token6] = ACTIONS(5049), - [aux_sym_keyword_statement_token7] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym_do_loop_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym__inline_where_statement_token1] = ACTIONS(5049), - [aux_sym__forall_control_expression_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token3] = ACTIONS(5049), - [aux_sym_select_type_statement_token1] = ACTIONS(5049), - [aux_sym_select_rank_statement_token2] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_associate_statement_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_print_statement_token1] = ACTIONS(5049), - [aux_sym_open_statement_token1] = ACTIONS(5049), - [aux_sym_close_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token2] = ACTIONS(5049), - [aux_sym_file_position_statement_token3] = ACTIONS(5049), - [aux_sym_file_position_statement_token4] = ACTIONS(5049), - [aux_sym_allocate_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_logical_expression_token5] = ACTIONS(5051), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_LPAREN_SLASH] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [aux_sym_boolean_literal_token1] = ACTIONS(5051), - [aux_sym_boolean_literal_token2] = ACTIONS(5051), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - [sym__float_literal] = ACTIONS(5051), - [sym__boz_literal] = ACTIONS(5051), - [sym__string_literal] = ACTIONS(5051), - [sym__string_literal_kind] = ACTIONS(5051), - }, [1140] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token2] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [aux_sym_preproc_else_token1] = ACTIONS(5053), - [aux_sym_preproc_elif_token1] = ACTIONS(5053), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_LPAREN2] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_end_program_statement_token2] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [anon_sym_SEMI] = ACTIONS(5055), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_subroutine_call_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_keyword_statement_token4] = ACTIONS(5053), - [aux_sym_keyword_statement_token6] = ACTIONS(5053), - [aux_sym_keyword_statement_token7] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym_do_loop_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym__inline_where_statement_token1] = ACTIONS(5053), - [aux_sym__forall_control_expression_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token3] = ACTIONS(5053), - [aux_sym_select_type_statement_token1] = ACTIONS(5053), - [aux_sym_select_rank_statement_token2] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_associate_statement_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_print_statement_token1] = ACTIONS(5053), - [aux_sym_open_statement_token1] = ACTIONS(5053), - [aux_sym_close_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token2] = ACTIONS(5053), - [aux_sym_file_position_statement_token3] = ACTIONS(5053), - [aux_sym_file_position_statement_token4] = ACTIONS(5053), - [aux_sym_allocate_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_logical_expression_token5] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_LPAREN_SLASH] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [aux_sym_boolean_literal_token1] = ACTIONS(5055), - [aux_sym_boolean_literal_token2] = ACTIONS(5055), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - [sym__float_literal] = ACTIONS(5055), - [sym__boz_literal] = ACTIONS(5055), - [sym__string_literal] = ACTIONS(5055), - [sym__string_literal_kind] = ACTIONS(5055), + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token2] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [aux_sym_preproc_else_token1] = ACTIONS(5051), + [aux_sym_preproc_elif_token1] = ACTIONS(5051), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_LPAREN2] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_end_program_statement_token2] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_subroutine_call_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_keyword_statement_token4] = ACTIONS(5051), + [aux_sym_keyword_statement_token6] = ACTIONS(5051), + [aux_sym_keyword_statement_token7] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym_do_loop_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym__inline_where_statement_token1] = ACTIONS(5051), + [aux_sym__forall_control_expression_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token3] = ACTIONS(5051), + [aux_sym_select_type_statement_token1] = ACTIONS(5051), + [aux_sym_select_rank_statement_token2] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_associate_statement_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_print_statement_token1] = ACTIONS(5051), + [aux_sym_open_statement_token1] = ACTIONS(5051), + [aux_sym_close_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token2] = ACTIONS(5051), + [aux_sym_file_position_statement_token3] = ACTIONS(5051), + [aux_sym_file_position_statement_token4] = ACTIONS(5051), + [aux_sym_allocate_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_logical_expression_token5] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_LPAREN_SLASH] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [aux_sym_boolean_literal_token1] = ACTIONS(5053), + [aux_sym_boolean_literal_token2] = ACTIONS(5053), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + [sym__float_literal] = ACTIONS(5053), + [sym__boz_literal] = ACTIONS(5053), + [sym__string_literal] = ACTIONS(5053), + [sym__string_literal_kind] = ACTIONS(5053), }, [1141] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token2] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [aux_sym_preproc_else_token1] = ACTIONS(5057), - [aux_sym_preproc_elif_token1] = ACTIONS(5057), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_LPAREN2] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_end_program_statement_token2] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_subroutine_call_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_keyword_statement_token4] = ACTIONS(5057), - [aux_sym_keyword_statement_token6] = ACTIONS(5057), - [aux_sym_keyword_statement_token7] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym_do_loop_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym__inline_where_statement_token1] = ACTIONS(5057), - [aux_sym__forall_control_expression_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token3] = ACTIONS(5057), - [aux_sym_select_type_statement_token1] = ACTIONS(5057), - [aux_sym_select_rank_statement_token2] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_associate_statement_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_print_statement_token1] = ACTIONS(5057), - [aux_sym_open_statement_token1] = ACTIONS(5057), - [aux_sym_close_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token2] = ACTIONS(5057), - [aux_sym_file_position_statement_token3] = ACTIONS(5057), - [aux_sym_file_position_statement_token4] = ACTIONS(5057), - [aux_sym_allocate_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_logical_expression_token5] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_LPAREN_SLASH] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [aux_sym_boolean_literal_token1] = ACTIONS(5059), - [aux_sym_boolean_literal_token2] = ACTIONS(5059), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - [sym__float_literal] = ACTIONS(5059), - [sym__boz_literal] = ACTIONS(5059), - [sym__string_literal] = ACTIONS(5059), - [sym__string_literal_kind] = ACTIONS(5059), + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token2] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [aux_sym_preproc_else_token1] = ACTIONS(5055), + [aux_sym_preproc_elif_token1] = ACTIONS(5055), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_LPAREN2] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_end_program_statement_token2] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_subroutine_call_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_keyword_statement_token4] = ACTIONS(5055), + [aux_sym_keyword_statement_token6] = ACTIONS(5055), + [aux_sym_keyword_statement_token7] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym_do_loop_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym__inline_where_statement_token1] = ACTIONS(5055), + [aux_sym__forall_control_expression_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token3] = ACTIONS(5055), + [aux_sym_select_type_statement_token1] = ACTIONS(5055), + [aux_sym_select_rank_statement_token2] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_associate_statement_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_print_statement_token1] = ACTIONS(5055), + [aux_sym_open_statement_token1] = ACTIONS(5055), + [aux_sym_close_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token2] = ACTIONS(5055), + [aux_sym_file_position_statement_token3] = ACTIONS(5055), + [aux_sym_file_position_statement_token4] = ACTIONS(5055), + [aux_sym_allocate_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_logical_expression_token5] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_LPAREN_SLASH] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [aux_sym_boolean_literal_token1] = ACTIONS(5057), + [aux_sym_boolean_literal_token2] = ACTIONS(5057), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + [sym__float_literal] = ACTIONS(5057), + [sym__boz_literal] = ACTIONS(5057), + [sym__string_literal] = ACTIONS(5057), + [sym__string_literal_kind] = ACTIONS(5057), }, [1142] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [aux_sym_preproc_else_token1] = ACTIONS(4485), - [aux_sym_preproc_elif_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [aux_sym_preproc_else_token1] = ACTIONS(4571), + [aux_sym_preproc_elif_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, [1143] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token2] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [aux_sym_preproc_else_token1] = ACTIONS(5061), - [aux_sym_preproc_elif_token1] = ACTIONS(5061), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_LPAREN2] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_end_program_statement_token2] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_subroutine_call_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_keyword_statement_token4] = ACTIONS(5061), - [aux_sym_keyword_statement_token6] = ACTIONS(5061), - [aux_sym_keyword_statement_token7] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym_do_loop_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym__inline_where_statement_token1] = ACTIONS(5061), - [aux_sym__forall_control_expression_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token3] = ACTIONS(5061), - [aux_sym_select_type_statement_token1] = ACTIONS(5061), - [aux_sym_select_rank_statement_token2] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_associate_statement_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_print_statement_token1] = ACTIONS(5061), - [aux_sym_open_statement_token1] = ACTIONS(5061), - [aux_sym_close_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token2] = ACTIONS(5061), - [aux_sym_file_position_statement_token3] = ACTIONS(5061), - [aux_sym_file_position_statement_token4] = ACTIONS(5061), - [aux_sym_allocate_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_logical_expression_token5] = ACTIONS(5063), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LPAREN_SLASH] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [aux_sym_boolean_literal_token1] = ACTIONS(5063), - [aux_sym_boolean_literal_token2] = ACTIONS(5063), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - [sym__float_literal] = ACTIONS(5063), - [sym__boz_literal] = ACTIONS(5063), - [sym__string_literal] = ACTIONS(5063), - [sym__string_literal_kind] = ACTIONS(5063), + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token2] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [aux_sym_preproc_else_token1] = ACTIONS(5059), + [aux_sym_preproc_elif_token1] = ACTIONS(5059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_LPAREN2] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_end_program_statement_token2] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_subroutine_call_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_keyword_statement_token4] = ACTIONS(5059), + [aux_sym_keyword_statement_token6] = ACTIONS(5059), + [aux_sym_keyword_statement_token7] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym_do_loop_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym__inline_where_statement_token1] = ACTIONS(5059), + [aux_sym__forall_control_expression_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token3] = ACTIONS(5059), + [aux_sym_select_type_statement_token1] = ACTIONS(5059), + [aux_sym_select_rank_statement_token2] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_associate_statement_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_print_statement_token1] = ACTIONS(5059), + [aux_sym_open_statement_token1] = ACTIONS(5059), + [aux_sym_close_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token2] = ACTIONS(5059), + [aux_sym_file_position_statement_token3] = ACTIONS(5059), + [aux_sym_file_position_statement_token4] = ACTIONS(5059), + [aux_sym_allocate_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_logical_expression_token5] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [aux_sym_boolean_literal_token1] = ACTIONS(5061), + [aux_sym_boolean_literal_token2] = ACTIONS(5061), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + [sym__float_literal] = ACTIONS(5061), + [sym__boz_literal] = ACTIONS(5061), + [sym__string_literal] = ACTIONS(5061), + [sym__string_literal_kind] = ACTIONS(5061), }, [1144] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token2] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [aux_sym_preproc_else_token1] = ACTIONS(5065), - [aux_sym_preproc_elif_token1] = ACTIONS(5065), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_end_program_statement_token2] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_subroutine_call_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_keyword_statement_token4] = ACTIONS(5065), - [aux_sym_keyword_statement_token6] = ACTIONS(5065), - [aux_sym_keyword_statement_token7] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym_do_loop_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym__inline_where_statement_token1] = ACTIONS(5065), - [aux_sym__forall_control_expression_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token3] = ACTIONS(5065), - [aux_sym_select_type_statement_token1] = ACTIONS(5065), - [aux_sym_select_rank_statement_token2] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_associate_statement_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_print_statement_token1] = ACTIONS(5065), - [aux_sym_open_statement_token1] = ACTIONS(5065), - [aux_sym_close_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token2] = ACTIONS(5065), - [aux_sym_file_position_statement_token3] = ACTIONS(5065), - [aux_sym_file_position_statement_token4] = ACTIONS(5065), - [aux_sym_allocate_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_logical_expression_token5] = ACTIONS(5067), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_LPAREN_SLASH] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [aux_sym_boolean_literal_token1] = ACTIONS(5067), - [aux_sym_boolean_literal_token2] = ACTIONS(5067), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - [sym__float_literal] = ACTIONS(5067), - [sym__boz_literal] = ACTIONS(5067), - [sym__string_literal] = ACTIONS(5067), - [sym__string_literal_kind] = ACTIONS(5067), + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_end_program_statement_token2] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, [1145] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token2] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [aux_sym_preproc_else_token1] = ACTIONS(5069), - [aux_sym_preproc_elif_token1] = ACTIONS(5069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_LPAREN2] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_end_program_statement_token2] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_subroutine_call_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_keyword_statement_token4] = ACTIONS(5069), - [aux_sym_keyword_statement_token6] = ACTIONS(5069), - [aux_sym_keyword_statement_token7] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym_do_loop_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym__inline_where_statement_token1] = ACTIONS(5069), - [aux_sym__forall_control_expression_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token3] = ACTIONS(5069), - [aux_sym_select_type_statement_token1] = ACTIONS(5069), - [aux_sym_select_rank_statement_token2] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_associate_statement_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_print_statement_token1] = ACTIONS(5069), - [aux_sym_open_statement_token1] = ACTIONS(5069), - [aux_sym_close_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token2] = ACTIONS(5069), - [aux_sym_file_position_statement_token3] = ACTIONS(5069), - [aux_sym_file_position_statement_token4] = ACTIONS(5069), - [aux_sym_allocate_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_logical_expression_token5] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LPAREN_SLASH] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [aux_sym_boolean_literal_token1] = ACTIONS(5071), - [aux_sym_boolean_literal_token2] = ACTIONS(5071), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - [sym__float_literal] = ACTIONS(5071), - [sym__boz_literal] = ACTIONS(5071), - [sym__string_literal] = ACTIONS(5071), - [sym__string_literal_kind] = ACTIONS(5071), + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token2] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [aux_sym_preproc_else_token1] = ACTIONS(4255), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), + [anon_sym_LPAREN2] = ACTIONS(4255), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_subroutine_call_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_keyword_statement_token4] = ACTIONS(4255), + [aux_sym_keyword_statement_token6] = ACTIONS(4255), + [aux_sym_keyword_statement_token7] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym_do_loop_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym__inline_where_statement_token1] = ACTIONS(4255), + [aux_sym__forall_control_expression_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token3] = ACTIONS(4255), + [aux_sym_select_type_statement_token1] = ACTIONS(4255), + [aux_sym_select_rank_statement_token2] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_associate_statement_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_print_statement_token1] = ACTIONS(4255), + [aux_sym_open_statement_token1] = ACTIONS(4255), + [aux_sym_close_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token2] = ACTIONS(4255), + [aux_sym_file_position_statement_token3] = ACTIONS(4255), + [aux_sym_file_position_statement_token4] = ACTIONS(4255), + [aux_sym_allocate_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_logical_expression_token5] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LPAREN_SLASH] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_boolean_literal_token1] = ACTIONS(4257), + [aux_sym_boolean_literal_token2] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4257), + [sym__float_literal] = ACTIONS(4257), + [sym__boz_literal] = ACTIONS(4257), + [sym__string_literal] = ACTIONS(4257), + [sym__string_literal_kind] = ACTIONS(4257), }, [1146] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token2] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [aux_sym_preproc_else_token1] = ACTIONS(5073), - [aux_sym_preproc_elif_token1] = ACTIONS(5073), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_LPAREN2] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_end_program_statement_token2] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_subroutine_call_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_keyword_statement_token4] = ACTIONS(5073), - [aux_sym_keyword_statement_token6] = ACTIONS(5073), - [aux_sym_keyword_statement_token7] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym_do_loop_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym__inline_where_statement_token1] = ACTIONS(5073), - [aux_sym__forall_control_expression_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token3] = ACTIONS(5073), - [aux_sym_select_type_statement_token1] = ACTIONS(5073), - [aux_sym_select_rank_statement_token2] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_associate_statement_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_print_statement_token1] = ACTIONS(5073), - [aux_sym_open_statement_token1] = ACTIONS(5073), - [aux_sym_close_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token2] = ACTIONS(5073), - [aux_sym_file_position_statement_token3] = ACTIONS(5073), - [aux_sym_file_position_statement_token4] = ACTIONS(5073), - [aux_sym_allocate_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_logical_expression_token5] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LPAREN_SLASH] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [aux_sym_boolean_literal_token1] = ACTIONS(5075), - [aux_sym_boolean_literal_token2] = ACTIONS(5075), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - [sym__float_literal] = ACTIONS(5075), - [sym__boz_literal] = ACTIONS(5075), - [sym__string_literal] = ACTIONS(5075), - [sym__string_literal_kind] = ACTIONS(5075), + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token2] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [aux_sym_preproc_else_token1] = ACTIONS(5063), + [aux_sym_preproc_elif_token1] = ACTIONS(5063), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_LPAREN2] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_end_program_statement_token2] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_subroutine_call_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_keyword_statement_token4] = ACTIONS(5063), + [aux_sym_keyword_statement_token6] = ACTIONS(5063), + [aux_sym_keyword_statement_token7] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym_do_loop_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym__inline_where_statement_token1] = ACTIONS(5063), + [aux_sym__forall_control_expression_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token3] = ACTIONS(5063), + [aux_sym_select_type_statement_token1] = ACTIONS(5063), + [aux_sym_select_rank_statement_token2] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_associate_statement_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_print_statement_token1] = ACTIONS(5063), + [aux_sym_open_statement_token1] = ACTIONS(5063), + [aux_sym_close_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token2] = ACTIONS(5063), + [aux_sym_file_position_statement_token3] = ACTIONS(5063), + [aux_sym_file_position_statement_token4] = ACTIONS(5063), + [aux_sym_allocate_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_logical_expression_token5] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_LPAREN_SLASH] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [aux_sym_boolean_literal_token1] = ACTIONS(5065), + [aux_sym_boolean_literal_token2] = ACTIONS(5065), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + [sym__float_literal] = ACTIONS(5065), + [sym__boz_literal] = ACTIONS(5065), + [sym__string_literal] = ACTIONS(5065), + [sym__string_literal_kind] = ACTIONS(5065), }, [1147] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [aux_sym_preproc_else_token1] = ACTIONS(4817), - [aux_sym_preproc_elif_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_end_program_statement_token2] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_end_program_statement_token2] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1148] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token2] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [aux_sym_preproc_else_token1] = ACTIONS(5077), - [aux_sym_preproc_elif_token1] = ACTIONS(5077), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_LPAREN2] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_end_program_statement_token2] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [anon_sym_SEMI] = ACTIONS(5079), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_subroutine_call_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_keyword_statement_token4] = ACTIONS(5077), - [aux_sym_keyword_statement_token6] = ACTIONS(5077), - [aux_sym_keyword_statement_token7] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym_do_loop_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym__inline_where_statement_token1] = ACTIONS(5077), - [aux_sym__forall_control_expression_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token3] = ACTIONS(5077), - [aux_sym_select_type_statement_token1] = ACTIONS(5077), - [aux_sym_select_rank_statement_token2] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_associate_statement_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_print_statement_token1] = ACTIONS(5077), - [aux_sym_open_statement_token1] = ACTIONS(5077), - [aux_sym_close_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token2] = ACTIONS(5077), - [aux_sym_file_position_statement_token3] = ACTIONS(5077), - [aux_sym_file_position_statement_token4] = ACTIONS(5077), - [aux_sym_allocate_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_logical_expression_token5] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_LPAREN_SLASH] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [aux_sym_boolean_literal_token1] = ACTIONS(5079), - [aux_sym_boolean_literal_token2] = ACTIONS(5079), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - [sym__float_literal] = ACTIONS(5079), - [sym__boz_literal] = ACTIONS(5079), - [sym__string_literal] = ACTIONS(5079), - [sym__string_literal_kind] = ACTIONS(5079), + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token2] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [aux_sym_preproc_else_token1] = ACTIONS(5067), + [aux_sym_preproc_elif_token1] = ACTIONS(5067), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_end_program_statement_token2] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_subroutine_call_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_keyword_statement_token4] = ACTIONS(5067), + [aux_sym_keyword_statement_token6] = ACTIONS(5067), + [aux_sym_keyword_statement_token7] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym_do_loop_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym__inline_where_statement_token1] = ACTIONS(5067), + [aux_sym__forall_control_expression_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token3] = ACTIONS(5067), + [aux_sym_select_type_statement_token1] = ACTIONS(5067), + [aux_sym_select_rank_statement_token2] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_associate_statement_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_print_statement_token1] = ACTIONS(5067), + [aux_sym_open_statement_token1] = ACTIONS(5067), + [aux_sym_close_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token2] = ACTIONS(5067), + [aux_sym_file_position_statement_token3] = ACTIONS(5067), + [aux_sym_file_position_statement_token4] = ACTIONS(5067), + [aux_sym_allocate_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_logical_expression_token5] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LPAREN_SLASH] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [aux_sym_boolean_literal_token1] = ACTIONS(5069), + [aux_sym_boolean_literal_token2] = ACTIONS(5069), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + [sym__float_literal] = ACTIONS(5069), + [sym__boz_literal] = ACTIONS(5069), + [sym__string_literal] = ACTIONS(5069), + [sym__string_literal_kind] = ACTIONS(5069), }, [1149] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token2] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [aux_sym_preproc_else_token1] = ACTIONS(4323), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(4323), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_subroutine_call_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_keyword_statement_token4] = ACTIONS(4323), - [aux_sym_keyword_statement_token6] = ACTIONS(4323), - [aux_sym_keyword_statement_token7] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym_do_loop_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym__inline_where_statement_token1] = ACTIONS(4323), - [aux_sym__forall_control_expression_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token3] = ACTIONS(4323), - [aux_sym_select_type_statement_token1] = ACTIONS(4323), - [aux_sym_select_rank_statement_token2] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_associate_statement_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_print_statement_token1] = ACTIONS(4323), - [aux_sym_open_statement_token1] = ACTIONS(4323), - [aux_sym_close_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token2] = ACTIONS(4323), - [aux_sym_file_position_statement_token3] = ACTIONS(4323), - [aux_sym_file_position_statement_token4] = ACTIONS(4323), - [aux_sym_allocate_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_logical_expression_token5] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LPAREN_SLASH] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_boolean_literal_token1] = ACTIONS(4325), - [aux_sym_boolean_literal_token2] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - [sym__float_literal] = ACTIONS(4325), - [sym__boz_literal] = ACTIONS(4325), - [sym__string_literal] = ACTIONS(4325), - [sym__string_literal_kind] = ACTIONS(4325), + [aux_sym_preproc_include_token1] = ACTIONS(5071), + [aux_sym_preproc_def_token1] = ACTIONS(5071), + [aux_sym_preproc_if_token1] = ACTIONS(5071), + [aux_sym_preproc_if_token2] = ACTIONS(5074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5071), + [aux_sym_preproc_else_token1] = ACTIONS(5074), + [aux_sym_preproc_elif_token1] = ACTIONS(5074), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5074), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5074), + [sym_preproc_directive] = ACTIONS(5071), + [anon_sym_LPAREN2] = ACTIONS(5071), + [anon_sym_PLUS] = ACTIONS(5076), + [anon_sym_DASH] = ACTIONS(5076), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5071), + [aux_sym_end_program_statement_token2] = ACTIONS(5079), + [aux_sym_interface_statement_token1] = ACTIONS(5071), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5071), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5071), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5071), + [aux_sym_language_binding_token1] = ACTIONS(5071), + [aux_sym_procedure_attributes_token1] = ACTIONS(5071), + [aux_sym_procedure_attributes_token3] = ACTIONS(5071), + [aux_sym_contains_statement_token1] = ACTIONS(5071), + [aux_sym_use_statement_token1] = ACTIONS(5071), + [aux_sym_use_statement_token2] = ACTIONS(5071), + [aux_sym_implicit_statement_token1] = ACTIONS(5071), + [aux_sym_implicit_statement_token3] = ACTIONS(5071), + [aux_sym_implicit_statement_token4] = ACTIONS(5071), + [aux_sym_save_statement_token1] = ACTIONS(5071), + [aux_sym_private_statement_token1] = ACTIONS(5071), + [aux_sym_public_statement_token1] = ACTIONS(5071), + [aux_sym_namelist_statement_token1] = ACTIONS(5071), + [aux_sym_common_statement_token1] = ACTIONS(5071), + [aux_sym_import_statement_token1] = ACTIONS(5071), + [aux_sym_derived_type_definition_token1] = ACTIONS(5071), + [aux_sym_abstract_specifier_token1] = ACTIONS(5071), + [aux_sym_procedure_attribute_token6] = ACTIONS(5071), + [aux_sym_variable_attributes_token1] = ACTIONS(5071), + [aux_sym_variable_attributes_token2] = ACTIONS(5071), + [aux_sym_variable_attributes_token3] = ACTIONS(5071), + [aux_sym_variable_attributes_token4] = ACTIONS(5071), + [aux_sym_variable_attributes_token5] = ACTIONS(5071), + [aux_sym__intrinsic_type_token1] = ACTIONS(5071), + [aux_sym__intrinsic_type_token2] = ACTIONS(5071), + [aux_sym__intrinsic_type_token3] = ACTIONS(5071), + [aux_sym__intrinsic_type_token4] = ACTIONS(5071), + [aux_sym__intrinsic_type_token6] = ACTIONS(5071), + [aux_sym__intrinsic_type_token7] = ACTIONS(5071), + [aux_sym__intrinsic_type_token8] = ACTIONS(5071), + [aux_sym__intrinsic_type_token9] = ACTIONS(5071), + [aux_sym__intrinsic_type_token10] = ACTIONS(5071), + [aux_sym_derived_type_token1] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5071), + [aux_sym_type_qualifier_token1] = ACTIONS(5071), + [aux_sym_type_qualifier_token2] = ACTIONS(5071), + [aux_sym_equivalence_statement_token1] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5076), + [aux_sym_stop_statement_token1] = ACTIONS(5071), + [aux_sym_stop_statement_token2] = ACTIONS(5071), + [aux_sym_subroutine_call_token1] = ACTIONS(5071), + [aux_sym_keyword_statement_token1] = ACTIONS(5071), + [aux_sym_keyword_statement_token2] = ACTIONS(5071), + [aux_sym_keyword_statement_token3] = ACTIONS(5071), + [aux_sym_keyword_statement_token4] = ACTIONS(5071), + [aux_sym_keyword_statement_token6] = ACTIONS(5071), + [aux_sym_keyword_statement_token7] = ACTIONS(5071), + [aux_sym_include_statement_token1] = ACTIONS(5071), + [aux_sym_data_statement_token1] = ACTIONS(5071), + [aux_sym_do_loop_statement_token1] = ACTIONS(5071), + [aux_sym__inline_if_statement_token1] = ACTIONS(5071), + [aux_sym_end_if_statement_token1] = ACTIONS(5071), + [aux_sym_elseif_clause_token2] = ACTIONS(5071), + [aux_sym__inline_where_statement_token1] = ACTIONS(5071), + [aux_sym__forall_control_expression_token1] = ACTIONS(5071), + [aux_sym_select_case_statement_token1] = ACTIONS(5071), + [aux_sym_select_case_statement_token3] = ACTIONS(5071), + [aux_sym_select_type_statement_token1] = ACTIONS(5071), + [aux_sym_select_rank_statement_token2] = ACTIONS(5071), + [aux_sym_block_construct_token1] = ACTIONS(5071), + [aux_sym_associate_statement_token1] = ACTIONS(5071), + [aux_sym_format_statement_token1] = ACTIONS(5071), + [aux_sym_print_statement_token1] = ACTIONS(5071), + [aux_sym_open_statement_token1] = ACTIONS(5071), + [aux_sym_close_statement_token1] = ACTIONS(5071), + [aux_sym_inquire_statement_token1] = ACTIONS(5071), + [aux_sym_enum_statement_token1] = ACTIONS(5071), + [aux_sym_file_position_statement_token1] = ACTIONS(5071), + [aux_sym_file_position_statement_token2] = ACTIONS(5071), + [aux_sym_file_position_statement_token3] = ACTIONS(5071), + [aux_sym_file_position_statement_token4] = ACTIONS(5071), + [aux_sym_allocate_statement_token1] = ACTIONS(5071), + [aux_sym_entry_statement_token1] = ACTIONS(5071), + [aux_sym_logical_expression_token5] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_LPAREN_SLASH] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [aux_sym_boolean_literal_token1] = ACTIONS(5076), + [aux_sym_boolean_literal_token2] = ACTIONS(5076), + [aux_sym_null_literal_token1] = ACTIONS(5071), + [aux_sym_coarray_statement_token1] = ACTIONS(5071), + [aux_sym_coarray_statement_token2] = ACTIONS(5071), + [aux_sym_coarray_statement_token6] = ACTIONS(5071), + [aux_sym_coarray_statement_token8] = ACTIONS(5071), + [aux_sym_coarray_statement_token11] = ACTIONS(5071), + [aux_sym_coarray_statement_token12] = ACTIONS(5071), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5071), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5071), + [aux_sym_identifier_token1] = ACTIONS(5071), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5076), + [sym__float_literal] = ACTIONS(5076), + [sym__boz_literal] = ACTIONS(5076), + [sym__string_literal] = ACTIONS(5076), + [sym__string_literal_kind] = ACTIONS(5076), }, [1150] = { [aux_sym_preproc_include_token1] = ACTIONS(5081), @@ -245494,1948 +245494,2722 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), [aux_sym_identifier_token1] = ACTIONS(5081), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5083), - [sym__float_literal] = ACTIONS(5083), - [sym__boz_literal] = ACTIONS(5083), - [sym__string_literal] = ACTIONS(5083), - [sym__string_literal_kind] = ACTIONS(5083), + [sym__integer_literal] = ACTIONS(5083), + [sym__float_literal] = ACTIONS(5083), + [sym__boz_literal] = ACTIONS(5083), + [sym__string_literal] = ACTIONS(5083), + [sym__string_literal_kind] = ACTIONS(5083), + }, + [1151] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token2] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [aux_sym_preproc_else_token1] = ACTIONS(5063), + [aux_sym_preproc_elif_token1] = ACTIONS(5063), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_LPAREN2] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_subroutine_call_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_keyword_statement_token4] = ACTIONS(5063), + [aux_sym_keyword_statement_token6] = ACTIONS(5063), + [aux_sym_keyword_statement_token7] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym_do_loop_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym__inline_where_statement_token1] = ACTIONS(5063), + [aux_sym__forall_control_expression_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token3] = ACTIONS(5063), + [aux_sym_select_type_statement_token1] = ACTIONS(5063), + [aux_sym_select_rank_statement_token2] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_associate_statement_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_print_statement_token1] = ACTIONS(5063), + [aux_sym_open_statement_token1] = ACTIONS(5063), + [aux_sym_close_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token2] = ACTIONS(5063), + [aux_sym_file_position_statement_token3] = ACTIONS(5063), + [aux_sym_file_position_statement_token4] = ACTIONS(5063), + [aux_sym_allocate_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_logical_expression_token5] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_LPAREN_SLASH] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [aux_sym_boolean_literal_token1] = ACTIONS(5065), + [aux_sym_boolean_literal_token2] = ACTIONS(5065), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + [sym__float_literal] = ACTIONS(5065), + [sym__boz_literal] = ACTIONS(5065), + [sym__string_literal] = ACTIONS(5065), + [sym__string_literal_kind] = ACTIONS(5065), + }, + [1152] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [aux_sym_preproc_else_token1] = ACTIONS(5014), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_subroutine_call_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_keyword_statement_token4] = ACTIONS(5014), + [aux_sym_keyword_statement_token6] = ACTIONS(5014), + [aux_sym_keyword_statement_token7] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym_do_loop_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym__inline_where_statement_token1] = ACTIONS(5014), + [aux_sym__forall_control_expression_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token3] = ACTIONS(5014), + [aux_sym_select_type_statement_token1] = ACTIONS(5014), + [aux_sym_select_rank_statement_token2] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_associate_statement_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_print_statement_token1] = ACTIONS(5014), + [aux_sym_open_statement_token1] = ACTIONS(5014), + [aux_sym_close_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token2] = ACTIONS(5014), + [aux_sym_file_position_statement_token3] = ACTIONS(5014), + [aux_sym_file_position_statement_token4] = ACTIONS(5014), + [aux_sym_allocate_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_logical_expression_token5] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LPAREN_SLASH] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [aux_sym_boolean_literal_token1] = ACTIONS(5016), + [aux_sym_boolean_literal_token2] = ACTIONS(5016), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + [sym__float_literal] = ACTIONS(5016), + [sym__boz_literal] = ACTIONS(5016), + [sym__string_literal] = ACTIONS(5016), + [sym__string_literal_kind] = ACTIONS(5016), + }, + [1153] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token2] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [aux_sym_preproc_else_token1] = ACTIONS(4982), + [aux_sym_preproc_elif_token1] = ACTIONS(4982), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_subroutine_call_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_keyword_statement_token4] = ACTIONS(4982), + [aux_sym_keyword_statement_token6] = ACTIONS(4982), + [aux_sym_keyword_statement_token7] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym_do_loop_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym__inline_where_statement_token1] = ACTIONS(4982), + [aux_sym__forall_control_expression_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token3] = ACTIONS(4982), + [aux_sym_select_type_statement_token1] = ACTIONS(4982), + [aux_sym_select_rank_statement_token2] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_associate_statement_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_print_statement_token1] = ACTIONS(4982), + [aux_sym_open_statement_token1] = ACTIONS(4982), + [aux_sym_close_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token2] = ACTIONS(4982), + [aux_sym_file_position_statement_token3] = ACTIONS(4982), + [aux_sym_file_position_statement_token4] = ACTIONS(4982), + [aux_sym_allocate_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_logical_expression_token5] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_LPAREN_SLASH] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [aux_sym_boolean_literal_token1] = ACTIONS(4984), + [aux_sym_boolean_literal_token2] = ACTIONS(4984), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + [sym__float_literal] = ACTIONS(4984), + [sym__boz_literal] = ACTIONS(4984), + [sym__string_literal] = ACTIONS(4984), + [sym__string_literal_kind] = ACTIONS(4984), + }, + [1154] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token2] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [aux_sym_preproc_else_token1] = ACTIONS(4986), + [aux_sym_preproc_elif_token1] = ACTIONS(4986), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_subroutine_call_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_keyword_statement_token4] = ACTIONS(4986), + [aux_sym_keyword_statement_token6] = ACTIONS(4986), + [aux_sym_keyword_statement_token7] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym_do_loop_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym__inline_where_statement_token1] = ACTIONS(4986), + [aux_sym__forall_control_expression_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token3] = ACTIONS(4986), + [aux_sym_select_type_statement_token1] = ACTIONS(4986), + [aux_sym_select_rank_statement_token2] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_associate_statement_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_print_statement_token1] = ACTIONS(4986), + [aux_sym_open_statement_token1] = ACTIONS(4986), + [aux_sym_close_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token2] = ACTIONS(4986), + [aux_sym_file_position_statement_token3] = ACTIONS(4986), + [aux_sym_file_position_statement_token4] = ACTIONS(4986), + [aux_sym_allocate_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_logical_expression_token5] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LPAREN_SLASH] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [aux_sym_boolean_literal_token1] = ACTIONS(4988), + [aux_sym_boolean_literal_token2] = ACTIONS(4988), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + [sym__float_literal] = ACTIONS(4988), + [sym__boz_literal] = ACTIONS(4988), + [sym__string_literal] = ACTIONS(4988), + [sym__string_literal_kind] = ACTIONS(4988), + }, + [1155] = { + [aux_sym_preproc_include_token1] = ACTIONS(5081), + [aux_sym_preproc_def_token1] = ACTIONS(5081), + [aux_sym_preproc_if_token1] = ACTIONS(5081), + [aux_sym_preproc_if_token2] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), + [aux_sym_preproc_else_token1] = ACTIONS(5081), + [aux_sym_preproc_elif_token1] = ACTIONS(5081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5081), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5081), + [sym_preproc_directive] = ACTIONS(5081), + [anon_sym_LPAREN2] = ACTIONS(5081), + [anon_sym_PLUS] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5081), + [aux_sym_interface_statement_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), + [aux_sym_language_binding_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token3] = ACTIONS(5081), + [aux_sym_contains_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token2] = ACTIONS(5081), + [aux_sym_implicit_statement_token1] = ACTIONS(5081), + [aux_sym_implicit_statement_token3] = ACTIONS(5081), + [aux_sym_implicit_statement_token4] = ACTIONS(5081), + [aux_sym_save_statement_token1] = ACTIONS(5081), + [aux_sym_private_statement_token1] = ACTIONS(5081), + [aux_sym_public_statement_token1] = ACTIONS(5081), + [aux_sym_namelist_statement_token1] = ACTIONS(5081), + [aux_sym_common_statement_token1] = ACTIONS(5081), + [aux_sym_import_statement_token1] = ACTIONS(5081), + [aux_sym_derived_type_definition_token1] = ACTIONS(5081), + [aux_sym_abstract_specifier_token1] = ACTIONS(5081), + [aux_sym_procedure_attribute_token6] = ACTIONS(5081), + [aux_sym_variable_attributes_token1] = ACTIONS(5081), + [aux_sym_variable_attributes_token2] = ACTIONS(5081), + [aux_sym_variable_attributes_token3] = ACTIONS(5081), + [aux_sym_variable_attributes_token4] = ACTIONS(5081), + [aux_sym_variable_attributes_token5] = ACTIONS(5081), + [aux_sym__intrinsic_type_token1] = ACTIONS(5081), + [aux_sym__intrinsic_type_token2] = ACTIONS(5081), + [aux_sym__intrinsic_type_token3] = ACTIONS(5081), + [aux_sym__intrinsic_type_token4] = ACTIONS(5081), + [aux_sym__intrinsic_type_token6] = ACTIONS(5081), + [aux_sym__intrinsic_type_token7] = ACTIONS(5081), + [aux_sym__intrinsic_type_token8] = ACTIONS(5081), + [aux_sym__intrinsic_type_token9] = ACTIONS(5081), + [aux_sym__intrinsic_type_token10] = ACTIONS(5081), + [aux_sym_derived_type_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), + [aux_sym_type_qualifier_token1] = ACTIONS(5081), + [aux_sym_type_qualifier_token2] = ACTIONS(5081), + [aux_sym_equivalence_statement_token1] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [aux_sym_stop_statement_token1] = ACTIONS(5081), + [aux_sym_stop_statement_token2] = ACTIONS(5081), + [aux_sym_subroutine_call_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token2] = ACTIONS(5081), + [aux_sym_keyword_statement_token3] = ACTIONS(5081), + [aux_sym_keyword_statement_token4] = ACTIONS(5081), + [aux_sym_keyword_statement_token6] = ACTIONS(5081), + [aux_sym_keyword_statement_token7] = ACTIONS(5081), + [aux_sym_include_statement_token1] = ACTIONS(5081), + [aux_sym_data_statement_token1] = ACTIONS(5081), + [aux_sym_do_loop_statement_token1] = ACTIONS(5081), + [aux_sym__inline_if_statement_token1] = ACTIONS(5081), + [aux_sym_end_if_statement_token1] = ACTIONS(5081), + [aux_sym_elseif_clause_token2] = ACTIONS(5081), + [aux_sym__inline_where_statement_token1] = ACTIONS(5081), + [aux_sym__forall_control_expression_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token3] = ACTIONS(5081), + [aux_sym_select_type_statement_token1] = ACTIONS(5081), + [aux_sym_select_rank_statement_token2] = ACTIONS(5081), + [aux_sym_block_construct_token1] = ACTIONS(5081), + [aux_sym_associate_statement_token1] = ACTIONS(5081), + [aux_sym_format_statement_token1] = ACTIONS(5081), + [aux_sym_print_statement_token1] = ACTIONS(5081), + [aux_sym_open_statement_token1] = ACTIONS(5081), + [aux_sym_close_statement_token1] = ACTIONS(5081), + [aux_sym_inquire_statement_token1] = ACTIONS(5081), + [aux_sym_enum_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token2] = ACTIONS(5081), + [aux_sym_file_position_statement_token3] = ACTIONS(5081), + [aux_sym_file_position_statement_token4] = ACTIONS(5081), + [aux_sym_allocate_statement_token1] = ACTIONS(5081), + [aux_sym_entry_statement_token1] = ACTIONS(5081), + [aux_sym_logical_expression_token5] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_LPAREN_SLASH] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [aux_sym_boolean_literal_token1] = ACTIONS(5083), + [aux_sym_boolean_literal_token2] = ACTIONS(5083), + [aux_sym_null_literal_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token2] = ACTIONS(5081), + [aux_sym_coarray_statement_token6] = ACTIONS(5081), + [aux_sym_coarray_statement_token8] = ACTIONS(5081), + [aux_sym_coarray_statement_token11] = ACTIONS(5081), + [aux_sym_coarray_statement_token12] = ACTIONS(5081), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), + [aux_sym_identifier_token1] = ACTIONS(5081), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5083), + [sym__float_literal] = ACTIONS(5083), + [sym__boz_literal] = ACTIONS(5083), + [sym__string_literal] = ACTIONS(5083), + [sym__string_literal_kind] = ACTIONS(5083), + }, + [1156] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [aux_sym_preproc_else_token1] = ACTIONS(4391), + [aux_sym_preproc_elif_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), + }, + [1157] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token2] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [aux_sym_preproc_else_token1] = ACTIONS(5018), + [aux_sym_preproc_elif_token1] = ACTIONS(5018), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_subroutine_call_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_keyword_statement_token4] = ACTIONS(5018), + [aux_sym_keyword_statement_token6] = ACTIONS(5018), + [aux_sym_keyword_statement_token7] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym_do_loop_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym__inline_where_statement_token1] = ACTIONS(5018), + [aux_sym__forall_control_expression_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token3] = ACTIONS(5018), + [aux_sym_select_type_statement_token1] = ACTIONS(5018), + [aux_sym_select_rank_statement_token2] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_associate_statement_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_print_statement_token1] = ACTIONS(5018), + [aux_sym_open_statement_token1] = ACTIONS(5018), + [aux_sym_close_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token2] = ACTIONS(5018), + [aux_sym_file_position_statement_token3] = ACTIONS(5018), + [aux_sym_file_position_statement_token4] = ACTIONS(5018), + [aux_sym_allocate_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_logical_expression_token5] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_LPAREN_SLASH] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [aux_sym_boolean_literal_token1] = ACTIONS(5020), + [aux_sym_boolean_literal_token2] = ACTIONS(5020), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + [sym__float_literal] = ACTIONS(5020), + [sym__boz_literal] = ACTIONS(5020), + [sym__string_literal] = ACTIONS(5020), + [sym__string_literal_kind] = ACTIONS(5020), + }, + [1158] = { + [sym_preproc_include] = STATE(1185), + [sym_preproc_def] = STATE(1185), + [sym_preproc_function_def] = STATE(1185), + [sym_preproc_call] = STATE(1185), + [sym_interface] = STATE(1185), + [sym_interface_statement] = STATE(3812), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(8231), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(1185), + [sym_use_statement] = STATE(6604), + [sym_implicit_statement] = STATE(6604), + [sym_save_statement] = STATE(6604), + [sym_private_statement] = STATE(1185), + [sym_public_statement] = STATE(1185), + [sym_namelist_statement] = STATE(6604), + [sym_common_statement] = STATE(6604), + [sym_import_statement] = STATE(6604), + [sym_derived_type_definition] = STATE(1185), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4211), + [sym_variable_declaration] = STATE(6604), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6604), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6604), + [sym_equivalence_statement] = STATE(6604), + [sym_statement_label] = STATE(6919), + [sym_include_statement] = STATE(6604), + [sym_data_statement] = STATE(6604), + [sym_enum] = STATE(1185), + [sym_enum_statement] = STATE(5901), + [sym_statement_function] = STATE(6604), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1185), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(5085), + [aux_sym_preproc_def_token1] = ACTIONS(5087), + [aux_sym_preproc_if_token2] = ACTIONS(5089), + [sym_preproc_directive] = ACTIONS(5091), + [sym_preproc_comment] = ACTIONS(5093), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_interface_statement_token1] = ACTIONS(33), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_module_procedure_statement_token1] = ACTIONS(41), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(49), + [aux_sym_contains_statement_token1] = ACTIONS(51), + [aux_sym_use_statement_token1] = ACTIONS(53), + [aux_sym_use_statement_token2] = ACTIONS(49), + [aux_sym_implicit_statement_token1] = ACTIONS(55), + [aux_sym_implicit_statement_token3] = ACTIONS(752), + [aux_sym_implicit_statement_token4] = ACTIONS(49), + [aux_sym_save_statement_token1] = ACTIONS(59), + [aux_sym_private_statement_token1] = ACTIONS(5095), + [aux_sym_public_statement_token1] = ACTIONS(5097), + [aux_sym_namelist_statement_token1] = ACTIONS(65), + [aux_sym_common_statement_token1] = ACTIONS(67), + [aux_sym_import_statement_token1] = ACTIONS(69), + [aux_sym_derived_type_definition_token1] = ACTIONS(49), + [aux_sym_abstract_specifier_token1] = ACTIONS(71), + [aux_sym_procedure_attribute_token6] = ACTIONS(49), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(49), + [aux_sym_variable_attributes_token3] = ACTIONS(49), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(49), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), + [aux_sym__intrinsic_type_token2] = ACTIONS(760), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), + [aux_sym__intrinsic_type_token4] = ACTIONS(762), + [aux_sym__intrinsic_type_token6] = ACTIONS(760), + [aux_sym__intrinsic_type_token7] = ACTIONS(760), + [aux_sym__intrinsic_type_token8] = ACTIONS(764), + [aux_sym__intrinsic_type_token9] = ACTIONS(760), + [aux_sym__intrinsic_type_token10] = ACTIONS(760), + [aux_sym_derived_type_token1] = ACTIONS(766), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_equivalence_statement_token1] = ACTIONS(97), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_include_statement_token1] = ACTIONS(115), + [aux_sym_data_statement_token1] = ACTIONS(4661), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_enum_statement_token1] = ACTIONS(149), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4665), + }, + [1159] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [aux_sym_preproc_else_token1] = ACTIONS(4395), + [aux_sym_preproc_elif_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), + }, + [1160] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token2] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [aux_sym_preproc_else_token1] = ACTIONS(4611), + [aux_sym_preproc_elif_token1] = ACTIONS(4611), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_LPAREN2] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_subroutine_call_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_keyword_statement_token4] = ACTIONS(4611), + [aux_sym_keyword_statement_token6] = ACTIONS(4611), + [aux_sym_keyword_statement_token7] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym_do_loop_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym__inline_where_statement_token1] = ACTIONS(4611), + [aux_sym__forall_control_expression_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token3] = ACTIONS(4611), + [aux_sym_select_type_statement_token1] = ACTIONS(4611), + [aux_sym_select_rank_statement_token2] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_associate_statement_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_print_statement_token1] = ACTIONS(4611), + [aux_sym_open_statement_token1] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token2] = ACTIONS(4611), + [aux_sym_file_position_statement_token3] = ACTIONS(4611), + [aux_sym_file_position_statement_token4] = ACTIONS(4611), + [aux_sym_allocate_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_logical_expression_token5] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LPAREN_SLASH] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4613), + [sym__float_literal] = ACTIONS(4613), + [sym__boz_literal] = ACTIONS(4613), + [sym__string_literal] = ACTIONS(4613), + [sym__string_literal_kind] = ACTIONS(4613), }, - [1151] = { - [sym_preproc_include] = STATE(1186), - [sym_preproc_def] = STATE(1186), - [sym_preproc_function_def] = STATE(1186), - [sym_preproc_call] = STATE(1186), - [sym_interface] = STATE(1186), - [sym_interface_statement] = STATE(3731), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7996), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(1186), - [sym_use_statement] = STATE(6677), - [sym_implicit_statement] = STATE(6677), - [sym_save_statement] = STATE(6677), - [sym_private_statement] = STATE(1186), - [sym_public_statement] = STATE(1186), - [sym_namelist_statement] = STATE(6677), - [sym_common_statement] = STATE(6677), - [sym_import_statement] = STATE(6677), - [sym_derived_type_definition] = STATE(1186), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4215), - [sym_variable_declaration] = STATE(6677), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6677), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6677), - [sym_equivalence_statement] = STATE(6677), - [sym_statement_label] = STATE(6964), - [sym_include_statement] = STATE(6677), - [sym_data_statement] = STATE(6677), - [sym_enum] = STATE(1186), - [sym_enum_statement] = STATE(5862), - [sym_statement_function] = STATE(6677), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1186), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(5085), - [aux_sym_preproc_def_token1] = ACTIONS(5087), - [aux_sym_preproc_if_token2] = ACTIONS(5089), - [sym_preproc_directive] = ACTIONS(5091), - [sym_preproc_comment] = ACTIONS(5093), + [1161] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [aux_sym_preproc_else_token1] = ACTIONS(4399), + [aux_sym_preproc_elif_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_module_procedure_statement_token1] = ACTIONS(41), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(49), - [aux_sym_contains_statement_token1] = ACTIONS(51), - [aux_sym_use_statement_token1] = ACTIONS(53), - [aux_sym_use_statement_token2] = ACTIONS(49), - [aux_sym_implicit_statement_token1] = ACTIONS(55), - [aux_sym_implicit_statement_token3] = ACTIONS(752), - [aux_sym_implicit_statement_token4] = ACTIONS(49), - [aux_sym_save_statement_token1] = ACTIONS(59), - [aux_sym_private_statement_token1] = ACTIONS(5095), - [aux_sym_public_statement_token1] = ACTIONS(5097), - [aux_sym_namelist_statement_token1] = ACTIONS(65), - [aux_sym_common_statement_token1] = ACTIONS(67), - [aux_sym_import_statement_token1] = ACTIONS(69), - [aux_sym_derived_type_definition_token1] = ACTIONS(49), - [aux_sym_abstract_specifier_token1] = ACTIONS(71), - [aux_sym_procedure_attribute_token6] = ACTIONS(49), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(49), - [aux_sym_variable_attributes_token3] = ACTIONS(49), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), - [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), - [aux_sym__intrinsic_type_token4] = ACTIONS(762), - [aux_sym__intrinsic_type_token6] = ACTIONS(760), - [aux_sym__intrinsic_type_token7] = ACTIONS(760), - [aux_sym__intrinsic_type_token8] = ACTIONS(764), - [aux_sym__intrinsic_type_token9] = ACTIONS(760), - [aux_sym__intrinsic_type_token10] = ACTIONS(760), - [aux_sym_derived_type_token1] = ACTIONS(766), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(87), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(91), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(49), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_equivalence_statement_token1] = ACTIONS(97), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_enum_statement_token1] = ACTIONS(149), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), - }, - [1152] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [aux_sym_preproc_else_token1] = ACTIONS(4559), - [aux_sym_preproc_elif_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), - }, - [1153] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [aux_sym_preproc_else_token1] = ACTIONS(4567), - [aux_sym_preproc_elif_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1154] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [aux_sym_preproc_else_token1] = ACTIONS(4571), - [aux_sym_preproc_elif_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [1162] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1155] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [aux_sym_preproc_else_token1] = ACTIONS(4575), - [aux_sym_preproc_elif_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [1163] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token2] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [aux_sym_preproc_else_token1] = ACTIONS(4615), + [aux_sym_preproc_elif_token1] = ACTIONS(4615), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_subroutine_call_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_keyword_statement_token4] = ACTIONS(4615), + [aux_sym_keyword_statement_token6] = ACTIONS(4615), + [aux_sym_keyword_statement_token7] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym_do_loop_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym__inline_where_statement_token1] = ACTIONS(4615), + [aux_sym__forall_control_expression_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token3] = ACTIONS(4615), + [aux_sym_select_type_statement_token1] = ACTIONS(4615), + [aux_sym_select_rank_statement_token2] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_associate_statement_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_print_statement_token1] = ACTIONS(4615), + [aux_sym_open_statement_token1] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token2] = ACTIONS(4615), + [aux_sym_file_position_statement_token3] = ACTIONS(4615), + [aux_sym_file_position_statement_token4] = ACTIONS(4615), + [aux_sym_allocate_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_logical_expression_token5] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LPAREN_SLASH] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(4617), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(4617), + [sym__float_literal] = ACTIONS(4617), + [sym__boz_literal] = ACTIONS(4617), + [sym__string_literal] = ACTIONS(4617), + [sym__string_literal_kind] = ACTIONS(4617), }, - [1156] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [aux_sym_preproc_else_token1] = ACTIONS(4579), - [aux_sym_preproc_elif_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [1164] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [aux_sym_preproc_else_token1] = ACTIONS(4407), + [aux_sym_preproc_elif_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [1157] = { - [aux_sym_preproc_include_token1] = ACTIONS(4972), - [aux_sym_preproc_def_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token2] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), - [aux_sym_preproc_else_token1] = ACTIONS(4972), - [aux_sym_preproc_elif_token1] = ACTIONS(4972), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4972), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4972), - [sym_preproc_directive] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4974), - [anon_sym_DASH] = ACTIONS(4974), + [1165] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4972), - [aux_sym_interface_statement_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), - [aux_sym_language_binding_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token3] = ACTIONS(4972), - [aux_sym_contains_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token2] = ACTIONS(4972), - [aux_sym_implicit_statement_token1] = ACTIONS(4972), - [aux_sym_implicit_statement_token3] = ACTIONS(4972), - [aux_sym_implicit_statement_token4] = ACTIONS(4972), - [aux_sym_save_statement_token1] = ACTIONS(4972), - [aux_sym_private_statement_token1] = ACTIONS(4972), - [aux_sym_public_statement_token1] = ACTIONS(4972), - [aux_sym_namelist_statement_token1] = ACTIONS(4972), - [aux_sym_common_statement_token1] = ACTIONS(4972), - [aux_sym_import_statement_token1] = ACTIONS(4972), - [aux_sym_derived_type_definition_token1] = ACTIONS(4972), - [aux_sym_abstract_specifier_token1] = ACTIONS(4972), - [aux_sym_procedure_attribute_token6] = ACTIONS(4972), - [aux_sym_variable_attributes_token1] = ACTIONS(4972), - [aux_sym_variable_attributes_token2] = ACTIONS(4972), - [aux_sym_variable_attributes_token3] = ACTIONS(4972), - [aux_sym_variable_attributes_token4] = ACTIONS(4972), - [aux_sym_variable_attributes_token5] = ACTIONS(4972), - [aux_sym__intrinsic_type_token1] = ACTIONS(4972), - [aux_sym__intrinsic_type_token2] = ACTIONS(4972), - [aux_sym__intrinsic_type_token3] = ACTIONS(4972), - [aux_sym__intrinsic_type_token4] = ACTIONS(4972), - [aux_sym__intrinsic_type_token6] = ACTIONS(4972), - [aux_sym__intrinsic_type_token7] = ACTIONS(4972), - [aux_sym__intrinsic_type_token8] = ACTIONS(4972), - [aux_sym__intrinsic_type_token9] = ACTIONS(4972), - [aux_sym__intrinsic_type_token10] = ACTIONS(4972), - [aux_sym_derived_type_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), - [aux_sym_type_qualifier_token1] = ACTIONS(4972), - [aux_sym_type_qualifier_token2] = ACTIONS(4972), - [aux_sym_equivalence_statement_token1] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4974), - [aux_sym_stop_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token2] = ACTIONS(4972), - [aux_sym_subroutine_call_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token3] = ACTIONS(4972), - [aux_sym_keyword_statement_token4] = ACTIONS(4972), - [aux_sym_keyword_statement_token6] = ACTIONS(4972), - [aux_sym_keyword_statement_token7] = ACTIONS(4972), - [aux_sym_include_statement_token1] = ACTIONS(4972), - [aux_sym_data_statement_token1] = ACTIONS(4972), - [aux_sym_do_loop_statement_token1] = ACTIONS(4972), - [aux_sym__inline_if_statement_token1] = ACTIONS(4972), - [aux_sym_end_if_statement_token1] = ACTIONS(4972), - [aux_sym_elseif_clause_token2] = ACTIONS(4972), - [aux_sym__inline_where_statement_token1] = ACTIONS(4972), - [aux_sym__forall_control_expression_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token3] = ACTIONS(4972), - [aux_sym_select_type_statement_token1] = ACTIONS(4972), - [aux_sym_select_rank_statement_token2] = ACTIONS(4972), - [aux_sym_block_construct_token1] = ACTIONS(4972), - [aux_sym_associate_statement_token1] = ACTIONS(4972), - [aux_sym_format_statement_token1] = ACTIONS(4972), - [aux_sym_print_statement_token1] = ACTIONS(4972), - [aux_sym_open_statement_token1] = ACTIONS(4972), - [aux_sym_close_statement_token1] = ACTIONS(4972), - [aux_sym_inquire_statement_token1] = ACTIONS(4972), - [aux_sym_enum_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token2] = ACTIONS(4972), - [aux_sym_file_position_statement_token3] = ACTIONS(4972), - [aux_sym_file_position_statement_token4] = ACTIONS(4972), - [aux_sym_allocate_statement_token1] = ACTIONS(4972), - [aux_sym_entry_statement_token1] = ACTIONS(4972), - [aux_sym_logical_expression_token5] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_LPAREN_SLASH] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [aux_sym_boolean_literal_token1] = ACTIONS(4974), - [aux_sym_boolean_literal_token2] = ACTIONS(4974), - [aux_sym_null_literal_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token2] = ACTIONS(4972), - [aux_sym_coarray_statement_token6] = ACTIONS(4972), - [aux_sym_coarray_statement_token8] = ACTIONS(4972), - [aux_sym_coarray_statement_token11] = ACTIONS(4972), - [aux_sym_coarray_statement_token12] = ACTIONS(4972), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), - [aux_sym_identifier_token1] = ACTIONS(4972), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4974), - [sym__float_literal] = ACTIONS(4974), - [sym__boz_literal] = ACTIONS(4974), - [sym__string_literal] = ACTIONS(4974), - [sym__string_literal_kind] = ACTIONS(4974), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1158] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [aux_sym_preproc_else_token1] = ACTIONS(4583), - [aux_sym_preproc_elif_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [1166] = { + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token2] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [aux_sym_preproc_else_token1] = ACTIONS(4511), + [aux_sym_preproc_elif_token1] = ACTIONS(4511), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), + [anon_sym_LPAREN2] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_contains_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_subroutine_call_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_keyword_statement_token4] = ACTIONS(4511), + [aux_sym_keyword_statement_token6] = ACTIONS(4511), + [aux_sym_keyword_statement_token7] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym_do_loop_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym__inline_where_statement_token1] = ACTIONS(4511), + [aux_sym__forall_control_expression_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token3] = ACTIONS(4511), + [aux_sym_select_type_statement_token1] = ACTIONS(4511), + [aux_sym_select_rank_statement_token2] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_associate_statement_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_print_statement_token1] = ACTIONS(4511), + [aux_sym_open_statement_token1] = ACTIONS(4511), + [aux_sym_close_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token2] = ACTIONS(4511), + [aux_sym_file_position_statement_token3] = ACTIONS(4511), + [aux_sym_file_position_statement_token4] = ACTIONS(4511), + [aux_sym_allocate_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_logical_expression_token5] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_LPAREN_SLASH] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [aux_sym_boolean_literal_token1] = ACTIONS(4513), + [aux_sym_boolean_literal_token2] = ACTIONS(4513), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4513), + [sym__float_literal] = ACTIONS(4513), + [sym__boz_literal] = ACTIONS(4513), + [sym__string_literal] = ACTIONS(4513), + [sym__string_literal_kind] = ACTIONS(4513), }, - [1159] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [aux_sym_preproc_else_token1] = ACTIONS(4587), - [aux_sym_preproc_elif_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [1167] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [aux_sym_preproc_else_token1] = ACTIONS(4415), + [aux_sym_preproc_elif_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [1160] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token2] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [aux_sym_preproc_else_token1] = ACTIONS(5045), - [aux_sym_preproc_elif_token1] = ACTIONS(5045), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_LPAREN2] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_subroutine_call_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_keyword_statement_token4] = ACTIONS(5045), - [aux_sym_keyword_statement_token6] = ACTIONS(5045), - [aux_sym_keyword_statement_token7] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym_do_loop_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym__inline_where_statement_token1] = ACTIONS(5045), - [aux_sym__forall_control_expression_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token3] = ACTIONS(5045), - [aux_sym_select_type_statement_token1] = ACTIONS(5045), - [aux_sym_select_rank_statement_token2] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_associate_statement_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_print_statement_token1] = ACTIONS(5045), - [aux_sym_open_statement_token1] = ACTIONS(5045), - [aux_sym_close_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token2] = ACTIONS(5045), - [aux_sym_file_position_statement_token3] = ACTIONS(5045), - [aux_sym_file_position_statement_token4] = ACTIONS(5045), - [aux_sym_allocate_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_logical_expression_token5] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_LPAREN_SLASH] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [aux_sym_boolean_literal_token1] = ACTIONS(5047), - [aux_sym_boolean_literal_token2] = ACTIONS(5047), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - [sym__float_literal] = ACTIONS(5047), - [sym__boz_literal] = ACTIONS(5047), - [sym__string_literal] = ACTIONS(5047), - [sym__string_literal_kind] = ACTIONS(5047), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1161] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token2] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [aux_sym_preproc_else_token1] = ACTIONS(5065), - [aux_sym_preproc_elif_token1] = ACTIONS(5065), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_subroutine_call_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_keyword_statement_token4] = ACTIONS(5065), - [aux_sym_keyword_statement_token6] = ACTIONS(5065), - [aux_sym_keyword_statement_token7] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym_do_loop_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym__inline_where_statement_token1] = ACTIONS(5065), - [aux_sym__forall_control_expression_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token3] = ACTIONS(5065), - [aux_sym_select_type_statement_token1] = ACTIONS(5065), - [aux_sym_select_rank_statement_token2] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_associate_statement_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_print_statement_token1] = ACTIONS(5065), - [aux_sym_open_statement_token1] = ACTIONS(5065), - [aux_sym_close_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token2] = ACTIONS(5065), - [aux_sym_file_position_statement_token3] = ACTIONS(5065), - [aux_sym_file_position_statement_token4] = ACTIONS(5065), - [aux_sym_allocate_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_logical_expression_token5] = ACTIONS(5067), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_LPAREN_SLASH] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [aux_sym_boolean_literal_token1] = ACTIONS(5067), - [aux_sym_boolean_literal_token2] = ACTIONS(5067), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - [sym__float_literal] = ACTIONS(5067), - [sym__boz_literal] = ACTIONS(5067), - [sym__string_literal] = ACTIONS(5067), - [sym__string_literal_kind] = ACTIONS(5067), + [1168] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token2] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [aux_sym_preproc_else_token1] = ACTIONS(5022), + [aux_sym_preproc_elif_token1] = ACTIONS(5022), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_subroutine_call_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_keyword_statement_token4] = ACTIONS(5022), + [aux_sym_keyword_statement_token6] = ACTIONS(5022), + [aux_sym_keyword_statement_token7] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym_do_loop_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym__inline_where_statement_token1] = ACTIONS(5022), + [aux_sym__forall_control_expression_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token3] = ACTIONS(5022), + [aux_sym_select_type_statement_token1] = ACTIONS(5022), + [aux_sym_select_rank_statement_token2] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_associate_statement_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_print_statement_token1] = ACTIONS(5022), + [aux_sym_open_statement_token1] = ACTIONS(5022), + [aux_sym_close_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token2] = ACTIONS(5022), + [aux_sym_file_position_statement_token3] = ACTIONS(5022), + [aux_sym_file_position_statement_token4] = ACTIONS(5022), + [aux_sym_allocate_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_logical_expression_token5] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_LPAREN_SLASH] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [aux_sym_boolean_literal_token1] = ACTIONS(5024), + [aux_sym_boolean_literal_token2] = ACTIONS(5024), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + [sym__float_literal] = ACTIONS(5024), + [sym__boz_literal] = ACTIONS(5024), + [sym__string_literal] = ACTIONS(5024), + [sym__string_literal_kind] = ACTIONS(5024), }, - [1162] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token2] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [aux_sym_preproc_else_token1] = ACTIONS(5069), - [aux_sym_preproc_elif_token1] = ACTIONS(5069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_LPAREN2] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_subroutine_call_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_keyword_statement_token4] = ACTIONS(5069), - [aux_sym_keyword_statement_token6] = ACTIONS(5069), - [aux_sym_keyword_statement_token7] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym_do_loop_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym__inline_where_statement_token1] = ACTIONS(5069), - [aux_sym__forall_control_expression_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token3] = ACTIONS(5069), - [aux_sym_select_type_statement_token1] = ACTIONS(5069), - [aux_sym_select_rank_statement_token2] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_associate_statement_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_print_statement_token1] = ACTIONS(5069), - [aux_sym_open_statement_token1] = ACTIONS(5069), - [aux_sym_close_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token2] = ACTIONS(5069), - [aux_sym_file_position_statement_token3] = ACTIONS(5069), - [aux_sym_file_position_statement_token4] = ACTIONS(5069), - [aux_sym_allocate_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_logical_expression_token5] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LPAREN_SLASH] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [aux_sym_boolean_literal_token1] = ACTIONS(5071), - [aux_sym_boolean_literal_token2] = ACTIONS(5071), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - [sym__float_literal] = ACTIONS(5071), - [sym__boz_literal] = ACTIONS(5071), - [sym__string_literal] = ACTIONS(5071), - [sym__string_literal_kind] = ACTIONS(5071), + [1169] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token2] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [aux_sym_preproc_else_token1] = ACTIONS(5067), + [aux_sym_preproc_elif_token1] = ACTIONS(5067), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_subroutine_call_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_keyword_statement_token4] = ACTIONS(5067), + [aux_sym_keyword_statement_token6] = ACTIONS(5067), + [aux_sym_keyword_statement_token7] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym_do_loop_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym__inline_where_statement_token1] = ACTIONS(5067), + [aux_sym__forall_control_expression_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token3] = ACTIONS(5067), + [aux_sym_select_type_statement_token1] = ACTIONS(5067), + [aux_sym_select_rank_statement_token2] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_associate_statement_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_print_statement_token1] = ACTIONS(5067), + [aux_sym_open_statement_token1] = ACTIONS(5067), + [aux_sym_close_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token2] = ACTIONS(5067), + [aux_sym_file_position_statement_token3] = ACTIONS(5067), + [aux_sym_file_position_statement_token4] = ACTIONS(5067), + [aux_sym_allocate_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_logical_expression_token5] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LPAREN_SLASH] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [aux_sym_boolean_literal_token1] = ACTIONS(5069), + [aux_sym_boolean_literal_token2] = ACTIONS(5069), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + [sym__float_literal] = ACTIONS(5069), + [sym__boz_literal] = ACTIONS(5069), + [sym__string_literal] = ACTIONS(5069), + [sym__string_literal_kind] = ACTIONS(5069), }, - [1163] = { - [aux_sym_preproc_include_token1] = ACTIONS(5081), - [aux_sym_preproc_def_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token2] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), - [aux_sym_preproc_else_token1] = ACTIONS(5081), - [aux_sym_preproc_elif_token1] = ACTIONS(5081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5081), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5081), - [sym_preproc_directive] = ACTIONS(5081), - [anon_sym_LPAREN2] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), + [1170] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token2] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [aux_sym_preproc_else_token1] = ACTIONS(4383), + [aux_sym_preproc_elif_token1] = ACTIONS(4383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5081), - [aux_sym_interface_statement_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), - [aux_sym_language_binding_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token3] = ACTIONS(5081), - [aux_sym_contains_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token2] = ACTIONS(5081), - [aux_sym_implicit_statement_token1] = ACTIONS(5081), - [aux_sym_implicit_statement_token3] = ACTIONS(5081), - [aux_sym_implicit_statement_token4] = ACTIONS(5081), - [aux_sym_save_statement_token1] = ACTIONS(5081), - [aux_sym_private_statement_token1] = ACTIONS(5081), - [aux_sym_public_statement_token1] = ACTIONS(5081), - [aux_sym_namelist_statement_token1] = ACTIONS(5081), - [aux_sym_common_statement_token1] = ACTIONS(5081), - [aux_sym_import_statement_token1] = ACTIONS(5081), - [aux_sym_derived_type_definition_token1] = ACTIONS(5081), - [aux_sym_abstract_specifier_token1] = ACTIONS(5081), - [aux_sym_procedure_attribute_token6] = ACTIONS(5081), - [aux_sym_variable_attributes_token1] = ACTIONS(5081), - [aux_sym_variable_attributes_token2] = ACTIONS(5081), - [aux_sym_variable_attributes_token3] = ACTIONS(5081), - [aux_sym_variable_attributes_token4] = ACTIONS(5081), - [aux_sym_variable_attributes_token5] = ACTIONS(5081), - [aux_sym__intrinsic_type_token1] = ACTIONS(5081), - [aux_sym__intrinsic_type_token2] = ACTIONS(5081), - [aux_sym__intrinsic_type_token3] = ACTIONS(5081), - [aux_sym__intrinsic_type_token4] = ACTIONS(5081), - [aux_sym__intrinsic_type_token6] = ACTIONS(5081), - [aux_sym__intrinsic_type_token7] = ACTIONS(5081), - [aux_sym__intrinsic_type_token8] = ACTIONS(5081), - [aux_sym__intrinsic_type_token9] = ACTIONS(5081), - [aux_sym__intrinsic_type_token10] = ACTIONS(5081), - [aux_sym_derived_type_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), - [aux_sym_type_qualifier_token1] = ACTIONS(5081), - [aux_sym_type_qualifier_token2] = ACTIONS(5081), - [aux_sym_equivalence_statement_token1] = ACTIONS(5081), - [anon_sym_SEMI] = ACTIONS(5083), - [aux_sym_stop_statement_token1] = ACTIONS(5081), - [aux_sym_stop_statement_token2] = ACTIONS(5081), - [aux_sym_subroutine_call_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token2] = ACTIONS(5081), - [aux_sym_keyword_statement_token3] = ACTIONS(5081), - [aux_sym_keyword_statement_token4] = ACTIONS(5081), - [aux_sym_keyword_statement_token6] = ACTIONS(5081), - [aux_sym_keyword_statement_token7] = ACTIONS(5081), - [aux_sym_include_statement_token1] = ACTIONS(5081), - [aux_sym_data_statement_token1] = ACTIONS(5081), - [aux_sym_do_loop_statement_token1] = ACTIONS(5081), - [aux_sym__inline_if_statement_token1] = ACTIONS(5081), - [aux_sym_end_if_statement_token1] = ACTIONS(5081), - [aux_sym_elseif_clause_token2] = ACTIONS(5081), - [aux_sym__inline_where_statement_token1] = ACTIONS(5081), - [aux_sym__forall_control_expression_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token3] = ACTIONS(5081), - [aux_sym_select_type_statement_token1] = ACTIONS(5081), - [aux_sym_select_rank_statement_token2] = ACTIONS(5081), - [aux_sym_block_construct_token1] = ACTIONS(5081), - [aux_sym_associate_statement_token1] = ACTIONS(5081), - [aux_sym_format_statement_token1] = ACTIONS(5081), - [aux_sym_print_statement_token1] = ACTIONS(5081), - [aux_sym_open_statement_token1] = ACTIONS(5081), - [aux_sym_close_statement_token1] = ACTIONS(5081), - [aux_sym_inquire_statement_token1] = ACTIONS(5081), - [aux_sym_enum_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token2] = ACTIONS(5081), - [aux_sym_file_position_statement_token3] = ACTIONS(5081), - [aux_sym_file_position_statement_token4] = ACTIONS(5081), - [aux_sym_allocate_statement_token1] = ACTIONS(5081), - [aux_sym_entry_statement_token1] = ACTIONS(5081), - [aux_sym_logical_expression_token5] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_LPAREN_SLASH] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [aux_sym_boolean_literal_token1] = ACTIONS(5083), - [aux_sym_boolean_literal_token2] = ACTIONS(5083), - [aux_sym_null_literal_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token2] = ACTIONS(5081), - [aux_sym_coarray_statement_token6] = ACTIONS(5081), - [aux_sym_coarray_statement_token8] = ACTIONS(5081), - [aux_sym_coarray_statement_token11] = ACTIONS(5081), - [aux_sym_coarray_statement_token12] = ACTIONS(5081), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), - [aux_sym_identifier_token1] = ACTIONS(5081), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_subroutine_call_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_keyword_statement_token4] = ACTIONS(4383), + [aux_sym_keyword_statement_token6] = ACTIONS(4383), + [aux_sym_keyword_statement_token7] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym_do_loop_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym__inline_where_statement_token1] = ACTIONS(4383), + [aux_sym__forall_control_expression_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token3] = ACTIONS(4383), + [aux_sym_select_type_statement_token1] = ACTIONS(4383), + [aux_sym_select_rank_statement_token2] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_associate_statement_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_print_statement_token1] = ACTIONS(4383), + [aux_sym_open_statement_token1] = ACTIONS(4383), + [aux_sym_close_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token2] = ACTIONS(4383), + [aux_sym_file_position_statement_token3] = ACTIONS(4383), + [aux_sym_file_position_statement_token4] = ACTIONS(4383), + [aux_sym_allocate_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_logical_expression_token5] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LPAREN_SLASH] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [aux_sym_boolean_literal_token1] = ACTIONS(4385), + [aux_sym_boolean_literal_token2] = ACTIONS(4385), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5083), - [sym__float_literal] = ACTIONS(5083), - [sym__boz_literal] = ACTIONS(5083), - [sym__string_literal] = ACTIONS(5083), - [sym__string_literal_kind] = ACTIONS(5083), - }, - [1164] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token2] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [aux_sym_preproc_else_token1] = ACTIONS(5057), - [aux_sym_preproc_elif_token1] = ACTIONS(5057), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_LPAREN2] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_subroutine_call_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_keyword_statement_token4] = ACTIONS(5057), - [aux_sym_keyword_statement_token6] = ACTIONS(5057), - [aux_sym_keyword_statement_token7] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym_do_loop_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym__inline_where_statement_token1] = ACTIONS(5057), - [aux_sym__forall_control_expression_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token3] = ACTIONS(5057), - [aux_sym_select_type_statement_token1] = ACTIONS(5057), - [aux_sym_select_rank_statement_token2] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_associate_statement_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_print_statement_token1] = ACTIONS(5057), - [aux_sym_open_statement_token1] = ACTIONS(5057), - [aux_sym_close_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token2] = ACTIONS(5057), - [aux_sym_file_position_statement_token3] = ACTIONS(5057), - [aux_sym_file_position_statement_token4] = ACTIONS(5057), - [aux_sym_allocate_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_logical_expression_token5] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_LPAREN_SLASH] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [aux_sym_boolean_literal_token1] = ACTIONS(5059), - [aux_sym_boolean_literal_token2] = ACTIONS(5059), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - [sym__float_literal] = ACTIONS(5059), - [sym__boz_literal] = ACTIONS(5059), - [sym__string_literal] = ACTIONS(5059), - [sym__string_literal_kind] = ACTIONS(5059), + [sym__integer_literal] = ACTIONS(4385), + [sym__float_literal] = ACTIONS(4385), + [sym__boz_literal] = ACTIONS(4385), + [sym__string_literal] = ACTIONS(4385), + [sym__string_literal_kind] = ACTIONS(4385), }, - [1165] = { - [aux_sym_preproc_include_token1] = ACTIONS(4976), - [aux_sym_preproc_def_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token2] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), - [aux_sym_preproc_else_token1] = ACTIONS(4976), - [aux_sym_preproc_elif_token1] = ACTIONS(4976), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4976), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4976), - [sym_preproc_directive] = ACTIONS(4976), - [anon_sym_LPAREN2] = ACTIONS(4976), - [anon_sym_PLUS] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4976), - [aux_sym_interface_statement_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), - [aux_sym_language_binding_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token3] = ACTIONS(4976), - [aux_sym_contains_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token2] = ACTIONS(4976), - [aux_sym_implicit_statement_token1] = ACTIONS(4976), - [aux_sym_implicit_statement_token3] = ACTIONS(4976), - [aux_sym_implicit_statement_token4] = ACTIONS(4976), - [aux_sym_save_statement_token1] = ACTIONS(4976), - [aux_sym_private_statement_token1] = ACTIONS(4976), - [aux_sym_public_statement_token1] = ACTIONS(4976), - [aux_sym_namelist_statement_token1] = ACTIONS(4976), - [aux_sym_common_statement_token1] = ACTIONS(4976), - [aux_sym_import_statement_token1] = ACTIONS(4976), - [aux_sym_derived_type_definition_token1] = ACTIONS(4976), - [aux_sym_abstract_specifier_token1] = ACTIONS(4976), - [aux_sym_procedure_attribute_token6] = ACTIONS(4976), - [aux_sym_variable_attributes_token1] = ACTIONS(4976), - [aux_sym_variable_attributes_token2] = ACTIONS(4976), - [aux_sym_variable_attributes_token3] = ACTIONS(4976), - [aux_sym_variable_attributes_token4] = ACTIONS(4976), - [aux_sym_variable_attributes_token5] = ACTIONS(4976), - [aux_sym__intrinsic_type_token1] = ACTIONS(4976), - [aux_sym__intrinsic_type_token2] = ACTIONS(4976), - [aux_sym__intrinsic_type_token3] = ACTIONS(4976), - [aux_sym__intrinsic_type_token4] = ACTIONS(4976), - [aux_sym__intrinsic_type_token6] = ACTIONS(4976), - [aux_sym__intrinsic_type_token7] = ACTIONS(4976), - [aux_sym__intrinsic_type_token8] = ACTIONS(4976), - [aux_sym__intrinsic_type_token9] = ACTIONS(4976), - [aux_sym__intrinsic_type_token10] = ACTIONS(4976), - [aux_sym_derived_type_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), - [aux_sym_type_qualifier_token1] = ACTIONS(4976), - [aux_sym_type_qualifier_token2] = ACTIONS(4976), - [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), - [aux_sym_stop_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token2] = ACTIONS(4976), - [aux_sym_subroutine_call_token1] = ACTIONS(4976), - [aux_sym_keyword_statement_token1] = ACTIONS(4976), - [aux_sym_keyword_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token3] = ACTIONS(4976), - [aux_sym_keyword_statement_token4] = ACTIONS(4976), - [aux_sym_keyword_statement_token6] = ACTIONS(4976), - [aux_sym_keyword_statement_token7] = ACTIONS(4976), - [aux_sym_include_statement_token1] = ACTIONS(4976), - [aux_sym_data_statement_token1] = ACTIONS(4976), - [aux_sym_do_loop_statement_token1] = ACTIONS(4976), - [aux_sym__inline_if_statement_token1] = ACTIONS(4976), - [aux_sym_end_if_statement_token1] = ACTIONS(4976), - [aux_sym_elseif_clause_token2] = ACTIONS(4976), - [aux_sym__inline_where_statement_token1] = ACTIONS(4976), - [aux_sym__forall_control_expression_token1] = ACTIONS(4976), - [aux_sym_select_case_statement_token1] = ACTIONS(4976), - [aux_sym_select_case_statement_token3] = ACTIONS(4976), - [aux_sym_select_type_statement_token1] = ACTIONS(4976), - [aux_sym_select_rank_statement_token2] = ACTIONS(4976), - [aux_sym_block_construct_token1] = ACTIONS(4976), - [aux_sym_associate_statement_token1] = ACTIONS(4976), - [aux_sym_format_statement_token1] = ACTIONS(4976), - [aux_sym_print_statement_token1] = ACTIONS(4976), - [aux_sym_open_statement_token1] = ACTIONS(4976), - [aux_sym_close_statement_token1] = ACTIONS(4976), - [aux_sym_inquire_statement_token1] = ACTIONS(4976), - [aux_sym_enum_statement_token1] = ACTIONS(4976), - [aux_sym_file_position_statement_token1] = ACTIONS(4976), - [aux_sym_file_position_statement_token2] = ACTIONS(4976), - [aux_sym_file_position_statement_token3] = ACTIONS(4976), - [aux_sym_file_position_statement_token4] = ACTIONS(4976), - [aux_sym_allocate_statement_token1] = ACTIONS(4976), - [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_logical_expression_token5] = ACTIONS(4978), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_LPAREN_SLASH] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [aux_sym_boolean_literal_token1] = ACTIONS(4978), - [aux_sym_boolean_literal_token2] = ACTIONS(4978), - [aux_sym_null_literal_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token2] = ACTIONS(4976), - [aux_sym_coarray_statement_token6] = ACTIONS(4976), - [aux_sym_coarray_statement_token8] = ACTIONS(4976), - [aux_sym_coarray_statement_token11] = ACTIONS(4976), - [aux_sym_coarray_statement_token12] = ACTIONS(4976), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), - [aux_sym_identifier_token1] = ACTIONS(4976), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - [sym__float_literal] = ACTIONS(4978), - [sym__boz_literal] = ACTIONS(4978), - [sym__string_literal] = ACTIONS(4978), - [sym__string_literal_kind] = ACTIONS(4978), + [1171] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token2] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5026), + [aux_sym_preproc_elif_token1] = ACTIONS(5026), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_subroutine_call_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_keyword_statement_token4] = ACTIONS(5026), + [aux_sym_keyword_statement_token6] = ACTIONS(5026), + [aux_sym_keyword_statement_token7] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym_do_loop_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym__inline_where_statement_token1] = ACTIONS(5026), + [aux_sym__forall_control_expression_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token3] = ACTIONS(5026), + [aux_sym_select_type_statement_token1] = ACTIONS(5026), + [aux_sym_select_rank_statement_token2] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_associate_statement_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_print_statement_token1] = ACTIONS(5026), + [aux_sym_open_statement_token1] = ACTIONS(5026), + [aux_sym_close_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token2] = ACTIONS(5026), + [aux_sym_file_position_statement_token3] = ACTIONS(5026), + [aux_sym_file_position_statement_token4] = ACTIONS(5026), + [aux_sym_allocate_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_logical_expression_token5] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_LPAREN_SLASH] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [aux_sym_boolean_literal_token1] = ACTIONS(5028), + [aux_sym_boolean_literal_token2] = ACTIONS(5028), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + [sym__float_literal] = ACTIONS(5028), + [sym__boz_literal] = ACTIONS(5028), + [sym__string_literal] = ACTIONS(5028), + [sym__string_literal_kind] = ACTIONS(5028), }, - [1166] = { + [1172] = { [aux_sym_preproc_include_token1] = ACTIONS(4990), [aux_sym_preproc_def_token1] = ACTIONS(4990), [aux_sym_preproc_if_token1] = ACTIONS(4990), @@ -247564,2240 +248338,1466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4992), [sym__string_literal_kind] = ACTIONS(4992), }, - [1167] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token2] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [aux_sym_preproc_else_token1] = ACTIONS(5073), - [aux_sym_preproc_elif_token1] = ACTIONS(5073), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_LPAREN2] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_subroutine_call_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_keyword_statement_token4] = ACTIONS(5073), - [aux_sym_keyword_statement_token6] = ACTIONS(5073), - [aux_sym_keyword_statement_token7] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym_do_loop_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym__inline_where_statement_token1] = ACTIONS(5073), - [aux_sym__forall_control_expression_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token3] = ACTIONS(5073), - [aux_sym_select_type_statement_token1] = ACTIONS(5073), - [aux_sym_select_rank_statement_token2] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_associate_statement_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_print_statement_token1] = ACTIONS(5073), - [aux_sym_open_statement_token1] = ACTIONS(5073), - [aux_sym_close_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token2] = ACTIONS(5073), - [aux_sym_file_position_statement_token3] = ACTIONS(5073), - [aux_sym_file_position_statement_token4] = ACTIONS(5073), - [aux_sym_allocate_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_logical_expression_token5] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LPAREN_SLASH] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [aux_sym_boolean_literal_token1] = ACTIONS(5075), - [aux_sym_boolean_literal_token2] = ACTIONS(5075), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - [sym__float_literal] = ACTIONS(5075), - [sym__boz_literal] = ACTIONS(5075), - [sym__string_literal] = ACTIONS(5075), - [sym__string_literal_kind] = ACTIONS(5075), - }, - [1168] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token2] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [aux_sym_preproc_else_token1] = ACTIONS(5077), - [aux_sym_preproc_elif_token1] = ACTIONS(5077), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_LPAREN2] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [anon_sym_SEMI] = ACTIONS(5079), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_subroutine_call_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_keyword_statement_token4] = ACTIONS(5077), - [aux_sym_keyword_statement_token6] = ACTIONS(5077), - [aux_sym_keyword_statement_token7] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym_do_loop_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym__inline_where_statement_token1] = ACTIONS(5077), - [aux_sym__forall_control_expression_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token3] = ACTIONS(5077), - [aux_sym_select_type_statement_token1] = ACTIONS(5077), - [aux_sym_select_rank_statement_token2] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_associate_statement_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_print_statement_token1] = ACTIONS(5077), - [aux_sym_open_statement_token1] = ACTIONS(5077), - [aux_sym_close_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token2] = ACTIONS(5077), - [aux_sym_file_position_statement_token3] = ACTIONS(5077), - [aux_sym_file_position_statement_token4] = ACTIONS(5077), - [aux_sym_allocate_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_logical_expression_token5] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_LPAREN_SLASH] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [aux_sym_boolean_literal_token1] = ACTIONS(5079), - [aux_sym_boolean_literal_token2] = ACTIONS(5079), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - [sym__float_literal] = ACTIONS(5079), - [sym__boz_literal] = ACTIONS(5079), - [sym__string_literal] = ACTIONS(5079), - [sym__string_literal_kind] = ACTIONS(5079), - }, - [1169] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token2] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [aux_sym_preproc_else_token1] = ACTIONS(5025), - [aux_sym_preproc_elif_token1] = ACTIONS(5025), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_subroutine_call_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_keyword_statement_token4] = ACTIONS(5025), - [aux_sym_keyword_statement_token6] = ACTIONS(5025), - [aux_sym_keyword_statement_token7] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym_do_loop_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym__inline_where_statement_token1] = ACTIONS(5025), - [aux_sym__forall_control_expression_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token3] = ACTIONS(5025), - [aux_sym_select_type_statement_token1] = ACTIONS(5025), - [aux_sym_select_rank_statement_token2] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_associate_statement_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_print_statement_token1] = ACTIONS(5025), - [aux_sym_open_statement_token1] = ACTIONS(5025), - [aux_sym_close_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token2] = ACTIONS(5025), - [aux_sym_file_position_statement_token3] = ACTIONS(5025), - [aux_sym_file_position_statement_token4] = ACTIONS(5025), - [aux_sym_allocate_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_logical_expression_token5] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_LPAREN_SLASH] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [aux_sym_boolean_literal_token1] = ACTIONS(5027), - [aux_sym_boolean_literal_token2] = ACTIONS(5027), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - [sym__float_literal] = ACTIONS(5027), - [sym__boz_literal] = ACTIONS(5027), - [sym__string_literal] = ACTIONS(5027), - [sym__string_literal_kind] = ACTIONS(5027), - }, - [1170] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token2] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [aux_sym_preproc_else_token1] = ACTIONS(5037), - [aux_sym_preproc_elif_token1] = ACTIONS(5037), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_subroutine_call_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_keyword_statement_token4] = ACTIONS(5037), - [aux_sym_keyword_statement_token6] = ACTIONS(5037), - [aux_sym_keyword_statement_token7] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym_do_loop_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym__inline_where_statement_token1] = ACTIONS(5037), - [aux_sym__forall_control_expression_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token3] = ACTIONS(5037), - [aux_sym_select_type_statement_token1] = ACTIONS(5037), - [aux_sym_select_rank_statement_token2] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_associate_statement_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_print_statement_token1] = ACTIONS(5037), - [aux_sym_open_statement_token1] = ACTIONS(5037), - [aux_sym_close_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token2] = ACTIONS(5037), - [aux_sym_file_position_statement_token3] = ACTIONS(5037), - [aux_sym_file_position_statement_token4] = ACTIONS(5037), - [aux_sym_allocate_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_logical_expression_token5] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_LPAREN_SLASH] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [aux_sym_boolean_literal_token1] = ACTIONS(5039), - [aux_sym_boolean_literal_token2] = ACTIONS(5039), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - [sym__float_literal] = ACTIONS(5039), - [sym__boz_literal] = ACTIONS(5039), - [sym__string_literal] = ACTIONS(5039), - [sym__string_literal_kind] = ACTIONS(5039), - }, - [1171] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token2] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [aux_sym_preproc_else_token1] = ACTIONS(5049), - [aux_sym_preproc_elif_token1] = ACTIONS(5049), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_subroutine_call_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_keyword_statement_token4] = ACTIONS(5049), - [aux_sym_keyword_statement_token6] = ACTIONS(5049), - [aux_sym_keyword_statement_token7] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym_do_loop_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym__inline_where_statement_token1] = ACTIONS(5049), - [aux_sym__forall_control_expression_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token3] = ACTIONS(5049), - [aux_sym_select_type_statement_token1] = ACTIONS(5049), - [aux_sym_select_rank_statement_token2] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_associate_statement_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_print_statement_token1] = ACTIONS(5049), - [aux_sym_open_statement_token1] = ACTIONS(5049), - [aux_sym_close_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token2] = ACTIONS(5049), - [aux_sym_file_position_statement_token3] = ACTIONS(5049), - [aux_sym_file_position_statement_token4] = ACTIONS(5049), - [aux_sym_allocate_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_logical_expression_token5] = ACTIONS(5051), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_LPAREN_SLASH] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [aux_sym_boolean_literal_token1] = ACTIONS(5051), - [aux_sym_boolean_literal_token2] = ACTIONS(5051), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - [sym__float_literal] = ACTIONS(5051), - [sym__boz_literal] = ACTIONS(5051), - [sym__string_literal] = ACTIONS(5051), - [sym__string_literal_kind] = ACTIONS(5051), - }, - [1172] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token2] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [aux_sym_preproc_else_token1] = ACTIONS(5061), - [aux_sym_preproc_elif_token1] = ACTIONS(5061), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_LPAREN2] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_subroutine_call_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_keyword_statement_token4] = ACTIONS(5061), - [aux_sym_keyword_statement_token6] = ACTIONS(5061), - [aux_sym_keyword_statement_token7] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym_do_loop_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym__inline_where_statement_token1] = ACTIONS(5061), - [aux_sym__forall_control_expression_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token3] = ACTIONS(5061), - [aux_sym_select_type_statement_token1] = ACTIONS(5061), - [aux_sym_select_rank_statement_token2] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_associate_statement_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_print_statement_token1] = ACTIONS(5061), - [aux_sym_open_statement_token1] = ACTIONS(5061), - [aux_sym_close_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token2] = ACTIONS(5061), - [aux_sym_file_position_statement_token3] = ACTIONS(5061), - [aux_sym_file_position_statement_token4] = ACTIONS(5061), - [aux_sym_allocate_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_logical_expression_token5] = ACTIONS(5063), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LPAREN_SLASH] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [aux_sym_boolean_literal_token1] = ACTIONS(5063), - [aux_sym_boolean_literal_token2] = ACTIONS(5063), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - [sym__float_literal] = ACTIONS(5063), - [sym__boz_literal] = ACTIONS(5063), - [sym__string_literal] = ACTIONS(5063), - [sym__string_literal_kind] = ACTIONS(5063), - }, [1173] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token2] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [aux_sym_preproc_else_token1] = ACTIONS(5029), - [aux_sym_preproc_elif_token1] = ACTIONS(5029), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_LPAREN2] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_subroutine_call_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_keyword_statement_token4] = ACTIONS(5029), - [aux_sym_keyword_statement_token6] = ACTIONS(5029), - [aux_sym_keyword_statement_token7] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym_do_loop_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym__inline_where_statement_token1] = ACTIONS(5029), - [aux_sym__forall_control_expression_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token3] = ACTIONS(5029), - [aux_sym_select_type_statement_token1] = ACTIONS(5029), - [aux_sym_select_rank_statement_token2] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_associate_statement_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_print_statement_token1] = ACTIONS(5029), - [aux_sym_open_statement_token1] = ACTIONS(5029), - [aux_sym_close_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token2] = ACTIONS(5029), - [aux_sym_file_position_statement_token3] = ACTIONS(5029), - [aux_sym_file_position_statement_token4] = ACTIONS(5029), - [aux_sym_allocate_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_logical_expression_token5] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_LPAREN_SLASH] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [aux_sym_boolean_literal_token1] = ACTIONS(5031), - [aux_sym_boolean_literal_token2] = ACTIONS(5031), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - [sym__float_literal] = ACTIONS(5031), - [sym__boz_literal] = ACTIONS(5031), - [sym__string_literal] = ACTIONS(5031), - [sym__string_literal_kind] = ACTIONS(5031), + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token2] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [aux_sym_preproc_else_token1] = ACTIONS(4387), + [aux_sym_preproc_elif_token1] = ACTIONS(4387), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_subroutine_call_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_keyword_statement_token4] = ACTIONS(4387), + [aux_sym_keyword_statement_token6] = ACTIONS(4387), + [aux_sym_keyword_statement_token7] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym_do_loop_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym__inline_where_statement_token1] = ACTIONS(4387), + [aux_sym__forall_control_expression_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token3] = ACTIONS(4387), + [aux_sym_select_type_statement_token1] = ACTIONS(4387), + [aux_sym_select_rank_statement_token2] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_associate_statement_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_print_statement_token1] = ACTIONS(4387), + [aux_sym_open_statement_token1] = ACTIONS(4387), + [aux_sym_close_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token2] = ACTIONS(4387), + [aux_sym_file_position_statement_token3] = ACTIONS(4387), + [aux_sym_file_position_statement_token4] = ACTIONS(4387), + [aux_sym_allocate_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_logical_expression_token5] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LPAREN_SLASH] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [aux_sym_boolean_literal_token1] = ACTIONS(4389), + [aux_sym_boolean_literal_token2] = ACTIONS(4389), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4389), + [sym__float_literal] = ACTIONS(4389), + [sym__boz_literal] = ACTIONS(4389), + [sym__string_literal] = ACTIONS(4389), + [sym__string_literal_kind] = ACTIONS(4389), }, [1174] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token2] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [aux_sym_preproc_else_token1] = ACTIONS(5053), - [aux_sym_preproc_elif_token1] = ACTIONS(5053), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_LPAREN2] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [anon_sym_SEMI] = ACTIONS(5055), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_subroutine_call_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_keyword_statement_token4] = ACTIONS(5053), - [aux_sym_keyword_statement_token6] = ACTIONS(5053), - [aux_sym_keyword_statement_token7] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym_do_loop_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym__inline_where_statement_token1] = ACTIONS(5053), - [aux_sym__forall_control_expression_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token3] = ACTIONS(5053), - [aux_sym_select_type_statement_token1] = ACTIONS(5053), - [aux_sym_select_rank_statement_token2] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_associate_statement_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_print_statement_token1] = ACTIONS(5053), - [aux_sym_open_statement_token1] = ACTIONS(5053), - [aux_sym_close_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token2] = ACTIONS(5053), - [aux_sym_file_position_statement_token3] = ACTIONS(5053), - [aux_sym_file_position_statement_token4] = ACTIONS(5053), - [aux_sym_allocate_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_logical_expression_token5] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_LPAREN_SLASH] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [aux_sym_boolean_literal_token1] = ACTIONS(5055), - [aux_sym_boolean_literal_token2] = ACTIONS(5055), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - [sym__float_literal] = ACTIONS(5055), - [sym__boz_literal] = ACTIONS(5055), - [sym__string_literal] = ACTIONS(5055), - [sym__string_literal_kind] = ACTIONS(5055), + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token2] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [aux_sym_preproc_else_token1] = ACTIONS(5051), + [aux_sym_preproc_elif_token1] = ACTIONS(5051), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_LPAREN2] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_subroutine_call_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_keyword_statement_token4] = ACTIONS(5051), + [aux_sym_keyword_statement_token6] = ACTIONS(5051), + [aux_sym_keyword_statement_token7] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym_do_loop_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym__inline_where_statement_token1] = ACTIONS(5051), + [aux_sym__forall_control_expression_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token3] = ACTIONS(5051), + [aux_sym_select_type_statement_token1] = ACTIONS(5051), + [aux_sym_select_rank_statement_token2] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_associate_statement_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_print_statement_token1] = ACTIONS(5051), + [aux_sym_open_statement_token1] = ACTIONS(5051), + [aux_sym_close_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token2] = ACTIONS(5051), + [aux_sym_file_position_statement_token3] = ACTIONS(5051), + [aux_sym_file_position_statement_token4] = ACTIONS(5051), + [aux_sym_allocate_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_logical_expression_token5] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_LPAREN_SLASH] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [aux_sym_boolean_literal_token1] = ACTIONS(5053), + [aux_sym_boolean_literal_token2] = ACTIONS(5053), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + [sym__float_literal] = ACTIONS(5053), + [sym__boz_literal] = ACTIONS(5053), + [sym__string_literal] = ACTIONS(5053), + [sym__string_literal_kind] = ACTIONS(5053), }, [1175] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token2] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [aux_sym_preproc_else_token1] = ACTIONS(5033), - [aux_sym_preproc_elif_token1] = ACTIONS(5033), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_LPAREN2] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_subroutine_call_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_keyword_statement_token4] = ACTIONS(5033), - [aux_sym_keyword_statement_token6] = ACTIONS(5033), - [aux_sym_keyword_statement_token7] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym_do_loop_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym__inline_where_statement_token1] = ACTIONS(5033), - [aux_sym__forall_control_expression_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token3] = ACTIONS(5033), - [aux_sym_select_type_statement_token1] = ACTIONS(5033), - [aux_sym_select_rank_statement_token2] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_associate_statement_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_print_statement_token1] = ACTIONS(5033), - [aux_sym_open_statement_token1] = ACTIONS(5033), - [aux_sym_close_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token2] = ACTIONS(5033), - [aux_sym_file_position_statement_token3] = ACTIONS(5033), - [aux_sym_file_position_statement_token4] = ACTIONS(5033), - [aux_sym_allocate_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_logical_expression_token5] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_LPAREN_SLASH] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [aux_sym_boolean_literal_token1] = ACTIONS(5035), - [aux_sym_boolean_literal_token2] = ACTIONS(5035), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - [sym__float_literal] = ACTIONS(5035), - [sym__boz_literal] = ACTIONS(5035), - [sym__string_literal] = ACTIONS(5035), - [sym__string_literal_kind] = ACTIONS(5035), + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [aux_sym_preproc_else_token1] = ACTIONS(5002), + [aux_sym_preproc_elif_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_subroutine_call_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_keyword_statement_token4] = ACTIONS(5002), + [aux_sym_keyword_statement_token6] = ACTIONS(5002), + [aux_sym_keyword_statement_token7] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym_do_loop_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym__inline_where_statement_token1] = ACTIONS(5002), + [aux_sym__forall_control_expression_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token3] = ACTIONS(5002), + [aux_sym_select_type_statement_token1] = ACTIONS(5002), + [aux_sym_select_rank_statement_token2] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_associate_statement_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_print_statement_token1] = ACTIONS(5002), + [aux_sym_open_statement_token1] = ACTIONS(5002), + [aux_sym_close_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token2] = ACTIONS(5002), + [aux_sym_file_position_statement_token3] = ACTIONS(5002), + [aux_sym_file_position_statement_token4] = ACTIONS(5002), + [aux_sym_allocate_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_logical_expression_token5] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_LPAREN_SLASH] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [aux_sym_boolean_literal_token1] = ACTIONS(5004), + [aux_sym_boolean_literal_token2] = ACTIONS(5004), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5004), + [sym__float_literal] = ACTIONS(5004), + [sym__boz_literal] = ACTIONS(5004), + [sym__string_literal] = ACTIONS(5004), + [sym__string_literal_kind] = ACTIONS(5004), }, [1176] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token2] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [aux_sym_preproc_else_token1] = ACTIONS(5041), - [aux_sym_preproc_elif_token1] = ACTIONS(5041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_LPAREN2] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_subroutine_call_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_keyword_statement_token4] = ACTIONS(5041), - [aux_sym_keyword_statement_token6] = ACTIONS(5041), - [aux_sym_keyword_statement_token7] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym_do_loop_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym__inline_where_statement_token1] = ACTIONS(5041), - [aux_sym__forall_control_expression_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token3] = ACTIONS(5041), - [aux_sym_select_type_statement_token1] = ACTIONS(5041), - [aux_sym_select_rank_statement_token2] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_associate_statement_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_print_statement_token1] = ACTIONS(5041), - [aux_sym_open_statement_token1] = ACTIONS(5041), - [aux_sym_close_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token2] = ACTIONS(5041), - [aux_sym_file_position_statement_token3] = ACTIONS(5041), - [aux_sym_file_position_statement_token4] = ACTIONS(5041), - [aux_sym_allocate_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_logical_expression_token5] = ACTIONS(5043), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_LPAREN_SLASH] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [aux_sym_boolean_literal_token1] = ACTIONS(5043), - [aux_sym_boolean_literal_token2] = ACTIONS(5043), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - [sym__float_literal] = ACTIONS(5043), - [sym__boz_literal] = ACTIONS(5043), - [sym__string_literal] = ACTIONS(5043), - [sym__string_literal_kind] = ACTIONS(5043), + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [aux_sym_preproc_else_token1] = ACTIONS(4998), + [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_subroutine_call_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_keyword_statement_token4] = ACTIONS(4998), + [aux_sym_keyword_statement_token6] = ACTIONS(4998), + [aux_sym_keyword_statement_token7] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym_do_loop_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym__inline_where_statement_token1] = ACTIONS(4998), + [aux_sym__forall_control_expression_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token3] = ACTIONS(4998), + [aux_sym_select_type_statement_token1] = ACTIONS(4998), + [aux_sym_select_rank_statement_token2] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_associate_statement_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_print_statement_token1] = ACTIONS(4998), + [aux_sym_open_statement_token1] = ACTIONS(4998), + [aux_sym_close_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token2] = ACTIONS(4998), + [aux_sym_file_position_statement_token3] = ACTIONS(4998), + [aux_sym_file_position_statement_token4] = ACTIONS(4998), + [aux_sym_allocate_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [aux_sym_boolean_literal_token1] = ACTIONS(5000), + [aux_sym_boolean_literal_token2] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + [sym__float_literal] = ACTIONS(5000), + [sym__boz_literal] = ACTIONS(5000), + [sym__string_literal] = ACTIONS(5000), + [sym__string_literal_kind] = ACTIONS(5000), }, [1177] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token2] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [aux_sym_preproc_else_token1] = ACTIONS(4461), - [aux_sym_preproc_elif_token1] = ACTIONS(4461), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), + [aux_sym_preproc_include_token1] = ACTIONS(4972), + [aux_sym_preproc_def_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token2] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), + [aux_sym_preproc_else_token1] = ACTIONS(4972), + [aux_sym_preproc_elif_token1] = ACTIONS(4972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4972), + [sym_preproc_directive] = ACTIONS(4972), + [anon_sym_LPAREN2] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4972), + [aux_sym_interface_statement_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), + [aux_sym_language_binding_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token3] = ACTIONS(4972), + [aux_sym_contains_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token2] = ACTIONS(4972), + [aux_sym_implicit_statement_token1] = ACTIONS(4972), + [aux_sym_implicit_statement_token3] = ACTIONS(4972), + [aux_sym_implicit_statement_token4] = ACTIONS(4972), + [aux_sym_save_statement_token1] = ACTIONS(4972), + [aux_sym_private_statement_token1] = ACTIONS(4972), + [aux_sym_public_statement_token1] = ACTIONS(4972), + [aux_sym_namelist_statement_token1] = ACTIONS(4972), + [aux_sym_common_statement_token1] = ACTIONS(4972), + [aux_sym_import_statement_token1] = ACTIONS(4972), + [aux_sym_derived_type_definition_token1] = ACTIONS(4972), + [aux_sym_abstract_specifier_token1] = ACTIONS(4972), + [aux_sym_procedure_attribute_token6] = ACTIONS(4972), + [aux_sym_variable_attributes_token1] = ACTIONS(4972), + [aux_sym_variable_attributes_token2] = ACTIONS(4972), + [aux_sym_variable_attributes_token3] = ACTIONS(4972), + [aux_sym_variable_attributes_token4] = ACTIONS(4972), + [aux_sym_variable_attributes_token5] = ACTIONS(4972), + [aux_sym__intrinsic_type_token1] = ACTIONS(4972), + [aux_sym__intrinsic_type_token2] = ACTIONS(4972), + [aux_sym__intrinsic_type_token3] = ACTIONS(4972), + [aux_sym__intrinsic_type_token4] = ACTIONS(4972), + [aux_sym__intrinsic_type_token6] = ACTIONS(4972), + [aux_sym__intrinsic_type_token7] = ACTIONS(4972), + [aux_sym__intrinsic_type_token8] = ACTIONS(4972), + [aux_sym__intrinsic_type_token9] = ACTIONS(4972), + [aux_sym__intrinsic_type_token10] = ACTIONS(4972), + [aux_sym_derived_type_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), + [aux_sym_type_qualifier_token1] = ACTIONS(4972), + [aux_sym_type_qualifier_token2] = ACTIONS(4972), + [aux_sym_equivalence_statement_token1] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [aux_sym_stop_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token2] = ACTIONS(4972), + [aux_sym_subroutine_call_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token3] = ACTIONS(4972), + [aux_sym_keyword_statement_token4] = ACTIONS(4972), + [aux_sym_keyword_statement_token6] = ACTIONS(4972), + [aux_sym_keyword_statement_token7] = ACTIONS(4972), + [aux_sym_include_statement_token1] = ACTIONS(4972), + [aux_sym_data_statement_token1] = ACTIONS(4972), + [aux_sym_do_loop_statement_token1] = ACTIONS(4972), + [aux_sym__inline_if_statement_token1] = ACTIONS(4972), + [aux_sym_end_if_statement_token1] = ACTIONS(4972), + [aux_sym_elseif_clause_token2] = ACTIONS(4972), + [aux_sym__inline_where_statement_token1] = ACTIONS(4972), + [aux_sym__forall_control_expression_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token3] = ACTIONS(4972), + [aux_sym_select_type_statement_token1] = ACTIONS(4972), + [aux_sym_select_rank_statement_token2] = ACTIONS(4972), + [aux_sym_block_construct_token1] = ACTIONS(4972), + [aux_sym_associate_statement_token1] = ACTIONS(4972), + [aux_sym_format_statement_token1] = ACTIONS(4972), + [aux_sym_print_statement_token1] = ACTIONS(4972), + [aux_sym_open_statement_token1] = ACTIONS(4972), + [aux_sym_close_statement_token1] = ACTIONS(4972), + [aux_sym_inquire_statement_token1] = ACTIONS(4972), + [aux_sym_enum_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token2] = ACTIONS(4972), + [aux_sym_file_position_statement_token3] = ACTIONS(4972), + [aux_sym_file_position_statement_token4] = ACTIONS(4972), + [aux_sym_allocate_statement_token1] = ACTIONS(4972), + [aux_sym_entry_statement_token1] = ACTIONS(4972), + [aux_sym_logical_expression_token5] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_LPAREN_SLASH] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [aux_sym_boolean_literal_token1] = ACTIONS(4974), + [aux_sym_boolean_literal_token2] = ACTIONS(4974), + [aux_sym_null_literal_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token2] = ACTIONS(4972), + [aux_sym_coarray_statement_token6] = ACTIONS(4972), + [aux_sym_coarray_statement_token8] = ACTIONS(4972), + [aux_sym_coarray_statement_token11] = ACTIONS(4972), + [aux_sym_coarray_statement_token12] = ACTIONS(4972), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), + [aux_sym_identifier_token1] = ACTIONS(4972), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4974), + [sym__float_literal] = ACTIONS(4974), + [sym__boz_literal] = ACTIONS(4974), + [sym__string_literal] = ACTIONS(4974), + [sym__string_literal_kind] = ACTIONS(4974), }, [1178] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token2] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [aux_sym_preproc_else_token1] = ACTIONS(4481), - [aux_sym_preproc_elif_token1] = ACTIONS(4481), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token2] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [aux_sym_preproc_else_token1] = ACTIONS(5055), + [aux_sym_preproc_elif_token1] = ACTIONS(5055), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_LPAREN2] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_subroutine_call_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_keyword_statement_token4] = ACTIONS(5055), + [aux_sym_keyword_statement_token6] = ACTIONS(5055), + [aux_sym_keyword_statement_token7] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym_do_loop_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym__inline_where_statement_token1] = ACTIONS(5055), + [aux_sym__forall_control_expression_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token3] = ACTIONS(5055), + [aux_sym_select_type_statement_token1] = ACTIONS(5055), + [aux_sym_select_rank_statement_token2] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_associate_statement_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_print_statement_token1] = ACTIONS(5055), + [aux_sym_open_statement_token1] = ACTIONS(5055), + [aux_sym_close_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token2] = ACTIONS(5055), + [aux_sym_file_position_statement_token3] = ACTIONS(5055), + [aux_sym_file_position_statement_token4] = ACTIONS(5055), + [aux_sym_allocate_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_logical_expression_token5] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_LPAREN_SLASH] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [aux_sym_boolean_literal_token1] = ACTIONS(5057), + [aux_sym_boolean_literal_token2] = ACTIONS(5057), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + [sym__float_literal] = ACTIONS(5057), + [sym__boz_literal] = ACTIONS(5057), + [sym__string_literal] = ACTIONS(5057), + [sym__string_literal_kind] = ACTIONS(5057), }, [1179] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token2] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [aux_sym_preproc_else_token1] = ACTIONS(4487), - [aux_sym_preproc_elif_token1] = ACTIONS(4487), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_subroutine_call_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_keyword_statement_token4] = ACTIONS(4487), - [aux_sym_keyword_statement_token6] = ACTIONS(4487), - [aux_sym_keyword_statement_token7] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym_do_loop_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym__inline_where_statement_token1] = ACTIONS(4487), - [aux_sym__forall_control_expression_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token3] = ACTIONS(4487), - [aux_sym_select_type_statement_token1] = ACTIONS(4487), - [aux_sym_select_rank_statement_token2] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_associate_statement_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_print_statement_token1] = ACTIONS(4487), - [aux_sym_open_statement_token1] = ACTIONS(4487), - [aux_sym_close_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token2] = ACTIONS(4487), - [aux_sym_file_position_statement_token3] = ACTIONS(4487), - [aux_sym_file_position_statement_token4] = ACTIONS(4487), - [aux_sym_allocate_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_logical_expression_token5] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_LPAREN_SLASH] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [aux_sym_boolean_literal_token1] = ACTIONS(4489), - [aux_sym_boolean_literal_token2] = ACTIONS(4489), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - [sym__float_literal] = ACTIONS(4489), - [sym__boz_literal] = ACTIONS(4489), - [sym__string_literal] = ACTIONS(4489), - [sym__string_literal_kind] = ACTIONS(4489), + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token2] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [aux_sym_preproc_else_token1] = ACTIONS(5059), + [aux_sym_preproc_elif_token1] = ACTIONS(5059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_LPAREN2] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_subroutine_call_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_keyword_statement_token4] = ACTIONS(5059), + [aux_sym_keyword_statement_token6] = ACTIONS(5059), + [aux_sym_keyword_statement_token7] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym_do_loop_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym__inline_where_statement_token1] = ACTIONS(5059), + [aux_sym__forall_control_expression_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token3] = ACTIONS(5059), + [aux_sym_select_type_statement_token1] = ACTIONS(5059), + [aux_sym_select_rank_statement_token2] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_associate_statement_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_print_statement_token1] = ACTIONS(5059), + [aux_sym_open_statement_token1] = ACTIONS(5059), + [aux_sym_close_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token2] = ACTIONS(5059), + [aux_sym_file_position_statement_token3] = ACTIONS(5059), + [aux_sym_file_position_statement_token4] = ACTIONS(5059), + [aux_sym_allocate_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_logical_expression_token5] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [aux_sym_boolean_literal_token1] = ACTIONS(5061), + [aux_sym_boolean_literal_token2] = ACTIONS(5061), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + [sym__float_literal] = ACTIONS(5061), + [sym__boz_literal] = ACTIONS(5061), + [sym__string_literal] = ACTIONS(5061), + [sym__string_literal_kind] = ACTIONS(5061), }, [1180] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token2] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [aux_sym_preproc_else_token1] = ACTIONS(4619), - [aux_sym_preproc_elif_token1] = ACTIONS(4619), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_LPAREN2] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_subroutine_call_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_keyword_statement_token4] = ACTIONS(4619), - [aux_sym_keyword_statement_token6] = ACTIONS(4619), - [aux_sym_keyword_statement_token7] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym_do_loop_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym__inline_where_statement_token1] = ACTIONS(4619), - [aux_sym__forall_control_expression_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token3] = ACTIONS(4619), - [aux_sym_select_type_statement_token1] = ACTIONS(4619), - [aux_sym_select_rank_statement_token2] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_associate_statement_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_print_statement_token1] = ACTIONS(4619), - [aux_sym_open_statement_token1] = ACTIONS(4619), - [aux_sym_close_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token2] = ACTIONS(4619), - [aux_sym_file_position_statement_token3] = ACTIONS(4619), - [aux_sym_file_position_statement_token4] = ACTIONS(4619), - [aux_sym_allocate_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_logical_expression_token5] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_LPAREN_SLASH] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [aux_sym_boolean_literal_token1] = ACTIONS(4621), - [aux_sym_boolean_literal_token2] = ACTIONS(4621), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - [sym__float_literal] = ACTIONS(4621), - [sym__boz_literal] = ACTIONS(4621), - [sym__string_literal] = ACTIONS(4621), - [sym__string_literal_kind] = ACTIONS(4621), + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token2] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [aux_sym_preproc_else_token1] = ACTIONS(5010), + [aux_sym_preproc_elif_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_subroutine_call_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_keyword_statement_token4] = ACTIONS(5010), + [aux_sym_keyword_statement_token6] = ACTIONS(5010), + [aux_sym_keyword_statement_token7] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym_do_loop_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym__inline_where_statement_token1] = ACTIONS(5010), + [aux_sym__forall_control_expression_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token3] = ACTIONS(5010), + [aux_sym_select_type_statement_token1] = ACTIONS(5010), + [aux_sym_select_rank_statement_token2] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_associate_statement_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_print_statement_token1] = ACTIONS(5010), + [aux_sym_open_statement_token1] = ACTIONS(5010), + [aux_sym_close_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token2] = ACTIONS(5010), + [aux_sym_file_position_statement_token3] = ACTIONS(5010), + [aux_sym_file_position_statement_token4] = ACTIONS(5010), + [aux_sym_allocate_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_logical_expression_token5] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_LPAREN_SLASH] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [aux_sym_boolean_literal_token1] = ACTIONS(5012), + [aux_sym_boolean_literal_token2] = ACTIONS(5012), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + [sym__float_literal] = ACTIONS(5012), + [sym__boz_literal] = ACTIONS(5012), + [sym__string_literal] = ACTIONS(5012), + [sym__string_literal_kind] = ACTIONS(5012), }, [1181] = { - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token2] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), - [aux_sym_preproc_else_token1] = ACTIONS(4511), - [aux_sym_preproc_elif_token1] = ACTIONS(4511), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token2] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [aux_sym_preproc_else_token1] = ACTIONS(5006), + [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_subroutine_call_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_keyword_statement_token4] = ACTIONS(5006), + [aux_sym_keyword_statement_token6] = ACTIONS(5006), + [aux_sym_keyword_statement_token7] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym_do_loop_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym__inline_where_statement_token1] = ACTIONS(5006), + [aux_sym__forall_control_expression_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token3] = ACTIONS(5006), + [aux_sym_select_type_statement_token1] = ACTIONS(5006), + [aux_sym_select_rank_statement_token2] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_associate_statement_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_print_statement_token1] = ACTIONS(5006), + [aux_sym_open_statement_token1] = ACTIONS(5006), + [aux_sym_close_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token2] = ACTIONS(5006), + [aux_sym_file_position_statement_token3] = ACTIONS(5006), + [aux_sym_file_position_statement_token4] = ACTIONS(5006), + [aux_sym_allocate_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_logical_expression_token5] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_LPAREN_SLASH] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [aux_sym_boolean_literal_token1] = ACTIONS(5008), + [aux_sym_boolean_literal_token2] = ACTIONS(5008), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + [sym__float_literal] = ACTIONS(5008), + [sym__boz_literal] = ACTIONS(5008), + [sym__string_literal] = ACTIONS(5008), + [sym__string_literal_kind] = ACTIONS(5008), + }, + [1182] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token2] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [aux_sym_preproc_else_token1] = ACTIONS(4994), + [aux_sym_preproc_elif_token1] = ACTIONS(4994), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_contains_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [anon_sym_SEMI] = ACTIONS(4513), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_subroutine_call_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_keyword_statement_token4] = ACTIONS(4511), - [aux_sym_keyword_statement_token6] = ACTIONS(4511), - [aux_sym_keyword_statement_token7] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym_do_loop_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym__inline_where_statement_token1] = ACTIONS(4511), - [aux_sym__forall_control_expression_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token3] = ACTIONS(4511), - [aux_sym_select_type_statement_token1] = ACTIONS(4511), - [aux_sym_select_rank_statement_token2] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_associate_statement_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_print_statement_token1] = ACTIONS(4511), - [aux_sym_open_statement_token1] = ACTIONS(4511), - [aux_sym_close_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token2] = ACTIONS(4511), - [aux_sym_file_position_statement_token3] = ACTIONS(4511), - [aux_sym_file_position_statement_token4] = ACTIONS(4511), - [aux_sym_allocate_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_logical_expression_token5] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4511), - [anon_sym_LPAREN_SLASH] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [aux_sym_boolean_literal_token1] = ACTIONS(4513), - [aux_sym_boolean_literal_token2] = ACTIONS(4513), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_subroutine_call_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_keyword_statement_token4] = ACTIONS(4994), + [aux_sym_keyword_statement_token6] = ACTIONS(4994), + [aux_sym_keyword_statement_token7] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym_do_loop_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym__inline_where_statement_token1] = ACTIONS(4994), + [aux_sym__forall_control_expression_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token3] = ACTIONS(4994), + [aux_sym_select_type_statement_token1] = ACTIONS(4994), + [aux_sym_select_rank_statement_token2] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_associate_statement_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_print_statement_token1] = ACTIONS(4994), + [aux_sym_open_statement_token1] = ACTIONS(4994), + [aux_sym_close_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token2] = ACTIONS(4994), + [aux_sym_file_position_statement_token3] = ACTIONS(4994), + [aux_sym_file_position_statement_token4] = ACTIONS(4994), + [aux_sym_allocate_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_logical_expression_token5] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_LPAREN_SLASH] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [aux_sym_boolean_literal_token1] = ACTIONS(4996), + [aux_sym_boolean_literal_token2] = ACTIONS(4996), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4996), + [sym__float_literal] = ACTIONS(4996), + [sym__boz_literal] = ACTIONS(4996), + [sym__string_literal] = ACTIONS(4996), + [sym__string_literal_kind] = ACTIONS(4996), + }, + [1183] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token2] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [aux_sym_preproc_else_token1] = ACTIONS(4379), + [aux_sym_preproc_elif_token1] = ACTIONS(4379), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_subroutine_call_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_keyword_statement_token4] = ACTIONS(4379), + [aux_sym_keyword_statement_token6] = ACTIONS(4379), + [aux_sym_keyword_statement_token7] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym_do_loop_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym__inline_where_statement_token1] = ACTIONS(4379), + [aux_sym__forall_control_expression_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token3] = ACTIONS(4379), + [aux_sym_select_type_statement_token1] = ACTIONS(4379), + [aux_sym_select_rank_statement_token2] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_associate_statement_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_print_statement_token1] = ACTIONS(4379), + [aux_sym_open_statement_token1] = ACTIONS(4379), + [aux_sym_close_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token2] = ACTIONS(4379), + [aux_sym_file_position_statement_token3] = ACTIONS(4379), + [aux_sym_file_position_statement_token4] = ACTIONS(4379), + [aux_sym_allocate_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_logical_expression_token5] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LPAREN_SLASH] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [aux_sym_boolean_literal_token1] = ACTIONS(4381), + [aux_sym_boolean_literal_token2] = ACTIONS(4381), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), - [sym__float_literal] = ACTIONS(4513), - [sym__boz_literal] = ACTIONS(4513), - [sym__string_literal] = ACTIONS(4513), - [sym__string_literal_kind] = ACTIONS(4513), - }, - [1182] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token2] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [aux_sym_preproc_else_token1] = ACTIONS(4547), - [aux_sym_preproc_elif_token1] = ACTIONS(4547), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), - }, - [1183] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token2] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [aux_sym_preproc_else_token1] = ACTIONS(5021), - [aux_sym_preproc_elif_token1] = ACTIONS(5021), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_LPAREN2] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_subroutine_call_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_keyword_statement_token4] = ACTIONS(5021), - [aux_sym_keyword_statement_token6] = ACTIONS(5021), - [aux_sym_keyword_statement_token7] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym_do_loop_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym__inline_where_statement_token1] = ACTIONS(5021), - [aux_sym__forall_control_expression_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token3] = ACTIONS(5021), - [aux_sym_select_type_statement_token1] = ACTIONS(5021), - [aux_sym_select_rank_statement_token2] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_associate_statement_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_print_statement_token1] = ACTIONS(5021), - [aux_sym_open_statement_token1] = ACTIONS(5021), - [aux_sym_close_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token2] = ACTIONS(5021), - [aux_sym_file_position_statement_token3] = ACTIONS(5021), - [aux_sym_file_position_statement_token4] = ACTIONS(5021), - [aux_sym_allocate_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_logical_expression_token5] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_LPAREN_SLASH] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [aux_sym_boolean_literal_token1] = ACTIONS(5023), - [aux_sym_boolean_literal_token2] = ACTIONS(5023), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - [sym__float_literal] = ACTIONS(5023), - [sym__boz_literal] = ACTIONS(5023), - [sym__string_literal] = ACTIONS(5023), - [sym__string_literal_kind] = ACTIONS(5023), + [sym__integer_literal] = ACTIONS(4381), + [sym__float_literal] = ACTIONS(4381), + [sym__boz_literal] = ACTIONS(4381), + [sym__string_literal] = ACTIONS(4381), + [sym__string_literal_kind] = ACTIONS(4381), }, [1184] = { - [sym_preproc_include] = STATE(1295), - [sym_preproc_def] = STATE(1295), - [sym_preproc_function_def] = STATE(1295), - [sym_preproc_call] = STATE(1295), - [sym_interface] = STATE(1295), - [sym_interface_statement] = STATE(3731), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7653), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(1295), - [sym_use_statement] = STATE(6677), - [sym_implicit_statement] = STATE(6677), - [sym_save_statement] = STATE(6677), - [sym_private_statement] = STATE(1295), - [sym_public_statement] = STATE(1295), - [sym_namelist_statement] = STATE(6677), - [sym_common_statement] = STATE(6677), - [sym_import_statement] = STATE(6677), - [sym_derived_type_definition] = STATE(1295), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4215), - [sym_variable_declaration] = STATE(6677), + [sym_preproc_include] = STATE(1186), + [sym_preproc_def] = STATE(1186), + [sym_preproc_function_def] = STATE(1186), + [sym_preproc_call] = STATE(1186), + [sym_interface] = STATE(1186), + [sym_interface_statement] = STATE(3812), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7575), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(1186), + [sym_use_statement] = STATE(6604), + [sym_implicit_statement] = STATE(6604), + [sym_save_statement] = STATE(6604), + [sym_private_statement] = STATE(1186), + [sym_public_statement] = STATE(1186), + [sym_namelist_statement] = STATE(6604), + [sym_common_statement] = STATE(6604), + [sym_import_statement] = STATE(6604), + [sym_derived_type_definition] = STATE(1186), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4211), + [sym_variable_declaration] = STATE(6604), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6677), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6604), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6677), - [sym_equivalence_statement] = STATE(6677), - [sym_statement_label] = STATE(6964), - [sym_include_statement] = STATE(6677), - [sym_data_statement] = STATE(6677), - [sym_enum] = STATE(1295), - [sym_enum_statement] = STATE(5862), - [sym_statement_function] = STATE(6677), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6604), + [sym_equivalence_statement] = STATE(6604), + [sym_statement_label] = STATE(6919), + [sym_include_statement] = STATE(6604), + [sym_data_statement] = STATE(6604), + [sym_enum] = STATE(1186), + [sym_enum_statement] = STATE(5901), + [sym_statement_function] = STATE(6604), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1295), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1186), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(5085), [aux_sym_preproc_def_token1] = ACTIONS(5087), [aux_sym_preproc_if_token2] = ACTIONS(5099), @@ -249831,9 +249831,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -249862,11 +249862,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -249883,52 +249883,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1185] = { - [sym_preproc_include] = STATE(1184), - [sym_preproc_def] = STATE(1184), - [sym_preproc_function_def] = STATE(1184), - [sym_preproc_call] = STATE(1184), - [sym_interface] = STATE(1184), - [sym_interface_statement] = STATE(3731), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7573), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(1184), - [sym_use_statement] = STATE(6677), - [sym_implicit_statement] = STATE(6677), - [sym_save_statement] = STATE(6677), - [sym_private_statement] = STATE(1184), - [sym_public_statement] = STATE(1184), - [sym_namelist_statement] = STATE(6677), - [sym_common_statement] = STATE(6677), - [sym_import_statement] = STATE(6677), - [sym_derived_type_definition] = STATE(1184), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4215), - [sym_variable_declaration] = STATE(6677), + [sym_preproc_include] = STATE(1200), + [sym_preproc_def] = STATE(1200), + [sym_preproc_function_def] = STATE(1200), + [sym_preproc_call] = STATE(1200), + [sym_interface] = STATE(1200), + [sym_interface_statement] = STATE(3812), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7575), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(1200), + [sym_use_statement] = STATE(6604), + [sym_implicit_statement] = STATE(6604), + [sym_save_statement] = STATE(6604), + [sym_private_statement] = STATE(1200), + [sym_public_statement] = STATE(1200), + [sym_namelist_statement] = STATE(6604), + [sym_common_statement] = STATE(6604), + [sym_import_statement] = STATE(6604), + [sym_derived_type_definition] = STATE(1200), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4211), + [sym_variable_declaration] = STATE(6604), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6677), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6604), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6677), - [sym_equivalence_statement] = STATE(6677), - [sym_statement_label] = STATE(6964), - [sym_include_statement] = STATE(6677), - [sym_data_statement] = STATE(6677), - [sym_enum] = STATE(1184), - [sym_enum_statement] = STATE(5862), - [sym_statement_function] = STATE(6677), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6604), + [sym_equivalence_statement] = STATE(6604), + [sym_statement_label] = STATE(6919), + [sym_include_statement] = STATE(6604), + [sym_data_statement] = STATE(6604), + [sym_enum] = STATE(1200), + [sym_enum_statement] = STATE(5901), + [sym_statement_function] = STATE(6604), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1184), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1200), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(5085), [aux_sym_preproc_def_token1] = ACTIONS(5087), - [aux_sym_preproc_if_token2] = ACTIONS(5101), + [aux_sym_preproc_if_token2] = ACTIONS(5099), [sym_preproc_directive] = ACTIONS(5091), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), @@ -249959,9 +249959,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -249990,11 +249990,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -250011,49 +250011,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1186] = { - [sym_preproc_include] = STATE(1295), - [sym_preproc_def] = STATE(1295), - [sym_preproc_function_def] = STATE(1295), - [sym_preproc_call] = STATE(1295), - [sym_interface] = STATE(1295), - [sym_interface_statement] = STATE(3731), - [sym_language_binding] = STATE(3142), - [sym_internal_procedures] = STATE(7573), - [sym_contains_statement] = STATE(6397), - [sym__specification_part] = STATE(1295), - [sym_use_statement] = STATE(6677), - [sym_implicit_statement] = STATE(6677), - [sym_save_statement] = STATE(6677), - [sym_private_statement] = STATE(1295), - [sym_public_statement] = STATE(1295), - [sym_namelist_statement] = STATE(6677), - [sym_common_statement] = STATE(6677), - [sym_import_statement] = STATE(6677), - [sym_derived_type_definition] = STATE(1295), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4215), - [sym_variable_declaration] = STATE(6677), + [sym_preproc_include] = STATE(1200), + [sym_preproc_def] = STATE(1200), + [sym_preproc_function_def] = STATE(1200), + [sym_preproc_call] = STATE(1200), + [sym_interface] = STATE(1200), + [sym_interface_statement] = STATE(3812), + [sym_language_binding] = STATE(3156), + [sym_internal_procedures] = STATE(7818), + [sym_contains_statement] = STATE(6294), + [sym__specification_part] = STATE(1200), + [sym_use_statement] = STATE(6604), + [sym_implicit_statement] = STATE(6604), + [sym_save_statement] = STATE(6604), + [sym_private_statement] = STATE(1200), + [sym_public_statement] = STATE(1200), + [sym_namelist_statement] = STATE(6604), + [sym_common_statement] = STATE(6604), + [sym_import_statement] = STATE(6604), + [sym_derived_type_definition] = STATE(1200), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4211), + [sym_variable_declaration] = STATE(6604), [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6677), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), + [sym_variable_modification] = STATE(6604), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), [sym_intrinsic_type] = STATE(3376), [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6677), - [sym_equivalence_statement] = STATE(6677), - [sym_statement_label] = STATE(6964), - [sym_include_statement] = STATE(6677), - [sym_data_statement] = STATE(6677), - [sym_enum] = STATE(1295), - [sym_enum_statement] = STATE(5862), - [sym_statement_function] = STATE(6677), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6604), + [sym_equivalence_statement] = STATE(6604), + [sym_statement_label] = STATE(6919), + [sym_include_statement] = STATE(6604), + [sym_data_statement] = STATE(6604), + [sym_enum] = STATE(1200), + [sym_enum_statement] = STATE(5901), + [sym_statement_function] = STATE(6604), [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1295), - [aux_sym_variable_modification_repeat1] = STATE(3142), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1200), + [aux_sym_variable_modification_repeat1] = STATE(3156), [aux_sym_preproc_include_token1] = ACTIONS(5085), [aux_sym_preproc_def_token1] = ACTIONS(5087), [aux_sym_preproc_if_token2] = ACTIONS(5101), @@ -250087,9 +250087,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token3] = ACTIONS(49), [aux_sym_variable_attributes_token4] = ACTIONS(73), [aux_sym_variable_attributes_token5] = ACTIONS(49), - [aux_sym__intrinsic_type_token1] = ACTIONS(4681), + [aux_sym__intrinsic_type_token1] = ACTIONS(4659), [aux_sym__intrinsic_type_token2] = ACTIONS(760), - [aux_sym__intrinsic_type_token3] = ACTIONS(4681), + [aux_sym__intrinsic_type_token3] = ACTIONS(4659), [aux_sym__intrinsic_type_token4] = ACTIONS(762), [aux_sym__intrinsic_type_token6] = ACTIONS(760), [aux_sym__intrinsic_type_token7] = ACTIONS(760), @@ -250118,11 +250118,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_include_statement_token1] = ACTIONS(115), - [aux_sym_data_statement_token1] = ACTIONS(4683), + [aux_sym_data_statement_token1] = ACTIONS(4661), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -250139,1779 +250139,3417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4687), + [sym__integer_literal] = ACTIONS(4665), }, [1187] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), [sym_preproc_comment] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_end_program_statement_token2] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [1188] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), [sym_preproc_comment] = ACTIONS(5105), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, [1189] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), [sym_preproc_comment] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [1190] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), [sym_preproc_comment] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_end_program_statement_token2] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, [1191] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), [sym_preproc_comment] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_end_program_statement_token2] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1192] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), [sym_preproc_comment] = ACTIONS(5113), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_end_program_statement_token2] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1193] = { - [aux_sym_preproc_include_token1] = ACTIONS(4990), - [aux_sym_preproc_def_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token2] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), - [sym_preproc_directive] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), + [aux_sym_preproc_include_token1] = ACTIONS(5115), + [aux_sym_preproc_def_token1] = ACTIONS(5115), + [aux_sym_preproc_if_token1] = ACTIONS(5115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5115), + [sym_preproc_directive] = ACTIONS(5115), + [anon_sym_LPAREN2] = ACTIONS(5115), + [sym_preproc_comment] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5115), + [aux_sym_interface_statement_token1] = ACTIONS(5115), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5115), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5115), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5115), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5115), + [aux_sym_language_binding_token1] = ACTIONS(5115), + [aux_sym_procedure_attributes_token1] = ACTIONS(5115), + [aux_sym_procedure_attributes_token3] = ACTIONS(5115), + [aux_sym_contains_statement_token1] = ACTIONS(5115), + [aux_sym_use_statement_token1] = ACTIONS(5115), + [aux_sym_use_statement_token2] = ACTIONS(5115), + [aux_sym_implicit_statement_token1] = ACTIONS(5115), + [aux_sym_implicit_statement_token3] = ACTIONS(5115), + [aux_sym_implicit_statement_token4] = ACTIONS(5115), + [aux_sym_save_statement_token1] = ACTIONS(5115), + [aux_sym_private_statement_token1] = ACTIONS(5115), + [aux_sym_public_statement_token1] = ACTIONS(5115), + [aux_sym_namelist_statement_token1] = ACTIONS(5115), + [aux_sym_common_statement_token1] = ACTIONS(5115), + [aux_sym_import_statement_token1] = ACTIONS(5115), + [aux_sym_derived_type_definition_token1] = ACTIONS(5115), + [aux_sym_abstract_specifier_token1] = ACTIONS(5115), + [aux_sym_procedure_attribute_token6] = ACTIONS(5115), + [aux_sym_variable_attributes_token1] = ACTIONS(5115), + [aux_sym_variable_attributes_token2] = ACTIONS(5115), + [aux_sym_variable_attributes_token3] = ACTIONS(5115), + [aux_sym_variable_attributes_token4] = ACTIONS(5115), + [aux_sym_variable_attributes_token5] = ACTIONS(5115), + [aux_sym__intrinsic_type_token1] = ACTIONS(5115), + [aux_sym__intrinsic_type_token2] = ACTIONS(5115), + [aux_sym__intrinsic_type_token3] = ACTIONS(5115), + [aux_sym__intrinsic_type_token4] = ACTIONS(5115), + [aux_sym__intrinsic_type_token6] = ACTIONS(5115), + [aux_sym__intrinsic_type_token7] = ACTIONS(5115), + [aux_sym__intrinsic_type_token8] = ACTIONS(5115), + [aux_sym__intrinsic_type_token9] = ACTIONS(5115), + [aux_sym__intrinsic_type_token10] = ACTIONS(5115), + [aux_sym_derived_type_token1] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5115), + [aux_sym_type_qualifier_token1] = ACTIONS(5115), + [aux_sym_type_qualifier_token2] = ACTIONS(5115), + [aux_sym_equivalence_statement_token1] = ACTIONS(5115), + [anon_sym_SEMI] = ACTIONS(5119), + [aux_sym_stop_statement_token1] = ACTIONS(5115), + [aux_sym_stop_statement_token2] = ACTIONS(5115), + [aux_sym_subroutine_call_token1] = ACTIONS(5115), + [aux_sym_keyword_statement_token1] = ACTIONS(5115), + [aux_sym_keyword_statement_token2] = ACTIONS(5115), + [aux_sym_keyword_statement_token3] = ACTIONS(5115), + [aux_sym_keyword_statement_token4] = ACTIONS(5115), + [aux_sym_keyword_statement_token6] = ACTIONS(5115), + [aux_sym_keyword_statement_token7] = ACTIONS(5115), + [aux_sym_include_statement_token1] = ACTIONS(5115), + [aux_sym_data_statement_token1] = ACTIONS(5115), + [aux_sym_do_loop_statement_token1] = ACTIONS(5115), + [aux_sym__inline_if_statement_token1] = ACTIONS(5115), + [aux_sym_end_if_statement_token1] = ACTIONS(5115), + [aux_sym_elseif_clause_token2] = ACTIONS(5115), + [aux_sym__inline_where_statement_token1] = ACTIONS(5115), + [aux_sym__forall_control_expression_token1] = ACTIONS(5115), + [aux_sym_select_case_statement_token1] = ACTIONS(5115), + [aux_sym_select_case_statement_token3] = ACTIONS(5115), + [aux_sym_select_type_statement_token1] = ACTIONS(5115), + [aux_sym_select_rank_statement_token2] = ACTIONS(5115), + [aux_sym_block_construct_token1] = ACTIONS(5115), + [aux_sym_associate_statement_token1] = ACTIONS(5115), + [aux_sym_format_statement_token1] = ACTIONS(5115), + [aux_sym_print_statement_token1] = ACTIONS(5115), + [aux_sym_open_statement_token1] = ACTIONS(5115), + [aux_sym_close_statement_token1] = ACTIONS(5115), + [aux_sym_inquire_statement_token1] = ACTIONS(5115), + [aux_sym_enum_statement_token1] = ACTIONS(5115), + [aux_sym_file_position_statement_token1] = ACTIONS(5115), + [aux_sym_file_position_statement_token2] = ACTIONS(5115), + [aux_sym_file_position_statement_token3] = ACTIONS(5115), + [aux_sym_file_position_statement_token4] = ACTIONS(5115), + [aux_sym_allocate_statement_token1] = ACTIONS(5115), + [aux_sym_entry_statement_token1] = ACTIONS(5115), + [aux_sym_logical_expression_token5] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_LPAREN_SLASH] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [aux_sym_boolean_literal_token1] = ACTIONS(5119), + [aux_sym_boolean_literal_token2] = ACTIONS(5119), + [aux_sym_null_literal_token1] = ACTIONS(5115), + [aux_sym_coarray_statement_token1] = ACTIONS(5115), + [aux_sym_coarray_statement_token2] = ACTIONS(5115), + [aux_sym_coarray_statement_token6] = ACTIONS(5115), + [aux_sym_coarray_statement_token8] = ACTIONS(5115), + [aux_sym_coarray_statement_token11] = ACTIONS(5115), + [aux_sym_coarray_statement_token12] = ACTIONS(5115), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5115), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5115), + [aux_sym_identifier_token1] = ACTIONS(5115), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5119), + [sym__float_literal] = ACTIONS(5119), + [sym__boz_literal] = ACTIONS(5119), + [sym__string_literal] = ACTIONS(5119), + [sym__string_literal_kind] = ACTIONS(5119), + }, + [1194] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4990), - [aux_sym_end_program_statement_token2] = ACTIONS(4990), - [aux_sym_interface_statement_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_language_binding_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token3] = ACTIONS(4990), - [aux_sym_contains_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token2] = ACTIONS(4990), - [aux_sym_implicit_statement_token1] = ACTIONS(4990), - [aux_sym_implicit_statement_token3] = ACTIONS(4990), - [aux_sym_implicit_statement_token4] = ACTIONS(4990), - [aux_sym_save_statement_token1] = ACTIONS(4990), - [aux_sym_private_statement_token1] = ACTIONS(4990), - [aux_sym_public_statement_token1] = ACTIONS(4990), - [aux_sym_namelist_statement_token1] = ACTIONS(4990), - [aux_sym_common_statement_token1] = ACTIONS(4990), - [aux_sym_import_statement_token1] = ACTIONS(4990), - [aux_sym_derived_type_definition_token1] = ACTIONS(4990), - [aux_sym_abstract_specifier_token1] = ACTIONS(4990), - [aux_sym_procedure_attribute_token6] = ACTIONS(4990), - [aux_sym_variable_attributes_token1] = ACTIONS(4990), - [aux_sym_variable_attributes_token2] = ACTIONS(4990), - [aux_sym_variable_attributes_token3] = ACTIONS(4990), - [aux_sym_variable_attributes_token4] = ACTIONS(4990), - [aux_sym_variable_attributes_token5] = ACTIONS(4990), - [aux_sym__intrinsic_type_token1] = ACTIONS(4990), - [aux_sym__intrinsic_type_token2] = ACTIONS(4990), - [aux_sym__intrinsic_type_token3] = ACTIONS(4990), - [aux_sym__intrinsic_type_token4] = ACTIONS(4990), - [aux_sym__intrinsic_type_token6] = ACTIONS(4990), - [aux_sym__intrinsic_type_token7] = ACTIONS(4990), - [aux_sym__intrinsic_type_token8] = ACTIONS(4990), - [aux_sym__intrinsic_type_token9] = ACTIONS(4990), - [aux_sym__intrinsic_type_token10] = ACTIONS(4990), - [aux_sym_derived_type_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), - [aux_sym_type_qualifier_token1] = ACTIONS(4990), - [aux_sym_type_qualifier_token2] = ACTIONS(4990), - [aux_sym_equivalence_statement_token1] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4992), - [aux_sym_stop_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token2] = ACTIONS(4990), - [aux_sym_subroutine_call_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token3] = ACTIONS(4990), - [aux_sym_keyword_statement_token4] = ACTIONS(4990), - [aux_sym_keyword_statement_token6] = ACTIONS(4990), - [aux_sym_keyword_statement_token7] = ACTIONS(4990), - [aux_sym_include_statement_token1] = ACTIONS(4990), - [aux_sym_data_statement_token1] = ACTIONS(4990), - [aux_sym_do_loop_statement_token1] = ACTIONS(4990), - [aux_sym__inline_if_statement_token1] = ACTIONS(4990), - [aux_sym_end_if_statement_token1] = ACTIONS(4990), - [aux_sym_elseif_clause_token2] = ACTIONS(4990), - [aux_sym__inline_where_statement_token1] = ACTIONS(4990), - [aux_sym__forall_control_expression_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token3] = ACTIONS(4990), - [aux_sym_select_type_statement_token1] = ACTIONS(4990), - [aux_sym_select_rank_statement_token2] = ACTIONS(4990), - [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_associate_statement_token1] = ACTIONS(4990), - [aux_sym_format_statement_token1] = ACTIONS(4990), - [aux_sym_print_statement_token1] = ACTIONS(4990), - [aux_sym_open_statement_token1] = ACTIONS(4990), - [aux_sym_close_statement_token1] = ACTIONS(4990), - [aux_sym_inquire_statement_token1] = ACTIONS(4990), - [aux_sym_enum_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token2] = ACTIONS(4990), - [aux_sym_file_position_statement_token3] = ACTIONS(4990), - [aux_sym_file_position_statement_token4] = ACTIONS(4990), - [aux_sym_allocate_statement_token1] = ACTIONS(4990), - [aux_sym_entry_statement_token1] = ACTIONS(4990), - [aux_sym_logical_expression_token5] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_LPAREN_SLASH] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [aux_sym_boolean_literal_token1] = ACTIONS(4992), - [aux_sym_boolean_literal_token2] = ACTIONS(4992), - [aux_sym_null_literal_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token2] = ACTIONS(4990), - [aux_sym_coarray_statement_token6] = ACTIONS(4990), - [aux_sym_coarray_statement_token8] = ACTIONS(4990), - [aux_sym_coarray_statement_token11] = ACTIONS(4990), - [aux_sym_coarray_statement_token12] = ACTIONS(4990), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), - [aux_sym_identifier_token1] = ACTIONS(4990), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), + }, + [1195] = { + [aux_sym_preproc_include_token1] = ACTIONS(5121), + [aux_sym_preproc_def_token1] = ACTIONS(5121), + [aux_sym_preproc_if_token1] = ACTIONS(5121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5121), + [sym_preproc_directive] = ACTIONS(5121), + [anon_sym_LPAREN2] = ACTIONS(5121), + [sym_preproc_comment] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5121), + [aux_sym_interface_statement_token1] = ACTIONS(5121), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5121), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5121), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5121), + [aux_sym_language_binding_token1] = ACTIONS(5121), + [aux_sym_procedure_attributes_token1] = ACTIONS(5121), + [aux_sym_procedure_attributes_token3] = ACTIONS(5121), + [aux_sym_end_function_statement_token1] = ACTIONS(5121), + [aux_sym_contains_statement_token1] = ACTIONS(5121), + [aux_sym_use_statement_token1] = ACTIONS(5121), + [aux_sym_use_statement_token2] = ACTIONS(5121), + [aux_sym_implicit_statement_token1] = ACTIONS(5121), + [aux_sym_implicit_statement_token3] = ACTIONS(5121), + [aux_sym_implicit_statement_token4] = ACTIONS(5121), + [aux_sym_save_statement_token1] = ACTIONS(5121), + [aux_sym_private_statement_token1] = ACTIONS(5121), + [aux_sym_public_statement_token1] = ACTIONS(5121), + [aux_sym_namelist_statement_token1] = ACTIONS(5121), + [aux_sym_common_statement_token1] = ACTIONS(5121), + [aux_sym_import_statement_token1] = ACTIONS(5121), + [aux_sym_derived_type_definition_token1] = ACTIONS(5121), + [aux_sym_abstract_specifier_token1] = ACTIONS(5121), + [aux_sym_procedure_attribute_token6] = ACTIONS(5121), + [aux_sym_variable_attributes_token1] = ACTIONS(5121), + [aux_sym_variable_attributes_token2] = ACTIONS(5121), + [aux_sym_variable_attributes_token3] = ACTIONS(5121), + [aux_sym_variable_attributes_token4] = ACTIONS(5121), + [aux_sym_variable_attributes_token5] = ACTIONS(5121), + [aux_sym__intrinsic_type_token1] = ACTIONS(5121), + [aux_sym__intrinsic_type_token2] = ACTIONS(5121), + [aux_sym__intrinsic_type_token3] = ACTIONS(5121), + [aux_sym__intrinsic_type_token4] = ACTIONS(5121), + [aux_sym__intrinsic_type_token6] = ACTIONS(5121), + [aux_sym__intrinsic_type_token7] = ACTIONS(5121), + [aux_sym__intrinsic_type_token8] = ACTIONS(5121), + [aux_sym__intrinsic_type_token9] = ACTIONS(5121), + [aux_sym__intrinsic_type_token10] = ACTIONS(5121), + [aux_sym_derived_type_token1] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5121), + [aux_sym_type_qualifier_token1] = ACTIONS(5121), + [aux_sym_type_qualifier_token2] = ACTIONS(5121), + [aux_sym_equivalence_statement_token1] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5125), + [aux_sym_stop_statement_token1] = ACTIONS(5121), + [aux_sym_stop_statement_token2] = ACTIONS(5121), + [aux_sym_subroutine_call_token1] = ACTIONS(5121), + [aux_sym_keyword_statement_token1] = ACTIONS(5121), + [aux_sym_keyword_statement_token2] = ACTIONS(5121), + [aux_sym_keyword_statement_token3] = ACTIONS(5121), + [aux_sym_keyword_statement_token4] = ACTIONS(5121), + [aux_sym_keyword_statement_token6] = ACTIONS(5121), + [aux_sym_keyword_statement_token7] = ACTIONS(5121), + [aux_sym_include_statement_token1] = ACTIONS(5121), + [aux_sym_data_statement_token1] = ACTIONS(5121), + [aux_sym_do_loop_statement_token1] = ACTIONS(5121), + [aux_sym__inline_if_statement_token1] = ACTIONS(5121), + [aux_sym_end_if_statement_token1] = ACTIONS(5121), + [aux_sym_elseif_clause_token2] = ACTIONS(5121), + [aux_sym__inline_where_statement_token1] = ACTIONS(5121), + [aux_sym__forall_control_expression_token1] = ACTIONS(5121), + [aux_sym_select_case_statement_token1] = ACTIONS(5121), + [aux_sym_select_case_statement_token3] = ACTIONS(5121), + [aux_sym_select_type_statement_token1] = ACTIONS(5121), + [aux_sym_select_rank_statement_token2] = ACTIONS(5121), + [aux_sym_block_construct_token1] = ACTIONS(5121), + [aux_sym_associate_statement_token1] = ACTIONS(5121), + [aux_sym_format_statement_token1] = ACTIONS(5121), + [aux_sym_print_statement_token1] = ACTIONS(5121), + [aux_sym_open_statement_token1] = ACTIONS(5121), + [aux_sym_close_statement_token1] = ACTIONS(5121), + [aux_sym_inquire_statement_token1] = ACTIONS(5121), + [aux_sym_enum_statement_token1] = ACTIONS(5121), + [aux_sym_file_position_statement_token1] = ACTIONS(5121), + [aux_sym_file_position_statement_token2] = ACTIONS(5121), + [aux_sym_file_position_statement_token3] = ACTIONS(5121), + [aux_sym_file_position_statement_token4] = ACTIONS(5121), + [aux_sym_allocate_statement_token1] = ACTIONS(5121), + [aux_sym_entry_statement_token1] = ACTIONS(5121), + [aux_sym_logical_expression_token5] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_LPAREN_SLASH] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [aux_sym_boolean_literal_token1] = ACTIONS(5125), + [aux_sym_boolean_literal_token2] = ACTIONS(5125), + [aux_sym_null_literal_token1] = ACTIONS(5121), + [aux_sym_coarray_statement_token1] = ACTIONS(5121), + [aux_sym_coarray_statement_token2] = ACTIONS(5121), + [aux_sym_coarray_statement_token6] = ACTIONS(5121), + [aux_sym_coarray_statement_token8] = ACTIONS(5121), + [aux_sym_coarray_statement_token11] = ACTIONS(5121), + [aux_sym_coarray_statement_token12] = ACTIONS(5121), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5121), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5121), + [aux_sym_identifier_token1] = ACTIONS(5121), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5125), + [sym__float_literal] = ACTIONS(5125), + [sym__boz_literal] = ACTIONS(5125), + [sym__string_literal] = ACTIONS(5125), + [sym__string_literal_kind] = ACTIONS(5125), + }, + [1196] = { + [aux_sym_preproc_include_token1] = ACTIONS(5115), + [aux_sym_preproc_def_token1] = ACTIONS(5115), + [aux_sym_preproc_if_token1] = ACTIONS(5115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5115), + [sym_preproc_directive] = ACTIONS(5115), + [anon_sym_LPAREN2] = ACTIONS(5115), + [sym_preproc_comment] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5115), + [aux_sym_end_program_statement_token2] = ACTIONS(5115), + [aux_sym_interface_statement_token1] = ACTIONS(5115), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5115), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5115), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5115), + [aux_sym_language_binding_token1] = ACTIONS(5115), + [aux_sym_procedure_attributes_token1] = ACTIONS(5115), + [aux_sym_procedure_attributes_token3] = ACTIONS(5115), + [aux_sym_contains_statement_token1] = ACTIONS(5115), + [aux_sym_use_statement_token1] = ACTIONS(5115), + [aux_sym_use_statement_token2] = ACTIONS(5115), + [aux_sym_implicit_statement_token1] = ACTIONS(5115), + [aux_sym_implicit_statement_token3] = ACTIONS(5115), + [aux_sym_implicit_statement_token4] = ACTIONS(5115), + [aux_sym_save_statement_token1] = ACTIONS(5115), + [aux_sym_private_statement_token1] = ACTIONS(5115), + [aux_sym_public_statement_token1] = ACTIONS(5115), + [aux_sym_namelist_statement_token1] = ACTIONS(5115), + [aux_sym_common_statement_token1] = ACTIONS(5115), + [aux_sym_import_statement_token1] = ACTIONS(5115), + [aux_sym_derived_type_definition_token1] = ACTIONS(5115), + [aux_sym_abstract_specifier_token1] = ACTIONS(5115), + [aux_sym_procedure_attribute_token6] = ACTIONS(5115), + [aux_sym_variable_attributes_token1] = ACTIONS(5115), + [aux_sym_variable_attributes_token2] = ACTIONS(5115), + [aux_sym_variable_attributes_token3] = ACTIONS(5115), + [aux_sym_variable_attributes_token4] = ACTIONS(5115), + [aux_sym_variable_attributes_token5] = ACTIONS(5115), + [aux_sym__intrinsic_type_token1] = ACTIONS(5115), + [aux_sym__intrinsic_type_token2] = ACTIONS(5115), + [aux_sym__intrinsic_type_token3] = ACTIONS(5115), + [aux_sym__intrinsic_type_token4] = ACTIONS(5115), + [aux_sym__intrinsic_type_token6] = ACTIONS(5115), + [aux_sym__intrinsic_type_token7] = ACTIONS(5115), + [aux_sym__intrinsic_type_token8] = ACTIONS(5115), + [aux_sym__intrinsic_type_token9] = ACTIONS(5115), + [aux_sym__intrinsic_type_token10] = ACTIONS(5115), + [aux_sym_derived_type_token1] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5115), + [aux_sym_type_qualifier_token1] = ACTIONS(5115), + [aux_sym_type_qualifier_token2] = ACTIONS(5115), + [aux_sym_equivalence_statement_token1] = ACTIONS(5115), + [anon_sym_SEMI] = ACTIONS(5119), + [aux_sym_stop_statement_token1] = ACTIONS(5115), + [aux_sym_stop_statement_token2] = ACTIONS(5115), + [aux_sym_subroutine_call_token1] = ACTIONS(5115), + [aux_sym_keyword_statement_token1] = ACTIONS(5115), + [aux_sym_keyword_statement_token2] = ACTIONS(5115), + [aux_sym_keyword_statement_token3] = ACTIONS(5115), + [aux_sym_keyword_statement_token4] = ACTIONS(5115), + [aux_sym_keyword_statement_token6] = ACTIONS(5115), + [aux_sym_keyword_statement_token7] = ACTIONS(5115), + [aux_sym_include_statement_token1] = ACTIONS(5115), + [aux_sym_data_statement_token1] = ACTIONS(5115), + [aux_sym_do_loop_statement_token1] = ACTIONS(5115), + [aux_sym__inline_if_statement_token1] = ACTIONS(5115), + [aux_sym_end_if_statement_token1] = ACTIONS(5115), + [aux_sym_elseif_clause_token2] = ACTIONS(5115), + [aux_sym__inline_where_statement_token1] = ACTIONS(5115), + [aux_sym__forall_control_expression_token1] = ACTIONS(5115), + [aux_sym_select_case_statement_token1] = ACTIONS(5115), + [aux_sym_select_case_statement_token3] = ACTIONS(5115), + [aux_sym_select_type_statement_token1] = ACTIONS(5115), + [aux_sym_select_rank_statement_token2] = ACTIONS(5115), + [aux_sym_block_construct_token1] = ACTIONS(5115), + [aux_sym_associate_statement_token1] = ACTIONS(5115), + [aux_sym_format_statement_token1] = ACTIONS(5115), + [aux_sym_print_statement_token1] = ACTIONS(5115), + [aux_sym_open_statement_token1] = ACTIONS(5115), + [aux_sym_close_statement_token1] = ACTIONS(5115), + [aux_sym_inquire_statement_token1] = ACTIONS(5115), + [aux_sym_enum_statement_token1] = ACTIONS(5115), + [aux_sym_file_position_statement_token1] = ACTIONS(5115), + [aux_sym_file_position_statement_token2] = ACTIONS(5115), + [aux_sym_file_position_statement_token3] = ACTIONS(5115), + [aux_sym_file_position_statement_token4] = ACTIONS(5115), + [aux_sym_allocate_statement_token1] = ACTIONS(5115), + [aux_sym_entry_statement_token1] = ACTIONS(5115), + [aux_sym_logical_expression_token5] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_LPAREN_SLASH] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [aux_sym_boolean_literal_token1] = ACTIONS(5119), + [aux_sym_boolean_literal_token2] = ACTIONS(5119), + [aux_sym_null_literal_token1] = ACTIONS(5115), + [aux_sym_coarray_statement_token1] = ACTIONS(5115), + [aux_sym_coarray_statement_token2] = ACTIONS(5115), + [aux_sym_coarray_statement_token6] = ACTIONS(5115), + [aux_sym_coarray_statement_token8] = ACTIONS(5115), + [aux_sym_coarray_statement_token11] = ACTIONS(5115), + [aux_sym_coarray_statement_token12] = ACTIONS(5115), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5115), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5115), + [aux_sym_identifier_token1] = ACTIONS(5115), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5119), + [sym__float_literal] = ACTIONS(5119), + [sym__boz_literal] = ACTIONS(5119), + [sym__string_literal] = ACTIONS(5119), + [sym__string_literal_kind] = ACTIONS(5119), + }, + [1197] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [sym_preproc_comment] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_end_program_statement_token2] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), + }, + [1198] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [sym_preproc_comment] = ACTIONS(5131), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_end_function_statement_token1] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), + }, + [1199] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [sym_preproc_comment] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_end_program_statement_token2] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), + }, + [1200] = { + [sym_preproc_include] = STATE(1200), + [sym_preproc_def] = STATE(1200), + [sym_preproc_function_def] = STATE(1200), + [sym_preproc_call] = STATE(1200), + [sym_interface] = STATE(1200), + [sym_interface_statement] = STATE(3812), + [sym_language_binding] = STATE(3156), + [sym__specification_part] = STATE(1200), + [sym_use_statement] = STATE(6604), + [sym_implicit_statement] = STATE(6604), + [sym_save_statement] = STATE(6604), + [sym_private_statement] = STATE(1200), + [sym_public_statement] = STATE(1200), + [sym_namelist_statement] = STATE(6604), + [sym_common_statement] = STATE(6604), + [sym_import_statement] = STATE(6604), + [sym_derived_type_definition] = STATE(1200), + [sym_abstract_specifier] = STATE(7579), + [sym_derived_type_statement] = STATE(4211), + [sym_variable_declaration] = STATE(6604), + [sym_procedure_declaration] = STATE(3376), + [sym_variable_modification] = STATE(6604), + [sym_variable_attributes] = STATE(3156), + [sym__intrinsic_type] = STATE(3457), + [sym_intrinsic_type] = STATE(3376), + [sym_derived_type] = STATE(3376), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_parameter_statement] = STATE(6604), + [sym_equivalence_statement] = STATE(6604), + [sym_statement_label] = STATE(6919), + [sym_include_statement] = STATE(6604), + [sym_data_statement] = STATE(6604), + [sym_enum] = STATE(1200), + [sym_enum_statement] = STATE(5901), + [sym_statement_function] = STATE(6604), + [sym_identifier] = STATE(7086), + [aux_sym_preproc_if_in_module_repeat1] = STATE(1200), + [aux_sym_variable_modification_repeat1] = STATE(3156), + [aux_sym_preproc_include_token1] = ACTIONS(5135), + [aux_sym_preproc_def_token1] = ACTIONS(5138), + [aux_sym_preproc_if_token2] = ACTIONS(3916), + [sym_preproc_directive] = ACTIONS(5141), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(3923), + [aux_sym_interface_statement_token1] = ACTIONS(3926), + [aux_sym_defined_io_procedure_token1] = ACTIONS(3929), + [aux_sym_defined_io_procedure_token2] = ACTIONS(3929), + [aux_sym_module_procedure_statement_token1] = ACTIONS(3932), + [aux_sym_language_binding_token1] = ACTIONS(3935), + [aux_sym_procedure_attributes_token1] = ACTIONS(3938), + [aux_sym_procedure_attributes_token3] = ACTIONS(3941), + [aux_sym_contains_statement_token1] = ACTIONS(3916), + [aux_sym_use_statement_token1] = ACTIONS(3944), + [aux_sym_use_statement_token2] = ACTIONS(3941), + [aux_sym_implicit_statement_token1] = ACTIONS(3947), + [aux_sym_implicit_statement_token3] = ACTIONS(3950), + [aux_sym_implicit_statement_token4] = ACTIONS(3941), + [aux_sym_save_statement_token1] = ACTIONS(3953), + [aux_sym_private_statement_token1] = ACTIONS(5144), + [aux_sym_public_statement_token1] = ACTIONS(5147), + [aux_sym_namelist_statement_token1] = ACTIONS(3962), + [aux_sym_common_statement_token1] = ACTIONS(3965), + [aux_sym_import_statement_token1] = ACTIONS(3968), + [aux_sym_derived_type_definition_token1] = ACTIONS(3941), + [aux_sym_abstract_specifier_token1] = ACTIONS(3971), + [aux_sym_procedure_attribute_token6] = ACTIONS(3941), + [aux_sym_variable_attributes_token1] = ACTIONS(3974), + [aux_sym_variable_attributes_token2] = ACTIONS(3941), + [aux_sym_variable_attributes_token3] = ACTIONS(3941), + [aux_sym_variable_attributes_token4] = ACTIONS(3974), + [aux_sym_variable_attributes_token5] = ACTIONS(3941), + [aux_sym__intrinsic_type_token1] = ACTIONS(3977), + [aux_sym__intrinsic_type_token2] = ACTIONS(3980), + [aux_sym__intrinsic_type_token3] = ACTIONS(3977), + [aux_sym__intrinsic_type_token4] = ACTIONS(3983), + [aux_sym__intrinsic_type_token6] = ACTIONS(3980), + [aux_sym__intrinsic_type_token7] = ACTIONS(3980), + [aux_sym__intrinsic_type_token8] = ACTIONS(3986), + [aux_sym__intrinsic_type_token9] = ACTIONS(3980), + [aux_sym__intrinsic_type_token10] = ACTIONS(3980), + [aux_sym_derived_type_token1] = ACTIONS(3989), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(3992), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(3995), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(3998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4001), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(3974), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(3941), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(3974), + [aux_sym_type_qualifier_token1] = ACTIONS(3929), + [aux_sym_type_qualifier_token2] = ACTIONS(3929), + [aux_sym_equivalence_statement_token1] = ACTIONS(4004), + [aux_sym_stop_statement_token1] = ACTIONS(3929), + [aux_sym_stop_statement_token2] = ACTIONS(3929), + [aux_sym_keyword_statement_token2] = ACTIONS(3929), + [aux_sym_keyword_statement_token3] = ACTIONS(3929), + [aux_sym_include_statement_token1] = ACTIONS(4007), + [aux_sym_data_statement_token1] = ACTIONS(4010), + [aux_sym__inline_if_statement_token1] = ACTIONS(3929), + [aux_sym_end_if_statement_token1] = ACTIONS(3929), + [aux_sym_elseif_clause_token2] = ACTIONS(3929), + [aux_sym_select_case_statement_token1] = ACTIONS(4013), + [aux_sym_block_construct_token1] = ACTIONS(3929), + [aux_sym_format_statement_token1] = ACTIONS(3929), + [aux_sym_inquire_statement_token1] = ACTIONS(3929), + [aux_sym_enum_statement_token1] = ACTIONS(4016), + [aux_sym_entry_statement_token1] = ACTIONS(3929), + [aux_sym_null_literal_token1] = ACTIONS(3929), + [aux_sym_coarray_statement_token1] = ACTIONS(3929), + [aux_sym_coarray_statement_token2] = ACTIONS(3929), + [aux_sym_coarray_statement_token6] = ACTIONS(3929), + [aux_sym_coarray_statement_token8] = ACTIONS(3929), + [aux_sym_coarray_statement_token11] = ACTIONS(3929), + [aux_sym_coarray_statement_token12] = ACTIONS(3929), + [aux_sym_coarray_team_statement_token1] = ACTIONS(3929), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(3929), + [aux_sym_identifier_token1] = ACTIONS(3929), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4019), + }, + [1201] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_end_program_statement_token2] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), + }, + [1202] = { + [aux_sym_preproc_include_token1] = ACTIONS(5115), + [aux_sym_preproc_def_token1] = ACTIONS(5115), + [aux_sym_preproc_if_token1] = ACTIONS(5115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5115), + [sym_preproc_directive] = ACTIONS(5115), + [anon_sym_LPAREN2] = ACTIONS(5115), + [sym_preproc_comment] = ACTIONS(5150), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5115), + [aux_sym_interface_statement_token1] = ACTIONS(5115), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5115), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5115), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5115), + [aux_sym_language_binding_token1] = ACTIONS(5115), + [aux_sym_procedure_attributes_token1] = ACTIONS(5115), + [aux_sym_procedure_attributes_token3] = ACTIONS(5115), + [aux_sym_end_function_statement_token1] = ACTIONS(5115), + [aux_sym_contains_statement_token1] = ACTIONS(5115), + [aux_sym_use_statement_token1] = ACTIONS(5115), + [aux_sym_use_statement_token2] = ACTIONS(5115), + [aux_sym_implicit_statement_token1] = ACTIONS(5115), + [aux_sym_implicit_statement_token3] = ACTIONS(5115), + [aux_sym_implicit_statement_token4] = ACTIONS(5115), + [aux_sym_save_statement_token1] = ACTIONS(5115), + [aux_sym_private_statement_token1] = ACTIONS(5115), + [aux_sym_public_statement_token1] = ACTIONS(5115), + [aux_sym_namelist_statement_token1] = ACTIONS(5115), + [aux_sym_common_statement_token1] = ACTIONS(5115), + [aux_sym_import_statement_token1] = ACTIONS(5115), + [aux_sym_derived_type_definition_token1] = ACTIONS(5115), + [aux_sym_abstract_specifier_token1] = ACTIONS(5115), + [aux_sym_procedure_attribute_token6] = ACTIONS(5115), + [aux_sym_variable_attributes_token1] = ACTIONS(5115), + [aux_sym_variable_attributes_token2] = ACTIONS(5115), + [aux_sym_variable_attributes_token3] = ACTIONS(5115), + [aux_sym_variable_attributes_token4] = ACTIONS(5115), + [aux_sym_variable_attributes_token5] = ACTIONS(5115), + [aux_sym__intrinsic_type_token1] = ACTIONS(5115), + [aux_sym__intrinsic_type_token2] = ACTIONS(5115), + [aux_sym__intrinsic_type_token3] = ACTIONS(5115), + [aux_sym__intrinsic_type_token4] = ACTIONS(5115), + [aux_sym__intrinsic_type_token6] = ACTIONS(5115), + [aux_sym__intrinsic_type_token7] = ACTIONS(5115), + [aux_sym__intrinsic_type_token8] = ACTIONS(5115), + [aux_sym__intrinsic_type_token9] = ACTIONS(5115), + [aux_sym__intrinsic_type_token10] = ACTIONS(5115), + [aux_sym_derived_type_token1] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5115), + [aux_sym_type_qualifier_token1] = ACTIONS(5115), + [aux_sym_type_qualifier_token2] = ACTIONS(5115), + [aux_sym_equivalence_statement_token1] = ACTIONS(5115), + [anon_sym_SEMI] = ACTIONS(5119), + [aux_sym_stop_statement_token1] = ACTIONS(5115), + [aux_sym_stop_statement_token2] = ACTIONS(5115), + [aux_sym_subroutine_call_token1] = ACTIONS(5115), + [aux_sym_keyword_statement_token1] = ACTIONS(5115), + [aux_sym_keyword_statement_token2] = ACTIONS(5115), + [aux_sym_keyword_statement_token3] = ACTIONS(5115), + [aux_sym_keyword_statement_token4] = ACTIONS(5115), + [aux_sym_keyword_statement_token6] = ACTIONS(5115), + [aux_sym_keyword_statement_token7] = ACTIONS(5115), + [aux_sym_include_statement_token1] = ACTIONS(5115), + [aux_sym_data_statement_token1] = ACTIONS(5115), + [aux_sym_do_loop_statement_token1] = ACTIONS(5115), + [aux_sym__inline_if_statement_token1] = ACTIONS(5115), + [aux_sym_end_if_statement_token1] = ACTIONS(5115), + [aux_sym_elseif_clause_token2] = ACTIONS(5115), + [aux_sym__inline_where_statement_token1] = ACTIONS(5115), + [aux_sym__forall_control_expression_token1] = ACTIONS(5115), + [aux_sym_select_case_statement_token1] = ACTIONS(5115), + [aux_sym_select_case_statement_token3] = ACTIONS(5115), + [aux_sym_select_type_statement_token1] = ACTIONS(5115), + [aux_sym_select_rank_statement_token2] = ACTIONS(5115), + [aux_sym_block_construct_token1] = ACTIONS(5115), + [aux_sym_associate_statement_token1] = ACTIONS(5115), + [aux_sym_format_statement_token1] = ACTIONS(5115), + [aux_sym_print_statement_token1] = ACTIONS(5115), + [aux_sym_open_statement_token1] = ACTIONS(5115), + [aux_sym_close_statement_token1] = ACTIONS(5115), + [aux_sym_inquire_statement_token1] = ACTIONS(5115), + [aux_sym_enum_statement_token1] = ACTIONS(5115), + [aux_sym_file_position_statement_token1] = ACTIONS(5115), + [aux_sym_file_position_statement_token2] = ACTIONS(5115), + [aux_sym_file_position_statement_token3] = ACTIONS(5115), + [aux_sym_file_position_statement_token4] = ACTIONS(5115), + [aux_sym_allocate_statement_token1] = ACTIONS(5115), + [aux_sym_entry_statement_token1] = ACTIONS(5115), + [aux_sym_logical_expression_token5] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_LPAREN_SLASH] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [aux_sym_boolean_literal_token1] = ACTIONS(5119), + [aux_sym_boolean_literal_token2] = ACTIONS(5119), + [aux_sym_null_literal_token1] = ACTIONS(5115), + [aux_sym_coarray_statement_token1] = ACTIONS(5115), + [aux_sym_coarray_statement_token2] = ACTIONS(5115), + [aux_sym_coarray_statement_token6] = ACTIONS(5115), + [aux_sym_coarray_statement_token8] = ACTIONS(5115), + [aux_sym_coarray_statement_token11] = ACTIONS(5115), + [aux_sym_coarray_statement_token12] = ACTIONS(5115), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5115), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5115), + [aux_sym_identifier_token1] = ACTIONS(5115), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5119), + [sym__float_literal] = ACTIONS(5119), + [sym__boz_literal] = ACTIONS(5119), + [sym__string_literal] = ACTIONS(5119), + [sym__string_literal_kind] = ACTIONS(5119), + }, + [1203] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [sym_preproc_comment] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_end_function_statement_token1] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), + }, + [1204] = { + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(5154), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_end_program_statement_token2] = ACTIONS(4319), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), + }, + [1205] = { + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_end_program_statement_token2] = ACTIONS(4319), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), + }, + [1206] = { + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(5158), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), + }, + [1207] = { + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4327), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4992), - [sym__float_literal] = ACTIONS(4992), - [sym__boz_literal] = ACTIONS(4992), - [sym__string_literal] = ACTIONS(4992), - [sym__string_literal_kind] = ACTIONS(4992), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), }, - [1194] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [1208] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [1195] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [sym_preproc_comment] = ACTIONS(5117), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [1209] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token2] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_end_program_statement_token2] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_subroutine_call_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_keyword_statement_token4] = ACTIONS(5010), + [aux_sym_keyword_statement_token6] = ACTIONS(5010), + [aux_sym_keyword_statement_token7] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym_do_loop_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym__inline_where_statement_token1] = ACTIONS(5010), + [aux_sym__forall_control_expression_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token3] = ACTIONS(5010), + [aux_sym_select_type_statement_token1] = ACTIONS(5010), + [aux_sym_select_rank_statement_token2] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_associate_statement_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_print_statement_token1] = ACTIONS(5010), + [aux_sym_open_statement_token1] = ACTIONS(5010), + [aux_sym_close_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token2] = ACTIONS(5010), + [aux_sym_file_position_statement_token3] = ACTIONS(5010), + [aux_sym_file_position_statement_token4] = ACTIONS(5010), + [aux_sym_allocate_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_logical_expression_token5] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_LPAREN_SLASH] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [aux_sym_boolean_literal_token1] = ACTIONS(5012), + [aux_sym_boolean_literal_token2] = ACTIONS(5012), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + [sym__float_literal] = ACTIONS(5012), + [sym__boz_literal] = ACTIONS(5012), + [sym__string_literal] = ACTIONS(5012), + [sym__string_literal_kind] = ACTIONS(5012), }, - [1196] = { - [aux_sym_preproc_include_token1] = ACTIONS(5119), - [aux_sym_preproc_def_token1] = ACTIONS(5119), - [aux_sym_preproc_if_token1] = ACTIONS(5119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5119), - [sym_preproc_directive] = ACTIONS(5119), - [anon_sym_LPAREN2] = ACTIONS(5119), - [sym_preproc_comment] = ACTIONS(5121), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5119), - [aux_sym_interface_statement_token1] = ACTIONS(5119), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5119), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5119), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5119), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5119), - [aux_sym_language_binding_token1] = ACTIONS(5119), - [aux_sym_procedure_attributes_token1] = ACTIONS(5119), - [aux_sym_procedure_attributes_token3] = ACTIONS(5119), - [aux_sym_contains_statement_token1] = ACTIONS(5119), - [aux_sym_use_statement_token1] = ACTIONS(5119), - [aux_sym_use_statement_token2] = ACTIONS(5119), - [aux_sym_implicit_statement_token1] = ACTIONS(5119), - [aux_sym_implicit_statement_token3] = ACTIONS(5119), - [aux_sym_implicit_statement_token4] = ACTIONS(5119), - [aux_sym_save_statement_token1] = ACTIONS(5119), - [aux_sym_private_statement_token1] = ACTIONS(5119), - [aux_sym_public_statement_token1] = ACTIONS(5119), - [aux_sym_namelist_statement_token1] = ACTIONS(5119), - [aux_sym_common_statement_token1] = ACTIONS(5119), - [aux_sym_import_statement_token1] = ACTIONS(5119), - [aux_sym_derived_type_definition_token1] = ACTIONS(5119), - [aux_sym_abstract_specifier_token1] = ACTIONS(5119), - [aux_sym_procedure_attribute_token6] = ACTIONS(5119), - [aux_sym_variable_attributes_token1] = ACTIONS(5119), - [aux_sym_variable_attributes_token2] = ACTIONS(5119), - [aux_sym_variable_attributes_token3] = ACTIONS(5119), - [aux_sym_variable_attributes_token4] = ACTIONS(5119), - [aux_sym_variable_attributes_token5] = ACTIONS(5119), - [aux_sym__intrinsic_type_token1] = ACTIONS(5119), - [aux_sym__intrinsic_type_token2] = ACTIONS(5119), - [aux_sym__intrinsic_type_token3] = ACTIONS(5119), - [aux_sym__intrinsic_type_token4] = ACTIONS(5119), - [aux_sym__intrinsic_type_token6] = ACTIONS(5119), - [aux_sym__intrinsic_type_token7] = ACTIONS(5119), - [aux_sym__intrinsic_type_token8] = ACTIONS(5119), - [aux_sym__intrinsic_type_token9] = ACTIONS(5119), - [aux_sym__intrinsic_type_token10] = ACTIONS(5119), - [aux_sym_derived_type_token1] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5119), - [aux_sym_type_qualifier_token1] = ACTIONS(5119), - [aux_sym_type_qualifier_token2] = ACTIONS(5119), - [aux_sym_equivalence_statement_token1] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5123), - [aux_sym_stop_statement_token1] = ACTIONS(5119), - [aux_sym_stop_statement_token2] = ACTIONS(5119), - [aux_sym_subroutine_call_token1] = ACTIONS(5119), - [aux_sym_keyword_statement_token1] = ACTIONS(5119), - [aux_sym_keyword_statement_token2] = ACTIONS(5119), - [aux_sym_keyword_statement_token3] = ACTIONS(5119), - [aux_sym_keyword_statement_token4] = ACTIONS(5119), - [aux_sym_keyword_statement_token6] = ACTIONS(5119), - [aux_sym_keyword_statement_token7] = ACTIONS(5119), - [aux_sym_include_statement_token1] = ACTIONS(5119), - [aux_sym_data_statement_token1] = ACTIONS(5119), - [aux_sym_do_loop_statement_token1] = ACTIONS(5119), - [aux_sym__inline_if_statement_token1] = ACTIONS(5119), - [aux_sym_end_if_statement_token1] = ACTIONS(5119), - [aux_sym_elseif_clause_token2] = ACTIONS(5119), - [aux_sym__inline_where_statement_token1] = ACTIONS(5119), - [aux_sym__forall_control_expression_token1] = ACTIONS(5119), - [aux_sym_select_case_statement_token1] = ACTIONS(5119), - [aux_sym_select_case_statement_token3] = ACTIONS(5119), - [aux_sym_select_type_statement_token1] = ACTIONS(5119), - [aux_sym_select_rank_statement_token2] = ACTIONS(5119), - [aux_sym_block_construct_token1] = ACTIONS(5119), - [aux_sym_associate_statement_token1] = ACTIONS(5119), - [aux_sym_format_statement_token1] = ACTIONS(5119), - [aux_sym_print_statement_token1] = ACTIONS(5119), - [aux_sym_open_statement_token1] = ACTIONS(5119), - [aux_sym_close_statement_token1] = ACTIONS(5119), - [aux_sym_inquire_statement_token1] = ACTIONS(5119), - [aux_sym_enum_statement_token1] = ACTIONS(5119), - [aux_sym_file_position_statement_token1] = ACTIONS(5119), - [aux_sym_file_position_statement_token2] = ACTIONS(5119), - [aux_sym_file_position_statement_token3] = ACTIONS(5119), - [aux_sym_file_position_statement_token4] = ACTIONS(5119), - [aux_sym_allocate_statement_token1] = ACTIONS(5119), - [aux_sym_entry_statement_token1] = ACTIONS(5119), - [aux_sym_logical_expression_token5] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LPAREN_SLASH] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [aux_sym_boolean_literal_token1] = ACTIONS(5123), - [aux_sym_boolean_literal_token2] = ACTIONS(5123), - [aux_sym_null_literal_token1] = ACTIONS(5119), - [aux_sym_coarray_statement_token1] = ACTIONS(5119), - [aux_sym_coarray_statement_token2] = ACTIONS(5119), - [aux_sym_coarray_statement_token6] = ACTIONS(5119), - [aux_sym_coarray_statement_token8] = ACTIONS(5119), - [aux_sym_coarray_statement_token11] = ACTIONS(5119), - [aux_sym_coarray_statement_token12] = ACTIONS(5119), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5119), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5119), - [aux_sym_identifier_token1] = ACTIONS(5119), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5123), - [sym__float_literal] = ACTIONS(5123), - [sym__boz_literal] = ACTIONS(5123), - [sym__string_literal] = ACTIONS(5123), - [sym__string_literal_kind] = ACTIONS(5123), + [1210] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_end_program_statement_token2] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_subroutine_call_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_keyword_statement_token4] = ACTIONS(5014), + [aux_sym_keyword_statement_token6] = ACTIONS(5014), + [aux_sym_keyword_statement_token7] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym_do_loop_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym__inline_where_statement_token1] = ACTIONS(5014), + [aux_sym__forall_control_expression_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token3] = ACTIONS(5014), + [aux_sym_select_type_statement_token1] = ACTIONS(5014), + [aux_sym_select_rank_statement_token2] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_associate_statement_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_print_statement_token1] = ACTIONS(5014), + [aux_sym_open_statement_token1] = ACTIONS(5014), + [aux_sym_close_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token2] = ACTIONS(5014), + [aux_sym_file_position_statement_token3] = ACTIONS(5014), + [aux_sym_file_position_statement_token4] = ACTIONS(5014), + [aux_sym_allocate_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_logical_expression_token5] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LPAREN_SLASH] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [aux_sym_boolean_literal_token1] = ACTIONS(5016), + [aux_sym_boolean_literal_token2] = ACTIONS(5016), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + [sym__float_literal] = ACTIONS(5016), + [sym__boz_literal] = ACTIONS(5016), + [sym__string_literal] = ACTIONS(5016), + [sym__string_literal_kind] = ACTIONS(5016), }, - [1197] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [sym_preproc_comment] = ACTIONS(5125), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [1211] = { + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), - }, - [1198] = { - [aux_sym_preproc_include_token1] = ACTIONS(5127), - [aux_sym_preproc_def_token1] = ACTIONS(5127), - [aux_sym_preproc_if_token1] = ACTIONS(5127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5127), - [sym_preproc_directive] = ACTIONS(5127), - [anon_sym_LPAREN2] = ACTIONS(5127), - [sym_preproc_comment] = ACTIONS(5129), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5127), - [aux_sym_interface_statement_token1] = ACTIONS(5127), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5127), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5127), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5127), - [aux_sym_language_binding_token1] = ACTIONS(5127), - [aux_sym_procedure_attributes_token1] = ACTIONS(5127), - [aux_sym_procedure_attributes_token3] = ACTIONS(5127), - [aux_sym_end_function_statement_token1] = ACTIONS(5127), - [aux_sym_contains_statement_token1] = ACTIONS(5127), - [aux_sym_use_statement_token1] = ACTIONS(5127), - [aux_sym_use_statement_token2] = ACTIONS(5127), - [aux_sym_implicit_statement_token1] = ACTIONS(5127), - [aux_sym_implicit_statement_token3] = ACTIONS(5127), - [aux_sym_implicit_statement_token4] = ACTIONS(5127), - [aux_sym_save_statement_token1] = ACTIONS(5127), - [aux_sym_private_statement_token1] = ACTIONS(5127), - [aux_sym_public_statement_token1] = ACTIONS(5127), - [aux_sym_namelist_statement_token1] = ACTIONS(5127), - [aux_sym_common_statement_token1] = ACTIONS(5127), - [aux_sym_import_statement_token1] = ACTIONS(5127), - [aux_sym_derived_type_definition_token1] = ACTIONS(5127), - [aux_sym_abstract_specifier_token1] = ACTIONS(5127), - [aux_sym_procedure_attribute_token6] = ACTIONS(5127), - [aux_sym_variable_attributes_token1] = ACTIONS(5127), - [aux_sym_variable_attributes_token2] = ACTIONS(5127), - [aux_sym_variable_attributes_token3] = ACTIONS(5127), - [aux_sym_variable_attributes_token4] = ACTIONS(5127), - [aux_sym_variable_attributes_token5] = ACTIONS(5127), - [aux_sym__intrinsic_type_token1] = ACTIONS(5127), - [aux_sym__intrinsic_type_token2] = ACTIONS(5127), - [aux_sym__intrinsic_type_token3] = ACTIONS(5127), - [aux_sym__intrinsic_type_token4] = ACTIONS(5127), - [aux_sym__intrinsic_type_token6] = ACTIONS(5127), - [aux_sym__intrinsic_type_token7] = ACTIONS(5127), - [aux_sym__intrinsic_type_token8] = ACTIONS(5127), - [aux_sym__intrinsic_type_token9] = ACTIONS(5127), - [aux_sym__intrinsic_type_token10] = ACTIONS(5127), - [aux_sym_derived_type_token1] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5127), - [aux_sym_type_qualifier_token1] = ACTIONS(5127), - [aux_sym_type_qualifier_token2] = ACTIONS(5127), - [aux_sym_equivalence_statement_token1] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5131), - [aux_sym_stop_statement_token1] = ACTIONS(5127), - [aux_sym_stop_statement_token2] = ACTIONS(5127), - [aux_sym_subroutine_call_token1] = ACTIONS(5127), - [aux_sym_keyword_statement_token1] = ACTIONS(5127), - [aux_sym_keyword_statement_token2] = ACTIONS(5127), - [aux_sym_keyword_statement_token3] = ACTIONS(5127), - [aux_sym_keyword_statement_token4] = ACTIONS(5127), - [aux_sym_keyword_statement_token6] = ACTIONS(5127), - [aux_sym_keyword_statement_token7] = ACTIONS(5127), - [aux_sym_include_statement_token1] = ACTIONS(5127), - [aux_sym_data_statement_token1] = ACTIONS(5127), - [aux_sym_do_loop_statement_token1] = ACTIONS(5127), - [aux_sym__inline_if_statement_token1] = ACTIONS(5127), - [aux_sym_end_if_statement_token1] = ACTIONS(5127), - [aux_sym_elseif_clause_token2] = ACTIONS(5127), - [aux_sym__inline_where_statement_token1] = ACTIONS(5127), - [aux_sym__forall_control_expression_token1] = ACTIONS(5127), - [aux_sym_select_case_statement_token1] = ACTIONS(5127), - [aux_sym_select_case_statement_token3] = ACTIONS(5127), - [aux_sym_select_type_statement_token1] = ACTIONS(5127), - [aux_sym_select_rank_statement_token2] = ACTIONS(5127), - [aux_sym_block_construct_token1] = ACTIONS(5127), - [aux_sym_associate_statement_token1] = ACTIONS(5127), - [aux_sym_format_statement_token1] = ACTIONS(5127), - [aux_sym_print_statement_token1] = ACTIONS(5127), - [aux_sym_open_statement_token1] = ACTIONS(5127), - [aux_sym_close_statement_token1] = ACTIONS(5127), - [aux_sym_inquire_statement_token1] = ACTIONS(5127), - [aux_sym_enum_statement_token1] = ACTIONS(5127), - [aux_sym_file_position_statement_token1] = ACTIONS(5127), - [aux_sym_file_position_statement_token2] = ACTIONS(5127), - [aux_sym_file_position_statement_token3] = ACTIONS(5127), - [aux_sym_file_position_statement_token4] = ACTIONS(5127), - [aux_sym_allocate_statement_token1] = ACTIONS(5127), - [aux_sym_entry_statement_token1] = ACTIONS(5127), - [aux_sym_logical_expression_token5] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5127), - [anon_sym_LPAREN_SLASH] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5131), - [aux_sym_boolean_literal_token1] = ACTIONS(5131), - [aux_sym_boolean_literal_token2] = ACTIONS(5131), - [aux_sym_null_literal_token1] = ACTIONS(5127), - [aux_sym_coarray_statement_token1] = ACTIONS(5127), - [aux_sym_coarray_statement_token2] = ACTIONS(5127), - [aux_sym_coarray_statement_token6] = ACTIONS(5127), - [aux_sym_coarray_statement_token8] = ACTIONS(5127), - [aux_sym_coarray_statement_token11] = ACTIONS(5127), - [aux_sym_coarray_statement_token12] = ACTIONS(5127), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5127), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5127), - [aux_sym_identifier_token1] = ACTIONS(5127), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5131), - [sym__float_literal] = ACTIONS(5131), - [sym__boz_literal] = ACTIONS(5131), - [sym__string_literal] = ACTIONS(5131), - [sym__string_literal_kind] = ACTIONS(5131), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), }, - [1199] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token2] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_LPAREN2] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_end_program_statement_token2] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_subroutine_call_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_keyword_statement_token4] = ACTIONS(5061), - [aux_sym_keyword_statement_token6] = ACTIONS(5061), - [aux_sym_keyword_statement_token7] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym_do_loop_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym__inline_where_statement_token1] = ACTIONS(5061), - [aux_sym__forall_control_expression_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token3] = ACTIONS(5061), - [aux_sym_select_type_statement_token1] = ACTIONS(5061), - [aux_sym_select_rank_statement_token2] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_associate_statement_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_print_statement_token1] = ACTIONS(5061), - [aux_sym_open_statement_token1] = ACTIONS(5061), - [aux_sym_close_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token2] = ACTIONS(5061), - [aux_sym_file_position_statement_token3] = ACTIONS(5061), - [aux_sym_file_position_statement_token4] = ACTIONS(5061), - [aux_sym_allocate_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_logical_expression_token5] = ACTIONS(5063), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LPAREN_SLASH] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [aux_sym_boolean_literal_token1] = ACTIONS(5063), - [aux_sym_boolean_literal_token2] = ACTIONS(5063), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - [sym__float_literal] = ACTIONS(5063), - [sym__boz_literal] = ACTIONS(5063), - [sym__string_literal] = ACTIONS(5063), - [sym__string_literal_kind] = ACTIONS(5063), + [1212] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(5166), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [1200] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_end_program_statement_token2] = ACTIONS(4313), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), + [1213] = { + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token2] = ACTIONS(4327), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), }, - [1201] = { + [1214] = { [aux_sym_preproc_include_token1] = ACTIONS(5081), [aux_sym_preproc_def_token1] = ACTIONS(5081), [aux_sym_preproc_if_token1] = ACTIONS(5081), @@ -252037,5057 +253675,3545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5083), [sym__string_literal_kind] = ACTIONS(5083), }, - [1202] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_end_function_statement_token1] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), - }, - [1203] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [sym_preproc_comment] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_end_function_statement_token1] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), - }, - [1204] = { - [aux_sym_preproc_include_token1] = ACTIONS(5127), - [aux_sym_preproc_def_token1] = ACTIONS(5127), - [aux_sym_preproc_if_token1] = ACTIONS(5127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5127), - [sym_preproc_directive] = ACTIONS(5127), - [anon_sym_LPAREN2] = ACTIONS(5127), - [sym_preproc_comment] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5127), - [aux_sym_interface_statement_token1] = ACTIONS(5127), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5127), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5127), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5127), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5127), - [aux_sym_language_binding_token1] = ACTIONS(5127), - [aux_sym_procedure_attributes_token1] = ACTIONS(5127), - [aux_sym_procedure_attributes_token3] = ACTIONS(5127), - [aux_sym_contains_statement_token1] = ACTIONS(5127), - [aux_sym_use_statement_token1] = ACTIONS(5127), - [aux_sym_use_statement_token2] = ACTIONS(5127), - [aux_sym_implicit_statement_token1] = ACTIONS(5127), - [aux_sym_implicit_statement_token3] = ACTIONS(5127), - [aux_sym_implicit_statement_token4] = ACTIONS(5127), - [aux_sym_save_statement_token1] = ACTIONS(5127), - [aux_sym_private_statement_token1] = ACTIONS(5127), - [aux_sym_public_statement_token1] = ACTIONS(5127), - [aux_sym_namelist_statement_token1] = ACTIONS(5127), - [aux_sym_common_statement_token1] = ACTIONS(5127), - [aux_sym_import_statement_token1] = ACTIONS(5127), - [aux_sym_derived_type_definition_token1] = ACTIONS(5127), - [aux_sym_abstract_specifier_token1] = ACTIONS(5127), - [aux_sym_procedure_attribute_token6] = ACTIONS(5127), - [aux_sym_variable_attributes_token1] = ACTIONS(5127), - [aux_sym_variable_attributes_token2] = ACTIONS(5127), - [aux_sym_variable_attributes_token3] = ACTIONS(5127), - [aux_sym_variable_attributes_token4] = ACTIONS(5127), - [aux_sym_variable_attributes_token5] = ACTIONS(5127), - [aux_sym__intrinsic_type_token1] = ACTIONS(5127), - [aux_sym__intrinsic_type_token2] = ACTIONS(5127), - [aux_sym__intrinsic_type_token3] = ACTIONS(5127), - [aux_sym__intrinsic_type_token4] = ACTIONS(5127), - [aux_sym__intrinsic_type_token6] = ACTIONS(5127), - [aux_sym__intrinsic_type_token7] = ACTIONS(5127), - [aux_sym__intrinsic_type_token8] = ACTIONS(5127), - [aux_sym__intrinsic_type_token9] = ACTIONS(5127), - [aux_sym__intrinsic_type_token10] = ACTIONS(5127), - [aux_sym_derived_type_token1] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5127), - [aux_sym_type_qualifier_token1] = ACTIONS(5127), - [aux_sym_type_qualifier_token2] = ACTIONS(5127), - [aux_sym_equivalence_statement_token1] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5131), - [aux_sym_stop_statement_token1] = ACTIONS(5127), - [aux_sym_stop_statement_token2] = ACTIONS(5127), - [aux_sym_subroutine_call_token1] = ACTIONS(5127), - [aux_sym_keyword_statement_token1] = ACTIONS(5127), - [aux_sym_keyword_statement_token2] = ACTIONS(5127), - [aux_sym_keyword_statement_token3] = ACTIONS(5127), - [aux_sym_keyword_statement_token4] = ACTIONS(5127), - [aux_sym_keyword_statement_token6] = ACTIONS(5127), - [aux_sym_keyword_statement_token7] = ACTIONS(5127), - [aux_sym_include_statement_token1] = ACTIONS(5127), - [aux_sym_data_statement_token1] = ACTIONS(5127), - [aux_sym_do_loop_statement_token1] = ACTIONS(5127), - [aux_sym__inline_if_statement_token1] = ACTIONS(5127), - [aux_sym_end_if_statement_token1] = ACTIONS(5127), - [aux_sym_elseif_clause_token2] = ACTIONS(5127), - [aux_sym__inline_where_statement_token1] = ACTIONS(5127), - [aux_sym__forall_control_expression_token1] = ACTIONS(5127), - [aux_sym_select_case_statement_token1] = ACTIONS(5127), - [aux_sym_select_case_statement_token3] = ACTIONS(5127), - [aux_sym_select_type_statement_token1] = ACTIONS(5127), - [aux_sym_select_rank_statement_token2] = ACTIONS(5127), - [aux_sym_block_construct_token1] = ACTIONS(5127), - [aux_sym_associate_statement_token1] = ACTIONS(5127), - [aux_sym_format_statement_token1] = ACTIONS(5127), - [aux_sym_print_statement_token1] = ACTIONS(5127), - [aux_sym_open_statement_token1] = ACTIONS(5127), - [aux_sym_close_statement_token1] = ACTIONS(5127), - [aux_sym_inquire_statement_token1] = ACTIONS(5127), - [aux_sym_enum_statement_token1] = ACTIONS(5127), - [aux_sym_file_position_statement_token1] = ACTIONS(5127), - [aux_sym_file_position_statement_token2] = ACTIONS(5127), - [aux_sym_file_position_statement_token3] = ACTIONS(5127), - [aux_sym_file_position_statement_token4] = ACTIONS(5127), - [aux_sym_allocate_statement_token1] = ACTIONS(5127), - [aux_sym_entry_statement_token1] = ACTIONS(5127), - [aux_sym_logical_expression_token5] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5127), - [anon_sym_LPAREN_SLASH] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5131), - [aux_sym_boolean_literal_token1] = ACTIONS(5131), - [aux_sym_boolean_literal_token2] = ACTIONS(5131), - [aux_sym_null_literal_token1] = ACTIONS(5127), - [aux_sym_coarray_statement_token1] = ACTIONS(5127), - [aux_sym_coarray_statement_token2] = ACTIONS(5127), - [aux_sym_coarray_statement_token6] = ACTIONS(5127), - [aux_sym_coarray_statement_token8] = ACTIONS(5127), - [aux_sym_coarray_statement_token11] = ACTIONS(5127), - [aux_sym_coarray_statement_token12] = ACTIONS(5127), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5127), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5127), - [aux_sym_identifier_token1] = ACTIONS(5127), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5131), - [sym__float_literal] = ACTIONS(5131), - [sym__boz_literal] = ACTIONS(5131), - [sym__string_literal] = ACTIONS(5131), - [sym__string_literal_kind] = ACTIONS(5131), - }, - [1205] = { - [aux_sym_preproc_include_token1] = ACTIONS(5119), - [aux_sym_preproc_def_token1] = ACTIONS(5119), - [aux_sym_preproc_if_token1] = ACTIONS(5119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5119), - [sym_preproc_directive] = ACTIONS(5119), - [anon_sym_LPAREN2] = ACTIONS(5119), - [sym_preproc_comment] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5119), - [aux_sym_interface_statement_token1] = ACTIONS(5119), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5119), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5119), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5119), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5119), - [aux_sym_language_binding_token1] = ACTIONS(5119), - [aux_sym_procedure_attributes_token1] = ACTIONS(5119), - [aux_sym_procedure_attributes_token3] = ACTIONS(5119), - [aux_sym_contains_statement_token1] = ACTIONS(5119), - [aux_sym_use_statement_token1] = ACTIONS(5119), - [aux_sym_use_statement_token2] = ACTIONS(5119), - [aux_sym_implicit_statement_token1] = ACTIONS(5119), - [aux_sym_implicit_statement_token3] = ACTIONS(5119), - [aux_sym_implicit_statement_token4] = ACTIONS(5119), - [aux_sym_save_statement_token1] = ACTIONS(5119), - [aux_sym_private_statement_token1] = ACTIONS(5119), - [aux_sym_public_statement_token1] = ACTIONS(5119), - [aux_sym_namelist_statement_token1] = ACTIONS(5119), - [aux_sym_common_statement_token1] = ACTIONS(5119), - [aux_sym_import_statement_token1] = ACTIONS(5119), - [aux_sym_derived_type_definition_token1] = ACTIONS(5119), - [aux_sym_abstract_specifier_token1] = ACTIONS(5119), - [aux_sym_procedure_attribute_token6] = ACTIONS(5119), - [aux_sym_variable_attributes_token1] = ACTIONS(5119), - [aux_sym_variable_attributes_token2] = ACTIONS(5119), - [aux_sym_variable_attributes_token3] = ACTIONS(5119), - [aux_sym_variable_attributes_token4] = ACTIONS(5119), - [aux_sym_variable_attributes_token5] = ACTIONS(5119), - [aux_sym__intrinsic_type_token1] = ACTIONS(5119), - [aux_sym__intrinsic_type_token2] = ACTIONS(5119), - [aux_sym__intrinsic_type_token3] = ACTIONS(5119), - [aux_sym__intrinsic_type_token4] = ACTIONS(5119), - [aux_sym__intrinsic_type_token6] = ACTIONS(5119), - [aux_sym__intrinsic_type_token7] = ACTIONS(5119), - [aux_sym__intrinsic_type_token8] = ACTIONS(5119), - [aux_sym__intrinsic_type_token9] = ACTIONS(5119), - [aux_sym__intrinsic_type_token10] = ACTIONS(5119), - [aux_sym_derived_type_token1] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5119), - [aux_sym_type_qualifier_token1] = ACTIONS(5119), - [aux_sym_type_qualifier_token2] = ACTIONS(5119), - [aux_sym_equivalence_statement_token1] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5123), - [aux_sym_stop_statement_token1] = ACTIONS(5119), - [aux_sym_stop_statement_token2] = ACTIONS(5119), - [aux_sym_subroutine_call_token1] = ACTIONS(5119), - [aux_sym_keyword_statement_token1] = ACTIONS(5119), - [aux_sym_keyword_statement_token2] = ACTIONS(5119), - [aux_sym_keyword_statement_token3] = ACTIONS(5119), - [aux_sym_keyword_statement_token4] = ACTIONS(5119), - [aux_sym_keyword_statement_token6] = ACTIONS(5119), - [aux_sym_keyword_statement_token7] = ACTIONS(5119), - [aux_sym_include_statement_token1] = ACTIONS(5119), - [aux_sym_data_statement_token1] = ACTIONS(5119), - [aux_sym_do_loop_statement_token1] = ACTIONS(5119), - [aux_sym__inline_if_statement_token1] = ACTIONS(5119), - [aux_sym_end_if_statement_token1] = ACTIONS(5119), - [aux_sym_elseif_clause_token2] = ACTIONS(5119), - [aux_sym__inline_where_statement_token1] = ACTIONS(5119), - [aux_sym__forall_control_expression_token1] = ACTIONS(5119), - [aux_sym_select_case_statement_token1] = ACTIONS(5119), - [aux_sym_select_case_statement_token3] = ACTIONS(5119), - [aux_sym_select_type_statement_token1] = ACTIONS(5119), - [aux_sym_select_rank_statement_token2] = ACTIONS(5119), - [aux_sym_block_construct_token1] = ACTIONS(5119), - [aux_sym_associate_statement_token1] = ACTIONS(5119), - [aux_sym_format_statement_token1] = ACTIONS(5119), - [aux_sym_print_statement_token1] = ACTIONS(5119), - [aux_sym_open_statement_token1] = ACTIONS(5119), - [aux_sym_close_statement_token1] = ACTIONS(5119), - [aux_sym_inquire_statement_token1] = ACTIONS(5119), - [aux_sym_enum_statement_token1] = ACTIONS(5119), - [aux_sym_file_position_statement_token1] = ACTIONS(5119), - [aux_sym_file_position_statement_token2] = ACTIONS(5119), - [aux_sym_file_position_statement_token3] = ACTIONS(5119), - [aux_sym_file_position_statement_token4] = ACTIONS(5119), - [aux_sym_allocate_statement_token1] = ACTIONS(5119), - [aux_sym_entry_statement_token1] = ACTIONS(5119), - [aux_sym_logical_expression_token5] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LPAREN_SLASH] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [aux_sym_boolean_literal_token1] = ACTIONS(5123), - [aux_sym_boolean_literal_token2] = ACTIONS(5123), - [aux_sym_null_literal_token1] = ACTIONS(5119), - [aux_sym_coarray_statement_token1] = ACTIONS(5119), - [aux_sym_coarray_statement_token2] = ACTIONS(5119), - [aux_sym_coarray_statement_token6] = ACTIONS(5119), - [aux_sym_coarray_statement_token8] = ACTIONS(5119), - [aux_sym_coarray_statement_token11] = ACTIONS(5119), - [aux_sym_coarray_statement_token12] = ACTIONS(5119), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5119), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5119), - [aux_sym_identifier_token1] = ACTIONS(5119), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5123), - [sym__float_literal] = ACTIONS(5123), - [sym__boz_literal] = ACTIONS(5123), - [sym__string_literal] = ACTIONS(5123), - [sym__string_literal_kind] = ACTIONS(5123), - }, - [1206] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [sym_preproc_comment] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), - }, - [1207] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(5145), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_end_program_statement_token2] = ACTIONS(4267), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), - }, - [1208] = { - [aux_sym_preproc_include_token1] = ACTIONS(5147), - [aux_sym_preproc_def_token1] = ACTIONS(5147), - [aux_sym_preproc_if_token1] = ACTIONS(5147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5147), - [sym_preproc_directive] = ACTIONS(5147), - [anon_sym_LPAREN2] = ACTIONS(5147), - [sym_preproc_comment] = ACTIONS(5149), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5147), - [aux_sym_interface_statement_token1] = ACTIONS(5147), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5147), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5147), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5147), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5147), - [aux_sym_language_binding_token1] = ACTIONS(5147), - [aux_sym_procedure_attributes_token1] = ACTIONS(5147), - [aux_sym_procedure_attributes_token3] = ACTIONS(5147), - [aux_sym_contains_statement_token1] = ACTIONS(5147), - [aux_sym_use_statement_token1] = ACTIONS(5147), - [aux_sym_use_statement_token2] = ACTIONS(5147), - [aux_sym_implicit_statement_token1] = ACTIONS(5147), - [aux_sym_implicit_statement_token3] = ACTIONS(5147), - [aux_sym_implicit_statement_token4] = ACTIONS(5147), - [aux_sym_save_statement_token1] = ACTIONS(5147), - [aux_sym_private_statement_token1] = ACTIONS(5147), - [aux_sym_public_statement_token1] = ACTIONS(5147), - [aux_sym_namelist_statement_token1] = ACTIONS(5147), - [aux_sym_common_statement_token1] = ACTIONS(5147), - [aux_sym_import_statement_token1] = ACTIONS(5147), - [aux_sym_derived_type_definition_token1] = ACTIONS(5147), - [aux_sym_abstract_specifier_token1] = ACTIONS(5147), - [aux_sym_procedure_attribute_token6] = ACTIONS(5147), - [aux_sym_variable_attributes_token1] = ACTIONS(5147), - [aux_sym_variable_attributes_token2] = ACTIONS(5147), - [aux_sym_variable_attributes_token3] = ACTIONS(5147), - [aux_sym_variable_attributes_token4] = ACTIONS(5147), - [aux_sym_variable_attributes_token5] = ACTIONS(5147), - [aux_sym__intrinsic_type_token1] = ACTIONS(5147), - [aux_sym__intrinsic_type_token2] = ACTIONS(5147), - [aux_sym__intrinsic_type_token3] = ACTIONS(5147), - [aux_sym__intrinsic_type_token4] = ACTIONS(5147), - [aux_sym__intrinsic_type_token6] = ACTIONS(5147), - [aux_sym__intrinsic_type_token7] = ACTIONS(5147), - [aux_sym__intrinsic_type_token8] = ACTIONS(5147), - [aux_sym__intrinsic_type_token9] = ACTIONS(5147), - [aux_sym__intrinsic_type_token10] = ACTIONS(5147), - [aux_sym_derived_type_token1] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5147), - [aux_sym_type_qualifier_token1] = ACTIONS(5147), - [aux_sym_type_qualifier_token2] = ACTIONS(5147), - [aux_sym_equivalence_statement_token1] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5151), - [aux_sym_stop_statement_token1] = ACTIONS(5147), - [aux_sym_stop_statement_token2] = ACTIONS(5147), - [aux_sym_subroutine_call_token1] = ACTIONS(5147), - [aux_sym_keyword_statement_token1] = ACTIONS(5147), - [aux_sym_keyword_statement_token2] = ACTIONS(5147), - [aux_sym_keyword_statement_token3] = ACTIONS(5147), - [aux_sym_keyword_statement_token4] = ACTIONS(5147), - [aux_sym_keyword_statement_token6] = ACTIONS(5147), - [aux_sym_keyword_statement_token7] = ACTIONS(5147), - [aux_sym_include_statement_token1] = ACTIONS(5147), - [aux_sym_data_statement_token1] = ACTIONS(5147), - [aux_sym_do_loop_statement_token1] = ACTIONS(5147), - [aux_sym__inline_if_statement_token1] = ACTIONS(5147), - [aux_sym_end_if_statement_token1] = ACTIONS(5147), - [aux_sym_elseif_clause_token2] = ACTIONS(5147), - [aux_sym__inline_where_statement_token1] = ACTIONS(5147), - [aux_sym__forall_control_expression_token1] = ACTIONS(5147), - [aux_sym_select_case_statement_token1] = ACTIONS(5147), - [aux_sym_select_case_statement_token3] = ACTIONS(5147), - [aux_sym_select_type_statement_token1] = ACTIONS(5147), - [aux_sym_select_rank_statement_token2] = ACTIONS(5147), - [aux_sym_block_construct_token1] = ACTIONS(5147), - [aux_sym_associate_statement_token1] = ACTIONS(5147), - [aux_sym_format_statement_token1] = ACTIONS(5147), - [aux_sym_print_statement_token1] = ACTIONS(5147), - [aux_sym_open_statement_token1] = ACTIONS(5147), - [aux_sym_close_statement_token1] = ACTIONS(5147), - [aux_sym_inquire_statement_token1] = ACTIONS(5147), - [aux_sym_enum_statement_token1] = ACTIONS(5147), - [aux_sym_file_position_statement_token1] = ACTIONS(5147), - [aux_sym_file_position_statement_token2] = ACTIONS(5147), - [aux_sym_file_position_statement_token3] = ACTIONS(5147), - [aux_sym_file_position_statement_token4] = ACTIONS(5147), - [aux_sym_allocate_statement_token1] = ACTIONS(5147), - [aux_sym_entry_statement_token1] = ACTIONS(5147), - [aux_sym_logical_expression_token5] = ACTIONS(5151), - [anon_sym_DOT] = ACTIONS(5147), - [anon_sym_LPAREN_SLASH] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [aux_sym_boolean_literal_token1] = ACTIONS(5151), - [aux_sym_boolean_literal_token2] = ACTIONS(5151), - [aux_sym_null_literal_token1] = ACTIONS(5147), - [aux_sym_coarray_statement_token1] = ACTIONS(5147), - [aux_sym_coarray_statement_token2] = ACTIONS(5147), - [aux_sym_coarray_statement_token6] = ACTIONS(5147), - [aux_sym_coarray_statement_token8] = ACTIONS(5147), - [aux_sym_coarray_statement_token11] = ACTIONS(5147), - [aux_sym_coarray_statement_token12] = ACTIONS(5147), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5147), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5147), - [aux_sym_identifier_token1] = ACTIONS(5147), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5151), - [sym__float_literal] = ACTIONS(5151), - [sym__boz_literal] = ACTIONS(5151), - [sym__string_literal] = ACTIONS(5151), - [sym__string_literal_kind] = ACTIONS(5151), - }, - [1209] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token2] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_end_program_statement_token2] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_subroutine_call_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_keyword_statement_token4] = ACTIONS(5025), - [aux_sym_keyword_statement_token6] = ACTIONS(5025), - [aux_sym_keyword_statement_token7] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym_do_loop_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym__inline_where_statement_token1] = ACTIONS(5025), - [aux_sym__forall_control_expression_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token3] = ACTIONS(5025), - [aux_sym_select_type_statement_token1] = ACTIONS(5025), - [aux_sym_select_rank_statement_token2] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_associate_statement_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_print_statement_token1] = ACTIONS(5025), - [aux_sym_open_statement_token1] = ACTIONS(5025), - [aux_sym_close_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token2] = ACTIONS(5025), - [aux_sym_file_position_statement_token3] = ACTIONS(5025), - [aux_sym_file_position_statement_token4] = ACTIONS(5025), - [aux_sym_allocate_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_logical_expression_token5] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_LPAREN_SLASH] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [aux_sym_boolean_literal_token1] = ACTIONS(5027), - [aux_sym_boolean_literal_token2] = ACTIONS(5027), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - [sym__float_literal] = ACTIONS(5027), - [sym__boz_literal] = ACTIONS(5027), - [sym__string_literal] = ACTIONS(5027), - [sym__string_literal_kind] = ACTIONS(5027), - }, - [1210] = { - [aux_sym_preproc_include_token1] = ACTIONS(5153), - [aux_sym_preproc_def_token1] = ACTIONS(5153), - [aux_sym_preproc_if_token1] = ACTIONS(5153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5153), - [sym_preproc_directive] = ACTIONS(5153), - [anon_sym_LPAREN2] = ACTIONS(5153), - [sym_preproc_comment] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5153), - [aux_sym_interface_statement_token1] = ACTIONS(5153), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5153), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5153), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5153), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5153), - [aux_sym_language_binding_token1] = ACTIONS(5153), - [aux_sym_procedure_attributes_token1] = ACTIONS(5153), - [aux_sym_procedure_attributes_token3] = ACTIONS(5153), - [aux_sym_contains_statement_token1] = ACTIONS(5153), - [aux_sym_use_statement_token1] = ACTIONS(5153), - [aux_sym_use_statement_token2] = ACTIONS(5153), - [aux_sym_implicit_statement_token1] = ACTIONS(5153), - [aux_sym_implicit_statement_token3] = ACTIONS(5153), - [aux_sym_implicit_statement_token4] = ACTIONS(5153), - [aux_sym_save_statement_token1] = ACTIONS(5153), - [aux_sym_private_statement_token1] = ACTIONS(5153), - [aux_sym_public_statement_token1] = ACTIONS(5153), - [aux_sym_namelist_statement_token1] = ACTIONS(5153), - [aux_sym_common_statement_token1] = ACTIONS(5153), - [aux_sym_import_statement_token1] = ACTIONS(5153), - [aux_sym_derived_type_definition_token1] = ACTIONS(5153), - [aux_sym_abstract_specifier_token1] = ACTIONS(5153), - [aux_sym_procedure_attribute_token6] = ACTIONS(5153), - [aux_sym_variable_attributes_token1] = ACTIONS(5153), - [aux_sym_variable_attributes_token2] = ACTIONS(5153), - [aux_sym_variable_attributes_token3] = ACTIONS(5153), - [aux_sym_variable_attributes_token4] = ACTIONS(5153), - [aux_sym_variable_attributes_token5] = ACTIONS(5153), - [aux_sym__intrinsic_type_token1] = ACTIONS(5153), - [aux_sym__intrinsic_type_token2] = ACTIONS(5153), - [aux_sym__intrinsic_type_token3] = ACTIONS(5153), - [aux_sym__intrinsic_type_token4] = ACTIONS(5153), - [aux_sym__intrinsic_type_token6] = ACTIONS(5153), - [aux_sym__intrinsic_type_token7] = ACTIONS(5153), - [aux_sym__intrinsic_type_token8] = ACTIONS(5153), - [aux_sym__intrinsic_type_token9] = ACTIONS(5153), - [aux_sym__intrinsic_type_token10] = ACTIONS(5153), - [aux_sym_derived_type_token1] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5153), - [aux_sym_type_qualifier_token1] = ACTIONS(5153), - [aux_sym_type_qualifier_token2] = ACTIONS(5153), - [aux_sym_equivalence_statement_token1] = ACTIONS(5153), - [anon_sym_SEMI] = ACTIONS(5157), - [aux_sym_stop_statement_token1] = ACTIONS(5153), - [aux_sym_stop_statement_token2] = ACTIONS(5153), - [aux_sym_subroutine_call_token1] = ACTIONS(5153), - [aux_sym_keyword_statement_token1] = ACTIONS(5153), - [aux_sym_keyword_statement_token2] = ACTIONS(5153), - [aux_sym_keyword_statement_token3] = ACTIONS(5153), - [aux_sym_keyword_statement_token4] = ACTIONS(5153), - [aux_sym_keyword_statement_token6] = ACTIONS(5153), - [aux_sym_keyword_statement_token7] = ACTIONS(5153), - [aux_sym_include_statement_token1] = ACTIONS(5153), - [aux_sym_data_statement_token1] = ACTIONS(5153), - [aux_sym_do_loop_statement_token1] = ACTIONS(5153), - [aux_sym__inline_if_statement_token1] = ACTIONS(5153), - [aux_sym_end_if_statement_token1] = ACTIONS(5153), - [aux_sym_elseif_clause_token2] = ACTIONS(5153), - [aux_sym__inline_where_statement_token1] = ACTIONS(5153), - [aux_sym__forall_control_expression_token1] = ACTIONS(5153), - [aux_sym_select_case_statement_token1] = ACTIONS(5153), - [aux_sym_select_case_statement_token3] = ACTIONS(5153), - [aux_sym_select_type_statement_token1] = ACTIONS(5153), - [aux_sym_select_rank_statement_token2] = ACTIONS(5153), - [aux_sym_block_construct_token1] = ACTIONS(5153), - [aux_sym_associate_statement_token1] = ACTIONS(5153), - [aux_sym_format_statement_token1] = ACTIONS(5153), - [aux_sym_print_statement_token1] = ACTIONS(5153), - [aux_sym_open_statement_token1] = ACTIONS(5153), - [aux_sym_close_statement_token1] = ACTIONS(5153), - [aux_sym_inquire_statement_token1] = ACTIONS(5153), - [aux_sym_enum_statement_token1] = ACTIONS(5153), - [aux_sym_file_position_statement_token1] = ACTIONS(5153), - [aux_sym_file_position_statement_token2] = ACTIONS(5153), - [aux_sym_file_position_statement_token3] = ACTIONS(5153), - [aux_sym_file_position_statement_token4] = ACTIONS(5153), - [aux_sym_allocate_statement_token1] = ACTIONS(5153), - [aux_sym_entry_statement_token1] = ACTIONS(5153), - [aux_sym_logical_expression_token5] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_LPAREN_SLASH] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [aux_sym_boolean_literal_token1] = ACTIONS(5157), - [aux_sym_boolean_literal_token2] = ACTIONS(5157), - [aux_sym_null_literal_token1] = ACTIONS(5153), - [aux_sym_coarray_statement_token1] = ACTIONS(5153), - [aux_sym_coarray_statement_token2] = ACTIONS(5153), - [aux_sym_coarray_statement_token6] = ACTIONS(5153), - [aux_sym_coarray_statement_token8] = ACTIONS(5153), - [aux_sym_coarray_statement_token11] = ACTIONS(5153), - [aux_sym_coarray_statement_token12] = ACTIONS(5153), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5153), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5153), - [aux_sym_identifier_token1] = ACTIONS(5153), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5157), - [sym__float_literal] = ACTIONS(5157), - [sym__boz_literal] = ACTIONS(5157), - [sym__string_literal] = ACTIONS(5157), - [sym__string_literal_kind] = ACTIONS(5157), - }, - [1211] = { - [aux_sym_preproc_include_token1] = ACTIONS(5127), - [aux_sym_preproc_def_token1] = ACTIONS(5127), - [aux_sym_preproc_if_token1] = ACTIONS(5127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5127), - [sym_preproc_directive] = ACTIONS(5127), - [anon_sym_LPAREN2] = ACTIONS(5127), - [sym_preproc_comment] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5127), - [aux_sym_end_program_statement_token2] = ACTIONS(5127), - [aux_sym_interface_statement_token1] = ACTIONS(5127), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5127), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5127), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5127), - [aux_sym_language_binding_token1] = ACTIONS(5127), - [aux_sym_procedure_attributes_token1] = ACTIONS(5127), - [aux_sym_procedure_attributes_token3] = ACTIONS(5127), - [aux_sym_contains_statement_token1] = ACTIONS(5127), - [aux_sym_use_statement_token1] = ACTIONS(5127), - [aux_sym_use_statement_token2] = ACTIONS(5127), - [aux_sym_implicit_statement_token1] = ACTIONS(5127), - [aux_sym_implicit_statement_token3] = ACTIONS(5127), - [aux_sym_implicit_statement_token4] = ACTIONS(5127), - [aux_sym_save_statement_token1] = ACTIONS(5127), - [aux_sym_private_statement_token1] = ACTIONS(5127), - [aux_sym_public_statement_token1] = ACTIONS(5127), - [aux_sym_namelist_statement_token1] = ACTIONS(5127), - [aux_sym_common_statement_token1] = ACTIONS(5127), - [aux_sym_import_statement_token1] = ACTIONS(5127), - [aux_sym_derived_type_definition_token1] = ACTIONS(5127), - [aux_sym_abstract_specifier_token1] = ACTIONS(5127), - [aux_sym_procedure_attribute_token6] = ACTIONS(5127), - [aux_sym_variable_attributes_token1] = ACTIONS(5127), - [aux_sym_variable_attributes_token2] = ACTIONS(5127), - [aux_sym_variable_attributes_token3] = ACTIONS(5127), - [aux_sym_variable_attributes_token4] = ACTIONS(5127), - [aux_sym_variable_attributes_token5] = ACTIONS(5127), - [aux_sym__intrinsic_type_token1] = ACTIONS(5127), - [aux_sym__intrinsic_type_token2] = ACTIONS(5127), - [aux_sym__intrinsic_type_token3] = ACTIONS(5127), - [aux_sym__intrinsic_type_token4] = ACTIONS(5127), - [aux_sym__intrinsic_type_token6] = ACTIONS(5127), - [aux_sym__intrinsic_type_token7] = ACTIONS(5127), - [aux_sym__intrinsic_type_token8] = ACTIONS(5127), - [aux_sym__intrinsic_type_token9] = ACTIONS(5127), - [aux_sym__intrinsic_type_token10] = ACTIONS(5127), - [aux_sym_derived_type_token1] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5127), - [aux_sym_type_qualifier_token1] = ACTIONS(5127), - [aux_sym_type_qualifier_token2] = ACTIONS(5127), - [aux_sym_equivalence_statement_token1] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5131), - [aux_sym_stop_statement_token1] = ACTIONS(5127), - [aux_sym_stop_statement_token2] = ACTIONS(5127), - [aux_sym_subroutine_call_token1] = ACTIONS(5127), - [aux_sym_keyword_statement_token1] = ACTIONS(5127), - [aux_sym_keyword_statement_token2] = ACTIONS(5127), - [aux_sym_keyword_statement_token3] = ACTIONS(5127), - [aux_sym_keyword_statement_token4] = ACTIONS(5127), - [aux_sym_keyword_statement_token6] = ACTIONS(5127), - [aux_sym_keyword_statement_token7] = ACTIONS(5127), - [aux_sym_include_statement_token1] = ACTIONS(5127), - [aux_sym_data_statement_token1] = ACTIONS(5127), - [aux_sym_do_loop_statement_token1] = ACTIONS(5127), - [aux_sym__inline_if_statement_token1] = ACTIONS(5127), - [aux_sym_end_if_statement_token1] = ACTIONS(5127), - [aux_sym_elseif_clause_token2] = ACTIONS(5127), - [aux_sym__inline_where_statement_token1] = ACTIONS(5127), - [aux_sym__forall_control_expression_token1] = ACTIONS(5127), - [aux_sym_select_case_statement_token1] = ACTIONS(5127), - [aux_sym_select_case_statement_token3] = ACTIONS(5127), - [aux_sym_select_type_statement_token1] = ACTIONS(5127), - [aux_sym_select_rank_statement_token2] = ACTIONS(5127), - [aux_sym_block_construct_token1] = ACTIONS(5127), - [aux_sym_associate_statement_token1] = ACTIONS(5127), - [aux_sym_format_statement_token1] = ACTIONS(5127), - [aux_sym_print_statement_token1] = ACTIONS(5127), - [aux_sym_open_statement_token1] = ACTIONS(5127), - [aux_sym_close_statement_token1] = ACTIONS(5127), - [aux_sym_inquire_statement_token1] = ACTIONS(5127), - [aux_sym_enum_statement_token1] = ACTIONS(5127), - [aux_sym_file_position_statement_token1] = ACTIONS(5127), - [aux_sym_file_position_statement_token2] = ACTIONS(5127), - [aux_sym_file_position_statement_token3] = ACTIONS(5127), - [aux_sym_file_position_statement_token4] = ACTIONS(5127), - [aux_sym_allocate_statement_token1] = ACTIONS(5127), - [aux_sym_entry_statement_token1] = ACTIONS(5127), - [aux_sym_logical_expression_token5] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5127), - [anon_sym_LPAREN_SLASH] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5131), - [aux_sym_boolean_literal_token1] = ACTIONS(5131), - [aux_sym_boolean_literal_token2] = ACTIONS(5131), - [aux_sym_null_literal_token1] = ACTIONS(5127), - [aux_sym_coarray_statement_token1] = ACTIONS(5127), - [aux_sym_coarray_statement_token2] = ACTIONS(5127), - [aux_sym_coarray_statement_token6] = ACTIONS(5127), - [aux_sym_coarray_statement_token8] = ACTIONS(5127), - [aux_sym_coarray_statement_token11] = ACTIONS(5127), - [aux_sym_coarray_statement_token12] = ACTIONS(5127), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5127), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5127), - [aux_sym_identifier_token1] = ACTIONS(5127), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5131), - [sym__float_literal] = ACTIONS(5131), - [sym__boz_literal] = ACTIONS(5131), - [sym__string_literal] = ACTIONS(5131), - [sym__string_literal_kind] = ACTIONS(5131), - }, - [1212] = { - [aux_sym_preproc_include_token1] = ACTIONS(4980), - [aux_sym_preproc_def_token1] = ACTIONS(4980), - [aux_sym_preproc_if_token1] = ACTIONS(4980), - [aux_sym_preproc_if_token2] = ACTIONS(4983), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4980), - [sym_preproc_directive] = ACTIONS(4980), - [anon_sym_LPAREN2] = ACTIONS(4980), - [anon_sym_PLUS] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4980), - [aux_sym_end_program_statement_token2] = ACTIONS(4988), - [aux_sym_interface_statement_token1] = ACTIONS(4980), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4980), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4980), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4980), - [aux_sym_language_binding_token1] = ACTIONS(4980), - [aux_sym_procedure_attributes_token1] = ACTIONS(4980), - [aux_sym_procedure_attributes_token3] = ACTIONS(4980), - [aux_sym_contains_statement_token1] = ACTIONS(4980), - [aux_sym_use_statement_token1] = ACTIONS(4980), - [aux_sym_use_statement_token2] = ACTIONS(4980), - [aux_sym_implicit_statement_token1] = ACTIONS(4980), - [aux_sym_implicit_statement_token3] = ACTIONS(4980), - [aux_sym_implicit_statement_token4] = ACTIONS(4980), - [aux_sym_save_statement_token1] = ACTIONS(4980), - [aux_sym_private_statement_token1] = ACTIONS(4980), - [aux_sym_public_statement_token1] = ACTIONS(4980), - [aux_sym_namelist_statement_token1] = ACTIONS(4980), - [aux_sym_common_statement_token1] = ACTIONS(4980), - [aux_sym_import_statement_token1] = ACTIONS(4980), - [aux_sym_derived_type_definition_token1] = ACTIONS(4980), - [aux_sym_abstract_specifier_token1] = ACTIONS(4980), - [aux_sym_procedure_attribute_token6] = ACTIONS(4980), - [aux_sym_variable_attributes_token1] = ACTIONS(4980), - [aux_sym_variable_attributes_token2] = ACTIONS(4980), - [aux_sym_variable_attributes_token3] = ACTIONS(4980), - [aux_sym_variable_attributes_token4] = ACTIONS(4980), - [aux_sym_variable_attributes_token5] = ACTIONS(4980), - [aux_sym__intrinsic_type_token1] = ACTIONS(4980), - [aux_sym__intrinsic_type_token2] = ACTIONS(4980), - [aux_sym__intrinsic_type_token3] = ACTIONS(4980), - [aux_sym__intrinsic_type_token4] = ACTIONS(4980), - [aux_sym__intrinsic_type_token6] = ACTIONS(4980), - [aux_sym__intrinsic_type_token7] = ACTIONS(4980), - [aux_sym__intrinsic_type_token8] = ACTIONS(4980), - [aux_sym__intrinsic_type_token9] = ACTIONS(4980), - [aux_sym__intrinsic_type_token10] = ACTIONS(4980), - [aux_sym_derived_type_token1] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4980), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4980), - [aux_sym_type_qualifier_token1] = ACTIONS(4980), - [aux_sym_type_qualifier_token2] = ACTIONS(4980), - [aux_sym_equivalence_statement_token1] = ACTIONS(4980), - [anon_sym_SEMI] = ACTIONS(4985), - [aux_sym_stop_statement_token1] = ACTIONS(4980), - [aux_sym_stop_statement_token2] = ACTIONS(4980), - [aux_sym_subroutine_call_token1] = ACTIONS(4980), - [aux_sym_keyword_statement_token1] = ACTIONS(4980), - [aux_sym_keyword_statement_token2] = ACTIONS(4980), - [aux_sym_keyword_statement_token3] = ACTIONS(4980), - [aux_sym_keyword_statement_token4] = ACTIONS(4980), - [aux_sym_keyword_statement_token6] = ACTIONS(4980), - [aux_sym_keyword_statement_token7] = ACTIONS(4980), - [aux_sym_include_statement_token1] = ACTIONS(4980), - [aux_sym_data_statement_token1] = ACTIONS(4980), - [aux_sym_do_loop_statement_token1] = ACTIONS(4980), - [aux_sym__inline_if_statement_token1] = ACTIONS(4980), - [aux_sym_end_if_statement_token1] = ACTIONS(4980), - [aux_sym_elseif_clause_token2] = ACTIONS(4980), - [aux_sym__inline_where_statement_token1] = ACTIONS(4980), - [aux_sym__forall_control_expression_token1] = ACTIONS(4980), - [aux_sym_select_case_statement_token1] = ACTIONS(4980), - [aux_sym_select_case_statement_token3] = ACTIONS(4980), - [aux_sym_select_type_statement_token1] = ACTIONS(4980), - [aux_sym_select_rank_statement_token2] = ACTIONS(4980), - [aux_sym_block_construct_token1] = ACTIONS(4980), - [aux_sym_associate_statement_token1] = ACTIONS(4980), - [aux_sym_format_statement_token1] = ACTIONS(4980), - [aux_sym_print_statement_token1] = ACTIONS(4980), - [aux_sym_open_statement_token1] = ACTIONS(4980), - [aux_sym_close_statement_token1] = ACTIONS(4980), - [aux_sym_inquire_statement_token1] = ACTIONS(4980), - [aux_sym_enum_statement_token1] = ACTIONS(4980), - [aux_sym_file_position_statement_token1] = ACTIONS(4980), - [aux_sym_file_position_statement_token2] = ACTIONS(4980), - [aux_sym_file_position_statement_token3] = ACTIONS(4980), - [aux_sym_file_position_statement_token4] = ACTIONS(4980), - [aux_sym_allocate_statement_token1] = ACTIONS(4980), - [aux_sym_entry_statement_token1] = ACTIONS(4980), - [aux_sym_logical_expression_token5] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_LPAREN_SLASH] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [aux_sym_boolean_literal_token1] = ACTIONS(4985), - [aux_sym_boolean_literal_token2] = ACTIONS(4985), - [aux_sym_null_literal_token1] = ACTIONS(4980), - [aux_sym_coarray_statement_token1] = ACTIONS(4980), - [aux_sym_coarray_statement_token2] = ACTIONS(4980), - [aux_sym_coarray_statement_token6] = ACTIONS(4980), - [aux_sym_coarray_statement_token8] = ACTIONS(4980), - [aux_sym_coarray_statement_token11] = ACTIONS(4980), - [aux_sym_coarray_statement_token12] = ACTIONS(4980), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4980), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4980), - [aux_sym_identifier_token1] = ACTIONS(4980), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4985), - [sym__float_literal] = ACTIONS(4985), - [sym__boz_literal] = ACTIONS(4985), - [sym__string_literal] = ACTIONS(4985), - [sym__string_literal_kind] = ACTIONS(4985), - }, - [1213] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [sym_preproc_comment] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_end_program_statement_token2] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), - }, - [1214] = { - [aux_sym_preproc_include_token1] = ACTIONS(5163), - [aux_sym_preproc_def_token1] = ACTIONS(5163), - [aux_sym_preproc_if_token1] = ACTIONS(5163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5163), - [sym_preproc_directive] = ACTIONS(5163), - [anon_sym_LPAREN2] = ACTIONS(5163), - [sym_preproc_comment] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5163), - [aux_sym_interface_statement_token1] = ACTIONS(5163), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5163), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5163), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5163), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5163), - [aux_sym_language_binding_token1] = ACTIONS(5163), - [aux_sym_procedure_attributes_token1] = ACTIONS(5163), - [aux_sym_procedure_attributes_token3] = ACTIONS(5163), - [aux_sym_contains_statement_token1] = ACTIONS(5163), - [aux_sym_use_statement_token1] = ACTIONS(5163), - [aux_sym_use_statement_token2] = ACTIONS(5163), - [aux_sym_implicit_statement_token1] = ACTIONS(5163), - [aux_sym_implicit_statement_token3] = ACTIONS(5163), - [aux_sym_implicit_statement_token4] = ACTIONS(5163), - [aux_sym_save_statement_token1] = ACTIONS(5163), - [aux_sym_private_statement_token1] = ACTIONS(5163), - [aux_sym_public_statement_token1] = ACTIONS(5163), - [aux_sym_namelist_statement_token1] = ACTIONS(5163), - [aux_sym_common_statement_token1] = ACTIONS(5163), - [aux_sym_import_statement_token1] = ACTIONS(5163), - [aux_sym_derived_type_definition_token1] = ACTIONS(5163), - [aux_sym_abstract_specifier_token1] = ACTIONS(5163), - [aux_sym_procedure_attribute_token6] = ACTIONS(5163), - [aux_sym_variable_attributes_token1] = ACTIONS(5163), - [aux_sym_variable_attributes_token2] = ACTIONS(5163), - [aux_sym_variable_attributes_token3] = ACTIONS(5163), - [aux_sym_variable_attributes_token4] = ACTIONS(5163), - [aux_sym_variable_attributes_token5] = ACTIONS(5163), - [aux_sym__intrinsic_type_token1] = ACTIONS(5163), - [aux_sym__intrinsic_type_token2] = ACTIONS(5163), - [aux_sym__intrinsic_type_token3] = ACTIONS(5163), - [aux_sym__intrinsic_type_token4] = ACTIONS(5163), - [aux_sym__intrinsic_type_token6] = ACTIONS(5163), - [aux_sym__intrinsic_type_token7] = ACTIONS(5163), - [aux_sym__intrinsic_type_token8] = ACTIONS(5163), - [aux_sym__intrinsic_type_token9] = ACTIONS(5163), - [aux_sym__intrinsic_type_token10] = ACTIONS(5163), - [aux_sym_derived_type_token1] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5163), - [aux_sym_type_qualifier_token1] = ACTIONS(5163), - [aux_sym_type_qualifier_token2] = ACTIONS(5163), - [aux_sym_equivalence_statement_token1] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5167), - [aux_sym_stop_statement_token1] = ACTIONS(5163), - [aux_sym_stop_statement_token2] = ACTIONS(5163), - [aux_sym_subroutine_call_token1] = ACTIONS(5163), - [aux_sym_keyword_statement_token1] = ACTIONS(5163), - [aux_sym_keyword_statement_token2] = ACTIONS(5163), - [aux_sym_keyword_statement_token3] = ACTIONS(5163), - [aux_sym_keyword_statement_token4] = ACTIONS(5163), - [aux_sym_keyword_statement_token6] = ACTIONS(5163), - [aux_sym_keyword_statement_token7] = ACTIONS(5163), - [aux_sym_include_statement_token1] = ACTIONS(5163), - [aux_sym_data_statement_token1] = ACTIONS(5163), - [aux_sym_do_loop_statement_token1] = ACTIONS(5163), - [aux_sym__inline_if_statement_token1] = ACTIONS(5163), - [aux_sym_end_if_statement_token1] = ACTIONS(5163), - [aux_sym_elseif_clause_token2] = ACTIONS(5163), - [aux_sym__inline_where_statement_token1] = ACTIONS(5163), - [aux_sym__forall_control_expression_token1] = ACTIONS(5163), - [aux_sym_select_case_statement_token1] = ACTIONS(5163), - [aux_sym_select_case_statement_token3] = ACTIONS(5163), - [aux_sym_select_type_statement_token1] = ACTIONS(5163), - [aux_sym_select_rank_statement_token2] = ACTIONS(5163), - [aux_sym_block_construct_token1] = ACTIONS(5163), - [aux_sym_associate_statement_token1] = ACTIONS(5163), - [aux_sym_format_statement_token1] = ACTIONS(5163), - [aux_sym_print_statement_token1] = ACTIONS(5163), - [aux_sym_open_statement_token1] = ACTIONS(5163), - [aux_sym_close_statement_token1] = ACTIONS(5163), - [aux_sym_inquire_statement_token1] = ACTIONS(5163), - [aux_sym_enum_statement_token1] = ACTIONS(5163), - [aux_sym_file_position_statement_token1] = ACTIONS(5163), - [aux_sym_file_position_statement_token2] = ACTIONS(5163), - [aux_sym_file_position_statement_token3] = ACTIONS(5163), - [aux_sym_file_position_statement_token4] = ACTIONS(5163), - [aux_sym_allocate_statement_token1] = ACTIONS(5163), - [aux_sym_entry_statement_token1] = ACTIONS(5163), - [aux_sym_logical_expression_token5] = ACTIONS(5167), - [anon_sym_DOT] = ACTIONS(5163), - [anon_sym_LPAREN_SLASH] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [aux_sym_boolean_literal_token1] = ACTIONS(5167), - [aux_sym_boolean_literal_token2] = ACTIONS(5167), - [aux_sym_null_literal_token1] = ACTIONS(5163), - [aux_sym_coarray_statement_token1] = ACTIONS(5163), - [aux_sym_coarray_statement_token2] = ACTIONS(5163), - [aux_sym_coarray_statement_token6] = ACTIONS(5163), - [aux_sym_coarray_statement_token8] = ACTIONS(5163), - [aux_sym_coarray_statement_token11] = ACTIONS(5163), - [aux_sym_coarray_statement_token12] = ACTIONS(5163), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5163), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5163), - [aux_sym_identifier_token1] = ACTIONS(5163), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5167), - [sym__float_literal] = ACTIONS(5167), - [sym__boz_literal] = ACTIONS(5167), - [sym__string_literal] = ACTIONS(5167), - [sym__string_literal_kind] = ACTIONS(5167), - }, [1215] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [sym_preproc_comment] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token2] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_end_program_statement_token2] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_subroutine_call_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_keyword_statement_token4] = ACTIONS(5018), + [aux_sym_keyword_statement_token6] = ACTIONS(5018), + [aux_sym_keyword_statement_token7] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym_do_loop_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym__inline_where_statement_token1] = ACTIONS(5018), + [aux_sym__forall_control_expression_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token3] = ACTIONS(5018), + [aux_sym_select_type_statement_token1] = ACTIONS(5018), + [aux_sym_select_rank_statement_token2] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_associate_statement_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_print_statement_token1] = ACTIONS(5018), + [aux_sym_open_statement_token1] = ACTIONS(5018), + [aux_sym_close_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token2] = ACTIONS(5018), + [aux_sym_file_position_statement_token3] = ACTIONS(5018), + [aux_sym_file_position_statement_token4] = ACTIONS(5018), + [aux_sym_allocate_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_logical_expression_token5] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_LPAREN_SLASH] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [aux_sym_boolean_literal_token1] = ACTIONS(5020), + [aux_sym_boolean_literal_token2] = ACTIONS(5020), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + [sym__float_literal] = ACTIONS(5020), + [sym__boz_literal] = ACTIONS(5020), + [sym__string_literal] = ACTIONS(5020), + [sym__string_literal_kind] = ACTIONS(5020), }, [1216] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [sym_preproc_comment] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_end_function_statement_token1] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token2] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_end_program_statement_token2] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_subroutine_call_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_keyword_statement_token4] = ACTIONS(5022), + [aux_sym_keyword_statement_token6] = ACTIONS(5022), + [aux_sym_keyword_statement_token7] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym_do_loop_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym__inline_where_statement_token1] = ACTIONS(5022), + [aux_sym__forall_control_expression_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token3] = ACTIONS(5022), + [aux_sym_select_type_statement_token1] = ACTIONS(5022), + [aux_sym_select_rank_statement_token2] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_associate_statement_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_print_statement_token1] = ACTIONS(5022), + [aux_sym_open_statement_token1] = ACTIONS(5022), + [aux_sym_close_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token2] = ACTIONS(5022), + [aux_sym_file_position_statement_token3] = ACTIONS(5022), + [aux_sym_file_position_statement_token4] = ACTIONS(5022), + [aux_sym_allocate_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_logical_expression_token5] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_LPAREN_SLASH] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [aux_sym_boolean_literal_token1] = ACTIONS(5024), + [aux_sym_boolean_literal_token2] = ACTIONS(5024), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + [sym__float_literal] = ACTIONS(5024), + [sym__boz_literal] = ACTIONS(5024), + [sym__string_literal] = ACTIONS(5024), + [sym__string_literal_kind] = ACTIONS(5024), }, [1217] = { - [aux_sym_preproc_include_token1] = ACTIONS(5163), - [aux_sym_preproc_def_token1] = ACTIONS(5163), - [aux_sym_preproc_if_token1] = ACTIONS(5163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5163), - [sym_preproc_directive] = ACTIONS(5163), - [anon_sym_LPAREN2] = ACTIONS(5163), - [sym_preproc_comment] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5163), - [aux_sym_end_program_statement_token2] = ACTIONS(5163), - [aux_sym_interface_statement_token1] = ACTIONS(5163), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5163), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5163), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5163), - [aux_sym_language_binding_token1] = ACTIONS(5163), - [aux_sym_procedure_attributes_token1] = ACTIONS(5163), - [aux_sym_procedure_attributes_token3] = ACTIONS(5163), - [aux_sym_contains_statement_token1] = ACTIONS(5163), - [aux_sym_use_statement_token1] = ACTIONS(5163), - [aux_sym_use_statement_token2] = ACTIONS(5163), - [aux_sym_implicit_statement_token1] = ACTIONS(5163), - [aux_sym_implicit_statement_token3] = ACTIONS(5163), - [aux_sym_implicit_statement_token4] = ACTIONS(5163), - [aux_sym_save_statement_token1] = ACTIONS(5163), - [aux_sym_private_statement_token1] = ACTIONS(5163), - [aux_sym_public_statement_token1] = ACTIONS(5163), - [aux_sym_namelist_statement_token1] = ACTIONS(5163), - [aux_sym_common_statement_token1] = ACTIONS(5163), - [aux_sym_import_statement_token1] = ACTIONS(5163), - [aux_sym_derived_type_definition_token1] = ACTIONS(5163), - [aux_sym_abstract_specifier_token1] = ACTIONS(5163), - [aux_sym_procedure_attribute_token6] = ACTIONS(5163), - [aux_sym_variable_attributes_token1] = ACTIONS(5163), - [aux_sym_variable_attributes_token2] = ACTIONS(5163), - [aux_sym_variable_attributes_token3] = ACTIONS(5163), - [aux_sym_variable_attributes_token4] = ACTIONS(5163), - [aux_sym_variable_attributes_token5] = ACTIONS(5163), - [aux_sym__intrinsic_type_token1] = ACTIONS(5163), - [aux_sym__intrinsic_type_token2] = ACTIONS(5163), - [aux_sym__intrinsic_type_token3] = ACTIONS(5163), - [aux_sym__intrinsic_type_token4] = ACTIONS(5163), - [aux_sym__intrinsic_type_token6] = ACTIONS(5163), - [aux_sym__intrinsic_type_token7] = ACTIONS(5163), - [aux_sym__intrinsic_type_token8] = ACTIONS(5163), - [aux_sym__intrinsic_type_token9] = ACTIONS(5163), - [aux_sym__intrinsic_type_token10] = ACTIONS(5163), - [aux_sym_derived_type_token1] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5163), - [aux_sym_type_qualifier_token1] = ACTIONS(5163), - [aux_sym_type_qualifier_token2] = ACTIONS(5163), - [aux_sym_equivalence_statement_token1] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5167), - [aux_sym_stop_statement_token1] = ACTIONS(5163), - [aux_sym_stop_statement_token2] = ACTIONS(5163), - [aux_sym_subroutine_call_token1] = ACTIONS(5163), - [aux_sym_keyword_statement_token1] = ACTIONS(5163), - [aux_sym_keyword_statement_token2] = ACTIONS(5163), - [aux_sym_keyword_statement_token3] = ACTIONS(5163), - [aux_sym_keyword_statement_token4] = ACTIONS(5163), - [aux_sym_keyword_statement_token6] = ACTIONS(5163), - [aux_sym_keyword_statement_token7] = ACTIONS(5163), - [aux_sym_include_statement_token1] = ACTIONS(5163), - [aux_sym_data_statement_token1] = ACTIONS(5163), - [aux_sym_do_loop_statement_token1] = ACTIONS(5163), - [aux_sym__inline_if_statement_token1] = ACTIONS(5163), - [aux_sym_end_if_statement_token1] = ACTIONS(5163), - [aux_sym_elseif_clause_token2] = ACTIONS(5163), - [aux_sym__inline_where_statement_token1] = ACTIONS(5163), - [aux_sym__forall_control_expression_token1] = ACTIONS(5163), - [aux_sym_select_case_statement_token1] = ACTIONS(5163), - [aux_sym_select_case_statement_token3] = ACTIONS(5163), - [aux_sym_select_type_statement_token1] = ACTIONS(5163), - [aux_sym_select_rank_statement_token2] = ACTIONS(5163), - [aux_sym_block_construct_token1] = ACTIONS(5163), - [aux_sym_associate_statement_token1] = ACTIONS(5163), - [aux_sym_format_statement_token1] = ACTIONS(5163), - [aux_sym_print_statement_token1] = ACTIONS(5163), - [aux_sym_open_statement_token1] = ACTIONS(5163), - [aux_sym_close_statement_token1] = ACTIONS(5163), - [aux_sym_inquire_statement_token1] = ACTIONS(5163), - [aux_sym_enum_statement_token1] = ACTIONS(5163), - [aux_sym_file_position_statement_token1] = ACTIONS(5163), - [aux_sym_file_position_statement_token2] = ACTIONS(5163), - [aux_sym_file_position_statement_token3] = ACTIONS(5163), - [aux_sym_file_position_statement_token4] = ACTIONS(5163), - [aux_sym_allocate_statement_token1] = ACTIONS(5163), - [aux_sym_entry_statement_token1] = ACTIONS(5163), - [aux_sym_logical_expression_token5] = ACTIONS(5167), - [anon_sym_DOT] = ACTIONS(5163), - [anon_sym_LPAREN_SLASH] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [aux_sym_boolean_literal_token1] = ACTIONS(5167), - [aux_sym_boolean_literal_token2] = ACTIONS(5167), - [aux_sym_null_literal_token1] = ACTIONS(5163), - [aux_sym_coarray_statement_token1] = ACTIONS(5163), - [aux_sym_coarray_statement_token2] = ACTIONS(5163), - [aux_sym_coarray_statement_token6] = ACTIONS(5163), - [aux_sym_coarray_statement_token8] = ACTIONS(5163), - [aux_sym_coarray_statement_token11] = ACTIONS(5163), - [aux_sym_coarray_statement_token12] = ACTIONS(5163), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5163), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5163), - [aux_sym_identifier_token1] = ACTIONS(5163), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5167), - [sym__float_literal] = ACTIONS(5167), - [sym__boz_literal] = ACTIONS(5167), - [sym__string_literal] = ACTIONS(5167), - [sym__string_literal_kind] = ACTIONS(5167), + [aux_sym_preproc_include_token1] = ACTIONS(5170), + [aux_sym_preproc_def_token1] = ACTIONS(5170), + [aux_sym_preproc_if_token1] = ACTIONS(5170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5170), + [sym_preproc_directive] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [sym_preproc_comment] = ACTIONS(5172), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5170), + [aux_sym_end_program_statement_token2] = ACTIONS(5170), + [aux_sym_interface_statement_token1] = ACTIONS(5170), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5170), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5170), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5170), + [aux_sym_language_binding_token1] = ACTIONS(5170), + [aux_sym_procedure_attributes_token1] = ACTIONS(5170), + [aux_sym_procedure_attributes_token3] = ACTIONS(5170), + [aux_sym_contains_statement_token1] = ACTIONS(5170), + [aux_sym_use_statement_token1] = ACTIONS(5170), + [aux_sym_use_statement_token2] = ACTIONS(5170), + [aux_sym_implicit_statement_token1] = ACTIONS(5170), + [aux_sym_implicit_statement_token3] = ACTIONS(5170), + [aux_sym_implicit_statement_token4] = ACTIONS(5170), + [aux_sym_save_statement_token1] = ACTIONS(5170), + [aux_sym_private_statement_token1] = ACTIONS(5170), + [aux_sym_public_statement_token1] = ACTIONS(5170), + [aux_sym_namelist_statement_token1] = ACTIONS(5170), + [aux_sym_common_statement_token1] = ACTIONS(5170), + [aux_sym_import_statement_token1] = ACTIONS(5170), + [aux_sym_derived_type_definition_token1] = ACTIONS(5170), + [aux_sym_abstract_specifier_token1] = ACTIONS(5170), + [aux_sym_procedure_attribute_token6] = ACTIONS(5170), + [aux_sym_variable_attributes_token1] = ACTIONS(5170), + [aux_sym_variable_attributes_token2] = ACTIONS(5170), + [aux_sym_variable_attributes_token3] = ACTIONS(5170), + [aux_sym_variable_attributes_token4] = ACTIONS(5170), + [aux_sym_variable_attributes_token5] = ACTIONS(5170), + [aux_sym__intrinsic_type_token1] = ACTIONS(5170), + [aux_sym__intrinsic_type_token2] = ACTIONS(5170), + [aux_sym__intrinsic_type_token3] = ACTIONS(5170), + [aux_sym__intrinsic_type_token4] = ACTIONS(5170), + [aux_sym__intrinsic_type_token6] = ACTIONS(5170), + [aux_sym__intrinsic_type_token7] = ACTIONS(5170), + [aux_sym__intrinsic_type_token8] = ACTIONS(5170), + [aux_sym__intrinsic_type_token9] = ACTIONS(5170), + [aux_sym__intrinsic_type_token10] = ACTIONS(5170), + [aux_sym_derived_type_token1] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5170), + [aux_sym_type_qualifier_token1] = ACTIONS(5170), + [aux_sym_type_qualifier_token2] = ACTIONS(5170), + [aux_sym_equivalence_statement_token1] = ACTIONS(5170), + [anon_sym_SEMI] = ACTIONS(5174), + [aux_sym_stop_statement_token1] = ACTIONS(5170), + [aux_sym_stop_statement_token2] = ACTIONS(5170), + [aux_sym_subroutine_call_token1] = ACTIONS(5170), + [aux_sym_keyword_statement_token1] = ACTIONS(5170), + [aux_sym_keyword_statement_token2] = ACTIONS(5170), + [aux_sym_keyword_statement_token3] = ACTIONS(5170), + [aux_sym_keyword_statement_token4] = ACTIONS(5170), + [aux_sym_keyword_statement_token6] = ACTIONS(5170), + [aux_sym_keyword_statement_token7] = ACTIONS(5170), + [aux_sym_include_statement_token1] = ACTIONS(5170), + [aux_sym_data_statement_token1] = ACTIONS(5170), + [aux_sym_do_loop_statement_token1] = ACTIONS(5170), + [aux_sym__inline_if_statement_token1] = ACTIONS(5170), + [aux_sym_end_if_statement_token1] = ACTIONS(5170), + [aux_sym_elseif_clause_token2] = ACTIONS(5170), + [aux_sym__inline_where_statement_token1] = ACTIONS(5170), + [aux_sym__forall_control_expression_token1] = ACTIONS(5170), + [aux_sym_select_case_statement_token1] = ACTIONS(5170), + [aux_sym_select_case_statement_token3] = ACTIONS(5170), + [aux_sym_select_type_statement_token1] = ACTIONS(5170), + [aux_sym_select_rank_statement_token2] = ACTIONS(5170), + [aux_sym_block_construct_token1] = ACTIONS(5170), + [aux_sym_associate_statement_token1] = ACTIONS(5170), + [aux_sym_format_statement_token1] = ACTIONS(5170), + [aux_sym_print_statement_token1] = ACTIONS(5170), + [aux_sym_open_statement_token1] = ACTIONS(5170), + [aux_sym_close_statement_token1] = ACTIONS(5170), + [aux_sym_inquire_statement_token1] = ACTIONS(5170), + [aux_sym_enum_statement_token1] = ACTIONS(5170), + [aux_sym_file_position_statement_token1] = ACTIONS(5170), + [aux_sym_file_position_statement_token2] = ACTIONS(5170), + [aux_sym_file_position_statement_token3] = ACTIONS(5170), + [aux_sym_file_position_statement_token4] = ACTIONS(5170), + [aux_sym_allocate_statement_token1] = ACTIONS(5170), + [aux_sym_entry_statement_token1] = ACTIONS(5170), + [aux_sym_logical_expression_token5] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_LPAREN_SLASH] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [aux_sym_boolean_literal_token1] = ACTIONS(5174), + [aux_sym_boolean_literal_token2] = ACTIONS(5174), + [aux_sym_null_literal_token1] = ACTIONS(5170), + [aux_sym_coarray_statement_token1] = ACTIONS(5170), + [aux_sym_coarray_statement_token2] = ACTIONS(5170), + [aux_sym_coarray_statement_token6] = ACTIONS(5170), + [aux_sym_coarray_statement_token8] = ACTIONS(5170), + [aux_sym_coarray_statement_token11] = ACTIONS(5170), + [aux_sym_coarray_statement_token12] = ACTIONS(5170), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5170), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5170), + [aux_sym_identifier_token1] = ACTIONS(5170), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5174), + [sym__float_literal] = ACTIONS(5174), + [sym__boz_literal] = ACTIONS(5174), + [sym__string_literal] = ACTIONS(5174), + [sym__string_literal_kind] = ACTIONS(5174), }, [1218] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [sym_preproc_comment] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_end_function_statement_token1] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token2] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_end_program_statement_token2] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_subroutine_call_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_keyword_statement_token4] = ACTIONS(5026), + [aux_sym_keyword_statement_token6] = ACTIONS(5026), + [aux_sym_keyword_statement_token7] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym_do_loop_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym__inline_where_statement_token1] = ACTIONS(5026), + [aux_sym__forall_control_expression_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token3] = ACTIONS(5026), + [aux_sym_select_type_statement_token1] = ACTIONS(5026), + [aux_sym_select_rank_statement_token2] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_associate_statement_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_print_statement_token1] = ACTIONS(5026), + [aux_sym_open_statement_token1] = ACTIONS(5026), + [aux_sym_close_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token2] = ACTIONS(5026), + [aux_sym_file_position_statement_token3] = ACTIONS(5026), + [aux_sym_file_position_statement_token4] = ACTIONS(5026), + [aux_sym_allocate_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_logical_expression_token5] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_LPAREN_SLASH] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [aux_sym_boolean_literal_token1] = ACTIONS(5028), + [aux_sym_boolean_literal_token2] = ACTIONS(5028), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + [sym__float_literal] = ACTIONS(5028), + [sym__boz_literal] = ACTIONS(5028), + [sym__string_literal] = ACTIONS(5028), + [sym__string_literal_kind] = ACTIONS(5028), }, [1219] = { - [aux_sym_preproc_include_token1] = ACTIONS(5177), - [aux_sym_preproc_def_token1] = ACTIONS(5177), - [aux_sym_preproc_if_token1] = ACTIONS(5177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5177), - [sym_preproc_directive] = ACTIONS(5177), - [anon_sym_LPAREN2] = ACTIONS(5177), - [sym_preproc_comment] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5177), - [aux_sym_interface_statement_token1] = ACTIONS(5177), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5177), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5177), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5177), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5177), - [aux_sym_language_binding_token1] = ACTIONS(5177), - [aux_sym_procedure_attributes_token1] = ACTIONS(5177), - [aux_sym_procedure_attributes_token3] = ACTIONS(5177), - [aux_sym_contains_statement_token1] = ACTIONS(5177), - [aux_sym_use_statement_token1] = ACTIONS(5177), - [aux_sym_use_statement_token2] = ACTIONS(5177), - [aux_sym_implicit_statement_token1] = ACTIONS(5177), - [aux_sym_implicit_statement_token3] = ACTIONS(5177), - [aux_sym_implicit_statement_token4] = ACTIONS(5177), - [aux_sym_save_statement_token1] = ACTIONS(5177), - [aux_sym_private_statement_token1] = ACTIONS(5177), - [aux_sym_public_statement_token1] = ACTIONS(5177), - [aux_sym_namelist_statement_token1] = ACTIONS(5177), - [aux_sym_common_statement_token1] = ACTIONS(5177), - [aux_sym_import_statement_token1] = ACTIONS(5177), - [aux_sym_derived_type_definition_token1] = ACTIONS(5177), - [aux_sym_abstract_specifier_token1] = ACTIONS(5177), - [aux_sym_procedure_attribute_token6] = ACTIONS(5177), - [aux_sym_variable_attributes_token1] = ACTIONS(5177), - [aux_sym_variable_attributes_token2] = ACTIONS(5177), - [aux_sym_variable_attributes_token3] = ACTIONS(5177), - [aux_sym_variable_attributes_token4] = ACTIONS(5177), - [aux_sym_variable_attributes_token5] = ACTIONS(5177), - [aux_sym__intrinsic_type_token1] = ACTIONS(5177), - [aux_sym__intrinsic_type_token2] = ACTIONS(5177), - [aux_sym__intrinsic_type_token3] = ACTIONS(5177), - [aux_sym__intrinsic_type_token4] = ACTIONS(5177), - [aux_sym__intrinsic_type_token6] = ACTIONS(5177), - [aux_sym__intrinsic_type_token7] = ACTIONS(5177), - [aux_sym__intrinsic_type_token8] = ACTIONS(5177), - [aux_sym__intrinsic_type_token9] = ACTIONS(5177), - [aux_sym__intrinsic_type_token10] = ACTIONS(5177), - [aux_sym_derived_type_token1] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5177), - [aux_sym_type_qualifier_token1] = ACTIONS(5177), - [aux_sym_type_qualifier_token2] = ACTIONS(5177), - [aux_sym_equivalence_statement_token1] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5181), - [aux_sym_stop_statement_token1] = ACTIONS(5177), - [aux_sym_stop_statement_token2] = ACTIONS(5177), - [aux_sym_subroutine_call_token1] = ACTIONS(5177), - [aux_sym_keyword_statement_token1] = ACTIONS(5177), - [aux_sym_keyword_statement_token2] = ACTIONS(5177), - [aux_sym_keyword_statement_token3] = ACTIONS(5177), - [aux_sym_keyword_statement_token4] = ACTIONS(5177), - [aux_sym_keyword_statement_token6] = ACTIONS(5177), - [aux_sym_keyword_statement_token7] = ACTIONS(5177), - [aux_sym_include_statement_token1] = ACTIONS(5177), - [aux_sym_data_statement_token1] = ACTIONS(5177), - [aux_sym_do_loop_statement_token1] = ACTIONS(5177), - [aux_sym__inline_if_statement_token1] = ACTIONS(5177), - [aux_sym_end_if_statement_token1] = ACTIONS(5177), - [aux_sym_elseif_clause_token2] = ACTIONS(5177), - [aux_sym__inline_where_statement_token1] = ACTIONS(5177), - [aux_sym__forall_control_expression_token1] = ACTIONS(5177), - [aux_sym_select_case_statement_token1] = ACTIONS(5177), - [aux_sym_select_case_statement_token3] = ACTIONS(5177), - [aux_sym_select_type_statement_token1] = ACTIONS(5177), - [aux_sym_select_rank_statement_token2] = ACTIONS(5177), - [aux_sym_block_construct_token1] = ACTIONS(5177), - [aux_sym_associate_statement_token1] = ACTIONS(5177), - [aux_sym_format_statement_token1] = ACTIONS(5177), - [aux_sym_print_statement_token1] = ACTIONS(5177), - [aux_sym_open_statement_token1] = ACTIONS(5177), - [aux_sym_close_statement_token1] = ACTIONS(5177), - [aux_sym_inquire_statement_token1] = ACTIONS(5177), - [aux_sym_enum_statement_token1] = ACTIONS(5177), - [aux_sym_file_position_statement_token1] = ACTIONS(5177), - [aux_sym_file_position_statement_token2] = ACTIONS(5177), - [aux_sym_file_position_statement_token3] = ACTIONS(5177), - [aux_sym_file_position_statement_token4] = ACTIONS(5177), - [aux_sym_allocate_statement_token1] = ACTIONS(5177), - [aux_sym_entry_statement_token1] = ACTIONS(5177), - [aux_sym_logical_expression_token5] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_LPAREN_SLASH] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(5181), - [aux_sym_boolean_literal_token1] = ACTIONS(5181), - [aux_sym_boolean_literal_token2] = ACTIONS(5181), - [aux_sym_null_literal_token1] = ACTIONS(5177), - [aux_sym_coarray_statement_token1] = ACTIONS(5177), - [aux_sym_coarray_statement_token2] = ACTIONS(5177), - [aux_sym_coarray_statement_token6] = ACTIONS(5177), - [aux_sym_coarray_statement_token8] = ACTIONS(5177), - [aux_sym_coarray_statement_token11] = ACTIONS(5177), - [aux_sym_coarray_statement_token12] = ACTIONS(5177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5177), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5177), - [aux_sym_identifier_token1] = ACTIONS(5177), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5181), - [sym__float_literal] = ACTIONS(5181), - [sym__boz_literal] = ACTIONS(5181), - [sym__string_literal] = ACTIONS(5181), - [sym__string_literal_kind] = ACTIONS(5181), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [sym_preproc_comment] = ACTIONS(5176), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_end_program_statement_token2] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1220] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [1221] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [sym_preproc_comment] = ACTIONS(5185), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), + }, + [1221] = { + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [sym_preproc_comment] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_end_program_statement_token2] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1222] = { - [aux_sym_preproc_include_token1] = ACTIONS(5153), - [aux_sym_preproc_def_token1] = ACTIONS(5153), - [aux_sym_preproc_if_token1] = ACTIONS(5153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5153), - [sym_preproc_directive] = ACTIONS(5153), - [anon_sym_LPAREN2] = ACTIONS(5153), - [sym_preproc_comment] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5153), - [aux_sym_end_program_statement_token2] = ACTIONS(5153), - [aux_sym_interface_statement_token1] = ACTIONS(5153), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5153), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5153), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5153), - [aux_sym_language_binding_token1] = ACTIONS(5153), - [aux_sym_procedure_attributes_token1] = ACTIONS(5153), - [aux_sym_procedure_attributes_token3] = ACTIONS(5153), - [aux_sym_contains_statement_token1] = ACTIONS(5153), - [aux_sym_use_statement_token1] = ACTIONS(5153), - [aux_sym_use_statement_token2] = ACTIONS(5153), - [aux_sym_implicit_statement_token1] = ACTIONS(5153), - [aux_sym_implicit_statement_token3] = ACTIONS(5153), - [aux_sym_implicit_statement_token4] = ACTIONS(5153), - [aux_sym_save_statement_token1] = ACTIONS(5153), - [aux_sym_private_statement_token1] = ACTIONS(5153), - [aux_sym_public_statement_token1] = ACTIONS(5153), - [aux_sym_namelist_statement_token1] = ACTIONS(5153), - [aux_sym_common_statement_token1] = ACTIONS(5153), - [aux_sym_import_statement_token1] = ACTIONS(5153), - [aux_sym_derived_type_definition_token1] = ACTIONS(5153), - [aux_sym_abstract_specifier_token1] = ACTIONS(5153), - [aux_sym_procedure_attribute_token6] = ACTIONS(5153), - [aux_sym_variable_attributes_token1] = ACTIONS(5153), - [aux_sym_variable_attributes_token2] = ACTIONS(5153), - [aux_sym_variable_attributes_token3] = ACTIONS(5153), - [aux_sym_variable_attributes_token4] = ACTIONS(5153), - [aux_sym_variable_attributes_token5] = ACTIONS(5153), - [aux_sym__intrinsic_type_token1] = ACTIONS(5153), - [aux_sym__intrinsic_type_token2] = ACTIONS(5153), - [aux_sym__intrinsic_type_token3] = ACTIONS(5153), - [aux_sym__intrinsic_type_token4] = ACTIONS(5153), - [aux_sym__intrinsic_type_token6] = ACTIONS(5153), - [aux_sym__intrinsic_type_token7] = ACTIONS(5153), - [aux_sym__intrinsic_type_token8] = ACTIONS(5153), - [aux_sym__intrinsic_type_token9] = ACTIONS(5153), - [aux_sym__intrinsic_type_token10] = ACTIONS(5153), - [aux_sym_derived_type_token1] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5153), - [aux_sym_type_qualifier_token1] = ACTIONS(5153), - [aux_sym_type_qualifier_token2] = ACTIONS(5153), - [aux_sym_equivalence_statement_token1] = ACTIONS(5153), - [anon_sym_SEMI] = ACTIONS(5157), - [aux_sym_stop_statement_token1] = ACTIONS(5153), - [aux_sym_stop_statement_token2] = ACTIONS(5153), - [aux_sym_subroutine_call_token1] = ACTIONS(5153), - [aux_sym_keyword_statement_token1] = ACTIONS(5153), - [aux_sym_keyword_statement_token2] = ACTIONS(5153), - [aux_sym_keyword_statement_token3] = ACTIONS(5153), - [aux_sym_keyword_statement_token4] = ACTIONS(5153), - [aux_sym_keyword_statement_token6] = ACTIONS(5153), - [aux_sym_keyword_statement_token7] = ACTIONS(5153), - [aux_sym_include_statement_token1] = ACTIONS(5153), - [aux_sym_data_statement_token1] = ACTIONS(5153), - [aux_sym_do_loop_statement_token1] = ACTIONS(5153), - [aux_sym__inline_if_statement_token1] = ACTIONS(5153), - [aux_sym_end_if_statement_token1] = ACTIONS(5153), - [aux_sym_elseif_clause_token2] = ACTIONS(5153), - [aux_sym__inline_where_statement_token1] = ACTIONS(5153), - [aux_sym__forall_control_expression_token1] = ACTIONS(5153), - [aux_sym_select_case_statement_token1] = ACTIONS(5153), - [aux_sym_select_case_statement_token3] = ACTIONS(5153), - [aux_sym_select_type_statement_token1] = ACTIONS(5153), - [aux_sym_select_rank_statement_token2] = ACTIONS(5153), - [aux_sym_block_construct_token1] = ACTIONS(5153), - [aux_sym_associate_statement_token1] = ACTIONS(5153), - [aux_sym_format_statement_token1] = ACTIONS(5153), - [aux_sym_print_statement_token1] = ACTIONS(5153), - [aux_sym_open_statement_token1] = ACTIONS(5153), - [aux_sym_close_statement_token1] = ACTIONS(5153), - [aux_sym_inquire_statement_token1] = ACTIONS(5153), - [aux_sym_enum_statement_token1] = ACTIONS(5153), - [aux_sym_file_position_statement_token1] = ACTIONS(5153), - [aux_sym_file_position_statement_token2] = ACTIONS(5153), - [aux_sym_file_position_statement_token3] = ACTIONS(5153), - [aux_sym_file_position_statement_token4] = ACTIONS(5153), - [aux_sym_allocate_statement_token1] = ACTIONS(5153), - [aux_sym_entry_statement_token1] = ACTIONS(5153), - [aux_sym_logical_expression_token5] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_LPAREN_SLASH] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [aux_sym_boolean_literal_token1] = ACTIONS(5157), - [aux_sym_boolean_literal_token2] = ACTIONS(5157), - [aux_sym_null_literal_token1] = ACTIONS(5153), - [aux_sym_coarray_statement_token1] = ACTIONS(5153), - [aux_sym_coarray_statement_token2] = ACTIONS(5153), - [aux_sym_coarray_statement_token6] = ACTIONS(5153), - [aux_sym_coarray_statement_token8] = ACTIONS(5153), - [aux_sym_coarray_statement_token11] = ACTIONS(5153), - [aux_sym_coarray_statement_token12] = ACTIONS(5153), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5153), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5153), - [aux_sym_identifier_token1] = ACTIONS(5153), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5157), - [sym__float_literal] = ACTIONS(5157), - [sym__boz_literal] = ACTIONS(5157), - [sym__string_literal] = ACTIONS(5157), - [sym__string_literal_kind] = ACTIONS(5157), + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token2] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_LPAREN2] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_end_program_statement_token2] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_subroutine_call_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_keyword_statement_token4] = ACTIONS(5051), + [aux_sym_keyword_statement_token6] = ACTIONS(5051), + [aux_sym_keyword_statement_token7] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym_do_loop_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym__inline_where_statement_token1] = ACTIONS(5051), + [aux_sym__forall_control_expression_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token3] = ACTIONS(5051), + [aux_sym_select_type_statement_token1] = ACTIONS(5051), + [aux_sym_select_rank_statement_token2] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_associate_statement_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_print_statement_token1] = ACTIONS(5051), + [aux_sym_open_statement_token1] = ACTIONS(5051), + [aux_sym_close_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token2] = ACTIONS(5051), + [aux_sym_file_position_statement_token3] = ACTIONS(5051), + [aux_sym_file_position_statement_token4] = ACTIONS(5051), + [aux_sym_allocate_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_logical_expression_token5] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_LPAREN_SLASH] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [aux_sym_boolean_literal_token1] = ACTIONS(5053), + [aux_sym_boolean_literal_token2] = ACTIONS(5053), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + [sym__float_literal] = ACTIONS(5053), + [sym__boz_literal] = ACTIONS(5053), + [sym__string_literal] = ACTIONS(5053), + [sym__string_literal_kind] = ACTIONS(5053), }, [1223] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [sym_preproc_comment] = ACTIONS(5189), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(4972), + [aux_sym_preproc_def_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token2] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), + [sym_preproc_directive] = ACTIONS(4972), + [anon_sym_LPAREN2] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4972), + [aux_sym_end_program_statement_token2] = ACTIONS(4972), + [aux_sym_interface_statement_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), + [aux_sym_language_binding_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token3] = ACTIONS(4972), + [aux_sym_contains_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token2] = ACTIONS(4972), + [aux_sym_implicit_statement_token1] = ACTIONS(4972), + [aux_sym_implicit_statement_token3] = ACTIONS(4972), + [aux_sym_implicit_statement_token4] = ACTIONS(4972), + [aux_sym_save_statement_token1] = ACTIONS(4972), + [aux_sym_private_statement_token1] = ACTIONS(4972), + [aux_sym_public_statement_token1] = ACTIONS(4972), + [aux_sym_namelist_statement_token1] = ACTIONS(4972), + [aux_sym_common_statement_token1] = ACTIONS(4972), + [aux_sym_import_statement_token1] = ACTIONS(4972), + [aux_sym_derived_type_definition_token1] = ACTIONS(4972), + [aux_sym_abstract_specifier_token1] = ACTIONS(4972), + [aux_sym_procedure_attribute_token6] = ACTIONS(4972), + [aux_sym_variable_attributes_token1] = ACTIONS(4972), + [aux_sym_variable_attributes_token2] = ACTIONS(4972), + [aux_sym_variable_attributes_token3] = ACTIONS(4972), + [aux_sym_variable_attributes_token4] = ACTIONS(4972), + [aux_sym_variable_attributes_token5] = ACTIONS(4972), + [aux_sym__intrinsic_type_token1] = ACTIONS(4972), + [aux_sym__intrinsic_type_token2] = ACTIONS(4972), + [aux_sym__intrinsic_type_token3] = ACTIONS(4972), + [aux_sym__intrinsic_type_token4] = ACTIONS(4972), + [aux_sym__intrinsic_type_token6] = ACTIONS(4972), + [aux_sym__intrinsic_type_token7] = ACTIONS(4972), + [aux_sym__intrinsic_type_token8] = ACTIONS(4972), + [aux_sym__intrinsic_type_token9] = ACTIONS(4972), + [aux_sym__intrinsic_type_token10] = ACTIONS(4972), + [aux_sym_derived_type_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), + [aux_sym_type_qualifier_token1] = ACTIONS(4972), + [aux_sym_type_qualifier_token2] = ACTIONS(4972), + [aux_sym_equivalence_statement_token1] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [aux_sym_stop_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token2] = ACTIONS(4972), + [aux_sym_subroutine_call_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token3] = ACTIONS(4972), + [aux_sym_keyword_statement_token4] = ACTIONS(4972), + [aux_sym_keyword_statement_token6] = ACTIONS(4972), + [aux_sym_keyword_statement_token7] = ACTIONS(4972), + [aux_sym_include_statement_token1] = ACTIONS(4972), + [aux_sym_data_statement_token1] = ACTIONS(4972), + [aux_sym_do_loop_statement_token1] = ACTIONS(4972), + [aux_sym__inline_if_statement_token1] = ACTIONS(4972), + [aux_sym_end_if_statement_token1] = ACTIONS(4972), + [aux_sym_elseif_clause_token2] = ACTIONS(4972), + [aux_sym__inline_where_statement_token1] = ACTIONS(4972), + [aux_sym__forall_control_expression_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token3] = ACTIONS(4972), + [aux_sym_select_type_statement_token1] = ACTIONS(4972), + [aux_sym_select_rank_statement_token2] = ACTIONS(4972), + [aux_sym_block_construct_token1] = ACTIONS(4972), + [aux_sym_associate_statement_token1] = ACTIONS(4972), + [aux_sym_format_statement_token1] = ACTIONS(4972), + [aux_sym_print_statement_token1] = ACTIONS(4972), + [aux_sym_open_statement_token1] = ACTIONS(4972), + [aux_sym_close_statement_token1] = ACTIONS(4972), + [aux_sym_inquire_statement_token1] = ACTIONS(4972), + [aux_sym_enum_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token2] = ACTIONS(4972), + [aux_sym_file_position_statement_token3] = ACTIONS(4972), + [aux_sym_file_position_statement_token4] = ACTIONS(4972), + [aux_sym_allocate_statement_token1] = ACTIONS(4972), + [aux_sym_entry_statement_token1] = ACTIONS(4972), + [aux_sym_logical_expression_token5] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_LPAREN_SLASH] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [aux_sym_boolean_literal_token1] = ACTIONS(4974), + [aux_sym_boolean_literal_token2] = ACTIONS(4974), + [aux_sym_null_literal_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token2] = ACTIONS(4972), + [aux_sym_coarray_statement_token6] = ACTIONS(4972), + [aux_sym_coarray_statement_token8] = ACTIONS(4972), + [aux_sym_coarray_statement_token11] = ACTIONS(4972), + [aux_sym_coarray_statement_token12] = ACTIONS(4972), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), + [aux_sym_identifier_token1] = ACTIONS(4972), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4974), + [sym__float_literal] = ACTIONS(4974), + [sym__boz_literal] = ACTIONS(4974), + [sym__string_literal] = ACTIONS(4974), + [sym__string_literal_kind] = ACTIONS(4974), }, [1224] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [sym_preproc_comment] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(5180), + [aux_sym_preproc_def_token1] = ACTIONS(5180), + [aux_sym_preproc_if_token1] = ACTIONS(5180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5180), + [sym_preproc_directive] = ACTIONS(5180), + [anon_sym_LPAREN2] = ACTIONS(5180), + [sym_preproc_comment] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5180), + [aux_sym_end_program_statement_token2] = ACTIONS(5180), + [aux_sym_interface_statement_token1] = ACTIONS(5180), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5180), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5180), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5180), + [aux_sym_language_binding_token1] = ACTIONS(5180), + [aux_sym_procedure_attributes_token1] = ACTIONS(5180), + [aux_sym_procedure_attributes_token3] = ACTIONS(5180), + [aux_sym_contains_statement_token1] = ACTIONS(5180), + [aux_sym_use_statement_token1] = ACTIONS(5180), + [aux_sym_use_statement_token2] = ACTIONS(5180), + [aux_sym_implicit_statement_token1] = ACTIONS(5180), + [aux_sym_implicit_statement_token3] = ACTIONS(5180), + [aux_sym_implicit_statement_token4] = ACTIONS(5180), + [aux_sym_save_statement_token1] = ACTIONS(5180), + [aux_sym_private_statement_token1] = ACTIONS(5180), + [aux_sym_public_statement_token1] = ACTIONS(5180), + [aux_sym_namelist_statement_token1] = ACTIONS(5180), + [aux_sym_common_statement_token1] = ACTIONS(5180), + [aux_sym_import_statement_token1] = ACTIONS(5180), + [aux_sym_derived_type_definition_token1] = ACTIONS(5180), + [aux_sym_abstract_specifier_token1] = ACTIONS(5180), + [aux_sym_procedure_attribute_token6] = ACTIONS(5180), + [aux_sym_variable_attributes_token1] = ACTIONS(5180), + [aux_sym_variable_attributes_token2] = ACTIONS(5180), + [aux_sym_variable_attributes_token3] = ACTIONS(5180), + [aux_sym_variable_attributes_token4] = ACTIONS(5180), + [aux_sym_variable_attributes_token5] = ACTIONS(5180), + [aux_sym__intrinsic_type_token1] = ACTIONS(5180), + [aux_sym__intrinsic_type_token2] = ACTIONS(5180), + [aux_sym__intrinsic_type_token3] = ACTIONS(5180), + [aux_sym__intrinsic_type_token4] = ACTIONS(5180), + [aux_sym__intrinsic_type_token6] = ACTIONS(5180), + [aux_sym__intrinsic_type_token7] = ACTIONS(5180), + [aux_sym__intrinsic_type_token8] = ACTIONS(5180), + [aux_sym__intrinsic_type_token9] = ACTIONS(5180), + [aux_sym__intrinsic_type_token10] = ACTIONS(5180), + [aux_sym_derived_type_token1] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5180), + [aux_sym_type_qualifier_token1] = ACTIONS(5180), + [aux_sym_type_qualifier_token2] = ACTIONS(5180), + [aux_sym_equivalence_statement_token1] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5184), + [aux_sym_stop_statement_token1] = ACTIONS(5180), + [aux_sym_stop_statement_token2] = ACTIONS(5180), + [aux_sym_subroutine_call_token1] = ACTIONS(5180), + [aux_sym_keyword_statement_token1] = ACTIONS(5180), + [aux_sym_keyword_statement_token2] = ACTIONS(5180), + [aux_sym_keyword_statement_token3] = ACTIONS(5180), + [aux_sym_keyword_statement_token4] = ACTIONS(5180), + [aux_sym_keyword_statement_token6] = ACTIONS(5180), + [aux_sym_keyword_statement_token7] = ACTIONS(5180), + [aux_sym_include_statement_token1] = ACTIONS(5180), + [aux_sym_data_statement_token1] = ACTIONS(5180), + [aux_sym_do_loop_statement_token1] = ACTIONS(5180), + [aux_sym__inline_if_statement_token1] = ACTIONS(5180), + [aux_sym_end_if_statement_token1] = ACTIONS(5180), + [aux_sym_elseif_clause_token2] = ACTIONS(5180), + [aux_sym__inline_where_statement_token1] = ACTIONS(5180), + [aux_sym__forall_control_expression_token1] = ACTIONS(5180), + [aux_sym_select_case_statement_token1] = ACTIONS(5180), + [aux_sym_select_case_statement_token3] = ACTIONS(5180), + [aux_sym_select_type_statement_token1] = ACTIONS(5180), + [aux_sym_select_rank_statement_token2] = ACTIONS(5180), + [aux_sym_block_construct_token1] = ACTIONS(5180), + [aux_sym_associate_statement_token1] = ACTIONS(5180), + [aux_sym_format_statement_token1] = ACTIONS(5180), + [aux_sym_print_statement_token1] = ACTIONS(5180), + [aux_sym_open_statement_token1] = ACTIONS(5180), + [aux_sym_close_statement_token1] = ACTIONS(5180), + [aux_sym_inquire_statement_token1] = ACTIONS(5180), + [aux_sym_enum_statement_token1] = ACTIONS(5180), + [aux_sym_file_position_statement_token1] = ACTIONS(5180), + [aux_sym_file_position_statement_token2] = ACTIONS(5180), + [aux_sym_file_position_statement_token3] = ACTIONS(5180), + [aux_sym_file_position_statement_token4] = ACTIONS(5180), + [aux_sym_allocate_statement_token1] = ACTIONS(5180), + [aux_sym_entry_statement_token1] = ACTIONS(5180), + [aux_sym_logical_expression_token5] = ACTIONS(5184), + [anon_sym_DOT] = ACTIONS(5180), + [anon_sym_LPAREN_SLASH] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [aux_sym_boolean_literal_token1] = ACTIONS(5184), + [aux_sym_boolean_literal_token2] = ACTIONS(5184), + [aux_sym_null_literal_token1] = ACTIONS(5180), + [aux_sym_coarray_statement_token1] = ACTIONS(5180), + [aux_sym_coarray_statement_token2] = ACTIONS(5180), + [aux_sym_coarray_statement_token6] = ACTIONS(5180), + [aux_sym_coarray_statement_token8] = ACTIONS(5180), + [aux_sym_coarray_statement_token11] = ACTIONS(5180), + [aux_sym_coarray_statement_token12] = ACTIONS(5180), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5180), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5180), + [aux_sym_identifier_token1] = ACTIONS(5180), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5184), + [sym__float_literal] = ACTIONS(5184), + [sym__boz_literal] = ACTIONS(5184), + [sym__string_literal] = ACTIONS(5184), + [sym__string_literal_kind] = ACTIONS(5184), }, [1225] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [sym_preproc_comment] = ACTIONS(5193), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), + [aux_sym_preproc_include_token1] = ACTIONS(4976), + [aux_sym_preproc_def_token1] = ACTIONS(4976), + [aux_sym_preproc_if_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), + [sym_preproc_directive] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [sym_preproc_comment] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_end_function_statement_token1] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(4976), + [aux_sym_end_program_statement_token2] = ACTIONS(4976), + [aux_sym_interface_statement_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_language_binding_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token3] = ACTIONS(4976), + [aux_sym_contains_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token2] = ACTIONS(4976), + [aux_sym_implicit_statement_token1] = ACTIONS(4976), + [aux_sym_implicit_statement_token3] = ACTIONS(4976), + [aux_sym_implicit_statement_token4] = ACTIONS(4976), + [aux_sym_save_statement_token1] = ACTIONS(4976), + [aux_sym_private_statement_token1] = ACTIONS(4976), + [aux_sym_public_statement_token1] = ACTIONS(4976), + [aux_sym_namelist_statement_token1] = ACTIONS(4976), + [aux_sym_common_statement_token1] = ACTIONS(4976), + [aux_sym_import_statement_token1] = ACTIONS(4976), + [aux_sym_derived_type_definition_token1] = ACTIONS(4976), + [aux_sym_abstract_specifier_token1] = ACTIONS(4976), + [aux_sym_procedure_attribute_token6] = ACTIONS(4976), + [aux_sym_variable_attributes_token1] = ACTIONS(4976), + [aux_sym_variable_attributes_token2] = ACTIONS(4976), + [aux_sym_variable_attributes_token3] = ACTIONS(4976), + [aux_sym_variable_attributes_token4] = ACTIONS(4976), + [aux_sym_variable_attributes_token5] = ACTIONS(4976), + [aux_sym__intrinsic_type_token1] = ACTIONS(4976), + [aux_sym__intrinsic_type_token2] = ACTIONS(4976), + [aux_sym__intrinsic_type_token3] = ACTIONS(4976), + [aux_sym__intrinsic_type_token4] = ACTIONS(4976), + [aux_sym__intrinsic_type_token6] = ACTIONS(4976), + [aux_sym__intrinsic_type_token7] = ACTIONS(4976), + [aux_sym__intrinsic_type_token8] = ACTIONS(4976), + [aux_sym__intrinsic_type_token9] = ACTIONS(4976), + [aux_sym__intrinsic_type_token10] = ACTIONS(4976), + [aux_sym_derived_type_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), + [aux_sym_type_qualifier_token1] = ACTIONS(4976), + [aux_sym_type_qualifier_token2] = ACTIONS(4976), + [aux_sym_equivalence_statement_token1] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4980), + [aux_sym_stop_statement_token1] = ACTIONS(4976), + [aux_sym_stop_statement_token2] = ACTIONS(4976), + [aux_sym_subroutine_call_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token2] = ACTIONS(4976), + [aux_sym_keyword_statement_token3] = ACTIONS(4976), + [aux_sym_keyword_statement_token4] = ACTIONS(4976), + [aux_sym_keyword_statement_token6] = ACTIONS(4976), + [aux_sym_keyword_statement_token7] = ACTIONS(4976), + [aux_sym_include_statement_token1] = ACTIONS(4976), + [aux_sym_data_statement_token1] = ACTIONS(4976), + [aux_sym_do_loop_statement_token1] = ACTIONS(4976), + [aux_sym__inline_if_statement_token1] = ACTIONS(4976), + [aux_sym_end_if_statement_token1] = ACTIONS(4976), + [aux_sym_elseif_clause_token2] = ACTIONS(4976), + [aux_sym__inline_where_statement_token1] = ACTIONS(4976), + [aux_sym__forall_control_expression_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token3] = ACTIONS(4976), + [aux_sym_select_type_statement_token1] = ACTIONS(4976), + [aux_sym_select_rank_statement_token2] = ACTIONS(4976), + [aux_sym_block_construct_token1] = ACTIONS(4976), + [aux_sym_associate_statement_token1] = ACTIONS(4976), + [aux_sym_format_statement_token1] = ACTIONS(4976), + [aux_sym_print_statement_token1] = ACTIONS(4976), + [aux_sym_open_statement_token1] = ACTIONS(4976), + [aux_sym_close_statement_token1] = ACTIONS(4976), + [aux_sym_inquire_statement_token1] = ACTIONS(4976), + [aux_sym_enum_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token2] = ACTIONS(4976), + [aux_sym_file_position_statement_token3] = ACTIONS(4976), + [aux_sym_file_position_statement_token4] = ACTIONS(4976), + [aux_sym_allocate_statement_token1] = ACTIONS(4976), + [aux_sym_entry_statement_token1] = ACTIONS(4976), + [aux_sym_logical_expression_token5] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), + [aux_sym_null_literal_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token2] = ACTIONS(4976), + [aux_sym_coarray_statement_token6] = ACTIONS(4976), + [aux_sym_coarray_statement_token8] = ACTIONS(4976), + [aux_sym_coarray_statement_token11] = ACTIONS(4976), + [aux_sym_coarray_statement_token12] = ACTIONS(4976), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), + [aux_sym_identifier_token1] = ACTIONS(4976), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, [1226] = { - [aux_sym_preproc_include_token1] = ACTIONS(5195), - [aux_sym_preproc_def_token1] = ACTIONS(5195), - [aux_sym_preproc_if_token1] = ACTIONS(5195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5195), - [sym_preproc_directive] = ACTIONS(5195), - [anon_sym_LPAREN2] = ACTIONS(5195), - [sym_preproc_comment] = ACTIONS(5197), - [anon_sym_PLUS] = ACTIONS(5199), - [anon_sym_DASH] = ACTIONS(5199), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5195), - [aux_sym_end_program_statement_token2] = ACTIONS(5195), - [aux_sym_interface_statement_token1] = ACTIONS(5195), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5195), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5195), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5195), - [aux_sym_language_binding_token1] = ACTIONS(5195), - [aux_sym_procedure_attributes_token1] = ACTIONS(5195), - [aux_sym_procedure_attributes_token3] = ACTIONS(5195), - [aux_sym_contains_statement_token1] = ACTIONS(5195), - [aux_sym_use_statement_token1] = ACTIONS(5195), - [aux_sym_use_statement_token2] = ACTIONS(5195), - [aux_sym_implicit_statement_token1] = ACTIONS(5195), - [aux_sym_implicit_statement_token3] = ACTIONS(5195), - [aux_sym_implicit_statement_token4] = ACTIONS(5195), - [aux_sym_save_statement_token1] = ACTIONS(5195), - [aux_sym_private_statement_token1] = ACTIONS(5195), - [aux_sym_public_statement_token1] = ACTIONS(5195), - [aux_sym_namelist_statement_token1] = ACTIONS(5195), - [aux_sym_common_statement_token1] = ACTIONS(5195), - [aux_sym_import_statement_token1] = ACTIONS(5195), - [aux_sym_derived_type_definition_token1] = ACTIONS(5195), - [aux_sym_abstract_specifier_token1] = ACTIONS(5195), - [aux_sym_procedure_attribute_token6] = ACTIONS(5195), - [aux_sym_variable_attributes_token1] = ACTIONS(5195), - [aux_sym_variable_attributes_token2] = ACTIONS(5195), - [aux_sym_variable_attributes_token3] = ACTIONS(5195), - [aux_sym_variable_attributes_token4] = ACTIONS(5195), - [aux_sym_variable_attributes_token5] = ACTIONS(5195), - [aux_sym__intrinsic_type_token1] = ACTIONS(5195), - [aux_sym__intrinsic_type_token2] = ACTIONS(5195), - [aux_sym__intrinsic_type_token3] = ACTIONS(5195), - [aux_sym__intrinsic_type_token4] = ACTIONS(5195), - [aux_sym__intrinsic_type_token6] = ACTIONS(5195), - [aux_sym__intrinsic_type_token7] = ACTIONS(5195), - [aux_sym__intrinsic_type_token8] = ACTIONS(5195), - [aux_sym__intrinsic_type_token9] = ACTIONS(5195), - [aux_sym__intrinsic_type_token10] = ACTIONS(5195), - [aux_sym_derived_type_token1] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5195), - [aux_sym_type_qualifier_token1] = ACTIONS(5195), - [aux_sym_type_qualifier_token2] = ACTIONS(5195), - [aux_sym_equivalence_statement_token1] = ACTIONS(5195), - [anon_sym_SEMI] = ACTIONS(5199), - [aux_sym_stop_statement_token1] = ACTIONS(5195), - [aux_sym_stop_statement_token2] = ACTIONS(5195), - [aux_sym_subroutine_call_token1] = ACTIONS(5195), - [aux_sym_keyword_statement_token1] = ACTIONS(5195), - [aux_sym_keyword_statement_token2] = ACTIONS(5195), - [aux_sym_keyword_statement_token3] = ACTIONS(5195), - [aux_sym_keyword_statement_token4] = ACTIONS(5195), - [aux_sym_keyword_statement_token6] = ACTIONS(5195), - [aux_sym_keyword_statement_token7] = ACTIONS(5195), - [aux_sym_include_statement_token1] = ACTIONS(5195), - [aux_sym_data_statement_token1] = ACTIONS(5195), - [aux_sym_do_loop_statement_token1] = ACTIONS(5195), - [aux_sym__inline_if_statement_token1] = ACTIONS(5195), - [aux_sym_end_if_statement_token1] = ACTIONS(5195), - [aux_sym_elseif_clause_token2] = ACTIONS(5195), - [aux_sym__inline_where_statement_token1] = ACTIONS(5195), - [aux_sym__forall_control_expression_token1] = ACTIONS(5195), - [aux_sym_select_case_statement_token1] = ACTIONS(5195), - [aux_sym_select_case_statement_token3] = ACTIONS(5195), - [aux_sym_select_type_statement_token1] = ACTIONS(5195), - [aux_sym_select_rank_statement_token2] = ACTIONS(5195), - [aux_sym_block_construct_token1] = ACTIONS(5195), - [aux_sym_associate_statement_token1] = ACTIONS(5195), - [aux_sym_format_statement_token1] = ACTIONS(5195), - [aux_sym_print_statement_token1] = ACTIONS(5195), - [aux_sym_open_statement_token1] = ACTIONS(5195), - [aux_sym_close_statement_token1] = ACTIONS(5195), - [aux_sym_inquire_statement_token1] = ACTIONS(5195), - [aux_sym_enum_statement_token1] = ACTIONS(5195), - [aux_sym_file_position_statement_token1] = ACTIONS(5195), - [aux_sym_file_position_statement_token2] = ACTIONS(5195), - [aux_sym_file_position_statement_token3] = ACTIONS(5195), - [aux_sym_file_position_statement_token4] = ACTIONS(5195), - [aux_sym_allocate_statement_token1] = ACTIONS(5195), - [aux_sym_entry_statement_token1] = ACTIONS(5195), - [aux_sym_logical_expression_token5] = ACTIONS(5199), - [anon_sym_DOT] = ACTIONS(5195), - [anon_sym_LPAREN_SLASH] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [aux_sym_boolean_literal_token1] = ACTIONS(5199), - [aux_sym_boolean_literal_token2] = ACTIONS(5199), - [aux_sym_null_literal_token1] = ACTIONS(5195), - [aux_sym_coarray_statement_token1] = ACTIONS(5195), - [aux_sym_coarray_statement_token2] = ACTIONS(5195), - [aux_sym_coarray_statement_token6] = ACTIONS(5195), - [aux_sym_coarray_statement_token8] = ACTIONS(5195), - [aux_sym_coarray_statement_token11] = ACTIONS(5195), - [aux_sym_coarray_statement_token12] = ACTIONS(5195), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5195), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5195), - [aux_sym_identifier_token1] = ACTIONS(5195), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5199), - [sym__float_literal] = ACTIONS(5199), - [sym__boz_literal] = ACTIONS(5199), - [sym__string_literal] = ACTIONS(5199), - [sym__string_literal_kind] = ACTIONS(5199), + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token2] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_LPAREN2] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_end_program_statement_token2] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_subroutine_call_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_keyword_statement_token4] = ACTIONS(5055), + [aux_sym_keyword_statement_token6] = ACTIONS(5055), + [aux_sym_keyword_statement_token7] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym_do_loop_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym__inline_where_statement_token1] = ACTIONS(5055), + [aux_sym__forall_control_expression_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token3] = ACTIONS(5055), + [aux_sym_select_type_statement_token1] = ACTIONS(5055), + [aux_sym_select_rank_statement_token2] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_associate_statement_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_print_statement_token1] = ACTIONS(5055), + [aux_sym_open_statement_token1] = ACTIONS(5055), + [aux_sym_close_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token2] = ACTIONS(5055), + [aux_sym_file_position_statement_token3] = ACTIONS(5055), + [aux_sym_file_position_statement_token4] = ACTIONS(5055), + [aux_sym_allocate_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_logical_expression_token5] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_LPAREN_SLASH] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [aux_sym_boolean_literal_token1] = ACTIONS(5057), + [aux_sym_boolean_literal_token2] = ACTIONS(5057), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + [sym__float_literal] = ACTIONS(5057), + [sym__boz_literal] = ACTIONS(5057), + [sym__string_literal] = ACTIONS(5057), + [sym__string_literal_kind] = ACTIONS(5057), }, [1227] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [sym_preproc_comment] = ACTIONS(5201), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_end_program_statement_token2] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(5188), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_end_function_statement_token1] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), }, [1228] = { - [aux_sym_preproc_include_token1] = ACTIONS(5119), - [aux_sym_preproc_def_token1] = ACTIONS(5119), - [aux_sym_preproc_if_token1] = ACTIONS(5119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5119), - [sym_preproc_directive] = ACTIONS(5119), - [anon_sym_LPAREN2] = ACTIONS(5119), - [sym_preproc_comment] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5119), - [aux_sym_interface_statement_token1] = ACTIONS(5119), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5119), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5119), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5119), - [aux_sym_language_binding_token1] = ACTIONS(5119), - [aux_sym_procedure_attributes_token1] = ACTIONS(5119), - [aux_sym_procedure_attributes_token3] = ACTIONS(5119), - [aux_sym_end_function_statement_token1] = ACTIONS(5119), - [aux_sym_contains_statement_token1] = ACTIONS(5119), - [aux_sym_use_statement_token1] = ACTIONS(5119), - [aux_sym_use_statement_token2] = ACTIONS(5119), - [aux_sym_implicit_statement_token1] = ACTIONS(5119), - [aux_sym_implicit_statement_token3] = ACTIONS(5119), - [aux_sym_implicit_statement_token4] = ACTIONS(5119), - [aux_sym_save_statement_token1] = ACTIONS(5119), - [aux_sym_private_statement_token1] = ACTIONS(5119), - [aux_sym_public_statement_token1] = ACTIONS(5119), - [aux_sym_namelist_statement_token1] = ACTIONS(5119), - [aux_sym_common_statement_token1] = ACTIONS(5119), - [aux_sym_import_statement_token1] = ACTIONS(5119), - [aux_sym_derived_type_definition_token1] = ACTIONS(5119), - [aux_sym_abstract_specifier_token1] = ACTIONS(5119), - [aux_sym_procedure_attribute_token6] = ACTIONS(5119), - [aux_sym_variable_attributes_token1] = ACTIONS(5119), - [aux_sym_variable_attributes_token2] = ACTIONS(5119), - [aux_sym_variable_attributes_token3] = ACTIONS(5119), - [aux_sym_variable_attributes_token4] = ACTIONS(5119), - [aux_sym_variable_attributes_token5] = ACTIONS(5119), - [aux_sym__intrinsic_type_token1] = ACTIONS(5119), - [aux_sym__intrinsic_type_token2] = ACTIONS(5119), - [aux_sym__intrinsic_type_token3] = ACTIONS(5119), - [aux_sym__intrinsic_type_token4] = ACTIONS(5119), - [aux_sym__intrinsic_type_token6] = ACTIONS(5119), - [aux_sym__intrinsic_type_token7] = ACTIONS(5119), - [aux_sym__intrinsic_type_token8] = ACTIONS(5119), - [aux_sym__intrinsic_type_token9] = ACTIONS(5119), - [aux_sym__intrinsic_type_token10] = ACTIONS(5119), - [aux_sym_derived_type_token1] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5119), - [aux_sym_type_qualifier_token1] = ACTIONS(5119), - [aux_sym_type_qualifier_token2] = ACTIONS(5119), - [aux_sym_equivalence_statement_token1] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5123), - [aux_sym_stop_statement_token1] = ACTIONS(5119), - [aux_sym_stop_statement_token2] = ACTIONS(5119), - [aux_sym_subroutine_call_token1] = ACTIONS(5119), - [aux_sym_keyword_statement_token1] = ACTIONS(5119), - [aux_sym_keyword_statement_token2] = ACTIONS(5119), - [aux_sym_keyword_statement_token3] = ACTIONS(5119), - [aux_sym_keyword_statement_token4] = ACTIONS(5119), - [aux_sym_keyword_statement_token6] = ACTIONS(5119), - [aux_sym_keyword_statement_token7] = ACTIONS(5119), - [aux_sym_include_statement_token1] = ACTIONS(5119), - [aux_sym_data_statement_token1] = ACTIONS(5119), - [aux_sym_do_loop_statement_token1] = ACTIONS(5119), - [aux_sym__inline_if_statement_token1] = ACTIONS(5119), - [aux_sym_end_if_statement_token1] = ACTIONS(5119), - [aux_sym_elseif_clause_token2] = ACTIONS(5119), - [aux_sym__inline_where_statement_token1] = ACTIONS(5119), - [aux_sym__forall_control_expression_token1] = ACTIONS(5119), - [aux_sym_select_case_statement_token1] = ACTIONS(5119), - [aux_sym_select_case_statement_token3] = ACTIONS(5119), - [aux_sym_select_type_statement_token1] = ACTIONS(5119), - [aux_sym_select_rank_statement_token2] = ACTIONS(5119), - [aux_sym_block_construct_token1] = ACTIONS(5119), - [aux_sym_associate_statement_token1] = ACTIONS(5119), - [aux_sym_format_statement_token1] = ACTIONS(5119), - [aux_sym_print_statement_token1] = ACTIONS(5119), - [aux_sym_open_statement_token1] = ACTIONS(5119), - [aux_sym_close_statement_token1] = ACTIONS(5119), - [aux_sym_inquire_statement_token1] = ACTIONS(5119), - [aux_sym_enum_statement_token1] = ACTIONS(5119), - [aux_sym_file_position_statement_token1] = ACTIONS(5119), - [aux_sym_file_position_statement_token2] = ACTIONS(5119), - [aux_sym_file_position_statement_token3] = ACTIONS(5119), - [aux_sym_file_position_statement_token4] = ACTIONS(5119), - [aux_sym_allocate_statement_token1] = ACTIONS(5119), - [aux_sym_entry_statement_token1] = ACTIONS(5119), - [aux_sym_logical_expression_token5] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LPAREN_SLASH] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [aux_sym_boolean_literal_token1] = ACTIONS(5123), - [aux_sym_boolean_literal_token2] = ACTIONS(5123), - [aux_sym_null_literal_token1] = ACTIONS(5119), - [aux_sym_coarray_statement_token1] = ACTIONS(5119), - [aux_sym_coarray_statement_token2] = ACTIONS(5119), - [aux_sym_coarray_statement_token6] = ACTIONS(5119), - [aux_sym_coarray_statement_token8] = ACTIONS(5119), - [aux_sym_coarray_statement_token11] = ACTIONS(5119), - [aux_sym_coarray_statement_token12] = ACTIONS(5119), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5119), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5119), - [aux_sym_identifier_token1] = ACTIONS(5119), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5123), - [sym__float_literal] = ACTIONS(5123), - [sym__boz_literal] = ACTIONS(5123), - [sym__string_literal] = ACTIONS(5123), - [sym__string_literal_kind] = ACTIONS(5123), + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token2] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_LPAREN2] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_end_program_statement_token2] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_subroutine_call_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_keyword_statement_token4] = ACTIONS(5059), + [aux_sym_keyword_statement_token6] = ACTIONS(5059), + [aux_sym_keyword_statement_token7] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym_do_loop_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym__inline_where_statement_token1] = ACTIONS(5059), + [aux_sym__forall_control_expression_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token3] = ACTIONS(5059), + [aux_sym_select_type_statement_token1] = ACTIONS(5059), + [aux_sym_select_rank_statement_token2] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_associate_statement_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_print_statement_token1] = ACTIONS(5059), + [aux_sym_open_statement_token1] = ACTIONS(5059), + [aux_sym_close_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token2] = ACTIONS(5059), + [aux_sym_file_position_statement_token3] = ACTIONS(5059), + [aux_sym_file_position_statement_token4] = ACTIONS(5059), + [aux_sym_allocate_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_logical_expression_token5] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [aux_sym_boolean_literal_token1] = ACTIONS(5061), + [aux_sym_boolean_literal_token2] = ACTIONS(5061), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + [sym__float_literal] = ACTIONS(5061), + [sym__boz_literal] = ACTIONS(5061), + [sym__string_literal] = ACTIONS(5061), + [sym__string_literal_kind] = ACTIONS(5061), }, [1229] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [sym_preproc_comment] = ACTIONS(5205), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_end_function_statement_token1] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [aux_sym_preproc_include_token1] = ACTIONS(5170), + [aux_sym_preproc_def_token1] = ACTIONS(5170), + [aux_sym_preproc_if_token1] = ACTIONS(5170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5170), + [sym_preproc_directive] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [sym_preproc_comment] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5170), + [aux_sym_interface_statement_token1] = ACTIONS(5170), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5170), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5170), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5170), + [aux_sym_language_binding_token1] = ACTIONS(5170), + [aux_sym_procedure_attributes_token1] = ACTIONS(5170), + [aux_sym_procedure_attributes_token3] = ACTIONS(5170), + [aux_sym_end_function_statement_token1] = ACTIONS(5170), + [aux_sym_contains_statement_token1] = ACTIONS(5170), + [aux_sym_use_statement_token1] = ACTIONS(5170), + [aux_sym_use_statement_token2] = ACTIONS(5170), + [aux_sym_implicit_statement_token1] = ACTIONS(5170), + [aux_sym_implicit_statement_token3] = ACTIONS(5170), + [aux_sym_implicit_statement_token4] = ACTIONS(5170), + [aux_sym_save_statement_token1] = ACTIONS(5170), + [aux_sym_private_statement_token1] = ACTIONS(5170), + [aux_sym_public_statement_token1] = ACTIONS(5170), + [aux_sym_namelist_statement_token1] = ACTIONS(5170), + [aux_sym_common_statement_token1] = ACTIONS(5170), + [aux_sym_import_statement_token1] = ACTIONS(5170), + [aux_sym_derived_type_definition_token1] = ACTIONS(5170), + [aux_sym_abstract_specifier_token1] = ACTIONS(5170), + [aux_sym_procedure_attribute_token6] = ACTIONS(5170), + [aux_sym_variable_attributes_token1] = ACTIONS(5170), + [aux_sym_variable_attributes_token2] = ACTIONS(5170), + [aux_sym_variable_attributes_token3] = ACTIONS(5170), + [aux_sym_variable_attributes_token4] = ACTIONS(5170), + [aux_sym_variable_attributes_token5] = ACTIONS(5170), + [aux_sym__intrinsic_type_token1] = ACTIONS(5170), + [aux_sym__intrinsic_type_token2] = ACTIONS(5170), + [aux_sym__intrinsic_type_token3] = ACTIONS(5170), + [aux_sym__intrinsic_type_token4] = ACTIONS(5170), + [aux_sym__intrinsic_type_token6] = ACTIONS(5170), + [aux_sym__intrinsic_type_token7] = ACTIONS(5170), + [aux_sym__intrinsic_type_token8] = ACTIONS(5170), + [aux_sym__intrinsic_type_token9] = ACTIONS(5170), + [aux_sym__intrinsic_type_token10] = ACTIONS(5170), + [aux_sym_derived_type_token1] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5170), + [aux_sym_type_qualifier_token1] = ACTIONS(5170), + [aux_sym_type_qualifier_token2] = ACTIONS(5170), + [aux_sym_equivalence_statement_token1] = ACTIONS(5170), + [anon_sym_SEMI] = ACTIONS(5174), + [aux_sym_stop_statement_token1] = ACTIONS(5170), + [aux_sym_stop_statement_token2] = ACTIONS(5170), + [aux_sym_subroutine_call_token1] = ACTIONS(5170), + [aux_sym_keyword_statement_token1] = ACTIONS(5170), + [aux_sym_keyword_statement_token2] = ACTIONS(5170), + [aux_sym_keyword_statement_token3] = ACTIONS(5170), + [aux_sym_keyword_statement_token4] = ACTIONS(5170), + [aux_sym_keyword_statement_token6] = ACTIONS(5170), + [aux_sym_keyword_statement_token7] = ACTIONS(5170), + [aux_sym_include_statement_token1] = ACTIONS(5170), + [aux_sym_data_statement_token1] = ACTIONS(5170), + [aux_sym_do_loop_statement_token1] = ACTIONS(5170), + [aux_sym__inline_if_statement_token1] = ACTIONS(5170), + [aux_sym_end_if_statement_token1] = ACTIONS(5170), + [aux_sym_elseif_clause_token2] = ACTIONS(5170), + [aux_sym__inline_where_statement_token1] = ACTIONS(5170), + [aux_sym__forall_control_expression_token1] = ACTIONS(5170), + [aux_sym_select_case_statement_token1] = ACTIONS(5170), + [aux_sym_select_case_statement_token3] = ACTIONS(5170), + [aux_sym_select_type_statement_token1] = ACTIONS(5170), + [aux_sym_select_rank_statement_token2] = ACTIONS(5170), + [aux_sym_block_construct_token1] = ACTIONS(5170), + [aux_sym_associate_statement_token1] = ACTIONS(5170), + [aux_sym_format_statement_token1] = ACTIONS(5170), + [aux_sym_print_statement_token1] = ACTIONS(5170), + [aux_sym_open_statement_token1] = ACTIONS(5170), + [aux_sym_close_statement_token1] = ACTIONS(5170), + [aux_sym_inquire_statement_token1] = ACTIONS(5170), + [aux_sym_enum_statement_token1] = ACTIONS(5170), + [aux_sym_file_position_statement_token1] = ACTIONS(5170), + [aux_sym_file_position_statement_token2] = ACTIONS(5170), + [aux_sym_file_position_statement_token3] = ACTIONS(5170), + [aux_sym_file_position_statement_token4] = ACTIONS(5170), + [aux_sym_allocate_statement_token1] = ACTIONS(5170), + [aux_sym_entry_statement_token1] = ACTIONS(5170), + [aux_sym_logical_expression_token5] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_LPAREN_SLASH] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [aux_sym_boolean_literal_token1] = ACTIONS(5174), + [aux_sym_boolean_literal_token2] = ACTIONS(5174), + [aux_sym_null_literal_token1] = ACTIONS(5170), + [aux_sym_coarray_statement_token1] = ACTIONS(5170), + [aux_sym_coarray_statement_token2] = ACTIONS(5170), + [aux_sym_coarray_statement_token6] = ACTIONS(5170), + [aux_sym_coarray_statement_token8] = ACTIONS(5170), + [aux_sym_coarray_statement_token11] = ACTIONS(5170), + [aux_sym_coarray_statement_token12] = ACTIONS(5170), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5170), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5170), + [aux_sym_identifier_token1] = ACTIONS(5170), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5174), + [sym__float_literal] = ACTIONS(5174), + [sym__boz_literal] = ACTIONS(5174), + [sym__string_literal] = ACTIONS(5174), + [sym__string_literal_kind] = ACTIONS(5174), }, [1230] = { - [aux_sym_preproc_include_token1] = ACTIONS(5127), - [aux_sym_preproc_def_token1] = ACTIONS(5127), - [aux_sym_preproc_if_token1] = ACTIONS(5127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5127), - [sym_preproc_directive] = ACTIONS(5127), - [anon_sym_LPAREN2] = ACTIONS(5127), - [sym_preproc_comment] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5127), - [aux_sym_interface_statement_token1] = ACTIONS(5127), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5127), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5127), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5127), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5127), - [aux_sym_language_binding_token1] = ACTIONS(5127), - [aux_sym_procedure_attributes_token1] = ACTIONS(5127), - [aux_sym_procedure_attributes_token3] = ACTIONS(5127), - [aux_sym_contains_statement_token1] = ACTIONS(5127), - [aux_sym_use_statement_token1] = ACTIONS(5127), - [aux_sym_use_statement_token2] = ACTIONS(5127), - [aux_sym_implicit_statement_token1] = ACTIONS(5127), - [aux_sym_implicit_statement_token3] = ACTIONS(5127), - [aux_sym_implicit_statement_token4] = ACTIONS(5127), - [aux_sym_save_statement_token1] = ACTIONS(5127), - [aux_sym_private_statement_token1] = ACTIONS(5127), - [aux_sym_public_statement_token1] = ACTIONS(5127), - [aux_sym_namelist_statement_token1] = ACTIONS(5127), - [aux_sym_common_statement_token1] = ACTIONS(5127), - [aux_sym_import_statement_token1] = ACTIONS(5127), - [aux_sym_derived_type_definition_token1] = ACTIONS(5127), - [aux_sym_abstract_specifier_token1] = ACTIONS(5127), - [aux_sym_procedure_attribute_token6] = ACTIONS(5127), - [aux_sym_variable_attributes_token1] = ACTIONS(5127), - [aux_sym_variable_attributes_token2] = ACTIONS(5127), - [aux_sym_variable_attributes_token3] = ACTIONS(5127), - [aux_sym_variable_attributes_token4] = ACTIONS(5127), - [aux_sym_variable_attributes_token5] = ACTIONS(5127), - [aux_sym__intrinsic_type_token1] = ACTIONS(5127), - [aux_sym__intrinsic_type_token2] = ACTIONS(5127), - [aux_sym__intrinsic_type_token3] = ACTIONS(5127), - [aux_sym__intrinsic_type_token4] = ACTIONS(5127), - [aux_sym__intrinsic_type_token6] = ACTIONS(5127), - [aux_sym__intrinsic_type_token7] = ACTIONS(5127), - [aux_sym__intrinsic_type_token8] = ACTIONS(5127), - [aux_sym__intrinsic_type_token9] = ACTIONS(5127), - [aux_sym__intrinsic_type_token10] = ACTIONS(5127), - [aux_sym_derived_type_token1] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5127), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5127), - [aux_sym_type_qualifier_token1] = ACTIONS(5127), - [aux_sym_type_qualifier_token2] = ACTIONS(5127), - [aux_sym_equivalence_statement_token1] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5131), - [aux_sym_stop_statement_token1] = ACTIONS(5127), - [aux_sym_stop_statement_token2] = ACTIONS(5127), - [aux_sym_subroutine_call_token1] = ACTIONS(5127), - [aux_sym_keyword_statement_token1] = ACTIONS(5127), - [aux_sym_keyword_statement_token2] = ACTIONS(5127), - [aux_sym_keyword_statement_token3] = ACTIONS(5127), - [aux_sym_keyword_statement_token4] = ACTIONS(5127), - [aux_sym_keyword_statement_token6] = ACTIONS(5127), - [aux_sym_keyword_statement_token7] = ACTIONS(5127), - [aux_sym_include_statement_token1] = ACTIONS(5127), - [aux_sym_data_statement_token1] = ACTIONS(5127), - [aux_sym_do_loop_statement_token1] = ACTIONS(5127), - [aux_sym__inline_if_statement_token1] = ACTIONS(5127), - [aux_sym_end_if_statement_token1] = ACTIONS(5127), - [aux_sym_elseif_clause_token2] = ACTIONS(5127), - [aux_sym__inline_where_statement_token1] = ACTIONS(5127), - [aux_sym__forall_control_expression_token1] = ACTIONS(5127), - [aux_sym_select_case_statement_token1] = ACTIONS(5127), - [aux_sym_select_case_statement_token3] = ACTIONS(5127), - [aux_sym_select_type_statement_token1] = ACTIONS(5127), - [aux_sym_select_rank_statement_token2] = ACTIONS(5127), - [aux_sym_block_construct_token1] = ACTIONS(5127), - [aux_sym_associate_statement_token1] = ACTIONS(5127), - [aux_sym_format_statement_token1] = ACTIONS(5127), - [aux_sym_print_statement_token1] = ACTIONS(5127), - [aux_sym_open_statement_token1] = ACTIONS(5127), - [aux_sym_close_statement_token1] = ACTIONS(5127), - [aux_sym_inquire_statement_token1] = ACTIONS(5127), - [aux_sym_enum_statement_token1] = ACTIONS(5127), - [aux_sym_file_position_statement_token1] = ACTIONS(5127), - [aux_sym_file_position_statement_token2] = ACTIONS(5127), - [aux_sym_file_position_statement_token3] = ACTIONS(5127), - [aux_sym_file_position_statement_token4] = ACTIONS(5127), - [aux_sym_allocate_statement_token1] = ACTIONS(5127), - [aux_sym_entry_statement_token1] = ACTIONS(5127), - [aux_sym_logical_expression_token5] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5127), - [anon_sym_LPAREN_SLASH] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5131), - [aux_sym_boolean_literal_token1] = ACTIONS(5131), - [aux_sym_boolean_literal_token2] = ACTIONS(5131), - [aux_sym_null_literal_token1] = ACTIONS(5127), - [aux_sym_coarray_statement_token1] = ACTIONS(5127), - [aux_sym_coarray_statement_token2] = ACTIONS(5127), - [aux_sym_coarray_statement_token6] = ACTIONS(5127), - [aux_sym_coarray_statement_token8] = ACTIONS(5127), - [aux_sym_coarray_statement_token11] = ACTIONS(5127), - [aux_sym_coarray_statement_token12] = ACTIONS(5127), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5127), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5127), - [aux_sym_identifier_token1] = ACTIONS(5127), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5131), - [sym__float_literal] = ACTIONS(5131), - [sym__boz_literal] = ACTIONS(5131), - [sym__string_literal] = ACTIONS(5131), - [sym__string_literal_kind] = ACTIONS(5131), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [sym_preproc_comment] = ACTIONS(5192), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_end_function_statement_token1] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1231] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [sym_preproc_comment] = ACTIONS(5209), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_end_function_statement_token1] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_end_program_statement_token2] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1232] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [sym_preproc_comment] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token2] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_end_program_statement_token2] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_subroutine_call_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_keyword_statement_token4] = ACTIONS(5067), + [aux_sym_keyword_statement_token6] = ACTIONS(5067), + [aux_sym_keyword_statement_token7] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym_do_loop_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym__inline_where_statement_token1] = ACTIONS(5067), + [aux_sym__forall_control_expression_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token3] = ACTIONS(5067), + [aux_sym_select_type_statement_token1] = ACTIONS(5067), + [aux_sym_select_rank_statement_token2] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_associate_statement_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_print_statement_token1] = ACTIONS(5067), + [aux_sym_open_statement_token1] = ACTIONS(5067), + [aux_sym_close_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token2] = ACTIONS(5067), + [aux_sym_file_position_statement_token3] = ACTIONS(5067), + [aux_sym_file_position_statement_token4] = ACTIONS(5067), + [aux_sym_allocate_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_logical_expression_token5] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LPAREN_SLASH] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [aux_sym_boolean_literal_token1] = ACTIONS(5069), + [aux_sym_boolean_literal_token2] = ACTIONS(5069), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + [sym__float_literal] = ACTIONS(5069), + [sym__boz_literal] = ACTIONS(5069), + [sym__string_literal] = ACTIONS(5069), + [sym__string_literal_kind] = ACTIONS(5069), }, [1233] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [sym_preproc_comment] = ACTIONS(5213), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_end_program_statement_token2] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [aux_sym_preproc_include_token1] = ACTIONS(5194), + [aux_sym_preproc_def_token1] = ACTIONS(5194), + [aux_sym_preproc_if_token1] = ACTIONS(5194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5194), + [sym_preproc_directive] = ACTIONS(5194), + [anon_sym_LPAREN2] = ACTIONS(5194), + [sym_preproc_comment] = ACTIONS(5196), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5194), + [aux_sym_interface_statement_token1] = ACTIONS(5194), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5194), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5194), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5194), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5194), + [aux_sym_language_binding_token1] = ACTIONS(5194), + [aux_sym_procedure_attributes_token1] = ACTIONS(5194), + [aux_sym_procedure_attributes_token3] = ACTIONS(5194), + [aux_sym_contains_statement_token1] = ACTIONS(5194), + [aux_sym_use_statement_token1] = ACTIONS(5194), + [aux_sym_use_statement_token2] = ACTIONS(5194), + [aux_sym_implicit_statement_token1] = ACTIONS(5194), + [aux_sym_implicit_statement_token3] = ACTIONS(5194), + [aux_sym_implicit_statement_token4] = ACTIONS(5194), + [aux_sym_save_statement_token1] = ACTIONS(5194), + [aux_sym_private_statement_token1] = ACTIONS(5194), + [aux_sym_public_statement_token1] = ACTIONS(5194), + [aux_sym_namelist_statement_token1] = ACTIONS(5194), + [aux_sym_common_statement_token1] = ACTIONS(5194), + [aux_sym_import_statement_token1] = ACTIONS(5194), + [aux_sym_derived_type_definition_token1] = ACTIONS(5194), + [aux_sym_abstract_specifier_token1] = ACTIONS(5194), + [aux_sym_procedure_attribute_token6] = ACTIONS(5194), + [aux_sym_variable_attributes_token1] = ACTIONS(5194), + [aux_sym_variable_attributes_token2] = ACTIONS(5194), + [aux_sym_variable_attributes_token3] = ACTIONS(5194), + [aux_sym_variable_attributes_token4] = ACTIONS(5194), + [aux_sym_variable_attributes_token5] = ACTIONS(5194), + [aux_sym__intrinsic_type_token1] = ACTIONS(5194), + [aux_sym__intrinsic_type_token2] = ACTIONS(5194), + [aux_sym__intrinsic_type_token3] = ACTIONS(5194), + [aux_sym__intrinsic_type_token4] = ACTIONS(5194), + [aux_sym__intrinsic_type_token6] = ACTIONS(5194), + [aux_sym__intrinsic_type_token7] = ACTIONS(5194), + [aux_sym__intrinsic_type_token8] = ACTIONS(5194), + [aux_sym__intrinsic_type_token9] = ACTIONS(5194), + [aux_sym__intrinsic_type_token10] = ACTIONS(5194), + [aux_sym_derived_type_token1] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5194), + [aux_sym_type_qualifier_token1] = ACTIONS(5194), + [aux_sym_type_qualifier_token2] = ACTIONS(5194), + [aux_sym_equivalence_statement_token1] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5198), + [aux_sym_stop_statement_token1] = ACTIONS(5194), + [aux_sym_stop_statement_token2] = ACTIONS(5194), + [aux_sym_subroutine_call_token1] = ACTIONS(5194), + [aux_sym_keyword_statement_token1] = ACTIONS(5194), + [aux_sym_keyword_statement_token2] = ACTIONS(5194), + [aux_sym_keyword_statement_token3] = ACTIONS(5194), + [aux_sym_keyword_statement_token4] = ACTIONS(5194), + [aux_sym_keyword_statement_token6] = ACTIONS(5194), + [aux_sym_keyword_statement_token7] = ACTIONS(5194), + [aux_sym_include_statement_token1] = ACTIONS(5194), + [aux_sym_data_statement_token1] = ACTIONS(5194), + [aux_sym_do_loop_statement_token1] = ACTIONS(5194), + [aux_sym__inline_if_statement_token1] = ACTIONS(5194), + [aux_sym_end_if_statement_token1] = ACTIONS(5194), + [aux_sym_elseif_clause_token2] = ACTIONS(5194), + [aux_sym__inline_where_statement_token1] = ACTIONS(5194), + [aux_sym__forall_control_expression_token1] = ACTIONS(5194), + [aux_sym_select_case_statement_token1] = ACTIONS(5194), + [aux_sym_select_case_statement_token3] = ACTIONS(5194), + [aux_sym_select_type_statement_token1] = ACTIONS(5194), + [aux_sym_select_rank_statement_token2] = ACTIONS(5194), + [aux_sym_block_construct_token1] = ACTIONS(5194), + [aux_sym_associate_statement_token1] = ACTIONS(5194), + [aux_sym_format_statement_token1] = ACTIONS(5194), + [aux_sym_print_statement_token1] = ACTIONS(5194), + [aux_sym_open_statement_token1] = ACTIONS(5194), + [aux_sym_close_statement_token1] = ACTIONS(5194), + [aux_sym_inquire_statement_token1] = ACTIONS(5194), + [aux_sym_enum_statement_token1] = ACTIONS(5194), + [aux_sym_file_position_statement_token1] = ACTIONS(5194), + [aux_sym_file_position_statement_token2] = ACTIONS(5194), + [aux_sym_file_position_statement_token3] = ACTIONS(5194), + [aux_sym_file_position_statement_token4] = ACTIONS(5194), + [aux_sym_allocate_statement_token1] = ACTIONS(5194), + [aux_sym_entry_statement_token1] = ACTIONS(5194), + [aux_sym_logical_expression_token5] = ACTIONS(5198), + [anon_sym_DOT] = ACTIONS(5194), + [anon_sym_LPAREN_SLASH] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [aux_sym_boolean_literal_token1] = ACTIONS(5198), + [aux_sym_boolean_literal_token2] = ACTIONS(5198), + [aux_sym_null_literal_token1] = ACTIONS(5194), + [aux_sym_coarray_statement_token1] = ACTIONS(5194), + [aux_sym_coarray_statement_token2] = ACTIONS(5194), + [aux_sym_coarray_statement_token6] = ACTIONS(5194), + [aux_sym_coarray_statement_token8] = ACTIONS(5194), + [aux_sym_coarray_statement_token11] = ACTIONS(5194), + [aux_sym_coarray_statement_token12] = ACTIONS(5194), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5194), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5194), + [aux_sym_identifier_token1] = ACTIONS(5194), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5198), + [sym__float_literal] = ACTIONS(5198), + [sym__boz_literal] = ACTIONS(5198), + [sym__string_literal] = ACTIONS(5198), + [sym__string_literal_kind] = ACTIONS(5198), }, [1234] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4267), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [1235] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_end_program_statement_token2] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [sym_preproc_comment] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, [1236] = { - [aux_sym_preproc_include_token1] = ACTIONS(5163), - [aux_sym_preproc_def_token1] = ACTIONS(5163), - [aux_sym_preproc_if_token1] = ACTIONS(5163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5163), - [sym_preproc_directive] = ACTIONS(5163), - [anon_sym_LPAREN2] = ACTIONS(5163), - [sym_preproc_comment] = ACTIONS(5217), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5163), - [aux_sym_interface_statement_token1] = ACTIONS(5163), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5163), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5163), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5163), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5163), - [aux_sym_language_binding_token1] = ACTIONS(5163), - [aux_sym_procedure_attributes_token1] = ACTIONS(5163), - [aux_sym_procedure_attributes_token3] = ACTIONS(5163), - [aux_sym_contains_statement_token1] = ACTIONS(5163), - [aux_sym_use_statement_token1] = ACTIONS(5163), - [aux_sym_use_statement_token2] = ACTIONS(5163), - [aux_sym_implicit_statement_token1] = ACTIONS(5163), - [aux_sym_implicit_statement_token3] = ACTIONS(5163), - [aux_sym_implicit_statement_token4] = ACTIONS(5163), - [aux_sym_save_statement_token1] = ACTIONS(5163), - [aux_sym_private_statement_token1] = ACTIONS(5163), - [aux_sym_public_statement_token1] = ACTIONS(5163), - [aux_sym_namelist_statement_token1] = ACTIONS(5163), - [aux_sym_common_statement_token1] = ACTIONS(5163), - [aux_sym_import_statement_token1] = ACTIONS(5163), - [aux_sym_derived_type_definition_token1] = ACTIONS(5163), - [aux_sym_abstract_specifier_token1] = ACTIONS(5163), - [aux_sym_procedure_attribute_token6] = ACTIONS(5163), - [aux_sym_variable_attributes_token1] = ACTIONS(5163), - [aux_sym_variable_attributes_token2] = ACTIONS(5163), - [aux_sym_variable_attributes_token3] = ACTIONS(5163), - [aux_sym_variable_attributes_token4] = ACTIONS(5163), - [aux_sym_variable_attributes_token5] = ACTIONS(5163), - [aux_sym__intrinsic_type_token1] = ACTIONS(5163), - [aux_sym__intrinsic_type_token2] = ACTIONS(5163), - [aux_sym__intrinsic_type_token3] = ACTIONS(5163), - [aux_sym__intrinsic_type_token4] = ACTIONS(5163), - [aux_sym__intrinsic_type_token6] = ACTIONS(5163), - [aux_sym__intrinsic_type_token7] = ACTIONS(5163), - [aux_sym__intrinsic_type_token8] = ACTIONS(5163), - [aux_sym__intrinsic_type_token9] = ACTIONS(5163), - [aux_sym__intrinsic_type_token10] = ACTIONS(5163), - [aux_sym_derived_type_token1] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5163), - [aux_sym_type_qualifier_token1] = ACTIONS(5163), - [aux_sym_type_qualifier_token2] = ACTIONS(5163), - [aux_sym_equivalence_statement_token1] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5167), - [aux_sym_stop_statement_token1] = ACTIONS(5163), - [aux_sym_stop_statement_token2] = ACTIONS(5163), - [aux_sym_subroutine_call_token1] = ACTIONS(5163), - [aux_sym_keyword_statement_token1] = ACTIONS(5163), - [aux_sym_keyword_statement_token2] = ACTIONS(5163), - [aux_sym_keyword_statement_token3] = ACTIONS(5163), - [aux_sym_keyword_statement_token4] = ACTIONS(5163), - [aux_sym_keyword_statement_token6] = ACTIONS(5163), - [aux_sym_keyword_statement_token7] = ACTIONS(5163), - [aux_sym_include_statement_token1] = ACTIONS(5163), - [aux_sym_data_statement_token1] = ACTIONS(5163), - [aux_sym_do_loop_statement_token1] = ACTIONS(5163), - [aux_sym__inline_if_statement_token1] = ACTIONS(5163), - [aux_sym_end_if_statement_token1] = ACTIONS(5163), - [aux_sym_elseif_clause_token2] = ACTIONS(5163), - [aux_sym__inline_where_statement_token1] = ACTIONS(5163), - [aux_sym__forall_control_expression_token1] = ACTIONS(5163), - [aux_sym_select_case_statement_token1] = ACTIONS(5163), - [aux_sym_select_case_statement_token3] = ACTIONS(5163), - [aux_sym_select_type_statement_token1] = ACTIONS(5163), - [aux_sym_select_rank_statement_token2] = ACTIONS(5163), - [aux_sym_block_construct_token1] = ACTIONS(5163), - [aux_sym_associate_statement_token1] = ACTIONS(5163), - [aux_sym_format_statement_token1] = ACTIONS(5163), - [aux_sym_print_statement_token1] = ACTIONS(5163), - [aux_sym_open_statement_token1] = ACTIONS(5163), - [aux_sym_close_statement_token1] = ACTIONS(5163), - [aux_sym_inquire_statement_token1] = ACTIONS(5163), - [aux_sym_enum_statement_token1] = ACTIONS(5163), - [aux_sym_file_position_statement_token1] = ACTIONS(5163), - [aux_sym_file_position_statement_token2] = ACTIONS(5163), - [aux_sym_file_position_statement_token3] = ACTIONS(5163), - [aux_sym_file_position_statement_token4] = ACTIONS(5163), - [aux_sym_allocate_statement_token1] = ACTIONS(5163), - [aux_sym_entry_statement_token1] = ACTIONS(5163), - [aux_sym_logical_expression_token5] = ACTIONS(5167), - [anon_sym_DOT] = ACTIONS(5163), - [anon_sym_LPAREN_SLASH] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [aux_sym_boolean_literal_token1] = ACTIONS(5167), - [aux_sym_boolean_literal_token2] = ACTIONS(5167), - [aux_sym_null_literal_token1] = ACTIONS(5163), - [aux_sym_coarray_statement_token1] = ACTIONS(5163), - [aux_sym_coarray_statement_token2] = ACTIONS(5163), - [aux_sym_coarray_statement_token6] = ACTIONS(5163), - [aux_sym_coarray_statement_token8] = ACTIONS(5163), - [aux_sym_coarray_statement_token11] = ACTIONS(5163), - [aux_sym_coarray_statement_token12] = ACTIONS(5163), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5163), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5163), - [aux_sym_identifier_token1] = ACTIONS(5163), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5167), - [sym__float_literal] = ACTIONS(5167), - [sym__boz_literal] = ACTIONS(5167), - [sym__string_literal] = ACTIONS(5167), - [sym__string_literal_kind] = ACTIONS(5167), + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(5204), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_end_function_statement_token1] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), }, [1237] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [sym_preproc_comment] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), - }, - [1238] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token2] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [sym_preproc_comment] = ACTIONS(5206), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_end_program_statement_token2] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), + }, + [1238] = { + [aux_sym_preproc_include_token1] = ACTIONS(5208), + [aux_sym_preproc_def_token1] = ACTIONS(5208), + [aux_sym_preproc_if_token1] = ACTIONS(5208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5208), + [sym_preproc_directive] = ACTIONS(5208), + [anon_sym_LPAREN2] = ACTIONS(5208), + [sym_preproc_comment] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5212), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5208), + [aux_sym_end_program_statement_token2] = ACTIONS(5208), + [aux_sym_interface_statement_token1] = ACTIONS(5208), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5208), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5208), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5208), + [aux_sym_language_binding_token1] = ACTIONS(5208), + [aux_sym_procedure_attributes_token1] = ACTIONS(5208), + [aux_sym_procedure_attributes_token3] = ACTIONS(5208), + [aux_sym_contains_statement_token1] = ACTIONS(5208), + [aux_sym_use_statement_token1] = ACTIONS(5208), + [aux_sym_use_statement_token2] = ACTIONS(5208), + [aux_sym_implicit_statement_token1] = ACTIONS(5208), + [aux_sym_implicit_statement_token3] = ACTIONS(5208), + [aux_sym_implicit_statement_token4] = ACTIONS(5208), + [aux_sym_save_statement_token1] = ACTIONS(5208), + [aux_sym_private_statement_token1] = ACTIONS(5208), + [aux_sym_public_statement_token1] = ACTIONS(5208), + [aux_sym_namelist_statement_token1] = ACTIONS(5208), + [aux_sym_common_statement_token1] = ACTIONS(5208), + [aux_sym_import_statement_token1] = ACTIONS(5208), + [aux_sym_derived_type_definition_token1] = ACTIONS(5208), + [aux_sym_abstract_specifier_token1] = ACTIONS(5208), + [aux_sym_procedure_attribute_token6] = ACTIONS(5208), + [aux_sym_variable_attributes_token1] = ACTIONS(5208), + [aux_sym_variable_attributes_token2] = ACTIONS(5208), + [aux_sym_variable_attributes_token3] = ACTIONS(5208), + [aux_sym_variable_attributes_token4] = ACTIONS(5208), + [aux_sym_variable_attributes_token5] = ACTIONS(5208), + [aux_sym__intrinsic_type_token1] = ACTIONS(5208), + [aux_sym__intrinsic_type_token2] = ACTIONS(5208), + [aux_sym__intrinsic_type_token3] = ACTIONS(5208), + [aux_sym__intrinsic_type_token4] = ACTIONS(5208), + [aux_sym__intrinsic_type_token6] = ACTIONS(5208), + [aux_sym__intrinsic_type_token7] = ACTIONS(5208), + [aux_sym__intrinsic_type_token8] = ACTIONS(5208), + [aux_sym__intrinsic_type_token9] = ACTIONS(5208), + [aux_sym__intrinsic_type_token10] = ACTIONS(5208), + [aux_sym_derived_type_token1] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5208), + [aux_sym_type_qualifier_token1] = ACTIONS(5208), + [aux_sym_type_qualifier_token2] = ACTIONS(5208), + [aux_sym_equivalence_statement_token1] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5212), + [aux_sym_stop_statement_token1] = ACTIONS(5208), + [aux_sym_stop_statement_token2] = ACTIONS(5208), + [aux_sym_subroutine_call_token1] = ACTIONS(5208), + [aux_sym_keyword_statement_token1] = ACTIONS(5208), + [aux_sym_keyword_statement_token2] = ACTIONS(5208), + [aux_sym_keyword_statement_token3] = ACTIONS(5208), + [aux_sym_keyword_statement_token4] = ACTIONS(5208), + [aux_sym_keyword_statement_token6] = ACTIONS(5208), + [aux_sym_keyword_statement_token7] = ACTIONS(5208), + [aux_sym_include_statement_token1] = ACTIONS(5208), + [aux_sym_data_statement_token1] = ACTIONS(5208), + [aux_sym_do_loop_statement_token1] = ACTIONS(5208), + [aux_sym__inline_if_statement_token1] = ACTIONS(5208), + [aux_sym_end_if_statement_token1] = ACTIONS(5208), + [aux_sym_elseif_clause_token2] = ACTIONS(5208), + [aux_sym__inline_where_statement_token1] = ACTIONS(5208), + [aux_sym__forall_control_expression_token1] = ACTIONS(5208), + [aux_sym_select_case_statement_token1] = ACTIONS(5208), + [aux_sym_select_case_statement_token3] = ACTIONS(5208), + [aux_sym_select_type_statement_token1] = ACTIONS(5208), + [aux_sym_select_rank_statement_token2] = ACTIONS(5208), + [aux_sym_block_construct_token1] = ACTIONS(5208), + [aux_sym_associate_statement_token1] = ACTIONS(5208), + [aux_sym_format_statement_token1] = ACTIONS(5208), + [aux_sym_print_statement_token1] = ACTIONS(5208), + [aux_sym_open_statement_token1] = ACTIONS(5208), + [aux_sym_close_statement_token1] = ACTIONS(5208), + [aux_sym_inquire_statement_token1] = ACTIONS(5208), + [aux_sym_enum_statement_token1] = ACTIONS(5208), + [aux_sym_file_position_statement_token1] = ACTIONS(5208), + [aux_sym_file_position_statement_token2] = ACTIONS(5208), + [aux_sym_file_position_statement_token3] = ACTIONS(5208), + [aux_sym_file_position_statement_token4] = ACTIONS(5208), + [aux_sym_allocate_statement_token1] = ACTIONS(5208), + [aux_sym_entry_statement_token1] = ACTIONS(5208), + [aux_sym_logical_expression_token5] = ACTIONS(5212), + [anon_sym_DOT] = ACTIONS(5208), + [anon_sym_LPAREN_SLASH] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [aux_sym_boolean_literal_token1] = ACTIONS(5212), + [aux_sym_boolean_literal_token2] = ACTIONS(5212), + [aux_sym_null_literal_token1] = ACTIONS(5208), + [aux_sym_coarray_statement_token1] = ACTIONS(5208), + [aux_sym_coarray_statement_token2] = ACTIONS(5208), + [aux_sym_coarray_statement_token6] = ACTIONS(5208), + [aux_sym_coarray_statement_token8] = ACTIONS(5208), + [aux_sym_coarray_statement_token11] = ACTIONS(5208), + [aux_sym_coarray_statement_token12] = ACTIONS(5208), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5208), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5208), + [aux_sym_identifier_token1] = ACTIONS(5208), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5212), + [sym__float_literal] = ACTIONS(5212), + [sym__boz_literal] = ACTIONS(5212), + [sym__string_literal] = ACTIONS(5212), + [sym__string_literal_kind] = ACTIONS(5212), }, [1239] = { - [aux_sym_preproc_include_token1] = ACTIONS(5153), - [aux_sym_preproc_def_token1] = ACTIONS(5153), - [aux_sym_preproc_if_token1] = ACTIONS(5153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5153), - [sym_preproc_directive] = ACTIONS(5153), - [anon_sym_LPAREN2] = ACTIONS(5153), - [sym_preproc_comment] = ACTIONS(5221), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5153), - [aux_sym_interface_statement_token1] = ACTIONS(5153), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5153), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5153), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5153), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5153), - [aux_sym_language_binding_token1] = ACTIONS(5153), - [aux_sym_procedure_attributes_token1] = ACTIONS(5153), - [aux_sym_procedure_attributes_token3] = ACTIONS(5153), - [aux_sym_contains_statement_token1] = ACTIONS(5153), - [aux_sym_use_statement_token1] = ACTIONS(5153), - [aux_sym_use_statement_token2] = ACTIONS(5153), - [aux_sym_implicit_statement_token1] = ACTIONS(5153), - [aux_sym_implicit_statement_token3] = ACTIONS(5153), - [aux_sym_implicit_statement_token4] = ACTIONS(5153), - [aux_sym_save_statement_token1] = ACTIONS(5153), - [aux_sym_private_statement_token1] = ACTIONS(5153), - [aux_sym_public_statement_token1] = ACTIONS(5153), - [aux_sym_namelist_statement_token1] = ACTIONS(5153), - [aux_sym_common_statement_token1] = ACTIONS(5153), - [aux_sym_import_statement_token1] = ACTIONS(5153), - [aux_sym_derived_type_definition_token1] = ACTIONS(5153), - [aux_sym_abstract_specifier_token1] = ACTIONS(5153), - [aux_sym_procedure_attribute_token6] = ACTIONS(5153), - [aux_sym_variable_attributes_token1] = ACTIONS(5153), - [aux_sym_variable_attributes_token2] = ACTIONS(5153), - [aux_sym_variable_attributes_token3] = ACTIONS(5153), - [aux_sym_variable_attributes_token4] = ACTIONS(5153), - [aux_sym_variable_attributes_token5] = ACTIONS(5153), - [aux_sym__intrinsic_type_token1] = ACTIONS(5153), - [aux_sym__intrinsic_type_token2] = ACTIONS(5153), - [aux_sym__intrinsic_type_token3] = ACTIONS(5153), - [aux_sym__intrinsic_type_token4] = ACTIONS(5153), - [aux_sym__intrinsic_type_token6] = ACTIONS(5153), - [aux_sym__intrinsic_type_token7] = ACTIONS(5153), - [aux_sym__intrinsic_type_token8] = ACTIONS(5153), - [aux_sym__intrinsic_type_token9] = ACTIONS(5153), - [aux_sym__intrinsic_type_token10] = ACTIONS(5153), - [aux_sym_derived_type_token1] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5153), - [aux_sym_type_qualifier_token1] = ACTIONS(5153), - [aux_sym_type_qualifier_token2] = ACTIONS(5153), - [aux_sym_equivalence_statement_token1] = ACTIONS(5153), - [anon_sym_SEMI] = ACTIONS(5157), - [aux_sym_stop_statement_token1] = ACTIONS(5153), - [aux_sym_stop_statement_token2] = ACTIONS(5153), - [aux_sym_subroutine_call_token1] = ACTIONS(5153), - [aux_sym_keyword_statement_token1] = ACTIONS(5153), - [aux_sym_keyword_statement_token2] = ACTIONS(5153), - [aux_sym_keyword_statement_token3] = ACTIONS(5153), - [aux_sym_keyword_statement_token4] = ACTIONS(5153), - [aux_sym_keyword_statement_token6] = ACTIONS(5153), - [aux_sym_keyword_statement_token7] = ACTIONS(5153), - [aux_sym_include_statement_token1] = ACTIONS(5153), - [aux_sym_data_statement_token1] = ACTIONS(5153), - [aux_sym_do_loop_statement_token1] = ACTIONS(5153), - [aux_sym__inline_if_statement_token1] = ACTIONS(5153), - [aux_sym_end_if_statement_token1] = ACTIONS(5153), - [aux_sym_elseif_clause_token2] = ACTIONS(5153), - [aux_sym__inline_where_statement_token1] = ACTIONS(5153), - [aux_sym__forall_control_expression_token1] = ACTIONS(5153), - [aux_sym_select_case_statement_token1] = ACTIONS(5153), - [aux_sym_select_case_statement_token3] = ACTIONS(5153), - [aux_sym_select_type_statement_token1] = ACTIONS(5153), - [aux_sym_select_rank_statement_token2] = ACTIONS(5153), - [aux_sym_block_construct_token1] = ACTIONS(5153), - [aux_sym_associate_statement_token1] = ACTIONS(5153), - [aux_sym_format_statement_token1] = ACTIONS(5153), - [aux_sym_print_statement_token1] = ACTIONS(5153), - [aux_sym_open_statement_token1] = ACTIONS(5153), - [aux_sym_close_statement_token1] = ACTIONS(5153), - [aux_sym_inquire_statement_token1] = ACTIONS(5153), - [aux_sym_enum_statement_token1] = ACTIONS(5153), - [aux_sym_file_position_statement_token1] = ACTIONS(5153), - [aux_sym_file_position_statement_token2] = ACTIONS(5153), - [aux_sym_file_position_statement_token3] = ACTIONS(5153), - [aux_sym_file_position_statement_token4] = ACTIONS(5153), - [aux_sym_allocate_statement_token1] = ACTIONS(5153), - [aux_sym_entry_statement_token1] = ACTIONS(5153), - [aux_sym_logical_expression_token5] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_LPAREN_SLASH] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [aux_sym_boolean_literal_token1] = ACTIONS(5157), - [aux_sym_boolean_literal_token2] = ACTIONS(5157), - [aux_sym_null_literal_token1] = ACTIONS(5153), - [aux_sym_coarray_statement_token1] = ACTIONS(5153), - [aux_sym_coarray_statement_token2] = ACTIONS(5153), - [aux_sym_coarray_statement_token6] = ACTIONS(5153), - [aux_sym_coarray_statement_token8] = ACTIONS(5153), - [aux_sym_coarray_statement_token11] = ACTIONS(5153), - [aux_sym_coarray_statement_token12] = ACTIONS(5153), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5153), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5153), - [aux_sym_identifier_token1] = ACTIONS(5153), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5157), - [sym__float_literal] = ACTIONS(5157), - [sym__boz_literal] = ACTIONS(5157), - [sym__string_literal] = ACTIONS(5157), - [sym__string_literal_kind] = ACTIONS(5157), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(5214), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [1240] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [sym_preproc_comment] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(5216), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [1241] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token2] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [aux_sym_preproc_include_token1] = ACTIONS(5180), + [aux_sym_preproc_def_token1] = ACTIONS(5180), + [aux_sym_preproc_if_token1] = ACTIONS(5180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5180), + [sym_preproc_directive] = ACTIONS(5180), + [anon_sym_LPAREN2] = ACTIONS(5180), + [sym_preproc_comment] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5180), + [aux_sym_interface_statement_token1] = ACTIONS(5180), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5180), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5180), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5180), + [aux_sym_language_binding_token1] = ACTIONS(5180), + [aux_sym_procedure_attributes_token1] = ACTIONS(5180), + [aux_sym_procedure_attributes_token3] = ACTIONS(5180), + [aux_sym_end_function_statement_token1] = ACTIONS(5180), + [aux_sym_contains_statement_token1] = ACTIONS(5180), + [aux_sym_use_statement_token1] = ACTIONS(5180), + [aux_sym_use_statement_token2] = ACTIONS(5180), + [aux_sym_implicit_statement_token1] = ACTIONS(5180), + [aux_sym_implicit_statement_token3] = ACTIONS(5180), + [aux_sym_implicit_statement_token4] = ACTIONS(5180), + [aux_sym_save_statement_token1] = ACTIONS(5180), + [aux_sym_private_statement_token1] = ACTIONS(5180), + [aux_sym_public_statement_token1] = ACTIONS(5180), + [aux_sym_namelist_statement_token1] = ACTIONS(5180), + [aux_sym_common_statement_token1] = ACTIONS(5180), + [aux_sym_import_statement_token1] = ACTIONS(5180), + [aux_sym_derived_type_definition_token1] = ACTIONS(5180), + [aux_sym_abstract_specifier_token1] = ACTIONS(5180), + [aux_sym_procedure_attribute_token6] = ACTIONS(5180), + [aux_sym_variable_attributes_token1] = ACTIONS(5180), + [aux_sym_variable_attributes_token2] = ACTIONS(5180), + [aux_sym_variable_attributes_token3] = ACTIONS(5180), + [aux_sym_variable_attributes_token4] = ACTIONS(5180), + [aux_sym_variable_attributes_token5] = ACTIONS(5180), + [aux_sym__intrinsic_type_token1] = ACTIONS(5180), + [aux_sym__intrinsic_type_token2] = ACTIONS(5180), + [aux_sym__intrinsic_type_token3] = ACTIONS(5180), + [aux_sym__intrinsic_type_token4] = ACTIONS(5180), + [aux_sym__intrinsic_type_token6] = ACTIONS(5180), + [aux_sym__intrinsic_type_token7] = ACTIONS(5180), + [aux_sym__intrinsic_type_token8] = ACTIONS(5180), + [aux_sym__intrinsic_type_token9] = ACTIONS(5180), + [aux_sym__intrinsic_type_token10] = ACTIONS(5180), + [aux_sym_derived_type_token1] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5180), + [aux_sym_type_qualifier_token1] = ACTIONS(5180), + [aux_sym_type_qualifier_token2] = ACTIONS(5180), + [aux_sym_equivalence_statement_token1] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5184), + [aux_sym_stop_statement_token1] = ACTIONS(5180), + [aux_sym_stop_statement_token2] = ACTIONS(5180), + [aux_sym_subroutine_call_token1] = ACTIONS(5180), + [aux_sym_keyword_statement_token1] = ACTIONS(5180), + [aux_sym_keyword_statement_token2] = ACTIONS(5180), + [aux_sym_keyword_statement_token3] = ACTIONS(5180), + [aux_sym_keyword_statement_token4] = ACTIONS(5180), + [aux_sym_keyword_statement_token6] = ACTIONS(5180), + [aux_sym_keyword_statement_token7] = ACTIONS(5180), + [aux_sym_include_statement_token1] = ACTIONS(5180), + [aux_sym_data_statement_token1] = ACTIONS(5180), + [aux_sym_do_loop_statement_token1] = ACTIONS(5180), + [aux_sym__inline_if_statement_token1] = ACTIONS(5180), + [aux_sym_end_if_statement_token1] = ACTIONS(5180), + [aux_sym_elseif_clause_token2] = ACTIONS(5180), + [aux_sym__inline_where_statement_token1] = ACTIONS(5180), + [aux_sym__forall_control_expression_token1] = ACTIONS(5180), + [aux_sym_select_case_statement_token1] = ACTIONS(5180), + [aux_sym_select_case_statement_token3] = ACTIONS(5180), + [aux_sym_select_type_statement_token1] = ACTIONS(5180), + [aux_sym_select_rank_statement_token2] = ACTIONS(5180), + [aux_sym_block_construct_token1] = ACTIONS(5180), + [aux_sym_associate_statement_token1] = ACTIONS(5180), + [aux_sym_format_statement_token1] = ACTIONS(5180), + [aux_sym_print_statement_token1] = ACTIONS(5180), + [aux_sym_open_statement_token1] = ACTIONS(5180), + [aux_sym_close_statement_token1] = ACTIONS(5180), + [aux_sym_inquire_statement_token1] = ACTIONS(5180), + [aux_sym_enum_statement_token1] = ACTIONS(5180), + [aux_sym_file_position_statement_token1] = ACTIONS(5180), + [aux_sym_file_position_statement_token2] = ACTIONS(5180), + [aux_sym_file_position_statement_token3] = ACTIONS(5180), + [aux_sym_file_position_statement_token4] = ACTIONS(5180), + [aux_sym_allocate_statement_token1] = ACTIONS(5180), + [aux_sym_entry_statement_token1] = ACTIONS(5180), + [aux_sym_logical_expression_token5] = ACTIONS(5184), + [anon_sym_DOT] = ACTIONS(5180), + [anon_sym_LPAREN_SLASH] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [aux_sym_boolean_literal_token1] = ACTIONS(5184), + [aux_sym_boolean_literal_token2] = ACTIONS(5184), + [aux_sym_null_literal_token1] = ACTIONS(5180), + [aux_sym_coarray_statement_token1] = ACTIONS(5180), + [aux_sym_coarray_statement_token2] = ACTIONS(5180), + [aux_sym_coarray_statement_token6] = ACTIONS(5180), + [aux_sym_coarray_statement_token8] = ACTIONS(5180), + [aux_sym_coarray_statement_token11] = ACTIONS(5180), + [aux_sym_coarray_statement_token12] = ACTIONS(5180), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5180), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5180), + [aux_sym_identifier_token1] = ACTIONS(5180), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5184), + [sym__float_literal] = ACTIONS(5184), + [sym__boz_literal] = ACTIONS(5184), + [sym__string_literal] = ACTIONS(5184), + [sym__string_literal_kind] = ACTIONS(5184), + }, + [1242] = { + [aux_sym_preproc_include_token1] = ACTIONS(4976), + [aux_sym_preproc_def_token1] = ACTIONS(4976), + [aux_sym_preproc_if_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), + [sym_preproc_directive] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [sym_preproc_comment] = ACTIONS(5220), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_end_program_statement_token2] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token1] = ACTIONS(4976), + [aux_sym_interface_statement_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_language_binding_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token3] = ACTIONS(4976), + [aux_sym_end_function_statement_token1] = ACTIONS(4976), + [aux_sym_contains_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token2] = ACTIONS(4976), + [aux_sym_implicit_statement_token1] = ACTIONS(4976), + [aux_sym_implicit_statement_token3] = ACTIONS(4976), + [aux_sym_implicit_statement_token4] = ACTIONS(4976), + [aux_sym_save_statement_token1] = ACTIONS(4976), + [aux_sym_private_statement_token1] = ACTIONS(4976), + [aux_sym_public_statement_token1] = ACTIONS(4976), + [aux_sym_namelist_statement_token1] = ACTIONS(4976), + [aux_sym_common_statement_token1] = ACTIONS(4976), + [aux_sym_import_statement_token1] = ACTIONS(4976), + [aux_sym_derived_type_definition_token1] = ACTIONS(4976), + [aux_sym_abstract_specifier_token1] = ACTIONS(4976), + [aux_sym_procedure_attribute_token6] = ACTIONS(4976), + [aux_sym_variable_attributes_token1] = ACTIONS(4976), + [aux_sym_variable_attributes_token2] = ACTIONS(4976), + [aux_sym_variable_attributes_token3] = ACTIONS(4976), + [aux_sym_variable_attributes_token4] = ACTIONS(4976), + [aux_sym_variable_attributes_token5] = ACTIONS(4976), + [aux_sym__intrinsic_type_token1] = ACTIONS(4976), + [aux_sym__intrinsic_type_token2] = ACTIONS(4976), + [aux_sym__intrinsic_type_token3] = ACTIONS(4976), + [aux_sym__intrinsic_type_token4] = ACTIONS(4976), + [aux_sym__intrinsic_type_token6] = ACTIONS(4976), + [aux_sym__intrinsic_type_token7] = ACTIONS(4976), + [aux_sym__intrinsic_type_token8] = ACTIONS(4976), + [aux_sym__intrinsic_type_token9] = ACTIONS(4976), + [aux_sym__intrinsic_type_token10] = ACTIONS(4976), + [aux_sym_derived_type_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), + [aux_sym_type_qualifier_token1] = ACTIONS(4976), + [aux_sym_type_qualifier_token2] = ACTIONS(4976), + [aux_sym_equivalence_statement_token1] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4980), + [aux_sym_stop_statement_token1] = ACTIONS(4976), + [aux_sym_stop_statement_token2] = ACTIONS(4976), + [aux_sym_subroutine_call_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token2] = ACTIONS(4976), + [aux_sym_keyword_statement_token3] = ACTIONS(4976), + [aux_sym_keyword_statement_token4] = ACTIONS(4976), + [aux_sym_keyword_statement_token6] = ACTIONS(4976), + [aux_sym_keyword_statement_token7] = ACTIONS(4976), + [aux_sym_include_statement_token1] = ACTIONS(4976), + [aux_sym_data_statement_token1] = ACTIONS(4976), + [aux_sym_do_loop_statement_token1] = ACTIONS(4976), + [aux_sym__inline_if_statement_token1] = ACTIONS(4976), + [aux_sym_end_if_statement_token1] = ACTIONS(4976), + [aux_sym_elseif_clause_token2] = ACTIONS(4976), + [aux_sym__inline_where_statement_token1] = ACTIONS(4976), + [aux_sym__forall_control_expression_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token3] = ACTIONS(4976), + [aux_sym_select_type_statement_token1] = ACTIONS(4976), + [aux_sym_select_rank_statement_token2] = ACTIONS(4976), + [aux_sym_block_construct_token1] = ACTIONS(4976), + [aux_sym_associate_statement_token1] = ACTIONS(4976), + [aux_sym_format_statement_token1] = ACTIONS(4976), + [aux_sym_print_statement_token1] = ACTIONS(4976), + [aux_sym_open_statement_token1] = ACTIONS(4976), + [aux_sym_close_statement_token1] = ACTIONS(4976), + [aux_sym_inquire_statement_token1] = ACTIONS(4976), + [aux_sym_enum_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token2] = ACTIONS(4976), + [aux_sym_file_position_statement_token3] = ACTIONS(4976), + [aux_sym_file_position_statement_token4] = ACTIONS(4976), + [aux_sym_allocate_statement_token1] = ACTIONS(4976), + [aux_sym_entry_statement_token1] = ACTIONS(4976), + [aux_sym_logical_expression_token5] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), + [aux_sym_null_literal_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token2] = ACTIONS(4976), + [aux_sym_coarray_statement_token6] = ACTIONS(4976), + [aux_sym_coarray_statement_token8] = ACTIONS(4976), + [aux_sym_coarray_statement_token11] = ACTIONS(4976), + [aux_sym_coarray_statement_token12] = ACTIONS(4976), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), + [aux_sym_identifier_token1] = ACTIONS(4976), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, - [1242] = { + [1243] = { [aux_sym_preproc_include_token1] = ACTIONS(4976), [aux_sym_preproc_def_token1] = ACTIONS(4976), [aux_sym_preproc_if_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token2] = ACTIONS(4976), + [aux_sym_preproc_if_token2] = ACTIONS(4978), [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), [sym_preproc_directive] = ACTIONS(4976), [anon_sym_LPAREN2] = ACTIONS(4976), - [anon_sym_PLUS] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4976), [aux_sym_end_program_statement_token2] = ACTIONS(4976), @@ -257144,7 +257270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(4976), [aux_sym_type_qualifier_token2] = ACTIONS(4976), [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4980), [aux_sym_stop_statement_token1] = ACTIONS(4976), [aux_sym_stop_statement_token2] = ACTIONS(4976), [aux_sym_subroutine_call_token1] = ACTIONS(4976), @@ -257180,12 +257306,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4976), [aux_sym_allocate_statement_token1] = ACTIONS(4976), [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_logical_expression_token5] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(4980), [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_LPAREN_SLASH] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [aux_sym_boolean_literal_token1] = ACTIONS(4978), - [aux_sym_boolean_literal_token2] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), [aux_sym_null_literal_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token2] = ACTIONS(4976), @@ -257197,11477 +257323,11101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), [aux_sym_identifier_token1] = ACTIONS(4976), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - [sym__float_literal] = ACTIONS(4978), - [sym__boz_literal] = ACTIONS(4978), - [sym__string_literal] = ACTIONS(4978), - [sym__string_literal_kind] = ACTIONS(4978), - }, - [1243] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token2] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_end_program_statement_token2] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_subroutine_call_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_keyword_statement_token4] = ACTIONS(5037), - [aux_sym_keyword_statement_token6] = ACTIONS(5037), - [aux_sym_keyword_statement_token7] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym_do_loop_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym__inline_where_statement_token1] = ACTIONS(5037), - [aux_sym__forall_control_expression_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token3] = ACTIONS(5037), - [aux_sym_select_type_statement_token1] = ACTIONS(5037), - [aux_sym_select_rank_statement_token2] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_associate_statement_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_print_statement_token1] = ACTIONS(5037), - [aux_sym_open_statement_token1] = ACTIONS(5037), - [aux_sym_close_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token2] = ACTIONS(5037), - [aux_sym_file_position_statement_token3] = ACTIONS(5037), - [aux_sym_file_position_statement_token4] = ACTIONS(5037), - [aux_sym_allocate_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_logical_expression_token5] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_LPAREN_SLASH] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [aux_sym_boolean_literal_token1] = ACTIONS(5039), - [aux_sym_boolean_literal_token2] = ACTIONS(5039), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - [sym__float_literal] = ACTIONS(5039), - [sym__boz_literal] = ACTIONS(5039), - [sym__string_literal] = ACTIONS(5039), - [sym__string_literal_kind] = ACTIONS(5039), - }, - [1244] = { - [aux_sym_preproc_include_token1] = ACTIONS(5225), - [aux_sym_preproc_def_token1] = ACTIONS(5225), - [aux_sym_preproc_if_token1] = ACTIONS(5225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5225), - [sym_preproc_directive] = ACTIONS(5225), - [anon_sym_LPAREN2] = ACTIONS(5225), - [sym_preproc_comment] = ACTIONS(5227), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5225), - [aux_sym_interface_statement_token1] = ACTIONS(5225), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5225), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5225), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5225), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5225), - [aux_sym_language_binding_token1] = ACTIONS(5225), - [aux_sym_procedure_attributes_token1] = ACTIONS(5225), - [aux_sym_procedure_attributes_token3] = ACTIONS(5225), - [aux_sym_contains_statement_token1] = ACTIONS(5225), - [aux_sym_use_statement_token1] = ACTIONS(5225), - [aux_sym_use_statement_token2] = ACTIONS(5225), - [aux_sym_implicit_statement_token1] = ACTIONS(5225), - [aux_sym_implicit_statement_token3] = ACTIONS(5225), - [aux_sym_implicit_statement_token4] = ACTIONS(5225), - [aux_sym_save_statement_token1] = ACTIONS(5225), - [aux_sym_private_statement_token1] = ACTIONS(5225), - [aux_sym_public_statement_token1] = ACTIONS(5225), - [aux_sym_namelist_statement_token1] = ACTIONS(5225), - [aux_sym_common_statement_token1] = ACTIONS(5225), - [aux_sym_import_statement_token1] = ACTIONS(5225), - [aux_sym_derived_type_definition_token1] = ACTIONS(5225), - [aux_sym_abstract_specifier_token1] = ACTIONS(5225), - [aux_sym_procedure_attribute_token6] = ACTIONS(5225), - [aux_sym_variable_attributes_token1] = ACTIONS(5225), - [aux_sym_variable_attributes_token2] = ACTIONS(5225), - [aux_sym_variable_attributes_token3] = ACTIONS(5225), - [aux_sym_variable_attributes_token4] = ACTIONS(5225), - [aux_sym_variable_attributes_token5] = ACTIONS(5225), - [aux_sym__intrinsic_type_token1] = ACTIONS(5225), - [aux_sym__intrinsic_type_token2] = ACTIONS(5225), - [aux_sym__intrinsic_type_token3] = ACTIONS(5225), - [aux_sym__intrinsic_type_token4] = ACTIONS(5225), - [aux_sym__intrinsic_type_token6] = ACTIONS(5225), - [aux_sym__intrinsic_type_token7] = ACTIONS(5225), - [aux_sym__intrinsic_type_token8] = ACTIONS(5225), - [aux_sym__intrinsic_type_token9] = ACTIONS(5225), - [aux_sym__intrinsic_type_token10] = ACTIONS(5225), - [aux_sym_derived_type_token1] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5225), - [aux_sym_type_qualifier_token1] = ACTIONS(5225), - [aux_sym_type_qualifier_token2] = ACTIONS(5225), - [aux_sym_equivalence_statement_token1] = ACTIONS(5225), - [anon_sym_SEMI] = ACTIONS(5229), - [aux_sym_stop_statement_token1] = ACTIONS(5225), - [aux_sym_stop_statement_token2] = ACTIONS(5225), - [aux_sym_subroutine_call_token1] = ACTIONS(5225), - [aux_sym_keyword_statement_token1] = ACTIONS(5225), - [aux_sym_keyword_statement_token2] = ACTIONS(5225), - [aux_sym_keyword_statement_token3] = ACTIONS(5225), - [aux_sym_keyword_statement_token4] = ACTIONS(5225), - [aux_sym_keyword_statement_token6] = ACTIONS(5225), - [aux_sym_keyword_statement_token7] = ACTIONS(5225), - [aux_sym_include_statement_token1] = ACTIONS(5225), - [aux_sym_data_statement_token1] = ACTIONS(5225), - [aux_sym_do_loop_statement_token1] = ACTIONS(5225), - [aux_sym__inline_if_statement_token1] = ACTIONS(5225), - [aux_sym_end_if_statement_token1] = ACTIONS(5225), - [aux_sym_elseif_clause_token2] = ACTIONS(5225), - [aux_sym__inline_where_statement_token1] = ACTIONS(5225), - [aux_sym__forall_control_expression_token1] = ACTIONS(5225), - [aux_sym_select_case_statement_token1] = ACTIONS(5225), - [aux_sym_select_case_statement_token3] = ACTIONS(5225), - [aux_sym_select_type_statement_token1] = ACTIONS(5225), - [aux_sym_select_rank_statement_token2] = ACTIONS(5225), - [aux_sym_block_construct_token1] = ACTIONS(5225), - [aux_sym_associate_statement_token1] = ACTIONS(5225), - [aux_sym_format_statement_token1] = ACTIONS(5225), - [aux_sym_print_statement_token1] = ACTIONS(5225), - [aux_sym_open_statement_token1] = ACTIONS(5225), - [aux_sym_close_statement_token1] = ACTIONS(5225), - [aux_sym_inquire_statement_token1] = ACTIONS(5225), - [aux_sym_enum_statement_token1] = ACTIONS(5225), - [aux_sym_file_position_statement_token1] = ACTIONS(5225), - [aux_sym_file_position_statement_token2] = ACTIONS(5225), - [aux_sym_file_position_statement_token3] = ACTIONS(5225), - [aux_sym_file_position_statement_token4] = ACTIONS(5225), - [aux_sym_allocate_statement_token1] = ACTIONS(5225), - [aux_sym_entry_statement_token1] = ACTIONS(5225), - [aux_sym_logical_expression_token5] = ACTIONS(5229), - [anon_sym_DOT] = ACTIONS(5225), - [anon_sym_LPAREN_SLASH] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [aux_sym_boolean_literal_token1] = ACTIONS(5229), - [aux_sym_boolean_literal_token2] = ACTIONS(5229), - [aux_sym_null_literal_token1] = ACTIONS(5225), - [aux_sym_coarray_statement_token1] = ACTIONS(5225), - [aux_sym_coarray_statement_token2] = ACTIONS(5225), - [aux_sym_coarray_statement_token6] = ACTIONS(5225), - [aux_sym_coarray_statement_token8] = ACTIONS(5225), - [aux_sym_coarray_statement_token11] = ACTIONS(5225), - [aux_sym_coarray_statement_token12] = ACTIONS(5225), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5225), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5225), - [aux_sym_identifier_token1] = ACTIONS(5225), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5229), - [sym__float_literal] = ACTIONS(5229), - [sym__boz_literal] = ACTIONS(5229), - [sym__string_literal] = ACTIONS(5229), - [sym__string_literal_kind] = ACTIONS(5229), - }, - [1245] = { - [aux_sym_preproc_include_token1] = ACTIONS(5153), - [aux_sym_preproc_def_token1] = ACTIONS(5153), - [aux_sym_preproc_if_token1] = ACTIONS(5153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5153), - [sym_preproc_directive] = ACTIONS(5153), - [anon_sym_LPAREN2] = ACTIONS(5153), - [sym_preproc_comment] = ACTIONS(5231), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5153), - [aux_sym_interface_statement_token1] = ACTIONS(5153), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5153), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5153), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5153), - [aux_sym_language_binding_token1] = ACTIONS(5153), - [aux_sym_procedure_attributes_token1] = ACTIONS(5153), - [aux_sym_procedure_attributes_token3] = ACTIONS(5153), - [aux_sym_end_function_statement_token1] = ACTIONS(5153), - [aux_sym_contains_statement_token1] = ACTIONS(5153), - [aux_sym_use_statement_token1] = ACTIONS(5153), - [aux_sym_use_statement_token2] = ACTIONS(5153), - [aux_sym_implicit_statement_token1] = ACTIONS(5153), - [aux_sym_implicit_statement_token3] = ACTIONS(5153), - [aux_sym_implicit_statement_token4] = ACTIONS(5153), - [aux_sym_save_statement_token1] = ACTIONS(5153), - [aux_sym_private_statement_token1] = ACTIONS(5153), - [aux_sym_public_statement_token1] = ACTIONS(5153), - [aux_sym_namelist_statement_token1] = ACTIONS(5153), - [aux_sym_common_statement_token1] = ACTIONS(5153), - [aux_sym_import_statement_token1] = ACTIONS(5153), - [aux_sym_derived_type_definition_token1] = ACTIONS(5153), - [aux_sym_abstract_specifier_token1] = ACTIONS(5153), - [aux_sym_procedure_attribute_token6] = ACTIONS(5153), - [aux_sym_variable_attributes_token1] = ACTIONS(5153), - [aux_sym_variable_attributes_token2] = ACTIONS(5153), - [aux_sym_variable_attributes_token3] = ACTIONS(5153), - [aux_sym_variable_attributes_token4] = ACTIONS(5153), - [aux_sym_variable_attributes_token5] = ACTIONS(5153), - [aux_sym__intrinsic_type_token1] = ACTIONS(5153), - [aux_sym__intrinsic_type_token2] = ACTIONS(5153), - [aux_sym__intrinsic_type_token3] = ACTIONS(5153), - [aux_sym__intrinsic_type_token4] = ACTIONS(5153), - [aux_sym__intrinsic_type_token6] = ACTIONS(5153), - [aux_sym__intrinsic_type_token7] = ACTIONS(5153), - [aux_sym__intrinsic_type_token8] = ACTIONS(5153), - [aux_sym__intrinsic_type_token9] = ACTIONS(5153), - [aux_sym__intrinsic_type_token10] = ACTIONS(5153), - [aux_sym_derived_type_token1] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5153), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5153), - [aux_sym_type_qualifier_token1] = ACTIONS(5153), - [aux_sym_type_qualifier_token2] = ACTIONS(5153), - [aux_sym_equivalence_statement_token1] = ACTIONS(5153), - [anon_sym_SEMI] = ACTIONS(5157), - [aux_sym_stop_statement_token1] = ACTIONS(5153), - [aux_sym_stop_statement_token2] = ACTIONS(5153), - [aux_sym_subroutine_call_token1] = ACTIONS(5153), - [aux_sym_keyword_statement_token1] = ACTIONS(5153), - [aux_sym_keyword_statement_token2] = ACTIONS(5153), - [aux_sym_keyword_statement_token3] = ACTIONS(5153), - [aux_sym_keyword_statement_token4] = ACTIONS(5153), - [aux_sym_keyword_statement_token6] = ACTIONS(5153), - [aux_sym_keyword_statement_token7] = ACTIONS(5153), - [aux_sym_include_statement_token1] = ACTIONS(5153), - [aux_sym_data_statement_token1] = ACTIONS(5153), - [aux_sym_do_loop_statement_token1] = ACTIONS(5153), - [aux_sym__inline_if_statement_token1] = ACTIONS(5153), - [aux_sym_end_if_statement_token1] = ACTIONS(5153), - [aux_sym_elseif_clause_token2] = ACTIONS(5153), - [aux_sym__inline_where_statement_token1] = ACTIONS(5153), - [aux_sym__forall_control_expression_token1] = ACTIONS(5153), - [aux_sym_select_case_statement_token1] = ACTIONS(5153), - [aux_sym_select_case_statement_token3] = ACTIONS(5153), - [aux_sym_select_type_statement_token1] = ACTIONS(5153), - [aux_sym_select_rank_statement_token2] = ACTIONS(5153), - [aux_sym_block_construct_token1] = ACTIONS(5153), - [aux_sym_associate_statement_token1] = ACTIONS(5153), - [aux_sym_format_statement_token1] = ACTIONS(5153), - [aux_sym_print_statement_token1] = ACTIONS(5153), - [aux_sym_open_statement_token1] = ACTIONS(5153), - [aux_sym_close_statement_token1] = ACTIONS(5153), - [aux_sym_inquire_statement_token1] = ACTIONS(5153), - [aux_sym_enum_statement_token1] = ACTIONS(5153), - [aux_sym_file_position_statement_token1] = ACTIONS(5153), - [aux_sym_file_position_statement_token2] = ACTIONS(5153), - [aux_sym_file_position_statement_token3] = ACTIONS(5153), - [aux_sym_file_position_statement_token4] = ACTIONS(5153), - [aux_sym_allocate_statement_token1] = ACTIONS(5153), - [aux_sym_entry_statement_token1] = ACTIONS(5153), - [aux_sym_logical_expression_token5] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_LPAREN_SLASH] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [aux_sym_boolean_literal_token1] = ACTIONS(5157), - [aux_sym_boolean_literal_token2] = ACTIONS(5157), - [aux_sym_null_literal_token1] = ACTIONS(5153), - [aux_sym_coarray_statement_token1] = ACTIONS(5153), - [aux_sym_coarray_statement_token2] = ACTIONS(5153), - [aux_sym_coarray_statement_token6] = ACTIONS(5153), - [aux_sym_coarray_statement_token8] = ACTIONS(5153), - [aux_sym_coarray_statement_token11] = ACTIONS(5153), - [aux_sym_coarray_statement_token12] = ACTIONS(5153), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5153), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5153), - [aux_sym_identifier_token1] = ACTIONS(5153), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5157), - [sym__float_literal] = ACTIONS(5157), - [sym__boz_literal] = ACTIONS(5157), - [sym__string_literal] = ACTIONS(5157), - [sym__string_literal_kind] = ACTIONS(5157), - }, - [1246] = { - [aux_sym_preproc_include_token1] = ACTIONS(5233), - [aux_sym_preproc_def_token1] = ACTIONS(5233), - [aux_sym_preproc_if_token1] = ACTIONS(5233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5233), - [sym_preproc_directive] = ACTIONS(5233), - [anon_sym_LPAREN2] = ACTIONS(5233), - [sym_preproc_comment] = ACTIONS(5235), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5233), - [aux_sym_interface_statement_token1] = ACTIONS(5233), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5233), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5233), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5233), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5233), - [aux_sym_language_binding_token1] = ACTIONS(5233), - [aux_sym_procedure_attributes_token1] = ACTIONS(5233), - [aux_sym_procedure_attributes_token3] = ACTIONS(5233), - [aux_sym_contains_statement_token1] = ACTIONS(5233), - [aux_sym_use_statement_token1] = ACTIONS(5233), - [aux_sym_use_statement_token2] = ACTIONS(5233), - [aux_sym_implicit_statement_token1] = ACTIONS(5233), - [aux_sym_implicit_statement_token3] = ACTIONS(5233), - [aux_sym_implicit_statement_token4] = ACTIONS(5233), - [aux_sym_save_statement_token1] = ACTIONS(5233), - [aux_sym_private_statement_token1] = ACTIONS(5233), - [aux_sym_public_statement_token1] = ACTIONS(5233), - [aux_sym_namelist_statement_token1] = ACTIONS(5233), - [aux_sym_common_statement_token1] = ACTIONS(5233), - [aux_sym_import_statement_token1] = ACTIONS(5233), - [aux_sym_derived_type_definition_token1] = ACTIONS(5233), - [aux_sym_abstract_specifier_token1] = ACTIONS(5233), - [aux_sym_procedure_attribute_token6] = ACTIONS(5233), - [aux_sym_variable_attributes_token1] = ACTIONS(5233), - [aux_sym_variable_attributes_token2] = ACTIONS(5233), - [aux_sym_variable_attributes_token3] = ACTIONS(5233), - [aux_sym_variable_attributes_token4] = ACTIONS(5233), - [aux_sym_variable_attributes_token5] = ACTIONS(5233), - [aux_sym__intrinsic_type_token1] = ACTIONS(5233), - [aux_sym__intrinsic_type_token2] = ACTIONS(5233), - [aux_sym__intrinsic_type_token3] = ACTIONS(5233), - [aux_sym__intrinsic_type_token4] = ACTIONS(5233), - [aux_sym__intrinsic_type_token6] = ACTIONS(5233), - [aux_sym__intrinsic_type_token7] = ACTIONS(5233), - [aux_sym__intrinsic_type_token8] = ACTIONS(5233), - [aux_sym__intrinsic_type_token9] = ACTIONS(5233), - [aux_sym__intrinsic_type_token10] = ACTIONS(5233), - [aux_sym_derived_type_token1] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5233), - [aux_sym_type_qualifier_token1] = ACTIONS(5233), - [aux_sym_type_qualifier_token2] = ACTIONS(5233), - [aux_sym_equivalence_statement_token1] = ACTIONS(5233), - [anon_sym_SEMI] = ACTIONS(5237), - [aux_sym_stop_statement_token1] = ACTIONS(5233), - [aux_sym_stop_statement_token2] = ACTIONS(5233), - [aux_sym_subroutine_call_token1] = ACTIONS(5233), - [aux_sym_keyword_statement_token1] = ACTIONS(5233), - [aux_sym_keyword_statement_token2] = ACTIONS(5233), - [aux_sym_keyword_statement_token3] = ACTIONS(5233), - [aux_sym_keyword_statement_token4] = ACTIONS(5233), - [aux_sym_keyword_statement_token6] = ACTIONS(5233), - [aux_sym_keyword_statement_token7] = ACTIONS(5233), - [aux_sym_include_statement_token1] = ACTIONS(5233), - [aux_sym_data_statement_token1] = ACTIONS(5233), - [aux_sym_do_loop_statement_token1] = ACTIONS(5233), - [aux_sym__inline_if_statement_token1] = ACTIONS(5233), - [aux_sym_end_if_statement_token1] = ACTIONS(5233), - [aux_sym_elseif_clause_token2] = ACTIONS(5233), - [aux_sym__inline_where_statement_token1] = ACTIONS(5233), - [aux_sym__forall_control_expression_token1] = ACTIONS(5233), - [aux_sym_select_case_statement_token1] = ACTIONS(5233), - [aux_sym_select_case_statement_token3] = ACTIONS(5233), - [aux_sym_select_type_statement_token1] = ACTIONS(5233), - [aux_sym_select_rank_statement_token2] = ACTIONS(5233), - [aux_sym_block_construct_token1] = ACTIONS(5233), - [aux_sym_associate_statement_token1] = ACTIONS(5233), - [aux_sym_format_statement_token1] = ACTIONS(5233), - [aux_sym_print_statement_token1] = ACTIONS(5233), - [aux_sym_open_statement_token1] = ACTIONS(5233), - [aux_sym_close_statement_token1] = ACTIONS(5233), - [aux_sym_inquire_statement_token1] = ACTIONS(5233), - [aux_sym_enum_statement_token1] = ACTIONS(5233), - [aux_sym_file_position_statement_token1] = ACTIONS(5233), - [aux_sym_file_position_statement_token2] = ACTIONS(5233), - [aux_sym_file_position_statement_token3] = ACTIONS(5233), - [aux_sym_file_position_statement_token4] = ACTIONS(5233), - [aux_sym_allocate_statement_token1] = ACTIONS(5233), - [aux_sym_entry_statement_token1] = ACTIONS(5233), - [aux_sym_logical_expression_token5] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5233), - [anon_sym_LPAREN_SLASH] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [aux_sym_boolean_literal_token1] = ACTIONS(5237), - [aux_sym_boolean_literal_token2] = ACTIONS(5237), - [aux_sym_null_literal_token1] = ACTIONS(5233), - [aux_sym_coarray_statement_token1] = ACTIONS(5233), - [aux_sym_coarray_statement_token2] = ACTIONS(5233), - [aux_sym_coarray_statement_token6] = ACTIONS(5233), - [aux_sym_coarray_statement_token8] = ACTIONS(5233), - [aux_sym_coarray_statement_token11] = ACTIONS(5233), - [aux_sym_coarray_statement_token12] = ACTIONS(5233), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5233), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5233), - [aux_sym_identifier_token1] = ACTIONS(5233), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5237), - [sym__float_literal] = ACTIONS(5237), - [sym__boz_literal] = ACTIONS(5237), - [sym__string_literal] = ACTIONS(5237), - [sym__string_literal_kind] = ACTIONS(5237), - }, - [1247] = { - [aux_sym_preproc_include_token1] = ACTIONS(5225), - [aux_sym_preproc_def_token1] = ACTIONS(5225), - [aux_sym_preproc_if_token1] = ACTIONS(5225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5225), - [sym_preproc_directive] = ACTIONS(5225), - [anon_sym_LPAREN2] = ACTIONS(5225), - [sym_preproc_comment] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5225), - [aux_sym_interface_statement_token1] = ACTIONS(5225), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5225), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5225), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5225), - [aux_sym_language_binding_token1] = ACTIONS(5225), - [aux_sym_procedure_attributes_token1] = ACTIONS(5225), - [aux_sym_procedure_attributes_token3] = ACTIONS(5225), - [aux_sym_end_function_statement_token1] = ACTIONS(5225), - [aux_sym_contains_statement_token1] = ACTIONS(5225), - [aux_sym_use_statement_token1] = ACTIONS(5225), - [aux_sym_use_statement_token2] = ACTIONS(5225), - [aux_sym_implicit_statement_token1] = ACTIONS(5225), - [aux_sym_implicit_statement_token3] = ACTIONS(5225), - [aux_sym_implicit_statement_token4] = ACTIONS(5225), - [aux_sym_save_statement_token1] = ACTIONS(5225), - [aux_sym_private_statement_token1] = ACTIONS(5225), - [aux_sym_public_statement_token1] = ACTIONS(5225), - [aux_sym_namelist_statement_token1] = ACTIONS(5225), - [aux_sym_common_statement_token1] = ACTIONS(5225), - [aux_sym_import_statement_token1] = ACTIONS(5225), - [aux_sym_derived_type_definition_token1] = ACTIONS(5225), - [aux_sym_abstract_specifier_token1] = ACTIONS(5225), - [aux_sym_procedure_attribute_token6] = ACTIONS(5225), - [aux_sym_variable_attributes_token1] = ACTIONS(5225), - [aux_sym_variable_attributes_token2] = ACTIONS(5225), - [aux_sym_variable_attributes_token3] = ACTIONS(5225), - [aux_sym_variable_attributes_token4] = ACTIONS(5225), - [aux_sym_variable_attributes_token5] = ACTIONS(5225), - [aux_sym__intrinsic_type_token1] = ACTIONS(5225), - [aux_sym__intrinsic_type_token2] = ACTIONS(5225), - [aux_sym__intrinsic_type_token3] = ACTIONS(5225), - [aux_sym__intrinsic_type_token4] = ACTIONS(5225), - [aux_sym__intrinsic_type_token6] = ACTIONS(5225), - [aux_sym__intrinsic_type_token7] = ACTIONS(5225), - [aux_sym__intrinsic_type_token8] = ACTIONS(5225), - [aux_sym__intrinsic_type_token9] = ACTIONS(5225), - [aux_sym__intrinsic_type_token10] = ACTIONS(5225), - [aux_sym_derived_type_token1] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5225), - [aux_sym_type_qualifier_token1] = ACTIONS(5225), - [aux_sym_type_qualifier_token2] = ACTIONS(5225), - [aux_sym_equivalence_statement_token1] = ACTIONS(5225), - [anon_sym_SEMI] = ACTIONS(5229), - [aux_sym_stop_statement_token1] = ACTIONS(5225), - [aux_sym_stop_statement_token2] = ACTIONS(5225), - [aux_sym_subroutine_call_token1] = ACTIONS(5225), - [aux_sym_keyword_statement_token1] = ACTIONS(5225), - [aux_sym_keyword_statement_token2] = ACTIONS(5225), - [aux_sym_keyword_statement_token3] = ACTIONS(5225), - [aux_sym_keyword_statement_token4] = ACTIONS(5225), - [aux_sym_keyword_statement_token6] = ACTIONS(5225), - [aux_sym_keyword_statement_token7] = ACTIONS(5225), - [aux_sym_include_statement_token1] = ACTIONS(5225), - [aux_sym_data_statement_token1] = ACTIONS(5225), - [aux_sym_do_loop_statement_token1] = ACTIONS(5225), - [aux_sym__inline_if_statement_token1] = ACTIONS(5225), - [aux_sym_end_if_statement_token1] = ACTIONS(5225), - [aux_sym_elseif_clause_token2] = ACTIONS(5225), - [aux_sym__inline_where_statement_token1] = ACTIONS(5225), - [aux_sym__forall_control_expression_token1] = ACTIONS(5225), - [aux_sym_select_case_statement_token1] = ACTIONS(5225), - [aux_sym_select_case_statement_token3] = ACTIONS(5225), - [aux_sym_select_type_statement_token1] = ACTIONS(5225), - [aux_sym_select_rank_statement_token2] = ACTIONS(5225), - [aux_sym_block_construct_token1] = ACTIONS(5225), - [aux_sym_associate_statement_token1] = ACTIONS(5225), - [aux_sym_format_statement_token1] = ACTIONS(5225), - [aux_sym_print_statement_token1] = ACTIONS(5225), - [aux_sym_open_statement_token1] = ACTIONS(5225), - [aux_sym_close_statement_token1] = ACTIONS(5225), - [aux_sym_inquire_statement_token1] = ACTIONS(5225), - [aux_sym_enum_statement_token1] = ACTIONS(5225), - [aux_sym_file_position_statement_token1] = ACTIONS(5225), - [aux_sym_file_position_statement_token2] = ACTIONS(5225), - [aux_sym_file_position_statement_token3] = ACTIONS(5225), - [aux_sym_file_position_statement_token4] = ACTIONS(5225), - [aux_sym_allocate_statement_token1] = ACTIONS(5225), - [aux_sym_entry_statement_token1] = ACTIONS(5225), - [aux_sym_logical_expression_token5] = ACTIONS(5229), - [anon_sym_DOT] = ACTIONS(5225), - [anon_sym_LPAREN_SLASH] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [aux_sym_boolean_literal_token1] = ACTIONS(5229), - [aux_sym_boolean_literal_token2] = ACTIONS(5229), - [aux_sym_null_literal_token1] = ACTIONS(5225), - [aux_sym_coarray_statement_token1] = ACTIONS(5225), - [aux_sym_coarray_statement_token2] = ACTIONS(5225), - [aux_sym_coarray_statement_token6] = ACTIONS(5225), - [aux_sym_coarray_statement_token8] = ACTIONS(5225), - [aux_sym_coarray_statement_token11] = ACTIONS(5225), - [aux_sym_coarray_statement_token12] = ACTIONS(5225), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5225), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5225), - [aux_sym_identifier_token1] = ACTIONS(5225), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5229), - [sym__float_literal] = ACTIONS(5229), - [sym__boz_literal] = ACTIONS(5229), - [sym__string_literal] = ACTIONS(5229), - [sym__string_literal_kind] = ACTIONS(5229), - }, - [1248] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [sym_preproc_comment] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_end_function_statement_token1] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), + }, + [1244] = { + [aux_sym_preproc_include_token1] = ACTIONS(5194), + [aux_sym_preproc_def_token1] = ACTIONS(5194), + [aux_sym_preproc_if_token1] = ACTIONS(5194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5194), + [sym_preproc_directive] = ACTIONS(5194), + [anon_sym_LPAREN2] = ACTIONS(5194), + [sym_preproc_comment] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5194), + [aux_sym_end_program_statement_token2] = ACTIONS(5194), + [aux_sym_interface_statement_token1] = ACTIONS(5194), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5194), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5194), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5194), + [aux_sym_language_binding_token1] = ACTIONS(5194), + [aux_sym_procedure_attributes_token1] = ACTIONS(5194), + [aux_sym_procedure_attributes_token3] = ACTIONS(5194), + [aux_sym_contains_statement_token1] = ACTIONS(5194), + [aux_sym_use_statement_token1] = ACTIONS(5194), + [aux_sym_use_statement_token2] = ACTIONS(5194), + [aux_sym_implicit_statement_token1] = ACTIONS(5194), + [aux_sym_implicit_statement_token3] = ACTIONS(5194), + [aux_sym_implicit_statement_token4] = ACTIONS(5194), + [aux_sym_save_statement_token1] = ACTIONS(5194), + [aux_sym_private_statement_token1] = ACTIONS(5194), + [aux_sym_public_statement_token1] = ACTIONS(5194), + [aux_sym_namelist_statement_token1] = ACTIONS(5194), + [aux_sym_common_statement_token1] = ACTIONS(5194), + [aux_sym_import_statement_token1] = ACTIONS(5194), + [aux_sym_derived_type_definition_token1] = ACTIONS(5194), + [aux_sym_abstract_specifier_token1] = ACTIONS(5194), + [aux_sym_procedure_attribute_token6] = ACTIONS(5194), + [aux_sym_variable_attributes_token1] = ACTIONS(5194), + [aux_sym_variable_attributes_token2] = ACTIONS(5194), + [aux_sym_variable_attributes_token3] = ACTIONS(5194), + [aux_sym_variable_attributes_token4] = ACTIONS(5194), + [aux_sym_variable_attributes_token5] = ACTIONS(5194), + [aux_sym__intrinsic_type_token1] = ACTIONS(5194), + [aux_sym__intrinsic_type_token2] = ACTIONS(5194), + [aux_sym__intrinsic_type_token3] = ACTIONS(5194), + [aux_sym__intrinsic_type_token4] = ACTIONS(5194), + [aux_sym__intrinsic_type_token6] = ACTIONS(5194), + [aux_sym__intrinsic_type_token7] = ACTIONS(5194), + [aux_sym__intrinsic_type_token8] = ACTIONS(5194), + [aux_sym__intrinsic_type_token9] = ACTIONS(5194), + [aux_sym__intrinsic_type_token10] = ACTIONS(5194), + [aux_sym_derived_type_token1] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5194), + [aux_sym_type_qualifier_token1] = ACTIONS(5194), + [aux_sym_type_qualifier_token2] = ACTIONS(5194), + [aux_sym_equivalence_statement_token1] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5198), + [aux_sym_stop_statement_token1] = ACTIONS(5194), + [aux_sym_stop_statement_token2] = ACTIONS(5194), + [aux_sym_subroutine_call_token1] = ACTIONS(5194), + [aux_sym_keyword_statement_token1] = ACTIONS(5194), + [aux_sym_keyword_statement_token2] = ACTIONS(5194), + [aux_sym_keyword_statement_token3] = ACTIONS(5194), + [aux_sym_keyword_statement_token4] = ACTIONS(5194), + [aux_sym_keyword_statement_token6] = ACTIONS(5194), + [aux_sym_keyword_statement_token7] = ACTIONS(5194), + [aux_sym_include_statement_token1] = ACTIONS(5194), + [aux_sym_data_statement_token1] = ACTIONS(5194), + [aux_sym_do_loop_statement_token1] = ACTIONS(5194), + [aux_sym__inline_if_statement_token1] = ACTIONS(5194), + [aux_sym_end_if_statement_token1] = ACTIONS(5194), + [aux_sym_elseif_clause_token2] = ACTIONS(5194), + [aux_sym__inline_where_statement_token1] = ACTIONS(5194), + [aux_sym__forall_control_expression_token1] = ACTIONS(5194), + [aux_sym_select_case_statement_token1] = ACTIONS(5194), + [aux_sym_select_case_statement_token3] = ACTIONS(5194), + [aux_sym_select_type_statement_token1] = ACTIONS(5194), + [aux_sym_select_rank_statement_token2] = ACTIONS(5194), + [aux_sym_block_construct_token1] = ACTIONS(5194), + [aux_sym_associate_statement_token1] = ACTIONS(5194), + [aux_sym_format_statement_token1] = ACTIONS(5194), + [aux_sym_print_statement_token1] = ACTIONS(5194), + [aux_sym_open_statement_token1] = ACTIONS(5194), + [aux_sym_close_statement_token1] = ACTIONS(5194), + [aux_sym_inquire_statement_token1] = ACTIONS(5194), + [aux_sym_enum_statement_token1] = ACTIONS(5194), + [aux_sym_file_position_statement_token1] = ACTIONS(5194), + [aux_sym_file_position_statement_token2] = ACTIONS(5194), + [aux_sym_file_position_statement_token3] = ACTIONS(5194), + [aux_sym_file_position_statement_token4] = ACTIONS(5194), + [aux_sym_allocate_statement_token1] = ACTIONS(5194), + [aux_sym_entry_statement_token1] = ACTIONS(5194), + [aux_sym_logical_expression_token5] = ACTIONS(5198), + [anon_sym_DOT] = ACTIONS(5194), + [anon_sym_LPAREN_SLASH] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [aux_sym_boolean_literal_token1] = ACTIONS(5198), + [aux_sym_boolean_literal_token2] = ACTIONS(5198), + [aux_sym_null_literal_token1] = ACTIONS(5194), + [aux_sym_coarray_statement_token1] = ACTIONS(5194), + [aux_sym_coarray_statement_token2] = ACTIONS(5194), + [aux_sym_coarray_statement_token6] = ACTIONS(5194), + [aux_sym_coarray_statement_token8] = ACTIONS(5194), + [aux_sym_coarray_statement_token11] = ACTIONS(5194), + [aux_sym_coarray_statement_token12] = ACTIONS(5194), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5194), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5194), + [aux_sym_identifier_token1] = ACTIONS(5194), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5198), + [sym__float_literal] = ACTIONS(5198), + [sym__boz_literal] = ACTIONS(5198), + [sym__string_literal] = ACTIONS(5198), + [sym__string_literal_kind] = ACTIONS(5198), + }, + [1245] = { + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [sym_preproc_comment] = ACTIONS(5224), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_end_program_statement_token2] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), + }, + [1246] = { + [aux_sym_preproc_include_token1] = ACTIONS(5226), + [aux_sym_preproc_def_token1] = ACTIONS(5226), + [aux_sym_preproc_if_token1] = ACTIONS(5226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5226), + [sym_preproc_directive] = ACTIONS(5226), + [anon_sym_LPAREN2] = ACTIONS(5226), + [sym_preproc_comment] = ACTIONS(5228), + [anon_sym_PLUS] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5226), + [aux_sym_end_program_statement_token2] = ACTIONS(5226), + [aux_sym_interface_statement_token1] = ACTIONS(5226), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5226), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5226), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5226), + [aux_sym_language_binding_token1] = ACTIONS(5226), + [aux_sym_procedure_attributes_token1] = ACTIONS(5226), + [aux_sym_procedure_attributes_token3] = ACTIONS(5226), + [aux_sym_contains_statement_token1] = ACTIONS(5226), + [aux_sym_use_statement_token1] = ACTIONS(5226), + [aux_sym_use_statement_token2] = ACTIONS(5226), + [aux_sym_implicit_statement_token1] = ACTIONS(5226), + [aux_sym_implicit_statement_token3] = ACTIONS(5226), + [aux_sym_implicit_statement_token4] = ACTIONS(5226), + [aux_sym_save_statement_token1] = ACTIONS(5226), + [aux_sym_private_statement_token1] = ACTIONS(5226), + [aux_sym_public_statement_token1] = ACTIONS(5226), + [aux_sym_namelist_statement_token1] = ACTIONS(5226), + [aux_sym_common_statement_token1] = ACTIONS(5226), + [aux_sym_import_statement_token1] = ACTIONS(5226), + [aux_sym_derived_type_definition_token1] = ACTIONS(5226), + [aux_sym_abstract_specifier_token1] = ACTIONS(5226), + [aux_sym_procedure_attribute_token6] = ACTIONS(5226), + [aux_sym_variable_attributes_token1] = ACTIONS(5226), + [aux_sym_variable_attributes_token2] = ACTIONS(5226), + [aux_sym_variable_attributes_token3] = ACTIONS(5226), + [aux_sym_variable_attributes_token4] = ACTIONS(5226), + [aux_sym_variable_attributes_token5] = ACTIONS(5226), + [aux_sym__intrinsic_type_token1] = ACTIONS(5226), + [aux_sym__intrinsic_type_token2] = ACTIONS(5226), + [aux_sym__intrinsic_type_token3] = ACTIONS(5226), + [aux_sym__intrinsic_type_token4] = ACTIONS(5226), + [aux_sym__intrinsic_type_token6] = ACTIONS(5226), + [aux_sym__intrinsic_type_token7] = ACTIONS(5226), + [aux_sym__intrinsic_type_token8] = ACTIONS(5226), + [aux_sym__intrinsic_type_token9] = ACTIONS(5226), + [aux_sym__intrinsic_type_token10] = ACTIONS(5226), + [aux_sym_derived_type_token1] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5226), + [aux_sym_type_qualifier_token1] = ACTIONS(5226), + [aux_sym_type_qualifier_token2] = ACTIONS(5226), + [aux_sym_equivalence_statement_token1] = ACTIONS(5226), + [anon_sym_SEMI] = ACTIONS(5230), + [aux_sym_stop_statement_token1] = ACTIONS(5226), + [aux_sym_stop_statement_token2] = ACTIONS(5226), + [aux_sym_subroutine_call_token1] = ACTIONS(5226), + [aux_sym_keyword_statement_token1] = ACTIONS(5226), + [aux_sym_keyword_statement_token2] = ACTIONS(5226), + [aux_sym_keyword_statement_token3] = ACTIONS(5226), + [aux_sym_keyword_statement_token4] = ACTIONS(5226), + [aux_sym_keyword_statement_token6] = ACTIONS(5226), + [aux_sym_keyword_statement_token7] = ACTIONS(5226), + [aux_sym_include_statement_token1] = ACTIONS(5226), + [aux_sym_data_statement_token1] = ACTIONS(5226), + [aux_sym_do_loop_statement_token1] = ACTIONS(5226), + [aux_sym__inline_if_statement_token1] = ACTIONS(5226), + [aux_sym_end_if_statement_token1] = ACTIONS(5226), + [aux_sym_elseif_clause_token2] = ACTIONS(5226), + [aux_sym__inline_where_statement_token1] = ACTIONS(5226), + [aux_sym__forall_control_expression_token1] = ACTIONS(5226), + [aux_sym_select_case_statement_token1] = ACTIONS(5226), + [aux_sym_select_case_statement_token3] = ACTIONS(5226), + [aux_sym_select_type_statement_token1] = ACTIONS(5226), + [aux_sym_select_rank_statement_token2] = ACTIONS(5226), + [aux_sym_block_construct_token1] = ACTIONS(5226), + [aux_sym_associate_statement_token1] = ACTIONS(5226), + [aux_sym_format_statement_token1] = ACTIONS(5226), + [aux_sym_print_statement_token1] = ACTIONS(5226), + [aux_sym_open_statement_token1] = ACTIONS(5226), + [aux_sym_close_statement_token1] = ACTIONS(5226), + [aux_sym_inquire_statement_token1] = ACTIONS(5226), + [aux_sym_enum_statement_token1] = ACTIONS(5226), + [aux_sym_file_position_statement_token1] = ACTIONS(5226), + [aux_sym_file_position_statement_token2] = ACTIONS(5226), + [aux_sym_file_position_statement_token3] = ACTIONS(5226), + [aux_sym_file_position_statement_token4] = ACTIONS(5226), + [aux_sym_allocate_statement_token1] = ACTIONS(5226), + [aux_sym_entry_statement_token1] = ACTIONS(5226), + [aux_sym_logical_expression_token5] = ACTIONS(5230), + [anon_sym_DOT] = ACTIONS(5226), + [anon_sym_LPAREN_SLASH] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [aux_sym_boolean_literal_token1] = ACTIONS(5230), + [aux_sym_boolean_literal_token2] = ACTIONS(5230), + [aux_sym_null_literal_token1] = ACTIONS(5226), + [aux_sym_coarray_statement_token1] = ACTIONS(5226), + [aux_sym_coarray_statement_token2] = ACTIONS(5226), + [aux_sym_coarray_statement_token6] = ACTIONS(5226), + [aux_sym_coarray_statement_token8] = ACTIONS(5226), + [aux_sym_coarray_statement_token11] = ACTIONS(5226), + [aux_sym_coarray_statement_token12] = ACTIONS(5226), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5226), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5226), + [aux_sym_identifier_token1] = ACTIONS(5226), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5230), + [sym__float_literal] = ACTIONS(5230), + [sym__boz_literal] = ACTIONS(5230), + [sym__string_literal] = ACTIONS(5230), + [sym__string_literal_kind] = ACTIONS(5230), + }, + [1247] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(5232), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [1248] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [sym_preproc_comment] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1249] = { - [aux_sym_preproc_include_token1] = ACTIONS(5225), - [aux_sym_preproc_def_token1] = ACTIONS(5225), - [aux_sym_preproc_if_token1] = ACTIONS(5225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5225), - [sym_preproc_directive] = ACTIONS(5225), - [anon_sym_LPAREN2] = ACTIONS(5225), - [sym_preproc_comment] = ACTIONS(5243), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5225), - [aux_sym_interface_statement_token1] = ACTIONS(5225), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5225), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5225), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5225), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5225), - [aux_sym_language_binding_token1] = ACTIONS(5225), - [aux_sym_procedure_attributes_token1] = ACTIONS(5225), - [aux_sym_procedure_attributes_token3] = ACTIONS(5225), - [aux_sym_contains_statement_token1] = ACTIONS(5225), - [aux_sym_use_statement_token1] = ACTIONS(5225), - [aux_sym_use_statement_token2] = ACTIONS(5225), - [aux_sym_implicit_statement_token1] = ACTIONS(5225), - [aux_sym_implicit_statement_token3] = ACTIONS(5225), - [aux_sym_implicit_statement_token4] = ACTIONS(5225), - [aux_sym_save_statement_token1] = ACTIONS(5225), - [aux_sym_private_statement_token1] = ACTIONS(5225), - [aux_sym_public_statement_token1] = ACTIONS(5225), - [aux_sym_namelist_statement_token1] = ACTIONS(5225), - [aux_sym_common_statement_token1] = ACTIONS(5225), - [aux_sym_import_statement_token1] = ACTIONS(5225), - [aux_sym_derived_type_definition_token1] = ACTIONS(5225), - [aux_sym_abstract_specifier_token1] = ACTIONS(5225), - [aux_sym_procedure_attribute_token6] = ACTIONS(5225), - [aux_sym_variable_attributes_token1] = ACTIONS(5225), - [aux_sym_variable_attributes_token2] = ACTIONS(5225), - [aux_sym_variable_attributes_token3] = ACTIONS(5225), - [aux_sym_variable_attributes_token4] = ACTIONS(5225), - [aux_sym_variable_attributes_token5] = ACTIONS(5225), - [aux_sym__intrinsic_type_token1] = ACTIONS(5225), - [aux_sym__intrinsic_type_token2] = ACTIONS(5225), - [aux_sym__intrinsic_type_token3] = ACTIONS(5225), - [aux_sym__intrinsic_type_token4] = ACTIONS(5225), - [aux_sym__intrinsic_type_token6] = ACTIONS(5225), - [aux_sym__intrinsic_type_token7] = ACTIONS(5225), - [aux_sym__intrinsic_type_token8] = ACTIONS(5225), - [aux_sym__intrinsic_type_token9] = ACTIONS(5225), - [aux_sym__intrinsic_type_token10] = ACTIONS(5225), - [aux_sym_derived_type_token1] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5225), - [aux_sym_type_qualifier_token1] = ACTIONS(5225), - [aux_sym_type_qualifier_token2] = ACTIONS(5225), - [aux_sym_equivalence_statement_token1] = ACTIONS(5225), - [anon_sym_SEMI] = ACTIONS(5229), - [aux_sym_stop_statement_token1] = ACTIONS(5225), - [aux_sym_stop_statement_token2] = ACTIONS(5225), - [aux_sym_subroutine_call_token1] = ACTIONS(5225), - [aux_sym_keyword_statement_token1] = ACTIONS(5225), - [aux_sym_keyword_statement_token2] = ACTIONS(5225), - [aux_sym_keyword_statement_token3] = ACTIONS(5225), - [aux_sym_keyword_statement_token4] = ACTIONS(5225), - [aux_sym_keyword_statement_token6] = ACTIONS(5225), - [aux_sym_keyword_statement_token7] = ACTIONS(5225), - [aux_sym_include_statement_token1] = ACTIONS(5225), - [aux_sym_data_statement_token1] = ACTIONS(5225), - [aux_sym_do_loop_statement_token1] = ACTIONS(5225), - [aux_sym__inline_if_statement_token1] = ACTIONS(5225), - [aux_sym_end_if_statement_token1] = ACTIONS(5225), - [aux_sym_elseif_clause_token2] = ACTIONS(5225), - [aux_sym__inline_where_statement_token1] = ACTIONS(5225), - [aux_sym__forall_control_expression_token1] = ACTIONS(5225), - [aux_sym_select_case_statement_token1] = ACTIONS(5225), - [aux_sym_select_case_statement_token3] = ACTIONS(5225), - [aux_sym_select_type_statement_token1] = ACTIONS(5225), - [aux_sym_select_rank_statement_token2] = ACTIONS(5225), - [aux_sym_block_construct_token1] = ACTIONS(5225), - [aux_sym_associate_statement_token1] = ACTIONS(5225), - [aux_sym_format_statement_token1] = ACTIONS(5225), - [aux_sym_print_statement_token1] = ACTIONS(5225), - [aux_sym_open_statement_token1] = ACTIONS(5225), - [aux_sym_close_statement_token1] = ACTIONS(5225), - [aux_sym_inquire_statement_token1] = ACTIONS(5225), - [aux_sym_enum_statement_token1] = ACTIONS(5225), - [aux_sym_file_position_statement_token1] = ACTIONS(5225), - [aux_sym_file_position_statement_token2] = ACTIONS(5225), - [aux_sym_file_position_statement_token3] = ACTIONS(5225), - [aux_sym_file_position_statement_token4] = ACTIONS(5225), - [aux_sym_allocate_statement_token1] = ACTIONS(5225), - [aux_sym_entry_statement_token1] = ACTIONS(5225), - [aux_sym_logical_expression_token5] = ACTIONS(5229), - [anon_sym_DOT] = ACTIONS(5225), - [anon_sym_LPAREN_SLASH] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [aux_sym_boolean_literal_token1] = ACTIONS(5229), - [aux_sym_boolean_literal_token2] = ACTIONS(5229), - [aux_sym_null_literal_token1] = ACTIONS(5225), - [aux_sym_coarray_statement_token1] = ACTIONS(5225), - [aux_sym_coarray_statement_token2] = ACTIONS(5225), - [aux_sym_coarray_statement_token6] = ACTIONS(5225), - [aux_sym_coarray_statement_token8] = ACTIONS(5225), - [aux_sym_coarray_statement_token11] = ACTIONS(5225), - [aux_sym_coarray_statement_token12] = ACTIONS(5225), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5225), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5225), - [aux_sym_identifier_token1] = ACTIONS(5225), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5229), - [sym__float_literal] = ACTIONS(5229), - [sym__boz_literal] = ACTIONS(5229), - [sym__string_literal] = ACTIONS(5229), - [sym__string_literal_kind] = ACTIONS(5229), + [aux_sym_preproc_include_token1] = ACTIONS(5236), + [aux_sym_preproc_def_token1] = ACTIONS(5236), + [aux_sym_preproc_if_token1] = ACTIONS(5236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5236), + [sym_preproc_directive] = ACTIONS(5236), + [anon_sym_LPAREN2] = ACTIONS(5236), + [sym_preproc_comment] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5236), + [aux_sym_interface_statement_token1] = ACTIONS(5236), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5236), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5236), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5236), + [aux_sym_language_binding_token1] = ACTIONS(5236), + [aux_sym_procedure_attributes_token1] = ACTIONS(5236), + [aux_sym_procedure_attributes_token3] = ACTIONS(5236), + [aux_sym_end_function_statement_token1] = ACTIONS(5236), + [aux_sym_contains_statement_token1] = ACTIONS(5236), + [aux_sym_use_statement_token1] = ACTIONS(5236), + [aux_sym_use_statement_token2] = ACTIONS(5236), + [aux_sym_implicit_statement_token1] = ACTIONS(5236), + [aux_sym_implicit_statement_token3] = ACTIONS(5236), + [aux_sym_implicit_statement_token4] = ACTIONS(5236), + [aux_sym_save_statement_token1] = ACTIONS(5236), + [aux_sym_private_statement_token1] = ACTIONS(5236), + [aux_sym_public_statement_token1] = ACTIONS(5236), + [aux_sym_namelist_statement_token1] = ACTIONS(5236), + [aux_sym_common_statement_token1] = ACTIONS(5236), + [aux_sym_import_statement_token1] = ACTIONS(5236), + [aux_sym_derived_type_definition_token1] = ACTIONS(5236), + [aux_sym_abstract_specifier_token1] = ACTIONS(5236), + [aux_sym_procedure_attribute_token6] = ACTIONS(5236), + [aux_sym_variable_attributes_token1] = ACTIONS(5236), + [aux_sym_variable_attributes_token2] = ACTIONS(5236), + [aux_sym_variable_attributes_token3] = ACTIONS(5236), + [aux_sym_variable_attributes_token4] = ACTIONS(5236), + [aux_sym_variable_attributes_token5] = ACTIONS(5236), + [aux_sym__intrinsic_type_token1] = ACTIONS(5236), + [aux_sym__intrinsic_type_token2] = ACTIONS(5236), + [aux_sym__intrinsic_type_token3] = ACTIONS(5236), + [aux_sym__intrinsic_type_token4] = ACTIONS(5236), + [aux_sym__intrinsic_type_token6] = ACTIONS(5236), + [aux_sym__intrinsic_type_token7] = ACTIONS(5236), + [aux_sym__intrinsic_type_token8] = ACTIONS(5236), + [aux_sym__intrinsic_type_token9] = ACTIONS(5236), + [aux_sym__intrinsic_type_token10] = ACTIONS(5236), + [aux_sym_derived_type_token1] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5236), + [aux_sym_type_qualifier_token1] = ACTIONS(5236), + [aux_sym_type_qualifier_token2] = ACTIONS(5236), + [aux_sym_equivalence_statement_token1] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5240), + [aux_sym_stop_statement_token1] = ACTIONS(5236), + [aux_sym_stop_statement_token2] = ACTIONS(5236), + [aux_sym_subroutine_call_token1] = ACTIONS(5236), + [aux_sym_keyword_statement_token1] = ACTIONS(5236), + [aux_sym_keyword_statement_token2] = ACTIONS(5236), + [aux_sym_keyword_statement_token3] = ACTIONS(5236), + [aux_sym_keyword_statement_token4] = ACTIONS(5236), + [aux_sym_keyword_statement_token6] = ACTIONS(5236), + [aux_sym_keyword_statement_token7] = ACTIONS(5236), + [aux_sym_include_statement_token1] = ACTIONS(5236), + [aux_sym_data_statement_token1] = ACTIONS(5236), + [aux_sym_do_loop_statement_token1] = ACTIONS(5236), + [aux_sym__inline_if_statement_token1] = ACTIONS(5236), + [aux_sym_end_if_statement_token1] = ACTIONS(5236), + [aux_sym_elseif_clause_token2] = ACTIONS(5236), + [aux_sym__inline_where_statement_token1] = ACTIONS(5236), + [aux_sym__forall_control_expression_token1] = ACTIONS(5236), + [aux_sym_select_case_statement_token1] = ACTIONS(5236), + [aux_sym_select_case_statement_token3] = ACTIONS(5236), + [aux_sym_select_type_statement_token1] = ACTIONS(5236), + [aux_sym_select_rank_statement_token2] = ACTIONS(5236), + [aux_sym_block_construct_token1] = ACTIONS(5236), + [aux_sym_associate_statement_token1] = ACTIONS(5236), + [aux_sym_format_statement_token1] = ACTIONS(5236), + [aux_sym_print_statement_token1] = ACTIONS(5236), + [aux_sym_open_statement_token1] = ACTIONS(5236), + [aux_sym_close_statement_token1] = ACTIONS(5236), + [aux_sym_inquire_statement_token1] = ACTIONS(5236), + [aux_sym_enum_statement_token1] = ACTIONS(5236), + [aux_sym_file_position_statement_token1] = ACTIONS(5236), + [aux_sym_file_position_statement_token2] = ACTIONS(5236), + [aux_sym_file_position_statement_token3] = ACTIONS(5236), + [aux_sym_file_position_statement_token4] = ACTIONS(5236), + [aux_sym_allocate_statement_token1] = ACTIONS(5236), + [aux_sym_entry_statement_token1] = ACTIONS(5236), + [aux_sym_logical_expression_token5] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_LPAREN_SLASH] = ACTIONS(5240), + [anon_sym_LBRACK] = ACTIONS(5240), + [aux_sym_boolean_literal_token1] = ACTIONS(5240), + [aux_sym_boolean_literal_token2] = ACTIONS(5240), + [aux_sym_null_literal_token1] = ACTIONS(5236), + [aux_sym_coarray_statement_token1] = ACTIONS(5236), + [aux_sym_coarray_statement_token2] = ACTIONS(5236), + [aux_sym_coarray_statement_token6] = ACTIONS(5236), + [aux_sym_coarray_statement_token8] = ACTIONS(5236), + [aux_sym_coarray_statement_token11] = ACTIONS(5236), + [aux_sym_coarray_statement_token12] = ACTIONS(5236), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5236), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5236), + [aux_sym_identifier_token1] = ACTIONS(5236), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5240), + [sym__float_literal] = ACTIONS(5240), + [sym__boz_literal] = ACTIONS(5240), + [sym__string_literal] = ACTIONS(5240), + [sym__string_literal_kind] = ACTIONS(5240), }, [1250] = { - [aux_sym_preproc_include_token1] = ACTIONS(5177), - [aux_sym_preproc_def_token1] = ACTIONS(5177), - [aux_sym_preproc_if_token1] = ACTIONS(5177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5177), - [sym_preproc_directive] = ACTIONS(5177), - [anon_sym_LPAREN2] = ACTIONS(5177), - [sym_preproc_comment] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5177), - [aux_sym_interface_statement_token1] = ACTIONS(5177), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5177), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5177), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5177), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5177), - [aux_sym_language_binding_token1] = ACTIONS(5177), - [aux_sym_procedure_attributes_token1] = ACTIONS(5177), - [aux_sym_procedure_attributes_token3] = ACTIONS(5177), - [aux_sym_contains_statement_token1] = ACTIONS(5177), - [aux_sym_use_statement_token1] = ACTIONS(5177), - [aux_sym_use_statement_token2] = ACTIONS(5177), - [aux_sym_implicit_statement_token1] = ACTIONS(5177), - [aux_sym_implicit_statement_token3] = ACTIONS(5177), - [aux_sym_implicit_statement_token4] = ACTIONS(5177), - [aux_sym_save_statement_token1] = ACTIONS(5177), - [aux_sym_private_statement_token1] = ACTIONS(5177), - [aux_sym_public_statement_token1] = ACTIONS(5177), - [aux_sym_namelist_statement_token1] = ACTIONS(5177), - [aux_sym_common_statement_token1] = ACTIONS(5177), - [aux_sym_import_statement_token1] = ACTIONS(5177), - [aux_sym_derived_type_definition_token1] = ACTIONS(5177), - [aux_sym_abstract_specifier_token1] = ACTIONS(5177), - [aux_sym_procedure_attribute_token6] = ACTIONS(5177), - [aux_sym_variable_attributes_token1] = ACTIONS(5177), - [aux_sym_variable_attributes_token2] = ACTIONS(5177), - [aux_sym_variable_attributes_token3] = ACTIONS(5177), - [aux_sym_variable_attributes_token4] = ACTIONS(5177), - [aux_sym_variable_attributes_token5] = ACTIONS(5177), - [aux_sym__intrinsic_type_token1] = ACTIONS(5177), - [aux_sym__intrinsic_type_token2] = ACTIONS(5177), - [aux_sym__intrinsic_type_token3] = ACTIONS(5177), - [aux_sym__intrinsic_type_token4] = ACTIONS(5177), - [aux_sym__intrinsic_type_token6] = ACTIONS(5177), - [aux_sym__intrinsic_type_token7] = ACTIONS(5177), - [aux_sym__intrinsic_type_token8] = ACTIONS(5177), - [aux_sym__intrinsic_type_token9] = ACTIONS(5177), - [aux_sym__intrinsic_type_token10] = ACTIONS(5177), - [aux_sym_derived_type_token1] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5177), - [aux_sym_type_qualifier_token1] = ACTIONS(5177), - [aux_sym_type_qualifier_token2] = ACTIONS(5177), - [aux_sym_equivalence_statement_token1] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5181), - [aux_sym_stop_statement_token1] = ACTIONS(5177), - [aux_sym_stop_statement_token2] = ACTIONS(5177), - [aux_sym_subroutine_call_token1] = ACTIONS(5177), - [aux_sym_keyword_statement_token1] = ACTIONS(5177), - [aux_sym_keyword_statement_token2] = ACTIONS(5177), - [aux_sym_keyword_statement_token3] = ACTIONS(5177), - [aux_sym_keyword_statement_token4] = ACTIONS(5177), - [aux_sym_keyword_statement_token6] = ACTIONS(5177), - [aux_sym_keyword_statement_token7] = ACTIONS(5177), - [aux_sym_include_statement_token1] = ACTIONS(5177), - [aux_sym_data_statement_token1] = ACTIONS(5177), - [aux_sym_do_loop_statement_token1] = ACTIONS(5177), - [aux_sym__inline_if_statement_token1] = ACTIONS(5177), - [aux_sym_end_if_statement_token1] = ACTIONS(5177), - [aux_sym_elseif_clause_token2] = ACTIONS(5177), - [aux_sym__inline_where_statement_token1] = ACTIONS(5177), - [aux_sym__forall_control_expression_token1] = ACTIONS(5177), - [aux_sym_select_case_statement_token1] = ACTIONS(5177), - [aux_sym_select_case_statement_token3] = ACTIONS(5177), - [aux_sym_select_type_statement_token1] = ACTIONS(5177), - [aux_sym_select_rank_statement_token2] = ACTIONS(5177), - [aux_sym_block_construct_token1] = ACTIONS(5177), - [aux_sym_associate_statement_token1] = ACTIONS(5177), - [aux_sym_format_statement_token1] = ACTIONS(5177), - [aux_sym_print_statement_token1] = ACTIONS(5177), - [aux_sym_open_statement_token1] = ACTIONS(5177), - [aux_sym_close_statement_token1] = ACTIONS(5177), - [aux_sym_inquire_statement_token1] = ACTIONS(5177), - [aux_sym_enum_statement_token1] = ACTIONS(5177), - [aux_sym_file_position_statement_token1] = ACTIONS(5177), - [aux_sym_file_position_statement_token2] = ACTIONS(5177), - [aux_sym_file_position_statement_token3] = ACTIONS(5177), - [aux_sym_file_position_statement_token4] = ACTIONS(5177), - [aux_sym_allocate_statement_token1] = ACTIONS(5177), - [aux_sym_entry_statement_token1] = ACTIONS(5177), - [aux_sym_logical_expression_token5] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_LPAREN_SLASH] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(5181), - [aux_sym_boolean_literal_token1] = ACTIONS(5181), - [aux_sym_boolean_literal_token2] = ACTIONS(5181), - [aux_sym_null_literal_token1] = ACTIONS(5177), - [aux_sym_coarray_statement_token1] = ACTIONS(5177), - [aux_sym_coarray_statement_token2] = ACTIONS(5177), - [aux_sym_coarray_statement_token6] = ACTIONS(5177), - [aux_sym_coarray_statement_token8] = ACTIONS(5177), - [aux_sym_coarray_statement_token11] = ACTIONS(5177), - [aux_sym_coarray_statement_token12] = ACTIONS(5177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5177), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5177), - [aux_sym_identifier_token1] = ACTIONS(5177), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5181), - [sym__float_literal] = ACTIONS(5181), - [sym__boz_literal] = ACTIONS(5181), - [sym__string_literal] = ACTIONS(5181), - [sym__string_literal_kind] = ACTIONS(5181), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [sym_preproc_comment] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_end_function_statement_token1] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1251] = { - [aux_sym_preproc_include_token1] = ACTIONS(5147), - [aux_sym_preproc_def_token1] = ACTIONS(5147), - [aux_sym_preproc_if_token1] = ACTIONS(5147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5147), - [sym_preproc_directive] = ACTIONS(5147), - [anon_sym_LPAREN2] = ACTIONS(5147), - [sym_preproc_comment] = ACTIONS(5247), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5147), - [aux_sym_end_program_statement_token2] = ACTIONS(5147), - [aux_sym_interface_statement_token1] = ACTIONS(5147), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5147), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5147), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5147), - [aux_sym_language_binding_token1] = ACTIONS(5147), - [aux_sym_procedure_attributes_token1] = ACTIONS(5147), - [aux_sym_procedure_attributes_token3] = ACTIONS(5147), - [aux_sym_contains_statement_token1] = ACTIONS(5147), - [aux_sym_use_statement_token1] = ACTIONS(5147), - [aux_sym_use_statement_token2] = ACTIONS(5147), - [aux_sym_implicit_statement_token1] = ACTIONS(5147), - [aux_sym_implicit_statement_token3] = ACTIONS(5147), - [aux_sym_implicit_statement_token4] = ACTIONS(5147), - [aux_sym_save_statement_token1] = ACTIONS(5147), - [aux_sym_private_statement_token1] = ACTIONS(5147), - [aux_sym_public_statement_token1] = ACTIONS(5147), - [aux_sym_namelist_statement_token1] = ACTIONS(5147), - [aux_sym_common_statement_token1] = ACTIONS(5147), - [aux_sym_import_statement_token1] = ACTIONS(5147), - [aux_sym_derived_type_definition_token1] = ACTIONS(5147), - [aux_sym_abstract_specifier_token1] = ACTIONS(5147), - [aux_sym_procedure_attribute_token6] = ACTIONS(5147), - [aux_sym_variable_attributes_token1] = ACTIONS(5147), - [aux_sym_variable_attributes_token2] = ACTIONS(5147), - [aux_sym_variable_attributes_token3] = ACTIONS(5147), - [aux_sym_variable_attributes_token4] = ACTIONS(5147), - [aux_sym_variable_attributes_token5] = ACTIONS(5147), - [aux_sym__intrinsic_type_token1] = ACTIONS(5147), - [aux_sym__intrinsic_type_token2] = ACTIONS(5147), - [aux_sym__intrinsic_type_token3] = ACTIONS(5147), - [aux_sym__intrinsic_type_token4] = ACTIONS(5147), - [aux_sym__intrinsic_type_token6] = ACTIONS(5147), - [aux_sym__intrinsic_type_token7] = ACTIONS(5147), - [aux_sym__intrinsic_type_token8] = ACTIONS(5147), - [aux_sym__intrinsic_type_token9] = ACTIONS(5147), - [aux_sym__intrinsic_type_token10] = ACTIONS(5147), - [aux_sym_derived_type_token1] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5147), - [aux_sym_type_qualifier_token1] = ACTIONS(5147), - [aux_sym_type_qualifier_token2] = ACTIONS(5147), - [aux_sym_equivalence_statement_token1] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5151), - [aux_sym_stop_statement_token1] = ACTIONS(5147), - [aux_sym_stop_statement_token2] = ACTIONS(5147), - [aux_sym_subroutine_call_token1] = ACTIONS(5147), - [aux_sym_keyword_statement_token1] = ACTIONS(5147), - [aux_sym_keyword_statement_token2] = ACTIONS(5147), - [aux_sym_keyword_statement_token3] = ACTIONS(5147), - [aux_sym_keyword_statement_token4] = ACTIONS(5147), - [aux_sym_keyword_statement_token6] = ACTIONS(5147), - [aux_sym_keyword_statement_token7] = ACTIONS(5147), - [aux_sym_include_statement_token1] = ACTIONS(5147), - [aux_sym_data_statement_token1] = ACTIONS(5147), - [aux_sym_do_loop_statement_token1] = ACTIONS(5147), - [aux_sym__inline_if_statement_token1] = ACTIONS(5147), - [aux_sym_end_if_statement_token1] = ACTIONS(5147), - [aux_sym_elseif_clause_token2] = ACTIONS(5147), - [aux_sym__inline_where_statement_token1] = ACTIONS(5147), - [aux_sym__forall_control_expression_token1] = ACTIONS(5147), - [aux_sym_select_case_statement_token1] = ACTIONS(5147), - [aux_sym_select_case_statement_token3] = ACTIONS(5147), - [aux_sym_select_type_statement_token1] = ACTIONS(5147), - [aux_sym_select_rank_statement_token2] = ACTIONS(5147), - [aux_sym_block_construct_token1] = ACTIONS(5147), - [aux_sym_associate_statement_token1] = ACTIONS(5147), - [aux_sym_format_statement_token1] = ACTIONS(5147), - [aux_sym_print_statement_token1] = ACTIONS(5147), - [aux_sym_open_statement_token1] = ACTIONS(5147), - [aux_sym_close_statement_token1] = ACTIONS(5147), - [aux_sym_inquire_statement_token1] = ACTIONS(5147), - [aux_sym_enum_statement_token1] = ACTIONS(5147), - [aux_sym_file_position_statement_token1] = ACTIONS(5147), - [aux_sym_file_position_statement_token2] = ACTIONS(5147), - [aux_sym_file_position_statement_token3] = ACTIONS(5147), - [aux_sym_file_position_statement_token4] = ACTIONS(5147), - [aux_sym_allocate_statement_token1] = ACTIONS(5147), - [aux_sym_entry_statement_token1] = ACTIONS(5147), - [aux_sym_logical_expression_token5] = ACTIONS(5151), - [anon_sym_DOT] = ACTIONS(5147), - [anon_sym_LPAREN_SLASH] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [aux_sym_boolean_literal_token1] = ACTIONS(5151), - [aux_sym_boolean_literal_token2] = ACTIONS(5151), - [aux_sym_null_literal_token1] = ACTIONS(5147), - [aux_sym_coarray_statement_token1] = ACTIONS(5147), - [aux_sym_coarray_statement_token2] = ACTIONS(5147), - [aux_sym_coarray_statement_token6] = ACTIONS(5147), - [aux_sym_coarray_statement_token8] = ACTIONS(5147), - [aux_sym_coarray_statement_token11] = ACTIONS(5147), - [aux_sym_coarray_statement_token12] = ACTIONS(5147), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5147), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5147), - [aux_sym_identifier_token1] = ACTIONS(5147), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5151), - [sym__float_literal] = ACTIONS(5151), - [sym__boz_literal] = ACTIONS(5151), - [sym__string_literal] = ACTIONS(5151), - [sym__string_literal_kind] = ACTIONS(5151), + [aux_sym_preproc_include_token1] = ACTIONS(5194), + [aux_sym_preproc_def_token1] = ACTIONS(5194), + [aux_sym_preproc_if_token1] = ACTIONS(5194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5194), + [sym_preproc_directive] = ACTIONS(5194), + [anon_sym_LPAREN2] = ACTIONS(5194), + [sym_preproc_comment] = ACTIONS(5244), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5194), + [aux_sym_interface_statement_token1] = ACTIONS(5194), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5194), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5194), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5194), + [aux_sym_language_binding_token1] = ACTIONS(5194), + [aux_sym_procedure_attributes_token1] = ACTIONS(5194), + [aux_sym_procedure_attributes_token3] = ACTIONS(5194), + [aux_sym_end_function_statement_token1] = ACTIONS(5194), + [aux_sym_contains_statement_token1] = ACTIONS(5194), + [aux_sym_use_statement_token1] = ACTIONS(5194), + [aux_sym_use_statement_token2] = ACTIONS(5194), + [aux_sym_implicit_statement_token1] = ACTIONS(5194), + [aux_sym_implicit_statement_token3] = ACTIONS(5194), + [aux_sym_implicit_statement_token4] = ACTIONS(5194), + [aux_sym_save_statement_token1] = ACTIONS(5194), + [aux_sym_private_statement_token1] = ACTIONS(5194), + [aux_sym_public_statement_token1] = ACTIONS(5194), + [aux_sym_namelist_statement_token1] = ACTIONS(5194), + [aux_sym_common_statement_token1] = ACTIONS(5194), + [aux_sym_import_statement_token1] = ACTIONS(5194), + [aux_sym_derived_type_definition_token1] = ACTIONS(5194), + [aux_sym_abstract_specifier_token1] = ACTIONS(5194), + [aux_sym_procedure_attribute_token6] = ACTIONS(5194), + [aux_sym_variable_attributes_token1] = ACTIONS(5194), + [aux_sym_variable_attributes_token2] = ACTIONS(5194), + [aux_sym_variable_attributes_token3] = ACTIONS(5194), + [aux_sym_variable_attributes_token4] = ACTIONS(5194), + [aux_sym_variable_attributes_token5] = ACTIONS(5194), + [aux_sym__intrinsic_type_token1] = ACTIONS(5194), + [aux_sym__intrinsic_type_token2] = ACTIONS(5194), + [aux_sym__intrinsic_type_token3] = ACTIONS(5194), + [aux_sym__intrinsic_type_token4] = ACTIONS(5194), + [aux_sym__intrinsic_type_token6] = ACTIONS(5194), + [aux_sym__intrinsic_type_token7] = ACTIONS(5194), + [aux_sym__intrinsic_type_token8] = ACTIONS(5194), + [aux_sym__intrinsic_type_token9] = ACTIONS(5194), + [aux_sym__intrinsic_type_token10] = ACTIONS(5194), + [aux_sym_derived_type_token1] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5194), + [aux_sym_type_qualifier_token1] = ACTIONS(5194), + [aux_sym_type_qualifier_token2] = ACTIONS(5194), + [aux_sym_equivalence_statement_token1] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5198), + [aux_sym_stop_statement_token1] = ACTIONS(5194), + [aux_sym_stop_statement_token2] = ACTIONS(5194), + [aux_sym_subroutine_call_token1] = ACTIONS(5194), + [aux_sym_keyword_statement_token1] = ACTIONS(5194), + [aux_sym_keyword_statement_token2] = ACTIONS(5194), + [aux_sym_keyword_statement_token3] = ACTIONS(5194), + [aux_sym_keyword_statement_token4] = ACTIONS(5194), + [aux_sym_keyword_statement_token6] = ACTIONS(5194), + [aux_sym_keyword_statement_token7] = ACTIONS(5194), + [aux_sym_include_statement_token1] = ACTIONS(5194), + [aux_sym_data_statement_token1] = ACTIONS(5194), + [aux_sym_do_loop_statement_token1] = ACTIONS(5194), + [aux_sym__inline_if_statement_token1] = ACTIONS(5194), + [aux_sym_end_if_statement_token1] = ACTIONS(5194), + [aux_sym_elseif_clause_token2] = ACTIONS(5194), + [aux_sym__inline_where_statement_token1] = ACTIONS(5194), + [aux_sym__forall_control_expression_token1] = ACTIONS(5194), + [aux_sym_select_case_statement_token1] = ACTIONS(5194), + [aux_sym_select_case_statement_token3] = ACTIONS(5194), + [aux_sym_select_type_statement_token1] = ACTIONS(5194), + [aux_sym_select_rank_statement_token2] = ACTIONS(5194), + [aux_sym_block_construct_token1] = ACTIONS(5194), + [aux_sym_associate_statement_token1] = ACTIONS(5194), + [aux_sym_format_statement_token1] = ACTIONS(5194), + [aux_sym_print_statement_token1] = ACTIONS(5194), + [aux_sym_open_statement_token1] = ACTIONS(5194), + [aux_sym_close_statement_token1] = ACTIONS(5194), + [aux_sym_inquire_statement_token1] = ACTIONS(5194), + [aux_sym_enum_statement_token1] = ACTIONS(5194), + [aux_sym_file_position_statement_token1] = ACTIONS(5194), + [aux_sym_file_position_statement_token2] = ACTIONS(5194), + [aux_sym_file_position_statement_token3] = ACTIONS(5194), + [aux_sym_file_position_statement_token4] = ACTIONS(5194), + [aux_sym_allocate_statement_token1] = ACTIONS(5194), + [aux_sym_entry_statement_token1] = ACTIONS(5194), + [aux_sym_logical_expression_token5] = ACTIONS(5198), + [anon_sym_DOT] = ACTIONS(5194), + [anon_sym_LPAREN_SLASH] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [aux_sym_boolean_literal_token1] = ACTIONS(5198), + [aux_sym_boolean_literal_token2] = ACTIONS(5198), + [aux_sym_null_literal_token1] = ACTIONS(5194), + [aux_sym_coarray_statement_token1] = ACTIONS(5194), + [aux_sym_coarray_statement_token2] = ACTIONS(5194), + [aux_sym_coarray_statement_token6] = ACTIONS(5194), + [aux_sym_coarray_statement_token8] = ACTIONS(5194), + [aux_sym_coarray_statement_token11] = ACTIONS(5194), + [aux_sym_coarray_statement_token12] = ACTIONS(5194), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5194), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5194), + [aux_sym_identifier_token1] = ACTIONS(5194), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5198), + [sym__float_literal] = ACTIONS(5198), + [sym__boz_literal] = ACTIONS(5198), + [sym__string_literal] = ACTIONS(5198), + [sym__string_literal_kind] = ACTIONS(5198), }, [1252] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [aux_sym_preproc_include_token1] = ACTIONS(5226), + [aux_sym_preproc_def_token1] = ACTIONS(5226), + [aux_sym_preproc_if_token1] = ACTIONS(5226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5226), + [sym_preproc_directive] = ACTIONS(5226), + [anon_sym_LPAREN2] = ACTIONS(5226), + [sym_preproc_comment] = ACTIONS(5246), + [anon_sym_PLUS] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5226), + [aux_sym_interface_statement_token1] = ACTIONS(5226), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5226), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5226), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5226), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5226), + [aux_sym_language_binding_token1] = ACTIONS(5226), + [aux_sym_procedure_attributes_token1] = ACTIONS(5226), + [aux_sym_procedure_attributes_token3] = ACTIONS(5226), + [aux_sym_contains_statement_token1] = ACTIONS(5226), + [aux_sym_use_statement_token1] = ACTIONS(5226), + [aux_sym_use_statement_token2] = ACTIONS(5226), + [aux_sym_implicit_statement_token1] = ACTIONS(5226), + [aux_sym_implicit_statement_token3] = ACTIONS(5226), + [aux_sym_implicit_statement_token4] = ACTIONS(5226), + [aux_sym_save_statement_token1] = ACTIONS(5226), + [aux_sym_private_statement_token1] = ACTIONS(5226), + [aux_sym_public_statement_token1] = ACTIONS(5226), + [aux_sym_namelist_statement_token1] = ACTIONS(5226), + [aux_sym_common_statement_token1] = ACTIONS(5226), + [aux_sym_import_statement_token1] = ACTIONS(5226), + [aux_sym_derived_type_definition_token1] = ACTIONS(5226), + [aux_sym_abstract_specifier_token1] = ACTIONS(5226), + [aux_sym_procedure_attribute_token6] = ACTIONS(5226), + [aux_sym_variable_attributes_token1] = ACTIONS(5226), + [aux_sym_variable_attributes_token2] = ACTIONS(5226), + [aux_sym_variable_attributes_token3] = ACTIONS(5226), + [aux_sym_variable_attributes_token4] = ACTIONS(5226), + [aux_sym_variable_attributes_token5] = ACTIONS(5226), + [aux_sym__intrinsic_type_token1] = ACTIONS(5226), + [aux_sym__intrinsic_type_token2] = ACTIONS(5226), + [aux_sym__intrinsic_type_token3] = ACTIONS(5226), + [aux_sym__intrinsic_type_token4] = ACTIONS(5226), + [aux_sym__intrinsic_type_token6] = ACTIONS(5226), + [aux_sym__intrinsic_type_token7] = ACTIONS(5226), + [aux_sym__intrinsic_type_token8] = ACTIONS(5226), + [aux_sym__intrinsic_type_token9] = ACTIONS(5226), + [aux_sym__intrinsic_type_token10] = ACTIONS(5226), + [aux_sym_derived_type_token1] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5226), + [aux_sym_type_qualifier_token1] = ACTIONS(5226), + [aux_sym_type_qualifier_token2] = ACTIONS(5226), + [aux_sym_equivalence_statement_token1] = ACTIONS(5226), + [anon_sym_SEMI] = ACTIONS(5230), + [aux_sym_stop_statement_token1] = ACTIONS(5226), + [aux_sym_stop_statement_token2] = ACTIONS(5226), + [aux_sym_subroutine_call_token1] = ACTIONS(5226), + [aux_sym_keyword_statement_token1] = ACTIONS(5226), + [aux_sym_keyword_statement_token2] = ACTIONS(5226), + [aux_sym_keyword_statement_token3] = ACTIONS(5226), + [aux_sym_keyword_statement_token4] = ACTIONS(5226), + [aux_sym_keyword_statement_token6] = ACTIONS(5226), + [aux_sym_keyword_statement_token7] = ACTIONS(5226), + [aux_sym_include_statement_token1] = ACTIONS(5226), + [aux_sym_data_statement_token1] = ACTIONS(5226), + [aux_sym_do_loop_statement_token1] = ACTIONS(5226), + [aux_sym__inline_if_statement_token1] = ACTIONS(5226), + [aux_sym_end_if_statement_token1] = ACTIONS(5226), + [aux_sym_elseif_clause_token2] = ACTIONS(5226), + [aux_sym__inline_where_statement_token1] = ACTIONS(5226), + [aux_sym__forall_control_expression_token1] = ACTIONS(5226), + [aux_sym_select_case_statement_token1] = ACTIONS(5226), + [aux_sym_select_case_statement_token3] = ACTIONS(5226), + [aux_sym_select_type_statement_token1] = ACTIONS(5226), + [aux_sym_select_rank_statement_token2] = ACTIONS(5226), + [aux_sym_block_construct_token1] = ACTIONS(5226), + [aux_sym_associate_statement_token1] = ACTIONS(5226), + [aux_sym_format_statement_token1] = ACTIONS(5226), + [aux_sym_print_statement_token1] = ACTIONS(5226), + [aux_sym_open_statement_token1] = ACTIONS(5226), + [aux_sym_close_statement_token1] = ACTIONS(5226), + [aux_sym_inquire_statement_token1] = ACTIONS(5226), + [aux_sym_enum_statement_token1] = ACTIONS(5226), + [aux_sym_file_position_statement_token1] = ACTIONS(5226), + [aux_sym_file_position_statement_token2] = ACTIONS(5226), + [aux_sym_file_position_statement_token3] = ACTIONS(5226), + [aux_sym_file_position_statement_token4] = ACTIONS(5226), + [aux_sym_allocate_statement_token1] = ACTIONS(5226), + [aux_sym_entry_statement_token1] = ACTIONS(5226), + [aux_sym_logical_expression_token5] = ACTIONS(5230), + [anon_sym_DOT] = ACTIONS(5226), + [anon_sym_LPAREN_SLASH] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [aux_sym_boolean_literal_token1] = ACTIONS(5230), + [aux_sym_boolean_literal_token2] = ACTIONS(5230), + [aux_sym_null_literal_token1] = ACTIONS(5226), + [aux_sym_coarray_statement_token1] = ACTIONS(5226), + [aux_sym_coarray_statement_token2] = ACTIONS(5226), + [aux_sym_coarray_statement_token6] = ACTIONS(5226), + [aux_sym_coarray_statement_token8] = ACTIONS(5226), + [aux_sym_coarray_statement_token11] = ACTIONS(5226), + [aux_sym_coarray_statement_token12] = ACTIONS(5226), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5226), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5226), + [aux_sym_identifier_token1] = ACTIONS(5226), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5230), + [sym__float_literal] = ACTIONS(5230), + [sym__boz_literal] = ACTIONS(5230), + [sym__string_literal] = ACTIONS(5230), + [sym__string_literal_kind] = ACTIONS(5230), }, [1253] = { - [aux_sym_preproc_include_token1] = ACTIONS(5177), - [aux_sym_preproc_def_token1] = ACTIONS(5177), - [aux_sym_preproc_if_token1] = ACTIONS(5177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5177), - [sym_preproc_directive] = ACTIONS(5177), - [anon_sym_LPAREN2] = ACTIONS(5177), - [sym_preproc_comment] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5177), - [aux_sym_end_program_statement_token2] = ACTIONS(5177), - [aux_sym_interface_statement_token1] = ACTIONS(5177), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5177), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5177), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5177), - [aux_sym_language_binding_token1] = ACTIONS(5177), - [aux_sym_procedure_attributes_token1] = ACTIONS(5177), - [aux_sym_procedure_attributes_token3] = ACTIONS(5177), - [aux_sym_contains_statement_token1] = ACTIONS(5177), - [aux_sym_use_statement_token1] = ACTIONS(5177), - [aux_sym_use_statement_token2] = ACTIONS(5177), - [aux_sym_implicit_statement_token1] = ACTIONS(5177), - [aux_sym_implicit_statement_token3] = ACTIONS(5177), - [aux_sym_implicit_statement_token4] = ACTIONS(5177), - [aux_sym_save_statement_token1] = ACTIONS(5177), - [aux_sym_private_statement_token1] = ACTIONS(5177), - [aux_sym_public_statement_token1] = ACTIONS(5177), - [aux_sym_namelist_statement_token1] = ACTIONS(5177), - [aux_sym_common_statement_token1] = ACTIONS(5177), - [aux_sym_import_statement_token1] = ACTIONS(5177), - [aux_sym_derived_type_definition_token1] = ACTIONS(5177), - [aux_sym_abstract_specifier_token1] = ACTIONS(5177), - [aux_sym_procedure_attribute_token6] = ACTIONS(5177), - [aux_sym_variable_attributes_token1] = ACTIONS(5177), - [aux_sym_variable_attributes_token2] = ACTIONS(5177), - [aux_sym_variable_attributes_token3] = ACTIONS(5177), - [aux_sym_variable_attributes_token4] = ACTIONS(5177), - [aux_sym_variable_attributes_token5] = ACTIONS(5177), - [aux_sym__intrinsic_type_token1] = ACTIONS(5177), - [aux_sym__intrinsic_type_token2] = ACTIONS(5177), - [aux_sym__intrinsic_type_token3] = ACTIONS(5177), - [aux_sym__intrinsic_type_token4] = ACTIONS(5177), - [aux_sym__intrinsic_type_token6] = ACTIONS(5177), - [aux_sym__intrinsic_type_token7] = ACTIONS(5177), - [aux_sym__intrinsic_type_token8] = ACTIONS(5177), - [aux_sym__intrinsic_type_token9] = ACTIONS(5177), - [aux_sym__intrinsic_type_token10] = ACTIONS(5177), - [aux_sym_derived_type_token1] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5177), - [aux_sym_type_qualifier_token1] = ACTIONS(5177), - [aux_sym_type_qualifier_token2] = ACTIONS(5177), - [aux_sym_equivalence_statement_token1] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5181), - [aux_sym_stop_statement_token1] = ACTIONS(5177), - [aux_sym_stop_statement_token2] = ACTIONS(5177), - [aux_sym_subroutine_call_token1] = ACTIONS(5177), - [aux_sym_keyword_statement_token1] = ACTIONS(5177), - [aux_sym_keyword_statement_token2] = ACTIONS(5177), - [aux_sym_keyword_statement_token3] = ACTIONS(5177), - [aux_sym_keyword_statement_token4] = ACTIONS(5177), - [aux_sym_keyword_statement_token6] = ACTIONS(5177), - [aux_sym_keyword_statement_token7] = ACTIONS(5177), - [aux_sym_include_statement_token1] = ACTIONS(5177), - [aux_sym_data_statement_token1] = ACTIONS(5177), - [aux_sym_do_loop_statement_token1] = ACTIONS(5177), - [aux_sym__inline_if_statement_token1] = ACTIONS(5177), - [aux_sym_end_if_statement_token1] = ACTIONS(5177), - [aux_sym_elseif_clause_token2] = ACTIONS(5177), - [aux_sym__inline_where_statement_token1] = ACTIONS(5177), - [aux_sym__forall_control_expression_token1] = ACTIONS(5177), - [aux_sym_select_case_statement_token1] = ACTIONS(5177), - [aux_sym_select_case_statement_token3] = ACTIONS(5177), - [aux_sym_select_type_statement_token1] = ACTIONS(5177), - [aux_sym_select_rank_statement_token2] = ACTIONS(5177), - [aux_sym_block_construct_token1] = ACTIONS(5177), - [aux_sym_associate_statement_token1] = ACTIONS(5177), - [aux_sym_format_statement_token1] = ACTIONS(5177), - [aux_sym_print_statement_token1] = ACTIONS(5177), - [aux_sym_open_statement_token1] = ACTIONS(5177), - [aux_sym_close_statement_token1] = ACTIONS(5177), - [aux_sym_inquire_statement_token1] = ACTIONS(5177), - [aux_sym_enum_statement_token1] = ACTIONS(5177), - [aux_sym_file_position_statement_token1] = ACTIONS(5177), - [aux_sym_file_position_statement_token2] = ACTIONS(5177), - [aux_sym_file_position_statement_token3] = ACTIONS(5177), - [aux_sym_file_position_statement_token4] = ACTIONS(5177), - [aux_sym_allocate_statement_token1] = ACTIONS(5177), - [aux_sym_entry_statement_token1] = ACTIONS(5177), - [aux_sym_logical_expression_token5] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_LPAREN_SLASH] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(5181), - [aux_sym_boolean_literal_token1] = ACTIONS(5181), - [aux_sym_boolean_literal_token2] = ACTIONS(5181), - [aux_sym_null_literal_token1] = ACTIONS(5177), - [aux_sym_coarray_statement_token1] = ACTIONS(5177), - [aux_sym_coarray_statement_token2] = ACTIONS(5177), - [aux_sym_coarray_statement_token6] = ACTIONS(5177), - [aux_sym_coarray_statement_token8] = ACTIONS(5177), - [aux_sym_coarray_statement_token11] = ACTIONS(5177), - [aux_sym_coarray_statement_token12] = ACTIONS(5177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5177), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5177), - [aux_sym_identifier_token1] = ACTIONS(5177), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5181), - [sym__float_literal] = ACTIONS(5181), - [sym__boz_literal] = ACTIONS(5181), - [sym__string_literal] = ACTIONS(5181), - [sym__string_literal_kind] = ACTIONS(5181), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [sym_preproc_comment] = ACTIONS(5248), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, [1254] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [sym_preproc_comment] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [sym_preproc_comment] = ACTIONS(5250), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_end_function_statement_token1] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1255] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [sym_preproc_comment] = ACTIONS(5255), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [sym_preproc_comment] = ACTIONS(5252), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, [1256] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [sym_preproc_comment] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(5236), + [aux_sym_preproc_def_token1] = ACTIONS(5236), + [aux_sym_preproc_if_token1] = ACTIONS(5236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5236), + [sym_preproc_directive] = ACTIONS(5236), + [anon_sym_LPAREN2] = ACTIONS(5236), + [sym_preproc_comment] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5236), + [aux_sym_end_program_statement_token2] = ACTIONS(5236), + [aux_sym_interface_statement_token1] = ACTIONS(5236), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5236), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5236), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5236), + [aux_sym_language_binding_token1] = ACTIONS(5236), + [aux_sym_procedure_attributes_token1] = ACTIONS(5236), + [aux_sym_procedure_attributes_token3] = ACTIONS(5236), + [aux_sym_contains_statement_token1] = ACTIONS(5236), + [aux_sym_use_statement_token1] = ACTIONS(5236), + [aux_sym_use_statement_token2] = ACTIONS(5236), + [aux_sym_implicit_statement_token1] = ACTIONS(5236), + [aux_sym_implicit_statement_token3] = ACTIONS(5236), + [aux_sym_implicit_statement_token4] = ACTIONS(5236), + [aux_sym_save_statement_token1] = ACTIONS(5236), + [aux_sym_private_statement_token1] = ACTIONS(5236), + [aux_sym_public_statement_token1] = ACTIONS(5236), + [aux_sym_namelist_statement_token1] = ACTIONS(5236), + [aux_sym_common_statement_token1] = ACTIONS(5236), + [aux_sym_import_statement_token1] = ACTIONS(5236), + [aux_sym_derived_type_definition_token1] = ACTIONS(5236), + [aux_sym_abstract_specifier_token1] = ACTIONS(5236), + [aux_sym_procedure_attribute_token6] = ACTIONS(5236), + [aux_sym_variable_attributes_token1] = ACTIONS(5236), + [aux_sym_variable_attributes_token2] = ACTIONS(5236), + [aux_sym_variable_attributes_token3] = ACTIONS(5236), + [aux_sym_variable_attributes_token4] = ACTIONS(5236), + [aux_sym_variable_attributes_token5] = ACTIONS(5236), + [aux_sym__intrinsic_type_token1] = ACTIONS(5236), + [aux_sym__intrinsic_type_token2] = ACTIONS(5236), + [aux_sym__intrinsic_type_token3] = ACTIONS(5236), + [aux_sym__intrinsic_type_token4] = ACTIONS(5236), + [aux_sym__intrinsic_type_token6] = ACTIONS(5236), + [aux_sym__intrinsic_type_token7] = ACTIONS(5236), + [aux_sym__intrinsic_type_token8] = ACTIONS(5236), + [aux_sym__intrinsic_type_token9] = ACTIONS(5236), + [aux_sym__intrinsic_type_token10] = ACTIONS(5236), + [aux_sym_derived_type_token1] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5236), + [aux_sym_type_qualifier_token1] = ACTIONS(5236), + [aux_sym_type_qualifier_token2] = ACTIONS(5236), + [aux_sym_equivalence_statement_token1] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5240), + [aux_sym_stop_statement_token1] = ACTIONS(5236), + [aux_sym_stop_statement_token2] = ACTIONS(5236), + [aux_sym_subroutine_call_token1] = ACTIONS(5236), + [aux_sym_keyword_statement_token1] = ACTIONS(5236), + [aux_sym_keyword_statement_token2] = ACTIONS(5236), + [aux_sym_keyword_statement_token3] = ACTIONS(5236), + [aux_sym_keyword_statement_token4] = ACTIONS(5236), + [aux_sym_keyword_statement_token6] = ACTIONS(5236), + [aux_sym_keyword_statement_token7] = ACTIONS(5236), + [aux_sym_include_statement_token1] = ACTIONS(5236), + [aux_sym_data_statement_token1] = ACTIONS(5236), + [aux_sym_do_loop_statement_token1] = ACTIONS(5236), + [aux_sym__inline_if_statement_token1] = ACTIONS(5236), + [aux_sym_end_if_statement_token1] = ACTIONS(5236), + [aux_sym_elseif_clause_token2] = ACTIONS(5236), + [aux_sym__inline_where_statement_token1] = ACTIONS(5236), + [aux_sym__forall_control_expression_token1] = ACTIONS(5236), + [aux_sym_select_case_statement_token1] = ACTIONS(5236), + [aux_sym_select_case_statement_token3] = ACTIONS(5236), + [aux_sym_select_type_statement_token1] = ACTIONS(5236), + [aux_sym_select_rank_statement_token2] = ACTIONS(5236), + [aux_sym_block_construct_token1] = ACTIONS(5236), + [aux_sym_associate_statement_token1] = ACTIONS(5236), + [aux_sym_format_statement_token1] = ACTIONS(5236), + [aux_sym_print_statement_token1] = ACTIONS(5236), + [aux_sym_open_statement_token1] = ACTIONS(5236), + [aux_sym_close_statement_token1] = ACTIONS(5236), + [aux_sym_inquire_statement_token1] = ACTIONS(5236), + [aux_sym_enum_statement_token1] = ACTIONS(5236), + [aux_sym_file_position_statement_token1] = ACTIONS(5236), + [aux_sym_file_position_statement_token2] = ACTIONS(5236), + [aux_sym_file_position_statement_token3] = ACTIONS(5236), + [aux_sym_file_position_statement_token4] = ACTIONS(5236), + [aux_sym_allocate_statement_token1] = ACTIONS(5236), + [aux_sym_entry_statement_token1] = ACTIONS(5236), + [aux_sym_logical_expression_token5] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_LPAREN_SLASH] = ACTIONS(5240), + [anon_sym_LBRACK] = ACTIONS(5240), + [aux_sym_boolean_literal_token1] = ACTIONS(5240), + [aux_sym_boolean_literal_token2] = ACTIONS(5240), + [aux_sym_null_literal_token1] = ACTIONS(5236), + [aux_sym_coarray_statement_token1] = ACTIONS(5236), + [aux_sym_coarray_statement_token2] = ACTIONS(5236), + [aux_sym_coarray_statement_token6] = ACTIONS(5236), + [aux_sym_coarray_statement_token8] = ACTIONS(5236), + [aux_sym_coarray_statement_token11] = ACTIONS(5236), + [aux_sym_coarray_statement_token12] = ACTIONS(5236), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5236), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5236), + [aux_sym_identifier_token1] = ACTIONS(5236), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5240), + [sym__float_literal] = ACTIONS(5240), + [sym__boz_literal] = ACTIONS(5240), + [sym__string_literal] = ACTIONS(5240), + [sym__string_literal_kind] = ACTIONS(5240), }, [1257] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [sym_preproc_comment] = ACTIONS(5259), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_end_program_statement_token2] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [sym_preproc_comment] = ACTIONS(5256), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1258] = { - [aux_sym_preproc_include_token1] = ACTIONS(5177), - [aux_sym_preproc_def_token1] = ACTIONS(5177), - [aux_sym_preproc_if_token1] = ACTIONS(5177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5177), - [sym_preproc_directive] = ACTIONS(5177), - [anon_sym_LPAREN2] = ACTIONS(5177), - [sym_preproc_comment] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5177), - [aux_sym_interface_statement_token1] = ACTIONS(5177), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5177), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5177), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5177), - [aux_sym_language_binding_token1] = ACTIONS(5177), - [aux_sym_procedure_attributes_token1] = ACTIONS(5177), - [aux_sym_procedure_attributes_token3] = ACTIONS(5177), - [aux_sym_end_function_statement_token1] = ACTIONS(5177), - [aux_sym_contains_statement_token1] = ACTIONS(5177), - [aux_sym_use_statement_token1] = ACTIONS(5177), - [aux_sym_use_statement_token2] = ACTIONS(5177), - [aux_sym_implicit_statement_token1] = ACTIONS(5177), - [aux_sym_implicit_statement_token3] = ACTIONS(5177), - [aux_sym_implicit_statement_token4] = ACTIONS(5177), - [aux_sym_save_statement_token1] = ACTIONS(5177), - [aux_sym_private_statement_token1] = ACTIONS(5177), - [aux_sym_public_statement_token1] = ACTIONS(5177), - [aux_sym_namelist_statement_token1] = ACTIONS(5177), - [aux_sym_common_statement_token1] = ACTIONS(5177), - [aux_sym_import_statement_token1] = ACTIONS(5177), - [aux_sym_derived_type_definition_token1] = ACTIONS(5177), - [aux_sym_abstract_specifier_token1] = ACTIONS(5177), - [aux_sym_procedure_attribute_token6] = ACTIONS(5177), - [aux_sym_variable_attributes_token1] = ACTIONS(5177), - [aux_sym_variable_attributes_token2] = ACTIONS(5177), - [aux_sym_variable_attributes_token3] = ACTIONS(5177), - [aux_sym_variable_attributes_token4] = ACTIONS(5177), - [aux_sym_variable_attributes_token5] = ACTIONS(5177), - [aux_sym__intrinsic_type_token1] = ACTIONS(5177), - [aux_sym__intrinsic_type_token2] = ACTIONS(5177), - [aux_sym__intrinsic_type_token3] = ACTIONS(5177), - [aux_sym__intrinsic_type_token4] = ACTIONS(5177), - [aux_sym__intrinsic_type_token6] = ACTIONS(5177), - [aux_sym__intrinsic_type_token7] = ACTIONS(5177), - [aux_sym__intrinsic_type_token8] = ACTIONS(5177), - [aux_sym__intrinsic_type_token9] = ACTIONS(5177), - [aux_sym__intrinsic_type_token10] = ACTIONS(5177), - [aux_sym_derived_type_token1] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5177), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5177), - [aux_sym_type_qualifier_token1] = ACTIONS(5177), - [aux_sym_type_qualifier_token2] = ACTIONS(5177), - [aux_sym_equivalence_statement_token1] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5181), - [aux_sym_stop_statement_token1] = ACTIONS(5177), - [aux_sym_stop_statement_token2] = ACTIONS(5177), - [aux_sym_subroutine_call_token1] = ACTIONS(5177), - [aux_sym_keyword_statement_token1] = ACTIONS(5177), - [aux_sym_keyword_statement_token2] = ACTIONS(5177), - [aux_sym_keyword_statement_token3] = ACTIONS(5177), - [aux_sym_keyword_statement_token4] = ACTIONS(5177), - [aux_sym_keyword_statement_token6] = ACTIONS(5177), - [aux_sym_keyword_statement_token7] = ACTIONS(5177), - [aux_sym_include_statement_token1] = ACTIONS(5177), - [aux_sym_data_statement_token1] = ACTIONS(5177), - [aux_sym_do_loop_statement_token1] = ACTIONS(5177), - [aux_sym__inline_if_statement_token1] = ACTIONS(5177), - [aux_sym_end_if_statement_token1] = ACTIONS(5177), - [aux_sym_elseif_clause_token2] = ACTIONS(5177), - [aux_sym__inline_where_statement_token1] = ACTIONS(5177), - [aux_sym__forall_control_expression_token1] = ACTIONS(5177), - [aux_sym_select_case_statement_token1] = ACTIONS(5177), - [aux_sym_select_case_statement_token3] = ACTIONS(5177), - [aux_sym_select_type_statement_token1] = ACTIONS(5177), - [aux_sym_select_rank_statement_token2] = ACTIONS(5177), - [aux_sym_block_construct_token1] = ACTIONS(5177), - [aux_sym_associate_statement_token1] = ACTIONS(5177), - [aux_sym_format_statement_token1] = ACTIONS(5177), - [aux_sym_print_statement_token1] = ACTIONS(5177), - [aux_sym_open_statement_token1] = ACTIONS(5177), - [aux_sym_close_statement_token1] = ACTIONS(5177), - [aux_sym_inquire_statement_token1] = ACTIONS(5177), - [aux_sym_enum_statement_token1] = ACTIONS(5177), - [aux_sym_file_position_statement_token1] = ACTIONS(5177), - [aux_sym_file_position_statement_token2] = ACTIONS(5177), - [aux_sym_file_position_statement_token3] = ACTIONS(5177), - [aux_sym_file_position_statement_token4] = ACTIONS(5177), - [aux_sym_allocate_statement_token1] = ACTIONS(5177), - [aux_sym_entry_statement_token1] = ACTIONS(5177), - [aux_sym_logical_expression_token5] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_LPAREN_SLASH] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(5181), - [aux_sym_boolean_literal_token1] = ACTIONS(5181), - [aux_sym_boolean_literal_token2] = ACTIONS(5181), - [aux_sym_null_literal_token1] = ACTIONS(5177), - [aux_sym_coarray_statement_token1] = ACTIONS(5177), - [aux_sym_coarray_statement_token2] = ACTIONS(5177), - [aux_sym_coarray_statement_token6] = ACTIONS(5177), - [aux_sym_coarray_statement_token8] = ACTIONS(5177), - [aux_sym_coarray_statement_token11] = ACTIONS(5177), - [aux_sym_coarray_statement_token12] = ACTIONS(5177), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5177), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5177), - [aux_sym_identifier_token1] = ACTIONS(5177), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5181), - [sym__float_literal] = ACTIONS(5181), - [sym__boz_literal] = ACTIONS(5181), - [sym__string_literal] = ACTIONS(5181), - [sym__string_literal_kind] = ACTIONS(5181), + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [sym_preproc_comment] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_end_function_statement_token1] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, [1259] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [sym_preproc_comment] = ACTIONS(5263), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [sym_preproc_comment] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1260] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [sym_preproc_comment] = ACTIONS(5265), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token2] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_end_program_statement_token2] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, [1261] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token2] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_LPAREN2] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_end_program_statement_token2] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_subroutine_call_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_keyword_statement_token4] = ACTIONS(5073), - [aux_sym_keyword_statement_token6] = ACTIONS(5073), - [aux_sym_keyword_statement_token7] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym_do_loop_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym__inline_where_statement_token1] = ACTIONS(5073), - [aux_sym__forall_control_expression_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token3] = ACTIONS(5073), - [aux_sym_select_type_statement_token1] = ACTIONS(5073), - [aux_sym_select_rank_statement_token2] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_associate_statement_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_print_statement_token1] = ACTIONS(5073), - [aux_sym_open_statement_token1] = ACTIONS(5073), - [aux_sym_close_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token2] = ACTIONS(5073), - [aux_sym_file_position_statement_token3] = ACTIONS(5073), - [aux_sym_file_position_statement_token4] = ACTIONS(5073), - [aux_sym_allocate_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_logical_expression_token5] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LPAREN_SLASH] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [aux_sym_boolean_literal_token1] = ACTIONS(5075), - [aux_sym_boolean_literal_token2] = ACTIONS(5075), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - [sym__float_literal] = ACTIONS(5075), - [sym__boz_literal] = ACTIONS(5075), - [sym__string_literal] = ACTIONS(5075), - [sym__string_literal_kind] = ACTIONS(5075), + [aux_sym_preproc_include_token1] = ACTIONS(5262), + [aux_sym_preproc_def_token1] = ACTIONS(5262), + [aux_sym_preproc_if_token1] = ACTIONS(5262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5262), + [sym_preproc_directive] = ACTIONS(5262), + [anon_sym_LPAREN2] = ACTIONS(5262), + [sym_preproc_comment] = ACTIONS(5264), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5262), + [aux_sym_end_program_statement_token2] = ACTIONS(5262), + [aux_sym_interface_statement_token1] = ACTIONS(5262), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5262), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5262), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5262), + [aux_sym_language_binding_token1] = ACTIONS(5262), + [aux_sym_procedure_attributes_token1] = ACTIONS(5262), + [aux_sym_procedure_attributes_token3] = ACTIONS(5262), + [aux_sym_contains_statement_token1] = ACTIONS(5262), + [aux_sym_use_statement_token1] = ACTIONS(5262), + [aux_sym_use_statement_token2] = ACTIONS(5262), + [aux_sym_implicit_statement_token1] = ACTIONS(5262), + [aux_sym_implicit_statement_token3] = ACTIONS(5262), + [aux_sym_implicit_statement_token4] = ACTIONS(5262), + [aux_sym_save_statement_token1] = ACTIONS(5262), + [aux_sym_private_statement_token1] = ACTIONS(5262), + [aux_sym_public_statement_token1] = ACTIONS(5262), + [aux_sym_namelist_statement_token1] = ACTIONS(5262), + [aux_sym_common_statement_token1] = ACTIONS(5262), + [aux_sym_import_statement_token1] = ACTIONS(5262), + [aux_sym_derived_type_definition_token1] = ACTIONS(5262), + [aux_sym_abstract_specifier_token1] = ACTIONS(5262), + [aux_sym_procedure_attribute_token6] = ACTIONS(5262), + [aux_sym_variable_attributes_token1] = ACTIONS(5262), + [aux_sym_variable_attributes_token2] = ACTIONS(5262), + [aux_sym_variable_attributes_token3] = ACTIONS(5262), + [aux_sym_variable_attributes_token4] = ACTIONS(5262), + [aux_sym_variable_attributes_token5] = ACTIONS(5262), + [aux_sym__intrinsic_type_token1] = ACTIONS(5262), + [aux_sym__intrinsic_type_token2] = ACTIONS(5262), + [aux_sym__intrinsic_type_token3] = ACTIONS(5262), + [aux_sym__intrinsic_type_token4] = ACTIONS(5262), + [aux_sym__intrinsic_type_token6] = ACTIONS(5262), + [aux_sym__intrinsic_type_token7] = ACTIONS(5262), + [aux_sym__intrinsic_type_token8] = ACTIONS(5262), + [aux_sym__intrinsic_type_token9] = ACTIONS(5262), + [aux_sym__intrinsic_type_token10] = ACTIONS(5262), + [aux_sym_derived_type_token1] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5262), + [aux_sym_type_qualifier_token1] = ACTIONS(5262), + [aux_sym_type_qualifier_token2] = ACTIONS(5262), + [aux_sym_equivalence_statement_token1] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5266), + [aux_sym_stop_statement_token1] = ACTIONS(5262), + [aux_sym_stop_statement_token2] = ACTIONS(5262), + [aux_sym_subroutine_call_token1] = ACTIONS(5262), + [aux_sym_keyword_statement_token1] = ACTIONS(5262), + [aux_sym_keyword_statement_token2] = ACTIONS(5262), + [aux_sym_keyword_statement_token3] = ACTIONS(5262), + [aux_sym_keyword_statement_token4] = ACTIONS(5262), + [aux_sym_keyword_statement_token6] = ACTIONS(5262), + [aux_sym_keyword_statement_token7] = ACTIONS(5262), + [aux_sym_include_statement_token1] = ACTIONS(5262), + [aux_sym_data_statement_token1] = ACTIONS(5262), + [aux_sym_do_loop_statement_token1] = ACTIONS(5262), + [aux_sym__inline_if_statement_token1] = ACTIONS(5262), + [aux_sym_end_if_statement_token1] = ACTIONS(5262), + [aux_sym_elseif_clause_token2] = ACTIONS(5262), + [aux_sym__inline_where_statement_token1] = ACTIONS(5262), + [aux_sym__forall_control_expression_token1] = ACTIONS(5262), + [aux_sym_select_case_statement_token1] = ACTIONS(5262), + [aux_sym_select_case_statement_token3] = ACTIONS(5262), + [aux_sym_select_type_statement_token1] = ACTIONS(5262), + [aux_sym_select_rank_statement_token2] = ACTIONS(5262), + [aux_sym_block_construct_token1] = ACTIONS(5262), + [aux_sym_associate_statement_token1] = ACTIONS(5262), + [aux_sym_format_statement_token1] = ACTIONS(5262), + [aux_sym_print_statement_token1] = ACTIONS(5262), + [aux_sym_open_statement_token1] = ACTIONS(5262), + [aux_sym_close_statement_token1] = ACTIONS(5262), + [aux_sym_inquire_statement_token1] = ACTIONS(5262), + [aux_sym_enum_statement_token1] = ACTIONS(5262), + [aux_sym_file_position_statement_token1] = ACTIONS(5262), + [aux_sym_file_position_statement_token2] = ACTIONS(5262), + [aux_sym_file_position_statement_token3] = ACTIONS(5262), + [aux_sym_file_position_statement_token4] = ACTIONS(5262), + [aux_sym_allocate_statement_token1] = ACTIONS(5262), + [aux_sym_entry_statement_token1] = ACTIONS(5262), + [aux_sym_logical_expression_token5] = ACTIONS(5266), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_LPAREN_SLASH] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [aux_sym_boolean_literal_token1] = ACTIONS(5266), + [aux_sym_boolean_literal_token2] = ACTIONS(5266), + [aux_sym_null_literal_token1] = ACTIONS(5262), + [aux_sym_coarray_statement_token1] = ACTIONS(5262), + [aux_sym_coarray_statement_token2] = ACTIONS(5262), + [aux_sym_coarray_statement_token6] = ACTIONS(5262), + [aux_sym_coarray_statement_token8] = ACTIONS(5262), + [aux_sym_coarray_statement_token11] = ACTIONS(5262), + [aux_sym_coarray_statement_token12] = ACTIONS(5262), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5262), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5262), + [aux_sym_identifier_token1] = ACTIONS(5262), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5266), + [sym__float_literal] = ACTIONS(5266), + [sym__boz_literal] = ACTIONS(5266), + [sym__string_literal] = ACTIONS(5266), + [sym__string_literal_kind] = ACTIONS(5266), }, [1262] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [sym_preproc_comment] = ACTIONS(5267), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(5226), + [aux_sym_preproc_def_token1] = ACTIONS(5226), + [aux_sym_preproc_if_token1] = ACTIONS(5226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5226), + [sym_preproc_directive] = ACTIONS(5226), + [anon_sym_LPAREN2] = ACTIONS(5226), + [sym_preproc_comment] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5226), + [aux_sym_interface_statement_token1] = ACTIONS(5226), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5226), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5226), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5226), + [aux_sym_language_binding_token1] = ACTIONS(5226), + [aux_sym_procedure_attributes_token1] = ACTIONS(5226), + [aux_sym_procedure_attributes_token3] = ACTIONS(5226), + [aux_sym_end_function_statement_token1] = ACTIONS(5226), + [aux_sym_contains_statement_token1] = ACTIONS(5226), + [aux_sym_use_statement_token1] = ACTIONS(5226), + [aux_sym_use_statement_token2] = ACTIONS(5226), + [aux_sym_implicit_statement_token1] = ACTIONS(5226), + [aux_sym_implicit_statement_token3] = ACTIONS(5226), + [aux_sym_implicit_statement_token4] = ACTIONS(5226), + [aux_sym_save_statement_token1] = ACTIONS(5226), + [aux_sym_private_statement_token1] = ACTIONS(5226), + [aux_sym_public_statement_token1] = ACTIONS(5226), + [aux_sym_namelist_statement_token1] = ACTIONS(5226), + [aux_sym_common_statement_token1] = ACTIONS(5226), + [aux_sym_import_statement_token1] = ACTIONS(5226), + [aux_sym_derived_type_definition_token1] = ACTIONS(5226), + [aux_sym_abstract_specifier_token1] = ACTIONS(5226), + [aux_sym_procedure_attribute_token6] = ACTIONS(5226), + [aux_sym_variable_attributes_token1] = ACTIONS(5226), + [aux_sym_variable_attributes_token2] = ACTIONS(5226), + [aux_sym_variable_attributes_token3] = ACTIONS(5226), + [aux_sym_variable_attributes_token4] = ACTIONS(5226), + [aux_sym_variable_attributes_token5] = ACTIONS(5226), + [aux_sym__intrinsic_type_token1] = ACTIONS(5226), + [aux_sym__intrinsic_type_token2] = ACTIONS(5226), + [aux_sym__intrinsic_type_token3] = ACTIONS(5226), + [aux_sym__intrinsic_type_token4] = ACTIONS(5226), + [aux_sym__intrinsic_type_token6] = ACTIONS(5226), + [aux_sym__intrinsic_type_token7] = ACTIONS(5226), + [aux_sym__intrinsic_type_token8] = ACTIONS(5226), + [aux_sym__intrinsic_type_token9] = ACTIONS(5226), + [aux_sym__intrinsic_type_token10] = ACTIONS(5226), + [aux_sym_derived_type_token1] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5226), + [aux_sym_type_qualifier_token1] = ACTIONS(5226), + [aux_sym_type_qualifier_token2] = ACTIONS(5226), + [aux_sym_equivalence_statement_token1] = ACTIONS(5226), + [anon_sym_SEMI] = ACTIONS(5230), + [aux_sym_stop_statement_token1] = ACTIONS(5226), + [aux_sym_stop_statement_token2] = ACTIONS(5226), + [aux_sym_subroutine_call_token1] = ACTIONS(5226), + [aux_sym_keyword_statement_token1] = ACTIONS(5226), + [aux_sym_keyword_statement_token2] = ACTIONS(5226), + [aux_sym_keyword_statement_token3] = ACTIONS(5226), + [aux_sym_keyword_statement_token4] = ACTIONS(5226), + [aux_sym_keyword_statement_token6] = ACTIONS(5226), + [aux_sym_keyword_statement_token7] = ACTIONS(5226), + [aux_sym_include_statement_token1] = ACTIONS(5226), + [aux_sym_data_statement_token1] = ACTIONS(5226), + [aux_sym_do_loop_statement_token1] = ACTIONS(5226), + [aux_sym__inline_if_statement_token1] = ACTIONS(5226), + [aux_sym_end_if_statement_token1] = ACTIONS(5226), + [aux_sym_elseif_clause_token2] = ACTIONS(5226), + [aux_sym__inline_where_statement_token1] = ACTIONS(5226), + [aux_sym__forall_control_expression_token1] = ACTIONS(5226), + [aux_sym_select_case_statement_token1] = ACTIONS(5226), + [aux_sym_select_case_statement_token3] = ACTIONS(5226), + [aux_sym_select_type_statement_token1] = ACTIONS(5226), + [aux_sym_select_rank_statement_token2] = ACTIONS(5226), + [aux_sym_block_construct_token1] = ACTIONS(5226), + [aux_sym_associate_statement_token1] = ACTIONS(5226), + [aux_sym_format_statement_token1] = ACTIONS(5226), + [aux_sym_print_statement_token1] = ACTIONS(5226), + [aux_sym_open_statement_token1] = ACTIONS(5226), + [aux_sym_close_statement_token1] = ACTIONS(5226), + [aux_sym_inquire_statement_token1] = ACTIONS(5226), + [aux_sym_enum_statement_token1] = ACTIONS(5226), + [aux_sym_file_position_statement_token1] = ACTIONS(5226), + [aux_sym_file_position_statement_token2] = ACTIONS(5226), + [aux_sym_file_position_statement_token3] = ACTIONS(5226), + [aux_sym_file_position_statement_token4] = ACTIONS(5226), + [aux_sym_allocate_statement_token1] = ACTIONS(5226), + [aux_sym_entry_statement_token1] = ACTIONS(5226), + [aux_sym_logical_expression_token5] = ACTIONS(5230), + [anon_sym_DOT] = ACTIONS(5226), + [anon_sym_LPAREN_SLASH] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [aux_sym_boolean_literal_token1] = ACTIONS(5230), + [aux_sym_boolean_literal_token2] = ACTIONS(5230), + [aux_sym_null_literal_token1] = ACTIONS(5226), + [aux_sym_coarray_statement_token1] = ACTIONS(5226), + [aux_sym_coarray_statement_token2] = ACTIONS(5226), + [aux_sym_coarray_statement_token6] = ACTIONS(5226), + [aux_sym_coarray_statement_token8] = ACTIONS(5226), + [aux_sym_coarray_statement_token11] = ACTIONS(5226), + [aux_sym_coarray_statement_token12] = ACTIONS(5226), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5226), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5226), + [aux_sym_identifier_token1] = ACTIONS(5226), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5230), + [sym__float_literal] = ACTIONS(5230), + [sym__boz_literal] = ACTIONS(5230), + [sym__string_literal] = ACTIONS(5230), + [sym__string_literal_kind] = ACTIONS(5230), }, [1263] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [1264] = { - [aux_sym_preproc_include_token1] = ACTIONS(5233), - [aux_sym_preproc_def_token1] = ACTIONS(5233), - [aux_sym_preproc_if_token1] = ACTIONS(5233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5233), - [sym_preproc_directive] = ACTIONS(5233), - [anon_sym_LPAREN2] = ACTIONS(5233), - [sym_preproc_comment] = ACTIONS(5271), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5233), - [aux_sym_end_program_statement_token2] = ACTIONS(5233), - [aux_sym_interface_statement_token1] = ACTIONS(5233), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5233), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5233), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5233), - [aux_sym_language_binding_token1] = ACTIONS(5233), - [aux_sym_procedure_attributes_token1] = ACTIONS(5233), - [aux_sym_procedure_attributes_token3] = ACTIONS(5233), - [aux_sym_contains_statement_token1] = ACTIONS(5233), - [aux_sym_use_statement_token1] = ACTIONS(5233), - [aux_sym_use_statement_token2] = ACTIONS(5233), - [aux_sym_implicit_statement_token1] = ACTIONS(5233), - [aux_sym_implicit_statement_token3] = ACTIONS(5233), - [aux_sym_implicit_statement_token4] = ACTIONS(5233), - [aux_sym_save_statement_token1] = ACTIONS(5233), - [aux_sym_private_statement_token1] = ACTIONS(5233), - [aux_sym_public_statement_token1] = ACTIONS(5233), - [aux_sym_namelist_statement_token1] = ACTIONS(5233), - [aux_sym_common_statement_token1] = ACTIONS(5233), - [aux_sym_import_statement_token1] = ACTIONS(5233), - [aux_sym_derived_type_definition_token1] = ACTIONS(5233), - [aux_sym_abstract_specifier_token1] = ACTIONS(5233), - [aux_sym_procedure_attribute_token6] = ACTIONS(5233), - [aux_sym_variable_attributes_token1] = ACTIONS(5233), - [aux_sym_variable_attributes_token2] = ACTIONS(5233), - [aux_sym_variable_attributes_token3] = ACTIONS(5233), - [aux_sym_variable_attributes_token4] = ACTIONS(5233), - [aux_sym_variable_attributes_token5] = ACTIONS(5233), - [aux_sym__intrinsic_type_token1] = ACTIONS(5233), - [aux_sym__intrinsic_type_token2] = ACTIONS(5233), - [aux_sym__intrinsic_type_token3] = ACTIONS(5233), - [aux_sym__intrinsic_type_token4] = ACTIONS(5233), - [aux_sym__intrinsic_type_token6] = ACTIONS(5233), - [aux_sym__intrinsic_type_token7] = ACTIONS(5233), - [aux_sym__intrinsic_type_token8] = ACTIONS(5233), - [aux_sym__intrinsic_type_token9] = ACTIONS(5233), - [aux_sym__intrinsic_type_token10] = ACTIONS(5233), - [aux_sym_derived_type_token1] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5233), - [aux_sym_type_qualifier_token1] = ACTIONS(5233), - [aux_sym_type_qualifier_token2] = ACTIONS(5233), - [aux_sym_equivalence_statement_token1] = ACTIONS(5233), - [anon_sym_SEMI] = ACTIONS(5237), - [aux_sym_stop_statement_token1] = ACTIONS(5233), - [aux_sym_stop_statement_token2] = ACTIONS(5233), - [aux_sym_subroutine_call_token1] = ACTIONS(5233), - [aux_sym_keyword_statement_token1] = ACTIONS(5233), - [aux_sym_keyword_statement_token2] = ACTIONS(5233), - [aux_sym_keyword_statement_token3] = ACTIONS(5233), - [aux_sym_keyword_statement_token4] = ACTIONS(5233), - [aux_sym_keyword_statement_token6] = ACTIONS(5233), - [aux_sym_keyword_statement_token7] = ACTIONS(5233), - [aux_sym_include_statement_token1] = ACTIONS(5233), - [aux_sym_data_statement_token1] = ACTIONS(5233), - [aux_sym_do_loop_statement_token1] = ACTIONS(5233), - [aux_sym__inline_if_statement_token1] = ACTIONS(5233), - [aux_sym_end_if_statement_token1] = ACTIONS(5233), - [aux_sym_elseif_clause_token2] = ACTIONS(5233), - [aux_sym__inline_where_statement_token1] = ACTIONS(5233), - [aux_sym__forall_control_expression_token1] = ACTIONS(5233), - [aux_sym_select_case_statement_token1] = ACTIONS(5233), - [aux_sym_select_case_statement_token3] = ACTIONS(5233), - [aux_sym_select_type_statement_token1] = ACTIONS(5233), - [aux_sym_select_rank_statement_token2] = ACTIONS(5233), - [aux_sym_block_construct_token1] = ACTIONS(5233), - [aux_sym_associate_statement_token1] = ACTIONS(5233), - [aux_sym_format_statement_token1] = ACTIONS(5233), - [aux_sym_print_statement_token1] = ACTIONS(5233), - [aux_sym_open_statement_token1] = ACTIONS(5233), - [aux_sym_close_statement_token1] = ACTIONS(5233), - [aux_sym_inquire_statement_token1] = ACTIONS(5233), - [aux_sym_enum_statement_token1] = ACTIONS(5233), - [aux_sym_file_position_statement_token1] = ACTIONS(5233), - [aux_sym_file_position_statement_token2] = ACTIONS(5233), - [aux_sym_file_position_statement_token3] = ACTIONS(5233), - [aux_sym_file_position_statement_token4] = ACTIONS(5233), - [aux_sym_allocate_statement_token1] = ACTIONS(5233), - [aux_sym_entry_statement_token1] = ACTIONS(5233), - [aux_sym_logical_expression_token5] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5233), - [anon_sym_LPAREN_SLASH] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [aux_sym_boolean_literal_token1] = ACTIONS(5237), - [aux_sym_boolean_literal_token2] = ACTIONS(5237), - [aux_sym_null_literal_token1] = ACTIONS(5233), - [aux_sym_coarray_statement_token1] = ACTIONS(5233), - [aux_sym_coarray_statement_token2] = ACTIONS(5233), - [aux_sym_coarray_statement_token6] = ACTIONS(5233), - [aux_sym_coarray_statement_token8] = ACTIONS(5233), - [aux_sym_coarray_statement_token11] = ACTIONS(5233), - [aux_sym_coarray_statement_token12] = ACTIONS(5233), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5233), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5233), - [aux_sym_identifier_token1] = ACTIONS(5233), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5237), - [sym__float_literal] = ACTIONS(5237), - [sym__boz_literal] = ACTIONS(5237), - [sym__string_literal] = ACTIONS(5237), - [sym__string_literal_kind] = ACTIONS(5237), - }, - [1265] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [sym_preproc_comment] = ACTIONS(5273), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), - }, - [1266] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [sym_preproc_comment] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token2] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_subroutine_call_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_keyword_statement_token4] = ACTIONS(5002), + [aux_sym_keyword_statement_token6] = ACTIONS(5002), + [aux_sym_keyword_statement_token7] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym_do_loop_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym__inline_where_statement_token1] = ACTIONS(5002), + [aux_sym__forall_control_expression_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token3] = ACTIONS(5002), + [aux_sym_select_type_statement_token1] = ACTIONS(5002), + [aux_sym_select_rank_statement_token2] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_associate_statement_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_print_statement_token1] = ACTIONS(5002), + [aux_sym_open_statement_token1] = ACTIONS(5002), + [aux_sym_close_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token2] = ACTIONS(5002), + [aux_sym_file_position_statement_token3] = ACTIONS(5002), + [aux_sym_file_position_statement_token4] = ACTIONS(5002), + [aux_sym_allocate_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_logical_expression_token5] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_LPAREN_SLASH] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [aux_sym_boolean_literal_token1] = ACTIONS(5004), + [aux_sym_boolean_literal_token2] = ACTIONS(5004), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(5004), + [sym__float_literal] = ACTIONS(5004), + [sym__boz_literal] = ACTIONS(5004), + [sym__string_literal] = ACTIONS(5004), + [sym__string_literal_kind] = ACTIONS(5004), }, - [1267] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(5277), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [1264] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_end_program_statement_token2] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_subroutine_call_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_keyword_statement_token4] = ACTIONS(4998), + [aux_sym_keyword_statement_token6] = ACTIONS(4998), + [aux_sym_keyword_statement_token7] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym_do_loop_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym__inline_where_statement_token1] = ACTIONS(4998), + [aux_sym__forall_control_expression_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token3] = ACTIONS(4998), + [aux_sym_select_type_statement_token1] = ACTIONS(4998), + [aux_sym_select_rank_statement_token2] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_associate_statement_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_print_statement_token1] = ACTIONS(4998), + [aux_sym_open_statement_token1] = ACTIONS(4998), + [aux_sym_close_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token2] = ACTIONS(4998), + [aux_sym_file_position_statement_token3] = ACTIONS(4998), + [aux_sym_file_position_statement_token4] = ACTIONS(4998), + [aux_sym_allocate_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [aux_sym_boolean_literal_token1] = ACTIONS(5000), + [aux_sym_boolean_literal_token2] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + [sym__float_literal] = ACTIONS(5000), + [sym__boz_literal] = ACTIONS(5000), + [sym__string_literal] = ACTIONS(5000), + [sym__string_literal_kind] = ACTIONS(5000), + }, + [1265] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [sym_preproc_comment] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_end_function_statement_token1] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), + }, + [1266] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [sym_preproc_comment] = ACTIONS(5272), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), + }, + [1267] = { + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [sym_preproc_comment] = ACTIONS(5274), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1268] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [sym_preproc_comment] = ACTIONS(5279), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token2] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_end_program_statement_token2] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_subroutine_call_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_keyword_statement_token4] = ACTIONS(5006), + [aux_sym_keyword_statement_token6] = ACTIONS(5006), + [aux_sym_keyword_statement_token7] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym_do_loop_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym__inline_where_statement_token1] = ACTIONS(5006), + [aux_sym__forall_control_expression_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token3] = ACTIONS(5006), + [aux_sym_select_type_statement_token1] = ACTIONS(5006), + [aux_sym_select_rank_statement_token2] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_associate_statement_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_print_statement_token1] = ACTIONS(5006), + [aux_sym_open_statement_token1] = ACTIONS(5006), + [aux_sym_close_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token2] = ACTIONS(5006), + [aux_sym_file_position_statement_token3] = ACTIONS(5006), + [aux_sym_file_position_statement_token4] = ACTIONS(5006), + [aux_sym_allocate_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_logical_expression_token5] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_LPAREN_SLASH] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [aux_sym_boolean_literal_token1] = ACTIONS(5008), + [aux_sym_boolean_literal_token2] = ACTIONS(5008), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + [sym__float_literal] = ACTIONS(5008), + [sym__boz_literal] = ACTIONS(5008), + [sym__string_literal] = ACTIONS(5008), + [sym__string_literal_kind] = ACTIONS(5008), }, [1269] = { - [aux_sym_preproc_include_token1] = ACTIONS(5195), - [aux_sym_preproc_def_token1] = ACTIONS(5195), - [aux_sym_preproc_if_token1] = ACTIONS(5195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5195), - [sym_preproc_directive] = ACTIONS(5195), - [anon_sym_LPAREN2] = ACTIONS(5195), - [sym_preproc_comment] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5199), - [anon_sym_DASH] = ACTIONS(5199), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5195), - [aux_sym_interface_statement_token1] = ACTIONS(5195), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5195), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5195), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5195), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5195), - [aux_sym_language_binding_token1] = ACTIONS(5195), - [aux_sym_procedure_attributes_token1] = ACTIONS(5195), - [aux_sym_procedure_attributes_token3] = ACTIONS(5195), - [aux_sym_contains_statement_token1] = ACTIONS(5195), - [aux_sym_use_statement_token1] = ACTIONS(5195), - [aux_sym_use_statement_token2] = ACTIONS(5195), - [aux_sym_implicit_statement_token1] = ACTIONS(5195), - [aux_sym_implicit_statement_token3] = ACTIONS(5195), - [aux_sym_implicit_statement_token4] = ACTIONS(5195), - [aux_sym_save_statement_token1] = ACTIONS(5195), - [aux_sym_private_statement_token1] = ACTIONS(5195), - [aux_sym_public_statement_token1] = ACTIONS(5195), - [aux_sym_namelist_statement_token1] = ACTIONS(5195), - [aux_sym_common_statement_token1] = ACTIONS(5195), - [aux_sym_import_statement_token1] = ACTIONS(5195), - [aux_sym_derived_type_definition_token1] = ACTIONS(5195), - [aux_sym_abstract_specifier_token1] = ACTIONS(5195), - [aux_sym_procedure_attribute_token6] = ACTIONS(5195), - [aux_sym_variable_attributes_token1] = ACTIONS(5195), - [aux_sym_variable_attributes_token2] = ACTIONS(5195), - [aux_sym_variable_attributes_token3] = ACTIONS(5195), - [aux_sym_variable_attributes_token4] = ACTIONS(5195), - [aux_sym_variable_attributes_token5] = ACTIONS(5195), - [aux_sym__intrinsic_type_token1] = ACTIONS(5195), - [aux_sym__intrinsic_type_token2] = ACTIONS(5195), - [aux_sym__intrinsic_type_token3] = ACTIONS(5195), - [aux_sym__intrinsic_type_token4] = ACTIONS(5195), - [aux_sym__intrinsic_type_token6] = ACTIONS(5195), - [aux_sym__intrinsic_type_token7] = ACTIONS(5195), - [aux_sym__intrinsic_type_token8] = ACTIONS(5195), - [aux_sym__intrinsic_type_token9] = ACTIONS(5195), - [aux_sym__intrinsic_type_token10] = ACTIONS(5195), - [aux_sym_derived_type_token1] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5195), - [aux_sym_type_qualifier_token1] = ACTIONS(5195), - [aux_sym_type_qualifier_token2] = ACTIONS(5195), - [aux_sym_equivalence_statement_token1] = ACTIONS(5195), - [anon_sym_SEMI] = ACTIONS(5199), - [aux_sym_stop_statement_token1] = ACTIONS(5195), - [aux_sym_stop_statement_token2] = ACTIONS(5195), - [aux_sym_subroutine_call_token1] = ACTIONS(5195), - [aux_sym_keyword_statement_token1] = ACTIONS(5195), - [aux_sym_keyword_statement_token2] = ACTIONS(5195), - [aux_sym_keyword_statement_token3] = ACTIONS(5195), - [aux_sym_keyword_statement_token4] = ACTIONS(5195), - [aux_sym_keyword_statement_token6] = ACTIONS(5195), - [aux_sym_keyword_statement_token7] = ACTIONS(5195), - [aux_sym_include_statement_token1] = ACTIONS(5195), - [aux_sym_data_statement_token1] = ACTIONS(5195), - [aux_sym_do_loop_statement_token1] = ACTIONS(5195), - [aux_sym__inline_if_statement_token1] = ACTIONS(5195), - [aux_sym_end_if_statement_token1] = ACTIONS(5195), - [aux_sym_elseif_clause_token2] = ACTIONS(5195), - [aux_sym__inline_where_statement_token1] = ACTIONS(5195), - [aux_sym__forall_control_expression_token1] = ACTIONS(5195), - [aux_sym_select_case_statement_token1] = ACTIONS(5195), - [aux_sym_select_case_statement_token3] = ACTIONS(5195), - [aux_sym_select_type_statement_token1] = ACTIONS(5195), - [aux_sym_select_rank_statement_token2] = ACTIONS(5195), - [aux_sym_block_construct_token1] = ACTIONS(5195), - [aux_sym_associate_statement_token1] = ACTIONS(5195), - [aux_sym_format_statement_token1] = ACTIONS(5195), - [aux_sym_print_statement_token1] = ACTIONS(5195), - [aux_sym_open_statement_token1] = ACTIONS(5195), - [aux_sym_close_statement_token1] = ACTIONS(5195), - [aux_sym_inquire_statement_token1] = ACTIONS(5195), - [aux_sym_enum_statement_token1] = ACTIONS(5195), - [aux_sym_file_position_statement_token1] = ACTIONS(5195), - [aux_sym_file_position_statement_token2] = ACTIONS(5195), - [aux_sym_file_position_statement_token3] = ACTIONS(5195), - [aux_sym_file_position_statement_token4] = ACTIONS(5195), - [aux_sym_allocate_statement_token1] = ACTIONS(5195), - [aux_sym_entry_statement_token1] = ACTIONS(5195), - [aux_sym_logical_expression_token5] = ACTIONS(5199), - [anon_sym_DOT] = ACTIONS(5195), - [anon_sym_LPAREN_SLASH] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [aux_sym_boolean_literal_token1] = ACTIONS(5199), - [aux_sym_boolean_literal_token2] = ACTIONS(5199), - [aux_sym_null_literal_token1] = ACTIONS(5195), - [aux_sym_coarray_statement_token1] = ACTIONS(5195), - [aux_sym_coarray_statement_token2] = ACTIONS(5195), - [aux_sym_coarray_statement_token6] = ACTIONS(5195), - [aux_sym_coarray_statement_token8] = ACTIONS(5195), - [aux_sym_coarray_statement_token11] = ACTIONS(5195), - [aux_sym_coarray_statement_token12] = ACTIONS(5195), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5195), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5195), - [aux_sym_identifier_token1] = ACTIONS(5195), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5199), - [sym__float_literal] = ACTIONS(5199), - [sym__boz_literal] = ACTIONS(5199), - [sym__string_literal] = ACTIONS(5199), - [sym__string_literal_kind] = ACTIONS(5199), + [aux_sym_preproc_include_token1] = ACTIONS(4976), + [aux_sym_preproc_def_token1] = ACTIONS(4976), + [aux_sym_preproc_if_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), + [sym_preproc_directive] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [sym_preproc_comment] = ACTIONS(5276), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4976), + [aux_sym_interface_statement_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_language_binding_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token3] = ACTIONS(4976), + [aux_sym_contains_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token2] = ACTIONS(4976), + [aux_sym_implicit_statement_token1] = ACTIONS(4976), + [aux_sym_implicit_statement_token3] = ACTIONS(4976), + [aux_sym_implicit_statement_token4] = ACTIONS(4976), + [aux_sym_save_statement_token1] = ACTIONS(4976), + [aux_sym_private_statement_token1] = ACTIONS(4976), + [aux_sym_public_statement_token1] = ACTIONS(4976), + [aux_sym_namelist_statement_token1] = ACTIONS(4976), + [aux_sym_common_statement_token1] = ACTIONS(4976), + [aux_sym_import_statement_token1] = ACTIONS(4976), + [aux_sym_derived_type_definition_token1] = ACTIONS(4976), + [aux_sym_abstract_specifier_token1] = ACTIONS(4976), + [aux_sym_procedure_attribute_token6] = ACTIONS(4976), + [aux_sym_variable_attributes_token1] = ACTIONS(4976), + [aux_sym_variable_attributes_token2] = ACTIONS(4976), + [aux_sym_variable_attributes_token3] = ACTIONS(4976), + [aux_sym_variable_attributes_token4] = ACTIONS(4976), + [aux_sym_variable_attributes_token5] = ACTIONS(4976), + [aux_sym__intrinsic_type_token1] = ACTIONS(4976), + [aux_sym__intrinsic_type_token2] = ACTIONS(4976), + [aux_sym__intrinsic_type_token3] = ACTIONS(4976), + [aux_sym__intrinsic_type_token4] = ACTIONS(4976), + [aux_sym__intrinsic_type_token6] = ACTIONS(4976), + [aux_sym__intrinsic_type_token7] = ACTIONS(4976), + [aux_sym__intrinsic_type_token8] = ACTIONS(4976), + [aux_sym__intrinsic_type_token9] = ACTIONS(4976), + [aux_sym__intrinsic_type_token10] = ACTIONS(4976), + [aux_sym_derived_type_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), + [aux_sym_type_qualifier_token1] = ACTIONS(4976), + [aux_sym_type_qualifier_token2] = ACTIONS(4976), + [aux_sym_equivalence_statement_token1] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4980), + [aux_sym_stop_statement_token1] = ACTIONS(4976), + [aux_sym_stop_statement_token2] = ACTIONS(4976), + [aux_sym_subroutine_call_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token2] = ACTIONS(4976), + [aux_sym_keyword_statement_token3] = ACTIONS(4976), + [aux_sym_keyword_statement_token4] = ACTIONS(4976), + [aux_sym_keyword_statement_token6] = ACTIONS(4976), + [aux_sym_keyword_statement_token7] = ACTIONS(4976), + [aux_sym_include_statement_token1] = ACTIONS(4976), + [aux_sym_data_statement_token1] = ACTIONS(4976), + [aux_sym_do_loop_statement_token1] = ACTIONS(4976), + [aux_sym__inline_if_statement_token1] = ACTIONS(4976), + [aux_sym_end_if_statement_token1] = ACTIONS(4976), + [aux_sym_elseif_clause_token2] = ACTIONS(4976), + [aux_sym__inline_where_statement_token1] = ACTIONS(4976), + [aux_sym__forall_control_expression_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token3] = ACTIONS(4976), + [aux_sym_select_type_statement_token1] = ACTIONS(4976), + [aux_sym_select_rank_statement_token2] = ACTIONS(4976), + [aux_sym_block_construct_token1] = ACTIONS(4976), + [aux_sym_associate_statement_token1] = ACTIONS(4976), + [aux_sym_format_statement_token1] = ACTIONS(4976), + [aux_sym_print_statement_token1] = ACTIONS(4976), + [aux_sym_open_statement_token1] = ACTIONS(4976), + [aux_sym_close_statement_token1] = ACTIONS(4976), + [aux_sym_inquire_statement_token1] = ACTIONS(4976), + [aux_sym_enum_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token2] = ACTIONS(4976), + [aux_sym_file_position_statement_token3] = ACTIONS(4976), + [aux_sym_file_position_statement_token4] = ACTIONS(4976), + [aux_sym_allocate_statement_token1] = ACTIONS(4976), + [aux_sym_entry_statement_token1] = ACTIONS(4976), + [aux_sym_logical_expression_token5] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), + [aux_sym_null_literal_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token2] = ACTIONS(4976), + [aux_sym_coarray_statement_token6] = ACTIONS(4976), + [aux_sym_coarray_statement_token8] = ACTIONS(4976), + [aux_sym_coarray_statement_token11] = ACTIONS(4976), + [aux_sym_coarray_statement_token12] = ACTIONS(4976), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), + [aux_sym_identifier_token1] = ACTIONS(4976), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, [1270] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [sym_preproc_comment] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [sym_preproc_comment] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, [1271] = { - [aux_sym_preproc_include_token1] = ACTIONS(5147), - [aux_sym_preproc_def_token1] = ACTIONS(5147), - [aux_sym_preproc_if_token1] = ACTIONS(5147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5147), - [sym_preproc_directive] = ACTIONS(5147), - [anon_sym_LPAREN2] = ACTIONS(5147), - [sym_preproc_comment] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5147), - [aux_sym_interface_statement_token1] = ACTIONS(5147), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5147), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5147), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5147), - [aux_sym_language_binding_token1] = ACTIONS(5147), - [aux_sym_procedure_attributes_token1] = ACTIONS(5147), - [aux_sym_procedure_attributes_token3] = ACTIONS(5147), - [aux_sym_end_function_statement_token1] = ACTIONS(5147), - [aux_sym_contains_statement_token1] = ACTIONS(5147), - [aux_sym_use_statement_token1] = ACTIONS(5147), - [aux_sym_use_statement_token2] = ACTIONS(5147), - [aux_sym_implicit_statement_token1] = ACTIONS(5147), - [aux_sym_implicit_statement_token3] = ACTIONS(5147), - [aux_sym_implicit_statement_token4] = ACTIONS(5147), - [aux_sym_save_statement_token1] = ACTIONS(5147), - [aux_sym_private_statement_token1] = ACTIONS(5147), - [aux_sym_public_statement_token1] = ACTIONS(5147), - [aux_sym_namelist_statement_token1] = ACTIONS(5147), - [aux_sym_common_statement_token1] = ACTIONS(5147), - [aux_sym_import_statement_token1] = ACTIONS(5147), - [aux_sym_derived_type_definition_token1] = ACTIONS(5147), - [aux_sym_abstract_specifier_token1] = ACTIONS(5147), - [aux_sym_procedure_attribute_token6] = ACTIONS(5147), - [aux_sym_variable_attributes_token1] = ACTIONS(5147), - [aux_sym_variable_attributes_token2] = ACTIONS(5147), - [aux_sym_variable_attributes_token3] = ACTIONS(5147), - [aux_sym_variable_attributes_token4] = ACTIONS(5147), - [aux_sym_variable_attributes_token5] = ACTIONS(5147), - [aux_sym__intrinsic_type_token1] = ACTIONS(5147), - [aux_sym__intrinsic_type_token2] = ACTIONS(5147), - [aux_sym__intrinsic_type_token3] = ACTIONS(5147), - [aux_sym__intrinsic_type_token4] = ACTIONS(5147), - [aux_sym__intrinsic_type_token6] = ACTIONS(5147), - [aux_sym__intrinsic_type_token7] = ACTIONS(5147), - [aux_sym__intrinsic_type_token8] = ACTIONS(5147), - [aux_sym__intrinsic_type_token9] = ACTIONS(5147), - [aux_sym__intrinsic_type_token10] = ACTIONS(5147), - [aux_sym_derived_type_token1] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5147), - [aux_sym_type_qualifier_token1] = ACTIONS(5147), - [aux_sym_type_qualifier_token2] = ACTIONS(5147), - [aux_sym_equivalence_statement_token1] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5151), - [aux_sym_stop_statement_token1] = ACTIONS(5147), - [aux_sym_stop_statement_token2] = ACTIONS(5147), - [aux_sym_subroutine_call_token1] = ACTIONS(5147), - [aux_sym_keyword_statement_token1] = ACTIONS(5147), - [aux_sym_keyword_statement_token2] = ACTIONS(5147), - [aux_sym_keyword_statement_token3] = ACTIONS(5147), - [aux_sym_keyword_statement_token4] = ACTIONS(5147), - [aux_sym_keyword_statement_token6] = ACTIONS(5147), - [aux_sym_keyword_statement_token7] = ACTIONS(5147), - [aux_sym_include_statement_token1] = ACTIONS(5147), - [aux_sym_data_statement_token1] = ACTIONS(5147), - [aux_sym_do_loop_statement_token1] = ACTIONS(5147), - [aux_sym__inline_if_statement_token1] = ACTIONS(5147), - [aux_sym_end_if_statement_token1] = ACTIONS(5147), - [aux_sym_elseif_clause_token2] = ACTIONS(5147), - [aux_sym__inline_where_statement_token1] = ACTIONS(5147), - [aux_sym__forall_control_expression_token1] = ACTIONS(5147), - [aux_sym_select_case_statement_token1] = ACTIONS(5147), - [aux_sym_select_case_statement_token3] = ACTIONS(5147), - [aux_sym_select_type_statement_token1] = ACTIONS(5147), - [aux_sym_select_rank_statement_token2] = ACTIONS(5147), - [aux_sym_block_construct_token1] = ACTIONS(5147), - [aux_sym_associate_statement_token1] = ACTIONS(5147), - [aux_sym_format_statement_token1] = ACTIONS(5147), - [aux_sym_print_statement_token1] = ACTIONS(5147), - [aux_sym_open_statement_token1] = ACTIONS(5147), - [aux_sym_close_statement_token1] = ACTIONS(5147), - [aux_sym_inquire_statement_token1] = ACTIONS(5147), - [aux_sym_enum_statement_token1] = ACTIONS(5147), - [aux_sym_file_position_statement_token1] = ACTIONS(5147), - [aux_sym_file_position_statement_token2] = ACTIONS(5147), - [aux_sym_file_position_statement_token3] = ACTIONS(5147), - [aux_sym_file_position_statement_token4] = ACTIONS(5147), - [aux_sym_allocate_statement_token1] = ACTIONS(5147), - [aux_sym_entry_statement_token1] = ACTIONS(5147), - [aux_sym_logical_expression_token5] = ACTIONS(5151), - [anon_sym_DOT] = ACTIONS(5147), - [anon_sym_LPAREN_SLASH] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [aux_sym_boolean_literal_token1] = ACTIONS(5151), - [aux_sym_boolean_literal_token2] = ACTIONS(5151), - [aux_sym_null_literal_token1] = ACTIONS(5147), - [aux_sym_coarray_statement_token1] = ACTIONS(5147), - [aux_sym_coarray_statement_token2] = ACTIONS(5147), - [aux_sym_coarray_statement_token6] = ACTIONS(5147), - [aux_sym_coarray_statement_token8] = ACTIONS(5147), - [aux_sym_coarray_statement_token11] = ACTIONS(5147), - [aux_sym_coarray_statement_token12] = ACTIONS(5147), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5147), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5147), - [aux_sym_identifier_token1] = ACTIONS(5147), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5151), - [sym__float_literal] = ACTIONS(5151), - [sym__boz_literal] = ACTIONS(5151), - [sym__string_literal] = ACTIONS(5151), - [sym__string_literal_kind] = ACTIONS(5151), + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token2] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token2] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_subroutine_call_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_keyword_statement_token4] = ACTIONS(4994), + [aux_sym_keyword_statement_token6] = ACTIONS(4994), + [aux_sym_keyword_statement_token7] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym_do_loop_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym__inline_where_statement_token1] = ACTIONS(4994), + [aux_sym__forall_control_expression_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token3] = ACTIONS(4994), + [aux_sym_select_type_statement_token1] = ACTIONS(4994), + [aux_sym_select_rank_statement_token2] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_associate_statement_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_print_statement_token1] = ACTIONS(4994), + [aux_sym_open_statement_token1] = ACTIONS(4994), + [aux_sym_close_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token2] = ACTIONS(4994), + [aux_sym_file_position_statement_token3] = ACTIONS(4994), + [aux_sym_file_position_statement_token4] = ACTIONS(4994), + [aux_sym_allocate_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_logical_expression_token5] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_LPAREN_SLASH] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [aux_sym_boolean_literal_token1] = ACTIONS(4996), + [aux_sym_boolean_literal_token2] = ACTIONS(4996), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4996), + [sym__float_literal] = ACTIONS(4996), + [sym__boz_literal] = ACTIONS(4996), + [sym__string_literal] = ACTIONS(4996), + [sym__string_literal_kind] = ACTIONS(4996), }, [1272] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [aux_sym_preproc_include_token1] = ACTIONS(5262), + [aux_sym_preproc_def_token1] = ACTIONS(5262), + [aux_sym_preproc_if_token1] = ACTIONS(5262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5262), + [sym_preproc_directive] = ACTIONS(5262), + [anon_sym_LPAREN2] = ACTIONS(5262), + [sym_preproc_comment] = ACTIONS(5280), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5262), + [aux_sym_interface_statement_token1] = ACTIONS(5262), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5262), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5262), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5262), + [aux_sym_language_binding_token1] = ACTIONS(5262), + [aux_sym_procedure_attributes_token1] = ACTIONS(5262), + [aux_sym_procedure_attributes_token3] = ACTIONS(5262), + [aux_sym_end_function_statement_token1] = ACTIONS(5262), + [aux_sym_contains_statement_token1] = ACTIONS(5262), + [aux_sym_use_statement_token1] = ACTIONS(5262), + [aux_sym_use_statement_token2] = ACTIONS(5262), + [aux_sym_implicit_statement_token1] = ACTIONS(5262), + [aux_sym_implicit_statement_token3] = ACTIONS(5262), + [aux_sym_implicit_statement_token4] = ACTIONS(5262), + [aux_sym_save_statement_token1] = ACTIONS(5262), + [aux_sym_private_statement_token1] = ACTIONS(5262), + [aux_sym_public_statement_token1] = ACTIONS(5262), + [aux_sym_namelist_statement_token1] = ACTIONS(5262), + [aux_sym_common_statement_token1] = ACTIONS(5262), + [aux_sym_import_statement_token1] = ACTIONS(5262), + [aux_sym_derived_type_definition_token1] = ACTIONS(5262), + [aux_sym_abstract_specifier_token1] = ACTIONS(5262), + [aux_sym_procedure_attribute_token6] = ACTIONS(5262), + [aux_sym_variable_attributes_token1] = ACTIONS(5262), + [aux_sym_variable_attributes_token2] = ACTIONS(5262), + [aux_sym_variable_attributes_token3] = ACTIONS(5262), + [aux_sym_variable_attributes_token4] = ACTIONS(5262), + [aux_sym_variable_attributes_token5] = ACTIONS(5262), + [aux_sym__intrinsic_type_token1] = ACTIONS(5262), + [aux_sym__intrinsic_type_token2] = ACTIONS(5262), + [aux_sym__intrinsic_type_token3] = ACTIONS(5262), + [aux_sym__intrinsic_type_token4] = ACTIONS(5262), + [aux_sym__intrinsic_type_token6] = ACTIONS(5262), + [aux_sym__intrinsic_type_token7] = ACTIONS(5262), + [aux_sym__intrinsic_type_token8] = ACTIONS(5262), + [aux_sym__intrinsic_type_token9] = ACTIONS(5262), + [aux_sym__intrinsic_type_token10] = ACTIONS(5262), + [aux_sym_derived_type_token1] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5262), + [aux_sym_type_qualifier_token1] = ACTIONS(5262), + [aux_sym_type_qualifier_token2] = ACTIONS(5262), + [aux_sym_equivalence_statement_token1] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5266), + [aux_sym_stop_statement_token1] = ACTIONS(5262), + [aux_sym_stop_statement_token2] = ACTIONS(5262), + [aux_sym_subroutine_call_token1] = ACTIONS(5262), + [aux_sym_keyword_statement_token1] = ACTIONS(5262), + [aux_sym_keyword_statement_token2] = ACTIONS(5262), + [aux_sym_keyword_statement_token3] = ACTIONS(5262), + [aux_sym_keyword_statement_token4] = ACTIONS(5262), + [aux_sym_keyword_statement_token6] = ACTIONS(5262), + [aux_sym_keyword_statement_token7] = ACTIONS(5262), + [aux_sym_include_statement_token1] = ACTIONS(5262), + [aux_sym_data_statement_token1] = ACTIONS(5262), + [aux_sym_do_loop_statement_token1] = ACTIONS(5262), + [aux_sym__inline_if_statement_token1] = ACTIONS(5262), + [aux_sym_end_if_statement_token1] = ACTIONS(5262), + [aux_sym_elseif_clause_token2] = ACTIONS(5262), + [aux_sym__inline_where_statement_token1] = ACTIONS(5262), + [aux_sym__forall_control_expression_token1] = ACTIONS(5262), + [aux_sym_select_case_statement_token1] = ACTIONS(5262), + [aux_sym_select_case_statement_token3] = ACTIONS(5262), + [aux_sym_select_type_statement_token1] = ACTIONS(5262), + [aux_sym_select_rank_statement_token2] = ACTIONS(5262), + [aux_sym_block_construct_token1] = ACTIONS(5262), + [aux_sym_associate_statement_token1] = ACTIONS(5262), + [aux_sym_format_statement_token1] = ACTIONS(5262), + [aux_sym_print_statement_token1] = ACTIONS(5262), + [aux_sym_open_statement_token1] = ACTIONS(5262), + [aux_sym_close_statement_token1] = ACTIONS(5262), + [aux_sym_inquire_statement_token1] = ACTIONS(5262), + [aux_sym_enum_statement_token1] = ACTIONS(5262), + [aux_sym_file_position_statement_token1] = ACTIONS(5262), + [aux_sym_file_position_statement_token2] = ACTIONS(5262), + [aux_sym_file_position_statement_token3] = ACTIONS(5262), + [aux_sym_file_position_statement_token4] = ACTIONS(5262), + [aux_sym_allocate_statement_token1] = ACTIONS(5262), + [aux_sym_entry_statement_token1] = ACTIONS(5262), + [aux_sym_logical_expression_token5] = ACTIONS(5266), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_LPAREN_SLASH] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [aux_sym_boolean_literal_token1] = ACTIONS(5266), + [aux_sym_boolean_literal_token2] = ACTIONS(5266), + [aux_sym_null_literal_token1] = ACTIONS(5262), + [aux_sym_coarray_statement_token1] = ACTIONS(5262), + [aux_sym_coarray_statement_token2] = ACTIONS(5262), + [aux_sym_coarray_statement_token6] = ACTIONS(5262), + [aux_sym_coarray_statement_token8] = ACTIONS(5262), + [aux_sym_coarray_statement_token11] = ACTIONS(5262), + [aux_sym_coarray_statement_token12] = ACTIONS(5262), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5262), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5262), + [aux_sym_identifier_token1] = ACTIONS(5262), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5266), + [sym__float_literal] = ACTIONS(5266), + [sym__boz_literal] = ACTIONS(5266), + [sym__string_literal] = ACTIONS(5266), + [sym__string_literal_kind] = ACTIONS(5266), }, [1273] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [sym_preproc_comment] = ACTIONS(5282), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_end_function_statement_token1] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, [1274] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(5291), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_end_function_statement_token1] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [aux_sym_preproc_include_token1] = ACTIONS(5121), + [aux_sym_preproc_def_token1] = ACTIONS(5121), + [aux_sym_preproc_if_token1] = ACTIONS(5121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5121), + [sym_preproc_directive] = ACTIONS(5121), + [anon_sym_LPAREN2] = ACTIONS(5121), + [sym_preproc_comment] = ACTIONS(5284), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5121), + [aux_sym_end_program_statement_token2] = ACTIONS(5121), + [aux_sym_interface_statement_token1] = ACTIONS(5121), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5121), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5121), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5121), + [aux_sym_language_binding_token1] = ACTIONS(5121), + [aux_sym_procedure_attributes_token1] = ACTIONS(5121), + [aux_sym_procedure_attributes_token3] = ACTIONS(5121), + [aux_sym_contains_statement_token1] = ACTIONS(5121), + [aux_sym_use_statement_token1] = ACTIONS(5121), + [aux_sym_use_statement_token2] = ACTIONS(5121), + [aux_sym_implicit_statement_token1] = ACTIONS(5121), + [aux_sym_implicit_statement_token3] = ACTIONS(5121), + [aux_sym_implicit_statement_token4] = ACTIONS(5121), + [aux_sym_save_statement_token1] = ACTIONS(5121), + [aux_sym_private_statement_token1] = ACTIONS(5121), + [aux_sym_public_statement_token1] = ACTIONS(5121), + [aux_sym_namelist_statement_token1] = ACTIONS(5121), + [aux_sym_common_statement_token1] = ACTIONS(5121), + [aux_sym_import_statement_token1] = ACTIONS(5121), + [aux_sym_derived_type_definition_token1] = ACTIONS(5121), + [aux_sym_abstract_specifier_token1] = ACTIONS(5121), + [aux_sym_procedure_attribute_token6] = ACTIONS(5121), + [aux_sym_variable_attributes_token1] = ACTIONS(5121), + [aux_sym_variable_attributes_token2] = ACTIONS(5121), + [aux_sym_variable_attributes_token3] = ACTIONS(5121), + [aux_sym_variable_attributes_token4] = ACTIONS(5121), + [aux_sym_variable_attributes_token5] = ACTIONS(5121), + [aux_sym__intrinsic_type_token1] = ACTIONS(5121), + [aux_sym__intrinsic_type_token2] = ACTIONS(5121), + [aux_sym__intrinsic_type_token3] = ACTIONS(5121), + [aux_sym__intrinsic_type_token4] = ACTIONS(5121), + [aux_sym__intrinsic_type_token6] = ACTIONS(5121), + [aux_sym__intrinsic_type_token7] = ACTIONS(5121), + [aux_sym__intrinsic_type_token8] = ACTIONS(5121), + [aux_sym__intrinsic_type_token9] = ACTIONS(5121), + [aux_sym__intrinsic_type_token10] = ACTIONS(5121), + [aux_sym_derived_type_token1] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5121), + [aux_sym_type_qualifier_token1] = ACTIONS(5121), + [aux_sym_type_qualifier_token2] = ACTIONS(5121), + [aux_sym_equivalence_statement_token1] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5125), + [aux_sym_stop_statement_token1] = ACTIONS(5121), + [aux_sym_stop_statement_token2] = ACTIONS(5121), + [aux_sym_subroutine_call_token1] = ACTIONS(5121), + [aux_sym_keyword_statement_token1] = ACTIONS(5121), + [aux_sym_keyword_statement_token2] = ACTIONS(5121), + [aux_sym_keyword_statement_token3] = ACTIONS(5121), + [aux_sym_keyword_statement_token4] = ACTIONS(5121), + [aux_sym_keyword_statement_token6] = ACTIONS(5121), + [aux_sym_keyword_statement_token7] = ACTIONS(5121), + [aux_sym_include_statement_token1] = ACTIONS(5121), + [aux_sym_data_statement_token1] = ACTIONS(5121), + [aux_sym_do_loop_statement_token1] = ACTIONS(5121), + [aux_sym__inline_if_statement_token1] = ACTIONS(5121), + [aux_sym_end_if_statement_token1] = ACTIONS(5121), + [aux_sym_elseif_clause_token2] = ACTIONS(5121), + [aux_sym__inline_where_statement_token1] = ACTIONS(5121), + [aux_sym__forall_control_expression_token1] = ACTIONS(5121), + [aux_sym_select_case_statement_token1] = ACTIONS(5121), + [aux_sym_select_case_statement_token3] = ACTIONS(5121), + [aux_sym_select_type_statement_token1] = ACTIONS(5121), + [aux_sym_select_rank_statement_token2] = ACTIONS(5121), + [aux_sym_block_construct_token1] = ACTIONS(5121), + [aux_sym_associate_statement_token1] = ACTIONS(5121), + [aux_sym_format_statement_token1] = ACTIONS(5121), + [aux_sym_print_statement_token1] = ACTIONS(5121), + [aux_sym_open_statement_token1] = ACTIONS(5121), + [aux_sym_close_statement_token1] = ACTIONS(5121), + [aux_sym_inquire_statement_token1] = ACTIONS(5121), + [aux_sym_enum_statement_token1] = ACTIONS(5121), + [aux_sym_file_position_statement_token1] = ACTIONS(5121), + [aux_sym_file_position_statement_token2] = ACTIONS(5121), + [aux_sym_file_position_statement_token3] = ACTIONS(5121), + [aux_sym_file_position_statement_token4] = ACTIONS(5121), + [aux_sym_allocate_statement_token1] = ACTIONS(5121), + [aux_sym_entry_statement_token1] = ACTIONS(5121), + [aux_sym_logical_expression_token5] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_LPAREN_SLASH] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [aux_sym_boolean_literal_token1] = ACTIONS(5125), + [aux_sym_boolean_literal_token2] = ACTIONS(5125), + [aux_sym_null_literal_token1] = ACTIONS(5121), + [aux_sym_coarray_statement_token1] = ACTIONS(5121), + [aux_sym_coarray_statement_token2] = ACTIONS(5121), + [aux_sym_coarray_statement_token6] = ACTIONS(5121), + [aux_sym_coarray_statement_token8] = ACTIONS(5121), + [aux_sym_coarray_statement_token11] = ACTIONS(5121), + [aux_sym_coarray_statement_token12] = ACTIONS(5121), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5121), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5121), + [aux_sym_identifier_token1] = ACTIONS(5121), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5125), + [sym__float_literal] = ACTIONS(5125), + [sym__boz_literal] = ACTIONS(5125), + [sym__string_literal] = ACTIONS(5125), + [sym__string_literal_kind] = ACTIONS(5125), }, [1275] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [sym_preproc_comment] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [aux_sym_preproc_include_token1] = ACTIONS(5262), + [aux_sym_preproc_def_token1] = ACTIONS(5262), + [aux_sym_preproc_if_token1] = ACTIONS(5262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5262), + [sym_preproc_directive] = ACTIONS(5262), + [anon_sym_LPAREN2] = ACTIONS(5262), + [sym_preproc_comment] = ACTIONS(5286), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5262), + [aux_sym_interface_statement_token1] = ACTIONS(5262), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5262), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5262), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5262), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5262), + [aux_sym_language_binding_token1] = ACTIONS(5262), + [aux_sym_procedure_attributes_token1] = ACTIONS(5262), + [aux_sym_procedure_attributes_token3] = ACTIONS(5262), + [aux_sym_contains_statement_token1] = ACTIONS(5262), + [aux_sym_use_statement_token1] = ACTIONS(5262), + [aux_sym_use_statement_token2] = ACTIONS(5262), + [aux_sym_implicit_statement_token1] = ACTIONS(5262), + [aux_sym_implicit_statement_token3] = ACTIONS(5262), + [aux_sym_implicit_statement_token4] = ACTIONS(5262), + [aux_sym_save_statement_token1] = ACTIONS(5262), + [aux_sym_private_statement_token1] = ACTIONS(5262), + [aux_sym_public_statement_token1] = ACTIONS(5262), + [aux_sym_namelist_statement_token1] = ACTIONS(5262), + [aux_sym_common_statement_token1] = ACTIONS(5262), + [aux_sym_import_statement_token1] = ACTIONS(5262), + [aux_sym_derived_type_definition_token1] = ACTIONS(5262), + [aux_sym_abstract_specifier_token1] = ACTIONS(5262), + [aux_sym_procedure_attribute_token6] = ACTIONS(5262), + [aux_sym_variable_attributes_token1] = ACTIONS(5262), + [aux_sym_variable_attributes_token2] = ACTIONS(5262), + [aux_sym_variable_attributes_token3] = ACTIONS(5262), + [aux_sym_variable_attributes_token4] = ACTIONS(5262), + [aux_sym_variable_attributes_token5] = ACTIONS(5262), + [aux_sym__intrinsic_type_token1] = ACTIONS(5262), + [aux_sym__intrinsic_type_token2] = ACTIONS(5262), + [aux_sym__intrinsic_type_token3] = ACTIONS(5262), + [aux_sym__intrinsic_type_token4] = ACTIONS(5262), + [aux_sym__intrinsic_type_token6] = ACTIONS(5262), + [aux_sym__intrinsic_type_token7] = ACTIONS(5262), + [aux_sym__intrinsic_type_token8] = ACTIONS(5262), + [aux_sym__intrinsic_type_token9] = ACTIONS(5262), + [aux_sym__intrinsic_type_token10] = ACTIONS(5262), + [aux_sym_derived_type_token1] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5262), + [aux_sym_type_qualifier_token1] = ACTIONS(5262), + [aux_sym_type_qualifier_token2] = ACTIONS(5262), + [aux_sym_equivalence_statement_token1] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5266), + [aux_sym_stop_statement_token1] = ACTIONS(5262), + [aux_sym_stop_statement_token2] = ACTIONS(5262), + [aux_sym_subroutine_call_token1] = ACTIONS(5262), + [aux_sym_keyword_statement_token1] = ACTIONS(5262), + [aux_sym_keyword_statement_token2] = ACTIONS(5262), + [aux_sym_keyword_statement_token3] = ACTIONS(5262), + [aux_sym_keyword_statement_token4] = ACTIONS(5262), + [aux_sym_keyword_statement_token6] = ACTIONS(5262), + [aux_sym_keyword_statement_token7] = ACTIONS(5262), + [aux_sym_include_statement_token1] = ACTIONS(5262), + [aux_sym_data_statement_token1] = ACTIONS(5262), + [aux_sym_do_loop_statement_token1] = ACTIONS(5262), + [aux_sym__inline_if_statement_token1] = ACTIONS(5262), + [aux_sym_end_if_statement_token1] = ACTIONS(5262), + [aux_sym_elseif_clause_token2] = ACTIONS(5262), + [aux_sym__inline_where_statement_token1] = ACTIONS(5262), + [aux_sym__forall_control_expression_token1] = ACTIONS(5262), + [aux_sym_select_case_statement_token1] = ACTIONS(5262), + [aux_sym_select_case_statement_token3] = ACTIONS(5262), + [aux_sym_select_type_statement_token1] = ACTIONS(5262), + [aux_sym_select_rank_statement_token2] = ACTIONS(5262), + [aux_sym_block_construct_token1] = ACTIONS(5262), + [aux_sym_associate_statement_token1] = ACTIONS(5262), + [aux_sym_format_statement_token1] = ACTIONS(5262), + [aux_sym_print_statement_token1] = ACTIONS(5262), + [aux_sym_open_statement_token1] = ACTIONS(5262), + [aux_sym_close_statement_token1] = ACTIONS(5262), + [aux_sym_inquire_statement_token1] = ACTIONS(5262), + [aux_sym_enum_statement_token1] = ACTIONS(5262), + [aux_sym_file_position_statement_token1] = ACTIONS(5262), + [aux_sym_file_position_statement_token2] = ACTIONS(5262), + [aux_sym_file_position_statement_token3] = ACTIONS(5262), + [aux_sym_file_position_statement_token4] = ACTIONS(5262), + [aux_sym_allocate_statement_token1] = ACTIONS(5262), + [aux_sym_entry_statement_token1] = ACTIONS(5262), + [aux_sym_logical_expression_token5] = ACTIONS(5266), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_LPAREN_SLASH] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [aux_sym_boolean_literal_token1] = ACTIONS(5266), + [aux_sym_boolean_literal_token2] = ACTIONS(5266), + [aux_sym_null_literal_token1] = ACTIONS(5262), + [aux_sym_coarray_statement_token1] = ACTIONS(5262), + [aux_sym_coarray_statement_token2] = ACTIONS(5262), + [aux_sym_coarray_statement_token6] = ACTIONS(5262), + [aux_sym_coarray_statement_token8] = ACTIONS(5262), + [aux_sym_coarray_statement_token11] = ACTIONS(5262), + [aux_sym_coarray_statement_token12] = ACTIONS(5262), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5262), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5262), + [aux_sym_identifier_token1] = ACTIONS(5262), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5266), + [sym__float_literal] = ACTIONS(5266), + [sym__boz_literal] = ACTIONS(5266), + [sym__string_literal] = ACTIONS(5266), + [sym__string_literal_kind] = ACTIONS(5266), }, [1276] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token2] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_LPAREN2] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_end_program_statement_token2] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_subroutine_call_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_keyword_statement_token4] = ACTIONS(5029), - [aux_sym_keyword_statement_token6] = ACTIONS(5029), - [aux_sym_keyword_statement_token7] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym_do_loop_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym__inline_where_statement_token1] = ACTIONS(5029), - [aux_sym__forall_control_expression_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token3] = ACTIONS(5029), - [aux_sym_select_type_statement_token1] = ACTIONS(5029), - [aux_sym_select_rank_statement_token2] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_associate_statement_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_print_statement_token1] = ACTIONS(5029), - [aux_sym_open_statement_token1] = ACTIONS(5029), - [aux_sym_close_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token2] = ACTIONS(5029), - [aux_sym_file_position_statement_token3] = ACTIONS(5029), - [aux_sym_file_position_statement_token4] = ACTIONS(5029), - [aux_sym_allocate_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_logical_expression_token5] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_LPAREN_SLASH] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [aux_sym_boolean_literal_token1] = ACTIONS(5031), - [aux_sym_boolean_literal_token2] = ACTIONS(5031), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - [sym__float_literal] = ACTIONS(5031), - [sym__boz_literal] = ACTIONS(5031), - [sym__string_literal] = ACTIONS(5031), - [sym__string_literal_kind] = ACTIONS(5031), + [aux_sym_preproc_include_token1] = ACTIONS(5288), + [aux_sym_preproc_def_token1] = ACTIONS(5288), + [aux_sym_preproc_if_token1] = ACTIONS(5288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5288), + [sym_preproc_directive] = ACTIONS(5288), + [anon_sym_LPAREN2] = ACTIONS(5288), + [sym_preproc_comment] = ACTIONS(5290), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5288), + [aux_sym_interface_statement_token1] = ACTIONS(5288), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5288), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5288), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5288), + [aux_sym_language_binding_token1] = ACTIONS(5288), + [aux_sym_procedure_attributes_token1] = ACTIONS(5288), + [aux_sym_procedure_attributes_token3] = ACTIONS(5288), + [aux_sym_end_function_statement_token1] = ACTIONS(5288), + [aux_sym_contains_statement_token1] = ACTIONS(5288), + [aux_sym_use_statement_token1] = ACTIONS(5288), + [aux_sym_use_statement_token2] = ACTIONS(5288), + [aux_sym_implicit_statement_token1] = ACTIONS(5288), + [aux_sym_implicit_statement_token3] = ACTIONS(5288), + [aux_sym_implicit_statement_token4] = ACTIONS(5288), + [aux_sym_save_statement_token1] = ACTIONS(5288), + [aux_sym_private_statement_token1] = ACTIONS(5288), + [aux_sym_public_statement_token1] = ACTIONS(5288), + [aux_sym_namelist_statement_token1] = ACTIONS(5288), + [aux_sym_common_statement_token1] = ACTIONS(5288), + [aux_sym_import_statement_token1] = ACTIONS(5288), + [aux_sym_derived_type_definition_token1] = ACTIONS(5288), + [aux_sym_abstract_specifier_token1] = ACTIONS(5288), + [aux_sym_procedure_attribute_token6] = ACTIONS(5288), + [aux_sym_variable_attributes_token1] = ACTIONS(5288), + [aux_sym_variable_attributes_token2] = ACTIONS(5288), + [aux_sym_variable_attributes_token3] = ACTIONS(5288), + [aux_sym_variable_attributes_token4] = ACTIONS(5288), + [aux_sym_variable_attributes_token5] = ACTIONS(5288), + [aux_sym__intrinsic_type_token1] = ACTIONS(5288), + [aux_sym__intrinsic_type_token2] = ACTIONS(5288), + [aux_sym__intrinsic_type_token3] = ACTIONS(5288), + [aux_sym__intrinsic_type_token4] = ACTIONS(5288), + [aux_sym__intrinsic_type_token6] = ACTIONS(5288), + [aux_sym__intrinsic_type_token7] = ACTIONS(5288), + [aux_sym__intrinsic_type_token8] = ACTIONS(5288), + [aux_sym__intrinsic_type_token9] = ACTIONS(5288), + [aux_sym__intrinsic_type_token10] = ACTIONS(5288), + [aux_sym_derived_type_token1] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5288), + [aux_sym_type_qualifier_token1] = ACTIONS(5288), + [aux_sym_type_qualifier_token2] = ACTIONS(5288), + [aux_sym_equivalence_statement_token1] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5292), + [aux_sym_stop_statement_token1] = ACTIONS(5288), + [aux_sym_stop_statement_token2] = ACTIONS(5288), + [aux_sym_subroutine_call_token1] = ACTIONS(5288), + [aux_sym_keyword_statement_token1] = ACTIONS(5288), + [aux_sym_keyword_statement_token2] = ACTIONS(5288), + [aux_sym_keyword_statement_token3] = ACTIONS(5288), + [aux_sym_keyword_statement_token4] = ACTIONS(5288), + [aux_sym_keyword_statement_token6] = ACTIONS(5288), + [aux_sym_keyword_statement_token7] = ACTIONS(5288), + [aux_sym_include_statement_token1] = ACTIONS(5288), + [aux_sym_data_statement_token1] = ACTIONS(5288), + [aux_sym_do_loop_statement_token1] = ACTIONS(5288), + [aux_sym__inline_if_statement_token1] = ACTIONS(5288), + [aux_sym_end_if_statement_token1] = ACTIONS(5288), + [aux_sym_elseif_clause_token2] = ACTIONS(5288), + [aux_sym__inline_where_statement_token1] = ACTIONS(5288), + [aux_sym__forall_control_expression_token1] = ACTIONS(5288), + [aux_sym_select_case_statement_token1] = ACTIONS(5288), + [aux_sym_select_case_statement_token3] = ACTIONS(5288), + [aux_sym_select_type_statement_token1] = ACTIONS(5288), + [aux_sym_select_rank_statement_token2] = ACTIONS(5288), + [aux_sym_block_construct_token1] = ACTIONS(5288), + [aux_sym_associate_statement_token1] = ACTIONS(5288), + [aux_sym_format_statement_token1] = ACTIONS(5288), + [aux_sym_print_statement_token1] = ACTIONS(5288), + [aux_sym_open_statement_token1] = ACTIONS(5288), + [aux_sym_close_statement_token1] = ACTIONS(5288), + [aux_sym_inquire_statement_token1] = ACTIONS(5288), + [aux_sym_enum_statement_token1] = ACTIONS(5288), + [aux_sym_file_position_statement_token1] = ACTIONS(5288), + [aux_sym_file_position_statement_token2] = ACTIONS(5288), + [aux_sym_file_position_statement_token3] = ACTIONS(5288), + [aux_sym_file_position_statement_token4] = ACTIONS(5288), + [aux_sym_allocate_statement_token1] = ACTIONS(5288), + [aux_sym_entry_statement_token1] = ACTIONS(5288), + [aux_sym_logical_expression_token5] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_LPAREN_SLASH] = ACTIONS(5292), + [anon_sym_LBRACK] = ACTIONS(5292), + [aux_sym_boolean_literal_token1] = ACTIONS(5292), + [aux_sym_boolean_literal_token2] = ACTIONS(5292), + [aux_sym_null_literal_token1] = ACTIONS(5288), + [aux_sym_coarray_statement_token1] = ACTIONS(5288), + [aux_sym_coarray_statement_token2] = ACTIONS(5288), + [aux_sym_coarray_statement_token6] = ACTIONS(5288), + [aux_sym_coarray_statement_token8] = ACTIONS(5288), + [aux_sym_coarray_statement_token11] = ACTIONS(5288), + [aux_sym_coarray_statement_token12] = ACTIONS(5288), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5288), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5288), + [aux_sym_identifier_token1] = ACTIONS(5288), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5292), + [sym__float_literal] = ACTIONS(5292), + [sym__boz_literal] = ACTIONS(5292), + [sym__string_literal] = ACTIONS(5292), + [sym__string_literal_kind] = ACTIONS(5292), }, [1277] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token2] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_LPAREN2] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_end_program_statement_token2] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_subroutine_call_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_keyword_statement_token4] = ACTIONS(5033), - [aux_sym_keyword_statement_token6] = ACTIONS(5033), - [aux_sym_keyword_statement_token7] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym_do_loop_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym__inline_where_statement_token1] = ACTIONS(5033), - [aux_sym__forall_control_expression_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token3] = ACTIONS(5033), - [aux_sym_select_type_statement_token1] = ACTIONS(5033), - [aux_sym_select_rank_statement_token2] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_associate_statement_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_print_statement_token1] = ACTIONS(5033), - [aux_sym_open_statement_token1] = ACTIONS(5033), - [aux_sym_close_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token2] = ACTIONS(5033), - [aux_sym_file_position_statement_token3] = ACTIONS(5033), - [aux_sym_file_position_statement_token4] = ACTIONS(5033), - [aux_sym_allocate_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_logical_expression_token5] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_LPAREN_SLASH] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [aux_sym_boolean_literal_token1] = ACTIONS(5035), - [aux_sym_boolean_literal_token2] = ACTIONS(5035), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - [sym__float_literal] = ACTIONS(5035), - [sym__boz_literal] = ACTIONS(5035), - [sym__string_literal] = ACTIONS(5035), - [sym__string_literal_kind] = ACTIONS(5035), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [sym_preproc_comment] = ACTIONS(5294), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1278] = { - [aux_sym_preproc_include_token1] = ACTIONS(5225), - [aux_sym_preproc_def_token1] = ACTIONS(5225), - [aux_sym_preproc_if_token1] = ACTIONS(5225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5225), - [sym_preproc_directive] = ACTIONS(5225), - [anon_sym_LPAREN2] = ACTIONS(5225), - [sym_preproc_comment] = ACTIONS(5295), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5225), - [aux_sym_end_program_statement_token2] = ACTIONS(5225), - [aux_sym_interface_statement_token1] = ACTIONS(5225), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5225), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5225), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5225), - [aux_sym_language_binding_token1] = ACTIONS(5225), - [aux_sym_procedure_attributes_token1] = ACTIONS(5225), - [aux_sym_procedure_attributes_token3] = ACTIONS(5225), - [aux_sym_contains_statement_token1] = ACTIONS(5225), - [aux_sym_use_statement_token1] = ACTIONS(5225), - [aux_sym_use_statement_token2] = ACTIONS(5225), - [aux_sym_implicit_statement_token1] = ACTIONS(5225), - [aux_sym_implicit_statement_token3] = ACTIONS(5225), - [aux_sym_implicit_statement_token4] = ACTIONS(5225), - [aux_sym_save_statement_token1] = ACTIONS(5225), - [aux_sym_private_statement_token1] = ACTIONS(5225), - [aux_sym_public_statement_token1] = ACTIONS(5225), - [aux_sym_namelist_statement_token1] = ACTIONS(5225), - [aux_sym_common_statement_token1] = ACTIONS(5225), - [aux_sym_import_statement_token1] = ACTIONS(5225), - [aux_sym_derived_type_definition_token1] = ACTIONS(5225), - [aux_sym_abstract_specifier_token1] = ACTIONS(5225), - [aux_sym_procedure_attribute_token6] = ACTIONS(5225), - [aux_sym_variable_attributes_token1] = ACTIONS(5225), - [aux_sym_variable_attributes_token2] = ACTIONS(5225), - [aux_sym_variable_attributes_token3] = ACTIONS(5225), - [aux_sym_variable_attributes_token4] = ACTIONS(5225), - [aux_sym_variable_attributes_token5] = ACTIONS(5225), - [aux_sym__intrinsic_type_token1] = ACTIONS(5225), - [aux_sym__intrinsic_type_token2] = ACTIONS(5225), - [aux_sym__intrinsic_type_token3] = ACTIONS(5225), - [aux_sym__intrinsic_type_token4] = ACTIONS(5225), - [aux_sym__intrinsic_type_token6] = ACTIONS(5225), - [aux_sym__intrinsic_type_token7] = ACTIONS(5225), - [aux_sym__intrinsic_type_token8] = ACTIONS(5225), - [aux_sym__intrinsic_type_token9] = ACTIONS(5225), - [aux_sym__intrinsic_type_token10] = ACTIONS(5225), - [aux_sym_derived_type_token1] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5225), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5225), - [aux_sym_type_qualifier_token1] = ACTIONS(5225), - [aux_sym_type_qualifier_token2] = ACTIONS(5225), - [aux_sym_equivalence_statement_token1] = ACTIONS(5225), - [anon_sym_SEMI] = ACTIONS(5229), - [aux_sym_stop_statement_token1] = ACTIONS(5225), - [aux_sym_stop_statement_token2] = ACTIONS(5225), - [aux_sym_subroutine_call_token1] = ACTIONS(5225), - [aux_sym_keyword_statement_token1] = ACTIONS(5225), - [aux_sym_keyword_statement_token2] = ACTIONS(5225), - [aux_sym_keyword_statement_token3] = ACTIONS(5225), - [aux_sym_keyword_statement_token4] = ACTIONS(5225), - [aux_sym_keyword_statement_token6] = ACTIONS(5225), - [aux_sym_keyword_statement_token7] = ACTIONS(5225), - [aux_sym_include_statement_token1] = ACTIONS(5225), - [aux_sym_data_statement_token1] = ACTIONS(5225), - [aux_sym_do_loop_statement_token1] = ACTIONS(5225), - [aux_sym__inline_if_statement_token1] = ACTIONS(5225), - [aux_sym_end_if_statement_token1] = ACTIONS(5225), - [aux_sym_elseif_clause_token2] = ACTIONS(5225), - [aux_sym__inline_where_statement_token1] = ACTIONS(5225), - [aux_sym__forall_control_expression_token1] = ACTIONS(5225), - [aux_sym_select_case_statement_token1] = ACTIONS(5225), - [aux_sym_select_case_statement_token3] = ACTIONS(5225), - [aux_sym_select_type_statement_token1] = ACTIONS(5225), - [aux_sym_select_rank_statement_token2] = ACTIONS(5225), - [aux_sym_block_construct_token1] = ACTIONS(5225), - [aux_sym_associate_statement_token1] = ACTIONS(5225), - [aux_sym_format_statement_token1] = ACTIONS(5225), - [aux_sym_print_statement_token1] = ACTIONS(5225), - [aux_sym_open_statement_token1] = ACTIONS(5225), - [aux_sym_close_statement_token1] = ACTIONS(5225), - [aux_sym_inquire_statement_token1] = ACTIONS(5225), - [aux_sym_enum_statement_token1] = ACTIONS(5225), - [aux_sym_file_position_statement_token1] = ACTIONS(5225), - [aux_sym_file_position_statement_token2] = ACTIONS(5225), - [aux_sym_file_position_statement_token3] = ACTIONS(5225), - [aux_sym_file_position_statement_token4] = ACTIONS(5225), - [aux_sym_allocate_statement_token1] = ACTIONS(5225), - [aux_sym_entry_statement_token1] = ACTIONS(5225), - [aux_sym_logical_expression_token5] = ACTIONS(5229), - [anon_sym_DOT] = ACTIONS(5225), - [anon_sym_LPAREN_SLASH] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [aux_sym_boolean_literal_token1] = ACTIONS(5229), - [aux_sym_boolean_literal_token2] = ACTIONS(5229), - [aux_sym_null_literal_token1] = ACTIONS(5225), - [aux_sym_coarray_statement_token1] = ACTIONS(5225), - [aux_sym_coarray_statement_token2] = ACTIONS(5225), - [aux_sym_coarray_statement_token6] = ACTIONS(5225), - [aux_sym_coarray_statement_token8] = ACTIONS(5225), - [aux_sym_coarray_statement_token11] = ACTIONS(5225), - [aux_sym_coarray_statement_token12] = ACTIONS(5225), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5225), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5225), - [aux_sym_identifier_token1] = ACTIONS(5225), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5229), - [sym__float_literal] = ACTIONS(5229), - [sym__boz_literal] = ACTIONS(5229), - [sym__string_literal] = ACTIONS(5229), - [sym__string_literal_kind] = ACTIONS(5229), + [aux_sym_preproc_include_token1] = ACTIONS(5071), + [aux_sym_preproc_def_token1] = ACTIONS(5071), + [aux_sym_preproc_if_token1] = ACTIONS(5071), + [aux_sym_preproc_if_token2] = ACTIONS(5074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5071), + [sym_preproc_directive] = ACTIONS(5071), + [anon_sym_LPAREN2] = ACTIONS(5071), + [anon_sym_PLUS] = ACTIONS(5076), + [anon_sym_DASH] = ACTIONS(5076), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5071), + [aux_sym_end_program_statement_token2] = ACTIONS(5079), + [aux_sym_interface_statement_token1] = ACTIONS(5071), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5071), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5071), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5071), + [aux_sym_language_binding_token1] = ACTIONS(5071), + [aux_sym_procedure_attributes_token1] = ACTIONS(5071), + [aux_sym_procedure_attributes_token3] = ACTIONS(5071), + [aux_sym_contains_statement_token1] = ACTIONS(5071), + [aux_sym_use_statement_token1] = ACTIONS(5071), + [aux_sym_use_statement_token2] = ACTIONS(5071), + [aux_sym_implicit_statement_token1] = ACTIONS(5071), + [aux_sym_implicit_statement_token3] = ACTIONS(5071), + [aux_sym_implicit_statement_token4] = ACTIONS(5071), + [aux_sym_save_statement_token1] = ACTIONS(5071), + [aux_sym_private_statement_token1] = ACTIONS(5071), + [aux_sym_public_statement_token1] = ACTIONS(5071), + [aux_sym_namelist_statement_token1] = ACTIONS(5071), + [aux_sym_common_statement_token1] = ACTIONS(5071), + [aux_sym_import_statement_token1] = ACTIONS(5071), + [aux_sym_derived_type_definition_token1] = ACTIONS(5071), + [aux_sym_abstract_specifier_token1] = ACTIONS(5071), + [aux_sym_procedure_attribute_token6] = ACTIONS(5071), + [aux_sym_variable_attributes_token1] = ACTIONS(5071), + [aux_sym_variable_attributes_token2] = ACTIONS(5071), + [aux_sym_variable_attributes_token3] = ACTIONS(5071), + [aux_sym_variable_attributes_token4] = ACTIONS(5071), + [aux_sym_variable_attributes_token5] = ACTIONS(5071), + [aux_sym__intrinsic_type_token1] = ACTIONS(5071), + [aux_sym__intrinsic_type_token2] = ACTIONS(5071), + [aux_sym__intrinsic_type_token3] = ACTIONS(5071), + [aux_sym__intrinsic_type_token4] = ACTIONS(5071), + [aux_sym__intrinsic_type_token6] = ACTIONS(5071), + [aux_sym__intrinsic_type_token7] = ACTIONS(5071), + [aux_sym__intrinsic_type_token8] = ACTIONS(5071), + [aux_sym__intrinsic_type_token9] = ACTIONS(5071), + [aux_sym__intrinsic_type_token10] = ACTIONS(5071), + [aux_sym_derived_type_token1] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5071), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5071), + [aux_sym_type_qualifier_token1] = ACTIONS(5071), + [aux_sym_type_qualifier_token2] = ACTIONS(5071), + [aux_sym_equivalence_statement_token1] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5076), + [aux_sym_stop_statement_token1] = ACTIONS(5071), + [aux_sym_stop_statement_token2] = ACTIONS(5071), + [aux_sym_subroutine_call_token1] = ACTIONS(5071), + [aux_sym_keyword_statement_token1] = ACTIONS(5071), + [aux_sym_keyword_statement_token2] = ACTIONS(5071), + [aux_sym_keyword_statement_token3] = ACTIONS(5071), + [aux_sym_keyword_statement_token4] = ACTIONS(5071), + [aux_sym_keyword_statement_token6] = ACTIONS(5071), + [aux_sym_keyword_statement_token7] = ACTIONS(5071), + [aux_sym_include_statement_token1] = ACTIONS(5071), + [aux_sym_data_statement_token1] = ACTIONS(5071), + [aux_sym_do_loop_statement_token1] = ACTIONS(5071), + [aux_sym__inline_if_statement_token1] = ACTIONS(5071), + [aux_sym_end_if_statement_token1] = ACTIONS(5071), + [aux_sym_elseif_clause_token2] = ACTIONS(5071), + [aux_sym__inline_where_statement_token1] = ACTIONS(5071), + [aux_sym__forall_control_expression_token1] = ACTIONS(5071), + [aux_sym_select_case_statement_token1] = ACTIONS(5071), + [aux_sym_select_case_statement_token3] = ACTIONS(5071), + [aux_sym_select_type_statement_token1] = ACTIONS(5071), + [aux_sym_select_rank_statement_token2] = ACTIONS(5071), + [aux_sym_block_construct_token1] = ACTIONS(5071), + [aux_sym_associate_statement_token1] = ACTIONS(5071), + [aux_sym_format_statement_token1] = ACTIONS(5071), + [aux_sym_print_statement_token1] = ACTIONS(5071), + [aux_sym_open_statement_token1] = ACTIONS(5071), + [aux_sym_close_statement_token1] = ACTIONS(5071), + [aux_sym_inquire_statement_token1] = ACTIONS(5071), + [aux_sym_enum_statement_token1] = ACTIONS(5071), + [aux_sym_file_position_statement_token1] = ACTIONS(5071), + [aux_sym_file_position_statement_token2] = ACTIONS(5071), + [aux_sym_file_position_statement_token3] = ACTIONS(5071), + [aux_sym_file_position_statement_token4] = ACTIONS(5071), + [aux_sym_allocate_statement_token1] = ACTIONS(5071), + [aux_sym_entry_statement_token1] = ACTIONS(5071), + [aux_sym_logical_expression_token5] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_LPAREN_SLASH] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [aux_sym_boolean_literal_token1] = ACTIONS(5076), + [aux_sym_boolean_literal_token2] = ACTIONS(5076), + [aux_sym_null_literal_token1] = ACTIONS(5071), + [aux_sym_coarray_statement_token1] = ACTIONS(5071), + [aux_sym_coarray_statement_token2] = ACTIONS(5071), + [aux_sym_coarray_statement_token6] = ACTIONS(5071), + [aux_sym_coarray_statement_token8] = ACTIONS(5071), + [aux_sym_coarray_statement_token11] = ACTIONS(5071), + [aux_sym_coarray_statement_token12] = ACTIONS(5071), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5071), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5071), + [aux_sym_identifier_token1] = ACTIONS(5071), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5076), + [sym__float_literal] = ACTIONS(5076), + [sym__boz_literal] = ACTIONS(5076), + [sym__string_literal] = ACTIONS(5076), + [sym__string_literal_kind] = ACTIONS(5076), }, [1279] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_end_function_statement_token1] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token2] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_LPAREN2] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_end_program_statement_token2] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_subroutine_call_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_keyword_statement_token4] = ACTIONS(5063), + [aux_sym_keyword_statement_token6] = ACTIONS(5063), + [aux_sym_keyword_statement_token7] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym_do_loop_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym__inline_where_statement_token1] = ACTIONS(5063), + [aux_sym__forall_control_expression_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token3] = ACTIONS(5063), + [aux_sym_select_type_statement_token1] = ACTIONS(5063), + [aux_sym_select_rank_statement_token2] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_associate_statement_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_print_statement_token1] = ACTIONS(5063), + [aux_sym_open_statement_token1] = ACTIONS(5063), + [aux_sym_close_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token2] = ACTIONS(5063), + [aux_sym_file_position_statement_token3] = ACTIONS(5063), + [aux_sym_file_position_statement_token4] = ACTIONS(5063), + [aux_sym_allocate_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_logical_expression_token5] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_LPAREN_SLASH] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [aux_sym_boolean_literal_token1] = ACTIONS(5065), + [aux_sym_boolean_literal_token2] = ACTIONS(5065), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + [sym__float_literal] = ACTIONS(5065), + [sym__boz_literal] = ACTIONS(5065), + [sym__string_literal] = ACTIONS(5065), + [sym__string_literal_kind] = ACTIONS(5065), }, [1280] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [sym_preproc_comment] = ACTIONS(5299), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token2] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_end_program_statement_token2] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_subroutine_call_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_keyword_statement_token4] = ACTIONS(4982), + [aux_sym_keyword_statement_token6] = ACTIONS(4982), + [aux_sym_keyword_statement_token7] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym_do_loop_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym__inline_where_statement_token1] = ACTIONS(4982), + [aux_sym__forall_control_expression_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token3] = ACTIONS(4982), + [aux_sym_select_type_statement_token1] = ACTIONS(4982), + [aux_sym_select_rank_statement_token2] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_associate_statement_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_print_statement_token1] = ACTIONS(4982), + [aux_sym_open_statement_token1] = ACTIONS(4982), + [aux_sym_close_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token2] = ACTIONS(4982), + [aux_sym_file_position_statement_token3] = ACTIONS(4982), + [aux_sym_file_position_statement_token4] = ACTIONS(4982), + [aux_sym_allocate_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_logical_expression_token5] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_LPAREN_SLASH] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [aux_sym_boolean_literal_token1] = ACTIONS(4984), + [aux_sym_boolean_literal_token2] = ACTIONS(4984), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + [sym__float_literal] = ACTIONS(4984), + [sym__boz_literal] = ACTIONS(4984), + [sym__string_literal] = ACTIONS(4984), + [sym__string_literal_kind] = ACTIONS(4984), }, [1281] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(5301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(5296), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_end_function_statement_token1] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [1282] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token2] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_LPAREN2] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_end_program_statement_token2] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_subroutine_call_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_keyword_statement_token4] = ACTIONS(5041), - [aux_sym_keyword_statement_token6] = ACTIONS(5041), - [aux_sym_keyword_statement_token7] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym_do_loop_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym__inline_where_statement_token1] = ACTIONS(5041), - [aux_sym__forall_control_expression_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token3] = ACTIONS(5041), - [aux_sym_select_type_statement_token1] = ACTIONS(5041), - [aux_sym_select_rank_statement_token2] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_associate_statement_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_print_statement_token1] = ACTIONS(5041), - [aux_sym_open_statement_token1] = ACTIONS(5041), - [aux_sym_close_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token2] = ACTIONS(5041), - [aux_sym_file_position_statement_token3] = ACTIONS(5041), - [aux_sym_file_position_statement_token4] = ACTIONS(5041), - [aux_sym_allocate_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_logical_expression_token5] = ACTIONS(5043), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_LPAREN_SLASH] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [aux_sym_boolean_literal_token1] = ACTIONS(5043), - [aux_sym_boolean_literal_token2] = ACTIONS(5043), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - [sym__float_literal] = ACTIONS(5043), - [sym__boz_literal] = ACTIONS(5043), - [sym__string_literal] = ACTIONS(5043), - [sym__string_literal_kind] = ACTIONS(5043), + [aux_sym_preproc_include_token1] = ACTIONS(5262), + [aux_sym_preproc_def_token1] = ACTIONS(5262), + [aux_sym_preproc_if_token1] = ACTIONS(5262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5262), + [sym_preproc_directive] = ACTIONS(5262), + [anon_sym_LPAREN2] = ACTIONS(5262), + [sym_preproc_comment] = ACTIONS(5298), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5262), + [aux_sym_interface_statement_token1] = ACTIONS(5262), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5262), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5262), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5262), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5262), + [aux_sym_language_binding_token1] = ACTIONS(5262), + [aux_sym_procedure_attributes_token1] = ACTIONS(5262), + [aux_sym_procedure_attributes_token3] = ACTIONS(5262), + [aux_sym_contains_statement_token1] = ACTIONS(5262), + [aux_sym_use_statement_token1] = ACTIONS(5262), + [aux_sym_use_statement_token2] = ACTIONS(5262), + [aux_sym_implicit_statement_token1] = ACTIONS(5262), + [aux_sym_implicit_statement_token3] = ACTIONS(5262), + [aux_sym_implicit_statement_token4] = ACTIONS(5262), + [aux_sym_save_statement_token1] = ACTIONS(5262), + [aux_sym_private_statement_token1] = ACTIONS(5262), + [aux_sym_public_statement_token1] = ACTIONS(5262), + [aux_sym_namelist_statement_token1] = ACTIONS(5262), + [aux_sym_common_statement_token1] = ACTIONS(5262), + [aux_sym_import_statement_token1] = ACTIONS(5262), + [aux_sym_derived_type_definition_token1] = ACTIONS(5262), + [aux_sym_abstract_specifier_token1] = ACTIONS(5262), + [aux_sym_procedure_attribute_token6] = ACTIONS(5262), + [aux_sym_variable_attributes_token1] = ACTIONS(5262), + [aux_sym_variable_attributes_token2] = ACTIONS(5262), + [aux_sym_variable_attributes_token3] = ACTIONS(5262), + [aux_sym_variable_attributes_token4] = ACTIONS(5262), + [aux_sym_variable_attributes_token5] = ACTIONS(5262), + [aux_sym__intrinsic_type_token1] = ACTIONS(5262), + [aux_sym__intrinsic_type_token2] = ACTIONS(5262), + [aux_sym__intrinsic_type_token3] = ACTIONS(5262), + [aux_sym__intrinsic_type_token4] = ACTIONS(5262), + [aux_sym__intrinsic_type_token6] = ACTIONS(5262), + [aux_sym__intrinsic_type_token7] = ACTIONS(5262), + [aux_sym__intrinsic_type_token8] = ACTIONS(5262), + [aux_sym__intrinsic_type_token9] = ACTIONS(5262), + [aux_sym__intrinsic_type_token10] = ACTIONS(5262), + [aux_sym_derived_type_token1] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5262), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5262), + [aux_sym_type_qualifier_token1] = ACTIONS(5262), + [aux_sym_type_qualifier_token2] = ACTIONS(5262), + [aux_sym_equivalence_statement_token1] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5266), + [aux_sym_stop_statement_token1] = ACTIONS(5262), + [aux_sym_stop_statement_token2] = ACTIONS(5262), + [aux_sym_subroutine_call_token1] = ACTIONS(5262), + [aux_sym_keyword_statement_token1] = ACTIONS(5262), + [aux_sym_keyword_statement_token2] = ACTIONS(5262), + [aux_sym_keyword_statement_token3] = ACTIONS(5262), + [aux_sym_keyword_statement_token4] = ACTIONS(5262), + [aux_sym_keyword_statement_token6] = ACTIONS(5262), + [aux_sym_keyword_statement_token7] = ACTIONS(5262), + [aux_sym_include_statement_token1] = ACTIONS(5262), + [aux_sym_data_statement_token1] = ACTIONS(5262), + [aux_sym_do_loop_statement_token1] = ACTIONS(5262), + [aux_sym__inline_if_statement_token1] = ACTIONS(5262), + [aux_sym_end_if_statement_token1] = ACTIONS(5262), + [aux_sym_elseif_clause_token2] = ACTIONS(5262), + [aux_sym__inline_where_statement_token1] = ACTIONS(5262), + [aux_sym__forall_control_expression_token1] = ACTIONS(5262), + [aux_sym_select_case_statement_token1] = ACTIONS(5262), + [aux_sym_select_case_statement_token3] = ACTIONS(5262), + [aux_sym_select_type_statement_token1] = ACTIONS(5262), + [aux_sym_select_rank_statement_token2] = ACTIONS(5262), + [aux_sym_block_construct_token1] = ACTIONS(5262), + [aux_sym_associate_statement_token1] = ACTIONS(5262), + [aux_sym_format_statement_token1] = ACTIONS(5262), + [aux_sym_print_statement_token1] = ACTIONS(5262), + [aux_sym_open_statement_token1] = ACTIONS(5262), + [aux_sym_close_statement_token1] = ACTIONS(5262), + [aux_sym_inquire_statement_token1] = ACTIONS(5262), + [aux_sym_enum_statement_token1] = ACTIONS(5262), + [aux_sym_file_position_statement_token1] = ACTIONS(5262), + [aux_sym_file_position_statement_token2] = ACTIONS(5262), + [aux_sym_file_position_statement_token3] = ACTIONS(5262), + [aux_sym_file_position_statement_token4] = ACTIONS(5262), + [aux_sym_allocate_statement_token1] = ACTIONS(5262), + [aux_sym_entry_statement_token1] = ACTIONS(5262), + [aux_sym_logical_expression_token5] = ACTIONS(5266), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_LPAREN_SLASH] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5266), + [aux_sym_boolean_literal_token1] = ACTIONS(5266), + [aux_sym_boolean_literal_token2] = ACTIONS(5266), + [aux_sym_null_literal_token1] = ACTIONS(5262), + [aux_sym_coarray_statement_token1] = ACTIONS(5262), + [aux_sym_coarray_statement_token2] = ACTIONS(5262), + [aux_sym_coarray_statement_token6] = ACTIONS(5262), + [aux_sym_coarray_statement_token8] = ACTIONS(5262), + [aux_sym_coarray_statement_token11] = ACTIONS(5262), + [aux_sym_coarray_statement_token12] = ACTIONS(5262), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5262), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5262), + [aux_sym_identifier_token1] = ACTIONS(5262), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5266), + [sym__float_literal] = ACTIONS(5266), + [sym__boz_literal] = ACTIONS(5266), + [sym__string_literal] = ACTIONS(5266), + [sym__string_literal_kind] = ACTIONS(5266), }, [1283] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token2] = ACTIONS(4327), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), }, [1284] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [sym_preproc_comment] = ACTIONS(5305), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_end_program_statement_token2] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token2] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_end_program_statement_token2] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_subroutine_call_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_keyword_statement_token4] = ACTIONS(4986), + [aux_sym_keyword_statement_token6] = ACTIONS(4986), + [aux_sym_keyword_statement_token7] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym_do_loop_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym__inline_where_statement_token1] = ACTIONS(4986), + [aux_sym__forall_control_expression_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token3] = ACTIONS(4986), + [aux_sym_select_type_statement_token1] = ACTIONS(4986), + [aux_sym_select_rank_statement_token2] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_associate_statement_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_print_statement_token1] = ACTIONS(4986), + [aux_sym_open_statement_token1] = ACTIONS(4986), + [aux_sym_close_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token2] = ACTIONS(4986), + [aux_sym_file_position_statement_token3] = ACTIONS(4986), + [aux_sym_file_position_statement_token4] = ACTIONS(4986), + [aux_sym_allocate_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_logical_expression_token5] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LPAREN_SLASH] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [aux_sym_boolean_literal_token1] = ACTIONS(4988), + [aux_sym_boolean_literal_token2] = ACTIONS(4988), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + [sym__float_literal] = ACTIONS(4988), + [sym__boz_literal] = ACTIONS(4988), + [sym__string_literal] = ACTIONS(4988), + [sym__string_literal_kind] = ACTIONS(4988), }, [1285] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [aux_sym_preproc_include_token1] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token2] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4990), + [aux_sym_end_program_statement_token2] = ACTIONS(4990), + [aux_sym_interface_statement_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_language_binding_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_contains_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token2] = ACTIONS(4990), + [aux_sym_implicit_statement_token1] = ACTIONS(4990), + [aux_sym_implicit_statement_token3] = ACTIONS(4990), + [aux_sym_implicit_statement_token4] = ACTIONS(4990), + [aux_sym_save_statement_token1] = ACTIONS(4990), + [aux_sym_private_statement_token1] = ACTIONS(4990), + [aux_sym_public_statement_token1] = ACTIONS(4990), + [aux_sym_namelist_statement_token1] = ACTIONS(4990), + [aux_sym_common_statement_token1] = ACTIONS(4990), + [aux_sym_import_statement_token1] = ACTIONS(4990), + [aux_sym_derived_type_definition_token1] = ACTIONS(4990), + [aux_sym_abstract_specifier_token1] = ACTIONS(4990), + [aux_sym_procedure_attribute_token6] = ACTIONS(4990), + [aux_sym_variable_attributes_token1] = ACTIONS(4990), + [aux_sym_variable_attributes_token2] = ACTIONS(4990), + [aux_sym_variable_attributes_token3] = ACTIONS(4990), + [aux_sym_variable_attributes_token4] = ACTIONS(4990), + [aux_sym_variable_attributes_token5] = ACTIONS(4990), + [aux_sym__intrinsic_type_token1] = ACTIONS(4990), + [aux_sym__intrinsic_type_token2] = ACTIONS(4990), + [aux_sym__intrinsic_type_token3] = ACTIONS(4990), + [aux_sym__intrinsic_type_token4] = ACTIONS(4990), + [aux_sym__intrinsic_type_token6] = ACTIONS(4990), + [aux_sym__intrinsic_type_token7] = ACTIONS(4990), + [aux_sym__intrinsic_type_token8] = ACTIONS(4990), + [aux_sym__intrinsic_type_token9] = ACTIONS(4990), + [aux_sym__intrinsic_type_token10] = ACTIONS(4990), + [aux_sym_derived_type_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), + [aux_sym_type_qualifier_token1] = ACTIONS(4990), + [aux_sym_type_qualifier_token2] = ACTIONS(4990), + [aux_sym_equivalence_statement_token1] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(4992), + [aux_sym_stop_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token2] = ACTIONS(4990), + [aux_sym_subroutine_call_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token3] = ACTIONS(4990), + [aux_sym_keyword_statement_token4] = ACTIONS(4990), + [aux_sym_keyword_statement_token6] = ACTIONS(4990), + [aux_sym_keyword_statement_token7] = ACTIONS(4990), + [aux_sym_include_statement_token1] = ACTIONS(4990), + [aux_sym_data_statement_token1] = ACTIONS(4990), + [aux_sym_do_loop_statement_token1] = ACTIONS(4990), + [aux_sym__inline_if_statement_token1] = ACTIONS(4990), + [aux_sym_end_if_statement_token1] = ACTIONS(4990), + [aux_sym_elseif_clause_token2] = ACTIONS(4990), + [aux_sym__inline_where_statement_token1] = ACTIONS(4990), + [aux_sym__forall_control_expression_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token3] = ACTIONS(4990), + [aux_sym_select_type_statement_token1] = ACTIONS(4990), + [aux_sym_select_rank_statement_token2] = ACTIONS(4990), + [aux_sym_block_construct_token1] = ACTIONS(4990), + [aux_sym_associate_statement_token1] = ACTIONS(4990), + [aux_sym_format_statement_token1] = ACTIONS(4990), + [aux_sym_print_statement_token1] = ACTIONS(4990), + [aux_sym_open_statement_token1] = ACTIONS(4990), + [aux_sym_close_statement_token1] = ACTIONS(4990), + [aux_sym_inquire_statement_token1] = ACTIONS(4990), + [aux_sym_enum_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token2] = ACTIONS(4990), + [aux_sym_file_position_statement_token3] = ACTIONS(4990), + [aux_sym_file_position_statement_token4] = ACTIONS(4990), + [aux_sym_allocate_statement_token1] = ACTIONS(4990), + [aux_sym_entry_statement_token1] = ACTIONS(4990), + [aux_sym_logical_expression_token5] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_LPAREN_SLASH] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [aux_sym_boolean_literal_token1] = ACTIONS(4992), + [aux_sym_boolean_literal_token2] = ACTIONS(4992), + [aux_sym_null_literal_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token2] = ACTIONS(4990), + [aux_sym_coarray_statement_token6] = ACTIONS(4990), + [aux_sym_coarray_statement_token8] = ACTIONS(4990), + [aux_sym_coarray_statement_token11] = ACTIONS(4990), + [aux_sym_coarray_statement_token12] = ACTIONS(4990), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), + [aux_sym_identifier_token1] = ACTIONS(4990), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4992), + [sym__float_literal] = ACTIONS(4992), + [sym__boz_literal] = ACTIONS(4992), + [sym__string_literal] = ACTIONS(4992), + [sym__string_literal_kind] = ACTIONS(4992), }, [1286] = { - [aux_sym_preproc_include_token1] = ACTIONS(5147), - [aux_sym_preproc_def_token1] = ACTIONS(5147), - [aux_sym_preproc_if_token1] = ACTIONS(5147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5147), - [sym_preproc_directive] = ACTIONS(5147), - [anon_sym_LPAREN2] = ACTIONS(5147), - [sym_preproc_comment] = ACTIONS(5307), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5147), - [aux_sym_interface_statement_token1] = ACTIONS(5147), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5147), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5147), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5147), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5147), - [aux_sym_language_binding_token1] = ACTIONS(5147), - [aux_sym_procedure_attributes_token1] = ACTIONS(5147), - [aux_sym_procedure_attributes_token3] = ACTIONS(5147), - [aux_sym_contains_statement_token1] = ACTIONS(5147), - [aux_sym_use_statement_token1] = ACTIONS(5147), - [aux_sym_use_statement_token2] = ACTIONS(5147), - [aux_sym_implicit_statement_token1] = ACTIONS(5147), - [aux_sym_implicit_statement_token3] = ACTIONS(5147), - [aux_sym_implicit_statement_token4] = ACTIONS(5147), - [aux_sym_save_statement_token1] = ACTIONS(5147), - [aux_sym_private_statement_token1] = ACTIONS(5147), - [aux_sym_public_statement_token1] = ACTIONS(5147), - [aux_sym_namelist_statement_token1] = ACTIONS(5147), - [aux_sym_common_statement_token1] = ACTIONS(5147), - [aux_sym_import_statement_token1] = ACTIONS(5147), - [aux_sym_derived_type_definition_token1] = ACTIONS(5147), - [aux_sym_abstract_specifier_token1] = ACTIONS(5147), - [aux_sym_procedure_attribute_token6] = ACTIONS(5147), - [aux_sym_variable_attributes_token1] = ACTIONS(5147), - [aux_sym_variable_attributes_token2] = ACTIONS(5147), - [aux_sym_variable_attributes_token3] = ACTIONS(5147), - [aux_sym_variable_attributes_token4] = ACTIONS(5147), - [aux_sym_variable_attributes_token5] = ACTIONS(5147), - [aux_sym__intrinsic_type_token1] = ACTIONS(5147), - [aux_sym__intrinsic_type_token2] = ACTIONS(5147), - [aux_sym__intrinsic_type_token3] = ACTIONS(5147), - [aux_sym__intrinsic_type_token4] = ACTIONS(5147), - [aux_sym__intrinsic_type_token6] = ACTIONS(5147), - [aux_sym__intrinsic_type_token7] = ACTIONS(5147), - [aux_sym__intrinsic_type_token8] = ACTIONS(5147), - [aux_sym__intrinsic_type_token9] = ACTIONS(5147), - [aux_sym__intrinsic_type_token10] = ACTIONS(5147), - [aux_sym_derived_type_token1] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5147), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5147), - [aux_sym_type_qualifier_token1] = ACTIONS(5147), - [aux_sym_type_qualifier_token2] = ACTIONS(5147), - [aux_sym_equivalence_statement_token1] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5151), - [aux_sym_stop_statement_token1] = ACTIONS(5147), - [aux_sym_stop_statement_token2] = ACTIONS(5147), - [aux_sym_subroutine_call_token1] = ACTIONS(5147), - [aux_sym_keyword_statement_token1] = ACTIONS(5147), - [aux_sym_keyword_statement_token2] = ACTIONS(5147), - [aux_sym_keyword_statement_token3] = ACTIONS(5147), - [aux_sym_keyword_statement_token4] = ACTIONS(5147), - [aux_sym_keyword_statement_token6] = ACTIONS(5147), - [aux_sym_keyword_statement_token7] = ACTIONS(5147), - [aux_sym_include_statement_token1] = ACTIONS(5147), - [aux_sym_data_statement_token1] = ACTIONS(5147), - [aux_sym_do_loop_statement_token1] = ACTIONS(5147), - [aux_sym__inline_if_statement_token1] = ACTIONS(5147), - [aux_sym_end_if_statement_token1] = ACTIONS(5147), - [aux_sym_elseif_clause_token2] = ACTIONS(5147), - [aux_sym__inline_where_statement_token1] = ACTIONS(5147), - [aux_sym__forall_control_expression_token1] = ACTIONS(5147), - [aux_sym_select_case_statement_token1] = ACTIONS(5147), - [aux_sym_select_case_statement_token3] = ACTIONS(5147), - [aux_sym_select_type_statement_token1] = ACTIONS(5147), - [aux_sym_select_rank_statement_token2] = ACTIONS(5147), - [aux_sym_block_construct_token1] = ACTIONS(5147), - [aux_sym_associate_statement_token1] = ACTIONS(5147), - [aux_sym_format_statement_token1] = ACTIONS(5147), - [aux_sym_print_statement_token1] = ACTIONS(5147), - [aux_sym_open_statement_token1] = ACTIONS(5147), - [aux_sym_close_statement_token1] = ACTIONS(5147), - [aux_sym_inquire_statement_token1] = ACTIONS(5147), - [aux_sym_enum_statement_token1] = ACTIONS(5147), - [aux_sym_file_position_statement_token1] = ACTIONS(5147), - [aux_sym_file_position_statement_token2] = ACTIONS(5147), - [aux_sym_file_position_statement_token3] = ACTIONS(5147), - [aux_sym_file_position_statement_token4] = ACTIONS(5147), - [aux_sym_allocate_statement_token1] = ACTIONS(5147), - [aux_sym_entry_statement_token1] = ACTIONS(5147), - [aux_sym_logical_expression_token5] = ACTIONS(5151), - [anon_sym_DOT] = ACTIONS(5147), - [anon_sym_LPAREN_SLASH] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [aux_sym_boolean_literal_token1] = ACTIONS(5151), - [aux_sym_boolean_literal_token2] = ACTIONS(5151), - [aux_sym_null_literal_token1] = ACTIONS(5147), - [aux_sym_coarray_statement_token1] = ACTIONS(5147), - [aux_sym_coarray_statement_token2] = ACTIONS(5147), - [aux_sym_coarray_statement_token6] = ACTIONS(5147), - [aux_sym_coarray_statement_token8] = ACTIONS(5147), - [aux_sym_coarray_statement_token11] = ACTIONS(5147), - [aux_sym_coarray_statement_token12] = ACTIONS(5147), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5147), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5147), - [aux_sym_identifier_token1] = ACTIONS(5147), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5151), - [sym__float_literal] = ACTIONS(5151), - [sym__boz_literal] = ACTIONS(5151), - [sym__string_literal] = ACTIONS(5151), - [sym__string_literal_kind] = ACTIONS(5151), + [aux_sym_preproc_include_token1] = ACTIONS(5288), + [aux_sym_preproc_def_token1] = ACTIONS(5288), + [aux_sym_preproc_if_token1] = ACTIONS(5288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5288), + [sym_preproc_directive] = ACTIONS(5288), + [anon_sym_LPAREN2] = ACTIONS(5288), + [sym_preproc_comment] = ACTIONS(5302), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5288), + [aux_sym_interface_statement_token1] = ACTIONS(5288), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5288), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5288), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5288), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5288), + [aux_sym_language_binding_token1] = ACTIONS(5288), + [aux_sym_procedure_attributes_token1] = ACTIONS(5288), + [aux_sym_procedure_attributes_token3] = ACTIONS(5288), + [aux_sym_contains_statement_token1] = ACTIONS(5288), + [aux_sym_use_statement_token1] = ACTIONS(5288), + [aux_sym_use_statement_token2] = ACTIONS(5288), + [aux_sym_implicit_statement_token1] = ACTIONS(5288), + [aux_sym_implicit_statement_token3] = ACTIONS(5288), + [aux_sym_implicit_statement_token4] = ACTIONS(5288), + [aux_sym_save_statement_token1] = ACTIONS(5288), + [aux_sym_private_statement_token1] = ACTIONS(5288), + [aux_sym_public_statement_token1] = ACTIONS(5288), + [aux_sym_namelist_statement_token1] = ACTIONS(5288), + [aux_sym_common_statement_token1] = ACTIONS(5288), + [aux_sym_import_statement_token1] = ACTIONS(5288), + [aux_sym_derived_type_definition_token1] = ACTIONS(5288), + [aux_sym_abstract_specifier_token1] = ACTIONS(5288), + [aux_sym_procedure_attribute_token6] = ACTIONS(5288), + [aux_sym_variable_attributes_token1] = ACTIONS(5288), + [aux_sym_variable_attributes_token2] = ACTIONS(5288), + [aux_sym_variable_attributes_token3] = ACTIONS(5288), + [aux_sym_variable_attributes_token4] = ACTIONS(5288), + [aux_sym_variable_attributes_token5] = ACTIONS(5288), + [aux_sym__intrinsic_type_token1] = ACTIONS(5288), + [aux_sym__intrinsic_type_token2] = ACTIONS(5288), + [aux_sym__intrinsic_type_token3] = ACTIONS(5288), + [aux_sym__intrinsic_type_token4] = ACTIONS(5288), + [aux_sym__intrinsic_type_token6] = ACTIONS(5288), + [aux_sym__intrinsic_type_token7] = ACTIONS(5288), + [aux_sym__intrinsic_type_token8] = ACTIONS(5288), + [aux_sym__intrinsic_type_token9] = ACTIONS(5288), + [aux_sym__intrinsic_type_token10] = ACTIONS(5288), + [aux_sym_derived_type_token1] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5288), + [aux_sym_type_qualifier_token1] = ACTIONS(5288), + [aux_sym_type_qualifier_token2] = ACTIONS(5288), + [aux_sym_equivalence_statement_token1] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5292), + [aux_sym_stop_statement_token1] = ACTIONS(5288), + [aux_sym_stop_statement_token2] = ACTIONS(5288), + [aux_sym_subroutine_call_token1] = ACTIONS(5288), + [aux_sym_keyword_statement_token1] = ACTIONS(5288), + [aux_sym_keyword_statement_token2] = ACTIONS(5288), + [aux_sym_keyword_statement_token3] = ACTIONS(5288), + [aux_sym_keyword_statement_token4] = ACTIONS(5288), + [aux_sym_keyword_statement_token6] = ACTIONS(5288), + [aux_sym_keyword_statement_token7] = ACTIONS(5288), + [aux_sym_include_statement_token1] = ACTIONS(5288), + [aux_sym_data_statement_token1] = ACTIONS(5288), + [aux_sym_do_loop_statement_token1] = ACTIONS(5288), + [aux_sym__inline_if_statement_token1] = ACTIONS(5288), + [aux_sym_end_if_statement_token1] = ACTIONS(5288), + [aux_sym_elseif_clause_token2] = ACTIONS(5288), + [aux_sym__inline_where_statement_token1] = ACTIONS(5288), + [aux_sym__forall_control_expression_token1] = ACTIONS(5288), + [aux_sym_select_case_statement_token1] = ACTIONS(5288), + [aux_sym_select_case_statement_token3] = ACTIONS(5288), + [aux_sym_select_type_statement_token1] = ACTIONS(5288), + [aux_sym_select_rank_statement_token2] = ACTIONS(5288), + [aux_sym_block_construct_token1] = ACTIONS(5288), + [aux_sym_associate_statement_token1] = ACTIONS(5288), + [aux_sym_format_statement_token1] = ACTIONS(5288), + [aux_sym_print_statement_token1] = ACTIONS(5288), + [aux_sym_open_statement_token1] = ACTIONS(5288), + [aux_sym_close_statement_token1] = ACTIONS(5288), + [aux_sym_inquire_statement_token1] = ACTIONS(5288), + [aux_sym_enum_statement_token1] = ACTIONS(5288), + [aux_sym_file_position_statement_token1] = ACTIONS(5288), + [aux_sym_file_position_statement_token2] = ACTIONS(5288), + [aux_sym_file_position_statement_token3] = ACTIONS(5288), + [aux_sym_file_position_statement_token4] = ACTIONS(5288), + [aux_sym_allocate_statement_token1] = ACTIONS(5288), + [aux_sym_entry_statement_token1] = ACTIONS(5288), + [aux_sym_logical_expression_token5] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_LPAREN_SLASH] = ACTIONS(5292), + [anon_sym_LBRACK] = ACTIONS(5292), + [aux_sym_boolean_literal_token1] = ACTIONS(5292), + [aux_sym_boolean_literal_token2] = ACTIONS(5292), + [aux_sym_null_literal_token1] = ACTIONS(5288), + [aux_sym_coarray_statement_token1] = ACTIONS(5288), + [aux_sym_coarray_statement_token2] = ACTIONS(5288), + [aux_sym_coarray_statement_token6] = ACTIONS(5288), + [aux_sym_coarray_statement_token8] = ACTIONS(5288), + [aux_sym_coarray_statement_token11] = ACTIONS(5288), + [aux_sym_coarray_statement_token12] = ACTIONS(5288), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5288), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5288), + [aux_sym_identifier_token1] = ACTIONS(5288), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5292), + [sym__float_literal] = ACTIONS(5292), + [sym__boz_literal] = ACTIONS(5292), + [sym__string_literal] = ACTIONS(5292), + [sym__string_literal_kind] = ACTIONS(5292), }, [1287] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [sym_preproc_comment] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_end_function_statement_token1] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), - }, - [1288] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(5304), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), + }, + [1288] = { + [aux_sym_preproc_include_token1] = ACTIONS(5208), + [aux_sym_preproc_def_token1] = ACTIONS(5208), + [aux_sym_preproc_if_token1] = ACTIONS(5208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5208), + [sym_preproc_directive] = ACTIONS(5208), + [anon_sym_LPAREN2] = ACTIONS(5208), + [sym_preproc_comment] = ACTIONS(5306), + [anon_sym_PLUS] = ACTIONS(5212), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5208), + [aux_sym_interface_statement_token1] = ACTIONS(5208), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5208), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5208), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5208), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5208), + [aux_sym_language_binding_token1] = ACTIONS(5208), + [aux_sym_procedure_attributes_token1] = ACTIONS(5208), + [aux_sym_procedure_attributes_token3] = ACTIONS(5208), + [aux_sym_contains_statement_token1] = ACTIONS(5208), + [aux_sym_use_statement_token1] = ACTIONS(5208), + [aux_sym_use_statement_token2] = ACTIONS(5208), + [aux_sym_implicit_statement_token1] = ACTIONS(5208), + [aux_sym_implicit_statement_token3] = ACTIONS(5208), + [aux_sym_implicit_statement_token4] = ACTIONS(5208), + [aux_sym_save_statement_token1] = ACTIONS(5208), + [aux_sym_private_statement_token1] = ACTIONS(5208), + [aux_sym_public_statement_token1] = ACTIONS(5208), + [aux_sym_namelist_statement_token1] = ACTIONS(5208), + [aux_sym_common_statement_token1] = ACTIONS(5208), + [aux_sym_import_statement_token1] = ACTIONS(5208), + [aux_sym_derived_type_definition_token1] = ACTIONS(5208), + [aux_sym_abstract_specifier_token1] = ACTIONS(5208), + [aux_sym_procedure_attribute_token6] = ACTIONS(5208), + [aux_sym_variable_attributes_token1] = ACTIONS(5208), + [aux_sym_variable_attributes_token2] = ACTIONS(5208), + [aux_sym_variable_attributes_token3] = ACTIONS(5208), + [aux_sym_variable_attributes_token4] = ACTIONS(5208), + [aux_sym_variable_attributes_token5] = ACTIONS(5208), + [aux_sym__intrinsic_type_token1] = ACTIONS(5208), + [aux_sym__intrinsic_type_token2] = ACTIONS(5208), + [aux_sym__intrinsic_type_token3] = ACTIONS(5208), + [aux_sym__intrinsic_type_token4] = ACTIONS(5208), + [aux_sym__intrinsic_type_token6] = ACTIONS(5208), + [aux_sym__intrinsic_type_token7] = ACTIONS(5208), + [aux_sym__intrinsic_type_token8] = ACTIONS(5208), + [aux_sym__intrinsic_type_token9] = ACTIONS(5208), + [aux_sym__intrinsic_type_token10] = ACTIONS(5208), + [aux_sym_derived_type_token1] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5208), + [aux_sym_type_qualifier_token1] = ACTIONS(5208), + [aux_sym_type_qualifier_token2] = ACTIONS(5208), + [aux_sym_equivalence_statement_token1] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5212), + [aux_sym_stop_statement_token1] = ACTIONS(5208), + [aux_sym_stop_statement_token2] = ACTIONS(5208), + [aux_sym_subroutine_call_token1] = ACTIONS(5208), + [aux_sym_keyword_statement_token1] = ACTIONS(5208), + [aux_sym_keyword_statement_token2] = ACTIONS(5208), + [aux_sym_keyword_statement_token3] = ACTIONS(5208), + [aux_sym_keyword_statement_token4] = ACTIONS(5208), + [aux_sym_keyword_statement_token6] = ACTIONS(5208), + [aux_sym_keyword_statement_token7] = ACTIONS(5208), + [aux_sym_include_statement_token1] = ACTIONS(5208), + [aux_sym_data_statement_token1] = ACTIONS(5208), + [aux_sym_do_loop_statement_token1] = ACTIONS(5208), + [aux_sym__inline_if_statement_token1] = ACTIONS(5208), + [aux_sym_end_if_statement_token1] = ACTIONS(5208), + [aux_sym_elseif_clause_token2] = ACTIONS(5208), + [aux_sym__inline_where_statement_token1] = ACTIONS(5208), + [aux_sym__forall_control_expression_token1] = ACTIONS(5208), + [aux_sym_select_case_statement_token1] = ACTIONS(5208), + [aux_sym_select_case_statement_token3] = ACTIONS(5208), + [aux_sym_select_type_statement_token1] = ACTIONS(5208), + [aux_sym_select_rank_statement_token2] = ACTIONS(5208), + [aux_sym_block_construct_token1] = ACTIONS(5208), + [aux_sym_associate_statement_token1] = ACTIONS(5208), + [aux_sym_format_statement_token1] = ACTIONS(5208), + [aux_sym_print_statement_token1] = ACTIONS(5208), + [aux_sym_open_statement_token1] = ACTIONS(5208), + [aux_sym_close_statement_token1] = ACTIONS(5208), + [aux_sym_inquire_statement_token1] = ACTIONS(5208), + [aux_sym_enum_statement_token1] = ACTIONS(5208), + [aux_sym_file_position_statement_token1] = ACTIONS(5208), + [aux_sym_file_position_statement_token2] = ACTIONS(5208), + [aux_sym_file_position_statement_token3] = ACTIONS(5208), + [aux_sym_file_position_statement_token4] = ACTIONS(5208), + [aux_sym_allocate_statement_token1] = ACTIONS(5208), + [aux_sym_entry_statement_token1] = ACTIONS(5208), + [aux_sym_logical_expression_token5] = ACTIONS(5212), + [anon_sym_DOT] = ACTIONS(5208), + [anon_sym_LPAREN_SLASH] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [aux_sym_boolean_literal_token1] = ACTIONS(5212), + [aux_sym_boolean_literal_token2] = ACTIONS(5212), + [aux_sym_null_literal_token1] = ACTIONS(5208), + [aux_sym_coarray_statement_token1] = ACTIONS(5208), + [aux_sym_coarray_statement_token2] = ACTIONS(5208), + [aux_sym_coarray_statement_token6] = ACTIONS(5208), + [aux_sym_coarray_statement_token8] = ACTIONS(5208), + [aux_sym_coarray_statement_token11] = ACTIONS(5208), + [aux_sym_coarray_statement_token12] = ACTIONS(5208), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5208), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5208), + [aux_sym_identifier_token1] = ACTIONS(5208), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5212), + [sym__float_literal] = ACTIONS(5212), + [sym__boz_literal] = ACTIONS(5212), + [sym__string_literal] = ACTIONS(5212), + [sym__string_literal_kind] = ACTIONS(5212), }, [1289] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [sym_preproc_comment] = ACTIONS(5311), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(5308), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [1290] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(5313), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_end_function_statement_token1] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), - }, - [1291] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(5315), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [sym_preproc_comment] = ACTIONS(5310), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), + }, + [1291] = { + [aux_sym_preproc_include_token1] = ACTIONS(5236), + [aux_sym_preproc_def_token1] = ACTIONS(5236), + [aux_sym_preproc_if_token1] = ACTIONS(5236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5236), + [sym_preproc_directive] = ACTIONS(5236), + [anon_sym_LPAREN2] = ACTIONS(5236), + [sym_preproc_comment] = ACTIONS(5312), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5236), + [aux_sym_interface_statement_token1] = ACTIONS(5236), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5236), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5236), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5236), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5236), + [aux_sym_language_binding_token1] = ACTIONS(5236), + [aux_sym_procedure_attributes_token1] = ACTIONS(5236), + [aux_sym_procedure_attributes_token3] = ACTIONS(5236), + [aux_sym_contains_statement_token1] = ACTIONS(5236), + [aux_sym_use_statement_token1] = ACTIONS(5236), + [aux_sym_use_statement_token2] = ACTIONS(5236), + [aux_sym_implicit_statement_token1] = ACTIONS(5236), + [aux_sym_implicit_statement_token3] = ACTIONS(5236), + [aux_sym_implicit_statement_token4] = ACTIONS(5236), + [aux_sym_save_statement_token1] = ACTIONS(5236), + [aux_sym_private_statement_token1] = ACTIONS(5236), + [aux_sym_public_statement_token1] = ACTIONS(5236), + [aux_sym_namelist_statement_token1] = ACTIONS(5236), + [aux_sym_common_statement_token1] = ACTIONS(5236), + [aux_sym_import_statement_token1] = ACTIONS(5236), + [aux_sym_derived_type_definition_token1] = ACTIONS(5236), + [aux_sym_abstract_specifier_token1] = ACTIONS(5236), + [aux_sym_procedure_attribute_token6] = ACTIONS(5236), + [aux_sym_variable_attributes_token1] = ACTIONS(5236), + [aux_sym_variable_attributes_token2] = ACTIONS(5236), + [aux_sym_variable_attributes_token3] = ACTIONS(5236), + [aux_sym_variable_attributes_token4] = ACTIONS(5236), + [aux_sym_variable_attributes_token5] = ACTIONS(5236), + [aux_sym__intrinsic_type_token1] = ACTIONS(5236), + [aux_sym__intrinsic_type_token2] = ACTIONS(5236), + [aux_sym__intrinsic_type_token3] = ACTIONS(5236), + [aux_sym__intrinsic_type_token4] = ACTIONS(5236), + [aux_sym__intrinsic_type_token6] = ACTIONS(5236), + [aux_sym__intrinsic_type_token7] = ACTIONS(5236), + [aux_sym__intrinsic_type_token8] = ACTIONS(5236), + [aux_sym__intrinsic_type_token9] = ACTIONS(5236), + [aux_sym__intrinsic_type_token10] = ACTIONS(5236), + [aux_sym_derived_type_token1] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5236), + [aux_sym_type_qualifier_token1] = ACTIONS(5236), + [aux_sym_type_qualifier_token2] = ACTIONS(5236), + [aux_sym_equivalence_statement_token1] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5240), + [aux_sym_stop_statement_token1] = ACTIONS(5236), + [aux_sym_stop_statement_token2] = ACTIONS(5236), + [aux_sym_subroutine_call_token1] = ACTIONS(5236), + [aux_sym_keyword_statement_token1] = ACTIONS(5236), + [aux_sym_keyword_statement_token2] = ACTIONS(5236), + [aux_sym_keyword_statement_token3] = ACTIONS(5236), + [aux_sym_keyword_statement_token4] = ACTIONS(5236), + [aux_sym_keyword_statement_token6] = ACTIONS(5236), + [aux_sym_keyword_statement_token7] = ACTIONS(5236), + [aux_sym_include_statement_token1] = ACTIONS(5236), + [aux_sym_data_statement_token1] = ACTIONS(5236), + [aux_sym_do_loop_statement_token1] = ACTIONS(5236), + [aux_sym__inline_if_statement_token1] = ACTIONS(5236), + [aux_sym_end_if_statement_token1] = ACTIONS(5236), + [aux_sym_elseif_clause_token2] = ACTIONS(5236), + [aux_sym__inline_where_statement_token1] = ACTIONS(5236), + [aux_sym__forall_control_expression_token1] = ACTIONS(5236), + [aux_sym_select_case_statement_token1] = ACTIONS(5236), + [aux_sym_select_case_statement_token3] = ACTIONS(5236), + [aux_sym_select_type_statement_token1] = ACTIONS(5236), + [aux_sym_select_rank_statement_token2] = ACTIONS(5236), + [aux_sym_block_construct_token1] = ACTIONS(5236), + [aux_sym_associate_statement_token1] = ACTIONS(5236), + [aux_sym_format_statement_token1] = ACTIONS(5236), + [aux_sym_print_statement_token1] = ACTIONS(5236), + [aux_sym_open_statement_token1] = ACTIONS(5236), + [aux_sym_close_statement_token1] = ACTIONS(5236), + [aux_sym_inquire_statement_token1] = ACTIONS(5236), + [aux_sym_enum_statement_token1] = ACTIONS(5236), + [aux_sym_file_position_statement_token1] = ACTIONS(5236), + [aux_sym_file_position_statement_token2] = ACTIONS(5236), + [aux_sym_file_position_statement_token3] = ACTIONS(5236), + [aux_sym_file_position_statement_token4] = ACTIONS(5236), + [aux_sym_allocate_statement_token1] = ACTIONS(5236), + [aux_sym_entry_statement_token1] = ACTIONS(5236), + [aux_sym_logical_expression_token5] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_LPAREN_SLASH] = ACTIONS(5240), + [anon_sym_LBRACK] = ACTIONS(5240), + [aux_sym_boolean_literal_token1] = ACTIONS(5240), + [aux_sym_boolean_literal_token2] = ACTIONS(5240), + [aux_sym_null_literal_token1] = ACTIONS(5236), + [aux_sym_coarray_statement_token1] = ACTIONS(5236), + [aux_sym_coarray_statement_token2] = ACTIONS(5236), + [aux_sym_coarray_statement_token6] = ACTIONS(5236), + [aux_sym_coarray_statement_token8] = ACTIONS(5236), + [aux_sym_coarray_statement_token11] = ACTIONS(5236), + [aux_sym_coarray_statement_token12] = ACTIONS(5236), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5236), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5236), + [aux_sym_identifier_token1] = ACTIONS(5236), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5240), + [sym__float_literal] = ACTIONS(5240), + [sym__boz_literal] = ACTIONS(5240), + [sym__string_literal] = ACTIONS(5240), + [sym__string_literal_kind] = ACTIONS(5240), }, [1292] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(5317), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4313), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [sym_preproc_comment] = ACTIONS(5314), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1293] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token2] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_LPAREN2] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_end_program_statement_token2] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_subroutine_call_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_keyword_statement_token4] = ACTIONS(5045), - [aux_sym_keyword_statement_token6] = ACTIONS(5045), - [aux_sym_keyword_statement_token7] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym_do_loop_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym__inline_where_statement_token1] = ACTIONS(5045), - [aux_sym__forall_control_expression_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token3] = ACTIONS(5045), - [aux_sym_select_type_statement_token1] = ACTIONS(5045), - [aux_sym_select_rank_statement_token2] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_associate_statement_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_print_statement_token1] = ACTIONS(5045), - [aux_sym_open_statement_token1] = ACTIONS(5045), - [aux_sym_close_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token2] = ACTIONS(5045), - [aux_sym_file_position_statement_token3] = ACTIONS(5045), - [aux_sym_file_position_statement_token4] = ACTIONS(5045), - [aux_sym_allocate_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_logical_expression_token5] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_LPAREN_SLASH] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [aux_sym_boolean_literal_token1] = ACTIONS(5047), - [aux_sym_boolean_literal_token2] = ACTIONS(5047), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - [sym__float_literal] = ACTIONS(5047), - [sym__boz_literal] = ACTIONS(5047), - [sym__string_literal] = ACTIONS(5047), - [sym__string_literal_kind] = ACTIONS(5047), + [aux_sym_preproc_include_token1] = ACTIONS(5288), + [aux_sym_preproc_def_token1] = ACTIONS(5288), + [aux_sym_preproc_if_token1] = ACTIONS(5288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5288), + [sym_preproc_directive] = ACTIONS(5288), + [anon_sym_LPAREN2] = ACTIONS(5288), + [sym_preproc_comment] = ACTIONS(5316), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5288), + [aux_sym_interface_statement_token1] = ACTIONS(5288), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5288), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5288), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5288), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5288), + [aux_sym_language_binding_token1] = ACTIONS(5288), + [aux_sym_procedure_attributes_token1] = ACTIONS(5288), + [aux_sym_procedure_attributes_token3] = ACTIONS(5288), + [aux_sym_contains_statement_token1] = ACTIONS(5288), + [aux_sym_use_statement_token1] = ACTIONS(5288), + [aux_sym_use_statement_token2] = ACTIONS(5288), + [aux_sym_implicit_statement_token1] = ACTIONS(5288), + [aux_sym_implicit_statement_token3] = ACTIONS(5288), + [aux_sym_implicit_statement_token4] = ACTIONS(5288), + [aux_sym_save_statement_token1] = ACTIONS(5288), + [aux_sym_private_statement_token1] = ACTIONS(5288), + [aux_sym_public_statement_token1] = ACTIONS(5288), + [aux_sym_namelist_statement_token1] = ACTIONS(5288), + [aux_sym_common_statement_token1] = ACTIONS(5288), + [aux_sym_import_statement_token1] = ACTIONS(5288), + [aux_sym_derived_type_definition_token1] = ACTIONS(5288), + [aux_sym_abstract_specifier_token1] = ACTIONS(5288), + [aux_sym_procedure_attribute_token6] = ACTIONS(5288), + [aux_sym_variable_attributes_token1] = ACTIONS(5288), + [aux_sym_variable_attributes_token2] = ACTIONS(5288), + [aux_sym_variable_attributes_token3] = ACTIONS(5288), + [aux_sym_variable_attributes_token4] = ACTIONS(5288), + [aux_sym_variable_attributes_token5] = ACTIONS(5288), + [aux_sym__intrinsic_type_token1] = ACTIONS(5288), + [aux_sym__intrinsic_type_token2] = ACTIONS(5288), + [aux_sym__intrinsic_type_token3] = ACTIONS(5288), + [aux_sym__intrinsic_type_token4] = ACTIONS(5288), + [aux_sym__intrinsic_type_token6] = ACTIONS(5288), + [aux_sym__intrinsic_type_token7] = ACTIONS(5288), + [aux_sym__intrinsic_type_token8] = ACTIONS(5288), + [aux_sym__intrinsic_type_token9] = ACTIONS(5288), + [aux_sym__intrinsic_type_token10] = ACTIONS(5288), + [aux_sym_derived_type_token1] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5288), + [aux_sym_type_qualifier_token1] = ACTIONS(5288), + [aux_sym_type_qualifier_token2] = ACTIONS(5288), + [aux_sym_equivalence_statement_token1] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5292), + [aux_sym_stop_statement_token1] = ACTIONS(5288), + [aux_sym_stop_statement_token2] = ACTIONS(5288), + [aux_sym_subroutine_call_token1] = ACTIONS(5288), + [aux_sym_keyword_statement_token1] = ACTIONS(5288), + [aux_sym_keyword_statement_token2] = ACTIONS(5288), + [aux_sym_keyword_statement_token3] = ACTIONS(5288), + [aux_sym_keyword_statement_token4] = ACTIONS(5288), + [aux_sym_keyword_statement_token6] = ACTIONS(5288), + [aux_sym_keyword_statement_token7] = ACTIONS(5288), + [aux_sym_include_statement_token1] = ACTIONS(5288), + [aux_sym_data_statement_token1] = ACTIONS(5288), + [aux_sym_do_loop_statement_token1] = ACTIONS(5288), + [aux_sym__inline_if_statement_token1] = ACTIONS(5288), + [aux_sym_end_if_statement_token1] = ACTIONS(5288), + [aux_sym_elseif_clause_token2] = ACTIONS(5288), + [aux_sym__inline_where_statement_token1] = ACTIONS(5288), + [aux_sym__forall_control_expression_token1] = ACTIONS(5288), + [aux_sym_select_case_statement_token1] = ACTIONS(5288), + [aux_sym_select_case_statement_token3] = ACTIONS(5288), + [aux_sym_select_type_statement_token1] = ACTIONS(5288), + [aux_sym_select_rank_statement_token2] = ACTIONS(5288), + [aux_sym_block_construct_token1] = ACTIONS(5288), + [aux_sym_associate_statement_token1] = ACTIONS(5288), + [aux_sym_format_statement_token1] = ACTIONS(5288), + [aux_sym_print_statement_token1] = ACTIONS(5288), + [aux_sym_open_statement_token1] = ACTIONS(5288), + [aux_sym_close_statement_token1] = ACTIONS(5288), + [aux_sym_inquire_statement_token1] = ACTIONS(5288), + [aux_sym_enum_statement_token1] = ACTIONS(5288), + [aux_sym_file_position_statement_token1] = ACTIONS(5288), + [aux_sym_file_position_statement_token2] = ACTIONS(5288), + [aux_sym_file_position_statement_token3] = ACTIONS(5288), + [aux_sym_file_position_statement_token4] = ACTIONS(5288), + [aux_sym_allocate_statement_token1] = ACTIONS(5288), + [aux_sym_entry_statement_token1] = ACTIONS(5288), + [aux_sym_logical_expression_token5] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_LPAREN_SLASH] = ACTIONS(5292), + [anon_sym_LBRACK] = ACTIONS(5292), + [aux_sym_boolean_literal_token1] = ACTIONS(5292), + [aux_sym_boolean_literal_token2] = ACTIONS(5292), + [aux_sym_null_literal_token1] = ACTIONS(5288), + [aux_sym_coarray_statement_token1] = ACTIONS(5288), + [aux_sym_coarray_statement_token2] = ACTIONS(5288), + [aux_sym_coarray_statement_token6] = ACTIONS(5288), + [aux_sym_coarray_statement_token8] = ACTIONS(5288), + [aux_sym_coarray_statement_token11] = ACTIONS(5288), + [aux_sym_coarray_statement_token12] = ACTIONS(5288), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5288), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5288), + [aux_sym_identifier_token1] = ACTIONS(5288), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5292), + [sym__float_literal] = ACTIONS(5292), + [sym__boz_literal] = ACTIONS(5292), + [sym__string_literal] = ACTIONS(5292), + [sym__string_literal_kind] = ACTIONS(5292), }, [1294] = { - [aux_sym_preproc_include_token1] = ACTIONS(5119), - [aux_sym_preproc_def_token1] = ACTIONS(5119), - [aux_sym_preproc_if_token1] = ACTIONS(5119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5119), - [sym_preproc_directive] = ACTIONS(5119), - [anon_sym_LPAREN2] = ACTIONS(5119), - [sym_preproc_comment] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5119), - [aux_sym_end_program_statement_token2] = ACTIONS(5119), - [aux_sym_interface_statement_token1] = ACTIONS(5119), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5119), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5119), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5119), - [aux_sym_language_binding_token1] = ACTIONS(5119), - [aux_sym_procedure_attributes_token1] = ACTIONS(5119), - [aux_sym_procedure_attributes_token3] = ACTIONS(5119), - [aux_sym_contains_statement_token1] = ACTIONS(5119), - [aux_sym_use_statement_token1] = ACTIONS(5119), - [aux_sym_use_statement_token2] = ACTIONS(5119), - [aux_sym_implicit_statement_token1] = ACTIONS(5119), - [aux_sym_implicit_statement_token3] = ACTIONS(5119), - [aux_sym_implicit_statement_token4] = ACTIONS(5119), - [aux_sym_save_statement_token1] = ACTIONS(5119), - [aux_sym_private_statement_token1] = ACTIONS(5119), - [aux_sym_public_statement_token1] = ACTIONS(5119), - [aux_sym_namelist_statement_token1] = ACTIONS(5119), - [aux_sym_common_statement_token1] = ACTIONS(5119), - [aux_sym_import_statement_token1] = ACTIONS(5119), - [aux_sym_derived_type_definition_token1] = ACTIONS(5119), - [aux_sym_abstract_specifier_token1] = ACTIONS(5119), - [aux_sym_procedure_attribute_token6] = ACTIONS(5119), - [aux_sym_variable_attributes_token1] = ACTIONS(5119), - [aux_sym_variable_attributes_token2] = ACTIONS(5119), - [aux_sym_variable_attributes_token3] = ACTIONS(5119), - [aux_sym_variable_attributes_token4] = ACTIONS(5119), - [aux_sym_variable_attributes_token5] = ACTIONS(5119), - [aux_sym__intrinsic_type_token1] = ACTIONS(5119), - [aux_sym__intrinsic_type_token2] = ACTIONS(5119), - [aux_sym__intrinsic_type_token3] = ACTIONS(5119), - [aux_sym__intrinsic_type_token4] = ACTIONS(5119), - [aux_sym__intrinsic_type_token6] = ACTIONS(5119), - [aux_sym__intrinsic_type_token7] = ACTIONS(5119), - [aux_sym__intrinsic_type_token8] = ACTIONS(5119), - [aux_sym__intrinsic_type_token9] = ACTIONS(5119), - [aux_sym__intrinsic_type_token10] = ACTIONS(5119), - [aux_sym_derived_type_token1] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5119), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5119), - [aux_sym_type_qualifier_token1] = ACTIONS(5119), - [aux_sym_type_qualifier_token2] = ACTIONS(5119), - [aux_sym_equivalence_statement_token1] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5123), - [aux_sym_stop_statement_token1] = ACTIONS(5119), - [aux_sym_stop_statement_token2] = ACTIONS(5119), - [aux_sym_subroutine_call_token1] = ACTIONS(5119), - [aux_sym_keyword_statement_token1] = ACTIONS(5119), - [aux_sym_keyword_statement_token2] = ACTIONS(5119), - [aux_sym_keyword_statement_token3] = ACTIONS(5119), - [aux_sym_keyword_statement_token4] = ACTIONS(5119), - [aux_sym_keyword_statement_token6] = ACTIONS(5119), - [aux_sym_keyword_statement_token7] = ACTIONS(5119), - [aux_sym_include_statement_token1] = ACTIONS(5119), - [aux_sym_data_statement_token1] = ACTIONS(5119), - [aux_sym_do_loop_statement_token1] = ACTIONS(5119), - [aux_sym__inline_if_statement_token1] = ACTIONS(5119), - [aux_sym_end_if_statement_token1] = ACTIONS(5119), - [aux_sym_elseif_clause_token2] = ACTIONS(5119), - [aux_sym__inline_where_statement_token1] = ACTIONS(5119), - [aux_sym__forall_control_expression_token1] = ACTIONS(5119), - [aux_sym_select_case_statement_token1] = ACTIONS(5119), - [aux_sym_select_case_statement_token3] = ACTIONS(5119), - [aux_sym_select_type_statement_token1] = ACTIONS(5119), - [aux_sym_select_rank_statement_token2] = ACTIONS(5119), - [aux_sym_block_construct_token1] = ACTIONS(5119), - [aux_sym_associate_statement_token1] = ACTIONS(5119), - [aux_sym_format_statement_token1] = ACTIONS(5119), - [aux_sym_print_statement_token1] = ACTIONS(5119), - [aux_sym_open_statement_token1] = ACTIONS(5119), - [aux_sym_close_statement_token1] = ACTIONS(5119), - [aux_sym_inquire_statement_token1] = ACTIONS(5119), - [aux_sym_enum_statement_token1] = ACTIONS(5119), - [aux_sym_file_position_statement_token1] = ACTIONS(5119), - [aux_sym_file_position_statement_token2] = ACTIONS(5119), - [aux_sym_file_position_statement_token3] = ACTIONS(5119), - [aux_sym_file_position_statement_token4] = ACTIONS(5119), - [aux_sym_allocate_statement_token1] = ACTIONS(5119), - [aux_sym_entry_statement_token1] = ACTIONS(5119), - [aux_sym_logical_expression_token5] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LPAREN_SLASH] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [aux_sym_boolean_literal_token1] = ACTIONS(5123), - [aux_sym_boolean_literal_token2] = ACTIONS(5123), - [aux_sym_null_literal_token1] = ACTIONS(5119), - [aux_sym_coarray_statement_token1] = ACTIONS(5119), - [aux_sym_coarray_statement_token2] = ACTIONS(5119), - [aux_sym_coarray_statement_token6] = ACTIONS(5119), - [aux_sym_coarray_statement_token8] = ACTIONS(5119), - [aux_sym_coarray_statement_token11] = ACTIONS(5119), - [aux_sym_coarray_statement_token12] = ACTIONS(5119), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5119), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5119), - [aux_sym_identifier_token1] = ACTIONS(5119), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5123), - [sym__float_literal] = ACTIONS(5123), - [sym__boz_literal] = ACTIONS(5123), - [sym__string_literal] = ACTIONS(5123), - [sym__string_literal_kind] = ACTIONS(5123), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [1295] = { - [sym_preproc_include] = STATE(1295), - [sym_preproc_def] = STATE(1295), - [sym_preproc_function_def] = STATE(1295), - [sym_preproc_call] = STATE(1295), - [sym_interface] = STATE(1295), - [sym_interface_statement] = STATE(3731), - [sym_language_binding] = STATE(3142), - [sym__specification_part] = STATE(1295), - [sym_use_statement] = STATE(6677), - [sym_implicit_statement] = STATE(6677), - [sym_save_statement] = STATE(6677), - [sym_private_statement] = STATE(1295), - [sym_public_statement] = STATE(1295), - [sym_namelist_statement] = STATE(6677), - [sym_common_statement] = STATE(6677), - [sym_import_statement] = STATE(6677), - [sym_derived_type_definition] = STATE(1295), - [sym_abstract_specifier] = STATE(7639), - [sym_derived_type_statement] = STATE(4215), - [sym_variable_declaration] = STATE(6677), - [sym_procedure_declaration] = STATE(3376), - [sym_variable_modification] = STATE(6677), - [sym_variable_attributes] = STATE(3142), - [sym__intrinsic_type] = STATE(3467), - [sym_intrinsic_type] = STATE(3376), - [sym_derived_type] = STATE(3376), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_parameter_statement] = STATE(6677), - [sym_equivalence_statement] = STATE(6677), - [sym_statement_label] = STATE(6964), - [sym_include_statement] = STATE(6677), - [sym_data_statement] = STATE(6677), - [sym_enum] = STATE(1295), - [sym_enum_statement] = STATE(5862), - [sym_statement_function] = STATE(6677), - [sym_identifier] = STATE(7086), - [aux_sym_preproc_if_in_module_repeat1] = STATE(1295), - [aux_sym_variable_modification_repeat1] = STATE(3142), - [aux_sym_preproc_include_token1] = ACTIONS(5321), - [aux_sym_preproc_def_token1] = ACTIONS(5324), - [aux_sym_preproc_if_token2] = ACTIONS(3916), - [sym_preproc_directive] = ACTIONS(5327), + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(5320), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(3923), - [aux_sym_interface_statement_token1] = ACTIONS(3926), - [aux_sym_defined_io_procedure_token1] = ACTIONS(3929), - [aux_sym_defined_io_procedure_token2] = ACTIONS(3929), - [aux_sym_module_procedure_statement_token1] = ACTIONS(3932), - [aux_sym_language_binding_token1] = ACTIONS(3935), - [aux_sym_procedure_attributes_token1] = ACTIONS(3938), - [aux_sym_procedure_attributes_token3] = ACTIONS(3941), - [aux_sym_contains_statement_token1] = ACTIONS(3916), - [aux_sym_use_statement_token1] = ACTIONS(3944), - [aux_sym_use_statement_token2] = ACTIONS(3941), - [aux_sym_implicit_statement_token1] = ACTIONS(3947), - [aux_sym_implicit_statement_token3] = ACTIONS(3950), - [aux_sym_implicit_statement_token4] = ACTIONS(3941), - [aux_sym_save_statement_token1] = ACTIONS(3953), - [aux_sym_private_statement_token1] = ACTIONS(5330), - [aux_sym_public_statement_token1] = ACTIONS(5333), - [aux_sym_namelist_statement_token1] = ACTIONS(3962), - [aux_sym_common_statement_token1] = ACTIONS(3965), - [aux_sym_import_statement_token1] = ACTIONS(3968), - [aux_sym_derived_type_definition_token1] = ACTIONS(3941), - [aux_sym_abstract_specifier_token1] = ACTIONS(3971), - [aux_sym_procedure_attribute_token6] = ACTIONS(3941), - [aux_sym_variable_attributes_token1] = ACTIONS(3974), - [aux_sym_variable_attributes_token2] = ACTIONS(3941), - [aux_sym_variable_attributes_token3] = ACTIONS(3941), - [aux_sym_variable_attributes_token4] = ACTIONS(3974), - [aux_sym_variable_attributes_token5] = ACTIONS(3941), - [aux_sym__intrinsic_type_token1] = ACTIONS(3977), - [aux_sym__intrinsic_type_token2] = ACTIONS(3980), - [aux_sym__intrinsic_type_token3] = ACTIONS(3977), - [aux_sym__intrinsic_type_token4] = ACTIONS(3983), - [aux_sym__intrinsic_type_token6] = ACTIONS(3980), - [aux_sym__intrinsic_type_token7] = ACTIONS(3980), - [aux_sym__intrinsic_type_token8] = ACTIONS(3986), - [aux_sym__intrinsic_type_token9] = ACTIONS(3980), - [aux_sym__intrinsic_type_token10] = ACTIONS(3980), - [aux_sym_derived_type_token1] = ACTIONS(3989), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(3992), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(3995), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(3998), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4001), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(3974), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(3941), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(3974), - [aux_sym_type_qualifier_token1] = ACTIONS(3929), - [aux_sym_type_qualifier_token2] = ACTIONS(3929), - [aux_sym_equivalence_statement_token1] = ACTIONS(4004), - [aux_sym_stop_statement_token1] = ACTIONS(3929), - [aux_sym_stop_statement_token2] = ACTIONS(3929), - [aux_sym_keyword_statement_token2] = ACTIONS(3929), - [aux_sym_keyword_statement_token3] = ACTIONS(3929), - [aux_sym_include_statement_token1] = ACTIONS(4007), - [aux_sym_data_statement_token1] = ACTIONS(4010), - [aux_sym__inline_if_statement_token1] = ACTIONS(3929), - [aux_sym_end_if_statement_token1] = ACTIONS(3929), - [aux_sym_elseif_clause_token2] = ACTIONS(3929), - [aux_sym_select_case_statement_token1] = ACTIONS(4013), - [aux_sym_block_construct_token1] = ACTIONS(3929), - [aux_sym_format_statement_token1] = ACTIONS(3929), - [aux_sym_inquire_statement_token1] = ACTIONS(3929), - [aux_sym_enum_statement_token1] = ACTIONS(4016), - [aux_sym_entry_statement_token1] = ACTIONS(3929), - [aux_sym_null_literal_token1] = ACTIONS(3929), - [aux_sym_coarray_statement_token1] = ACTIONS(3929), - [aux_sym_coarray_statement_token2] = ACTIONS(3929), - [aux_sym_coarray_statement_token6] = ACTIONS(3929), - [aux_sym_coarray_statement_token8] = ACTIONS(3929), - [aux_sym_coarray_statement_token11] = ACTIONS(3929), - [aux_sym_coarray_statement_token12] = ACTIONS(3929), - [aux_sym_coarray_team_statement_token1] = ACTIONS(3929), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(3929), - [aux_sym_identifier_token1] = ACTIONS(3929), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_end_function_statement_token1] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4019), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), }, [1296] = { - [aux_sym_preproc_include_token1] = ACTIONS(5336), - [aux_sym_preproc_def_token1] = ACTIONS(5336), - [aux_sym_preproc_if_token1] = ACTIONS(5336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5336), - [sym_preproc_directive] = ACTIONS(5336), - [anon_sym_LPAREN2] = ACTIONS(5336), - [sym_preproc_comment] = ACTIONS(5338), - [anon_sym_PLUS] = ACTIONS(5340), - [anon_sym_DASH] = ACTIONS(5340), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5336), - [aux_sym_interface_statement_token1] = ACTIONS(5336), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5336), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5336), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5336), - [aux_sym_language_binding_token1] = ACTIONS(5336), - [aux_sym_procedure_attributes_token1] = ACTIONS(5336), - [aux_sym_procedure_attributes_token3] = ACTIONS(5336), - [aux_sym_end_function_statement_token1] = ACTIONS(5336), - [aux_sym_contains_statement_token1] = ACTIONS(5336), - [aux_sym_use_statement_token1] = ACTIONS(5336), - [aux_sym_use_statement_token2] = ACTIONS(5336), - [aux_sym_implicit_statement_token1] = ACTIONS(5336), - [aux_sym_implicit_statement_token3] = ACTIONS(5336), - [aux_sym_implicit_statement_token4] = ACTIONS(5336), - [aux_sym_save_statement_token1] = ACTIONS(5336), - [aux_sym_private_statement_token1] = ACTIONS(5336), - [aux_sym_public_statement_token1] = ACTIONS(5336), - [aux_sym_namelist_statement_token1] = ACTIONS(5336), - [aux_sym_common_statement_token1] = ACTIONS(5336), - [aux_sym_import_statement_token1] = ACTIONS(5336), - [aux_sym_derived_type_definition_token1] = ACTIONS(5336), - [aux_sym_abstract_specifier_token1] = ACTIONS(5336), - [aux_sym_procedure_attribute_token6] = ACTIONS(5336), - [aux_sym_variable_attributes_token1] = ACTIONS(5336), - [aux_sym_variable_attributes_token2] = ACTIONS(5336), - [aux_sym_variable_attributes_token3] = ACTIONS(5336), - [aux_sym_variable_attributes_token4] = ACTIONS(5336), - [aux_sym_variable_attributes_token5] = ACTIONS(5336), - [aux_sym__intrinsic_type_token1] = ACTIONS(5336), - [aux_sym__intrinsic_type_token2] = ACTIONS(5336), - [aux_sym__intrinsic_type_token3] = ACTIONS(5336), - [aux_sym__intrinsic_type_token4] = ACTIONS(5336), - [aux_sym__intrinsic_type_token6] = ACTIONS(5336), - [aux_sym__intrinsic_type_token7] = ACTIONS(5336), - [aux_sym__intrinsic_type_token8] = ACTIONS(5336), - [aux_sym__intrinsic_type_token9] = ACTIONS(5336), - [aux_sym__intrinsic_type_token10] = ACTIONS(5336), - [aux_sym_derived_type_token1] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5336), - [aux_sym_type_qualifier_token1] = ACTIONS(5336), - [aux_sym_type_qualifier_token2] = ACTIONS(5336), - [aux_sym_equivalence_statement_token1] = ACTIONS(5336), - [anon_sym_SEMI] = ACTIONS(5340), - [aux_sym_stop_statement_token1] = ACTIONS(5336), - [aux_sym_stop_statement_token2] = ACTIONS(5336), - [aux_sym_subroutine_call_token1] = ACTIONS(5336), - [aux_sym_keyword_statement_token1] = ACTIONS(5336), - [aux_sym_keyword_statement_token2] = ACTIONS(5336), - [aux_sym_keyword_statement_token3] = ACTIONS(5336), - [aux_sym_keyword_statement_token4] = ACTIONS(5336), - [aux_sym_keyword_statement_token6] = ACTIONS(5336), - [aux_sym_keyword_statement_token7] = ACTIONS(5336), - [aux_sym_include_statement_token1] = ACTIONS(5336), - [aux_sym_data_statement_token1] = ACTIONS(5336), - [aux_sym_do_loop_statement_token1] = ACTIONS(5336), - [aux_sym__inline_if_statement_token1] = ACTIONS(5336), - [aux_sym_end_if_statement_token1] = ACTIONS(5336), - [aux_sym_elseif_clause_token2] = ACTIONS(5336), - [aux_sym__inline_where_statement_token1] = ACTIONS(5336), - [aux_sym__forall_control_expression_token1] = ACTIONS(5336), - [aux_sym_select_case_statement_token1] = ACTIONS(5336), - [aux_sym_select_case_statement_token3] = ACTIONS(5336), - [aux_sym_select_type_statement_token1] = ACTIONS(5336), - [aux_sym_select_rank_statement_token2] = ACTIONS(5336), - [aux_sym_block_construct_token1] = ACTIONS(5336), - [aux_sym_associate_statement_token1] = ACTIONS(5336), - [aux_sym_format_statement_token1] = ACTIONS(5336), - [aux_sym_print_statement_token1] = ACTIONS(5336), - [aux_sym_open_statement_token1] = ACTIONS(5336), - [aux_sym_close_statement_token1] = ACTIONS(5336), - [aux_sym_inquire_statement_token1] = ACTIONS(5336), - [aux_sym_enum_statement_token1] = ACTIONS(5336), - [aux_sym_file_position_statement_token1] = ACTIONS(5336), - [aux_sym_file_position_statement_token2] = ACTIONS(5336), - [aux_sym_file_position_statement_token3] = ACTIONS(5336), - [aux_sym_file_position_statement_token4] = ACTIONS(5336), - [aux_sym_allocate_statement_token1] = ACTIONS(5336), - [aux_sym_entry_statement_token1] = ACTIONS(5336), - [aux_sym_logical_expression_token5] = ACTIONS(5340), - [anon_sym_DOT] = ACTIONS(5336), - [anon_sym_LPAREN_SLASH] = ACTIONS(5340), - [anon_sym_LBRACK] = ACTIONS(5340), - [aux_sym_boolean_literal_token1] = ACTIONS(5340), - [aux_sym_boolean_literal_token2] = ACTIONS(5340), - [aux_sym_null_literal_token1] = ACTIONS(5336), - [aux_sym_coarray_statement_token1] = ACTIONS(5336), - [aux_sym_coarray_statement_token2] = ACTIONS(5336), - [aux_sym_coarray_statement_token6] = ACTIONS(5336), - [aux_sym_coarray_statement_token8] = ACTIONS(5336), - [aux_sym_coarray_statement_token11] = ACTIONS(5336), - [aux_sym_coarray_statement_token12] = ACTIONS(5336), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5336), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5336), - [aux_sym_identifier_token1] = ACTIONS(5336), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5340), - [sym__float_literal] = ACTIONS(5340), - [sym__boz_literal] = ACTIONS(5340), - [sym__string_literal] = ACTIONS(5340), - [sym__string_literal_kind] = ACTIONS(5340), + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4319), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), }, [1297] = { - [aux_sym_preproc_include_token1] = ACTIONS(5233), - [aux_sym_preproc_def_token1] = ACTIONS(5233), - [aux_sym_preproc_if_token1] = ACTIONS(5233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5233), - [sym_preproc_directive] = ACTIONS(5233), - [anon_sym_LPAREN2] = ACTIONS(5233), - [sym_preproc_comment] = ACTIONS(5342), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5233), - [aux_sym_interface_statement_token1] = ACTIONS(5233), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5233), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5233), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5233), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5233), - [aux_sym_language_binding_token1] = ACTIONS(5233), - [aux_sym_procedure_attributes_token1] = ACTIONS(5233), - [aux_sym_procedure_attributes_token3] = ACTIONS(5233), - [aux_sym_contains_statement_token1] = ACTIONS(5233), - [aux_sym_use_statement_token1] = ACTIONS(5233), - [aux_sym_use_statement_token2] = ACTIONS(5233), - [aux_sym_implicit_statement_token1] = ACTIONS(5233), - [aux_sym_implicit_statement_token3] = ACTIONS(5233), - [aux_sym_implicit_statement_token4] = ACTIONS(5233), - [aux_sym_save_statement_token1] = ACTIONS(5233), - [aux_sym_private_statement_token1] = ACTIONS(5233), - [aux_sym_public_statement_token1] = ACTIONS(5233), - [aux_sym_namelist_statement_token1] = ACTIONS(5233), - [aux_sym_common_statement_token1] = ACTIONS(5233), - [aux_sym_import_statement_token1] = ACTIONS(5233), - [aux_sym_derived_type_definition_token1] = ACTIONS(5233), - [aux_sym_abstract_specifier_token1] = ACTIONS(5233), - [aux_sym_procedure_attribute_token6] = ACTIONS(5233), - [aux_sym_variable_attributes_token1] = ACTIONS(5233), - [aux_sym_variable_attributes_token2] = ACTIONS(5233), - [aux_sym_variable_attributes_token3] = ACTIONS(5233), - [aux_sym_variable_attributes_token4] = ACTIONS(5233), - [aux_sym_variable_attributes_token5] = ACTIONS(5233), - [aux_sym__intrinsic_type_token1] = ACTIONS(5233), - [aux_sym__intrinsic_type_token2] = ACTIONS(5233), - [aux_sym__intrinsic_type_token3] = ACTIONS(5233), - [aux_sym__intrinsic_type_token4] = ACTIONS(5233), - [aux_sym__intrinsic_type_token6] = ACTIONS(5233), - [aux_sym__intrinsic_type_token7] = ACTIONS(5233), - [aux_sym__intrinsic_type_token8] = ACTIONS(5233), - [aux_sym__intrinsic_type_token9] = ACTIONS(5233), - [aux_sym__intrinsic_type_token10] = ACTIONS(5233), - [aux_sym_derived_type_token1] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5233), - [aux_sym_type_qualifier_token1] = ACTIONS(5233), - [aux_sym_type_qualifier_token2] = ACTIONS(5233), - [aux_sym_equivalence_statement_token1] = ACTIONS(5233), - [anon_sym_SEMI] = ACTIONS(5237), - [aux_sym_stop_statement_token1] = ACTIONS(5233), - [aux_sym_stop_statement_token2] = ACTIONS(5233), - [aux_sym_subroutine_call_token1] = ACTIONS(5233), - [aux_sym_keyword_statement_token1] = ACTIONS(5233), - [aux_sym_keyword_statement_token2] = ACTIONS(5233), - [aux_sym_keyword_statement_token3] = ACTIONS(5233), - [aux_sym_keyword_statement_token4] = ACTIONS(5233), - [aux_sym_keyword_statement_token6] = ACTIONS(5233), - [aux_sym_keyword_statement_token7] = ACTIONS(5233), - [aux_sym_include_statement_token1] = ACTIONS(5233), - [aux_sym_data_statement_token1] = ACTIONS(5233), - [aux_sym_do_loop_statement_token1] = ACTIONS(5233), - [aux_sym__inline_if_statement_token1] = ACTIONS(5233), - [aux_sym_end_if_statement_token1] = ACTIONS(5233), - [aux_sym_elseif_clause_token2] = ACTIONS(5233), - [aux_sym__inline_where_statement_token1] = ACTIONS(5233), - [aux_sym__forall_control_expression_token1] = ACTIONS(5233), - [aux_sym_select_case_statement_token1] = ACTIONS(5233), - [aux_sym_select_case_statement_token3] = ACTIONS(5233), - [aux_sym_select_type_statement_token1] = ACTIONS(5233), - [aux_sym_select_rank_statement_token2] = ACTIONS(5233), - [aux_sym_block_construct_token1] = ACTIONS(5233), - [aux_sym_associate_statement_token1] = ACTIONS(5233), - [aux_sym_format_statement_token1] = ACTIONS(5233), - [aux_sym_print_statement_token1] = ACTIONS(5233), - [aux_sym_open_statement_token1] = ACTIONS(5233), - [aux_sym_close_statement_token1] = ACTIONS(5233), - [aux_sym_inquire_statement_token1] = ACTIONS(5233), - [aux_sym_enum_statement_token1] = ACTIONS(5233), - [aux_sym_file_position_statement_token1] = ACTIONS(5233), - [aux_sym_file_position_statement_token2] = ACTIONS(5233), - [aux_sym_file_position_statement_token3] = ACTIONS(5233), - [aux_sym_file_position_statement_token4] = ACTIONS(5233), - [aux_sym_allocate_statement_token1] = ACTIONS(5233), - [aux_sym_entry_statement_token1] = ACTIONS(5233), - [aux_sym_logical_expression_token5] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5233), - [anon_sym_LPAREN_SLASH] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [aux_sym_boolean_literal_token1] = ACTIONS(5237), - [aux_sym_boolean_literal_token2] = ACTIONS(5237), - [aux_sym_null_literal_token1] = ACTIONS(5233), - [aux_sym_coarray_statement_token1] = ACTIONS(5233), - [aux_sym_coarray_statement_token2] = ACTIONS(5233), - [aux_sym_coarray_statement_token6] = ACTIONS(5233), - [aux_sym_coarray_statement_token8] = ACTIONS(5233), - [aux_sym_coarray_statement_token11] = ACTIONS(5233), - [aux_sym_coarray_statement_token12] = ACTIONS(5233), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5233), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5233), - [aux_sym_identifier_token1] = ACTIONS(5233), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5237), - [sym__float_literal] = ACTIONS(5237), - [sym__boz_literal] = ACTIONS(5237), - [sym__string_literal] = ACTIONS(5237), - [sym__string_literal_kind] = ACTIONS(5237), + [aux_sym_preproc_include_token1] = ACTIONS(5121), + [aux_sym_preproc_def_token1] = ACTIONS(5121), + [aux_sym_preproc_if_token1] = ACTIONS(5121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5121), + [sym_preproc_directive] = ACTIONS(5121), + [anon_sym_LPAREN2] = ACTIONS(5121), + [sym_preproc_comment] = ACTIONS(5324), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5121), + [aux_sym_interface_statement_token1] = ACTIONS(5121), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5121), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5121), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5121), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5121), + [aux_sym_language_binding_token1] = ACTIONS(5121), + [aux_sym_procedure_attributes_token1] = ACTIONS(5121), + [aux_sym_procedure_attributes_token3] = ACTIONS(5121), + [aux_sym_contains_statement_token1] = ACTIONS(5121), + [aux_sym_use_statement_token1] = ACTIONS(5121), + [aux_sym_use_statement_token2] = ACTIONS(5121), + [aux_sym_implicit_statement_token1] = ACTIONS(5121), + [aux_sym_implicit_statement_token3] = ACTIONS(5121), + [aux_sym_implicit_statement_token4] = ACTIONS(5121), + [aux_sym_save_statement_token1] = ACTIONS(5121), + [aux_sym_private_statement_token1] = ACTIONS(5121), + [aux_sym_public_statement_token1] = ACTIONS(5121), + [aux_sym_namelist_statement_token1] = ACTIONS(5121), + [aux_sym_common_statement_token1] = ACTIONS(5121), + [aux_sym_import_statement_token1] = ACTIONS(5121), + [aux_sym_derived_type_definition_token1] = ACTIONS(5121), + [aux_sym_abstract_specifier_token1] = ACTIONS(5121), + [aux_sym_procedure_attribute_token6] = ACTIONS(5121), + [aux_sym_variable_attributes_token1] = ACTIONS(5121), + [aux_sym_variable_attributes_token2] = ACTIONS(5121), + [aux_sym_variable_attributes_token3] = ACTIONS(5121), + [aux_sym_variable_attributes_token4] = ACTIONS(5121), + [aux_sym_variable_attributes_token5] = ACTIONS(5121), + [aux_sym__intrinsic_type_token1] = ACTIONS(5121), + [aux_sym__intrinsic_type_token2] = ACTIONS(5121), + [aux_sym__intrinsic_type_token3] = ACTIONS(5121), + [aux_sym__intrinsic_type_token4] = ACTIONS(5121), + [aux_sym__intrinsic_type_token6] = ACTIONS(5121), + [aux_sym__intrinsic_type_token7] = ACTIONS(5121), + [aux_sym__intrinsic_type_token8] = ACTIONS(5121), + [aux_sym__intrinsic_type_token9] = ACTIONS(5121), + [aux_sym__intrinsic_type_token10] = ACTIONS(5121), + [aux_sym_derived_type_token1] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5121), + [aux_sym_type_qualifier_token1] = ACTIONS(5121), + [aux_sym_type_qualifier_token2] = ACTIONS(5121), + [aux_sym_equivalence_statement_token1] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5125), + [aux_sym_stop_statement_token1] = ACTIONS(5121), + [aux_sym_stop_statement_token2] = ACTIONS(5121), + [aux_sym_subroutine_call_token1] = ACTIONS(5121), + [aux_sym_keyword_statement_token1] = ACTIONS(5121), + [aux_sym_keyword_statement_token2] = ACTIONS(5121), + [aux_sym_keyword_statement_token3] = ACTIONS(5121), + [aux_sym_keyword_statement_token4] = ACTIONS(5121), + [aux_sym_keyword_statement_token6] = ACTIONS(5121), + [aux_sym_keyword_statement_token7] = ACTIONS(5121), + [aux_sym_include_statement_token1] = ACTIONS(5121), + [aux_sym_data_statement_token1] = ACTIONS(5121), + [aux_sym_do_loop_statement_token1] = ACTIONS(5121), + [aux_sym__inline_if_statement_token1] = ACTIONS(5121), + [aux_sym_end_if_statement_token1] = ACTIONS(5121), + [aux_sym_elseif_clause_token2] = ACTIONS(5121), + [aux_sym__inline_where_statement_token1] = ACTIONS(5121), + [aux_sym__forall_control_expression_token1] = ACTIONS(5121), + [aux_sym_select_case_statement_token1] = ACTIONS(5121), + [aux_sym_select_case_statement_token3] = ACTIONS(5121), + [aux_sym_select_type_statement_token1] = ACTIONS(5121), + [aux_sym_select_rank_statement_token2] = ACTIONS(5121), + [aux_sym_block_construct_token1] = ACTIONS(5121), + [aux_sym_associate_statement_token1] = ACTIONS(5121), + [aux_sym_format_statement_token1] = ACTIONS(5121), + [aux_sym_print_statement_token1] = ACTIONS(5121), + [aux_sym_open_statement_token1] = ACTIONS(5121), + [aux_sym_close_statement_token1] = ACTIONS(5121), + [aux_sym_inquire_statement_token1] = ACTIONS(5121), + [aux_sym_enum_statement_token1] = ACTIONS(5121), + [aux_sym_file_position_statement_token1] = ACTIONS(5121), + [aux_sym_file_position_statement_token2] = ACTIONS(5121), + [aux_sym_file_position_statement_token3] = ACTIONS(5121), + [aux_sym_file_position_statement_token4] = ACTIONS(5121), + [aux_sym_allocate_statement_token1] = ACTIONS(5121), + [aux_sym_entry_statement_token1] = ACTIONS(5121), + [aux_sym_logical_expression_token5] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_LPAREN_SLASH] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [aux_sym_boolean_literal_token1] = ACTIONS(5125), + [aux_sym_boolean_literal_token2] = ACTIONS(5125), + [aux_sym_null_literal_token1] = ACTIONS(5121), + [aux_sym_coarray_statement_token1] = ACTIONS(5121), + [aux_sym_coarray_statement_token2] = ACTIONS(5121), + [aux_sym_coarray_statement_token6] = ACTIONS(5121), + [aux_sym_coarray_statement_token8] = ACTIONS(5121), + [aux_sym_coarray_statement_token11] = ACTIONS(5121), + [aux_sym_coarray_statement_token12] = ACTIONS(5121), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5121), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5121), + [aux_sym_identifier_token1] = ACTIONS(5121), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5125), + [sym__float_literal] = ACTIONS(5125), + [sym__boz_literal] = ACTIONS(5125), + [sym__string_literal] = ACTIONS(5125), + [sym__string_literal_kind] = ACTIONS(5125), }, [1298] = { - [aux_sym_preproc_include_token1] = ACTIONS(5336), - [aux_sym_preproc_def_token1] = ACTIONS(5336), - [aux_sym_preproc_if_token1] = ACTIONS(5336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5336), - [sym_preproc_directive] = ACTIONS(5336), - [anon_sym_LPAREN2] = ACTIONS(5336), - [sym_preproc_comment] = ACTIONS(5344), - [anon_sym_PLUS] = ACTIONS(5340), - [anon_sym_DASH] = ACTIONS(5340), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5336), - [aux_sym_interface_statement_token1] = ACTIONS(5336), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5336), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5336), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5336), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5336), - [aux_sym_language_binding_token1] = ACTIONS(5336), - [aux_sym_procedure_attributes_token1] = ACTIONS(5336), - [aux_sym_procedure_attributes_token3] = ACTIONS(5336), - [aux_sym_contains_statement_token1] = ACTIONS(5336), - [aux_sym_use_statement_token1] = ACTIONS(5336), - [aux_sym_use_statement_token2] = ACTIONS(5336), - [aux_sym_implicit_statement_token1] = ACTIONS(5336), - [aux_sym_implicit_statement_token3] = ACTIONS(5336), - [aux_sym_implicit_statement_token4] = ACTIONS(5336), - [aux_sym_save_statement_token1] = ACTIONS(5336), - [aux_sym_private_statement_token1] = ACTIONS(5336), - [aux_sym_public_statement_token1] = ACTIONS(5336), - [aux_sym_namelist_statement_token1] = ACTIONS(5336), - [aux_sym_common_statement_token1] = ACTIONS(5336), - [aux_sym_import_statement_token1] = ACTIONS(5336), - [aux_sym_derived_type_definition_token1] = ACTIONS(5336), - [aux_sym_abstract_specifier_token1] = ACTIONS(5336), - [aux_sym_procedure_attribute_token6] = ACTIONS(5336), - [aux_sym_variable_attributes_token1] = ACTIONS(5336), - [aux_sym_variable_attributes_token2] = ACTIONS(5336), - [aux_sym_variable_attributes_token3] = ACTIONS(5336), - [aux_sym_variable_attributes_token4] = ACTIONS(5336), - [aux_sym_variable_attributes_token5] = ACTIONS(5336), - [aux_sym__intrinsic_type_token1] = ACTIONS(5336), - [aux_sym__intrinsic_type_token2] = ACTIONS(5336), - [aux_sym__intrinsic_type_token3] = ACTIONS(5336), - [aux_sym__intrinsic_type_token4] = ACTIONS(5336), - [aux_sym__intrinsic_type_token6] = ACTIONS(5336), - [aux_sym__intrinsic_type_token7] = ACTIONS(5336), - [aux_sym__intrinsic_type_token8] = ACTIONS(5336), - [aux_sym__intrinsic_type_token9] = ACTIONS(5336), - [aux_sym__intrinsic_type_token10] = ACTIONS(5336), - [aux_sym_derived_type_token1] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5336), - [aux_sym_type_qualifier_token1] = ACTIONS(5336), - [aux_sym_type_qualifier_token2] = ACTIONS(5336), - [aux_sym_equivalence_statement_token1] = ACTIONS(5336), - [anon_sym_SEMI] = ACTIONS(5340), - [aux_sym_stop_statement_token1] = ACTIONS(5336), - [aux_sym_stop_statement_token2] = ACTIONS(5336), - [aux_sym_subroutine_call_token1] = ACTIONS(5336), - [aux_sym_keyword_statement_token1] = ACTIONS(5336), - [aux_sym_keyword_statement_token2] = ACTIONS(5336), - [aux_sym_keyword_statement_token3] = ACTIONS(5336), - [aux_sym_keyword_statement_token4] = ACTIONS(5336), - [aux_sym_keyword_statement_token6] = ACTIONS(5336), - [aux_sym_keyword_statement_token7] = ACTIONS(5336), - [aux_sym_include_statement_token1] = ACTIONS(5336), - [aux_sym_data_statement_token1] = ACTIONS(5336), - [aux_sym_do_loop_statement_token1] = ACTIONS(5336), - [aux_sym__inline_if_statement_token1] = ACTIONS(5336), - [aux_sym_end_if_statement_token1] = ACTIONS(5336), - [aux_sym_elseif_clause_token2] = ACTIONS(5336), - [aux_sym__inline_where_statement_token1] = ACTIONS(5336), - [aux_sym__forall_control_expression_token1] = ACTIONS(5336), - [aux_sym_select_case_statement_token1] = ACTIONS(5336), - [aux_sym_select_case_statement_token3] = ACTIONS(5336), - [aux_sym_select_type_statement_token1] = ACTIONS(5336), - [aux_sym_select_rank_statement_token2] = ACTIONS(5336), - [aux_sym_block_construct_token1] = ACTIONS(5336), - [aux_sym_associate_statement_token1] = ACTIONS(5336), - [aux_sym_format_statement_token1] = ACTIONS(5336), - [aux_sym_print_statement_token1] = ACTIONS(5336), - [aux_sym_open_statement_token1] = ACTIONS(5336), - [aux_sym_close_statement_token1] = ACTIONS(5336), - [aux_sym_inquire_statement_token1] = ACTIONS(5336), - [aux_sym_enum_statement_token1] = ACTIONS(5336), - [aux_sym_file_position_statement_token1] = ACTIONS(5336), - [aux_sym_file_position_statement_token2] = ACTIONS(5336), - [aux_sym_file_position_statement_token3] = ACTIONS(5336), - [aux_sym_file_position_statement_token4] = ACTIONS(5336), - [aux_sym_allocate_statement_token1] = ACTIONS(5336), - [aux_sym_entry_statement_token1] = ACTIONS(5336), - [aux_sym_logical_expression_token5] = ACTIONS(5340), - [anon_sym_DOT] = ACTIONS(5336), - [anon_sym_LPAREN_SLASH] = ACTIONS(5340), - [anon_sym_LBRACK] = ACTIONS(5340), - [aux_sym_boolean_literal_token1] = ACTIONS(5340), - [aux_sym_boolean_literal_token2] = ACTIONS(5340), - [aux_sym_null_literal_token1] = ACTIONS(5336), - [aux_sym_coarray_statement_token1] = ACTIONS(5336), - [aux_sym_coarray_statement_token2] = ACTIONS(5336), - [aux_sym_coarray_statement_token6] = ACTIONS(5336), - [aux_sym_coarray_statement_token8] = ACTIONS(5336), - [aux_sym_coarray_statement_token11] = ACTIONS(5336), - [aux_sym_coarray_statement_token12] = ACTIONS(5336), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5336), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5336), - [aux_sym_identifier_token1] = ACTIONS(5336), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5340), - [sym__float_literal] = ACTIONS(5340), - [sym__boz_literal] = ACTIONS(5340), - [sym__string_literal] = ACTIONS(5340), - [sym__string_literal_kind] = ACTIONS(5340), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [sym_preproc_comment] = ACTIONS(5326), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, [1299] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(5346), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_end_function_statement_token1] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [aux_sym_preproc_include_token1] = ACTIONS(5208), + [aux_sym_preproc_def_token1] = ACTIONS(5208), + [aux_sym_preproc_if_token1] = ACTIONS(5208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5208), + [sym_preproc_directive] = ACTIONS(5208), + [anon_sym_LPAREN2] = ACTIONS(5208), + [sym_preproc_comment] = ACTIONS(5328), + [anon_sym_PLUS] = ACTIONS(5212), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5208), + [aux_sym_interface_statement_token1] = ACTIONS(5208), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5208), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5208), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5208), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5208), + [aux_sym_language_binding_token1] = ACTIONS(5208), + [aux_sym_procedure_attributes_token1] = ACTIONS(5208), + [aux_sym_procedure_attributes_token3] = ACTIONS(5208), + [aux_sym_contains_statement_token1] = ACTIONS(5208), + [aux_sym_use_statement_token1] = ACTIONS(5208), + [aux_sym_use_statement_token2] = ACTIONS(5208), + [aux_sym_implicit_statement_token1] = ACTIONS(5208), + [aux_sym_implicit_statement_token3] = ACTIONS(5208), + [aux_sym_implicit_statement_token4] = ACTIONS(5208), + [aux_sym_save_statement_token1] = ACTIONS(5208), + [aux_sym_private_statement_token1] = ACTIONS(5208), + [aux_sym_public_statement_token1] = ACTIONS(5208), + [aux_sym_namelist_statement_token1] = ACTIONS(5208), + [aux_sym_common_statement_token1] = ACTIONS(5208), + [aux_sym_import_statement_token1] = ACTIONS(5208), + [aux_sym_derived_type_definition_token1] = ACTIONS(5208), + [aux_sym_abstract_specifier_token1] = ACTIONS(5208), + [aux_sym_procedure_attribute_token6] = ACTIONS(5208), + [aux_sym_variable_attributes_token1] = ACTIONS(5208), + [aux_sym_variable_attributes_token2] = ACTIONS(5208), + [aux_sym_variable_attributes_token3] = ACTIONS(5208), + [aux_sym_variable_attributes_token4] = ACTIONS(5208), + [aux_sym_variable_attributes_token5] = ACTIONS(5208), + [aux_sym__intrinsic_type_token1] = ACTIONS(5208), + [aux_sym__intrinsic_type_token2] = ACTIONS(5208), + [aux_sym__intrinsic_type_token3] = ACTIONS(5208), + [aux_sym__intrinsic_type_token4] = ACTIONS(5208), + [aux_sym__intrinsic_type_token6] = ACTIONS(5208), + [aux_sym__intrinsic_type_token7] = ACTIONS(5208), + [aux_sym__intrinsic_type_token8] = ACTIONS(5208), + [aux_sym__intrinsic_type_token9] = ACTIONS(5208), + [aux_sym__intrinsic_type_token10] = ACTIONS(5208), + [aux_sym_derived_type_token1] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5208), + [aux_sym_type_qualifier_token1] = ACTIONS(5208), + [aux_sym_type_qualifier_token2] = ACTIONS(5208), + [aux_sym_equivalence_statement_token1] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5212), + [aux_sym_stop_statement_token1] = ACTIONS(5208), + [aux_sym_stop_statement_token2] = ACTIONS(5208), + [aux_sym_subroutine_call_token1] = ACTIONS(5208), + [aux_sym_keyword_statement_token1] = ACTIONS(5208), + [aux_sym_keyword_statement_token2] = ACTIONS(5208), + [aux_sym_keyword_statement_token3] = ACTIONS(5208), + [aux_sym_keyword_statement_token4] = ACTIONS(5208), + [aux_sym_keyword_statement_token6] = ACTIONS(5208), + [aux_sym_keyword_statement_token7] = ACTIONS(5208), + [aux_sym_include_statement_token1] = ACTIONS(5208), + [aux_sym_data_statement_token1] = ACTIONS(5208), + [aux_sym_do_loop_statement_token1] = ACTIONS(5208), + [aux_sym__inline_if_statement_token1] = ACTIONS(5208), + [aux_sym_end_if_statement_token1] = ACTIONS(5208), + [aux_sym_elseif_clause_token2] = ACTIONS(5208), + [aux_sym__inline_where_statement_token1] = ACTIONS(5208), + [aux_sym__forall_control_expression_token1] = ACTIONS(5208), + [aux_sym_select_case_statement_token1] = ACTIONS(5208), + [aux_sym_select_case_statement_token3] = ACTIONS(5208), + [aux_sym_select_type_statement_token1] = ACTIONS(5208), + [aux_sym_select_rank_statement_token2] = ACTIONS(5208), + [aux_sym_block_construct_token1] = ACTIONS(5208), + [aux_sym_associate_statement_token1] = ACTIONS(5208), + [aux_sym_format_statement_token1] = ACTIONS(5208), + [aux_sym_print_statement_token1] = ACTIONS(5208), + [aux_sym_open_statement_token1] = ACTIONS(5208), + [aux_sym_close_statement_token1] = ACTIONS(5208), + [aux_sym_inquire_statement_token1] = ACTIONS(5208), + [aux_sym_enum_statement_token1] = ACTIONS(5208), + [aux_sym_file_position_statement_token1] = ACTIONS(5208), + [aux_sym_file_position_statement_token2] = ACTIONS(5208), + [aux_sym_file_position_statement_token3] = ACTIONS(5208), + [aux_sym_file_position_statement_token4] = ACTIONS(5208), + [aux_sym_allocate_statement_token1] = ACTIONS(5208), + [aux_sym_entry_statement_token1] = ACTIONS(5208), + [aux_sym_logical_expression_token5] = ACTIONS(5212), + [anon_sym_DOT] = ACTIONS(5208), + [anon_sym_LPAREN_SLASH] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [aux_sym_boolean_literal_token1] = ACTIONS(5212), + [aux_sym_boolean_literal_token2] = ACTIONS(5212), + [aux_sym_null_literal_token1] = ACTIONS(5208), + [aux_sym_coarray_statement_token1] = ACTIONS(5208), + [aux_sym_coarray_statement_token2] = ACTIONS(5208), + [aux_sym_coarray_statement_token6] = ACTIONS(5208), + [aux_sym_coarray_statement_token8] = ACTIONS(5208), + [aux_sym_coarray_statement_token11] = ACTIONS(5208), + [aux_sym_coarray_statement_token12] = ACTIONS(5208), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5208), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5208), + [aux_sym_identifier_token1] = ACTIONS(5208), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5212), + [sym__float_literal] = ACTIONS(5212), + [sym__boz_literal] = ACTIONS(5212), + [sym__string_literal] = ACTIONS(5212), + [sym__string_literal_kind] = ACTIONS(5212), }, [1300] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(5348), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(5330), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [1301] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [sym_preproc_comment] = ACTIONS(5350), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [aux_sym_preproc_include_token1] = ACTIONS(5208), + [aux_sym_preproc_def_token1] = ACTIONS(5208), + [aux_sym_preproc_if_token1] = ACTIONS(5208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5208), + [sym_preproc_directive] = ACTIONS(5208), + [anon_sym_LPAREN2] = ACTIONS(5208), + [sym_preproc_comment] = ACTIONS(5332), + [anon_sym_PLUS] = ACTIONS(5212), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5208), + [aux_sym_interface_statement_token1] = ACTIONS(5208), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5208), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5208), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5208), + [aux_sym_language_binding_token1] = ACTIONS(5208), + [aux_sym_procedure_attributes_token1] = ACTIONS(5208), + [aux_sym_procedure_attributes_token3] = ACTIONS(5208), + [aux_sym_end_function_statement_token1] = ACTIONS(5208), + [aux_sym_contains_statement_token1] = ACTIONS(5208), + [aux_sym_use_statement_token1] = ACTIONS(5208), + [aux_sym_use_statement_token2] = ACTIONS(5208), + [aux_sym_implicit_statement_token1] = ACTIONS(5208), + [aux_sym_implicit_statement_token3] = ACTIONS(5208), + [aux_sym_implicit_statement_token4] = ACTIONS(5208), + [aux_sym_save_statement_token1] = ACTIONS(5208), + [aux_sym_private_statement_token1] = ACTIONS(5208), + [aux_sym_public_statement_token1] = ACTIONS(5208), + [aux_sym_namelist_statement_token1] = ACTIONS(5208), + [aux_sym_common_statement_token1] = ACTIONS(5208), + [aux_sym_import_statement_token1] = ACTIONS(5208), + [aux_sym_derived_type_definition_token1] = ACTIONS(5208), + [aux_sym_abstract_specifier_token1] = ACTIONS(5208), + [aux_sym_procedure_attribute_token6] = ACTIONS(5208), + [aux_sym_variable_attributes_token1] = ACTIONS(5208), + [aux_sym_variable_attributes_token2] = ACTIONS(5208), + [aux_sym_variable_attributes_token3] = ACTIONS(5208), + [aux_sym_variable_attributes_token4] = ACTIONS(5208), + [aux_sym_variable_attributes_token5] = ACTIONS(5208), + [aux_sym__intrinsic_type_token1] = ACTIONS(5208), + [aux_sym__intrinsic_type_token2] = ACTIONS(5208), + [aux_sym__intrinsic_type_token3] = ACTIONS(5208), + [aux_sym__intrinsic_type_token4] = ACTIONS(5208), + [aux_sym__intrinsic_type_token6] = ACTIONS(5208), + [aux_sym__intrinsic_type_token7] = ACTIONS(5208), + [aux_sym__intrinsic_type_token8] = ACTIONS(5208), + [aux_sym__intrinsic_type_token9] = ACTIONS(5208), + [aux_sym__intrinsic_type_token10] = ACTIONS(5208), + [aux_sym_derived_type_token1] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5208), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5208), + [aux_sym_type_qualifier_token1] = ACTIONS(5208), + [aux_sym_type_qualifier_token2] = ACTIONS(5208), + [aux_sym_equivalence_statement_token1] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5212), + [aux_sym_stop_statement_token1] = ACTIONS(5208), + [aux_sym_stop_statement_token2] = ACTIONS(5208), + [aux_sym_subroutine_call_token1] = ACTIONS(5208), + [aux_sym_keyword_statement_token1] = ACTIONS(5208), + [aux_sym_keyword_statement_token2] = ACTIONS(5208), + [aux_sym_keyword_statement_token3] = ACTIONS(5208), + [aux_sym_keyword_statement_token4] = ACTIONS(5208), + [aux_sym_keyword_statement_token6] = ACTIONS(5208), + [aux_sym_keyword_statement_token7] = ACTIONS(5208), + [aux_sym_include_statement_token1] = ACTIONS(5208), + [aux_sym_data_statement_token1] = ACTIONS(5208), + [aux_sym_do_loop_statement_token1] = ACTIONS(5208), + [aux_sym__inline_if_statement_token1] = ACTIONS(5208), + [aux_sym_end_if_statement_token1] = ACTIONS(5208), + [aux_sym_elseif_clause_token2] = ACTIONS(5208), + [aux_sym__inline_where_statement_token1] = ACTIONS(5208), + [aux_sym__forall_control_expression_token1] = ACTIONS(5208), + [aux_sym_select_case_statement_token1] = ACTIONS(5208), + [aux_sym_select_case_statement_token3] = ACTIONS(5208), + [aux_sym_select_type_statement_token1] = ACTIONS(5208), + [aux_sym_select_rank_statement_token2] = ACTIONS(5208), + [aux_sym_block_construct_token1] = ACTIONS(5208), + [aux_sym_associate_statement_token1] = ACTIONS(5208), + [aux_sym_format_statement_token1] = ACTIONS(5208), + [aux_sym_print_statement_token1] = ACTIONS(5208), + [aux_sym_open_statement_token1] = ACTIONS(5208), + [aux_sym_close_statement_token1] = ACTIONS(5208), + [aux_sym_inquire_statement_token1] = ACTIONS(5208), + [aux_sym_enum_statement_token1] = ACTIONS(5208), + [aux_sym_file_position_statement_token1] = ACTIONS(5208), + [aux_sym_file_position_statement_token2] = ACTIONS(5208), + [aux_sym_file_position_statement_token3] = ACTIONS(5208), + [aux_sym_file_position_statement_token4] = ACTIONS(5208), + [aux_sym_allocate_statement_token1] = ACTIONS(5208), + [aux_sym_entry_statement_token1] = ACTIONS(5208), + [aux_sym_logical_expression_token5] = ACTIONS(5212), + [anon_sym_DOT] = ACTIONS(5208), + [anon_sym_LPAREN_SLASH] = ACTIONS(5212), + [anon_sym_LBRACK] = ACTIONS(5212), + [aux_sym_boolean_literal_token1] = ACTIONS(5212), + [aux_sym_boolean_literal_token2] = ACTIONS(5212), + [aux_sym_null_literal_token1] = ACTIONS(5208), + [aux_sym_coarray_statement_token1] = ACTIONS(5208), + [aux_sym_coarray_statement_token2] = ACTIONS(5208), + [aux_sym_coarray_statement_token6] = ACTIONS(5208), + [aux_sym_coarray_statement_token8] = ACTIONS(5208), + [aux_sym_coarray_statement_token11] = ACTIONS(5208), + [aux_sym_coarray_statement_token12] = ACTIONS(5208), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5208), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5208), + [aux_sym_identifier_token1] = ACTIONS(5208), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5212), + [sym__float_literal] = ACTIONS(5212), + [sym__boz_literal] = ACTIONS(5212), + [sym__string_literal] = ACTIONS(5212), + [sym__string_literal_kind] = ACTIONS(5212), + }, + [1302] = { + [aux_sym_preproc_include_token1] = ACTIONS(5115), + [aux_sym_preproc_def_token1] = ACTIONS(5115), + [aux_sym_preproc_if_token1] = ACTIONS(5115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5115), + [sym_preproc_directive] = ACTIONS(5115), + [anon_sym_LPAREN2] = ACTIONS(5115), + [sym_preproc_comment] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5115), + [aux_sym_interface_statement_token1] = ACTIONS(5115), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5115), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5115), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5115), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5115), + [aux_sym_language_binding_token1] = ACTIONS(5115), + [aux_sym_procedure_attributes_token1] = ACTIONS(5115), + [aux_sym_procedure_attributes_token3] = ACTIONS(5115), + [aux_sym_contains_statement_token1] = ACTIONS(5115), + [aux_sym_use_statement_token1] = ACTIONS(5115), + [aux_sym_use_statement_token2] = ACTIONS(5115), + [aux_sym_implicit_statement_token1] = ACTIONS(5115), + [aux_sym_implicit_statement_token3] = ACTIONS(5115), + [aux_sym_implicit_statement_token4] = ACTIONS(5115), + [aux_sym_save_statement_token1] = ACTIONS(5115), + [aux_sym_private_statement_token1] = ACTIONS(5115), + [aux_sym_public_statement_token1] = ACTIONS(5115), + [aux_sym_namelist_statement_token1] = ACTIONS(5115), + [aux_sym_common_statement_token1] = ACTIONS(5115), + [aux_sym_import_statement_token1] = ACTIONS(5115), + [aux_sym_derived_type_definition_token1] = ACTIONS(5115), + [aux_sym_abstract_specifier_token1] = ACTIONS(5115), + [aux_sym_procedure_attribute_token6] = ACTIONS(5115), + [aux_sym_variable_attributes_token1] = ACTIONS(5115), + [aux_sym_variable_attributes_token2] = ACTIONS(5115), + [aux_sym_variable_attributes_token3] = ACTIONS(5115), + [aux_sym_variable_attributes_token4] = ACTIONS(5115), + [aux_sym_variable_attributes_token5] = ACTIONS(5115), + [aux_sym__intrinsic_type_token1] = ACTIONS(5115), + [aux_sym__intrinsic_type_token2] = ACTIONS(5115), + [aux_sym__intrinsic_type_token3] = ACTIONS(5115), + [aux_sym__intrinsic_type_token4] = ACTIONS(5115), + [aux_sym__intrinsic_type_token6] = ACTIONS(5115), + [aux_sym__intrinsic_type_token7] = ACTIONS(5115), + [aux_sym__intrinsic_type_token8] = ACTIONS(5115), + [aux_sym__intrinsic_type_token9] = ACTIONS(5115), + [aux_sym__intrinsic_type_token10] = ACTIONS(5115), + [aux_sym_derived_type_token1] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5115), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5115), + [aux_sym_type_qualifier_token1] = ACTIONS(5115), + [aux_sym_type_qualifier_token2] = ACTIONS(5115), + [aux_sym_equivalence_statement_token1] = ACTIONS(5115), + [anon_sym_SEMI] = ACTIONS(5119), + [aux_sym_stop_statement_token1] = ACTIONS(5115), + [aux_sym_stop_statement_token2] = ACTIONS(5115), + [aux_sym_subroutine_call_token1] = ACTIONS(5115), + [aux_sym_keyword_statement_token1] = ACTIONS(5115), + [aux_sym_keyword_statement_token2] = ACTIONS(5115), + [aux_sym_keyword_statement_token3] = ACTIONS(5115), + [aux_sym_keyword_statement_token4] = ACTIONS(5115), + [aux_sym_keyword_statement_token6] = ACTIONS(5115), + [aux_sym_keyword_statement_token7] = ACTIONS(5115), + [aux_sym_include_statement_token1] = ACTIONS(5115), + [aux_sym_data_statement_token1] = ACTIONS(5115), + [aux_sym_do_loop_statement_token1] = ACTIONS(5115), + [aux_sym__inline_if_statement_token1] = ACTIONS(5115), + [aux_sym_end_if_statement_token1] = ACTIONS(5115), + [aux_sym_elseif_clause_token2] = ACTIONS(5115), + [aux_sym__inline_where_statement_token1] = ACTIONS(5115), + [aux_sym__forall_control_expression_token1] = ACTIONS(5115), + [aux_sym_select_case_statement_token1] = ACTIONS(5115), + [aux_sym_select_case_statement_token3] = ACTIONS(5115), + [aux_sym_select_type_statement_token1] = ACTIONS(5115), + [aux_sym_select_rank_statement_token2] = ACTIONS(5115), + [aux_sym_block_construct_token1] = ACTIONS(5115), + [aux_sym_associate_statement_token1] = ACTIONS(5115), + [aux_sym_format_statement_token1] = ACTIONS(5115), + [aux_sym_print_statement_token1] = ACTIONS(5115), + [aux_sym_open_statement_token1] = ACTIONS(5115), + [aux_sym_close_statement_token1] = ACTIONS(5115), + [aux_sym_inquire_statement_token1] = ACTIONS(5115), + [aux_sym_enum_statement_token1] = ACTIONS(5115), + [aux_sym_file_position_statement_token1] = ACTIONS(5115), + [aux_sym_file_position_statement_token2] = ACTIONS(5115), + [aux_sym_file_position_statement_token3] = ACTIONS(5115), + [aux_sym_file_position_statement_token4] = ACTIONS(5115), + [aux_sym_allocate_statement_token1] = ACTIONS(5115), + [aux_sym_entry_statement_token1] = ACTIONS(5115), + [aux_sym_logical_expression_token5] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_LPAREN_SLASH] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [aux_sym_boolean_literal_token1] = ACTIONS(5119), + [aux_sym_boolean_literal_token2] = ACTIONS(5119), + [aux_sym_null_literal_token1] = ACTIONS(5115), + [aux_sym_coarray_statement_token1] = ACTIONS(5115), + [aux_sym_coarray_statement_token2] = ACTIONS(5115), + [aux_sym_coarray_statement_token6] = ACTIONS(5115), + [aux_sym_coarray_statement_token8] = ACTIONS(5115), + [aux_sym_coarray_statement_token11] = ACTIONS(5115), + [aux_sym_coarray_statement_token12] = ACTIONS(5115), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5115), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5115), + [aux_sym_identifier_token1] = ACTIONS(5115), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5119), + [sym__float_literal] = ACTIONS(5119), + [sym__boz_literal] = ACTIONS(5119), + [sym__string_literal] = ACTIONS(5119), + [sym__string_literal_kind] = ACTIONS(5119), + }, + [1303] = { + [aux_sym_preproc_include_token1] = ACTIONS(5236), + [aux_sym_preproc_def_token1] = ACTIONS(5236), + [aux_sym_preproc_if_token1] = ACTIONS(5236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5236), + [sym_preproc_directive] = ACTIONS(5236), + [anon_sym_LPAREN2] = ACTIONS(5236), + [sym_preproc_comment] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5236), + [aux_sym_interface_statement_token1] = ACTIONS(5236), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5236), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5236), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5236), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5236), + [aux_sym_language_binding_token1] = ACTIONS(5236), + [aux_sym_procedure_attributes_token1] = ACTIONS(5236), + [aux_sym_procedure_attributes_token3] = ACTIONS(5236), + [aux_sym_contains_statement_token1] = ACTIONS(5236), + [aux_sym_use_statement_token1] = ACTIONS(5236), + [aux_sym_use_statement_token2] = ACTIONS(5236), + [aux_sym_implicit_statement_token1] = ACTIONS(5236), + [aux_sym_implicit_statement_token3] = ACTIONS(5236), + [aux_sym_implicit_statement_token4] = ACTIONS(5236), + [aux_sym_save_statement_token1] = ACTIONS(5236), + [aux_sym_private_statement_token1] = ACTIONS(5236), + [aux_sym_public_statement_token1] = ACTIONS(5236), + [aux_sym_namelist_statement_token1] = ACTIONS(5236), + [aux_sym_common_statement_token1] = ACTIONS(5236), + [aux_sym_import_statement_token1] = ACTIONS(5236), + [aux_sym_derived_type_definition_token1] = ACTIONS(5236), + [aux_sym_abstract_specifier_token1] = ACTIONS(5236), + [aux_sym_procedure_attribute_token6] = ACTIONS(5236), + [aux_sym_variable_attributes_token1] = ACTIONS(5236), + [aux_sym_variable_attributes_token2] = ACTIONS(5236), + [aux_sym_variable_attributes_token3] = ACTIONS(5236), + [aux_sym_variable_attributes_token4] = ACTIONS(5236), + [aux_sym_variable_attributes_token5] = ACTIONS(5236), + [aux_sym__intrinsic_type_token1] = ACTIONS(5236), + [aux_sym__intrinsic_type_token2] = ACTIONS(5236), + [aux_sym__intrinsic_type_token3] = ACTIONS(5236), + [aux_sym__intrinsic_type_token4] = ACTIONS(5236), + [aux_sym__intrinsic_type_token6] = ACTIONS(5236), + [aux_sym__intrinsic_type_token7] = ACTIONS(5236), + [aux_sym__intrinsic_type_token8] = ACTIONS(5236), + [aux_sym__intrinsic_type_token9] = ACTIONS(5236), + [aux_sym__intrinsic_type_token10] = ACTIONS(5236), + [aux_sym_derived_type_token1] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5236), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5236), + [aux_sym_type_qualifier_token1] = ACTIONS(5236), + [aux_sym_type_qualifier_token2] = ACTIONS(5236), + [aux_sym_equivalence_statement_token1] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5240), + [aux_sym_stop_statement_token1] = ACTIONS(5236), + [aux_sym_stop_statement_token2] = ACTIONS(5236), + [aux_sym_subroutine_call_token1] = ACTIONS(5236), + [aux_sym_keyword_statement_token1] = ACTIONS(5236), + [aux_sym_keyword_statement_token2] = ACTIONS(5236), + [aux_sym_keyword_statement_token3] = ACTIONS(5236), + [aux_sym_keyword_statement_token4] = ACTIONS(5236), + [aux_sym_keyword_statement_token6] = ACTIONS(5236), + [aux_sym_keyword_statement_token7] = ACTIONS(5236), + [aux_sym_include_statement_token1] = ACTIONS(5236), + [aux_sym_data_statement_token1] = ACTIONS(5236), + [aux_sym_do_loop_statement_token1] = ACTIONS(5236), + [aux_sym__inline_if_statement_token1] = ACTIONS(5236), + [aux_sym_end_if_statement_token1] = ACTIONS(5236), + [aux_sym_elseif_clause_token2] = ACTIONS(5236), + [aux_sym__inline_where_statement_token1] = ACTIONS(5236), + [aux_sym__forall_control_expression_token1] = ACTIONS(5236), + [aux_sym_select_case_statement_token1] = ACTIONS(5236), + [aux_sym_select_case_statement_token3] = ACTIONS(5236), + [aux_sym_select_type_statement_token1] = ACTIONS(5236), + [aux_sym_select_rank_statement_token2] = ACTIONS(5236), + [aux_sym_block_construct_token1] = ACTIONS(5236), + [aux_sym_associate_statement_token1] = ACTIONS(5236), + [aux_sym_format_statement_token1] = ACTIONS(5236), + [aux_sym_print_statement_token1] = ACTIONS(5236), + [aux_sym_open_statement_token1] = ACTIONS(5236), + [aux_sym_close_statement_token1] = ACTIONS(5236), + [aux_sym_inquire_statement_token1] = ACTIONS(5236), + [aux_sym_enum_statement_token1] = ACTIONS(5236), + [aux_sym_file_position_statement_token1] = ACTIONS(5236), + [aux_sym_file_position_statement_token2] = ACTIONS(5236), + [aux_sym_file_position_statement_token3] = ACTIONS(5236), + [aux_sym_file_position_statement_token4] = ACTIONS(5236), + [aux_sym_allocate_statement_token1] = ACTIONS(5236), + [aux_sym_entry_statement_token1] = ACTIONS(5236), + [aux_sym_logical_expression_token5] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_LPAREN_SLASH] = ACTIONS(5240), + [anon_sym_LBRACK] = ACTIONS(5240), + [aux_sym_boolean_literal_token1] = ACTIONS(5240), + [aux_sym_boolean_literal_token2] = ACTIONS(5240), + [aux_sym_null_literal_token1] = ACTIONS(5236), + [aux_sym_coarray_statement_token1] = ACTIONS(5236), + [aux_sym_coarray_statement_token2] = ACTIONS(5236), + [aux_sym_coarray_statement_token6] = ACTIONS(5236), + [aux_sym_coarray_statement_token8] = ACTIONS(5236), + [aux_sym_coarray_statement_token11] = ACTIONS(5236), + [aux_sym_coarray_statement_token12] = ACTIONS(5236), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5236), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5236), + [aux_sym_identifier_token1] = ACTIONS(5236), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5240), + [sym__float_literal] = ACTIONS(5240), + [sym__boz_literal] = ACTIONS(5240), + [sym__string_literal] = ACTIONS(5240), + [sym__string_literal_kind] = ACTIONS(5240), + }, + [1304] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [sym_preproc_comment] = ACTIONS(5338), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), + }, + [1305] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [sym_preproc_comment] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_end_function_statement_token1] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [1302] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(5352), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4313), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), - }, - [1303] = { - [aux_sym_preproc_include_token1] = ACTIONS(5233), - [aux_sym_preproc_def_token1] = ACTIONS(5233), - [aux_sym_preproc_if_token1] = ACTIONS(5233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5233), - [sym_preproc_directive] = ACTIONS(5233), - [anon_sym_LPAREN2] = ACTIONS(5233), - [sym_preproc_comment] = ACTIONS(5354), - [anon_sym_PLUS] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5237), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5233), - [aux_sym_interface_statement_token1] = ACTIONS(5233), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5233), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5233), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5233), - [aux_sym_language_binding_token1] = ACTIONS(5233), - [aux_sym_procedure_attributes_token1] = ACTIONS(5233), - [aux_sym_procedure_attributes_token3] = ACTIONS(5233), - [aux_sym_end_function_statement_token1] = ACTIONS(5233), - [aux_sym_contains_statement_token1] = ACTIONS(5233), - [aux_sym_use_statement_token1] = ACTIONS(5233), - [aux_sym_use_statement_token2] = ACTIONS(5233), - [aux_sym_implicit_statement_token1] = ACTIONS(5233), - [aux_sym_implicit_statement_token3] = ACTIONS(5233), - [aux_sym_implicit_statement_token4] = ACTIONS(5233), - [aux_sym_save_statement_token1] = ACTIONS(5233), - [aux_sym_private_statement_token1] = ACTIONS(5233), - [aux_sym_public_statement_token1] = ACTIONS(5233), - [aux_sym_namelist_statement_token1] = ACTIONS(5233), - [aux_sym_common_statement_token1] = ACTIONS(5233), - [aux_sym_import_statement_token1] = ACTIONS(5233), - [aux_sym_derived_type_definition_token1] = ACTIONS(5233), - [aux_sym_abstract_specifier_token1] = ACTIONS(5233), - [aux_sym_procedure_attribute_token6] = ACTIONS(5233), - [aux_sym_variable_attributes_token1] = ACTIONS(5233), - [aux_sym_variable_attributes_token2] = ACTIONS(5233), - [aux_sym_variable_attributes_token3] = ACTIONS(5233), - [aux_sym_variable_attributes_token4] = ACTIONS(5233), - [aux_sym_variable_attributes_token5] = ACTIONS(5233), - [aux_sym__intrinsic_type_token1] = ACTIONS(5233), - [aux_sym__intrinsic_type_token2] = ACTIONS(5233), - [aux_sym__intrinsic_type_token3] = ACTIONS(5233), - [aux_sym__intrinsic_type_token4] = ACTIONS(5233), - [aux_sym__intrinsic_type_token6] = ACTIONS(5233), - [aux_sym__intrinsic_type_token7] = ACTIONS(5233), - [aux_sym__intrinsic_type_token8] = ACTIONS(5233), - [aux_sym__intrinsic_type_token9] = ACTIONS(5233), - [aux_sym__intrinsic_type_token10] = ACTIONS(5233), - [aux_sym_derived_type_token1] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5233), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5233), - [aux_sym_type_qualifier_token1] = ACTIONS(5233), - [aux_sym_type_qualifier_token2] = ACTIONS(5233), - [aux_sym_equivalence_statement_token1] = ACTIONS(5233), - [anon_sym_SEMI] = ACTIONS(5237), - [aux_sym_stop_statement_token1] = ACTIONS(5233), - [aux_sym_stop_statement_token2] = ACTIONS(5233), - [aux_sym_subroutine_call_token1] = ACTIONS(5233), - [aux_sym_keyword_statement_token1] = ACTIONS(5233), - [aux_sym_keyword_statement_token2] = ACTIONS(5233), - [aux_sym_keyword_statement_token3] = ACTIONS(5233), - [aux_sym_keyword_statement_token4] = ACTIONS(5233), - [aux_sym_keyword_statement_token6] = ACTIONS(5233), - [aux_sym_keyword_statement_token7] = ACTIONS(5233), - [aux_sym_include_statement_token1] = ACTIONS(5233), - [aux_sym_data_statement_token1] = ACTIONS(5233), - [aux_sym_do_loop_statement_token1] = ACTIONS(5233), - [aux_sym__inline_if_statement_token1] = ACTIONS(5233), - [aux_sym_end_if_statement_token1] = ACTIONS(5233), - [aux_sym_elseif_clause_token2] = ACTIONS(5233), - [aux_sym__inline_where_statement_token1] = ACTIONS(5233), - [aux_sym__forall_control_expression_token1] = ACTIONS(5233), - [aux_sym_select_case_statement_token1] = ACTIONS(5233), - [aux_sym_select_case_statement_token3] = ACTIONS(5233), - [aux_sym_select_type_statement_token1] = ACTIONS(5233), - [aux_sym_select_rank_statement_token2] = ACTIONS(5233), - [aux_sym_block_construct_token1] = ACTIONS(5233), - [aux_sym_associate_statement_token1] = ACTIONS(5233), - [aux_sym_format_statement_token1] = ACTIONS(5233), - [aux_sym_print_statement_token1] = ACTIONS(5233), - [aux_sym_open_statement_token1] = ACTIONS(5233), - [aux_sym_close_statement_token1] = ACTIONS(5233), - [aux_sym_inquire_statement_token1] = ACTIONS(5233), - [aux_sym_enum_statement_token1] = ACTIONS(5233), - [aux_sym_file_position_statement_token1] = ACTIONS(5233), - [aux_sym_file_position_statement_token2] = ACTIONS(5233), - [aux_sym_file_position_statement_token3] = ACTIONS(5233), - [aux_sym_file_position_statement_token4] = ACTIONS(5233), - [aux_sym_allocate_statement_token1] = ACTIONS(5233), - [aux_sym_entry_statement_token1] = ACTIONS(5233), - [aux_sym_logical_expression_token5] = ACTIONS(5237), - [anon_sym_DOT] = ACTIONS(5233), - [anon_sym_LPAREN_SLASH] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [aux_sym_boolean_literal_token1] = ACTIONS(5237), - [aux_sym_boolean_literal_token2] = ACTIONS(5237), - [aux_sym_null_literal_token1] = ACTIONS(5233), - [aux_sym_coarray_statement_token1] = ACTIONS(5233), - [aux_sym_coarray_statement_token2] = ACTIONS(5233), - [aux_sym_coarray_statement_token6] = ACTIONS(5233), - [aux_sym_coarray_statement_token8] = ACTIONS(5233), - [aux_sym_coarray_statement_token11] = ACTIONS(5233), - [aux_sym_coarray_statement_token12] = ACTIONS(5233), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5233), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5233), - [aux_sym_identifier_token1] = ACTIONS(5233), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5237), - [sym__float_literal] = ACTIONS(5237), - [sym__boz_literal] = ACTIONS(5237), - [sym__string_literal] = ACTIONS(5237), - [sym__string_literal_kind] = ACTIONS(5237), - }, - [1304] = { - [aux_sym_preproc_include_token1] = ACTIONS(5336), - [aux_sym_preproc_def_token1] = ACTIONS(5336), - [aux_sym_preproc_if_token1] = ACTIONS(5336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5336), - [sym_preproc_directive] = ACTIONS(5336), - [anon_sym_LPAREN2] = ACTIONS(5336), - [sym_preproc_comment] = ACTIONS(5356), - [anon_sym_PLUS] = ACTIONS(5340), - [anon_sym_DASH] = ACTIONS(5340), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5336), - [aux_sym_interface_statement_token1] = ACTIONS(5336), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5336), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5336), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5336), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5336), - [aux_sym_language_binding_token1] = ACTIONS(5336), - [aux_sym_procedure_attributes_token1] = ACTIONS(5336), - [aux_sym_procedure_attributes_token3] = ACTIONS(5336), - [aux_sym_contains_statement_token1] = ACTIONS(5336), - [aux_sym_use_statement_token1] = ACTIONS(5336), - [aux_sym_use_statement_token2] = ACTIONS(5336), - [aux_sym_implicit_statement_token1] = ACTIONS(5336), - [aux_sym_implicit_statement_token3] = ACTIONS(5336), - [aux_sym_implicit_statement_token4] = ACTIONS(5336), - [aux_sym_save_statement_token1] = ACTIONS(5336), - [aux_sym_private_statement_token1] = ACTIONS(5336), - [aux_sym_public_statement_token1] = ACTIONS(5336), - [aux_sym_namelist_statement_token1] = ACTIONS(5336), - [aux_sym_common_statement_token1] = ACTIONS(5336), - [aux_sym_import_statement_token1] = ACTIONS(5336), - [aux_sym_derived_type_definition_token1] = ACTIONS(5336), - [aux_sym_abstract_specifier_token1] = ACTIONS(5336), - [aux_sym_procedure_attribute_token6] = ACTIONS(5336), - [aux_sym_variable_attributes_token1] = ACTIONS(5336), - [aux_sym_variable_attributes_token2] = ACTIONS(5336), - [aux_sym_variable_attributes_token3] = ACTIONS(5336), - [aux_sym_variable_attributes_token4] = ACTIONS(5336), - [aux_sym_variable_attributes_token5] = ACTIONS(5336), - [aux_sym__intrinsic_type_token1] = ACTIONS(5336), - [aux_sym__intrinsic_type_token2] = ACTIONS(5336), - [aux_sym__intrinsic_type_token3] = ACTIONS(5336), - [aux_sym__intrinsic_type_token4] = ACTIONS(5336), - [aux_sym__intrinsic_type_token6] = ACTIONS(5336), - [aux_sym__intrinsic_type_token7] = ACTIONS(5336), - [aux_sym__intrinsic_type_token8] = ACTIONS(5336), - [aux_sym__intrinsic_type_token9] = ACTIONS(5336), - [aux_sym__intrinsic_type_token10] = ACTIONS(5336), - [aux_sym_derived_type_token1] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5336), - [aux_sym_type_qualifier_token1] = ACTIONS(5336), - [aux_sym_type_qualifier_token2] = ACTIONS(5336), - [aux_sym_equivalence_statement_token1] = ACTIONS(5336), - [anon_sym_SEMI] = ACTIONS(5340), - [aux_sym_stop_statement_token1] = ACTIONS(5336), - [aux_sym_stop_statement_token2] = ACTIONS(5336), - [aux_sym_subroutine_call_token1] = ACTIONS(5336), - [aux_sym_keyword_statement_token1] = ACTIONS(5336), - [aux_sym_keyword_statement_token2] = ACTIONS(5336), - [aux_sym_keyword_statement_token3] = ACTIONS(5336), - [aux_sym_keyword_statement_token4] = ACTIONS(5336), - [aux_sym_keyword_statement_token6] = ACTIONS(5336), - [aux_sym_keyword_statement_token7] = ACTIONS(5336), - [aux_sym_include_statement_token1] = ACTIONS(5336), - [aux_sym_data_statement_token1] = ACTIONS(5336), - [aux_sym_do_loop_statement_token1] = ACTIONS(5336), - [aux_sym__inline_if_statement_token1] = ACTIONS(5336), - [aux_sym_end_if_statement_token1] = ACTIONS(5336), - [aux_sym_elseif_clause_token2] = ACTIONS(5336), - [aux_sym__inline_where_statement_token1] = ACTIONS(5336), - [aux_sym__forall_control_expression_token1] = ACTIONS(5336), - [aux_sym_select_case_statement_token1] = ACTIONS(5336), - [aux_sym_select_case_statement_token3] = ACTIONS(5336), - [aux_sym_select_type_statement_token1] = ACTIONS(5336), - [aux_sym_select_rank_statement_token2] = ACTIONS(5336), - [aux_sym_block_construct_token1] = ACTIONS(5336), - [aux_sym_associate_statement_token1] = ACTIONS(5336), - [aux_sym_format_statement_token1] = ACTIONS(5336), - [aux_sym_print_statement_token1] = ACTIONS(5336), - [aux_sym_open_statement_token1] = ACTIONS(5336), - [aux_sym_close_statement_token1] = ACTIONS(5336), - [aux_sym_inquire_statement_token1] = ACTIONS(5336), - [aux_sym_enum_statement_token1] = ACTIONS(5336), - [aux_sym_file_position_statement_token1] = ACTIONS(5336), - [aux_sym_file_position_statement_token2] = ACTIONS(5336), - [aux_sym_file_position_statement_token3] = ACTIONS(5336), - [aux_sym_file_position_statement_token4] = ACTIONS(5336), - [aux_sym_allocate_statement_token1] = ACTIONS(5336), - [aux_sym_entry_statement_token1] = ACTIONS(5336), - [aux_sym_logical_expression_token5] = ACTIONS(5340), - [anon_sym_DOT] = ACTIONS(5336), - [anon_sym_LPAREN_SLASH] = ACTIONS(5340), - [anon_sym_LBRACK] = ACTIONS(5340), - [aux_sym_boolean_literal_token1] = ACTIONS(5340), - [aux_sym_boolean_literal_token2] = ACTIONS(5340), - [aux_sym_null_literal_token1] = ACTIONS(5336), - [aux_sym_coarray_statement_token1] = ACTIONS(5336), - [aux_sym_coarray_statement_token2] = ACTIONS(5336), - [aux_sym_coarray_statement_token6] = ACTIONS(5336), - [aux_sym_coarray_statement_token8] = ACTIONS(5336), - [aux_sym_coarray_statement_token11] = ACTIONS(5336), - [aux_sym_coarray_statement_token12] = ACTIONS(5336), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5336), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5336), - [aux_sym_identifier_token1] = ACTIONS(5336), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5340), - [sym__float_literal] = ACTIONS(5340), - [sym__boz_literal] = ACTIONS(5340), - [sym__string_literal] = ACTIONS(5340), - [sym__string_literal_kind] = ACTIONS(5340), - }, - [1305] = { - [aux_sym_preproc_include_token1] = ACTIONS(5195), - [aux_sym_preproc_def_token1] = ACTIONS(5195), - [aux_sym_preproc_if_token1] = ACTIONS(5195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5195), - [sym_preproc_directive] = ACTIONS(5195), - [anon_sym_LPAREN2] = ACTIONS(5195), - [sym_preproc_comment] = ACTIONS(5358), - [anon_sym_PLUS] = ACTIONS(5199), - [anon_sym_DASH] = ACTIONS(5199), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5195), - [aux_sym_interface_statement_token1] = ACTIONS(5195), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5195), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5195), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5195), - [aux_sym_language_binding_token1] = ACTIONS(5195), - [aux_sym_procedure_attributes_token1] = ACTIONS(5195), - [aux_sym_procedure_attributes_token3] = ACTIONS(5195), - [aux_sym_end_function_statement_token1] = ACTIONS(5195), - [aux_sym_contains_statement_token1] = ACTIONS(5195), - [aux_sym_use_statement_token1] = ACTIONS(5195), - [aux_sym_use_statement_token2] = ACTIONS(5195), - [aux_sym_implicit_statement_token1] = ACTIONS(5195), - [aux_sym_implicit_statement_token3] = ACTIONS(5195), - [aux_sym_implicit_statement_token4] = ACTIONS(5195), - [aux_sym_save_statement_token1] = ACTIONS(5195), - [aux_sym_private_statement_token1] = ACTIONS(5195), - [aux_sym_public_statement_token1] = ACTIONS(5195), - [aux_sym_namelist_statement_token1] = ACTIONS(5195), - [aux_sym_common_statement_token1] = ACTIONS(5195), - [aux_sym_import_statement_token1] = ACTIONS(5195), - [aux_sym_derived_type_definition_token1] = ACTIONS(5195), - [aux_sym_abstract_specifier_token1] = ACTIONS(5195), - [aux_sym_procedure_attribute_token6] = ACTIONS(5195), - [aux_sym_variable_attributes_token1] = ACTIONS(5195), - [aux_sym_variable_attributes_token2] = ACTIONS(5195), - [aux_sym_variable_attributes_token3] = ACTIONS(5195), - [aux_sym_variable_attributes_token4] = ACTIONS(5195), - [aux_sym_variable_attributes_token5] = ACTIONS(5195), - [aux_sym__intrinsic_type_token1] = ACTIONS(5195), - [aux_sym__intrinsic_type_token2] = ACTIONS(5195), - [aux_sym__intrinsic_type_token3] = ACTIONS(5195), - [aux_sym__intrinsic_type_token4] = ACTIONS(5195), - [aux_sym__intrinsic_type_token6] = ACTIONS(5195), - [aux_sym__intrinsic_type_token7] = ACTIONS(5195), - [aux_sym__intrinsic_type_token8] = ACTIONS(5195), - [aux_sym__intrinsic_type_token9] = ACTIONS(5195), - [aux_sym__intrinsic_type_token10] = ACTIONS(5195), - [aux_sym_derived_type_token1] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5195), - [aux_sym_type_qualifier_token1] = ACTIONS(5195), - [aux_sym_type_qualifier_token2] = ACTIONS(5195), - [aux_sym_equivalence_statement_token1] = ACTIONS(5195), - [anon_sym_SEMI] = ACTIONS(5199), - [aux_sym_stop_statement_token1] = ACTIONS(5195), - [aux_sym_stop_statement_token2] = ACTIONS(5195), - [aux_sym_subroutine_call_token1] = ACTIONS(5195), - [aux_sym_keyword_statement_token1] = ACTIONS(5195), - [aux_sym_keyword_statement_token2] = ACTIONS(5195), - [aux_sym_keyword_statement_token3] = ACTIONS(5195), - [aux_sym_keyword_statement_token4] = ACTIONS(5195), - [aux_sym_keyword_statement_token6] = ACTIONS(5195), - [aux_sym_keyword_statement_token7] = ACTIONS(5195), - [aux_sym_include_statement_token1] = ACTIONS(5195), - [aux_sym_data_statement_token1] = ACTIONS(5195), - [aux_sym_do_loop_statement_token1] = ACTIONS(5195), - [aux_sym__inline_if_statement_token1] = ACTIONS(5195), - [aux_sym_end_if_statement_token1] = ACTIONS(5195), - [aux_sym_elseif_clause_token2] = ACTIONS(5195), - [aux_sym__inline_where_statement_token1] = ACTIONS(5195), - [aux_sym__forall_control_expression_token1] = ACTIONS(5195), - [aux_sym_select_case_statement_token1] = ACTIONS(5195), - [aux_sym_select_case_statement_token3] = ACTIONS(5195), - [aux_sym_select_type_statement_token1] = ACTIONS(5195), - [aux_sym_select_rank_statement_token2] = ACTIONS(5195), - [aux_sym_block_construct_token1] = ACTIONS(5195), - [aux_sym_associate_statement_token1] = ACTIONS(5195), - [aux_sym_format_statement_token1] = ACTIONS(5195), - [aux_sym_print_statement_token1] = ACTIONS(5195), - [aux_sym_open_statement_token1] = ACTIONS(5195), - [aux_sym_close_statement_token1] = ACTIONS(5195), - [aux_sym_inquire_statement_token1] = ACTIONS(5195), - [aux_sym_enum_statement_token1] = ACTIONS(5195), - [aux_sym_file_position_statement_token1] = ACTIONS(5195), - [aux_sym_file_position_statement_token2] = ACTIONS(5195), - [aux_sym_file_position_statement_token3] = ACTIONS(5195), - [aux_sym_file_position_statement_token4] = ACTIONS(5195), - [aux_sym_allocate_statement_token1] = ACTIONS(5195), - [aux_sym_entry_statement_token1] = ACTIONS(5195), - [aux_sym_logical_expression_token5] = ACTIONS(5199), - [anon_sym_DOT] = ACTIONS(5195), - [anon_sym_LPAREN_SLASH] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [aux_sym_boolean_literal_token1] = ACTIONS(5199), - [aux_sym_boolean_literal_token2] = ACTIONS(5199), - [aux_sym_null_literal_token1] = ACTIONS(5195), - [aux_sym_coarray_statement_token1] = ACTIONS(5195), - [aux_sym_coarray_statement_token2] = ACTIONS(5195), - [aux_sym_coarray_statement_token6] = ACTIONS(5195), - [aux_sym_coarray_statement_token8] = ACTIONS(5195), - [aux_sym_coarray_statement_token11] = ACTIONS(5195), - [aux_sym_coarray_statement_token12] = ACTIONS(5195), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5195), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5195), - [aux_sym_identifier_token1] = ACTIONS(5195), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5199), - [sym__float_literal] = ACTIONS(5199), - [sym__boz_literal] = ACTIONS(5199), - [sym__string_literal] = ACTIONS(5199), - [sym__string_literal_kind] = ACTIONS(5199), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1306] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [sym_preproc_comment] = ACTIONS(5360), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(5342), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_end_function_statement_token1] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_end_function_statement_token1] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), }, [1307] = { - [aux_sym_preproc_include_token1] = ACTIONS(5336), - [aux_sym_preproc_def_token1] = ACTIONS(5336), - [aux_sym_preproc_if_token1] = ACTIONS(5336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5336), - [sym_preproc_directive] = ACTIONS(5336), - [anon_sym_LPAREN2] = ACTIONS(5336), - [sym_preproc_comment] = ACTIONS(5362), - [anon_sym_PLUS] = ACTIONS(5340), - [anon_sym_DASH] = ACTIONS(5340), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5336), - [aux_sym_end_program_statement_token2] = ACTIONS(5336), - [aux_sym_interface_statement_token1] = ACTIONS(5336), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5336), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5336), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5336), - [aux_sym_language_binding_token1] = ACTIONS(5336), - [aux_sym_procedure_attributes_token1] = ACTIONS(5336), - [aux_sym_procedure_attributes_token3] = ACTIONS(5336), - [aux_sym_contains_statement_token1] = ACTIONS(5336), - [aux_sym_use_statement_token1] = ACTIONS(5336), - [aux_sym_use_statement_token2] = ACTIONS(5336), - [aux_sym_implicit_statement_token1] = ACTIONS(5336), - [aux_sym_implicit_statement_token3] = ACTIONS(5336), - [aux_sym_implicit_statement_token4] = ACTIONS(5336), - [aux_sym_save_statement_token1] = ACTIONS(5336), - [aux_sym_private_statement_token1] = ACTIONS(5336), - [aux_sym_public_statement_token1] = ACTIONS(5336), - [aux_sym_namelist_statement_token1] = ACTIONS(5336), - [aux_sym_common_statement_token1] = ACTIONS(5336), - [aux_sym_import_statement_token1] = ACTIONS(5336), - [aux_sym_derived_type_definition_token1] = ACTIONS(5336), - [aux_sym_abstract_specifier_token1] = ACTIONS(5336), - [aux_sym_procedure_attribute_token6] = ACTIONS(5336), - [aux_sym_variable_attributes_token1] = ACTIONS(5336), - [aux_sym_variable_attributes_token2] = ACTIONS(5336), - [aux_sym_variable_attributes_token3] = ACTIONS(5336), - [aux_sym_variable_attributes_token4] = ACTIONS(5336), - [aux_sym_variable_attributes_token5] = ACTIONS(5336), - [aux_sym__intrinsic_type_token1] = ACTIONS(5336), - [aux_sym__intrinsic_type_token2] = ACTIONS(5336), - [aux_sym__intrinsic_type_token3] = ACTIONS(5336), - [aux_sym__intrinsic_type_token4] = ACTIONS(5336), - [aux_sym__intrinsic_type_token6] = ACTIONS(5336), - [aux_sym__intrinsic_type_token7] = ACTIONS(5336), - [aux_sym__intrinsic_type_token8] = ACTIONS(5336), - [aux_sym__intrinsic_type_token9] = ACTIONS(5336), - [aux_sym__intrinsic_type_token10] = ACTIONS(5336), - [aux_sym_derived_type_token1] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5336), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5336), - [aux_sym_type_qualifier_token1] = ACTIONS(5336), - [aux_sym_type_qualifier_token2] = ACTIONS(5336), - [aux_sym_equivalence_statement_token1] = ACTIONS(5336), - [anon_sym_SEMI] = ACTIONS(5340), - [aux_sym_stop_statement_token1] = ACTIONS(5336), - [aux_sym_stop_statement_token2] = ACTIONS(5336), - [aux_sym_subroutine_call_token1] = ACTIONS(5336), - [aux_sym_keyword_statement_token1] = ACTIONS(5336), - [aux_sym_keyword_statement_token2] = ACTIONS(5336), - [aux_sym_keyword_statement_token3] = ACTIONS(5336), - [aux_sym_keyword_statement_token4] = ACTIONS(5336), - [aux_sym_keyword_statement_token6] = ACTIONS(5336), - [aux_sym_keyword_statement_token7] = ACTIONS(5336), - [aux_sym_include_statement_token1] = ACTIONS(5336), - [aux_sym_data_statement_token1] = ACTIONS(5336), - [aux_sym_do_loop_statement_token1] = ACTIONS(5336), - [aux_sym__inline_if_statement_token1] = ACTIONS(5336), - [aux_sym_end_if_statement_token1] = ACTIONS(5336), - [aux_sym_elseif_clause_token2] = ACTIONS(5336), - [aux_sym__inline_where_statement_token1] = ACTIONS(5336), - [aux_sym__forall_control_expression_token1] = ACTIONS(5336), - [aux_sym_select_case_statement_token1] = ACTIONS(5336), - [aux_sym_select_case_statement_token3] = ACTIONS(5336), - [aux_sym_select_type_statement_token1] = ACTIONS(5336), - [aux_sym_select_rank_statement_token2] = ACTIONS(5336), - [aux_sym_block_construct_token1] = ACTIONS(5336), - [aux_sym_associate_statement_token1] = ACTIONS(5336), - [aux_sym_format_statement_token1] = ACTIONS(5336), - [aux_sym_print_statement_token1] = ACTIONS(5336), - [aux_sym_open_statement_token1] = ACTIONS(5336), - [aux_sym_close_statement_token1] = ACTIONS(5336), - [aux_sym_inquire_statement_token1] = ACTIONS(5336), - [aux_sym_enum_statement_token1] = ACTIONS(5336), - [aux_sym_file_position_statement_token1] = ACTIONS(5336), - [aux_sym_file_position_statement_token2] = ACTIONS(5336), - [aux_sym_file_position_statement_token3] = ACTIONS(5336), - [aux_sym_file_position_statement_token4] = ACTIONS(5336), - [aux_sym_allocate_statement_token1] = ACTIONS(5336), - [aux_sym_entry_statement_token1] = ACTIONS(5336), - [aux_sym_logical_expression_token5] = ACTIONS(5340), - [anon_sym_DOT] = ACTIONS(5336), - [anon_sym_LPAREN_SLASH] = ACTIONS(5340), - [anon_sym_LBRACK] = ACTIONS(5340), - [aux_sym_boolean_literal_token1] = ACTIONS(5340), - [aux_sym_boolean_literal_token2] = ACTIONS(5340), - [aux_sym_null_literal_token1] = ACTIONS(5336), - [aux_sym_coarray_statement_token1] = ACTIONS(5336), - [aux_sym_coarray_statement_token2] = ACTIONS(5336), - [aux_sym_coarray_statement_token6] = ACTIONS(5336), - [aux_sym_coarray_statement_token8] = ACTIONS(5336), - [aux_sym_coarray_statement_token11] = ACTIONS(5336), - [aux_sym_coarray_statement_token12] = ACTIONS(5336), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5336), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5336), - [aux_sym_identifier_token1] = ACTIONS(5336), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5340), - [sym__float_literal] = ACTIONS(5340), - [sym__boz_literal] = ACTIONS(5340), - [sym__string_literal] = ACTIONS(5340), - [sym__string_literal_kind] = ACTIONS(5340), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(5344), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_end_function_statement_token1] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [1308] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(5364), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_end_program_statement_token2] = ACTIONS(4313), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4327), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), }, [1309] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(5366), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_end_function_statement_token1] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [aux_sym_preproc_include_token1] = ACTIONS(5170), + [aux_sym_preproc_def_token1] = ACTIONS(5170), + [aux_sym_preproc_if_token1] = ACTIONS(5170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5170), + [sym_preproc_directive] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [sym_preproc_comment] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5170), + [aux_sym_interface_statement_token1] = ACTIONS(5170), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5170), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5170), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5170), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5170), + [aux_sym_language_binding_token1] = ACTIONS(5170), + [aux_sym_procedure_attributes_token1] = ACTIONS(5170), + [aux_sym_procedure_attributes_token3] = ACTIONS(5170), + [aux_sym_contains_statement_token1] = ACTIONS(5170), + [aux_sym_use_statement_token1] = ACTIONS(5170), + [aux_sym_use_statement_token2] = ACTIONS(5170), + [aux_sym_implicit_statement_token1] = ACTIONS(5170), + [aux_sym_implicit_statement_token3] = ACTIONS(5170), + [aux_sym_implicit_statement_token4] = ACTIONS(5170), + [aux_sym_save_statement_token1] = ACTIONS(5170), + [aux_sym_private_statement_token1] = ACTIONS(5170), + [aux_sym_public_statement_token1] = ACTIONS(5170), + [aux_sym_namelist_statement_token1] = ACTIONS(5170), + [aux_sym_common_statement_token1] = ACTIONS(5170), + [aux_sym_import_statement_token1] = ACTIONS(5170), + [aux_sym_derived_type_definition_token1] = ACTIONS(5170), + [aux_sym_abstract_specifier_token1] = ACTIONS(5170), + [aux_sym_procedure_attribute_token6] = ACTIONS(5170), + [aux_sym_variable_attributes_token1] = ACTIONS(5170), + [aux_sym_variable_attributes_token2] = ACTIONS(5170), + [aux_sym_variable_attributes_token3] = ACTIONS(5170), + [aux_sym_variable_attributes_token4] = ACTIONS(5170), + [aux_sym_variable_attributes_token5] = ACTIONS(5170), + [aux_sym__intrinsic_type_token1] = ACTIONS(5170), + [aux_sym__intrinsic_type_token2] = ACTIONS(5170), + [aux_sym__intrinsic_type_token3] = ACTIONS(5170), + [aux_sym__intrinsic_type_token4] = ACTIONS(5170), + [aux_sym__intrinsic_type_token6] = ACTIONS(5170), + [aux_sym__intrinsic_type_token7] = ACTIONS(5170), + [aux_sym__intrinsic_type_token8] = ACTIONS(5170), + [aux_sym__intrinsic_type_token9] = ACTIONS(5170), + [aux_sym__intrinsic_type_token10] = ACTIONS(5170), + [aux_sym_derived_type_token1] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5170), + [aux_sym_type_qualifier_token1] = ACTIONS(5170), + [aux_sym_type_qualifier_token2] = ACTIONS(5170), + [aux_sym_equivalence_statement_token1] = ACTIONS(5170), + [anon_sym_SEMI] = ACTIONS(5174), + [aux_sym_stop_statement_token1] = ACTIONS(5170), + [aux_sym_stop_statement_token2] = ACTIONS(5170), + [aux_sym_subroutine_call_token1] = ACTIONS(5170), + [aux_sym_keyword_statement_token1] = ACTIONS(5170), + [aux_sym_keyword_statement_token2] = ACTIONS(5170), + [aux_sym_keyword_statement_token3] = ACTIONS(5170), + [aux_sym_keyword_statement_token4] = ACTIONS(5170), + [aux_sym_keyword_statement_token6] = ACTIONS(5170), + [aux_sym_keyword_statement_token7] = ACTIONS(5170), + [aux_sym_include_statement_token1] = ACTIONS(5170), + [aux_sym_data_statement_token1] = ACTIONS(5170), + [aux_sym_do_loop_statement_token1] = ACTIONS(5170), + [aux_sym__inline_if_statement_token1] = ACTIONS(5170), + [aux_sym_end_if_statement_token1] = ACTIONS(5170), + [aux_sym_elseif_clause_token2] = ACTIONS(5170), + [aux_sym__inline_where_statement_token1] = ACTIONS(5170), + [aux_sym__forall_control_expression_token1] = ACTIONS(5170), + [aux_sym_select_case_statement_token1] = ACTIONS(5170), + [aux_sym_select_case_statement_token3] = ACTIONS(5170), + [aux_sym_select_type_statement_token1] = ACTIONS(5170), + [aux_sym_select_rank_statement_token2] = ACTIONS(5170), + [aux_sym_block_construct_token1] = ACTIONS(5170), + [aux_sym_associate_statement_token1] = ACTIONS(5170), + [aux_sym_format_statement_token1] = ACTIONS(5170), + [aux_sym_print_statement_token1] = ACTIONS(5170), + [aux_sym_open_statement_token1] = ACTIONS(5170), + [aux_sym_close_statement_token1] = ACTIONS(5170), + [aux_sym_inquire_statement_token1] = ACTIONS(5170), + [aux_sym_enum_statement_token1] = ACTIONS(5170), + [aux_sym_file_position_statement_token1] = ACTIONS(5170), + [aux_sym_file_position_statement_token2] = ACTIONS(5170), + [aux_sym_file_position_statement_token3] = ACTIONS(5170), + [aux_sym_file_position_statement_token4] = ACTIONS(5170), + [aux_sym_allocate_statement_token1] = ACTIONS(5170), + [aux_sym_entry_statement_token1] = ACTIONS(5170), + [aux_sym_logical_expression_token5] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_LPAREN_SLASH] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [aux_sym_boolean_literal_token1] = ACTIONS(5174), + [aux_sym_boolean_literal_token2] = ACTIONS(5174), + [aux_sym_null_literal_token1] = ACTIONS(5170), + [aux_sym_coarray_statement_token1] = ACTIONS(5170), + [aux_sym_coarray_statement_token2] = ACTIONS(5170), + [aux_sym_coarray_statement_token6] = ACTIONS(5170), + [aux_sym_coarray_statement_token8] = ACTIONS(5170), + [aux_sym_coarray_statement_token11] = ACTIONS(5170), + [aux_sym_coarray_statement_token12] = ACTIONS(5170), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5170), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5170), + [aux_sym_identifier_token1] = ACTIONS(5170), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5174), + [sym__float_literal] = ACTIONS(5174), + [sym__boz_literal] = ACTIONS(5174), + [sym__string_literal] = ACTIONS(5174), + [sym__string_literal_kind] = ACTIONS(5174), }, [1310] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(5368), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [sym_preproc_comment] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1311] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token2] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_LPAREN2] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_end_program_statement_token2] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [anon_sym_SEMI] = ACTIONS(5055), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_subroutine_call_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_keyword_statement_token4] = ACTIONS(5053), - [aux_sym_keyword_statement_token6] = ACTIONS(5053), - [aux_sym_keyword_statement_token7] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym_do_loop_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym__inline_where_statement_token1] = ACTIONS(5053), - [aux_sym__forall_control_expression_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token3] = ACTIONS(5053), - [aux_sym_select_type_statement_token1] = ACTIONS(5053), - [aux_sym_select_rank_statement_token2] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_associate_statement_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_print_statement_token1] = ACTIONS(5053), - [aux_sym_open_statement_token1] = ACTIONS(5053), - [aux_sym_close_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token2] = ACTIONS(5053), - [aux_sym_file_position_statement_token3] = ACTIONS(5053), - [aux_sym_file_position_statement_token4] = ACTIONS(5053), - [aux_sym_allocate_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_logical_expression_token5] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_LPAREN_SLASH] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [aux_sym_boolean_literal_token1] = ACTIONS(5055), - [aux_sym_boolean_literal_token2] = ACTIONS(5055), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - [sym__float_literal] = ACTIONS(5055), - [sym__boz_literal] = ACTIONS(5055), - [sym__string_literal] = ACTIONS(5055), - [sym__string_literal_kind] = ACTIONS(5055), - }, - [1312] = { - [aux_sym_preproc_include_token1] = ACTIONS(4972), - [aux_sym_preproc_def_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token2] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), - [sym_preproc_directive] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4974), - [anon_sym_DASH] = ACTIONS(4974), + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(5352), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4972), - [aux_sym_end_program_statement_token2] = ACTIONS(4972), - [aux_sym_interface_statement_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), - [aux_sym_language_binding_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token3] = ACTIONS(4972), - [aux_sym_contains_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token2] = ACTIONS(4972), - [aux_sym_implicit_statement_token1] = ACTIONS(4972), - [aux_sym_implicit_statement_token3] = ACTIONS(4972), - [aux_sym_implicit_statement_token4] = ACTIONS(4972), - [aux_sym_save_statement_token1] = ACTIONS(4972), - [aux_sym_private_statement_token1] = ACTIONS(4972), - [aux_sym_public_statement_token1] = ACTIONS(4972), - [aux_sym_namelist_statement_token1] = ACTIONS(4972), - [aux_sym_common_statement_token1] = ACTIONS(4972), - [aux_sym_import_statement_token1] = ACTIONS(4972), - [aux_sym_derived_type_definition_token1] = ACTIONS(4972), - [aux_sym_abstract_specifier_token1] = ACTIONS(4972), - [aux_sym_procedure_attribute_token6] = ACTIONS(4972), - [aux_sym_variable_attributes_token1] = ACTIONS(4972), - [aux_sym_variable_attributes_token2] = ACTIONS(4972), - [aux_sym_variable_attributes_token3] = ACTIONS(4972), - [aux_sym_variable_attributes_token4] = ACTIONS(4972), - [aux_sym_variable_attributes_token5] = ACTIONS(4972), - [aux_sym__intrinsic_type_token1] = ACTIONS(4972), - [aux_sym__intrinsic_type_token2] = ACTIONS(4972), - [aux_sym__intrinsic_type_token3] = ACTIONS(4972), - [aux_sym__intrinsic_type_token4] = ACTIONS(4972), - [aux_sym__intrinsic_type_token6] = ACTIONS(4972), - [aux_sym__intrinsic_type_token7] = ACTIONS(4972), - [aux_sym__intrinsic_type_token8] = ACTIONS(4972), - [aux_sym__intrinsic_type_token9] = ACTIONS(4972), - [aux_sym__intrinsic_type_token10] = ACTIONS(4972), - [aux_sym_derived_type_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), - [aux_sym_type_qualifier_token1] = ACTIONS(4972), - [aux_sym_type_qualifier_token2] = ACTIONS(4972), - [aux_sym_equivalence_statement_token1] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4974), - [aux_sym_stop_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token2] = ACTIONS(4972), - [aux_sym_subroutine_call_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token3] = ACTIONS(4972), - [aux_sym_keyword_statement_token4] = ACTIONS(4972), - [aux_sym_keyword_statement_token6] = ACTIONS(4972), - [aux_sym_keyword_statement_token7] = ACTIONS(4972), - [aux_sym_include_statement_token1] = ACTIONS(4972), - [aux_sym_data_statement_token1] = ACTIONS(4972), - [aux_sym_do_loop_statement_token1] = ACTIONS(4972), - [aux_sym__inline_if_statement_token1] = ACTIONS(4972), - [aux_sym_end_if_statement_token1] = ACTIONS(4972), - [aux_sym_elseif_clause_token2] = ACTIONS(4972), - [aux_sym__inline_where_statement_token1] = ACTIONS(4972), - [aux_sym__forall_control_expression_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token3] = ACTIONS(4972), - [aux_sym_select_type_statement_token1] = ACTIONS(4972), - [aux_sym_select_rank_statement_token2] = ACTIONS(4972), - [aux_sym_block_construct_token1] = ACTIONS(4972), - [aux_sym_associate_statement_token1] = ACTIONS(4972), - [aux_sym_format_statement_token1] = ACTIONS(4972), - [aux_sym_print_statement_token1] = ACTIONS(4972), - [aux_sym_open_statement_token1] = ACTIONS(4972), - [aux_sym_close_statement_token1] = ACTIONS(4972), - [aux_sym_inquire_statement_token1] = ACTIONS(4972), - [aux_sym_enum_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token2] = ACTIONS(4972), - [aux_sym_file_position_statement_token3] = ACTIONS(4972), - [aux_sym_file_position_statement_token4] = ACTIONS(4972), - [aux_sym_allocate_statement_token1] = ACTIONS(4972), - [aux_sym_entry_statement_token1] = ACTIONS(4972), - [aux_sym_logical_expression_token5] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_LPAREN_SLASH] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [aux_sym_boolean_literal_token1] = ACTIONS(4974), - [aux_sym_boolean_literal_token2] = ACTIONS(4974), - [aux_sym_null_literal_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token2] = ACTIONS(4972), - [aux_sym_coarray_statement_token6] = ACTIONS(4972), - [aux_sym_coarray_statement_token8] = ACTIONS(4972), - [aux_sym_coarray_statement_token11] = ACTIONS(4972), - [aux_sym_coarray_statement_token12] = ACTIONS(4972), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), - [aux_sym_identifier_token1] = ACTIONS(4972), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4974), - [sym__float_literal] = ACTIONS(4974), - [sym__boz_literal] = ACTIONS(4974), - [sym__string_literal] = ACTIONS(4974), - [sym__string_literal_kind] = ACTIONS(4974), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), + }, + [1312] = { + [aux_sym_preproc_include_token1] = ACTIONS(5180), + [aux_sym_preproc_def_token1] = ACTIONS(5180), + [aux_sym_preproc_if_token1] = ACTIONS(5180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5180), + [sym_preproc_directive] = ACTIONS(5180), + [anon_sym_LPAREN2] = ACTIONS(5180), + [sym_preproc_comment] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5180), + [aux_sym_interface_statement_token1] = ACTIONS(5180), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5180), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5180), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5180), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5180), + [aux_sym_language_binding_token1] = ACTIONS(5180), + [aux_sym_procedure_attributes_token1] = ACTIONS(5180), + [aux_sym_procedure_attributes_token3] = ACTIONS(5180), + [aux_sym_contains_statement_token1] = ACTIONS(5180), + [aux_sym_use_statement_token1] = ACTIONS(5180), + [aux_sym_use_statement_token2] = ACTIONS(5180), + [aux_sym_implicit_statement_token1] = ACTIONS(5180), + [aux_sym_implicit_statement_token3] = ACTIONS(5180), + [aux_sym_implicit_statement_token4] = ACTIONS(5180), + [aux_sym_save_statement_token1] = ACTIONS(5180), + [aux_sym_private_statement_token1] = ACTIONS(5180), + [aux_sym_public_statement_token1] = ACTIONS(5180), + [aux_sym_namelist_statement_token1] = ACTIONS(5180), + [aux_sym_common_statement_token1] = ACTIONS(5180), + [aux_sym_import_statement_token1] = ACTIONS(5180), + [aux_sym_derived_type_definition_token1] = ACTIONS(5180), + [aux_sym_abstract_specifier_token1] = ACTIONS(5180), + [aux_sym_procedure_attribute_token6] = ACTIONS(5180), + [aux_sym_variable_attributes_token1] = ACTIONS(5180), + [aux_sym_variable_attributes_token2] = ACTIONS(5180), + [aux_sym_variable_attributes_token3] = ACTIONS(5180), + [aux_sym_variable_attributes_token4] = ACTIONS(5180), + [aux_sym_variable_attributes_token5] = ACTIONS(5180), + [aux_sym__intrinsic_type_token1] = ACTIONS(5180), + [aux_sym__intrinsic_type_token2] = ACTIONS(5180), + [aux_sym__intrinsic_type_token3] = ACTIONS(5180), + [aux_sym__intrinsic_type_token4] = ACTIONS(5180), + [aux_sym__intrinsic_type_token6] = ACTIONS(5180), + [aux_sym__intrinsic_type_token7] = ACTIONS(5180), + [aux_sym__intrinsic_type_token8] = ACTIONS(5180), + [aux_sym__intrinsic_type_token9] = ACTIONS(5180), + [aux_sym__intrinsic_type_token10] = ACTIONS(5180), + [aux_sym_derived_type_token1] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5180), + [aux_sym_type_qualifier_token1] = ACTIONS(5180), + [aux_sym_type_qualifier_token2] = ACTIONS(5180), + [aux_sym_equivalence_statement_token1] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5184), + [aux_sym_stop_statement_token1] = ACTIONS(5180), + [aux_sym_stop_statement_token2] = ACTIONS(5180), + [aux_sym_subroutine_call_token1] = ACTIONS(5180), + [aux_sym_keyword_statement_token1] = ACTIONS(5180), + [aux_sym_keyword_statement_token2] = ACTIONS(5180), + [aux_sym_keyword_statement_token3] = ACTIONS(5180), + [aux_sym_keyword_statement_token4] = ACTIONS(5180), + [aux_sym_keyword_statement_token6] = ACTIONS(5180), + [aux_sym_keyword_statement_token7] = ACTIONS(5180), + [aux_sym_include_statement_token1] = ACTIONS(5180), + [aux_sym_data_statement_token1] = ACTIONS(5180), + [aux_sym_do_loop_statement_token1] = ACTIONS(5180), + [aux_sym__inline_if_statement_token1] = ACTIONS(5180), + [aux_sym_end_if_statement_token1] = ACTIONS(5180), + [aux_sym_elseif_clause_token2] = ACTIONS(5180), + [aux_sym__inline_where_statement_token1] = ACTIONS(5180), + [aux_sym__forall_control_expression_token1] = ACTIONS(5180), + [aux_sym_select_case_statement_token1] = ACTIONS(5180), + [aux_sym_select_case_statement_token3] = ACTIONS(5180), + [aux_sym_select_type_statement_token1] = ACTIONS(5180), + [aux_sym_select_rank_statement_token2] = ACTIONS(5180), + [aux_sym_block_construct_token1] = ACTIONS(5180), + [aux_sym_associate_statement_token1] = ACTIONS(5180), + [aux_sym_format_statement_token1] = ACTIONS(5180), + [aux_sym_print_statement_token1] = ACTIONS(5180), + [aux_sym_open_statement_token1] = ACTIONS(5180), + [aux_sym_close_statement_token1] = ACTIONS(5180), + [aux_sym_inquire_statement_token1] = ACTIONS(5180), + [aux_sym_enum_statement_token1] = ACTIONS(5180), + [aux_sym_file_position_statement_token1] = ACTIONS(5180), + [aux_sym_file_position_statement_token2] = ACTIONS(5180), + [aux_sym_file_position_statement_token3] = ACTIONS(5180), + [aux_sym_file_position_statement_token4] = ACTIONS(5180), + [aux_sym_allocate_statement_token1] = ACTIONS(5180), + [aux_sym_entry_statement_token1] = ACTIONS(5180), + [aux_sym_logical_expression_token5] = ACTIONS(5184), + [anon_sym_DOT] = ACTIONS(5180), + [anon_sym_LPAREN_SLASH] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [aux_sym_boolean_literal_token1] = ACTIONS(5184), + [aux_sym_boolean_literal_token2] = ACTIONS(5184), + [aux_sym_null_literal_token1] = ACTIONS(5180), + [aux_sym_coarray_statement_token1] = ACTIONS(5180), + [aux_sym_coarray_statement_token2] = ACTIONS(5180), + [aux_sym_coarray_statement_token6] = ACTIONS(5180), + [aux_sym_coarray_statement_token8] = ACTIONS(5180), + [aux_sym_coarray_statement_token11] = ACTIONS(5180), + [aux_sym_coarray_statement_token12] = ACTIONS(5180), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5180), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5180), + [aux_sym_identifier_token1] = ACTIONS(5180), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5184), + [sym__float_literal] = ACTIONS(5184), + [sym__boz_literal] = ACTIONS(5184), + [sym__string_literal] = ACTIONS(5184), + [sym__string_literal_kind] = ACTIONS(5184), }, [1313] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [sym_preproc_comment] = ACTIONS(5370), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_end_function_statement_token1] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [aux_sym_preproc_include_token1] = ACTIONS(4976), + [aux_sym_preproc_def_token1] = ACTIONS(4976), + [aux_sym_preproc_if_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), + [sym_preproc_directive] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [sym_preproc_comment] = ACTIONS(5356), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4976), + [aux_sym_interface_statement_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4976), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_language_binding_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token3] = ACTIONS(4976), + [aux_sym_contains_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token2] = ACTIONS(4976), + [aux_sym_implicit_statement_token1] = ACTIONS(4976), + [aux_sym_implicit_statement_token3] = ACTIONS(4976), + [aux_sym_implicit_statement_token4] = ACTIONS(4976), + [aux_sym_save_statement_token1] = ACTIONS(4976), + [aux_sym_private_statement_token1] = ACTIONS(4976), + [aux_sym_public_statement_token1] = ACTIONS(4976), + [aux_sym_namelist_statement_token1] = ACTIONS(4976), + [aux_sym_common_statement_token1] = ACTIONS(4976), + [aux_sym_import_statement_token1] = ACTIONS(4976), + [aux_sym_derived_type_definition_token1] = ACTIONS(4976), + [aux_sym_abstract_specifier_token1] = ACTIONS(4976), + [aux_sym_procedure_attribute_token6] = ACTIONS(4976), + [aux_sym_variable_attributes_token1] = ACTIONS(4976), + [aux_sym_variable_attributes_token2] = ACTIONS(4976), + [aux_sym_variable_attributes_token3] = ACTIONS(4976), + [aux_sym_variable_attributes_token4] = ACTIONS(4976), + [aux_sym_variable_attributes_token5] = ACTIONS(4976), + [aux_sym__intrinsic_type_token1] = ACTIONS(4976), + [aux_sym__intrinsic_type_token2] = ACTIONS(4976), + [aux_sym__intrinsic_type_token3] = ACTIONS(4976), + [aux_sym__intrinsic_type_token4] = ACTIONS(4976), + [aux_sym__intrinsic_type_token6] = ACTIONS(4976), + [aux_sym__intrinsic_type_token7] = ACTIONS(4976), + [aux_sym__intrinsic_type_token8] = ACTIONS(4976), + [aux_sym__intrinsic_type_token9] = ACTIONS(4976), + [aux_sym__intrinsic_type_token10] = ACTIONS(4976), + [aux_sym_derived_type_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), + [aux_sym_type_qualifier_token1] = ACTIONS(4976), + [aux_sym_type_qualifier_token2] = ACTIONS(4976), + [aux_sym_equivalence_statement_token1] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4980), + [aux_sym_stop_statement_token1] = ACTIONS(4976), + [aux_sym_stop_statement_token2] = ACTIONS(4976), + [aux_sym_subroutine_call_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token2] = ACTIONS(4976), + [aux_sym_keyword_statement_token3] = ACTIONS(4976), + [aux_sym_keyword_statement_token4] = ACTIONS(4976), + [aux_sym_keyword_statement_token6] = ACTIONS(4976), + [aux_sym_keyword_statement_token7] = ACTIONS(4976), + [aux_sym_include_statement_token1] = ACTIONS(4976), + [aux_sym_data_statement_token1] = ACTIONS(4976), + [aux_sym_do_loop_statement_token1] = ACTIONS(4976), + [aux_sym__inline_if_statement_token1] = ACTIONS(4976), + [aux_sym_end_if_statement_token1] = ACTIONS(4976), + [aux_sym_elseif_clause_token2] = ACTIONS(4976), + [aux_sym__inline_where_statement_token1] = ACTIONS(4976), + [aux_sym__forall_control_expression_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token3] = ACTIONS(4976), + [aux_sym_select_type_statement_token1] = ACTIONS(4976), + [aux_sym_select_rank_statement_token2] = ACTIONS(4976), + [aux_sym_block_construct_token1] = ACTIONS(4976), + [aux_sym_associate_statement_token1] = ACTIONS(4976), + [aux_sym_format_statement_token1] = ACTIONS(4976), + [aux_sym_print_statement_token1] = ACTIONS(4976), + [aux_sym_open_statement_token1] = ACTIONS(4976), + [aux_sym_close_statement_token1] = ACTIONS(4976), + [aux_sym_inquire_statement_token1] = ACTIONS(4976), + [aux_sym_enum_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token2] = ACTIONS(4976), + [aux_sym_file_position_statement_token3] = ACTIONS(4976), + [aux_sym_file_position_statement_token4] = ACTIONS(4976), + [aux_sym_allocate_statement_token1] = ACTIONS(4976), + [aux_sym_entry_statement_token1] = ACTIONS(4976), + [aux_sym_logical_expression_token5] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), + [aux_sym_null_literal_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token2] = ACTIONS(4976), + [aux_sym_coarray_statement_token6] = ACTIONS(4976), + [aux_sym_coarray_statement_token8] = ACTIONS(4976), + [aux_sym_coarray_statement_token11] = ACTIONS(4976), + [aux_sym_coarray_statement_token12] = ACTIONS(4976), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), + [aux_sym_identifier_token1] = ACTIONS(4976), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, [1314] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token2] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_end_program_statement_token2] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_subroutine_call_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_keyword_statement_token4] = ACTIONS(5049), - [aux_sym_keyword_statement_token6] = ACTIONS(5049), - [aux_sym_keyword_statement_token7] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym_do_loop_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym__inline_where_statement_token1] = ACTIONS(5049), - [aux_sym__forall_control_expression_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token3] = ACTIONS(5049), - [aux_sym_select_type_statement_token1] = ACTIONS(5049), - [aux_sym_select_rank_statement_token2] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_associate_statement_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_print_statement_token1] = ACTIONS(5049), - [aux_sym_open_statement_token1] = ACTIONS(5049), - [aux_sym_close_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token2] = ACTIONS(5049), - [aux_sym_file_position_statement_token3] = ACTIONS(5049), - [aux_sym_file_position_statement_token4] = ACTIONS(5049), - [aux_sym_allocate_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_logical_expression_token5] = ACTIONS(5051), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_LPAREN_SLASH] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [aux_sym_boolean_literal_token1] = ACTIONS(5051), - [aux_sym_boolean_literal_token2] = ACTIONS(5051), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - [sym__float_literal] = ACTIONS(5051), - [sym__boz_literal] = ACTIONS(5051), - [sym__string_literal] = ACTIONS(5051), - [sym__string_literal_kind] = ACTIONS(5051), + [aux_sym_preproc_include_token1] = ACTIONS(4319), + [aux_sym_preproc_def_token1] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4319), + [sym_preproc_directive] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(4319), + [sym_preproc_comment] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4319), + [aux_sym_interface_statement_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4319), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4319), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4319), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4319), + [aux_sym_language_binding_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token1] = ACTIONS(4319), + [aux_sym_procedure_attributes_token3] = ACTIONS(4319), + [aux_sym_contains_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token1] = ACTIONS(4319), + [aux_sym_use_statement_token2] = ACTIONS(4319), + [aux_sym_implicit_statement_token1] = ACTIONS(4319), + [aux_sym_implicit_statement_token3] = ACTIONS(4319), + [aux_sym_implicit_statement_token4] = ACTIONS(4319), + [aux_sym_save_statement_token1] = ACTIONS(4319), + [aux_sym_private_statement_token1] = ACTIONS(4319), + [aux_sym_public_statement_token1] = ACTIONS(4319), + [aux_sym_namelist_statement_token1] = ACTIONS(4319), + [aux_sym_common_statement_token1] = ACTIONS(4319), + [aux_sym_import_statement_token1] = ACTIONS(4319), + [aux_sym_derived_type_definition_token1] = ACTIONS(4319), + [aux_sym_abstract_specifier_token1] = ACTIONS(4319), + [aux_sym_procedure_attribute_token6] = ACTIONS(4319), + [aux_sym_variable_attributes_token1] = ACTIONS(4319), + [aux_sym_variable_attributes_token2] = ACTIONS(4319), + [aux_sym_variable_attributes_token3] = ACTIONS(4319), + [aux_sym_variable_attributes_token4] = ACTIONS(4319), + [aux_sym_variable_attributes_token5] = ACTIONS(4319), + [aux_sym__intrinsic_type_token1] = ACTIONS(4319), + [aux_sym__intrinsic_type_token2] = ACTIONS(4319), + [aux_sym__intrinsic_type_token3] = ACTIONS(4319), + [aux_sym__intrinsic_type_token4] = ACTIONS(4319), + [aux_sym__intrinsic_type_token6] = ACTIONS(4319), + [aux_sym__intrinsic_type_token7] = ACTIONS(4319), + [aux_sym__intrinsic_type_token8] = ACTIONS(4319), + [aux_sym__intrinsic_type_token9] = ACTIONS(4319), + [aux_sym__intrinsic_type_token10] = ACTIONS(4319), + [aux_sym_derived_type_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4319), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4319), + [aux_sym_type_qualifier_token1] = ACTIONS(4319), + [aux_sym_type_qualifier_token2] = ACTIONS(4319), + [aux_sym_equivalence_statement_token1] = ACTIONS(4319), + [anon_sym_SEMI] = ACTIONS(4325), + [aux_sym_stop_statement_token1] = ACTIONS(4319), + [aux_sym_stop_statement_token2] = ACTIONS(4319), + [aux_sym_subroutine_call_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token1] = ACTIONS(4319), + [aux_sym_keyword_statement_token2] = ACTIONS(4319), + [aux_sym_keyword_statement_token3] = ACTIONS(4319), + [aux_sym_keyword_statement_token4] = ACTIONS(4319), + [aux_sym_keyword_statement_token6] = ACTIONS(4319), + [aux_sym_keyword_statement_token7] = ACTIONS(4319), + [aux_sym_include_statement_token1] = ACTIONS(4319), + [aux_sym_data_statement_token1] = ACTIONS(4319), + [aux_sym_do_loop_statement_token1] = ACTIONS(4319), + [aux_sym__inline_if_statement_token1] = ACTIONS(4319), + [aux_sym_end_if_statement_token1] = ACTIONS(4319), + [aux_sym_elseif_clause_token2] = ACTIONS(4319), + [aux_sym__inline_where_statement_token1] = ACTIONS(4319), + [aux_sym__forall_control_expression_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token1] = ACTIONS(4319), + [aux_sym_select_case_statement_token3] = ACTIONS(4319), + [aux_sym_select_type_statement_token1] = ACTIONS(4319), + [aux_sym_select_rank_statement_token2] = ACTIONS(4319), + [aux_sym_block_construct_token1] = ACTIONS(4319), + [aux_sym_associate_statement_token1] = ACTIONS(4319), + [aux_sym_format_statement_token1] = ACTIONS(4319), + [aux_sym_print_statement_token1] = ACTIONS(4319), + [aux_sym_open_statement_token1] = ACTIONS(4319), + [aux_sym_close_statement_token1] = ACTIONS(4319), + [aux_sym_inquire_statement_token1] = ACTIONS(4319), + [aux_sym_enum_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token1] = ACTIONS(4319), + [aux_sym_file_position_statement_token2] = ACTIONS(4319), + [aux_sym_file_position_statement_token3] = ACTIONS(4319), + [aux_sym_file_position_statement_token4] = ACTIONS(4319), + [aux_sym_allocate_statement_token1] = ACTIONS(4319), + [aux_sym_entry_statement_token1] = ACTIONS(4319), + [aux_sym_logical_expression_token5] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LPAREN_SLASH] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_boolean_literal_token1] = ACTIONS(4325), + [aux_sym_boolean_literal_token2] = ACTIONS(4325), + [aux_sym_null_literal_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_statement_token2] = ACTIONS(4319), + [aux_sym_coarray_statement_token6] = ACTIONS(4319), + [aux_sym_coarray_statement_token8] = ACTIONS(4319), + [aux_sym_coarray_statement_token11] = ACTIONS(4319), + [aux_sym_coarray_statement_token12] = ACTIONS(4319), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4319), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4319), + [aux_sym_identifier_token1] = ACTIONS(4319), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4325), + [sym__float_literal] = ACTIONS(4325), + [sym__boz_literal] = ACTIONS(4325), + [sym__string_literal] = ACTIONS(4325), + [sym__string_literal_kind] = ACTIONS(4325), }, [1315] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token2] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_LPAREN2] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_end_program_statement_token2] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [anon_sym_SEMI] = ACTIONS(5079), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_subroutine_call_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_keyword_statement_token4] = ACTIONS(5077), - [aux_sym_keyword_statement_token6] = ACTIONS(5077), - [aux_sym_keyword_statement_token7] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym_do_loop_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym__inline_where_statement_token1] = ACTIONS(5077), - [aux_sym__forall_control_expression_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token3] = ACTIONS(5077), - [aux_sym_select_type_statement_token1] = ACTIONS(5077), - [aux_sym_select_rank_statement_token2] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_associate_statement_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_print_statement_token1] = ACTIONS(5077), - [aux_sym_open_statement_token1] = ACTIONS(5077), - [aux_sym_close_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token2] = ACTIONS(5077), - [aux_sym_file_position_statement_token3] = ACTIONS(5077), - [aux_sym_file_position_statement_token4] = ACTIONS(5077), - [aux_sym_allocate_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_logical_expression_token5] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_LPAREN_SLASH] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [aux_sym_boolean_literal_token1] = ACTIONS(5079), - [aux_sym_boolean_literal_token2] = ACTIONS(5079), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - [sym__float_literal] = ACTIONS(5079), - [sym__boz_literal] = ACTIONS(5079), - [sym__string_literal] = ACTIONS(5079), - [sym__string_literal_kind] = ACTIONS(5079), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(5360), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [1316] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [sym_preproc_comment] = ACTIONS(5372), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_end_function_statement_token1] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [1317] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [sym_preproc_comment] = ACTIONS(5364), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_end_program_statement_token2] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_end_function_statement_token1] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), - }, - [1317] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_end_program_statement_token2] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1318] = { - [aux_sym_preproc_include_token1] = ACTIONS(4313), - [aux_sym_preproc_def_token1] = ACTIONS(4313), - [aux_sym_preproc_if_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), - [sym_preproc_directive] = ACTIONS(4313), - [anon_sym_LPAREN2] = ACTIONS(4313), - [sym_preproc_comment] = ACTIONS(5374), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4313), - [aux_sym_interface_statement_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4313), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4313), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4313), - [aux_sym_language_binding_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token1] = ACTIONS(4313), - [aux_sym_procedure_attributes_token3] = ACTIONS(4313), - [aux_sym_contains_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token1] = ACTIONS(4313), - [aux_sym_use_statement_token2] = ACTIONS(4313), - [aux_sym_implicit_statement_token1] = ACTIONS(4313), - [aux_sym_implicit_statement_token3] = ACTIONS(4313), - [aux_sym_implicit_statement_token4] = ACTIONS(4313), - [aux_sym_save_statement_token1] = ACTIONS(4313), - [aux_sym_private_statement_token1] = ACTIONS(4313), - [aux_sym_public_statement_token1] = ACTIONS(4313), - [aux_sym_namelist_statement_token1] = ACTIONS(4313), - [aux_sym_common_statement_token1] = ACTIONS(4313), - [aux_sym_import_statement_token1] = ACTIONS(4313), - [aux_sym_derived_type_definition_token1] = ACTIONS(4313), - [aux_sym_abstract_specifier_token1] = ACTIONS(4313), - [aux_sym_procedure_attribute_token6] = ACTIONS(4313), - [aux_sym_variable_attributes_token1] = ACTIONS(4313), - [aux_sym_variable_attributes_token2] = ACTIONS(4313), - [aux_sym_variable_attributes_token3] = ACTIONS(4313), - [aux_sym_variable_attributes_token4] = ACTIONS(4313), - [aux_sym_variable_attributes_token5] = ACTIONS(4313), - [aux_sym__intrinsic_type_token1] = ACTIONS(4313), - [aux_sym__intrinsic_type_token2] = ACTIONS(4313), - [aux_sym__intrinsic_type_token3] = ACTIONS(4313), - [aux_sym__intrinsic_type_token4] = ACTIONS(4313), - [aux_sym__intrinsic_type_token6] = ACTIONS(4313), - [aux_sym__intrinsic_type_token7] = ACTIONS(4313), - [aux_sym__intrinsic_type_token8] = ACTIONS(4313), - [aux_sym__intrinsic_type_token9] = ACTIONS(4313), - [aux_sym__intrinsic_type_token10] = ACTIONS(4313), - [aux_sym_derived_type_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4313), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4313), - [aux_sym_type_qualifier_token1] = ACTIONS(4313), - [aux_sym_type_qualifier_token2] = ACTIONS(4313), - [aux_sym_equivalence_statement_token1] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4319), - [aux_sym_stop_statement_token1] = ACTIONS(4313), - [aux_sym_stop_statement_token2] = ACTIONS(4313), - [aux_sym_subroutine_call_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token1] = ACTIONS(4313), - [aux_sym_keyword_statement_token2] = ACTIONS(4313), - [aux_sym_keyword_statement_token3] = ACTIONS(4313), - [aux_sym_keyword_statement_token4] = ACTIONS(4313), - [aux_sym_keyword_statement_token6] = ACTIONS(4313), - [aux_sym_keyword_statement_token7] = ACTIONS(4313), - [aux_sym_include_statement_token1] = ACTIONS(4313), - [aux_sym_data_statement_token1] = ACTIONS(4313), - [aux_sym_do_loop_statement_token1] = ACTIONS(4313), - [aux_sym__inline_if_statement_token1] = ACTIONS(4313), - [aux_sym_end_if_statement_token1] = ACTIONS(4313), - [aux_sym_elseif_clause_token2] = ACTIONS(4313), - [aux_sym__inline_where_statement_token1] = ACTIONS(4313), - [aux_sym__forall_control_expression_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token1] = ACTIONS(4313), - [aux_sym_select_case_statement_token3] = ACTIONS(4313), - [aux_sym_select_type_statement_token1] = ACTIONS(4313), - [aux_sym_select_rank_statement_token2] = ACTIONS(4313), - [aux_sym_block_construct_token1] = ACTIONS(4313), - [aux_sym_associate_statement_token1] = ACTIONS(4313), - [aux_sym_format_statement_token1] = ACTIONS(4313), - [aux_sym_print_statement_token1] = ACTIONS(4313), - [aux_sym_open_statement_token1] = ACTIONS(4313), - [aux_sym_close_statement_token1] = ACTIONS(4313), - [aux_sym_inquire_statement_token1] = ACTIONS(4313), - [aux_sym_enum_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token1] = ACTIONS(4313), - [aux_sym_file_position_statement_token2] = ACTIONS(4313), - [aux_sym_file_position_statement_token3] = ACTIONS(4313), - [aux_sym_file_position_statement_token4] = ACTIONS(4313), - [aux_sym_allocate_statement_token1] = ACTIONS(4313), - [aux_sym_entry_statement_token1] = ACTIONS(4313), - [aux_sym_logical_expression_token5] = ACTIONS(4319), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LPAREN_SLASH] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4319), - [aux_sym_boolean_literal_token1] = ACTIONS(4319), - [aux_sym_boolean_literal_token2] = ACTIONS(4319), - [aux_sym_null_literal_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_statement_token2] = ACTIONS(4313), - [aux_sym_coarray_statement_token6] = ACTIONS(4313), - [aux_sym_coarray_statement_token8] = ACTIONS(4313), - [aux_sym_coarray_statement_token11] = ACTIONS(4313), - [aux_sym_coarray_statement_token12] = ACTIONS(4313), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4313), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4313), - [aux_sym_identifier_token1] = ACTIONS(4313), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4319), - [sym__float_literal] = ACTIONS(4319), - [sym__boz_literal] = ACTIONS(4319), - [sym__string_literal] = ACTIONS(4319), - [sym__string_literal_kind] = ACTIONS(4319), + [aux_sym_preproc_include_token1] = ACTIONS(5194), + [aux_sym_preproc_def_token1] = ACTIONS(5194), + [aux_sym_preproc_if_token1] = ACTIONS(5194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5194), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5194), + [sym_preproc_directive] = ACTIONS(5194), + [anon_sym_LPAREN2] = ACTIONS(5194), + [sym_preproc_comment] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5198), + [anon_sym_DASH] = ACTIONS(5198), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5194), + [aux_sym_interface_statement_token1] = ACTIONS(5194), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5194), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5194), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5194), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5194), + [aux_sym_language_binding_token1] = ACTIONS(5194), + [aux_sym_procedure_attributes_token1] = ACTIONS(5194), + [aux_sym_procedure_attributes_token3] = ACTIONS(5194), + [aux_sym_contains_statement_token1] = ACTIONS(5194), + [aux_sym_use_statement_token1] = ACTIONS(5194), + [aux_sym_use_statement_token2] = ACTIONS(5194), + [aux_sym_implicit_statement_token1] = ACTIONS(5194), + [aux_sym_implicit_statement_token3] = ACTIONS(5194), + [aux_sym_implicit_statement_token4] = ACTIONS(5194), + [aux_sym_save_statement_token1] = ACTIONS(5194), + [aux_sym_private_statement_token1] = ACTIONS(5194), + [aux_sym_public_statement_token1] = ACTIONS(5194), + [aux_sym_namelist_statement_token1] = ACTIONS(5194), + [aux_sym_common_statement_token1] = ACTIONS(5194), + [aux_sym_import_statement_token1] = ACTIONS(5194), + [aux_sym_derived_type_definition_token1] = ACTIONS(5194), + [aux_sym_abstract_specifier_token1] = ACTIONS(5194), + [aux_sym_procedure_attribute_token6] = ACTIONS(5194), + [aux_sym_variable_attributes_token1] = ACTIONS(5194), + [aux_sym_variable_attributes_token2] = ACTIONS(5194), + [aux_sym_variable_attributes_token3] = ACTIONS(5194), + [aux_sym_variable_attributes_token4] = ACTIONS(5194), + [aux_sym_variable_attributes_token5] = ACTIONS(5194), + [aux_sym__intrinsic_type_token1] = ACTIONS(5194), + [aux_sym__intrinsic_type_token2] = ACTIONS(5194), + [aux_sym__intrinsic_type_token3] = ACTIONS(5194), + [aux_sym__intrinsic_type_token4] = ACTIONS(5194), + [aux_sym__intrinsic_type_token6] = ACTIONS(5194), + [aux_sym__intrinsic_type_token7] = ACTIONS(5194), + [aux_sym__intrinsic_type_token8] = ACTIONS(5194), + [aux_sym__intrinsic_type_token9] = ACTIONS(5194), + [aux_sym__intrinsic_type_token10] = ACTIONS(5194), + [aux_sym_derived_type_token1] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5194), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5194), + [aux_sym_type_qualifier_token1] = ACTIONS(5194), + [aux_sym_type_qualifier_token2] = ACTIONS(5194), + [aux_sym_equivalence_statement_token1] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5198), + [aux_sym_stop_statement_token1] = ACTIONS(5194), + [aux_sym_stop_statement_token2] = ACTIONS(5194), + [aux_sym_subroutine_call_token1] = ACTIONS(5194), + [aux_sym_keyword_statement_token1] = ACTIONS(5194), + [aux_sym_keyword_statement_token2] = ACTIONS(5194), + [aux_sym_keyword_statement_token3] = ACTIONS(5194), + [aux_sym_keyword_statement_token4] = ACTIONS(5194), + [aux_sym_keyword_statement_token6] = ACTIONS(5194), + [aux_sym_keyword_statement_token7] = ACTIONS(5194), + [aux_sym_include_statement_token1] = ACTIONS(5194), + [aux_sym_data_statement_token1] = ACTIONS(5194), + [aux_sym_do_loop_statement_token1] = ACTIONS(5194), + [aux_sym__inline_if_statement_token1] = ACTIONS(5194), + [aux_sym_end_if_statement_token1] = ACTIONS(5194), + [aux_sym_elseif_clause_token2] = ACTIONS(5194), + [aux_sym__inline_where_statement_token1] = ACTIONS(5194), + [aux_sym__forall_control_expression_token1] = ACTIONS(5194), + [aux_sym_select_case_statement_token1] = ACTIONS(5194), + [aux_sym_select_case_statement_token3] = ACTIONS(5194), + [aux_sym_select_type_statement_token1] = ACTIONS(5194), + [aux_sym_select_rank_statement_token2] = ACTIONS(5194), + [aux_sym_block_construct_token1] = ACTIONS(5194), + [aux_sym_associate_statement_token1] = ACTIONS(5194), + [aux_sym_format_statement_token1] = ACTIONS(5194), + [aux_sym_print_statement_token1] = ACTIONS(5194), + [aux_sym_open_statement_token1] = ACTIONS(5194), + [aux_sym_close_statement_token1] = ACTIONS(5194), + [aux_sym_inquire_statement_token1] = ACTIONS(5194), + [aux_sym_enum_statement_token1] = ACTIONS(5194), + [aux_sym_file_position_statement_token1] = ACTIONS(5194), + [aux_sym_file_position_statement_token2] = ACTIONS(5194), + [aux_sym_file_position_statement_token3] = ACTIONS(5194), + [aux_sym_file_position_statement_token4] = ACTIONS(5194), + [aux_sym_allocate_statement_token1] = ACTIONS(5194), + [aux_sym_entry_statement_token1] = ACTIONS(5194), + [aux_sym_logical_expression_token5] = ACTIONS(5198), + [anon_sym_DOT] = ACTIONS(5194), + [anon_sym_LPAREN_SLASH] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [aux_sym_boolean_literal_token1] = ACTIONS(5198), + [aux_sym_boolean_literal_token2] = ACTIONS(5198), + [aux_sym_null_literal_token1] = ACTIONS(5194), + [aux_sym_coarray_statement_token1] = ACTIONS(5194), + [aux_sym_coarray_statement_token2] = ACTIONS(5194), + [aux_sym_coarray_statement_token6] = ACTIONS(5194), + [aux_sym_coarray_statement_token8] = ACTIONS(5194), + [aux_sym_coarray_statement_token11] = ACTIONS(5194), + [aux_sym_coarray_statement_token12] = ACTIONS(5194), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5194), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5194), + [aux_sym_identifier_token1] = ACTIONS(5194), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5198), + [sym__float_literal] = ACTIONS(5198), + [sym__boz_literal] = ACTIONS(5198), + [sym__string_literal] = ACTIONS(5198), + [sym__string_literal_kind] = ACTIONS(5198), }, [1319] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token2] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_end_program_statement_token2] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_subroutine_call_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_keyword_statement_token4] = ACTIONS(5065), - [aux_sym_keyword_statement_token6] = ACTIONS(5065), - [aux_sym_keyword_statement_token7] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym_do_loop_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym__inline_where_statement_token1] = ACTIONS(5065), - [aux_sym__forall_control_expression_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token3] = ACTIONS(5065), - [aux_sym_select_type_statement_token1] = ACTIONS(5065), - [aux_sym_select_rank_statement_token2] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_associate_statement_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_print_statement_token1] = ACTIONS(5065), - [aux_sym_open_statement_token1] = ACTIONS(5065), - [aux_sym_close_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token2] = ACTIONS(5065), - [aux_sym_file_position_statement_token3] = ACTIONS(5065), - [aux_sym_file_position_statement_token4] = ACTIONS(5065), - [aux_sym_allocate_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_logical_expression_token5] = ACTIONS(5067), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_LPAREN_SLASH] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [aux_sym_boolean_literal_token1] = ACTIONS(5067), - [aux_sym_boolean_literal_token2] = ACTIONS(5067), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - [sym__float_literal] = ACTIONS(5067), - [sym__boz_literal] = ACTIONS(5067), - [sym__string_literal] = ACTIONS(5067), - [sym__string_literal_kind] = ACTIONS(5067), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [sym_preproc_comment] = ACTIONS(5368), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_end_function_statement_token1] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, [1320] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [sym_preproc_comment] = ACTIONS(5376), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [aux_sym_preproc_include_token1] = ACTIONS(5121), + [aux_sym_preproc_def_token1] = ACTIONS(5121), + [aux_sym_preproc_if_token1] = ACTIONS(5121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5121), + [sym_preproc_directive] = ACTIONS(5121), + [anon_sym_LPAREN2] = ACTIONS(5121), + [sym_preproc_comment] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5121), + [aux_sym_interface_statement_token1] = ACTIONS(5121), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5121), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5121), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5121), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5121), + [aux_sym_language_binding_token1] = ACTIONS(5121), + [aux_sym_procedure_attributes_token1] = ACTIONS(5121), + [aux_sym_procedure_attributes_token3] = ACTIONS(5121), + [aux_sym_contains_statement_token1] = ACTIONS(5121), + [aux_sym_use_statement_token1] = ACTIONS(5121), + [aux_sym_use_statement_token2] = ACTIONS(5121), + [aux_sym_implicit_statement_token1] = ACTIONS(5121), + [aux_sym_implicit_statement_token3] = ACTIONS(5121), + [aux_sym_implicit_statement_token4] = ACTIONS(5121), + [aux_sym_save_statement_token1] = ACTIONS(5121), + [aux_sym_private_statement_token1] = ACTIONS(5121), + [aux_sym_public_statement_token1] = ACTIONS(5121), + [aux_sym_namelist_statement_token1] = ACTIONS(5121), + [aux_sym_common_statement_token1] = ACTIONS(5121), + [aux_sym_import_statement_token1] = ACTIONS(5121), + [aux_sym_derived_type_definition_token1] = ACTIONS(5121), + [aux_sym_abstract_specifier_token1] = ACTIONS(5121), + [aux_sym_procedure_attribute_token6] = ACTIONS(5121), + [aux_sym_variable_attributes_token1] = ACTIONS(5121), + [aux_sym_variable_attributes_token2] = ACTIONS(5121), + [aux_sym_variable_attributes_token3] = ACTIONS(5121), + [aux_sym_variable_attributes_token4] = ACTIONS(5121), + [aux_sym_variable_attributes_token5] = ACTIONS(5121), + [aux_sym__intrinsic_type_token1] = ACTIONS(5121), + [aux_sym__intrinsic_type_token2] = ACTIONS(5121), + [aux_sym__intrinsic_type_token3] = ACTIONS(5121), + [aux_sym__intrinsic_type_token4] = ACTIONS(5121), + [aux_sym__intrinsic_type_token6] = ACTIONS(5121), + [aux_sym__intrinsic_type_token7] = ACTIONS(5121), + [aux_sym__intrinsic_type_token8] = ACTIONS(5121), + [aux_sym__intrinsic_type_token9] = ACTIONS(5121), + [aux_sym__intrinsic_type_token10] = ACTIONS(5121), + [aux_sym_derived_type_token1] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5121), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5121), + [aux_sym_type_qualifier_token1] = ACTIONS(5121), + [aux_sym_type_qualifier_token2] = ACTIONS(5121), + [aux_sym_equivalence_statement_token1] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5125), + [aux_sym_stop_statement_token1] = ACTIONS(5121), + [aux_sym_stop_statement_token2] = ACTIONS(5121), + [aux_sym_subroutine_call_token1] = ACTIONS(5121), + [aux_sym_keyword_statement_token1] = ACTIONS(5121), + [aux_sym_keyword_statement_token2] = ACTIONS(5121), + [aux_sym_keyword_statement_token3] = ACTIONS(5121), + [aux_sym_keyword_statement_token4] = ACTIONS(5121), + [aux_sym_keyword_statement_token6] = ACTIONS(5121), + [aux_sym_keyword_statement_token7] = ACTIONS(5121), + [aux_sym_include_statement_token1] = ACTIONS(5121), + [aux_sym_data_statement_token1] = ACTIONS(5121), + [aux_sym_do_loop_statement_token1] = ACTIONS(5121), + [aux_sym__inline_if_statement_token1] = ACTIONS(5121), + [aux_sym_end_if_statement_token1] = ACTIONS(5121), + [aux_sym_elseif_clause_token2] = ACTIONS(5121), + [aux_sym__inline_where_statement_token1] = ACTIONS(5121), + [aux_sym__forall_control_expression_token1] = ACTIONS(5121), + [aux_sym_select_case_statement_token1] = ACTIONS(5121), + [aux_sym_select_case_statement_token3] = ACTIONS(5121), + [aux_sym_select_type_statement_token1] = ACTIONS(5121), + [aux_sym_select_rank_statement_token2] = ACTIONS(5121), + [aux_sym_block_construct_token1] = ACTIONS(5121), + [aux_sym_associate_statement_token1] = ACTIONS(5121), + [aux_sym_format_statement_token1] = ACTIONS(5121), + [aux_sym_print_statement_token1] = ACTIONS(5121), + [aux_sym_open_statement_token1] = ACTIONS(5121), + [aux_sym_close_statement_token1] = ACTIONS(5121), + [aux_sym_inquire_statement_token1] = ACTIONS(5121), + [aux_sym_enum_statement_token1] = ACTIONS(5121), + [aux_sym_file_position_statement_token1] = ACTIONS(5121), + [aux_sym_file_position_statement_token2] = ACTIONS(5121), + [aux_sym_file_position_statement_token3] = ACTIONS(5121), + [aux_sym_file_position_statement_token4] = ACTIONS(5121), + [aux_sym_allocate_statement_token1] = ACTIONS(5121), + [aux_sym_entry_statement_token1] = ACTIONS(5121), + [aux_sym_logical_expression_token5] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_LPAREN_SLASH] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [aux_sym_boolean_literal_token1] = ACTIONS(5125), + [aux_sym_boolean_literal_token2] = ACTIONS(5125), + [aux_sym_null_literal_token1] = ACTIONS(5121), + [aux_sym_coarray_statement_token1] = ACTIONS(5121), + [aux_sym_coarray_statement_token2] = ACTIONS(5121), + [aux_sym_coarray_statement_token6] = ACTIONS(5121), + [aux_sym_coarray_statement_token8] = ACTIONS(5121), + [aux_sym_coarray_statement_token11] = ACTIONS(5121), + [aux_sym_coarray_statement_token12] = ACTIONS(5121), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5121), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5121), + [aux_sym_identifier_token1] = ACTIONS(5121), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5125), + [sym__float_literal] = ACTIONS(5125), + [sym__boz_literal] = ACTIONS(5125), + [sym__string_literal] = ACTIONS(5125), + [sym__string_literal_kind] = ACTIONS(5125), }, [1321] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token2] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_LPAREN2] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_end_program_statement_token2] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_subroutine_call_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_keyword_statement_token4] = ACTIONS(5057), - [aux_sym_keyword_statement_token6] = ACTIONS(5057), - [aux_sym_keyword_statement_token7] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym_do_loop_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym__inline_where_statement_token1] = ACTIONS(5057), - [aux_sym__forall_control_expression_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token3] = ACTIONS(5057), - [aux_sym_select_type_statement_token1] = ACTIONS(5057), - [aux_sym_select_rank_statement_token2] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_associate_statement_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_print_statement_token1] = ACTIONS(5057), - [aux_sym_open_statement_token1] = ACTIONS(5057), - [aux_sym_close_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token2] = ACTIONS(5057), - [aux_sym_file_position_statement_token3] = ACTIONS(5057), - [aux_sym_file_position_statement_token4] = ACTIONS(5057), - [aux_sym_allocate_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_logical_expression_token5] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_LPAREN_SLASH] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [aux_sym_boolean_literal_token1] = ACTIONS(5059), - [aux_sym_boolean_literal_token2] = ACTIONS(5059), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - [sym__float_literal] = ACTIONS(5059), - [sym__boz_literal] = ACTIONS(5059), - [sym__string_literal] = ACTIONS(5059), - [sym__string_literal_kind] = ACTIONS(5059), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [sym_preproc_comment] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, [1322] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(5378), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4267), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [aux_sym_preproc_include_token1] = ACTIONS(5226), + [aux_sym_preproc_def_token1] = ACTIONS(5226), + [aux_sym_preproc_if_token1] = ACTIONS(5226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5226), + [sym_preproc_directive] = ACTIONS(5226), + [anon_sym_LPAREN2] = ACTIONS(5226), + [sym_preproc_comment] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5226), + [aux_sym_interface_statement_token1] = ACTIONS(5226), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5226), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5226), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5226), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5226), + [aux_sym_language_binding_token1] = ACTIONS(5226), + [aux_sym_procedure_attributes_token1] = ACTIONS(5226), + [aux_sym_procedure_attributes_token3] = ACTIONS(5226), + [aux_sym_contains_statement_token1] = ACTIONS(5226), + [aux_sym_use_statement_token1] = ACTIONS(5226), + [aux_sym_use_statement_token2] = ACTIONS(5226), + [aux_sym_implicit_statement_token1] = ACTIONS(5226), + [aux_sym_implicit_statement_token3] = ACTIONS(5226), + [aux_sym_implicit_statement_token4] = ACTIONS(5226), + [aux_sym_save_statement_token1] = ACTIONS(5226), + [aux_sym_private_statement_token1] = ACTIONS(5226), + [aux_sym_public_statement_token1] = ACTIONS(5226), + [aux_sym_namelist_statement_token1] = ACTIONS(5226), + [aux_sym_common_statement_token1] = ACTIONS(5226), + [aux_sym_import_statement_token1] = ACTIONS(5226), + [aux_sym_derived_type_definition_token1] = ACTIONS(5226), + [aux_sym_abstract_specifier_token1] = ACTIONS(5226), + [aux_sym_procedure_attribute_token6] = ACTIONS(5226), + [aux_sym_variable_attributes_token1] = ACTIONS(5226), + [aux_sym_variable_attributes_token2] = ACTIONS(5226), + [aux_sym_variable_attributes_token3] = ACTIONS(5226), + [aux_sym_variable_attributes_token4] = ACTIONS(5226), + [aux_sym_variable_attributes_token5] = ACTIONS(5226), + [aux_sym__intrinsic_type_token1] = ACTIONS(5226), + [aux_sym__intrinsic_type_token2] = ACTIONS(5226), + [aux_sym__intrinsic_type_token3] = ACTIONS(5226), + [aux_sym__intrinsic_type_token4] = ACTIONS(5226), + [aux_sym__intrinsic_type_token6] = ACTIONS(5226), + [aux_sym__intrinsic_type_token7] = ACTIONS(5226), + [aux_sym__intrinsic_type_token8] = ACTIONS(5226), + [aux_sym__intrinsic_type_token9] = ACTIONS(5226), + [aux_sym__intrinsic_type_token10] = ACTIONS(5226), + [aux_sym_derived_type_token1] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5226), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5226), + [aux_sym_type_qualifier_token1] = ACTIONS(5226), + [aux_sym_type_qualifier_token2] = ACTIONS(5226), + [aux_sym_equivalence_statement_token1] = ACTIONS(5226), + [anon_sym_SEMI] = ACTIONS(5230), + [aux_sym_stop_statement_token1] = ACTIONS(5226), + [aux_sym_stop_statement_token2] = ACTIONS(5226), + [aux_sym_subroutine_call_token1] = ACTIONS(5226), + [aux_sym_keyword_statement_token1] = ACTIONS(5226), + [aux_sym_keyword_statement_token2] = ACTIONS(5226), + [aux_sym_keyword_statement_token3] = ACTIONS(5226), + [aux_sym_keyword_statement_token4] = ACTIONS(5226), + [aux_sym_keyword_statement_token6] = ACTIONS(5226), + [aux_sym_keyword_statement_token7] = ACTIONS(5226), + [aux_sym_include_statement_token1] = ACTIONS(5226), + [aux_sym_data_statement_token1] = ACTIONS(5226), + [aux_sym_do_loop_statement_token1] = ACTIONS(5226), + [aux_sym__inline_if_statement_token1] = ACTIONS(5226), + [aux_sym_end_if_statement_token1] = ACTIONS(5226), + [aux_sym_elseif_clause_token2] = ACTIONS(5226), + [aux_sym__inline_where_statement_token1] = ACTIONS(5226), + [aux_sym__forall_control_expression_token1] = ACTIONS(5226), + [aux_sym_select_case_statement_token1] = ACTIONS(5226), + [aux_sym_select_case_statement_token3] = ACTIONS(5226), + [aux_sym_select_type_statement_token1] = ACTIONS(5226), + [aux_sym_select_rank_statement_token2] = ACTIONS(5226), + [aux_sym_block_construct_token1] = ACTIONS(5226), + [aux_sym_associate_statement_token1] = ACTIONS(5226), + [aux_sym_format_statement_token1] = ACTIONS(5226), + [aux_sym_print_statement_token1] = ACTIONS(5226), + [aux_sym_open_statement_token1] = ACTIONS(5226), + [aux_sym_close_statement_token1] = ACTIONS(5226), + [aux_sym_inquire_statement_token1] = ACTIONS(5226), + [aux_sym_enum_statement_token1] = ACTIONS(5226), + [aux_sym_file_position_statement_token1] = ACTIONS(5226), + [aux_sym_file_position_statement_token2] = ACTIONS(5226), + [aux_sym_file_position_statement_token3] = ACTIONS(5226), + [aux_sym_file_position_statement_token4] = ACTIONS(5226), + [aux_sym_allocate_statement_token1] = ACTIONS(5226), + [aux_sym_entry_statement_token1] = ACTIONS(5226), + [aux_sym_logical_expression_token5] = ACTIONS(5230), + [anon_sym_DOT] = ACTIONS(5226), + [anon_sym_LPAREN_SLASH] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [aux_sym_boolean_literal_token1] = ACTIONS(5230), + [aux_sym_boolean_literal_token2] = ACTIONS(5230), + [aux_sym_null_literal_token1] = ACTIONS(5226), + [aux_sym_coarray_statement_token1] = ACTIONS(5226), + [aux_sym_coarray_statement_token2] = ACTIONS(5226), + [aux_sym_coarray_statement_token6] = ACTIONS(5226), + [aux_sym_coarray_statement_token8] = ACTIONS(5226), + [aux_sym_coarray_statement_token11] = ACTIONS(5226), + [aux_sym_coarray_statement_token12] = ACTIONS(5226), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5226), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5226), + [aux_sym_identifier_token1] = ACTIONS(5226), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5230), + [sym__float_literal] = ACTIONS(5230), + [sym__boz_literal] = ACTIONS(5230), + [sym__string_literal] = ACTIONS(5230), + [sym__string_literal_kind] = ACTIONS(5230), }, [1323] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token2] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_LPAREN2] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_end_program_statement_token2] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_subroutine_call_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_keyword_statement_token4] = ACTIONS(5069), - [aux_sym_keyword_statement_token6] = ACTIONS(5069), - [aux_sym_keyword_statement_token7] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym_do_loop_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym__inline_where_statement_token1] = ACTIONS(5069), - [aux_sym__forall_control_expression_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token3] = ACTIONS(5069), - [aux_sym_select_type_statement_token1] = ACTIONS(5069), - [aux_sym_select_rank_statement_token2] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_associate_statement_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_print_statement_token1] = ACTIONS(5069), - [aux_sym_open_statement_token1] = ACTIONS(5069), - [aux_sym_close_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token2] = ACTIONS(5069), - [aux_sym_file_position_statement_token3] = ACTIONS(5069), - [aux_sym_file_position_statement_token4] = ACTIONS(5069), - [aux_sym_allocate_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_logical_expression_token5] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LPAREN_SLASH] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [aux_sym_boolean_literal_token1] = ACTIONS(5071), - [aux_sym_boolean_literal_token2] = ACTIONS(5071), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - [sym__float_literal] = ACTIONS(5071), - [sym__boz_literal] = ACTIONS(5071), - [sym__string_literal] = ACTIONS(5071), - [sym__string_literal_kind] = ACTIONS(5071), + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [sym_preproc_comment] = ACTIONS(5376), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, [1324] = { - [aux_sym_preproc_include_token1] = ACTIONS(5195), - [aux_sym_preproc_def_token1] = ACTIONS(5195), - [aux_sym_preproc_if_token1] = ACTIONS(5195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5195), - [sym_preproc_directive] = ACTIONS(5195), - [anon_sym_LPAREN2] = ACTIONS(5195), - [sym_preproc_comment] = ACTIONS(5380), - [anon_sym_PLUS] = ACTIONS(5199), - [anon_sym_DASH] = ACTIONS(5199), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5195), - [aux_sym_interface_statement_token1] = ACTIONS(5195), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5195), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5195), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5195), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5195), - [aux_sym_language_binding_token1] = ACTIONS(5195), - [aux_sym_procedure_attributes_token1] = ACTIONS(5195), - [aux_sym_procedure_attributes_token3] = ACTIONS(5195), - [aux_sym_contains_statement_token1] = ACTIONS(5195), - [aux_sym_use_statement_token1] = ACTIONS(5195), - [aux_sym_use_statement_token2] = ACTIONS(5195), - [aux_sym_implicit_statement_token1] = ACTIONS(5195), - [aux_sym_implicit_statement_token3] = ACTIONS(5195), - [aux_sym_implicit_statement_token4] = ACTIONS(5195), - [aux_sym_save_statement_token1] = ACTIONS(5195), - [aux_sym_private_statement_token1] = ACTIONS(5195), - [aux_sym_public_statement_token1] = ACTIONS(5195), - [aux_sym_namelist_statement_token1] = ACTIONS(5195), - [aux_sym_common_statement_token1] = ACTIONS(5195), - [aux_sym_import_statement_token1] = ACTIONS(5195), - [aux_sym_derived_type_definition_token1] = ACTIONS(5195), - [aux_sym_abstract_specifier_token1] = ACTIONS(5195), - [aux_sym_procedure_attribute_token6] = ACTIONS(5195), - [aux_sym_variable_attributes_token1] = ACTIONS(5195), - [aux_sym_variable_attributes_token2] = ACTIONS(5195), - [aux_sym_variable_attributes_token3] = ACTIONS(5195), - [aux_sym_variable_attributes_token4] = ACTIONS(5195), - [aux_sym_variable_attributes_token5] = ACTIONS(5195), - [aux_sym__intrinsic_type_token1] = ACTIONS(5195), - [aux_sym__intrinsic_type_token2] = ACTIONS(5195), - [aux_sym__intrinsic_type_token3] = ACTIONS(5195), - [aux_sym__intrinsic_type_token4] = ACTIONS(5195), - [aux_sym__intrinsic_type_token6] = ACTIONS(5195), - [aux_sym__intrinsic_type_token7] = ACTIONS(5195), - [aux_sym__intrinsic_type_token8] = ACTIONS(5195), - [aux_sym__intrinsic_type_token9] = ACTIONS(5195), - [aux_sym__intrinsic_type_token10] = ACTIONS(5195), - [aux_sym_derived_type_token1] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5195), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5195), - [aux_sym_type_qualifier_token1] = ACTIONS(5195), - [aux_sym_type_qualifier_token2] = ACTIONS(5195), - [aux_sym_equivalence_statement_token1] = ACTIONS(5195), - [anon_sym_SEMI] = ACTIONS(5199), - [aux_sym_stop_statement_token1] = ACTIONS(5195), - [aux_sym_stop_statement_token2] = ACTIONS(5195), - [aux_sym_subroutine_call_token1] = ACTIONS(5195), - [aux_sym_keyword_statement_token1] = ACTIONS(5195), - [aux_sym_keyword_statement_token2] = ACTIONS(5195), - [aux_sym_keyword_statement_token3] = ACTIONS(5195), - [aux_sym_keyword_statement_token4] = ACTIONS(5195), - [aux_sym_keyword_statement_token6] = ACTIONS(5195), - [aux_sym_keyword_statement_token7] = ACTIONS(5195), - [aux_sym_include_statement_token1] = ACTIONS(5195), - [aux_sym_data_statement_token1] = ACTIONS(5195), - [aux_sym_do_loop_statement_token1] = ACTIONS(5195), - [aux_sym__inline_if_statement_token1] = ACTIONS(5195), - [aux_sym_end_if_statement_token1] = ACTIONS(5195), - [aux_sym_elseif_clause_token2] = ACTIONS(5195), - [aux_sym__inline_where_statement_token1] = ACTIONS(5195), - [aux_sym__forall_control_expression_token1] = ACTIONS(5195), - [aux_sym_select_case_statement_token1] = ACTIONS(5195), - [aux_sym_select_case_statement_token3] = ACTIONS(5195), - [aux_sym_select_type_statement_token1] = ACTIONS(5195), - [aux_sym_select_rank_statement_token2] = ACTIONS(5195), - [aux_sym_block_construct_token1] = ACTIONS(5195), - [aux_sym_associate_statement_token1] = ACTIONS(5195), - [aux_sym_format_statement_token1] = ACTIONS(5195), - [aux_sym_print_statement_token1] = ACTIONS(5195), - [aux_sym_open_statement_token1] = ACTIONS(5195), - [aux_sym_close_statement_token1] = ACTIONS(5195), - [aux_sym_inquire_statement_token1] = ACTIONS(5195), - [aux_sym_enum_statement_token1] = ACTIONS(5195), - [aux_sym_file_position_statement_token1] = ACTIONS(5195), - [aux_sym_file_position_statement_token2] = ACTIONS(5195), - [aux_sym_file_position_statement_token3] = ACTIONS(5195), - [aux_sym_file_position_statement_token4] = ACTIONS(5195), - [aux_sym_allocate_statement_token1] = ACTIONS(5195), - [aux_sym_entry_statement_token1] = ACTIONS(5195), - [aux_sym_logical_expression_token5] = ACTIONS(5199), - [anon_sym_DOT] = ACTIONS(5195), - [anon_sym_LPAREN_SLASH] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [aux_sym_boolean_literal_token1] = ACTIONS(5199), - [aux_sym_boolean_literal_token2] = ACTIONS(5199), - [aux_sym_null_literal_token1] = ACTIONS(5195), - [aux_sym_coarray_statement_token1] = ACTIONS(5195), - [aux_sym_coarray_statement_token2] = ACTIONS(5195), - [aux_sym_coarray_statement_token6] = ACTIONS(5195), - [aux_sym_coarray_statement_token8] = ACTIONS(5195), - [aux_sym_coarray_statement_token11] = ACTIONS(5195), - [aux_sym_coarray_statement_token12] = ACTIONS(5195), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5195), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5195), - [aux_sym_identifier_token1] = ACTIONS(5195), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5199), - [sym__float_literal] = ACTIONS(5199), - [sym__boz_literal] = ACTIONS(5199), - [sym__string_literal] = ACTIONS(5199), - [sym__string_literal_kind] = ACTIONS(5199), + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [sym_preproc_comment] = ACTIONS(5378), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, [1325] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [sym_preproc_comment] = ACTIONS(5382), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4327), + [sym_preproc_comment] = ACTIONS(5380), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4327), + [aux_sym_interface_statement_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4327), + [aux_sym_language_binding_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token1] = ACTIONS(4327), + [aux_sym_procedure_attributes_token3] = ACTIONS(4327), + [aux_sym_contains_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token1] = ACTIONS(4327), + [aux_sym_use_statement_token2] = ACTIONS(4327), + [aux_sym_implicit_statement_token1] = ACTIONS(4327), + [aux_sym_implicit_statement_token3] = ACTIONS(4327), + [aux_sym_implicit_statement_token4] = ACTIONS(4327), + [aux_sym_save_statement_token1] = ACTIONS(4327), + [aux_sym_private_statement_token1] = ACTIONS(4327), + [aux_sym_public_statement_token1] = ACTIONS(4327), + [aux_sym_namelist_statement_token1] = ACTIONS(4327), + [aux_sym_common_statement_token1] = ACTIONS(4327), + [aux_sym_import_statement_token1] = ACTIONS(4327), + [aux_sym_derived_type_definition_token1] = ACTIONS(4327), + [aux_sym_abstract_specifier_token1] = ACTIONS(4327), + [aux_sym_procedure_attribute_token6] = ACTIONS(4327), + [aux_sym_variable_attributes_token1] = ACTIONS(4327), + [aux_sym_variable_attributes_token2] = ACTIONS(4327), + [aux_sym_variable_attributes_token3] = ACTIONS(4327), + [aux_sym_variable_attributes_token4] = ACTIONS(4327), + [aux_sym_variable_attributes_token5] = ACTIONS(4327), + [aux_sym__intrinsic_type_token1] = ACTIONS(4327), + [aux_sym__intrinsic_type_token2] = ACTIONS(4327), + [aux_sym__intrinsic_type_token3] = ACTIONS(4327), + [aux_sym__intrinsic_type_token4] = ACTIONS(4327), + [aux_sym__intrinsic_type_token6] = ACTIONS(4327), + [aux_sym__intrinsic_type_token7] = ACTIONS(4327), + [aux_sym__intrinsic_type_token8] = ACTIONS(4327), + [aux_sym__intrinsic_type_token9] = ACTIONS(4327), + [aux_sym__intrinsic_type_token10] = ACTIONS(4327), + [aux_sym_derived_type_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4327), + [aux_sym_type_qualifier_token1] = ACTIONS(4327), + [aux_sym_type_qualifier_token2] = ACTIONS(4327), + [aux_sym_equivalence_statement_token1] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4333), + [aux_sym_stop_statement_token1] = ACTIONS(4327), + [aux_sym_stop_statement_token2] = ACTIONS(4327), + [aux_sym_subroutine_call_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token1] = ACTIONS(4327), + [aux_sym_keyword_statement_token2] = ACTIONS(4327), + [aux_sym_keyword_statement_token3] = ACTIONS(4327), + [aux_sym_keyword_statement_token4] = ACTIONS(4327), + [aux_sym_keyword_statement_token6] = ACTIONS(4327), + [aux_sym_keyword_statement_token7] = ACTIONS(4327), + [aux_sym_include_statement_token1] = ACTIONS(4327), + [aux_sym_data_statement_token1] = ACTIONS(4327), + [aux_sym_do_loop_statement_token1] = ACTIONS(4327), + [aux_sym__inline_if_statement_token1] = ACTIONS(4327), + [aux_sym_end_if_statement_token1] = ACTIONS(4327), + [aux_sym_elseif_clause_token2] = ACTIONS(4327), + [aux_sym__inline_where_statement_token1] = ACTIONS(4327), + [aux_sym__forall_control_expression_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token1] = ACTIONS(4327), + [aux_sym_select_case_statement_token3] = ACTIONS(4327), + [aux_sym_select_type_statement_token1] = ACTIONS(4327), + [aux_sym_select_rank_statement_token2] = ACTIONS(4327), + [aux_sym_block_construct_token1] = ACTIONS(4327), + [aux_sym_associate_statement_token1] = ACTIONS(4327), + [aux_sym_format_statement_token1] = ACTIONS(4327), + [aux_sym_print_statement_token1] = ACTIONS(4327), + [aux_sym_open_statement_token1] = ACTIONS(4327), + [aux_sym_close_statement_token1] = ACTIONS(4327), + [aux_sym_inquire_statement_token1] = ACTIONS(4327), + [aux_sym_enum_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token1] = ACTIONS(4327), + [aux_sym_file_position_statement_token2] = ACTIONS(4327), + [aux_sym_file_position_statement_token3] = ACTIONS(4327), + [aux_sym_file_position_statement_token4] = ACTIONS(4327), + [aux_sym_allocate_statement_token1] = ACTIONS(4327), + [aux_sym_entry_statement_token1] = ACTIONS(4327), + [aux_sym_logical_expression_token5] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LPAREN_SLASH] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [aux_sym_null_literal_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_statement_token2] = ACTIONS(4327), + [aux_sym_coarray_statement_token6] = ACTIONS(4327), + [aux_sym_coarray_statement_token8] = ACTIONS(4327), + [aux_sym_coarray_statement_token11] = ACTIONS(4327), + [aux_sym_coarray_statement_token12] = ACTIONS(4327), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), + [aux_sym_identifier_token1] = ACTIONS(4327), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4333), + [sym__float_literal] = ACTIONS(4333), + [sym__boz_literal] = ACTIONS(4333), + [sym__string_literal] = ACTIONS(4333), + [sym__string_literal_kind] = ACTIONS(4333), }, [1326] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(5384), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [aux_sym_preproc_include_token1] = ACTIONS(5288), + [aux_sym_preproc_def_token1] = ACTIONS(5288), + [aux_sym_preproc_if_token1] = ACTIONS(5288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5288), + [sym_preproc_directive] = ACTIONS(5288), + [anon_sym_LPAREN2] = ACTIONS(5288), + [sym_preproc_comment] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5288), + [aux_sym_end_program_statement_token2] = ACTIONS(5288), + [aux_sym_interface_statement_token1] = ACTIONS(5288), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5288), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5288), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5288), + [aux_sym_language_binding_token1] = ACTIONS(5288), + [aux_sym_procedure_attributes_token1] = ACTIONS(5288), + [aux_sym_procedure_attributes_token3] = ACTIONS(5288), + [aux_sym_contains_statement_token1] = ACTIONS(5288), + [aux_sym_use_statement_token1] = ACTIONS(5288), + [aux_sym_use_statement_token2] = ACTIONS(5288), + [aux_sym_implicit_statement_token1] = ACTIONS(5288), + [aux_sym_implicit_statement_token3] = ACTIONS(5288), + [aux_sym_implicit_statement_token4] = ACTIONS(5288), + [aux_sym_save_statement_token1] = ACTIONS(5288), + [aux_sym_private_statement_token1] = ACTIONS(5288), + [aux_sym_public_statement_token1] = ACTIONS(5288), + [aux_sym_namelist_statement_token1] = ACTIONS(5288), + [aux_sym_common_statement_token1] = ACTIONS(5288), + [aux_sym_import_statement_token1] = ACTIONS(5288), + [aux_sym_derived_type_definition_token1] = ACTIONS(5288), + [aux_sym_abstract_specifier_token1] = ACTIONS(5288), + [aux_sym_procedure_attribute_token6] = ACTIONS(5288), + [aux_sym_variable_attributes_token1] = ACTIONS(5288), + [aux_sym_variable_attributes_token2] = ACTIONS(5288), + [aux_sym_variable_attributes_token3] = ACTIONS(5288), + [aux_sym_variable_attributes_token4] = ACTIONS(5288), + [aux_sym_variable_attributes_token5] = ACTIONS(5288), + [aux_sym__intrinsic_type_token1] = ACTIONS(5288), + [aux_sym__intrinsic_type_token2] = ACTIONS(5288), + [aux_sym__intrinsic_type_token3] = ACTIONS(5288), + [aux_sym__intrinsic_type_token4] = ACTIONS(5288), + [aux_sym__intrinsic_type_token6] = ACTIONS(5288), + [aux_sym__intrinsic_type_token7] = ACTIONS(5288), + [aux_sym__intrinsic_type_token8] = ACTIONS(5288), + [aux_sym__intrinsic_type_token9] = ACTIONS(5288), + [aux_sym__intrinsic_type_token10] = ACTIONS(5288), + [aux_sym_derived_type_token1] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5288), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5288), + [aux_sym_type_qualifier_token1] = ACTIONS(5288), + [aux_sym_type_qualifier_token2] = ACTIONS(5288), + [aux_sym_equivalence_statement_token1] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5292), + [aux_sym_stop_statement_token1] = ACTIONS(5288), + [aux_sym_stop_statement_token2] = ACTIONS(5288), + [aux_sym_subroutine_call_token1] = ACTIONS(5288), + [aux_sym_keyword_statement_token1] = ACTIONS(5288), + [aux_sym_keyword_statement_token2] = ACTIONS(5288), + [aux_sym_keyword_statement_token3] = ACTIONS(5288), + [aux_sym_keyword_statement_token4] = ACTIONS(5288), + [aux_sym_keyword_statement_token6] = ACTIONS(5288), + [aux_sym_keyword_statement_token7] = ACTIONS(5288), + [aux_sym_include_statement_token1] = ACTIONS(5288), + [aux_sym_data_statement_token1] = ACTIONS(5288), + [aux_sym_do_loop_statement_token1] = ACTIONS(5288), + [aux_sym__inline_if_statement_token1] = ACTIONS(5288), + [aux_sym_end_if_statement_token1] = ACTIONS(5288), + [aux_sym_elseif_clause_token2] = ACTIONS(5288), + [aux_sym__inline_where_statement_token1] = ACTIONS(5288), + [aux_sym__forall_control_expression_token1] = ACTIONS(5288), + [aux_sym_select_case_statement_token1] = ACTIONS(5288), + [aux_sym_select_case_statement_token3] = ACTIONS(5288), + [aux_sym_select_type_statement_token1] = ACTIONS(5288), + [aux_sym_select_rank_statement_token2] = ACTIONS(5288), + [aux_sym_block_construct_token1] = ACTIONS(5288), + [aux_sym_associate_statement_token1] = ACTIONS(5288), + [aux_sym_format_statement_token1] = ACTIONS(5288), + [aux_sym_print_statement_token1] = ACTIONS(5288), + [aux_sym_open_statement_token1] = ACTIONS(5288), + [aux_sym_close_statement_token1] = ACTIONS(5288), + [aux_sym_inquire_statement_token1] = ACTIONS(5288), + [aux_sym_enum_statement_token1] = ACTIONS(5288), + [aux_sym_file_position_statement_token1] = ACTIONS(5288), + [aux_sym_file_position_statement_token2] = ACTIONS(5288), + [aux_sym_file_position_statement_token3] = ACTIONS(5288), + [aux_sym_file_position_statement_token4] = ACTIONS(5288), + [aux_sym_allocate_statement_token1] = ACTIONS(5288), + [aux_sym_entry_statement_token1] = ACTIONS(5288), + [aux_sym_logical_expression_token5] = ACTIONS(5292), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_LPAREN_SLASH] = ACTIONS(5292), + [anon_sym_LBRACK] = ACTIONS(5292), + [aux_sym_boolean_literal_token1] = ACTIONS(5292), + [aux_sym_boolean_literal_token2] = ACTIONS(5292), + [aux_sym_null_literal_token1] = ACTIONS(5288), + [aux_sym_coarray_statement_token1] = ACTIONS(5288), + [aux_sym_coarray_statement_token2] = ACTIONS(5288), + [aux_sym_coarray_statement_token6] = ACTIONS(5288), + [aux_sym_coarray_statement_token8] = ACTIONS(5288), + [aux_sym_coarray_statement_token11] = ACTIONS(5288), + [aux_sym_coarray_statement_token12] = ACTIONS(5288), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5288), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5288), + [aux_sym_identifier_token1] = ACTIONS(5288), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5292), + [sym__float_literal] = ACTIONS(5292), + [sym__boz_literal] = ACTIONS(5292), + [sym__string_literal] = ACTIONS(5292), + [sym__string_literal_kind] = ACTIONS(5292), }, [1327] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(5386), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [sym_preproc_comment] = ACTIONS(5384), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [1328] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), - [sym_preproc_comment] = ACTIONS(5388), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_end_program_statement_token2] = ACTIONS(4267), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [aux_sym_preproc_include_token1] = ACTIONS(5170), + [aux_sym_preproc_def_token1] = ACTIONS(5170), + [aux_sym_preproc_if_token1] = ACTIONS(5170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5170), + [sym_preproc_directive] = ACTIONS(5170), + [anon_sym_LPAREN2] = ACTIONS(5170), + [sym_preproc_comment] = ACTIONS(5386), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5170), + [aux_sym_interface_statement_token1] = ACTIONS(5170), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5170), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5170), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5170), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5170), + [aux_sym_language_binding_token1] = ACTIONS(5170), + [aux_sym_procedure_attributes_token1] = ACTIONS(5170), + [aux_sym_procedure_attributes_token3] = ACTIONS(5170), + [aux_sym_contains_statement_token1] = ACTIONS(5170), + [aux_sym_use_statement_token1] = ACTIONS(5170), + [aux_sym_use_statement_token2] = ACTIONS(5170), + [aux_sym_implicit_statement_token1] = ACTIONS(5170), + [aux_sym_implicit_statement_token3] = ACTIONS(5170), + [aux_sym_implicit_statement_token4] = ACTIONS(5170), + [aux_sym_save_statement_token1] = ACTIONS(5170), + [aux_sym_private_statement_token1] = ACTIONS(5170), + [aux_sym_public_statement_token1] = ACTIONS(5170), + [aux_sym_namelist_statement_token1] = ACTIONS(5170), + [aux_sym_common_statement_token1] = ACTIONS(5170), + [aux_sym_import_statement_token1] = ACTIONS(5170), + [aux_sym_derived_type_definition_token1] = ACTIONS(5170), + [aux_sym_abstract_specifier_token1] = ACTIONS(5170), + [aux_sym_procedure_attribute_token6] = ACTIONS(5170), + [aux_sym_variable_attributes_token1] = ACTIONS(5170), + [aux_sym_variable_attributes_token2] = ACTIONS(5170), + [aux_sym_variable_attributes_token3] = ACTIONS(5170), + [aux_sym_variable_attributes_token4] = ACTIONS(5170), + [aux_sym_variable_attributes_token5] = ACTIONS(5170), + [aux_sym__intrinsic_type_token1] = ACTIONS(5170), + [aux_sym__intrinsic_type_token2] = ACTIONS(5170), + [aux_sym__intrinsic_type_token3] = ACTIONS(5170), + [aux_sym__intrinsic_type_token4] = ACTIONS(5170), + [aux_sym__intrinsic_type_token6] = ACTIONS(5170), + [aux_sym__intrinsic_type_token7] = ACTIONS(5170), + [aux_sym__intrinsic_type_token8] = ACTIONS(5170), + [aux_sym__intrinsic_type_token9] = ACTIONS(5170), + [aux_sym__intrinsic_type_token10] = ACTIONS(5170), + [aux_sym_derived_type_token1] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5170), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5170), + [aux_sym_type_qualifier_token1] = ACTIONS(5170), + [aux_sym_type_qualifier_token2] = ACTIONS(5170), + [aux_sym_equivalence_statement_token1] = ACTIONS(5170), + [anon_sym_SEMI] = ACTIONS(5174), + [aux_sym_stop_statement_token1] = ACTIONS(5170), + [aux_sym_stop_statement_token2] = ACTIONS(5170), + [aux_sym_subroutine_call_token1] = ACTIONS(5170), + [aux_sym_keyword_statement_token1] = ACTIONS(5170), + [aux_sym_keyword_statement_token2] = ACTIONS(5170), + [aux_sym_keyword_statement_token3] = ACTIONS(5170), + [aux_sym_keyword_statement_token4] = ACTIONS(5170), + [aux_sym_keyword_statement_token6] = ACTIONS(5170), + [aux_sym_keyword_statement_token7] = ACTIONS(5170), + [aux_sym_include_statement_token1] = ACTIONS(5170), + [aux_sym_data_statement_token1] = ACTIONS(5170), + [aux_sym_do_loop_statement_token1] = ACTIONS(5170), + [aux_sym__inline_if_statement_token1] = ACTIONS(5170), + [aux_sym_end_if_statement_token1] = ACTIONS(5170), + [aux_sym_elseif_clause_token2] = ACTIONS(5170), + [aux_sym__inline_where_statement_token1] = ACTIONS(5170), + [aux_sym__forall_control_expression_token1] = ACTIONS(5170), + [aux_sym_select_case_statement_token1] = ACTIONS(5170), + [aux_sym_select_case_statement_token3] = ACTIONS(5170), + [aux_sym_select_type_statement_token1] = ACTIONS(5170), + [aux_sym_select_rank_statement_token2] = ACTIONS(5170), + [aux_sym_block_construct_token1] = ACTIONS(5170), + [aux_sym_associate_statement_token1] = ACTIONS(5170), + [aux_sym_format_statement_token1] = ACTIONS(5170), + [aux_sym_print_statement_token1] = ACTIONS(5170), + [aux_sym_open_statement_token1] = ACTIONS(5170), + [aux_sym_close_statement_token1] = ACTIONS(5170), + [aux_sym_inquire_statement_token1] = ACTIONS(5170), + [aux_sym_enum_statement_token1] = ACTIONS(5170), + [aux_sym_file_position_statement_token1] = ACTIONS(5170), + [aux_sym_file_position_statement_token2] = ACTIONS(5170), + [aux_sym_file_position_statement_token3] = ACTIONS(5170), + [aux_sym_file_position_statement_token4] = ACTIONS(5170), + [aux_sym_allocate_statement_token1] = ACTIONS(5170), + [aux_sym_entry_statement_token1] = ACTIONS(5170), + [aux_sym_logical_expression_token5] = ACTIONS(5174), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_LPAREN_SLASH] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [aux_sym_boolean_literal_token1] = ACTIONS(5174), + [aux_sym_boolean_literal_token2] = ACTIONS(5174), + [aux_sym_null_literal_token1] = ACTIONS(5170), + [aux_sym_coarray_statement_token1] = ACTIONS(5170), + [aux_sym_coarray_statement_token2] = ACTIONS(5170), + [aux_sym_coarray_statement_token6] = ACTIONS(5170), + [aux_sym_coarray_statement_token8] = ACTIONS(5170), + [aux_sym_coarray_statement_token11] = ACTIONS(5170), + [aux_sym_coarray_statement_token12] = ACTIONS(5170), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5170), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5170), + [aux_sym_identifier_token1] = ACTIONS(5170), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5174), + [sym__float_literal] = ACTIONS(5174), + [sym__boz_literal] = ACTIONS(5174), + [sym__string_literal] = ACTIONS(5174), + [sym__string_literal_kind] = ACTIONS(5174), }, [1329] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token2] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_LPAREN2] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_end_program_statement_token2] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_subroutine_call_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_keyword_statement_token4] = ACTIONS(5021), - [aux_sym_keyword_statement_token6] = ACTIONS(5021), - [aux_sym_keyword_statement_token7] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym_do_loop_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym__inline_where_statement_token1] = ACTIONS(5021), - [aux_sym__forall_control_expression_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token3] = ACTIONS(5021), - [aux_sym_select_type_statement_token1] = ACTIONS(5021), - [aux_sym_select_rank_statement_token2] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_associate_statement_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_print_statement_token1] = ACTIONS(5021), - [aux_sym_open_statement_token1] = ACTIONS(5021), - [aux_sym_close_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token2] = ACTIONS(5021), - [aux_sym_file_position_statement_token3] = ACTIONS(5021), - [aux_sym_file_position_statement_token4] = ACTIONS(5021), - [aux_sym_allocate_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_logical_expression_token5] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_LPAREN_SLASH] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [aux_sym_boolean_literal_token1] = ACTIONS(5023), - [aux_sym_boolean_literal_token2] = ACTIONS(5023), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - [sym__float_literal] = ACTIONS(5023), - [sym__boz_literal] = ACTIONS(5023), - [sym__string_literal] = ACTIONS(5023), - [sym__string_literal_kind] = ACTIONS(5023), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [sym_preproc_comment] = ACTIONS(5388), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1330] = { - [aux_sym_preproc_include_token1] = ACTIONS(5163), - [aux_sym_preproc_def_token1] = ACTIONS(5163), - [aux_sym_preproc_if_token1] = ACTIONS(5163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5163), - [sym_preproc_directive] = ACTIONS(5163), - [anon_sym_LPAREN2] = ACTIONS(5163), + [aux_sym_preproc_include_token1] = ACTIONS(5180), + [aux_sym_preproc_def_token1] = ACTIONS(5180), + [aux_sym_preproc_if_token1] = ACTIONS(5180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5180), + [sym_preproc_directive] = ACTIONS(5180), + [anon_sym_LPAREN2] = ACTIONS(5180), [sym_preproc_comment] = ACTIONS(5390), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5163), - [aux_sym_interface_statement_token1] = ACTIONS(5163), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5163), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5163), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5163), - [aux_sym_language_binding_token1] = ACTIONS(5163), - [aux_sym_procedure_attributes_token1] = ACTIONS(5163), - [aux_sym_procedure_attributes_token3] = ACTIONS(5163), - [aux_sym_end_function_statement_token1] = ACTIONS(5163), - [aux_sym_contains_statement_token1] = ACTIONS(5163), - [aux_sym_use_statement_token1] = ACTIONS(5163), - [aux_sym_use_statement_token2] = ACTIONS(5163), - [aux_sym_implicit_statement_token1] = ACTIONS(5163), - [aux_sym_implicit_statement_token3] = ACTIONS(5163), - [aux_sym_implicit_statement_token4] = ACTIONS(5163), - [aux_sym_save_statement_token1] = ACTIONS(5163), - [aux_sym_private_statement_token1] = ACTIONS(5163), - [aux_sym_public_statement_token1] = ACTIONS(5163), - [aux_sym_namelist_statement_token1] = ACTIONS(5163), - [aux_sym_common_statement_token1] = ACTIONS(5163), - [aux_sym_import_statement_token1] = ACTIONS(5163), - [aux_sym_derived_type_definition_token1] = ACTIONS(5163), - [aux_sym_abstract_specifier_token1] = ACTIONS(5163), - [aux_sym_procedure_attribute_token6] = ACTIONS(5163), - [aux_sym_variable_attributes_token1] = ACTIONS(5163), - [aux_sym_variable_attributes_token2] = ACTIONS(5163), - [aux_sym_variable_attributes_token3] = ACTIONS(5163), - [aux_sym_variable_attributes_token4] = ACTIONS(5163), - [aux_sym_variable_attributes_token5] = ACTIONS(5163), - [aux_sym__intrinsic_type_token1] = ACTIONS(5163), - [aux_sym__intrinsic_type_token2] = ACTIONS(5163), - [aux_sym__intrinsic_type_token3] = ACTIONS(5163), - [aux_sym__intrinsic_type_token4] = ACTIONS(5163), - [aux_sym__intrinsic_type_token6] = ACTIONS(5163), - [aux_sym__intrinsic_type_token7] = ACTIONS(5163), - [aux_sym__intrinsic_type_token8] = ACTIONS(5163), - [aux_sym__intrinsic_type_token9] = ACTIONS(5163), - [aux_sym__intrinsic_type_token10] = ACTIONS(5163), - [aux_sym_derived_type_token1] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5163), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5163), - [aux_sym_type_qualifier_token1] = ACTIONS(5163), - [aux_sym_type_qualifier_token2] = ACTIONS(5163), - [aux_sym_equivalence_statement_token1] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5167), - [aux_sym_stop_statement_token1] = ACTIONS(5163), - [aux_sym_stop_statement_token2] = ACTIONS(5163), - [aux_sym_subroutine_call_token1] = ACTIONS(5163), - [aux_sym_keyword_statement_token1] = ACTIONS(5163), - [aux_sym_keyword_statement_token2] = ACTIONS(5163), - [aux_sym_keyword_statement_token3] = ACTIONS(5163), - [aux_sym_keyword_statement_token4] = ACTIONS(5163), - [aux_sym_keyword_statement_token6] = ACTIONS(5163), - [aux_sym_keyword_statement_token7] = ACTIONS(5163), - [aux_sym_include_statement_token1] = ACTIONS(5163), - [aux_sym_data_statement_token1] = ACTIONS(5163), - [aux_sym_do_loop_statement_token1] = ACTIONS(5163), - [aux_sym__inline_if_statement_token1] = ACTIONS(5163), - [aux_sym_end_if_statement_token1] = ACTIONS(5163), - [aux_sym_elseif_clause_token2] = ACTIONS(5163), - [aux_sym__inline_where_statement_token1] = ACTIONS(5163), - [aux_sym__forall_control_expression_token1] = ACTIONS(5163), - [aux_sym_select_case_statement_token1] = ACTIONS(5163), - [aux_sym_select_case_statement_token3] = ACTIONS(5163), - [aux_sym_select_type_statement_token1] = ACTIONS(5163), - [aux_sym_select_rank_statement_token2] = ACTIONS(5163), - [aux_sym_block_construct_token1] = ACTIONS(5163), - [aux_sym_associate_statement_token1] = ACTIONS(5163), - [aux_sym_format_statement_token1] = ACTIONS(5163), - [aux_sym_print_statement_token1] = ACTIONS(5163), - [aux_sym_open_statement_token1] = ACTIONS(5163), - [aux_sym_close_statement_token1] = ACTIONS(5163), - [aux_sym_inquire_statement_token1] = ACTIONS(5163), - [aux_sym_enum_statement_token1] = ACTIONS(5163), - [aux_sym_file_position_statement_token1] = ACTIONS(5163), - [aux_sym_file_position_statement_token2] = ACTIONS(5163), - [aux_sym_file_position_statement_token3] = ACTIONS(5163), - [aux_sym_file_position_statement_token4] = ACTIONS(5163), - [aux_sym_allocate_statement_token1] = ACTIONS(5163), - [aux_sym_entry_statement_token1] = ACTIONS(5163), - [aux_sym_logical_expression_token5] = ACTIONS(5167), - [anon_sym_DOT] = ACTIONS(5163), - [anon_sym_LPAREN_SLASH] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [aux_sym_boolean_literal_token1] = ACTIONS(5167), - [aux_sym_boolean_literal_token2] = ACTIONS(5167), - [aux_sym_null_literal_token1] = ACTIONS(5163), - [aux_sym_coarray_statement_token1] = ACTIONS(5163), - [aux_sym_coarray_statement_token2] = ACTIONS(5163), - [aux_sym_coarray_statement_token6] = ACTIONS(5163), - [aux_sym_coarray_statement_token8] = ACTIONS(5163), - [aux_sym_coarray_statement_token11] = ACTIONS(5163), - [aux_sym_coarray_statement_token12] = ACTIONS(5163), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5163), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5163), - [aux_sym_identifier_token1] = ACTIONS(5163), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5167), - [sym__float_literal] = ACTIONS(5167), - [sym__boz_literal] = ACTIONS(5167), - [sym__string_literal] = ACTIONS(5167), - [sym__string_literal_kind] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5180), + [aux_sym_interface_statement_token1] = ACTIONS(5180), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5180), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5180), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5180), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5180), + [aux_sym_language_binding_token1] = ACTIONS(5180), + [aux_sym_procedure_attributes_token1] = ACTIONS(5180), + [aux_sym_procedure_attributes_token3] = ACTIONS(5180), + [aux_sym_contains_statement_token1] = ACTIONS(5180), + [aux_sym_use_statement_token1] = ACTIONS(5180), + [aux_sym_use_statement_token2] = ACTIONS(5180), + [aux_sym_implicit_statement_token1] = ACTIONS(5180), + [aux_sym_implicit_statement_token3] = ACTIONS(5180), + [aux_sym_implicit_statement_token4] = ACTIONS(5180), + [aux_sym_save_statement_token1] = ACTIONS(5180), + [aux_sym_private_statement_token1] = ACTIONS(5180), + [aux_sym_public_statement_token1] = ACTIONS(5180), + [aux_sym_namelist_statement_token1] = ACTIONS(5180), + [aux_sym_common_statement_token1] = ACTIONS(5180), + [aux_sym_import_statement_token1] = ACTIONS(5180), + [aux_sym_derived_type_definition_token1] = ACTIONS(5180), + [aux_sym_abstract_specifier_token1] = ACTIONS(5180), + [aux_sym_procedure_attribute_token6] = ACTIONS(5180), + [aux_sym_variable_attributes_token1] = ACTIONS(5180), + [aux_sym_variable_attributes_token2] = ACTIONS(5180), + [aux_sym_variable_attributes_token3] = ACTIONS(5180), + [aux_sym_variable_attributes_token4] = ACTIONS(5180), + [aux_sym_variable_attributes_token5] = ACTIONS(5180), + [aux_sym__intrinsic_type_token1] = ACTIONS(5180), + [aux_sym__intrinsic_type_token2] = ACTIONS(5180), + [aux_sym__intrinsic_type_token3] = ACTIONS(5180), + [aux_sym__intrinsic_type_token4] = ACTIONS(5180), + [aux_sym__intrinsic_type_token6] = ACTIONS(5180), + [aux_sym__intrinsic_type_token7] = ACTIONS(5180), + [aux_sym__intrinsic_type_token8] = ACTIONS(5180), + [aux_sym__intrinsic_type_token9] = ACTIONS(5180), + [aux_sym__intrinsic_type_token10] = ACTIONS(5180), + [aux_sym_derived_type_token1] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5180), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5180), + [aux_sym_type_qualifier_token1] = ACTIONS(5180), + [aux_sym_type_qualifier_token2] = ACTIONS(5180), + [aux_sym_equivalence_statement_token1] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5184), + [aux_sym_stop_statement_token1] = ACTIONS(5180), + [aux_sym_stop_statement_token2] = ACTIONS(5180), + [aux_sym_subroutine_call_token1] = ACTIONS(5180), + [aux_sym_keyword_statement_token1] = ACTIONS(5180), + [aux_sym_keyword_statement_token2] = ACTIONS(5180), + [aux_sym_keyword_statement_token3] = ACTIONS(5180), + [aux_sym_keyword_statement_token4] = ACTIONS(5180), + [aux_sym_keyword_statement_token6] = ACTIONS(5180), + [aux_sym_keyword_statement_token7] = ACTIONS(5180), + [aux_sym_include_statement_token1] = ACTIONS(5180), + [aux_sym_data_statement_token1] = ACTIONS(5180), + [aux_sym_do_loop_statement_token1] = ACTIONS(5180), + [aux_sym__inline_if_statement_token1] = ACTIONS(5180), + [aux_sym_end_if_statement_token1] = ACTIONS(5180), + [aux_sym_elseif_clause_token2] = ACTIONS(5180), + [aux_sym__inline_where_statement_token1] = ACTIONS(5180), + [aux_sym__forall_control_expression_token1] = ACTIONS(5180), + [aux_sym_select_case_statement_token1] = ACTIONS(5180), + [aux_sym_select_case_statement_token3] = ACTIONS(5180), + [aux_sym_select_type_statement_token1] = ACTIONS(5180), + [aux_sym_select_rank_statement_token2] = ACTIONS(5180), + [aux_sym_block_construct_token1] = ACTIONS(5180), + [aux_sym_associate_statement_token1] = ACTIONS(5180), + [aux_sym_format_statement_token1] = ACTIONS(5180), + [aux_sym_print_statement_token1] = ACTIONS(5180), + [aux_sym_open_statement_token1] = ACTIONS(5180), + [aux_sym_close_statement_token1] = ACTIONS(5180), + [aux_sym_inquire_statement_token1] = ACTIONS(5180), + [aux_sym_enum_statement_token1] = ACTIONS(5180), + [aux_sym_file_position_statement_token1] = ACTIONS(5180), + [aux_sym_file_position_statement_token2] = ACTIONS(5180), + [aux_sym_file_position_statement_token3] = ACTIONS(5180), + [aux_sym_file_position_statement_token4] = ACTIONS(5180), + [aux_sym_allocate_statement_token1] = ACTIONS(5180), + [aux_sym_entry_statement_token1] = ACTIONS(5180), + [aux_sym_logical_expression_token5] = ACTIONS(5184), + [anon_sym_DOT] = ACTIONS(5180), + [anon_sym_LPAREN_SLASH] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [aux_sym_boolean_literal_token1] = ACTIONS(5184), + [aux_sym_boolean_literal_token2] = ACTIONS(5184), + [aux_sym_null_literal_token1] = ACTIONS(5180), + [aux_sym_coarray_statement_token1] = ACTIONS(5180), + [aux_sym_coarray_statement_token2] = ACTIONS(5180), + [aux_sym_coarray_statement_token6] = ACTIONS(5180), + [aux_sym_coarray_statement_token8] = ACTIONS(5180), + [aux_sym_coarray_statement_token11] = ACTIONS(5180), + [aux_sym_coarray_statement_token12] = ACTIONS(5180), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5180), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5180), + [aux_sym_identifier_token1] = ACTIONS(5180), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5184), + [sym__float_literal] = ACTIONS(5184), + [sym__boz_literal] = ACTIONS(5184), + [sym__string_literal] = ACTIONS(5184), + [sym__string_literal_kind] = ACTIONS(5184), }, [1331] = { - [aux_sym_preproc_include_token1] = ACTIONS(4267), - [aux_sym_preproc_def_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), - [sym_preproc_directive] = ACTIONS(4267), - [anon_sym_LPAREN2] = ACTIONS(4267), + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), [sym_preproc_comment] = ACTIONS(5392), - [anon_sym_PLUS] = ACTIONS(4273), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4267), - [aux_sym_interface_statement_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4267), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4267), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4267), - [aux_sym_language_binding_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token1] = ACTIONS(4267), - [aux_sym_procedure_attributes_token3] = ACTIONS(4267), - [aux_sym_end_function_statement_token1] = ACTIONS(4267), - [aux_sym_contains_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token1] = ACTIONS(4267), - [aux_sym_use_statement_token2] = ACTIONS(4267), - [aux_sym_implicit_statement_token1] = ACTIONS(4267), - [aux_sym_implicit_statement_token3] = ACTIONS(4267), - [aux_sym_implicit_statement_token4] = ACTIONS(4267), - [aux_sym_save_statement_token1] = ACTIONS(4267), - [aux_sym_private_statement_token1] = ACTIONS(4267), - [aux_sym_public_statement_token1] = ACTIONS(4267), - [aux_sym_namelist_statement_token1] = ACTIONS(4267), - [aux_sym_common_statement_token1] = ACTIONS(4267), - [aux_sym_import_statement_token1] = ACTIONS(4267), - [aux_sym_derived_type_definition_token1] = ACTIONS(4267), - [aux_sym_abstract_specifier_token1] = ACTIONS(4267), - [aux_sym_procedure_attribute_token6] = ACTIONS(4267), - [aux_sym_variable_attributes_token1] = ACTIONS(4267), - [aux_sym_variable_attributes_token2] = ACTIONS(4267), - [aux_sym_variable_attributes_token3] = ACTIONS(4267), - [aux_sym_variable_attributes_token4] = ACTIONS(4267), - [aux_sym_variable_attributes_token5] = ACTIONS(4267), - [aux_sym__intrinsic_type_token1] = ACTIONS(4267), - [aux_sym__intrinsic_type_token2] = ACTIONS(4267), - [aux_sym__intrinsic_type_token3] = ACTIONS(4267), - [aux_sym__intrinsic_type_token4] = ACTIONS(4267), - [aux_sym__intrinsic_type_token6] = ACTIONS(4267), - [aux_sym__intrinsic_type_token7] = ACTIONS(4267), - [aux_sym__intrinsic_type_token8] = ACTIONS(4267), - [aux_sym__intrinsic_type_token9] = ACTIONS(4267), - [aux_sym__intrinsic_type_token10] = ACTIONS(4267), - [aux_sym_derived_type_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4267), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4267), - [aux_sym_type_qualifier_token1] = ACTIONS(4267), - [aux_sym_type_qualifier_token2] = ACTIONS(4267), - [aux_sym_equivalence_statement_token1] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4273), - [aux_sym_stop_statement_token1] = ACTIONS(4267), - [aux_sym_stop_statement_token2] = ACTIONS(4267), - [aux_sym_subroutine_call_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token1] = ACTIONS(4267), - [aux_sym_keyword_statement_token2] = ACTIONS(4267), - [aux_sym_keyword_statement_token3] = ACTIONS(4267), - [aux_sym_keyword_statement_token4] = ACTIONS(4267), - [aux_sym_keyword_statement_token6] = ACTIONS(4267), - [aux_sym_keyword_statement_token7] = ACTIONS(4267), - [aux_sym_include_statement_token1] = ACTIONS(4267), - [aux_sym_data_statement_token1] = ACTIONS(4267), - [aux_sym_do_loop_statement_token1] = ACTIONS(4267), - [aux_sym__inline_if_statement_token1] = ACTIONS(4267), - [aux_sym_end_if_statement_token1] = ACTIONS(4267), - [aux_sym_elseif_clause_token2] = ACTIONS(4267), - [aux_sym__inline_where_statement_token1] = ACTIONS(4267), - [aux_sym__forall_control_expression_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token1] = ACTIONS(4267), - [aux_sym_select_case_statement_token3] = ACTIONS(4267), - [aux_sym_select_type_statement_token1] = ACTIONS(4267), - [aux_sym_select_rank_statement_token2] = ACTIONS(4267), - [aux_sym_block_construct_token1] = ACTIONS(4267), - [aux_sym_associate_statement_token1] = ACTIONS(4267), - [aux_sym_format_statement_token1] = ACTIONS(4267), - [aux_sym_print_statement_token1] = ACTIONS(4267), - [aux_sym_open_statement_token1] = ACTIONS(4267), - [aux_sym_close_statement_token1] = ACTIONS(4267), - [aux_sym_inquire_statement_token1] = ACTIONS(4267), - [aux_sym_enum_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token1] = ACTIONS(4267), - [aux_sym_file_position_statement_token2] = ACTIONS(4267), - [aux_sym_file_position_statement_token3] = ACTIONS(4267), - [aux_sym_file_position_statement_token4] = ACTIONS(4267), - [aux_sym_allocate_statement_token1] = ACTIONS(4267), - [aux_sym_entry_statement_token1] = ACTIONS(4267), - [aux_sym_logical_expression_token5] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_SLASH] = ACTIONS(4273), - [anon_sym_LBRACK] = ACTIONS(4273), - [aux_sym_boolean_literal_token1] = ACTIONS(4273), - [aux_sym_boolean_literal_token2] = ACTIONS(4273), - [aux_sym_null_literal_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_statement_token2] = ACTIONS(4267), - [aux_sym_coarray_statement_token6] = ACTIONS(4267), - [aux_sym_coarray_statement_token8] = ACTIONS(4267), - [aux_sym_coarray_statement_token11] = ACTIONS(4267), - [aux_sym_coarray_statement_token12] = ACTIONS(4267), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4267), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4267), - [aux_sym_identifier_token1] = ACTIONS(4267), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4273), - [sym__float_literal] = ACTIONS(4273), - [sym__boz_literal] = ACTIONS(4273), - [sym__string_literal] = ACTIONS(4273), - [sym__string_literal_kind] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, [1332] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_LPAREN2] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [anon_sym_SEMI] = ACTIONS(5055), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_subroutine_call_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_keyword_statement_token4] = ACTIONS(5053), - [aux_sym_keyword_statement_token6] = ACTIONS(5053), - [aux_sym_keyword_statement_token7] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym_do_loop_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym__inline_where_statement_token1] = ACTIONS(5053), - [aux_sym__forall_control_expression_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token3] = ACTIONS(5053), - [aux_sym_select_type_statement_token1] = ACTIONS(5053), - [aux_sym_select_rank_statement_token2] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_associate_statement_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_print_statement_token1] = ACTIONS(5053), - [aux_sym_open_statement_token1] = ACTIONS(5053), - [aux_sym_close_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token2] = ACTIONS(5053), - [aux_sym_file_position_statement_token3] = ACTIONS(5053), - [aux_sym_file_position_statement_token4] = ACTIONS(5053), - [aux_sym_allocate_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_logical_expression_token5] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_LPAREN_SLASH] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [aux_sym_boolean_literal_token1] = ACTIONS(5055), - [aux_sym_boolean_literal_token2] = ACTIONS(5055), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - [sym__float_literal] = ACTIONS(5055), - [sym__boz_literal] = ACTIONS(5055), - [sym__string_literal] = ACTIONS(5055), - [sym__string_literal_kind] = ACTIONS(5055), - }, - [1333] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), - }, - [1334] = { [aux_sym_preproc_include_token1] = ACTIONS(5394), [aux_sym_preproc_def_token1] = ACTIONS(5394), [aux_sym_preproc_if_token1] = ACTIONS(5394), @@ -268786,513 +268536,1263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5394), [aux_sym_identifier_token1] = ACTIONS(5394), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5396), - [sym__float_literal] = ACTIONS(5396), - [sym__boz_literal] = ACTIONS(5396), - [sym__string_literal] = ACTIONS(5396), - [sym__string_literal_kind] = ACTIONS(5396), + [sym__integer_literal] = ACTIONS(5396), + [sym__float_literal] = ACTIONS(5396), + [sym__boz_literal] = ACTIONS(5396), + [sym__string_literal] = ACTIONS(5396), + [sym__string_literal_kind] = ACTIONS(5396), + }, + [1333] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_LPAREN2] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_subroutine_call_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_keyword_statement_token4] = ACTIONS(4611), + [aux_sym_keyword_statement_token6] = ACTIONS(4611), + [aux_sym_keyword_statement_token7] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym_do_loop_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym__inline_where_statement_token1] = ACTIONS(4611), + [aux_sym__forall_control_expression_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token3] = ACTIONS(4611), + [aux_sym_select_type_statement_token1] = ACTIONS(4611), + [aux_sym_select_rank_statement_token2] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_associate_statement_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_print_statement_token1] = ACTIONS(4611), + [aux_sym_open_statement_token1] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token2] = ACTIONS(4611), + [aux_sym_file_position_statement_token3] = ACTIONS(4611), + [aux_sym_file_position_statement_token4] = ACTIONS(4611), + [aux_sym_allocate_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_logical_expression_token5] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LPAREN_SLASH] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4613), + [sym__float_literal] = ACTIONS(4613), + [sym__boz_literal] = ACTIONS(4613), + [sym__string_literal] = ACTIONS(4613), + [sym__string_literal_kind] = ACTIONS(4613), + }, + [1334] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_end_function_statement_token1] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_subroutine_call_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_keyword_statement_token4] = ACTIONS(5006), + [aux_sym_keyword_statement_token6] = ACTIONS(5006), + [aux_sym_keyword_statement_token7] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym_do_loop_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym__inline_where_statement_token1] = ACTIONS(5006), + [aux_sym__forall_control_expression_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token3] = ACTIONS(5006), + [aux_sym_select_type_statement_token1] = ACTIONS(5006), + [aux_sym_select_rank_statement_token2] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_associate_statement_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_print_statement_token1] = ACTIONS(5006), + [aux_sym_open_statement_token1] = ACTIONS(5006), + [aux_sym_close_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token2] = ACTIONS(5006), + [aux_sym_file_position_statement_token3] = ACTIONS(5006), + [aux_sym_file_position_statement_token4] = ACTIONS(5006), + [aux_sym_allocate_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_logical_expression_token5] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_LPAREN_SLASH] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [aux_sym_boolean_literal_token1] = ACTIONS(5008), + [aux_sym_boolean_literal_token2] = ACTIONS(5008), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + [sym__float_literal] = ACTIONS(5008), + [sym__boz_literal] = ACTIONS(5008), + [sym__string_literal] = ACTIONS(5008), + [sym__string_literal_kind] = ACTIONS(5008), + }, + [1335] = { + [aux_sym_preproc_include_token1] = ACTIONS(5398), + [aux_sym_preproc_def_token1] = ACTIONS(5398), + [aux_sym_preproc_if_token1] = ACTIONS(5398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5398), + [sym_preproc_directive] = ACTIONS(5398), + [anon_sym_LPAREN2] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5398), + [aux_sym_end_program_statement_token2] = ACTIONS(5398), + [aux_sym_interface_statement_token1] = ACTIONS(5398), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5398), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5398), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5398), + [aux_sym_language_binding_token1] = ACTIONS(5398), + [aux_sym_procedure_attributes_token1] = ACTIONS(5398), + [aux_sym_procedure_attributes_token3] = ACTIONS(5398), + [aux_sym_contains_statement_token1] = ACTIONS(5398), + [aux_sym_use_statement_token1] = ACTIONS(5398), + [aux_sym_use_statement_token2] = ACTIONS(5398), + [aux_sym_implicit_statement_token1] = ACTIONS(5398), + [aux_sym_implicit_statement_token3] = ACTIONS(5398), + [aux_sym_implicit_statement_token4] = ACTIONS(5398), + [aux_sym_save_statement_token1] = ACTIONS(5398), + [aux_sym_private_statement_token1] = ACTIONS(5398), + [aux_sym_public_statement_token1] = ACTIONS(5398), + [aux_sym_namelist_statement_token1] = ACTIONS(5398), + [aux_sym_common_statement_token1] = ACTIONS(5398), + [aux_sym_import_statement_token1] = ACTIONS(5398), + [aux_sym_derived_type_definition_token1] = ACTIONS(5398), + [aux_sym_abstract_specifier_token1] = ACTIONS(5398), + [aux_sym_procedure_attribute_token6] = ACTIONS(5398), + [aux_sym_variable_attributes_token1] = ACTIONS(5398), + [aux_sym_variable_attributes_token2] = ACTIONS(5398), + [aux_sym_variable_attributes_token3] = ACTIONS(5398), + [aux_sym_variable_attributes_token4] = ACTIONS(5398), + [aux_sym_variable_attributes_token5] = ACTIONS(5398), + [aux_sym__intrinsic_type_token1] = ACTIONS(5398), + [aux_sym__intrinsic_type_token2] = ACTIONS(5398), + [aux_sym__intrinsic_type_token3] = ACTIONS(5398), + [aux_sym__intrinsic_type_token4] = ACTIONS(5398), + [aux_sym__intrinsic_type_token6] = ACTIONS(5398), + [aux_sym__intrinsic_type_token7] = ACTIONS(5398), + [aux_sym__intrinsic_type_token8] = ACTIONS(5398), + [aux_sym__intrinsic_type_token9] = ACTIONS(5398), + [aux_sym__intrinsic_type_token10] = ACTIONS(5398), + [aux_sym_derived_type_token1] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5398), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5398), + [aux_sym_type_qualifier_token1] = ACTIONS(5398), + [aux_sym_type_qualifier_token2] = ACTIONS(5398), + [aux_sym_equivalence_statement_token1] = ACTIONS(5398), + [anon_sym_SEMI] = ACTIONS(5400), + [aux_sym_stop_statement_token1] = ACTIONS(5398), + [aux_sym_stop_statement_token2] = ACTIONS(5398), + [aux_sym_subroutine_call_token1] = ACTIONS(5398), + [aux_sym_keyword_statement_token1] = ACTIONS(5398), + [aux_sym_keyword_statement_token2] = ACTIONS(5398), + [aux_sym_keyword_statement_token3] = ACTIONS(5398), + [aux_sym_keyword_statement_token4] = ACTIONS(5398), + [aux_sym_keyword_statement_token6] = ACTIONS(5398), + [aux_sym_keyword_statement_token7] = ACTIONS(5398), + [aux_sym_include_statement_token1] = ACTIONS(5398), + [aux_sym_data_statement_token1] = ACTIONS(5398), + [aux_sym_do_loop_statement_token1] = ACTIONS(5398), + [aux_sym__inline_if_statement_token1] = ACTIONS(5398), + [aux_sym_end_if_statement_token1] = ACTIONS(5398), + [aux_sym_elseif_clause_token2] = ACTIONS(5398), + [aux_sym__inline_where_statement_token1] = ACTIONS(5398), + [aux_sym__forall_control_expression_token1] = ACTIONS(5398), + [aux_sym_select_case_statement_token1] = ACTIONS(5398), + [aux_sym_select_case_statement_token3] = ACTIONS(5398), + [aux_sym_select_type_statement_token1] = ACTIONS(5398), + [aux_sym_select_rank_statement_token2] = ACTIONS(5398), + [aux_sym_block_construct_token1] = ACTIONS(5398), + [aux_sym_associate_statement_token1] = ACTIONS(5398), + [aux_sym_format_statement_token1] = ACTIONS(5398), + [aux_sym_print_statement_token1] = ACTIONS(5398), + [aux_sym_open_statement_token1] = ACTIONS(5398), + [aux_sym_close_statement_token1] = ACTIONS(5398), + [aux_sym_inquire_statement_token1] = ACTIONS(5398), + [aux_sym_enum_statement_token1] = ACTIONS(5398), + [aux_sym_file_position_statement_token1] = ACTIONS(5398), + [aux_sym_file_position_statement_token2] = ACTIONS(5398), + [aux_sym_file_position_statement_token3] = ACTIONS(5398), + [aux_sym_file_position_statement_token4] = ACTIONS(5398), + [aux_sym_allocate_statement_token1] = ACTIONS(5398), + [aux_sym_entry_statement_token1] = ACTIONS(5398), + [aux_sym_logical_expression_token5] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_LPAREN_SLASH] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [aux_sym_boolean_literal_token1] = ACTIONS(5400), + [aux_sym_boolean_literal_token2] = ACTIONS(5400), + [aux_sym_null_literal_token1] = ACTIONS(5398), + [aux_sym_coarray_statement_token1] = ACTIONS(5398), + [aux_sym_coarray_statement_token2] = ACTIONS(5398), + [aux_sym_coarray_statement_token6] = ACTIONS(5398), + [aux_sym_coarray_statement_token8] = ACTIONS(5398), + [aux_sym_coarray_statement_token11] = ACTIONS(5398), + [aux_sym_coarray_statement_token12] = ACTIONS(5398), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5398), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5398), + [aux_sym_identifier_token1] = ACTIONS(5398), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5400), + [sym__float_literal] = ACTIONS(5400), + [sym__boz_literal] = ACTIONS(5400), + [sym__string_literal] = ACTIONS(5400), + [sym__string_literal_kind] = ACTIONS(5400), + }, + [1336] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_end_function_statement_token1] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_subroutine_call_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_keyword_statement_token4] = ACTIONS(4994), + [aux_sym_keyword_statement_token6] = ACTIONS(4994), + [aux_sym_keyword_statement_token7] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym_do_loop_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym__inline_where_statement_token1] = ACTIONS(4994), + [aux_sym__forall_control_expression_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token3] = ACTIONS(4994), + [aux_sym_select_type_statement_token1] = ACTIONS(4994), + [aux_sym_select_rank_statement_token2] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_associate_statement_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_print_statement_token1] = ACTIONS(4994), + [aux_sym_open_statement_token1] = ACTIONS(4994), + [aux_sym_close_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token2] = ACTIONS(4994), + [aux_sym_file_position_statement_token3] = ACTIONS(4994), + [aux_sym_file_position_statement_token4] = ACTIONS(4994), + [aux_sym_allocate_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_logical_expression_token5] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_LPAREN_SLASH] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [aux_sym_boolean_literal_token1] = ACTIONS(4996), + [aux_sym_boolean_literal_token2] = ACTIONS(4996), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4996), + [sym__float_literal] = ACTIONS(4996), + [sym__boz_literal] = ACTIONS(4996), + [sym__string_literal] = ACTIONS(4996), + [sym__string_literal_kind] = ACTIONS(4996), + }, + [1337] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_end_function_statement_token1] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_subroutine_call_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_keyword_statement_token4] = ACTIONS(4615), + [aux_sym_keyword_statement_token6] = ACTIONS(4615), + [aux_sym_keyword_statement_token7] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym_do_loop_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym__inline_where_statement_token1] = ACTIONS(4615), + [aux_sym__forall_control_expression_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token3] = ACTIONS(4615), + [aux_sym_select_type_statement_token1] = ACTIONS(4615), + [aux_sym_select_rank_statement_token2] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_associate_statement_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_print_statement_token1] = ACTIONS(4615), + [aux_sym_open_statement_token1] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token2] = ACTIONS(4615), + [aux_sym_file_position_statement_token3] = ACTIONS(4615), + [aux_sym_file_position_statement_token4] = ACTIONS(4615), + [aux_sym_allocate_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_logical_expression_token5] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LPAREN_SLASH] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(4617), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4617), + [sym__float_literal] = ACTIONS(4617), + [sym__boz_literal] = ACTIONS(4617), + [sym__string_literal] = ACTIONS(4617), + [sym__string_literal_kind] = ACTIONS(4617), + }, + [1338] = { + [aux_sym_preproc_include_token1] = ACTIONS(5402), + [aux_sym_preproc_def_token1] = ACTIONS(5402), + [aux_sym_preproc_if_token1] = ACTIONS(5402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5402), + [sym_preproc_directive] = ACTIONS(5402), + [anon_sym_LPAREN2] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5402), + [aux_sym_interface_statement_token1] = ACTIONS(5402), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5402), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5402), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5402), + [aux_sym_language_binding_token1] = ACTIONS(5402), + [aux_sym_procedure_attributes_token1] = ACTIONS(5402), + [aux_sym_procedure_attributes_token3] = ACTIONS(5402), + [aux_sym_end_function_statement_token1] = ACTIONS(5402), + [aux_sym_contains_statement_token1] = ACTIONS(5402), + [aux_sym_use_statement_token1] = ACTIONS(5402), + [aux_sym_use_statement_token2] = ACTIONS(5402), + [aux_sym_implicit_statement_token1] = ACTIONS(5402), + [aux_sym_implicit_statement_token3] = ACTIONS(5402), + [aux_sym_implicit_statement_token4] = ACTIONS(5402), + [aux_sym_save_statement_token1] = ACTIONS(5402), + [aux_sym_private_statement_token1] = ACTIONS(5402), + [aux_sym_public_statement_token1] = ACTIONS(5402), + [aux_sym_namelist_statement_token1] = ACTIONS(5402), + [aux_sym_common_statement_token1] = ACTIONS(5402), + [aux_sym_import_statement_token1] = ACTIONS(5402), + [aux_sym_derived_type_definition_token1] = ACTIONS(5402), + [aux_sym_abstract_specifier_token1] = ACTIONS(5402), + [aux_sym_procedure_attribute_token6] = ACTIONS(5402), + [aux_sym_variable_attributes_token1] = ACTIONS(5402), + [aux_sym_variable_attributes_token2] = ACTIONS(5402), + [aux_sym_variable_attributes_token3] = ACTIONS(5402), + [aux_sym_variable_attributes_token4] = ACTIONS(5402), + [aux_sym_variable_attributes_token5] = ACTIONS(5402), + [aux_sym__intrinsic_type_token1] = ACTIONS(5402), + [aux_sym__intrinsic_type_token2] = ACTIONS(5402), + [aux_sym__intrinsic_type_token3] = ACTIONS(5402), + [aux_sym__intrinsic_type_token4] = ACTIONS(5402), + [aux_sym__intrinsic_type_token6] = ACTIONS(5402), + [aux_sym__intrinsic_type_token7] = ACTIONS(5402), + [aux_sym__intrinsic_type_token8] = ACTIONS(5402), + [aux_sym__intrinsic_type_token9] = ACTIONS(5402), + [aux_sym__intrinsic_type_token10] = ACTIONS(5402), + [aux_sym_derived_type_token1] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5402), + [aux_sym_type_qualifier_token1] = ACTIONS(5402), + [aux_sym_type_qualifier_token2] = ACTIONS(5402), + [aux_sym_equivalence_statement_token1] = ACTIONS(5402), + [anon_sym_SEMI] = ACTIONS(5404), + [aux_sym_stop_statement_token1] = ACTIONS(5402), + [aux_sym_stop_statement_token2] = ACTIONS(5402), + [aux_sym_subroutine_call_token1] = ACTIONS(5402), + [aux_sym_keyword_statement_token1] = ACTIONS(5402), + [aux_sym_keyword_statement_token2] = ACTIONS(5402), + [aux_sym_keyword_statement_token3] = ACTIONS(5402), + [aux_sym_keyword_statement_token4] = ACTIONS(5402), + [aux_sym_keyword_statement_token6] = ACTIONS(5402), + [aux_sym_keyword_statement_token7] = ACTIONS(5402), + [aux_sym_include_statement_token1] = ACTIONS(5402), + [aux_sym_data_statement_token1] = ACTIONS(5402), + [aux_sym_do_loop_statement_token1] = ACTIONS(5402), + [aux_sym__inline_if_statement_token1] = ACTIONS(5402), + [aux_sym_end_if_statement_token1] = ACTIONS(5402), + [aux_sym_elseif_clause_token2] = ACTIONS(5402), + [aux_sym__inline_where_statement_token1] = ACTIONS(5402), + [aux_sym__forall_control_expression_token1] = ACTIONS(5402), + [aux_sym_select_case_statement_token1] = ACTIONS(5402), + [aux_sym_select_case_statement_token3] = ACTIONS(5402), + [aux_sym_select_type_statement_token1] = ACTIONS(5402), + [aux_sym_select_rank_statement_token2] = ACTIONS(5402), + [aux_sym_block_construct_token1] = ACTIONS(5402), + [aux_sym_associate_statement_token1] = ACTIONS(5402), + [aux_sym_format_statement_token1] = ACTIONS(5402), + [aux_sym_print_statement_token1] = ACTIONS(5402), + [aux_sym_open_statement_token1] = ACTIONS(5402), + [aux_sym_close_statement_token1] = ACTIONS(5402), + [aux_sym_inquire_statement_token1] = ACTIONS(5402), + [aux_sym_enum_statement_token1] = ACTIONS(5402), + [aux_sym_file_position_statement_token1] = ACTIONS(5402), + [aux_sym_file_position_statement_token2] = ACTIONS(5402), + [aux_sym_file_position_statement_token3] = ACTIONS(5402), + [aux_sym_file_position_statement_token4] = ACTIONS(5402), + [aux_sym_allocate_statement_token1] = ACTIONS(5402), + [aux_sym_entry_statement_token1] = ACTIONS(5402), + [aux_sym_logical_expression_token5] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_LPAREN_SLASH] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [aux_sym_boolean_literal_token1] = ACTIONS(5404), + [aux_sym_boolean_literal_token2] = ACTIONS(5404), + [aux_sym_null_literal_token1] = ACTIONS(5402), + [aux_sym_coarray_statement_token1] = ACTIONS(5402), + [aux_sym_coarray_statement_token2] = ACTIONS(5402), + [aux_sym_coarray_statement_token6] = ACTIONS(5402), + [aux_sym_coarray_statement_token8] = ACTIONS(5402), + [aux_sym_coarray_statement_token11] = ACTIONS(5402), + [aux_sym_coarray_statement_token12] = ACTIONS(5402), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5402), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5402), + [aux_sym_identifier_token1] = ACTIONS(5402), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5404), + [sym__float_literal] = ACTIONS(5404), + [sym__boz_literal] = ACTIONS(5404), + [sym__string_literal] = ACTIONS(5404), + [sym__string_literal_kind] = ACTIONS(5404), + }, + [1339] = { + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), + [anon_sym_LPAREN2] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_end_function_statement_token1] = ACTIONS(4511), + [aux_sym_contains_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_subroutine_call_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_keyword_statement_token4] = ACTIONS(4511), + [aux_sym_keyword_statement_token6] = ACTIONS(4511), + [aux_sym_keyword_statement_token7] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym_do_loop_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym__inline_where_statement_token1] = ACTIONS(4511), + [aux_sym__forall_control_expression_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token3] = ACTIONS(4511), + [aux_sym_select_type_statement_token1] = ACTIONS(4511), + [aux_sym_select_rank_statement_token2] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_associate_statement_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_print_statement_token1] = ACTIONS(4511), + [aux_sym_open_statement_token1] = ACTIONS(4511), + [aux_sym_close_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token2] = ACTIONS(4511), + [aux_sym_file_position_statement_token3] = ACTIONS(4511), + [aux_sym_file_position_statement_token4] = ACTIONS(4511), + [aux_sym_allocate_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_logical_expression_token5] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_LPAREN_SLASH] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [aux_sym_boolean_literal_token1] = ACTIONS(4513), + [aux_sym_boolean_literal_token2] = ACTIONS(4513), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4513), + [sym__float_literal] = ACTIONS(4513), + [sym__boz_literal] = ACTIONS(4513), + [sym__string_literal] = ACTIONS(4513), + [sym__string_literal_kind] = ACTIONS(4513), }, - [1335] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), + [1340] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_program_statement_token2] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_subroutine_call_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_keyword_statement_token4] = ACTIONS(4323), - [aux_sym_keyword_statement_token6] = ACTIONS(4323), - [aux_sym_keyword_statement_token7] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym_do_loop_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym__inline_where_statement_token1] = ACTIONS(4323), - [aux_sym__forall_control_expression_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token3] = ACTIONS(4323), - [aux_sym_select_type_statement_token1] = ACTIONS(4323), - [aux_sym_select_rank_statement_token2] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_associate_statement_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_print_statement_token1] = ACTIONS(4323), - [aux_sym_open_statement_token1] = ACTIONS(4323), - [aux_sym_close_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token2] = ACTIONS(4323), - [aux_sym_file_position_statement_token3] = ACTIONS(4323), - [aux_sym_file_position_statement_token4] = ACTIONS(4323), - [aux_sym_allocate_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_logical_expression_token5] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LPAREN_SLASH] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_boolean_literal_token1] = ACTIONS(4325), - [aux_sym_boolean_literal_token2] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_subroutine_call_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_keyword_statement_token4] = ACTIONS(4615), + [aux_sym_keyword_statement_token6] = ACTIONS(4615), + [aux_sym_keyword_statement_token7] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym_do_loop_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym__inline_where_statement_token1] = ACTIONS(4615), + [aux_sym__forall_control_expression_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token3] = ACTIONS(4615), + [aux_sym_select_type_statement_token1] = ACTIONS(4615), + [aux_sym_select_rank_statement_token2] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_associate_statement_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_print_statement_token1] = ACTIONS(4615), + [aux_sym_open_statement_token1] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token2] = ACTIONS(4615), + [aux_sym_file_position_statement_token3] = ACTIONS(4615), + [aux_sym_file_position_statement_token4] = ACTIONS(4615), + [aux_sym_allocate_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_logical_expression_token5] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LPAREN_SLASH] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(4617), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - [sym__float_literal] = ACTIONS(4325), - [sym__boz_literal] = ACTIONS(4325), - [sym__string_literal] = ACTIONS(4325), - [sym__string_literal_kind] = ACTIONS(4325), - }, - [1336] = { - [aux_sym_preproc_include_token1] = ACTIONS(4277), - [aux_sym_preproc_def_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4277), - [sym_preproc_directive] = ACTIONS(4277), - [anon_sym_LPAREN2] = ACTIONS(4277), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4277), - [aux_sym_end_program_statement_token2] = ACTIONS(4277), - [aux_sym_interface_statement_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4277), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4277), - [aux_sym_language_binding_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token3] = ACTIONS(4277), - [aux_sym_contains_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token2] = ACTIONS(4277), - [aux_sym_implicit_statement_token1] = ACTIONS(4277), - [aux_sym_implicit_statement_token3] = ACTIONS(4277), - [aux_sym_implicit_statement_token4] = ACTIONS(4277), - [aux_sym_save_statement_token1] = ACTIONS(4277), - [aux_sym_private_statement_token1] = ACTIONS(4277), - [aux_sym_public_statement_token1] = ACTIONS(4277), - [aux_sym_namelist_statement_token1] = ACTIONS(4277), - [aux_sym_common_statement_token1] = ACTIONS(4277), - [aux_sym_import_statement_token1] = ACTIONS(4277), - [aux_sym_derived_type_definition_token1] = ACTIONS(4277), - [aux_sym_abstract_specifier_token1] = ACTIONS(4277), - [aux_sym_procedure_attribute_token6] = ACTIONS(4277), - [aux_sym_variable_attributes_token1] = ACTIONS(4277), - [aux_sym_variable_attributes_token2] = ACTIONS(4277), - [aux_sym_variable_attributes_token3] = ACTIONS(4277), - [aux_sym_variable_attributes_token4] = ACTIONS(4277), - [aux_sym_variable_attributes_token5] = ACTIONS(4277), - [aux_sym__intrinsic_type_token1] = ACTIONS(4277), - [aux_sym__intrinsic_type_token2] = ACTIONS(4277), - [aux_sym__intrinsic_type_token3] = ACTIONS(4277), - [aux_sym__intrinsic_type_token4] = ACTIONS(4277), - [aux_sym__intrinsic_type_token6] = ACTIONS(4277), - [aux_sym__intrinsic_type_token7] = ACTIONS(4277), - [aux_sym__intrinsic_type_token8] = ACTIONS(4277), - [aux_sym__intrinsic_type_token9] = ACTIONS(4277), - [aux_sym__intrinsic_type_token10] = ACTIONS(4277), - [aux_sym_derived_type_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4277), - [aux_sym_type_qualifier_token1] = ACTIONS(4277), - [aux_sym_type_qualifier_token2] = ACTIONS(4277), - [aux_sym_equivalence_statement_token1] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4279), - [aux_sym_stop_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token2] = ACTIONS(4277), - [aux_sym_subroutine_call_token1] = ACTIONS(4277), - [aux_sym_keyword_statement_token1] = ACTIONS(4277), - [aux_sym_keyword_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token3] = ACTIONS(4277), - [aux_sym_keyword_statement_token4] = ACTIONS(4277), - [aux_sym_keyword_statement_token6] = ACTIONS(4277), - [aux_sym_keyword_statement_token7] = ACTIONS(4277), - [aux_sym_include_statement_token1] = ACTIONS(4277), - [aux_sym_data_statement_token1] = ACTIONS(4277), - [aux_sym_do_loop_statement_token1] = ACTIONS(4277), - [aux_sym__inline_if_statement_token1] = ACTIONS(4277), - [aux_sym_end_if_statement_token1] = ACTIONS(4277), - [aux_sym_elseif_clause_token2] = ACTIONS(4277), - [aux_sym__inline_where_statement_token1] = ACTIONS(4277), - [aux_sym__forall_control_expression_token1] = ACTIONS(4277), - [aux_sym_select_case_statement_token1] = ACTIONS(4277), - [aux_sym_select_case_statement_token3] = ACTIONS(4277), - [aux_sym_select_type_statement_token1] = ACTIONS(4277), - [aux_sym_select_rank_statement_token2] = ACTIONS(4277), - [aux_sym_block_construct_token1] = ACTIONS(4277), - [aux_sym_associate_statement_token1] = ACTIONS(4277), - [aux_sym_format_statement_token1] = ACTIONS(4277), - [aux_sym_print_statement_token1] = ACTIONS(4277), - [aux_sym_open_statement_token1] = ACTIONS(4277), - [aux_sym_close_statement_token1] = ACTIONS(4277), - [aux_sym_inquire_statement_token1] = ACTIONS(4277), - [aux_sym_enum_statement_token1] = ACTIONS(4277), - [aux_sym_file_position_statement_token1] = ACTIONS(4277), - [aux_sym_file_position_statement_token2] = ACTIONS(4277), - [aux_sym_file_position_statement_token3] = ACTIONS(4277), - [aux_sym_file_position_statement_token4] = ACTIONS(4277), - [aux_sym_allocate_statement_token1] = ACTIONS(4277), - [aux_sym_entry_statement_token1] = ACTIONS(4277), - [aux_sym_logical_expression_token5] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LPAREN_SLASH] = ACTIONS(4279), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_boolean_literal_token1] = ACTIONS(4279), - [aux_sym_boolean_literal_token2] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token2] = ACTIONS(4277), - [aux_sym_coarray_statement_token6] = ACTIONS(4277), - [aux_sym_coarray_statement_token8] = ACTIONS(4277), - [aux_sym_coarray_statement_token11] = ACTIONS(4277), - [aux_sym_coarray_statement_token12] = ACTIONS(4277), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4277), - [aux_sym_identifier_token1] = ACTIONS(4277), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4279), - [sym__float_literal] = ACTIONS(4279), - [sym__boz_literal] = ACTIONS(4279), - [sym__string_literal] = ACTIONS(4279), - [sym__string_literal_kind] = ACTIONS(4279), + [sym__integer_literal] = ACTIONS(4617), + [sym__float_literal] = ACTIONS(4617), + [sym__boz_literal] = ACTIONS(4617), + [sym__string_literal] = ACTIONS(4617), + [sym__string_literal_kind] = ACTIONS(4617), }, - [1337] = { - [aux_sym_preproc_include_token1] = ACTIONS(4331), - [aux_sym_preproc_def_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token1] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), - [sym_preproc_directive] = ACTIONS(4331), - [anon_sym_LPAREN2] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4333), - [anon_sym_DASH] = ACTIONS(4333), + [1341] = { + [aux_sym_preproc_include_token1] = ACTIONS(5406), + [aux_sym_preproc_def_token1] = ACTIONS(5406), + [aux_sym_preproc_if_token1] = ACTIONS(5406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5406), + [sym_preproc_directive] = ACTIONS(5406), + [anon_sym_LPAREN2] = ACTIONS(5406), + [anon_sym_PLUS] = ACTIONS(5408), + [anon_sym_DASH] = ACTIONS(5408), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4331), - [aux_sym_end_program_statement_token2] = ACTIONS(4331), - [aux_sym_interface_statement_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4331), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4331), - [aux_sym_language_binding_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token3] = ACTIONS(4331), - [aux_sym_contains_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token2] = ACTIONS(4331), - [aux_sym_implicit_statement_token1] = ACTIONS(4331), - [aux_sym_implicit_statement_token3] = ACTIONS(4331), - [aux_sym_implicit_statement_token4] = ACTIONS(4331), - [aux_sym_save_statement_token1] = ACTIONS(4331), - [aux_sym_private_statement_token1] = ACTIONS(4331), - [aux_sym_public_statement_token1] = ACTIONS(4331), - [aux_sym_namelist_statement_token1] = ACTIONS(4331), - [aux_sym_common_statement_token1] = ACTIONS(4331), - [aux_sym_import_statement_token1] = ACTIONS(4331), - [aux_sym_derived_type_definition_token1] = ACTIONS(4331), - [aux_sym_abstract_specifier_token1] = ACTIONS(4331), - [aux_sym_procedure_attribute_token6] = ACTIONS(4331), - [aux_sym_variable_attributes_token1] = ACTIONS(4331), - [aux_sym_variable_attributes_token2] = ACTIONS(4331), - [aux_sym_variable_attributes_token3] = ACTIONS(4331), - [aux_sym_variable_attributes_token4] = ACTIONS(4331), - [aux_sym_variable_attributes_token5] = ACTIONS(4331), - [aux_sym__intrinsic_type_token1] = ACTIONS(4331), - [aux_sym__intrinsic_type_token2] = ACTIONS(4331), - [aux_sym__intrinsic_type_token3] = ACTIONS(4331), - [aux_sym__intrinsic_type_token4] = ACTIONS(4331), - [aux_sym__intrinsic_type_token6] = ACTIONS(4331), - [aux_sym__intrinsic_type_token7] = ACTIONS(4331), - [aux_sym__intrinsic_type_token8] = ACTIONS(4331), - [aux_sym__intrinsic_type_token9] = ACTIONS(4331), - [aux_sym__intrinsic_type_token10] = ACTIONS(4331), - [aux_sym_derived_type_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4331), - [aux_sym_type_qualifier_token1] = ACTIONS(4331), - [aux_sym_type_qualifier_token2] = ACTIONS(4331), - [aux_sym_equivalence_statement_token1] = ACTIONS(4331), - [anon_sym_SEMI] = ACTIONS(4333), - [aux_sym_stop_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token2] = ACTIONS(4331), - [aux_sym_subroutine_call_token1] = ACTIONS(4331), - [aux_sym_keyword_statement_token1] = ACTIONS(4331), - [aux_sym_keyword_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token3] = ACTIONS(4331), - [aux_sym_keyword_statement_token4] = ACTIONS(4331), - [aux_sym_keyword_statement_token6] = ACTIONS(4331), - [aux_sym_keyword_statement_token7] = ACTIONS(4331), - [aux_sym_include_statement_token1] = ACTIONS(4331), - [aux_sym_data_statement_token1] = ACTIONS(4331), - [aux_sym_do_loop_statement_token1] = ACTIONS(4331), - [aux_sym__inline_if_statement_token1] = ACTIONS(4331), - [aux_sym_end_if_statement_token1] = ACTIONS(4331), - [aux_sym_elseif_clause_token2] = ACTIONS(4331), - [aux_sym__inline_where_statement_token1] = ACTIONS(4331), - [aux_sym__forall_control_expression_token1] = ACTIONS(4331), - [aux_sym_select_case_statement_token1] = ACTIONS(4331), - [aux_sym_select_case_statement_token3] = ACTIONS(4331), - [aux_sym_select_type_statement_token1] = ACTIONS(4331), - [aux_sym_select_rank_statement_token2] = ACTIONS(4331), - [aux_sym_block_construct_token1] = ACTIONS(4331), - [aux_sym_associate_statement_token1] = ACTIONS(4331), - [aux_sym_format_statement_token1] = ACTIONS(4331), - [aux_sym_print_statement_token1] = ACTIONS(4331), - [aux_sym_open_statement_token1] = ACTIONS(4331), - [aux_sym_close_statement_token1] = ACTIONS(4331), - [aux_sym_inquire_statement_token1] = ACTIONS(4331), - [aux_sym_enum_statement_token1] = ACTIONS(4331), - [aux_sym_file_position_statement_token1] = ACTIONS(4331), - [aux_sym_file_position_statement_token2] = ACTIONS(4331), - [aux_sym_file_position_statement_token3] = ACTIONS(4331), - [aux_sym_file_position_statement_token4] = ACTIONS(4331), - [aux_sym_allocate_statement_token1] = ACTIONS(4331), - [aux_sym_entry_statement_token1] = ACTIONS(4331), - [aux_sym_logical_expression_token5] = ACTIONS(4333), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_LPAREN_SLASH] = ACTIONS(4333), - [anon_sym_LBRACK] = ACTIONS(4333), - [aux_sym_boolean_literal_token1] = ACTIONS(4333), - [aux_sym_boolean_literal_token2] = ACTIONS(4333), - [aux_sym_null_literal_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token2] = ACTIONS(4331), - [aux_sym_coarray_statement_token6] = ACTIONS(4331), - [aux_sym_coarray_statement_token8] = ACTIONS(4331), - [aux_sym_coarray_statement_token11] = ACTIONS(4331), - [aux_sym_coarray_statement_token12] = ACTIONS(4331), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4331), - [aux_sym_identifier_token1] = ACTIONS(4331), + [aux_sym_end_program_statement_token1] = ACTIONS(5406), + [aux_sym_end_program_statement_token2] = ACTIONS(5406), + [aux_sym_interface_statement_token1] = ACTIONS(5406), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5406), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5406), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5406), + [aux_sym_language_binding_token1] = ACTIONS(5406), + [aux_sym_procedure_attributes_token1] = ACTIONS(5406), + [aux_sym_procedure_attributes_token3] = ACTIONS(5406), + [aux_sym_contains_statement_token1] = ACTIONS(5406), + [aux_sym_use_statement_token1] = ACTIONS(5406), + [aux_sym_use_statement_token2] = ACTIONS(5406), + [aux_sym_implicit_statement_token1] = ACTIONS(5406), + [aux_sym_implicit_statement_token3] = ACTIONS(5406), + [aux_sym_implicit_statement_token4] = ACTIONS(5406), + [aux_sym_save_statement_token1] = ACTIONS(5406), + [aux_sym_private_statement_token1] = ACTIONS(5406), + [aux_sym_public_statement_token1] = ACTIONS(5406), + [aux_sym_namelist_statement_token1] = ACTIONS(5406), + [aux_sym_common_statement_token1] = ACTIONS(5406), + [aux_sym_import_statement_token1] = ACTIONS(5406), + [aux_sym_derived_type_definition_token1] = ACTIONS(5406), + [aux_sym_abstract_specifier_token1] = ACTIONS(5406), + [aux_sym_procedure_attribute_token6] = ACTIONS(5406), + [aux_sym_variable_attributes_token1] = ACTIONS(5406), + [aux_sym_variable_attributes_token2] = ACTIONS(5406), + [aux_sym_variable_attributes_token3] = ACTIONS(5406), + [aux_sym_variable_attributes_token4] = ACTIONS(5406), + [aux_sym_variable_attributes_token5] = ACTIONS(5406), + [aux_sym__intrinsic_type_token1] = ACTIONS(5406), + [aux_sym__intrinsic_type_token2] = ACTIONS(5406), + [aux_sym__intrinsic_type_token3] = ACTIONS(5406), + [aux_sym__intrinsic_type_token4] = ACTIONS(5406), + [aux_sym__intrinsic_type_token6] = ACTIONS(5406), + [aux_sym__intrinsic_type_token7] = ACTIONS(5406), + [aux_sym__intrinsic_type_token8] = ACTIONS(5406), + [aux_sym__intrinsic_type_token9] = ACTIONS(5406), + [aux_sym__intrinsic_type_token10] = ACTIONS(5406), + [aux_sym_derived_type_token1] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5406), + [aux_sym_type_qualifier_token1] = ACTIONS(5406), + [aux_sym_type_qualifier_token2] = ACTIONS(5406), + [aux_sym_equivalence_statement_token1] = ACTIONS(5406), + [anon_sym_SEMI] = ACTIONS(5408), + [aux_sym_stop_statement_token1] = ACTIONS(5406), + [aux_sym_stop_statement_token2] = ACTIONS(5406), + [aux_sym_subroutine_call_token1] = ACTIONS(5406), + [aux_sym_keyword_statement_token1] = ACTIONS(5406), + [aux_sym_keyword_statement_token2] = ACTIONS(5406), + [aux_sym_keyword_statement_token3] = ACTIONS(5406), + [aux_sym_keyword_statement_token4] = ACTIONS(5406), + [aux_sym_keyword_statement_token6] = ACTIONS(5406), + [aux_sym_keyword_statement_token7] = ACTIONS(5406), + [aux_sym_include_statement_token1] = ACTIONS(5406), + [aux_sym_data_statement_token1] = ACTIONS(5406), + [aux_sym_do_loop_statement_token1] = ACTIONS(5406), + [aux_sym__inline_if_statement_token1] = ACTIONS(5406), + [aux_sym_end_if_statement_token1] = ACTIONS(5406), + [aux_sym_elseif_clause_token2] = ACTIONS(5406), + [aux_sym__inline_where_statement_token1] = ACTIONS(5406), + [aux_sym__forall_control_expression_token1] = ACTIONS(5406), + [aux_sym_select_case_statement_token1] = ACTIONS(5406), + [aux_sym_select_case_statement_token3] = ACTIONS(5406), + [aux_sym_select_type_statement_token1] = ACTIONS(5406), + [aux_sym_select_rank_statement_token2] = ACTIONS(5406), + [aux_sym_block_construct_token1] = ACTIONS(5406), + [aux_sym_associate_statement_token1] = ACTIONS(5406), + [aux_sym_format_statement_token1] = ACTIONS(5406), + [aux_sym_print_statement_token1] = ACTIONS(5406), + [aux_sym_open_statement_token1] = ACTIONS(5406), + [aux_sym_close_statement_token1] = ACTIONS(5406), + [aux_sym_inquire_statement_token1] = ACTIONS(5406), + [aux_sym_enum_statement_token1] = ACTIONS(5406), + [aux_sym_file_position_statement_token1] = ACTIONS(5406), + [aux_sym_file_position_statement_token2] = ACTIONS(5406), + [aux_sym_file_position_statement_token3] = ACTIONS(5406), + [aux_sym_file_position_statement_token4] = ACTIONS(5406), + [aux_sym_allocate_statement_token1] = ACTIONS(5406), + [aux_sym_entry_statement_token1] = ACTIONS(5406), + [aux_sym_logical_expression_token5] = ACTIONS(5408), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_LPAREN_SLASH] = ACTIONS(5408), + [anon_sym_LBRACK] = ACTIONS(5408), + [aux_sym_boolean_literal_token1] = ACTIONS(5408), + [aux_sym_boolean_literal_token2] = ACTIONS(5408), + [aux_sym_null_literal_token1] = ACTIONS(5406), + [aux_sym_coarray_statement_token1] = ACTIONS(5406), + [aux_sym_coarray_statement_token2] = ACTIONS(5406), + [aux_sym_coarray_statement_token6] = ACTIONS(5406), + [aux_sym_coarray_statement_token8] = ACTIONS(5406), + [aux_sym_coarray_statement_token11] = ACTIONS(5406), + [aux_sym_coarray_statement_token12] = ACTIONS(5406), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5406), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5406), + [aux_sym_identifier_token1] = ACTIONS(5406), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4333), - [sym__float_literal] = ACTIONS(4333), - [sym__boz_literal] = ACTIONS(4333), - [sym__string_literal] = ACTIONS(4333), - [sym__string_literal_kind] = ACTIONS(4333), + [sym__integer_literal] = ACTIONS(5408), + [sym__float_literal] = ACTIONS(5408), + [sym__boz_literal] = ACTIONS(5408), + [sym__string_literal] = ACTIONS(5408), + [sym__string_literal_kind] = ACTIONS(5408), }, - [1338] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), + [1342] = { + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), + [anon_sym_LPAREN2] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_program_statement_token2] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_subroutine_call_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_keyword_statement_token4] = ACTIONS(4323), - [aux_sym_keyword_statement_token6] = ACTIONS(4323), - [aux_sym_keyword_statement_token7] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym_do_loop_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym__inline_where_statement_token1] = ACTIONS(4323), - [aux_sym__forall_control_expression_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token3] = ACTIONS(4323), - [aux_sym_select_type_statement_token1] = ACTIONS(4323), - [aux_sym_select_rank_statement_token2] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_associate_statement_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_print_statement_token1] = ACTIONS(4323), - [aux_sym_open_statement_token1] = ACTIONS(4323), - [aux_sym_close_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token2] = ACTIONS(4323), - [aux_sym_file_position_statement_token3] = ACTIONS(4323), - [aux_sym_file_position_statement_token4] = ACTIONS(4323), - [aux_sym_allocate_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_logical_expression_token5] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LPAREN_SLASH] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_boolean_literal_token1] = ACTIONS(4325), - [aux_sym_boolean_literal_token2] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_contains_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_subroutine_call_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_keyword_statement_token4] = ACTIONS(4511), + [aux_sym_keyword_statement_token6] = ACTIONS(4511), + [aux_sym_keyword_statement_token7] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym_do_loop_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym__inline_where_statement_token1] = ACTIONS(4511), + [aux_sym__forall_control_expression_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token3] = ACTIONS(4511), + [aux_sym_select_type_statement_token1] = ACTIONS(4511), + [aux_sym_select_rank_statement_token2] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_associate_statement_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_print_statement_token1] = ACTIONS(4511), + [aux_sym_open_statement_token1] = ACTIONS(4511), + [aux_sym_close_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token2] = ACTIONS(4511), + [aux_sym_file_position_statement_token3] = ACTIONS(4511), + [aux_sym_file_position_statement_token4] = ACTIONS(4511), + [aux_sym_allocate_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_logical_expression_token5] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_LPAREN_SLASH] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [aux_sym_boolean_literal_token1] = ACTIONS(4513), + [aux_sym_boolean_literal_token2] = ACTIONS(4513), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - [sym__float_literal] = ACTIONS(4325), - [sym__boz_literal] = ACTIONS(4325), - [sym__string_literal] = ACTIONS(4325), - [sym__string_literal_kind] = ACTIONS(4325), + [sym__integer_literal] = ACTIONS(4513), + [sym__float_literal] = ACTIONS(4513), + [sym__boz_literal] = ACTIONS(4513), + [sym__string_literal] = ACTIONS(4513), + [sym__string_literal_kind] = ACTIONS(4513), }, - [1339] = { + [1343] = { [aux_sym_preproc_include_token1] = ACTIONS(4335), [aux_sym_preproc_def_token1] = ACTIONS(4335), [aux_sym_preproc_if_token1] = ACTIONS(4335), @@ -269300,8 +269800,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), [sym_preproc_directive] = ACTIONS(4335), [anon_sym_LPAREN2] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4337), - [anon_sym_DASH] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4335), [aux_sym_end_program_statement_token2] = ACTIONS(4335), @@ -269358,7 +269858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(4335), [aux_sym_type_qualifier_token2] = ACTIONS(4335), [aux_sym_equivalence_statement_token1] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4341), [aux_sym_stop_statement_token1] = ACTIONS(4335), [aux_sym_stop_statement_token2] = ACTIONS(4335), [aux_sym_subroutine_call_token1] = ACTIONS(4335), @@ -269394,12 +269894,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4335), [aux_sym_allocate_statement_token1] = ACTIONS(4335), [aux_sym_entry_statement_token1] = ACTIONS(4335), - [aux_sym_logical_expression_token5] = ACTIONS(4337), + [aux_sym_logical_expression_token5] = ACTIONS(4341), [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_LPAREN_SLASH] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [aux_sym_boolean_literal_token1] = ACTIONS(4337), - [aux_sym_boolean_literal_token2] = ACTIONS(4337), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), [aux_sym_null_literal_token1] = ACTIONS(4335), [aux_sym_coarray_statement_token1] = ACTIONS(4335), [aux_sym_coarray_statement_token2] = ACTIONS(4335), @@ -269411,2388 +269911,2513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4337), - [sym__float_literal] = ACTIONS(4337), - [sym__boz_literal] = ACTIONS(4337), - [sym__string_literal] = ACTIONS(4337), - [sym__string_literal_kind] = ACTIONS(4337), - }, - [1340] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token2] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), - }, - [1341] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_program_statement_token2] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [1342] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), - }, - [1343] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, [1344] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [aux_sym_preproc_include_token1] = ACTIONS(5410), + [aux_sym_preproc_def_token1] = ACTIONS(5410), + [aux_sym_preproc_if_token1] = ACTIONS(5410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5410), + [sym_preproc_directive] = ACTIONS(5410), + [anon_sym_LPAREN2] = ACTIONS(5410), + [anon_sym_PLUS] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(5410), + [aux_sym_end_program_statement_token2] = ACTIONS(5410), + [aux_sym_interface_statement_token1] = ACTIONS(5410), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5410), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5410), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5410), + [aux_sym_language_binding_token1] = ACTIONS(5410), + [aux_sym_procedure_attributes_token1] = ACTIONS(5410), + [aux_sym_procedure_attributes_token3] = ACTIONS(5410), + [aux_sym_contains_statement_token1] = ACTIONS(5410), + [aux_sym_use_statement_token1] = ACTIONS(5410), + [aux_sym_use_statement_token2] = ACTIONS(5410), + [aux_sym_implicit_statement_token1] = ACTIONS(5410), + [aux_sym_implicit_statement_token3] = ACTIONS(5410), + [aux_sym_implicit_statement_token4] = ACTIONS(5410), + [aux_sym_save_statement_token1] = ACTIONS(5410), + [aux_sym_private_statement_token1] = ACTIONS(5410), + [aux_sym_public_statement_token1] = ACTIONS(5410), + [aux_sym_namelist_statement_token1] = ACTIONS(5410), + [aux_sym_common_statement_token1] = ACTIONS(5410), + [aux_sym_import_statement_token1] = ACTIONS(5410), + [aux_sym_derived_type_definition_token1] = ACTIONS(5410), + [aux_sym_abstract_specifier_token1] = ACTIONS(5410), + [aux_sym_procedure_attribute_token6] = ACTIONS(5410), + [aux_sym_variable_attributes_token1] = ACTIONS(5410), + [aux_sym_variable_attributes_token2] = ACTIONS(5410), + [aux_sym_variable_attributes_token3] = ACTIONS(5410), + [aux_sym_variable_attributes_token4] = ACTIONS(5410), + [aux_sym_variable_attributes_token5] = ACTIONS(5410), + [aux_sym__intrinsic_type_token1] = ACTIONS(5410), + [aux_sym__intrinsic_type_token2] = ACTIONS(5410), + [aux_sym__intrinsic_type_token3] = ACTIONS(5410), + [aux_sym__intrinsic_type_token4] = ACTIONS(5410), + [aux_sym__intrinsic_type_token6] = ACTIONS(5410), + [aux_sym__intrinsic_type_token7] = ACTIONS(5410), + [aux_sym__intrinsic_type_token8] = ACTIONS(5410), + [aux_sym__intrinsic_type_token9] = ACTIONS(5410), + [aux_sym__intrinsic_type_token10] = ACTIONS(5410), + [aux_sym_derived_type_token1] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5410), + [aux_sym_type_qualifier_token1] = ACTIONS(5410), + [aux_sym_type_qualifier_token2] = ACTIONS(5410), + [aux_sym_equivalence_statement_token1] = ACTIONS(5410), + [anon_sym_SEMI] = ACTIONS(5412), + [aux_sym_stop_statement_token1] = ACTIONS(5410), + [aux_sym_stop_statement_token2] = ACTIONS(5410), + [aux_sym_subroutine_call_token1] = ACTIONS(5410), + [aux_sym_keyword_statement_token1] = ACTIONS(5410), + [aux_sym_keyword_statement_token2] = ACTIONS(5410), + [aux_sym_keyword_statement_token3] = ACTIONS(5410), + [aux_sym_keyword_statement_token4] = ACTIONS(5410), + [aux_sym_keyword_statement_token6] = ACTIONS(5410), + [aux_sym_keyword_statement_token7] = ACTIONS(5410), + [aux_sym_include_statement_token1] = ACTIONS(5410), + [aux_sym_data_statement_token1] = ACTIONS(5410), + [aux_sym_do_loop_statement_token1] = ACTIONS(5410), + [aux_sym__inline_if_statement_token1] = ACTIONS(5410), + [aux_sym_end_if_statement_token1] = ACTIONS(5410), + [aux_sym_elseif_clause_token2] = ACTIONS(5410), + [aux_sym__inline_where_statement_token1] = ACTIONS(5410), + [aux_sym__forall_control_expression_token1] = ACTIONS(5410), + [aux_sym_select_case_statement_token1] = ACTIONS(5410), + [aux_sym_select_case_statement_token3] = ACTIONS(5410), + [aux_sym_select_type_statement_token1] = ACTIONS(5410), + [aux_sym_select_rank_statement_token2] = ACTIONS(5410), + [aux_sym_block_construct_token1] = ACTIONS(5410), + [aux_sym_associate_statement_token1] = ACTIONS(5410), + [aux_sym_format_statement_token1] = ACTIONS(5410), + [aux_sym_print_statement_token1] = ACTIONS(5410), + [aux_sym_open_statement_token1] = ACTIONS(5410), + [aux_sym_close_statement_token1] = ACTIONS(5410), + [aux_sym_inquire_statement_token1] = ACTIONS(5410), + [aux_sym_enum_statement_token1] = ACTIONS(5410), + [aux_sym_file_position_statement_token1] = ACTIONS(5410), + [aux_sym_file_position_statement_token2] = ACTIONS(5410), + [aux_sym_file_position_statement_token3] = ACTIONS(5410), + [aux_sym_file_position_statement_token4] = ACTIONS(5410), + [aux_sym_allocate_statement_token1] = ACTIONS(5410), + [aux_sym_entry_statement_token1] = ACTIONS(5410), + [aux_sym_logical_expression_token5] = ACTIONS(5412), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_LPAREN_SLASH] = ACTIONS(5412), + [anon_sym_LBRACK] = ACTIONS(5412), + [aux_sym_boolean_literal_token1] = ACTIONS(5412), + [aux_sym_boolean_literal_token2] = ACTIONS(5412), + [aux_sym_null_literal_token1] = ACTIONS(5410), + [aux_sym_coarray_statement_token1] = ACTIONS(5410), + [aux_sym_coarray_statement_token2] = ACTIONS(5410), + [aux_sym_coarray_statement_token6] = ACTIONS(5410), + [aux_sym_coarray_statement_token8] = ACTIONS(5410), + [aux_sym_coarray_statement_token11] = ACTIONS(5410), + [aux_sym_coarray_statement_token12] = ACTIONS(5410), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5410), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5410), + [aux_sym_identifier_token1] = ACTIONS(5410), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(5412), + [sym__float_literal] = ACTIONS(5412), + [sym__boz_literal] = ACTIONS(5412), + [sym__string_literal] = ACTIONS(5412), + [sym__string_literal_kind] = ACTIONS(5412), }, [1345] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [1346] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_subroutine_call_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_keyword_statement_token4] = ACTIONS(4379), + [aux_sym_keyword_statement_token6] = ACTIONS(4379), + [aux_sym_keyword_statement_token7] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym_do_loop_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym__inline_where_statement_token1] = ACTIONS(4379), + [aux_sym__forall_control_expression_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token3] = ACTIONS(4379), + [aux_sym_select_type_statement_token1] = ACTIONS(4379), + [aux_sym_select_rank_statement_token2] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_associate_statement_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_print_statement_token1] = ACTIONS(4379), + [aux_sym_open_statement_token1] = ACTIONS(4379), + [aux_sym_close_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token2] = ACTIONS(4379), + [aux_sym_file_position_statement_token3] = ACTIONS(4379), + [aux_sym_file_position_statement_token4] = ACTIONS(4379), + [aux_sym_allocate_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_logical_expression_token5] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LPAREN_SLASH] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [aux_sym_boolean_literal_token1] = ACTIONS(4381), + [aux_sym_boolean_literal_token2] = ACTIONS(4381), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4381), + [sym__float_literal] = ACTIONS(4381), + [sym__boz_literal] = ACTIONS(4381), + [sym__string_literal] = ACTIONS(4381), + [sym__string_literal_kind] = ACTIONS(4381), + }, + [1346] = { + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_end_program_statement_token2] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1347] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_subroutine_call_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_keyword_statement_token4] = ACTIONS(4383), + [aux_sym_keyword_statement_token6] = ACTIONS(4383), + [aux_sym_keyword_statement_token7] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym_do_loop_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym__inline_where_statement_token1] = ACTIONS(4383), + [aux_sym__forall_control_expression_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token3] = ACTIONS(4383), + [aux_sym_select_type_statement_token1] = ACTIONS(4383), + [aux_sym_select_rank_statement_token2] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_associate_statement_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_print_statement_token1] = ACTIONS(4383), + [aux_sym_open_statement_token1] = ACTIONS(4383), + [aux_sym_close_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token2] = ACTIONS(4383), + [aux_sym_file_position_statement_token3] = ACTIONS(4383), + [aux_sym_file_position_statement_token4] = ACTIONS(4383), + [aux_sym_allocate_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_logical_expression_token5] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LPAREN_SLASH] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [aux_sym_boolean_literal_token1] = ACTIONS(4385), + [aux_sym_boolean_literal_token2] = ACTIONS(4385), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4385), + [sym__float_literal] = ACTIONS(4385), + [sym__boz_literal] = ACTIONS(4385), + [sym__string_literal] = ACTIONS(4385), + [sym__string_literal_kind] = ACTIONS(4385), }, [1348] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_subroutine_call_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_keyword_statement_token4] = ACTIONS(4387), + [aux_sym_keyword_statement_token6] = ACTIONS(4387), + [aux_sym_keyword_statement_token7] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym_do_loop_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym__inline_where_statement_token1] = ACTIONS(4387), + [aux_sym__forall_control_expression_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token3] = ACTIONS(4387), + [aux_sym_select_type_statement_token1] = ACTIONS(4387), + [aux_sym_select_rank_statement_token2] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_associate_statement_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_print_statement_token1] = ACTIONS(4387), + [aux_sym_open_statement_token1] = ACTIONS(4387), + [aux_sym_close_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token2] = ACTIONS(4387), + [aux_sym_file_position_statement_token3] = ACTIONS(4387), + [aux_sym_file_position_statement_token4] = ACTIONS(4387), + [aux_sym_allocate_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_logical_expression_token5] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LPAREN_SLASH] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [aux_sym_boolean_literal_token1] = ACTIONS(4389), + [aux_sym_boolean_literal_token2] = ACTIONS(4389), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(4389), + [sym__float_literal] = ACTIONS(4389), + [sym__boz_literal] = ACTIONS(4389), + [sym__string_literal] = ACTIONS(4389), + [sym__string_literal_kind] = ACTIONS(4389), }, [1349] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_subroutine_call_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_keyword_statement_token4] = ACTIONS(5002), + [aux_sym_keyword_statement_token6] = ACTIONS(5002), + [aux_sym_keyword_statement_token7] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym_do_loop_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym__inline_where_statement_token1] = ACTIONS(5002), + [aux_sym__forall_control_expression_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token3] = ACTIONS(5002), + [aux_sym_select_type_statement_token1] = ACTIONS(5002), + [aux_sym_select_rank_statement_token2] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_associate_statement_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_print_statement_token1] = ACTIONS(5002), + [aux_sym_open_statement_token1] = ACTIONS(5002), + [aux_sym_close_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token2] = ACTIONS(5002), + [aux_sym_file_position_statement_token3] = ACTIONS(5002), + [aux_sym_file_position_statement_token4] = ACTIONS(5002), + [aux_sym_allocate_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_logical_expression_token5] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_LPAREN_SLASH] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [aux_sym_boolean_literal_token1] = ACTIONS(5004), + [aux_sym_boolean_literal_token2] = ACTIONS(5004), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5004), + [sym__float_literal] = ACTIONS(5004), + [sym__boz_literal] = ACTIONS(5004), + [sym__string_literal] = ACTIONS(5004), + [sym__string_literal_kind] = ACTIONS(5004), }, [1350] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_end_program_statement_token2] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, [1351] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_end_function_statement_token1] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1352] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [1352] = { + [aux_sym_preproc_include_token1] = ACTIONS(5414), + [aux_sym_preproc_def_token1] = ACTIONS(5414), + [aux_sym_preproc_if_token1] = ACTIONS(5414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5414), + [sym_preproc_directive] = ACTIONS(5414), + [anon_sym_LPAREN2] = ACTIONS(5414), + [anon_sym_PLUS] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5414), + [aux_sym_interface_statement_token1] = ACTIONS(5414), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5414), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5414), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5414), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5414), + [aux_sym_language_binding_token1] = ACTIONS(5414), + [aux_sym_procedure_attributes_token1] = ACTIONS(5414), + [aux_sym_procedure_attributes_token3] = ACTIONS(5414), + [aux_sym_contains_statement_token1] = ACTIONS(5414), + [aux_sym_use_statement_token1] = ACTIONS(5414), + [aux_sym_use_statement_token2] = ACTIONS(5414), + [aux_sym_implicit_statement_token1] = ACTIONS(5414), + [aux_sym_implicit_statement_token3] = ACTIONS(5414), + [aux_sym_implicit_statement_token4] = ACTIONS(5414), + [aux_sym_save_statement_token1] = ACTIONS(5414), + [aux_sym_private_statement_token1] = ACTIONS(5414), + [aux_sym_public_statement_token1] = ACTIONS(5414), + [aux_sym_namelist_statement_token1] = ACTIONS(5414), + [aux_sym_common_statement_token1] = ACTIONS(5414), + [aux_sym_import_statement_token1] = ACTIONS(5414), + [aux_sym_derived_type_definition_token1] = ACTIONS(5414), + [aux_sym_abstract_specifier_token1] = ACTIONS(5414), + [aux_sym_procedure_attribute_token6] = ACTIONS(5414), + [aux_sym_variable_attributes_token1] = ACTIONS(5414), + [aux_sym_variable_attributes_token2] = ACTIONS(5414), + [aux_sym_variable_attributes_token3] = ACTIONS(5414), + [aux_sym_variable_attributes_token4] = ACTIONS(5414), + [aux_sym_variable_attributes_token5] = ACTIONS(5414), + [aux_sym__intrinsic_type_token1] = ACTIONS(5414), + [aux_sym__intrinsic_type_token2] = ACTIONS(5414), + [aux_sym__intrinsic_type_token3] = ACTIONS(5414), + [aux_sym__intrinsic_type_token4] = ACTIONS(5414), + [aux_sym__intrinsic_type_token6] = ACTIONS(5414), + [aux_sym__intrinsic_type_token7] = ACTIONS(5414), + [aux_sym__intrinsic_type_token8] = ACTIONS(5414), + [aux_sym__intrinsic_type_token9] = ACTIONS(5414), + [aux_sym__intrinsic_type_token10] = ACTIONS(5414), + [aux_sym_derived_type_token1] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5414), + [aux_sym_type_qualifier_token1] = ACTIONS(5414), + [aux_sym_type_qualifier_token2] = ACTIONS(5414), + [aux_sym_equivalence_statement_token1] = ACTIONS(5414), + [anon_sym_SEMI] = ACTIONS(5416), + [aux_sym_stop_statement_token1] = ACTIONS(5414), + [aux_sym_stop_statement_token2] = ACTIONS(5414), + [aux_sym_subroutine_call_token1] = ACTIONS(5414), + [aux_sym_keyword_statement_token1] = ACTIONS(5414), + [aux_sym_keyword_statement_token2] = ACTIONS(5414), + [aux_sym_keyword_statement_token3] = ACTIONS(5414), + [aux_sym_keyword_statement_token4] = ACTIONS(5414), + [aux_sym_keyword_statement_token6] = ACTIONS(5414), + [aux_sym_keyword_statement_token7] = ACTIONS(5414), + [aux_sym_include_statement_token1] = ACTIONS(5414), + [aux_sym_data_statement_token1] = ACTIONS(5414), + [aux_sym_do_loop_statement_token1] = ACTIONS(5414), + [aux_sym__inline_if_statement_token1] = ACTIONS(5414), + [aux_sym_end_if_statement_token1] = ACTIONS(5414), + [aux_sym_elseif_clause_token2] = ACTIONS(5414), + [aux_sym__inline_where_statement_token1] = ACTIONS(5414), + [aux_sym__forall_control_expression_token1] = ACTIONS(5414), + [aux_sym_select_case_statement_token1] = ACTIONS(5414), + [aux_sym_select_case_statement_token3] = ACTIONS(5414), + [aux_sym_select_type_statement_token1] = ACTIONS(5414), + [aux_sym_select_rank_statement_token2] = ACTIONS(5414), + [aux_sym_block_construct_token1] = ACTIONS(5414), + [aux_sym_associate_statement_token1] = ACTIONS(5414), + [aux_sym_format_statement_token1] = ACTIONS(5414), + [aux_sym_print_statement_token1] = ACTIONS(5414), + [aux_sym_open_statement_token1] = ACTIONS(5414), + [aux_sym_close_statement_token1] = ACTIONS(5414), + [aux_sym_inquire_statement_token1] = ACTIONS(5414), + [aux_sym_enum_statement_token1] = ACTIONS(5414), + [aux_sym_file_position_statement_token1] = ACTIONS(5414), + [aux_sym_file_position_statement_token2] = ACTIONS(5414), + [aux_sym_file_position_statement_token3] = ACTIONS(5414), + [aux_sym_file_position_statement_token4] = ACTIONS(5414), + [aux_sym_allocate_statement_token1] = ACTIONS(5414), + [aux_sym_entry_statement_token1] = ACTIONS(5414), + [aux_sym_logical_expression_token5] = ACTIONS(5416), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_LPAREN_SLASH] = ACTIONS(5416), + [anon_sym_LBRACK] = ACTIONS(5416), + [aux_sym_boolean_literal_token1] = ACTIONS(5416), + [aux_sym_boolean_literal_token2] = ACTIONS(5416), + [aux_sym_null_literal_token1] = ACTIONS(5414), + [aux_sym_coarray_statement_token1] = ACTIONS(5414), + [aux_sym_coarray_statement_token2] = ACTIONS(5414), + [aux_sym_coarray_statement_token6] = ACTIONS(5414), + [aux_sym_coarray_statement_token8] = ACTIONS(5414), + [aux_sym_coarray_statement_token11] = ACTIONS(5414), + [aux_sym_coarray_statement_token12] = ACTIONS(5414), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5414), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5414), + [aux_sym_identifier_token1] = ACTIONS(5414), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5416), + [sym__float_literal] = ACTIONS(5416), + [sym__boz_literal] = ACTIONS(5416), + [sym__string_literal] = ACTIONS(5416), + [sym__string_literal_kind] = ACTIONS(5416), }, [1353] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token2] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_subroutine_call_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_keyword_statement_token4] = ACTIONS(5006), + [aux_sym_keyword_statement_token6] = ACTIONS(5006), + [aux_sym_keyword_statement_token7] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym_do_loop_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym__inline_where_statement_token1] = ACTIONS(5006), + [aux_sym__forall_control_expression_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token3] = ACTIONS(5006), + [aux_sym_select_type_statement_token1] = ACTIONS(5006), + [aux_sym_select_rank_statement_token2] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_associate_statement_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_print_statement_token1] = ACTIONS(5006), + [aux_sym_open_statement_token1] = ACTIONS(5006), + [aux_sym_close_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token2] = ACTIONS(5006), + [aux_sym_file_position_statement_token3] = ACTIONS(5006), + [aux_sym_file_position_statement_token4] = ACTIONS(5006), + [aux_sym_allocate_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_logical_expression_token5] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_LPAREN_SLASH] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [aux_sym_boolean_literal_token1] = ACTIONS(5008), + [aux_sym_boolean_literal_token2] = ACTIONS(5008), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + [sym__float_literal] = ACTIONS(5008), + [sym__boz_literal] = ACTIONS(5008), + [sym__string_literal] = ACTIONS(5008), + [sym__string_literal_kind] = ACTIONS(5008), + }, + [1354] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_LPAREN2] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_end_function_statement_token1] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_subroutine_call_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_keyword_statement_token4] = ACTIONS(5063), + [aux_sym_keyword_statement_token6] = ACTIONS(5063), + [aux_sym_keyword_statement_token7] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym_do_loop_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym__inline_where_statement_token1] = ACTIONS(5063), + [aux_sym__forall_control_expression_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token3] = ACTIONS(5063), + [aux_sym_select_type_statement_token1] = ACTIONS(5063), + [aux_sym_select_rank_statement_token2] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_associate_statement_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_print_statement_token1] = ACTIONS(5063), + [aux_sym_open_statement_token1] = ACTIONS(5063), + [aux_sym_close_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token2] = ACTIONS(5063), + [aux_sym_file_position_statement_token3] = ACTIONS(5063), + [aux_sym_file_position_statement_token4] = ACTIONS(5063), + [aux_sym_allocate_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_logical_expression_token5] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_LPAREN_SLASH] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [aux_sym_boolean_literal_token1] = ACTIONS(5065), + [aux_sym_boolean_literal_token2] = ACTIONS(5065), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + [sym__float_literal] = ACTIONS(5065), + [sym__boz_literal] = ACTIONS(5065), + [sym__string_literal] = ACTIONS(5065), + [sym__string_literal_kind] = ACTIONS(5065), + }, + [1355] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_end_function_statement_token1] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_subroutine_call_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_keyword_statement_token4] = ACTIONS(4982), + [aux_sym_keyword_statement_token6] = ACTIONS(4982), + [aux_sym_keyword_statement_token7] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym_do_loop_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym__inline_where_statement_token1] = ACTIONS(4982), + [aux_sym__forall_control_expression_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token3] = ACTIONS(4982), + [aux_sym_select_type_statement_token1] = ACTIONS(4982), + [aux_sym_select_rank_statement_token2] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_associate_statement_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_print_statement_token1] = ACTIONS(4982), + [aux_sym_open_statement_token1] = ACTIONS(4982), + [aux_sym_close_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token2] = ACTIONS(4982), + [aux_sym_file_position_statement_token3] = ACTIONS(4982), + [aux_sym_file_position_statement_token4] = ACTIONS(4982), + [aux_sym_allocate_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_logical_expression_token5] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_LPAREN_SLASH] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [aux_sym_boolean_literal_token1] = ACTIONS(4984), + [aux_sym_boolean_literal_token2] = ACTIONS(4984), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + [sym__float_literal] = ACTIONS(4984), + [sym__boz_literal] = ACTIONS(4984), + [sym__string_literal] = ACTIONS(4984), + [sym__string_literal_kind] = ACTIONS(4984), + }, + [1356] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_end_function_statement_token1] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_subroutine_call_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_keyword_statement_token4] = ACTIONS(4379), + [aux_sym_keyword_statement_token6] = ACTIONS(4379), + [aux_sym_keyword_statement_token7] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym_do_loop_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym__inline_where_statement_token1] = ACTIONS(4379), + [aux_sym__forall_control_expression_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token3] = ACTIONS(4379), + [aux_sym_select_type_statement_token1] = ACTIONS(4379), + [aux_sym_select_rank_statement_token2] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_associate_statement_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_print_statement_token1] = ACTIONS(4379), + [aux_sym_open_statement_token1] = ACTIONS(4379), + [aux_sym_close_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token2] = ACTIONS(4379), + [aux_sym_file_position_statement_token3] = ACTIONS(4379), + [aux_sym_file_position_statement_token4] = ACTIONS(4379), + [aux_sym_allocate_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_logical_expression_token5] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LPAREN_SLASH] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [aux_sym_boolean_literal_token1] = ACTIONS(4381), + [aux_sym_boolean_literal_token2] = ACTIONS(4381), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4381), + [sym__float_literal] = ACTIONS(4381), + [sym__boz_literal] = ACTIONS(4381), + [sym__string_literal] = ACTIONS(4381), + [sym__string_literal_kind] = ACTIONS(4381), }, - [1354] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [1357] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_end_function_statement_token1] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_subroutine_call_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_keyword_statement_token4] = ACTIONS(4383), + [aux_sym_keyword_statement_token6] = ACTIONS(4383), + [aux_sym_keyword_statement_token7] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym_do_loop_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym__inline_where_statement_token1] = ACTIONS(4383), + [aux_sym__forall_control_expression_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token3] = ACTIONS(4383), + [aux_sym_select_type_statement_token1] = ACTIONS(4383), + [aux_sym_select_rank_statement_token2] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_associate_statement_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_print_statement_token1] = ACTIONS(4383), + [aux_sym_open_statement_token1] = ACTIONS(4383), + [aux_sym_close_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token2] = ACTIONS(4383), + [aux_sym_file_position_statement_token3] = ACTIONS(4383), + [aux_sym_file_position_statement_token4] = ACTIONS(4383), + [aux_sym_allocate_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_logical_expression_token5] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LPAREN_SLASH] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [aux_sym_boolean_literal_token1] = ACTIONS(4385), + [aux_sym_boolean_literal_token2] = ACTIONS(4385), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4385), + [sym__float_literal] = ACTIONS(4385), + [sym__boz_literal] = ACTIONS(4385), + [sym__string_literal] = ACTIONS(4385), + [sym__string_literal_kind] = ACTIONS(4385), }, - [1355] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [1358] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_subroutine_call_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_keyword_statement_token4] = ACTIONS(5006), + [aux_sym_keyword_statement_token6] = ACTIONS(5006), + [aux_sym_keyword_statement_token7] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym_do_loop_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym__inline_where_statement_token1] = ACTIONS(5006), + [aux_sym__forall_control_expression_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token3] = ACTIONS(5006), + [aux_sym_select_type_statement_token1] = ACTIONS(5006), + [aux_sym_select_rank_statement_token2] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_associate_statement_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_print_statement_token1] = ACTIONS(5006), + [aux_sym_open_statement_token1] = ACTIONS(5006), + [aux_sym_close_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token2] = ACTIONS(5006), + [aux_sym_file_position_statement_token3] = ACTIONS(5006), + [aux_sym_file_position_statement_token4] = ACTIONS(5006), + [aux_sym_allocate_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_logical_expression_token5] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_LPAREN_SLASH] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [aux_sym_boolean_literal_token1] = ACTIONS(5008), + [aux_sym_boolean_literal_token2] = ACTIONS(5008), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + [sym__float_literal] = ACTIONS(5008), + [sym__boz_literal] = ACTIONS(5008), + [sym__string_literal] = ACTIONS(5008), + [sym__string_literal_kind] = ACTIONS(5008), + }, + [1359] = { + [aux_sym_preproc_include_token1] = ACTIONS(5418), + [aux_sym_preproc_def_token1] = ACTIONS(5418), + [aux_sym_preproc_if_token1] = ACTIONS(5418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5418), + [sym_preproc_directive] = ACTIONS(5418), + [anon_sym_LPAREN2] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5420), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(5418), + [aux_sym_end_program_statement_token2] = ACTIONS(5418), + [aux_sym_interface_statement_token1] = ACTIONS(5418), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5418), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5418), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5418), + [aux_sym_language_binding_token1] = ACTIONS(5418), + [aux_sym_procedure_attributes_token1] = ACTIONS(5418), + [aux_sym_procedure_attributes_token3] = ACTIONS(5418), + [aux_sym_contains_statement_token1] = ACTIONS(5418), + [aux_sym_use_statement_token1] = ACTIONS(5418), + [aux_sym_use_statement_token2] = ACTIONS(5418), + [aux_sym_implicit_statement_token1] = ACTIONS(5418), + [aux_sym_implicit_statement_token3] = ACTIONS(5418), + [aux_sym_implicit_statement_token4] = ACTIONS(5418), + [aux_sym_save_statement_token1] = ACTIONS(5418), + [aux_sym_private_statement_token1] = ACTIONS(5418), + [aux_sym_public_statement_token1] = ACTIONS(5418), + [aux_sym_namelist_statement_token1] = ACTIONS(5418), + [aux_sym_common_statement_token1] = ACTIONS(5418), + [aux_sym_import_statement_token1] = ACTIONS(5418), + [aux_sym_derived_type_definition_token1] = ACTIONS(5418), + [aux_sym_abstract_specifier_token1] = ACTIONS(5418), + [aux_sym_procedure_attribute_token6] = ACTIONS(5418), + [aux_sym_variable_attributes_token1] = ACTIONS(5418), + [aux_sym_variable_attributes_token2] = ACTIONS(5418), + [aux_sym_variable_attributes_token3] = ACTIONS(5418), + [aux_sym_variable_attributes_token4] = ACTIONS(5418), + [aux_sym_variable_attributes_token5] = ACTIONS(5418), + [aux_sym__intrinsic_type_token1] = ACTIONS(5418), + [aux_sym__intrinsic_type_token2] = ACTIONS(5418), + [aux_sym__intrinsic_type_token3] = ACTIONS(5418), + [aux_sym__intrinsic_type_token4] = ACTIONS(5418), + [aux_sym__intrinsic_type_token6] = ACTIONS(5418), + [aux_sym__intrinsic_type_token7] = ACTIONS(5418), + [aux_sym__intrinsic_type_token8] = ACTIONS(5418), + [aux_sym__intrinsic_type_token9] = ACTIONS(5418), + [aux_sym__intrinsic_type_token10] = ACTIONS(5418), + [aux_sym_derived_type_token1] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5418), + [aux_sym_type_qualifier_token1] = ACTIONS(5418), + [aux_sym_type_qualifier_token2] = ACTIONS(5418), + [aux_sym_equivalence_statement_token1] = ACTIONS(5418), + [anon_sym_SEMI] = ACTIONS(5420), + [aux_sym_stop_statement_token1] = ACTIONS(5418), + [aux_sym_stop_statement_token2] = ACTIONS(5418), + [aux_sym_subroutine_call_token1] = ACTIONS(5418), + [aux_sym_keyword_statement_token1] = ACTIONS(5418), + [aux_sym_keyword_statement_token2] = ACTIONS(5418), + [aux_sym_keyword_statement_token3] = ACTIONS(5418), + [aux_sym_keyword_statement_token4] = ACTIONS(5418), + [aux_sym_keyword_statement_token6] = ACTIONS(5418), + [aux_sym_keyword_statement_token7] = ACTIONS(5418), + [aux_sym_include_statement_token1] = ACTIONS(5418), + [aux_sym_data_statement_token1] = ACTIONS(5418), + [aux_sym_do_loop_statement_token1] = ACTIONS(5418), + [aux_sym__inline_if_statement_token1] = ACTIONS(5418), + [aux_sym_end_if_statement_token1] = ACTIONS(5418), + [aux_sym_elseif_clause_token2] = ACTIONS(5418), + [aux_sym__inline_where_statement_token1] = ACTIONS(5418), + [aux_sym__forall_control_expression_token1] = ACTIONS(5418), + [aux_sym_select_case_statement_token1] = ACTIONS(5418), + [aux_sym_select_case_statement_token3] = ACTIONS(5418), + [aux_sym_select_type_statement_token1] = ACTIONS(5418), + [aux_sym_select_rank_statement_token2] = ACTIONS(5418), + [aux_sym_block_construct_token1] = ACTIONS(5418), + [aux_sym_associate_statement_token1] = ACTIONS(5418), + [aux_sym_format_statement_token1] = ACTIONS(5418), + [aux_sym_print_statement_token1] = ACTIONS(5418), + [aux_sym_open_statement_token1] = ACTIONS(5418), + [aux_sym_close_statement_token1] = ACTIONS(5418), + [aux_sym_inquire_statement_token1] = ACTIONS(5418), + [aux_sym_enum_statement_token1] = ACTIONS(5418), + [aux_sym_file_position_statement_token1] = ACTIONS(5418), + [aux_sym_file_position_statement_token2] = ACTIONS(5418), + [aux_sym_file_position_statement_token3] = ACTIONS(5418), + [aux_sym_file_position_statement_token4] = ACTIONS(5418), + [aux_sym_allocate_statement_token1] = ACTIONS(5418), + [aux_sym_entry_statement_token1] = ACTIONS(5418), + [aux_sym_logical_expression_token5] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_LPAREN_SLASH] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [aux_sym_boolean_literal_token1] = ACTIONS(5420), + [aux_sym_boolean_literal_token2] = ACTIONS(5420), + [aux_sym_null_literal_token1] = ACTIONS(5418), + [aux_sym_coarray_statement_token1] = ACTIONS(5418), + [aux_sym_coarray_statement_token2] = ACTIONS(5418), + [aux_sym_coarray_statement_token6] = ACTIONS(5418), + [aux_sym_coarray_statement_token8] = ACTIONS(5418), + [aux_sym_coarray_statement_token11] = ACTIONS(5418), + [aux_sym_coarray_statement_token12] = ACTIONS(5418), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5418), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5418), + [aux_sym_identifier_token1] = ACTIONS(5418), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(5420), + [sym__float_literal] = ACTIONS(5420), + [sym__boz_literal] = ACTIONS(5420), + [sym__string_literal] = ACTIONS(5420), + [sym__string_literal_kind] = ACTIONS(5420), }, - [1356] = { - [aux_sym_preproc_include_token1] = ACTIONS(5081), - [aux_sym_preproc_def_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), - [sym_preproc_directive] = ACTIONS(5081), - [anon_sym_LPAREN2] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), + [1360] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5081), - [aux_sym_interface_statement_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5081), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), - [aux_sym_language_binding_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token3] = ACTIONS(5081), - [aux_sym_contains_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token2] = ACTIONS(5081), - [aux_sym_implicit_statement_token1] = ACTIONS(5081), - [aux_sym_implicit_statement_token3] = ACTIONS(5081), - [aux_sym_implicit_statement_token4] = ACTIONS(5081), - [aux_sym_save_statement_token1] = ACTIONS(5081), - [aux_sym_private_statement_token1] = ACTIONS(5081), - [aux_sym_public_statement_token1] = ACTIONS(5081), - [aux_sym_namelist_statement_token1] = ACTIONS(5081), - [aux_sym_common_statement_token1] = ACTIONS(5081), - [aux_sym_import_statement_token1] = ACTIONS(5081), - [aux_sym_derived_type_definition_token1] = ACTIONS(5081), - [aux_sym_abstract_specifier_token1] = ACTIONS(5081), - [aux_sym_procedure_attribute_token6] = ACTIONS(5081), - [aux_sym_variable_attributes_token1] = ACTIONS(5081), - [aux_sym_variable_attributes_token2] = ACTIONS(5081), - [aux_sym_variable_attributes_token3] = ACTIONS(5081), - [aux_sym_variable_attributes_token4] = ACTIONS(5081), - [aux_sym_variable_attributes_token5] = ACTIONS(5081), - [aux_sym__intrinsic_type_token1] = ACTIONS(5081), - [aux_sym__intrinsic_type_token2] = ACTIONS(5081), - [aux_sym__intrinsic_type_token3] = ACTIONS(5081), - [aux_sym__intrinsic_type_token4] = ACTIONS(5081), - [aux_sym__intrinsic_type_token6] = ACTIONS(5081), - [aux_sym__intrinsic_type_token7] = ACTIONS(5081), - [aux_sym__intrinsic_type_token8] = ACTIONS(5081), - [aux_sym__intrinsic_type_token9] = ACTIONS(5081), - [aux_sym__intrinsic_type_token10] = ACTIONS(5081), - [aux_sym_derived_type_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), - [aux_sym_type_qualifier_token1] = ACTIONS(5081), - [aux_sym_type_qualifier_token2] = ACTIONS(5081), - [aux_sym_equivalence_statement_token1] = ACTIONS(5081), - [anon_sym_SEMI] = ACTIONS(5083), - [aux_sym_stop_statement_token1] = ACTIONS(5081), - [aux_sym_stop_statement_token2] = ACTIONS(5081), - [aux_sym_subroutine_call_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token2] = ACTIONS(5081), - [aux_sym_keyword_statement_token3] = ACTIONS(5081), - [aux_sym_keyword_statement_token4] = ACTIONS(5081), - [aux_sym_keyword_statement_token6] = ACTIONS(5081), - [aux_sym_keyword_statement_token7] = ACTIONS(5081), - [aux_sym_include_statement_token1] = ACTIONS(5081), - [aux_sym_data_statement_token1] = ACTIONS(5081), - [aux_sym_do_loop_statement_token1] = ACTIONS(5081), - [aux_sym__inline_if_statement_token1] = ACTIONS(5081), - [aux_sym_end_if_statement_token1] = ACTIONS(5081), - [aux_sym_elseif_clause_token2] = ACTIONS(5081), - [aux_sym__inline_where_statement_token1] = ACTIONS(5081), - [aux_sym__forall_control_expression_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token3] = ACTIONS(5081), - [aux_sym_select_type_statement_token1] = ACTIONS(5081), - [aux_sym_select_rank_statement_token2] = ACTIONS(5081), - [aux_sym_block_construct_token1] = ACTIONS(5081), - [aux_sym_associate_statement_token1] = ACTIONS(5081), - [aux_sym_format_statement_token1] = ACTIONS(5081), - [aux_sym_print_statement_token1] = ACTIONS(5081), - [aux_sym_open_statement_token1] = ACTIONS(5081), - [aux_sym_close_statement_token1] = ACTIONS(5081), - [aux_sym_inquire_statement_token1] = ACTIONS(5081), - [aux_sym_enum_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token2] = ACTIONS(5081), - [aux_sym_file_position_statement_token3] = ACTIONS(5081), - [aux_sym_file_position_statement_token4] = ACTIONS(5081), - [aux_sym_allocate_statement_token1] = ACTIONS(5081), - [aux_sym_entry_statement_token1] = ACTIONS(5081), - [aux_sym_logical_expression_token5] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_LPAREN_SLASH] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [aux_sym_boolean_literal_token1] = ACTIONS(5083), - [aux_sym_boolean_literal_token2] = ACTIONS(5083), - [aux_sym_null_literal_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token2] = ACTIONS(5081), - [aux_sym_coarray_statement_token6] = ACTIONS(5081), - [aux_sym_coarray_statement_token8] = ACTIONS(5081), - [aux_sym_coarray_statement_token11] = ACTIONS(5081), - [aux_sym_coarray_statement_token12] = ACTIONS(5081), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), - [aux_sym_identifier_token1] = ACTIONS(5081), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_subroutine_call_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_keyword_statement_token4] = ACTIONS(4994), + [aux_sym_keyword_statement_token6] = ACTIONS(4994), + [aux_sym_keyword_statement_token7] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym_do_loop_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym__inline_where_statement_token1] = ACTIONS(4994), + [aux_sym__forall_control_expression_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token3] = ACTIONS(4994), + [aux_sym_select_type_statement_token1] = ACTIONS(4994), + [aux_sym_select_rank_statement_token2] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_associate_statement_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_print_statement_token1] = ACTIONS(4994), + [aux_sym_open_statement_token1] = ACTIONS(4994), + [aux_sym_close_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token2] = ACTIONS(4994), + [aux_sym_file_position_statement_token3] = ACTIONS(4994), + [aux_sym_file_position_statement_token4] = ACTIONS(4994), + [aux_sym_allocate_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_logical_expression_token5] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_LPAREN_SLASH] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [aux_sym_boolean_literal_token1] = ACTIONS(4996), + [aux_sym_boolean_literal_token2] = ACTIONS(4996), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5083), - [sym__float_literal] = ACTIONS(5083), - [sym__boz_literal] = ACTIONS(5083), - [sym__string_literal] = ACTIONS(5083), - [sym__string_literal_kind] = ACTIONS(5083), - }, - [1357] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_LPAREN2] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_subroutine_call_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_keyword_statement_token4] = ACTIONS(5057), - [aux_sym_keyword_statement_token6] = ACTIONS(5057), - [aux_sym_keyword_statement_token7] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym_do_loop_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym__inline_where_statement_token1] = ACTIONS(5057), - [aux_sym__forall_control_expression_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token3] = ACTIONS(5057), - [aux_sym_select_type_statement_token1] = ACTIONS(5057), - [aux_sym_select_rank_statement_token2] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_associate_statement_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_print_statement_token1] = ACTIONS(5057), - [aux_sym_open_statement_token1] = ACTIONS(5057), - [aux_sym_close_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token2] = ACTIONS(5057), - [aux_sym_file_position_statement_token3] = ACTIONS(5057), - [aux_sym_file_position_statement_token4] = ACTIONS(5057), - [aux_sym_allocate_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_logical_expression_token5] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_LPAREN_SLASH] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [aux_sym_boolean_literal_token1] = ACTIONS(5059), - [aux_sym_boolean_literal_token2] = ACTIONS(5059), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - [sym__float_literal] = ACTIONS(5059), - [sym__boz_literal] = ACTIONS(5059), - [sym__string_literal] = ACTIONS(5059), - [sym__string_literal_kind] = ACTIONS(5059), + [sym__integer_literal] = ACTIONS(4996), + [sym__float_literal] = ACTIONS(4996), + [sym__boz_literal] = ACTIONS(4996), + [sym__string_literal] = ACTIONS(4996), + [sym__string_literal_kind] = ACTIONS(4996), }, - [1358] = { - [aux_sym_preproc_include_token1] = ACTIONS(5398), - [aux_sym_preproc_def_token1] = ACTIONS(5398), - [aux_sym_preproc_if_token1] = ACTIONS(5398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5398), - [sym_preproc_directive] = ACTIONS(5398), - [anon_sym_LPAREN2] = ACTIONS(5398), - [anon_sym_PLUS] = ACTIONS(5400), - [anon_sym_DASH] = ACTIONS(5400), + [1361] = { + [aux_sym_preproc_include_token1] = ACTIONS(4976), + [aux_sym_preproc_def_token1] = ACTIONS(4976), + [aux_sym_preproc_if_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), + [sym_preproc_directive] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5398), - [aux_sym_end_program_statement_token2] = ACTIONS(5398), - [aux_sym_interface_statement_token1] = ACTIONS(5398), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5398), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5398), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5398), - [aux_sym_language_binding_token1] = ACTIONS(5398), - [aux_sym_procedure_attributes_token1] = ACTIONS(5398), - [aux_sym_procedure_attributes_token3] = ACTIONS(5398), - [aux_sym_contains_statement_token1] = ACTIONS(5398), - [aux_sym_use_statement_token1] = ACTIONS(5398), - [aux_sym_use_statement_token2] = ACTIONS(5398), - [aux_sym_implicit_statement_token1] = ACTIONS(5398), - [aux_sym_implicit_statement_token3] = ACTIONS(5398), - [aux_sym_implicit_statement_token4] = ACTIONS(5398), - [aux_sym_save_statement_token1] = ACTIONS(5398), - [aux_sym_private_statement_token1] = ACTIONS(5398), - [aux_sym_public_statement_token1] = ACTIONS(5398), - [aux_sym_namelist_statement_token1] = ACTIONS(5398), - [aux_sym_common_statement_token1] = ACTIONS(5398), - [aux_sym_import_statement_token1] = ACTIONS(5398), - [aux_sym_derived_type_definition_token1] = ACTIONS(5398), - [aux_sym_abstract_specifier_token1] = ACTIONS(5398), - [aux_sym_procedure_attribute_token6] = ACTIONS(5398), - [aux_sym_variable_attributes_token1] = ACTIONS(5398), - [aux_sym_variable_attributes_token2] = ACTIONS(5398), - [aux_sym_variable_attributes_token3] = ACTIONS(5398), - [aux_sym_variable_attributes_token4] = ACTIONS(5398), - [aux_sym_variable_attributes_token5] = ACTIONS(5398), - [aux_sym__intrinsic_type_token1] = ACTIONS(5398), - [aux_sym__intrinsic_type_token2] = ACTIONS(5398), - [aux_sym__intrinsic_type_token3] = ACTIONS(5398), - [aux_sym__intrinsic_type_token4] = ACTIONS(5398), - [aux_sym__intrinsic_type_token6] = ACTIONS(5398), - [aux_sym__intrinsic_type_token7] = ACTIONS(5398), - [aux_sym__intrinsic_type_token8] = ACTIONS(5398), - [aux_sym__intrinsic_type_token9] = ACTIONS(5398), - [aux_sym__intrinsic_type_token10] = ACTIONS(5398), - [aux_sym_derived_type_token1] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5398), - [aux_sym_type_qualifier_token1] = ACTIONS(5398), - [aux_sym_type_qualifier_token2] = ACTIONS(5398), - [aux_sym_equivalence_statement_token1] = ACTIONS(5398), - [anon_sym_SEMI] = ACTIONS(5400), - [aux_sym_stop_statement_token1] = ACTIONS(5398), - [aux_sym_stop_statement_token2] = ACTIONS(5398), - [aux_sym_subroutine_call_token1] = ACTIONS(5398), - [aux_sym_keyword_statement_token1] = ACTIONS(5398), - [aux_sym_keyword_statement_token2] = ACTIONS(5398), - [aux_sym_keyword_statement_token3] = ACTIONS(5398), - [aux_sym_keyword_statement_token4] = ACTIONS(5398), - [aux_sym_keyword_statement_token6] = ACTIONS(5398), - [aux_sym_keyword_statement_token7] = ACTIONS(5398), - [aux_sym_include_statement_token1] = ACTIONS(5398), - [aux_sym_data_statement_token1] = ACTIONS(5398), - [aux_sym_do_loop_statement_token1] = ACTIONS(5398), - [aux_sym__inline_if_statement_token1] = ACTIONS(5398), - [aux_sym_end_if_statement_token1] = ACTIONS(5398), - [aux_sym_elseif_clause_token2] = ACTIONS(5398), - [aux_sym__inline_where_statement_token1] = ACTIONS(5398), - [aux_sym__forall_control_expression_token1] = ACTIONS(5398), - [aux_sym_select_case_statement_token1] = ACTIONS(5398), - [aux_sym_select_case_statement_token3] = ACTIONS(5398), - [aux_sym_select_type_statement_token1] = ACTIONS(5398), - [aux_sym_select_rank_statement_token2] = ACTIONS(5398), - [aux_sym_block_construct_token1] = ACTIONS(5398), - [aux_sym_associate_statement_token1] = ACTIONS(5398), - [aux_sym_format_statement_token1] = ACTIONS(5398), - [aux_sym_print_statement_token1] = ACTIONS(5398), - [aux_sym_open_statement_token1] = ACTIONS(5398), - [aux_sym_close_statement_token1] = ACTIONS(5398), - [aux_sym_inquire_statement_token1] = ACTIONS(5398), - [aux_sym_enum_statement_token1] = ACTIONS(5398), - [aux_sym_file_position_statement_token1] = ACTIONS(5398), - [aux_sym_file_position_statement_token2] = ACTIONS(5398), - [aux_sym_file_position_statement_token3] = ACTIONS(5398), - [aux_sym_file_position_statement_token4] = ACTIONS(5398), - [aux_sym_allocate_statement_token1] = ACTIONS(5398), - [aux_sym_entry_statement_token1] = ACTIONS(5398), - [aux_sym_logical_expression_token5] = ACTIONS(5400), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_LPAREN_SLASH] = ACTIONS(5400), - [anon_sym_LBRACK] = ACTIONS(5400), - [aux_sym_boolean_literal_token1] = ACTIONS(5400), - [aux_sym_boolean_literal_token2] = ACTIONS(5400), - [aux_sym_null_literal_token1] = ACTIONS(5398), - [aux_sym_coarray_statement_token1] = ACTIONS(5398), - [aux_sym_coarray_statement_token2] = ACTIONS(5398), - [aux_sym_coarray_statement_token6] = ACTIONS(5398), - [aux_sym_coarray_statement_token8] = ACTIONS(5398), - [aux_sym_coarray_statement_token11] = ACTIONS(5398), - [aux_sym_coarray_statement_token12] = ACTIONS(5398), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5398), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5398), - [aux_sym_identifier_token1] = ACTIONS(5398), + [aux_sym_end_program_statement_token1] = ACTIONS(4976), + [aux_sym_end_program_statement_token2] = ACTIONS(4976), + [aux_sym_interface_statement_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_language_binding_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token3] = ACTIONS(4976), + [aux_sym_contains_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token2] = ACTIONS(4976), + [aux_sym_implicit_statement_token1] = ACTIONS(4976), + [aux_sym_implicit_statement_token3] = ACTIONS(4976), + [aux_sym_implicit_statement_token4] = ACTIONS(4976), + [aux_sym_save_statement_token1] = ACTIONS(4976), + [aux_sym_private_statement_token1] = ACTIONS(4976), + [aux_sym_public_statement_token1] = ACTIONS(4976), + [aux_sym_namelist_statement_token1] = ACTIONS(4976), + [aux_sym_common_statement_token1] = ACTIONS(4976), + [aux_sym_import_statement_token1] = ACTIONS(4976), + [aux_sym_derived_type_definition_token1] = ACTIONS(4976), + [aux_sym_abstract_specifier_token1] = ACTIONS(4976), + [aux_sym_procedure_attribute_token6] = ACTIONS(4976), + [aux_sym_variable_attributes_token1] = ACTIONS(4976), + [aux_sym_variable_attributes_token2] = ACTIONS(4976), + [aux_sym_variable_attributes_token3] = ACTIONS(4976), + [aux_sym_variable_attributes_token4] = ACTIONS(4976), + [aux_sym_variable_attributes_token5] = ACTIONS(4976), + [aux_sym__intrinsic_type_token1] = ACTIONS(4976), + [aux_sym__intrinsic_type_token2] = ACTIONS(4976), + [aux_sym__intrinsic_type_token3] = ACTIONS(4976), + [aux_sym__intrinsic_type_token4] = ACTIONS(4976), + [aux_sym__intrinsic_type_token6] = ACTIONS(4976), + [aux_sym__intrinsic_type_token7] = ACTIONS(4976), + [aux_sym__intrinsic_type_token8] = ACTIONS(4976), + [aux_sym__intrinsic_type_token9] = ACTIONS(4976), + [aux_sym__intrinsic_type_token10] = ACTIONS(4976), + [aux_sym_derived_type_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), + [aux_sym_type_qualifier_token1] = ACTIONS(4976), + [aux_sym_type_qualifier_token2] = ACTIONS(4976), + [aux_sym_equivalence_statement_token1] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4980), + [aux_sym_stop_statement_token1] = ACTIONS(4976), + [aux_sym_stop_statement_token2] = ACTIONS(4976), + [aux_sym_subroutine_call_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token2] = ACTIONS(4976), + [aux_sym_keyword_statement_token3] = ACTIONS(4976), + [aux_sym_keyword_statement_token4] = ACTIONS(4976), + [aux_sym_keyword_statement_token6] = ACTIONS(4976), + [aux_sym_keyword_statement_token7] = ACTIONS(4976), + [aux_sym_include_statement_token1] = ACTIONS(4976), + [aux_sym_data_statement_token1] = ACTIONS(4976), + [aux_sym_do_loop_statement_token1] = ACTIONS(4976), + [aux_sym__inline_if_statement_token1] = ACTIONS(4976), + [aux_sym_end_if_statement_token1] = ACTIONS(4976), + [aux_sym_elseif_clause_token2] = ACTIONS(4976), + [aux_sym__inline_where_statement_token1] = ACTIONS(4976), + [aux_sym__forall_control_expression_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token3] = ACTIONS(4976), + [aux_sym_select_type_statement_token1] = ACTIONS(4976), + [aux_sym_select_rank_statement_token2] = ACTIONS(4976), + [aux_sym_block_construct_token1] = ACTIONS(4976), + [aux_sym_associate_statement_token1] = ACTIONS(4976), + [aux_sym_format_statement_token1] = ACTIONS(4976), + [aux_sym_print_statement_token1] = ACTIONS(4976), + [aux_sym_open_statement_token1] = ACTIONS(4976), + [aux_sym_close_statement_token1] = ACTIONS(4976), + [aux_sym_inquire_statement_token1] = ACTIONS(4976), + [aux_sym_enum_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token2] = ACTIONS(4976), + [aux_sym_file_position_statement_token3] = ACTIONS(4976), + [aux_sym_file_position_statement_token4] = ACTIONS(4976), + [aux_sym_allocate_statement_token1] = ACTIONS(4976), + [aux_sym_entry_statement_token1] = ACTIONS(4976), + [aux_sym_logical_expression_token5] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), + [aux_sym_null_literal_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token2] = ACTIONS(4976), + [aux_sym_coarray_statement_token6] = ACTIONS(4976), + [aux_sym_coarray_statement_token8] = ACTIONS(4976), + [aux_sym_coarray_statement_token11] = ACTIONS(4976), + [aux_sym_coarray_statement_token12] = ACTIONS(4976), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), + [aux_sym_identifier_token1] = ACTIONS(4976), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5400), - [sym__float_literal] = ACTIONS(5400), - [sym__boz_literal] = ACTIONS(5400), - [sym__string_literal] = ACTIONS(5400), - [sym__string_literal_kind] = ACTIONS(5400), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, - [1359] = { + [1362] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_LPAREN2] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_subroutine_call_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_keyword_statement_token4] = ACTIONS(5063), + [aux_sym_keyword_statement_token6] = ACTIONS(5063), + [aux_sym_keyword_statement_token7] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym_do_loop_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym__inline_where_statement_token1] = ACTIONS(5063), + [aux_sym__forall_control_expression_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token3] = ACTIONS(5063), + [aux_sym_select_type_statement_token1] = ACTIONS(5063), + [aux_sym_select_rank_statement_token2] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_associate_statement_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_print_statement_token1] = ACTIONS(5063), + [aux_sym_open_statement_token1] = ACTIONS(5063), + [aux_sym_close_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token2] = ACTIONS(5063), + [aux_sym_file_position_statement_token3] = ACTIONS(5063), + [aux_sym_file_position_statement_token4] = ACTIONS(5063), + [aux_sym_allocate_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_logical_expression_token5] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_LPAREN_SLASH] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [aux_sym_boolean_literal_token1] = ACTIONS(5065), + [aux_sym_boolean_literal_token2] = ACTIONS(5065), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + [sym__float_literal] = ACTIONS(5065), + [sym__boz_literal] = ACTIONS(5065), + [sym__string_literal] = ACTIONS(5065), + [sym__string_literal_kind] = ACTIONS(5065), + }, + [1363] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_subroutine_call_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_keyword_statement_token4] = ACTIONS(4982), + [aux_sym_keyword_statement_token6] = ACTIONS(4982), + [aux_sym_keyword_statement_token7] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym_do_loop_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym__inline_where_statement_token1] = ACTIONS(4982), + [aux_sym__forall_control_expression_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token3] = ACTIONS(4982), + [aux_sym_select_type_statement_token1] = ACTIONS(4982), + [aux_sym_select_rank_statement_token2] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_associate_statement_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_print_statement_token1] = ACTIONS(4982), + [aux_sym_open_statement_token1] = ACTIONS(4982), + [aux_sym_close_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token2] = ACTIONS(4982), + [aux_sym_file_position_statement_token3] = ACTIONS(4982), + [aux_sym_file_position_statement_token4] = ACTIONS(4982), + [aux_sym_allocate_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_logical_expression_token5] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_LPAREN_SLASH] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [aux_sym_boolean_literal_token1] = ACTIONS(4984), + [aux_sym_boolean_literal_token2] = ACTIONS(4984), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + [sym__float_literal] = ACTIONS(4984), + [sym__boz_literal] = ACTIONS(4984), + [sym__string_literal] = ACTIONS(4984), + [sym__string_literal_kind] = ACTIONS(4984), + }, + [1364] = { [aux_sym_preproc_include_token1] = ACTIONS(4976), [aux_sym_preproc_def_token1] = ACTIONS(4976), [aux_sym_preproc_if_token1] = ACTIONS(4976), @@ -271800,14 +272425,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), [sym_preproc_directive] = ACTIONS(4976), [anon_sym_LPAREN2] = ACTIONS(4976), - [anon_sym_PLUS] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4976), + [aux_sym_end_program_statement_token2] = ACTIONS(4976), [aux_sym_interface_statement_token1] = ACTIONS(4976), [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4976), [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), [aux_sym_language_binding_token1] = ACTIONS(4976), [aux_sym_procedure_attributes_token1] = ACTIONS(4976), @@ -271858,7 +272483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(4976), [aux_sym_type_qualifier_token2] = ACTIONS(4976), [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4980), [aux_sym_stop_statement_token1] = ACTIONS(4976), [aux_sym_stop_statement_token2] = ACTIONS(4976), [aux_sym_subroutine_call_token1] = ACTIONS(4976), @@ -271894,12 +272519,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4976), [aux_sym_allocate_statement_token1] = ACTIONS(4976), [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_logical_expression_token5] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(4980), [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_LPAREN_SLASH] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [aux_sym_boolean_literal_token1] = ACTIONS(4978), - [aux_sym_boolean_literal_token2] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), [aux_sym_null_literal_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token2] = ACTIONS(4976), @@ -271911,13 +272536,1638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), [aux_sym_identifier_token1] = ACTIONS(4976), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - [sym__float_literal] = ACTIONS(4978), - [sym__boz_literal] = ACTIONS(4978), - [sym__string_literal] = ACTIONS(4978), - [sym__string_literal_kind] = ACTIONS(4978), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), + }, + [1365] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_subroutine_call_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_keyword_statement_token4] = ACTIONS(4986), + [aux_sym_keyword_statement_token6] = ACTIONS(4986), + [aux_sym_keyword_statement_token7] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym_do_loop_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym__inline_where_statement_token1] = ACTIONS(4986), + [aux_sym__forall_control_expression_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token3] = ACTIONS(4986), + [aux_sym_select_type_statement_token1] = ACTIONS(4986), + [aux_sym_select_rank_statement_token2] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_associate_statement_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_print_statement_token1] = ACTIONS(4986), + [aux_sym_open_statement_token1] = ACTIONS(4986), + [aux_sym_close_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token2] = ACTIONS(4986), + [aux_sym_file_position_statement_token3] = ACTIONS(4986), + [aux_sym_file_position_statement_token4] = ACTIONS(4986), + [aux_sym_allocate_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_logical_expression_token5] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LPAREN_SLASH] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [aux_sym_boolean_literal_token1] = ACTIONS(4988), + [aux_sym_boolean_literal_token2] = ACTIONS(4988), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + [sym__float_literal] = ACTIONS(4988), + [sym__boz_literal] = ACTIONS(4988), + [sym__string_literal] = ACTIONS(4988), + [sym__string_literal_kind] = ACTIONS(4988), + }, + [1366] = { + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_LPAREN2] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_end_program_statement_token2] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_subroutine_call_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_keyword_statement_token4] = ACTIONS(5051), + [aux_sym_keyword_statement_token6] = ACTIONS(5051), + [aux_sym_keyword_statement_token7] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym_do_loop_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym__inline_where_statement_token1] = ACTIONS(5051), + [aux_sym__forall_control_expression_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token3] = ACTIONS(5051), + [aux_sym_select_type_statement_token1] = ACTIONS(5051), + [aux_sym_select_rank_statement_token2] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_associate_statement_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_print_statement_token1] = ACTIONS(5051), + [aux_sym_open_statement_token1] = ACTIONS(5051), + [aux_sym_close_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token2] = ACTIONS(5051), + [aux_sym_file_position_statement_token3] = ACTIONS(5051), + [aux_sym_file_position_statement_token4] = ACTIONS(5051), + [aux_sym_allocate_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_logical_expression_token5] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_LPAREN_SLASH] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [aux_sym_boolean_literal_token1] = ACTIONS(5053), + [aux_sym_boolean_literal_token2] = ACTIONS(5053), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + [sym__float_literal] = ACTIONS(5053), + [sym__boz_literal] = ACTIONS(5053), + [sym__string_literal] = ACTIONS(5053), + [sym__string_literal_kind] = ACTIONS(5053), + }, + [1367] = { + [aux_sym_preproc_include_token1] = ACTIONS(4972), + [aux_sym_preproc_def_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), + [sym_preproc_directive] = ACTIONS(4972), + [anon_sym_LPAREN2] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4972), + [aux_sym_end_program_statement_token2] = ACTIONS(4972), + [aux_sym_interface_statement_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), + [aux_sym_language_binding_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token3] = ACTIONS(4972), + [aux_sym_contains_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token2] = ACTIONS(4972), + [aux_sym_implicit_statement_token1] = ACTIONS(4972), + [aux_sym_implicit_statement_token3] = ACTIONS(4972), + [aux_sym_implicit_statement_token4] = ACTIONS(4972), + [aux_sym_save_statement_token1] = ACTIONS(4972), + [aux_sym_private_statement_token1] = ACTIONS(4972), + [aux_sym_public_statement_token1] = ACTIONS(4972), + [aux_sym_namelist_statement_token1] = ACTIONS(4972), + [aux_sym_common_statement_token1] = ACTIONS(4972), + [aux_sym_import_statement_token1] = ACTIONS(4972), + [aux_sym_derived_type_definition_token1] = ACTIONS(4972), + [aux_sym_abstract_specifier_token1] = ACTIONS(4972), + [aux_sym_procedure_attribute_token6] = ACTIONS(4972), + [aux_sym_variable_attributes_token1] = ACTIONS(4972), + [aux_sym_variable_attributes_token2] = ACTIONS(4972), + [aux_sym_variable_attributes_token3] = ACTIONS(4972), + [aux_sym_variable_attributes_token4] = ACTIONS(4972), + [aux_sym_variable_attributes_token5] = ACTIONS(4972), + [aux_sym__intrinsic_type_token1] = ACTIONS(4972), + [aux_sym__intrinsic_type_token2] = ACTIONS(4972), + [aux_sym__intrinsic_type_token3] = ACTIONS(4972), + [aux_sym__intrinsic_type_token4] = ACTIONS(4972), + [aux_sym__intrinsic_type_token6] = ACTIONS(4972), + [aux_sym__intrinsic_type_token7] = ACTIONS(4972), + [aux_sym__intrinsic_type_token8] = ACTIONS(4972), + [aux_sym__intrinsic_type_token9] = ACTIONS(4972), + [aux_sym__intrinsic_type_token10] = ACTIONS(4972), + [aux_sym_derived_type_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), + [aux_sym_type_qualifier_token1] = ACTIONS(4972), + [aux_sym_type_qualifier_token2] = ACTIONS(4972), + [aux_sym_equivalence_statement_token1] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [aux_sym_stop_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token2] = ACTIONS(4972), + [aux_sym_subroutine_call_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token3] = ACTIONS(4972), + [aux_sym_keyword_statement_token4] = ACTIONS(4972), + [aux_sym_keyword_statement_token6] = ACTIONS(4972), + [aux_sym_keyword_statement_token7] = ACTIONS(4972), + [aux_sym_include_statement_token1] = ACTIONS(4972), + [aux_sym_data_statement_token1] = ACTIONS(4972), + [aux_sym_do_loop_statement_token1] = ACTIONS(4972), + [aux_sym__inline_if_statement_token1] = ACTIONS(4972), + [aux_sym_end_if_statement_token1] = ACTIONS(4972), + [aux_sym_elseif_clause_token2] = ACTIONS(4972), + [aux_sym__inline_where_statement_token1] = ACTIONS(4972), + [aux_sym__forall_control_expression_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token3] = ACTIONS(4972), + [aux_sym_select_type_statement_token1] = ACTIONS(4972), + [aux_sym_select_rank_statement_token2] = ACTIONS(4972), + [aux_sym_block_construct_token1] = ACTIONS(4972), + [aux_sym_associate_statement_token1] = ACTIONS(4972), + [aux_sym_format_statement_token1] = ACTIONS(4972), + [aux_sym_print_statement_token1] = ACTIONS(4972), + [aux_sym_open_statement_token1] = ACTIONS(4972), + [aux_sym_close_statement_token1] = ACTIONS(4972), + [aux_sym_inquire_statement_token1] = ACTIONS(4972), + [aux_sym_enum_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token2] = ACTIONS(4972), + [aux_sym_file_position_statement_token3] = ACTIONS(4972), + [aux_sym_file_position_statement_token4] = ACTIONS(4972), + [aux_sym_allocate_statement_token1] = ACTIONS(4972), + [aux_sym_entry_statement_token1] = ACTIONS(4972), + [aux_sym_logical_expression_token5] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_LPAREN_SLASH] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [aux_sym_boolean_literal_token1] = ACTIONS(4974), + [aux_sym_boolean_literal_token2] = ACTIONS(4974), + [aux_sym_null_literal_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token2] = ACTIONS(4972), + [aux_sym_coarray_statement_token6] = ACTIONS(4972), + [aux_sym_coarray_statement_token8] = ACTIONS(4972), + [aux_sym_coarray_statement_token11] = ACTIONS(4972), + [aux_sym_coarray_statement_token12] = ACTIONS(4972), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), + [aux_sym_identifier_token1] = ACTIONS(4972), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4974), + [sym__float_literal] = ACTIONS(4974), + [sym__boz_literal] = ACTIONS(4974), + [sym__string_literal] = ACTIONS(4974), + [sym__string_literal_kind] = ACTIONS(4974), + }, + [1368] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_LPAREN2] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_end_program_statement_token2] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_subroutine_call_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_keyword_statement_token4] = ACTIONS(5055), + [aux_sym_keyword_statement_token6] = ACTIONS(5055), + [aux_sym_keyword_statement_token7] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym_do_loop_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym__inline_where_statement_token1] = ACTIONS(5055), + [aux_sym__forall_control_expression_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token3] = ACTIONS(5055), + [aux_sym_select_type_statement_token1] = ACTIONS(5055), + [aux_sym_select_rank_statement_token2] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_associate_statement_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_print_statement_token1] = ACTIONS(5055), + [aux_sym_open_statement_token1] = ACTIONS(5055), + [aux_sym_close_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token2] = ACTIONS(5055), + [aux_sym_file_position_statement_token3] = ACTIONS(5055), + [aux_sym_file_position_statement_token4] = ACTIONS(5055), + [aux_sym_allocate_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_logical_expression_token5] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_LPAREN_SLASH] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [aux_sym_boolean_literal_token1] = ACTIONS(5057), + [aux_sym_boolean_literal_token2] = ACTIONS(5057), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + [sym__float_literal] = ACTIONS(5057), + [sym__boz_literal] = ACTIONS(5057), + [sym__string_literal] = ACTIONS(5057), + [sym__string_literal_kind] = ACTIONS(5057), + }, + [1369] = { + [aux_sym_preproc_include_token1] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4990), + [aux_sym_interface_statement_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_language_binding_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_contains_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token2] = ACTIONS(4990), + [aux_sym_implicit_statement_token1] = ACTIONS(4990), + [aux_sym_implicit_statement_token3] = ACTIONS(4990), + [aux_sym_implicit_statement_token4] = ACTIONS(4990), + [aux_sym_save_statement_token1] = ACTIONS(4990), + [aux_sym_private_statement_token1] = ACTIONS(4990), + [aux_sym_public_statement_token1] = ACTIONS(4990), + [aux_sym_namelist_statement_token1] = ACTIONS(4990), + [aux_sym_common_statement_token1] = ACTIONS(4990), + [aux_sym_import_statement_token1] = ACTIONS(4990), + [aux_sym_derived_type_definition_token1] = ACTIONS(4990), + [aux_sym_abstract_specifier_token1] = ACTIONS(4990), + [aux_sym_procedure_attribute_token6] = ACTIONS(4990), + [aux_sym_variable_attributes_token1] = ACTIONS(4990), + [aux_sym_variable_attributes_token2] = ACTIONS(4990), + [aux_sym_variable_attributes_token3] = ACTIONS(4990), + [aux_sym_variable_attributes_token4] = ACTIONS(4990), + [aux_sym_variable_attributes_token5] = ACTIONS(4990), + [aux_sym__intrinsic_type_token1] = ACTIONS(4990), + [aux_sym__intrinsic_type_token2] = ACTIONS(4990), + [aux_sym__intrinsic_type_token3] = ACTIONS(4990), + [aux_sym__intrinsic_type_token4] = ACTIONS(4990), + [aux_sym__intrinsic_type_token6] = ACTIONS(4990), + [aux_sym__intrinsic_type_token7] = ACTIONS(4990), + [aux_sym__intrinsic_type_token8] = ACTIONS(4990), + [aux_sym__intrinsic_type_token9] = ACTIONS(4990), + [aux_sym__intrinsic_type_token10] = ACTIONS(4990), + [aux_sym_derived_type_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), + [aux_sym_type_qualifier_token1] = ACTIONS(4990), + [aux_sym_type_qualifier_token2] = ACTIONS(4990), + [aux_sym_equivalence_statement_token1] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(4992), + [aux_sym_stop_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token2] = ACTIONS(4990), + [aux_sym_subroutine_call_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token3] = ACTIONS(4990), + [aux_sym_keyword_statement_token4] = ACTIONS(4990), + [aux_sym_keyword_statement_token6] = ACTIONS(4990), + [aux_sym_keyword_statement_token7] = ACTIONS(4990), + [aux_sym_include_statement_token1] = ACTIONS(4990), + [aux_sym_data_statement_token1] = ACTIONS(4990), + [aux_sym_do_loop_statement_token1] = ACTIONS(4990), + [aux_sym__inline_if_statement_token1] = ACTIONS(4990), + [aux_sym_end_if_statement_token1] = ACTIONS(4990), + [aux_sym_elseif_clause_token2] = ACTIONS(4990), + [aux_sym__inline_where_statement_token1] = ACTIONS(4990), + [aux_sym__forall_control_expression_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token3] = ACTIONS(4990), + [aux_sym_select_type_statement_token1] = ACTIONS(4990), + [aux_sym_select_rank_statement_token2] = ACTIONS(4990), + [aux_sym_block_construct_token1] = ACTIONS(4990), + [aux_sym_associate_statement_token1] = ACTIONS(4990), + [aux_sym_format_statement_token1] = ACTIONS(4990), + [aux_sym_print_statement_token1] = ACTIONS(4990), + [aux_sym_open_statement_token1] = ACTIONS(4990), + [aux_sym_close_statement_token1] = ACTIONS(4990), + [aux_sym_inquire_statement_token1] = ACTIONS(4990), + [aux_sym_enum_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token2] = ACTIONS(4990), + [aux_sym_file_position_statement_token3] = ACTIONS(4990), + [aux_sym_file_position_statement_token4] = ACTIONS(4990), + [aux_sym_allocate_statement_token1] = ACTIONS(4990), + [aux_sym_entry_statement_token1] = ACTIONS(4990), + [aux_sym_logical_expression_token5] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_LPAREN_SLASH] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [aux_sym_boolean_literal_token1] = ACTIONS(4992), + [aux_sym_boolean_literal_token2] = ACTIONS(4992), + [aux_sym_null_literal_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token2] = ACTIONS(4990), + [aux_sym_coarray_statement_token6] = ACTIONS(4990), + [aux_sym_coarray_statement_token8] = ACTIONS(4990), + [aux_sym_coarray_statement_token11] = ACTIONS(4990), + [aux_sym_coarray_statement_token12] = ACTIONS(4990), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), + [aux_sym_identifier_token1] = ACTIONS(4990), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4992), + [sym__float_literal] = ACTIONS(4992), + [sym__boz_literal] = ACTIONS(4992), + [sym__string_literal] = ACTIONS(4992), + [sym__string_literal_kind] = ACTIONS(4992), + }, + [1370] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_LPAREN2] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_end_program_statement_token2] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_subroutine_call_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_keyword_statement_token4] = ACTIONS(5059), + [aux_sym_keyword_statement_token6] = ACTIONS(5059), + [aux_sym_keyword_statement_token7] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym_do_loop_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym__inline_where_statement_token1] = ACTIONS(5059), + [aux_sym__forall_control_expression_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token3] = ACTIONS(5059), + [aux_sym_select_type_statement_token1] = ACTIONS(5059), + [aux_sym_select_rank_statement_token2] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_associate_statement_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_print_statement_token1] = ACTIONS(5059), + [aux_sym_open_statement_token1] = ACTIONS(5059), + [aux_sym_close_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token2] = ACTIONS(5059), + [aux_sym_file_position_statement_token3] = ACTIONS(5059), + [aux_sym_file_position_statement_token4] = ACTIONS(5059), + [aux_sym_allocate_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_logical_expression_token5] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [aux_sym_boolean_literal_token1] = ACTIONS(5061), + [aux_sym_boolean_literal_token2] = ACTIONS(5061), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + [sym__float_literal] = ACTIONS(5061), + [sym__boz_literal] = ACTIONS(5061), + [sym__string_literal] = ACTIONS(5061), + [sym__string_literal_kind] = ACTIONS(5061), + }, + [1371] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_end_program_statement_token2] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_subroutine_call_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_keyword_statement_token4] = ACTIONS(5006), + [aux_sym_keyword_statement_token6] = ACTIONS(5006), + [aux_sym_keyword_statement_token7] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym_do_loop_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym__inline_where_statement_token1] = ACTIONS(5006), + [aux_sym__forall_control_expression_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token3] = ACTIONS(5006), + [aux_sym_select_type_statement_token1] = ACTIONS(5006), + [aux_sym_select_rank_statement_token2] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_associate_statement_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_print_statement_token1] = ACTIONS(5006), + [aux_sym_open_statement_token1] = ACTIONS(5006), + [aux_sym_close_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token2] = ACTIONS(5006), + [aux_sym_file_position_statement_token3] = ACTIONS(5006), + [aux_sym_file_position_statement_token4] = ACTIONS(5006), + [aux_sym_allocate_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_logical_expression_token5] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_LPAREN_SLASH] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [aux_sym_boolean_literal_token1] = ACTIONS(5008), + [aux_sym_boolean_literal_token2] = ACTIONS(5008), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + [sym__float_literal] = ACTIONS(5008), + [sym__boz_literal] = ACTIONS(5008), + [sym__string_literal] = ACTIONS(5008), + [sym__string_literal_kind] = ACTIONS(5008), + }, + [1372] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_end_function_statement_token1] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), + }, + [1373] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token2] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_subroutine_call_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_keyword_statement_token4] = ACTIONS(4994), + [aux_sym_keyword_statement_token6] = ACTIONS(4994), + [aux_sym_keyword_statement_token7] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym_do_loop_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym__inline_where_statement_token1] = ACTIONS(4994), + [aux_sym__forall_control_expression_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token3] = ACTIONS(4994), + [aux_sym_select_type_statement_token1] = ACTIONS(4994), + [aux_sym_select_rank_statement_token2] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_associate_statement_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_print_statement_token1] = ACTIONS(4994), + [aux_sym_open_statement_token1] = ACTIONS(4994), + [aux_sym_close_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token2] = ACTIONS(4994), + [aux_sym_file_position_statement_token3] = ACTIONS(4994), + [aux_sym_file_position_statement_token4] = ACTIONS(4994), + [aux_sym_allocate_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_logical_expression_token5] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_LPAREN_SLASH] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [aux_sym_boolean_literal_token1] = ACTIONS(4996), + [aux_sym_boolean_literal_token2] = ACTIONS(4996), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4996), + [sym__float_literal] = ACTIONS(4996), + [sym__boz_literal] = ACTIONS(4996), + [sym__string_literal] = ACTIONS(4996), + [sym__string_literal_kind] = ACTIONS(4996), + }, + [1374] = { + [aux_sym_preproc_include_token1] = ACTIONS(5410), + [aux_sym_preproc_def_token1] = ACTIONS(5410), + [aux_sym_preproc_if_token1] = ACTIONS(5410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5410), + [sym_preproc_directive] = ACTIONS(5410), + [anon_sym_LPAREN2] = ACTIONS(5410), + [anon_sym_PLUS] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5410), + [aux_sym_interface_statement_token1] = ACTIONS(5410), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5410), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5410), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5410), + [aux_sym_language_binding_token1] = ACTIONS(5410), + [aux_sym_procedure_attributes_token1] = ACTIONS(5410), + [aux_sym_procedure_attributes_token3] = ACTIONS(5410), + [aux_sym_end_function_statement_token1] = ACTIONS(5410), + [aux_sym_contains_statement_token1] = ACTIONS(5410), + [aux_sym_use_statement_token1] = ACTIONS(5410), + [aux_sym_use_statement_token2] = ACTIONS(5410), + [aux_sym_implicit_statement_token1] = ACTIONS(5410), + [aux_sym_implicit_statement_token3] = ACTIONS(5410), + [aux_sym_implicit_statement_token4] = ACTIONS(5410), + [aux_sym_save_statement_token1] = ACTIONS(5410), + [aux_sym_private_statement_token1] = ACTIONS(5410), + [aux_sym_public_statement_token1] = ACTIONS(5410), + [aux_sym_namelist_statement_token1] = ACTIONS(5410), + [aux_sym_common_statement_token1] = ACTIONS(5410), + [aux_sym_import_statement_token1] = ACTIONS(5410), + [aux_sym_derived_type_definition_token1] = ACTIONS(5410), + [aux_sym_abstract_specifier_token1] = ACTIONS(5410), + [aux_sym_procedure_attribute_token6] = ACTIONS(5410), + [aux_sym_variable_attributes_token1] = ACTIONS(5410), + [aux_sym_variable_attributes_token2] = ACTIONS(5410), + [aux_sym_variable_attributes_token3] = ACTIONS(5410), + [aux_sym_variable_attributes_token4] = ACTIONS(5410), + [aux_sym_variable_attributes_token5] = ACTIONS(5410), + [aux_sym__intrinsic_type_token1] = ACTIONS(5410), + [aux_sym__intrinsic_type_token2] = ACTIONS(5410), + [aux_sym__intrinsic_type_token3] = ACTIONS(5410), + [aux_sym__intrinsic_type_token4] = ACTIONS(5410), + [aux_sym__intrinsic_type_token6] = ACTIONS(5410), + [aux_sym__intrinsic_type_token7] = ACTIONS(5410), + [aux_sym__intrinsic_type_token8] = ACTIONS(5410), + [aux_sym__intrinsic_type_token9] = ACTIONS(5410), + [aux_sym__intrinsic_type_token10] = ACTIONS(5410), + [aux_sym_derived_type_token1] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5410), + [aux_sym_type_qualifier_token1] = ACTIONS(5410), + [aux_sym_type_qualifier_token2] = ACTIONS(5410), + [aux_sym_equivalence_statement_token1] = ACTIONS(5410), + [anon_sym_SEMI] = ACTIONS(5412), + [aux_sym_stop_statement_token1] = ACTIONS(5410), + [aux_sym_stop_statement_token2] = ACTIONS(5410), + [aux_sym_subroutine_call_token1] = ACTIONS(5410), + [aux_sym_keyword_statement_token1] = ACTIONS(5410), + [aux_sym_keyword_statement_token2] = ACTIONS(5410), + [aux_sym_keyword_statement_token3] = ACTIONS(5410), + [aux_sym_keyword_statement_token4] = ACTIONS(5410), + [aux_sym_keyword_statement_token6] = ACTIONS(5410), + [aux_sym_keyword_statement_token7] = ACTIONS(5410), + [aux_sym_include_statement_token1] = ACTIONS(5410), + [aux_sym_data_statement_token1] = ACTIONS(5410), + [aux_sym_do_loop_statement_token1] = ACTIONS(5410), + [aux_sym__inline_if_statement_token1] = ACTIONS(5410), + [aux_sym_end_if_statement_token1] = ACTIONS(5410), + [aux_sym_elseif_clause_token2] = ACTIONS(5410), + [aux_sym__inline_where_statement_token1] = ACTIONS(5410), + [aux_sym__forall_control_expression_token1] = ACTIONS(5410), + [aux_sym_select_case_statement_token1] = ACTIONS(5410), + [aux_sym_select_case_statement_token3] = ACTIONS(5410), + [aux_sym_select_type_statement_token1] = ACTIONS(5410), + [aux_sym_select_rank_statement_token2] = ACTIONS(5410), + [aux_sym_block_construct_token1] = ACTIONS(5410), + [aux_sym_associate_statement_token1] = ACTIONS(5410), + [aux_sym_format_statement_token1] = ACTIONS(5410), + [aux_sym_print_statement_token1] = ACTIONS(5410), + [aux_sym_open_statement_token1] = ACTIONS(5410), + [aux_sym_close_statement_token1] = ACTIONS(5410), + [aux_sym_inquire_statement_token1] = ACTIONS(5410), + [aux_sym_enum_statement_token1] = ACTIONS(5410), + [aux_sym_file_position_statement_token1] = ACTIONS(5410), + [aux_sym_file_position_statement_token2] = ACTIONS(5410), + [aux_sym_file_position_statement_token3] = ACTIONS(5410), + [aux_sym_file_position_statement_token4] = ACTIONS(5410), + [aux_sym_allocate_statement_token1] = ACTIONS(5410), + [aux_sym_entry_statement_token1] = ACTIONS(5410), + [aux_sym_logical_expression_token5] = ACTIONS(5412), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_LPAREN_SLASH] = ACTIONS(5412), + [anon_sym_LBRACK] = ACTIONS(5412), + [aux_sym_boolean_literal_token1] = ACTIONS(5412), + [aux_sym_boolean_literal_token2] = ACTIONS(5412), + [aux_sym_null_literal_token1] = ACTIONS(5410), + [aux_sym_coarray_statement_token1] = ACTIONS(5410), + [aux_sym_coarray_statement_token2] = ACTIONS(5410), + [aux_sym_coarray_statement_token6] = ACTIONS(5410), + [aux_sym_coarray_statement_token8] = ACTIONS(5410), + [aux_sym_coarray_statement_token11] = ACTIONS(5410), + [aux_sym_coarray_statement_token12] = ACTIONS(5410), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5410), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5410), + [aux_sym_identifier_token1] = ACTIONS(5410), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5412), + [sym__float_literal] = ACTIONS(5412), + [sym__boz_literal] = ACTIONS(5412), + [sym__string_literal] = ACTIONS(5412), + [sym__string_literal_kind] = ACTIONS(5412), + }, + [1375] = { + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_end_function_statement_token1] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), + }, + [1376] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token2] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_subroutine_call_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_keyword_statement_token4] = ACTIONS(4994), + [aux_sym_keyword_statement_token6] = ACTIONS(4994), + [aux_sym_keyword_statement_token7] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym_do_loop_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym__inline_where_statement_token1] = ACTIONS(4994), + [aux_sym__forall_control_expression_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token3] = ACTIONS(4994), + [aux_sym_select_type_statement_token1] = ACTIONS(4994), + [aux_sym_select_rank_statement_token2] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_associate_statement_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_print_statement_token1] = ACTIONS(4994), + [aux_sym_open_statement_token1] = ACTIONS(4994), + [aux_sym_close_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token2] = ACTIONS(4994), + [aux_sym_file_position_statement_token3] = ACTIONS(4994), + [aux_sym_file_position_statement_token4] = ACTIONS(4994), + [aux_sym_allocate_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_logical_expression_token5] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_LPAREN_SLASH] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [aux_sym_boolean_literal_token1] = ACTIONS(4996), + [aux_sym_boolean_literal_token2] = ACTIONS(4996), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4996), + [sym__float_literal] = ACTIONS(4996), + [sym__boz_literal] = ACTIONS(4996), + [sym__string_literal] = ACTIONS(4996), + [sym__string_literal_kind] = ACTIONS(4996), }, - [1360] = { + [1377] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_end_function_statement_token1] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_subroutine_call_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_keyword_statement_token4] = ACTIONS(4986), + [aux_sym_keyword_statement_token6] = ACTIONS(4986), + [aux_sym_keyword_statement_token7] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym_do_loop_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym__inline_where_statement_token1] = ACTIONS(4986), + [aux_sym__forall_control_expression_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token3] = ACTIONS(4986), + [aux_sym_select_type_statement_token1] = ACTIONS(4986), + [aux_sym_select_rank_statement_token2] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_associate_statement_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_print_statement_token1] = ACTIONS(4986), + [aux_sym_open_statement_token1] = ACTIONS(4986), + [aux_sym_close_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token2] = ACTIONS(4986), + [aux_sym_file_position_statement_token3] = ACTIONS(4986), + [aux_sym_file_position_statement_token4] = ACTIONS(4986), + [aux_sym_allocate_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_logical_expression_token5] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LPAREN_SLASH] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [aux_sym_boolean_literal_token1] = ACTIONS(4988), + [aux_sym_boolean_literal_token2] = ACTIONS(4988), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + [sym__float_literal] = ACTIONS(4988), + [sym__boz_literal] = ACTIONS(4988), + [sym__string_literal] = ACTIONS(4988), + [sym__string_literal_kind] = ACTIONS(4988), + }, + [1378] = { [aux_sym_preproc_include_token1] = ACTIONS(4990), [aux_sym_preproc_def_token1] = ACTIONS(4990), [aux_sym_preproc_if_token1] = ACTIONS(4990), @@ -271932,11 +274182,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_interface_statement_token1] = ACTIONS(4990), [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4990), [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), [aux_sym_language_binding_token1] = ACTIONS(4990), [aux_sym_procedure_attributes_token1] = ACTIONS(4990), [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_end_function_statement_token1] = ACTIONS(4990), [aux_sym_contains_statement_token1] = ACTIONS(4990), [aux_sym_use_statement_token1] = ACTIONS(4990), [aux_sym_use_statement_token2] = ACTIONS(4990), @@ -272042,632 +274292,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4992), [sym__string_literal_kind] = ACTIONS(4992), }, - [1361] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_LPAREN2] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_subroutine_call_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_keyword_statement_token4] = ACTIONS(5073), - [aux_sym_keyword_statement_token6] = ACTIONS(5073), - [aux_sym_keyword_statement_token7] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym_do_loop_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym__inline_where_statement_token1] = ACTIONS(5073), - [aux_sym__forall_control_expression_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token3] = ACTIONS(5073), - [aux_sym_select_type_statement_token1] = ACTIONS(5073), - [aux_sym_select_rank_statement_token2] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_associate_statement_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_print_statement_token1] = ACTIONS(5073), - [aux_sym_open_statement_token1] = ACTIONS(5073), - [aux_sym_close_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token2] = ACTIONS(5073), - [aux_sym_file_position_statement_token3] = ACTIONS(5073), - [aux_sym_file_position_statement_token4] = ACTIONS(5073), - [aux_sym_allocate_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_logical_expression_token5] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LPAREN_SLASH] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [aux_sym_boolean_literal_token1] = ACTIONS(5075), - [aux_sym_boolean_literal_token2] = ACTIONS(5075), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - [sym__float_literal] = ACTIONS(5075), - [sym__boz_literal] = ACTIONS(5075), - [sym__string_literal] = ACTIONS(5075), - [sym__string_literal_kind] = ACTIONS(5075), - }, - [1362] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_LPAREN2] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [anon_sym_SEMI] = ACTIONS(5079), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_subroutine_call_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_keyword_statement_token4] = ACTIONS(5077), - [aux_sym_keyword_statement_token6] = ACTIONS(5077), - [aux_sym_keyword_statement_token7] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym_do_loop_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym__inline_where_statement_token1] = ACTIONS(5077), - [aux_sym__forall_control_expression_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token3] = ACTIONS(5077), - [aux_sym_select_type_statement_token1] = ACTIONS(5077), - [aux_sym_select_rank_statement_token2] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_associate_statement_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_print_statement_token1] = ACTIONS(5077), - [aux_sym_open_statement_token1] = ACTIONS(5077), - [aux_sym_close_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token2] = ACTIONS(5077), - [aux_sym_file_position_statement_token3] = ACTIONS(5077), - [aux_sym_file_position_statement_token4] = ACTIONS(5077), - [aux_sym_allocate_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_logical_expression_token5] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_LPAREN_SLASH] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [aux_sym_boolean_literal_token1] = ACTIONS(5079), - [aux_sym_boolean_literal_token2] = ACTIONS(5079), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - [sym__float_literal] = ACTIONS(5079), - [sym__boz_literal] = ACTIONS(5079), - [sym__string_literal] = ACTIONS(5079), - [sym__string_literal_kind] = ACTIONS(5079), - }, - [1363] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [1379] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_program_statement_token2] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_end_function_statement_token1] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_subroutine_call_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_keyword_statement_token4] = ACTIONS(4387), + [aux_sym_keyword_statement_token6] = ACTIONS(4387), + [aux_sym_keyword_statement_token7] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym_do_loop_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym__inline_where_statement_token1] = ACTIONS(4387), + [aux_sym__forall_control_expression_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token3] = ACTIONS(4387), + [aux_sym_select_type_statement_token1] = ACTIONS(4387), + [aux_sym_select_rank_statement_token2] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_associate_statement_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_print_statement_token1] = ACTIONS(4387), + [aux_sym_open_statement_token1] = ACTIONS(4387), + [aux_sym_close_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token2] = ACTIONS(4387), + [aux_sym_file_position_statement_token3] = ACTIONS(4387), + [aux_sym_file_position_statement_token4] = ACTIONS(4387), + [aux_sym_allocate_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_logical_expression_token5] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LPAREN_SLASH] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [aux_sym_boolean_literal_token1] = ACTIONS(4389), + [aux_sym_boolean_literal_token2] = ACTIONS(4389), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [1364] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_LPAREN2] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_subroutine_call_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_keyword_statement_token4] = ACTIONS(5021), - [aux_sym_keyword_statement_token6] = ACTIONS(5021), - [aux_sym_keyword_statement_token7] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym_do_loop_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym__inline_where_statement_token1] = ACTIONS(5021), - [aux_sym__forall_control_expression_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token3] = ACTIONS(5021), - [aux_sym_select_type_statement_token1] = ACTIONS(5021), - [aux_sym_select_rank_statement_token2] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_associate_statement_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_print_statement_token1] = ACTIONS(5021), - [aux_sym_open_statement_token1] = ACTIONS(5021), - [aux_sym_close_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token2] = ACTIONS(5021), - [aux_sym_file_position_statement_token3] = ACTIONS(5021), - [aux_sym_file_position_statement_token4] = ACTIONS(5021), - [aux_sym_allocate_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_logical_expression_token5] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_LPAREN_SLASH] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [aux_sym_boolean_literal_token1] = ACTIONS(5023), - [aux_sym_boolean_literal_token2] = ACTIONS(5023), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - [sym__float_literal] = ACTIONS(5023), - [sym__boz_literal] = ACTIONS(5023), - [sym__string_literal] = ACTIONS(5023), - [sym__string_literal_kind] = ACTIONS(5023), - }, - [1365] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_subroutine_call_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_keyword_statement_token4] = ACTIONS(5025), - [aux_sym_keyword_statement_token6] = ACTIONS(5025), - [aux_sym_keyword_statement_token7] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym_do_loop_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym__inline_where_statement_token1] = ACTIONS(5025), - [aux_sym__forall_control_expression_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token3] = ACTIONS(5025), - [aux_sym_select_type_statement_token1] = ACTIONS(5025), - [aux_sym_select_rank_statement_token2] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_associate_statement_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_print_statement_token1] = ACTIONS(5025), - [aux_sym_open_statement_token1] = ACTIONS(5025), - [aux_sym_close_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token2] = ACTIONS(5025), - [aux_sym_file_position_statement_token3] = ACTIONS(5025), - [aux_sym_file_position_statement_token4] = ACTIONS(5025), - [aux_sym_allocate_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_logical_expression_token5] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_LPAREN_SLASH] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [aux_sym_boolean_literal_token1] = ACTIONS(5027), - [aux_sym_boolean_literal_token2] = ACTIONS(5027), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - [sym__float_literal] = ACTIONS(5027), - [sym__boz_literal] = ACTIONS(5027), - [sym__string_literal] = ACTIONS(5027), - [sym__string_literal_kind] = ACTIONS(5027), + [sym__integer_literal] = ACTIONS(4389), + [sym__float_literal] = ACTIONS(4389), + [sym__boz_literal] = ACTIONS(4389), + [sym__string_literal] = ACTIONS(4389), + [sym__string_literal_kind] = ACTIONS(4389), }, - [1366] = { + [1380] = { [aux_sym_preproc_include_token1] = ACTIONS(5081), [aux_sym_preproc_def_token1] = ACTIONS(5081), [aux_sym_preproc_if_token1] = ACTIONS(5081), @@ -272679,10 +274429,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5083), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5081), - [aux_sym_end_program_statement_token2] = ACTIONS(5081), [aux_sym_interface_statement_token1] = ACTIONS(5081), [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5081), [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), [aux_sym_language_binding_token1] = ACTIONS(5081), [aux_sym_procedure_attributes_token1] = ACTIONS(5081), @@ -272792,2880 +274542,1130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5083), [sym__string_literal_kind] = ACTIONS(5083), }, - [1367] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_subroutine_call_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_keyword_statement_token4] = ACTIONS(5037), - [aux_sym_keyword_statement_token6] = ACTIONS(5037), - [aux_sym_keyword_statement_token7] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym_do_loop_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym__inline_where_statement_token1] = ACTIONS(5037), - [aux_sym__forall_control_expression_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token3] = ACTIONS(5037), - [aux_sym_select_type_statement_token1] = ACTIONS(5037), - [aux_sym_select_rank_statement_token2] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_associate_statement_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_print_statement_token1] = ACTIONS(5037), - [aux_sym_open_statement_token1] = ACTIONS(5037), - [aux_sym_close_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token2] = ACTIONS(5037), - [aux_sym_file_position_statement_token3] = ACTIONS(5037), - [aux_sym_file_position_statement_token4] = ACTIONS(5037), - [aux_sym_allocate_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_logical_expression_token5] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_LPAREN_SLASH] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [aux_sym_boolean_literal_token1] = ACTIONS(5039), - [aux_sym_boolean_literal_token2] = ACTIONS(5039), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - [sym__float_literal] = ACTIONS(5039), - [sym__boz_literal] = ACTIONS(5039), - [sym__string_literal] = ACTIONS(5039), - [sym__string_literal_kind] = ACTIONS(5039), - }, - [1368] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_subroutine_call_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_keyword_statement_token4] = ACTIONS(5049), - [aux_sym_keyword_statement_token6] = ACTIONS(5049), - [aux_sym_keyword_statement_token7] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym_do_loop_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym__inline_where_statement_token1] = ACTIONS(5049), - [aux_sym__forall_control_expression_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token3] = ACTIONS(5049), - [aux_sym_select_type_statement_token1] = ACTIONS(5049), - [aux_sym_select_rank_statement_token2] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_associate_statement_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_print_statement_token1] = ACTIONS(5049), - [aux_sym_open_statement_token1] = ACTIONS(5049), - [aux_sym_close_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token2] = ACTIONS(5049), - [aux_sym_file_position_statement_token3] = ACTIONS(5049), - [aux_sym_file_position_statement_token4] = ACTIONS(5049), - [aux_sym_allocate_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_logical_expression_token5] = ACTIONS(5051), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_LPAREN_SLASH] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [aux_sym_boolean_literal_token1] = ACTIONS(5051), - [aux_sym_boolean_literal_token2] = ACTIONS(5051), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - [sym__float_literal] = ACTIONS(5051), - [sym__boz_literal] = ACTIONS(5051), - [sym__string_literal] = ACTIONS(5051), - [sym__string_literal_kind] = ACTIONS(5051), - }, - [1369] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_LPAREN2] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_subroutine_call_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_keyword_statement_token4] = ACTIONS(5061), - [aux_sym_keyword_statement_token6] = ACTIONS(5061), - [aux_sym_keyword_statement_token7] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym_do_loop_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym__inline_where_statement_token1] = ACTIONS(5061), - [aux_sym__forall_control_expression_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token3] = ACTIONS(5061), - [aux_sym_select_type_statement_token1] = ACTIONS(5061), - [aux_sym_select_rank_statement_token2] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_associate_statement_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_print_statement_token1] = ACTIONS(5061), - [aux_sym_open_statement_token1] = ACTIONS(5061), - [aux_sym_close_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token2] = ACTIONS(5061), - [aux_sym_file_position_statement_token3] = ACTIONS(5061), - [aux_sym_file_position_statement_token4] = ACTIONS(5061), - [aux_sym_allocate_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_logical_expression_token5] = ACTIONS(5063), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LPAREN_SLASH] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [aux_sym_boolean_literal_token1] = ACTIONS(5063), - [aux_sym_boolean_literal_token2] = ACTIONS(5063), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - [sym__float_literal] = ACTIONS(5063), - [sym__boz_literal] = ACTIONS(5063), - [sym__string_literal] = ACTIONS(5063), - [sym__string_literal_kind] = ACTIONS(5063), - }, - [1370] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_end_program_statement_token2] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), - }, - [1371] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_LPAREN2] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_end_program_statement_token2] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_subroutine_call_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_keyword_statement_token4] = ACTIONS(5057), - [aux_sym_keyword_statement_token6] = ACTIONS(5057), - [aux_sym_keyword_statement_token7] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym_do_loop_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym__inline_where_statement_token1] = ACTIONS(5057), - [aux_sym__forall_control_expression_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token3] = ACTIONS(5057), - [aux_sym_select_type_statement_token1] = ACTIONS(5057), - [aux_sym_select_rank_statement_token2] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_associate_statement_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_print_statement_token1] = ACTIONS(5057), - [aux_sym_open_statement_token1] = ACTIONS(5057), - [aux_sym_close_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token2] = ACTIONS(5057), - [aux_sym_file_position_statement_token3] = ACTIONS(5057), - [aux_sym_file_position_statement_token4] = ACTIONS(5057), - [aux_sym_allocate_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_logical_expression_token5] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_LPAREN_SLASH] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [aux_sym_boolean_literal_token1] = ACTIONS(5059), - [aux_sym_boolean_literal_token2] = ACTIONS(5059), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - [sym__float_literal] = ACTIONS(5059), - [sym__boz_literal] = ACTIONS(5059), - [sym__string_literal] = ACTIONS(5059), - [sym__string_literal_kind] = ACTIONS(5059), - }, - [1372] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_LPAREN2] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_end_program_statement_token2] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_subroutine_call_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_keyword_statement_token4] = ACTIONS(5021), - [aux_sym_keyword_statement_token6] = ACTIONS(5021), - [aux_sym_keyword_statement_token7] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym_do_loop_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym__inline_where_statement_token1] = ACTIONS(5021), - [aux_sym__forall_control_expression_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token3] = ACTIONS(5021), - [aux_sym_select_type_statement_token1] = ACTIONS(5021), - [aux_sym_select_rank_statement_token2] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_associate_statement_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_print_statement_token1] = ACTIONS(5021), - [aux_sym_open_statement_token1] = ACTIONS(5021), - [aux_sym_close_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token2] = ACTIONS(5021), - [aux_sym_file_position_statement_token3] = ACTIONS(5021), - [aux_sym_file_position_statement_token4] = ACTIONS(5021), - [aux_sym_allocate_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_logical_expression_token5] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_LPAREN_SLASH] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [aux_sym_boolean_literal_token1] = ACTIONS(5023), - [aux_sym_boolean_literal_token2] = ACTIONS(5023), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - [sym__float_literal] = ACTIONS(5023), - [sym__boz_literal] = ACTIONS(5023), - [sym__string_literal] = ACTIONS(5023), - [sym__string_literal_kind] = ACTIONS(5023), - }, - [1373] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_end_program_statement_token2] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_subroutine_call_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_keyword_statement_token4] = ACTIONS(4487), - [aux_sym_keyword_statement_token6] = ACTIONS(4487), - [aux_sym_keyword_statement_token7] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym_do_loop_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym__inline_where_statement_token1] = ACTIONS(4487), - [aux_sym__forall_control_expression_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token3] = ACTIONS(4487), - [aux_sym_select_type_statement_token1] = ACTIONS(4487), - [aux_sym_select_rank_statement_token2] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_associate_statement_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_print_statement_token1] = ACTIONS(4487), - [aux_sym_open_statement_token1] = ACTIONS(4487), - [aux_sym_close_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token2] = ACTIONS(4487), - [aux_sym_file_position_statement_token3] = ACTIONS(4487), - [aux_sym_file_position_statement_token4] = ACTIONS(4487), - [aux_sym_allocate_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_logical_expression_token5] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_LPAREN_SLASH] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [aux_sym_boolean_literal_token1] = ACTIONS(4489), - [aux_sym_boolean_literal_token2] = ACTIONS(4489), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - [sym__float_literal] = ACTIONS(4489), - [sym__boz_literal] = ACTIONS(4489), - [sym__string_literal] = ACTIONS(4489), - [sym__string_literal_kind] = ACTIONS(4489), - }, - [1374] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_end_program_statement_token2] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_subroutine_call_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_keyword_statement_token4] = ACTIONS(5025), - [aux_sym_keyword_statement_token6] = ACTIONS(5025), - [aux_sym_keyword_statement_token7] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym_do_loop_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym__inline_where_statement_token1] = ACTIONS(5025), - [aux_sym__forall_control_expression_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token3] = ACTIONS(5025), - [aux_sym_select_type_statement_token1] = ACTIONS(5025), - [aux_sym_select_rank_statement_token2] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_associate_statement_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_print_statement_token1] = ACTIONS(5025), - [aux_sym_open_statement_token1] = ACTIONS(5025), - [aux_sym_close_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token2] = ACTIONS(5025), - [aux_sym_file_position_statement_token3] = ACTIONS(5025), - [aux_sym_file_position_statement_token4] = ACTIONS(5025), - [aux_sym_allocate_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_logical_expression_token5] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_LPAREN_SLASH] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [aux_sym_boolean_literal_token1] = ACTIONS(5027), - [aux_sym_boolean_literal_token2] = ACTIONS(5027), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - [sym__float_literal] = ACTIONS(5027), - [sym__boz_literal] = ACTIONS(5027), - [sym__string_literal] = ACTIONS(5027), - [sym__string_literal_kind] = ACTIONS(5027), - }, - [1375] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_end_program_statement_token2] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_subroutine_call_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_keyword_statement_token4] = ACTIONS(5037), - [aux_sym_keyword_statement_token6] = ACTIONS(5037), - [aux_sym_keyword_statement_token7] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym_do_loop_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym__inline_where_statement_token1] = ACTIONS(5037), - [aux_sym__forall_control_expression_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token3] = ACTIONS(5037), - [aux_sym_select_type_statement_token1] = ACTIONS(5037), - [aux_sym_select_rank_statement_token2] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_associate_statement_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_print_statement_token1] = ACTIONS(5037), - [aux_sym_open_statement_token1] = ACTIONS(5037), - [aux_sym_close_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token2] = ACTIONS(5037), - [aux_sym_file_position_statement_token3] = ACTIONS(5037), - [aux_sym_file_position_statement_token4] = ACTIONS(5037), - [aux_sym_allocate_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_logical_expression_token5] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_LPAREN_SLASH] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [aux_sym_boolean_literal_token1] = ACTIONS(5039), - [aux_sym_boolean_literal_token2] = ACTIONS(5039), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - [sym__float_literal] = ACTIONS(5039), - [sym__boz_literal] = ACTIONS(5039), - [sym__string_literal] = ACTIONS(5039), - [sym__string_literal_kind] = ACTIONS(5039), - }, - [1376] = { - [aux_sym_preproc_include_token1] = ACTIONS(4972), - [aux_sym_preproc_def_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), - [sym_preproc_directive] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4974), - [anon_sym_DASH] = ACTIONS(4974), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4972), - [aux_sym_end_program_statement_token2] = ACTIONS(4972), - [aux_sym_interface_statement_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), - [aux_sym_language_binding_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token3] = ACTIONS(4972), - [aux_sym_contains_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token2] = ACTIONS(4972), - [aux_sym_implicit_statement_token1] = ACTIONS(4972), - [aux_sym_implicit_statement_token3] = ACTIONS(4972), - [aux_sym_implicit_statement_token4] = ACTIONS(4972), - [aux_sym_save_statement_token1] = ACTIONS(4972), - [aux_sym_private_statement_token1] = ACTIONS(4972), - [aux_sym_public_statement_token1] = ACTIONS(4972), - [aux_sym_namelist_statement_token1] = ACTIONS(4972), - [aux_sym_common_statement_token1] = ACTIONS(4972), - [aux_sym_import_statement_token1] = ACTIONS(4972), - [aux_sym_derived_type_definition_token1] = ACTIONS(4972), - [aux_sym_abstract_specifier_token1] = ACTIONS(4972), - [aux_sym_procedure_attribute_token6] = ACTIONS(4972), - [aux_sym_variable_attributes_token1] = ACTIONS(4972), - [aux_sym_variable_attributes_token2] = ACTIONS(4972), - [aux_sym_variable_attributes_token3] = ACTIONS(4972), - [aux_sym_variable_attributes_token4] = ACTIONS(4972), - [aux_sym_variable_attributes_token5] = ACTIONS(4972), - [aux_sym__intrinsic_type_token1] = ACTIONS(4972), - [aux_sym__intrinsic_type_token2] = ACTIONS(4972), - [aux_sym__intrinsic_type_token3] = ACTIONS(4972), - [aux_sym__intrinsic_type_token4] = ACTIONS(4972), - [aux_sym__intrinsic_type_token6] = ACTIONS(4972), - [aux_sym__intrinsic_type_token7] = ACTIONS(4972), - [aux_sym__intrinsic_type_token8] = ACTIONS(4972), - [aux_sym__intrinsic_type_token9] = ACTIONS(4972), - [aux_sym__intrinsic_type_token10] = ACTIONS(4972), - [aux_sym_derived_type_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), - [aux_sym_type_qualifier_token1] = ACTIONS(4972), - [aux_sym_type_qualifier_token2] = ACTIONS(4972), - [aux_sym_equivalence_statement_token1] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4974), - [aux_sym_stop_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token2] = ACTIONS(4972), - [aux_sym_subroutine_call_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token3] = ACTIONS(4972), - [aux_sym_keyword_statement_token4] = ACTIONS(4972), - [aux_sym_keyword_statement_token6] = ACTIONS(4972), - [aux_sym_keyword_statement_token7] = ACTIONS(4972), - [aux_sym_include_statement_token1] = ACTIONS(4972), - [aux_sym_data_statement_token1] = ACTIONS(4972), - [aux_sym_do_loop_statement_token1] = ACTIONS(4972), - [aux_sym__inline_if_statement_token1] = ACTIONS(4972), - [aux_sym_end_if_statement_token1] = ACTIONS(4972), - [aux_sym_elseif_clause_token2] = ACTIONS(4972), - [aux_sym__inline_where_statement_token1] = ACTIONS(4972), - [aux_sym__forall_control_expression_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token3] = ACTIONS(4972), - [aux_sym_select_type_statement_token1] = ACTIONS(4972), - [aux_sym_select_rank_statement_token2] = ACTIONS(4972), - [aux_sym_block_construct_token1] = ACTIONS(4972), - [aux_sym_associate_statement_token1] = ACTIONS(4972), - [aux_sym_format_statement_token1] = ACTIONS(4972), - [aux_sym_print_statement_token1] = ACTIONS(4972), - [aux_sym_open_statement_token1] = ACTIONS(4972), - [aux_sym_close_statement_token1] = ACTIONS(4972), - [aux_sym_inquire_statement_token1] = ACTIONS(4972), - [aux_sym_enum_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token2] = ACTIONS(4972), - [aux_sym_file_position_statement_token3] = ACTIONS(4972), - [aux_sym_file_position_statement_token4] = ACTIONS(4972), - [aux_sym_allocate_statement_token1] = ACTIONS(4972), - [aux_sym_entry_statement_token1] = ACTIONS(4972), - [aux_sym_logical_expression_token5] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_LPAREN_SLASH] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [aux_sym_boolean_literal_token1] = ACTIONS(4974), - [aux_sym_boolean_literal_token2] = ACTIONS(4974), - [aux_sym_null_literal_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token2] = ACTIONS(4972), - [aux_sym_coarray_statement_token6] = ACTIONS(4972), - [aux_sym_coarray_statement_token8] = ACTIONS(4972), - [aux_sym_coarray_statement_token11] = ACTIONS(4972), - [aux_sym_coarray_statement_token12] = ACTIONS(4972), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), - [aux_sym_identifier_token1] = ACTIONS(4972), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4974), - [sym__float_literal] = ACTIONS(4974), - [sym__boz_literal] = ACTIONS(4974), - [sym__string_literal] = ACTIONS(4974), - [sym__string_literal_kind] = ACTIONS(4974), - }, - [1377] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_end_program_statement_token2] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_subroutine_call_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_keyword_statement_token4] = ACTIONS(5049), - [aux_sym_keyword_statement_token6] = ACTIONS(5049), - [aux_sym_keyword_statement_token7] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym_do_loop_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym__inline_where_statement_token1] = ACTIONS(5049), - [aux_sym__forall_control_expression_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token3] = ACTIONS(5049), - [aux_sym_select_type_statement_token1] = ACTIONS(5049), - [aux_sym_select_rank_statement_token2] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_associate_statement_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_print_statement_token1] = ACTIONS(5049), - [aux_sym_open_statement_token1] = ACTIONS(5049), - [aux_sym_close_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token2] = ACTIONS(5049), - [aux_sym_file_position_statement_token3] = ACTIONS(5049), - [aux_sym_file_position_statement_token4] = ACTIONS(5049), - [aux_sym_allocate_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_logical_expression_token5] = ACTIONS(5051), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_LPAREN_SLASH] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [aux_sym_boolean_literal_token1] = ACTIONS(5051), - [aux_sym_boolean_literal_token2] = ACTIONS(5051), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - [sym__float_literal] = ACTIONS(5051), - [sym__boz_literal] = ACTIONS(5051), - [sym__string_literal] = ACTIONS(5051), - [sym__string_literal_kind] = ACTIONS(5051), - }, - [1378] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_program_statement_token2] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), - }, - [1379] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_end_program_statement_token2] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), - }, - [1380] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_LPAREN2] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_subroutine_call_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_keyword_statement_token4] = ACTIONS(5029), - [aux_sym_keyword_statement_token6] = ACTIONS(5029), - [aux_sym_keyword_statement_token7] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym_do_loop_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym__inline_where_statement_token1] = ACTIONS(5029), - [aux_sym__forall_control_expression_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token3] = ACTIONS(5029), - [aux_sym_select_type_statement_token1] = ACTIONS(5029), - [aux_sym_select_rank_statement_token2] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_associate_statement_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_print_statement_token1] = ACTIONS(5029), - [aux_sym_open_statement_token1] = ACTIONS(5029), - [aux_sym_close_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token2] = ACTIONS(5029), - [aux_sym_file_position_statement_token3] = ACTIONS(5029), - [aux_sym_file_position_statement_token4] = ACTIONS(5029), - [aux_sym_allocate_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_logical_expression_token5] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_LPAREN_SLASH] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [aux_sym_boolean_literal_token1] = ACTIONS(5031), - [aux_sym_boolean_literal_token2] = ACTIONS(5031), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - [sym__float_literal] = ACTIONS(5031), - [sym__boz_literal] = ACTIONS(5031), - [sym__string_literal] = ACTIONS(5031), - [sym__string_literal_kind] = ACTIONS(5031), - }, [1381] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_LPAREN2] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_subroutine_call_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_keyword_statement_token4] = ACTIONS(5033), - [aux_sym_keyword_statement_token6] = ACTIONS(5033), - [aux_sym_keyword_statement_token7] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym_do_loop_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym__inline_where_statement_token1] = ACTIONS(5033), - [aux_sym__forall_control_expression_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token3] = ACTIONS(5033), - [aux_sym_select_type_statement_token1] = ACTIONS(5033), - [aux_sym_select_rank_statement_token2] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_associate_statement_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_print_statement_token1] = ACTIONS(5033), - [aux_sym_open_statement_token1] = ACTIONS(5033), - [aux_sym_close_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token2] = ACTIONS(5033), - [aux_sym_file_position_statement_token3] = ACTIONS(5033), - [aux_sym_file_position_statement_token4] = ACTIONS(5033), - [aux_sym_allocate_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_logical_expression_token5] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_LPAREN_SLASH] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [aux_sym_boolean_literal_token1] = ACTIONS(5035), - [aux_sym_boolean_literal_token2] = ACTIONS(5035), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - [sym__float_literal] = ACTIONS(5035), - [sym__boz_literal] = ACTIONS(5035), - [sym__string_literal] = ACTIONS(5035), - [sym__string_literal_kind] = ACTIONS(5035), + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, [1382] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_subroutine_call_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_keyword_statement_token4] = ACTIONS(5018), + [aux_sym_keyword_statement_token6] = ACTIONS(5018), + [aux_sym_keyword_statement_token7] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym_do_loop_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym__inline_where_statement_token1] = ACTIONS(5018), + [aux_sym__forall_control_expression_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token3] = ACTIONS(5018), + [aux_sym_select_type_statement_token1] = ACTIONS(5018), + [aux_sym_select_rank_statement_token2] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_associate_statement_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_print_statement_token1] = ACTIONS(5018), + [aux_sym_open_statement_token1] = ACTIONS(5018), + [aux_sym_close_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token2] = ACTIONS(5018), + [aux_sym_file_position_statement_token3] = ACTIONS(5018), + [aux_sym_file_position_statement_token4] = ACTIONS(5018), + [aux_sym_allocate_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_logical_expression_token5] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_LPAREN_SLASH] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [aux_sym_boolean_literal_token1] = ACTIONS(5020), + [aux_sym_boolean_literal_token2] = ACTIONS(5020), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + [sym__float_literal] = ACTIONS(5020), + [sym__boz_literal] = ACTIONS(5020), + [sym__string_literal] = ACTIONS(5020), + [sym__string_literal_kind] = ACTIONS(5020), }, [1383] = { - [aux_sym_preproc_include_token1] = ACTIONS(5081), - [aux_sym_preproc_def_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), - [sym_preproc_directive] = ACTIONS(5081), - [anon_sym_LPAREN2] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [1384] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_subroutine_call_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_keyword_statement_token4] = ACTIONS(5022), + [aux_sym_keyword_statement_token6] = ACTIONS(5022), + [aux_sym_keyword_statement_token7] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym_do_loop_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym__inline_where_statement_token1] = ACTIONS(5022), + [aux_sym__forall_control_expression_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token3] = ACTIONS(5022), + [aux_sym_select_type_statement_token1] = ACTIONS(5022), + [aux_sym_select_rank_statement_token2] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_associate_statement_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_print_statement_token1] = ACTIONS(5022), + [aux_sym_open_statement_token1] = ACTIONS(5022), + [aux_sym_close_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token2] = ACTIONS(5022), + [aux_sym_file_position_statement_token3] = ACTIONS(5022), + [aux_sym_file_position_statement_token4] = ACTIONS(5022), + [aux_sym_allocate_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_logical_expression_token5] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_LPAREN_SLASH] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [aux_sym_boolean_literal_token1] = ACTIONS(5024), + [aux_sym_boolean_literal_token2] = ACTIONS(5024), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + [sym__float_literal] = ACTIONS(5024), + [sym__boz_literal] = ACTIONS(5024), + [sym__string_literal] = ACTIONS(5024), + [sym__string_literal_kind] = ACTIONS(5024), + }, + [1385] = { + [aux_sym_preproc_include_token1] = ACTIONS(5418), + [aux_sym_preproc_def_token1] = ACTIONS(5418), + [aux_sym_preproc_if_token1] = ACTIONS(5418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5418), + [sym_preproc_directive] = ACTIONS(5418), + [anon_sym_LPAREN2] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5420), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5081), - [aux_sym_interface_statement_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), - [aux_sym_language_binding_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token3] = ACTIONS(5081), - [aux_sym_end_function_statement_token1] = ACTIONS(5081), - [aux_sym_contains_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token2] = ACTIONS(5081), - [aux_sym_implicit_statement_token1] = ACTIONS(5081), - [aux_sym_implicit_statement_token3] = ACTIONS(5081), - [aux_sym_implicit_statement_token4] = ACTIONS(5081), - [aux_sym_save_statement_token1] = ACTIONS(5081), - [aux_sym_private_statement_token1] = ACTIONS(5081), - [aux_sym_public_statement_token1] = ACTIONS(5081), - [aux_sym_namelist_statement_token1] = ACTIONS(5081), - [aux_sym_common_statement_token1] = ACTIONS(5081), - [aux_sym_import_statement_token1] = ACTIONS(5081), - [aux_sym_derived_type_definition_token1] = ACTIONS(5081), - [aux_sym_abstract_specifier_token1] = ACTIONS(5081), - [aux_sym_procedure_attribute_token6] = ACTIONS(5081), - [aux_sym_variable_attributes_token1] = ACTIONS(5081), - [aux_sym_variable_attributes_token2] = ACTIONS(5081), - [aux_sym_variable_attributes_token3] = ACTIONS(5081), - [aux_sym_variable_attributes_token4] = ACTIONS(5081), - [aux_sym_variable_attributes_token5] = ACTIONS(5081), - [aux_sym__intrinsic_type_token1] = ACTIONS(5081), - [aux_sym__intrinsic_type_token2] = ACTIONS(5081), - [aux_sym__intrinsic_type_token3] = ACTIONS(5081), - [aux_sym__intrinsic_type_token4] = ACTIONS(5081), - [aux_sym__intrinsic_type_token6] = ACTIONS(5081), - [aux_sym__intrinsic_type_token7] = ACTIONS(5081), - [aux_sym__intrinsic_type_token8] = ACTIONS(5081), - [aux_sym__intrinsic_type_token9] = ACTIONS(5081), - [aux_sym__intrinsic_type_token10] = ACTIONS(5081), - [aux_sym_derived_type_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), - [aux_sym_type_qualifier_token1] = ACTIONS(5081), - [aux_sym_type_qualifier_token2] = ACTIONS(5081), - [aux_sym_equivalence_statement_token1] = ACTIONS(5081), - [anon_sym_SEMI] = ACTIONS(5083), - [aux_sym_stop_statement_token1] = ACTIONS(5081), - [aux_sym_stop_statement_token2] = ACTIONS(5081), - [aux_sym_subroutine_call_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token2] = ACTIONS(5081), - [aux_sym_keyword_statement_token3] = ACTIONS(5081), - [aux_sym_keyword_statement_token4] = ACTIONS(5081), - [aux_sym_keyword_statement_token6] = ACTIONS(5081), - [aux_sym_keyword_statement_token7] = ACTIONS(5081), - [aux_sym_include_statement_token1] = ACTIONS(5081), - [aux_sym_data_statement_token1] = ACTIONS(5081), - [aux_sym_do_loop_statement_token1] = ACTIONS(5081), - [aux_sym__inline_if_statement_token1] = ACTIONS(5081), - [aux_sym_end_if_statement_token1] = ACTIONS(5081), - [aux_sym_elseif_clause_token2] = ACTIONS(5081), - [aux_sym__inline_where_statement_token1] = ACTIONS(5081), - [aux_sym__forall_control_expression_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token3] = ACTIONS(5081), - [aux_sym_select_type_statement_token1] = ACTIONS(5081), - [aux_sym_select_rank_statement_token2] = ACTIONS(5081), - [aux_sym_block_construct_token1] = ACTIONS(5081), - [aux_sym_associate_statement_token1] = ACTIONS(5081), - [aux_sym_format_statement_token1] = ACTIONS(5081), - [aux_sym_print_statement_token1] = ACTIONS(5081), - [aux_sym_open_statement_token1] = ACTIONS(5081), - [aux_sym_close_statement_token1] = ACTIONS(5081), - [aux_sym_inquire_statement_token1] = ACTIONS(5081), - [aux_sym_enum_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token2] = ACTIONS(5081), - [aux_sym_file_position_statement_token3] = ACTIONS(5081), - [aux_sym_file_position_statement_token4] = ACTIONS(5081), - [aux_sym_allocate_statement_token1] = ACTIONS(5081), - [aux_sym_entry_statement_token1] = ACTIONS(5081), - [aux_sym_logical_expression_token5] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_LPAREN_SLASH] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [aux_sym_boolean_literal_token1] = ACTIONS(5083), - [aux_sym_boolean_literal_token2] = ACTIONS(5083), - [aux_sym_null_literal_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token2] = ACTIONS(5081), - [aux_sym_coarray_statement_token6] = ACTIONS(5081), - [aux_sym_coarray_statement_token8] = ACTIONS(5081), - [aux_sym_coarray_statement_token11] = ACTIONS(5081), - [aux_sym_coarray_statement_token12] = ACTIONS(5081), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), - [aux_sym_identifier_token1] = ACTIONS(5081), + [aux_sym_end_program_statement_token1] = ACTIONS(5418), + [aux_sym_interface_statement_token1] = ACTIONS(5418), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5418), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5418), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5418), + [aux_sym_language_binding_token1] = ACTIONS(5418), + [aux_sym_procedure_attributes_token1] = ACTIONS(5418), + [aux_sym_procedure_attributes_token3] = ACTIONS(5418), + [aux_sym_end_function_statement_token1] = ACTIONS(5418), + [aux_sym_contains_statement_token1] = ACTIONS(5418), + [aux_sym_use_statement_token1] = ACTIONS(5418), + [aux_sym_use_statement_token2] = ACTIONS(5418), + [aux_sym_implicit_statement_token1] = ACTIONS(5418), + [aux_sym_implicit_statement_token3] = ACTIONS(5418), + [aux_sym_implicit_statement_token4] = ACTIONS(5418), + [aux_sym_save_statement_token1] = ACTIONS(5418), + [aux_sym_private_statement_token1] = ACTIONS(5418), + [aux_sym_public_statement_token1] = ACTIONS(5418), + [aux_sym_namelist_statement_token1] = ACTIONS(5418), + [aux_sym_common_statement_token1] = ACTIONS(5418), + [aux_sym_import_statement_token1] = ACTIONS(5418), + [aux_sym_derived_type_definition_token1] = ACTIONS(5418), + [aux_sym_abstract_specifier_token1] = ACTIONS(5418), + [aux_sym_procedure_attribute_token6] = ACTIONS(5418), + [aux_sym_variable_attributes_token1] = ACTIONS(5418), + [aux_sym_variable_attributes_token2] = ACTIONS(5418), + [aux_sym_variable_attributes_token3] = ACTIONS(5418), + [aux_sym_variable_attributes_token4] = ACTIONS(5418), + [aux_sym_variable_attributes_token5] = ACTIONS(5418), + [aux_sym__intrinsic_type_token1] = ACTIONS(5418), + [aux_sym__intrinsic_type_token2] = ACTIONS(5418), + [aux_sym__intrinsic_type_token3] = ACTIONS(5418), + [aux_sym__intrinsic_type_token4] = ACTIONS(5418), + [aux_sym__intrinsic_type_token6] = ACTIONS(5418), + [aux_sym__intrinsic_type_token7] = ACTIONS(5418), + [aux_sym__intrinsic_type_token8] = ACTIONS(5418), + [aux_sym__intrinsic_type_token9] = ACTIONS(5418), + [aux_sym__intrinsic_type_token10] = ACTIONS(5418), + [aux_sym_derived_type_token1] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5418), + [aux_sym_type_qualifier_token1] = ACTIONS(5418), + [aux_sym_type_qualifier_token2] = ACTIONS(5418), + [aux_sym_equivalence_statement_token1] = ACTIONS(5418), + [anon_sym_SEMI] = ACTIONS(5420), + [aux_sym_stop_statement_token1] = ACTIONS(5418), + [aux_sym_stop_statement_token2] = ACTIONS(5418), + [aux_sym_subroutine_call_token1] = ACTIONS(5418), + [aux_sym_keyword_statement_token1] = ACTIONS(5418), + [aux_sym_keyword_statement_token2] = ACTIONS(5418), + [aux_sym_keyword_statement_token3] = ACTIONS(5418), + [aux_sym_keyword_statement_token4] = ACTIONS(5418), + [aux_sym_keyword_statement_token6] = ACTIONS(5418), + [aux_sym_keyword_statement_token7] = ACTIONS(5418), + [aux_sym_include_statement_token1] = ACTIONS(5418), + [aux_sym_data_statement_token1] = ACTIONS(5418), + [aux_sym_do_loop_statement_token1] = ACTIONS(5418), + [aux_sym__inline_if_statement_token1] = ACTIONS(5418), + [aux_sym_end_if_statement_token1] = ACTIONS(5418), + [aux_sym_elseif_clause_token2] = ACTIONS(5418), + [aux_sym__inline_where_statement_token1] = ACTIONS(5418), + [aux_sym__forall_control_expression_token1] = ACTIONS(5418), + [aux_sym_select_case_statement_token1] = ACTIONS(5418), + [aux_sym_select_case_statement_token3] = ACTIONS(5418), + [aux_sym_select_type_statement_token1] = ACTIONS(5418), + [aux_sym_select_rank_statement_token2] = ACTIONS(5418), + [aux_sym_block_construct_token1] = ACTIONS(5418), + [aux_sym_associate_statement_token1] = ACTIONS(5418), + [aux_sym_format_statement_token1] = ACTIONS(5418), + [aux_sym_print_statement_token1] = ACTIONS(5418), + [aux_sym_open_statement_token1] = ACTIONS(5418), + [aux_sym_close_statement_token1] = ACTIONS(5418), + [aux_sym_inquire_statement_token1] = ACTIONS(5418), + [aux_sym_enum_statement_token1] = ACTIONS(5418), + [aux_sym_file_position_statement_token1] = ACTIONS(5418), + [aux_sym_file_position_statement_token2] = ACTIONS(5418), + [aux_sym_file_position_statement_token3] = ACTIONS(5418), + [aux_sym_file_position_statement_token4] = ACTIONS(5418), + [aux_sym_allocate_statement_token1] = ACTIONS(5418), + [aux_sym_entry_statement_token1] = ACTIONS(5418), + [aux_sym_logical_expression_token5] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_LPAREN_SLASH] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [aux_sym_boolean_literal_token1] = ACTIONS(5420), + [aux_sym_boolean_literal_token2] = ACTIONS(5420), + [aux_sym_null_literal_token1] = ACTIONS(5418), + [aux_sym_coarray_statement_token1] = ACTIONS(5418), + [aux_sym_coarray_statement_token2] = ACTIONS(5418), + [aux_sym_coarray_statement_token6] = ACTIONS(5418), + [aux_sym_coarray_statement_token8] = ACTIONS(5418), + [aux_sym_coarray_statement_token11] = ACTIONS(5418), + [aux_sym_coarray_statement_token12] = ACTIONS(5418), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5418), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5418), + [aux_sym_identifier_token1] = ACTIONS(5418), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5083), - [sym__float_literal] = ACTIONS(5083), - [sym__boz_literal] = ACTIONS(5083), - [sym__string_literal] = ACTIONS(5083), - [sym__string_literal_kind] = ACTIONS(5083), - }, - [1384] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_LPAREN2] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_end_function_statement_token1] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_subroutine_call_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_keyword_statement_token4] = ACTIONS(5057), - [aux_sym_keyword_statement_token6] = ACTIONS(5057), - [aux_sym_keyword_statement_token7] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym_do_loop_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym__inline_where_statement_token1] = ACTIONS(5057), - [aux_sym__forall_control_expression_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token3] = ACTIONS(5057), - [aux_sym_select_type_statement_token1] = ACTIONS(5057), - [aux_sym_select_rank_statement_token2] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_associate_statement_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_print_statement_token1] = ACTIONS(5057), - [aux_sym_open_statement_token1] = ACTIONS(5057), - [aux_sym_close_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token2] = ACTIONS(5057), - [aux_sym_file_position_statement_token3] = ACTIONS(5057), - [aux_sym_file_position_statement_token4] = ACTIONS(5057), - [aux_sym_allocate_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_logical_expression_token5] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_LPAREN_SLASH] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [aux_sym_boolean_literal_token1] = ACTIONS(5059), - [aux_sym_boolean_literal_token2] = ACTIONS(5059), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - [sym__float_literal] = ACTIONS(5059), - [sym__boz_literal] = ACTIONS(5059), - [sym__string_literal] = ACTIONS(5059), - [sym__string_literal_kind] = ACTIONS(5059), - }, - [1385] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [sym__integer_literal] = ACTIONS(5420), + [sym__float_literal] = ACTIONS(5420), + [sym__boz_literal] = ACTIONS(5420), + [sym__string_literal] = ACTIONS(5420), + [sym__string_literal_kind] = ACTIONS(5420), }, [1386] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_LPAREN2] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_subroutine_call_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_keyword_statement_token4] = ACTIONS(5041), - [aux_sym_keyword_statement_token6] = ACTIONS(5041), - [aux_sym_keyword_statement_token7] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym_do_loop_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym__inline_where_statement_token1] = ACTIONS(5041), - [aux_sym__forall_control_expression_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token3] = ACTIONS(5041), - [aux_sym_select_type_statement_token1] = ACTIONS(5041), - [aux_sym_select_rank_statement_token2] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_associate_statement_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_print_statement_token1] = ACTIONS(5041), - [aux_sym_open_statement_token1] = ACTIONS(5041), - [aux_sym_close_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token2] = ACTIONS(5041), - [aux_sym_file_position_statement_token3] = ACTIONS(5041), - [aux_sym_file_position_statement_token4] = ACTIONS(5041), - [aux_sym_allocate_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_logical_expression_token5] = ACTIONS(5043), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_LPAREN_SLASH] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [aux_sym_boolean_literal_token1] = ACTIONS(5043), - [aux_sym_boolean_literal_token2] = ACTIONS(5043), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - [sym__float_literal] = ACTIONS(5043), - [sym__boz_literal] = ACTIONS(5043), - [sym__string_literal] = ACTIONS(5043), - [sym__string_literal_kind] = ACTIONS(5043), + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token2] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_subroutine_call_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_keyword_statement_token4] = ACTIONS(5002), + [aux_sym_keyword_statement_token6] = ACTIONS(5002), + [aux_sym_keyword_statement_token7] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym_do_loop_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym__inline_where_statement_token1] = ACTIONS(5002), + [aux_sym__forall_control_expression_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token3] = ACTIONS(5002), + [aux_sym_select_type_statement_token1] = ACTIONS(5002), + [aux_sym_select_rank_statement_token2] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_associate_statement_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_print_statement_token1] = ACTIONS(5002), + [aux_sym_open_statement_token1] = ACTIONS(5002), + [aux_sym_close_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token2] = ACTIONS(5002), + [aux_sym_file_position_statement_token3] = ACTIONS(5002), + [aux_sym_file_position_statement_token4] = ACTIONS(5002), + [aux_sym_allocate_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_logical_expression_token5] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_LPAREN_SLASH] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [aux_sym_boolean_literal_token1] = ACTIONS(5004), + [aux_sym_boolean_literal_token2] = ACTIONS(5004), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5004), + [sym__float_literal] = ACTIONS(5004), + [sym__boz_literal] = ACTIONS(5004), + [sym__string_literal] = ACTIONS(5004), + [sym__string_literal_kind] = ACTIONS(5004), }, [1387] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_LPAREN2] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_subroutine_call_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_keyword_statement_token4] = ACTIONS(5045), - [aux_sym_keyword_statement_token6] = ACTIONS(5045), - [aux_sym_keyword_statement_token7] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym_do_loop_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym__inline_where_statement_token1] = ACTIONS(5045), - [aux_sym__forall_control_expression_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token3] = ACTIONS(5045), - [aux_sym_select_type_statement_token1] = ACTIONS(5045), - [aux_sym_select_rank_statement_token2] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_associate_statement_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_print_statement_token1] = ACTIONS(5045), - [aux_sym_open_statement_token1] = ACTIONS(5045), - [aux_sym_close_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token2] = ACTIONS(5045), - [aux_sym_file_position_statement_token3] = ACTIONS(5045), - [aux_sym_file_position_statement_token4] = ACTIONS(5045), - [aux_sym_allocate_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_logical_expression_token5] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_LPAREN_SLASH] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [aux_sym_boolean_literal_token1] = ACTIONS(5047), - [aux_sym_boolean_literal_token2] = ACTIONS(5047), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - [sym__float_literal] = ACTIONS(5047), - [sym__boz_literal] = ACTIONS(5047), - [sym__string_literal] = ACTIONS(5047), - [sym__string_literal_kind] = ACTIONS(5047), + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_end_program_statement_token2] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_subroutine_call_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_keyword_statement_token4] = ACTIONS(4998), + [aux_sym_keyword_statement_token6] = ACTIONS(4998), + [aux_sym_keyword_statement_token7] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym_do_loop_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym__inline_where_statement_token1] = ACTIONS(4998), + [aux_sym__forall_control_expression_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token3] = ACTIONS(4998), + [aux_sym_select_type_statement_token1] = ACTIONS(4998), + [aux_sym_select_rank_statement_token2] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_associate_statement_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_print_statement_token1] = ACTIONS(4998), + [aux_sym_open_statement_token1] = ACTIONS(4998), + [aux_sym_close_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token2] = ACTIONS(4998), + [aux_sym_file_position_statement_token3] = ACTIONS(4998), + [aux_sym_file_position_statement_token4] = ACTIONS(4998), + [aux_sym_allocate_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [aux_sym_boolean_literal_token1] = ACTIONS(5000), + [aux_sym_boolean_literal_token2] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + [sym__float_literal] = ACTIONS(5000), + [sym__boz_literal] = ACTIONS(5000), + [sym__string_literal] = ACTIONS(5000), + [sym__string_literal_kind] = ACTIONS(5000), }, [1388] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_subroutine_call_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_keyword_statement_token4] = ACTIONS(5026), + [aux_sym_keyword_statement_token6] = ACTIONS(5026), + [aux_sym_keyword_statement_token7] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym_do_loop_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym__inline_where_statement_token1] = ACTIONS(5026), + [aux_sym__forall_control_expression_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token3] = ACTIONS(5026), + [aux_sym_select_type_statement_token1] = ACTIONS(5026), + [aux_sym_select_rank_statement_token2] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_associate_statement_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_print_statement_token1] = ACTIONS(5026), + [aux_sym_open_statement_token1] = ACTIONS(5026), + [aux_sym_close_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token2] = ACTIONS(5026), + [aux_sym_file_position_statement_token3] = ACTIONS(5026), + [aux_sym_file_position_statement_token4] = ACTIONS(5026), + [aux_sym_allocate_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_logical_expression_token5] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_LPAREN_SLASH] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [aux_sym_boolean_literal_token1] = ACTIONS(5028), + [aux_sym_boolean_literal_token2] = ACTIONS(5028), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + [sym__float_literal] = ACTIONS(5028), + [sym__boz_literal] = ACTIONS(5028), + [sym__string_literal] = ACTIONS(5028), + [sym__string_literal_kind] = ACTIONS(5028), }, [1389] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_subroutine_call_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_keyword_statement_token4] = ACTIONS(4487), - [aux_sym_keyword_statement_token6] = ACTIONS(4487), - [aux_sym_keyword_statement_token7] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym_do_loop_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym__inline_where_statement_token1] = ACTIONS(4487), - [aux_sym__forall_control_expression_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token3] = ACTIONS(4487), - [aux_sym_select_type_statement_token1] = ACTIONS(4487), - [aux_sym_select_rank_statement_token2] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_associate_statement_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_print_statement_token1] = ACTIONS(4487), - [aux_sym_open_statement_token1] = ACTIONS(4487), - [aux_sym_close_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token2] = ACTIONS(4487), - [aux_sym_file_position_statement_token3] = ACTIONS(4487), - [aux_sym_file_position_statement_token4] = ACTIONS(4487), - [aux_sym_allocate_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_logical_expression_token5] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_LPAREN_SLASH] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [aux_sym_boolean_literal_token1] = ACTIONS(4489), - [aux_sym_boolean_literal_token2] = ACTIONS(4489), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - [sym__float_literal] = ACTIONS(4489), - [sym__boz_literal] = ACTIONS(4489), - [sym__string_literal] = ACTIONS(4489), - [sym__string_literal_kind] = ACTIONS(4489), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, [1390] = { [aux_sym_preproc_include_token1] = ACTIONS(4976), @@ -275675,8 +275675,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), [sym_preproc_directive] = ACTIONS(4976), [anon_sym_LPAREN2] = ACTIONS(4976), - [anon_sym_PLUS] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4976), [aux_sym_interface_statement_token1] = ACTIONS(4976), @@ -275733,7 +275733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(4976), [aux_sym_type_qualifier_token2] = ACTIONS(4976), [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4980), [aux_sym_stop_statement_token1] = ACTIONS(4976), [aux_sym_stop_statement_token2] = ACTIONS(4976), [aux_sym_subroutine_call_token1] = ACTIONS(4976), @@ -275769,12 +275769,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4976), [aux_sym_allocate_statement_token1] = ACTIONS(4976), [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_logical_expression_token5] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(4980), [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_LPAREN_SLASH] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [aux_sym_boolean_literal_token1] = ACTIONS(4978), - [aux_sym_boolean_literal_token2] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), [aux_sym_null_literal_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token2] = ACTIONS(4976), @@ -275786,513 +275786,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), [aux_sym_identifier_token1] = ACTIONS(4976), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - [sym__float_literal] = ACTIONS(4978), - [sym__boz_literal] = ACTIONS(4978), - [sym__string_literal] = ACTIONS(4978), - [sym__string_literal_kind] = ACTIONS(4978), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, [1391] = { - [aux_sym_preproc_include_token1] = ACTIONS(4990), - [aux_sym_preproc_def_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), - [sym_preproc_directive] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4990), - [aux_sym_interface_statement_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_language_binding_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token3] = ACTIONS(4990), - [aux_sym_end_function_statement_token1] = ACTIONS(4990), - [aux_sym_contains_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token2] = ACTIONS(4990), - [aux_sym_implicit_statement_token1] = ACTIONS(4990), - [aux_sym_implicit_statement_token3] = ACTIONS(4990), - [aux_sym_implicit_statement_token4] = ACTIONS(4990), - [aux_sym_save_statement_token1] = ACTIONS(4990), - [aux_sym_private_statement_token1] = ACTIONS(4990), - [aux_sym_public_statement_token1] = ACTIONS(4990), - [aux_sym_namelist_statement_token1] = ACTIONS(4990), - [aux_sym_common_statement_token1] = ACTIONS(4990), - [aux_sym_import_statement_token1] = ACTIONS(4990), - [aux_sym_derived_type_definition_token1] = ACTIONS(4990), - [aux_sym_abstract_specifier_token1] = ACTIONS(4990), - [aux_sym_procedure_attribute_token6] = ACTIONS(4990), - [aux_sym_variable_attributes_token1] = ACTIONS(4990), - [aux_sym_variable_attributes_token2] = ACTIONS(4990), - [aux_sym_variable_attributes_token3] = ACTIONS(4990), - [aux_sym_variable_attributes_token4] = ACTIONS(4990), - [aux_sym_variable_attributes_token5] = ACTIONS(4990), - [aux_sym__intrinsic_type_token1] = ACTIONS(4990), - [aux_sym__intrinsic_type_token2] = ACTIONS(4990), - [aux_sym__intrinsic_type_token3] = ACTIONS(4990), - [aux_sym__intrinsic_type_token4] = ACTIONS(4990), - [aux_sym__intrinsic_type_token6] = ACTIONS(4990), - [aux_sym__intrinsic_type_token7] = ACTIONS(4990), - [aux_sym__intrinsic_type_token8] = ACTIONS(4990), - [aux_sym__intrinsic_type_token9] = ACTIONS(4990), - [aux_sym__intrinsic_type_token10] = ACTIONS(4990), - [aux_sym_derived_type_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), - [aux_sym_type_qualifier_token1] = ACTIONS(4990), - [aux_sym_type_qualifier_token2] = ACTIONS(4990), - [aux_sym_equivalence_statement_token1] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4992), - [aux_sym_stop_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token2] = ACTIONS(4990), - [aux_sym_subroutine_call_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token3] = ACTIONS(4990), - [aux_sym_keyword_statement_token4] = ACTIONS(4990), - [aux_sym_keyword_statement_token6] = ACTIONS(4990), - [aux_sym_keyword_statement_token7] = ACTIONS(4990), - [aux_sym_include_statement_token1] = ACTIONS(4990), - [aux_sym_data_statement_token1] = ACTIONS(4990), - [aux_sym_do_loop_statement_token1] = ACTIONS(4990), - [aux_sym__inline_if_statement_token1] = ACTIONS(4990), - [aux_sym_end_if_statement_token1] = ACTIONS(4990), - [aux_sym_elseif_clause_token2] = ACTIONS(4990), - [aux_sym__inline_where_statement_token1] = ACTIONS(4990), - [aux_sym__forall_control_expression_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token3] = ACTIONS(4990), - [aux_sym_select_type_statement_token1] = ACTIONS(4990), - [aux_sym_select_rank_statement_token2] = ACTIONS(4990), - [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_associate_statement_token1] = ACTIONS(4990), - [aux_sym_format_statement_token1] = ACTIONS(4990), - [aux_sym_print_statement_token1] = ACTIONS(4990), - [aux_sym_open_statement_token1] = ACTIONS(4990), - [aux_sym_close_statement_token1] = ACTIONS(4990), - [aux_sym_inquire_statement_token1] = ACTIONS(4990), - [aux_sym_enum_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token2] = ACTIONS(4990), - [aux_sym_file_position_statement_token3] = ACTIONS(4990), - [aux_sym_file_position_statement_token4] = ACTIONS(4990), - [aux_sym_allocate_statement_token1] = ACTIONS(4990), - [aux_sym_entry_statement_token1] = ACTIONS(4990), - [aux_sym_logical_expression_token5] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_LPAREN_SLASH] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [aux_sym_boolean_literal_token1] = ACTIONS(4992), - [aux_sym_boolean_literal_token2] = ACTIONS(4992), - [aux_sym_null_literal_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token2] = ACTIONS(4990), - [aux_sym_coarray_statement_token6] = ACTIONS(4990), - [aux_sym_coarray_statement_token8] = ACTIONS(4990), - [aux_sym_coarray_statement_token11] = ACTIONS(4990), - [aux_sym_coarray_statement_token12] = ACTIONS(4990), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), - [aux_sym_identifier_token1] = ACTIONS(4990), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4992), - [sym__float_literal] = ACTIONS(4992), - [sym__boz_literal] = ACTIONS(4992), - [sym__string_literal] = ACTIONS(4992), - [sym__string_literal_kind] = ACTIONS(4992), + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_LPAREN2] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_subroutine_call_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_keyword_statement_token4] = ACTIONS(5051), + [aux_sym_keyword_statement_token6] = ACTIONS(5051), + [aux_sym_keyword_statement_token7] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym_do_loop_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym__inline_where_statement_token1] = ACTIONS(5051), + [aux_sym__forall_control_expression_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token3] = ACTIONS(5051), + [aux_sym_select_type_statement_token1] = ACTIONS(5051), + [aux_sym_select_rank_statement_token2] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_associate_statement_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_print_statement_token1] = ACTIONS(5051), + [aux_sym_open_statement_token1] = ACTIONS(5051), + [aux_sym_close_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token2] = ACTIONS(5051), + [aux_sym_file_position_statement_token3] = ACTIONS(5051), + [aux_sym_file_position_statement_token4] = ACTIONS(5051), + [aux_sym_allocate_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_logical_expression_token5] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_LPAREN_SLASH] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [aux_sym_boolean_literal_token1] = ACTIONS(5053), + [aux_sym_boolean_literal_token2] = ACTIONS(5053), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + [sym__float_literal] = ACTIONS(5053), + [sym__boz_literal] = ACTIONS(5053), + [sym__string_literal] = ACTIONS(5053), + [sym__string_literal_kind] = ACTIONS(5053), }, [1392] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_LPAREN2] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_end_function_statement_token1] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_subroutine_call_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_keyword_statement_token4] = ACTIONS(5073), - [aux_sym_keyword_statement_token6] = ACTIONS(5073), - [aux_sym_keyword_statement_token7] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym_do_loop_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym__inline_where_statement_token1] = ACTIONS(5073), - [aux_sym__forall_control_expression_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token3] = ACTIONS(5073), - [aux_sym_select_type_statement_token1] = ACTIONS(5073), - [aux_sym_select_rank_statement_token2] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_associate_statement_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_print_statement_token1] = ACTIONS(5073), - [aux_sym_open_statement_token1] = ACTIONS(5073), - [aux_sym_close_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token2] = ACTIONS(5073), - [aux_sym_file_position_statement_token3] = ACTIONS(5073), - [aux_sym_file_position_statement_token4] = ACTIONS(5073), - [aux_sym_allocate_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_logical_expression_token5] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LPAREN_SLASH] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [aux_sym_boolean_literal_token1] = ACTIONS(5075), - [aux_sym_boolean_literal_token2] = ACTIONS(5075), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - [sym__float_literal] = ACTIONS(5075), - [sym__boz_literal] = ACTIONS(5075), - [sym__string_literal] = ACTIONS(5075), - [sym__string_literal_kind] = ACTIONS(5075), - }, - [1393] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_LPAREN2] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_end_function_statement_token1] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [anon_sym_SEMI] = ACTIONS(5079), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_subroutine_call_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_keyword_statement_token4] = ACTIONS(5077), - [aux_sym_keyword_statement_token6] = ACTIONS(5077), - [aux_sym_keyword_statement_token7] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym_do_loop_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym__inline_where_statement_token1] = ACTIONS(5077), - [aux_sym__forall_control_expression_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token3] = ACTIONS(5077), - [aux_sym_select_type_statement_token1] = ACTIONS(5077), - [aux_sym_select_rank_statement_token2] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_associate_statement_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_print_statement_token1] = ACTIONS(5077), - [aux_sym_open_statement_token1] = ACTIONS(5077), - [aux_sym_close_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token2] = ACTIONS(5077), - [aux_sym_file_position_statement_token3] = ACTIONS(5077), - [aux_sym_file_position_statement_token4] = ACTIONS(5077), - [aux_sym_allocate_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_logical_expression_token5] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_LPAREN_SLASH] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [aux_sym_boolean_literal_token1] = ACTIONS(5079), - [aux_sym_boolean_literal_token2] = ACTIONS(5079), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - [sym__float_literal] = ACTIONS(5079), - [sym__boz_literal] = ACTIONS(5079), - [sym__string_literal] = ACTIONS(5079), - [sym__string_literal_kind] = ACTIONS(5079), - }, - [1394] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_LPAREN2] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [anon_sym_SEMI] = ACTIONS(5055), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_subroutine_call_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_keyword_statement_token4] = ACTIONS(5053), - [aux_sym_keyword_statement_token6] = ACTIONS(5053), - [aux_sym_keyword_statement_token7] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym_do_loop_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym__inline_where_statement_token1] = ACTIONS(5053), - [aux_sym__forall_control_expression_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token3] = ACTIONS(5053), - [aux_sym_select_type_statement_token1] = ACTIONS(5053), - [aux_sym_select_rank_statement_token2] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_associate_statement_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_print_statement_token1] = ACTIONS(5053), - [aux_sym_open_statement_token1] = ACTIONS(5053), - [aux_sym_close_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token2] = ACTIONS(5053), - [aux_sym_file_position_statement_token3] = ACTIONS(5053), - [aux_sym_file_position_statement_token4] = ACTIONS(5053), - [aux_sym_allocate_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_logical_expression_token5] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_LPAREN_SLASH] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [aux_sym_boolean_literal_token1] = ACTIONS(5055), - [aux_sym_boolean_literal_token2] = ACTIONS(5055), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - [sym__float_literal] = ACTIONS(5055), - [sym__boz_literal] = ACTIONS(5055), - [sym__string_literal] = ACTIONS(5055), - [sym__string_literal_kind] = ACTIONS(5055), - }, - [1395] = { [aux_sym_preproc_include_token1] = ACTIONS(4972), [aux_sym_preproc_def_token1] = ACTIONS(4972), [aux_sym_preproc_if_token1] = ACTIONS(4972), @@ -276375,3924 +276000,2424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_end_if_statement_token1] = ACTIONS(4972), [aux_sym_elseif_clause_token2] = ACTIONS(4972), [aux_sym__inline_where_statement_token1] = ACTIONS(4972), - [aux_sym__forall_control_expression_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token3] = ACTIONS(4972), - [aux_sym_select_type_statement_token1] = ACTIONS(4972), - [aux_sym_select_rank_statement_token2] = ACTIONS(4972), - [aux_sym_block_construct_token1] = ACTIONS(4972), - [aux_sym_associate_statement_token1] = ACTIONS(4972), - [aux_sym_format_statement_token1] = ACTIONS(4972), - [aux_sym_print_statement_token1] = ACTIONS(4972), - [aux_sym_open_statement_token1] = ACTIONS(4972), - [aux_sym_close_statement_token1] = ACTIONS(4972), - [aux_sym_inquire_statement_token1] = ACTIONS(4972), - [aux_sym_enum_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token2] = ACTIONS(4972), - [aux_sym_file_position_statement_token3] = ACTIONS(4972), - [aux_sym_file_position_statement_token4] = ACTIONS(4972), - [aux_sym_allocate_statement_token1] = ACTIONS(4972), - [aux_sym_entry_statement_token1] = ACTIONS(4972), - [aux_sym_logical_expression_token5] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_LPAREN_SLASH] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [aux_sym_boolean_literal_token1] = ACTIONS(4974), - [aux_sym_boolean_literal_token2] = ACTIONS(4974), - [aux_sym_null_literal_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token2] = ACTIONS(4972), - [aux_sym_coarray_statement_token6] = ACTIONS(4972), - [aux_sym_coarray_statement_token8] = ACTIONS(4972), - [aux_sym_coarray_statement_token11] = ACTIONS(4972), - [aux_sym_coarray_statement_token12] = ACTIONS(4972), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), - [aux_sym_identifier_token1] = ACTIONS(4972), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4974), - [sym__float_literal] = ACTIONS(4974), - [sym__boz_literal] = ACTIONS(4974), - [sym__string_literal] = ACTIONS(4974), - [sym__string_literal_kind] = ACTIONS(4974), - }, - [1396] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_LPAREN2] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_subroutine_call_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_keyword_statement_token4] = ACTIONS(4619), - [aux_sym_keyword_statement_token6] = ACTIONS(4619), - [aux_sym_keyword_statement_token7] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym_do_loop_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym__inline_where_statement_token1] = ACTIONS(4619), - [aux_sym__forall_control_expression_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token3] = ACTIONS(4619), - [aux_sym_select_type_statement_token1] = ACTIONS(4619), - [aux_sym_select_rank_statement_token2] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_associate_statement_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_print_statement_token1] = ACTIONS(4619), - [aux_sym_open_statement_token1] = ACTIONS(4619), - [aux_sym_close_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token2] = ACTIONS(4619), - [aux_sym_file_position_statement_token3] = ACTIONS(4619), - [aux_sym_file_position_statement_token4] = ACTIONS(4619), - [aux_sym_allocate_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_logical_expression_token5] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_LPAREN_SLASH] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [aux_sym_boolean_literal_token1] = ACTIONS(4621), - [aux_sym_boolean_literal_token2] = ACTIONS(4621), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - [sym__float_literal] = ACTIONS(4621), - [sym__boz_literal] = ACTIONS(4621), - [sym__string_literal] = ACTIONS(4621), - [sym__string_literal_kind] = ACTIONS(4621), - }, - [1397] = { - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_contains_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [anon_sym_SEMI] = ACTIONS(4513), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_subroutine_call_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_keyword_statement_token4] = ACTIONS(4511), - [aux_sym_keyword_statement_token6] = ACTIONS(4511), - [aux_sym_keyword_statement_token7] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym_do_loop_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym__inline_where_statement_token1] = ACTIONS(4511), - [aux_sym__forall_control_expression_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token3] = ACTIONS(4511), - [aux_sym_select_type_statement_token1] = ACTIONS(4511), - [aux_sym_select_rank_statement_token2] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_associate_statement_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_print_statement_token1] = ACTIONS(4511), - [aux_sym_open_statement_token1] = ACTIONS(4511), - [aux_sym_close_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token2] = ACTIONS(4511), - [aux_sym_file_position_statement_token3] = ACTIONS(4511), - [aux_sym_file_position_statement_token4] = ACTIONS(4511), - [aux_sym_allocate_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_logical_expression_token5] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4511), - [anon_sym_LPAREN_SLASH] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [aux_sym_boolean_literal_token1] = ACTIONS(4513), - [aux_sym_boolean_literal_token2] = ACTIONS(4513), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), - [sym__float_literal] = ACTIONS(4513), - [sym__boz_literal] = ACTIONS(4513), - [sym__string_literal] = ACTIONS(4513), - [sym__string_literal_kind] = ACTIONS(4513), - }, - [1398] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_LPAREN2] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_end_function_statement_token1] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_subroutine_call_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_keyword_statement_token4] = ACTIONS(5021), - [aux_sym_keyword_statement_token6] = ACTIONS(5021), - [aux_sym_keyword_statement_token7] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym_do_loop_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym__inline_where_statement_token1] = ACTIONS(5021), - [aux_sym__forall_control_expression_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token3] = ACTIONS(5021), - [aux_sym_select_type_statement_token1] = ACTIONS(5021), - [aux_sym_select_rank_statement_token2] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_associate_statement_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_print_statement_token1] = ACTIONS(5021), - [aux_sym_open_statement_token1] = ACTIONS(5021), - [aux_sym_close_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token2] = ACTIONS(5021), - [aux_sym_file_position_statement_token3] = ACTIONS(5021), - [aux_sym_file_position_statement_token4] = ACTIONS(5021), - [aux_sym_allocate_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_logical_expression_token5] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_LPAREN_SLASH] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [aux_sym_boolean_literal_token1] = ACTIONS(5023), - [aux_sym_boolean_literal_token2] = ACTIONS(5023), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - [sym__float_literal] = ACTIONS(5023), - [sym__boz_literal] = ACTIONS(5023), - [sym__string_literal] = ACTIONS(5023), - [sym__string_literal_kind] = ACTIONS(5023), - }, - [1399] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_end_function_statement_token1] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_subroutine_call_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_keyword_statement_token4] = ACTIONS(5025), - [aux_sym_keyword_statement_token6] = ACTIONS(5025), - [aux_sym_keyword_statement_token7] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym_do_loop_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym__inline_where_statement_token1] = ACTIONS(5025), - [aux_sym__forall_control_expression_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token3] = ACTIONS(5025), - [aux_sym_select_type_statement_token1] = ACTIONS(5025), - [aux_sym_select_rank_statement_token2] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_associate_statement_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_print_statement_token1] = ACTIONS(5025), - [aux_sym_open_statement_token1] = ACTIONS(5025), - [aux_sym_close_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token2] = ACTIONS(5025), - [aux_sym_file_position_statement_token3] = ACTIONS(5025), - [aux_sym_file_position_statement_token4] = ACTIONS(5025), - [aux_sym_allocate_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_logical_expression_token5] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_LPAREN_SLASH] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [aux_sym_boolean_literal_token1] = ACTIONS(5027), - [aux_sym_boolean_literal_token2] = ACTIONS(5027), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - [sym__float_literal] = ACTIONS(5027), - [sym__boz_literal] = ACTIONS(5027), - [sym__string_literal] = ACTIONS(5027), - [sym__string_literal_kind] = ACTIONS(5027), - }, - [1400] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_end_function_statement_token1] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_subroutine_call_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_keyword_statement_token4] = ACTIONS(5037), - [aux_sym_keyword_statement_token6] = ACTIONS(5037), - [aux_sym_keyword_statement_token7] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym_do_loop_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym__inline_where_statement_token1] = ACTIONS(5037), - [aux_sym__forall_control_expression_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token3] = ACTIONS(5037), - [aux_sym_select_type_statement_token1] = ACTIONS(5037), - [aux_sym_select_rank_statement_token2] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_associate_statement_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_print_statement_token1] = ACTIONS(5037), - [aux_sym_open_statement_token1] = ACTIONS(5037), - [aux_sym_close_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token2] = ACTIONS(5037), - [aux_sym_file_position_statement_token3] = ACTIONS(5037), - [aux_sym_file_position_statement_token4] = ACTIONS(5037), - [aux_sym_allocate_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_logical_expression_token5] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_LPAREN_SLASH] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [aux_sym_boolean_literal_token1] = ACTIONS(5039), - [aux_sym_boolean_literal_token2] = ACTIONS(5039), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - [sym__float_literal] = ACTIONS(5039), - [sym__boz_literal] = ACTIONS(5039), - [sym__string_literal] = ACTIONS(5039), - [sym__string_literal_kind] = ACTIONS(5039), - }, - [1401] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_end_function_statement_token1] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_subroutine_call_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_keyword_statement_token4] = ACTIONS(5049), - [aux_sym_keyword_statement_token6] = ACTIONS(5049), - [aux_sym_keyword_statement_token7] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym_do_loop_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym__inline_where_statement_token1] = ACTIONS(5049), - [aux_sym__forall_control_expression_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token3] = ACTIONS(5049), - [aux_sym_select_type_statement_token1] = ACTIONS(5049), - [aux_sym_select_rank_statement_token2] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_associate_statement_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_print_statement_token1] = ACTIONS(5049), - [aux_sym_open_statement_token1] = ACTIONS(5049), - [aux_sym_close_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token2] = ACTIONS(5049), - [aux_sym_file_position_statement_token3] = ACTIONS(5049), - [aux_sym_file_position_statement_token4] = ACTIONS(5049), - [aux_sym_allocate_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_logical_expression_token5] = ACTIONS(5051), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_LPAREN_SLASH] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [aux_sym_boolean_literal_token1] = ACTIONS(5051), - [aux_sym_boolean_literal_token2] = ACTIONS(5051), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - [sym__float_literal] = ACTIONS(5051), - [sym__boz_literal] = ACTIONS(5051), - [sym__string_literal] = ACTIONS(5051), - [sym__string_literal_kind] = ACTIONS(5051), - }, - [1402] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_subroutine_call_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_keyword_statement_token4] = ACTIONS(5065), - [aux_sym_keyword_statement_token6] = ACTIONS(5065), - [aux_sym_keyword_statement_token7] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym_do_loop_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym__inline_where_statement_token1] = ACTIONS(5065), - [aux_sym__forall_control_expression_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token3] = ACTIONS(5065), - [aux_sym_select_type_statement_token1] = ACTIONS(5065), - [aux_sym_select_rank_statement_token2] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_associate_statement_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_print_statement_token1] = ACTIONS(5065), - [aux_sym_open_statement_token1] = ACTIONS(5065), - [aux_sym_close_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token2] = ACTIONS(5065), - [aux_sym_file_position_statement_token3] = ACTIONS(5065), - [aux_sym_file_position_statement_token4] = ACTIONS(5065), - [aux_sym_allocate_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_logical_expression_token5] = ACTIONS(5067), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_LPAREN_SLASH] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [aux_sym_boolean_literal_token1] = ACTIONS(5067), - [aux_sym_boolean_literal_token2] = ACTIONS(5067), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - [sym__float_literal] = ACTIONS(5067), - [sym__boz_literal] = ACTIONS(5067), - [sym__string_literal] = ACTIONS(5067), - [sym__string_literal_kind] = ACTIONS(5067), - }, - [1403] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_LPAREN2] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_subroutine_call_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_keyword_statement_token4] = ACTIONS(5069), - [aux_sym_keyword_statement_token6] = ACTIONS(5069), - [aux_sym_keyword_statement_token7] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym_do_loop_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym__inline_where_statement_token1] = ACTIONS(5069), - [aux_sym__forall_control_expression_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token3] = ACTIONS(5069), - [aux_sym_select_type_statement_token1] = ACTIONS(5069), - [aux_sym_select_rank_statement_token2] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_associate_statement_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_print_statement_token1] = ACTIONS(5069), - [aux_sym_open_statement_token1] = ACTIONS(5069), - [aux_sym_close_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token2] = ACTIONS(5069), - [aux_sym_file_position_statement_token3] = ACTIONS(5069), - [aux_sym_file_position_statement_token4] = ACTIONS(5069), - [aux_sym_allocate_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_logical_expression_token5] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LPAREN_SLASH] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [aux_sym_boolean_literal_token1] = ACTIONS(5071), - [aux_sym_boolean_literal_token2] = ACTIONS(5071), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - [sym__float_literal] = ACTIONS(5071), - [sym__boz_literal] = ACTIONS(5071), - [sym__string_literal] = ACTIONS(5071), - [sym__string_literal_kind] = ACTIONS(5071), - }, - [1404] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), - }, - [1405] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_LPAREN2] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_end_function_statement_token1] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_subroutine_call_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_keyword_statement_token4] = ACTIONS(5061), - [aux_sym_keyword_statement_token6] = ACTIONS(5061), - [aux_sym_keyword_statement_token7] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym_do_loop_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym__inline_where_statement_token1] = ACTIONS(5061), - [aux_sym__forall_control_expression_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token3] = ACTIONS(5061), - [aux_sym_select_type_statement_token1] = ACTIONS(5061), - [aux_sym_select_rank_statement_token2] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_associate_statement_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_print_statement_token1] = ACTIONS(5061), - [aux_sym_open_statement_token1] = ACTIONS(5061), - [aux_sym_close_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token2] = ACTIONS(5061), - [aux_sym_file_position_statement_token3] = ACTIONS(5061), - [aux_sym_file_position_statement_token4] = ACTIONS(5061), - [aux_sym_allocate_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_logical_expression_token5] = ACTIONS(5063), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LPAREN_SLASH] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [aux_sym_boolean_literal_token1] = ACTIONS(5063), - [aux_sym_boolean_literal_token2] = ACTIONS(5063), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - [sym__float_literal] = ACTIONS(5063), - [sym__boz_literal] = ACTIONS(5063), - [sym__string_literal] = ACTIONS(5063), - [sym__string_literal_kind] = ACTIONS(5063), - }, - [1406] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_LPAREN2] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_end_program_statement_token2] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_subroutine_call_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_keyword_statement_token4] = ACTIONS(4619), - [aux_sym_keyword_statement_token6] = ACTIONS(4619), - [aux_sym_keyword_statement_token7] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym_do_loop_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym__inline_where_statement_token1] = ACTIONS(4619), - [aux_sym__forall_control_expression_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token3] = ACTIONS(4619), - [aux_sym_select_type_statement_token1] = ACTIONS(4619), - [aux_sym_select_rank_statement_token2] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_associate_statement_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_print_statement_token1] = ACTIONS(4619), - [aux_sym_open_statement_token1] = ACTIONS(4619), - [aux_sym_close_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token2] = ACTIONS(4619), - [aux_sym_file_position_statement_token3] = ACTIONS(4619), - [aux_sym_file_position_statement_token4] = ACTIONS(4619), - [aux_sym_allocate_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_logical_expression_token5] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_LPAREN_SLASH] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [aux_sym_boolean_literal_token1] = ACTIONS(4621), - [aux_sym_boolean_literal_token2] = ACTIONS(4621), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - [sym__float_literal] = ACTIONS(4621), - [sym__boz_literal] = ACTIONS(4621), - [sym__string_literal] = ACTIONS(4621), - [sym__string_literal_kind] = ACTIONS(4621), - }, - [1407] = { - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_end_program_statement_token2] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_contains_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [anon_sym_SEMI] = ACTIONS(4513), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_subroutine_call_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_keyword_statement_token4] = ACTIONS(4511), - [aux_sym_keyword_statement_token6] = ACTIONS(4511), - [aux_sym_keyword_statement_token7] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym_do_loop_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym__inline_where_statement_token1] = ACTIONS(4511), - [aux_sym__forall_control_expression_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token3] = ACTIONS(4511), - [aux_sym_select_type_statement_token1] = ACTIONS(4511), - [aux_sym_select_rank_statement_token2] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_associate_statement_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_print_statement_token1] = ACTIONS(4511), - [aux_sym_open_statement_token1] = ACTIONS(4511), - [aux_sym_close_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token2] = ACTIONS(4511), - [aux_sym_file_position_statement_token3] = ACTIONS(4511), - [aux_sym_file_position_statement_token4] = ACTIONS(4511), - [aux_sym_allocate_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_logical_expression_token5] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4511), - [anon_sym_LPAREN_SLASH] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [aux_sym_boolean_literal_token1] = ACTIONS(4513), - [aux_sym_boolean_literal_token2] = ACTIONS(4513), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), + [aux_sym__forall_control_expression_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token3] = ACTIONS(4972), + [aux_sym_select_type_statement_token1] = ACTIONS(4972), + [aux_sym_select_rank_statement_token2] = ACTIONS(4972), + [aux_sym_block_construct_token1] = ACTIONS(4972), + [aux_sym_associate_statement_token1] = ACTIONS(4972), + [aux_sym_format_statement_token1] = ACTIONS(4972), + [aux_sym_print_statement_token1] = ACTIONS(4972), + [aux_sym_open_statement_token1] = ACTIONS(4972), + [aux_sym_close_statement_token1] = ACTIONS(4972), + [aux_sym_inquire_statement_token1] = ACTIONS(4972), + [aux_sym_enum_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token2] = ACTIONS(4972), + [aux_sym_file_position_statement_token3] = ACTIONS(4972), + [aux_sym_file_position_statement_token4] = ACTIONS(4972), + [aux_sym_allocate_statement_token1] = ACTIONS(4972), + [aux_sym_entry_statement_token1] = ACTIONS(4972), + [aux_sym_logical_expression_token5] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_LPAREN_SLASH] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [aux_sym_boolean_literal_token1] = ACTIONS(4974), + [aux_sym_boolean_literal_token2] = ACTIONS(4974), + [aux_sym_null_literal_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token2] = ACTIONS(4972), + [aux_sym_coarray_statement_token6] = ACTIONS(4972), + [aux_sym_coarray_statement_token8] = ACTIONS(4972), + [aux_sym_coarray_statement_token11] = ACTIONS(4972), + [aux_sym_coarray_statement_token12] = ACTIONS(4972), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), + [aux_sym_identifier_token1] = ACTIONS(4972), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), - [sym__float_literal] = ACTIONS(4513), - [sym__boz_literal] = ACTIONS(4513), - [sym__string_literal] = ACTIONS(4513), - [sym__string_literal_kind] = ACTIONS(4513), + [sym__integer_literal] = ACTIONS(4974), + [sym__float_literal] = ACTIONS(4974), + [sym__boz_literal] = ACTIONS(4974), + [sym__string_literal] = ACTIONS(4974), + [sym__string_literal_kind] = ACTIONS(4974), }, - [1408] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [1393] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_LPAREN2] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_subroutine_call_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_keyword_statement_token4] = ACTIONS(5055), + [aux_sym_keyword_statement_token6] = ACTIONS(5055), + [aux_sym_keyword_statement_token7] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym_do_loop_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym__inline_where_statement_token1] = ACTIONS(5055), + [aux_sym__forall_control_expression_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token3] = ACTIONS(5055), + [aux_sym_select_type_statement_token1] = ACTIONS(5055), + [aux_sym_select_rank_statement_token2] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_associate_statement_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_print_statement_token1] = ACTIONS(5055), + [aux_sym_open_statement_token1] = ACTIONS(5055), + [aux_sym_close_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token2] = ACTIONS(5055), + [aux_sym_file_position_statement_token3] = ACTIONS(5055), + [aux_sym_file_position_statement_token4] = ACTIONS(5055), + [aux_sym_allocate_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_logical_expression_token5] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_LPAREN_SLASH] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [aux_sym_boolean_literal_token1] = ACTIONS(5057), + [aux_sym_boolean_literal_token2] = ACTIONS(5057), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + [sym__float_literal] = ACTIONS(5057), + [sym__boz_literal] = ACTIONS(5057), + [sym__string_literal] = ACTIONS(5057), + [sym__string_literal_kind] = ACTIONS(5057), + }, + [1394] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_LPAREN2] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_subroutine_call_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_keyword_statement_token4] = ACTIONS(5059), + [aux_sym_keyword_statement_token6] = ACTIONS(5059), + [aux_sym_keyword_statement_token7] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym_do_loop_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym__inline_where_statement_token1] = ACTIONS(5059), + [aux_sym__forall_control_expression_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token3] = ACTIONS(5059), + [aux_sym_select_type_statement_token1] = ACTIONS(5059), + [aux_sym_select_rank_statement_token2] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_associate_statement_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_print_statement_token1] = ACTIONS(5059), + [aux_sym_open_statement_token1] = ACTIONS(5059), + [aux_sym_close_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token2] = ACTIONS(5059), + [aux_sym_file_position_statement_token3] = ACTIONS(5059), + [aux_sym_file_position_statement_token4] = ACTIONS(5059), + [aux_sym_allocate_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_logical_expression_token5] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [aux_sym_boolean_literal_token1] = ACTIONS(5061), + [aux_sym_boolean_literal_token2] = ACTIONS(5061), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + [sym__float_literal] = ACTIONS(5061), + [sym__boz_literal] = ACTIONS(5061), + [sym__string_literal] = ACTIONS(5061), + [sym__string_literal_kind] = ACTIONS(5061), + }, + [1395] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_end_function_statement_token1] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, - [1409] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [1396] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [1397] = { + [aux_sym_preproc_include_token1] = ACTIONS(5414), + [aux_sym_preproc_def_token1] = ACTIONS(5414), + [aux_sym_preproc_if_token1] = ACTIONS(5414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5414), + [sym_preproc_directive] = ACTIONS(5414), + [anon_sym_LPAREN2] = ACTIONS(5414), + [anon_sym_PLUS] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5416), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(5414), + [aux_sym_end_program_statement_token2] = ACTIONS(5414), + [aux_sym_interface_statement_token1] = ACTIONS(5414), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5414), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5414), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5414), + [aux_sym_language_binding_token1] = ACTIONS(5414), + [aux_sym_procedure_attributes_token1] = ACTIONS(5414), + [aux_sym_procedure_attributes_token3] = ACTIONS(5414), + [aux_sym_contains_statement_token1] = ACTIONS(5414), + [aux_sym_use_statement_token1] = ACTIONS(5414), + [aux_sym_use_statement_token2] = ACTIONS(5414), + [aux_sym_implicit_statement_token1] = ACTIONS(5414), + [aux_sym_implicit_statement_token3] = ACTIONS(5414), + [aux_sym_implicit_statement_token4] = ACTIONS(5414), + [aux_sym_save_statement_token1] = ACTIONS(5414), + [aux_sym_private_statement_token1] = ACTIONS(5414), + [aux_sym_public_statement_token1] = ACTIONS(5414), + [aux_sym_namelist_statement_token1] = ACTIONS(5414), + [aux_sym_common_statement_token1] = ACTIONS(5414), + [aux_sym_import_statement_token1] = ACTIONS(5414), + [aux_sym_derived_type_definition_token1] = ACTIONS(5414), + [aux_sym_abstract_specifier_token1] = ACTIONS(5414), + [aux_sym_procedure_attribute_token6] = ACTIONS(5414), + [aux_sym_variable_attributes_token1] = ACTIONS(5414), + [aux_sym_variable_attributes_token2] = ACTIONS(5414), + [aux_sym_variable_attributes_token3] = ACTIONS(5414), + [aux_sym_variable_attributes_token4] = ACTIONS(5414), + [aux_sym_variable_attributes_token5] = ACTIONS(5414), + [aux_sym__intrinsic_type_token1] = ACTIONS(5414), + [aux_sym__intrinsic_type_token2] = ACTIONS(5414), + [aux_sym__intrinsic_type_token3] = ACTIONS(5414), + [aux_sym__intrinsic_type_token4] = ACTIONS(5414), + [aux_sym__intrinsic_type_token6] = ACTIONS(5414), + [aux_sym__intrinsic_type_token7] = ACTIONS(5414), + [aux_sym__intrinsic_type_token8] = ACTIONS(5414), + [aux_sym__intrinsic_type_token9] = ACTIONS(5414), + [aux_sym__intrinsic_type_token10] = ACTIONS(5414), + [aux_sym_derived_type_token1] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5414), + [aux_sym_type_qualifier_token1] = ACTIONS(5414), + [aux_sym_type_qualifier_token2] = ACTIONS(5414), + [aux_sym_equivalence_statement_token1] = ACTIONS(5414), + [anon_sym_SEMI] = ACTIONS(5416), + [aux_sym_stop_statement_token1] = ACTIONS(5414), + [aux_sym_stop_statement_token2] = ACTIONS(5414), + [aux_sym_subroutine_call_token1] = ACTIONS(5414), + [aux_sym_keyword_statement_token1] = ACTIONS(5414), + [aux_sym_keyword_statement_token2] = ACTIONS(5414), + [aux_sym_keyword_statement_token3] = ACTIONS(5414), + [aux_sym_keyword_statement_token4] = ACTIONS(5414), + [aux_sym_keyword_statement_token6] = ACTIONS(5414), + [aux_sym_keyword_statement_token7] = ACTIONS(5414), + [aux_sym_include_statement_token1] = ACTIONS(5414), + [aux_sym_data_statement_token1] = ACTIONS(5414), + [aux_sym_do_loop_statement_token1] = ACTIONS(5414), + [aux_sym__inline_if_statement_token1] = ACTIONS(5414), + [aux_sym_end_if_statement_token1] = ACTIONS(5414), + [aux_sym_elseif_clause_token2] = ACTIONS(5414), + [aux_sym__inline_where_statement_token1] = ACTIONS(5414), + [aux_sym__forall_control_expression_token1] = ACTIONS(5414), + [aux_sym_select_case_statement_token1] = ACTIONS(5414), + [aux_sym_select_case_statement_token3] = ACTIONS(5414), + [aux_sym_select_type_statement_token1] = ACTIONS(5414), + [aux_sym_select_rank_statement_token2] = ACTIONS(5414), + [aux_sym_block_construct_token1] = ACTIONS(5414), + [aux_sym_associate_statement_token1] = ACTIONS(5414), + [aux_sym_format_statement_token1] = ACTIONS(5414), + [aux_sym_print_statement_token1] = ACTIONS(5414), + [aux_sym_open_statement_token1] = ACTIONS(5414), + [aux_sym_close_statement_token1] = ACTIONS(5414), + [aux_sym_inquire_statement_token1] = ACTIONS(5414), + [aux_sym_enum_statement_token1] = ACTIONS(5414), + [aux_sym_file_position_statement_token1] = ACTIONS(5414), + [aux_sym_file_position_statement_token2] = ACTIONS(5414), + [aux_sym_file_position_statement_token3] = ACTIONS(5414), + [aux_sym_file_position_statement_token4] = ACTIONS(5414), + [aux_sym_allocate_statement_token1] = ACTIONS(5414), + [aux_sym_entry_statement_token1] = ACTIONS(5414), + [aux_sym_logical_expression_token5] = ACTIONS(5416), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_LPAREN_SLASH] = ACTIONS(5416), + [anon_sym_LBRACK] = ACTIONS(5416), + [aux_sym_boolean_literal_token1] = ACTIONS(5416), + [aux_sym_boolean_literal_token2] = ACTIONS(5416), + [aux_sym_null_literal_token1] = ACTIONS(5414), + [aux_sym_coarray_statement_token1] = ACTIONS(5414), + [aux_sym_coarray_statement_token2] = ACTIONS(5414), + [aux_sym_coarray_statement_token6] = ACTIONS(5414), + [aux_sym_coarray_statement_token8] = ACTIONS(5414), + [aux_sym_coarray_statement_token11] = ACTIONS(5414), + [aux_sym_coarray_statement_token12] = ACTIONS(5414), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5414), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5414), + [aux_sym_identifier_token1] = ACTIONS(5414), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(5416), + [sym__float_literal] = ACTIONS(5416), + [sym__boz_literal] = ACTIONS(5416), + [sym__string_literal] = ACTIONS(5416), + [sym__string_literal_kind] = ACTIONS(5416), }, - [1410] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_LPAREN2] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_end_function_statement_token1] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_subroutine_call_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_keyword_statement_token4] = ACTIONS(5029), - [aux_sym_keyword_statement_token6] = ACTIONS(5029), - [aux_sym_keyword_statement_token7] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym_do_loop_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym__inline_where_statement_token1] = ACTIONS(5029), - [aux_sym__forall_control_expression_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token3] = ACTIONS(5029), - [aux_sym_select_type_statement_token1] = ACTIONS(5029), - [aux_sym_select_rank_statement_token2] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_associate_statement_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_print_statement_token1] = ACTIONS(5029), - [aux_sym_open_statement_token1] = ACTIONS(5029), - [aux_sym_close_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token2] = ACTIONS(5029), - [aux_sym_file_position_statement_token3] = ACTIONS(5029), - [aux_sym_file_position_statement_token4] = ACTIONS(5029), - [aux_sym_allocate_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_logical_expression_token5] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_LPAREN_SLASH] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [aux_sym_boolean_literal_token1] = ACTIONS(5031), - [aux_sym_boolean_literal_token2] = ACTIONS(5031), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - [sym__float_literal] = ACTIONS(5031), - [sym__boz_literal] = ACTIONS(5031), - [sym__string_literal] = ACTIONS(5031), - [sym__string_literal_kind] = ACTIONS(5031), + [1398] = { + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_end_program_statement_token2] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, - [1411] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_LPAREN2] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_end_function_statement_token1] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_subroutine_call_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_keyword_statement_token4] = ACTIONS(5033), - [aux_sym_keyword_statement_token6] = ACTIONS(5033), - [aux_sym_keyword_statement_token7] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym_do_loop_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym__inline_where_statement_token1] = ACTIONS(5033), - [aux_sym__forall_control_expression_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token3] = ACTIONS(5033), - [aux_sym_select_type_statement_token1] = ACTIONS(5033), - [aux_sym_select_rank_statement_token2] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_associate_statement_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_print_statement_token1] = ACTIONS(5033), - [aux_sym_open_statement_token1] = ACTIONS(5033), - [aux_sym_close_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token2] = ACTIONS(5033), - [aux_sym_file_position_statement_token3] = ACTIONS(5033), - [aux_sym_file_position_statement_token4] = ACTIONS(5033), - [aux_sym_allocate_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_logical_expression_token5] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_LPAREN_SLASH] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [aux_sym_boolean_literal_token1] = ACTIONS(5035), - [aux_sym_boolean_literal_token2] = ACTIONS(5035), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - [sym__float_literal] = ACTIONS(5035), - [sym__boz_literal] = ACTIONS(5035), - [sym__string_literal] = ACTIONS(5035), - [sym__string_literal_kind] = ACTIONS(5035), + [1399] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_end_program_statement_token2] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_subroutine_call_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_keyword_statement_token4] = ACTIONS(5010), + [aux_sym_keyword_statement_token6] = ACTIONS(5010), + [aux_sym_keyword_statement_token7] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym_do_loop_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym__inline_where_statement_token1] = ACTIONS(5010), + [aux_sym__forall_control_expression_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token3] = ACTIONS(5010), + [aux_sym_select_type_statement_token1] = ACTIONS(5010), + [aux_sym_select_rank_statement_token2] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_associate_statement_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_print_statement_token1] = ACTIONS(5010), + [aux_sym_open_statement_token1] = ACTIONS(5010), + [aux_sym_close_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token2] = ACTIONS(5010), + [aux_sym_file_position_statement_token3] = ACTIONS(5010), + [aux_sym_file_position_statement_token4] = ACTIONS(5010), + [aux_sym_allocate_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_logical_expression_token5] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_LPAREN_SLASH] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [aux_sym_boolean_literal_token1] = ACTIONS(5012), + [aux_sym_boolean_literal_token2] = ACTIONS(5012), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + [sym__float_literal] = ACTIONS(5012), + [sym__boz_literal] = ACTIONS(5012), + [sym__string_literal] = ACTIONS(5012), + [sym__string_literal_kind] = ACTIONS(5012), }, - [1412] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_end_function_statement_token1] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), + [1400] = { + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_end_program_statement_token2] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, - [1413] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [1401] = { + [aux_sym_preproc_include_token1] = ACTIONS(5422), + [aux_sym_preproc_def_token1] = ACTIONS(5422), + [aux_sym_preproc_if_token1] = ACTIONS(5422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5422), + [sym_preproc_directive] = ACTIONS(5422), + [anon_sym_LPAREN2] = ACTIONS(5422), + [anon_sym_PLUS] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5424), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_program_statement_token2] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(5422), + [aux_sym_end_program_statement_token2] = ACTIONS(5422), + [aux_sym_interface_statement_token1] = ACTIONS(5422), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5422), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5422), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5422), + [aux_sym_language_binding_token1] = ACTIONS(5422), + [aux_sym_procedure_attributes_token1] = ACTIONS(5422), + [aux_sym_procedure_attributes_token3] = ACTIONS(5422), + [aux_sym_contains_statement_token1] = ACTIONS(5422), + [aux_sym_use_statement_token1] = ACTIONS(5422), + [aux_sym_use_statement_token2] = ACTIONS(5422), + [aux_sym_implicit_statement_token1] = ACTIONS(5422), + [aux_sym_implicit_statement_token3] = ACTIONS(5422), + [aux_sym_implicit_statement_token4] = ACTIONS(5422), + [aux_sym_save_statement_token1] = ACTIONS(5422), + [aux_sym_private_statement_token1] = ACTIONS(5422), + [aux_sym_public_statement_token1] = ACTIONS(5422), + [aux_sym_namelist_statement_token1] = ACTIONS(5422), + [aux_sym_common_statement_token1] = ACTIONS(5422), + [aux_sym_import_statement_token1] = ACTIONS(5422), + [aux_sym_derived_type_definition_token1] = ACTIONS(5422), + [aux_sym_abstract_specifier_token1] = ACTIONS(5422), + [aux_sym_procedure_attribute_token6] = ACTIONS(5422), + [aux_sym_variable_attributes_token1] = ACTIONS(5422), + [aux_sym_variable_attributes_token2] = ACTIONS(5422), + [aux_sym_variable_attributes_token3] = ACTIONS(5422), + [aux_sym_variable_attributes_token4] = ACTIONS(5422), + [aux_sym_variable_attributes_token5] = ACTIONS(5422), + [aux_sym__intrinsic_type_token1] = ACTIONS(5422), + [aux_sym__intrinsic_type_token2] = ACTIONS(5422), + [aux_sym__intrinsic_type_token3] = ACTIONS(5422), + [aux_sym__intrinsic_type_token4] = ACTIONS(5422), + [aux_sym__intrinsic_type_token6] = ACTIONS(5422), + [aux_sym__intrinsic_type_token7] = ACTIONS(5422), + [aux_sym__intrinsic_type_token8] = ACTIONS(5422), + [aux_sym__intrinsic_type_token9] = ACTIONS(5422), + [aux_sym__intrinsic_type_token10] = ACTIONS(5422), + [aux_sym_derived_type_token1] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5422), + [aux_sym_type_qualifier_token1] = ACTIONS(5422), + [aux_sym_type_qualifier_token2] = ACTIONS(5422), + [aux_sym_equivalence_statement_token1] = ACTIONS(5422), + [anon_sym_SEMI] = ACTIONS(5424), + [aux_sym_stop_statement_token1] = ACTIONS(5422), + [aux_sym_stop_statement_token2] = ACTIONS(5422), + [aux_sym_subroutine_call_token1] = ACTIONS(5422), + [aux_sym_keyword_statement_token1] = ACTIONS(5422), + [aux_sym_keyword_statement_token2] = ACTIONS(5422), + [aux_sym_keyword_statement_token3] = ACTIONS(5422), + [aux_sym_keyword_statement_token4] = ACTIONS(5422), + [aux_sym_keyword_statement_token6] = ACTIONS(5422), + [aux_sym_keyword_statement_token7] = ACTIONS(5422), + [aux_sym_include_statement_token1] = ACTIONS(5422), + [aux_sym_data_statement_token1] = ACTIONS(5422), + [aux_sym_do_loop_statement_token1] = ACTIONS(5422), + [aux_sym__inline_if_statement_token1] = ACTIONS(5422), + [aux_sym_end_if_statement_token1] = ACTIONS(5422), + [aux_sym_elseif_clause_token2] = ACTIONS(5422), + [aux_sym__inline_where_statement_token1] = ACTIONS(5422), + [aux_sym__forall_control_expression_token1] = ACTIONS(5422), + [aux_sym_select_case_statement_token1] = ACTIONS(5422), + [aux_sym_select_case_statement_token3] = ACTIONS(5422), + [aux_sym_select_type_statement_token1] = ACTIONS(5422), + [aux_sym_select_rank_statement_token2] = ACTIONS(5422), + [aux_sym_block_construct_token1] = ACTIONS(5422), + [aux_sym_associate_statement_token1] = ACTIONS(5422), + [aux_sym_format_statement_token1] = ACTIONS(5422), + [aux_sym_print_statement_token1] = ACTIONS(5422), + [aux_sym_open_statement_token1] = ACTIONS(5422), + [aux_sym_close_statement_token1] = ACTIONS(5422), + [aux_sym_inquire_statement_token1] = ACTIONS(5422), + [aux_sym_enum_statement_token1] = ACTIONS(5422), + [aux_sym_file_position_statement_token1] = ACTIONS(5422), + [aux_sym_file_position_statement_token2] = ACTIONS(5422), + [aux_sym_file_position_statement_token3] = ACTIONS(5422), + [aux_sym_file_position_statement_token4] = ACTIONS(5422), + [aux_sym_allocate_statement_token1] = ACTIONS(5422), + [aux_sym_entry_statement_token1] = ACTIONS(5422), + [aux_sym_logical_expression_token5] = ACTIONS(5424), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_LPAREN_SLASH] = ACTIONS(5424), + [anon_sym_LBRACK] = ACTIONS(5424), + [aux_sym_boolean_literal_token1] = ACTIONS(5424), + [aux_sym_boolean_literal_token2] = ACTIONS(5424), + [aux_sym_null_literal_token1] = ACTIONS(5422), + [aux_sym_coarray_statement_token1] = ACTIONS(5422), + [aux_sym_coarray_statement_token2] = ACTIONS(5422), + [aux_sym_coarray_statement_token6] = ACTIONS(5422), + [aux_sym_coarray_statement_token8] = ACTIONS(5422), + [aux_sym_coarray_statement_token11] = ACTIONS(5422), + [aux_sym_coarray_statement_token12] = ACTIONS(5422), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5422), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5422), + [aux_sym_identifier_token1] = ACTIONS(5422), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [1414] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_end_function_statement_token1] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [sym__integer_literal] = ACTIONS(5424), + [sym__float_literal] = ACTIONS(5424), + [sym__boz_literal] = ACTIONS(5424), + [sym__string_literal] = ACTIONS(5424), + [sym__string_literal_kind] = ACTIONS(5424), }, - [1415] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_LPAREN2] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_end_program_statement_token2] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [anon_sym_SEMI] = ACTIONS(5079), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_subroutine_call_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_keyword_statement_token4] = ACTIONS(5077), - [aux_sym_keyword_statement_token6] = ACTIONS(5077), - [aux_sym_keyword_statement_token7] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym_do_loop_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym__inline_where_statement_token1] = ACTIONS(5077), - [aux_sym__forall_control_expression_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token3] = ACTIONS(5077), - [aux_sym_select_type_statement_token1] = ACTIONS(5077), - [aux_sym_select_rank_statement_token2] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_associate_statement_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_print_statement_token1] = ACTIONS(5077), - [aux_sym_open_statement_token1] = ACTIONS(5077), - [aux_sym_close_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token2] = ACTIONS(5077), - [aux_sym_file_position_statement_token3] = ACTIONS(5077), - [aux_sym_file_position_statement_token4] = ACTIONS(5077), - [aux_sym_allocate_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_logical_expression_token5] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_LPAREN_SLASH] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [aux_sym_boolean_literal_token1] = ACTIONS(5079), - [aux_sym_boolean_literal_token2] = ACTIONS(5079), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - [sym__float_literal] = ACTIONS(5079), - [sym__boz_literal] = ACTIONS(5079), - [sym__string_literal] = ACTIONS(5079), - [sym__string_literal_kind] = ACTIONS(5079), + [1402] = { + [aux_sym_preproc_include_token1] = ACTIONS(5426), + [aux_sym_preproc_def_token1] = ACTIONS(5426), + [aux_sym_preproc_if_token1] = ACTIONS(5426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5426), + [sym_preproc_directive] = ACTIONS(5426), + [anon_sym_LPAREN2] = ACTIONS(5426), + [anon_sym_PLUS] = ACTIONS(5428), + [anon_sym_DASH] = ACTIONS(5428), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5426), + [aux_sym_end_program_statement_token2] = ACTIONS(5426), + [aux_sym_interface_statement_token1] = ACTIONS(5426), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5426), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5426), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5426), + [aux_sym_language_binding_token1] = ACTIONS(5426), + [aux_sym_procedure_attributes_token1] = ACTIONS(5426), + [aux_sym_procedure_attributes_token3] = ACTIONS(5426), + [aux_sym_contains_statement_token1] = ACTIONS(5426), + [aux_sym_use_statement_token1] = ACTIONS(5426), + [aux_sym_use_statement_token2] = ACTIONS(5426), + [aux_sym_implicit_statement_token1] = ACTIONS(5426), + [aux_sym_implicit_statement_token3] = ACTIONS(5426), + [aux_sym_implicit_statement_token4] = ACTIONS(5426), + [aux_sym_save_statement_token1] = ACTIONS(5426), + [aux_sym_private_statement_token1] = ACTIONS(5426), + [aux_sym_public_statement_token1] = ACTIONS(5426), + [aux_sym_namelist_statement_token1] = ACTIONS(5426), + [aux_sym_common_statement_token1] = ACTIONS(5426), + [aux_sym_import_statement_token1] = ACTIONS(5426), + [aux_sym_derived_type_definition_token1] = ACTIONS(5426), + [aux_sym_abstract_specifier_token1] = ACTIONS(5426), + [aux_sym_procedure_attribute_token6] = ACTIONS(5426), + [aux_sym_variable_attributes_token1] = ACTIONS(5426), + [aux_sym_variable_attributes_token2] = ACTIONS(5426), + [aux_sym_variable_attributes_token3] = ACTIONS(5426), + [aux_sym_variable_attributes_token4] = ACTIONS(5426), + [aux_sym_variable_attributes_token5] = ACTIONS(5426), + [aux_sym__intrinsic_type_token1] = ACTIONS(5426), + [aux_sym__intrinsic_type_token2] = ACTIONS(5426), + [aux_sym__intrinsic_type_token3] = ACTIONS(5426), + [aux_sym__intrinsic_type_token4] = ACTIONS(5426), + [aux_sym__intrinsic_type_token6] = ACTIONS(5426), + [aux_sym__intrinsic_type_token7] = ACTIONS(5426), + [aux_sym__intrinsic_type_token8] = ACTIONS(5426), + [aux_sym__intrinsic_type_token9] = ACTIONS(5426), + [aux_sym__intrinsic_type_token10] = ACTIONS(5426), + [aux_sym_derived_type_token1] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5426), + [aux_sym_type_qualifier_token1] = ACTIONS(5426), + [aux_sym_type_qualifier_token2] = ACTIONS(5426), + [aux_sym_equivalence_statement_token1] = ACTIONS(5426), + [anon_sym_SEMI] = ACTIONS(5428), + [aux_sym_stop_statement_token1] = ACTIONS(5426), + [aux_sym_stop_statement_token2] = ACTIONS(5426), + [aux_sym_subroutine_call_token1] = ACTIONS(5426), + [aux_sym_keyword_statement_token1] = ACTIONS(5426), + [aux_sym_keyword_statement_token2] = ACTIONS(5426), + [aux_sym_keyword_statement_token3] = ACTIONS(5426), + [aux_sym_keyword_statement_token4] = ACTIONS(5426), + [aux_sym_keyword_statement_token6] = ACTIONS(5426), + [aux_sym_keyword_statement_token7] = ACTIONS(5426), + [aux_sym_include_statement_token1] = ACTIONS(5426), + [aux_sym_data_statement_token1] = ACTIONS(5426), + [aux_sym_do_loop_statement_token1] = ACTIONS(5426), + [aux_sym__inline_if_statement_token1] = ACTIONS(5426), + [aux_sym_end_if_statement_token1] = ACTIONS(5426), + [aux_sym_elseif_clause_token2] = ACTIONS(5426), + [aux_sym__inline_where_statement_token1] = ACTIONS(5426), + [aux_sym__forall_control_expression_token1] = ACTIONS(5426), + [aux_sym_select_case_statement_token1] = ACTIONS(5426), + [aux_sym_select_case_statement_token3] = ACTIONS(5426), + [aux_sym_select_type_statement_token1] = ACTIONS(5426), + [aux_sym_select_rank_statement_token2] = ACTIONS(5426), + [aux_sym_block_construct_token1] = ACTIONS(5426), + [aux_sym_associate_statement_token1] = ACTIONS(5426), + [aux_sym_format_statement_token1] = ACTIONS(5426), + [aux_sym_print_statement_token1] = ACTIONS(5426), + [aux_sym_open_statement_token1] = ACTIONS(5426), + [aux_sym_close_statement_token1] = ACTIONS(5426), + [aux_sym_inquire_statement_token1] = ACTIONS(5426), + [aux_sym_enum_statement_token1] = ACTIONS(5426), + [aux_sym_file_position_statement_token1] = ACTIONS(5426), + [aux_sym_file_position_statement_token2] = ACTIONS(5426), + [aux_sym_file_position_statement_token3] = ACTIONS(5426), + [aux_sym_file_position_statement_token4] = ACTIONS(5426), + [aux_sym_allocate_statement_token1] = ACTIONS(5426), + [aux_sym_entry_statement_token1] = ACTIONS(5426), + [aux_sym_logical_expression_token5] = ACTIONS(5428), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_LPAREN_SLASH] = ACTIONS(5428), + [anon_sym_LBRACK] = ACTIONS(5428), + [aux_sym_boolean_literal_token1] = ACTIONS(5428), + [aux_sym_boolean_literal_token2] = ACTIONS(5428), + [aux_sym_null_literal_token1] = ACTIONS(5426), + [aux_sym_coarray_statement_token1] = ACTIONS(5426), + [aux_sym_coarray_statement_token2] = ACTIONS(5426), + [aux_sym_coarray_statement_token6] = ACTIONS(5426), + [aux_sym_coarray_statement_token8] = ACTIONS(5426), + [aux_sym_coarray_statement_token11] = ACTIONS(5426), + [aux_sym_coarray_statement_token12] = ACTIONS(5426), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5426), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5426), + [aux_sym_identifier_token1] = ACTIONS(5426), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5428), + [sym__float_literal] = ACTIONS(5428), + [sym__boz_literal] = ACTIONS(5428), + [sym__string_literal] = ACTIONS(5428), + [sym__string_literal_kind] = ACTIONS(5428), }, - [1416] = { - [aux_sym_preproc_include_token1] = ACTIONS(5402), - [aux_sym_preproc_def_token1] = ACTIONS(5402), - [aux_sym_preproc_if_token1] = ACTIONS(5402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5402), - [sym_preproc_directive] = ACTIONS(5402), - [anon_sym_LPAREN2] = ACTIONS(5402), - [anon_sym_PLUS] = ACTIONS(5404), - [anon_sym_DASH] = ACTIONS(5404), + [1403] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5402), - [aux_sym_end_program_statement_token2] = ACTIONS(5402), - [aux_sym_interface_statement_token1] = ACTIONS(5402), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5402), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5402), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5402), - [aux_sym_language_binding_token1] = ACTIONS(5402), - [aux_sym_procedure_attributes_token1] = ACTIONS(5402), - [aux_sym_procedure_attributes_token3] = ACTIONS(5402), - [aux_sym_contains_statement_token1] = ACTIONS(5402), - [aux_sym_use_statement_token1] = ACTIONS(5402), - [aux_sym_use_statement_token2] = ACTIONS(5402), - [aux_sym_implicit_statement_token1] = ACTIONS(5402), - [aux_sym_implicit_statement_token3] = ACTIONS(5402), - [aux_sym_implicit_statement_token4] = ACTIONS(5402), - [aux_sym_save_statement_token1] = ACTIONS(5402), - [aux_sym_private_statement_token1] = ACTIONS(5402), - [aux_sym_public_statement_token1] = ACTIONS(5402), - [aux_sym_namelist_statement_token1] = ACTIONS(5402), - [aux_sym_common_statement_token1] = ACTIONS(5402), - [aux_sym_import_statement_token1] = ACTIONS(5402), - [aux_sym_derived_type_definition_token1] = ACTIONS(5402), - [aux_sym_abstract_specifier_token1] = ACTIONS(5402), - [aux_sym_procedure_attribute_token6] = ACTIONS(5402), - [aux_sym_variable_attributes_token1] = ACTIONS(5402), - [aux_sym_variable_attributes_token2] = ACTIONS(5402), - [aux_sym_variable_attributes_token3] = ACTIONS(5402), - [aux_sym_variable_attributes_token4] = ACTIONS(5402), - [aux_sym_variable_attributes_token5] = ACTIONS(5402), - [aux_sym__intrinsic_type_token1] = ACTIONS(5402), - [aux_sym__intrinsic_type_token2] = ACTIONS(5402), - [aux_sym__intrinsic_type_token3] = ACTIONS(5402), - [aux_sym__intrinsic_type_token4] = ACTIONS(5402), - [aux_sym__intrinsic_type_token6] = ACTIONS(5402), - [aux_sym__intrinsic_type_token7] = ACTIONS(5402), - [aux_sym__intrinsic_type_token8] = ACTIONS(5402), - [aux_sym__intrinsic_type_token9] = ACTIONS(5402), - [aux_sym__intrinsic_type_token10] = ACTIONS(5402), - [aux_sym_derived_type_token1] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5402), - [aux_sym_type_qualifier_token1] = ACTIONS(5402), - [aux_sym_type_qualifier_token2] = ACTIONS(5402), - [aux_sym_equivalence_statement_token1] = ACTIONS(5402), - [anon_sym_SEMI] = ACTIONS(5404), - [aux_sym_stop_statement_token1] = ACTIONS(5402), - [aux_sym_stop_statement_token2] = ACTIONS(5402), - [aux_sym_subroutine_call_token1] = ACTIONS(5402), - [aux_sym_keyword_statement_token1] = ACTIONS(5402), - [aux_sym_keyword_statement_token2] = ACTIONS(5402), - [aux_sym_keyword_statement_token3] = ACTIONS(5402), - [aux_sym_keyword_statement_token4] = ACTIONS(5402), - [aux_sym_keyword_statement_token6] = ACTIONS(5402), - [aux_sym_keyword_statement_token7] = ACTIONS(5402), - [aux_sym_include_statement_token1] = ACTIONS(5402), - [aux_sym_data_statement_token1] = ACTIONS(5402), - [aux_sym_do_loop_statement_token1] = ACTIONS(5402), - [aux_sym__inline_if_statement_token1] = ACTIONS(5402), - [aux_sym_end_if_statement_token1] = ACTIONS(5402), - [aux_sym_elseif_clause_token2] = ACTIONS(5402), - [aux_sym__inline_where_statement_token1] = ACTIONS(5402), - [aux_sym__forall_control_expression_token1] = ACTIONS(5402), - [aux_sym_select_case_statement_token1] = ACTIONS(5402), - [aux_sym_select_case_statement_token3] = ACTIONS(5402), - [aux_sym_select_type_statement_token1] = ACTIONS(5402), - [aux_sym_select_rank_statement_token2] = ACTIONS(5402), - [aux_sym_block_construct_token1] = ACTIONS(5402), - [aux_sym_associate_statement_token1] = ACTIONS(5402), - [aux_sym_format_statement_token1] = ACTIONS(5402), - [aux_sym_print_statement_token1] = ACTIONS(5402), - [aux_sym_open_statement_token1] = ACTIONS(5402), - [aux_sym_close_statement_token1] = ACTIONS(5402), - [aux_sym_inquire_statement_token1] = ACTIONS(5402), - [aux_sym_enum_statement_token1] = ACTIONS(5402), - [aux_sym_file_position_statement_token1] = ACTIONS(5402), - [aux_sym_file_position_statement_token2] = ACTIONS(5402), - [aux_sym_file_position_statement_token3] = ACTIONS(5402), - [aux_sym_file_position_statement_token4] = ACTIONS(5402), - [aux_sym_allocate_statement_token1] = ACTIONS(5402), - [aux_sym_entry_statement_token1] = ACTIONS(5402), - [aux_sym_logical_expression_token5] = ACTIONS(5404), - [anon_sym_DOT] = ACTIONS(5402), - [anon_sym_LPAREN_SLASH] = ACTIONS(5404), - [anon_sym_LBRACK] = ACTIONS(5404), - [aux_sym_boolean_literal_token1] = ACTIONS(5404), - [aux_sym_boolean_literal_token2] = ACTIONS(5404), - [aux_sym_null_literal_token1] = ACTIONS(5402), - [aux_sym_coarray_statement_token1] = ACTIONS(5402), - [aux_sym_coarray_statement_token2] = ACTIONS(5402), - [aux_sym_coarray_statement_token6] = ACTIONS(5402), - [aux_sym_coarray_statement_token8] = ACTIONS(5402), - [aux_sym_coarray_statement_token11] = ACTIONS(5402), - [aux_sym_coarray_statement_token12] = ACTIONS(5402), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5402), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5402), - [aux_sym_identifier_token1] = ACTIONS(5402), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), + }, + [1404] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_end_function_statement_token1] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5404), - [sym__float_literal] = ACTIONS(5404), - [sym__boz_literal] = ACTIONS(5404), - [sym__string_literal] = ACTIONS(5404), - [sym__string_literal_kind] = ACTIONS(5404), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, - [1417] = { - [aux_sym_preproc_include_token1] = ACTIONS(5406), - [aux_sym_preproc_def_token1] = ACTIONS(5406), - [aux_sym_preproc_if_token1] = ACTIONS(5406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5406), - [sym_preproc_directive] = ACTIONS(5406), - [anon_sym_LPAREN2] = ACTIONS(5406), - [anon_sym_PLUS] = ACTIONS(5408), - [anon_sym_DASH] = ACTIONS(5408), + [1405] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [1406] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5406), - [aux_sym_end_program_statement_token2] = ACTIONS(5406), - [aux_sym_interface_statement_token1] = ACTIONS(5406), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5406), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5406), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5406), - [aux_sym_language_binding_token1] = ACTIONS(5406), - [aux_sym_procedure_attributes_token1] = ACTIONS(5406), - [aux_sym_procedure_attributes_token3] = ACTIONS(5406), - [aux_sym_contains_statement_token1] = ACTIONS(5406), - [aux_sym_use_statement_token1] = ACTIONS(5406), - [aux_sym_use_statement_token2] = ACTIONS(5406), - [aux_sym_implicit_statement_token1] = ACTIONS(5406), - [aux_sym_implicit_statement_token3] = ACTIONS(5406), - [aux_sym_implicit_statement_token4] = ACTIONS(5406), - [aux_sym_save_statement_token1] = ACTIONS(5406), - [aux_sym_private_statement_token1] = ACTIONS(5406), - [aux_sym_public_statement_token1] = ACTIONS(5406), - [aux_sym_namelist_statement_token1] = ACTIONS(5406), - [aux_sym_common_statement_token1] = ACTIONS(5406), - [aux_sym_import_statement_token1] = ACTIONS(5406), - [aux_sym_derived_type_definition_token1] = ACTIONS(5406), - [aux_sym_abstract_specifier_token1] = ACTIONS(5406), - [aux_sym_procedure_attribute_token6] = ACTIONS(5406), - [aux_sym_variable_attributes_token1] = ACTIONS(5406), - [aux_sym_variable_attributes_token2] = ACTIONS(5406), - [aux_sym_variable_attributes_token3] = ACTIONS(5406), - [aux_sym_variable_attributes_token4] = ACTIONS(5406), - [aux_sym_variable_attributes_token5] = ACTIONS(5406), - [aux_sym__intrinsic_type_token1] = ACTIONS(5406), - [aux_sym__intrinsic_type_token2] = ACTIONS(5406), - [aux_sym__intrinsic_type_token3] = ACTIONS(5406), - [aux_sym__intrinsic_type_token4] = ACTIONS(5406), - [aux_sym__intrinsic_type_token6] = ACTIONS(5406), - [aux_sym__intrinsic_type_token7] = ACTIONS(5406), - [aux_sym__intrinsic_type_token8] = ACTIONS(5406), - [aux_sym__intrinsic_type_token9] = ACTIONS(5406), - [aux_sym__intrinsic_type_token10] = ACTIONS(5406), - [aux_sym_derived_type_token1] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5406), - [aux_sym_type_qualifier_token1] = ACTIONS(5406), - [aux_sym_type_qualifier_token2] = ACTIONS(5406), - [aux_sym_equivalence_statement_token1] = ACTIONS(5406), - [anon_sym_SEMI] = ACTIONS(5408), - [aux_sym_stop_statement_token1] = ACTIONS(5406), - [aux_sym_stop_statement_token2] = ACTIONS(5406), - [aux_sym_subroutine_call_token1] = ACTIONS(5406), - [aux_sym_keyword_statement_token1] = ACTIONS(5406), - [aux_sym_keyword_statement_token2] = ACTIONS(5406), - [aux_sym_keyword_statement_token3] = ACTIONS(5406), - [aux_sym_keyword_statement_token4] = ACTIONS(5406), - [aux_sym_keyword_statement_token6] = ACTIONS(5406), - [aux_sym_keyword_statement_token7] = ACTIONS(5406), - [aux_sym_include_statement_token1] = ACTIONS(5406), - [aux_sym_data_statement_token1] = ACTIONS(5406), - [aux_sym_do_loop_statement_token1] = ACTIONS(5406), - [aux_sym__inline_if_statement_token1] = ACTIONS(5406), - [aux_sym_end_if_statement_token1] = ACTIONS(5406), - [aux_sym_elseif_clause_token2] = ACTIONS(5406), - [aux_sym__inline_where_statement_token1] = ACTIONS(5406), - [aux_sym__forall_control_expression_token1] = ACTIONS(5406), - [aux_sym_select_case_statement_token1] = ACTIONS(5406), - [aux_sym_select_case_statement_token3] = ACTIONS(5406), - [aux_sym_select_type_statement_token1] = ACTIONS(5406), - [aux_sym_select_rank_statement_token2] = ACTIONS(5406), - [aux_sym_block_construct_token1] = ACTIONS(5406), - [aux_sym_associate_statement_token1] = ACTIONS(5406), - [aux_sym_format_statement_token1] = ACTIONS(5406), - [aux_sym_print_statement_token1] = ACTIONS(5406), - [aux_sym_open_statement_token1] = ACTIONS(5406), - [aux_sym_close_statement_token1] = ACTIONS(5406), - [aux_sym_inquire_statement_token1] = ACTIONS(5406), - [aux_sym_enum_statement_token1] = ACTIONS(5406), - [aux_sym_file_position_statement_token1] = ACTIONS(5406), - [aux_sym_file_position_statement_token2] = ACTIONS(5406), - [aux_sym_file_position_statement_token3] = ACTIONS(5406), - [aux_sym_file_position_statement_token4] = ACTIONS(5406), - [aux_sym_allocate_statement_token1] = ACTIONS(5406), - [aux_sym_entry_statement_token1] = ACTIONS(5406), - [aux_sym_logical_expression_token5] = ACTIONS(5408), - [anon_sym_DOT] = ACTIONS(5406), - [anon_sym_LPAREN_SLASH] = ACTIONS(5408), - [anon_sym_LBRACK] = ACTIONS(5408), - [aux_sym_boolean_literal_token1] = ACTIONS(5408), - [aux_sym_boolean_literal_token2] = ACTIONS(5408), - [aux_sym_null_literal_token1] = ACTIONS(5406), - [aux_sym_coarray_statement_token1] = ACTIONS(5406), - [aux_sym_coarray_statement_token2] = ACTIONS(5406), - [aux_sym_coarray_statement_token6] = ACTIONS(5406), - [aux_sym_coarray_statement_token8] = ACTIONS(5406), - [aux_sym_coarray_statement_token11] = ACTIONS(5406), - [aux_sym_coarray_statement_token12] = ACTIONS(5406), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5406), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5406), - [aux_sym_identifier_token1] = ACTIONS(5406), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5408), - [sym__float_literal] = ACTIONS(5408), - [sym__boz_literal] = ACTIONS(5408), - [sym__string_literal] = ACTIONS(5408), - [sym__string_literal_kind] = ACTIONS(5408), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [1418] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [1407] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, - [1419] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [1408] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1420] = { - [aux_sym_preproc_include_token1] = ACTIONS(5410), - [aux_sym_preproc_def_token1] = ACTIONS(5410), - [aux_sym_preproc_if_token1] = ACTIONS(5410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5410), - [sym_preproc_directive] = ACTIONS(5410), - [anon_sym_LPAREN2] = ACTIONS(5410), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_DASH] = ACTIONS(5412), + [1409] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5410), - [aux_sym_interface_statement_token1] = ACTIONS(5410), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5410), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5410), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5410), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5410), - [aux_sym_language_binding_token1] = ACTIONS(5410), - [aux_sym_procedure_attributes_token1] = ACTIONS(5410), - [aux_sym_procedure_attributes_token3] = ACTIONS(5410), - [aux_sym_contains_statement_token1] = ACTIONS(5410), - [aux_sym_use_statement_token1] = ACTIONS(5410), - [aux_sym_use_statement_token2] = ACTIONS(5410), - [aux_sym_implicit_statement_token1] = ACTIONS(5410), - [aux_sym_implicit_statement_token3] = ACTIONS(5410), - [aux_sym_implicit_statement_token4] = ACTIONS(5410), - [aux_sym_save_statement_token1] = ACTIONS(5410), - [aux_sym_private_statement_token1] = ACTIONS(5410), - [aux_sym_public_statement_token1] = ACTIONS(5410), - [aux_sym_namelist_statement_token1] = ACTIONS(5410), - [aux_sym_common_statement_token1] = ACTIONS(5410), - [aux_sym_import_statement_token1] = ACTIONS(5410), - [aux_sym_derived_type_definition_token1] = ACTIONS(5410), - [aux_sym_abstract_specifier_token1] = ACTIONS(5410), - [aux_sym_procedure_attribute_token6] = ACTIONS(5410), - [aux_sym_variable_attributes_token1] = ACTIONS(5410), - [aux_sym_variable_attributes_token2] = ACTIONS(5410), - [aux_sym_variable_attributes_token3] = ACTIONS(5410), - [aux_sym_variable_attributes_token4] = ACTIONS(5410), - [aux_sym_variable_attributes_token5] = ACTIONS(5410), - [aux_sym__intrinsic_type_token1] = ACTIONS(5410), - [aux_sym__intrinsic_type_token2] = ACTIONS(5410), - [aux_sym__intrinsic_type_token3] = ACTIONS(5410), - [aux_sym__intrinsic_type_token4] = ACTIONS(5410), - [aux_sym__intrinsic_type_token6] = ACTIONS(5410), - [aux_sym__intrinsic_type_token7] = ACTIONS(5410), - [aux_sym__intrinsic_type_token8] = ACTIONS(5410), - [aux_sym__intrinsic_type_token9] = ACTIONS(5410), - [aux_sym__intrinsic_type_token10] = ACTIONS(5410), - [aux_sym_derived_type_token1] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5410), - [aux_sym_type_qualifier_token1] = ACTIONS(5410), - [aux_sym_type_qualifier_token2] = ACTIONS(5410), - [aux_sym_equivalence_statement_token1] = ACTIONS(5410), - [anon_sym_SEMI] = ACTIONS(5412), - [aux_sym_stop_statement_token1] = ACTIONS(5410), - [aux_sym_stop_statement_token2] = ACTIONS(5410), - [aux_sym_subroutine_call_token1] = ACTIONS(5410), - [aux_sym_keyword_statement_token1] = ACTIONS(5410), - [aux_sym_keyword_statement_token2] = ACTIONS(5410), - [aux_sym_keyword_statement_token3] = ACTIONS(5410), - [aux_sym_keyword_statement_token4] = ACTIONS(5410), - [aux_sym_keyword_statement_token6] = ACTIONS(5410), - [aux_sym_keyword_statement_token7] = ACTIONS(5410), - [aux_sym_include_statement_token1] = ACTIONS(5410), - [aux_sym_data_statement_token1] = ACTIONS(5410), - [aux_sym_do_loop_statement_token1] = ACTIONS(5410), - [aux_sym__inline_if_statement_token1] = ACTIONS(5410), - [aux_sym_end_if_statement_token1] = ACTIONS(5410), - [aux_sym_elseif_clause_token2] = ACTIONS(5410), - [aux_sym__inline_where_statement_token1] = ACTIONS(5410), - [aux_sym__forall_control_expression_token1] = ACTIONS(5410), - [aux_sym_select_case_statement_token1] = ACTIONS(5410), - [aux_sym_select_case_statement_token3] = ACTIONS(5410), - [aux_sym_select_type_statement_token1] = ACTIONS(5410), - [aux_sym_select_rank_statement_token2] = ACTIONS(5410), - [aux_sym_block_construct_token1] = ACTIONS(5410), - [aux_sym_associate_statement_token1] = ACTIONS(5410), - [aux_sym_format_statement_token1] = ACTIONS(5410), - [aux_sym_print_statement_token1] = ACTIONS(5410), - [aux_sym_open_statement_token1] = ACTIONS(5410), - [aux_sym_close_statement_token1] = ACTIONS(5410), - [aux_sym_inquire_statement_token1] = ACTIONS(5410), - [aux_sym_enum_statement_token1] = ACTIONS(5410), - [aux_sym_file_position_statement_token1] = ACTIONS(5410), - [aux_sym_file_position_statement_token2] = ACTIONS(5410), - [aux_sym_file_position_statement_token3] = ACTIONS(5410), - [aux_sym_file_position_statement_token4] = ACTIONS(5410), - [aux_sym_allocate_statement_token1] = ACTIONS(5410), - [aux_sym_entry_statement_token1] = ACTIONS(5410), - [aux_sym_logical_expression_token5] = ACTIONS(5412), - [anon_sym_DOT] = ACTIONS(5410), - [anon_sym_LPAREN_SLASH] = ACTIONS(5412), - [anon_sym_LBRACK] = ACTIONS(5412), - [aux_sym_boolean_literal_token1] = ACTIONS(5412), - [aux_sym_boolean_literal_token2] = ACTIONS(5412), - [aux_sym_null_literal_token1] = ACTIONS(5410), - [aux_sym_coarray_statement_token1] = ACTIONS(5410), - [aux_sym_coarray_statement_token2] = ACTIONS(5410), - [aux_sym_coarray_statement_token6] = ACTIONS(5410), - [aux_sym_coarray_statement_token8] = ACTIONS(5410), - [aux_sym_coarray_statement_token11] = ACTIONS(5410), - [aux_sym_coarray_statement_token12] = ACTIONS(5410), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5410), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5410), - [aux_sym_identifier_token1] = ACTIONS(5410), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5412), - [sym__float_literal] = ACTIONS(5412), - [sym__boz_literal] = ACTIONS(5412), - [sym__string_literal] = ACTIONS(5412), - [sym__string_literal_kind] = ACTIONS(5412), - }, - [1421] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), - }, - [1422] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_LPAREN2] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_end_function_statement_token1] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_subroutine_call_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_keyword_statement_token4] = ACTIONS(5041), - [aux_sym_keyword_statement_token6] = ACTIONS(5041), - [aux_sym_keyword_statement_token7] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym_do_loop_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym__inline_where_statement_token1] = ACTIONS(5041), - [aux_sym__forall_control_expression_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token3] = ACTIONS(5041), - [aux_sym_select_type_statement_token1] = ACTIONS(5041), - [aux_sym_select_rank_statement_token2] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_associate_statement_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_print_statement_token1] = ACTIONS(5041), - [aux_sym_open_statement_token1] = ACTIONS(5041), - [aux_sym_close_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token2] = ACTIONS(5041), - [aux_sym_file_position_statement_token3] = ACTIONS(5041), - [aux_sym_file_position_statement_token4] = ACTIONS(5041), - [aux_sym_allocate_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_logical_expression_token5] = ACTIONS(5043), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_LPAREN_SLASH] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [aux_sym_boolean_literal_token1] = ACTIONS(5043), - [aux_sym_boolean_literal_token2] = ACTIONS(5043), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - [sym__float_literal] = ACTIONS(5043), - [sym__boz_literal] = ACTIONS(5043), - [sym__string_literal] = ACTIONS(5043), - [sym__string_literal_kind] = ACTIONS(5043), - }, - [1423] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_LPAREN2] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_end_function_statement_token1] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_subroutine_call_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_keyword_statement_token4] = ACTIONS(5045), - [aux_sym_keyword_statement_token6] = ACTIONS(5045), - [aux_sym_keyword_statement_token7] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym_do_loop_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym__inline_where_statement_token1] = ACTIONS(5045), - [aux_sym__forall_control_expression_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token3] = ACTIONS(5045), - [aux_sym_select_type_statement_token1] = ACTIONS(5045), - [aux_sym_select_rank_statement_token2] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_associate_statement_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_print_statement_token1] = ACTIONS(5045), - [aux_sym_open_statement_token1] = ACTIONS(5045), - [aux_sym_close_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token2] = ACTIONS(5045), - [aux_sym_file_position_statement_token3] = ACTIONS(5045), - [aux_sym_file_position_statement_token4] = ACTIONS(5045), - [aux_sym_allocate_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_logical_expression_token5] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_LPAREN_SLASH] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [aux_sym_boolean_literal_token1] = ACTIONS(5047), - [aux_sym_boolean_literal_token2] = ACTIONS(5047), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - [sym__float_literal] = ACTIONS(5047), - [sym__boz_literal] = ACTIONS(5047), - [sym__string_literal] = ACTIONS(5047), - [sym__string_literal_kind] = ACTIONS(5047), - }, - [1424] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_end_function_statement_token1] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1425] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), + [1410] = { + [aux_sym_preproc_include_token1] = ACTIONS(5422), + [aux_sym_preproc_def_token1] = ACTIONS(5422), + [aux_sym_preproc_if_token1] = ACTIONS(5422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5422), + [sym_preproc_directive] = ACTIONS(5422), + [anon_sym_LPAREN2] = ACTIONS(5422), + [anon_sym_PLUS] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5424), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_end_function_statement_token1] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_subroutine_call_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_keyword_statement_token4] = ACTIONS(4487), - [aux_sym_keyword_statement_token6] = ACTIONS(4487), - [aux_sym_keyword_statement_token7] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym_do_loop_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym__inline_where_statement_token1] = ACTIONS(4487), - [aux_sym__forall_control_expression_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token3] = ACTIONS(4487), - [aux_sym_select_type_statement_token1] = ACTIONS(4487), - [aux_sym_select_rank_statement_token2] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_associate_statement_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_print_statement_token1] = ACTIONS(4487), - [aux_sym_open_statement_token1] = ACTIONS(4487), - [aux_sym_close_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token2] = ACTIONS(4487), - [aux_sym_file_position_statement_token3] = ACTIONS(4487), - [aux_sym_file_position_statement_token4] = ACTIONS(4487), - [aux_sym_allocate_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_logical_expression_token5] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_LPAREN_SLASH] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [aux_sym_boolean_literal_token1] = ACTIONS(4489), - [aux_sym_boolean_literal_token2] = ACTIONS(4489), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token1] = ACTIONS(5422), + [aux_sym_interface_statement_token1] = ACTIONS(5422), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5422), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5422), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5422), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5422), + [aux_sym_language_binding_token1] = ACTIONS(5422), + [aux_sym_procedure_attributes_token1] = ACTIONS(5422), + [aux_sym_procedure_attributes_token3] = ACTIONS(5422), + [aux_sym_contains_statement_token1] = ACTIONS(5422), + [aux_sym_use_statement_token1] = ACTIONS(5422), + [aux_sym_use_statement_token2] = ACTIONS(5422), + [aux_sym_implicit_statement_token1] = ACTIONS(5422), + [aux_sym_implicit_statement_token3] = ACTIONS(5422), + [aux_sym_implicit_statement_token4] = ACTIONS(5422), + [aux_sym_save_statement_token1] = ACTIONS(5422), + [aux_sym_private_statement_token1] = ACTIONS(5422), + [aux_sym_public_statement_token1] = ACTIONS(5422), + [aux_sym_namelist_statement_token1] = ACTIONS(5422), + [aux_sym_common_statement_token1] = ACTIONS(5422), + [aux_sym_import_statement_token1] = ACTIONS(5422), + [aux_sym_derived_type_definition_token1] = ACTIONS(5422), + [aux_sym_abstract_specifier_token1] = ACTIONS(5422), + [aux_sym_procedure_attribute_token6] = ACTIONS(5422), + [aux_sym_variable_attributes_token1] = ACTIONS(5422), + [aux_sym_variable_attributes_token2] = ACTIONS(5422), + [aux_sym_variable_attributes_token3] = ACTIONS(5422), + [aux_sym_variable_attributes_token4] = ACTIONS(5422), + [aux_sym_variable_attributes_token5] = ACTIONS(5422), + [aux_sym__intrinsic_type_token1] = ACTIONS(5422), + [aux_sym__intrinsic_type_token2] = ACTIONS(5422), + [aux_sym__intrinsic_type_token3] = ACTIONS(5422), + [aux_sym__intrinsic_type_token4] = ACTIONS(5422), + [aux_sym__intrinsic_type_token6] = ACTIONS(5422), + [aux_sym__intrinsic_type_token7] = ACTIONS(5422), + [aux_sym__intrinsic_type_token8] = ACTIONS(5422), + [aux_sym__intrinsic_type_token9] = ACTIONS(5422), + [aux_sym__intrinsic_type_token10] = ACTIONS(5422), + [aux_sym_derived_type_token1] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5422), + [aux_sym_type_qualifier_token1] = ACTIONS(5422), + [aux_sym_type_qualifier_token2] = ACTIONS(5422), + [aux_sym_equivalence_statement_token1] = ACTIONS(5422), + [anon_sym_SEMI] = ACTIONS(5424), + [aux_sym_stop_statement_token1] = ACTIONS(5422), + [aux_sym_stop_statement_token2] = ACTIONS(5422), + [aux_sym_subroutine_call_token1] = ACTIONS(5422), + [aux_sym_keyword_statement_token1] = ACTIONS(5422), + [aux_sym_keyword_statement_token2] = ACTIONS(5422), + [aux_sym_keyword_statement_token3] = ACTIONS(5422), + [aux_sym_keyword_statement_token4] = ACTIONS(5422), + [aux_sym_keyword_statement_token6] = ACTIONS(5422), + [aux_sym_keyword_statement_token7] = ACTIONS(5422), + [aux_sym_include_statement_token1] = ACTIONS(5422), + [aux_sym_data_statement_token1] = ACTIONS(5422), + [aux_sym_do_loop_statement_token1] = ACTIONS(5422), + [aux_sym__inline_if_statement_token1] = ACTIONS(5422), + [aux_sym_end_if_statement_token1] = ACTIONS(5422), + [aux_sym_elseif_clause_token2] = ACTIONS(5422), + [aux_sym__inline_where_statement_token1] = ACTIONS(5422), + [aux_sym__forall_control_expression_token1] = ACTIONS(5422), + [aux_sym_select_case_statement_token1] = ACTIONS(5422), + [aux_sym_select_case_statement_token3] = ACTIONS(5422), + [aux_sym_select_type_statement_token1] = ACTIONS(5422), + [aux_sym_select_rank_statement_token2] = ACTIONS(5422), + [aux_sym_block_construct_token1] = ACTIONS(5422), + [aux_sym_associate_statement_token1] = ACTIONS(5422), + [aux_sym_format_statement_token1] = ACTIONS(5422), + [aux_sym_print_statement_token1] = ACTIONS(5422), + [aux_sym_open_statement_token1] = ACTIONS(5422), + [aux_sym_close_statement_token1] = ACTIONS(5422), + [aux_sym_inquire_statement_token1] = ACTIONS(5422), + [aux_sym_enum_statement_token1] = ACTIONS(5422), + [aux_sym_file_position_statement_token1] = ACTIONS(5422), + [aux_sym_file_position_statement_token2] = ACTIONS(5422), + [aux_sym_file_position_statement_token3] = ACTIONS(5422), + [aux_sym_file_position_statement_token4] = ACTIONS(5422), + [aux_sym_allocate_statement_token1] = ACTIONS(5422), + [aux_sym_entry_statement_token1] = ACTIONS(5422), + [aux_sym_logical_expression_token5] = ACTIONS(5424), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_LPAREN_SLASH] = ACTIONS(5424), + [anon_sym_LBRACK] = ACTIONS(5424), + [aux_sym_boolean_literal_token1] = ACTIONS(5424), + [aux_sym_boolean_literal_token2] = ACTIONS(5424), + [aux_sym_null_literal_token1] = ACTIONS(5422), + [aux_sym_coarray_statement_token1] = ACTIONS(5422), + [aux_sym_coarray_statement_token2] = ACTIONS(5422), + [aux_sym_coarray_statement_token6] = ACTIONS(5422), + [aux_sym_coarray_statement_token8] = ACTIONS(5422), + [aux_sym_coarray_statement_token11] = ACTIONS(5422), + [aux_sym_coarray_statement_token12] = ACTIONS(5422), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5422), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5422), + [aux_sym_identifier_token1] = ACTIONS(5422), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - [sym__float_literal] = ACTIONS(4489), - [sym__boz_literal] = ACTIONS(4489), - [sym__string_literal] = ACTIONS(4489), - [sym__string_literal_kind] = ACTIONS(4489), + [sym__integer_literal] = ACTIONS(5424), + [sym__float_literal] = ACTIONS(5424), + [sym__boz_literal] = ACTIONS(5424), + [sym__string_literal] = ACTIONS(5424), + [sym__string_literal_kind] = ACTIONS(5424), }, - [1426] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_end_function_statement_token1] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [1411] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_end_function_statement_token1] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, - [1427] = { + [1412] = { [aux_sym_preproc_include_token1] = ACTIONS(5414), [aux_sym_preproc_def_token1] = ACTIONS(5414), [aux_sym_preproc_if_token1] = ACTIONS(5414), @@ -280417,3007 +278542,2132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5416), [sym__string_literal_kind] = ACTIONS(5416), }, - [1428] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [1413] = { + [aux_sym_preproc_include_token1] = ACTIONS(5426), + [aux_sym_preproc_def_token1] = ACTIONS(5426), + [aux_sym_preproc_if_token1] = ACTIONS(5426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5426), + [sym_preproc_directive] = ACTIONS(5426), + [anon_sym_LPAREN2] = ACTIONS(5426), + [anon_sym_PLUS] = ACTIONS(5428), + [anon_sym_DASH] = ACTIONS(5428), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_end_program_statement_token2] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(5426), + [aux_sym_interface_statement_token1] = ACTIONS(5426), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5426), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5426), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5426), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5426), + [aux_sym_language_binding_token1] = ACTIONS(5426), + [aux_sym_procedure_attributes_token1] = ACTIONS(5426), + [aux_sym_procedure_attributes_token3] = ACTIONS(5426), + [aux_sym_contains_statement_token1] = ACTIONS(5426), + [aux_sym_use_statement_token1] = ACTIONS(5426), + [aux_sym_use_statement_token2] = ACTIONS(5426), + [aux_sym_implicit_statement_token1] = ACTIONS(5426), + [aux_sym_implicit_statement_token3] = ACTIONS(5426), + [aux_sym_implicit_statement_token4] = ACTIONS(5426), + [aux_sym_save_statement_token1] = ACTIONS(5426), + [aux_sym_private_statement_token1] = ACTIONS(5426), + [aux_sym_public_statement_token1] = ACTIONS(5426), + [aux_sym_namelist_statement_token1] = ACTIONS(5426), + [aux_sym_common_statement_token1] = ACTIONS(5426), + [aux_sym_import_statement_token1] = ACTIONS(5426), + [aux_sym_derived_type_definition_token1] = ACTIONS(5426), + [aux_sym_abstract_specifier_token1] = ACTIONS(5426), + [aux_sym_procedure_attribute_token6] = ACTIONS(5426), + [aux_sym_variable_attributes_token1] = ACTIONS(5426), + [aux_sym_variable_attributes_token2] = ACTIONS(5426), + [aux_sym_variable_attributes_token3] = ACTIONS(5426), + [aux_sym_variable_attributes_token4] = ACTIONS(5426), + [aux_sym_variable_attributes_token5] = ACTIONS(5426), + [aux_sym__intrinsic_type_token1] = ACTIONS(5426), + [aux_sym__intrinsic_type_token2] = ACTIONS(5426), + [aux_sym__intrinsic_type_token3] = ACTIONS(5426), + [aux_sym__intrinsic_type_token4] = ACTIONS(5426), + [aux_sym__intrinsic_type_token6] = ACTIONS(5426), + [aux_sym__intrinsic_type_token7] = ACTIONS(5426), + [aux_sym__intrinsic_type_token8] = ACTIONS(5426), + [aux_sym__intrinsic_type_token9] = ACTIONS(5426), + [aux_sym__intrinsic_type_token10] = ACTIONS(5426), + [aux_sym_derived_type_token1] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5426), + [aux_sym_type_qualifier_token1] = ACTIONS(5426), + [aux_sym_type_qualifier_token2] = ACTIONS(5426), + [aux_sym_equivalence_statement_token1] = ACTIONS(5426), + [anon_sym_SEMI] = ACTIONS(5428), + [aux_sym_stop_statement_token1] = ACTIONS(5426), + [aux_sym_stop_statement_token2] = ACTIONS(5426), + [aux_sym_subroutine_call_token1] = ACTIONS(5426), + [aux_sym_keyword_statement_token1] = ACTIONS(5426), + [aux_sym_keyword_statement_token2] = ACTIONS(5426), + [aux_sym_keyword_statement_token3] = ACTIONS(5426), + [aux_sym_keyword_statement_token4] = ACTIONS(5426), + [aux_sym_keyword_statement_token6] = ACTIONS(5426), + [aux_sym_keyword_statement_token7] = ACTIONS(5426), + [aux_sym_include_statement_token1] = ACTIONS(5426), + [aux_sym_data_statement_token1] = ACTIONS(5426), + [aux_sym_do_loop_statement_token1] = ACTIONS(5426), + [aux_sym__inline_if_statement_token1] = ACTIONS(5426), + [aux_sym_end_if_statement_token1] = ACTIONS(5426), + [aux_sym_elseif_clause_token2] = ACTIONS(5426), + [aux_sym__inline_where_statement_token1] = ACTIONS(5426), + [aux_sym__forall_control_expression_token1] = ACTIONS(5426), + [aux_sym_select_case_statement_token1] = ACTIONS(5426), + [aux_sym_select_case_statement_token3] = ACTIONS(5426), + [aux_sym_select_type_statement_token1] = ACTIONS(5426), + [aux_sym_select_rank_statement_token2] = ACTIONS(5426), + [aux_sym_block_construct_token1] = ACTIONS(5426), + [aux_sym_associate_statement_token1] = ACTIONS(5426), + [aux_sym_format_statement_token1] = ACTIONS(5426), + [aux_sym_print_statement_token1] = ACTIONS(5426), + [aux_sym_open_statement_token1] = ACTIONS(5426), + [aux_sym_close_statement_token1] = ACTIONS(5426), + [aux_sym_inquire_statement_token1] = ACTIONS(5426), + [aux_sym_enum_statement_token1] = ACTIONS(5426), + [aux_sym_file_position_statement_token1] = ACTIONS(5426), + [aux_sym_file_position_statement_token2] = ACTIONS(5426), + [aux_sym_file_position_statement_token3] = ACTIONS(5426), + [aux_sym_file_position_statement_token4] = ACTIONS(5426), + [aux_sym_allocate_statement_token1] = ACTIONS(5426), + [aux_sym_entry_statement_token1] = ACTIONS(5426), + [aux_sym_logical_expression_token5] = ACTIONS(5428), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_LPAREN_SLASH] = ACTIONS(5428), + [anon_sym_LBRACK] = ACTIONS(5428), + [aux_sym_boolean_literal_token1] = ACTIONS(5428), + [aux_sym_boolean_literal_token2] = ACTIONS(5428), + [aux_sym_null_literal_token1] = ACTIONS(5426), + [aux_sym_coarray_statement_token1] = ACTIONS(5426), + [aux_sym_coarray_statement_token2] = ACTIONS(5426), + [aux_sym_coarray_statement_token6] = ACTIONS(5426), + [aux_sym_coarray_statement_token8] = ACTIONS(5426), + [aux_sym_coarray_statement_token11] = ACTIONS(5426), + [aux_sym_coarray_statement_token12] = ACTIONS(5426), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5426), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5426), + [aux_sym_identifier_token1] = ACTIONS(5426), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5428), + [sym__float_literal] = ACTIONS(5428), + [sym__boz_literal] = ACTIONS(5428), + [sym__string_literal] = ACTIONS(5428), + [sym__string_literal_kind] = ACTIONS(5428), + }, + [1414] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [1429] = { - [aux_sym_preproc_include_token1] = ACTIONS(5418), - [aux_sym_preproc_def_token1] = ACTIONS(5418), - [aux_sym_preproc_if_token1] = ACTIONS(5418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5418), - [sym_preproc_directive] = ACTIONS(5418), - [anon_sym_LPAREN2] = ACTIONS(5418), - [anon_sym_PLUS] = ACTIONS(5420), - [anon_sym_DASH] = ACTIONS(5420), + [1415] = { + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_end_function_statement_token1] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), + }, + [1416] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5418), - [aux_sym_interface_statement_token1] = ACTIONS(5418), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5418), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5418), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5418), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5418), - [aux_sym_language_binding_token1] = ACTIONS(5418), - [aux_sym_procedure_attributes_token1] = ACTIONS(5418), - [aux_sym_procedure_attributes_token3] = ACTIONS(5418), - [aux_sym_contains_statement_token1] = ACTIONS(5418), - [aux_sym_use_statement_token1] = ACTIONS(5418), - [aux_sym_use_statement_token2] = ACTIONS(5418), - [aux_sym_implicit_statement_token1] = ACTIONS(5418), - [aux_sym_implicit_statement_token3] = ACTIONS(5418), - [aux_sym_implicit_statement_token4] = ACTIONS(5418), - [aux_sym_save_statement_token1] = ACTIONS(5418), - [aux_sym_private_statement_token1] = ACTIONS(5418), - [aux_sym_public_statement_token1] = ACTIONS(5418), - [aux_sym_namelist_statement_token1] = ACTIONS(5418), - [aux_sym_common_statement_token1] = ACTIONS(5418), - [aux_sym_import_statement_token1] = ACTIONS(5418), - [aux_sym_derived_type_definition_token1] = ACTIONS(5418), - [aux_sym_abstract_specifier_token1] = ACTIONS(5418), - [aux_sym_procedure_attribute_token6] = ACTIONS(5418), - [aux_sym_variable_attributes_token1] = ACTIONS(5418), - [aux_sym_variable_attributes_token2] = ACTIONS(5418), - [aux_sym_variable_attributes_token3] = ACTIONS(5418), - [aux_sym_variable_attributes_token4] = ACTIONS(5418), - [aux_sym_variable_attributes_token5] = ACTIONS(5418), - [aux_sym__intrinsic_type_token1] = ACTIONS(5418), - [aux_sym__intrinsic_type_token2] = ACTIONS(5418), - [aux_sym__intrinsic_type_token3] = ACTIONS(5418), - [aux_sym__intrinsic_type_token4] = ACTIONS(5418), - [aux_sym__intrinsic_type_token6] = ACTIONS(5418), - [aux_sym__intrinsic_type_token7] = ACTIONS(5418), - [aux_sym__intrinsic_type_token8] = ACTIONS(5418), - [aux_sym__intrinsic_type_token9] = ACTIONS(5418), - [aux_sym__intrinsic_type_token10] = ACTIONS(5418), - [aux_sym_derived_type_token1] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5418), - [aux_sym_type_qualifier_token1] = ACTIONS(5418), - [aux_sym_type_qualifier_token2] = ACTIONS(5418), - [aux_sym_equivalence_statement_token1] = ACTIONS(5418), - [anon_sym_SEMI] = ACTIONS(5420), - [aux_sym_stop_statement_token1] = ACTIONS(5418), - [aux_sym_stop_statement_token2] = ACTIONS(5418), - [aux_sym_subroutine_call_token1] = ACTIONS(5418), - [aux_sym_keyword_statement_token1] = ACTIONS(5418), - [aux_sym_keyword_statement_token2] = ACTIONS(5418), - [aux_sym_keyword_statement_token3] = ACTIONS(5418), - [aux_sym_keyword_statement_token4] = ACTIONS(5418), - [aux_sym_keyword_statement_token6] = ACTIONS(5418), - [aux_sym_keyword_statement_token7] = ACTIONS(5418), - [aux_sym_include_statement_token1] = ACTIONS(5418), - [aux_sym_data_statement_token1] = ACTIONS(5418), - [aux_sym_do_loop_statement_token1] = ACTIONS(5418), - [aux_sym__inline_if_statement_token1] = ACTIONS(5418), - [aux_sym_end_if_statement_token1] = ACTIONS(5418), - [aux_sym_elseif_clause_token2] = ACTIONS(5418), - [aux_sym__inline_where_statement_token1] = ACTIONS(5418), - [aux_sym__forall_control_expression_token1] = ACTIONS(5418), - [aux_sym_select_case_statement_token1] = ACTIONS(5418), - [aux_sym_select_case_statement_token3] = ACTIONS(5418), - [aux_sym_select_type_statement_token1] = ACTIONS(5418), - [aux_sym_select_rank_statement_token2] = ACTIONS(5418), - [aux_sym_block_construct_token1] = ACTIONS(5418), - [aux_sym_associate_statement_token1] = ACTIONS(5418), - [aux_sym_format_statement_token1] = ACTIONS(5418), - [aux_sym_print_statement_token1] = ACTIONS(5418), - [aux_sym_open_statement_token1] = ACTIONS(5418), - [aux_sym_close_statement_token1] = ACTIONS(5418), - [aux_sym_inquire_statement_token1] = ACTIONS(5418), - [aux_sym_enum_statement_token1] = ACTIONS(5418), - [aux_sym_file_position_statement_token1] = ACTIONS(5418), - [aux_sym_file_position_statement_token2] = ACTIONS(5418), - [aux_sym_file_position_statement_token3] = ACTIONS(5418), - [aux_sym_file_position_statement_token4] = ACTIONS(5418), - [aux_sym_allocate_statement_token1] = ACTIONS(5418), - [aux_sym_entry_statement_token1] = ACTIONS(5418), - [aux_sym_logical_expression_token5] = ACTIONS(5420), - [anon_sym_DOT] = ACTIONS(5418), - [anon_sym_LPAREN_SLASH] = ACTIONS(5420), - [anon_sym_LBRACK] = ACTIONS(5420), - [aux_sym_boolean_literal_token1] = ACTIONS(5420), - [aux_sym_boolean_literal_token2] = ACTIONS(5420), - [aux_sym_null_literal_token1] = ACTIONS(5418), - [aux_sym_coarray_statement_token1] = ACTIONS(5418), - [aux_sym_coarray_statement_token2] = ACTIONS(5418), - [aux_sym_coarray_statement_token6] = ACTIONS(5418), - [aux_sym_coarray_statement_token8] = ACTIONS(5418), - [aux_sym_coarray_statement_token11] = ACTIONS(5418), - [aux_sym_coarray_statement_token12] = ACTIONS(5418), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5418), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5418), - [aux_sym_identifier_token1] = ACTIONS(5418), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5420), - [sym__float_literal] = ACTIONS(5420), - [sym__boz_literal] = ACTIONS(5420), - [sym__string_literal] = ACTIONS(5420), - [sym__string_literal_kind] = ACTIONS(5420), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1430] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [1417] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), - }, - [1431] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_end_program_statement_token2] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_subroutine_call_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_keyword_statement_token4] = ACTIONS(5065), - [aux_sym_keyword_statement_token6] = ACTIONS(5065), - [aux_sym_keyword_statement_token7] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym_do_loop_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym__inline_where_statement_token1] = ACTIONS(5065), - [aux_sym__forall_control_expression_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token3] = ACTIONS(5065), - [aux_sym_select_type_statement_token1] = ACTIONS(5065), - [aux_sym_select_rank_statement_token2] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_associate_statement_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_print_statement_token1] = ACTIONS(5065), - [aux_sym_open_statement_token1] = ACTIONS(5065), - [aux_sym_close_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token2] = ACTIONS(5065), - [aux_sym_file_position_statement_token3] = ACTIONS(5065), - [aux_sym_file_position_statement_token4] = ACTIONS(5065), - [aux_sym_allocate_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_logical_expression_token5] = ACTIONS(5067), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_LPAREN_SLASH] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [aux_sym_boolean_literal_token1] = ACTIONS(5067), - [aux_sym_boolean_literal_token2] = ACTIONS(5067), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - [sym__float_literal] = ACTIONS(5067), - [sym__boz_literal] = ACTIONS(5067), - [sym__string_literal] = ACTIONS(5067), - [sym__string_literal_kind] = ACTIONS(5067), - }, - [1432] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_LPAREN2] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_end_program_statement_token2] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_subroutine_call_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_keyword_statement_token4] = ACTIONS(5069), - [aux_sym_keyword_statement_token6] = ACTIONS(5069), - [aux_sym_keyword_statement_token7] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym_do_loop_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym__inline_where_statement_token1] = ACTIONS(5069), - [aux_sym__forall_control_expression_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token3] = ACTIONS(5069), - [aux_sym_select_type_statement_token1] = ACTIONS(5069), - [aux_sym_select_rank_statement_token2] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_associate_statement_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_print_statement_token1] = ACTIONS(5069), - [aux_sym_open_statement_token1] = ACTIONS(5069), - [aux_sym_close_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token2] = ACTIONS(5069), - [aux_sym_file_position_statement_token3] = ACTIONS(5069), - [aux_sym_file_position_statement_token4] = ACTIONS(5069), - [aux_sym_allocate_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_logical_expression_token5] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LPAREN_SLASH] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [aux_sym_boolean_literal_token1] = ACTIONS(5071), - [aux_sym_boolean_literal_token2] = ACTIONS(5071), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - [sym__float_literal] = ACTIONS(5071), - [sym__boz_literal] = ACTIONS(5071), - [sym__string_literal] = ACTIONS(5071), - [sym__string_literal_kind] = ACTIONS(5071), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1433] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), + [1418] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, - [1434] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), + [1419] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [1435] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_LPAREN2] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_end_function_statement_token1] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [anon_sym_SEMI] = ACTIONS(5055), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_subroutine_call_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_keyword_statement_token4] = ACTIONS(5053), - [aux_sym_keyword_statement_token6] = ACTIONS(5053), - [aux_sym_keyword_statement_token7] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym_do_loop_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym__inline_where_statement_token1] = ACTIONS(5053), - [aux_sym__forall_control_expression_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token3] = ACTIONS(5053), - [aux_sym_select_type_statement_token1] = ACTIONS(5053), - [aux_sym_select_rank_statement_token2] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_associate_statement_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_print_statement_token1] = ACTIONS(5053), - [aux_sym_open_statement_token1] = ACTIONS(5053), - [aux_sym_close_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token2] = ACTIONS(5053), - [aux_sym_file_position_statement_token3] = ACTIONS(5053), - [aux_sym_file_position_statement_token4] = ACTIONS(5053), - [aux_sym_allocate_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_logical_expression_token5] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_LPAREN_SLASH] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [aux_sym_boolean_literal_token1] = ACTIONS(5055), - [aux_sym_boolean_literal_token2] = ACTIONS(5055), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - [sym__float_literal] = ACTIONS(5055), - [sym__boz_literal] = ACTIONS(5055), - [sym__string_literal] = ACTIONS(5055), - [sym__string_literal_kind] = ACTIONS(5055), + [1420] = { + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_end_function_statement_token1] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, - [1436] = { - [aux_sym_preproc_include_token1] = ACTIONS(4972), - [aux_sym_preproc_def_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), - [sym_preproc_directive] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4974), - [anon_sym_DASH] = ACTIONS(4974), + [1421] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4972), - [aux_sym_interface_statement_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), - [aux_sym_language_binding_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token3] = ACTIONS(4972), - [aux_sym_end_function_statement_token1] = ACTIONS(4972), - [aux_sym_contains_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token2] = ACTIONS(4972), - [aux_sym_implicit_statement_token1] = ACTIONS(4972), - [aux_sym_implicit_statement_token3] = ACTIONS(4972), - [aux_sym_implicit_statement_token4] = ACTIONS(4972), - [aux_sym_save_statement_token1] = ACTIONS(4972), - [aux_sym_private_statement_token1] = ACTIONS(4972), - [aux_sym_public_statement_token1] = ACTIONS(4972), - [aux_sym_namelist_statement_token1] = ACTIONS(4972), - [aux_sym_common_statement_token1] = ACTIONS(4972), - [aux_sym_import_statement_token1] = ACTIONS(4972), - [aux_sym_derived_type_definition_token1] = ACTIONS(4972), - [aux_sym_abstract_specifier_token1] = ACTIONS(4972), - [aux_sym_procedure_attribute_token6] = ACTIONS(4972), - [aux_sym_variable_attributes_token1] = ACTIONS(4972), - [aux_sym_variable_attributes_token2] = ACTIONS(4972), - [aux_sym_variable_attributes_token3] = ACTIONS(4972), - [aux_sym_variable_attributes_token4] = ACTIONS(4972), - [aux_sym_variable_attributes_token5] = ACTIONS(4972), - [aux_sym__intrinsic_type_token1] = ACTIONS(4972), - [aux_sym__intrinsic_type_token2] = ACTIONS(4972), - [aux_sym__intrinsic_type_token3] = ACTIONS(4972), - [aux_sym__intrinsic_type_token4] = ACTIONS(4972), - [aux_sym__intrinsic_type_token6] = ACTIONS(4972), - [aux_sym__intrinsic_type_token7] = ACTIONS(4972), - [aux_sym__intrinsic_type_token8] = ACTIONS(4972), - [aux_sym__intrinsic_type_token9] = ACTIONS(4972), - [aux_sym__intrinsic_type_token10] = ACTIONS(4972), - [aux_sym_derived_type_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), - [aux_sym_type_qualifier_token1] = ACTIONS(4972), - [aux_sym_type_qualifier_token2] = ACTIONS(4972), - [aux_sym_equivalence_statement_token1] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4974), - [aux_sym_stop_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token2] = ACTIONS(4972), - [aux_sym_subroutine_call_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token3] = ACTIONS(4972), - [aux_sym_keyword_statement_token4] = ACTIONS(4972), - [aux_sym_keyword_statement_token6] = ACTIONS(4972), - [aux_sym_keyword_statement_token7] = ACTIONS(4972), - [aux_sym_include_statement_token1] = ACTIONS(4972), - [aux_sym_data_statement_token1] = ACTIONS(4972), - [aux_sym_do_loop_statement_token1] = ACTIONS(4972), - [aux_sym__inline_if_statement_token1] = ACTIONS(4972), - [aux_sym_end_if_statement_token1] = ACTIONS(4972), - [aux_sym_elseif_clause_token2] = ACTIONS(4972), - [aux_sym__inline_where_statement_token1] = ACTIONS(4972), - [aux_sym__forall_control_expression_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token3] = ACTIONS(4972), - [aux_sym_select_type_statement_token1] = ACTIONS(4972), - [aux_sym_select_rank_statement_token2] = ACTIONS(4972), - [aux_sym_block_construct_token1] = ACTIONS(4972), - [aux_sym_associate_statement_token1] = ACTIONS(4972), - [aux_sym_format_statement_token1] = ACTIONS(4972), - [aux_sym_print_statement_token1] = ACTIONS(4972), - [aux_sym_open_statement_token1] = ACTIONS(4972), - [aux_sym_close_statement_token1] = ACTIONS(4972), - [aux_sym_inquire_statement_token1] = ACTIONS(4972), - [aux_sym_enum_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token2] = ACTIONS(4972), - [aux_sym_file_position_statement_token3] = ACTIONS(4972), - [aux_sym_file_position_statement_token4] = ACTIONS(4972), - [aux_sym_allocate_statement_token1] = ACTIONS(4972), - [aux_sym_entry_statement_token1] = ACTIONS(4972), - [aux_sym_logical_expression_token5] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_LPAREN_SLASH] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [aux_sym_boolean_literal_token1] = ACTIONS(4974), - [aux_sym_boolean_literal_token2] = ACTIONS(4974), - [aux_sym_null_literal_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token2] = ACTIONS(4972), - [aux_sym_coarray_statement_token6] = ACTIONS(4972), - [aux_sym_coarray_statement_token8] = ACTIONS(4972), - [aux_sym_coarray_statement_token11] = ACTIONS(4972), - [aux_sym_coarray_statement_token12] = ACTIONS(4972), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), - [aux_sym_identifier_token1] = ACTIONS(4972), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4974), - [sym__float_literal] = ACTIONS(4974), - [sym__boz_literal] = ACTIONS(4974), - [sym__string_literal] = ACTIONS(4974), - [sym__string_literal_kind] = ACTIONS(4974), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [1437] = { - [aux_sym_preproc_include_token1] = ACTIONS(5406), - [aux_sym_preproc_def_token1] = ACTIONS(5406), - [aux_sym_preproc_if_token1] = ACTIONS(5406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5406), - [sym_preproc_directive] = ACTIONS(5406), - [anon_sym_LPAREN2] = ACTIONS(5406), - [anon_sym_PLUS] = ACTIONS(5408), - [anon_sym_DASH] = ACTIONS(5408), + [1422] = { + [aux_sym_preproc_include_token1] = ACTIONS(5430), + [aux_sym_preproc_def_token1] = ACTIONS(5430), + [aux_sym_preproc_if_token1] = ACTIONS(5430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5430), + [sym_preproc_directive] = ACTIONS(5430), + [anon_sym_LPAREN2] = ACTIONS(5430), + [anon_sym_PLUS] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5432), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5406), - [aux_sym_interface_statement_token1] = ACTIONS(5406), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5406), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5406), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5406), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5406), - [aux_sym_language_binding_token1] = ACTIONS(5406), - [aux_sym_procedure_attributes_token1] = ACTIONS(5406), - [aux_sym_procedure_attributes_token3] = ACTIONS(5406), - [aux_sym_contains_statement_token1] = ACTIONS(5406), - [aux_sym_use_statement_token1] = ACTIONS(5406), - [aux_sym_use_statement_token2] = ACTIONS(5406), - [aux_sym_implicit_statement_token1] = ACTIONS(5406), - [aux_sym_implicit_statement_token3] = ACTIONS(5406), - [aux_sym_implicit_statement_token4] = ACTIONS(5406), - [aux_sym_save_statement_token1] = ACTIONS(5406), - [aux_sym_private_statement_token1] = ACTIONS(5406), - [aux_sym_public_statement_token1] = ACTIONS(5406), - [aux_sym_namelist_statement_token1] = ACTIONS(5406), - [aux_sym_common_statement_token1] = ACTIONS(5406), - [aux_sym_import_statement_token1] = ACTIONS(5406), - [aux_sym_derived_type_definition_token1] = ACTIONS(5406), - [aux_sym_abstract_specifier_token1] = ACTIONS(5406), - [aux_sym_procedure_attribute_token6] = ACTIONS(5406), - [aux_sym_variable_attributes_token1] = ACTIONS(5406), - [aux_sym_variable_attributes_token2] = ACTIONS(5406), - [aux_sym_variable_attributes_token3] = ACTIONS(5406), - [aux_sym_variable_attributes_token4] = ACTIONS(5406), - [aux_sym_variable_attributes_token5] = ACTIONS(5406), - [aux_sym__intrinsic_type_token1] = ACTIONS(5406), - [aux_sym__intrinsic_type_token2] = ACTIONS(5406), - [aux_sym__intrinsic_type_token3] = ACTIONS(5406), - [aux_sym__intrinsic_type_token4] = ACTIONS(5406), - [aux_sym__intrinsic_type_token6] = ACTIONS(5406), - [aux_sym__intrinsic_type_token7] = ACTIONS(5406), - [aux_sym__intrinsic_type_token8] = ACTIONS(5406), - [aux_sym__intrinsic_type_token9] = ACTIONS(5406), - [aux_sym__intrinsic_type_token10] = ACTIONS(5406), - [aux_sym_derived_type_token1] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5406), - [aux_sym_type_qualifier_token1] = ACTIONS(5406), - [aux_sym_type_qualifier_token2] = ACTIONS(5406), - [aux_sym_equivalence_statement_token1] = ACTIONS(5406), - [anon_sym_SEMI] = ACTIONS(5408), - [aux_sym_stop_statement_token1] = ACTIONS(5406), - [aux_sym_stop_statement_token2] = ACTIONS(5406), - [aux_sym_subroutine_call_token1] = ACTIONS(5406), - [aux_sym_keyword_statement_token1] = ACTIONS(5406), - [aux_sym_keyword_statement_token2] = ACTIONS(5406), - [aux_sym_keyword_statement_token3] = ACTIONS(5406), - [aux_sym_keyword_statement_token4] = ACTIONS(5406), - [aux_sym_keyword_statement_token6] = ACTIONS(5406), - [aux_sym_keyword_statement_token7] = ACTIONS(5406), - [aux_sym_include_statement_token1] = ACTIONS(5406), - [aux_sym_data_statement_token1] = ACTIONS(5406), - [aux_sym_do_loop_statement_token1] = ACTIONS(5406), - [aux_sym__inline_if_statement_token1] = ACTIONS(5406), - [aux_sym_end_if_statement_token1] = ACTIONS(5406), - [aux_sym_elseif_clause_token2] = ACTIONS(5406), - [aux_sym__inline_where_statement_token1] = ACTIONS(5406), - [aux_sym__forall_control_expression_token1] = ACTIONS(5406), - [aux_sym_select_case_statement_token1] = ACTIONS(5406), - [aux_sym_select_case_statement_token3] = ACTIONS(5406), - [aux_sym_select_type_statement_token1] = ACTIONS(5406), - [aux_sym_select_rank_statement_token2] = ACTIONS(5406), - [aux_sym_block_construct_token1] = ACTIONS(5406), - [aux_sym_associate_statement_token1] = ACTIONS(5406), - [aux_sym_format_statement_token1] = ACTIONS(5406), - [aux_sym_print_statement_token1] = ACTIONS(5406), - [aux_sym_open_statement_token1] = ACTIONS(5406), - [aux_sym_close_statement_token1] = ACTIONS(5406), - [aux_sym_inquire_statement_token1] = ACTIONS(5406), - [aux_sym_enum_statement_token1] = ACTIONS(5406), - [aux_sym_file_position_statement_token1] = ACTIONS(5406), - [aux_sym_file_position_statement_token2] = ACTIONS(5406), - [aux_sym_file_position_statement_token3] = ACTIONS(5406), - [aux_sym_file_position_statement_token4] = ACTIONS(5406), - [aux_sym_allocate_statement_token1] = ACTIONS(5406), - [aux_sym_entry_statement_token1] = ACTIONS(5406), - [aux_sym_logical_expression_token5] = ACTIONS(5408), - [anon_sym_DOT] = ACTIONS(5406), - [anon_sym_LPAREN_SLASH] = ACTIONS(5408), - [anon_sym_LBRACK] = ACTIONS(5408), - [aux_sym_boolean_literal_token1] = ACTIONS(5408), - [aux_sym_boolean_literal_token2] = ACTIONS(5408), - [aux_sym_null_literal_token1] = ACTIONS(5406), - [aux_sym_coarray_statement_token1] = ACTIONS(5406), - [aux_sym_coarray_statement_token2] = ACTIONS(5406), - [aux_sym_coarray_statement_token6] = ACTIONS(5406), - [aux_sym_coarray_statement_token8] = ACTIONS(5406), - [aux_sym_coarray_statement_token11] = ACTIONS(5406), - [aux_sym_coarray_statement_token12] = ACTIONS(5406), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5406), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5406), - [aux_sym_identifier_token1] = ACTIONS(5406), + [aux_sym_end_program_statement_token1] = ACTIONS(5430), + [aux_sym_interface_statement_token1] = ACTIONS(5430), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5430), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5430), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5430), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5430), + [aux_sym_language_binding_token1] = ACTIONS(5430), + [aux_sym_procedure_attributes_token1] = ACTIONS(5430), + [aux_sym_procedure_attributes_token3] = ACTIONS(5430), + [aux_sym_contains_statement_token1] = ACTIONS(5430), + [aux_sym_use_statement_token1] = ACTIONS(5430), + [aux_sym_use_statement_token2] = ACTIONS(5430), + [aux_sym_implicit_statement_token1] = ACTIONS(5430), + [aux_sym_implicit_statement_token3] = ACTIONS(5430), + [aux_sym_implicit_statement_token4] = ACTIONS(5430), + [aux_sym_save_statement_token1] = ACTIONS(5430), + [aux_sym_private_statement_token1] = ACTIONS(5430), + [aux_sym_public_statement_token1] = ACTIONS(5430), + [aux_sym_namelist_statement_token1] = ACTIONS(5430), + [aux_sym_common_statement_token1] = ACTIONS(5430), + [aux_sym_import_statement_token1] = ACTIONS(5430), + [aux_sym_derived_type_definition_token1] = ACTIONS(5430), + [aux_sym_abstract_specifier_token1] = ACTIONS(5430), + [aux_sym_procedure_attribute_token6] = ACTIONS(5430), + [aux_sym_variable_attributes_token1] = ACTIONS(5430), + [aux_sym_variable_attributes_token2] = ACTIONS(5430), + [aux_sym_variable_attributes_token3] = ACTIONS(5430), + [aux_sym_variable_attributes_token4] = ACTIONS(5430), + [aux_sym_variable_attributes_token5] = ACTIONS(5430), + [aux_sym__intrinsic_type_token1] = ACTIONS(5430), + [aux_sym__intrinsic_type_token2] = ACTIONS(5430), + [aux_sym__intrinsic_type_token3] = ACTIONS(5430), + [aux_sym__intrinsic_type_token4] = ACTIONS(5430), + [aux_sym__intrinsic_type_token6] = ACTIONS(5430), + [aux_sym__intrinsic_type_token7] = ACTIONS(5430), + [aux_sym__intrinsic_type_token8] = ACTIONS(5430), + [aux_sym__intrinsic_type_token9] = ACTIONS(5430), + [aux_sym__intrinsic_type_token10] = ACTIONS(5430), + [aux_sym_derived_type_token1] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5430), + [aux_sym_type_qualifier_token1] = ACTIONS(5430), + [aux_sym_type_qualifier_token2] = ACTIONS(5430), + [aux_sym_equivalence_statement_token1] = ACTIONS(5430), + [anon_sym_SEMI] = ACTIONS(5432), + [aux_sym_stop_statement_token1] = ACTIONS(5430), + [aux_sym_stop_statement_token2] = ACTIONS(5430), + [aux_sym_subroutine_call_token1] = ACTIONS(5430), + [aux_sym_keyword_statement_token1] = ACTIONS(5430), + [aux_sym_keyword_statement_token2] = ACTIONS(5430), + [aux_sym_keyword_statement_token3] = ACTIONS(5430), + [aux_sym_keyword_statement_token4] = ACTIONS(5430), + [aux_sym_keyword_statement_token6] = ACTIONS(5430), + [aux_sym_keyword_statement_token7] = ACTIONS(5430), + [aux_sym_include_statement_token1] = ACTIONS(5430), + [aux_sym_data_statement_token1] = ACTIONS(5430), + [aux_sym_do_loop_statement_token1] = ACTIONS(5430), + [aux_sym__inline_if_statement_token1] = ACTIONS(5430), + [aux_sym_end_if_statement_token1] = ACTIONS(5430), + [aux_sym_elseif_clause_token2] = ACTIONS(5430), + [aux_sym__inline_where_statement_token1] = ACTIONS(5430), + [aux_sym__forall_control_expression_token1] = ACTIONS(5430), + [aux_sym_select_case_statement_token1] = ACTIONS(5430), + [aux_sym_select_case_statement_token3] = ACTIONS(5430), + [aux_sym_select_type_statement_token1] = ACTIONS(5430), + [aux_sym_select_rank_statement_token2] = ACTIONS(5430), + [aux_sym_block_construct_token1] = ACTIONS(5430), + [aux_sym_associate_statement_token1] = ACTIONS(5430), + [aux_sym_format_statement_token1] = ACTIONS(5430), + [aux_sym_print_statement_token1] = ACTIONS(5430), + [aux_sym_open_statement_token1] = ACTIONS(5430), + [aux_sym_close_statement_token1] = ACTIONS(5430), + [aux_sym_inquire_statement_token1] = ACTIONS(5430), + [aux_sym_enum_statement_token1] = ACTIONS(5430), + [aux_sym_file_position_statement_token1] = ACTIONS(5430), + [aux_sym_file_position_statement_token2] = ACTIONS(5430), + [aux_sym_file_position_statement_token3] = ACTIONS(5430), + [aux_sym_file_position_statement_token4] = ACTIONS(5430), + [aux_sym_allocate_statement_token1] = ACTIONS(5430), + [aux_sym_entry_statement_token1] = ACTIONS(5430), + [aux_sym_logical_expression_token5] = ACTIONS(5432), + [anon_sym_DOT] = ACTIONS(5430), + [anon_sym_LPAREN_SLASH] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5432), + [aux_sym_boolean_literal_token1] = ACTIONS(5432), + [aux_sym_boolean_literal_token2] = ACTIONS(5432), + [aux_sym_null_literal_token1] = ACTIONS(5430), + [aux_sym_coarray_statement_token1] = ACTIONS(5430), + [aux_sym_coarray_statement_token2] = ACTIONS(5430), + [aux_sym_coarray_statement_token6] = ACTIONS(5430), + [aux_sym_coarray_statement_token8] = ACTIONS(5430), + [aux_sym_coarray_statement_token11] = ACTIONS(5430), + [aux_sym_coarray_statement_token12] = ACTIONS(5430), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5430), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5430), + [aux_sym_identifier_token1] = ACTIONS(5430), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5408), - [sym__float_literal] = ACTIONS(5408), - [sym__boz_literal] = ACTIONS(5408), - [sym__string_literal] = ACTIONS(5408), - [sym__string_literal_kind] = ACTIONS(5408), + [sym__integer_literal] = ACTIONS(5432), + [sym__float_literal] = ACTIONS(5432), + [sym__boz_literal] = ACTIONS(5432), + [sym__string_literal] = ACTIONS(5432), + [sym__string_literal_kind] = ACTIONS(5432), }, - [1438] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_LPAREN2] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_end_function_statement_token1] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_subroutine_call_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_keyword_statement_token4] = ACTIONS(4619), - [aux_sym_keyword_statement_token6] = ACTIONS(4619), - [aux_sym_keyword_statement_token7] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym_do_loop_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym__inline_where_statement_token1] = ACTIONS(4619), - [aux_sym__forall_control_expression_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token3] = ACTIONS(4619), - [aux_sym_select_type_statement_token1] = ACTIONS(4619), - [aux_sym_select_rank_statement_token2] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_associate_statement_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_print_statement_token1] = ACTIONS(4619), - [aux_sym_open_statement_token1] = ACTIONS(4619), - [aux_sym_close_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token2] = ACTIONS(4619), - [aux_sym_file_position_statement_token3] = ACTIONS(4619), - [aux_sym_file_position_statement_token4] = ACTIONS(4619), - [aux_sym_allocate_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_logical_expression_token5] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_LPAREN_SLASH] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [aux_sym_boolean_literal_token1] = ACTIONS(4621), - [aux_sym_boolean_literal_token2] = ACTIONS(4621), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - [sym__float_literal] = ACTIONS(4621), - [sym__boz_literal] = ACTIONS(4621), - [sym__string_literal] = ACTIONS(4621), - [sym__string_literal_kind] = ACTIONS(4621), + [1423] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, - [1439] = { - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), + [1424] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_end_function_statement_token1] = ACTIONS(4511), - [aux_sym_contains_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [anon_sym_SEMI] = ACTIONS(4513), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_subroutine_call_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_keyword_statement_token4] = ACTIONS(4511), - [aux_sym_keyword_statement_token6] = ACTIONS(4511), - [aux_sym_keyword_statement_token7] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym_do_loop_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym__inline_where_statement_token1] = ACTIONS(4511), - [aux_sym__forall_control_expression_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token3] = ACTIONS(4511), - [aux_sym_select_type_statement_token1] = ACTIONS(4511), - [aux_sym_select_rank_statement_token2] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_associate_statement_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_print_statement_token1] = ACTIONS(4511), - [aux_sym_open_statement_token1] = ACTIONS(4511), - [aux_sym_close_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token2] = ACTIONS(4511), - [aux_sym_file_position_statement_token3] = ACTIONS(4511), - [aux_sym_file_position_statement_token4] = ACTIONS(4511), - [aux_sym_allocate_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_logical_expression_token5] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4511), - [anon_sym_LPAREN_SLASH] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [aux_sym_boolean_literal_token1] = ACTIONS(4513), - [aux_sym_boolean_literal_token2] = ACTIONS(4513), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), - [sym__float_literal] = ACTIONS(4513), - [sym__boz_literal] = ACTIONS(4513), - [sym__string_literal] = ACTIONS(4513), - [sym__string_literal_kind] = ACTIONS(4513), - }, - [1440] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1441] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [1425] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1442] = { - [aux_sym_preproc_include_token1] = ACTIONS(5414), - [aux_sym_preproc_def_token1] = ACTIONS(5414), - [aux_sym_preproc_if_token1] = ACTIONS(5414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5414), - [sym_preproc_directive] = ACTIONS(5414), - [anon_sym_LPAREN2] = ACTIONS(5414), - [anon_sym_PLUS] = ACTIONS(5416), - [anon_sym_DASH] = ACTIONS(5416), + [1426] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5414), - [aux_sym_interface_statement_token1] = ACTIONS(5414), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5414), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5414), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5414), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5414), - [aux_sym_language_binding_token1] = ACTIONS(5414), - [aux_sym_procedure_attributes_token1] = ACTIONS(5414), - [aux_sym_procedure_attributes_token3] = ACTIONS(5414), - [aux_sym_contains_statement_token1] = ACTIONS(5414), - [aux_sym_use_statement_token1] = ACTIONS(5414), - [aux_sym_use_statement_token2] = ACTIONS(5414), - [aux_sym_implicit_statement_token1] = ACTIONS(5414), - [aux_sym_implicit_statement_token3] = ACTIONS(5414), - [aux_sym_implicit_statement_token4] = ACTIONS(5414), - [aux_sym_save_statement_token1] = ACTIONS(5414), - [aux_sym_private_statement_token1] = ACTIONS(5414), - [aux_sym_public_statement_token1] = ACTIONS(5414), - [aux_sym_namelist_statement_token1] = ACTIONS(5414), - [aux_sym_common_statement_token1] = ACTIONS(5414), - [aux_sym_import_statement_token1] = ACTIONS(5414), - [aux_sym_derived_type_definition_token1] = ACTIONS(5414), - [aux_sym_abstract_specifier_token1] = ACTIONS(5414), - [aux_sym_procedure_attribute_token6] = ACTIONS(5414), - [aux_sym_variable_attributes_token1] = ACTIONS(5414), - [aux_sym_variable_attributes_token2] = ACTIONS(5414), - [aux_sym_variable_attributes_token3] = ACTIONS(5414), - [aux_sym_variable_attributes_token4] = ACTIONS(5414), - [aux_sym_variable_attributes_token5] = ACTIONS(5414), - [aux_sym__intrinsic_type_token1] = ACTIONS(5414), - [aux_sym__intrinsic_type_token2] = ACTIONS(5414), - [aux_sym__intrinsic_type_token3] = ACTIONS(5414), - [aux_sym__intrinsic_type_token4] = ACTIONS(5414), - [aux_sym__intrinsic_type_token6] = ACTIONS(5414), - [aux_sym__intrinsic_type_token7] = ACTIONS(5414), - [aux_sym__intrinsic_type_token8] = ACTIONS(5414), - [aux_sym__intrinsic_type_token9] = ACTIONS(5414), - [aux_sym__intrinsic_type_token10] = ACTIONS(5414), - [aux_sym_derived_type_token1] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5414), - [aux_sym_type_qualifier_token1] = ACTIONS(5414), - [aux_sym_type_qualifier_token2] = ACTIONS(5414), - [aux_sym_equivalence_statement_token1] = ACTIONS(5414), - [anon_sym_SEMI] = ACTIONS(5416), - [aux_sym_stop_statement_token1] = ACTIONS(5414), - [aux_sym_stop_statement_token2] = ACTIONS(5414), - [aux_sym_subroutine_call_token1] = ACTIONS(5414), - [aux_sym_keyword_statement_token1] = ACTIONS(5414), - [aux_sym_keyword_statement_token2] = ACTIONS(5414), - [aux_sym_keyword_statement_token3] = ACTIONS(5414), - [aux_sym_keyword_statement_token4] = ACTIONS(5414), - [aux_sym_keyword_statement_token6] = ACTIONS(5414), - [aux_sym_keyword_statement_token7] = ACTIONS(5414), - [aux_sym_include_statement_token1] = ACTIONS(5414), - [aux_sym_data_statement_token1] = ACTIONS(5414), - [aux_sym_do_loop_statement_token1] = ACTIONS(5414), - [aux_sym__inline_if_statement_token1] = ACTIONS(5414), - [aux_sym_end_if_statement_token1] = ACTIONS(5414), - [aux_sym_elseif_clause_token2] = ACTIONS(5414), - [aux_sym__inline_where_statement_token1] = ACTIONS(5414), - [aux_sym__forall_control_expression_token1] = ACTIONS(5414), - [aux_sym_select_case_statement_token1] = ACTIONS(5414), - [aux_sym_select_case_statement_token3] = ACTIONS(5414), - [aux_sym_select_type_statement_token1] = ACTIONS(5414), - [aux_sym_select_rank_statement_token2] = ACTIONS(5414), - [aux_sym_block_construct_token1] = ACTIONS(5414), - [aux_sym_associate_statement_token1] = ACTIONS(5414), - [aux_sym_format_statement_token1] = ACTIONS(5414), - [aux_sym_print_statement_token1] = ACTIONS(5414), - [aux_sym_open_statement_token1] = ACTIONS(5414), - [aux_sym_close_statement_token1] = ACTIONS(5414), - [aux_sym_inquire_statement_token1] = ACTIONS(5414), - [aux_sym_enum_statement_token1] = ACTIONS(5414), - [aux_sym_file_position_statement_token1] = ACTIONS(5414), - [aux_sym_file_position_statement_token2] = ACTIONS(5414), - [aux_sym_file_position_statement_token3] = ACTIONS(5414), - [aux_sym_file_position_statement_token4] = ACTIONS(5414), - [aux_sym_allocate_statement_token1] = ACTIONS(5414), - [aux_sym_entry_statement_token1] = ACTIONS(5414), - [aux_sym_logical_expression_token5] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(5414), - [anon_sym_LPAREN_SLASH] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(5416), - [aux_sym_boolean_literal_token1] = ACTIONS(5416), - [aux_sym_boolean_literal_token2] = ACTIONS(5416), - [aux_sym_null_literal_token1] = ACTIONS(5414), - [aux_sym_coarray_statement_token1] = ACTIONS(5414), - [aux_sym_coarray_statement_token2] = ACTIONS(5414), - [aux_sym_coarray_statement_token6] = ACTIONS(5414), - [aux_sym_coarray_statement_token8] = ACTIONS(5414), - [aux_sym_coarray_statement_token11] = ACTIONS(5414), - [aux_sym_coarray_statement_token12] = ACTIONS(5414), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5414), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5414), - [aux_sym_identifier_token1] = ACTIONS(5414), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5416), - [sym__float_literal] = ACTIONS(5416), - [sym__boz_literal] = ACTIONS(5416), - [sym__string_literal] = ACTIONS(5416), - [sym__string_literal_kind] = ACTIONS(5416), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [1443] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), + [1427] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1444] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), + [1428] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_end_function_statement_token1] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), - }, - [1445] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_end_program_statement_token2] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), - }, - [1446] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_end_function_statement_token1] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_subroutine_call_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_keyword_statement_token4] = ACTIONS(5065), - [aux_sym_keyword_statement_token6] = ACTIONS(5065), - [aux_sym_keyword_statement_token7] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym_do_loop_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym__inline_where_statement_token1] = ACTIONS(5065), - [aux_sym__forall_control_expression_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token3] = ACTIONS(5065), - [aux_sym_select_type_statement_token1] = ACTIONS(5065), - [aux_sym_select_rank_statement_token2] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_associate_statement_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_print_statement_token1] = ACTIONS(5065), - [aux_sym_open_statement_token1] = ACTIONS(5065), - [aux_sym_close_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token2] = ACTIONS(5065), - [aux_sym_file_position_statement_token3] = ACTIONS(5065), - [aux_sym_file_position_statement_token4] = ACTIONS(5065), - [aux_sym_allocate_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_logical_expression_token5] = ACTIONS(5067), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_LPAREN_SLASH] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [aux_sym_boolean_literal_token1] = ACTIONS(5067), - [aux_sym_boolean_literal_token2] = ACTIONS(5067), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - [sym__float_literal] = ACTIONS(5067), - [sym__boz_literal] = ACTIONS(5067), - [sym__string_literal] = ACTIONS(5067), - [sym__string_literal_kind] = ACTIONS(5067), - }, - [1447] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_LPAREN2] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_end_program_statement_token2] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_subroutine_call_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_keyword_statement_token4] = ACTIONS(5041), - [aux_sym_keyword_statement_token6] = ACTIONS(5041), - [aux_sym_keyword_statement_token7] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym_do_loop_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym__inline_where_statement_token1] = ACTIONS(5041), - [aux_sym__forall_control_expression_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token3] = ACTIONS(5041), - [aux_sym_select_type_statement_token1] = ACTIONS(5041), - [aux_sym_select_rank_statement_token2] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_associate_statement_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_print_statement_token1] = ACTIONS(5041), - [aux_sym_open_statement_token1] = ACTIONS(5041), - [aux_sym_close_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token2] = ACTIONS(5041), - [aux_sym_file_position_statement_token3] = ACTIONS(5041), - [aux_sym_file_position_statement_token4] = ACTIONS(5041), - [aux_sym_allocate_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_logical_expression_token5] = ACTIONS(5043), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_LPAREN_SLASH] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [aux_sym_boolean_literal_token1] = ACTIONS(5043), - [aux_sym_boolean_literal_token2] = ACTIONS(5043), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - [sym__float_literal] = ACTIONS(5043), - [sym__boz_literal] = ACTIONS(5043), - [sym__string_literal] = ACTIONS(5043), - [sym__string_literal_kind] = ACTIONS(5043), - }, - [1448] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_LPAREN2] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_end_program_statement_token2] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_subroutine_call_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_keyword_statement_token4] = ACTIONS(5045), - [aux_sym_keyword_statement_token6] = ACTIONS(5045), - [aux_sym_keyword_statement_token7] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym_do_loop_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym__inline_where_statement_token1] = ACTIONS(5045), - [aux_sym__forall_control_expression_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token3] = ACTIONS(5045), - [aux_sym_select_type_statement_token1] = ACTIONS(5045), - [aux_sym_select_rank_statement_token2] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_associate_statement_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_print_statement_token1] = ACTIONS(5045), - [aux_sym_open_statement_token1] = ACTIONS(5045), - [aux_sym_close_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token2] = ACTIONS(5045), - [aux_sym_file_position_statement_token3] = ACTIONS(5045), - [aux_sym_file_position_statement_token4] = ACTIONS(5045), - [aux_sym_allocate_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_logical_expression_token5] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_LPAREN_SLASH] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [aux_sym_boolean_literal_token1] = ACTIONS(5047), - [aux_sym_boolean_literal_token2] = ACTIONS(5047), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - [sym__float_literal] = ACTIONS(5047), - [sym__boz_literal] = ACTIONS(5047), - [sym__string_literal] = ACTIONS(5047), - [sym__string_literal_kind] = ACTIONS(5047), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1449] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [1429] = { + [aux_sym_preproc_include_token1] = ACTIONS(5434), + [aux_sym_preproc_def_token1] = ACTIONS(5434), + [aux_sym_preproc_if_token1] = ACTIONS(5434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5434), + [sym_preproc_directive] = ACTIONS(5434), + [anon_sym_LPAREN2] = ACTIONS(5434), + [anon_sym_PLUS] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5436), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_end_program_statement_token2] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5434), + [aux_sym_interface_statement_token1] = ACTIONS(5434), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5434), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5434), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5434), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5434), + [aux_sym_language_binding_token1] = ACTIONS(5434), + [aux_sym_procedure_attributes_token1] = ACTIONS(5434), + [aux_sym_procedure_attributes_token3] = ACTIONS(5434), + [aux_sym_contains_statement_token1] = ACTIONS(5434), + [aux_sym_use_statement_token1] = ACTIONS(5434), + [aux_sym_use_statement_token2] = ACTIONS(5434), + [aux_sym_implicit_statement_token1] = ACTIONS(5434), + [aux_sym_implicit_statement_token3] = ACTIONS(5434), + [aux_sym_implicit_statement_token4] = ACTIONS(5434), + [aux_sym_save_statement_token1] = ACTIONS(5434), + [aux_sym_private_statement_token1] = ACTIONS(5434), + [aux_sym_public_statement_token1] = ACTIONS(5434), + [aux_sym_namelist_statement_token1] = ACTIONS(5434), + [aux_sym_common_statement_token1] = ACTIONS(5434), + [aux_sym_import_statement_token1] = ACTIONS(5434), + [aux_sym_derived_type_definition_token1] = ACTIONS(5434), + [aux_sym_abstract_specifier_token1] = ACTIONS(5434), + [aux_sym_procedure_attribute_token6] = ACTIONS(5434), + [aux_sym_variable_attributes_token1] = ACTIONS(5434), + [aux_sym_variable_attributes_token2] = ACTIONS(5434), + [aux_sym_variable_attributes_token3] = ACTIONS(5434), + [aux_sym_variable_attributes_token4] = ACTIONS(5434), + [aux_sym_variable_attributes_token5] = ACTIONS(5434), + [aux_sym__intrinsic_type_token1] = ACTIONS(5434), + [aux_sym__intrinsic_type_token2] = ACTIONS(5434), + [aux_sym__intrinsic_type_token3] = ACTIONS(5434), + [aux_sym__intrinsic_type_token4] = ACTIONS(5434), + [aux_sym__intrinsic_type_token6] = ACTIONS(5434), + [aux_sym__intrinsic_type_token7] = ACTIONS(5434), + [aux_sym__intrinsic_type_token8] = ACTIONS(5434), + [aux_sym__intrinsic_type_token9] = ACTIONS(5434), + [aux_sym__intrinsic_type_token10] = ACTIONS(5434), + [aux_sym_derived_type_token1] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5434), + [aux_sym_type_qualifier_token1] = ACTIONS(5434), + [aux_sym_type_qualifier_token2] = ACTIONS(5434), + [aux_sym_equivalence_statement_token1] = ACTIONS(5434), + [anon_sym_SEMI] = ACTIONS(5436), + [aux_sym_stop_statement_token1] = ACTIONS(5434), + [aux_sym_stop_statement_token2] = ACTIONS(5434), + [aux_sym_subroutine_call_token1] = ACTIONS(5434), + [aux_sym_keyword_statement_token1] = ACTIONS(5434), + [aux_sym_keyword_statement_token2] = ACTIONS(5434), + [aux_sym_keyword_statement_token3] = ACTIONS(5434), + [aux_sym_keyword_statement_token4] = ACTIONS(5434), + [aux_sym_keyword_statement_token6] = ACTIONS(5434), + [aux_sym_keyword_statement_token7] = ACTIONS(5434), + [aux_sym_include_statement_token1] = ACTIONS(5434), + [aux_sym_data_statement_token1] = ACTIONS(5434), + [aux_sym_do_loop_statement_token1] = ACTIONS(5434), + [aux_sym__inline_if_statement_token1] = ACTIONS(5434), + [aux_sym_end_if_statement_token1] = ACTIONS(5434), + [aux_sym_elseif_clause_token2] = ACTIONS(5434), + [aux_sym__inline_where_statement_token1] = ACTIONS(5434), + [aux_sym__forall_control_expression_token1] = ACTIONS(5434), + [aux_sym_select_case_statement_token1] = ACTIONS(5434), + [aux_sym_select_case_statement_token3] = ACTIONS(5434), + [aux_sym_select_type_statement_token1] = ACTIONS(5434), + [aux_sym_select_rank_statement_token2] = ACTIONS(5434), + [aux_sym_block_construct_token1] = ACTIONS(5434), + [aux_sym_associate_statement_token1] = ACTIONS(5434), + [aux_sym_format_statement_token1] = ACTIONS(5434), + [aux_sym_print_statement_token1] = ACTIONS(5434), + [aux_sym_open_statement_token1] = ACTIONS(5434), + [aux_sym_close_statement_token1] = ACTIONS(5434), + [aux_sym_inquire_statement_token1] = ACTIONS(5434), + [aux_sym_enum_statement_token1] = ACTIONS(5434), + [aux_sym_file_position_statement_token1] = ACTIONS(5434), + [aux_sym_file_position_statement_token2] = ACTIONS(5434), + [aux_sym_file_position_statement_token3] = ACTIONS(5434), + [aux_sym_file_position_statement_token4] = ACTIONS(5434), + [aux_sym_allocate_statement_token1] = ACTIONS(5434), + [aux_sym_entry_statement_token1] = ACTIONS(5434), + [aux_sym_logical_expression_token5] = ACTIONS(5436), + [anon_sym_DOT] = ACTIONS(5434), + [anon_sym_LPAREN_SLASH] = ACTIONS(5436), + [anon_sym_LBRACK] = ACTIONS(5436), + [aux_sym_boolean_literal_token1] = ACTIONS(5436), + [aux_sym_boolean_literal_token2] = ACTIONS(5436), + [aux_sym_null_literal_token1] = ACTIONS(5434), + [aux_sym_coarray_statement_token1] = ACTIONS(5434), + [aux_sym_coarray_statement_token2] = ACTIONS(5434), + [aux_sym_coarray_statement_token6] = ACTIONS(5434), + [aux_sym_coarray_statement_token8] = ACTIONS(5434), + [aux_sym_coarray_statement_token11] = ACTIONS(5434), + [aux_sym_coarray_statement_token12] = ACTIONS(5434), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5434), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5434), + [aux_sym_identifier_token1] = ACTIONS(5434), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [1450] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_LPAREN2] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_end_function_statement_token1] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_subroutine_call_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_keyword_statement_token4] = ACTIONS(5069), - [aux_sym_keyword_statement_token6] = ACTIONS(5069), - [aux_sym_keyword_statement_token7] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym_do_loop_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym__inline_where_statement_token1] = ACTIONS(5069), - [aux_sym__forall_control_expression_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token3] = ACTIONS(5069), - [aux_sym_select_type_statement_token1] = ACTIONS(5069), - [aux_sym_select_rank_statement_token2] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_associate_statement_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_print_statement_token1] = ACTIONS(5069), - [aux_sym_open_statement_token1] = ACTIONS(5069), - [aux_sym_close_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token2] = ACTIONS(5069), - [aux_sym_file_position_statement_token3] = ACTIONS(5069), - [aux_sym_file_position_statement_token4] = ACTIONS(5069), - [aux_sym_allocate_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_logical_expression_token5] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LPAREN_SLASH] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [aux_sym_boolean_literal_token1] = ACTIONS(5071), - [aux_sym_boolean_literal_token2] = ACTIONS(5071), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - [sym__float_literal] = ACTIONS(5071), - [sym__boz_literal] = ACTIONS(5071), - [sym__string_literal] = ACTIONS(5071), - [sym__string_literal_kind] = ACTIONS(5071), - }, - [1451] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_end_function_statement_token1] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), + [sym__integer_literal] = ACTIONS(5436), + [sym__float_literal] = ACTIONS(5436), + [sym__boz_literal] = ACTIONS(5436), + [sym__string_literal] = ACTIONS(5436), + [sym__string_literal_kind] = ACTIONS(5436), }, - [1452] = { + [1430] = { [aux_sym_preproc_include_token1] = ACTIONS(5422), [aux_sym_preproc_def_token1] = ACTIONS(5422), [aux_sym_preproc_if_token1] = ACTIONS(5422), @@ -283433,10 +280683,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(5422), [aux_sym_defined_io_procedure_token2] = ACTIONS(5422), [aux_sym_module_procedure_statement_token1] = ACTIONS(5422), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5422), [aux_sym_language_binding_token1] = ACTIONS(5422), [aux_sym_procedure_attributes_token1] = ACTIONS(5422), [aux_sym_procedure_attributes_token3] = ACTIONS(5422), + [aux_sym_end_function_statement_token1] = ACTIONS(5422), [aux_sym_contains_statement_token1] = ACTIONS(5422), [aux_sym_use_statement_token1] = ACTIONS(5422), [aux_sym_use_statement_token2] = ACTIONS(5422), @@ -283542,257 +280792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5424), [sym__string_literal_kind] = ACTIONS(5424), }, - [1453] = { - [aux_sym_preproc_include_token1] = ACTIONS(5426), - [aux_sym_preproc_def_token1] = ACTIONS(5426), - [aux_sym_preproc_if_token1] = ACTIONS(5426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5426), - [sym_preproc_directive] = ACTIONS(5426), - [anon_sym_LPAREN2] = ACTIONS(5426), - [anon_sym_PLUS] = ACTIONS(5428), - [anon_sym_DASH] = ACTIONS(5428), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5426), - [aux_sym_interface_statement_token1] = ACTIONS(5426), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5426), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5426), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5426), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5426), - [aux_sym_language_binding_token1] = ACTIONS(5426), - [aux_sym_procedure_attributes_token1] = ACTIONS(5426), - [aux_sym_procedure_attributes_token3] = ACTIONS(5426), - [aux_sym_contains_statement_token1] = ACTIONS(5426), - [aux_sym_use_statement_token1] = ACTIONS(5426), - [aux_sym_use_statement_token2] = ACTIONS(5426), - [aux_sym_implicit_statement_token1] = ACTIONS(5426), - [aux_sym_implicit_statement_token3] = ACTIONS(5426), - [aux_sym_implicit_statement_token4] = ACTIONS(5426), - [aux_sym_save_statement_token1] = ACTIONS(5426), - [aux_sym_private_statement_token1] = ACTIONS(5426), - [aux_sym_public_statement_token1] = ACTIONS(5426), - [aux_sym_namelist_statement_token1] = ACTIONS(5426), - [aux_sym_common_statement_token1] = ACTIONS(5426), - [aux_sym_import_statement_token1] = ACTIONS(5426), - [aux_sym_derived_type_definition_token1] = ACTIONS(5426), - [aux_sym_abstract_specifier_token1] = ACTIONS(5426), - [aux_sym_procedure_attribute_token6] = ACTIONS(5426), - [aux_sym_variable_attributes_token1] = ACTIONS(5426), - [aux_sym_variable_attributes_token2] = ACTIONS(5426), - [aux_sym_variable_attributes_token3] = ACTIONS(5426), - [aux_sym_variable_attributes_token4] = ACTIONS(5426), - [aux_sym_variable_attributes_token5] = ACTIONS(5426), - [aux_sym__intrinsic_type_token1] = ACTIONS(5426), - [aux_sym__intrinsic_type_token2] = ACTIONS(5426), - [aux_sym__intrinsic_type_token3] = ACTIONS(5426), - [aux_sym__intrinsic_type_token4] = ACTIONS(5426), - [aux_sym__intrinsic_type_token6] = ACTIONS(5426), - [aux_sym__intrinsic_type_token7] = ACTIONS(5426), - [aux_sym__intrinsic_type_token8] = ACTIONS(5426), - [aux_sym__intrinsic_type_token9] = ACTIONS(5426), - [aux_sym__intrinsic_type_token10] = ACTIONS(5426), - [aux_sym_derived_type_token1] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5426), - [aux_sym_type_qualifier_token1] = ACTIONS(5426), - [aux_sym_type_qualifier_token2] = ACTIONS(5426), - [aux_sym_equivalence_statement_token1] = ACTIONS(5426), - [anon_sym_SEMI] = ACTIONS(5428), - [aux_sym_stop_statement_token1] = ACTIONS(5426), - [aux_sym_stop_statement_token2] = ACTIONS(5426), - [aux_sym_subroutine_call_token1] = ACTIONS(5426), - [aux_sym_keyword_statement_token1] = ACTIONS(5426), - [aux_sym_keyword_statement_token2] = ACTIONS(5426), - [aux_sym_keyword_statement_token3] = ACTIONS(5426), - [aux_sym_keyword_statement_token4] = ACTIONS(5426), - [aux_sym_keyword_statement_token6] = ACTIONS(5426), - [aux_sym_keyword_statement_token7] = ACTIONS(5426), - [aux_sym_include_statement_token1] = ACTIONS(5426), - [aux_sym_data_statement_token1] = ACTIONS(5426), - [aux_sym_do_loop_statement_token1] = ACTIONS(5426), - [aux_sym__inline_if_statement_token1] = ACTIONS(5426), - [aux_sym_end_if_statement_token1] = ACTIONS(5426), - [aux_sym_elseif_clause_token2] = ACTIONS(5426), - [aux_sym__inline_where_statement_token1] = ACTIONS(5426), - [aux_sym__forall_control_expression_token1] = ACTIONS(5426), - [aux_sym_select_case_statement_token1] = ACTIONS(5426), - [aux_sym_select_case_statement_token3] = ACTIONS(5426), - [aux_sym_select_type_statement_token1] = ACTIONS(5426), - [aux_sym_select_rank_statement_token2] = ACTIONS(5426), - [aux_sym_block_construct_token1] = ACTIONS(5426), - [aux_sym_associate_statement_token1] = ACTIONS(5426), - [aux_sym_format_statement_token1] = ACTIONS(5426), - [aux_sym_print_statement_token1] = ACTIONS(5426), - [aux_sym_open_statement_token1] = ACTIONS(5426), - [aux_sym_close_statement_token1] = ACTIONS(5426), - [aux_sym_inquire_statement_token1] = ACTIONS(5426), - [aux_sym_enum_statement_token1] = ACTIONS(5426), - [aux_sym_file_position_statement_token1] = ACTIONS(5426), - [aux_sym_file_position_statement_token2] = ACTIONS(5426), - [aux_sym_file_position_statement_token3] = ACTIONS(5426), - [aux_sym_file_position_statement_token4] = ACTIONS(5426), - [aux_sym_allocate_statement_token1] = ACTIONS(5426), - [aux_sym_entry_statement_token1] = ACTIONS(5426), - [aux_sym_logical_expression_token5] = ACTIONS(5428), - [anon_sym_DOT] = ACTIONS(5426), - [anon_sym_LPAREN_SLASH] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(5428), - [aux_sym_boolean_literal_token1] = ACTIONS(5428), - [aux_sym_boolean_literal_token2] = ACTIONS(5428), - [aux_sym_null_literal_token1] = ACTIONS(5426), - [aux_sym_coarray_statement_token1] = ACTIONS(5426), - [aux_sym_coarray_statement_token2] = ACTIONS(5426), - [aux_sym_coarray_statement_token6] = ACTIONS(5426), - [aux_sym_coarray_statement_token8] = ACTIONS(5426), - [aux_sym_coarray_statement_token11] = ACTIONS(5426), - [aux_sym_coarray_statement_token12] = ACTIONS(5426), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5426), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5426), - [aux_sym_identifier_token1] = ACTIONS(5426), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5428), - [sym__float_literal] = ACTIONS(5428), - [sym__boz_literal] = ACTIONS(5428), - [sym__string_literal] = ACTIONS(5428), - [sym__string_literal_kind] = ACTIONS(5428), - }, - [1454] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_end_function_statement_token1] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), - }, - [1455] = { + [1431] = { [aux_sym_preproc_include_token1] = ACTIONS(5430), [aux_sym_preproc_def_token1] = ACTIONS(5430), [aux_sym_preproc_if_token1] = ACTIONS(5430), @@ -283804,11 +280804,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5432), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5430), + [aux_sym_end_program_statement_token2] = ACTIONS(5430), [aux_sym_interface_statement_token1] = ACTIONS(5430), [aux_sym_defined_io_procedure_token1] = ACTIONS(5430), [aux_sym_defined_io_procedure_token2] = ACTIONS(5430), [aux_sym_module_procedure_statement_token1] = ACTIONS(5430), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5430), [aux_sym_language_binding_token1] = ACTIONS(5430), [aux_sym_procedure_attributes_token1] = ACTIONS(5430), [aux_sym_procedure_attributes_token3] = ACTIONS(5430), @@ -283917,257 +280917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5432), [sym__string_literal_kind] = ACTIONS(5432), }, - [1456] = { - [aux_sym_preproc_include_token1] = ACTIONS(5398), - [aux_sym_preproc_def_token1] = ACTIONS(5398), - [aux_sym_preproc_if_token1] = ACTIONS(5398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5398), - [sym_preproc_directive] = ACTIONS(5398), - [anon_sym_LPAREN2] = ACTIONS(5398), - [anon_sym_PLUS] = ACTIONS(5400), - [anon_sym_DASH] = ACTIONS(5400), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5398), - [aux_sym_interface_statement_token1] = ACTIONS(5398), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5398), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5398), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5398), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5398), - [aux_sym_language_binding_token1] = ACTIONS(5398), - [aux_sym_procedure_attributes_token1] = ACTIONS(5398), - [aux_sym_procedure_attributes_token3] = ACTIONS(5398), - [aux_sym_contains_statement_token1] = ACTIONS(5398), - [aux_sym_use_statement_token1] = ACTIONS(5398), - [aux_sym_use_statement_token2] = ACTIONS(5398), - [aux_sym_implicit_statement_token1] = ACTIONS(5398), - [aux_sym_implicit_statement_token3] = ACTIONS(5398), - [aux_sym_implicit_statement_token4] = ACTIONS(5398), - [aux_sym_save_statement_token1] = ACTIONS(5398), - [aux_sym_private_statement_token1] = ACTIONS(5398), - [aux_sym_public_statement_token1] = ACTIONS(5398), - [aux_sym_namelist_statement_token1] = ACTIONS(5398), - [aux_sym_common_statement_token1] = ACTIONS(5398), - [aux_sym_import_statement_token1] = ACTIONS(5398), - [aux_sym_derived_type_definition_token1] = ACTIONS(5398), - [aux_sym_abstract_specifier_token1] = ACTIONS(5398), - [aux_sym_procedure_attribute_token6] = ACTIONS(5398), - [aux_sym_variable_attributes_token1] = ACTIONS(5398), - [aux_sym_variable_attributes_token2] = ACTIONS(5398), - [aux_sym_variable_attributes_token3] = ACTIONS(5398), - [aux_sym_variable_attributes_token4] = ACTIONS(5398), - [aux_sym_variable_attributes_token5] = ACTIONS(5398), - [aux_sym__intrinsic_type_token1] = ACTIONS(5398), - [aux_sym__intrinsic_type_token2] = ACTIONS(5398), - [aux_sym__intrinsic_type_token3] = ACTIONS(5398), - [aux_sym__intrinsic_type_token4] = ACTIONS(5398), - [aux_sym__intrinsic_type_token6] = ACTIONS(5398), - [aux_sym__intrinsic_type_token7] = ACTIONS(5398), - [aux_sym__intrinsic_type_token8] = ACTIONS(5398), - [aux_sym__intrinsic_type_token9] = ACTIONS(5398), - [aux_sym__intrinsic_type_token10] = ACTIONS(5398), - [aux_sym_derived_type_token1] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5398), - [aux_sym_type_qualifier_token1] = ACTIONS(5398), - [aux_sym_type_qualifier_token2] = ACTIONS(5398), - [aux_sym_equivalence_statement_token1] = ACTIONS(5398), - [anon_sym_SEMI] = ACTIONS(5400), - [aux_sym_stop_statement_token1] = ACTIONS(5398), - [aux_sym_stop_statement_token2] = ACTIONS(5398), - [aux_sym_subroutine_call_token1] = ACTIONS(5398), - [aux_sym_keyword_statement_token1] = ACTIONS(5398), - [aux_sym_keyword_statement_token2] = ACTIONS(5398), - [aux_sym_keyword_statement_token3] = ACTIONS(5398), - [aux_sym_keyword_statement_token4] = ACTIONS(5398), - [aux_sym_keyword_statement_token6] = ACTIONS(5398), - [aux_sym_keyword_statement_token7] = ACTIONS(5398), - [aux_sym_include_statement_token1] = ACTIONS(5398), - [aux_sym_data_statement_token1] = ACTIONS(5398), - [aux_sym_do_loop_statement_token1] = ACTIONS(5398), - [aux_sym__inline_if_statement_token1] = ACTIONS(5398), - [aux_sym_end_if_statement_token1] = ACTIONS(5398), - [aux_sym_elseif_clause_token2] = ACTIONS(5398), - [aux_sym__inline_where_statement_token1] = ACTIONS(5398), - [aux_sym__forall_control_expression_token1] = ACTIONS(5398), - [aux_sym_select_case_statement_token1] = ACTIONS(5398), - [aux_sym_select_case_statement_token3] = ACTIONS(5398), - [aux_sym_select_type_statement_token1] = ACTIONS(5398), - [aux_sym_select_rank_statement_token2] = ACTIONS(5398), - [aux_sym_block_construct_token1] = ACTIONS(5398), - [aux_sym_associate_statement_token1] = ACTIONS(5398), - [aux_sym_format_statement_token1] = ACTIONS(5398), - [aux_sym_print_statement_token1] = ACTIONS(5398), - [aux_sym_open_statement_token1] = ACTIONS(5398), - [aux_sym_close_statement_token1] = ACTIONS(5398), - [aux_sym_inquire_statement_token1] = ACTIONS(5398), - [aux_sym_enum_statement_token1] = ACTIONS(5398), - [aux_sym_file_position_statement_token1] = ACTIONS(5398), - [aux_sym_file_position_statement_token2] = ACTIONS(5398), - [aux_sym_file_position_statement_token3] = ACTIONS(5398), - [aux_sym_file_position_statement_token4] = ACTIONS(5398), - [aux_sym_allocate_statement_token1] = ACTIONS(5398), - [aux_sym_entry_statement_token1] = ACTIONS(5398), - [aux_sym_logical_expression_token5] = ACTIONS(5400), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_LPAREN_SLASH] = ACTIONS(5400), - [anon_sym_LBRACK] = ACTIONS(5400), - [aux_sym_boolean_literal_token1] = ACTIONS(5400), - [aux_sym_boolean_literal_token2] = ACTIONS(5400), - [aux_sym_null_literal_token1] = ACTIONS(5398), - [aux_sym_coarray_statement_token1] = ACTIONS(5398), - [aux_sym_coarray_statement_token2] = ACTIONS(5398), - [aux_sym_coarray_statement_token6] = ACTIONS(5398), - [aux_sym_coarray_statement_token8] = ACTIONS(5398), - [aux_sym_coarray_statement_token11] = ACTIONS(5398), - [aux_sym_coarray_statement_token12] = ACTIONS(5398), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5398), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5398), - [aux_sym_identifier_token1] = ACTIONS(5398), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5400), - [sym__float_literal] = ACTIONS(5400), - [sym__boz_literal] = ACTIONS(5400), - [sym__string_literal] = ACTIONS(5400), - [sym__string_literal_kind] = ACTIONS(5400), - }, - [1457] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [1458] = { + [1432] = { [aux_sym_preproc_include_token1] = ACTIONS(5434), [aux_sym_preproc_def_token1] = ACTIONS(5434), [aux_sym_preproc_if_token1] = ACTIONS(5434), @@ -284179,11 +280929,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5436), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5434), + [aux_sym_end_program_statement_token2] = ACTIONS(5434), [aux_sym_interface_statement_token1] = ACTIONS(5434), [aux_sym_defined_io_procedure_token1] = ACTIONS(5434), [aux_sym_defined_io_procedure_token2] = ACTIONS(5434), [aux_sym_module_procedure_statement_token1] = ACTIONS(5434), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5434), [aux_sym_language_binding_token1] = ACTIONS(5434), [aux_sym_procedure_attributes_token1] = ACTIONS(5434), [aux_sym_procedure_attributes_token3] = ACTIONS(5434), @@ -284292,7 +281042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5436), [sym__string_literal_kind] = ACTIONS(5436), }, - [1459] = { + [1433] = { [aux_sym_preproc_include_token1] = ACTIONS(5438), [aux_sym_preproc_def_token1] = ACTIONS(5438), [aux_sym_preproc_if_token1] = ACTIONS(5438), @@ -284302,622 +281052,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(5438), [anon_sym_PLUS] = ACTIONS(5440), [anon_sym_DASH] = ACTIONS(5440), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5438), - [aux_sym_interface_statement_token1] = ACTIONS(5438), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5438), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5438), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5438), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5438), - [aux_sym_language_binding_token1] = ACTIONS(5438), - [aux_sym_procedure_attributes_token1] = ACTIONS(5438), - [aux_sym_procedure_attributes_token3] = ACTIONS(5438), - [aux_sym_contains_statement_token1] = ACTIONS(5438), - [aux_sym_use_statement_token1] = ACTIONS(5438), - [aux_sym_use_statement_token2] = ACTIONS(5438), - [aux_sym_implicit_statement_token1] = ACTIONS(5438), - [aux_sym_implicit_statement_token3] = ACTIONS(5438), - [aux_sym_implicit_statement_token4] = ACTIONS(5438), - [aux_sym_save_statement_token1] = ACTIONS(5438), - [aux_sym_private_statement_token1] = ACTIONS(5438), - [aux_sym_public_statement_token1] = ACTIONS(5438), - [aux_sym_namelist_statement_token1] = ACTIONS(5438), - [aux_sym_common_statement_token1] = ACTIONS(5438), - [aux_sym_import_statement_token1] = ACTIONS(5438), - [aux_sym_derived_type_definition_token1] = ACTIONS(5438), - [aux_sym_abstract_specifier_token1] = ACTIONS(5438), - [aux_sym_procedure_attribute_token6] = ACTIONS(5438), - [aux_sym_variable_attributes_token1] = ACTIONS(5438), - [aux_sym_variable_attributes_token2] = ACTIONS(5438), - [aux_sym_variable_attributes_token3] = ACTIONS(5438), - [aux_sym_variable_attributes_token4] = ACTIONS(5438), - [aux_sym_variable_attributes_token5] = ACTIONS(5438), - [aux_sym__intrinsic_type_token1] = ACTIONS(5438), - [aux_sym__intrinsic_type_token2] = ACTIONS(5438), - [aux_sym__intrinsic_type_token3] = ACTIONS(5438), - [aux_sym__intrinsic_type_token4] = ACTIONS(5438), - [aux_sym__intrinsic_type_token6] = ACTIONS(5438), - [aux_sym__intrinsic_type_token7] = ACTIONS(5438), - [aux_sym__intrinsic_type_token8] = ACTIONS(5438), - [aux_sym__intrinsic_type_token9] = ACTIONS(5438), - [aux_sym__intrinsic_type_token10] = ACTIONS(5438), - [aux_sym_derived_type_token1] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5438), - [aux_sym_type_qualifier_token1] = ACTIONS(5438), - [aux_sym_type_qualifier_token2] = ACTIONS(5438), - [aux_sym_equivalence_statement_token1] = ACTIONS(5438), - [anon_sym_SEMI] = ACTIONS(5440), - [aux_sym_stop_statement_token1] = ACTIONS(5438), - [aux_sym_stop_statement_token2] = ACTIONS(5438), - [aux_sym_subroutine_call_token1] = ACTIONS(5438), - [aux_sym_keyword_statement_token1] = ACTIONS(5438), - [aux_sym_keyword_statement_token2] = ACTIONS(5438), - [aux_sym_keyword_statement_token3] = ACTIONS(5438), - [aux_sym_keyword_statement_token4] = ACTIONS(5438), - [aux_sym_keyword_statement_token6] = ACTIONS(5438), - [aux_sym_keyword_statement_token7] = ACTIONS(5438), - [aux_sym_include_statement_token1] = ACTIONS(5438), - [aux_sym_data_statement_token1] = ACTIONS(5438), - [aux_sym_do_loop_statement_token1] = ACTIONS(5438), - [aux_sym__inline_if_statement_token1] = ACTIONS(5438), - [aux_sym_end_if_statement_token1] = ACTIONS(5438), - [aux_sym_elseif_clause_token2] = ACTIONS(5438), - [aux_sym__inline_where_statement_token1] = ACTIONS(5438), - [aux_sym__forall_control_expression_token1] = ACTIONS(5438), - [aux_sym_select_case_statement_token1] = ACTIONS(5438), - [aux_sym_select_case_statement_token3] = ACTIONS(5438), - [aux_sym_select_type_statement_token1] = ACTIONS(5438), - [aux_sym_select_rank_statement_token2] = ACTIONS(5438), - [aux_sym_block_construct_token1] = ACTIONS(5438), - [aux_sym_associate_statement_token1] = ACTIONS(5438), - [aux_sym_format_statement_token1] = ACTIONS(5438), - [aux_sym_print_statement_token1] = ACTIONS(5438), - [aux_sym_open_statement_token1] = ACTIONS(5438), - [aux_sym_close_statement_token1] = ACTIONS(5438), - [aux_sym_inquire_statement_token1] = ACTIONS(5438), - [aux_sym_enum_statement_token1] = ACTIONS(5438), - [aux_sym_file_position_statement_token1] = ACTIONS(5438), - [aux_sym_file_position_statement_token2] = ACTIONS(5438), - [aux_sym_file_position_statement_token3] = ACTIONS(5438), - [aux_sym_file_position_statement_token4] = ACTIONS(5438), - [aux_sym_allocate_statement_token1] = ACTIONS(5438), - [aux_sym_entry_statement_token1] = ACTIONS(5438), - [aux_sym_logical_expression_token5] = ACTIONS(5440), - [anon_sym_DOT] = ACTIONS(5438), - [anon_sym_LPAREN_SLASH] = ACTIONS(5440), - [anon_sym_LBRACK] = ACTIONS(5440), - [aux_sym_boolean_literal_token1] = ACTIONS(5440), - [aux_sym_boolean_literal_token2] = ACTIONS(5440), - [aux_sym_null_literal_token1] = ACTIONS(5438), - [aux_sym_coarray_statement_token1] = ACTIONS(5438), - [aux_sym_coarray_statement_token2] = ACTIONS(5438), - [aux_sym_coarray_statement_token6] = ACTIONS(5438), - [aux_sym_coarray_statement_token8] = ACTIONS(5438), - [aux_sym_coarray_statement_token11] = ACTIONS(5438), - [aux_sym_coarray_statement_token12] = ACTIONS(5438), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5438), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5438), - [aux_sym_identifier_token1] = ACTIONS(5438), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5440), - [sym__float_literal] = ACTIONS(5440), - [sym__boz_literal] = ACTIONS(5440), - [sym__string_literal] = ACTIONS(5440), - [sym__string_literal_kind] = ACTIONS(5440), - }, - [1460] = { - [aux_sym_preproc_include_token1] = ACTIONS(5442), - [aux_sym_preproc_def_token1] = ACTIONS(5442), - [aux_sym_preproc_if_token1] = ACTIONS(5442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5442), - [sym_preproc_directive] = ACTIONS(5442), - [anon_sym_LPAREN2] = ACTIONS(5442), - [anon_sym_PLUS] = ACTIONS(5444), - [anon_sym_DASH] = ACTIONS(5444), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5442), - [aux_sym_interface_statement_token1] = ACTIONS(5442), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5442), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5442), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5442), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5442), - [aux_sym_language_binding_token1] = ACTIONS(5442), - [aux_sym_procedure_attributes_token1] = ACTIONS(5442), - [aux_sym_procedure_attributes_token3] = ACTIONS(5442), - [aux_sym_contains_statement_token1] = ACTIONS(5442), - [aux_sym_use_statement_token1] = ACTIONS(5442), - [aux_sym_use_statement_token2] = ACTIONS(5442), - [aux_sym_implicit_statement_token1] = ACTIONS(5442), - [aux_sym_implicit_statement_token3] = ACTIONS(5442), - [aux_sym_implicit_statement_token4] = ACTIONS(5442), - [aux_sym_save_statement_token1] = ACTIONS(5442), - [aux_sym_private_statement_token1] = ACTIONS(5442), - [aux_sym_public_statement_token1] = ACTIONS(5442), - [aux_sym_namelist_statement_token1] = ACTIONS(5442), - [aux_sym_common_statement_token1] = ACTIONS(5442), - [aux_sym_import_statement_token1] = ACTIONS(5442), - [aux_sym_derived_type_definition_token1] = ACTIONS(5442), - [aux_sym_abstract_specifier_token1] = ACTIONS(5442), - [aux_sym_procedure_attribute_token6] = ACTIONS(5442), - [aux_sym_variable_attributes_token1] = ACTIONS(5442), - [aux_sym_variable_attributes_token2] = ACTIONS(5442), - [aux_sym_variable_attributes_token3] = ACTIONS(5442), - [aux_sym_variable_attributes_token4] = ACTIONS(5442), - [aux_sym_variable_attributes_token5] = ACTIONS(5442), - [aux_sym__intrinsic_type_token1] = ACTIONS(5442), - [aux_sym__intrinsic_type_token2] = ACTIONS(5442), - [aux_sym__intrinsic_type_token3] = ACTIONS(5442), - [aux_sym__intrinsic_type_token4] = ACTIONS(5442), - [aux_sym__intrinsic_type_token6] = ACTIONS(5442), - [aux_sym__intrinsic_type_token7] = ACTIONS(5442), - [aux_sym__intrinsic_type_token8] = ACTIONS(5442), - [aux_sym__intrinsic_type_token9] = ACTIONS(5442), - [aux_sym__intrinsic_type_token10] = ACTIONS(5442), - [aux_sym_derived_type_token1] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5442), - [aux_sym_type_qualifier_token1] = ACTIONS(5442), - [aux_sym_type_qualifier_token2] = ACTIONS(5442), - [aux_sym_equivalence_statement_token1] = ACTIONS(5442), - [anon_sym_SEMI] = ACTIONS(5444), - [aux_sym_stop_statement_token1] = ACTIONS(5442), - [aux_sym_stop_statement_token2] = ACTIONS(5442), - [aux_sym_subroutine_call_token1] = ACTIONS(5442), - [aux_sym_keyword_statement_token1] = ACTIONS(5442), - [aux_sym_keyword_statement_token2] = ACTIONS(5442), - [aux_sym_keyword_statement_token3] = ACTIONS(5442), - [aux_sym_keyword_statement_token4] = ACTIONS(5442), - [aux_sym_keyword_statement_token6] = ACTIONS(5442), - [aux_sym_keyword_statement_token7] = ACTIONS(5442), - [aux_sym_include_statement_token1] = ACTIONS(5442), - [aux_sym_data_statement_token1] = ACTIONS(5442), - [aux_sym_do_loop_statement_token1] = ACTIONS(5442), - [aux_sym__inline_if_statement_token1] = ACTIONS(5442), - [aux_sym_end_if_statement_token1] = ACTIONS(5442), - [aux_sym_elseif_clause_token2] = ACTIONS(5442), - [aux_sym__inline_where_statement_token1] = ACTIONS(5442), - [aux_sym__forall_control_expression_token1] = ACTIONS(5442), - [aux_sym_select_case_statement_token1] = ACTIONS(5442), - [aux_sym_select_case_statement_token3] = ACTIONS(5442), - [aux_sym_select_type_statement_token1] = ACTIONS(5442), - [aux_sym_select_rank_statement_token2] = ACTIONS(5442), - [aux_sym_block_construct_token1] = ACTIONS(5442), - [aux_sym_associate_statement_token1] = ACTIONS(5442), - [aux_sym_format_statement_token1] = ACTIONS(5442), - [aux_sym_print_statement_token1] = ACTIONS(5442), - [aux_sym_open_statement_token1] = ACTIONS(5442), - [aux_sym_close_statement_token1] = ACTIONS(5442), - [aux_sym_inquire_statement_token1] = ACTIONS(5442), - [aux_sym_enum_statement_token1] = ACTIONS(5442), - [aux_sym_file_position_statement_token1] = ACTIONS(5442), - [aux_sym_file_position_statement_token2] = ACTIONS(5442), - [aux_sym_file_position_statement_token3] = ACTIONS(5442), - [aux_sym_file_position_statement_token4] = ACTIONS(5442), - [aux_sym_allocate_statement_token1] = ACTIONS(5442), - [aux_sym_entry_statement_token1] = ACTIONS(5442), - [aux_sym_logical_expression_token5] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5442), - [anon_sym_LPAREN_SLASH] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [aux_sym_boolean_literal_token1] = ACTIONS(5444), - [aux_sym_boolean_literal_token2] = ACTIONS(5444), - [aux_sym_null_literal_token1] = ACTIONS(5442), - [aux_sym_coarray_statement_token1] = ACTIONS(5442), - [aux_sym_coarray_statement_token2] = ACTIONS(5442), - [aux_sym_coarray_statement_token6] = ACTIONS(5442), - [aux_sym_coarray_statement_token8] = ACTIONS(5442), - [aux_sym_coarray_statement_token11] = ACTIONS(5442), - [aux_sym_coarray_statement_token12] = ACTIONS(5442), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5442), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5442), - [aux_sym_identifier_token1] = ACTIONS(5442), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5444), - [sym__float_literal] = ACTIONS(5444), - [sym__boz_literal] = ACTIONS(5444), - [sym__string_literal] = ACTIONS(5444), - [sym__string_literal_kind] = ACTIONS(5444), - }, - [1461] = { - [aux_sym_preproc_include_token1] = ACTIONS(5442), - [aux_sym_preproc_def_token1] = ACTIONS(5442), - [aux_sym_preproc_if_token1] = ACTIONS(5442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5442), - [sym_preproc_directive] = ACTIONS(5442), - [anon_sym_LPAREN2] = ACTIONS(5442), - [anon_sym_PLUS] = ACTIONS(5444), - [anon_sym_DASH] = ACTIONS(5444), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5442), - [aux_sym_interface_statement_token1] = ACTIONS(5442), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5442), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5442), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5442), - [aux_sym_language_binding_token1] = ACTIONS(5442), - [aux_sym_procedure_attributes_token1] = ACTIONS(5442), - [aux_sym_procedure_attributes_token3] = ACTIONS(5442), - [aux_sym_end_function_statement_token1] = ACTIONS(5442), - [aux_sym_contains_statement_token1] = ACTIONS(5442), - [aux_sym_use_statement_token1] = ACTIONS(5442), - [aux_sym_use_statement_token2] = ACTIONS(5442), - [aux_sym_implicit_statement_token1] = ACTIONS(5442), - [aux_sym_implicit_statement_token3] = ACTIONS(5442), - [aux_sym_implicit_statement_token4] = ACTIONS(5442), - [aux_sym_save_statement_token1] = ACTIONS(5442), - [aux_sym_private_statement_token1] = ACTIONS(5442), - [aux_sym_public_statement_token1] = ACTIONS(5442), - [aux_sym_namelist_statement_token1] = ACTIONS(5442), - [aux_sym_common_statement_token1] = ACTIONS(5442), - [aux_sym_import_statement_token1] = ACTIONS(5442), - [aux_sym_derived_type_definition_token1] = ACTIONS(5442), - [aux_sym_abstract_specifier_token1] = ACTIONS(5442), - [aux_sym_procedure_attribute_token6] = ACTIONS(5442), - [aux_sym_variable_attributes_token1] = ACTIONS(5442), - [aux_sym_variable_attributes_token2] = ACTIONS(5442), - [aux_sym_variable_attributes_token3] = ACTIONS(5442), - [aux_sym_variable_attributes_token4] = ACTIONS(5442), - [aux_sym_variable_attributes_token5] = ACTIONS(5442), - [aux_sym__intrinsic_type_token1] = ACTIONS(5442), - [aux_sym__intrinsic_type_token2] = ACTIONS(5442), - [aux_sym__intrinsic_type_token3] = ACTIONS(5442), - [aux_sym__intrinsic_type_token4] = ACTIONS(5442), - [aux_sym__intrinsic_type_token6] = ACTIONS(5442), - [aux_sym__intrinsic_type_token7] = ACTIONS(5442), - [aux_sym__intrinsic_type_token8] = ACTIONS(5442), - [aux_sym__intrinsic_type_token9] = ACTIONS(5442), - [aux_sym__intrinsic_type_token10] = ACTIONS(5442), - [aux_sym_derived_type_token1] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5442), - [aux_sym_type_qualifier_token1] = ACTIONS(5442), - [aux_sym_type_qualifier_token2] = ACTIONS(5442), - [aux_sym_equivalence_statement_token1] = ACTIONS(5442), - [anon_sym_SEMI] = ACTIONS(5444), - [aux_sym_stop_statement_token1] = ACTIONS(5442), - [aux_sym_stop_statement_token2] = ACTIONS(5442), - [aux_sym_subroutine_call_token1] = ACTIONS(5442), - [aux_sym_keyword_statement_token1] = ACTIONS(5442), - [aux_sym_keyword_statement_token2] = ACTIONS(5442), - [aux_sym_keyword_statement_token3] = ACTIONS(5442), - [aux_sym_keyword_statement_token4] = ACTIONS(5442), - [aux_sym_keyword_statement_token6] = ACTIONS(5442), - [aux_sym_keyword_statement_token7] = ACTIONS(5442), - [aux_sym_include_statement_token1] = ACTIONS(5442), - [aux_sym_data_statement_token1] = ACTIONS(5442), - [aux_sym_do_loop_statement_token1] = ACTIONS(5442), - [aux_sym__inline_if_statement_token1] = ACTIONS(5442), - [aux_sym_end_if_statement_token1] = ACTIONS(5442), - [aux_sym_elseif_clause_token2] = ACTIONS(5442), - [aux_sym__inline_where_statement_token1] = ACTIONS(5442), - [aux_sym__forall_control_expression_token1] = ACTIONS(5442), - [aux_sym_select_case_statement_token1] = ACTIONS(5442), - [aux_sym_select_case_statement_token3] = ACTIONS(5442), - [aux_sym_select_type_statement_token1] = ACTIONS(5442), - [aux_sym_select_rank_statement_token2] = ACTIONS(5442), - [aux_sym_block_construct_token1] = ACTIONS(5442), - [aux_sym_associate_statement_token1] = ACTIONS(5442), - [aux_sym_format_statement_token1] = ACTIONS(5442), - [aux_sym_print_statement_token1] = ACTIONS(5442), - [aux_sym_open_statement_token1] = ACTIONS(5442), - [aux_sym_close_statement_token1] = ACTIONS(5442), - [aux_sym_inquire_statement_token1] = ACTIONS(5442), - [aux_sym_enum_statement_token1] = ACTIONS(5442), - [aux_sym_file_position_statement_token1] = ACTIONS(5442), - [aux_sym_file_position_statement_token2] = ACTIONS(5442), - [aux_sym_file_position_statement_token3] = ACTIONS(5442), - [aux_sym_file_position_statement_token4] = ACTIONS(5442), - [aux_sym_allocate_statement_token1] = ACTIONS(5442), - [aux_sym_entry_statement_token1] = ACTIONS(5442), - [aux_sym_logical_expression_token5] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5442), - [anon_sym_LPAREN_SLASH] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [aux_sym_boolean_literal_token1] = ACTIONS(5444), - [aux_sym_boolean_literal_token2] = ACTIONS(5444), - [aux_sym_null_literal_token1] = ACTIONS(5442), - [aux_sym_coarray_statement_token1] = ACTIONS(5442), - [aux_sym_coarray_statement_token2] = ACTIONS(5442), - [aux_sym_coarray_statement_token6] = ACTIONS(5442), - [aux_sym_coarray_statement_token8] = ACTIONS(5442), - [aux_sym_coarray_statement_token11] = ACTIONS(5442), - [aux_sym_coarray_statement_token12] = ACTIONS(5442), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5442), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5442), - [aux_sym_identifier_token1] = ACTIONS(5442), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5444), - [sym__float_literal] = ACTIONS(5444), - [sym__boz_literal] = ACTIONS(5444), - [sym__string_literal] = ACTIONS(5444), - [sym__string_literal_kind] = ACTIONS(5444), - }, - [1462] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_end_function_statement_token1] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), - }, - [1463] = { - [aux_sym_preproc_include_token1] = ACTIONS(5422), - [aux_sym_preproc_def_token1] = ACTIONS(5422), - [aux_sym_preproc_if_token1] = ACTIONS(5422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5422), - [sym_preproc_directive] = ACTIONS(5422), - [anon_sym_LPAREN2] = ACTIONS(5422), - [anon_sym_PLUS] = ACTIONS(5424), - [anon_sym_DASH] = ACTIONS(5424), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5422), - [aux_sym_interface_statement_token1] = ACTIONS(5422), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5422), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5422), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5422), - [aux_sym_language_binding_token1] = ACTIONS(5422), - [aux_sym_procedure_attributes_token1] = ACTIONS(5422), - [aux_sym_procedure_attributes_token3] = ACTIONS(5422), - [aux_sym_end_function_statement_token1] = ACTIONS(5422), - [aux_sym_contains_statement_token1] = ACTIONS(5422), - [aux_sym_use_statement_token1] = ACTIONS(5422), - [aux_sym_use_statement_token2] = ACTIONS(5422), - [aux_sym_implicit_statement_token1] = ACTIONS(5422), - [aux_sym_implicit_statement_token3] = ACTIONS(5422), - [aux_sym_implicit_statement_token4] = ACTIONS(5422), - [aux_sym_save_statement_token1] = ACTIONS(5422), - [aux_sym_private_statement_token1] = ACTIONS(5422), - [aux_sym_public_statement_token1] = ACTIONS(5422), - [aux_sym_namelist_statement_token1] = ACTIONS(5422), - [aux_sym_common_statement_token1] = ACTIONS(5422), - [aux_sym_import_statement_token1] = ACTIONS(5422), - [aux_sym_derived_type_definition_token1] = ACTIONS(5422), - [aux_sym_abstract_specifier_token1] = ACTIONS(5422), - [aux_sym_procedure_attribute_token6] = ACTIONS(5422), - [aux_sym_variable_attributes_token1] = ACTIONS(5422), - [aux_sym_variable_attributes_token2] = ACTIONS(5422), - [aux_sym_variable_attributes_token3] = ACTIONS(5422), - [aux_sym_variable_attributes_token4] = ACTIONS(5422), - [aux_sym_variable_attributes_token5] = ACTIONS(5422), - [aux_sym__intrinsic_type_token1] = ACTIONS(5422), - [aux_sym__intrinsic_type_token2] = ACTIONS(5422), - [aux_sym__intrinsic_type_token3] = ACTIONS(5422), - [aux_sym__intrinsic_type_token4] = ACTIONS(5422), - [aux_sym__intrinsic_type_token6] = ACTIONS(5422), - [aux_sym__intrinsic_type_token7] = ACTIONS(5422), - [aux_sym__intrinsic_type_token8] = ACTIONS(5422), - [aux_sym__intrinsic_type_token9] = ACTIONS(5422), - [aux_sym__intrinsic_type_token10] = ACTIONS(5422), - [aux_sym_derived_type_token1] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5422), - [aux_sym_type_qualifier_token1] = ACTIONS(5422), - [aux_sym_type_qualifier_token2] = ACTIONS(5422), - [aux_sym_equivalence_statement_token1] = ACTIONS(5422), - [anon_sym_SEMI] = ACTIONS(5424), - [aux_sym_stop_statement_token1] = ACTIONS(5422), - [aux_sym_stop_statement_token2] = ACTIONS(5422), - [aux_sym_subroutine_call_token1] = ACTIONS(5422), - [aux_sym_keyword_statement_token1] = ACTIONS(5422), - [aux_sym_keyword_statement_token2] = ACTIONS(5422), - [aux_sym_keyword_statement_token3] = ACTIONS(5422), - [aux_sym_keyword_statement_token4] = ACTIONS(5422), - [aux_sym_keyword_statement_token6] = ACTIONS(5422), - [aux_sym_keyword_statement_token7] = ACTIONS(5422), - [aux_sym_include_statement_token1] = ACTIONS(5422), - [aux_sym_data_statement_token1] = ACTIONS(5422), - [aux_sym_do_loop_statement_token1] = ACTIONS(5422), - [aux_sym__inline_if_statement_token1] = ACTIONS(5422), - [aux_sym_end_if_statement_token1] = ACTIONS(5422), - [aux_sym_elseif_clause_token2] = ACTIONS(5422), - [aux_sym__inline_where_statement_token1] = ACTIONS(5422), - [aux_sym__forall_control_expression_token1] = ACTIONS(5422), - [aux_sym_select_case_statement_token1] = ACTIONS(5422), - [aux_sym_select_case_statement_token3] = ACTIONS(5422), - [aux_sym_select_type_statement_token1] = ACTIONS(5422), - [aux_sym_select_rank_statement_token2] = ACTIONS(5422), - [aux_sym_block_construct_token1] = ACTIONS(5422), - [aux_sym_associate_statement_token1] = ACTIONS(5422), - [aux_sym_format_statement_token1] = ACTIONS(5422), - [aux_sym_print_statement_token1] = ACTIONS(5422), - [aux_sym_open_statement_token1] = ACTIONS(5422), - [aux_sym_close_statement_token1] = ACTIONS(5422), - [aux_sym_inquire_statement_token1] = ACTIONS(5422), - [aux_sym_enum_statement_token1] = ACTIONS(5422), - [aux_sym_file_position_statement_token1] = ACTIONS(5422), - [aux_sym_file_position_statement_token2] = ACTIONS(5422), - [aux_sym_file_position_statement_token3] = ACTIONS(5422), - [aux_sym_file_position_statement_token4] = ACTIONS(5422), - [aux_sym_allocate_statement_token1] = ACTIONS(5422), - [aux_sym_entry_statement_token1] = ACTIONS(5422), - [aux_sym_logical_expression_token5] = ACTIONS(5424), - [anon_sym_DOT] = ACTIONS(5422), - [anon_sym_LPAREN_SLASH] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(5424), - [aux_sym_boolean_literal_token1] = ACTIONS(5424), - [aux_sym_boolean_literal_token2] = ACTIONS(5424), - [aux_sym_null_literal_token1] = ACTIONS(5422), - [aux_sym_coarray_statement_token1] = ACTIONS(5422), - [aux_sym_coarray_statement_token2] = ACTIONS(5422), - [aux_sym_coarray_statement_token6] = ACTIONS(5422), - [aux_sym_coarray_statement_token8] = ACTIONS(5422), - [aux_sym_coarray_statement_token11] = ACTIONS(5422), - [aux_sym_coarray_statement_token12] = ACTIONS(5422), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5422), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5422), - [aux_sym_identifier_token1] = ACTIONS(5422), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5438), + [aux_sym_end_program_statement_token2] = ACTIONS(5438), + [aux_sym_interface_statement_token1] = ACTIONS(5438), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5438), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5438), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5438), + [aux_sym_language_binding_token1] = ACTIONS(5438), + [aux_sym_procedure_attributes_token1] = ACTIONS(5438), + [aux_sym_procedure_attributes_token3] = ACTIONS(5438), + [aux_sym_contains_statement_token1] = ACTIONS(5438), + [aux_sym_use_statement_token1] = ACTIONS(5438), + [aux_sym_use_statement_token2] = ACTIONS(5438), + [aux_sym_implicit_statement_token1] = ACTIONS(5438), + [aux_sym_implicit_statement_token3] = ACTIONS(5438), + [aux_sym_implicit_statement_token4] = ACTIONS(5438), + [aux_sym_save_statement_token1] = ACTIONS(5438), + [aux_sym_private_statement_token1] = ACTIONS(5438), + [aux_sym_public_statement_token1] = ACTIONS(5438), + [aux_sym_namelist_statement_token1] = ACTIONS(5438), + [aux_sym_common_statement_token1] = ACTIONS(5438), + [aux_sym_import_statement_token1] = ACTIONS(5438), + [aux_sym_derived_type_definition_token1] = ACTIONS(5438), + [aux_sym_abstract_specifier_token1] = ACTIONS(5438), + [aux_sym_procedure_attribute_token6] = ACTIONS(5438), + [aux_sym_variable_attributes_token1] = ACTIONS(5438), + [aux_sym_variable_attributes_token2] = ACTIONS(5438), + [aux_sym_variable_attributes_token3] = ACTIONS(5438), + [aux_sym_variable_attributes_token4] = ACTIONS(5438), + [aux_sym_variable_attributes_token5] = ACTIONS(5438), + [aux_sym__intrinsic_type_token1] = ACTIONS(5438), + [aux_sym__intrinsic_type_token2] = ACTIONS(5438), + [aux_sym__intrinsic_type_token3] = ACTIONS(5438), + [aux_sym__intrinsic_type_token4] = ACTIONS(5438), + [aux_sym__intrinsic_type_token6] = ACTIONS(5438), + [aux_sym__intrinsic_type_token7] = ACTIONS(5438), + [aux_sym__intrinsic_type_token8] = ACTIONS(5438), + [aux_sym__intrinsic_type_token9] = ACTIONS(5438), + [aux_sym__intrinsic_type_token10] = ACTIONS(5438), + [aux_sym_derived_type_token1] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5438), + [aux_sym_type_qualifier_token1] = ACTIONS(5438), + [aux_sym_type_qualifier_token2] = ACTIONS(5438), + [aux_sym_equivalence_statement_token1] = ACTIONS(5438), + [anon_sym_SEMI] = ACTIONS(5440), + [aux_sym_stop_statement_token1] = ACTIONS(5438), + [aux_sym_stop_statement_token2] = ACTIONS(5438), + [aux_sym_subroutine_call_token1] = ACTIONS(5438), + [aux_sym_keyword_statement_token1] = ACTIONS(5438), + [aux_sym_keyword_statement_token2] = ACTIONS(5438), + [aux_sym_keyword_statement_token3] = ACTIONS(5438), + [aux_sym_keyword_statement_token4] = ACTIONS(5438), + [aux_sym_keyword_statement_token6] = ACTIONS(5438), + [aux_sym_keyword_statement_token7] = ACTIONS(5438), + [aux_sym_include_statement_token1] = ACTIONS(5438), + [aux_sym_data_statement_token1] = ACTIONS(5438), + [aux_sym_do_loop_statement_token1] = ACTIONS(5438), + [aux_sym__inline_if_statement_token1] = ACTIONS(5438), + [aux_sym_end_if_statement_token1] = ACTIONS(5438), + [aux_sym_elseif_clause_token2] = ACTIONS(5438), + [aux_sym__inline_where_statement_token1] = ACTIONS(5438), + [aux_sym__forall_control_expression_token1] = ACTIONS(5438), + [aux_sym_select_case_statement_token1] = ACTIONS(5438), + [aux_sym_select_case_statement_token3] = ACTIONS(5438), + [aux_sym_select_type_statement_token1] = ACTIONS(5438), + [aux_sym_select_rank_statement_token2] = ACTIONS(5438), + [aux_sym_block_construct_token1] = ACTIONS(5438), + [aux_sym_associate_statement_token1] = ACTIONS(5438), + [aux_sym_format_statement_token1] = ACTIONS(5438), + [aux_sym_print_statement_token1] = ACTIONS(5438), + [aux_sym_open_statement_token1] = ACTIONS(5438), + [aux_sym_close_statement_token1] = ACTIONS(5438), + [aux_sym_inquire_statement_token1] = ACTIONS(5438), + [aux_sym_enum_statement_token1] = ACTIONS(5438), + [aux_sym_file_position_statement_token1] = ACTIONS(5438), + [aux_sym_file_position_statement_token2] = ACTIONS(5438), + [aux_sym_file_position_statement_token3] = ACTIONS(5438), + [aux_sym_file_position_statement_token4] = ACTIONS(5438), + [aux_sym_allocate_statement_token1] = ACTIONS(5438), + [aux_sym_entry_statement_token1] = ACTIONS(5438), + [aux_sym_logical_expression_token5] = ACTIONS(5440), + [anon_sym_DOT] = ACTIONS(5438), + [anon_sym_LPAREN_SLASH] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5440), + [aux_sym_boolean_literal_token1] = ACTIONS(5440), + [aux_sym_boolean_literal_token2] = ACTIONS(5440), + [aux_sym_null_literal_token1] = ACTIONS(5438), + [aux_sym_coarray_statement_token1] = ACTIONS(5438), + [aux_sym_coarray_statement_token2] = ACTIONS(5438), + [aux_sym_coarray_statement_token6] = ACTIONS(5438), + [aux_sym_coarray_statement_token8] = ACTIONS(5438), + [aux_sym_coarray_statement_token11] = ACTIONS(5438), + [aux_sym_coarray_statement_token12] = ACTIONS(5438), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5438), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5438), + [aux_sym_identifier_token1] = ACTIONS(5438), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5424), - [sym__float_literal] = ACTIONS(5424), - [sym__boz_literal] = ACTIONS(5424), - [sym__string_literal] = ACTIONS(5424), - [sym__string_literal_kind] = ACTIONS(5424), + [sym__integer_literal] = ACTIONS(5440), + [sym__float_literal] = ACTIONS(5440), + [sym__boz_literal] = ACTIONS(5440), + [sym__string_literal] = ACTIONS(5440), + [sym__string_literal_kind] = ACTIONS(5440), }, - [1464] = { + [1434] = { [aux_sym_preproc_include_token1] = ACTIONS(5426), [aux_sym_preproc_def_token1] = ACTIONS(5426), [aux_sym_preproc_if_token1] = ACTIONS(5426), @@ -285042,507 +281292,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5428), [sym__string_literal_kind] = ACTIONS(5428), }, - [1465] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), - }, - [1466] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token2] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), - }, - [1467] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_end_function_statement_token1] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [1435] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_subroutine_call_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_keyword_statement_token4] = ACTIONS(5067), + [aux_sym_keyword_statement_token6] = ACTIONS(5067), + [aux_sym_keyword_statement_token7] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym_do_loop_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym__inline_where_statement_token1] = ACTIONS(5067), + [aux_sym__forall_control_expression_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token3] = ACTIONS(5067), + [aux_sym_select_type_statement_token1] = ACTIONS(5067), + [aux_sym_select_rank_statement_token2] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_associate_statement_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_print_statement_token1] = ACTIONS(5067), + [aux_sym_open_statement_token1] = ACTIONS(5067), + [aux_sym_close_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token2] = ACTIONS(5067), + [aux_sym_file_position_statement_token3] = ACTIONS(5067), + [aux_sym_file_position_statement_token4] = ACTIONS(5067), + [aux_sym_allocate_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_logical_expression_token5] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LPAREN_SLASH] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [aux_sym_boolean_literal_token1] = ACTIONS(5069), + [aux_sym_boolean_literal_token2] = ACTIONS(5069), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + [sym__float_literal] = ACTIONS(5069), + [sym__boz_literal] = ACTIONS(5069), + [sym__string_literal] = ACTIONS(5069), + [sym__string_literal_kind] = ACTIONS(5069), }, - [1468] = { - [aux_sym_preproc_include_token1] = ACTIONS(4976), - [aux_sym_preproc_def_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token1] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), - [sym_preproc_directive] = ACTIONS(4976), - [anon_sym_LPAREN2] = ACTIONS(4976), - [anon_sym_PLUS] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), + [1436] = { + [aux_sym_preproc_include_token1] = ACTIONS(5442), + [aux_sym_preproc_def_token1] = ACTIONS(5442), + [aux_sym_preproc_if_token1] = ACTIONS(5442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5442), + [sym_preproc_directive] = ACTIONS(5442), + [anon_sym_LPAREN2] = ACTIONS(5442), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_DASH] = ACTIONS(5444), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4976), - [aux_sym_end_program_statement_token2] = ACTIONS(4976), - [aux_sym_interface_statement_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), - [aux_sym_language_binding_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token3] = ACTIONS(4976), - [aux_sym_contains_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token2] = ACTIONS(4976), - [aux_sym_implicit_statement_token1] = ACTIONS(4976), - [aux_sym_implicit_statement_token3] = ACTIONS(4976), - [aux_sym_implicit_statement_token4] = ACTIONS(4976), - [aux_sym_save_statement_token1] = ACTIONS(4976), - [aux_sym_private_statement_token1] = ACTIONS(4976), - [aux_sym_public_statement_token1] = ACTIONS(4976), - [aux_sym_namelist_statement_token1] = ACTIONS(4976), - [aux_sym_common_statement_token1] = ACTIONS(4976), - [aux_sym_import_statement_token1] = ACTIONS(4976), - [aux_sym_derived_type_definition_token1] = ACTIONS(4976), - [aux_sym_abstract_specifier_token1] = ACTIONS(4976), - [aux_sym_procedure_attribute_token6] = ACTIONS(4976), - [aux_sym_variable_attributes_token1] = ACTIONS(4976), - [aux_sym_variable_attributes_token2] = ACTIONS(4976), - [aux_sym_variable_attributes_token3] = ACTIONS(4976), - [aux_sym_variable_attributes_token4] = ACTIONS(4976), - [aux_sym_variable_attributes_token5] = ACTIONS(4976), - [aux_sym__intrinsic_type_token1] = ACTIONS(4976), - [aux_sym__intrinsic_type_token2] = ACTIONS(4976), - [aux_sym__intrinsic_type_token3] = ACTIONS(4976), - [aux_sym__intrinsic_type_token4] = ACTIONS(4976), - [aux_sym__intrinsic_type_token6] = ACTIONS(4976), - [aux_sym__intrinsic_type_token7] = ACTIONS(4976), - [aux_sym__intrinsic_type_token8] = ACTIONS(4976), - [aux_sym__intrinsic_type_token9] = ACTIONS(4976), - [aux_sym__intrinsic_type_token10] = ACTIONS(4976), - [aux_sym_derived_type_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), - [aux_sym_type_qualifier_token1] = ACTIONS(4976), - [aux_sym_type_qualifier_token2] = ACTIONS(4976), - [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), - [aux_sym_stop_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token2] = ACTIONS(4976), - [aux_sym_subroutine_call_token1] = ACTIONS(4976), - [aux_sym_keyword_statement_token1] = ACTIONS(4976), - [aux_sym_keyword_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token3] = ACTIONS(4976), - [aux_sym_keyword_statement_token4] = ACTIONS(4976), - [aux_sym_keyword_statement_token6] = ACTIONS(4976), - [aux_sym_keyword_statement_token7] = ACTIONS(4976), - [aux_sym_include_statement_token1] = ACTIONS(4976), - [aux_sym_data_statement_token1] = ACTIONS(4976), - [aux_sym_do_loop_statement_token1] = ACTIONS(4976), - [aux_sym__inline_if_statement_token1] = ACTIONS(4976), - [aux_sym_end_if_statement_token1] = ACTIONS(4976), - [aux_sym_elseif_clause_token2] = ACTIONS(4976), - [aux_sym__inline_where_statement_token1] = ACTIONS(4976), - [aux_sym__forall_control_expression_token1] = ACTIONS(4976), - [aux_sym_select_case_statement_token1] = ACTIONS(4976), - [aux_sym_select_case_statement_token3] = ACTIONS(4976), - [aux_sym_select_type_statement_token1] = ACTIONS(4976), - [aux_sym_select_rank_statement_token2] = ACTIONS(4976), - [aux_sym_block_construct_token1] = ACTIONS(4976), - [aux_sym_associate_statement_token1] = ACTIONS(4976), - [aux_sym_format_statement_token1] = ACTIONS(4976), - [aux_sym_print_statement_token1] = ACTIONS(4976), - [aux_sym_open_statement_token1] = ACTIONS(4976), - [aux_sym_close_statement_token1] = ACTIONS(4976), - [aux_sym_inquire_statement_token1] = ACTIONS(4976), - [aux_sym_enum_statement_token1] = ACTIONS(4976), - [aux_sym_file_position_statement_token1] = ACTIONS(4976), - [aux_sym_file_position_statement_token2] = ACTIONS(4976), - [aux_sym_file_position_statement_token3] = ACTIONS(4976), - [aux_sym_file_position_statement_token4] = ACTIONS(4976), - [aux_sym_allocate_statement_token1] = ACTIONS(4976), - [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_logical_expression_token5] = ACTIONS(4978), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_LPAREN_SLASH] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [aux_sym_boolean_literal_token1] = ACTIONS(4978), - [aux_sym_boolean_literal_token2] = ACTIONS(4978), - [aux_sym_null_literal_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token2] = ACTIONS(4976), - [aux_sym_coarray_statement_token6] = ACTIONS(4976), - [aux_sym_coarray_statement_token8] = ACTIONS(4976), - [aux_sym_coarray_statement_token11] = ACTIONS(4976), - [aux_sym_coarray_statement_token12] = ACTIONS(4976), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), - [aux_sym_identifier_token1] = ACTIONS(4976), + [aux_sym_end_program_statement_token1] = ACTIONS(5442), + [aux_sym_end_program_statement_token2] = ACTIONS(5442), + [aux_sym_interface_statement_token1] = ACTIONS(5442), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5442), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5442), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5442), + [aux_sym_language_binding_token1] = ACTIONS(5442), + [aux_sym_procedure_attributes_token1] = ACTIONS(5442), + [aux_sym_procedure_attributes_token3] = ACTIONS(5442), + [aux_sym_contains_statement_token1] = ACTIONS(5442), + [aux_sym_use_statement_token1] = ACTIONS(5442), + [aux_sym_use_statement_token2] = ACTIONS(5442), + [aux_sym_implicit_statement_token1] = ACTIONS(5442), + [aux_sym_implicit_statement_token3] = ACTIONS(5442), + [aux_sym_implicit_statement_token4] = ACTIONS(5442), + [aux_sym_save_statement_token1] = ACTIONS(5442), + [aux_sym_private_statement_token1] = ACTIONS(5442), + [aux_sym_public_statement_token1] = ACTIONS(5442), + [aux_sym_namelist_statement_token1] = ACTIONS(5442), + [aux_sym_common_statement_token1] = ACTIONS(5442), + [aux_sym_import_statement_token1] = ACTIONS(5442), + [aux_sym_derived_type_definition_token1] = ACTIONS(5442), + [aux_sym_abstract_specifier_token1] = ACTIONS(5442), + [aux_sym_procedure_attribute_token6] = ACTIONS(5442), + [aux_sym_variable_attributes_token1] = ACTIONS(5442), + [aux_sym_variable_attributes_token2] = ACTIONS(5442), + [aux_sym_variable_attributes_token3] = ACTIONS(5442), + [aux_sym_variable_attributes_token4] = ACTIONS(5442), + [aux_sym_variable_attributes_token5] = ACTIONS(5442), + [aux_sym__intrinsic_type_token1] = ACTIONS(5442), + [aux_sym__intrinsic_type_token2] = ACTIONS(5442), + [aux_sym__intrinsic_type_token3] = ACTIONS(5442), + [aux_sym__intrinsic_type_token4] = ACTIONS(5442), + [aux_sym__intrinsic_type_token6] = ACTIONS(5442), + [aux_sym__intrinsic_type_token7] = ACTIONS(5442), + [aux_sym__intrinsic_type_token8] = ACTIONS(5442), + [aux_sym__intrinsic_type_token9] = ACTIONS(5442), + [aux_sym__intrinsic_type_token10] = ACTIONS(5442), + [aux_sym_derived_type_token1] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5442), + [aux_sym_type_qualifier_token1] = ACTIONS(5442), + [aux_sym_type_qualifier_token2] = ACTIONS(5442), + [aux_sym_equivalence_statement_token1] = ACTIONS(5442), + [anon_sym_SEMI] = ACTIONS(5444), + [aux_sym_stop_statement_token1] = ACTIONS(5442), + [aux_sym_stop_statement_token2] = ACTIONS(5442), + [aux_sym_subroutine_call_token1] = ACTIONS(5442), + [aux_sym_keyword_statement_token1] = ACTIONS(5442), + [aux_sym_keyword_statement_token2] = ACTIONS(5442), + [aux_sym_keyword_statement_token3] = ACTIONS(5442), + [aux_sym_keyword_statement_token4] = ACTIONS(5442), + [aux_sym_keyword_statement_token6] = ACTIONS(5442), + [aux_sym_keyword_statement_token7] = ACTIONS(5442), + [aux_sym_include_statement_token1] = ACTIONS(5442), + [aux_sym_data_statement_token1] = ACTIONS(5442), + [aux_sym_do_loop_statement_token1] = ACTIONS(5442), + [aux_sym__inline_if_statement_token1] = ACTIONS(5442), + [aux_sym_end_if_statement_token1] = ACTIONS(5442), + [aux_sym_elseif_clause_token2] = ACTIONS(5442), + [aux_sym__inline_where_statement_token1] = ACTIONS(5442), + [aux_sym__forall_control_expression_token1] = ACTIONS(5442), + [aux_sym_select_case_statement_token1] = ACTIONS(5442), + [aux_sym_select_case_statement_token3] = ACTIONS(5442), + [aux_sym_select_type_statement_token1] = ACTIONS(5442), + [aux_sym_select_rank_statement_token2] = ACTIONS(5442), + [aux_sym_block_construct_token1] = ACTIONS(5442), + [aux_sym_associate_statement_token1] = ACTIONS(5442), + [aux_sym_format_statement_token1] = ACTIONS(5442), + [aux_sym_print_statement_token1] = ACTIONS(5442), + [aux_sym_open_statement_token1] = ACTIONS(5442), + [aux_sym_close_statement_token1] = ACTIONS(5442), + [aux_sym_inquire_statement_token1] = ACTIONS(5442), + [aux_sym_enum_statement_token1] = ACTIONS(5442), + [aux_sym_file_position_statement_token1] = ACTIONS(5442), + [aux_sym_file_position_statement_token2] = ACTIONS(5442), + [aux_sym_file_position_statement_token3] = ACTIONS(5442), + [aux_sym_file_position_statement_token4] = ACTIONS(5442), + [aux_sym_allocate_statement_token1] = ACTIONS(5442), + [aux_sym_entry_statement_token1] = ACTIONS(5442), + [aux_sym_logical_expression_token5] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5442), + [anon_sym_LPAREN_SLASH] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5444), + [aux_sym_boolean_literal_token1] = ACTIONS(5444), + [aux_sym_boolean_literal_token2] = ACTIONS(5444), + [aux_sym_null_literal_token1] = ACTIONS(5442), + [aux_sym_coarray_statement_token1] = ACTIONS(5442), + [aux_sym_coarray_statement_token2] = ACTIONS(5442), + [aux_sym_coarray_statement_token6] = ACTIONS(5442), + [aux_sym_coarray_statement_token8] = ACTIONS(5442), + [aux_sym_coarray_statement_token11] = ACTIONS(5442), + [aux_sym_coarray_statement_token12] = ACTIONS(5442), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5442), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5442), + [aux_sym_identifier_token1] = ACTIONS(5442), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - [sym__float_literal] = ACTIONS(4978), - [sym__boz_literal] = ACTIONS(4978), - [sym__string_literal] = ACTIONS(4978), - [sym__string_literal_kind] = ACTIONS(4978), + [sym__integer_literal] = ACTIONS(5444), + [sym__float_literal] = ACTIONS(5444), + [sym__boz_literal] = ACTIONS(5444), + [sym__string_literal] = ACTIONS(5444), + [sym__string_literal_kind] = ACTIONS(5444), }, - [1469] = { + [1437] = { [aux_sym_preproc_include_token1] = ACTIONS(5394), [aux_sym_preproc_def_token1] = ACTIONS(5394), [aux_sym_preproc_if_token1] = ACTIONS(5394), @@ -285554,6 +281554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5396), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5394), + [aux_sym_end_program_statement_token2] = ACTIONS(5394), [aux_sym_interface_statement_token1] = ACTIONS(5394), [aux_sym_defined_io_procedure_token1] = ACTIONS(5394), [aux_sym_defined_io_procedure_token2] = ACTIONS(5394), @@ -285561,7 +281562,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_language_binding_token1] = ACTIONS(5394), [aux_sym_procedure_attributes_token1] = ACTIONS(5394), [aux_sym_procedure_attributes_token3] = ACTIONS(5394), - [aux_sym_end_function_statement_token1] = ACTIONS(5394), [aux_sym_contains_statement_token1] = ACTIONS(5394), [aux_sym_use_statement_token1] = ACTIONS(5394), [aux_sym_use_statement_token2] = ACTIONS(5394), @@ -285667,1257 +281667,1382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5396), [sym__string_literal_kind] = ACTIONS(5396), }, - [1470] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [1438] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, - [1471] = { - [aux_sym_preproc_include_token1] = ACTIONS(5418), - [aux_sym_preproc_def_token1] = ACTIONS(5418), - [aux_sym_preproc_if_token1] = ACTIONS(5418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5418), - [sym_preproc_directive] = ACTIONS(5418), - [anon_sym_LPAREN2] = ACTIONS(5418), - [anon_sym_PLUS] = ACTIONS(5420), - [anon_sym_DASH] = ACTIONS(5420), + [1439] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_end_program_statement_token2] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), + }, + [1440] = { + [aux_sym_preproc_include_token1] = ACTIONS(5081), + [aux_sym_preproc_def_token1] = ACTIONS(5081), + [aux_sym_preproc_if_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), + [sym_preproc_directive] = ACTIONS(5081), + [anon_sym_LPAREN2] = ACTIONS(5081), + [anon_sym_PLUS] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5418), - [aux_sym_interface_statement_token1] = ACTIONS(5418), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5418), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5418), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5418), - [aux_sym_language_binding_token1] = ACTIONS(5418), - [aux_sym_procedure_attributes_token1] = ACTIONS(5418), - [aux_sym_procedure_attributes_token3] = ACTIONS(5418), - [aux_sym_end_function_statement_token1] = ACTIONS(5418), - [aux_sym_contains_statement_token1] = ACTIONS(5418), - [aux_sym_use_statement_token1] = ACTIONS(5418), - [aux_sym_use_statement_token2] = ACTIONS(5418), - [aux_sym_implicit_statement_token1] = ACTIONS(5418), - [aux_sym_implicit_statement_token3] = ACTIONS(5418), - [aux_sym_implicit_statement_token4] = ACTIONS(5418), - [aux_sym_save_statement_token1] = ACTIONS(5418), - [aux_sym_private_statement_token1] = ACTIONS(5418), - [aux_sym_public_statement_token1] = ACTIONS(5418), - [aux_sym_namelist_statement_token1] = ACTIONS(5418), - [aux_sym_common_statement_token1] = ACTIONS(5418), - [aux_sym_import_statement_token1] = ACTIONS(5418), - [aux_sym_derived_type_definition_token1] = ACTIONS(5418), - [aux_sym_abstract_specifier_token1] = ACTIONS(5418), - [aux_sym_procedure_attribute_token6] = ACTIONS(5418), - [aux_sym_variable_attributes_token1] = ACTIONS(5418), - [aux_sym_variable_attributes_token2] = ACTIONS(5418), - [aux_sym_variable_attributes_token3] = ACTIONS(5418), - [aux_sym_variable_attributes_token4] = ACTIONS(5418), - [aux_sym_variable_attributes_token5] = ACTIONS(5418), - [aux_sym__intrinsic_type_token1] = ACTIONS(5418), - [aux_sym__intrinsic_type_token2] = ACTIONS(5418), - [aux_sym__intrinsic_type_token3] = ACTIONS(5418), - [aux_sym__intrinsic_type_token4] = ACTIONS(5418), - [aux_sym__intrinsic_type_token6] = ACTIONS(5418), - [aux_sym__intrinsic_type_token7] = ACTIONS(5418), - [aux_sym__intrinsic_type_token8] = ACTIONS(5418), - [aux_sym__intrinsic_type_token9] = ACTIONS(5418), - [aux_sym__intrinsic_type_token10] = ACTIONS(5418), - [aux_sym_derived_type_token1] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5418), - [aux_sym_type_qualifier_token1] = ACTIONS(5418), - [aux_sym_type_qualifier_token2] = ACTIONS(5418), - [aux_sym_equivalence_statement_token1] = ACTIONS(5418), - [anon_sym_SEMI] = ACTIONS(5420), - [aux_sym_stop_statement_token1] = ACTIONS(5418), - [aux_sym_stop_statement_token2] = ACTIONS(5418), - [aux_sym_subroutine_call_token1] = ACTIONS(5418), - [aux_sym_keyword_statement_token1] = ACTIONS(5418), - [aux_sym_keyword_statement_token2] = ACTIONS(5418), - [aux_sym_keyword_statement_token3] = ACTIONS(5418), - [aux_sym_keyword_statement_token4] = ACTIONS(5418), - [aux_sym_keyword_statement_token6] = ACTIONS(5418), - [aux_sym_keyword_statement_token7] = ACTIONS(5418), - [aux_sym_include_statement_token1] = ACTIONS(5418), - [aux_sym_data_statement_token1] = ACTIONS(5418), - [aux_sym_do_loop_statement_token1] = ACTIONS(5418), - [aux_sym__inline_if_statement_token1] = ACTIONS(5418), - [aux_sym_end_if_statement_token1] = ACTIONS(5418), - [aux_sym_elseif_clause_token2] = ACTIONS(5418), - [aux_sym__inline_where_statement_token1] = ACTIONS(5418), - [aux_sym__forall_control_expression_token1] = ACTIONS(5418), - [aux_sym_select_case_statement_token1] = ACTIONS(5418), - [aux_sym_select_case_statement_token3] = ACTIONS(5418), - [aux_sym_select_type_statement_token1] = ACTIONS(5418), - [aux_sym_select_rank_statement_token2] = ACTIONS(5418), - [aux_sym_block_construct_token1] = ACTIONS(5418), - [aux_sym_associate_statement_token1] = ACTIONS(5418), - [aux_sym_format_statement_token1] = ACTIONS(5418), - [aux_sym_print_statement_token1] = ACTIONS(5418), - [aux_sym_open_statement_token1] = ACTIONS(5418), - [aux_sym_close_statement_token1] = ACTIONS(5418), - [aux_sym_inquire_statement_token1] = ACTIONS(5418), - [aux_sym_enum_statement_token1] = ACTIONS(5418), - [aux_sym_file_position_statement_token1] = ACTIONS(5418), - [aux_sym_file_position_statement_token2] = ACTIONS(5418), - [aux_sym_file_position_statement_token3] = ACTIONS(5418), - [aux_sym_file_position_statement_token4] = ACTIONS(5418), - [aux_sym_allocate_statement_token1] = ACTIONS(5418), - [aux_sym_entry_statement_token1] = ACTIONS(5418), - [aux_sym_logical_expression_token5] = ACTIONS(5420), - [anon_sym_DOT] = ACTIONS(5418), - [anon_sym_LPAREN_SLASH] = ACTIONS(5420), - [anon_sym_LBRACK] = ACTIONS(5420), - [aux_sym_boolean_literal_token1] = ACTIONS(5420), - [aux_sym_boolean_literal_token2] = ACTIONS(5420), - [aux_sym_null_literal_token1] = ACTIONS(5418), - [aux_sym_coarray_statement_token1] = ACTIONS(5418), - [aux_sym_coarray_statement_token2] = ACTIONS(5418), - [aux_sym_coarray_statement_token6] = ACTIONS(5418), - [aux_sym_coarray_statement_token8] = ACTIONS(5418), - [aux_sym_coarray_statement_token11] = ACTIONS(5418), - [aux_sym_coarray_statement_token12] = ACTIONS(5418), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5418), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5418), - [aux_sym_identifier_token1] = ACTIONS(5418), + [aux_sym_end_program_statement_token1] = ACTIONS(5081), + [aux_sym_interface_statement_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5081), + [aux_sym_language_binding_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token3] = ACTIONS(5081), + [aux_sym_contains_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token2] = ACTIONS(5081), + [aux_sym_implicit_statement_token1] = ACTIONS(5081), + [aux_sym_implicit_statement_token3] = ACTIONS(5081), + [aux_sym_implicit_statement_token4] = ACTIONS(5081), + [aux_sym_save_statement_token1] = ACTIONS(5081), + [aux_sym_private_statement_token1] = ACTIONS(5081), + [aux_sym_public_statement_token1] = ACTIONS(5081), + [aux_sym_namelist_statement_token1] = ACTIONS(5081), + [aux_sym_common_statement_token1] = ACTIONS(5081), + [aux_sym_import_statement_token1] = ACTIONS(5081), + [aux_sym_derived_type_definition_token1] = ACTIONS(5081), + [aux_sym_abstract_specifier_token1] = ACTIONS(5081), + [aux_sym_procedure_attribute_token6] = ACTIONS(5081), + [aux_sym_variable_attributes_token1] = ACTIONS(5081), + [aux_sym_variable_attributes_token2] = ACTIONS(5081), + [aux_sym_variable_attributes_token3] = ACTIONS(5081), + [aux_sym_variable_attributes_token4] = ACTIONS(5081), + [aux_sym_variable_attributes_token5] = ACTIONS(5081), + [aux_sym__intrinsic_type_token1] = ACTIONS(5081), + [aux_sym__intrinsic_type_token2] = ACTIONS(5081), + [aux_sym__intrinsic_type_token3] = ACTIONS(5081), + [aux_sym__intrinsic_type_token4] = ACTIONS(5081), + [aux_sym__intrinsic_type_token6] = ACTIONS(5081), + [aux_sym__intrinsic_type_token7] = ACTIONS(5081), + [aux_sym__intrinsic_type_token8] = ACTIONS(5081), + [aux_sym__intrinsic_type_token9] = ACTIONS(5081), + [aux_sym__intrinsic_type_token10] = ACTIONS(5081), + [aux_sym_derived_type_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), + [aux_sym_type_qualifier_token1] = ACTIONS(5081), + [aux_sym_type_qualifier_token2] = ACTIONS(5081), + [aux_sym_equivalence_statement_token1] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [aux_sym_stop_statement_token1] = ACTIONS(5081), + [aux_sym_stop_statement_token2] = ACTIONS(5081), + [aux_sym_subroutine_call_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token2] = ACTIONS(5081), + [aux_sym_keyword_statement_token3] = ACTIONS(5081), + [aux_sym_keyword_statement_token4] = ACTIONS(5081), + [aux_sym_keyword_statement_token6] = ACTIONS(5081), + [aux_sym_keyword_statement_token7] = ACTIONS(5081), + [aux_sym_include_statement_token1] = ACTIONS(5081), + [aux_sym_data_statement_token1] = ACTIONS(5081), + [aux_sym_do_loop_statement_token1] = ACTIONS(5081), + [aux_sym__inline_if_statement_token1] = ACTIONS(5081), + [aux_sym_end_if_statement_token1] = ACTIONS(5081), + [aux_sym_elseif_clause_token2] = ACTIONS(5081), + [aux_sym__inline_where_statement_token1] = ACTIONS(5081), + [aux_sym__forall_control_expression_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token3] = ACTIONS(5081), + [aux_sym_select_type_statement_token1] = ACTIONS(5081), + [aux_sym_select_rank_statement_token2] = ACTIONS(5081), + [aux_sym_block_construct_token1] = ACTIONS(5081), + [aux_sym_associate_statement_token1] = ACTIONS(5081), + [aux_sym_format_statement_token1] = ACTIONS(5081), + [aux_sym_print_statement_token1] = ACTIONS(5081), + [aux_sym_open_statement_token1] = ACTIONS(5081), + [aux_sym_close_statement_token1] = ACTIONS(5081), + [aux_sym_inquire_statement_token1] = ACTIONS(5081), + [aux_sym_enum_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token2] = ACTIONS(5081), + [aux_sym_file_position_statement_token3] = ACTIONS(5081), + [aux_sym_file_position_statement_token4] = ACTIONS(5081), + [aux_sym_allocate_statement_token1] = ACTIONS(5081), + [aux_sym_entry_statement_token1] = ACTIONS(5081), + [aux_sym_logical_expression_token5] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_LPAREN_SLASH] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [aux_sym_boolean_literal_token1] = ACTIONS(5083), + [aux_sym_boolean_literal_token2] = ACTIONS(5083), + [aux_sym_null_literal_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token2] = ACTIONS(5081), + [aux_sym_coarray_statement_token6] = ACTIONS(5081), + [aux_sym_coarray_statement_token8] = ACTIONS(5081), + [aux_sym_coarray_statement_token11] = ACTIONS(5081), + [aux_sym_coarray_statement_token12] = ACTIONS(5081), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), + [aux_sym_identifier_token1] = ACTIONS(5081), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5420), - [sym__float_literal] = ACTIONS(5420), - [sym__boz_literal] = ACTIONS(5420), - [sym__string_literal] = ACTIONS(5420), - [sym__string_literal_kind] = ACTIONS(5420), + [sym__integer_literal] = ACTIONS(5083), + [sym__float_literal] = ACTIONS(5083), + [sym__boz_literal] = ACTIONS(5083), + [sym__string_literal] = ACTIONS(5083), + [sym__string_literal_kind] = ACTIONS(5083), }, - [1472] = { - [aux_sym_preproc_include_token1] = ACTIONS(4990), - [aux_sym_preproc_def_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), - [sym_preproc_directive] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), + [1441] = { + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4990), - [aux_sym_end_program_statement_token2] = ACTIONS(4990), - [aux_sym_interface_statement_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_language_binding_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token3] = ACTIONS(4990), - [aux_sym_contains_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token2] = ACTIONS(4990), - [aux_sym_implicit_statement_token1] = ACTIONS(4990), - [aux_sym_implicit_statement_token3] = ACTIONS(4990), - [aux_sym_implicit_statement_token4] = ACTIONS(4990), - [aux_sym_save_statement_token1] = ACTIONS(4990), - [aux_sym_private_statement_token1] = ACTIONS(4990), - [aux_sym_public_statement_token1] = ACTIONS(4990), - [aux_sym_namelist_statement_token1] = ACTIONS(4990), - [aux_sym_common_statement_token1] = ACTIONS(4990), - [aux_sym_import_statement_token1] = ACTIONS(4990), - [aux_sym_derived_type_definition_token1] = ACTIONS(4990), - [aux_sym_abstract_specifier_token1] = ACTIONS(4990), - [aux_sym_procedure_attribute_token6] = ACTIONS(4990), - [aux_sym_variable_attributes_token1] = ACTIONS(4990), - [aux_sym_variable_attributes_token2] = ACTIONS(4990), - [aux_sym_variable_attributes_token3] = ACTIONS(4990), - [aux_sym_variable_attributes_token4] = ACTIONS(4990), - [aux_sym_variable_attributes_token5] = ACTIONS(4990), - [aux_sym__intrinsic_type_token1] = ACTIONS(4990), - [aux_sym__intrinsic_type_token2] = ACTIONS(4990), - [aux_sym__intrinsic_type_token3] = ACTIONS(4990), - [aux_sym__intrinsic_type_token4] = ACTIONS(4990), - [aux_sym__intrinsic_type_token6] = ACTIONS(4990), - [aux_sym__intrinsic_type_token7] = ACTIONS(4990), - [aux_sym__intrinsic_type_token8] = ACTIONS(4990), - [aux_sym__intrinsic_type_token9] = ACTIONS(4990), - [aux_sym__intrinsic_type_token10] = ACTIONS(4990), - [aux_sym_derived_type_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), - [aux_sym_type_qualifier_token1] = ACTIONS(4990), - [aux_sym_type_qualifier_token2] = ACTIONS(4990), - [aux_sym_equivalence_statement_token1] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4992), - [aux_sym_stop_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token2] = ACTIONS(4990), - [aux_sym_subroutine_call_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token3] = ACTIONS(4990), - [aux_sym_keyword_statement_token4] = ACTIONS(4990), - [aux_sym_keyword_statement_token6] = ACTIONS(4990), - [aux_sym_keyword_statement_token7] = ACTIONS(4990), - [aux_sym_include_statement_token1] = ACTIONS(4990), - [aux_sym_data_statement_token1] = ACTIONS(4990), - [aux_sym_do_loop_statement_token1] = ACTIONS(4990), - [aux_sym__inline_if_statement_token1] = ACTIONS(4990), - [aux_sym_end_if_statement_token1] = ACTIONS(4990), - [aux_sym_elseif_clause_token2] = ACTIONS(4990), - [aux_sym__inline_where_statement_token1] = ACTIONS(4990), - [aux_sym__forall_control_expression_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token3] = ACTIONS(4990), - [aux_sym_select_type_statement_token1] = ACTIONS(4990), - [aux_sym_select_rank_statement_token2] = ACTIONS(4990), - [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_associate_statement_token1] = ACTIONS(4990), - [aux_sym_format_statement_token1] = ACTIONS(4990), - [aux_sym_print_statement_token1] = ACTIONS(4990), - [aux_sym_open_statement_token1] = ACTIONS(4990), - [aux_sym_close_statement_token1] = ACTIONS(4990), - [aux_sym_inquire_statement_token1] = ACTIONS(4990), - [aux_sym_enum_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token2] = ACTIONS(4990), - [aux_sym_file_position_statement_token3] = ACTIONS(4990), - [aux_sym_file_position_statement_token4] = ACTIONS(4990), - [aux_sym_allocate_statement_token1] = ACTIONS(4990), - [aux_sym_entry_statement_token1] = ACTIONS(4990), - [aux_sym_logical_expression_token5] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_LPAREN_SLASH] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [aux_sym_boolean_literal_token1] = ACTIONS(4992), - [aux_sym_boolean_literal_token2] = ACTIONS(4992), - [aux_sym_null_literal_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token2] = ACTIONS(4990), - [aux_sym_coarray_statement_token6] = ACTIONS(4990), - [aux_sym_coarray_statement_token8] = ACTIONS(4990), - [aux_sym_coarray_statement_token11] = ACTIONS(4990), - [aux_sym_coarray_statement_token12] = ACTIONS(4990), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), - [aux_sym_identifier_token1] = ACTIONS(4990), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_subroutine_call_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_keyword_statement_token4] = ACTIONS(5002), + [aux_sym_keyword_statement_token6] = ACTIONS(5002), + [aux_sym_keyword_statement_token7] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym_do_loop_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym__inline_where_statement_token1] = ACTIONS(5002), + [aux_sym__forall_control_expression_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token3] = ACTIONS(5002), + [aux_sym_select_type_statement_token1] = ACTIONS(5002), + [aux_sym_select_rank_statement_token2] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_associate_statement_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_print_statement_token1] = ACTIONS(5002), + [aux_sym_open_statement_token1] = ACTIONS(5002), + [aux_sym_close_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token2] = ACTIONS(5002), + [aux_sym_file_position_statement_token3] = ACTIONS(5002), + [aux_sym_file_position_statement_token4] = ACTIONS(5002), + [aux_sym_allocate_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_logical_expression_token5] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_LPAREN_SLASH] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [aux_sym_boolean_literal_token1] = ACTIONS(5004), + [aux_sym_boolean_literal_token2] = ACTIONS(5004), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4992), - [sym__float_literal] = ACTIONS(4992), - [sym__boz_literal] = ACTIONS(4992), - [sym__string_literal] = ACTIONS(4992), - [sym__string_literal_kind] = ACTIONS(4992), + [sym__integer_literal] = ACTIONS(5004), + [sym__float_literal] = ACTIONS(5004), + [sym__boz_literal] = ACTIONS(5004), + [sym__string_literal] = ACTIONS(5004), + [sym__string_literal_kind] = ACTIONS(5004), }, - [1473] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [1442] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_end_function_statement_token1] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, - [1474] = { - [aux_sym_preproc_include_token1] = ACTIONS(5394), - [aux_sym_preproc_def_token1] = ACTIONS(5394), - [aux_sym_preproc_if_token1] = ACTIONS(5394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5394), - [sym_preproc_directive] = ACTIONS(5394), - [anon_sym_LPAREN2] = ACTIONS(5394), - [anon_sym_PLUS] = ACTIONS(5396), - [anon_sym_DASH] = ACTIONS(5396), + [1443] = { + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), + }, + [1444] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5394), - [aux_sym_interface_statement_token1] = ACTIONS(5394), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5394), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5394), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5394), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5394), - [aux_sym_language_binding_token1] = ACTIONS(5394), - [aux_sym_procedure_attributes_token1] = ACTIONS(5394), - [aux_sym_procedure_attributes_token3] = ACTIONS(5394), - [aux_sym_contains_statement_token1] = ACTIONS(5394), - [aux_sym_use_statement_token1] = ACTIONS(5394), - [aux_sym_use_statement_token2] = ACTIONS(5394), - [aux_sym_implicit_statement_token1] = ACTIONS(5394), - [aux_sym_implicit_statement_token3] = ACTIONS(5394), - [aux_sym_implicit_statement_token4] = ACTIONS(5394), - [aux_sym_save_statement_token1] = ACTIONS(5394), - [aux_sym_private_statement_token1] = ACTIONS(5394), - [aux_sym_public_statement_token1] = ACTIONS(5394), - [aux_sym_namelist_statement_token1] = ACTIONS(5394), - [aux_sym_common_statement_token1] = ACTIONS(5394), - [aux_sym_import_statement_token1] = ACTIONS(5394), - [aux_sym_derived_type_definition_token1] = ACTIONS(5394), - [aux_sym_abstract_specifier_token1] = ACTIONS(5394), - [aux_sym_procedure_attribute_token6] = ACTIONS(5394), - [aux_sym_variable_attributes_token1] = ACTIONS(5394), - [aux_sym_variable_attributes_token2] = ACTIONS(5394), - [aux_sym_variable_attributes_token3] = ACTIONS(5394), - [aux_sym_variable_attributes_token4] = ACTIONS(5394), - [aux_sym_variable_attributes_token5] = ACTIONS(5394), - [aux_sym__intrinsic_type_token1] = ACTIONS(5394), - [aux_sym__intrinsic_type_token2] = ACTIONS(5394), - [aux_sym__intrinsic_type_token3] = ACTIONS(5394), - [aux_sym__intrinsic_type_token4] = ACTIONS(5394), - [aux_sym__intrinsic_type_token6] = ACTIONS(5394), - [aux_sym__intrinsic_type_token7] = ACTIONS(5394), - [aux_sym__intrinsic_type_token8] = ACTIONS(5394), - [aux_sym__intrinsic_type_token9] = ACTIONS(5394), - [aux_sym__intrinsic_type_token10] = ACTIONS(5394), - [aux_sym_derived_type_token1] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5394), - [aux_sym_type_qualifier_token1] = ACTIONS(5394), - [aux_sym_type_qualifier_token2] = ACTIONS(5394), - [aux_sym_equivalence_statement_token1] = ACTIONS(5394), - [anon_sym_SEMI] = ACTIONS(5396), - [aux_sym_stop_statement_token1] = ACTIONS(5394), - [aux_sym_stop_statement_token2] = ACTIONS(5394), - [aux_sym_subroutine_call_token1] = ACTIONS(5394), - [aux_sym_keyword_statement_token1] = ACTIONS(5394), - [aux_sym_keyword_statement_token2] = ACTIONS(5394), - [aux_sym_keyword_statement_token3] = ACTIONS(5394), - [aux_sym_keyword_statement_token4] = ACTIONS(5394), - [aux_sym_keyword_statement_token6] = ACTIONS(5394), - [aux_sym_keyword_statement_token7] = ACTIONS(5394), - [aux_sym_include_statement_token1] = ACTIONS(5394), - [aux_sym_data_statement_token1] = ACTIONS(5394), - [aux_sym_do_loop_statement_token1] = ACTIONS(5394), - [aux_sym__inline_if_statement_token1] = ACTIONS(5394), - [aux_sym_end_if_statement_token1] = ACTIONS(5394), - [aux_sym_elseif_clause_token2] = ACTIONS(5394), - [aux_sym__inline_where_statement_token1] = ACTIONS(5394), - [aux_sym__forall_control_expression_token1] = ACTIONS(5394), - [aux_sym_select_case_statement_token1] = ACTIONS(5394), - [aux_sym_select_case_statement_token3] = ACTIONS(5394), - [aux_sym_select_type_statement_token1] = ACTIONS(5394), - [aux_sym_select_rank_statement_token2] = ACTIONS(5394), - [aux_sym_block_construct_token1] = ACTIONS(5394), - [aux_sym_associate_statement_token1] = ACTIONS(5394), - [aux_sym_format_statement_token1] = ACTIONS(5394), - [aux_sym_print_statement_token1] = ACTIONS(5394), - [aux_sym_open_statement_token1] = ACTIONS(5394), - [aux_sym_close_statement_token1] = ACTIONS(5394), - [aux_sym_inquire_statement_token1] = ACTIONS(5394), - [aux_sym_enum_statement_token1] = ACTIONS(5394), - [aux_sym_file_position_statement_token1] = ACTIONS(5394), - [aux_sym_file_position_statement_token2] = ACTIONS(5394), - [aux_sym_file_position_statement_token3] = ACTIONS(5394), - [aux_sym_file_position_statement_token4] = ACTIONS(5394), - [aux_sym_allocate_statement_token1] = ACTIONS(5394), - [aux_sym_entry_statement_token1] = ACTIONS(5394), - [aux_sym_logical_expression_token5] = ACTIONS(5396), - [anon_sym_DOT] = ACTIONS(5394), - [anon_sym_LPAREN_SLASH] = ACTIONS(5396), - [anon_sym_LBRACK] = ACTIONS(5396), - [aux_sym_boolean_literal_token1] = ACTIONS(5396), - [aux_sym_boolean_literal_token2] = ACTIONS(5396), - [aux_sym_null_literal_token1] = ACTIONS(5394), - [aux_sym_coarray_statement_token1] = ACTIONS(5394), - [aux_sym_coarray_statement_token2] = ACTIONS(5394), - [aux_sym_coarray_statement_token6] = ACTIONS(5394), - [aux_sym_coarray_statement_token8] = ACTIONS(5394), - [aux_sym_coarray_statement_token11] = ACTIONS(5394), - [aux_sym_coarray_statement_token12] = ACTIONS(5394), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5394), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5394), - [aux_sym_identifier_token1] = ACTIONS(5394), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_end_function_statement_token1] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5396), - [sym__float_literal] = ACTIONS(5396), - [sym__boz_literal] = ACTIONS(5396), - [sym__string_literal] = ACTIONS(5396), - [sym__string_literal_kind] = ACTIONS(5396), - }, - [1475] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, - [1476] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [1445] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, - [1477] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [1446] = { + [aux_sym_preproc_include_token1] = ACTIONS(4976), + [aux_sym_preproc_def_token1] = ACTIONS(4976), + [aux_sym_preproc_if_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), + [sym_preproc_directive] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4976), + [aux_sym_interface_statement_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4976), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_language_binding_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token3] = ACTIONS(4976), + [aux_sym_contains_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token2] = ACTIONS(4976), + [aux_sym_implicit_statement_token1] = ACTIONS(4976), + [aux_sym_implicit_statement_token3] = ACTIONS(4976), + [aux_sym_implicit_statement_token4] = ACTIONS(4976), + [aux_sym_save_statement_token1] = ACTIONS(4976), + [aux_sym_private_statement_token1] = ACTIONS(4976), + [aux_sym_public_statement_token1] = ACTIONS(4976), + [aux_sym_namelist_statement_token1] = ACTIONS(4976), + [aux_sym_common_statement_token1] = ACTIONS(4976), + [aux_sym_import_statement_token1] = ACTIONS(4976), + [aux_sym_derived_type_definition_token1] = ACTIONS(4976), + [aux_sym_abstract_specifier_token1] = ACTIONS(4976), + [aux_sym_procedure_attribute_token6] = ACTIONS(4976), + [aux_sym_variable_attributes_token1] = ACTIONS(4976), + [aux_sym_variable_attributes_token2] = ACTIONS(4976), + [aux_sym_variable_attributes_token3] = ACTIONS(4976), + [aux_sym_variable_attributes_token4] = ACTIONS(4976), + [aux_sym_variable_attributes_token5] = ACTIONS(4976), + [aux_sym__intrinsic_type_token1] = ACTIONS(4976), + [aux_sym__intrinsic_type_token2] = ACTIONS(4976), + [aux_sym__intrinsic_type_token3] = ACTIONS(4976), + [aux_sym__intrinsic_type_token4] = ACTIONS(4976), + [aux_sym__intrinsic_type_token6] = ACTIONS(4976), + [aux_sym__intrinsic_type_token7] = ACTIONS(4976), + [aux_sym__intrinsic_type_token8] = ACTIONS(4976), + [aux_sym__intrinsic_type_token9] = ACTIONS(4976), + [aux_sym__intrinsic_type_token10] = ACTIONS(4976), + [aux_sym_derived_type_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), + [aux_sym_type_qualifier_token1] = ACTIONS(4976), + [aux_sym_type_qualifier_token2] = ACTIONS(4976), + [aux_sym_equivalence_statement_token1] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4980), + [aux_sym_stop_statement_token1] = ACTIONS(4976), + [aux_sym_stop_statement_token2] = ACTIONS(4976), + [aux_sym_subroutine_call_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token2] = ACTIONS(4976), + [aux_sym_keyword_statement_token3] = ACTIONS(4976), + [aux_sym_keyword_statement_token4] = ACTIONS(4976), + [aux_sym_keyword_statement_token6] = ACTIONS(4976), + [aux_sym_keyword_statement_token7] = ACTIONS(4976), + [aux_sym_include_statement_token1] = ACTIONS(4976), + [aux_sym_data_statement_token1] = ACTIONS(4976), + [aux_sym_do_loop_statement_token1] = ACTIONS(4976), + [aux_sym__inline_if_statement_token1] = ACTIONS(4976), + [aux_sym_end_if_statement_token1] = ACTIONS(4976), + [aux_sym_elseif_clause_token2] = ACTIONS(4976), + [aux_sym__inline_where_statement_token1] = ACTIONS(4976), + [aux_sym__forall_control_expression_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token3] = ACTIONS(4976), + [aux_sym_select_type_statement_token1] = ACTIONS(4976), + [aux_sym_select_rank_statement_token2] = ACTIONS(4976), + [aux_sym_block_construct_token1] = ACTIONS(4976), + [aux_sym_associate_statement_token1] = ACTIONS(4976), + [aux_sym_format_statement_token1] = ACTIONS(4976), + [aux_sym_print_statement_token1] = ACTIONS(4976), + [aux_sym_open_statement_token1] = ACTIONS(4976), + [aux_sym_close_statement_token1] = ACTIONS(4976), + [aux_sym_inquire_statement_token1] = ACTIONS(4976), + [aux_sym_enum_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token2] = ACTIONS(4976), + [aux_sym_file_position_statement_token3] = ACTIONS(4976), + [aux_sym_file_position_statement_token4] = ACTIONS(4976), + [aux_sym_allocate_statement_token1] = ACTIONS(4976), + [aux_sym_entry_statement_token1] = ACTIONS(4976), + [aux_sym_logical_expression_token5] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), + [aux_sym_null_literal_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token2] = ACTIONS(4976), + [aux_sym_coarray_statement_token6] = ACTIONS(4976), + [aux_sym_coarray_statement_token8] = ACTIONS(4976), + [aux_sym_coarray_statement_token11] = ACTIONS(4976), + [aux_sym_coarray_statement_token12] = ACTIONS(4976), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), + [aux_sym_identifier_token1] = ACTIONS(4976), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, - [1478] = { - [aux_sym_preproc_include_token1] = ACTIONS(5430), - [aux_sym_preproc_def_token1] = ACTIONS(5430), - [aux_sym_preproc_if_token1] = ACTIONS(5430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5430), - [sym_preproc_directive] = ACTIONS(5430), - [anon_sym_LPAREN2] = ACTIONS(5430), - [anon_sym_PLUS] = ACTIONS(5432), - [anon_sym_DASH] = ACTIONS(5432), + [1447] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5430), - [aux_sym_end_program_statement_token2] = ACTIONS(5430), - [aux_sym_interface_statement_token1] = ACTIONS(5430), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5430), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5430), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5430), - [aux_sym_language_binding_token1] = ACTIONS(5430), - [aux_sym_procedure_attributes_token1] = ACTIONS(5430), - [aux_sym_procedure_attributes_token3] = ACTIONS(5430), - [aux_sym_contains_statement_token1] = ACTIONS(5430), - [aux_sym_use_statement_token1] = ACTIONS(5430), - [aux_sym_use_statement_token2] = ACTIONS(5430), - [aux_sym_implicit_statement_token1] = ACTIONS(5430), - [aux_sym_implicit_statement_token3] = ACTIONS(5430), - [aux_sym_implicit_statement_token4] = ACTIONS(5430), - [aux_sym_save_statement_token1] = ACTIONS(5430), - [aux_sym_private_statement_token1] = ACTIONS(5430), - [aux_sym_public_statement_token1] = ACTIONS(5430), - [aux_sym_namelist_statement_token1] = ACTIONS(5430), - [aux_sym_common_statement_token1] = ACTIONS(5430), - [aux_sym_import_statement_token1] = ACTIONS(5430), - [aux_sym_derived_type_definition_token1] = ACTIONS(5430), - [aux_sym_abstract_specifier_token1] = ACTIONS(5430), - [aux_sym_procedure_attribute_token6] = ACTIONS(5430), - [aux_sym_variable_attributes_token1] = ACTIONS(5430), - [aux_sym_variable_attributes_token2] = ACTIONS(5430), - [aux_sym_variable_attributes_token3] = ACTIONS(5430), - [aux_sym_variable_attributes_token4] = ACTIONS(5430), - [aux_sym_variable_attributes_token5] = ACTIONS(5430), - [aux_sym__intrinsic_type_token1] = ACTIONS(5430), - [aux_sym__intrinsic_type_token2] = ACTIONS(5430), - [aux_sym__intrinsic_type_token3] = ACTIONS(5430), - [aux_sym__intrinsic_type_token4] = ACTIONS(5430), - [aux_sym__intrinsic_type_token6] = ACTIONS(5430), - [aux_sym__intrinsic_type_token7] = ACTIONS(5430), - [aux_sym__intrinsic_type_token8] = ACTIONS(5430), - [aux_sym__intrinsic_type_token9] = ACTIONS(5430), - [aux_sym__intrinsic_type_token10] = ACTIONS(5430), - [aux_sym_derived_type_token1] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5430), - [aux_sym_type_qualifier_token1] = ACTIONS(5430), - [aux_sym_type_qualifier_token2] = ACTIONS(5430), - [aux_sym_equivalence_statement_token1] = ACTIONS(5430), - [anon_sym_SEMI] = ACTIONS(5432), - [aux_sym_stop_statement_token1] = ACTIONS(5430), - [aux_sym_stop_statement_token2] = ACTIONS(5430), - [aux_sym_subroutine_call_token1] = ACTIONS(5430), - [aux_sym_keyword_statement_token1] = ACTIONS(5430), - [aux_sym_keyword_statement_token2] = ACTIONS(5430), - [aux_sym_keyword_statement_token3] = ACTIONS(5430), - [aux_sym_keyword_statement_token4] = ACTIONS(5430), - [aux_sym_keyword_statement_token6] = ACTIONS(5430), - [aux_sym_keyword_statement_token7] = ACTIONS(5430), - [aux_sym_include_statement_token1] = ACTIONS(5430), - [aux_sym_data_statement_token1] = ACTIONS(5430), - [aux_sym_do_loop_statement_token1] = ACTIONS(5430), - [aux_sym__inline_if_statement_token1] = ACTIONS(5430), - [aux_sym_end_if_statement_token1] = ACTIONS(5430), - [aux_sym_elseif_clause_token2] = ACTIONS(5430), - [aux_sym__inline_where_statement_token1] = ACTIONS(5430), - [aux_sym__forall_control_expression_token1] = ACTIONS(5430), - [aux_sym_select_case_statement_token1] = ACTIONS(5430), - [aux_sym_select_case_statement_token3] = ACTIONS(5430), - [aux_sym_select_type_statement_token1] = ACTIONS(5430), - [aux_sym_select_rank_statement_token2] = ACTIONS(5430), - [aux_sym_block_construct_token1] = ACTIONS(5430), - [aux_sym_associate_statement_token1] = ACTIONS(5430), - [aux_sym_format_statement_token1] = ACTIONS(5430), - [aux_sym_print_statement_token1] = ACTIONS(5430), - [aux_sym_open_statement_token1] = ACTIONS(5430), - [aux_sym_close_statement_token1] = ACTIONS(5430), - [aux_sym_inquire_statement_token1] = ACTIONS(5430), - [aux_sym_enum_statement_token1] = ACTIONS(5430), - [aux_sym_file_position_statement_token1] = ACTIONS(5430), - [aux_sym_file_position_statement_token2] = ACTIONS(5430), - [aux_sym_file_position_statement_token3] = ACTIONS(5430), - [aux_sym_file_position_statement_token4] = ACTIONS(5430), - [aux_sym_allocate_statement_token1] = ACTIONS(5430), - [aux_sym_entry_statement_token1] = ACTIONS(5430), - [aux_sym_logical_expression_token5] = ACTIONS(5432), - [anon_sym_DOT] = ACTIONS(5430), - [anon_sym_LPAREN_SLASH] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5432), - [aux_sym_boolean_literal_token1] = ACTIONS(5432), - [aux_sym_boolean_literal_token2] = ACTIONS(5432), - [aux_sym_null_literal_token1] = ACTIONS(5430), - [aux_sym_coarray_statement_token1] = ACTIONS(5430), - [aux_sym_coarray_statement_token2] = ACTIONS(5430), - [aux_sym_coarray_statement_token6] = ACTIONS(5430), - [aux_sym_coarray_statement_token8] = ACTIONS(5430), - [aux_sym_coarray_statement_token11] = ACTIONS(5430), - [aux_sym_coarray_statement_token12] = ACTIONS(5430), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5430), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5430), - [aux_sym_identifier_token1] = ACTIONS(5430), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_end_program_statement_token2] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5432), - [sym__float_literal] = ACTIONS(5432), - [sym__boz_literal] = ACTIONS(5432), - [sym__string_literal] = ACTIONS(5432), - [sym__string_literal_kind] = ACTIONS(5432), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, - [1479] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [1448] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_end_program_statement_token2] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, - [1480] = { + [1449] = { [aux_sym_preproc_include_token1] = ACTIONS(5446), [aux_sym_preproc_def_token1] = ACTIONS(5446), [aux_sym_preproc_if_token1] = ACTIONS(5446), @@ -287042,257 +283167,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5448), [sym__string_literal_kind] = ACTIONS(5448), }, - [1481] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_end_function_statement_token1] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [1450] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_subroutine_call_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_keyword_statement_token4] = ACTIONS(5018), + [aux_sym_keyword_statement_token6] = ACTIONS(5018), + [aux_sym_keyword_statement_token7] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym_do_loop_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym__inline_where_statement_token1] = ACTIONS(5018), + [aux_sym__forall_control_expression_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token3] = ACTIONS(5018), + [aux_sym_select_type_statement_token1] = ACTIONS(5018), + [aux_sym_select_rank_statement_token2] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_associate_statement_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_print_statement_token1] = ACTIONS(5018), + [aux_sym_open_statement_token1] = ACTIONS(5018), + [aux_sym_close_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token2] = ACTIONS(5018), + [aux_sym_file_position_statement_token3] = ACTIONS(5018), + [aux_sym_file_position_statement_token4] = ACTIONS(5018), + [aux_sym_allocate_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_logical_expression_token5] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_LPAREN_SLASH] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [aux_sym_boolean_literal_token1] = ACTIONS(5020), + [aux_sym_boolean_literal_token2] = ACTIONS(5020), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + [sym__float_literal] = ACTIONS(5020), + [sym__boz_literal] = ACTIONS(5020), + [sym__string_literal] = ACTIONS(5020), + [sym__string_literal_kind] = ACTIONS(5020), }, - [1482] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_end_function_statement_token1] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [1451] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, - [1483] = { + [1452] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_subroutine_call_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_keyword_statement_token4] = ACTIONS(5022), + [aux_sym_keyword_statement_token6] = ACTIONS(5022), + [aux_sym_keyword_statement_token7] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym_do_loop_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym__inline_where_statement_token1] = ACTIONS(5022), + [aux_sym__forall_control_expression_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token3] = ACTIONS(5022), + [aux_sym_select_type_statement_token1] = ACTIONS(5022), + [aux_sym_select_rank_statement_token2] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_associate_statement_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_print_statement_token1] = ACTIONS(5022), + [aux_sym_open_statement_token1] = ACTIONS(5022), + [aux_sym_close_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token2] = ACTIONS(5022), + [aux_sym_file_position_statement_token3] = ACTIONS(5022), + [aux_sym_file_position_statement_token4] = ACTIONS(5022), + [aux_sym_allocate_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_logical_expression_token5] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_LPAREN_SLASH] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [aux_sym_boolean_literal_token1] = ACTIONS(5024), + [aux_sym_boolean_literal_token2] = ACTIONS(5024), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + [sym__float_literal] = ACTIONS(5024), + [sym__boz_literal] = ACTIONS(5024), + [sym__string_literal] = ACTIONS(5024), + [sym__string_literal_kind] = ACTIONS(5024), + }, + [1453] = { [aux_sym_preproc_include_token1] = ACTIONS(5430), [aux_sym_preproc_def_token1] = ACTIONS(5430), [aux_sym_preproc_if_token1] = ACTIONS(5430), @@ -287393,406 +283643,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token3] = ACTIONS(5430), [aux_sym_file_position_statement_token4] = ACTIONS(5430), [aux_sym_allocate_statement_token1] = ACTIONS(5430), - [aux_sym_entry_statement_token1] = ACTIONS(5430), - [aux_sym_logical_expression_token5] = ACTIONS(5432), - [anon_sym_DOT] = ACTIONS(5430), - [anon_sym_LPAREN_SLASH] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5432), - [aux_sym_boolean_literal_token1] = ACTIONS(5432), - [aux_sym_boolean_literal_token2] = ACTIONS(5432), - [aux_sym_null_literal_token1] = ACTIONS(5430), - [aux_sym_coarray_statement_token1] = ACTIONS(5430), - [aux_sym_coarray_statement_token2] = ACTIONS(5430), - [aux_sym_coarray_statement_token6] = ACTIONS(5430), - [aux_sym_coarray_statement_token8] = ACTIONS(5430), - [aux_sym_coarray_statement_token11] = ACTIONS(5430), - [aux_sym_coarray_statement_token12] = ACTIONS(5430), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5430), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5430), - [aux_sym_identifier_token1] = ACTIONS(5430), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5432), - [sym__float_literal] = ACTIONS(5432), - [sym__boz_literal] = ACTIONS(5432), - [sym__string_literal] = ACTIONS(5432), - [sym__string_literal_kind] = ACTIONS(5432), - }, - [1484] = { - [aux_sym_preproc_include_token1] = ACTIONS(5438), - [aux_sym_preproc_def_token1] = ACTIONS(5438), - [aux_sym_preproc_if_token1] = ACTIONS(5438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5438), - [sym_preproc_directive] = ACTIONS(5438), - [anon_sym_LPAREN2] = ACTIONS(5438), - [anon_sym_PLUS] = ACTIONS(5440), - [anon_sym_DASH] = ACTIONS(5440), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5438), - [aux_sym_interface_statement_token1] = ACTIONS(5438), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5438), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5438), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5438), - [aux_sym_language_binding_token1] = ACTIONS(5438), - [aux_sym_procedure_attributes_token1] = ACTIONS(5438), - [aux_sym_procedure_attributes_token3] = ACTIONS(5438), - [aux_sym_end_function_statement_token1] = ACTIONS(5438), - [aux_sym_contains_statement_token1] = ACTIONS(5438), - [aux_sym_use_statement_token1] = ACTIONS(5438), - [aux_sym_use_statement_token2] = ACTIONS(5438), - [aux_sym_implicit_statement_token1] = ACTIONS(5438), - [aux_sym_implicit_statement_token3] = ACTIONS(5438), - [aux_sym_implicit_statement_token4] = ACTIONS(5438), - [aux_sym_save_statement_token1] = ACTIONS(5438), - [aux_sym_private_statement_token1] = ACTIONS(5438), - [aux_sym_public_statement_token1] = ACTIONS(5438), - [aux_sym_namelist_statement_token1] = ACTIONS(5438), - [aux_sym_common_statement_token1] = ACTIONS(5438), - [aux_sym_import_statement_token1] = ACTIONS(5438), - [aux_sym_derived_type_definition_token1] = ACTIONS(5438), - [aux_sym_abstract_specifier_token1] = ACTIONS(5438), - [aux_sym_procedure_attribute_token6] = ACTIONS(5438), - [aux_sym_variable_attributes_token1] = ACTIONS(5438), - [aux_sym_variable_attributes_token2] = ACTIONS(5438), - [aux_sym_variable_attributes_token3] = ACTIONS(5438), - [aux_sym_variable_attributes_token4] = ACTIONS(5438), - [aux_sym_variable_attributes_token5] = ACTIONS(5438), - [aux_sym__intrinsic_type_token1] = ACTIONS(5438), - [aux_sym__intrinsic_type_token2] = ACTIONS(5438), - [aux_sym__intrinsic_type_token3] = ACTIONS(5438), - [aux_sym__intrinsic_type_token4] = ACTIONS(5438), - [aux_sym__intrinsic_type_token6] = ACTIONS(5438), - [aux_sym__intrinsic_type_token7] = ACTIONS(5438), - [aux_sym__intrinsic_type_token8] = ACTIONS(5438), - [aux_sym__intrinsic_type_token9] = ACTIONS(5438), - [aux_sym__intrinsic_type_token10] = ACTIONS(5438), - [aux_sym_derived_type_token1] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5438), - [aux_sym_type_qualifier_token1] = ACTIONS(5438), - [aux_sym_type_qualifier_token2] = ACTIONS(5438), - [aux_sym_equivalence_statement_token1] = ACTIONS(5438), - [anon_sym_SEMI] = ACTIONS(5440), - [aux_sym_stop_statement_token1] = ACTIONS(5438), - [aux_sym_stop_statement_token2] = ACTIONS(5438), - [aux_sym_subroutine_call_token1] = ACTIONS(5438), - [aux_sym_keyword_statement_token1] = ACTIONS(5438), - [aux_sym_keyword_statement_token2] = ACTIONS(5438), - [aux_sym_keyword_statement_token3] = ACTIONS(5438), - [aux_sym_keyword_statement_token4] = ACTIONS(5438), - [aux_sym_keyword_statement_token6] = ACTIONS(5438), - [aux_sym_keyword_statement_token7] = ACTIONS(5438), - [aux_sym_include_statement_token1] = ACTIONS(5438), - [aux_sym_data_statement_token1] = ACTIONS(5438), - [aux_sym_do_loop_statement_token1] = ACTIONS(5438), - [aux_sym__inline_if_statement_token1] = ACTIONS(5438), - [aux_sym_end_if_statement_token1] = ACTIONS(5438), - [aux_sym_elseif_clause_token2] = ACTIONS(5438), - [aux_sym__inline_where_statement_token1] = ACTIONS(5438), - [aux_sym__forall_control_expression_token1] = ACTIONS(5438), - [aux_sym_select_case_statement_token1] = ACTIONS(5438), - [aux_sym_select_case_statement_token3] = ACTIONS(5438), - [aux_sym_select_type_statement_token1] = ACTIONS(5438), - [aux_sym_select_rank_statement_token2] = ACTIONS(5438), - [aux_sym_block_construct_token1] = ACTIONS(5438), - [aux_sym_associate_statement_token1] = ACTIONS(5438), - [aux_sym_format_statement_token1] = ACTIONS(5438), - [aux_sym_print_statement_token1] = ACTIONS(5438), - [aux_sym_open_statement_token1] = ACTIONS(5438), - [aux_sym_close_statement_token1] = ACTIONS(5438), - [aux_sym_inquire_statement_token1] = ACTIONS(5438), - [aux_sym_enum_statement_token1] = ACTIONS(5438), - [aux_sym_file_position_statement_token1] = ACTIONS(5438), - [aux_sym_file_position_statement_token2] = ACTIONS(5438), - [aux_sym_file_position_statement_token3] = ACTIONS(5438), - [aux_sym_file_position_statement_token4] = ACTIONS(5438), - [aux_sym_allocate_statement_token1] = ACTIONS(5438), - [aux_sym_entry_statement_token1] = ACTIONS(5438), - [aux_sym_logical_expression_token5] = ACTIONS(5440), - [anon_sym_DOT] = ACTIONS(5438), - [anon_sym_LPAREN_SLASH] = ACTIONS(5440), - [anon_sym_LBRACK] = ACTIONS(5440), - [aux_sym_boolean_literal_token1] = ACTIONS(5440), - [aux_sym_boolean_literal_token2] = ACTIONS(5440), - [aux_sym_null_literal_token1] = ACTIONS(5438), - [aux_sym_coarray_statement_token1] = ACTIONS(5438), - [aux_sym_coarray_statement_token2] = ACTIONS(5438), - [aux_sym_coarray_statement_token6] = ACTIONS(5438), - [aux_sym_coarray_statement_token8] = ACTIONS(5438), - [aux_sym_coarray_statement_token11] = ACTIONS(5438), - [aux_sym_coarray_statement_token12] = ACTIONS(5438), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5438), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5438), - [aux_sym_identifier_token1] = ACTIONS(5438), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5440), - [sym__float_literal] = ACTIONS(5440), - [sym__boz_literal] = ACTIONS(5440), - [sym__string_literal] = ACTIONS(5440), - [sym__string_literal_kind] = ACTIONS(5440), - }, - [1485] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_LPAREN2] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_end_program_statement_token2] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_subroutine_call_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_keyword_statement_token4] = ACTIONS(5061), - [aux_sym_keyword_statement_token6] = ACTIONS(5061), - [aux_sym_keyword_statement_token7] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym_do_loop_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym__inline_where_statement_token1] = ACTIONS(5061), - [aux_sym__forall_control_expression_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token3] = ACTIONS(5061), - [aux_sym_select_type_statement_token1] = ACTIONS(5061), - [aux_sym_select_rank_statement_token2] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_associate_statement_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_print_statement_token1] = ACTIONS(5061), - [aux_sym_open_statement_token1] = ACTIONS(5061), - [aux_sym_close_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token2] = ACTIONS(5061), - [aux_sym_file_position_statement_token3] = ACTIONS(5061), - [aux_sym_file_position_statement_token4] = ACTIONS(5061), - [aux_sym_allocate_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_logical_expression_token5] = ACTIONS(5063), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LPAREN_SLASH] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [aux_sym_boolean_literal_token1] = ACTIONS(5063), - [aux_sym_boolean_literal_token2] = ACTIONS(5063), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - [sym__float_literal] = ACTIONS(5063), - [sym__boz_literal] = ACTIONS(5063), - [sym__string_literal] = ACTIONS(5063), - [sym__string_literal_kind] = ACTIONS(5063), - }, - [1486] = { - [aux_sym_preproc_include_token1] = ACTIONS(5434), - [aux_sym_preproc_def_token1] = ACTIONS(5434), - [aux_sym_preproc_if_token1] = ACTIONS(5434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5434), - [sym_preproc_directive] = ACTIONS(5434), - [anon_sym_LPAREN2] = ACTIONS(5434), - [anon_sym_PLUS] = ACTIONS(5436), - [anon_sym_DASH] = ACTIONS(5436), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5434), - [aux_sym_end_program_statement_token2] = ACTIONS(5434), - [aux_sym_interface_statement_token1] = ACTIONS(5434), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5434), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5434), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5434), - [aux_sym_language_binding_token1] = ACTIONS(5434), - [aux_sym_procedure_attributes_token1] = ACTIONS(5434), - [aux_sym_procedure_attributes_token3] = ACTIONS(5434), - [aux_sym_contains_statement_token1] = ACTIONS(5434), - [aux_sym_use_statement_token1] = ACTIONS(5434), - [aux_sym_use_statement_token2] = ACTIONS(5434), - [aux_sym_implicit_statement_token1] = ACTIONS(5434), - [aux_sym_implicit_statement_token3] = ACTIONS(5434), - [aux_sym_implicit_statement_token4] = ACTIONS(5434), - [aux_sym_save_statement_token1] = ACTIONS(5434), - [aux_sym_private_statement_token1] = ACTIONS(5434), - [aux_sym_public_statement_token1] = ACTIONS(5434), - [aux_sym_namelist_statement_token1] = ACTIONS(5434), - [aux_sym_common_statement_token1] = ACTIONS(5434), - [aux_sym_import_statement_token1] = ACTIONS(5434), - [aux_sym_derived_type_definition_token1] = ACTIONS(5434), - [aux_sym_abstract_specifier_token1] = ACTIONS(5434), - [aux_sym_procedure_attribute_token6] = ACTIONS(5434), - [aux_sym_variable_attributes_token1] = ACTIONS(5434), - [aux_sym_variable_attributes_token2] = ACTIONS(5434), - [aux_sym_variable_attributes_token3] = ACTIONS(5434), - [aux_sym_variable_attributes_token4] = ACTIONS(5434), - [aux_sym_variable_attributes_token5] = ACTIONS(5434), - [aux_sym__intrinsic_type_token1] = ACTIONS(5434), - [aux_sym__intrinsic_type_token2] = ACTIONS(5434), - [aux_sym__intrinsic_type_token3] = ACTIONS(5434), - [aux_sym__intrinsic_type_token4] = ACTIONS(5434), - [aux_sym__intrinsic_type_token6] = ACTIONS(5434), - [aux_sym__intrinsic_type_token7] = ACTIONS(5434), - [aux_sym__intrinsic_type_token8] = ACTIONS(5434), - [aux_sym__intrinsic_type_token9] = ACTIONS(5434), - [aux_sym__intrinsic_type_token10] = ACTIONS(5434), - [aux_sym_derived_type_token1] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5434), - [aux_sym_type_qualifier_token1] = ACTIONS(5434), - [aux_sym_type_qualifier_token2] = ACTIONS(5434), - [aux_sym_equivalence_statement_token1] = ACTIONS(5434), - [anon_sym_SEMI] = ACTIONS(5436), - [aux_sym_stop_statement_token1] = ACTIONS(5434), - [aux_sym_stop_statement_token2] = ACTIONS(5434), - [aux_sym_subroutine_call_token1] = ACTIONS(5434), - [aux_sym_keyword_statement_token1] = ACTIONS(5434), - [aux_sym_keyword_statement_token2] = ACTIONS(5434), - [aux_sym_keyword_statement_token3] = ACTIONS(5434), - [aux_sym_keyword_statement_token4] = ACTIONS(5434), - [aux_sym_keyword_statement_token6] = ACTIONS(5434), - [aux_sym_keyword_statement_token7] = ACTIONS(5434), - [aux_sym_include_statement_token1] = ACTIONS(5434), - [aux_sym_data_statement_token1] = ACTIONS(5434), - [aux_sym_do_loop_statement_token1] = ACTIONS(5434), - [aux_sym__inline_if_statement_token1] = ACTIONS(5434), - [aux_sym_end_if_statement_token1] = ACTIONS(5434), - [aux_sym_elseif_clause_token2] = ACTIONS(5434), - [aux_sym__inline_where_statement_token1] = ACTIONS(5434), - [aux_sym__forall_control_expression_token1] = ACTIONS(5434), - [aux_sym_select_case_statement_token1] = ACTIONS(5434), - [aux_sym_select_case_statement_token3] = ACTIONS(5434), - [aux_sym_select_type_statement_token1] = ACTIONS(5434), - [aux_sym_select_rank_statement_token2] = ACTIONS(5434), - [aux_sym_block_construct_token1] = ACTIONS(5434), - [aux_sym_associate_statement_token1] = ACTIONS(5434), - [aux_sym_format_statement_token1] = ACTIONS(5434), - [aux_sym_print_statement_token1] = ACTIONS(5434), - [aux_sym_open_statement_token1] = ACTIONS(5434), - [aux_sym_close_statement_token1] = ACTIONS(5434), - [aux_sym_inquire_statement_token1] = ACTIONS(5434), - [aux_sym_enum_statement_token1] = ACTIONS(5434), - [aux_sym_file_position_statement_token1] = ACTIONS(5434), - [aux_sym_file_position_statement_token2] = ACTIONS(5434), - [aux_sym_file_position_statement_token3] = ACTIONS(5434), - [aux_sym_file_position_statement_token4] = ACTIONS(5434), - [aux_sym_allocate_statement_token1] = ACTIONS(5434), - [aux_sym_entry_statement_token1] = ACTIONS(5434), - [aux_sym_logical_expression_token5] = ACTIONS(5436), - [anon_sym_DOT] = ACTIONS(5434), - [anon_sym_LPAREN_SLASH] = ACTIONS(5436), - [anon_sym_LBRACK] = ACTIONS(5436), - [aux_sym_boolean_literal_token1] = ACTIONS(5436), - [aux_sym_boolean_literal_token2] = ACTIONS(5436), - [aux_sym_null_literal_token1] = ACTIONS(5434), - [aux_sym_coarray_statement_token1] = ACTIONS(5434), - [aux_sym_coarray_statement_token2] = ACTIONS(5434), - [aux_sym_coarray_statement_token6] = ACTIONS(5434), - [aux_sym_coarray_statement_token8] = ACTIONS(5434), - [aux_sym_coarray_statement_token11] = ACTIONS(5434), - [aux_sym_coarray_statement_token12] = ACTIONS(5434), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5434), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5434), - [aux_sym_identifier_token1] = ACTIONS(5434), + [aux_sym_entry_statement_token1] = ACTIONS(5430), + [aux_sym_logical_expression_token5] = ACTIONS(5432), + [anon_sym_DOT] = ACTIONS(5430), + [anon_sym_LPAREN_SLASH] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5432), + [aux_sym_boolean_literal_token1] = ACTIONS(5432), + [aux_sym_boolean_literal_token2] = ACTIONS(5432), + [aux_sym_null_literal_token1] = ACTIONS(5430), + [aux_sym_coarray_statement_token1] = ACTIONS(5430), + [aux_sym_coarray_statement_token2] = ACTIONS(5430), + [aux_sym_coarray_statement_token6] = ACTIONS(5430), + [aux_sym_coarray_statement_token8] = ACTIONS(5430), + [aux_sym_coarray_statement_token11] = ACTIONS(5430), + [aux_sym_coarray_statement_token12] = ACTIONS(5430), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5430), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5430), + [aux_sym_identifier_token1] = ACTIONS(5430), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5436), - [sym__float_literal] = ACTIONS(5436), - [sym__boz_literal] = ACTIONS(5436), - [sym__string_literal] = ACTIONS(5436), - [sym__string_literal_kind] = ACTIONS(5436), + [sym__integer_literal] = ACTIONS(5432), + [sym__float_literal] = ACTIONS(5432), + [sym__boz_literal] = ACTIONS(5432), + [sym__string_literal] = ACTIONS(5432), + [sym__string_literal_kind] = ACTIONS(5432), }, - [1487] = { + [1454] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_subroutine_call_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_keyword_statement_token4] = ACTIONS(5026), + [aux_sym_keyword_statement_token6] = ACTIONS(5026), + [aux_sym_keyword_statement_token7] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym_do_loop_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym__inline_where_statement_token1] = ACTIONS(5026), + [aux_sym__forall_control_expression_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token3] = ACTIONS(5026), + [aux_sym_select_type_statement_token1] = ACTIONS(5026), + [aux_sym_select_rank_statement_token2] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_associate_statement_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_print_statement_token1] = ACTIONS(5026), + [aux_sym_open_statement_token1] = ACTIONS(5026), + [aux_sym_close_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token2] = ACTIONS(5026), + [aux_sym_file_position_statement_token3] = ACTIONS(5026), + [aux_sym_file_position_statement_token4] = ACTIONS(5026), + [aux_sym_allocate_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_logical_expression_token5] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_LPAREN_SLASH] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [aux_sym_boolean_literal_token1] = ACTIONS(5028), + [aux_sym_boolean_literal_token2] = ACTIONS(5028), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + [sym__float_literal] = ACTIONS(5028), + [sym__boz_literal] = ACTIONS(5028), + [sym__string_literal] = ACTIONS(5028), + [sym__string_literal_kind] = ACTIONS(5028), + }, + [1455] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_end_program_statement_token2] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_subroutine_call_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_keyword_statement_token4] = ACTIONS(4986), + [aux_sym_keyword_statement_token6] = ACTIONS(4986), + [aux_sym_keyword_statement_token7] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym_do_loop_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym__inline_where_statement_token1] = ACTIONS(4986), + [aux_sym__forall_control_expression_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token3] = ACTIONS(4986), + [aux_sym_select_type_statement_token1] = ACTIONS(4986), + [aux_sym_select_rank_statement_token2] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_associate_statement_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_print_statement_token1] = ACTIONS(4986), + [aux_sym_open_statement_token1] = ACTIONS(4986), + [aux_sym_close_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token2] = ACTIONS(4986), + [aux_sym_file_position_statement_token3] = ACTIONS(4986), + [aux_sym_file_position_statement_token4] = ACTIONS(4986), + [aux_sym_allocate_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_logical_expression_token5] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LPAREN_SLASH] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [aux_sym_boolean_literal_token1] = ACTIONS(4988), + [aux_sym_boolean_literal_token2] = ACTIONS(4988), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + [sym__float_literal] = ACTIONS(4988), + [sym__boz_literal] = ACTIONS(4988), + [sym__string_literal] = ACTIONS(4988), + [sym__string_literal_kind] = ACTIONS(4988), + }, + [1456] = { + [aux_sym_preproc_include_token1] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4990), + [aux_sym_end_program_statement_token2] = ACTIONS(4990), + [aux_sym_interface_statement_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_language_binding_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_contains_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token2] = ACTIONS(4990), + [aux_sym_implicit_statement_token1] = ACTIONS(4990), + [aux_sym_implicit_statement_token3] = ACTIONS(4990), + [aux_sym_implicit_statement_token4] = ACTIONS(4990), + [aux_sym_save_statement_token1] = ACTIONS(4990), + [aux_sym_private_statement_token1] = ACTIONS(4990), + [aux_sym_public_statement_token1] = ACTIONS(4990), + [aux_sym_namelist_statement_token1] = ACTIONS(4990), + [aux_sym_common_statement_token1] = ACTIONS(4990), + [aux_sym_import_statement_token1] = ACTIONS(4990), + [aux_sym_derived_type_definition_token1] = ACTIONS(4990), + [aux_sym_abstract_specifier_token1] = ACTIONS(4990), + [aux_sym_procedure_attribute_token6] = ACTIONS(4990), + [aux_sym_variable_attributes_token1] = ACTIONS(4990), + [aux_sym_variable_attributes_token2] = ACTIONS(4990), + [aux_sym_variable_attributes_token3] = ACTIONS(4990), + [aux_sym_variable_attributes_token4] = ACTIONS(4990), + [aux_sym_variable_attributes_token5] = ACTIONS(4990), + [aux_sym__intrinsic_type_token1] = ACTIONS(4990), + [aux_sym__intrinsic_type_token2] = ACTIONS(4990), + [aux_sym__intrinsic_type_token3] = ACTIONS(4990), + [aux_sym__intrinsic_type_token4] = ACTIONS(4990), + [aux_sym__intrinsic_type_token6] = ACTIONS(4990), + [aux_sym__intrinsic_type_token7] = ACTIONS(4990), + [aux_sym__intrinsic_type_token8] = ACTIONS(4990), + [aux_sym__intrinsic_type_token9] = ACTIONS(4990), + [aux_sym__intrinsic_type_token10] = ACTIONS(4990), + [aux_sym_derived_type_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), + [aux_sym_type_qualifier_token1] = ACTIONS(4990), + [aux_sym_type_qualifier_token2] = ACTIONS(4990), + [aux_sym_equivalence_statement_token1] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(4992), + [aux_sym_stop_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token2] = ACTIONS(4990), + [aux_sym_subroutine_call_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token3] = ACTIONS(4990), + [aux_sym_keyword_statement_token4] = ACTIONS(4990), + [aux_sym_keyword_statement_token6] = ACTIONS(4990), + [aux_sym_keyword_statement_token7] = ACTIONS(4990), + [aux_sym_include_statement_token1] = ACTIONS(4990), + [aux_sym_data_statement_token1] = ACTIONS(4990), + [aux_sym_do_loop_statement_token1] = ACTIONS(4990), + [aux_sym__inline_if_statement_token1] = ACTIONS(4990), + [aux_sym_end_if_statement_token1] = ACTIONS(4990), + [aux_sym_elseif_clause_token2] = ACTIONS(4990), + [aux_sym__inline_where_statement_token1] = ACTIONS(4990), + [aux_sym__forall_control_expression_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token3] = ACTIONS(4990), + [aux_sym_select_type_statement_token1] = ACTIONS(4990), + [aux_sym_select_rank_statement_token2] = ACTIONS(4990), + [aux_sym_block_construct_token1] = ACTIONS(4990), + [aux_sym_associate_statement_token1] = ACTIONS(4990), + [aux_sym_format_statement_token1] = ACTIONS(4990), + [aux_sym_print_statement_token1] = ACTIONS(4990), + [aux_sym_open_statement_token1] = ACTIONS(4990), + [aux_sym_close_statement_token1] = ACTIONS(4990), + [aux_sym_inquire_statement_token1] = ACTIONS(4990), + [aux_sym_enum_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token2] = ACTIONS(4990), + [aux_sym_file_position_statement_token3] = ACTIONS(4990), + [aux_sym_file_position_statement_token4] = ACTIONS(4990), + [aux_sym_allocate_statement_token1] = ACTIONS(4990), + [aux_sym_entry_statement_token1] = ACTIONS(4990), + [aux_sym_logical_expression_token5] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_LPAREN_SLASH] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [aux_sym_boolean_literal_token1] = ACTIONS(4992), + [aux_sym_boolean_literal_token2] = ACTIONS(4992), + [aux_sym_null_literal_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token2] = ACTIONS(4990), + [aux_sym_coarray_statement_token6] = ACTIONS(4990), + [aux_sym_coarray_statement_token8] = ACTIONS(4990), + [aux_sym_coarray_statement_token11] = ACTIONS(4990), + [aux_sym_coarray_statement_token12] = ACTIONS(4990), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), + [aux_sym_identifier_token1] = ACTIONS(4990), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4992), + [sym__float_literal] = ACTIONS(4992), + [sym__boz_literal] = ACTIONS(4992), + [sym__string_literal] = ACTIONS(4992), + [sym__string_literal_kind] = ACTIONS(4992), + }, + [1457] = { [aux_sym_preproc_include_token1] = ACTIONS(5434), [aux_sym_preproc_def_token1] = ACTIONS(5434), [aux_sym_preproc_if_token1] = ACTIONS(5434), @@ -287917,2898 +284167,2773 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5436), [sym__string_literal_kind] = ACTIONS(5436), }, - [1488] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [1458] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_subroutine_call_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_keyword_statement_token4] = ACTIONS(4998), + [aux_sym_keyword_statement_token6] = ACTIONS(4998), + [aux_sym_keyword_statement_token7] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym_do_loop_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym__inline_where_statement_token1] = ACTIONS(4998), + [aux_sym__forall_control_expression_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token3] = ACTIONS(4998), + [aux_sym_select_type_statement_token1] = ACTIONS(4998), + [aux_sym_select_rank_statement_token2] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_associate_statement_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_print_statement_token1] = ACTIONS(4998), + [aux_sym_open_statement_token1] = ACTIONS(4998), + [aux_sym_close_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token2] = ACTIONS(4998), + [aux_sym_file_position_statement_token3] = ACTIONS(4998), + [aux_sym_file_position_statement_token4] = ACTIONS(4998), + [aux_sym_allocate_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [aux_sym_boolean_literal_token1] = ACTIONS(5000), + [aux_sym_boolean_literal_token2] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + [sym__float_literal] = ACTIONS(5000), + [sym__boz_literal] = ACTIONS(5000), + [sym__string_literal] = ACTIONS(5000), + [sym__string_literal_kind] = ACTIONS(5000), }, - [1489] = { - [aux_sym_preproc_include_token1] = ACTIONS(5410), - [aux_sym_preproc_def_token1] = ACTIONS(5410), - [aux_sym_preproc_if_token1] = ACTIONS(5410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5410), - [sym_preproc_directive] = ACTIONS(5410), - [anon_sym_LPAREN2] = ACTIONS(5410), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_DASH] = ACTIONS(5412), + [1459] = { + [aux_sym_preproc_include_token1] = ACTIONS(5081), + [aux_sym_preproc_def_token1] = ACTIONS(5081), + [aux_sym_preproc_if_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), + [sym_preproc_directive] = ACTIONS(5081), + [anon_sym_LPAREN2] = ACTIONS(5081), + [anon_sym_PLUS] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5410), - [aux_sym_interface_statement_token1] = ACTIONS(5410), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5410), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5410), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5410), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5410), - [aux_sym_language_binding_token1] = ACTIONS(5410), - [aux_sym_procedure_attributes_token1] = ACTIONS(5410), - [aux_sym_procedure_attributes_token3] = ACTIONS(5410), - [aux_sym_contains_statement_token1] = ACTIONS(5410), - [aux_sym_use_statement_token1] = ACTIONS(5410), - [aux_sym_use_statement_token2] = ACTIONS(5410), - [aux_sym_implicit_statement_token1] = ACTIONS(5410), - [aux_sym_implicit_statement_token3] = ACTIONS(5410), - [aux_sym_implicit_statement_token4] = ACTIONS(5410), - [aux_sym_save_statement_token1] = ACTIONS(5410), - [aux_sym_private_statement_token1] = ACTIONS(5410), - [aux_sym_public_statement_token1] = ACTIONS(5410), - [aux_sym_namelist_statement_token1] = ACTIONS(5410), - [aux_sym_common_statement_token1] = ACTIONS(5410), - [aux_sym_import_statement_token1] = ACTIONS(5410), - [aux_sym_derived_type_definition_token1] = ACTIONS(5410), - [aux_sym_abstract_specifier_token1] = ACTIONS(5410), - [aux_sym_procedure_attribute_token6] = ACTIONS(5410), - [aux_sym_variable_attributes_token1] = ACTIONS(5410), - [aux_sym_variable_attributes_token2] = ACTIONS(5410), - [aux_sym_variable_attributes_token3] = ACTIONS(5410), - [aux_sym_variable_attributes_token4] = ACTIONS(5410), - [aux_sym_variable_attributes_token5] = ACTIONS(5410), - [aux_sym__intrinsic_type_token1] = ACTIONS(5410), - [aux_sym__intrinsic_type_token2] = ACTIONS(5410), - [aux_sym__intrinsic_type_token3] = ACTIONS(5410), - [aux_sym__intrinsic_type_token4] = ACTIONS(5410), - [aux_sym__intrinsic_type_token6] = ACTIONS(5410), - [aux_sym__intrinsic_type_token7] = ACTIONS(5410), - [aux_sym__intrinsic_type_token8] = ACTIONS(5410), - [aux_sym__intrinsic_type_token9] = ACTIONS(5410), - [aux_sym__intrinsic_type_token10] = ACTIONS(5410), - [aux_sym_derived_type_token1] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5410), - [aux_sym_type_qualifier_token1] = ACTIONS(5410), - [aux_sym_type_qualifier_token2] = ACTIONS(5410), - [aux_sym_equivalence_statement_token1] = ACTIONS(5410), - [anon_sym_SEMI] = ACTIONS(5412), - [aux_sym_stop_statement_token1] = ACTIONS(5410), - [aux_sym_stop_statement_token2] = ACTIONS(5410), - [aux_sym_subroutine_call_token1] = ACTIONS(5410), - [aux_sym_keyword_statement_token1] = ACTIONS(5410), - [aux_sym_keyword_statement_token2] = ACTIONS(5410), - [aux_sym_keyword_statement_token3] = ACTIONS(5410), - [aux_sym_keyword_statement_token4] = ACTIONS(5410), - [aux_sym_keyword_statement_token6] = ACTIONS(5410), - [aux_sym_keyword_statement_token7] = ACTIONS(5410), - [aux_sym_include_statement_token1] = ACTIONS(5410), - [aux_sym_data_statement_token1] = ACTIONS(5410), - [aux_sym_do_loop_statement_token1] = ACTIONS(5410), - [aux_sym__inline_if_statement_token1] = ACTIONS(5410), - [aux_sym_end_if_statement_token1] = ACTIONS(5410), - [aux_sym_elseif_clause_token2] = ACTIONS(5410), - [aux_sym__inline_where_statement_token1] = ACTIONS(5410), - [aux_sym__forall_control_expression_token1] = ACTIONS(5410), - [aux_sym_select_case_statement_token1] = ACTIONS(5410), - [aux_sym_select_case_statement_token3] = ACTIONS(5410), - [aux_sym_select_type_statement_token1] = ACTIONS(5410), - [aux_sym_select_rank_statement_token2] = ACTIONS(5410), - [aux_sym_block_construct_token1] = ACTIONS(5410), - [aux_sym_associate_statement_token1] = ACTIONS(5410), - [aux_sym_format_statement_token1] = ACTIONS(5410), - [aux_sym_print_statement_token1] = ACTIONS(5410), - [aux_sym_open_statement_token1] = ACTIONS(5410), - [aux_sym_close_statement_token1] = ACTIONS(5410), - [aux_sym_inquire_statement_token1] = ACTIONS(5410), - [aux_sym_enum_statement_token1] = ACTIONS(5410), - [aux_sym_file_position_statement_token1] = ACTIONS(5410), - [aux_sym_file_position_statement_token2] = ACTIONS(5410), - [aux_sym_file_position_statement_token3] = ACTIONS(5410), - [aux_sym_file_position_statement_token4] = ACTIONS(5410), - [aux_sym_allocate_statement_token1] = ACTIONS(5410), - [aux_sym_entry_statement_token1] = ACTIONS(5410), - [aux_sym_logical_expression_token5] = ACTIONS(5412), - [anon_sym_DOT] = ACTIONS(5410), - [anon_sym_LPAREN_SLASH] = ACTIONS(5412), - [anon_sym_LBRACK] = ACTIONS(5412), - [aux_sym_boolean_literal_token1] = ACTIONS(5412), - [aux_sym_boolean_literal_token2] = ACTIONS(5412), - [aux_sym_null_literal_token1] = ACTIONS(5410), - [aux_sym_coarray_statement_token1] = ACTIONS(5410), - [aux_sym_coarray_statement_token2] = ACTIONS(5410), - [aux_sym_coarray_statement_token6] = ACTIONS(5410), - [aux_sym_coarray_statement_token8] = ACTIONS(5410), - [aux_sym_coarray_statement_token11] = ACTIONS(5410), - [aux_sym_coarray_statement_token12] = ACTIONS(5410), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5410), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5410), - [aux_sym_identifier_token1] = ACTIONS(5410), + [aux_sym_end_program_statement_token1] = ACTIONS(5081), + [aux_sym_end_program_statement_token2] = ACTIONS(5081), + [aux_sym_interface_statement_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), + [aux_sym_language_binding_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token3] = ACTIONS(5081), + [aux_sym_contains_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token2] = ACTIONS(5081), + [aux_sym_implicit_statement_token1] = ACTIONS(5081), + [aux_sym_implicit_statement_token3] = ACTIONS(5081), + [aux_sym_implicit_statement_token4] = ACTIONS(5081), + [aux_sym_save_statement_token1] = ACTIONS(5081), + [aux_sym_private_statement_token1] = ACTIONS(5081), + [aux_sym_public_statement_token1] = ACTIONS(5081), + [aux_sym_namelist_statement_token1] = ACTIONS(5081), + [aux_sym_common_statement_token1] = ACTIONS(5081), + [aux_sym_import_statement_token1] = ACTIONS(5081), + [aux_sym_derived_type_definition_token1] = ACTIONS(5081), + [aux_sym_abstract_specifier_token1] = ACTIONS(5081), + [aux_sym_procedure_attribute_token6] = ACTIONS(5081), + [aux_sym_variable_attributes_token1] = ACTIONS(5081), + [aux_sym_variable_attributes_token2] = ACTIONS(5081), + [aux_sym_variable_attributes_token3] = ACTIONS(5081), + [aux_sym_variable_attributes_token4] = ACTIONS(5081), + [aux_sym_variable_attributes_token5] = ACTIONS(5081), + [aux_sym__intrinsic_type_token1] = ACTIONS(5081), + [aux_sym__intrinsic_type_token2] = ACTIONS(5081), + [aux_sym__intrinsic_type_token3] = ACTIONS(5081), + [aux_sym__intrinsic_type_token4] = ACTIONS(5081), + [aux_sym__intrinsic_type_token6] = ACTIONS(5081), + [aux_sym__intrinsic_type_token7] = ACTIONS(5081), + [aux_sym__intrinsic_type_token8] = ACTIONS(5081), + [aux_sym__intrinsic_type_token9] = ACTIONS(5081), + [aux_sym__intrinsic_type_token10] = ACTIONS(5081), + [aux_sym_derived_type_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), + [aux_sym_type_qualifier_token1] = ACTIONS(5081), + [aux_sym_type_qualifier_token2] = ACTIONS(5081), + [aux_sym_equivalence_statement_token1] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [aux_sym_stop_statement_token1] = ACTIONS(5081), + [aux_sym_stop_statement_token2] = ACTIONS(5081), + [aux_sym_subroutine_call_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token2] = ACTIONS(5081), + [aux_sym_keyword_statement_token3] = ACTIONS(5081), + [aux_sym_keyword_statement_token4] = ACTIONS(5081), + [aux_sym_keyword_statement_token6] = ACTIONS(5081), + [aux_sym_keyword_statement_token7] = ACTIONS(5081), + [aux_sym_include_statement_token1] = ACTIONS(5081), + [aux_sym_data_statement_token1] = ACTIONS(5081), + [aux_sym_do_loop_statement_token1] = ACTIONS(5081), + [aux_sym__inline_if_statement_token1] = ACTIONS(5081), + [aux_sym_end_if_statement_token1] = ACTIONS(5081), + [aux_sym_elseif_clause_token2] = ACTIONS(5081), + [aux_sym__inline_where_statement_token1] = ACTIONS(5081), + [aux_sym__forall_control_expression_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token3] = ACTIONS(5081), + [aux_sym_select_type_statement_token1] = ACTIONS(5081), + [aux_sym_select_rank_statement_token2] = ACTIONS(5081), + [aux_sym_block_construct_token1] = ACTIONS(5081), + [aux_sym_associate_statement_token1] = ACTIONS(5081), + [aux_sym_format_statement_token1] = ACTIONS(5081), + [aux_sym_print_statement_token1] = ACTIONS(5081), + [aux_sym_open_statement_token1] = ACTIONS(5081), + [aux_sym_close_statement_token1] = ACTIONS(5081), + [aux_sym_inquire_statement_token1] = ACTIONS(5081), + [aux_sym_enum_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token2] = ACTIONS(5081), + [aux_sym_file_position_statement_token3] = ACTIONS(5081), + [aux_sym_file_position_statement_token4] = ACTIONS(5081), + [aux_sym_allocate_statement_token1] = ACTIONS(5081), + [aux_sym_entry_statement_token1] = ACTIONS(5081), + [aux_sym_logical_expression_token5] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_LPAREN_SLASH] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [aux_sym_boolean_literal_token1] = ACTIONS(5083), + [aux_sym_boolean_literal_token2] = ACTIONS(5083), + [aux_sym_null_literal_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token2] = ACTIONS(5081), + [aux_sym_coarray_statement_token6] = ACTIONS(5081), + [aux_sym_coarray_statement_token8] = ACTIONS(5081), + [aux_sym_coarray_statement_token11] = ACTIONS(5081), + [aux_sym_coarray_statement_token12] = ACTIONS(5081), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), + [aux_sym_identifier_token1] = ACTIONS(5081), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5412), - [sym__float_literal] = ACTIONS(5412), - [sym__boz_literal] = ACTIONS(5412), - [sym__string_literal] = ACTIONS(5412), - [sym__string_literal_kind] = ACTIONS(5412), - }, - [1490] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [sym__integer_literal] = ACTIONS(5083), + [sym__float_literal] = ACTIONS(5083), + [sym__boz_literal] = ACTIONS(5083), + [sym__string_literal] = ACTIONS(5083), + [sym__string_literal_kind] = ACTIONS(5083), }, - [1491] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [1460] = { + [aux_sym_preproc_include_token1] = ACTIONS(5438), + [aux_sym_preproc_def_token1] = ACTIONS(5438), + [aux_sym_preproc_if_token1] = ACTIONS(5438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5438), + [sym_preproc_directive] = ACTIONS(5438), + [anon_sym_LPAREN2] = ACTIONS(5438), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_DASH] = ACTIONS(5440), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_end_program_statement_token2] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token1] = ACTIONS(5438), + [aux_sym_interface_statement_token1] = ACTIONS(5438), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5438), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5438), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5438), + [aux_sym_language_binding_token1] = ACTIONS(5438), + [aux_sym_procedure_attributes_token1] = ACTIONS(5438), + [aux_sym_procedure_attributes_token3] = ACTIONS(5438), + [aux_sym_end_function_statement_token1] = ACTIONS(5438), + [aux_sym_contains_statement_token1] = ACTIONS(5438), + [aux_sym_use_statement_token1] = ACTIONS(5438), + [aux_sym_use_statement_token2] = ACTIONS(5438), + [aux_sym_implicit_statement_token1] = ACTIONS(5438), + [aux_sym_implicit_statement_token3] = ACTIONS(5438), + [aux_sym_implicit_statement_token4] = ACTIONS(5438), + [aux_sym_save_statement_token1] = ACTIONS(5438), + [aux_sym_private_statement_token1] = ACTIONS(5438), + [aux_sym_public_statement_token1] = ACTIONS(5438), + [aux_sym_namelist_statement_token1] = ACTIONS(5438), + [aux_sym_common_statement_token1] = ACTIONS(5438), + [aux_sym_import_statement_token1] = ACTIONS(5438), + [aux_sym_derived_type_definition_token1] = ACTIONS(5438), + [aux_sym_abstract_specifier_token1] = ACTIONS(5438), + [aux_sym_procedure_attribute_token6] = ACTIONS(5438), + [aux_sym_variable_attributes_token1] = ACTIONS(5438), + [aux_sym_variable_attributes_token2] = ACTIONS(5438), + [aux_sym_variable_attributes_token3] = ACTIONS(5438), + [aux_sym_variable_attributes_token4] = ACTIONS(5438), + [aux_sym_variable_attributes_token5] = ACTIONS(5438), + [aux_sym__intrinsic_type_token1] = ACTIONS(5438), + [aux_sym__intrinsic_type_token2] = ACTIONS(5438), + [aux_sym__intrinsic_type_token3] = ACTIONS(5438), + [aux_sym__intrinsic_type_token4] = ACTIONS(5438), + [aux_sym__intrinsic_type_token6] = ACTIONS(5438), + [aux_sym__intrinsic_type_token7] = ACTIONS(5438), + [aux_sym__intrinsic_type_token8] = ACTIONS(5438), + [aux_sym__intrinsic_type_token9] = ACTIONS(5438), + [aux_sym__intrinsic_type_token10] = ACTIONS(5438), + [aux_sym_derived_type_token1] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5438), + [aux_sym_type_qualifier_token1] = ACTIONS(5438), + [aux_sym_type_qualifier_token2] = ACTIONS(5438), + [aux_sym_equivalence_statement_token1] = ACTIONS(5438), + [anon_sym_SEMI] = ACTIONS(5440), + [aux_sym_stop_statement_token1] = ACTIONS(5438), + [aux_sym_stop_statement_token2] = ACTIONS(5438), + [aux_sym_subroutine_call_token1] = ACTIONS(5438), + [aux_sym_keyword_statement_token1] = ACTIONS(5438), + [aux_sym_keyword_statement_token2] = ACTIONS(5438), + [aux_sym_keyword_statement_token3] = ACTIONS(5438), + [aux_sym_keyword_statement_token4] = ACTIONS(5438), + [aux_sym_keyword_statement_token6] = ACTIONS(5438), + [aux_sym_keyword_statement_token7] = ACTIONS(5438), + [aux_sym_include_statement_token1] = ACTIONS(5438), + [aux_sym_data_statement_token1] = ACTIONS(5438), + [aux_sym_do_loop_statement_token1] = ACTIONS(5438), + [aux_sym__inline_if_statement_token1] = ACTIONS(5438), + [aux_sym_end_if_statement_token1] = ACTIONS(5438), + [aux_sym_elseif_clause_token2] = ACTIONS(5438), + [aux_sym__inline_where_statement_token1] = ACTIONS(5438), + [aux_sym__forall_control_expression_token1] = ACTIONS(5438), + [aux_sym_select_case_statement_token1] = ACTIONS(5438), + [aux_sym_select_case_statement_token3] = ACTIONS(5438), + [aux_sym_select_type_statement_token1] = ACTIONS(5438), + [aux_sym_select_rank_statement_token2] = ACTIONS(5438), + [aux_sym_block_construct_token1] = ACTIONS(5438), + [aux_sym_associate_statement_token1] = ACTIONS(5438), + [aux_sym_format_statement_token1] = ACTIONS(5438), + [aux_sym_print_statement_token1] = ACTIONS(5438), + [aux_sym_open_statement_token1] = ACTIONS(5438), + [aux_sym_close_statement_token1] = ACTIONS(5438), + [aux_sym_inquire_statement_token1] = ACTIONS(5438), + [aux_sym_enum_statement_token1] = ACTIONS(5438), + [aux_sym_file_position_statement_token1] = ACTIONS(5438), + [aux_sym_file_position_statement_token2] = ACTIONS(5438), + [aux_sym_file_position_statement_token3] = ACTIONS(5438), + [aux_sym_file_position_statement_token4] = ACTIONS(5438), + [aux_sym_allocate_statement_token1] = ACTIONS(5438), + [aux_sym_entry_statement_token1] = ACTIONS(5438), + [aux_sym_logical_expression_token5] = ACTIONS(5440), + [anon_sym_DOT] = ACTIONS(5438), + [anon_sym_LPAREN_SLASH] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5440), + [aux_sym_boolean_literal_token1] = ACTIONS(5440), + [aux_sym_boolean_literal_token2] = ACTIONS(5440), + [aux_sym_null_literal_token1] = ACTIONS(5438), + [aux_sym_coarray_statement_token1] = ACTIONS(5438), + [aux_sym_coarray_statement_token2] = ACTIONS(5438), + [aux_sym_coarray_statement_token6] = ACTIONS(5438), + [aux_sym_coarray_statement_token8] = ACTIONS(5438), + [aux_sym_coarray_statement_token11] = ACTIONS(5438), + [aux_sym_coarray_statement_token12] = ACTIONS(5438), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5438), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5438), + [aux_sym_identifier_token1] = ACTIONS(5438), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [sym__integer_literal] = ACTIONS(5440), + [sym__float_literal] = ACTIONS(5440), + [sym__boz_literal] = ACTIONS(5440), + [sym__string_literal] = ACTIONS(5440), + [sym__string_literal_kind] = ACTIONS(5440), }, - [1492] = { - [aux_sym_preproc_include_token1] = ACTIONS(5418), - [aux_sym_preproc_def_token1] = ACTIONS(5418), - [aux_sym_preproc_if_token1] = ACTIONS(5418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5418), - [sym_preproc_directive] = ACTIONS(5418), - [anon_sym_LPAREN2] = ACTIONS(5418), - [anon_sym_PLUS] = ACTIONS(5420), - [anon_sym_DASH] = ACTIONS(5420), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5418), - [aux_sym_end_program_statement_token2] = ACTIONS(5418), - [aux_sym_interface_statement_token1] = ACTIONS(5418), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5418), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5418), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5418), - [aux_sym_language_binding_token1] = ACTIONS(5418), - [aux_sym_procedure_attributes_token1] = ACTIONS(5418), - [aux_sym_procedure_attributes_token3] = ACTIONS(5418), - [aux_sym_contains_statement_token1] = ACTIONS(5418), - [aux_sym_use_statement_token1] = ACTIONS(5418), - [aux_sym_use_statement_token2] = ACTIONS(5418), - [aux_sym_implicit_statement_token1] = ACTIONS(5418), - [aux_sym_implicit_statement_token3] = ACTIONS(5418), - [aux_sym_implicit_statement_token4] = ACTIONS(5418), - [aux_sym_save_statement_token1] = ACTIONS(5418), - [aux_sym_private_statement_token1] = ACTIONS(5418), - [aux_sym_public_statement_token1] = ACTIONS(5418), - [aux_sym_namelist_statement_token1] = ACTIONS(5418), - [aux_sym_common_statement_token1] = ACTIONS(5418), - [aux_sym_import_statement_token1] = ACTIONS(5418), - [aux_sym_derived_type_definition_token1] = ACTIONS(5418), - [aux_sym_abstract_specifier_token1] = ACTIONS(5418), - [aux_sym_procedure_attribute_token6] = ACTIONS(5418), - [aux_sym_variable_attributes_token1] = ACTIONS(5418), - [aux_sym_variable_attributes_token2] = ACTIONS(5418), - [aux_sym_variable_attributes_token3] = ACTIONS(5418), - [aux_sym_variable_attributes_token4] = ACTIONS(5418), - [aux_sym_variable_attributes_token5] = ACTIONS(5418), - [aux_sym__intrinsic_type_token1] = ACTIONS(5418), - [aux_sym__intrinsic_type_token2] = ACTIONS(5418), - [aux_sym__intrinsic_type_token3] = ACTIONS(5418), - [aux_sym__intrinsic_type_token4] = ACTIONS(5418), - [aux_sym__intrinsic_type_token6] = ACTIONS(5418), - [aux_sym__intrinsic_type_token7] = ACTIONS(5418), - [aux_sym__intrinsic_type_token8] = ACTIONS(5418), - [aux_sym__intrinsic_type_token9] = ACTIONS(5418), - [aux_sym__intrinsic_type_token10] = ACTIONS(5418), - [aux_sym_derived_type_token1] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5418), - [aux_sym_type_qualifier_token1] = ACTIONS(5418), - [aux_sym_type_qualifier_token2] = ACTIONS(5418), - [aux_sym_equivalence_statement_token1] = ACTIONS(5418), - [anon_sym_SEMI] = ACTIONS(5420), - [aux_sym_stop_statement_token1] = ACTIONS(5418), - [aux_sym_stop_statement_token2] = ACTIONS(5418), - [aux_sym_subroutine_call_token1] = ACTIONS(5418), - [aux_sym_keyword_statement_token1] = ACTIONS(5418), - [aux_sym_keyword_statement_token2] = ACTIONS(5418), - [aux_sym_keyword_statement_token3] = ACTIONS(5418), - [aux_sym_keyword_statement_token4] = ACTIONS(5418), - [aux_sym_keyword_statement_token6] = ACTIONS(5418), - [aux_sym_keyword_statement_token7] = ACTIONS(5418), - [aux_sym_include_statement_token1] = ACTIONS(5418), - [aux_sym_data_statement_token1] = ACTIONS(5418), - [aux_sym_do_loop_statement_token1] = ACTIONS(5418), - [aux_sym__inline_if_statement_token1] = ACTIONS(5418), - [aux_sym_end_if_statement_token1] = ACTIONS(5418), - [aux_sym_elseif_clause_token2] = ACTIONS(5418), - [aux_sym__inline_where_statement_token1] = ACTIONS(5418), - [aux_sym__forall_control_expression_token1] = ACTIONS(5418), - [aux_sym_select_case_statement_token1] = ACTIONS(5418), - [aux_sym_select_case_statement_token3] = ACTIONS(5418), - [aux_sym_select_type_statement_token1] = ACTIONS(5418), - [aux_sym_select_rank_statement_token2] = ACTIONS(5418), - [aux_sym_block_construct_token1] = ACTIONS(5418), - [aux_sym_associate_statement_token1] = ACTIONS(5418), - [aux_sym_format_statement_token1] = ACTIONS(5418), - [aux_sym_print_statement_token1] = ACTIONS(5418), - [aux_sym_open_statement_token1] = ACTIONS(5418), - [aux_sym_close_statement_token1] = ACTIONS(5418), - [aux_sym_inquire_statement_token1] = ACTIONS(5418), - [aux_sym_enum_statement_token1] = ACTIONS(5418), - [aux_sym_file_position_statement_token1] = ACTIONS(5418), - [aux_sym_file_position_statement_token2] = ACTIONS(5418), - [aux_sym_file_position_statement_token3] = ACTIONS(5418), - [aux_sym_file_position_statement_token4] = ACTIONS(5418), - [aux_sym_allocate_statement_token1] = ACTIONS(5418), - [aux_sym_entry_statement_token1] = ACTIONS(5418), - [aux_sym_logical_expression_token5] = ACTIONS(5420), - [anon_sym_DOT] = ACTIONS(5418), - [anon_sym_LPAREN_SLASH] = ACTIONS(5420), - [anon_sym_LBRACK] = ACTIONS(5420), - [aux_sym_boolean_literal_token1] = ACTIONS(5420), - [aux_sym_boolean_literal_token2] = ACTIONS(5420), - [aux_sym_null_literal_token1] = ACTIONS(5418), - [aux_sym_coarray_statement_token1] = ACTIONS(5418), - [aux_sym_coarray_statement_token2] = ACTIONS(5418), - [aux_sym_coarray_statement_token6] = ACTIONS(5418), - [aux_sym_coarray_statement_token8] = ACTIONS(5418), - [aux_sym_coarray_statement_token11] = ACTIONS(5418), - [aux_sym_coarray_statement_token12] = ACTIONS(5418), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5418), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5418), - [aux_sym_identifier_token1] = ACTIONS(5418), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5420), - [sym__float_literal] = ACTIONS(5420), - [sym__boz_literal] = ACTIONS(5420), - [sym__string_literal] = ACTIONS(5420), - [sym__string_literal_kind] = ACTIONS(5420), + [1461] = { + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, - [1493] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [1462] = { + [aux_sym_preproc_include_token1] = ACTIONS(5402), + [aux_sym_preproc_def_token1] = ACTIONS(5402), + [aux_sym_preproc_if_token1] = ACTIONS(5402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5402), + [sym_preproc_directive] = ACTIONS(5402), + [anon_sym_LPAREN2] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token1] = ACTIONS(5402), + [aux_sym_end_program_statement_token2] = ACTIONS(5402), + [aux_sym_interface_statement_token1] = ACTIONS(5402), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5402), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5402), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5402), + [aux_sym_language_binding_token1] = ACTIONS(5402), + [aux_sym_procedure_attributes_token1] = ACTIONS(5402), + [aux_sym_procedure_attributes_token3] = ACTIONS(5402), + [aux_sym_contains_statement_token1] = ACTIONS(5402), + [aux_sym_use_statement_token1] = ACTIONS(5402), + [aux_sym_use_statement_token2] = ACTIONS(5402), + [aux_sym_implicit_statement_token1] = ACTIONS(5402), + [aux_sym_implicit_statement_token3] = ACTIONS(5402), + [aux_sym_implicit_statement_token4] = ACTIONS(5402), + [aux_sym_save_statement_token1] = ACTIONS(5402), + [aux_sym_private_statement_token1] = ACTIONS(5402), + [aux_sym_public_statement_token1] = ACTIONS(5402), + [aux_sym_namelist_statement_token1] = ACTIONS(5402), + [aux_sym_common_statement_token1] = ACTIONS(5402), + [aux_sym_import_statement_token1] = ACTIONS(5402), + [aux_sym_derived_type_definition_token1] = ACTIONS(5402), + [aux_sym_abstract_specifier_token1] = ACTIONS(5402), + [aux_sym_procedure_attribute_token6] = ACTIONS(5402), + [aux_sym_variable_attributes_token1] = ACTIONS(5402), + [aux_sym_variable_attributes_token2] = ACTIONS(5402), + [aux_sym_variable_attributes_token3] = ACTIONS(5402), + [aux_sym_variable_attributes_token4] = ACTIONS(5402), + [aux_sym_variable_attributes_token5] = ACTIONS(5402), + [aux_sym__intrinsic_type_token1] = ACTIONS(5402), + [aux_sym__intrinsic_type_token2] = ACTIONS(5402), + [aux_sym__intrinsic_type_token3] = ACTIONS(5402), + [aux_sym__intrinsic_type_token4] = ACTIONS(5402), + [aux_sym__intrinsic_type_token6] = ACTIONS(5402), + [aux_sym__intrinsic_type_token7] = ACTIONS(5402), + [aux_sym__intrinsic_type_token8] = ACTIONS(5402), + [aux_sym__intrinsic_type_token9] = ACTIONS(5402), + [aux_sym__intrinsic_type_token10] = ACTIONS(5402), + [aux_sym_derived_type_token1] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5402), + [aux_sym_type_qualifier_token1] = ACTIONS(5402), + [aux_sym_type_qualifier_token2] = ACTIONS(5402), + [aux_sym_equivalence_statement_token1] = ACTIONS(5402), + [anon_sym_SEMI] = ACTIONS(5404), + [aux_sym_stop_statement_token1] = ACTIONS(5402), + [aux_sym_stop_statement_token2] = ACTIONS(5402), + [aux_sym_subroutine_call_token1] = ACTIONS(5402), + [aux_sym_keyword_statement_token1] = ACTIONS(5402), + [aux_sym_keyword_statement_token2] = ACTIONS(5402), + [aux_sym_keyword_statement_token3] = ACTIONS(5402), + [aux_sym_keyword_statement_token4] = ACTIONS(5402), + [aux_sym_keyword_statement_token6] = ACTIONS(5402), + [aux_sym_keyword_statement_token7] = ACTIONS(5402), + [aux_sym_include_statement_token1] = ACTIONS(5402), + [aux_sym_data_statement_token1] = ACTIONS(5402), + [aux_sym_do_loop_statement_token1] = ACTIONS(5402), + [aux_sym__inline_if_statement_token1] = ACTIONS(5402), + [aux_sym_end_if_statement_token1] = ACTIONS(5402), + [aux_sym_elseif_clause_token2] = ACTIONS(5402), + [aux_sym__inline_where_statement_token1] = ACTIONS(5402), + [aux_sym__forall_control_expression_token1] = ACTIONS(5402), + [aux_sym_select_case_statement_token1] = ACTIONS(5402), + [aux_sym_select_case_statement_token3] = ACTIONS(5402), + [aux_sym_select_type_statement_token1] = ACTIONS(5402), + [aux_sym_select_rank_statement_token2] = ACTIONS(5402), + [aux_sym_block_construct_token1] = ACTIONS(5402), + [aux_sym_associate_statement_token1] = ACTIONS(5402), + [aux_sym_format_statement_token1] = ACTIONS(5402), + [aux_sym_print_statement_token1] = ACTIONS(5402), + [aux_sym_open_statement_token1] = ACTIONS(5402), + [aux_sym_close_statement_token1] = ACTIONS(5402), + [aux_sym_inquire_statement_token1] = ACTIONS(5402), + [aux_sym_enum_statement_token1] = ACTIONS(5402), + [aux_sym_file_position_statement_token1] = ACTIONS(5402), + [aux_sym_file_position_statement_token2] = ACTIONS(5402), + [aux_sym_file_position_statement_token3] = ACTIONS(5402), + [aux_sym_file_position_statement_token4] = ACTIONS(5402), + [aux_sym_allocate_statement_token1] = ACTIONS(5402), + [aux_sym_entry_statement_token1] = ACTIONS(5402), + [aux_sym_logical_expression_token5] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_LPAREN_SLASH] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [aux_sym_boolean_literal_token1] = ACTIONS(5404), + [aux_sym_boolean_literal_token2] = ACTIONS(5404), + [aux_sym_null_literal_token1] = ACTIONS(5402), + [aux_sym_coarray_statement_token1] = ACTIONS(5402), + [aux_sym_coarray_statement_token2] = ACTIONS(5402), + [aux_sym_coarray_statement_token6] = ACTIONS(5402), + [aux_sym_coarray_statement_token8] = ACTIONS(5402), + [aux_sym_coarray_statement_token11] = ACTIONS(5402), + [aux_sym_coarray_statement_token12] = ACTIONS(5402), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5402), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5402), + [aux_sym_identifier_token1] = ACTIONS(5402), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [sym__integer_literal] = ACTIONS(5404), + [sym__float_literal] = ACTIONS(5404), + [sym__boz_literal] = ACTIONS(5404), + [sym__string_literal] = ACTIONS(5404), + [sym__string_literal_kind] = ACTIONS(5404), }, - [1494] = { - [aux_sym_preproc_include_token1] = ACTIONS(5418), - [aux_sym_preproc_def_token1] = ACTIONS(5418), - [aux_sym_preproc_if_token1] = ACTIONS(5418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5418), - [sym_preproc_directive] = ACTIONS(5418), - [anon_sym_LPAREN2] = ACTIONS(5418), - [anon_sym_PLUS] = ACTIONS(5420), - [anon_sym_DASH] = ACTIONS(5420), + [1463] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5418), - [aux_sym_interface_statement_token1] = ACTIONS(5418), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5418), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5418), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5418), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5418), - [aux_sym_language_binding_token1] = ACTIONS(5418), - [aux_sym_procedure_attributes_token1] = ACTIONS(5418), - [aux_sym_procedure_attributes_token3] = ACTIONS(5418), - [aux_sym_contains_statement_token1] = ACTIONS(5418), - [aux_sym_use_statement_token1] = ACTIONS(5418), - [aux_sym_use_statement_token2] = ACTIONS(5418), - [aux_sym_implicit_statement_token1] = ACTIONS(5418), - [aux_sym_implicit_statement_token3] = ACTIONS(5418), - [aux_sym_implicit_statement_token4] = ACTIONS(5418), - [aux_sym_save_statement_token1] = ACTIONS(5418), - [aux_sym_private_statement_token1] = ACTIONS(5418), - [aux_sym_public_statement_token1] = ACTIONS(5418), - [aux_sym_namelist_statement_token1] = ACTIONS(5418), - [aux_sym_common_statement_token1] = ACTIONS(5418), - [aux_sym_import_statement_token1] = ACTIONS(5418), - [aux_sym_derived_type_definition_token1] = ACTIONS(5418), - [aux_sym_abstract_specifier_token1] = ACTIONS(5418), - [aux_sym_procedure_attribute_token6] = ACTIONS(5418), - [aux_sym_variable_attributes_token1] = ACTIONS(5418), - [aux_sym_variable_attributes_token2] = ACTIONS(5418), - [aux_sym_variable_attributes_token3] = ACTIONS(5418), - [aux_sym_variable_attributes_token4] = ACTIONS(5418), - [aux_sym_variable_attributes_token5] = ACTIONS(5418), - [aux_sym__intrinsic_type_token1] = ACTIONS(5418), - [aux_sym__intrinsic_type_token2] = ACTIONS(5418), - [aux_sym__intrinsic_type_token3] = ACTIONS(5418), - [aux_sym__intrinsic_type_token4] = ACTIONS(5418), - [aux_sym__intrinsic_type_token6] = ACTIONS(5418), - [aux_sym__intrinsic_type_token7] = ACTIONS(5418), - [aux_sym__intrinsic_type_token8] = ACTIONS(5418), - [aux_sym__intrinsic_type_token9] = ACTIONS(5418), - [aux_sym__intrinsic_type_token10] = ACTIONS(5418), - [aux_sym_derived_type_token1] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5418), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5418), - [aux_sym_type_qualifier_token1] = ACTIONS(5418), - [aux_sym_type_qualifier_token2] = ACTIONS(5418), - [aux_sym_equivalence_statement_token1] = ACTIONS(5418), - [anon_sym_SEMI] = ACTIONS(5420), - [aux_sym_stop_statement_token1] = ACTIONS(5418), - [aux_sym_stop_statement_token2] = ACTIONS(5418), - [aux_sym_subroutine_call_token1] = ACTIONS(5418), - [aux_sym_keyword_statement_token1] = ACTIONS(5418), - [aux_sym_keyword_statement_token2] = ACTIONS(5418), - [aux_sym_keyword_statement_token3] = ACTIONS(5418), - [aux_sym_keyword_statement_token4] = ACTIONS(5418), - [aux_sym_keyword_statement_token6] = ACTIONS(5418), - [aux_sym_keyword_statement_token7] = ACTIONS(5418), - [aux_sym_include_statement_token1] = ACTIONS(5418), - [aux_sym_data_statement_token1] = ACTIONS(5418), - [aux_sym_do_loop_statement_token1] = ACTIONS(5418), - [aux_sym__inline_if_statement_token1] = ACTIONS(5418), - [aux_sym_end_if_statement_token1] = ACTIONS(5418), - [aux_sym_elseif_clause_token2] = ACTIONS(5418), - [aux_sym__inline_where_statement_token1] = ACTIONS(5418), - [aux_sym__forall_control_expression_token1] = ACTIONS(5418), - [aux_sym_select_case_statement_token1] = ACTIONS(5418), - [aux_sym_select_case_statement_token3] = ACTIONS(5418), - [aux_sym_select_type_statement_token1] = ACTIONS(5418), - [aux_sym_select_rank_statement_token2] = ACTIONS(5418), - [aux_sym_block_construct_token1] = ACTIONS(5418), - [aux_sym_associate_statement_token1] = ACTIONS(5418), - [aux_sym_format_statement_token1] = ACTIONS(5418), - [aux_sym_print_statement_token1] = ACTIONS(5418), - [aux_sym_open_statement_token1] = ACTIONS(5418), - [aux_sym_close_statement_token1] = ACTIONS(5418), - [aux_sym_inquire_statement_token1] = ACTIONS(5418), - [aux_sym_enum_statement_token1] = ACTIONS(5418), - [aux_sym_file_position_statement_token1] = ACTIONS(5418), - [aux_sym_file_position_statement_token2] = ACTIONS(5418), - [aux_sym_file_position_statement_token3] = ACTIONS(5418), - [aux_sym_file_position_statement_token4] = ACTIONS(5418), - [aux_sym_allocate_statement_token1] = ACTIONS(5418), - [aux_sym_entry_statement_token1] = ACTIONS(5418), - [aux_sym_logical_expression_token5] = ACTIONS(5420), - [anon_sym_DOT] = ACTIONS(5418), - [anon_sym_LPAREN_SLASH] = ACTIONS(5420), - [anon_sym_LBRACK] = ACTIONS(5420), - [aux_sym_boolean_literal_token1] = ACTIONS(5420), - [aux_sym_boolean_literal_token2] = ACTIONS(5420), - [aux_sym_null_literal_token1] = ACTIONS(5418), - [aux_sym_coarray_statement_token1] = ACTIONS(5418), - [aux_sym_coarray_statement_token2] = ACTIONS(5418), - [aux_sym_coarray_statement_token6] = ACTIONS(5418), - [aux_sym_coarray_statement_token8] = ACTIONS(5418), - [aux_sym_coarray_statement_token11] = ACTIONS(5418), - [aux_sym_coarray_statement_token12] = ACTIONS(5418), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5418), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5418), - [aux_sym_identifier_token1] = ACTIONS(5418), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5420), - [sym__float_literal] = ACTIONS(5420), - [sym__boz_literal] = ACTIONS(5420), - [sym__string_literal] = ACTIONS(5420), - [sym__string_literal_kind] = ACTIONS(5420), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), }, - [1495] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [1464] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_end_program_statement_token2] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_subroutine_call_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_keyword_statement_token4] = ACTIONS(5018), + [aux_sym_keyword_statement_token6] = ACTIONS(5018), + [aux_sym_keyword_statement_token7] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym_do_loop_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym__inline_where_statement_token1] = ACTIONS(5018), + [aux_sym__forall_control_expression_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token3] = ACTIONS(5018), + [aux_sym_select_type_statement_token1] = ACTIONS(5018), + [aux_sym_select_rank_statement_token2] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_associate_statement_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_print_statement_token1] = ACTIONS(5018), + [aux_sym_open_statement_token1] = ACTIONS(5018), + [aux_sym_close_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token2] = ACTIONS(5018), + [aux_sym_file_position_statement_token3] = ACTIONS(5018), + [aux_sym_file_position_statement_token4] = ACTIONS(5018), + [aux_sym_allocate_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_logical_expression_token5] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_LPAREN_SLASH] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [aux_sym_boolean_literal_token1] = ACTIONS(5020), + [aux_sym_boolean_literal_token2] = ACTIONS(5020), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + [sym__float_literal] = ACTIONS(5020), + [sym__boz_literal] = ACTIONS(5020), + [sym__string_literal] = ACTIONS(5020), + [sym__string_literal_kind] = ACTIONS(5020), }, - [1496] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_end_program_statement_token2] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [1465] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_end_program_statement_token2] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_subroutine_call_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_keyword_statement_token4] = ACTIONS(5022), + [aux_sym_keyword_statement_token6] = ACTIONS(5022), + [aux_sym_keyword_statement_token7] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym_do_loop_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym__inline_where_statement_token1] = ACTIONS(5022), + [aux_sym__forall_control_expression_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token3] = ACTIONS(5022), + [aux_sym_select_type_statement_token1] = ACTIONS(5022), + [aux_sym_select_rank_statement_token2] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_associate_statement_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_print_statement_token1] = ACTIONS(5022), + [aux_sym_open_statement_token1] = ACTIONS(5022), + [aux_sym_close_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token2] = ACTIONS(5022), + [aux_sym_file_position_statement_token3] = ACTIONS(5022), + [aux_sym_file_position_statement_token4] = ACTIONS(5022), + [aux_sym_allocate_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_logical_expression_token5] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_LPAREN_SLASH] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [aux_sym_boolean_literal_token1] = ACTIONS(5024), + [aux_sym_boolean_literal_token2] = ACTIONS(5024), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + [sym__float_literal] = ACTIONS(5024), + [sym__boz_literal] = ACTIONS(5024), + [sym__string_literal] = ACTIONS(5024), + [sym__string_literal_kind] = ACTIONS(5024), }, - [1497] = { - [aux_sym_preproc_include_token1] = ACTIONS(5414), - [aux_sym_preproc_def_token1] = ACTIONS(5414), - [aux_sym_preproc_if_token1] = ACTIONS(5414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5414), - [sym_preproc_directive] = ACTIONS(5414), - [anon_sym_LPAREN2] = ACTIONS(5414), - [anon_sym_PLUS] = ACTIONS(5416), - [anon_sym_DASH] = ACTIONS(5416), + [1466] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_LPAREN2] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5414), - [aux_sym_end_program_statement_token2] = ACTIONS(5414), - [aux_sym_interface_statement_token1] = ACTIONS(5414), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5414), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5414), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5414), - [aux_sym_language_binding_token1] = ACTIONS(5414), - [aux_sym_procedure_attributes_token1] = ACTIONS(5414), - [aux_sym_procedure_attributes_token3] = ACTIONS(5414), - [aux_sym_contains_statement_token1] = ACTIONS(5414), - [aux_sym_use_statement_token1] = ACTIONS(5414), - [aux_sym_use_statement_token2] = ACTIONS(5414), - [aux_sym_implicit_statement_token1] = ACTIONS(5414), - [aux_sym_implicit_statement_token3] = ACTIONS(5414), - [aux_sym_implicit_statement_token4] = ACTIONS(5414), - [aux_sym_save_statement_token1] = ACTIONS(5414), - [aux_sym_private_statement_token1] = ACTIONS(5414), - [aux_sym_public_statement_token1] = ACTIONS(5414), - [aux_sym_namelist_statement_token1] = ACTIONS(5414), - [aux_sym_common_statement_token1] = ACTIONS(5414), - [aux_sym_import_statement_token1] = ACTIONS(5414), - [aux_sym_derived_type_definition_token1] = ACTIONS(5414), - [aux_sym_abstract_specifier_token1] = ACTIONS(5414), - [aux_sym_procedure_attribute_token6] = ACTIONS(5414), - [aux_sym_variable_attributes_token1] = ACTIONS(5414), - [aux_sym_variable_attributes_token2] = ACTIONS(5414), - [aux_sym_variable_attributes_token3] = ACTIONS(5414), - [aux_sym_variable_attributes_token4] = ACTIONS(5414), - [aux_sym_variable_attributes_token5] = ACTIONS(5414), - [aux_sym__intrinsic_type_token1] = ACTIONS(5414), - [aux_sym__intrinsic_type_token2] = ACTIONS(5414), - [aux_sym__intrinsic_type_token3] = ACTIONS(5414), - [aux_sym__intrinsic_type_token4] = ACTIONS(5414), - [aux_sym__intrinsic_type_token6] = ACTIONS(5414), - [aux_sym__intrinsic_type_token7] = ACTIONS(5414), - [aux_sym__intrinsic_type_token8] = ACTIONS(5414), - [aux_sym__intrinsic_type_token9] = ACTIONS(5414), - [aux_sym__intrinsic_type_token10] = ACTIONS(5414), - [aux_sym_derived_type_token1] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5414), - [aux_sym_type_qualifier_token1] = ACTIONS(5414), - [aux_sym_type_qualifier_token2] = ACTIONS(5414), - [aux_sym_equivalence_statement_token1] = ACTIONS(5414), - [anon_sym_SEMI] = ACTIONS(5416), - [aux_sym_stop_statement_token1] = ACTIONS(5414), - [aux_sym_stop_statement_token2] = ACTIONS(5414), - [aux_sym_subroutine_call_token1] = ACTIONS(5414), - [aux_sym_keyword_statement_token1] = ACTIONS(5414), - [aux_sym_keyword_statement_token2] = ACTIONS(5414), - [aux_sym_keyword_statement_token3] = ACTIONS(5414), - [aux_sym_keyword_statement_token4] = ACTIONS(5414), - [aux_sym_keyword_statement_token6] = ACTIONS(5414), - [aux_sym_keyword_statement_token7] = ACTIONS(5414), - [aux_sym_include_statement_token1] = ACTIONS(5414), - [aux_sym_data_statement_token1] = ACTIONS(5414), - [aux_sym_do_loop_statement_token1] = ACTIONS(5414), - [aux_sym__inline_if_statement_token1] = ACTIONS(5414), - [aux_sym_end_if_statement_token1] = ACTIONS(5414), - [aux_sym_elseif_clause_token2] = ACTIONS(5414), - [aux_sym__inline_where_statement_token1] = ACTIONS(5414), - [aux_sym__forall_control_expression_token1] = ACTIONS(5414), - [aux_sym_select_case_statement_token1] = ACTIONS(5414), - [aux_sym_select_case_statement_token3] = ACTIONS(5414), - [aux_sym_select_type_statement_token1] = ACTIONS(5414), - [aux_sym_select_rank_statement_token2] = ACTIONS(5414), - [aux_sym_block_construct_token1] = ACTIONS(5414), - [aux_sym_associate_statement_token1] = ACTIONS(5414), - [aux_sym_format_statement_token1] = ACTIONS(5414), - [aux_sym_print_statement_token1] = ACTIONS(5414), - [aux_sym_open_statement_token1] = ACTIONS(5414), - [aux_sym_close_statement_token1] = ACTIONS(5414), - [aux_sym_inquire_statement_token1] = ACTIONS(5414), - [aux_sym_enum_statement_token1] = ACTIONS(5414), - [aux_sym_file_position_statement_token1] = ACTIONS(5414), - [aux_sym_file_position_statement_token2] = ACTIONS(5414), - [aux_sym_file_position_statement_token3] = ACTIONS(5414), - [aux_sym_file_position_statement_token4] = ACTIONS(5414), - [aux_sym_allocate_statement_token1] = ACTIONS(5414), - [aux_sym_entry_statement_token1] = ACTIONS(5414), - [aux_sym_logical_expression_token5] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(5414), - [anon_sym_LPAREN_SLASH] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(5416), - [aux_sym_boolean_literal_token1] = ACTIONS(5416), - [aux_sym_boolean_literal_token2] = ACTIONS(5416), - [aux_sym_null_literal_token1] = ACTIONS(5414), - [aux_sym_coarray_statement_token1] = ACTIONS(5414), - [aux_sym_coarray_statement_token2] = ACTIONS(5414), - [aux_sym_coarray_statement_token6] = ACTIONS(5414), - [aux_sym_coarray_statement_token8] = ACTIONS(5414), - [aux_sym_coarray_statement_token11] = ACTIONS(5414), - [aux_sym_coarray_statement_token12] = ACTIONS(5414), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5414), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5414), - [aux_sym_identifier_token1] = ACTIONS(5414), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_subroutine_call_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_keyword_statement_token4] = ACTIONS(4611), + [aux_sym_keyword_statement_token6] = ACTIONS(4611), + [aux_sym_keyword_statement_token7] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym_do_loop_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym__inline_where_statement_token1] = ACTIONS(4611), + [aux_sym__forall_control_expression_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token3] = ACTIONS(4611), + [aux_sym_select_type_statement_token1] = ACTIONS(4611), + [aux_sym_select_rank_statement_token2] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_associate_statement_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_print_statement_token1] = ACTIONS(4611), + [aux_sym_open_statement_token1] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token2] = ACTIONS(4611), + [aux_sym_file_position_statement_token3] = ACTIONS(4611), + [aux_sym_file_position_statement_token4] = ACTIONS(4611), + [aux_sym_allocate_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_logical_expression_token5] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LPAREN_SLASH] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5416), - [sym__float_literal] = ACTIONS(5416), - [sym__boz_literal] = ACTIONS(5416), - [sym__string_literal] = ACTIONS(5416), - [sym__string_literal_kind] = ACTIONS(5416), - }, - [1498] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_end_function_statement_token1] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [sym__integer_literal] = ACTIONS(4613), + [sym__float_literal] = ACTIONS(4613), + [sym__boz_literal] = ACTIONS(4613), + [sym__string_literal] = ACTIONS(4613), + [sym__string_literal_kind] = ACTIONS(4613), }, - [1499] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [1467] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_end_function_statement_token1] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token2] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [1500] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), + [1468] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_end_function_statement_token1] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_subroutine_call_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_keyword_statement_token4] = ACTIONS(5010), + [aux_sym_keyword_statement_token6] = ACTIONS(5010), + [aux_sym_keyword_statement_token7] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym_do_loop_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym__inline_where_statement_token1] = ACTIONS(5010), + [aux_sym__forall_control_expression_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token3] = ACTIONS(5010), + [aux_sym_select_type_statement_token1] = ACTIONS(5010), + [aux_sym_select_rank_statement_token2] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_associate_statement_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_print_statement_token1] = ACTIONS(5010), + [aux_sym_open_statement_token1] = ACTIONS(5010), + [aux_sym_close_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token2] = ACTIONS(5010), + [aux_sym_file_position_statement_token3] = ACTIONS(5010), + [aux_sym_file_position_statement_token4] = ACTIONS(5010), + [aux_sym_allocate_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_logical_expression_token5] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_LPAREN_SLASH] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [aux_sym_boolean_literal_token1] = ACTIONS(5012), + [aux_sym_boolean_literal_token2] = ACTIONS(5012), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + [sym__float_literal] = ACTIONS(5012), + [sym__boz_literal] = ACTIONS(5012), + [sym__string_literal] = ACTIONS(5012), + [sym__string_literal_kind] = ACTIONS(5012), }, - [1501] = { - [aux_sym_preproc_include_token1] = ACTIONS(5414), - [aux_sym_preproc_def_token1] = ACTIONS(5414), - [aux_sym_preproc_if_token1] = ACTIONS(5414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5414), - [sym_preproc_directive] = ACTIONS(5414), - [anon_sym_LPAREN2] = ACTIONS(5414), - [anon_sym_PLUS] = ACTIONS(5416), - [anon_sym_DASH] = ACTIONS(5416), + [1469] = { + [aux_sym_preproc_include_token1] = ACTIONS(5430), + [aux_sym_preproc_def_token1] = ACTIONS(5430), + [aux_sym_preproc_if_token1] = ACTIONS(5430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5430), + [sym_preproc_directive] = ACTIONS(5430), + [anon_sym_LPAREN2] = ACTIONS(5430), + [anon_sym_PLUS] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5432), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5414), - [aux_sym_interface_statement_token1] = ACTIONS(5414), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5414), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5414), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5414), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5414), - [aux_sym_language_binding_token1] = ACTIONS(5414), - [aux_sym_procedure_attributes_token1] = ACTIONS(5414), - [aux_sym_procedure_attributes_token3] = ACTIONS(5414), - [aux_sym_contains_statement_token1] = ACTIONS(5414), - [aux_sym_use_statement_token1] = ACTIONS(5414), - [aux_sym_use_statement_token2] = ACTIONS(5414), - [aux_sym_implicit_statement_token1] = ACTIONS(5414), - [aux_sym_implicit_statement_token3] = ACTIONS(5414), - [aux_sym_implicit_statement_token4] = ACTIONS(5414), - [aux_sym_save_statement_token1] = ACTIONS(5414), - [aux_sym_private_statement_token1] = ACTIONS(5414), - [aux_sym_public_statement_token1] = ACTIONS(5414), - [aux_sym_namelist_statement_token1] = ACTIONS(5414), - [aux_sym_common_statement_token1] = ACTIONS(5414), - [aux_sym_import_statement_token1] = ACTIONS(5414), - [aux_sym_derived_type_definition_token1] = ACTIONS(5414), - [aux_sym_abstract_specifier_token1] = ACTIONS(5414), - [aux_sym_procedure_attribute_token6] = ACTIONS(5414), - [aux_sym_variable_attributes_token1] = ACTIONS(5414), - [aux_sym_variable_attributes_token2] = ACTIONS(5414), - [aux_sym_variable_attributes_token3] = ACTIONS(5414), - [aux_sym_variable_attributes_token4] = ACTIONS(5414), - [aux_sym_variable_attributes_token5] = ACTIONS(5414), - [aux_sym__intrinsic_type_token1] = ACTIONS(5414), - [aux_sym__intrinsic_type_token2] = ACTIONS(5414), - [aux_sym__intrinsic_type_token3] = ACTIONS(5414), - [aux_sym__intrinsic_type_token4] = ACTIONS(5414), - [aux_sym__intrinsic_type_token6] = ACTIONS(5414), - [aux_sym__intrinsic_type_token7] = ACTIONS(5414), - [aux_sym__intrinsic_type_token8] = ACTIONS(5414), - [aux_sym__intrinsic_type_token9] = ACTIONS(5414), - [aux_sym__intrinsic_type_token10] = ACTIONS(5414), - [aux_sym_derived_type_token1] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5414), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5414), - [aux_sym_type_qualifier_token1] = ACTIONS(5414), - [aux_sym_type_qualifier_token2] = ACTIONS(5414), - [aux_sym_equivalence_statement_token1] = ACTIONS(5414), - [anon_sym_SEMI] = ACTIONS(5416), - [aux_sym_stop_statement_token1] = ACTIONS(5414), - [aux_sym_stop_statement_token2] = ACTIONS(5414), - [aux_sym_subroutine_call_token1] = ACTIONS(5414), - [aux_sym_keyword_statement_token1] = ACTIONS(5414), - [aux_sym_keyword_statement_token2] = ACTIONS(5414), - [aux_sym_keyword_statement_token3] = ACTIONS(5414), - [aux_sym_keyword_statement_token4] = ACTIONS(5414), - [aux_sym_keyword_statement_token6] = ACTIONS(5414), - [aux_sym_keyword_statement_token7] = ACTIONS(5414), - [aux_sym_include_statement_token1] = ACTIONS(5414), - [aux_sym_data_statement_token1] = ACTIONS(5414), - [aux_sym_do_loop_statement_token1] = ACTIONS(5414), - [aux_sym__inline_if_statement_token1] = ACTIONS(5414), - [aux_sym_end_if_statement_token1] = ACTIONS(5414), - [aux_sym_elseif_clause_token2] = ACTIONS(5414), - [aux_sym__inline_where_statement_token1] = ACTIONS(5414), - [aux_sym__forall_control_expression_token1] = ACTIONS(5414), - [aux_sym_select_case_statement_token1] = ACTIONS(5414), - [aux_sym_select_case_statement_token3] = ACTIONS(5414), - [aux_sym_select_type_statement_token1] = ACTIONS(5414), - [aux_sym_select_rank_statement_token2] = ACTIONS(5414), - [aux_sym_block_construct_token1] = ACTIONS(5414), - [aux_sym_associate_statement_token1] = ACTIONS(5414), - [aux_sym_format_statement_token1] = ACTIONS(5414), - [aux_sym_print_statement_token1] = ACTIONS(5414), - [aux_sym_open_statement_token1] = ACTIONS(5414), - [aux_sym_close_statement_token1] = ACTIONS(5414), - [aux_sym_inquire_statement_token1] = ACTIONS(5414), - [aux_sym_enum_statement_token1] = ACTIONS(5414), - [aux_sym_file_position_statement_token1] = ACTIONS(5414), - [aux_sym_file_position_statement_token2] = ACTIONS(5414), - [aux_sym_file_position_statement_token3] = ACTIONS(5414), - [aux_sym_file_position_statement_token4] = ACTIONS(5414), - [aux_sym_allocate_statement_token1] = ACTIONS(5414), - [aux_sym_entry_statement_token1] = ACTIONS(5414), - [aux_sym_logical_expression_token5] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(5414), - [anon_sym_LPAREN_SLASH] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(5416), - [aux_sym_boolean_literal_token1] = ACTIONS(5416), - [aux_sym_boolean_literal_token2] = ACTIONS(5416), - [aux_sym_null_literal_token1] = ACTIONS(5414), - [aux_sym_coarray_statement_token1] = ACTIONS(5414), - [aux_sym_coarray_statement_token2] = ACTIONS(5414), - [aux_sym_coarray_statement_token6] = ACTIONS(5414), - [aux_sym_coarray_statement_token8] = ACTIONS(5414), - [aux_sym_coarray_statement_token11] = ACTIONS(5414), - [aux_sym_coarray_statement_token12] = ACTIONS(5414), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5414), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5414), - [aux_sym_identifier_token1] = ACTIONS(5414), + [aux_sym_end_program_statement_token1] = ACTIONS(5430), + [aux_sym_interface_statement_token1] = ACTIONS(5430), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5430), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5430), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5430), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5430), + [aux_sym_language_binding_token1] = ACTIONS(5430), + [aux_sym_procedure_attributes_token1] = ACTIONS(5430), + [aux_sym_procedure_attributes_token3] = ACTIONS(5430), + [aux_sym_contains_statement_token1] = ACTIONS(5430), + [aux_sym_use_statement_token1] = ACTIONS(5430), + [aux_sym_use_statement_token2] = ACTIONS(5430), + [aux_sym_implicit_statement_token1] = ACTIONS(5430), + [aux_sym_implicit_statement_token3] = ACTIONS(5430), + [aux_sym_implicit_statement_token4] = ACTIONS(5430), + [aux_sym_save_statement_token1] = ACTIONS(5430), + [aux_sym_private_statement_token1] = ACTIONS(5430), + [aux_sym_public_statement_token1] = ACTIONS(5430), + [aux_sym_namelist_statement_token1] = ACTIONS(5430), + [aux_sym_common_statement_token1] = ACTIONS(5430), + [aux_sym_import_statement_token1] = ACTIONS(5430), + [aux_sym_derived_type_definition_token1] = ACTIONS(5430), + [aux_sym_abstract_specifier_token1] = ACTIONS(5430), + [aux_sym_procedure_attribute_token6] = ACTIONS(5430), + [aux_sym_variable_attributes_token1] = ACTIONS(5430), + [aux_sym_variable_attributes_token2] = ACTIONS(5430), + [aux_sym_variable_attributes_token3] = ACTIONS(5430), + [aux_sym_variable_attributes_token4] = ACTIONS(5430), + [aux_sym_variable_attributes_token5] = ACTIONS(5430), + [aux_sym__intrinsic_type_token1] = ACTIONS(5430), + [aux_sym__intrinsic_type_token2] = ACTIONS(5430), + [aux_sym__intrinsic_type_token3] = ACTIONS(5430), + [aux_sym__intrinsic_type_token4] = ACTIONS(5430), + [aux_sym__intrinsic_type_token6] = ACTIONS(5430), + [aux_sym__intrinsic_type_token7] = ACTIONS(5430), + [aux_sym__intrinsic_type_token8] = ACTIONS(5430), + [aux_sym__intrinsic_type_token9] = ACTIONS(5430), + [aux_sym__intrinsic_type_token10] = ACTIONS(5430), + [aux_sym_derived_type_token1] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5430), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5430), + [aux_sym_type_qualifier_token1] = ACTIONS(5430), + [aux_sym_type_qualifier_token2] = ACTIONS(5430), + [aux_sym_equivalence_statement_token1] = ACTIONS(5430), + [anon_sym_SEMI] = ACTIONS(5432), + [aux_sym_stop_statement_token1] = ACTIONS(5430), + [aux_sym_stop_statement_token2] = ACTIONS(5430), + [aux_sym_subroutine_call_token1] = ACTIONS(5430), + [aux_sym_keyword_statement_token1] = ACTIONS(5430), + [aux_sym_keyword_statement_token2] = ACTIONS(5430), + [aux_sym_keyword_statement_token3] = ACTIONS(5430), + [aux_sym_keyword_statement_token4] = ACTIONS(5430), + [aux_sym_keyword_statement_token6] = ACTIONS(5430), + [aux_sym_keyword_statement_token7] = ACTIONS(5430), + [aux_sym_include_statement_token1] = ACTIONS(5430), + [aux_sym_data_statement_token1] = ACTIONS(5430), + [aux_sym_do_loop_statement_token1] = ACTIONS(5430), + [aux_sym__inline_if_statement_token1] = ACTIONS(5430), + [aux_sym_end_if_statement_token1] = ACTIONS(5430), + [aux_sym_elseif_clause_token2] = ACTIONS(5430), + [aux_sym__inline_where_statement_token1] = ACTIONS(5430), + [aux_sym__forall_control_expression_token1] = ACTIONS(5430), + [aux_sym_select_case_statement_token1] = ACTIONS(5430), + [aux_sym_select_case_statement_token3] = ACTIONS(5430), + [aux_sym_select_type_statement_token1] = ACTIONS(5430), + [aux_sym_select_rank_statement_token2] = ACTIONS(5430), + [aux_sym_block_construct_token1] = ACTIONS(5430), + [aux_sym_associate_statement_token1] = ACTIONS(5430), + [aux_sym_format_statement_token1] = ACTIONS(5430), + [aux_sym_print_statement_token1] = ACTIONS(5430), + [aux_sym_open_statement_token1] = ACTIONS(5430), + [aux_sym_close_statement_token1] = ACTIONS(5430), + [aux_sym_inquire_statement_token1] = ACTIONS(5430), + [aux_sym_enum_statement_token1] = ACTIONS(5430), + [aux_sym_file_position_statement_token1] = ACTIONS(5430), + [aux_sym_file_position_statement_token2] = ACTIONS(5430), + [aux_sym_file_position_statement_token3] = ACTIONS(5430), + [aux_sym_file_position_statement_token4] = ACTIONS(5430), + [aux_sym_allocate_statement_token1] = ACTIONS(5430), + [aux_sym_entry_statement_token1] = ACTIONS(5430), + [aux_sym_logical_expression_token5] = ACTIONS(5432), + [anon_sym_DOT] = ACTIONS(5430), + [anon_sym_LPAREN_SLASH] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5432), + [aux_sym_boolean_literal_token1] = ACTIONS(5432), + [aux_sym_boolean_literal_token2] = ACTIONS(5432), + [aux_sym_null_literal_token1] = ACTIONS(5430), + [aux_sym_coarray_statement_token1] = ACTIONS(5430), + [aux_sym_coarray_statement_token2] = ACTIONS(5430), + [aux_sym_coarray_statement_token6] = ACTIONS(5430), + [aux_sym_coarray_statement_token8] = ACTIONS(5430), + [aux_sym_coarray_statement_token11] = ACTIONS(5430), + [aux_sym_coarray_statement_token12] = ACTIONS(5430), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5430), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5430), + [aux_sym_identifier_token1] = ACTIONS(5430), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5416), - [sym__float_literal] = ACTIONS(5416), - [sym__boz_literal] = ACTIONS(5416), - [sym__string_literal] = ACTIONS(5416), - [sym__string_literal_kind] = ACTIONS(5416), + [sym__integer_literal] = ACTIONS(5432), + [sym__float_literal] = ACTIONS(5432), + [sym__boz_literal] = ACTIONS(5432), + [sym__string_literal] = ACTIONS(5432), + [sym__string_literal_kind] = ACTIONS(5432), }, - [1502] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), + [1470] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_LPAREN2] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_end_program_statement_token2] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_subroutine_call_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_keyword_statement_token4] = ACTIONS(4611), + [aux_sym_keyword_statement_token6] = ACTIONS(4611), + [aux_sym_keyword_statement_token7] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym_do_loop_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym__inline_where_statement_token1] = ACTIONS(4611), + [aux_sym__forall_control_expression_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token3] = ACTIONS(4611), + [aux_sym_select_type_statement_token1] = ACTIONS(4611), + [aux_sym_select_rank_statement_token2] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_associate_statement_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_print_statement_token1] = ACTIONS(4611), + [aux_sym_open_statement_token1] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token2] = ACTIONS(4611), + [aux_sym_file_position_statement_token3] = ACTIONS(4611), + [aux_sym_file_position_statement_token4] = ACTIONS(4611), + [aux_sym_allocate_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_logical_expression_token5] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LPAREN_SLASH] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [sym__integer_literal] = ACTIONS(4613), + [sym__float_literal] = ACTIONS(4613), + [sym__boz_literal] = ACTIONS(4613), + [sym__string_literal] = ACTIONS(4613), + [sym__string_literal_kind] = ACTIONS(4613), }, - [1503] = { - [aux_sym_preproc_include_token1] = ACTIONS(4255), - [aux_sym_preproc_def_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), - [sym_preproc_directive] = ACTIONS(4255), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [1471] = { + [aux_sym_preproc_include_token1] = ACTIONS(5434), + [aux_sym_preproc_def_token1] = ACTIONS(5434), + [aux_sym_preproc_if_token1] = ACTIONS(5434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5434), + [sym_preproc_directive] = ACTIONS(5434), + [anon_sym_LPAREN2] = ACTIONS(5434), + [anon_sym_PLUS] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5436), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4255), - [aux_sym_interface_statement_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), - [aux_sym_language_binding_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token1] = ACTIONS(4255), - [aux_sym_procedure_attributes_token3] = ACTIONS(4255), - [aux_sym_end_function_statement_token1] = ACTIONS(4255), - [aux_sym_contains_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token1] = ACTIONS(4255), - [aux_sym_use_statement_token2] = ACTIONS(4255), - [aux_sym_implicit_statement_token1] = ACTIONS(4255), - [aux_sym_implicit_statement_token3] = ACTIONS(4255), - [aux_sym_implicit_statement_token4] = ACTIONS(4255), - [aux_sym_save_statement_token1] = ACTIONS(4255), - [aux_sym_private_statement_token1] = ACTIONS(4255), - [aux_sym_public_statement_token1] = ACTIONS(4255), - [aux_sym_namelist_statement_token1] = ACTIONS(4255), - [aux_sym_common_statement_token1] = ACTIONS(4255), - [aux_sym_import_statement_token1] = ACTIONS(4255), - [aux_sym_derived_type_definition_token1] = ACTIONS(4255), - [aux_sym_abstract_specifier_token1] = ACTIONS(4255), - [aux_sym_procedure_attribute_token6] = ACTIONS(4255), - [aux_sym_variable_attributes_token1] = ACTIONS(4255), - [aux_sym_variable_attributes_token2] = ACTIONS(4255), - [aux_sym_variable_attributes_token3] = ACTIONS(4255), - [aux_sym_variable_attributes_token4] = ACTIONS(4255), - [aux_sym_variable_attributes_token5] = ACTIONS(4255), - [aux_sym__intrinsic_type_token1] = ACTIONS(4255), - [aux_sym__intrinsic_type_token2] = ACTIONS(4255), - [aux_sym__intrinsic_type_token3] = ACTIONS(4255), - [aux_sym__intrinsic_type_token4] = ACTIONS(4255), - [aux_sym__intrinsic_type_token6] = ACTIONS(4255), - [aux_sym__intrinsic_type_token7] = ACTIONS(4255), - [aux_sym__intrinsic_type_token8] = ACTIONS(4255), - [aux_sym__intrinsic_type_token9] = ACTIONS(4255), - [aux_sym__intrinsic_type_token10] = ACTIONS(4255), - [aux_sym_derived_type_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), - [aux_sym_type_qualifier_token1] = ACTIONS(4255), - [aux_sym_type_qualifier_token2] = ACTIONS(4255), - [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), - [aux_sym_stop_statement_token1] = ACTIONS(4255), - [aux_sym_stop_statement_token2] = ACTIONS(4255), - [aux_sym_subroutine_call_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token1] = ACTIONS(4255), - [aux_sym_keyword_statement_token2] = ACTIONS(4255), - [aux_sym_keyword_statement_token3] = ACTIONS(4255), - [aux_sym_keyword_statement_token4] = ACTIONS(4255), - [aux_sym_keyword_statement_token6] = ACTIONS(4255), - [aux_sym_keyword_statement_token7] = ACTIONS(4255), - [aux_sym_include_statement_token1] = ACTIONS(4255), - [aux_sym_data_statement_token1] = ACTIONS(4255), - [aux_sym_do_loop_statement_token1] = ACTIONS(4255), - [aux_sym__inline_if_statement_token1] = ACTIONS(4255), - [aux_sym_end_if_statement_token1] = ACTIONS(4255), - [aux_sym_elseif_clause_token2] = ACTIONS(4255), - [aux_sym__inline_where_statement_token1] = ACTIONS(4255), - [aux_sym__forall_control_expression_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token1] = ACTIONS(4255), - [aux_sym_select_case_statement_token3] = ACTIONS(4255), - [aux_sym_select_type_statement_token1] = ACTIONS(4255), - [aux_sym_select_rank_statement_token2] = ACTIONS(4255), - [aux_sym_block_construct_token1] = ACTIONS(4255), - [aux_sym_associate_statement_token1] = ACTIONS(4255), - [aux_sym_format_statement_token1] = ACTIONS(4255), - [aux_sym_print_statement_token1] = ACTIONS(4255), - [aux_sym_open_statement_token1] = ACTIONS(4255), - [aux_sym_close_statement_token1] = ACTIONS(4255), - [aux_sym_inquire_statement_token1] = ACTIONS(4255), - [aux_sym_enum_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token1] = ACTIONS(4255), - [aux_sym_file_position_statement_token2] = ACTIONS(4255), - [aux_sym_file_position_statement_token3] = ACTIONS(4255), - [aux_sym_file_position_statement_token4] = ACTIONS(4255), - [aux_sym_allocate_statement_token1] = ACTIONS(4255), - [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), - [aux_sym_null_literal_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_statement_token2] = ACTIONS(4255), - [aux_sym_coarray_statement_token6] = ACTIONS(4255), - [aux_sym_coarray_statement_token8] = ACTIONS(4255), - [aux_sym_coarray_statement_token11] = ACTIONS(4255), - [aux_sym_coarray_statement_token12] = ACTIONS(4255), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), - [aux_sym_identifier_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5434), + [aux_sym_interface_statement_token1] = ACTIONS(5434), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5434), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5434), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5434), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5434), + [aux_sym_language_binding_token1] = ACTIONS(5434), + [aux_sym_procedure_attributes_token1] = ACTIONS(5434), + [aux_sym_procedure_attributes_token3] = ACTIONS(5434), + [aux_sym_contains_statement_token1] = ACTIONS(5434), + [aux_sym_use_statement_token1] = ACTIONS(5434), + [aux_sym_use_statement_token2] = ACTIONS(5434), + [aux_sym_implicit_statement_token1] = ACTIONS(5434), + [aux_sym_implicit_statement_token3] = ACTIONS(5434), + [aux_sym_implicit_statement_token4] = ACTIONS(5434), + [aux_sym_save_statement_token1] = ACTIONS(5434), + [aux_sym_private_statement_token1] = ACTIONS(5434), + [aux_sym_public_statement_token1] = ACTIONS(5434), + [aux_sym_namelist_statement_token1] = ACTIONS(5434), + [aux_sym_common_statement_token1] = ACTIONS(5434), + [aux_sym_import_statement_token1] = ACTIONS(5434), + [aux_sym_derived_type_definition_token1] = ACTIONS(5434), + [aux_sym_abstract_specifier_token1] = ACTIONS(5434), + [aux_sym_procedure_attribute_token6] = ACTIONS(5434), + [aux_sym_variable_attributes_token1] = ACTIONS(5434), + [aux_sym_variable_attributes_token2] = ACTIONS(5434), + [aux_sym_variable_attributes_token3] = ACTIONS(5434), + [aux_sym_variable_attributes_token4] = ACTIONS(5434), + [aux_sym_variable_attributes_token5] = ACTIONS(5434), + [aux_sym__intrinsic_type_token1] = ACTIONS(5434), + [aux_sym__intrinsic_type_token2] = ACTIONS(5434), + [aux_sym__intrinsic_type_token3] = ACTIONS(5434), + [aux_sym__intrinsic_type_token4] = ACTIONS(5434), + [aux_sym__intrinsic_type_token6] = ACTIONS(5434), + [aux_sym__intrinsic_type_token7] = ACTIONS(5434), + [aux_sym__intrinsic_type_token8] = ACTIONS(5434), + [aux_sym__intrinsic_type_token9] = ACTIONS(5434), + [aux_sym__intrinsic_type_token10] = ACTIONS(5434), + [aux_sym_derived_type_token1] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5434), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5434), + [aux_sym_type_qualifier_token1] = ACTIONS(5434), + [aux_sym_type_qualifier_token2] = ACTIONS(5434), + [aux_sym_equivalence_statement_token1] = ACTIONS(5434), + [anon_sym_SEMI] = ACTIONS(5436), + [aux_sym_stop_statement_token1] = ACTIONS(5434), + [aux_sym_stop_statement_token2] = ACTIONS(5434), + [aux_sym_subroutine_call_token1] = ACTIONS(5434), + [aux_sym_keyword_statement_token1] = ACTIONS(5434), + [aux_sym_keyword_statement_token2] = ACTIONS(5434), + [aux_sym_keyword_statement_token3] = ACTIONS(5434), + [aux_sym_keyword_statement_token4] = ACTIONS(5434), + [aux_sym_keyword_statement_token6] = ACTIONS(5434), + [aux_sym_keyword_statement_token7] = ACTIONS(5434), + [aux_sym_include_statement_token1] = ACTIONS(5434), + [aux_sym_data_statement_token1] = ACTIONS(5434), + [aux_sym_do_loop_statement_token1] = ACTIONS(5434), + [aux_sym__inline_if_statement_token1] = ACTIONS(5434), + [aux_sym_end_if_statement_token1] = ACTIONS(5434), + [aux_sym_elseif_clause_token2] = ACTIONS(5434), + [aux_sym__inline_where_statement_token1] = ACTIONS(5434), + [aux_sym__forall_control_expression_token1] = ACTIONS(5434), + [aux_sym_select_case_statement_token1] = ACTIONS(5434), + [aux_sym_select_case_statement_token3] = ACTIONS(5434), + [aux_sym_select_type_statement_token1] = ACTIONS(5434), + [aux_sym_select_rank_statement_token2] = ACTIONS(5434), + [aux_sym_block_construct_token1] = ACTIONS(5434), + [aux_sym_associate_statement_token1] = ACTIONS(5434), + [aux_sym_format_statement_token1] = ACTIONS(5434), + [aux_sym_print_statement_token1] = ACTIONS(5434), + [aux_sym_open_statement_token1] = ACTIONS(5434), + [aux_sym_close_statement_token1] = ACTIONS(5434), + [aux_sym_inquire_statement_token1] = ACTIONS(5434), + [aux_sym_enum_statement_token1] = ACTIONS(5434), + [aux_sym_file_position_statement_token1] = ACTIONS(5434), + [aux_sym_file_position_statement_token2] = ACTIONS(5434), + [aux_sym_file_position_statement_token3] = ACTIONS(5434), + [aux_sym_file_position_statement_token4] = ACTIONS(5434), + [aux_sym_allocate_statement_token1] = ACTIONS(5434), + [aux_sym_entry_statement_token1] = ACTIONS(5434), + [aux_sym_logical_expression_token5] = ACTIONS(5436), + [anon_sym_DOT] = ACTIONS(5434), + [anon_sym_LPAREN_SLASH] = ACTIONS(5436), + [anon_sym_LBRACK] = ACTIONS(5436), + [aux_sym_boolean_literal_token1] = ACTIONS(5436), + [aux_sym_boolean_literal_token2] = ACTIONS(5436), + [aux_sym_null_literal_token1] = ACTIONS(5434), + [aux_sym_coarray_statement_token1] = ACTIONS(5434), + [aux_sym_coarray_statement_token2] = ACTIONS(5434), + [aux_sym_coarray_statement_token6] = ACTIONS(5434), + [aux_sym_coarray_statement_token8] = ACTIONS(5434), + [aux_sym_coarray_statement_token11] = ACTIONS(5434), + [aux_sym_coarray_statement_token12] = ACTIONS(5434), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5434), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5434), + [aux_sym_identifier_token1] = ACTIONS(5434), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), + [sym__integer_literal] = ACTIONS(5436), + [sym__float_literal] = ACTIONS(5436), + [sym__boz_literal] = ACTIONS(5436), + [sym__string_literal] = ACTIONS(5436), + [sym__string_literal_kind] = ACTIONS(5436), }, - [1504] = { - [aux_sym_preproc_include_token1] = ACTIONS(5422), - [aux_sym_preproc_def_token1] = ACTIONS(5422), - [aux_sym_preproc_if_token1] = ACTIONS(5422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5422), - [sym_preproc_directive] = ACTIONS(5422), - [anon_sym_LPAREN2] = ACTIONS(5422), - [anon_sym_PLUS] = ACTIONS(5424), - [anon_sym_DASH] = ACTIONS(5424), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5422), - [aux_sym_interface_statement_token1] = ACTIONS(5422), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5422), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5422), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5422), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5422), - [aux_sym_language_binding_token1] = ACTIONS(5422), - [aux_sym_procedure_attributes_token1] = ACTIONS(5422), - [aux_sym_procedure_attributes_token3] = ACTIONS(5422), - [aux_sym_contains_statement_token1] = ACTIONS(5422), - [aux_sym_use_statement_token1] = ACTIONS(5422), - [aux_sym_use_statement_token2] = ACTIONS(5422), - [aux_sym_implicit_statement_token1] = ACTIONS(5422), - [aux_sym_implicit_statement_token3] = ACTIONS(5422), - [aux_sym_implicit_statement_token4] = ACTIONS(5422), - [aux_sym_save_statement_token1] = ACTIONS(5422), - [aux_sym_private_statement_token1] = ACTIONS(5422), - [aux_sym_public_statement_token1] = ACTIONS(5422), - [aux_sym_namelist_statement_token1] = ACTIONS(5422), - [aux_sym_common_statement_token1] = ACTIONS(5422), - [aux_sym_import_statement_token1] = ACTIONS(5422), - [aux_sym_derived_type_definition_token1] = ACTIONS(5422), - [aux_sym_abstract_specifier_token1] = ACTIONS(5422), - [aux_sym_procedure_attribute_token6] = ACTIONS(5422), - [aux_sym_variable_attributes_token1] = ACTIONS(5422), - [aux_sym_variable_attributes_token2] = ACTIONS(5422), - [aux_sym_variable_attributes_token3] = ACTIONS(5422), - [aux_sym_variable_attributes_token4] = ACTIONS(5422), - [aux_sym_variable_attributes_token5] = ACTIONS(5422), - [aux_sym__intrinsic_type_token1] = ACTIONS(5422), - [aux_sym__intrinsic_type_token2] = ACTIONS(5422), - [aux_sym__intrinsic_type_token3] = ACTIONS(5422), - [aux_sym__intrinsic_type_token4] = ACTIONS(5422), - [aux_sym__intrinsic_type_token6] = ACTIONS(5422), - [aux_sym__intrinsic_type_token7] = ACTIONS(5422), - [aux_sym__intrinsic_type_token8] = ACTIONS(5422), - [aux_sym__intrinsic_type_token9] = ACTIONS(5422), - [aux_sym__intrinsic_type_token10] = ACTIONS(5422), - [aux_sym_derived_type_token1] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5422), - [aux_sym_type_qualifier_token1] = ACTIONS(5422), - [aux_sym_type_qualifier_token2] = ACTIONS(5422), - [aux_sym_equivalence_statement_token1] = ACTIONS(5422), - [anon_sym_SEMI] = ACTIONS(5424), - [aux_sym_stop_statement_token1] = ACTIONS(5422), - [aux_sym_stop_statement_token2] = ACTIONS(5422), - [aux_sym_subroutine_call_token1] = ACTIONS(5422), - [aux_sym_keyword_statement_token1] = ACTIONS(5422), - [aux_sym_keyword_statement_token2] = ACTIONS(5422), - [aux_sym_keyword_statement_token3] = ACTIONS(5422), - [aux_sym_keyword_statement_token4] = ACTIONS(5422), - [aux_sym_keyword_statement_token6] = ACTIONS(5422), - [aux_sym_keyword_statement_token7] = ACTIONS(5422), - [aux_sym_include_statement_token1] = ACTIONS(5422), - [aux_sym_data_statement_token1] = ACTIONS(5422), - [aux_sym_do_loop_statement_token1] = ACTIONS(5422), - [aux_sym__inline_if_statement_token1] = ACTIONS(5422), - [aux_sym_end_if_statement_token1] = ACTIONS(5422), - [aux_sym_elseif_clause_token2] = ACTIONS(5422), - [aux_sym__inline_where_statement_token1] = ACTIONS(5422), - [aux_sym__forall_control_expression_token1] = ACTIONS(5422), - [aux_sym_select_case_statement_token1] = ACTIONS(5422), - [aux_sym_select_case_statement_token3] = ACTIONS(5422), - [aux_sym_select_type_statement_token1] = ACTIONS(5422), - [aux_sym_select_rank_statement_token2] = ACTIONS(5422), - [aux_sym_block_construct_token1] = ACTIONS(5422), - [aux_sym_associate_statement_token1] = ACTIONS(5422), - [aux_sym_format_statement_token1] = ACTIONS(5422), - [aux_sym_print_statement_token1] = ACTIONS(5422), - [aux_sym_open_statement_token1] = ACTIONS(5422), - [aux_sym_close_statement_token1] = ACTIONS(5422), - [aux_sym_inquire_statement_token1] = ACTIONS(5422), - [aux_sym_enum_statement_token1] = ACTIONS(5422), - [aux_sym_file_position_statement_token1] = ACTIONS(5422), - [aux_sym_file_position_statement_token2] = ACTIONS(5422), - [aux_sym_file_position_statement_token3] = ACTIONS(5422), - [aux_sym_file_position_statement_token4] = ACTIONS(5422), - [aux_sym_allocate_statement_token1] = ACTIONS(5422), - [aux_sym_entry_statement_token1] = ACTIONS(5422), - [aux_sym_logical_expression_token5] = ACTIONS(5424), - [anon_sym_DOT] = ACTIONS(5422), - [anon_sym_LPAREN_SLASH] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(5424), - [aux_sym_boolean_literal_token1] = ACTIONS(5424), - [aux_sym_boolean_literal_token2] = ACTIONS(5424), - [aux_sym_null_literal_token1] = ACTIONS(5422), - [aux_sym_coarray_statement_token1] = ACTIONS(5422), - [aux_sym_coarray_statement_token2] = ACTIONS(5422), - [aux_sym_coarray_statement_token6] = ACTIONS(5422), - [aux_sym_coarray_statement_token8] = ACTIONS(5422), - [aux_sym_coarray_statement_token11] = ACTIONS(5422), - [aux_sym_coarray_statement_token12] = ACTIONS(5422), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5422), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5422), - [aux_sym_identifier_token1] = ACTIONS(5422), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5424), - [sym__float_literal] = ACTIONS(5424), - [sym__boz_literal] = ACTIONS(5424), - [sym__string_literal] = ACTIONS(5424), - [sym__string_literal_kind] = ACTIONS(5424), + [1472] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_LPAREN2] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_end_program_statement_token2] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_subroutine_call_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_keyword_statement_token4] = ACTIONS(5063), + [aux_sym_keyword_statement_token6] = ACTIONS(5063), + [aux_sym_keyword_statement_token7] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym_do_loop_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym__inline_where_statement_token1] = ACTIONS(5063), + [aux_sym__forall_control_expression_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token3] = ACTIONS(5063), + [aux_sym_select_type_statement_token1] = ACTIONS(5063), + [aux_sym_select_rank_statement_token2] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_associate_statement_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_print_statement_token1] = ACTIONS(5063), + [aux_sym_open_statement_token1] = ACTIONS(5063), + [aux_sym_close_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token2] = ACTIONS(5063), + [aux_sym_file_position_statement_token3] = ACTIONS(5063), + [aux_sym_file_position_statement_token4] = ACTIONS(5063), + [aux_sym_allocate_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_logical_expression_token5] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_LPAREN_SLASH] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [aux_sym_boolean_literal_token1] = ACTIONS(5065), + [aux_sym_boolean_literal_token2] = ACTIONS(5065), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + [sym__float_literal] = ACTIONS(5065), + [sym__boz_literal] = ACTIONS(5065), + [sym__string_literal] = ACTIONS(5065), + [sym__string_literal_kind] = ACTIONS(5065), }, - [1505] = { - [aux_sym_preproc_include_token1] = ACTIONS(5426), - [aux_sym_preproc_def_token1] = ACTIONS(5426), - [aux_sym_preproc_if_token1] = ACTIONS(5426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5426), - [sym_preproc_directive] = ACTIONS(5426), - [anon_sym_LPAREN2] = ACTIONS(5426), - [anon_sym_PLUS] = ACTIONS(5428), - [anon_sym_DASH] = ACTIONS(5428), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5426), - [aux_sym_interface_statement_token1] = ACTIONS(5426), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5426), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5426), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5426), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5426), - [aux_sym_language_binding_token1] = ACTIONS(5426), - [aux_sym_procedure_attributes_token1] = ACTIONS(5426), - [aux_sym_procedure_attributes_token3] = ACTIONS(5426), - [aux_sym_contains_statement_token1] = ACTIONS(5426), - [aux_sym_use_statement_token1] = ACTIONS(5426), - [aux_sym_use_statement_token2] = ACTIONS(5426), - [aux_sym_implicit_statement_token1] = ACTIONS(5426), - [aux_sym_implicit_statement_token3] = ACTIONS(5426), - [aux_sym_implicit_statement_token4] = ACTIONS(5426), - [aux_sym_save_statement_token1] = ACTIONS(5426), - [aux_sym_private_statement_token1] = ACTIONS(5426), - [aux_sym_public_statement_token1] = ACTIONS(5426), - [aux_sym_namelist_statement_token1] = ACTIONS(5426), - [aux_sym_common_statement_token1] = ACTIONS(5426), - [aux_sym_import_statement_token1] = ACTIONS(5426), - [aux_sym_derived_type_definition_token1] = ACTIONS(5426), - [aux_sym_abstract_specifier_token1] = ACTIONS(5426), - [aux_sym_procedure_attribute_token6] = ACTIONS(5426), - [aux_sym_variable_attributes_token1] = ACTIONS(5426), - [aux_sym_variable_attributes_token2] = ACTIONS(5426), - [aux_sym_variable_attributes_token3] = ACTIONS(5426), - [aux_sym_variable_attributes_token4] = ACTIONS(5426), - [aux_sym_variable_attributes_token5] = ACTIONS(5426), - [aux_sym__intrinsic_type_token1] = ACTIONS(5426), - [aux_sym__intrinsic_type_token2] = ACTIONS(5426), - [aux_sym__intrinsic_type_token3] = ACTIONS(5426), - [aux_sym__intrinsic_type_token4] = ACTIONS(5426), - [aux_sym__intrinsic_type_token6] = ACTIONS(5426), - [aux_sym__intrinsic_type_token7] = ACTIONS(5426), - [aux_sym__intrinsic_type_token8] = ACTIONS(5426), - [aux_sym__intrinsic_type_token9] = ACTIONS(5426), - [aux_sym__intrinsic_type_token10] = ACTIONS(5426), - [aux_sym_derived_type_token1] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5426), - [aux_sym_type_qualifier_token1] = ACTIONS(5426), - [aux_sym_type_qualifier_token2] = ACTIONS(5426), - [aux_sym_equivalence_statement_token1] = ACTIONS(5426), - [anon_sym_SEMI] = ACTIONS(5428), - [aux_sym_stop_statement_token1] = ACTIONS(5426), - [aux_sym_stop_statement_token2] = ACTIONS(5426), - [aux_sym_subroutine_call_token1] = ACTIONS(5426), - [aux_sym_keyword_statement_token1] = ACTIONS(5426), - [aux_sym_keyword_statement_token2] = ACTIONS(5426), - [aux_sym_keyword_statement_token3] = ACTIONS(5426), - [aux_sym_keyword_statement_token4] = ACTIONS(5426), - [aux_sym_keyword_statement_token6] = ACTIONS(5426), - [aux_sym_keyword_statement_token7] = ACTIONS(5426), - [aux_sym_include_statement_token1] = ACTIONS(5426), - [aux_sym_data_statement_token1] = ACTIONS(5426), - [aux_sym_do_loop_statement_token1] = ACTIONS(5426), - [aux_sym__inline_if_statement_token1] = ACTIONS(5426), - [aux_sym_end_if_statement_token1] = ACTIONS(5426), - [aux_sym_elseif_clause_token2] = ACTIONS(5426), - [aux_sym__inline_where_statement_token1] = ACTIONS(5426), - [aux_sym__forall_control_expression_token1] = ACTIONS(5426), - [aux_sym_select_case_statement_token1] = ACTIONS(5426), - [aux_sym_select_case_statement_token3] = ACTIONS(5426), - [aux_sym_select_type_statement_token1] = ACTIONS(5426), - [aux_sym_select_rank_statement_token2] = ACTIONS(5426), - [aux_sym_block_construct_token1] = ACTIONS(5426), - [aux_sym_associate_statement_token1] = ACTIONS(5426), - [aux_sym_format_statement_token1] = ACTIONS(5426), - [aux_sym_print_statement_token1] = ACTIONS(5426), - [aux_sym_open_statement_token1] = ACTIONS(5426), - [aux_sym_close_statement_token1] = ACTIONS(5426), - [aux_sym_inquire_statement_token1] = ACTIONS(5426), - [aux_sym_enum_statement_token1] = ACTIONS(5426), - [aux_sym_file_position_statement_token1] = ACTIONS(5426), - [aux_sym_file_position_statement_token2] = ACTIONS(5426), - [aux_sym_file_position_statement_token3] = ACTIONS(5426), - [aux_sym_file_position_statement_token4] = ACTIONS(5426), - [aux_sym_allocate_statement_token1] = ACTIONS(5426), - [aux_sym_entry_statement_token1] = ACTIONS(5426), - [aux_sym_logical_expression_token5] = ACTIONS(5428), - [anon_sym_DOT] = ACTIONS(5426), - [anon_sym_LPAREN_SLASH] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(5428), - [aux_sym_boolean_literal_token1] = ACTIONS(5428), - [aux_sym_boolean_literal_token2] = ACTIONS(5428), - [aux_sym_null_literal_token1] = ACTIONS(5426), - [aux_sym_coarray_statement_token1] = ACTIONS(5426), - [aux_sym_coarray_statement_token2] = ACTIONS(5426), - [aux_sym_coarray_statement_token6] = ACTIONS(5426), - [aux_sym_coarray_statement_token8] = ACTIONS(5426), - [aux_sym_coarray_statement_token11] = ACTIONS(5426), - [aux_sym_coarray_statement_token12] = ACTIONS(5426), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5426), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5426), - [aux_sym_identifier_token1] = ACTIONS(5426), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5428), - [sym__float_literal] = ACTIONS(5428), - [sym__boz_literal] = ACTIONS(5428), - [sym__string_literal] = ACTIONS(5428), - [sym__string_literal_kind] = ACTIONS(5428), + [1473] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_end_program_statement_token2] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_subroutine_call_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_keyword_statement_token4] = ACTIONS(4982), + [aux_sym_keyword_statement_token6] = ACTIONS(4982), + [aux_sym_keyword_statement_token7] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym_do_loop_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym__inline_where_statement_token1] = ACTIONS(4982), + [aux_sym__forall_control_expression_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token3] = ACTIONS(4982), + [aux_sym_select_type_statement_token1] = ACTIONS(4982), + [aux_sym_select_rank_statement_token2] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_associate_statement_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_print_statement_token1] = ACTIONS(4982), + [aux_sym_open_statement_token1] = ACTIONS(4982), + [aux_sym_close_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token2] = ACTIONS(4982), + [aux_sym_file_position_statement_token3] = ACTIONS(4982), + [aux_sym_file_position_statement_token4] = ACTIONS(4982), + [aux_sym_allocate_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_logical_expression_token5] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_LPAREN_SLASH] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [aux_sym_boolean_literal_token1] = ACTIONS(4984), + [aux_sym_boolean_literal_token2] = ACTIONS(4984), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + [sym__float_literal] = ACTIONS(4984), + [sym__boz_literal] = ACTIONS(4984), + [sym__string_literal] = ACTIONS(4984), + [sym__string_literal_kind] = ACTIONS(4984), }, - [1506] = { - [aux_sym_preproc_include_token1] = ACTIONS(5081), - [aux_sym_preproc_def_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token2] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), - [sym_preproc_directive] = ACTIONS(5081), - [anon_sym_LPAREN2] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), + [1474] = { + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), + }, + [1475] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5081), - [aux_sym_interface_statement_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), - [aux_sym_language_binding_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token3] = ACTIONS(5081), - [aux_sym_contains_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token2] = ACTIONS(5081), - [aux_sym_implicit_statement_token1] = ACTIONS(5081), - [aux_sym_implicit_statement_token3] = ACTIONS(5081), - [aux_sym_implicit_statement_token4] = ACTIONS(5081), - [aux_sym_save_statement_token1] = ACTIONS(5081), - [aux_sym_private_statement_token1] = ACTIONS(5081), - [aux_sym_public_statement_token1] = ACTIONS(5081), - [aux_sym_namelist_statement_token1] = ACTIONS(5081), - [aux_sym_common_statement_token1] = ACTIONS(5081), - [aux_sym_import_statement_token1] = ACTIONS(5081), - [aux_sym_derived_type_definition_token1] = ACTIONS(5081), - [aux_sym_abstract_specifier_token1] = ACTIONS(5081), - [aux_sym_procedure_attribute_token6] = ACTIONS(5081), - [aux_sym_variable_attributes_token1] = ACTIONS(5081), - [aux_sym_variable_attributes_token2] = ACTIONS(5081), - [aux_sym_variable_attributes_token3] = ACTIONS(5081), - [aux_sym_variable_attributes_token4] = ACTIONS(5081), - [aux_sym_variable_attributes_token5] = ACTIONS(5081), - [aux_sym__intrinsic_type_token1] = ACTIONS(5081), - [aux_sym__intrinsic_type_token2] = ACTIONS(5081), - [aux_sym__intrinsic_type_token3] = ACTIONS(5081), - [aux_sym__intrinsic_type_token4] = ACTIONS(5081), - [aux_sym__intrinsic_type_token6] = ACTIONS(5081), - [aux_sym__intrinsic_type_token7] = ACTIONS(5081), - [aux_sym__intrinsic_type_token8] = ACTIONS(5081), - [aux_sym__intrinsic_type_token9] = ACTIONS(5081), - [aux_sym__intrinsic_type_token10] = ACTIONS(5081), - [aux_sym_derived_type_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), - [aux_sym_type_qualifier_token1] = ACTIONS(5081), - [aux_sym_type_qualifier_token2] = ACTIONS(5081), - [aux_sym_equivalence_statement_token1] = ACTIONS(5081), - [anon_sym_SEMI] = ACTIONS(5083), - [aux_sym_stop_statement_token1] = ACTIONS(5081), - [aux_sym_stop_statement_token2] = ACTIONS(5081), - [aux_sym_subroutine_call_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token2] = ACTIONS(5081), - [aux_sym_keyword_statement_token3] = ACTIONS(5081), - [aux_sym_keyword_statement_token4] = ACTIONS(5081), - [aux_sym_keyword_statement_token6] = ACTIONS(5081), - [aux_sym_keyword_statement_token7] = ACTIONS(5081), - [aux_sym_include_statement_token1] = ACTIONS(5081), - [aux_sym_data_statement_token1] = ACTIONS(5081), - [aux_sym_do_loop_statement_token1] = ACTIONS(5081), - [aux_sym__inline_if_statement_token1] = ACTIONS(5081), - [aux_sym_end_if_statement_token1] = ACTIONS(5081), - [aux_sym_elseif_clause_token2] = ACTIONS(5081), - [aux_sym__inline_where_statement_token1] = ACTIONS(5081), - [aux_sym__forall_control_expression_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token3] = ACTIONS(5081), - [aux_sym_select_type_statement_token1] = ACTIONS(5081), - [aux_sym_select_rank_statement_token2] = ACTIONS(5081), - [aux_sym_block_construct_token1] = ACTIONS(5081), - [aux_sym_associate_statement_token1] = ACTIONS(5081), - [aux_sym_format_statement_token1] = ACTIONS(5081), - [aux_sym_print_statement_token1] = ACTIONS(5081), - [aux_sym_open_statement_token1] = ACTIONS(5081), - [aux_sym_close_statement_token1] = ACTIONS(5081), - [aux_sym_inquire_statement_token1] = ACTIONS(5081), - [aux_sym_enum_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token2] = ACTIONS(5081), - [aux_sym_file_position_statement_token3] = ACTIONS(5081), - [aux_sym_file_position_statement_token4] = ACTIONS(5081), - [aux_sym_allocate_statement_token1] = ACTIONS(5081), - [aux_sym_entry_statement_token1] = ACTIONS(5081), - [aux_sym_logical_expression_token5] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_LPAREN_SLASH] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [aux_sym_boolean_literal_token1] = ACTIONS(5083), - [aux_sym_boolean_literal_token2] = ACTIONS(5083), - [aux_sym_null_literal_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token2] = ACTIONS(5081), - [aux_sym_coarray_statement_token6] = ACTIONS(5081), - [aux_sym_coarray_statement_token8] = ACTIONS(5081), - [aux_sym_coarray_statement_token11] = ACTIONS(5081), - [aux_sym_coarray_statement_token12] = ACTIONS(5081), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), - [aux_sym_identifier_token1] = ACTIONS(5081), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_program_statement_token2] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5083), - [sym__float_literal] = ACTIONS(5083), - [sym__boz_literal] = ACTIONS(5083), - [sym__string_literal] = ACTIONS(5083), - [sym__string_literal_kind] = ACTIONS(5083), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [1507] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), + [1476] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_end_program_statement_token2] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token2] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1508] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token2] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_LPAREN2] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_subroutine_call_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_keyword_statement_token4] = ACTIONS(5057), - [aux_sym_keyword_statement_token6] = ACTIONS(5057), - [aux_sym_keyword_statement_token7] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym_do_loop_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym__inline_where_statement_token1] = ACTIONS(5057), - [aux_sym__forall_control_expression_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token3] = ACTIONS(5057), - [aux_sym_select_type_statement_token1] = ACTIONS(5057), - [aux_sym_select_rank_statement_token2] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_associate_statement_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_print_statement_token1] = ACTIONS(5057), - [aux_sym_open_statement_token1] = ACTIONS(5057), - [aux_sym_close_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token2] = ACTIONS(5057), - [aux_sym_file_position_statement_token3] = ACTIONS(5057), - [aux_sym_file_position_statement_token4] = ACTIONS(5057), - [aux_sym_allocate_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_logical_expression_token5] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_LPAREN_SLASH] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [aux_sym_boolean_literal_token1] = ACTIONS(5059), - [aux_sym_boolean_literal_token2] = ACTIONS(5059), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - [sym__float_literal] = ACTIONS(5059), - [sym__boz_literal] = ACTIONS(5059), - [sym__string_literal] = ACTIONS(5059), - [sym__string_literal_kind] = ACTIONS(5059), + [1477] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_end_function_statement_token1] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_subroutine_call_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_keyword_statement_token4] = ACTIONS(5014), + [aux_sym_keyword_statement_token6] = ACTIONS(5014), + [aux_sym_keyword_statement_token7] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym_do_loop_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym__inline_where_statement_token1] = ACTIONS(5014), + [aux_sym__forall_control_expression_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token3] = ACTIONS(5014), + [aux_sym_select_type_statement_token1] = ACTIONS(5014), + [aux_sym_select_rank_statement_token2] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_associate_statement_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_print_statement_token1] = ACTIONS(5014), + [aux_sym_open_statement_token1] = ACTIONS(5014), + [aux_sym_close_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token2] = ACTIONS(5014), + [aux_sym_file_position_statement_token3] = ACTIONS(5014), + [aux_sym_file_position_statement_token4] = ACTIONS(5014), + [aux_sym_allocate_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_logical_expression_token5] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LPAREN_SLASH] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [aux_sym_boolean_literal_token1] = ACTIONS(5016), + [aux_sym_boolean_literal_token2] = ACTIONS(5016), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + [sym__float_literal] = ACTIONS(5016), + [sym__boz_literal] = ACTIONS(5016), + [sym__string_literal] = ACTIONS(5016), + [sym__string_literal_kind] = ACTIONS(5016), }, - [1509] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_end_program_statement_token2] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [1478] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_end_program_statement_token2] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_subroutine_call_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_keyword_statement_token4] = ACTIONS(5014), + [aux_sym_keyword_statement_token6] = ACTIONS(5014), + [aux_sym_keyword_statement_token7] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym_do_loop_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym__inline_where_statement_token1] = ACTIONS(5014), + [aux_sym__forall_control_expression_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token3] = ACTIONS(5014), + [aux_sym_select_type_statement_token1] = ACTIONS(5014), + [aux_sym_select_rank_statement_token2] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_associate_statement_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_print_statement_token1] = ACTIONS(5014), + [aux_sym_open_statement_token1] = ACTIONS(5014), + [aux_sym_close_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token2] = ACTIONS(5014), + [aux_sym_file_position_statement_token3] = ACTIONS(5014), + [aux_sym_file_position_statement_token4] = ACTIONS(5014), + [aux_sym_allocate_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_logical_expression_token5] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LPAREN_SLASH] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [aux_sym_boolean_literal_token1] = ACTIONS(5016), + [aux_sym_boolean_literal_token2] = ACTIONS(5016), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + [sym__float_literal] = ACTIONS(5016), + [sym__boz_literal] = ACTIONS(5016), + [sym__string_literal] = ACTIONS(5016), + [sym__string_literal_kind] = ACTIONS(5016), }, - [1510] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [1479] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_end_program_statement_token2] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_program_statement_token2] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1511] = { + [1480] = { [aux_sym_preproc_include_token1] = ACTIONS(4976), [aux_sym_preproc_def_token1] = ACTIONS(4976), [aux_sym_preproc_if_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token2] = ACTIONS(4976), [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), [sym_preproc_directive] = ACTIONS(4976), [anon_sym_LPAREN2] = ACTIONS(4976), - [anon_sym_PLUS] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4976), [aux_sym_interface_statement_token1] = ACTIONS(4976), [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4976), [aux_sym_language_binding_token1] = ACTIONS(4976), [aux_sym_procedure_attributes_token1] = ACTIONS(4976), [aux_sym_procedure_attributes_token3] = ACTIONS(4976), @@ -290858,7 +286983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(4976), [aux_sym_type_qualifier_token2] = ACTIONS(4976), [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4980), [aux_sym_stop_statement_token1] = ACTIONS(4976), [aux_sym_stop_statement_token2] = ACTIONS(4976), [aux_sym_subroutine_call_token1] = ACTIONS(4976), @@ -290894,12 +287019,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4976), [aux_sym_allocate_statement_token1] = ACTIONS(4976), [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_logical_expression_token5] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(4980), [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_LPAREN_SLASH] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [aux_sym_boolean_literal_token1] = ACTIONS(4978), - [aux_sym_boolean_literal_token2] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), [aux_sym_null_literal_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token1] = ACTIONS(4976), [aux_sym_coarray_statement_token2] = ACTIONS(4976), @@ -290911,1263 +287036,888 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), [aux_sym_identifier_token1] = ACTIONS(4976), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - [sym__float_literal] = ACTIONS(4978), - [sym__boz_literal] = ACTIONS(4978), - [sym__string_literal] = ACTIONS(4978), - [sym__string_literal_kind] = ACTIONS(4978), - }, - [1512] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_end_function_statement_token1] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, - [1513] = { - [aux_sym_preproc_include_token1] = ACTIONS(4990), - [aux_sym_preproc_def_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token2] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), - [sym_preproc_directive] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), + [1481] = { + [aux_sym_preproc_include_token1] = ACTIONS(5446), + [aux_sym_preproc_def_token1] = ACTIONS(5446), + [aux_sym_preproc_if_token1] = ACTIONS(5446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5446), + [sym_preproc_directive] = ACTIONS(5446), + [anon_sym_LPAREN2] = ACTIONS(5446), + [anon_sym_PLUS] = ACTIONS(5448), + [anon_sym_DASH] = ACTIONS(5448), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4990), - [aux_sym_interface_statement_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_language_binding_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token3] = ACTIONS(4990), - [aux_sym_contains_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token2] = ACTIONS(4990), - [aux_sym_implicit_statement_token1] = ACTIONS(4990), - [aux_sym_implicit_statement_token3] = ACTIONS(4990), - [aux_sym_implicit_statement_token4] = ACTIONS(4990), - [aux_sym_save_statement_token1] = ACTIONS(4990), - [aux_sym_private_statement_token1] = ACTIONS(4990), - [aux_sym_public_statement_token1] = ACTIONS(4990), - [aux_sym_namelist_statement_token1] = ACTIONS(4990), - [aux_sym_common_statement_token1] = ACTIONS(4990), - [aux_sym_import_statement_token1] = ACTIONS(4990), - [aux_sym_derived_type_definition_token1] = ACTIONS(4990), - [aux_sym_abstract_specifier_token1] = ACTIONS(4990), - [aux_sym_procedure_attribute_token6] = ACTIONS(4990), - [aux_sym_variable_attributes_token1] = ACTIONS(4990), - [aux_sym_variable_attributes_token2] = ACTIONS(4990), - [aux_sym_variable_attributes_token3] = ACTIONS(4990), - [aux_sym_variable_attributes_token4] = ACTIONS(4990), - [aux_sym_variable_attributes_token5] = ACTIONS(4990), - [aux_sym__intrinsic_type_token1] = ACTIONS(4990), - [aux_sym__intrinsic_type_token2] = ACTIONS(4990), - [aux_sym__intrinsic_type_token3] = ACTIONS(4990), - [aux_sym__intrinsic_type_token4] = ACTIONS(4990), - [aux_sym__intrinsic_type_token6] = ACTIONS(4990), - [aux_sym__intrinsic_type_token7] = ACTIONS(4990), - [aux_sym__intrinsic_type_token8] = ACTIONS(4990), - [aux_sym__intrinsic_type_token9] = ACTIONS(4990), - [aux_sym__intrinsic_type_token10] = ACTIONS(4990), - [aux_sym_derived_type_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), - [aux_sym_type_qualifier_token1] = ACTIONS(4990), - [aux_sym_type_qualifier_token2] = ACTIONS(4990), - [aux_sym_equivalence_statement_token1] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4992), - [aux_sym_stop_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token2] = ACTIONS(4990), - [aux_sym_subroutine_call_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token3] = ACTIONS(4990), - [aux_sym_keyword_statement_token4] = ACTIONS(4990), - [aux_sym_keyword_statement_token6] = ACTIONS(4990), - [aux_sym_keyword_statement_token7] = ACTIONS(4990), - [aux_sym_include_statement_token1] = ACTIONS(4990), - [aux_sym_data_statement_token1] = ACTIONS(4990), - [aux_sym_do_loop_statement_token1] = ACTIONS(4990), - [aux_sym__inline_if_statement_token1] = ACTIONS(4990), - [aux_sym_end_if_statement_token1] = ACTIONS(4990), - [aux_sym_elseif_clause_token2] = ACTIONS(4990), - [aux_sym__inline_where_statement_token1] = ACTIONS(4990), - [aux_sym__forall_control_expression_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token3] = ACTIONS(4990), - [aux_sym_select_type_statement_token1] = ACTIONS(4990), - [aux_sym_select_rank_statement_token2] = ACTIONS(4990), - [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_associate_statement_token1] = ACTIONS(4990), - [aux_sym_format_statement_token1] = ACTIONS(4990), - [aux_sym_print_statement_token1] = ACTIONS(4990), - [aux_sym_open_statement_token1] = ACTIONS(4990), - [aux_sym_close_statement_token1] = ACTIONS(4990), - [aux_sym_inquire_statement_token1] = ACTIONS(4990), - [aux_sym_enum_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token2] = ACTIONS(4990), - [aux_sym_file_position_statement_token3] = ACTIONS(4990), - [aux_sym_file_position_statement_token4] = ACTIONS(4990), - [aux_sym_allocate_statement_token1] = ACTIONS(4990), - [aux_sym_entry_statement_token1] = ACTIONS(4990), - [aux_sym_logical_expression_token5] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_LPAREN_SLASH] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [aux_sym_boolean_literal_token1] = ACTIONS(4992), - [aux_sym_boolean_literal_token2] = ACTIONS(4992), - [aux_sym_null_literal_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token2] = ACTIONS(4990), - [aux_sym_coarray_statement_token6] = ACTIONS(4990), - [aux_sym_coarray_statement_token8] = ACTIONS(4990), - [aux_sym_coarray_statement_token11] = ACTIONS(4990), - [aux_sym_coarray_statement_token12] = ACTIONS(4990), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), - [aux_sym_identifier_token1] = ACTIONS(4990), + [aux_sym_end_program_statement_token1] = ACTIONS(5446), + [aux_sym_interface_statement_token1] = ACTIONS(5446), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5446), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5446), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5446), + [aux_sym_language_binding_token1] = ACTIONS(5446), + [aux_sym_procedure_attributes_token1] = ACTIONS(5446), + [aux_sym_procedure_attributes_token3] = ACTIONS(5446), + [aux_sym_end_function_statement_token1] = ACTIONS(5446), + [aux_sym_contains_statement_token1] = ACTIONS(5446), + [aux_sym_use_statement_token1] = ACTIONS(5446), + [aux_sym_use_statement_token2] = ACTIONS(5446), + [aux_sym_implicit_statement_token1] = ACTIONS(5446), + [aux_sym_implicit_statement_token3] = ACTIONS(5446), + [aux_sym_implicit_statement_token4] = ACTIONS(5446), + [aux_sym_save_statement_token1] = ACTIONS(5446), + [aux_sym_private_statement_token1] = ACTIONS(5446), + [aux_sym_public_statement_token1] = ACTIONS(5446), + [aux_sym_namelist_statement_token1] = ACTIONS(5446), + [aux_sym_common_statement_token1] = ACTIONS(5446), + [aux_sym_import_statement_token1] = ACTIONS(5446), + [aux_sym_derived_type_definition_token1] = ACTIONS(5446), + [aux_sym_abstract_specifier_token1] = ACTIONS(5446), + [aux_sym_procedure_attribute_token6] = ACTIONS(5446), + [aux_sym_variable_attributes_token1] = ACTIONS(5446), + [aux_sym_variable_attributes_token2] = ACTIONS(5446), + [aux_sym_variable_attributes_token3] = ACTIONS(5446), + [aux_sym_variable_attributes_token4] = ACTIONS(5446), + [aux_sym_variable_attributes_token5] = ACTIONS(5446), + [aux_sym__intrinsic_type_token1] = ACTIONS(5446), + [aux_sym__intrinsic_type_token2] = ACTIONS(5446), + [aux_sym__intrinsic_type_token3] = ACTIONS(5446), + [aux_sym__intrinsic_type_token4] = ACTIONS(5446), + [aux_sym__intrinsic_type_token6] = ACTIONS(5446), + [aux_sym__intrinsic_type_token7] = ACTIONS(5446), + [aux_sym__intrinsic_type_token8] = ACTIONS(5446), + [aux_sym__intrinsic_type_token9] = ACTIONS(5446), + [aux_sym__intrinsic_type_token10] = ACTIONS(5446), + [aux_sym_derived_type_token1] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5446), + [aux_sym_type_qualifier_token1] = ACTIONS(5446), + [aux_sym_type_qualifier_token2] = ACTIONS(5446), + [aux_sym_equivalence_statement_token1] = ACTIONS(5446), + [anon_sym_SEMI] = ACTIONS(5448), + [aux_sym_stop_statement_token1] = ACTIONS(5446), + [aux_sym_stop_statement_token2] = ACTIONS(5446), + [aux_sym_subroutine_call_token1] = ACTIONS(5446), + [aux_sym_keyword_statement_token1] = ACTIONS(5446), + [aux_sym_keyword_statement_token2] = ACTIONS(5446), + [aux_sym_keyword_statement_token3] = ACTIONS(5446), + [aux_sym_keyword_statement_token4] = ACTIONS(5446), + [aux_sym_keyword_statement_token6] = ACTIONS(5446), + [aux_sym_keyword_statement_token7] = ACTIONS(5446), + [aux_sym_include_statement_token1] = ACTIONS(5446), + [aux_sym_data_statement_token1] = ACTIONS(5446), + [aux_sym_do_loop_statement_token1] = ACTIONS(5446), + [aux_sym__inline_if_statement_token1] = ACTIONS(5446), + [aux_sym_end_if_statement_token1] = ACTIONS(5446), + [aux_sym_elseif_clause_token2] = ACTIONS(5446), + [aux_sym__inline_where_statement_token1] = ACTIONS(5446), + [aux_sym__forall_control_expression_token1] = ACTIONS(5446), + [aux_sym_select_case_statement_token1] = ACTIONS(5446), + [aux_sym_select_case_statement_token3] = ACTIONS(5446), + [aux_sym_select_type_statement_token1] = ACTIONS(5446), + [aux_sym_select_rank_statement_token2] = ACTIONS(5446), + [aux_sym_block_construct_token1] = ACTIONS(5446), + [aux_sym_associate_statement_token1] = ACTIONS(5446), + [aux_sym_format_statement_token1] = ACTIONS(5446), + [aux_sym_print_statement_token1] = ACTIONS(5446), + [aux_sym_open_statement_token1] = ACTIONS(5446), + [aux_sym_close_statement_token1] = ACTIONS(5446), + [aux_sym_inquire_statement_token1] = ACTIONS(5446), + [aux_sym_enum_statement_token1] = ACTIONS(5446), + [aux_sym_file_position_statement_token1] = ACTIONS(5446), + [aux_sym_file_position_statement_token2] = ACTIONS(5446), + [aux_sym_file_position_statement_token3] = ACTIONS(5446), + [aux_sym_file_position_statement_token4] = ACTIONS(5446), + [aux_sym_allocate_statement_token1] = ACTIONS(5446), + [aux_sym_entry_statement_token1] = ACTIONS(5446), + [aux_sym_logical_expression_token5] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5446), + [anon_sym_LPAREN_SLASH] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5448), + [aux_sym_boolean_literal_token1] = ACTIONS(5448), + [aux_sym_boolean_literal_token2] = ACTIONS(5448), + [aux_sym_null_literal_token1] = ACTIONS(5446), + [aux_sym_coarray_statement_token1] = ACTIONS(5446), + [aux_sym_coarray_statement_token2] = ACTIONS(5446), + [aux_sym_coarray_statement_token6] = ACTIONS(5446), + [aux_sym_coarray_statement_token8] = ACTIONS(5446), + [aux_sym_coarray_statement_token11] = ACTIONS(5446), + [aux_sym_coarray_statement_token12] = ACTIONS(5446), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5446), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5446), + [aux_sym_identifier_token1] = ACTIONS(5446), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4992), - [sym__float_literal] = ACTIONS(4992), - [sym__boz_literal] = ACTIONS(4992), - [sym__string_literal] = ACTIONS(4992), - [sym__string_literal_kind] = ACTIONS(4992), + [sym__integer_literal] = ACTIONS(5448), + [sym__float_literal] = ACTIONS(5448), + [sym__boz_literal] = ACTIONS(5448), + [sym__string_literal] = ACTIONS(5448), + [sym__string_literal_kind] = ACTIONS(5448), }, - [1514] = { - [aux_sym_preproc_include_token1] = ACTIONS(5442), - [aux_sym_preproc_def_token1] = ACTIONS(5442), - [aux_sym_preproc_if_token1] = ACTIONS(5442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5442), - [sym_preproc_directive] = ACTIONS(5442), - [anon_sym_LPAREN2] = ACTIONS(5442), - [anon_sym_PLUS] = ACTIONS(5444), - [anon_sym_DASH] = ACTIONS(5444), + [1482] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5442), - [aux_sym_end_program_statement_token2] = ACTIONS(5442), - [aux_sym_interface_statement_token1] = ACTIONS(5442), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5442), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5442), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5442), - [aux_sym_language_binding_token1] = ACTIONS(5442), - [aux_sym_procedure_attributes_token1] = ACTIONS(5442), - [aux_sym_procedure_attributes_token3] = ACTIONS(5442), - [aux_sym_contains_statement_token1] = ACTIONS(5442), - [aux_sym_use_statement_token1] = ACTIONS(5442), - [aux_sym_use_statement_token2] = ACTIONS(5442), - [aux_sym_implicit_statement_token1] = ACTIONS(5442), - [aux_sym_implicit_statement_token3] = ACTIONS(5442), - [aux_sym_implicit_statement_token4] = ACTIONS(5442), - [aux_sym_save_statement_token1] = ACTIONS(5442), - [aux_sym_private_statement_token1] = ACTIONS(5442), - [aux_sym_public_statement_token1] = ACTIONS(5442), - [aux_sym_namelist_statement_token1] = ACTIONS(5442), - [aux_sym_common_statement_token1] = ACTIONS(5442), - [aux_sym_import_statement_token1] = ACTIONS(5442), - [aux_sym_derived_type_definition_token1] = ACTIONS(5442), - [aux_sym_abstract_specifier_token1] = ACTIONS(5442), - [aux_sym_procedure_attribute_token6] = ACTIONS(5442), - [aux_sym_variable_attributes_token1] = ACTIONS(5442), - [aux_sym_variable_attributes_token2] = ACTIONS(5442), - [aux_sym_variable_attributes_token3] = ACTIONS(5442), - [aux_sym_variable_attributes_token4] = ACTIONS(5442), - [aux_sym_variable_attributes_token5] = ACTIONS(5442), - [aux_sym__intrinsic_type_token1] = ACTIONS(5442), - [aux_sym__intrinsic_type_token2] = ACTIONS(5442), - [aux_sym__intrinsic_type_token3] = ACTIONS(5442), - [aux_sym__intrinsic_type_token4] = ACTIONS(5442), - [aux_sym__intrinsic_type_token6] = ACTIONS(5442), - [aux_sym__intrinsic_type_token7] = ACTIONS(5442), - [aux_sym__intrinsic_type_token8] = ACTIONS(5442), - [aux_sym__intrinsic_type_token9] = ACTIONS(5442), - [aux_sym__intrinsic_type_token10] = ACTIONS(5442), - [aux_sym_derived_type_token1] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5442), - [aux_sym_type_qualifier_token1] = ACTIONS(5442), - [aux_sym_type_qualifier_token2] = ACTIONS(5442), - [aux_sym_equivalence_statement_token1] = ACTIONS(5442), - [anon_sym_SEMI] = ACTIONS(5444), - [aux_sym_stop_statement_token1] = ACTIONS(5442), - [aux_sym_stop_statement_token2] = ACTIONS(5442), - [aux_sym_subroutine_call_token1] = ACTIONS(5442), - [aux_sym_keyword_statement_token1] = ACTIONS(5442), - [aux_sym_keyword_statement_token2] = ACTIONS(5442), - [aux_sym_keyword_statement_token3] = ACTIONS(5442), - [aux_sym_keyword_statement_token4] = ACTIONS(5442), - [aux_sym_keyword_statement_token6] = ACTIONS(5442), - [aux_sym_keyword_statement_token7] = ACTIONS(5442), - [aux_sym_include_statement_token1] = ACTIONS(5442), - [aux_sym_data_statement_token1] = ACTIONS(5442), - [aux_sym_do_loop_statement_token1] = ACTIONS(5442), - [aux_sym__inline_if_statement_token1] = ACTIONS(5442), - [aux_sym_end_if_statement_token1] = ACTIONS(5442), - [aux_sym_elseif_clause_token2] = ACTIONS(5442), - [aux_sym__inline_where_statement_token1] = ACTIONS(5442), - [aux_sym__forall_control_expression_token1] = ACTIONS(5442), - [aux_sym_select_case_statement_token1] = ACTIONS(5442), - [aux_sym_select_case_statement_token3] = ACTIONS(5442), - [aux_sym_select_type_statement_token1] = ACTIONS(5442), - [aux_sym_select_rank_statement_token2] = ACTIONS(5442), - [aux_sym_block_construct_token1] = ACTIONS(5442), - [aux_sym_associate_statement_token1] = ACTIONS(5442), - [aux_sym_format_statement_token1] = ACTIONS(5442), - [aux_sym_print_statement_token1] = ACTIONS(5442), - [aux_sym_open_statement_token1] = ACTIONS(5442), - [aux_sym_close_statement_token1] = ACTIONS(5442), - [aux_sym_inquire_statement_token1] = ACTIONS(5442), - [aux_sym_enum_statement_token1] = ACTIONS(5442), - [aux_sym_file_position_statement_token1] = ACTIONS(5442), - [aux_sym_file_position_statement_token2] = ACTIONS(5442), - [aux_sym_file_position_statement_token3] = ACTIONS(5442), - [aux_sym_file_position_statement_token4] = ACTIONS(5442), - [aux_sym_allocate_statement_token1] = ACTIONS(5442), - [aux_sym_entry_statement_token1] = ACTIONS(5442), - [aux_sym_logical_expression_token5] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5442), - [anon_sym_LPAREN_SLASH] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [aux_sym_boolean_literal_token1] = ACTIONS(5444), - [aux_sym_boolean_literal_token2] = ACTIONS(5444), - [aux_sym_null_literal_token1] = ACTIONS(5442), - [aux_sym_coarray_statement_token1] = ACTIONS(5442), - [aux_sym_coarray_statement_token2] = ACTIONS(5442), - [aux_sym_coarray_statement_token6] = ACTIONS(5442), - [aux_sym_coarray_statement_token8] = ACTIONS(5442), - [aux_sym_coarray_statement_token11] = ACTIONS(5442), - [aux_sym_coarray_statement_token12] = ACTIONS(5442), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5442), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5442), - [aux_sym_identifier_token1] = ACTIONS(5442), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_end_function_statement_token1] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5444), - [sym__float_literal] = ACTIONS(5444), - [sym__boz_literal] = ACTIONS(5444), - [sym__string_literal] = ACTIONS(5444), - [sym__string_literal_kind] = ACTIONS(5444), - }, - [1515] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), - }, - [1516] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token2] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_LPAREN2] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_subroutine_call_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_keyword_statement_token4] = ACTIONS(5073), - [aux_sym_keyword_statement_token6] = ACTIONS(5073), - [aux_sym_keyword_statement_token7] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym_do_loop_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym__inline_where_statement_token1] = ACTIONS(5073), - [aux_sym__forall_control_expression_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token3] = ACTIONS(5073), - [aux_sym_select_type_statement_token1] = ACTIONS(5073), - [aux_sym_select_rank_statement_token2] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_associate_statement_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_print_statement_token1] = ACTIONS(5073), - [aux_sym_open_statement_token1] = ACTIONS(5073), - [aux_sym_close_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token2] = ACTIONS(5073), - [aux_sym_file_position_statement_token3] = ACTIONS(5073), - [aux_sym_file_position_statement_token4] = ACTIONS(5073), - [aux_sym_allocate_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_logical_expression_token5] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LPAREN_SLASH] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [aux_sym_boolean_literal_token1] = ACTIONS(5075), - [aux_sym_boolean_literal_token2] = ACTIONS(5075), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - [sym__float_literal] = ACTIONS(5075), - [sym__boz_literal] = ACTIONS(5075), - [sym__string_literal] = ACTIONS(5075), - [sym__string_literal_kind] = ACTIONS(5075), - }, - [1517] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_end_function_statement_token1] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [1518] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token2] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_LPAREN2] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [anon_sym_SEMI] = ACTIONS(5079), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_subroutine_call_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_keyword_statement_token4] = ACTIONS(5077), - [aux_sym_keyword_statement_token6] = ACTIONS(5077), - [aux_sym_keyword_statement_token7] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym_do_loop_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym__inline_where_statement_token1] = ACTIONS(5077), - [aux_sym__forall_control_expression_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token3] = ACTIONS(5077), - [aux_sym_select_type_statement_token1] = ACTIONS(5077), - [aux_sym_select_rank_statement_token2] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_associate_statement_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_print_statement_token1] = ACTIONS(5077), - [aux_sym_open_statement_token1] = ACTIONS(5077), - [aux_sym_close_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token2] = ACTIONS(5077), - [aux_sym_file_position_statement_token3] = ACTIONS(5077), - [aux_sym_file_position_statement_token4] = ACTIONS(5077), - [aux_sym_allocate_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_logical_expression_token5] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_LPAREN_SLASH] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [aux_sym_boolean_literal_token1] = ACTIONS(5079), - [aux_sym_boolean_literal_token2] = ACTIONS(5079), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - [sym__float_literal] = ACTIONS(5079), - [sym__boz_literal] = ACTIONS(5079), - [sym__string_literal] = ACTIONS(5079), - [sym__string_literal_kind] = ACTIONS(5079), + [1483] = { + [aux_sym_preproc_include_token1] = ACTIONS(5438), + [aux_sym_preproc_def_token1] = ACTIONS(5438), + [aux_sym_preproc_if_token1] = ACTIONS(5438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5438), + [sym_preproc_directive] = ACTIONS(5438), + [anon_sym_LPAREN2] = ACTIONS(5438), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5438), + [aux_sym_interface_statement_token1] = ACTIONS(5438), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5438), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5438), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5438), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5438), + [aux_sym_language_binding_token1] = ACTIONS(5438), + [aux_sym_procedure_attributes_token1] = ACTIONS(5438), + [aux_sym_procedure_attributes_token3] = ACTIONS(5438), + [aux_sym_contains_statement_token1] = ACTIONS(5438), + [aux_sym_use_statement_token1] = ACTIONS(5438), + [aux_sym_use_statement_token2] = ACTIONS(5438), + [aux_sym_implicit_statement_token1] = ACTIONS(5438), + [aux_sym_implicit_statement_token3] = ACTIONS(5438), + [aux_sym_implicit_statement_token4] = ACTIONS(5438), + [aux_sym_save_statement_token1] = ACTIONS(5438), + [aux_sym_private_statement_token1] = ACTIONS(5438), + [aux_sym_public_statement_token1] = ACTIONS(5438), + [aux_sym_namelist_statement_token1] = ACTIONS(5438), + [aux_sym_common_statement_token1] = ACTIONS(5438), + [aux_sym_import_statement_token1] = ACTIONS(5438), + [aux_sym_derived_type_definition_token1] = ACTIONS(5438), + [aux_sym_abstract_specifier_token1] = ACTIONS(5438), + [aux_sym_procedure_attribute_token6] = ACTIONS(5438), + [aux_sym_variable_attributes_token1] = ACTIONS(5438), + [aux_sym_variable_attributes_token2] = ACTIONS(5438), + [aux_sym_variable_attributes_token3] = ACTIONS(5438), + [aux_sym_variable_attributes_token4] = ACTIONS(5438), + [aux_sym_variable_attributes_token5] = ACTIONS(5438), + [aux_sym__intrinsic_type_token1] = ACTIONS(5438), + [aux_sym__intrinsic_type_token2] = ACTIONS(5438), + [aux_sym__intrinsic_type_token3] = ACTIONS(5438), + [aux_sym__intrinsic_type_token4] = ACTIONS(5438), + [aux_sym__intrinsic_type_token6] = ACTIONS(5438), + [aux_sym__intrinsic_type_token7] = ACTIONS(5438), + [aux_sym__intrinsic_type_token8] = ACTIONS(5438), + [aux_sym__intrinsic_type_token9] = ACTIONS(5438), + [aux_sym__intrinsic_type_token10] = ACTIONS(5438), + [aux_sym_derived_type_token1] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5438), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5438), + [aux_sym_type_qualifier_token1] = ACTIONS(5438), + [aux_sym_type_qualifier_token2] = ACTIONS(5438), + [aux_sym_equivalence_statement_token1] = ACTIONS(5438), + [anon_sym_SEMI] = ACTIONS(5440), + [aux_sym_stop_statement_token1] = ACTIONS(5438), + [aux_sym_stop_statement_token2] = ACTIONS(5438), + [aux_sym_subroutine_call_token1] = ACTIONS(5438), + [aux_sym_keyword_statement_token1] = ACTIONS(5438), + [aux_sym_keyword_statement_token2] = ACTIONS(5438), + [aux_sym_keyword_statement_token3] = ACTIONS(5438), + [aux_sym_keyword_statement_token4] = ACTIONS(5438), + [aux_sym_keyword_statement_token6] = ACTIONS(5438), + [aux_sym_keyword_statement_token7] = ACTIONS(5438), + [aux_sym_include_statement_token1] = ACTIONS(5438), + [aux_sym_data_statement_token1] = ACTIONS(5438), + [aux_sym_do_loop_statement_token1] = ACTIONS(5438), + [aux_sym__inline_if_statement_token1] = ACTIONS(5438), + [aux_sym_end_if_statement_token1] = ACTIONS(5438), + [aux_sym_elseif_clause_token2] = ACTIONS(5438), + [aux_sym__inline_where_statement_token1] = ACTIONS(5438), + [aux_sym__forall_control_expression_token1] = ACTIONS(5438), + [aux_sym_select_case_statement_token1] = ACTIONS(5438), + [aux_sym_select_case_statement_token3] = ACTIONS(5438), + [aux_sym_select_type_statement_token1] = ACTIONS(5438), + [aux_sym_select_rank_statement_token2] = ACTIONS(5438), + [aux_sym_block_construct_token1] = ACTIONS(5438), + [aux_sym_associate_statement_token1] = ACTIONS(5438), + [aux_sym_format_statement_token1] = ACTIONS(5438), + [aux_sym_print_statement_token1] = ACTIONS(5438), + [aux_sym_open_statement_token1] = ACTIONS(5438), + [aux_sym_close_statement_token1] = ACTIONS(5438), + [aux_sym_inquire_statement_token1] = ACTIONS(5438), + [aux_sym_enum_statement_token1] = ACTIONS(5438), + [aux_sym_file_position_statement_token1] = ACTIONS(5438), + [aux_sym_file_position_statement_token2] = ACTIONS(5438), + [aux_sym_file_position_statement_token3] = ACTIONS(5438), + [aux_sym_file_position_statement_token4] = ACTIONS(5438), + [aux_sym_allocate_statement_token1] = ACTIONS(5438), + [aux_sym_entry_statement_token1] = ACTIONS(5438), + [aux_sym_logical_expression_token5] = ACTIONS(5440), + [anon_sym_DOT] = ACTIONS(5438), + [anon_sym_LPAREN_SLASH] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(5440), + [aux_sym_boolean_literal_token1] = ACTIONS(5440), + [aux_sym_boolean_literal_token2] = ACTIONS(5440), + [aux_sym_null_literal_token1] = ACTIONS(5438), + [aux_sym_coarray_statement_token1] = ACTIONS(5438), + [aux_sym_coarray_statement_token2] = ACTIONS(5438), + [aux_sym_coarray_statement_token6] = ACTIONS(5438), + [aux_sym_coarray_statement_token8] = ACTIONS(5438), + [aux_sym_coarray_statement_token11] = ACTIONS(5438), + [aux_sym_coarray_statement_token12] = ACTIONS(5438), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5438), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5438), + [aux_sym_identifier_token1] = ACTIONS(5438), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5440), + [sym__float_literal] = ACTIONS(5440), + [sym__boz_literal] = ACTIONS(5440), + [sym__string_literal] = ACTIONS(5440), + [sym__string_literal_kind] = ACTIONS(5440), }, - [1519] = { - [aux_sym_preproc_include_token1] = ACTIONS(5430), - [aux_sym_preproc_def_token1] = ACTIONS(5430), - [aux_sym_preproc_if_token1] = ACTIONS(5430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5430), - [sym_preproc_directive] = ACTIONS(5430), - [anon_sym_LPAREN2] = ACTIONS(5430), - [anon_sym_PLUS] = ACTIONS(5432), - [anon_sym_DASH] = ACTIONS(5432), + [1484] = { + [aux_sym_preproc_include_token1] = ACTIONS(5394), + [aux_sym_preproc_def_token1] = ACTIONS(5394), + [aux_sym_preproc_if_token1] = ACTIONS(5394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5394), + [sym_preproc_directive] = ACTIONS(5394), + [anon_sym_LPAREN2] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5396), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5430), - [aux_sym_interface_statement_token1] = ACTIONS(5430), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5430), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5430), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5430), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5430), - [aux_sym_language_binding_token1] = ACTIONS(5430), - [aux_sym_procedure_attributes_token1] = ACTIONS(5430), - [aux_sym_procedure_attributes_token3] = ACTIONS(5430), - [aux_sym_contains_statement_token1] = ACTIONS(5430), - [aux_sym_use_statement_token1] = ACTIONS(5430), - [aux_sym_use_statement_token2] = ACTIONS(5430), - [aux_sym_implicit_statement_token1] = ACTIONS(5430), - [aux_sym_implicit_statement_token3] = ACTIONS(5430), - [aux_sym_implicit_statement_token4] = ACTIONS(5430), - [aux_sym_save_statement_token1] = ACTIONS(5430), - [aux_sym_private_statement_token1] = ACTIONS(5430), - [aux_sym_public_statement_token1] = ACTIONS(5430), - [aux_sym_namelist_statement_token1] = ACTIONS(5430), - [aux_sym_common_statement_token1] = ACTIONS(5430), - [aux_sym_import_statement_token1] = ACTIONS(5430), - [aux_sym_derived_type_definition_token1] = ACTIONS(5430), - [aux_sym_abstract_specifier_token1] = ACTIONS(5430), - [aux_sym_procedure_attribute_token6] = ACTIONS(5430), - [aux_sym_variable_attributes_token1] = ACTIONS(5430), - [aux_sym_variable_attributes_token2] = ACTIONS(5430), - [aux_sym_variable_attributes_token3] = ACTIONS(5430), - [aux_sym_variable_attributes_token4] = ACTIONS(5430), - [aux_sym_variable_attributes_token5] = ACTIONS(5430), - [aux_sym__intrinsic_type_token1] = ACTIONS(5430), - [aux_sym__intrinsic_type_token2] = ACTIONS(5430), - [aux_sym__intrinsic_type_token3] = ACTIONS(5430), - [aux_sym__intrinsic_type_token4] = ACTIONS(5430), - [aux_sym__intrinsic_type_token6] = ACTIONS(5430), - [aux_sym__intrinsic_type_token7] = ACTIONS(5430), - [aux_sym__intrinsic_type_token8] = ACTIONS(5430), - [aux_sym__intrinsic_type_token9] = ACTIONS(5430), - [aux_sym__intrinsic_type_token10] = ACTIONS(5430), - [aux_sym_derived_type_token1] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5430), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5430), - [aux_sym_type_qualifier_token1] = ACTIONS(5430), - [aux_sym_type_qualifier_token2] = ACTIONS(5430), - [aux_sym_equivalence_statement_token1] = ACTIONS(5430), - [anon_sym_SEMI] = ACTIONS(5432), - [aux_sym_stop_statement_token1] = ACTIONS(5430), - [aux_sym_stop_statement_token2] = ACTIONS(5430), - [aux_sym_subroutine_call_token1] = ACTIONS(5430), - [aux_sym_keyword_statement_token1] = ACTIONS(5430), - [aux_sym_keyword_statement_token2] = ACTIONS(5430), - [aux_sym_keyword_statement_token3] = ACTIONS(5430), - [aux_sym_keyword_statement_token4] = ACTIONS(5430), - [aux_sym_keyword_statement_token6] = ACTIONS(5430), - [aux_sym_keyword_statement_token7] = ACTIONS(5430), - [aux_sym_include_statement_token1] = ACTIONS(5430), - [aux_sym_data_statement_token1] = ACTIONS(5430), - [aux_sym_do_loop_statement_token1] = ACTIONS(5430), - [aux_sym__inline_if_statement_token1] = ACTIONS(5430), - [aux_sym_end_if_statement_token1] = ACTIONS(5430), - [aux_sym_elseif_clause_token2] = ACTIONS(5430), - [aux_sym__inline_where_statement_token1] = ACTIONS(5430), - [aux_sym__forall_control_expression_token1] = ACTIONS(5430), - [aux_sym_select_case_statement_token1] = ACTIONS(5430), - [aux_sym_select_case_statement_token3] = ACTIONS(5430), - [aux_sym_select_type_statement_token1] = ACTIONS(5430), - [aux_sym_select_rank_statement_token2] = ACTIONS(5430), - [aux_sym_block_construct_token1] = ACTIONS(5430), - [aux_sym_associate_statement_token1] = ACTIONS(5430), - [aux_sym_format_statement_token1] = ACTIONS(5430), - [aux_sym_print_statement_token1] = ACTIONS(5430), - [aux_sym_open_statement_token1] = ACTIONS(5430), - [aux_sym_close_statement_token1] = ACTIONS(5430), - [aux_sym_inquire_statement_token1] = ACTIONS(5430), - [aux_sym_enum_statement_token1] = ACTIONS(5430), - [aux_sym_file_position_statement_token1] = ACTIONS(5430), - [aux_sym_file_position_statement_token2] = ACTIONS(5430), - [aux_sym_file_position_statement_token3] = ACTIONS(5430), - [aux_sym_file_position_statement_token4] = ACTIONS(5430), - [aux_sym_allocate_statement_token1] = ACTIONS(5430), - [aux_sym_entry_statement_token1] = ACTIONS(5430), - [aux_sym_logical_expression_token5] = ACTIONS(5432), - [anon_sym_DOT] = ACTIONS(5430), - [anon_sym_LPAREN_SLASH] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5432), - [aux_sym_boolean_literal_token1] = ACTIONS(5432), - [aux_sym_boolean_literal_token2] = ACTIONS(5432), - [aux_sym_null_literal_token1] = ACTIONS(5430), - [aux_sym_coarray_statement_token1] = ACTIONS(5430), - [aux_sym_coarray_statement_token2] = ACTIONS(5430), - [aux_sym_coarray_statement_token6] = ACTIONS(5430), - [aux_sym_coarray_statement_token8] = ACTIONS(5430), - [aux_sym_coarray_statement_token11] = ACTIONS(5430), - [aux_sym_coarray_statement_token12] = ACTIONS(5430), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5430), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5430), - [aux_sym_identifier_token1] = ACTIONS(5430), + [aux_sym_end_program_statement_token1] = ACTIONS(5394), + [aux_sym_interface_statement_token1] = ACTIONS(5394), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5394), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5394), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5394), + [aux_sym_language_binding_token1] = ACTIONS(5394), + [aux_sym_procedure_attributes_token1] = ACTIONS(5394), + [aux_sym_procedure_attributes_token3] = ACTIONS(5394), + [aux_sym_end_function_statement_token1] = ACTIONS(5394), + [aux_sym_contains_statement_token1] = ACTIONS(5394), + [aux_sym_use_statement_token1] = ACTIONS(5394), + [aux_sym_use_statement_token2] = ACTIONS(5394), + [aux_sym_implicit_statement_token1] = ACTIONS(5394), + [aux_sym_implicit_statement_token3] = ACTIONS(5394), + [aux_sym_implicit_statement_token4] = ACTIONS(5394), + [aux_sym_save_statement_token1] = ACTIONS(5394), + [aux_sym_private_statement_token1] = ACTIONS(5394), + [aux_sym_public_statement_token1] = ACTIONS(5394), + [aux_sym_namelist_statement_token1] = ACTIONS(5394), + [aux_sym_common_statement_token1] = ACTIONS(5394), + [aux_sym_import_statement_token1] = ACTIONS(5394), + [aux_sym_derived_type_definition_token1] = ACTIONS(5394), + [aux_sym_abstract_specifier_token1] = ACTIONS(5394), + [aux_sym_procedure_attribute_token6] = ACTIONS(5394), + [aux_sym_variable_attributes_token1] = ACTIONS(5394), + [aux_sym_variable_attributes_token2] = ACTIONS(5394), + [aux_sym_variable_attributes_token3] = ACTIONS(5394), + [aux_sym_variable_attributes_token4] = ACTIONS(5394), + [aux_sym_variable_attributes_token5] = ACTIONS(5394), + [aux_sym__intrinsic_type_token1] = ACTIONS(5394), + [aux_sym__intrinsic_type_token2] = ACTIONS(5394), + [aux_sym__intrinsic_type_token3] = ACTIONS(5394), + [aux_sym__intrinsic_type_token4] = ACTIONS(5394), + [aux_sym__intrinsic_type_token6] = ACTIONS(5394), + [aux_sym__intrinsic_type_token7] = ACTIONS(5394), + [aux_sym__intrinsic_type_token8] = ACTIONS(5394), + [aux_sym__intrinsic_type_token9] = ACTIONS(5394), + [aux_sym__intrinsic_type_token10] = ACTIONS(5394), + [aux_sym_derived_type_token1] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5394), + [aux_sym_type_qualifier_token1] = ACTIONS(5394), + [aux_sym_type_qualifier_token2] = ACTIONS(5394), + [aux_sym_equivalence_statement_token1] = ACTIONS(5394), + [anon_sym_SEMI] = ACTIONS(5396), + [aux_sym_stop_statement_token1] = ACTIONS(5394), + [aux_sym_stop_statement_token2] = ACTIONS(5394), + [aux_sym_subroutine_call_token1] = ACTIONS(5394), + [aux_sym_keyword_statement_token1] = ACTIONS(5394), + [aux_sym_keyword_statement_token2] = ACTIONS(5394), + [aux_sym_keyword_statement_token3] = ACTIONS(5394), + [aux_sym_keyword_statement_token4] = ACTIONS(5394), + [aux_sym_keyword_statement_token6] = ACTIONS(5394), + [aux_sym_keyword_statement_token7] = ACTIONS(5394), + [aux_sym_include_statement_token1] = ACTIONS(5394), + [aux_sym_data_statement_token1] = ACTIONS(5394), + [aux_sym_do_loop_statement_token1] = ACTIONS(5394), + [aux_sym__inline_if_statement_token1] = ACTIONS(5394), + [aux_sym_end_if_statement_token1] = ACTIONS(5394), + [aux_sym_elseif_clause_token2] = ACTIONS(5394), + [aux_sym__inline_where_statement_token1] = ACTIONS(5394), + [aux_sym__forall_control_expression_token1] = ACTIONS(5394), + [aux_sym_select_case_statement_token1] = ACTIONS(5394), + [aux_sym_select_case_statement_token3] = ACTIONS(5394), + [aux_sym_select_type_statement_token1] = ACTIONS(5394), + [aux_sym_select_rank_statement_token2] = ACTIONS(5394), + [aux_sym_block_construct_token1] = ACTIONS(5394), + [aux_sym_associate_statement_token1] = ACTIONS(5394), + [aux_sym_format_statement_token1] = ACTIONS(5394), + [aux_sym_print_statement_token1] = ACTIONS(5394), + [aux_sym_open_statement_token1] = ACTIONS(5394), + [aux_sym_close_statement_token1] = ACTIONS(5394), + [aux_sym_inquire_statement_token1] = ACTIONS(5394), + [aux_sym_enum_statement_token1] = ACTIONS(5394), + [aux_sym_file_position_statement_token1] = ACTIONS(5394), + [aux_sym_file_position_statement_token2] = ACTIONS(5394), + [aux_sym_file_position_statement_token3] = ACTIONS(5394), + [aux_sym_file_position_statement_token4] = ACTIONS(5394), + [aux_sym_allocate_statement_token1] = ACTIONS(5394), + [aux_sym_entry_statement_token1] = ACTIONS(5394), + [aux_sym_logical_expression_token5] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_LPAREN_SLASH] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [aux_sym_boolean_literal_token1] = ACTIONS(5396), + [aux_sym_boolean_literal_token2] = ACTIONS(5396), + [aux_sym_null_literal_token1] = ACTIONS(5394), + [aux_sym_coarray_statement_token1] = ACTIONS(5394), + [aux_sym_coarray_statement_token2] = ACTIONS(5394), + [aux_sym_coarray_statement_token6] = ACTIONS(5394), + [aux_sym_coarray_statement_token8] = ACTIONS(5394), + [aux_sym_coarray_statement_token11] = ACTIONS(5394), + [aux_sym_coarray_statement_token12] = ACTIONS(5394), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5394), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5394), + [aux_sym_identifier_token1] = ACTIONS(5394), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5432), - [sym__float_literal] = ACTIONS(5432), - [sym__boz_literal] = ACTIONS(5432), - [sym__string_literal] = ACTIONS(5432), - [sym__string_literal_kind] = ACTIONS(5432), + [sym__integer_literal] = ACTIONS(5396), + [sym__float_literal] = ACTIONS(5396), + [sym__boz_literal] = ACTIONS(5396), + [sym__string_literal] = ACTIONS(5396), + [sym__string_literal_kind] = ACTIONS(5396), }, - [1520] = { - [aux_sym_preproc_include_token1] = ACTIONS(5398), - [aux_sym_preproc_def_token1] = ACTIONS(5398), - [aux_sym_preproc_if_token1] = ACTIONS(5398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5398), - [sym_preproc_directive] = ACTIONS(5398), - [anon_sym_LPAREN2] = ACTIONS(5398), - [anon_sym_PLUS] = ACTIONS(5400), - [anon_sym_DASH] = ACTIONS(5400), + [1485] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5398), - [aux_sym_interface_statement_token1] = ACTIONS(5398), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5398), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5398), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5398), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5398), - [aux_sym_language_binding_token1] = ACTIONS(5398), - [aux_sym_procedure_attributes_token1] = ACTIONS(5398), - [aux_sym_procedure_attributes_token3] = ACTIONS(5398), - [aux_sym_contains_statement_token1] = ACTIONS(5398), - [aux_sym_use_statement_token1] = ACTIONS(5398), - [aux_sym_use_statement_token2] = ACTIONS(5398), - [aux_sym_implicit_statement_token1] = ACTIONS(5398), - [aux_sym_implicit_statement_token3] = ACTIONS(5398), - [aux_sym_implicit_statement_token4] = ACTIONS(5398), - [aux_sym_save_statement_token1] = ACTIONS(5398), - [aux_sym_private_statement_token1] = ACTIONS(5398), - [aux_sym_public_statement_token1] = ACTIONS(5398), - [aux_sym_namelist_statement_token1] = ACTIONS(5398), - [aux_sym_common_statement_token1] = ACTIONS(5398), - [aux_sym_import_statement_token1] = ACTIONS(5398), - [aux_sym_derived_type_definition_token1] = ACTIONS(5398), - [aux_sym_abstract_specifier_token1] = ACTIONS(5398), - [aux_sym_procedure_attribute_token6] = ACTIONS(5398), - [aux_sym_variable_attributes_token1] = ACTIONS(5398), - [aux_sym_variable_attributes_token2] = ACTIONS(5398), - [aux_sym_variable_attributes_token3] = ACTIONS(5398), - [aux_sym_variable_attributes_token4] = ACTIONS(5398), - [aux_sym_variable_attributes_token5] = ACTIONS(5398), - [aux_sym__intrinsic_type_token1] = ACTIONS(5398), - [aux_sym__intrinsic_type_token2] = ACTIONS(5398), - [aux_sym__intrinsic_type_token3] = ACTIONS(5398), - [aux_sym__intrinsic_type_token4] = ACTIONS(5398), - [aux_sym__intrinsic_type_token6] = ACTIONS(5398), - [aux_sym__intrinsic_type_token7] = ACTIONS(5398), - [aux_sym__intrinsic_type_token8] = ACTIONS(5398), - [aux_sym__intrinsic_type_token9] = ACTIONS(5398), - [aux_sym__intrinsic_type_token10] = ACTIONS(5398), - [aux_sym_derived_type_token1] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5398), - [aux_sym_type_qualifier_token1] = ACTIONS(5398), - [aux_sym_type_qualifier_token2] = ACTIONS(5398), - [aux_sym_equivalence_statement_token1] = ACTIONS(5398), - [anon_sym_SEMI] = ACTIONS(5400), - [aux_sym_stop_statement_token1] = ACTIONS(5398), - [aux_sym_stop_statement_token2] = ACTIONS(5398), - [aux_sym_subroutine_call_token1] = ACTIONS(5398), - [aux_sym_keyword_statement_token1] = ACTIONS(5398), - [aux_sym_keyword_statement_token2] = ACTIONS(5398), - [aux_sym_keyword_statement_token3] = ACTIONS(5398), - [aux_sym_keyword_statement_token4] = ACTIONS(5398), - [aux_sym_keyword_statement_token6] = ACTIONS(5398), - [aux_sym_keyword_statement_token7] = ACTIONS(5398), - [aux_sym_include_statement_token1] = ACTIONS(5398), - [aux_sym_data_statement_token1] = ACTIONS(5398), - [aux_sym_do_loop_statement_token1] = ACTIONS(5398), - [aux_sym__inline_if_statement_token1] = ACTIONS(5398), - [aux_sym_end_if_statement_token1] = ACTIONS(5398), - [aux_sym_elseif_clause_token2] = ACTIONS(5398), - [aux_sym__inline_where_statement_token1] = ACTIONS(5398), - [aux_sym__forall_control_expression_token1] = ACTIONS(5398), - [aux_sym_select_case_statement_token1] = ACTIONS(5398), - [aux_sym_select_case_statement_token3] = ACTIONS(5398), - [aux_sym_select_type_statement_token1] = ACTIONS(5398), - [aux_sym_select_rank_statement_token2] = ACTIONS(5398), - [aux_sym_block_construct_token1] = ACTIONS(5398), - [aux_sym_associate_statement_token1] = ACTIONS(5398), - [aux_sym_format_statement_token1] = ACTIONS(5398), - [aux_sym_print_statement_token1] = ACTIONS(5398), - [aux_sym_open_statement_token1] = ACTIONS(5398), - [aux_sym_close_statement_token1] = ACTIONS(5398), - [aux_sym_inquire_statement_token1] = ACTIONS(5398), - [aux_sym_enum_statement_token1] = ACTIONS(5398), - [aux_sym_file_position_statement_token1] = ACTIONS(5398), - [aux_sym_file_position_statement_token2] = ACTIONS(5398), - [aux_sym_file_position_statement_token3] = ACTIONS(5398), - [aux_sym_file_position_statement_token4] = ACTIONS(5398), - [aux_sym_allocate_statement_token1] = ACTIONS(5398), - [aux_sym_entry_statement_token1] = ACTIONS(5398), - [aux_sym_logical_expression_token5] = ACTIONS(5400), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_LPAREN_SLASH] = ACTIONS(5400), - [anon_sym_LBRACK] = ACTIONS(5400), - [aux_sym_boolean_literal_token1] = ACTIONS(5400), - [aux_sym_boolean_literal_token2] = ACTIONS(5400), - [aux_sym_null_literal_token1] = ACTIONS(5398), - [aux_sym_coarray_statement_token1] = ACTIONS(5398), - [aux_sym_coarray_statement_token2] = ACTIONS(5398), - [aux_sym_coarray_statement_token6] = ACTIONS(5398), - [aux_sym_coarray_statement_token8] = ACTIONS(5398), - [aux_sym_coarray_statement_token11] = ACTIONS(5398), - [aux_sym_coarray_statement_token12] = ACTIONS(5398), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5398), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5398), - [aux_sym_identifier_token1] = ACTIONS(5398), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_end_function_statement_token1] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5400), - [sym__float_literal] = ACTIONS(5400), - [sym__boz_literal] = ACTIONS(5400), - [sym__string_literal] = ACTIONS(5400), - [sym__string_literal_kind] = ACTIONS(5400), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1521] = { - [aux_sym_preproc_include_token1] = ACTIONS(5434), - [aux_sym_preproc_def_token1] = ACTIONS(5434), - [aux_sym_preproc_if_token1] = ACTIONS(5434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5434), - [sym_preproc_directive] = ACTIONS(5434), - [anon_sym_LPAREN2] = ACTIONS(5434), - [anon_sym_PLUS] = ACTIONS(5436), - [anon_sym_DASH] = ACTIONS(5436), + [1486] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5434), - [aux_sym_interface_statement_token1] = ACTIONS(5434), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5434), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5434), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5434), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5434), - [aux_sym_language_binding_token1] = ACTIONS(5434), - [aux_sym_procedure_attributes_token1] = ACTIONS(5434), - [aux_sym_procedure_attributes_token3] = ACTIONS(5434), - [aux_sym_contains_statement_token1] = ACTIONS(5434), - [aux_sym_use_statement_token1] = ACTIONS(5434), - [aux_sym_use_statement_token2] = ACTIONS(5434), - [aux_sym_implicit_statement_token1] = ACTIONS(5434), - [aux_sym_implicit_statement_token3] = ACTIONS(5434), - [aux_sym_implicit_statement_token4] = ACTIONS(5434), - [aux_sym_save_statement_token1] = ACTIONS(5434), - [aux_sym_private_statement_token1] = ACTIONS(5434), - [aux_sym_public_statement_token1] = ACTIONS(5434), - [aux_sym_namelist_statement_token1] = ACTIONS(5434), - [aux_sym_common_statement_token1] = ACTIONS(5434), - [aux_sym_import_statement_token1] = ACTIONS(5434), - [aux_sym_derived_type_definition_token1] = ACTIONS(5434), - [aux_sym_abstract_specifier_token1] = ACTIONS(5434), - [aux_sym_procedure_attribute_token6] = ACTIONS(5434), - [aux_sym_variable_attributes_token1] = ACTIONS(5434), - [aux_sym_variable_attributes_token2] = ACTIONS(5434), - [aux_sym_variable_attributes_token3] = ACTIONS(5434), - [aux_sym_variable_attributes_token4] = ACTIONS(5434), - [aux_sym_variable_attributes_token5] = ACTIONS(5434), - [aux_sym__intrinsic_type_token1] = ACTIONS(5434), - [aux_sym__intrinsic_type_token2] = ACTIONS(5434), - [aux_sym__intrinsic_type_token3] = ACTIONS(5434), - [aux_sym__intrinsic_type_token4] = ACTIONS(5434), - [aux_sym__intrinsic_type_token6] = ACTIONS(5434), - [aux_sym__intrinsic_type_token7] = ACTIONS(5434), - [aux_sym__intrinsic_type_token8] = ACTIONS(5434), - [aux_sym__intrinsic_type_token9] = ACTIONS(5434), - [aux_sym__intrinsic_type_token10] = ACTIONS(5434), - [aux_sym_derived_type_token1] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5434), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5434), - [aux_sym_type_qualifier_token1] = ACTIONS(5434), - [aux_sym_type_qualifier_token2] = ACTIONS(5434), - [aux_sym_equivalence_statement_token1] = ACTIONS(5434), - [anon_sym_SEMI] = ACTIONS(5436), - [aux_sym_stop_statement_token1] = ACTIONS(5434), - [aux_sym_stop_statement_token2] = ACTIONS(5434), - [aux_sym_subroutine_call_token1] = ACTIONS(5434), - [aux_sym_keyword_statement_token1] = ACTIONS(5434), - [aux_sym_keyword_statement_token2] = ACTIONS(5434), - [aux_sym_keyword_statement_token3] = ACTIONS(5434), - [aux_sym_keyword_statement_token4] = ACTIONS(5434), - [aux_sym_keyword_statement_token6] = ACTIONS(5434), - [aux_sym_keyword_statement_token7] = ACTIONS(5434), - [aux_sym_include_statement_token1] = ACTIONS(5434), - [aux_sym_data_statement_token1] = ACTIONS(5434), - [aux_sym_do_loop_statement_token1] = ACTIONS(5434), - [aux_sym__inline_if_statement_token1] = ACTIONS(5434), - [aux_sym_end_if_statement_token1] = ACTIONS(5434), - [aux_sym_elseif_clause_token2] = ACTIONS(5434), - [aux_sym__inline_where_statement_token1] = ACTIONS(5434), - [aux_sym__forall_control_expression_token1] = ACTIONS(5434), - [aux_sym_select_case_statement_token1] = ACTIONS(5434), - [aux_sym_select_case_statement_token3] = ACTIONS(5434), - [aux_sym_select_type_statement_token1] = ACTIONS(5434), - [aux_sym_select_rank_statement_token2] = ACTIONS(5434), - [aux_sym_block_construct_token1] = ACTIONS(5434), - [aux_sym_associate_statement_token1] = ACTIONS(5434), - [aux_sym_format_statement_token1] = ACTIONS(5434), - [aux_sym_print_statement_token1] = ACTIONS(5434), - [aux_sym_open_statement_token1] = ACTIONS(5434), - [aux_sym_close_statement_token1] = ACTIONS(5434), - [aux_sym_inquire_statement_token1] = ACTIONS(5434), - [aux_sym_enum_statement_token1] = ACTIONS(5434), - [aux_sym_file_position_statement_token1] = ACTIONS(5434), - [aux_sym_file_position_statement_token2] = ACTIONS(5434), - [aux_sym_file_position_statement_token3] = ACTIONS(5434), - [aux_sym_file_position_statement_token4] = ACTIONS(5434), - [aux_sym_allocate_statement_token1] = ACTIONS(5434), - [aux_sym_entry_statement_token1] = ACTIONS(5434), - [aux_sym_logical_expression_token5] = ACTIONS(5436), - [anon_sym_DOT] = ACTIONS(5434), - [anon_sym_LPAREN_SLASH] = ACTIONS(5436), - [anon_sym_LBRACK] = ACTIONS(5436), - [aux_sym_boolean_literal_token1] = ACTIONS(5436), - [aux_sym_boolean_literal_token2] = ACTIONS(5436), - [aux_sym_null_literal_token1] = ACTIONS(5434), - [aux_sym_coarray_statement_token1] = ACTIONS(5434), - [aux_sym_coarray_statement_token2] = ACTIONS(5434), - [aux_sym_coarray_statement_token6] = ACTIONS(5434), - [aux_sym_coarray_statement_token8] = ACTIONS(5434), - [aux_sym_coarray_statement_token11] = ACTIONS(5434), - [aux_sym_coarray_statement_token12] = ACTIONS(5434), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5434), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5434), - [aux_sym_identifier_token1] = ACTIONS(5434), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_end_program_statement_token2] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_subroutine_call_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_keyword_statement_token4] = ACTIONS(4615), + [aux_sym_keyword_statement_token6] = ACTIONS(4615), + [aux_sym_keyword_statement_token7] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym_do_loop_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym__inline_where_statement_token1] = ACTIONS(4615), + [aux_sym__forall_control_expression_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token3] = ACTIONS(4615), + [aux_sym_select_type_statement_token1] = ACTIONS(4615), + [aux_sym_select_rank_statement_token2] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_associate_statement_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_print_statement_token1] = ACTIONS(4615), + [aux_sym_open_statement_token1] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token2] = ACTIONS(4615), + [aux_sym_file_position_statement_token3] = ACTIONS(4615), + [aux_sym_file_position_statement_token4] = ACTIONS(4615), + [aux_sym_allocate_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_logical_expression_token5] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LPAREN_SLASH] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(4617), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5436), - [sym__float_literal] = ACTIONS(5436), - [sym__boz_literal] = ACTIONS(5436), - [sym__string_literal] = ACTIONS(5436), - [sym__string_literal_kind] = ACTIONS(5436), + [sym__integer_literal] = ACTIONS(4617), + [sym__float_literal] = ACTIONS(4617), + [sym__boz_literal] = ACTIONS(4617), + [sym__string_literal] = ACTIONS(4617), + [sym__string_literal_kind] = ACTIONS(4617), }, - [1522] = { + [1487] = { + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), + [anon_sym_LPAREN2] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token2] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_contains_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_subroutine_call_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_keyword_statement_token4] = ACTIONS(4511), + [aux_sym_keyword_statement_token6] = ACTIONS(4511), + [aux_sym_keyword_statement_token7] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym_do_loop_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym__inline_where_statement_token1] = ACTIONS(4511), + [aux_sym__forall_control_expression_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token3] = ACTIONS(4511), + [aux_sym_select_type_statement_token1] = ACTIONS(4511), + [aux_sym_select_rank_statement_token2] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_associate_statement_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_print_statement_token1] = ACTIONS(4511), + [aux_sym_open_statement_token1] = ACTIONS(4511), + [aux_sym_close_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token2] = ACTIONS(4511), + [aux_sym_file_position_statement_token3] = ACTIONS(4511), + [aux_sym_file_position_statement_token4] = ACTIONS(4511), + [aux_sym_allocate_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_logical_expression_token5] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_LPAREN_SLASH] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [aux_sym_boolean_literal_token1] = ACTIONS(4513), + [aux_sym_boolean_literal_token2] = ACTIONS(4513), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4513), + [sym__float_literal] = ACTIONS(4513), + [sym__boz_literal] = ACTIONS(4513), + [sym__string_literal] = ACTIONS(4513), + [sym__string_literal_kind] = ACTIONS(4513), + }, + [1488] = { [aux_sym_preproc_include_token1] = ACTIONS(5438), [aux_sym_preproc_def_token1] = ACTIONS(5438), [aux_sym_preproc_if_token1] = ACTIONS(5438), @@ -292179,11 +287929,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5440), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5438), - [aux_sym_end_program_statement_token2] = ACTIONS(5438), [aux_sym_interface_statement_token1] = ACTIONS(5438), [aux_sym_defined_io_procedure_token1] = ACTIONS(5438), [aux_sym_defined_io_procedure_token2] = ACTIONS(5438), [aux_sym_module_procedure_statement_token1] = ACTIONS(5438), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5438), [aux_sym_language_binding_token1] = ACTIONS(5438), [aux_sym_procedure_attributes_token1] = ACTIONS(5438), [aux_sym_procedure_attributes_token3] = ACTIONS(5438), @@ -292292,882 +288042,882 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5440), [sym__string_literal_kind] = ACTIONS(5440), }, - [1523] = { - [aux_sym_preproc_include_token1] = ACTIONS(5422), - [aux_sym_preproc_def_token1] = ACTIONS(5422), - [aux_sym_preproc_if_token1] = ACTIONS(5422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5422), - [sym_preproc_directive] = ACTIONS(5422), - [anon_sym_LPAREN2] = ACTIONS(5422), - [anon_sym_PLUS] = ACTIONS(5424), - [anon_sym_DASH] = ACTIONS(5424), + [1489] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token2] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_LPAREN2] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_subroutine_call_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_keyword_statement_token4] = ACTIONS(5063), + [aux_sym_keyword_statement_token6] = ACTIONS(5063), + [aux_sym_keyword_statement_token7] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym_do_loop_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym__inline_where_statement_token1] = ACTIONS(5063), + [aux_sym__forall_control_expression_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token3] = ACTIONS(5063), + [aux_sym_select_type_statement_token1] = ACTIONS(5063), + [aux_sym_select_rank_statement_token2] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_associate_statement_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_print_statement_token1] = ACTIONS(5063), + [aux_sym_open_statement_token1] = ACTIONS(5063), + [aux_sym_close_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token2] = ACTIONS(5063), + [aux_sym_file_position_statement_token3] = ACTIONS(5063), + [aux_sym_file_position_statement_token4] = ACTIONS(5063), + [aux_sym_allocate_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_logical_expression_token5] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_LPAREN_SLASH] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [aux_sym_boolean_literal_token1] = ACTIONS(5065), + [aux_sym_boolean_literal_token2] = ACTIONS(5065), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + [sym__float_literal] = ACTIONS(5065), + [sym__boz_literal] = ACTIONS(5065), + [sym__string_literal] = ACTIONS(5065), + [sym__string_literal_kind] = ACTIONS(5065), + }, + [1490] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_end_program_statement_token2] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_subroutine_call_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_keyword_statement_token4] = ACTIONS(5026), + [aux_sym_keyword_statement_token6] = ACTIONS(5026), + [aux_sym_keyword_statement_token7] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym_do_loop_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym__inline_where_statement_token1] = ACTIONS(5026), + [aux_sym__forall_control_expression_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token3] = ACTIONS(5026), + [aux_sym_select_type_statement_token1] = ACTIONS(5026), + [aux_sym_select_rank_statement_token2] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_associate_statement_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_print_statement_token1] = ACTIONS(5026), + [aux_sym_open_statement_token1] = ACTIONS(5026), + [aux_sym_close_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token2] = ACTIONS(5026), + [aux_sym_file_position_statement_token3] = ACTIONS(5026), + [aux_sym_file_position_statement_token4] = ACTIONS(5026), + [aux_sym_allocate_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_logical_expression_token5] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_LPAREN_SLASH] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [aux_sym_boolean_literal_token1] = ACTIONS(5028), + [aux_sym_boolean_literal_token2] = ACTIONS(5028), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + [sym__float_literal] = ACTIONS(5028), + [sym__boz_literal] = ACTIONS(5028), + [sym__string_literal] = ACTIONS(5028), + [sym__string_literal_kind] = ACTIONS(5028), + }, + [1491] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5422), - [aux_sym_end_program_statement_token2] = ACTIONS(5422), - [aux_sym_interface_statement_token1] = ACTIONS(5422), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5422), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5422), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5422), - [aux_sym_language_binding_token1] = ACTIONS(5422), - [aux_sym_procedure_attributes_token1] = ACTIONS(5422), - [aux_sym_procedure_attributes_token3] = ACTIONS(5422), - [aux_sym_contains_statement_token1] = ACTIONS(5422), - [aux_sym_use_statement_token1] = ACTIONS(5422), - [aux_sym_use_statement_token2] = ACTIONS(5422), - [aux_sym_implicit_statement_token1] = ACTIONS(5422), - [aux_sym_implicit_statement_token3] = ACTIONS(5422), - [aux_sym_implicit_statement_token4] = ACTIONS(5422), - [aux_sym_save_statement_token1] = ACTIONS(5422), - [aux_sym_private_statement_token1] = ACTIONS(5422), - [aux_sym_public_statement_token1] = ACTIONS(5422), - [aux_sym_namelist_statement_token1] = ACTIONS(5422), - [aux_sym_common_statement_token1] = ACTIONS(5422), - [aux_sym_import_statement_token1] = ACTIONS(5422), - [aux_sym_derived_type_definition_token1] = ACTIONS(5422), - [aux_sym_abstract_specifier_token1] = ACTIONS(5422), - [aux_sym_procedure_attribute_token6] = ACTIONS(5422), - [aux_sym_variable_attributes_token1] = ACTIONS(5422), - [aux_sym_variable_attributes_token2] = ACTIONS(5422), - [aux_sym_variable_attributes_token3] = ACTIONS(5422), - [aux_sym_variable_attributes_token4] = ACTIONS(5422), - [aux_sym_variable_attributes_token5] = ACTIONS(5422), - [aux_sym__intrinsic_type_token1] = ACTIONS(5422), - [aux_sym__intrinsic_type_token2] = ACTIONS(5422), - [aux_sym__intrinsic_type_token3] = ACTIONS(5422), - [aux_sym__intrinsic_type_token4] = ACTIONS(5422), - [aux_sym__intrinsic_type_token6] = ACTIONS(5422), - [aux_sym__intrinsic_type_token7] = ACTIONS(5422), - [aux_sym__intrinsic_type_token8] = ACTIONS(5422), - [aux_sym__intrinsic_type_token9] = ACTIONS(5422), - [aux_sym__intrinsic_type_token10] = ACTIONS(5422), - [aux_sym_derived_type_token1] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5422), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5422), - [aux_sym_type_qualifier_token1] = ACTIONS(5422), - [aux_sym_type_qualifier_token2] = ACTIONS(5422), - [aux_sym_equivalence_statement_token1] = ACTIONS(5422), - [anon_sym_SEMI] = ACTIONS(5424), - [aux_sym_stop_statement_token1] = ACTIONS(5422), - [aux_sym_stop_statement_token2] = ACTIONS(5422), - [aux_sym_subroutine_call_token1] = ACTIONS(5422), - [aux_sym_keyword_statement_token1] = ACTIONS(5422), - [aux_sym_keyword_statement_token2] = ACTIONS(5422), - [aux_sym_keyword_statement_token3] = ACTIONS(5422), - [aux_sym_keyword_statement_token4] = ACTIONS(5422), - [aux_sym_keyword_statement_token6] = ACTIONS(5422), - [aux_sym_keyword_statement_token7] = ACTIONS(5422), - [aux_sym_include_statement_token1] = ACTIONS(5422), - [aux_sym_data_statement_token1] = ACTIONS(5422), - [aux_sym_do_loop_statement_token1] = ACTIONS(5422), - [aux_sym__inline_if_statement_token1] = ACTIONS(5422), - [aux_sym_end_if_statement_token1] = ACTIONS(5422), - [aux_sym_elseif_clause_token2] = ACTIONS(5422), - [aux_sym__inline_where_statement_token1] = ACTIONS(5422), - [aux_sym__forall_control_expression_token1] = ACTIONS(5422), - [aux_sym_select_case_statement_token1] = ACTIONS(5422), - [aux_sym_select_case_statement_token3] = ACTIONS(5422), - [aux_sym_select_type_statement_token1] = ACTIONS(5422), - [aux_sym_select_rank_statement_token2] = ACTIONS(5422), - [aux_sym_block_construct_token1] = ACTIONS(5422), - [aux_sym_associate_statement_token1] = ACTIONS(5422), - [aux_sym_format_statement_token1] = ACTIONS(5422), - [aux_sym_print_statement_token1] = ACTIONS(5422), - [aux_sym_open_statement_token1] = ACTIONS(5422), - [aux_sym_close_statement_token1] = ACTIONS(5422), - [aux_sym_inquire_statement_token1] = ACTIONS(5422), - [aux_sym_enum_statement_token1] = ACTIONS(5422), - [aux_sym_file_position_statement_token1] = ACTIONS(5422), - [aux_sym_file_position_statement_token2] = ACTIONS(5422), - [aux_sym_file_position_statement_token3] = ACTIONS(5422), - [aux_sym_file_position_statement_token4] = ACTIONS(5422), - [aux_sym_allocate_statement_token1] = ACTIONS(5422), - [aux_sym_entry_statement_token1] = ACTIONS(5422), - [aux_sym_logical_expression_token5] = ACTIONS(5424), - [anon_sym_DOT] = ACTIONS(5422), - [anon_sym_LPAREN_SLASH] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(5424), - [aux_sym_boolean_literal_token1] = ACTIONS(5424), - [aux_sym_boolean_literal_token2] = ACTIONS(5424), - [aux_sym_null_literal_token1] = ACTIONS(5422), - [aux_sym_coarray_statement_token1] = ACTIONS(5422), - [aux_sym_coarray_statement_token2] = ACTIONS(5422), - [aux_sym_coarray_statement_token6] = ACTIONS(5422), - [aux_sym_coarray_statement_token8] = ACTIONS(5422), - [aux_sym_coarray_statement_token11] = ACTIONS(5422), - [aux_sym_coarray_statement_token12] = ACTIONS(5422), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5422), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5422), - [aux_sym_identifier_token1] = ACTIONS(5422), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_program_statement_token2] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), + }, + [1492] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_program_statement_token2] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5424), - [sym__float_literal] = ACTIONS(5424), - [sym__boz_literal] = ACTIONS(5424), - [sym__string_literal] = ACTIONS(5424), - [sym__string_literal_kind] = ACTIONS(5424), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1524] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token2] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_LPAREN2] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_subroutine_call_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_keyword_statement_token4] = ACTIONS(5021), - [aux_sym_keyword_statement_token6] = ACTIONS(5021), - [aux_sym_keyword_statement_token7] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym_do_loop_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym__inline_where_statement_token1] = ACTIONS(5021), - [aux_sym__forall_control_expression_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token3] = ACTIONS(5021), - [aux_sym_select_type_statement_token1] = ACTIONS(5021), - [aux_sym_select_rank_statement_token2] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_associate_statement_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_print_statement_token1] = ACTIONS(5021), - [aux_sym_open_statement_token1] = ACTIONS(5021), - [aux_sym_close_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token2] = ACTIONS(5021), - [aux_sym_file_position_statement_token3] = ACTIONS(5021), - [aux_sym_file_position_statement_token4] = ACTIONS(5021), - [aux_sym_allocate_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_logical_expression_token5] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_LPAREN_SLASH] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [aux_sym_boolean_literal_token1] = ACTIONS(5023), - [aux_sym_boolean_literal_token2] = ACTIONS(5023), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - [sym__float_literal] = ACTIONS(5023), - [sym__boz_literal] = ACTIONS(5023), - [sym__string_literal] = ACTIONS(5023), - [sym__string_literal_kind] = ACTIONS(5023), + [1493] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_subroutine_call_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_keyword_statement_token4] = ACTIONS(5006), + [aux_sym_keyword_statement_token6] = ACTIONS(5006), + [aux_sym_keyword_statement_token7] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym_do_loop_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym__inline_where_statement_token1] = ACTIONS(5006), + [aux_sym__forall_control_expression_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token3] = ACTIONS(5006), + [aux_sym_select_type_statement_token1] = ACTIONS(5006), + [aux_sym_select_rank_statement_token2] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_associate_statement_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_print_statement_token1] = ACTIONS(5006), + [aux_sym_open_statement_token1] = ACTIONS(5006), + [aux_sym_close_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token2] = ACTIONS(5006), + [aux_sym_file_position_statement_token3] = ACTIONS(5006), + [aux_sym_file_position_statement_token4] = ACTIONS(5006), + [aux_sym_allocate_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_logical_expression_token5] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_LPAREN_SLASH] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [aux_sym_boolean_literal_token1] = ACTIONS(5008), + [aux_sym_boolean_literal_token2] = ACTIONS(5008), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + [sym__float_literal] = ACTIONS(5008), + [sym__boz_literal] = ACTIONS(5008), + [sym__string_literal] = ACTIONS(5008), + [sym__string_literal_kind] = ACTIONS(5008), }, - [1525] = { - [aux_sym_preproc_include_token1] = ACTIONS(5426), - [aux_sym_preproc_def_token1] = ACTIONS(5426), - [aux_sym_preproc_if_token1] = ACTIONS(5426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5426), - [sym_preproc_directive] = ACTIONS(5426), - [anon_sym_LPAREN2] = ACTIONS(5426), - [anon_sym_PLUS] = ACTIONS(5428), - [anon_sym_DASH] = ACTIONS(5428), + [1494] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5426), - [aux_sym_end_program_statement_token2] = ACTIONS(5426), - [aux_sym_interface_statement_token1] = ACTIONS(5426), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5426), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5426), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5426), - [aux_sym_language_binding_token1] = ACTIONS(5426), - [aux_sym_procedure_attributes_token1] = ACTIONS(5426), - [aux_sym_procedure_attributes_token3] = ACTIONS(5426), - [aux_sym_contains_statement_token1] = ACTIONS(5426), - [aux_sym_use_statement_token1] = ACTIONS(5426), - [aux_sym_use_statement_token2] = ACTIONS(5426), - [aux_sym_implicit_statement_token1] = ACTIONS(5426), - [aux_sym_implicit_statement_token3] = ACTIONS(5426), - [aux_sym_implicit_statement_token4] = ACTIONS(5426), - [aux_sym_save_statement_token1] = ACTIONS(5426), - [aux_sym_private_statement_token1] = ACTIONS(5426), - [aux_sym_public_statement_token1] = ACTIONS(5426), - [aux_sym_namelist_statement_token1] = ACTIONS(5426), - [aux_sym_common_statement_token1] = ACTIONS(5426), - [aux_sym_import_statement_token1] = ACTIONS(5426), - [aux_sym_derived_type_definition_token1] = ACTIONS(5426), - [aux_sym_abstract_specifier_token1] = ACTIONS(5426), - [aux_sym_procedure_attribute_token6] = ACTIONS(5426), - [aux_sym_variable_attributes_token1] = ACTIONS(5426), - [aux_sym_variable_attributes_token2] = ACTIONS(5426), - [aux_sym_variable_attributes_token3] = ACTIONS(5426), - [aux_sym_variable_attributes_token4] = ACTIONS(5426), - [aux_sym_variable_attributes_token5] = ACTIONS(5426), - [aux_sym__intrinsic_type_token1] = ACTIONS(5426), - [aux_sym__intrinsic_type_token2] = ACTIONS(5426), - [aux_sym__intrinsic_type_token3] = ACTIONS(5426), - [aux_sym__intrinsic_type_token4] = ACTIONS(5426), - [aux_sym__intrinsic_type_token6] = ACTIONS(5426), - [aux_sym__intrinsic_type_token7] = ACTIONS(5426), - [aux_sym__intrinsic_type_token8] = ACTIONS(5426), - [aux_sym__intrinsic_type_token9] = ACTIONS(5426), - [aux_sym__intrinsic_type_token10] = ACTIONS(5426), - [aux_sym_derived_type_token1] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5426), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5426), - [aux_sym_type_qualifier_token1] = ACTIONS(5426), - [aux_sym_type_qualifier_token2] = ACTIONS(5426), - [aux_sym_equivalence_statement_token1] = ACTIONS(5426), - [anon_sym_SEMI] = ACTIONS(5428), - [aux_sym_stop_statement_token1] = ACTIONS(5426), - [aux_sym_stop_statement_token2] = ACTIONS(5426), - [aux_sym_subroutine_call_token1] = ACTIONS(5426), - [aux_sym_keyword_statement_token1] = ACTIONS(5426), - [aux_sym_keyword_statement_token2] = ACTIONS(5426), - [aux_sym_keyword_statement_token3] = ACTIONS(5426), - [aux_sym_keyword_statement_token4] = ACTIONS(5426), - [aux_sym_keyword_statement_token6] = ACTIONS(5426), - [aux_sym_keyword_statement_token7] = ACTIONS(5426), - [aux_sym_include_statement_token1] = ACTIONS(5426), - [aux_sym_data_statement_token1] = ACTIONS(5426), - [aux_sym_do_loop_statement_token1] = ACTIONS(5426), - [aux_sym__inline_if_statement_token1] = ACTIONS(5426), - [aux_sym_end_if_statement_token1] = ACTIONS(5426), - [aux_sym_elseif_clause_token2] = ACTIONS(5426), - [aux_sym__inline_where_statement_token1] = ACTIONS(5426), - [aux_sym__forall_control_expression_token1] = ACTIONS(5426), - [aux_sym_select_case_statement_token1] = ACTIONS(5426), - [aux_sym_select_case_statement_token3] = ACTIONS(5426), - [aux_sym_select_type_statement_token1] = ACTIONS(5426), - [aux_sym_select_rank_statement_token2] = ACTIONS(5426), - [aux_sym_block_construct_token1] = ACTIONS(5426), - [aux_sym_associate_statement_token1] = ACTIONS(5426), - [aux_sym_format_statement_token1] = ACTIONS(5426), - [aux_sym_print_statement_token1] = ACTIONS(5426), - [aux_sym_open_statement_token1] = ACTIONS(5426), - [aux_sym_close_statement_token1] = ACTIONS(5426), - [aux_sym_inquire_statement_token1] = ACTIONS(5426), - [aux_sym_enum_statement_token1] = ACTIONS(5426), - [aux_sym_file_position_statement_token1] = ACTIONS(5426), - [aux_sym_file_position_statement_token2] = ACTIONS(5426), - [aux_sym_file_position_statement_token3] = ACTIONS(5426), - [aux_sym_file_position_statement_token4] = ACTIONS(5426), - [aux_sym_allocate_statement_token1] = ACTIONS(5426), - [aux_sym_entry_statement_token1] = ACTIONS(5426), - [aux_sym_logical_expression_token5] = ACTIONS(5428), - [anon_sym_DOT] = ACTIONS(5426), - [anon_sym_LPAREN_SLASH] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(5428), - [aux_sym_boolean_literal_token1] = ACTIONS(5428), - [aux_sym_boolean_literal_token2] = ACTIONS(5428), - [aux_sym_null_literal_token1] = ACTIONS(5426), - [aux_sym_coarray_statement_token1] = ACTIONS(5426), - [aux_sym_coarray_statement_token2] = ACTIONS(5426), - [aux_sym_coarray_statement_token6] = ACTIONS(5426), - [aux_sym_coarray_statement_token8] = ACTIONS(5426), - [aux_sym_coarray_statement_token11] = ACTIONS(5426), - [aux_sym_coarray_statement_token12] = ACTIONS(5426), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5426), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5426), - [aux_sym_identifier_token1] = ACTIONS(5426), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_subroutine_call_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_keyword_statement_token4] = ACTIONS(4994), + [aux_sym_keyword_statement_token6] = ACTIONS(4994), + [aux_sym_keyword_statement_token7] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym_do_loop_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym__inline_where_statement_token1] = ACTIONS(4994), + [aux_sym__forall_control_expression_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token3] = ACTIONS(4994), + [aux_sym_select_type_statement_token1] = ACTIONS(4994), + [aux_sym_select_rank_statement_token2] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_associate_statement_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_print_statement_token1] = ACTIONS(4994), + [aux_sym_open_statement_token1] = ACTIONS(4994), + [aux_sym_close_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token2] = ACTIONS(4994), + [aux_sym_file_position_statement_token3] = ACTIONS(4994), + [aux_sym_file_position_statement_token4] = ACTIONS(4994), + [aux_sym_allocate_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_logical_expression_token5] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_LPAREN_SLASH] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [aux_sym_boolean_literal_token1] = ACTIONS(4996), + [aux_sym_boolean_literal_token2] = ACTIONS(4996), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5428), - [sym__float_literal] = ACTIONS(5428), - [sym__boz_literal] = ACTIONS(5428), - [sym__string_literal] = ACTIONS(5428), - [sym__string_literal_kind] = ACTIONS(5428), - }, - [1526] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token2] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_subroutine_call_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_keyword_statement_token4] = ACTIONS(5025), - [aux_sym_keyword_statement_token6] = ACTIONS(5025), - [aux_sym_keyword_statement_token7] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym_do_loop_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym__inline_where_statement_token1] = ACTIONS(5025), - [aux_sym__forall_control_expression_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token3] = ACTIONS(5025), - [aux_sym_select_type_statement_token1] = ACTIONS(5025), - [aux_sym_select_rank_statement_token2] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_associate_statement_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_print_statement_token1] = ACTIONS(5025), - [aux_sym_open_statement_token1] = ACTIONS(5025), - [aux_sym_close_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token2] = ACTIONS(5025), - [aux_sym_file_position_statement_token3] = ACTIONS(5025), - [aux_sym_file_position_statement_token4] = ACTIONS(5025), - [aux_sym_allocate_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_logical_expression_token5] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_LPAREN_SLASH] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [aux_sym_boolean_literal_token1] = ACTIONS(5027), - [aux_sym_boolean_literal_token2] = ACTIONS(5027), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - [sym__float_literal] = ACTIONS(5027), - [sym__boz_literal] = ACTIONS(5027), - [sym__string_literal] = ACTIONS(5027), - [sym__string_literal_kind] = ACTIONS(5027), - }, - [1527] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_end_program_statement_token2] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), + [sym__integer_literal] = ACTIONS(4996), + [sym__float_literal] = ACTIONS(4996), + [sym__boz_literal] = ACTIONS(4996), + [sym__string_literal] = ACTIONS(4996), + [sym__string_literal_kind] = ACTIONS(4996), }, - [1528] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token2] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_subroutine_call_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_keyword_statement_token4] = ACTIONS(5037), - [aux_sym_keyword_statement_token6] = ACTIONS(5037), - [aux_sym_keyword_statement_token7] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym_do_loop_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym__inline_where_statement_token1] = ACTIONS(5037), - [aux_sym__forall_control_expression_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token3] = ACTIONS(5037), - [aux_sym_select_type_statement_token1] = ACTIONS(5037), - [aux_sym_select_rank_statement_token2] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_associate_statement_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_print_statement_token1] = ACTIONS(5037), - [aux_sym_open_statement_token1] = ACTIONS(5037), - [aux_sym_close_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token2] = ACTIONS(5037), - [aux_sym_file_position_statement_token3] = ACTIONS(5037), - [aux_sym_file_position_statement_token4] = ACTIONS(5037), - [aux_sym_allocate_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_logical_expression_token5] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_LPAREN_SLASH] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [aux_sym_boolean_literal_token1] = ACTIONS(5039), - [aux_sym_boolean_literal_token2] = ACTIONS(5039), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - [sym__float_literal] = ACTIONS(5039), - [sym__boz_literal] = ACTIONS(5039), - [sym__string_literal] = ACTIONS(5039), - [sym__string_literal_kind] = ACTIONS(5039), - }, - [1529] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token2] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_subroutine_call_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_keyword_statement_token4] = ACTIONS(5049), - [aux_sym_keyword_statement_token6] = ACTIONS(5049), - [aux_sym_keyword_statement_token7] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym_do_loop_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym__inline_where_statement_token1] = ACTIONS(5049), - [aux_sym__forall_control_expression_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token3] = ACTIONS(5049), - [aux_sym_select_type_statement_token1] = ACTIONS(5049), - [aux_sym_select_rank_statement_token2] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_associate_statement_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_print_statement_token1] = ACTIONS(5049), - [aux_sym_open_statement_token1] = ACTIONS(5049), - [aux_sym_close_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token2] = ACTIONS(5049), - [aux_sym_file_position_statement_token3] = ACTIONS(5049), - [aux_sym_file_position_statement_token4] = ACTIONS(5049), - [aux_sym_allocate_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_logical_expression_token5] = ACTIONS(5051), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_LPAREN_SLASH] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [aux_sym_boolean_literal_token1] = ACTIONS(5051), - [aux_sym_boolean_literal_token2] = ACTIONS(5051), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - [sym__float_literal] = ACTIONS(5051), - [sym__boz_literal] = ACTIONS(5051), - [sym__string_literal] = ACTIONS(5051), - [sym__string_literal_kind] = ACTIONS(5051), + [1495] = { + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, - [1530] = { + [1496] = { [aux_sym_preproc_include_token1] = ACTIONS(4255), [aux_sym_preproc_def_token1] = ACTIONS(4255), [aux_sym_preproc_if_token1] = ACTIONS(4255), @@ -293175,8 +288925,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), [sym_preproc_directive] = ACTIONS(4255), [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4255), [aux_sym_end_program_statement_token2] = ACTIONS(4255), @@ -293233,7 +288983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(4255), [aux_sym_type_qualifier_token2] = ACTIONS(4255), [aux_sym_equivalence_statement_token1] = ACTIONS(4255), - [anon_sym_SEMI] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4257), [aux_sym_stop_statement_token1] = ACTIONS(4255), [aux_sym_stop_statement_token2] = ACTIONS(4255), [aux_sym_subroutine_call_token1] = ACTIONS(4255), @@ -293269,12 +289019,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4255), [aux_sym_allocate_statement_token1] = ACTIONS(4255), [aux_sym_entry_statement_token1] = ACTIONS(4255), - [aux_sym_logical_expression_token5] = ACTIONS(4261), + [aux_sym_logical_expression_token5] = ACTIONS(4257), [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LPAREN_SLASH] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [aux_sym_boolean_literal_token1] = ACTIONS(4261), - [aux_sym_boolean_literal_token2] = ACTIONS(4261), + [anon_sym_LPAREN_SLASH] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_boolean_literal_token1] = ACTIONS(4257), + [aux_sym_boolean_literal_token2] = ACTIONS(4257), [aux_sym_null_literal_token1] = ACTIONS(4255), [aux_sym_coarray_statement_token1] = ACTIONS(4255), [aux_sym_coarray_statement_token2] = ACTIONS(4255), @@ -293286,1755 +289036,1255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), [aux_sym_identifier_token1] = ACTIONS(4255), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4261), - [sym__float_literal] = ACTIONS(4261), - [sym__boz_literal] = ACTIONS(4261), - [sym__string_literal] = ACTIONS(4261), - [sym__string_literal_kind] = ACTIONS(4261), - }, - [1531] = { - [aux_sym_preproc_include_token1] = ACTIONS(5410), - [aux_sym_preproc_def_token1] = ACTIONS(5410), - [aux_sym_preproc_if_token1] = ACTIONS(5410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5410), - [sym_preproc_directive] = ACTIONS(5410), - [anon_sym_LPAREN2] = ACTIONS(5410), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5410), - [aux_sym_end_program_statement_token2] = ACTIONS(5410), - [aux_sym_interface_statement_token1] = ACTIONS(5410), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5410), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5410), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5410), - [aux_sym_language_binding_token1] = ACTIONS(5410), - [aux_sym_procedure_attributes_token1] = ACTIONS(5410), - [aux_sym_procedure_attributes_token3] = ACTIONS(5410), - [aux_sym_contains_statement_token1] = ACTIONS(5410), - [aux_sym_use_statement_token1] = ACTIONS(5410), - [aux_sym_use_statement_token2] = ACTIONS(5410), - [aux_sym_implicit_statement_token1] = ACTIONS(5410), - [aux_sym_implicit_statement_token3] = ACTIONS(5410), - [aux_sym_implicit_statement_token4] = ACTIONS(5410), - [aux_sym_save_statement_token1] = ACTIONS(5410), - [aux_sym_private_statement_token1] = ACTIONS(5410), - [aux_sym_public_statement_token1] = ACTIONS(5410), - [aux_sym_namelist_statement_token1] = ACTIONS(5410), - [aux_sym_common_statement_token1] = ACTIONS(5410), - [aux_sym_import_statement_token1] = ACTIONS(5410), - [aux_sym_derived_type_definition_token1] = ACTIONS(5410), - [aux_sym_abstract_specifier_token1] = ACTIONS(5410), - [aux_sym_procedure_attribute_token6] = ACTIONS(5410), - [aux_sym_variable_attributes_token1] = ACTIONS(5410), - [aux_sym_variable_attributes_token2] = ACTIONS(5410), - [aux_sym_variable_attributes_token3] = ACTIONS(5410), - [aux_sym_variable_attributes_token4] = ACTIONS(5410), - [aux_sym_variable_attributes_token5] = ACTIONS(5410), - [aux_sym__intrinsic_type_token1] = ACTIONS(5410), - [aux_sym__intrinsic_type_token2] = ACTIONS(5410), - [aux_sym__intrinsic_type_token3] = ACTIONS(5410), - [aux_sym__intrinsic_type_token4] = ACTIONS(5410), - [aux_sym__intrinsic_type_token6] = ACTIONS(5410), - [aux_sym__intrinsic_type_token7] = ACTIONS(5410), - [aux_sym__intrinsic_type_token8] = ACTIONS(5410), - [aux_sym__intrinsic_type_token9] = ACTIONS(5410), - [aux_sym__intrinsic_type_token10] = ACTIONS(5410), - [aux_sym_derived_type_token1] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5410), - [aux_sym_type_qualifier_token1] = ACTIONS(5410), - [aux_sym_type_qualifier_token2] = ACTIONS(5410), - [aux_sym_equivalence_statement_token1] = ACTIONS(5410), - [anon_sym_SEMI] = ACTIONS(5412), - [aux_sym_stop_statement_token1] = ACTIONS(5410), - [aux_sym_stop_statement_token2] = ACTIONS(5410), - [aux_sym_subroutine_call_token1] = ACTIONS(5410), - [aux_sym_keyword_statement_token1] = ACTIONS(5410), - [aux_sym_keyword_statement_token2] = ACTIONS(5410), - [aux_sym_keyword_statement_token3] = ACTIONS(5410), - [aux_sym_keyword_statement_token4] = ACTIONS(5410), - [aux_sym_keyword_statement_token6] = ACTIONS(5410), - [aux_sym_keyword_statement_token7] = ACTIONS(5410), - [aux_sym_include_statement_token1] = ACTIONS(5410), - [aux_sym_data_statement_token1] = ACTIONS(5410), - [aux_sym_do_loop_statement_token1] = ACTIONS(5410), - [aux_sym__inline_if_statement_token1] = ACTIONS(5410), - [aux_sym_end_if_statement_token1] = ACTIONS(5410), - [aux_sym_elseif_clause_token2] = ACTIONS(5410), - [aux_sym__inline_where_statement_token1] = ACTIONS(5410), - [aux_sym__forall_control_expression_token1] = ACTIONS(5410), - [aux_sym_select_case_statement_token1] = ACTIONS(5410), - [aux_sym_select_case_statement_token3] = ACTIONS(5410), - [aux_sym_select_type_statement_token1] = ACTIONS(5410), - [aux_sym_select_rank_statement_token2] = ACTIONS(5410), - [aux_sym_block_construct_token1] = ACTIONS(5410), - [aux_sym_associate_statement_token1] = ACTIONS(5410), - [aux_sym_format_statement_token1] = ACTIONS(5410), - [aux_sym_print_statement_token1] = ACTIONS(5410), - [aux_sym_open_statement_token1] = ACTIONS(5410), - [aux_sym_close_statement_token1] = ACTIONS(5410), - [aux_sym_inquire_statement_token1] = ACTIONS(5410), - [aux_sym_enum_statement_token1] = ACTIONS(5410), - [aux_sym_file_position_statement_token1] = ACTIONS(5410), - [aux_sym_file_position_statement_token2] = ACTIONS(5410), - [aux_sym_file_position_statement_token3] = ACTIONS(5410), - [aux_sym_file_position_statement_token4] = ACTIONS(5410), - [aux_sym_allocate_statement_token1] = ACTIONS(5410), - [aux_sym_entry_statement_token1] = ACTIONS(5410), - [aux_sym_logical_expression_token5] = ACTIONS(5412), - [anon_sym_DOT] = ACTIONS(5410), - [anon_sym_LPAREN_SLASH] = ACTIONS(5412), - [anon_sym_LBRACK] = ACTIONS(5412), - [aux_sym_boolean_literal_token1] = ACTIONS(5412), - [aux_sym_boolean_literal_token2] = ACTIONS(5412), - [aux_sym_null_literal_token1] = ACTIONS(5410), - [aux_sym_coarray_statement_token1] = ACTIONS(5410), - [aux_sym_coarray_statement_token2] = ACTIONS(5410), - [aux_sym_coarray_statement_token6] = ACTIONS(5410), - [aux_sym_coarray_statement_token8] = ACTIONS(5410), - [aux_sym_coarray_statement_token11] = ACTIONS(5410), - [aux_sym_coarray_statement_token12] = ACTIONS(5410), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5410), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5410), - [aux_sym_identifier_token1] = ACTIONS(5410), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5412), - [sym__float_literal] = ACTIONS(5412), - [sym__boz_literal] = ACTIONS(5412), - [sym__string_literal] = ACTIONS(5412), - [sym__string_literal_kind] = ACTIONS(5412), + [sym__integer_literal] = ACTIONS(4257), + [sym__float_literal] = ACTIONS(4257), + [sym__boz_literal] = ACTIONS(4257), + [sym__string_literal] = ACTIONS(4257), + [sym__string_literal_kind] = ACTIONS(4257), }, - [1532] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_LPAREN2] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_end_program_statement_token2] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_subroutine_call_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_keyword_statement_token4] = ACTIONS(5073), - [aux_sym_keyword_statement_token6] = ACTIONS(5073), - [aux_sym_keyword_statement_token7] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym_do_loop_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym__inline_where_statement_token1] = ACTIONS(5073), - [aux_sym__forall_control_expression_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token3] = ACTIONS(5073), - [aux_sym_select_type_statement_token1] = ACTIONS(5073), - [aux_sym_select_rank_statement_token2] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_associate_statement_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_print_statement_token1] = ACTIONS(5073), - [aux_sym_open_statement_token1] = ACTIONS(5073), - [aux_sym_close_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token2] = ACTIONS(5073), - [aux_sym_file_position_statement_token3] = ACTIONS(5073), - [aux_sym_file_position_statement_token4] = ACTIONS(5073), - [aux_sym_allocate_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_logical_expression_token5] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LPAREN_SLASH] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [aux_sym_boolean_literal_token1] = ACTIONS(5075), - [aux_sym_boolean_literal_token2] = ACTIONS(5075), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - [sym__float_literal] = ACTIONS(5075), - [sym__boz_literal] = ACTIONS(5075), - [sym__string_literal] = ACTIONS(5075), - [sym__string_literal_kind] = ACTIONS(5075), + [1497] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_end_function_statement_token1] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, - [1533] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_end_program_statement_token2] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [1498] = { + [aux_sym_preproc_include_token1] = ACTIONS(4345), + [aux_sym_preproc_def_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token1] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4345), + [sym_preproc_directive] = ACTIONS(4345), + [anon_sym_LPAREN2] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4345), + [aux_sym_end_program_statement_token2] = ACTIONS(4345), + [aux_sym_interface_statement_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4345), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4345), + [aux_sym_language_binding_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token3] = ACTIONS(4345), + [aux_sym_contains_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token2] = ACTIONS(4345), + [aux_sym_implicit_statement_token1] = ACTIONS(4345), + [aux_sym_implicit_statement_token3] = ACTIONS(4345), + [aux_sym_implicit_statement_token4] = ACTIONS(4345), + [aux_sym_save_statement_token1] = ACTIONS(4345), + [aux_sym_private_statement_token1] = ACTIONS(4345), + [aux_sym_public_statement_token1] = ACTIONS(4345), + [aux_sym_namelist_statement_token1] = ACTIONS(4345), + [aux_sym_common_statement_token1] = ACTIONS(4345), + [aux_sym_import_statement_token1] = ACTIONS(4345), + [aux_sym_derived_type_definition_token1] = ACTIONS(4345), + [aux_sym_abstract_specifier_token1] = ACTIONS(4345), + [aux_sym_procedure_attribute_token6] = ACTIONS(4345), + [aux_sym_variable_attributes_token1] = ACTIONS(4345), + [aux_sym_variable_attributes_token2] = ACTIONS(4345), + [aux_sym_variable_attributes_token3] = ACTIONS(4345), + [aux_sym_variable_attributes_token4] = ACTIONS(4345), + [aux_sym_variable_attributes_token5] = ACTIONS(4345), + [aux_sym__intrinsic_type_token1] = ACTIONS(4345), + [aux_sym__intrinsic_type_token2] = ACTIONS(4345), + [aux_sym__intrinsic_type_token3] = ACTIONS(4345), + [aux_sym__intrinsic_type_token4] = ACTIONS(4345), + [aux_sym__intrinsic_type_token6] = ACTIONS(4345), + [aux_sym__intrinsic_type_token7] = ACTIONS(4345), + [aux_sym__intrinsic_type_token8] = ACTIONS(4345), + [aux_sym__intrinsic_type_token9] = ACTIONS(4345), + [aux_sym__intrinsic_type_token10] = ACTIONS(4345), + [aux_sym_derived_type_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4345), + [aux_sym_type_qualifier_token1] = ACTIONS(4345), + [aux_sym_type_qualifier_token2] = ACTIONS(4345), + [aux_sym_equivalence_statement_token1] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [aux_sym_stop_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token2] = ACTIONS(4345), + [aux_sym_subroutine_call_token1] = ACTIONS(4345), + [aux_sym_keyword_statement_token1] = ACTIONS(4345), + [aux_sym_keyword_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token3] = ACTIONS(4345), + [aux_sym_keyword_statement_token4] = ACTIONS(4345), + [aux_sym_keyword_statement_token6] = ACTIONS(4345), + [aux_sym_keyword_statement_token7] = ACTIONS(4345), + [aux_sym_include_statement_token1] = ACTIONS(4345), + [aux_sym_data_statement_token1] = ACTIONS(4345), + [aux_sym_do_loop_statement_token1] = ACTIONS(4345), + [aux_sym__inline_if_statement_token1] = ACTIONS(4345), + [aux_sym_end_if_statement_token1] = ACTIONS(4345), + [aux_sym_elseif_clause_token2] = ACTIONS(4345), + [aux_sym__inline_where_statement_token1] = ACTIONS(4345), + [aux_sym__forall_control_expression_token1] = ACTIONS(4345), + [aux_sym_select_case_statement_token1] = ACTIONS(4345), + [aux_sym_select_case_statement_token3] = ACTIONS(4345), + [aux_sym_select_type_statement_token1] = ACTIONS(4345), + [aux_sym_select_rank_statement_token2] = ACTIONS(4345), + [aux_sym_block_construct_token1] = ACTIONS(4345), + [aux_sym_associate_statement_token1] = ACTIONS(4345), + [aux_sym_format_statement_token1] = ACTIONS(4345), + [aux_sym_print_statement_token1] = ACTIONS(4345), + [aux_sym_open_statement_token1] = ACTIONS(4345), + [aux_sym_close_statement_token1] = ACTIONS(4345), + [aux_sym_inquire_statement_token1] = ACTIONS(4345), + [aux_sym_enum_statement_token1] = ACTIONS(4345), + [aux_sym_file_position_statement_token1] = ACTIONS(4345), + [aux_sym_file_position_statement_token2] = ACTIONS(4345), + [aux_sym_file_position_statement_token3] = ACTIONS(4345), + [aux_sym_file_position_statement_token4] = ACTIONS(4345), + [aux_sym_allocate_statement_token1] = ACTIONS(4345), + [aux_sym_entry_statement_token1] = ACTIONS(4345), + [aux_sym_logical_expression_token5] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LPAREN_SLASH] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_boolean_literal_token1] = ACTIONS(4347), + [aux_sym_boolean_literal_token2] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token2] = ACTIONS(4345), + [aux_sym_coarray_statement_token6] = ACTIONS(4345), + [aux_sym_coarray_statement_token8] = ACTIONS(4345), + [aux_sym_coarray_statement_token11] = ACTIONS(4345), + [aux_sym_coarray_statement_token12] = ACTIONS(4345), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4345), + [aux_sym_identifier_token1] = ACTIONS(4345), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4347), + [sym__float_literal] = ACTIONS(4347), + [sym__boz_literal] = ACTIONS(4347), + [sym__string_literal] = ACTIONS(4347), + [sym__string_literal_kind] = ACTIONS(4347), }, - [1534] = { - [aux_sym_preproc_include_token1] = ACTIONS(5410), - [aux_sym_preproc_def_token1] = ACTIONS(5410), - [aux_sym_preproc_if_token1] = ACTIONS(5410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5410), - [sym_preproc_directive] = ACTIONS(5410), - [anon_sym_LPAREN2] = ACTIONS(5410), - [anon_sym_PLUS] = ACTIONS(5412), - [anon_sym_DASH] = ACTIONS(5412), + [1499] = { + [aux_sym_preproc_include_token1] = ACTIONS(4349), + [aux_sym_preproc_def_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token1] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4349), + [sym_preproc_directive] = ACTIONS(4349), + [anon_sym_LPAREN2] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5410), - [aux_sym_interface_statement_token1] = ACTIONS(5410), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5410), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5410), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5410), - [aux_sym_language_binding_token1] = ACTIONS(5410), - [aux_sym_procedure_attributes_token1] = ACTIONS(5410), - [aux_sym_procedure_attributes_token3] = ACTIONS(5410), - [aux_sym_end_function_statement_token1] = ACTIONS(5410), - [aux_sym_contains_statement_token1] = ACTIONS(5410), - [aux_sym_use_statement_token1] = ACTIONS(5410), - [aux_sym_use_statement_token2] = ACTIONS(5410), - [aux_sym_implicit_statement_token1] = ACTIONS(5410), - [aux_sym_implicit_statement_token3] = ACTIONS(5410), - [aux_sym_implicit_statement_token4] = ACTIONS(5410), - [aux_sym_save_statement_token1] = ACTIONS(5410), - [aux_sym_private_statement_token1] = ACTIONS(5410), - [aux_sym_public_statement_token1] = ACTIONS(5410), - [aux_sym_namelist_statement_token1] = ACTIONS(5410), - [aux_sym_common_statement_token1] = ACTIONS(5410), - [aux_sym_import_statement_token1] = ACTIONS(5410), - [aux_sym_derived_type_definition_token1] = ACTIONS(5410), - [aux_sym_abstract_specifier_token1] = ACTIONS(5410), - [aux_sym_procedure_attribute_token6] = ACTIONS(5410), - [aux_sym_variable_attributes_token1] = ACTIONS(5410), - [aux_sym_variable_attributes_token2] = ACTIONS(5410), - [aux_sym_variable_attributes_token3] = ACTIONS(5410), - [aux_sym_variable_attributes_token4] = ACTIONS(5410), - [aux_sym_variable_attributes_token5] = ACTIONS(5410), - [aux_sym__intrinsic_type_token1] = ACTIONS(5410), - [aux_sym__intrinsic_type_token2] = ACTIONS(5410), - [aux_sym__intrinsic_type_token3] = ACTIONS(5410), - [aux_sym__intrinsic_type_token4] = ACTIONS(5410), - [aux_sym__intrinsic_type_token6] = ACTIONS(5410), - [aux_sym__intrinsic_type_token7] = ACTIONS(5410), - [aux_sym__intrinsic_type_token8] = ACTIONS(5410), - [aux_sym__intrinsic_type_token9] = ACTIONS(5410), - [aux_sym__intrinsic_type_token10] = ACTIONS(5410), - [aux_sym_derived_type_token1] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5410), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5410), - [aux_sym_type_qualifier_token1] = ACTIONS(5410), - [aux_sym_type_qualifier_token2] = ACTIONS(5410), - [aux_sym_equivalence_statement_token1] = ACTIONS(5410), - [anon_sym_SEMI] = ACTIONS(5412), - [aux_sym_stop_statement_token1] = ACTIONS(5410), - [aux_sym_stop_statement_token2] = ACTIONS(5410), - [aux_sym_subroutine_call_token1] = ACTIONS(5410), - [aux_sym_keyword_statement_token1] = ACTIONS(5410), - [aux_sym_keyword_statement_token2] = ACTIONS(5410), - [aux_sym_keyword_statement_token3] = ACTIONS(5410), - [aux_sym_keyword_statement_token4] = ACTIONS(5410), - [aux_sym_keyword_statement_token6] = ACTIONS(5410), - [aux_sym_keyword_statement_token7] = ACTIONS(5410), - [aux_sym_include_statement_token1] = ACTIONS(5410), - [aux_sym_data_statement_token1] = ACTIONS(5410), - [aux_sym_do_loop_statement_token1] = ACTIONS(5410), - [aux_sym__inline_if_statement_token1] = ACTIONS(5410), - [aux_sym_end_if_statement_token1] = ACTIONS(5410), - [aux_sym_elseif_clause_token2] = ACTIONS(5410), - [aux_sym__inline_where_statement_token1] = ACTIONS(5410), - [aux_sym__forall_control_expression_token1] = ACTIONS(5410), - [aux_sym_select_case_statement_token1] = ACTIONS(5410), - [aux_sym_select_case_statement_token3] = ACTIONS(5410), - [aux_sym_select_type_statement_token1] = ACTIONS(5410), - [aux_sym_select_rank_statement_token2] = ACTIONS(5410), - [aux_sym_block_construct_token1] = ACTIONS(5410), - [aux_sym_associate_statement_token1] = ACTIONS(5410), - [aux_sym_format_statement_token1] = ACTIONS(5410), - [aux_sym_print_statement_token1] = ACTIONS(5410), - [aux_sym_open_statement_token1] = ACTIONS(5410), - [aux_sym_close_statement_token1] = ACTIONS(5410), - [aux_sym_inquire_statement_token1] = ACTIONS(5410), - [aux_sym_enum_statement_token1] = ACTIONS(5410), - [aux_sym_file_position_statement_token1] = ACTIONS(5410), - [aux_sym_file_position_statement_token2] = ACTIONS(5410), - [aux_sym_file_position_statement_token3] = ACTIONS(5410), - [aux_sym_file_position_statement_token4] = ACTIONS(5410), - [aux_sym_allocate_statement_token1] = ACTIONS(5410), - [aux_sym_entry_statement_token1] = ACTIONS(5410), - [aux_sym_logical_expression_token5] = ACTIONS(5412), - [anon_sym_DOT] = ACTIONS(5410), - [anon_sym_LPAREN_SLASH] = ACTIONS(5412), - [anon_sym_LBRACK] = ACTIONS(5412), - [aux_sym_boolean_literal_token1] = ACTIONS(5412), - [aux_sym_boolean_literal_token2] = ACTIONS(5412), - [aux_sym_null_literal_token1] = ACTIONS(5410), - [aux_sym_coarray_statement_token1] = ACTIONS(5410), - [aux_sym_coarray_statement_token2] = ACTIONS(5410), - [aux_sym_coarray_statement_token6] = ACTIONS(5410), - [aux_sym_coarray_statement_token8] = ACTIONS(5410), - [aux_sym_coarray_statement_token11] = ACTIONS(5410), - [aux_sym_coarray_statement_token12] = ACTIONS(5410), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5410), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5410), - [aux_sym_identifier_token1] = ACTIONS(5410), + [aux_sym_end_program_statement_token1] = ACTIONS(4349), + [aux_sym_end_program_statement_token2] = ACTIONS(4349), + [aux_sym_interface_statement_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4349), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4349), + [aux_sym_language_binding_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token3] = ACTIONS(4349), + [aux_sym_contains_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token2] = ACTIONS(4349), + [aux_sym_implicit_statement_token1] = ACTIONS(4349), + [aux_sym_implicit_statement_token3] = ACTIONS(4349), + [aux_sym_implicit_statement_token4] = ACTIONS(4349), + [aux_sym_save_statement_token1] = ACTIONS(4349), + [aux_sym_private_statement_token1] = ACTIONS(4349), + [aux_sym_public_statement_token1] = ACTIONS(4349), + [aux_sym_namelist_statement_token1] = ACTIONS(4349), + [aux_sym_common_statement_token1] = ACTIONS(4349), + [aux_sym_import_statement_token1] = ACTIONS(4349), + [aux_sym_derived_type_definition_token1] = ACTIONS(4349), + [aux_sym_abstract_specifier_token1] = ACTIONS(4349), + [aux_sym_procedure_attribute_token6] = ACTIONS(4349), + [aux_sym_variable_attributes_token1] = ACTIONS(4349), + [aux_sym_variable_attributes_token2] = ACTIONS(4349), + [aux_sym_variable_attributes_token3] = ACTIONS(4349), + [aux_sym_variable_attributes_token4] = ACTIONS(4349), + [aux_sym_variable_attributes_token5] = ACTIONS(4349), + [aux_sym__intrinsic_type_token1] = ACTIONS(4349), + [aux_sym__intrinsic_type_token2] = ACTIONS(4349), + [aux_sym__intrinsic_type_token3] = ACTIONS(4349), + [aux_sym__intrinsic_type_token4] = ACTIONS(4349), + [aux_sym__intrinsic_type_token6] = ACTIONS(4349), + [aux_sym__intrinsic_type_token7] = ACTIONS(4349), + [aux_sym__intrinsic_type_token8] = ACTIONS(4349), + [aux_sym__intrinsic_type_token9] = ACTIONS(4349), + [aux_sym__intrinsic_type_token10] = ACTIONS(4349), + [aux_sym_derived_type_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4349), + [aux_sym_type_qualifier_token1] = ACTIONS(4349), + [aux_sym_type_qualifier_token2] = ACTIONS(4349), + [aux_sym_equivalence_statement_token1] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [aux_sym_stop_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token2] = ACTIONS(4349), + [aux_sym_subroutine_call_token1] = ACTIONS(4349), + [aux_sym_keyword_statement_token1] = ACTIONS(4349), + [aux_sym_keyword_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token3] = ACTIONS(4349), + [aux_sym_keyword_statement_token4] = ACTIONS(4349), + [aux_sym_keyword_statement_token6] = ACTIONS(4349), + [aux_sym_keyword_statement_token7] = ACTIONS(4349), + [aux_sym_include_statement_token1] = ACTIONS(4349), + [aux_sym_data_statement_token1] = ACTIONS(4349), + [aux_sym_do_loop_statement_token1] = ACTIONS(4349), + [aux_sym__inline_if_statement_token1] = ACTIONS(4349), + [aux_sym_end_if_statement_token1] = ACTIONS(4349), + [aux_sym_elseif_clause_token2] = ACTIONS(4349), + [aux_sym__inline_where_statement_token1] = ACTIONS(4349), + [aux_sym__forall_control_expression_token1] = ACTIONS(4349), + [aux_sym_select_case_statement_token1] = ACTIONS(4349), + [aux_sym_select_case_statement_token3] = ACTIONS(4349), + [aux_sym_select_type_statement_token1] = ACTIONS(4349), + [aux_sym_select_rank_statement_token2] = ACTIONS(4349), + [aux_sym_block_construct_token1] = ACTIONS(4349), + [aux_sym_associate_statement_token1] = ACTIONS(4349), + [aux_sym_format_statement_token1] = ACTIONS(4349), + [aux_sym_print_statement_token1] = ACTIONS(4349), + [aux_sym_open_statement_token1] = ACTIONS(4349), + [aux_sym_close_statement_token1] = ACTIONS(4349), + [aux_sym_inquire_statement_token1] = ACTIONS(4349), + [aux_sym_enum_statement_token1] = ACTIONS(4349), + [aux_sym_file_position_statement_token1] = ACTIONS(4349), + [aux_sym_file_position_statement_token2] = ACTIONS(4349), + [aux_sym_file_position_statement_token3] = ACTIONS(4349), + [aux_sym_file_position_statement_token4] = ACTIONS(4349), + [aux_sym_allocate_statement_token1] = ACTIONS(4349), + [aux_sym_entry_statement_token1] = ACTIONS(4349), + [aux_sym_logical_expression_token5] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_LPAREN_SLASH] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [aux_sym_boolean_literal_token1] = ACTIONS(4351), + [aux_sym_boolean_literal_token2] = ACTIONS(4351), + [aux_sym_null_literal_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token2] = ACTIONS(4349), + [aux_sym_coarray_statement_token6] = ACTIONS(4349), + [aux_sym_coarray_statement_token8] = ACTIONS(4349), + [aux_sym_coarray_statement_token11] = ACTIONS(4349), + [aux_sym_coarray_statement_token12] = ACTIONS(4349), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4349), + [aux_sym_identifier_token1] = ACTIONS(4349), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5412), - [sym__float_literal] = ACTIONS(5412), - [sym__boz_literal] = ACTIONS(5412), - [sym__string_literal] = ACTIONS(5412), - [sym__string_literal_kind] = ACTIONS(5412), - }, - [1535] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token2] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_LPAREN2] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_subroutine_call_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_keyword_statement_token4] = ACTIONS(5061), - [aux_sym_keyword_statement_token6] = ACTIONS(5061), - [aux_sym_keyword_statement_token7] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym_do_loop_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym__inline_where_statement_token1] = ACTIONS(5061), - [aux_sym__forall_control_expression_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token3] = ACTIONS(5061), - [aux_sym_select_type_statement_token1] = ACTIONS(5061), - [aux_sym_select_rank_statement_token2] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_associate_statement_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_print_statement_token1] = ACTIONS(5061), - [aux_sym_open_statement_token1] = ACTIONS(5061), - [aux_sym_close_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token2] = ACTIONS(5061), - [aux_sym_file_position_statement_token3] = ACTIONS(5061), - [aux_sym_file_position_statement_token4] = ACTIONS(5061), - [aux_sym_allocate_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_logical_expression_token5] = ACTIONS(5063), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LPAREN_SLASH] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [aux_sym_boolean_literal_token1] = ACTIONS(5063), - [aux_sym_boolean_literal_token2] = ACTIONS(5063), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - [sym__float_literal] = ACTIONS(5063), - [sym__boz_literal] = ACTIONS(5063), - [sym__string_literal] = ACTIONS(5063), - [sym__string_literal_kind] = ACTIONS(5063), - }, - [1536] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_end_function_statement_token1] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [sym__integer_literal] = ACTIONS(4351), + [sym__float_literal] = ACTIONS(4351), + [sym__boz_literal] = ACTIONS(4351), + [sym__string_literal] = ACTIONS(4351), + [sym__string_literal_kind] = ACTIONS(4351), }, - [1537] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), + [1500] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_end_function_statement_token1] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_subroutine_call_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_keyword_statement_token4] = ACTIONS(4615), + [aux_sym_keyword_statement_token6] = ACTIONS(4615), + [aux_sym_keyword_statement_token7] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym_do_loop_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym__inline_where_statement_token1] = ACTIONS(4615), + [aux_sym__forall_control_expression_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token3] = ACTIONS(4615), + [aux_sym_select_type_statement_token1] = ACTIONS(4615), + [aux_sym_select_rank_statement_token2] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_associate_statement_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_print_statement_token1] = ACTIONS(4615), + [aux_sym_open_statement_token1] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token2] = ACTIONS(4615), + [aux_sym_file_position_statement_token3] = ACTIONS(4615), + [aux_sym_file_position_statement_token4] = ACTIONS(4615), + [aux_sym_allocate_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_logical_expression_token5] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LPAREN_SLASH] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(4617), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), + [sym__integer_literal] = ACTIONS(4617), + [sym__float_literal] = ACTIONS(4617), + [sym__boz_literal] = ACTIONS(4617), + [sym__string_literal] = ACTIONS(4617), + [sym__string_literal_kind] = ACTIONS(4617), }, - [1538] = { - [aux_sym_preproc_include_token1] = ACTIONS(5438), - [aux_sym_preproc_def_token1] = ACTIONS(5438), - [aux_sym_preproc_if_token1] = ACTIONS(5438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5438), - [sym_preproc_directive] = ACTIONS(5438), - [anon_sym_LPAREN2] = ACTIONS(5438), - [anon_sym_PLUS] = ACTIONS(5440), - [anon_sym_DASH] = ACTIONS(5440), + [1501] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), + [anon_sym_LPAREN2] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5438), - [aux_sym_interface_statement_token1] = ACTIONS(5438), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5438), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5438), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5438), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5438), - [aux_sym_language_binding_token1] = ACTIONS(5438), - [aux_sym_procedure_attributes_token1] = ACTIONS(5438), - [aux_sym_procedure_attributes_token3] = ACTIONS(5438), - [aux_sym_contains_statement_token1] = ACTIONS(5438), - [aux_sym_use_statement_token1] = ACTIONS(5438), - [aux_sym_use_statement_token2] = ACTIONS(5438), - [aux_sym_implicit_statement_token1] = ACTIONS(5438), - [aux_sym_implicit_statement_token3] = ACTIONS(5438), - [aux_sym_implicit_statement_token4] = ACTIONS(5438), - [aux_sym_save_statement_token1] = ACTIONS(5438), - [aux_sym_private_statement_token1] = ACTIONS(5438), - [aux_sym_public_statement_token1] = ACTIONS(5438), - [aux_sym_namelist_statement_token1] = ACTIONS(5438), - [aux_sym_common_statement_token1] = ACTIONS(5438), - [aux_sym_import_statement_token1] = ACTIONS(5438), - [aux_sym_derived_type_definition_token1] = ACTIONS(5438), - [aux_sym_abstract_specifier_token1] = ACTIONS(5438), - [aux_sym_procedure_attribute_token6] = ACTIONS(5438), - [aux_sym_variable_attributes_token1] = ACTIONS(5438), - [aux_sym_variable_attributes_token2] = ACTIONS(5438), - [aux_sym_variable_attributes_token3] = ACTIONS(5438), - [aux_sym_variable_attributes_token4] = ACTIONS(5438), - [aux_sym_variable_attributes_token5] = ACTIONS(5438), - [aux_sym__intrinsic_type_token1] = ACTIONS(5438), - [aux_sym__intrinsic_type_token2] = ACTIONS(5438), - [aux_sym__intrinsic_type_token3] = ACTIONS(5438), - [aux_sym__intrinsic_type_token4] = ACTIONS(5438), - [aux_sym__intrinsic_type_token6] = ACTIONS(5438), - [aux_sym__intrinsic_type_token7] = ACTIONS(5438), - [aux_sym__intrinsic_type_token8] = ACTIONS(5438), - [aux_sym__intrinsic_type_token9] = ACTIONS(5438), - [aux_sym__intrinsic_type_token10] = ACTIONS(5438), - [aux_sym_derived_type_token1] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5438), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5438), - [aux_sym_type_qualifier_token1] = ACTIONS(5438), - [aux_sym_type_qualifier_token2] = ACTIONS(5438), - [aux_sym_equivalence_statement_token1] = ACTIONS(5438), - [anon_sym_SEMI] = ACTIONS(5440), - [aux_sym_stop_statement_token1] = ACTIONS(5438), - [aux_sym_stop_statement_token2] = ACTIONS(5438), - [aux_sym_subroutine_call_token1] = ACTIONS(5438), - [aux_sym_keyword_statement_token1] = ACTIONS(5438), - [aux_sym_keyword_statement_token2] = ACTIONS(5438), - [aux_sym_keyword_statement_token3] = ACTIONS(5438), - [aux_sym_keyword_statement_token4] = ACTIONS(5438), - [aux_sym_keyword_statement_token6] = ACTIONS(5438), - [aux_sym_keyword_statement_token7] = ACTIONS(5438), - [aux_sym_include_statement_token1] = ACTIONS(5438), - [aux_sym_data_statement_token1] = ACTIONS(5438), - [aux_sym_do_loop_statement_token1] = ACTIONS(5438), - [aux_sym__inline_if_statement_token1] = ACTIONS(5438), - [aux_sym_end_if_statement_token1] = ACTIONS(5438), - [aux_sym_elseif_clause_token2] = ACTIONS(5438), - [aux_sym__inline_where_statement_token1] = ACTIONS(5438), - [aux_sym__forall_control_expression_token1] = ACTIONS(5438), - [aux_sym_select_case_statement_token1] = ACTIONS(5438), - [aux_sym_select_case_statement_token3] = ACTIONS(5438), - [aux_sym_select_type_statement_token1] = ACTIONS(5438), - [aux_sym_select_rank_statement_token2] = ACTIONS(5438), - [aux_sym_block_construct_token1] = ACTIONS(5438), - [aux_sym_associate_statement_token1] = ACTIONS(5438), - [aux_sym_format_statement_token1] = ACTIONS(5438), - [aux_sym_print_statement_token1] = ACTIONS(5438), - [aux_sym_open_statement_token1] = ACTIONS(5438), - [aux_sym_close_statement_token1] = ACTIONS(5438), - [aux_sym_inquire_statement_token1] = ACTIONS(5438), - [aux_sym_enum_statement_token1] = ACTIONS(5438), - [aux_sym_file_position_statement_token1] = ACTIONS(5438), - [aux_sym_file_position_statement_token2] = ACTIONS(5438), - [aux_sym_file_position_statement_token3] = ACTIONS(5438), - [aux_sym_file_position_statement_token4] = ACTIONS(5438), - [aux_sym_allocate_statement_token1] = ACTIONS(5438), - [aux_sym_entry_statement_token1] = ACTIONS(5438), - [aux_sym_logical_expression_token5] = ACTIONS(5440), - [anon_sym_DOT] = ACTIONS(5438), - [anon_sym_LPAREN_SLASH] = ACTIONS(5440), - [anon_sym_LBRACK] = ACTIONS(5440), - [aux_sym_boolean_literal_token1] = ACTIONS(5440), - [aux_sym_boolean_literal_token2] = ACTIONS(5440), - [aux_sym_null_literal_token1] = ACTIONS(5438), - [aux_sym_coarray_statement_token1] = ACTIONS(5438), - [aux_sym_coarray_statement_token2] = ACTIONS(5438), - [aux_sym_coarray_statement_token6] = ACTIONS(5438), - [aux_sym_coarray_statement_token8] = ACTIONS(5438), - [aux_sym_coarray_statement_token11] = ACTIONS(5438), - [aux_sym_coarray_statement_token12] = ACTIONS(5438), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5438), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5438), - [aux_sym_identifier_token1] = ACTIONS(5438), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_end_program_statement_token2] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_subroutine_call_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_keyword_statement_token4] = ACTIONS(4255), + [aux_sym_keyword_statement_token6] = ACTIONS(4255), + [aux_sym_keyword_statement_token7] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym_do_loop_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym__inline_where_statement_token1] = ACTIONS(4255), + [aux_sym__forall_control_expression_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token3] = ACTIONS(4255), + [aux_sym_select_type_statement_token1] = ACTIONS(4255), + [aux_sym_select_rank_statement_token2] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_associate_statement_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_print_statement_token1] = ACTIONS(4255), + [aux_sym_open_statement_token1] = ACTIONS(4255), + [aux_sym_close_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token2] = ACTIONS(4255), + [aux_sym_file_position_statement_token3] = ACTIONS(4255), + [aux_sym_file_position_statement_token4] = ACTIONS(4255), + [aux_sym_allocate_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_logical_expression_token5] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LPAREN_SLASH] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_boolean_literal_token1] = ACTIONS(4257), + [aux_sym_boolean_literal_token2] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5440), - [sym__float_literal] = ACTIONS(5440), - [sym__boz_literal] = ACTIONS(5440), - [sym__string_literal] = ACTIONS(5440), - [sym__string_literal_kind] = ACTIONS(5440), - }, - [1539] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_end_program_statement_token2] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), + [sym__integer_literal] = ACTIONS(4257), + [sym__float_literal] = ACTIONS(4257), + [sym__boz_literal] = ACTIONS(4257), + [sym__string_literal] = ACTIONS(4257), + [sym__string_literal_kind] = ACTIONS(4257), }, - [1540] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [1502] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token2] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_subroutine_call_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_keyword_statement_token4] = ACTIONS(5010), + [aux_sym_keyword_statement_token6] = ACTIONS(5010), + [aux_sym_keyword_statement_token7] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym_do_loop_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym__inline_where_statement_token1] = ACTIONS(5010), + [aux_sym__forall_control_expression_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token3] = ACTIONS(5010), + [aux_sym_select_type_statement_token1] = ACTIONS(5010), + [aux_sym_select_rank_statement_token2] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_associate_statement_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_print_statement_token1] = ACTIONS(5010), + [aux_sym_open_statement_token1] = ACTIONS(5010), + [aux_sym_close_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token2] = ACTIONS(5010), + [aux_sym_file_position_statement_token3] = ACTIONS(5010), + [aux_sym_file_position_statement_token4] = ACTIONS(5010), + [aux_sym_allocate_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_logical_expression_token5] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_LPAREN_SLASH] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [aux_sym_boolean_literal_token1] = ACTIONS(5012), + [aux_sym_boolean_literal_token2] = ACTIONS(5012), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + [sym__float_literal] = ACTIONS(5012), + [sym__boz_literal] = ACTIONS(5012), + [sym__string_literal] = ACTIONS(5012), + [sym__string_literal_kind] = ACTIONS(5012), }, - [1541] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token2] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), + [1503] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_subroutine_call_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_keyword_statement_token4] = ACTIONS(5014), + [aux_sym_keyword_statement_token6] = ACTIONS(5014), + [aux_sym_keyword_statement_token7] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym_do_loop_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym__inline_where_statement_token1] = ACTIONS(5014), + [aux_sym__forall_control_expression_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token3] = ACTIONS(5014), + [aux_sym_select_type_statement_token1] = ACTIONS(5014), + [aux_sym_select_rank_statement_token2] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_associate_statement_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_print_statement_token1] = ACTIONS(5014), + [aux_sym_open_statement_token1] = ACTIONS(5014), + [aux_sym_close_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token2] = ACTIONS(5014), + [aux_sym_file_position_statement_token3] = ACTIONS(5014), + [aux_sym_file_position_statement_token4] = ACTIONS(5014), + [aux_sym_allocate_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_logical_expression_token5] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LPAREN_SLASH] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [aux_sym_boolean_literal_token1] = ACTIONS(5016), + [aux_sym_boolean_literal_token2] = ACTIONS(5016), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + [sym__float_literal] = ACTIONS(5016), + [sym__boz_literal] = ACTIONS(5016), + [sym__string_literal] = ACTIONS(5016), + [sym__string_literal_kind] = ACTIONS(5016), }, - [1542] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_end_program_statement_token2] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), + [1504] = { + [aux_sym_preproc_include_token1] = ACTIONS(4315), + [aux_sym_preproc_def_token1] = ACTIONS(4315), + [aux_sym_preproc_if_token1] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), + [sym_preproc_directive] = ACTIONS(4315), + [anon_sym_LPAREN2] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token2] = ACTIONS(4315), + [aux_sym_interface_statement_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4315), + [aux_sym_language_binding_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token3] = ACTIONS(4315), + [aux_sym_contains_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token2] = ACTIONS(4315), + [aux_sym_implicit_statement_token1] = ACTIONS(4315), + [aux_sym_implicit_statement_token3] = ACTIONS(4315), + [aux_sym_implicit_statement_token4] = ACTIONS(4315), + [aux_sym_save_statement_token1] = ACTIONS(4315), + [aux_sym_private_statement_token1] = ACTIONS(4315), + [aux_sym_public_statement_token1] = ACTIONS(4315), + [aux_sym_namelist_statement_token1] = ACTIONS(4315), + [aux_sym_common_statement_token1] = ACTIONS(4315), + [aux_sym_import_statement_token1] = ACTIONS(4315), + [aux_sym_derived_type_definition_token1] = ACTIONS(4315), + [aux_sym_abstract_specifier_token1] = ACTIONS(4315), + [aux_sym_procedure_attribute_token6] = ACTIONS(4315), + [aux_sym_variable_attributes_token1] = ACTIONS(4315), + [aux_sym_variable_attributes_token2] = ACTIONS(4315), + [aux_sym_variable_attributes_token3] = ACTIONS(4315), + [aux_sym_variable_attributes_token4] = ACTIONS(4315), + [aux_sym_variable_attributes_token5] = ACTIONS(4315), + [aux_sym__intrinsic_type_token1] = ACTIONS(4315), + [aux_sym__intrinsic_type_token2] = ACTIONS(4315), + [aux_sym__intrinsic_type_token3] = ACTIONS(4315), + [aux_sym__intrinsic_type_token4] = ACTIONS(4315), + [aux_sym__intrinsic_type_token6] = ACTIONS(4315), + [aux_sym__intrinsic_type_token7] = ACTIONS(4315), + [aux_sym__intrinsic_type_token8] = ACTIONS(4315), + [aux_sym__intrinsic_type_token9] = ACTIONS(4315), + [aux_sym__intrinsic_type_token10] = ACTIONS(4315), + [aux_sym_derived_type_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4315), + [aux_sym_type_qualifier_token1] = ACTIONS(4315), + [aux_sym_type_qualifier_token2] = ACTIONS(4315), + [aux_sym_equivalence_statement_token1] = ACTIONS(4315), + [anon_sym_SEMI] = ACTIONS(4317), + [aux_sym_stop_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token2] = ACTIONS(4315), + [aux_sym_subroutine_call_token1] = ACTIONS(4315), + [aux_sym_keyword_statement_token1] = ACTIONS(4315), + [aux_sym_keyword_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token3] = ACTIONS(4315), + [aux_sym_keyword_statement_token4] = ACTIONS(4315), + [aux_sym_keyword_statement_token6] = ACTIONS(4315), + [aux_sym_keyword_statement_token7] = ACTIONS(4315), + [aux_sym_include_statement_token1] = ACTIONS(4315), + [aux_sym_data_statement_token1] = ACTIONS(4315), + [aux_sym_do_loop_statement_token1] = ACTIONS(4315), + [aux_sym__inline_if_statement_token1] = ACTIONS(4315), + [aux_sym_end_if_statement_token1] = ACTIONS(4315), + [aux_sym_elseif_clause_token2] = ACTIONS(4315), + [aux_sym__inline_where_statement_token1] = ACTIONS(4315), + [aux_sym__forall_control_expression_token1] = ACTIONS(4315), + [aux_sym_select_case_statement_token1] = ACTIONS(4315), + [aux_sym_select_case_statement_token3] = ACTIONS(4315), + [aux_sym_select_type_statement_token1] = ACTIONS(4315), + [aux_sym_select_rank_statement_token2] = ACTIONS(4315), + [aux_sym_block_construct_token1] = ACTIONS(4315), + [aux_sym_associate_statement_token1] = ACTIONS(4315), + [aux_sym_format_statement_token1] = ACTIONS(4315), + [aux_sym_print_statement_token1] = ACTIONS(4315), + [aux_sym_open_statement_token1] = ACTIONS(4315), + [aux_sym_close_statement_token1] = ACTIONS(4315), + [aux_sym_inquire_statement_token1] = ACTIONS(4315), + [aux_sym_enum_statement_token1] = ACTIONS(4315), + [aux_sym_file_position_statement_token1] = ACTIONS(4315), + [aux_sym_file_position_statement_token2] = ACTIONS(4315), + [aux_sym_file_position_statement_token3] = ACTIONS(4315), + [aux_sym_file_position_statement_token4] = ACTIONS(4315), + [aux_sym_allocate_statement_token1] = ACTIONS(4315), + [aux_sym_entry_statement_token1] = ACTIONS(4315), + [aux_sym_logical_expression_token5] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4315), + [anon_sym_LPAREN_SLASH] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [aux_sym_boolean_literal_token1] = ACTIONS(4317), + [aux_sym_boolean_literal_token2] = ACTIONS(4317), + [aux_sym_null_literal_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token2] = ACTIONS(4315), + [aux_sym_coarray_statement_token6] = ACTIONS(4315), + [aux_sym_coarray_statement_token8] = ACTIONS(4315), + [aux_sym_coarray_statement_token11] = ACTIONS(4315), + [aux_sym_coarray_statement_token12] = ACTIONS(4315), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), + [aux_sym_identifier_token1] = ACTIONS(4315), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4317), + [sym__float_literal] = ACTIONS(4317), + [sym__boz_literal] = ACTIONS(4317), + [sym__string_literal] = ACTIONS(4317), + [sym__string_literal_kind] = ACTIONS(4317), }, - [1543] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [1505] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_end_program_statement_token2] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_subroutine_call_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_keyword_statement_token4] = ACTIONS(5067), + [aux_sym_keyword_statement_token6] = ACTIONS(5067), + [aux_sym_keyword_statement_token7] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym_do_loop_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym__inline_where_statement_token1] = ACTIONS(5067), + [aux_sym__forall_control_expression_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token3] = ACTIONS(5067), + [aux_sym_select_type_statement_token1] = ACTIONS(5067), + [aux_sym_select_rank_statement_token2] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_associate_statement_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_print_statement_token1] = ACTIONS(5067), + [aux_sym_open_statement_token1] = ACTIONS(5067), + [aux_sym_close_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token2] = ACTIONS(5067), + [aux_sym_file_position_statement_token3] = ACTIONS(5067), + [aux_sym_file_position_statement_token4] = ACTIONS(5067), + [aux_sym_allocate_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_logical_expression_token5] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LPAREN_SLASH] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [aux_sym_boolean_literal_token1] = ACTIONS(5069), + [aux_sym_boolean_literal_token2] = ACTIONS(5069), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + [sym__float_literal] = ACTIONS(5069), + [sym__boz_literal] = ACTIONS(5069), + [sym__string_literal] = ACTIONS(5069), + [sym__string_literal_kind] = ACTIONS(5069), }, - [1544] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), + [1506] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), [anon_sym_PLUS] = ACTIONS(4573), [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_end_program_statement_token2] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4569), [anon_sym_LPAREN_SLASH] = ACTIONS(4573), [anon_sym_LBRACK] = ACTIONS(4573), [aux_sym_boolean_literal_token1] = ACTIONS(4573), [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(4573), [sym__float_literal] = ACTIONS(4573), @@ -295042,1011 +290292,885 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4573), [sym__string_literal_kind] = ACTIONS(4573), }, - [1545] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), - }, - [1546] = { - [aux_sym_preproc_include_token1] = ACTIONS(5000), - [aux_sym_preproc_def_token1] = ACTIONS(5000), - [aux_sym_preproc_if_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5000), - [sym_preproc_directive] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), + [1507] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5000), - [aux_sym_interface_statement_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5000), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5000), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5000), - [aux_sym_language_binding_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token1] = ACTIONS(5000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5000), - [aux_sym_end_function_statement_token1] = ACTIONS(5000), - [aux_sym_contains_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token1] = ACTIONS(5000), - [aux_sym_use_statement_token2] = ACTIONS(5000), - [aux_sym_implicit_statement_token1] = ACTIONS(5000), - [aux_sym_implicit_statement_token3] = ACTIONS(5000), - [aux_sym_implicit_statement_token4] = ACTIONS(5000), - [aux_sym_save_statement_token1] = ACTIONS(5000), - [aux_sym_private_statement_token1] = ACTIONS(5000), - [aux_sym_public_statement_token1] = ACTIONS(5000), - [aux_sym_namelist_statement_token1] = ACTIONS(5000), - [aux_sym_common_statement_token1] = ACTIONS(5000), - [aux_sym_import_statement_token1] = ACTIONS(5000), - [aux_sym_derived_type_definition_token1] = ACTIONS(5000), - [aux_sym_abstract_specifier_token1] = ACTIONS(5000), - [aux_sym_procedure_attribute_token6] = ACTIONS(5000), - [aux_sym_variable_attributes_token1] = ACTIONS(5000), - [aux_sym_variable_attributes_token2] = ACTIONS(5000), - [aux_sym_variable_attributes_token3] = ACTIONS(5000), - [aux_sym_variable_attributes_token4] = ACTIONS(5000), - [aux_sym_variable_attributes_token5] = ACTIONS(5000), - [aux_sym__intrinsic_type_token1] = ACTIONS(5000), - [aux_sym__intrinsic_type_token2] = ACTIONS(5000), - [aux_sym__intrinsic_type_token3] = ACTIONS(5000), - [aux_sym__intrinsic_type_token4] = ACTIONS(5000), - [aux_sym__intrinsic_type_token6] = ACTIONS(5000), - [aux_sym__intrinsic_type_token7] = ACTIONS(5000), - [aux_sym__intrinsic_type_token8] = ACTIONS(5000), - [aux_sym__intrinsic_type_token9] = ACTIONS(5000), - [aux_sym__intrinsic_type_token10] = ACTIONS(5000), - [aux_sym_derived_type_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5000), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5000), - [aux_sym_type_qualifier_token1] = ACTIONS(5000), - [aux_sym_type_qualifier_token2] = ACTIONS(5000), - [aux_sym_equivalence_statement_token1] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5004), - [aux_sym_stop_statement_token1] = ACTIONS(5000), - [aux_sym_stop_statement_token2] = ACTIONS(5000), - [aux_sym_subroutine_call_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token1] = ACTIONS(5000), - [aux_sym_keyword_statement_token2] = ACTIONS(5000), - [aux_sym_keyword_statement_token3] = ACTIONS(5000), - [aux_sym_keyword_statement_token4] = ACTIONS(5000), - [aux_sym_keyword_statement_token6] = ACTIONS(5000), - [aux_sym_keyword_statement_token7] = ACTIONS(5000), - [aux_sym_include_statement_token1] = ACTIONS(5000), - [aux_sym_data_statement_token1] = ACTIONS(5000), - [aux_sym_do_loop_statement_token1] = ACTIONS(5000), - [aux_sym__inline_if_statement_token1] = ACTIONS(5000), - [aux_sym_end_if_statement_token1] = ACTIONS(5000), - [aux_sym_elseif_clause_token2] = ACTIONS(5000), - [aux_sym__inline_where_statement_token1] = ACTIONS(5000), - [aux_sym__forall_control_expression_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token1] = ACTIONS(5000), - [aux_sym_select_case_statement_token3] = ACTIONS(5000), - [aux_sym_select_type_statement_token1] = ACTIONS(5000), - [aux_sym_select_rank_statement_token2] = ACTIONS(5000), - [aux_sym_block_construct_token1] = ACTIONS(5000), - [aux_sym_associate_statement_token1] = ACTIONS(5000), - [aux_sym_format_statement_token1] = ACTIONS(5000), - [aux_sym_print_statement_token1] = ACTIONS(5000), - [aux_sym_open_statement_token1] = ACTIONS(5000), - [aux_sym_close_statement_token1] = ACTIONS(5000), - [aux_sym_inquire_statement_token1] = ACTIONS(5000), - [aux_sym_enum_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token1] = ACTIONS(5000), - [aux_sym_file_position_statement_token2] = ACTIONS(5000), - [aux_sym_file_position_statement_token3] = ACTIONS(5000), - [aux_sym_file_position_statement_token4] = ACTIONS(5000), - [aux_sym_allocate_statement_token1] = ACTIONS(5000), - [aux_sym_entry_statement_token1] = ACTIONS(5000), - [aux_sym_logical_expression_token5] = ACTIONS(5004), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_LPAREN_SLASH] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [aux_sym_boolean_literal_token1] = ACTIONS(5004), - [aux_sym_boolean_literal_token2] = ACTIONS(5004), - [aux_sym_null_literal_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_statement_token2] = ACTIONS(5000), - [aux_sym_coarray_statement_token6] = ACTIONS(5000), - [aux_sym_coarray_statement_token8] = ACTIONS(5000), - [aux_sym_coarray_statement_token11] = ACTIONS(5000), - [aux_sym_coarray_statement_token12] = ACTIONS(5000), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5000), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5000), - [aux_sym_identifier_token1] = ACTIONS(5000), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_end_program_statement_token2] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_subroutine_call_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_keyword_statement_token4] = ACTIONS(4379), + [aux_sym_keyword_statement_token6] = ACTIONS(4379), + [aux_sym_keyword_statement_token7] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym_do_loop_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym__inline_where_statement_token1] = ACTIONS(4379), + [aux_sym__forall_control_expression_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token3] = ACTIONS(4379), + [aux_sym_select_type_statement_token1] = ACTIONS(4379), + [aux_sym_select_rank_statement_token2] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_associate_statement_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_print_statement_token1] = ACTIONS(4379), + [aux_sym_open_statement_token1] = ACTIONS(4379), + [aux_sym_close_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token2] = ACTIONS(4379), + [aux_sym_file_position_statement_token3] = ACTIONS(4379), + [aux_sym_file_position_statement_token4] = ACTIONS(4379), + [aux_sym_allocate_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_logical_expression_token5] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LPAREN_SLASH] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [aux_sym_boolean_literal_token1] = ACTIONS(4381), + [aux_sym_boolean_literal_token2] = ACTIONS(4381), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5004), - [sym__float_literal] = ACTIONS(5004), - [sym__boz_literal] = ACTIONS(5004), - [sym__string_literal] = ACTIONS(5004), - [sym__string_literal_kind] = ACTIONS(5004), + [sym__integer_literal] = ACTIONS(4381), + [sym__float_literal] = ACTIONS(4381), + [sym__boz_literal] = ACTIONS(4381), + [sym__string_literal] = ACTIONS(4381), + [sym__string_literal_kind] = ACTIONS(4381), }, - [1547] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [1508] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_end_program_statement_token2] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_subroutine_call_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_keyword_statement_token4] = ACTIONS(4383), + [aux_sym_keyword_statement_token6] = ACTIONS(4383), + [aux_sym_keyword_statement_token7] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym_do_loop_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym__inline_where_statement_token1] = ACTIONS(4383), + [aux_sym__forall_control_expression_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token3] = ACTIONS(4383), + [aux_sym_select_type_statement_token1] = ACTIONS(4383), + [aux_sym_select_rank_statement_token2] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_associate_statement_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_print_statement_token1] = ACTIONS(4383), + [aux_sym_open_statement_token1] = ACTIONS(4383), + [aux_sym_close_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token2] = ACTIONS(4383), + [aux_sym_file_position_statement_token3] = ACTIONS(4383), + [aux_sym_file_position_statement_token4] = ACTIONS(4383), + [aux_sym_allocate_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_logical_expression_token5] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LPAREN_SLASH] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [aux_sym_boolean_literal_token1] = ACTIONS(4385), + [aux_sym_boolean_literal_token2] = ACTIONS(4385), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [1548] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token2] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), + [sym__integer_literal] = ACTIONS(4385), + [sym__float_literal] = ACTIONS(4385), + [sym__boz_literal] = ACTIONS(4385), + [sym__string_literal] = ACTIONS(4385), + [sym__string_literal_kind] = ACTIONS(4385), }, - [1549] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token2] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), + [1509] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_subroutine_call_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_keyword_statement_token4] = ACTIONS(4487), - [aux_sym_keyword_statement_token6] = ACTIONS(4487), - [aux_sym_keyword_statement_token7] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym_do_loop_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym__inline_where_statement_token1] = ACTIONS(4487), - [aux_sym__forall_control_expression_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token3] = ACTIONS(4487), - [aux_sym_select_type_statement_token1] = ACTIONS(4487), - [aux_sym_select_rank_statement_token2] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_associate_statement_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_print_statement_token1] = ACTIONS(4487), - [aux_sym_open_statement_token1] = ACTIONS(4487), - [aux_sym_close_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token2] = ACTIONS(4487), - [aux_sym_file_position_statement_token3] = ACTIONS(4487), - [aux_sym_file_position_statement_token4] = ACTIONS(4487), - [aux_sym_allocate_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_logical_expression_token5] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_LPAREN_SLASH] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [aux_sym_boolean_literal_token1] = ACTIONS(4489), - [aux_sym_boolean_literal_token2] = ACTIONS(4489), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token2] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - [sym__float_literal] = ACTIONS(4489), - [sym__boz_literal] = ACTIONS(4489), - [sym__string_literal] = ACTIONS(4489), - [sym__string_literal_kind] = ACTIONS(4489), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [1550] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [1510] = { + [aux_sym_preproc_include_token1] = ACTIONS(5081), + [aux_sym_preproc_def_token1] = ACTIONS(5081), + [aux_sym_preproc_if_token1] = ACTIONS(5081), + [aux_sym_preproc_if_token2] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), + [sym_preproc_directive] = ACTIONS(5081), + [anon_sym_LPAREN2] = ACTIONS(5081), + [anon_sym_PLUS] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(5081), + [aux_sym_interface_statement_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), + [aux_sym_language_binding_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token3] = ACTIONS(5081), + [aux_sym_contains_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token2] = ACTIONS(5081), + [aux_sym_implicit_statement_token1] = ACTIONS(5081), + [aux_sym_implicit_statement_token3] = ACTIONS(5081), + [aux_sym_implicit_statement_token4] = ACTIONS(5081), + [aux_sym_save_statement_token1] = ACTIONS(5081), + [aux_sym_private_statement_token1] = ACTIONS(5081), + [aux_sym_public_statement_token1] = ACTIONS(5081), + [aux_sym_namelist_statement_token1] = ACTIONS(5081), + [aux_sym_common_statement_token1] = ACTIONS(5081), + [aux_sym_import_statement_token1] = ACTIONS(5081), + [aux_sym_derived_type_definition_token1] = ACTIONS(5081), + [aux_sym_abstract_specifier_token1] = ACTIONS(5081), + [aux_sym_procedure_attribute_token6] = ACTIONS(5081), + [aux_sym_variable_attributes_token1] = ACTIONS(5081), + [aux_sym_variable_attributes_token2] = ACTIONS(5081), + [aux_sym_variable_attributes_token3] = ACTIONS(5081), + [aux_sym_variable_attributes_token4] = ACTIONS(5081), + [aux_sym_variable_attributes_token5] = ACTIONS(5081), + [aux_sym__intrinsic_type_token1] = ACTIONS(5081), + [aux_sym__intrinsic_type_token2] = ACTIONS(5081), + [aux_sym__intrinsic_type_token3] = ACTIONS(5081), + [aux_sym__intrinsic_type_token4] = ACTIONS(5081), + [aux_sym__intrinsic_type_token6] = ACTIONS(5081), + [aux_sym__intrinsic_type_token7] = ACTIONS(5081), + [aux_sym__intrinsic_type_token8] = ACTIONS(5081), + [aux_sym__intrinsic_type_token9] = ACTIONS(5081), + [aux_sym__intrinsic_type_token10] = ACTIONS(5081), + [aux_sym_derived_type_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), + [aux_sym_type_qualifier_token1] = ACTIONS(5081), + [aux_sym_type_qualifier_token2] = ACTIONS(5081), + [aux_sym_equivalence_statement_token1] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [aux_sym_stop_statement_token1] = ACTIONS(5081), + [aux_sym_stop_statement_token2] = ACTIONS(5081), + [aux_sym_subroutine_call_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token2] = ACTIONS(5081), + [aux_sym_keyword_statement_token3] = ACTIONS(5081), + [aux_sym_keyword_statement_token4] = ACTIONS(5081), + [aux_sym_keyword_statement_token6] = ACTIONS(5081), + [aux_sym_keyword_statement_token7] = ACTIONS(5081), + [aux_sym_include_statement_token1] = ACTIONS(5081), + [aux_sym_data_statement_token1] = ACTIONS(5081), + [aux_sym_do_loop_statement_token1] = ACTIONS(5081), + [aux_sym__inline_if_statement_token1] = ACTIONS(5081), + [aux_sym_end_if_statement_token1] = ACTIONS(5081), + [aux_sym_elseif_clause_token2] = ACTIONS(5081), + [aux_sym__inline_where_statement_token1] = ACTIONS(5081), + [aux_sym__forall_control_expression_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token3] = ACTIONS(5081), + [aux_sym_select_type_statement_token1] = ACTIONS(5081), + [aux_sym_select_rank_statement_token2] = ACTIONS(5081), + [aux_sym_block_construct_token1] = ACTIONS(5081), + [aux_sym_associate_statement_token1] = ACTIONS(5081), + [aux_sym_format_statement_token1] = ACTIONS(5081), + [aux_sym_print_statement_token1] = ACTIONS(5081), + [aux_sym_open_statement_token1] = ACTIONS(5081), + [aux_sym_close_statement_token1] = ACTIONS(5081), + [aux_sym_inquire_statement_token1] = ACTIONS(5081), + [aux_sym_enum_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token2] = ACTIONS(5081), + [aux_sym_file_position_statement_token3] = ACTIONS(5081), + [aux_sym_file_position_statement_token4] = ACTIONS(5081), + [aux_sym_allocate_statement_token1] = ACTIONS(5081), + [aux_sym_entry_statement_token1] = ACTIONS(5081), + [aux_sym_logical_expression_token5] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_LPAREN_SLASH] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [aux_sym_boolean_literal_token1] = ACTIONS(5083), + [aux_sym_boolean_literal_token2] = ACTIONS(5083), + [aux_sym_null_literal_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token2] = ACTIONS(5081), + [aux_sym_coarray_statement_token6] = ACTIONS(5081), + [aux_sym_coarray_statement_token8] = ACTIONS(5081), + [aux_sym_coarray_statement_token11] = ACTIONS(5081), + [aux_sym_coarray_statement_token12] = ACTIONS(5081), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), + [aux_sym_identifier_token1] = ACTIONS(5081), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(5083), + [sym__float_literal] = ACTIONS(5083), + [sym__boz_literal] = ACTIONS(5083), + [sym__string_literal] = ACTIONS(5083), + [sym__string_literal_kind] = ACTIONS(5083), }, - [1551] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [1511] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_end_program_statement_token2] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1552] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token2] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_LPAREN2] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_subroutine_call_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_keyword_statement_token4] = ACTIONS(4619), - [aux_sym_keyword_statement_token6] = ACTIONS(4619), - [aux_sym_keyword_statement_token7] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym_do_loop_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym__inline_where_statement_token1] = ACTIONS(4619), - [aux_sym__forall_control_expression_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token3] = ACTIONS(4619), - [aux_sym_select_type_statement_token1] = ACTIONS(4619), - [aux_sym_select_rank_statement_token2] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_associate_statement_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_print_statement_token1] = ACTIONS(4619), - [aux_sym_open_statement_token1] = ACTIONS(4619), - [aux_sym_close_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token2] = ACTIONS(4619), - [aux_sym_file_position_statement_token3] = ACTIONS(4619), - [aux_sym_file_position_statement_token4] = ACTIONS(4619), - [aux_sym_allocate_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_logical_expression_token5] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_LPAREN_SLASH] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [aux_sym_boolean_literal_token1] = ACTIONS(4621), - [aux_sym_boolean_literal_token2] = ACTIONS(4621), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - [sym__float_literal] = ACTIONS(4621), - [sym__boz_literal] = ACTIONS(4621), - [sym__string_literal] = ACTIONS(4621), - [sym__string_literal_kind] = ACTIONS(4621), + [1512] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token2] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_subroutine_call_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_keyword_statement_token4] = ACTIONS(5018), + [aux_sym_keyword_statement_token6] = ACTIONS(5018), + [aux_sym_keyword_statement_token7] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym_do_loop_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym__inline_where_statement_token1] = ACTIONS(5018), + [aux_sym__forall_control_expression_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token3] = ACTIONS(5018), + [aux_sym_select_type_statement_token1] = ACTIONS(5018), + [aux_sym_select_rank_statement_token2] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_associate_statement_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_print_statement_token1] = ACTIONS(5018), + [aux_sym_open_statement_token1] = ACTIONS(5018), + [aux_sym_close_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token2] = ACTIONS(5018), + [aux_sym_file_position_statement_token3] = ACTIONS(5018), + [aux_sym_file_position_statement_token4] = ACTIONS(5018), + [aux_sym_allocate_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_logical_expression_token5] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_LPAREN_SLASH] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [aux_sym_boolean_literal_token1] = ACTIONS(5020), + [aux_sym_boolean_literal_token2] = ACTIONS(5020), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + [sym__float_literal] = ACTIONS(5020), + [sym__boz_literal] = ACTIONS(5020), + [sym__string_literal] = ACTIONS(5020), + [sym__string_literal_kind] = ACTIONS(5020), }, - [1553] = { + [1513] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token2] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_subroutine_call_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_keyword_statement_token4] = ACTIONS(5022), + [aux_sym_keyword_statement_token6] = ACTIONS(5022), + [aux_sym_keyword_statement_token7] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym_do_loop_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym__inline_where_statement_token1] = ACTIONS(5022), + [aux_sym__forall_control_expression_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token3] = ACTIONS(5022), + [aux_sym_select_type_statement_token1] = ACTIONS(5022), + [aux_sym_select_rank_statement_token2] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_associate_statement_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_print_statement_token1] = ACTIONS(5022), + [aux_sym_open_statement_token1] = ACTIONS(5022), + [aux_sym_close_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token2] = ACTIONS(5022), + [aux_sym_file_position_statement_token3] = ACTIONS(5022), + [aux_sym_file_position_statement_token4] = ACTIONS(5022), + [aux_sym_allocate_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_logical_expression_token5] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_LPAREN_SLASH] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [aux_sym_boolean_literal_token1] = ACTIONS(5024), + [aux_sym_boolean_literal_token2] = ACTIONS(5024), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + [sym__float_literal] = ACTIONS(5024), + [sym__boz_literal] = ACTIONS(5024), + [sym__string_literal] = ACTIONS(5024), + [sym__string_literal_kind] = ACTIONS(5024), + }, + [1514] = { [aux_sym_preproc_include_token1] = ACTIONS(4511), [aux_sym_preproc_def_token1] = ACTIONS(4511), [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token2] = ACTIONS(4511), [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), [sym_preproc_directive] = ACTIONS(4511), @@ -296058,6 +291182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_interface_statement_token1] = ACTIONS(4511), [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4511), [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), [aux_sym_language_binding_token1] = ACTIONS(4511), [aux_sym_procedure_attributes_token1] = ACTIONS(4511), @@ -296167,632 +291292,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4513), [sym__string_literal_kind] = ACTIONS(4513), }, - [1554] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [1555] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token2] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), - }, - [1556] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_end_function_statement_token1] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), - }, - [1557] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token2] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_LPAREN2] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_subroutine_call_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_keyword_statement_token4] = ACTIONS(5029), - [aux_sym_keyword_statement_token6] = ACTIONS(5029), - [aux_sym_keyword_statement_token7] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym_do_loop_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym__inline_where_statement_token1] = ACTIONS(5029), - [aux_sym__forall_control_expression_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token3] = ACTIONS(5029), - [aux_sym_select_type_statement_token1] = ACTIONS(5029), - [aux_sym_select_rank_statement_token2] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_associate_statement_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_print_statement_token1] = ACTIONS(5029), - [aux_sym_open_statement_token1] = ACTIONS(5029), - [aux_sym_close_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token2] = ACTIONS(5029), - [aux_sym_file_position_statement_token3] = ACTIONS(5029), - [aux_sym_file_position_statement_token4] = ACTIONS(5029), - [aux_sym_allocate_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_logical_expression_token5] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_LPAREN_SLASH] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [aux_sym_boolean_literal_token1] = ACTIONS(5031), - [aux_sym_boolean_literal_token2] = ACTIONS(5031), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - [sym__float_literal] = ACTIONS(5031), - [sym__boz_literal] = ACTIONS(5031), - [sym__string_literal] = ACTIONS(5031), - [sym__string_literal_kind] = ACTIONS(5031), - }, - [1558] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token2] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_LPAREN2] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_subroutine_call_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_keyword_statement_token4] = ACTIONS(5033), - [aux_sym_keyword_statement_token6] = ACTIONS(5033), - [aux_sym_keyword_statement_token7] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym_do_loop_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym__inline_where_statement_token1] = ACTIONS(5033), - [aux_sym__forall_control_expression_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token3] = ACTIONS(5033), - [aux_sym_select_type_statement_token1] = ACTIONS(5033), - [aux_sym_select_rank_statement_token2] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_associate_statement_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_print_statement_token1] = ACTIONS(5033), - [aux_sym_open_statement_token1] = ACTIONS(5033), - [aux_sym_close_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token2] = ACTIONS(5033), - [aux_sym_file_position_statement_token3] = ACTIONS(5033), - [aux_sym_file_position_statement_token4] = ACTIONS(5033), - [aux_sym_allocate_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_logical_expression_token5] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_LPAREN_SLASH] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [aux_sym_boolean_literal_token1] = ACTIONS(5035), - [aux_sym_boolean_literal_token2] = ACTIONS(5035), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - [sym__float_literal] = ACTIONS(5035), - [sym__boz_literal] = ACTIONS(5035), - [sym__string_literal] = ACTIONS(5035), - [sym__string_literal_kind] = ACTIONS(5035), + [1515] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token2] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_subroutine_call_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_keyword_statement_token4] = ACTIONS(5026), + [aux_sym_keyword_statement_token6] = ACTIONS(5026), + [aux_sym_keyword_statement_token7] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym_do_loop_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym__inline_where_statement_token1] = ACTIONS(5026), + [aux_sym__forall_control_expression_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token3] = ACTIONS(5026), + [aux_sym_select_type_statement_token1] = ACTIONS(5026), + [aux_sym_select_rank_statement_token2] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_associate_statement_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_print_statement_token1] = ACTIONS(5026), + [aux_sym_open_statement_token1] = ACTIONS(5026), + [aux_sym_close_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token2] = ACTIONS(5026), + [aux_sym_file_position_statement_token3] = ACTIONS(5026), + [aux_sym_file_position_statement_token4] = ACTIONS(5026), + [aux_sym_allocate_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_logical_expression_token5] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_LPAREN_SLASH] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [aux_sym_boolean_literal_token1] = ACTIONS(5028), + [aux_sym_boolean_literal_token2] = ACTIONS(5028), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + [sym__float_literal] = ACTIONS(5028), + [sym__boz_literal] = ACTIONS(5028), + [sym__string_literal] = ACTIONS(5028), + [sym__string_literal_kind] = ACTIONS(5028), }, - [1559] = { + [1516] = { [aux_sym_preproc_include_token1] = ACTIONS(5081), [aux_sym_preproc_def_token1] = ACTIONS(5081), [aux_sym_preproc_if_token1] = ACTIONS(5081), @@ -296808,10 +291433,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5081), [aux_sym_language_binding_token1] = ACTIONS(5081), [aux_sym_procedure_attributes_token1] = ACTIONS(5081), [aux_sym_procedure_attributes_token3] = ACTIONS(5081), + [aux_sym_end_function_statement_token1] = ACTIONS(5081), [aux_sym_contains_statement_token1] = ACTIONS(5081), [aux_sym_use_statement_token1] = ACTIONS(5081), [aux_sym_use_statement_token2] = ACTIONS(5081), @@ -296917,1886 +291542,2135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5083), [sym__string_literal_kind] = ACTIONS(5083), }, - [1560] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_LPAREN2] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_subroutine_call_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_keyword_statement_token4] = ACTIONS(5057), - [aux_sym_keyword_statement_token6] = ACTIONS(5057), - [aux_sym_keyword_statement_token7] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym_do_loop_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym__inline_where_statement_token1] = ACTIONS(5057), - [aux_sym__forall_control_expression_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token3] = ACTIONS(5057), - [aux_sym_select_type_statement_token1] = ACTIONS(5057), - [aux_sym_select_rank_statement_token2] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_associate_statement_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_print_statement_token1] = ACTIONS(5057), - [aux_sym_open_statement_token1] = ACTIONS(5057), - [aux_sym_close_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token2] = ACTIONS(5057), - [aux_sym_file_position_statement_token3] = ACTIONS(5057), - [aux_sym_file_position_statement_token4] = ACTIONS(5057), - [aux_sym_allocate_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_logical_expression_token5] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_LPAREN_SLASH] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [aux_sym_boolean_literal_token1] = ACTIONS(5059), - [aux_sym_boolean_literal_token2] = ACTIONS(5059), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - [sym__float_literal] = ACTIONS(5059), - [sym__boz_literal] = ACTIONS(5059), - [sym__string_literal] = ACTIONS(5059), - [sym__string_literal_kind] = ACTIONS(5059), + [1517] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_subroutine_call_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_keyword_statement_token4] = ACTIONS(5010), + [aux_sym_keyword_statement_token6] = ACTIONS(5010), + [aux_sym_keyword_statement_token7] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym_do_loop_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym__inline_where_statement_token1] = ACTIONS(5010), + [aux_sym__forall_control_expression_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token3] = ACTIONS(5010), + [aux_sym_select_type_statement_token1] = ACTIONS(5010), + [aux_sym_select_rank_statement_token2] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_associate_statement_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_print_statement_token1] = ACTIONS(5010), + [aux_sym_open_statement_token1] = ACTIONS(5010), + [aux_sym_close_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token2] = ACTIONS(5010), + [aux_sym_file_position_statement_token3] = ACTIONS(5010), + [aux_sym_file_position_statement_token4] = ACTIONS(5010), + [aux_sym_allocate_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_logical_expression_token5] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_LPAREN_SLASH] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [aux_sym_boolean_literal_token1] = ACTIONS(5012), + [aux_sym_boolean_literal_token2] = ACTIONS(5012), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + [sym__float_literal] = ACTIONS(5012), + [sym__boz_literal] = ACTIONS(5012), + [sym__string_literal] = ACTIONS(5012), + [sym__string_literal_kind] = ACTIONS(5012), }, - [1561] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [1518] = { + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token2] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_LPAREN2] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_subroutine_call_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_keyword_statement_token4] = ACTIONS(5051), + [aux_sym_keyword_statement_token6] = ACTIONS(5051), + [aux_sym_keyword_statement_token7] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym_do_loop_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym__inline_where_statement_token1] = ACTIONS(5051), + [aux_sym__forall_control_expression_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token3] = ACTIONS(5051), + [aux_sym_select_type_statement_token1] = ACTIONS(5051), + [aux_sym_select_rank_statement_token2] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_associate_statement_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_print_statement_token1] = ACTIONS(5051), + [aux_sym_open_statement_token1] = ACTIONS(5051), + [aux_sym_close_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token2] = ACTIONS(5051), + [aux_sym_file_position_statement_token3] = ACTIONS(5051), + [aux_sym_file_position_statement_token4] = ACTIONS(5051), + [aux_sym_allocate_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_logical_expression_token5] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_LPAREN_SLASH] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [aux_sym_boolean_literal_token1] = ACTIONS(5053), + [aux_sym_boolean_literal_token2] = ACTIONS(5053), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + [sym__float_literal] = ACTIONS(5053), + [sym__boz_literal] = ACTIONS(5053), + [sym__string_literal] = ACTIONS(5053), + [sym__string_literal_kind] = ACTIONS(5053), }, - [1562] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_end_function_statement_token1] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [1519] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token2] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_subroutine_call_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_keyword_statement_token4] = ACTIONS(4982), + [aux_sym_keyword_statement_token6] = ACTIONS(4982), + [aux_sym_keyword_statement_token7] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym_do_loop_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym__inline_where_statement_token1] = ACTIONS(4982), + [aux_sym__forall_control_expression_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token3] = ACTIONS(4982), + [aux_sym_select_type_statement_token1] = ACTIONS(4982), + [aux_sym_select_rank_statement_token2] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_associate_statement_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_print_statement_token1] = ACTIONS(4982), + [aux_sym_open_statement_token1] = ACTIONS(4982), + [aux_sym_close_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token2] = ACTIONS(4982), + [aux_sym_file_position_statement_token3] = ACTIONS(4982), + [aux_sym_file_position_statement_token4] = ACTIONS(4982), + [aux_sym_allocate_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_logical_expression_token5] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_LPAREN_SLASH] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [aux_sym_boolean_literal_token1] = ACTIONS(4984), + [aux_sym_boolean_literal_token2] = ACTIONS(4984), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + [sym__float_literal] = ACTIONS(4984), + [sym__boz_literal] = ACTIONS(4984), + [sym__string_literal] = ACTIONS(4984), + [sym__string_literal_kind] = ACTIONS(4984), }, - [1563] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_end_function_statement_token1] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [1520] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_end_function_statement_token1] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_subroutine_call_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_keyword_statement_token4] = ACTIONS(5018), + [aux_sym_keyword_statement_token6] = ACTIONS(5018), + [aux_sym_keyword_statement_token7] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym_do_loop_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym__inline_where_statement_token1] = ACTIONS(5018), + [aux_sym__forall_control_expression_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token3] = ACTIONS(5018), + [aux_sym_select_type_statement_token1] = ACTIONS(5018), + [aux_sym_select_rank_statement_token2] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_associate_statement_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_print_statement_token1] = ACTIONS(5018), + [aux_sym_open_statement_token1] = ACTIONS(5018), + [aux_sym_close_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token2] = ACTIONS(5018), + [aux_sym_file_position_statement_token3] = ACTIONS(5018), + [aux_sym_file_position_statement_token4] = ACTIONS(5018), + [aux_sym_allocate_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_logical_expression_token5] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_LPAREN_SLASH] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [aux_sym_boolean_literal_token1] = ACTIONS(5020), + [aux_sym_boolean_literal_token2] = ACTIONS(5020), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + [sym__float_literal] = ACTIONS(5020), + [sym__boz_literal] = ACTIONS(5020), + [sym__string_literal] = ACTIONS(5020), + [sym__string_literal_kind] = ACTIONS(5020), }, - [1564] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [1521] = { + [aux_sym_preproc_include_token1] = ACTIONS(4972), + [aux_sym_preproc_def_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token2] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), + [sym_preproc_directive] = ACTIONS(4972), + [anon_sym_LPAREN2] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_end_function_statement_token1] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4972), + [aux_sym_interface_statement_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), + [aux_sym_language_binding_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token3] = ACTIONS(4972), + [aux_sym_contains_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token2] = ACTIONS(4972), + [aux_sym_implicit_statement_token1] = ACTIONS(4972), + [aux_sym_implicit_statement_token3] = ACTIONS(4972), + [aux_sym_implicit_statement_token4] = ACTIONS(4972), + [aux_sym_save_statement_token1] = ACTIONS(4972), + [aux_sym_private_statement_token1] = ACTIONS(4972), + [aux_sym_public_statement_token1] = ACTIONS(4972), + [aux_sym_namelist_statement_token1] = ACTIONS(4972), + [aux_sym_common_statement_token1] = ACTIONS(4972), + [aux_sym_import_statement_token1] = ACTIONS(4972), + [aux_sym_derived_type_definition_token1] = ACTIONS(4972), + [aux_sym_abstract_specifier_token1] = ACTIONS(4972), + [aux_sym_procedure_attribute_token6] = ACTIONS(4972), + [aux_sym_variable_attributes_token1] = ACTIONS(4972), + [aux_sym_variable_attributes_token2] = ACTIONS(4972), + [aux_sym_variable_attributes_token3] = ACTIONS(4972), + [aux_sym_variable_attributes_token4] = ACTIONS(4972), + [aux_sym_variable_attributes_token5] = ACTIONS(4972), + [aux_sym__intrinsic_type_token1] = ACTIONS(4972), + [aux_sym__intrinsic_type_token2] = ACTIONS(4972), + [aux_sym__intrinsic_type_token3] = ACTIONS(4972), + [aux_sym__intrinsic_type_token4] = ACTIONS(4972), + [aux_sym__intrinsic_type_token6] = ACTIONS(4972), + [aux_sym__intrinsic_type_token7] = ACTIONS(4972), + [aux_sym__intrinsic_type_token8] = ACTIONS(4972), + [aux_sym__intrinsic_type_token9] = ACTIONS(4972), + [aux_sym__intrinsic_type_token10] = ACTIONS(4972), + [aux_sym_derived_type_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), + [aux_sym_type_qualifier_token1] = ACTIONS(4972), + [aux_sym_type_qualifier_token2] = ACTIONS(4972), + [aux_sym_equivalence_statement_token1] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [aux_sym_stop_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token2] = ACTIONS(4972), + [aux_sym_subroutine_call_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token3] = ACTIONS(4972), + [aux_sym_keyword_statement_token4] = ACTIONS(4972), + [aux_sym_keyword_statement_token6] = ACTIONS(4972), + [aux_sym_keyword_statement_token7] = ACTIONS(4972), + [aux_sym_include_statement_token1] = ACTIONS(4972), + [aux_sym_data_statement_token1] = ACTIONS(4972), + [aux_sym_do_loop_statement_token1] = ACTIONS(4972), + [aux_sym__inline_if_statement_token1] = ACTIONS(4972), + [aux_sym_end_if_statement_token1] = ACTIONS(4972), + [aux_sym_elseif_clause_token2] = ACTIONS(4972), + [aux_sym__inline_where_statement_token1] = ACTIONS(4972), + [aux_sym__forall_control_expression_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token3] = ACTIONS(4972), + [aux_sym_select_type_statement_token1] = ACTIONS(4972), + [aux_sym_select_rank_statement_token2] = ACTIONS(4972), + [aux_sym_block_construct_token1] = ACTIONS(4972), + [aux_sym_associate_statement_token1] = ACTIONS(4972), + [aux_sym_format_statement_token1] = ACTIONS(4972), + [aux_sym_print_statement_token1] = ACTIONS(4972), + [aux_sym_open_statement_token1] = ACTIONS(4972), + [aux_sym_close_statement_token1] = ACTIONS(4972), + [aux_sym_inquire_statement_token1] = ACTIONS(4972), + [aux_sym_enum_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token2] = ACTIONS(4972), + [aux_sym_file_position_statement_token3] = ACTIONS(4972), + [aux_sym_file_position_statement_token4] = ACTIONS(4972), + [aux_sym_allocate_statement_token1] = ACTIONS(4972), + [aux_sym_entry_statement_token1] = ACTIONS(4972), + [aux_sym_logical_expression_token5] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_LPAREN_SLASH] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [aux_sym_boolean_literal_token1] = ACTIONS(4974), + [aux_sym_boolean_literal_token2] = ACTIONS(4974), + [aux_sym_null_literal_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token2] = ACTIONS(4972), + [aux_sym_coarray_statement_token6] = ACTIONS(4972), + [aux_sym_coarray_statement_token8] = ACTIONS(4972), + [aux_sym_coarray_statement_token11] = ACTIONS(4972), + [aux_sym_coarray_statement_token12] = ACTIONS(4972), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), + [aux_sym_identifier_token1] = ACTIONS(4972), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(4974), + [sym__float_literal] = ACTIONS(4974), + [sym__boz_literal] = ACTIONS(4974), + [sym__string_literal] = ACTIONS(4974), + [sym__string_literal_kind] = ACTIONS(4974), }, - [1565] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token2] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_LPAREN2] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_subroutine_call_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_keyword_statement_token4] = ACTIONS(5041), - [aux_sym_keyword_statement_token6] = ACTIONS(5041), - [aux_sym_keyword_statement_token7] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym_do_loop_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym__inline_where_statement_token1] = ACTIONS(5041), - [aux_sym__forall_control_expression_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token3] = ACTIONS(5041), - [aux_sym_select_type_statement_token1] = ACTIONS(5041), - [aux_sym_select_rank_statement_token2] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_associate_statement_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_print_statement_token1] = ACTIONS(5041), - [aux_sym_open_statement_token1] = ACTIONS(5041), - [aux_sym_close_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token2] = ACTIONS(5041), - [aux_sym_file_position_statement_token3] = ACTIONS(5041), - [aux_sym_file_position_statement_token4] = ACTIONS(5041), - [aux_sym_allocate_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_logical_expression_token5] = ACTIONS(5043), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_LPAREN_SLASH] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [aux_sym_boolean_literal_token1] = ACTIONS(5043), - [aux_sym_boolean_literal_token2] = ACTIONS(5043), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - [sym__float_literal] = ACTIONS(5043), - [sym__boz_literal] = ACTIONS(5043), - [sym__string_literal] = ACTIONS(5043), - [sym__string_literal_kind] = ACTIONS(5043), + [1522] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token2] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_LPAREN2] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_subroutine_call_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_keyword_statement_token4] = ACTIONS(5055), + [aux_sym_keyword_statement_token6] = ACTIONS(5055), + [aux_sym_keyword_statement_token7] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym_do_loop_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym__inline_where_statement_token1] = ACTIONS(5055), + [aux_sym__forall_control_expression_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token3] = ACTIONS(5055), + [aux_sym_select_type_statement_token1] = ACTIONS(5055), + [aux_sym_select_rank_statement_token2] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_associate_statement_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_print_statement_token1] = ACTIONS(5055), + [aux_sym_open_statement_token1] = ACTIONS(5055), + [aux_sym_close_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token2] = ACTIONS(5055), + [aux_sym_file_position_statement_token3] = ACTIONS(5055), + [aux_sym_file_position_statement_token4] = ACTIONS(5055), + [aux_sym_allocate_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_logical_expression_token5] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_LPAREN_SLASH] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [aux_sym_boolean_literal_token1] = ACTIONS(5057), + [aux_sym_boolean_literal_token2] = ACTIONS(5057), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + [sym__float_literal] = ACTIONS(5057), + [sym__boz_literal] = ACTIONS(5057), + [sym__string_literal] = ACTIONS(5057), + [sym__string_literal_kind] = ACTIONS(5057), }, - [1566] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token2] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_LPAREN2] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_subroutine_call_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_keyword_statement_token4] = ACTIONS(5045), - [aux_sym_keyword_statement_token6] = ACTIONS(5045), - [aux_sym_keyword_statement_token7] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym_do_loop_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym__inline_where_statement_token1] = ACTIONS(5045), - [aux_sym__forall_control_expression_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token3] = ACTIONS(5045), - [aux_sym_select_type_statement_token1] = ACTIONS(5045), - [aux_sym_select_rank_statement_token2] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_associate_statement_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_print_statement_token1] = ACTIONS(5045), - [aux_sym_open_statement_token1] = ACTIONS(5045), - [aux_sym_close_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token2] = ACTIONS(5045), - [aux_sym_file_position_statement_token3] = ACTIONS(5045), - [aux_sym_file_position_statement_token4] = ACTIONS(5045), - [aux_sym_allocate_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_logical_expression_token5] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_LPAREN_SLASH] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [aux_sym_boolean_literal_token1] = ACTIONS(5047), - [aux_sym_boolean_literal_token2] = ACTIONS(5047), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - [sym__float_literal] = ACTIONS(5047), - [sym__boz_literal] = ACTIONS(5047), - [sym__string_literal] = ACTIONS(5047), - [sym__string_literal_kind] = ACTIONS(5047), + [1523] = { + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_LPAREN2] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_subroutine_call_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_keyword_statement_token4] = ACTIONS(5051), + [aux_sym_keyword_statement_token6] = ACTIONS(5051), + [aux_sym_keyword_statement_token7] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym_do_loop_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym__inline_where_statement_token1] = ACTIONS(5051), + [aux_sym__forall_control_expression_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token3] = ACTIONS(5051), + [aux_sym_select_type_statement_token1] = ACTIONS(5051), + [aux_sym_select_rank_statement_token2] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_associate_statement_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_print_statement_token1] = ACTIONS(5051), + [aux_sym_open_statement_token1] = ACTIONS(5051), + [aux_sym_close_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token2] = ACTIONS(5051), + [aux_sym_file_position_statement_token3] = ACTIONS(5051), + [aux_sym_file_position_statement_token4] = ACTIONS(5051), + [aux_sym_allocate_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_logical_expression_token5] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_LPAREN_SLASH] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [aux_sym_boolean_literal_token1] = ACTIONS(5053), + [aux_sym_boolean_literal_token2] = ACTIONS(5053), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + [sym__float_literal] = ACTIONS(5053), + [sym__boz_literal] = ACTIONS(5053), + [sym__string_literal] = ACTIONS(5053), + [sym__string_literal_kind] = ACTIONS(5053), }, - [1567] = { - [aux_sym_preproc_include_token1] = ACTIONS(4976), - [aux_sym_preproc_def_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token1] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), - [sym_preproc_directive] = ACTIONS(4976), - [anon_sym_LPAREN2] = ACTIONS(4976), - [anon_sym_PLUS] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), + [1524] = { + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_end_function_statement_token1] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), + }, + [1525] = { + [aux_sym_preproc_include_token1] = ACTIONS(5442), + [aux_sym_preproc_def_token1] = ACTIONS(5442), + [aux_sym_preproc_if_token1] = ACTIONS(5442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5442), + [sym_preproc_directive] = ACTIONS(5442), + [anon_sym_LPAREN2] = ACTIONS(5442), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_DASH] = ACTIONS(5444), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4976), - [aux_sym_interface_statement_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4976), - [aux_sym_language_binding_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token3] = ACTIONS(4976), - [aux_sym_contains_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token2] = ACTIONS(4976), - [aux_sym_implicit_statement_token1] = ACTIONS(4976), - [aux_sym_implicit_statement_token3] = ACTIONS(4976), - [aux_sym_implicit_statement_token4] = ACTIONS(4976), - [aux_sym_save_statement_token1] = ACTIONS(4976), - [aux_sym_private_statement_token1] = ACTIONS(4976), - [aux_sym_public_statement_token1] = ACTIONS(4976), - [aux_sym_namelist_statement_token1] = ACTIONS(4976), - [aux_sym_common_statement_token1] = ACTIONS(4976), - [aux_sym_import_statement_token1] = ACTIONS(4976), - [aux_sym_derived_type_definition_token1] = ACTIONS(4976), - [aux_sym_abstract_specifier_token1] = ACTIONS(4976), - [aux_sym_procedure_attribute_token6] = ACTIONS(4976), - [aux_sym_variable_attributes_token1] = ACTIONS(4976), - [aux_sym_variable_attributes_token2] = ACTIONS(4976), - [aux_sym_variable_attributes_token3] = ACTIONS(4976), - [aux_sym_variable_attributes_token4] = ACTIONS(4976), - [aux_sym_variable_attributes_token5] = ACTIONS(4976), - [aux_sym__intrinsic_type_token1] = ACTIONS(4976), - [aux_sym__intrinsic_type_token2] = ACTIONS(4976), - [aux_sym__intrinsic_type_token3] = ACTIONS(4976), - [aux_sym__intrinsic_type_token4] = ACTIONS(4976), - [aux_sym__intrinsic_type_token6] = ACTIONS(4976), - [aux_sym__intrinsic_type_token7] = ACTIONS(4976), - [aux_sym__intrinsic_type_token8] = ACTIONS(4976), - [aux_sym__intrinsic_type_token9] = ACTIONS(4976), - [aux_sym__intrinsic_type_token10] = ACTIONS(4976), - [aux_sym_derived_type_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), - [aux_sym_type_qualifier_token1] = ACTIONS(4976), - [aux_sym_type_qualifier_token2] = ACTIONS(4976), - [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), - [aux_sym_stop_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token2] = ACTIONS(4976), - [aux_sym_subroutine_call_token1] = ACTIONS(4976), - [aux_sym_keyword_statement_token1] = ACTIONS(4976), - [aux_sym_keyword_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token3] = ACTIONS(4976), - [aux_sym_keyword_statement_token4] = ACTIONS(4976), - [aux_sym_keyword_statement_token6] = ACTIONS(4976), - [aux_sym_keyword_statement_token7] = ACTIONS(4976), - [aux_sym_include_statement_token1] = ACTIONS(4976), - [aux_sym_data_statement_token1] = ACTIONS(4976), - [aux_sym_do_loop_statement_token1] = ACTIONS(4976), - [aux_sym__inline_if_statement_token1] = ACTIONS(4976), - [aux_sym_end_if_statement_token1] = ACTIONS(4976), - [aux_sym_elseif_clause_token2] = ACTIONS(4976), - [aux_sym__inline_where_statement_token1] = ACTIONS(4976), - [aux_sym__forall_control_expression_token1] = ACTIONS(4976), - [aux_sym_select_case_statement_token1] = ACTIONS(4976), - [aux_sym_select_case_statement_token3] = ACTIONS(4976), - [aux_sym_select_type_statement_token1] = ACTIONS(4976), - [aux_sym_select_rank_statement_token2] = ACTIONS(4976), - [aux_sym_block_construct_token1] = ACTIONS(4976), - [aux_sym_associate_statement_token1] = ACTIONS(4976), - [aux_sym_format_statement_token1] = ACTIONS(4976), - [aux_sym_print_statement_token1] = ACTIONS(4976), - [aux_sym_open_statement_token1] = ACTIONS(4976), - [aux_sym_close_statement_token1] = ACTIONS(4976), - [aux_sym_inquire_statement_token1] = ACTIONS(4976), - [aux_sym_enum_statement_token1] = ACTIONS(4976), - [aux_sym_file_position_statement_token1] = ACTIONS(4976), - [aux_sym_file_position_statement_token2] = ACTIONS(4976), - [aux_sym_file_position_statement_token3] = ACTIONS(4976), - [aux_sym_file_position_statement_token4] = ACTIONS(4976), - [aux_sym_allocate_statement_token1] = ACTIONS(4976), - [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_logical_expression_token5] = ACTIONS(4978), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_LPAREN_SLASH] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [aux_sym_boolean_literal_token1] = ACTIONS(4978), - [aux_sym_boolean_literal_token2] = ACTIONS(4978), - [aux_sym_null_literal_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token2] = ACTIONS(4976), - [aux_sym_coarray_statement_token6] = ACTIONS(4976), - [aux_sym_coarray_statement_token8] = ACTIONS(4976), - [aux_sym_coarray_statement_token11] = ACTIONS(4976), - [aux_sym_coarray_statement_token12] = ACTIONS(4976), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), - [aux_sym_identifier_token1] = ACTIONS(4976), + [aux_sym_end_program_statement_token1] = ACTIONS(5442), + [aux_sym_interface_statement_token1] = ACTIONS(5442), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5442), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5442), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5442), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5442), + [aux_sym_language_binding_token1] = ACTIONS(5442), + [aux_sym_procedure_attributes_token1] = ACTIONS(5442), + [aux_sym_procedure_attributes_token3] = ACTIONS(5442), + [aux_sym_contains_statement_token1] = ACTIONS(5442), + [aux_sym_use_statement_token1] = ACTIONS(5442), + [aux_sym_use_statement_token2] = ACTIONS(5442), + [aux_sym_implicit_statement_token1] = ACTIONS(5442), + [aux_sym_implicit_statement_token3] = ACTIONS(5442), + [aux_sym_implicit_statement_token4] = ACTIONS(5442), + [aux_sym_save_statement_token1] = ACTIONS(5442), + [aux_sym_private_statement_token1] = ACTIONS(5442), + [aux_sym_public_statement_token1] = ACTIONS(5442), + [aux_sym_namelist_statement_token1] = ACTIONS(5442), + [aux_sym_common_statement_token1] = ACTIONS(5442), + [aux_sym_import_statement_token1] = ACTIONS(5442), + [aux_sym_derived_type_definition_token1] = ACTIONS(5442), + [aux_sym_abstract_specifier_token1] = ACTIONS(5442), + [aux_sym_procedure_attribute_token6] = ACTIONS(5442), + [aux_sym_variable_attributes_token1] = ACTIONS(5442), + [aux_sym_variable_attributes_token2] = ACTIONS(5442), + [aux_sym_variable_attributes_token3] = ACTIONS(5442), + [aux_sym_variable_attributes_token4] = ACTIONS(5442), + [aux_sym_variable_attributes_token5] = ACTIONS(5442), + [aux_sym__intrinsic_type_token1] = ACTIONS(5442), + [aux_sym__intrinsic_type_token2] = ACTIONS(5442), + [aux_sym__intrinsic_type_token3] = ACTIONS(5442), + [aux_sym__intrinsic_type_token4] = ACTIONS(5442), + [aux_sym__intrinsic_type_token6] = ACTIONS(5442), + [aux_sym__intrinsic_type_token7] = ACTIONS(5442), + [aux_sym__intrinsic_type_token8] = ACTIONS(5442), + [aux_sym__intrinsic_type_token9] = ACTIONS(5442), + [aux_sym__intrinsic_type_token10] = ACTIONS(5442), + [aux_sym_derived_type_token1] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5442), + [aux_sym_type_qualifier_token1] = ACTIONS(5442), + [aux_sym_type_qualifier_token2] = ACTIONS(5442), + [aux_sym_equivalence_statement_token1] = ACTIONS(5442), + [anon_sym_SEMI] = ACTIONS(5444), + [aux_sym_stop_statement_token1] = ACTIONS(5442), + [aux_sym_stop_statement_token2] = ACTIONS(5442), + [aux_sym_subroutine_call_token1] = ACTIONS(5442), + [aux_sym_keyword_statement_token1] = ACTIONS(5442), + [aux_sym_keyword_statement_token2] = ACTIONS(5442), + [aux_sym_keyword_statement_token3] = ACTIONS(5442), + [aux_sym_keyword_statement_token4] = ACTIONS(5442), + [aux_sym_keyword_statement_token6] = ACTIONS(5442), + [aux_sym_keyword_statement_token7] = ACTIONS(5442), + [aux_sym_include_statement_token1] = ACTIONS(5442), + [aux_sym_data_statement_token1] = ACTIONS(5442), + [aux_sym_do_loop_statement_token1] = ACTIONS(5442), + [aux_sym__inline_if_statement_token1] = ACTIONS(5442), + [aux_sym_end_if_statement_token1] = ACTIONS(5442), + [aux_sym_elseif_clause_token2] = ACTIONS(5442), + [aux_sym__inline_where_statement_token1] = ACTIONS(5442), + [aux_sym__forall_control_expression_token1] = ACTIONS(5442), + [aux_sym_select_case_statement_token1] = ACTIONS(5442), + [aux_sym_select_case_statement_token3] = ACTIONS(5442), + [aux_sym_select_type_statement_token1] = ACTIONS(5442), + [aux_sym_select_rank_statement_token2] = ACTIONS(5442), + [aux_sym_block_construct_token1] = ACTIONS(5442), + [aux_sym_associate_statement_token1] = ACTIONS(5442), + [aux_sym_format_statement_token1] = ACTIONS(5442), + [aux_sym_print_statement_token1] = ACTIONS(5442), + [aux_sym_open_statement_token1] = ACTIONS(5442), + [aux_sym_close_statement_token1] = ACTIONS(5442), + [aux_sym_inquire_statement_token1] = ACTIONS(5442), + [aux_sym_enum_statement_token1] = ACTIONS(5442), + [aux_sym_file_position_statement_token1] = ACTIONS(5442), + [aux_sym_file_position_statement_token2] = ACTIONS(5442), + [aux_sym_file_position_statement_token3] = ACTIONS(5442), + [aux_sym_file_position_statement_token4] = ACTIONS(5442), + [aux_sym_allocate_statement_token1] = ACTIONS(5442), + [aux_sym_entry_statement_token1] = ACTIONS(5442), + [aux_sym_logical_expression_token5] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5442), + [anon_sym_LPAREN_SLASH] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5444), + [aux_sym_boolean_literal_token1] = ACTIONS(5444), + [aux_sym_boolean_literal_token2] = ACTIONS(5444), + [aux_sym_null_literal_token1] = ACTIONS(5442), + [aux_sym_coarray_statement_token1] = ACTIONS(5442), + [aux_sym_coarray_statement_token2] = ACTIONS(5442), + [aux_sym_coarray_statement_token6] = ACTIONS(5442), + [aux_sym_coarray_statement_token8] = ACTIONS(5442), + [aux_sym_coarray_statement_token11] = ACTIONS(5442), + [aux_sym_coarray_statement_token12] = ACTIONS(5442), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5442), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5442), + [aux_sym_identifier_token1] = ACTIONS(5442), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - [sym__float_literal] = ACTIONS(4978), - [sym__boz_literal] = ACTIONS(4978), - [sym__string_literal] = ACTIONS(4978), - [sym__string_literal_kind] = ACTIONS(4978), + [sym__integer_literal] = ACTIONS(5444), + [sym__float_literal] = ACTIONS(5444), + [sym__boz_literal] = ACTIONS(5444), + [sym__string_literal] = ACTIONS(5444), + [sym__string_literal_kind] = ACTIONS(5444), }, - [1568] = { - [aux_sym_preproc_include_token1] = ACTIONS(4990), - [aux_sym_preproc_def_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), - [sym_preproc_directive] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), + [1526] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token2] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_LPAREN2] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_subroutine_call_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_keyword_statement_token4] = ACTIONS(5059), + [aux_sym_keyword_statement_token6] = ACTIONS(5059), + [aux_sym_keyword_statement_token7] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym_do_loop_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym__inline_where_statement_token1] = ACTIONS(5059), + [aux_sym__forall_control_expression_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token3] = ACTIONS(5059), + [aux_sym_select_type_statement_token1] = ACTIONS(5059), + [aux_sym_select_rank_statement_token2] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_associate_statement_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_print_statement_token1] = ACTIONS(5059), + [aux_sym_open_statement_token1] = ACTIONS(5059), + [aux_sym_close_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token2] = ACTIONS(5059), + [aux_sym_file_position_statement_token3] = ACTIONS(5059), + [aux_sym_file_position_statement_token4] = ACTIONS(5059), + [aux_sym_allocate_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_logical_expression_token5] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [aux_sym_boolean_literal_token1] = ACTIONS(5061), + [aux_sym_boolean_literal_token2] = ACTIONS(5061), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + [sym__float_literal] = ACTIONS(5061), + [sym__boz_literal] = ACTIONS(5061), + [sym__string_literal] = ACTIONS(5061), + [sym__string_literal_kind] = ACTIONS(5061), + }, + [1527] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_end_function_statement_token1] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_subroutine_call_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_keyword_statement_token4] = ACTIONS(5022), + [aux_sym_keyword_statement_token6] = ACTIONS(5022), + [aux_sym_keyword_statement_token7] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym_do_loop_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym__inline_where_statement_token1] = ACTIONS(5022), + [aux_sym__forall_control_expression_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token3] = ACTIONS(5022), + [aux_sym_select_type_statement_token1] = ACTIONS(5022), + [aux_sym_select_rank_statement_token2] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_associate_statement_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_print_statement_token1] = ACTIONS(5022), + [aux_sym_open_statement_token1] = ACTIONS(5022), + [aux_sym_close_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token2] = ACTIONS(5022), + [aux_sym_file_position_statement_token3] = ACTIONS(5022), + [aux_sym_file_position_statement_token4] = ACTIONS(5022), + [aux_sym_allocate_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_logical_expression_token5] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_LPAREN_SLASH] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [aux_sym_boolean_literal_token1] = ACTIONS(5024), + [aux_sym_boolean_literal_token2] = ACTIONS(5024), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + [sym__float_literal] = ACTIONS(5024), + [sym__boz_literal] = ACTIONS(5024), + [sym__string_literal] = ACTIONS(5024), + [sym__string_literal_kind] = ACTIONS(5024), + }, + [1528] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4990), - [aux_sym_interface_statement_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_language_binding_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token3] = ACTIONS(4990), - [aux_sym_contains_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token2] = ACTIONS(4990), - [aux_sym_implicit_statement_token1] = ACTIONS(4990), - [aux_sym_implicit_statement_token3] = ACTIONS(4990), - [aux_sym_implicit_statement_token4] = ACTIONS(4990), - [aux_sym_save_statement_token1] = ACTIONS(4990), - [aux_sym_private_statement_token1] = ACTIONS(4990), - [aux_sym_public_statement_token1] = ACTIONS(4990), - [aux_sym_namelist_statement_token1] = ACTIONS(4990), - [aux_sym_common_statement_token1] = ACTIONS(4990), - [aux_sym_import_statement_token1] = ACTIONS(4990), - [aux_sym_derived_type_definition_token1] = ACTIONS(4990), - [aux_sym_abstract_specifier_token1] = ACTIONS(4990), - [aux_sym_procedure_attribute_token6] = ACTIONS(4990), - [aux_sym_variable_attributes_token1] = ACTIONS(4990), - [aux_sym_variable_attributes_token2] = ACTIONS(4990), - [aux_sym_variable_attributes_token3] = ACTIONS(4990), - [aux_sym_variable_attributes_token4] = ACTIONS(4990), - [aux_sym_variable_attributes_token5] = ACTIONS(4990), - [aux_sym__intrinsic_type_token1] = ACTIONS(4990), - [aux_sym__intrinsic_type_token2] = ACTIONS(4990), - [aux_sym__intrinsic_type_token3] = ACTIONS(4990), - [aux_sym__intrinsic_type_token4] = ACTIONS(4990), - [aux_sym__intrinsic_type_token6] = ACTIONS(4990), - [aux_sym__intrinsic_type_token7] = ACTIONS(4990), - [aux_sym__intrinsic_type_token8] = ACTIONS(4990), - [aux_sym__intrinsic_type_token9] = ACTIONS(4990), - [aux_sym__intrinsic_type_token10] = ACTIONS(4990), - [aux_sym_derived_type_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), - [aux_sym_type_qualifier_token1] = ACTIONS(4990), - [aux_sym_type_qualifier_token2] = ACTIONS(4990), - [aux_sym_equivalence_statement_token1] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4992), - [aux_sym_stop_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token2] = ACTIONS(4990), - [aux_sym_subroutine_call_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token1] = ACTIONS(4990), - [aux_sym_keyword_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token3] = ACTIONS(4990), - [aux_sym_keyword_statement_token4] = ACTIONS(4990), - [aux_sym_keyword_statement_token6] = ACTIONS(4990), - [aux_sym_keyword_statement_token7] = ACTIONS(4990), - [aux_sym_include_statement_token1] = ACTIONS(4990), - [aux_sym_data_statement_token1] = ACTIONS(4990), - [aux_sym_do_loop_statement_token1] = ACTIONS(4990), - [aux_sym__inline_if_statement_token1] = ACTIONS(4990), - [aux_sym_end_if_statement_token1] = ACTIONS(4990), - [aux_sym_elseif_clause_token2] = ACTIONS(4990), - [aux_sym__inline_where_statement_token1] = ACTIONS(4990), - [aux_sym__forall_control_expression_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token1] = ACTIONS(4990), - [aux_sym_select_case_statement_token3] = ACTIONS(4990), - [aux_sym_select_type_statement_token1] = ACTIONS(4990), - [aux_sym_select_rank_statement_token2] = ACTIONS(4990), - [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_associate_statement_token1] = ACTIONS(4990), - [aux_sym_format_statement_token1] = ACTIONS(4990), - [aux_sym_print_statement_token1] = ACTIONS(4990), - [aux_sym_open_statement_token1] = ACTIONS(4990), - [aux_sym_close_statement_token1] = ACTIONS(4990), - [aux_sym_inquire_statement_token1] = ACTIONS(4990), - [aux_sym_enum_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token1] = ACTIONS(4990), - [aux_sym_file_position_statement_token2] = ACTIONS(4990), - [aux_sym_file_position_statement_token3] = ACTIONS(4990), - [aux_sym_file_position_statement_token4] = ACTIONS(4990), - [aux_sym_allocate_statement_token1] = ACTIONS(4990), - [aux_sym_entry_statement_token1] = ACTIONS(4990), - [aux_sym_logical_expression_token5] = ACTIONS(4992), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_LPAREN_SLASH] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [aux_sym_boolean_literal_token1] = ACTIONS(4992), - [aux_sym_boolean_literal_token2] = ACTIONS(4992), - [aux_sym_null_literal_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token2] = ACTIONS(4990), - [aux_sym_coarray_statement_token6] = ACTIONS(4990), - [aux_sym_coarray_statement_token8] = ACTIONS(4990), - [aux_sym_coarray_statement_token11] = ACTIONS(4990), - [aux_sym_coarray_statement_token12] = ACTIONS(4990), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), - [aux_sym_identifier_token1] = ACTIONS(4990), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4992), - [sym__float_literal] = ACTIONS(4992), - [sym__boz_literal] = ACTIONS(4992), - [sym__string_literal] = ACTIONS(4992), - [sym__string_literal_kind] = ACTIONS(4992), - }, - [1569] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_LPAREN2] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_subroutine_call_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_keyword_statement_token4] = ACTIONS(5073), - [aux_sym_keyword_statement_token6] = ACTIONS(5073), - [aux_sym_keyword_statement_token7] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym_do_loop_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym__inline_where_statement_token1] = ACTIONS(5073), - [aux_sym__forall_control_expression_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token3] = ACTIONS(5073), - [aux_sym_select_type_statement_token1] = ACTIONS(5073), - [aux_sym_select_rank_statement_token2] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_associate_statement_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_print_statement_token1] = ACTIONS(5073), - [aux_sym_open_statement_token1] = ACTIONS(5073), - [aux_sym_close_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token2] = ACTIONS(5073), - [aux_sym_file_position_statement_token3] = ACTIONS(5073), - [aux_sym_file_position_statement_token4] = ACTIONS(5073), - [aux_sym_allocate_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_logical_expression_token5] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LPAREN_SLASH] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [aux_sym_boolean_literal_token1] = ACTIONS(5075), - [aux_sym_boolean_literal_token2] = ACTIONS(5075), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - [sym__float_literal] = ACTIONS(5075), - [sym__boz_literal] = ACTIONS(5075), - [sym__string_literal] = ACTIONS(5075), - [sym__string_literal_kind] = ACTIONS(5075), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, - [1570] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_LPAREN2] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [anon_sym_SEMI] = ACTIONS(5079), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_subroutine_call_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_keyword_statement_token4] = ACTIONS(5077), - [aux_sym_keyword_statement_token6] = ACTIONS(5077), - [aux_sym_keyword_statement_token7] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym_do_loop_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym__inline_where_statement_token1] = ACTIONS(5077), - [aux_sym__forall_control_expression_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token3] = ACTIONS(5077), - [aux_sym_select_type_statement_token1] = ACTIONS(5077), - [aux_sym_select_rank_statement_token2] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_associate_statement_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_print_statement_token1] = ACTIONS(5077), - [aux_sym_open_statement_token1] = ACTIONS(5077), - [aux_sym_close_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token2] = ACTIONS(5077), - [aux_sym_file_position_statement_token3] = ACTIONS(5077), - [aux_sym_file_position_statement_token4] = ACTIONS(5077), - [aux_sym_allocate_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_logical_expression_token5] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_LPAREN_SLASH] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [aux_sym_boolean_literal_token1] = ACTIONS(5079), - [aux_sym_boolean_literal_token2] = ACTIONS(5079), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - [sym__float_literal] = ACTIONS(5079), - [sym__boz_literal] = ACTIONS(5079), - [sym__string_literal] = ACTIONS(5079), - [sym__string_literal_kind] = ACTIONS(5079), + [1529] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_subroutine_call_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_keyword_statement_token4] = ACTIONS(5014), + [aux_sym_keyword_statement_token6] = ACTIONS(5014), + [aux_sym_keyword_statement_token7] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym_do_loop_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym__inline_where_statement_token1] = ACTIONS(5014), + [aux_sym__forall_control_expression_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token3] = ACTIONS(5014), + [aux_sym_select_type_statement_token1] = ACTIONS(5014), + [aux_sym_select_rank_statement_token2] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_associate_statement_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_print_statement_token1] = ACTIONS(5014), + [aux_sym_open_statement_token1] = ACTIONS(5014), + [aux_sym_close_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token2] = ACTIONS(5014), + [aux_sym_file_position_statement_token3] = ACTIONS(5014), + [aux_sym_file_position_statement_token4] = ACTIONS(5014), + [aux_sym_allocate_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_logical_expression_token5] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LPAREN_SLASH] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [aux_sym_boolean_literal_token1] = ACTIONS(5016), + [aux_sym_boolean_literal_token2] = ACTIONS(5016), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + [sym__float_literal] = ACTIONS(5016), + [sym__boz_literal] = ACTIONS(5016), + [sym__string_literal] = ACTIONS(5016), + [sym__string_literal_kind] = ACTIONS(5016), }, - [1571] = { - [aux_sym_preproc_include_token1] = ACTIONS(5394), - [aux_sym_preproc_def_token1] = ACTIONS(5394), - [aux_sym_preproc_if_token1] = ACTIONS(5394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5394), - [sym_preproc_directive] = ACTIONS(5394), - [anon_sym_LPAREN2] = ACTIONS(5394), - [anon_sym_PLUS] = ACTIONS(5396), - [anon_sym_DASH] = ACTIONS(5396), + [1530] = { + [aux_sym_preproc_include_token1] = ACTIONS(5442), + [aux_sym_preproc_def_token1] = ACTIONS(5442), + [aux_sym_preproc_if_token1] = ACTIONS(5442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5442), + [sym_preproc_directive] = ACTIONS(5442), + [anon_sym_LPAREN2] = ACTIONS(5442), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_DASH] = ACTIONS(5444), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5394), - [aux_sym_end_program_statement_token2] = ACTIONS(5394), - [aux_sym_interface_statement_token1] = ACTIONS(5394), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5394), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5394), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5394), - [aux_sym_language_binding_token1] = ACTIONS(5394), - [aux_sym_procedure_attributes_token1] = ACTIONS(5394), - [aux_sym_procedure_attributes_token3] = ACTIONS(5394), - [aux_sym_contains_statement_token1] = ACTIONS(5394), - [aux_sym_use_statement_token1] = ACTIONS(5394), - [aux_sym_use_statement_token2] = ACTIONS(5394), - [aux_sym_implicit_statement_token1] = ACTIONS(5394), - [aux_sym_implicit_statement_token3] = ACTIONS(5394), - [aux_sym_implicit_statement_token4] = ACTIONS(5394), - [aux_sym_save_statement_token1] = ACTIONS(5394), - [aux_sym_private_statement_token1] = ACTIONS(5394), - [aux_sym_public_statement_token1] = ACTIONS(5394), - [aux_sym_namelist_statement_token1] = ACTIONS(5394), - [aux_sym_common_statement_token1] = ACTIONS(5394), - [aux_sym_import_statement_token1] = ACTIONS(5394), - [aux_sym_derived_type_definition_token1] = ACTIONS(5394), - [aux_sym_abstract_specifier_token1] = ACTIONS(5394), - [aux_sym_procedure_attribute_token6] = ACTIONS(5394), - [aux_sym_variable_attributes_token1] = ACTIONS(5394), - [aux_sym_variable_attributes_token2] = ACTIONS(5394), - [aux_sym_variable_attributes_token3] = ACTIONS(5394), - [aux_sym_variable_attributes_token4] = ACTIONS(5394), - [aux_sym_variable_attributes_token5] = ACTIONS(5394), - [aux_sym__intrinsic_type_token1] = ACTIONS(5394), - [aux_sym__intrinsic_type_token2] = ACTIONS(5394), - [aux_sym__intrinsic_type_token3] = ACTIONS(5394), - [aux_sym__intrinsic_type_token4] = ACTIONS(5394), - [aux_sym__intrinsic_type_token6] = ACTIONS(5394), - [aux_sym__intrinsic_type_token7] = ACTIONS(5394), - [aux_sym__intrinsic_type_token8] = ACTIONS(5394), - [aux_sym__intrinsic_type_token9] = ACTIONS(5394), - [aux_sym__intrinsic_type_token10] = ACTIONS(5394), - [aux_sym_derived_type_token1] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5394), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5394), - [aux_sym_type_qualifier_token1] = ACTIONS(5394), - [aux_sym_type_qualifier_token2] = ACTIONS(5394), - [aux_sym_equivalence_statement_token1] = ACTIONS(5394), - [anon_sym_SEMI] = ACTIONS(5396), - [aux_sym_stop_statement_token1] = ACTIONS(5394), - [aux_sym_stop_statement_token2] = ACTIONS(5394), - [aux_sym_subroutine_call_token1] = ACTIONS(5394), - [aux_sym_keyword_statement_token1] = ACTIONS(5394), - [aux_sym_keyword_statement_token2] = ACTIONS(5394), - [aux_sym_keyword_statement_token3] = ACTIONS(5394), - [aux_sym_keyword_statement_token4] = ACTIONS(5394), - [aux_sym_keyword_statement_token6] = ACTIONS(5394), - [aux_sym_keyword_statement_token7] = ACTIONS(5394), - [aux_sym_include_statement_token1] = ACTIONS(5394), - [aux_sym_data_statement_token1] = ACTIONS(5394), - [aux_sym_do_loop_statement_token1] = ACTIONS(5394), - [aux_sym__inline_if_statement_token1] = ACTIONS(5394), - [aux_sym_end_if_statement_token1] = ACTIONS(5394), - [aux_sym_elseif_clause_token2] = ACTIONS(5394), - [aux_sym__inline_where_statement_token1] = ACTIONS(5394), - [aux_sym__forall_control_expression_token1] = ACTIONS(5394), - [aux_sym_select_case_statement_token1] = ACTIONS(5394), - [aux_sym_select_case_statement_token3] = ACTIONS(5394), - [aux_sym_select_type_statement_token1] = ACTIONS(5394), - [aux_sym_select_rank_statement_token2] = ACTIONS(5394), - [aux_sym_block_construct_token1] = ACTIONS(5394), - [aux_sym_associate_statement_token1] = ACTIONS(5394), - [aux_sym_format_statement_token1] = ACTIONS(5394), - [aux_sym_print_statement_token1] = ACTIONS(5394), - [aux_sym_open_statement_token1] = ACTIONS(5394), - [aux_sym_close_statement_token1] = ACTIONS(5394), - [aux_sym_inquire_statement_token1] = ACTIONS(5394), - [aux_sym_enum_statement_token1] = ACTIONS(5394), - [aux_sym_file_position_statement_token1] = ACTIONS(5394), - [aux_sym_file_position_statement_token2] = ACTIONS(5394), - [aux_sym_file_position_statement_token3] = ACTIONS(5394), - [aux_sym_file_position_statement_token4] = ACTIONS(5394), - [aux_sym_allocate_statement_token1] = ACTIONS(5394), - [aux_sym_entry_statement_token1] = ACTIONS(5394), - [aux_sym_logical_expression_token5] = ACTIONS(5396), - [anon_sym_DOT] = ACTIONS(5394), - [anon_sym_LPAREN_SLASH] = ACTIONS(5396), - [anon_sym_LBRACK] = ACTIONS(5396), - [aux_sym_boolean_literal_token1] = ACTIONS(5396), - [aux_sym_boolean_literal_token2] = ACTIONS(5396), - [aux_sym_null_literal_token1] = ACTIONS(5394), - [aux_sym_coarray_statement_token1] = ACTIONS(5394), - [aux_sym_coarray_statement_token2] = ACTIONS(5394), - [aux_sym_coarray_statement_token6] = ACTIONS(5394), - [aux_sym_coarray_statement_token8] = ACTIONS(5394), - [aux_sym_coarray_statement_token11] = ACTIONS(5394), - [aux_sym_coarray_statement_token12] = ACTIONS(5394), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5394), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5394), - [aux_sym_identifier_token1] = ACTIONS(5394), + [aux_sym_end_program_statement_token1] = ACTIONS(5442), + [aux_sym_interface_statement_token1] = ACTIONS(5442), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5442), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5442), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5442), + [aux_sym_language_binding_token1] = ACTIONS(5442), + [aux_sym_procedure_attributes_token1] = ACTIONS(5442), + [aux_sym_procedure_attributes_token3] = ACTIONS(5442), + [aux_sym_end_function_statement_token1] = ACTIONS(5442), + [aux_sym_contains_statement_token1] = ACTIONS(5442), + [aux_sym_use_statement_token1] = ACTIONS(5442), + [aux_sym_use_statement_token2] = ACTIONS(5442), + [aux_sym_implicit_statement_token1] = ACTIONS(5442), + [aux_sym_implicit_statement_token3] = ACTIONS(5442), + [aux_sym_implicit_statement_token4] = ACTIONS(5442), + [aux_sym_save_statement_token1] = ACTIONS(5442), + [aux_sym_private_statement_token1] = ACTIONS(5442), + [aux_sym_public_statement_token1] = ACTIONS(5442), + [aux_sym_namelist_statement_token1] = ACTIONS(5442), + [aux_sym_common_statement_token1] = ACTIONS(5442), + [aux_sym_import_statement_token1] = ACTIONS(5442), + [aux_sym_derived_type_definition_token1] = ACTIONS(5442), + [aux_sym_abstract_specifier_token1] = ACTIONS(5442), + [aux_sym_procedure_attribute_token6] = ACTIONS(5442), + [aux_sym_variable_attributes_token1] = ACTIONS(5442), + [aux_sym_variable_attributes_token2] = ACTIONS(5442), + [aux_sym_variable_attributes_token3] = ACTIONS(5442), + [aux_sym_variable_attributes_token4] = ACTIONS(5442), + [aux_sym_variable_attributes_token5] = ACTIONS(5442), + [aux_sym__intrinsic_type_token1] = ACTIONS(5442), + [aux_sym__intrinsic_type_token2] = ACTIONS(5442), + [aux_sym__intrinsic_type_token3] = ACTIONS(5442), + [aux_sym__intrinsic_type_token4] = ACTIONS(5442), + [aux_sym__intrinsic_type_token6] = ACTIONS(5442), + [aux_sym__intrinsic_type_token7] = ACTIONS(5442), + [aux_sym__intrinsic_type_token8] = ACTIONS(5442), + [aux_sym__intrinsic_type_token9] = ACTIONS(5442), + [aux_sym__intrinsic_type_token10] = ACTIONS(5442), + [aux_sym_derived_type_token1] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5442), + [aux_sym_type_qualifier_token1] = ACTIONS(5442), + [aux_sym_type_qualifier_token2] = ACTIONS(5442), + [aux_sym_equivalence_statement_token1] = ACTIONS(5442), + [anon_sym_SEMI] = ACTIONS(5444), + [aux_sym_stop_statement_token1] = ACTIONS(5442), + [aux_sym_stop_statement_token2] = ACTIONS(5442), + [aux_sym_subroutine_call_token1] = ACTIONS(5442), + [aux_sym_keyword_statement_token1] = ACTIONS(5442), + [aux_sym_keyword_statement_token2] = ACTIONS(5442), + [aux_sym_keyword_statement_token3] = ACTIONS(5442), + [aux_sym_keyword_statement_token4] = ACTIONS(5442), + [aux_sym_keyword_statement_token6] = ACTIONS(5442), + [aux_sym_keyword_statement_token7] = ACTIONS(5442), + [aux_sym_include_statement_token1] = ACTIONS(5442), + [aux_sym_data_statement_token1] = ACTIONS(5442), + [aux_sym_do_loop_statement_token1] = ACTIONS(5442), + [aux_sym__inline_if_statement_token1] = ACTIONS(5442), + [aux_sym_end_if_statement_token1] = ACTIONS(5442), + [aux_sym_elseif_clause_token2] = ACTIONS(5442), + [aux_sym__inline_where_statement_token1] = ACTIONS(5442), + [aux_sym__forall_control_expression_token1] = ACTIONS(5442), + [aux_sym_select_case_statement_token1] = ACTIONS(5442), + [aux_sym_select_case_statement_token3] = ACTIONS(5442), + [aux_sym_select_type_statement_token1] = ACTIONS(5442), + [aux_sym_select_rank_statement_token2] = ACTIONS(5442), + [aux_sym_block_construct_token1] = ACTIONS(5442), + [aux_sym_associate_statement_token1] = ACTIONS(5442), + [aux_sym_format_statement_token1] = ACTIONS(5442), + [aux_sym_print_statement_token1] = ACTIONS(5442), + [aux_sym_open_statement_token1] = ACTIONS(5442), + [aux_sym_close_statement_token1] = ACTIONS(5442), + [aux_sym_inquire_statement_token1] = ACTIONS(5442), + [aux_sym_enum_statement_token1] = ACTIONS(5442), + [aux_sym_file_position_statement_token1] = ACTIONS(5442), + [aux_sym_file_position_statement_token2] = ACTIONS(5442), + [aux_sym_file_position_statement_token3] = ACTIONS(5442), + [aux_sym_file_position_statement_token4] = ACTIONS(5442), + [aux_sym_allocate_statement_token1] = ACTIONS(5442), + [aux_sym_entry_statement_token1] = ACTIONS(5442), + [aux_sym_logical_expression_token5] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5442), + [anon_sym_LPAREN_SLASH] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5444), + [aux_sym_boolean_literal_token1] = ACTIONS(5444), + [aux_sym_boolean_literal_token2] = ACTIONS(5444), + [aux_sym_null_literal_token1] = ACTIONS(5442), + [aux_sym_coarray_statement_token1] = ACTIONS(5442), + [aux_sym_coarray_statement_token2] = ACTIONS(5442), + [aux_sym_coarray_statement_token6] = ACTIONS(5442), + [aux_sym_coarray_statement_token8] = ACTIONS(5442), + [aux_sym_coarray_statement_token11] = ACTIONS(5442), + [aux_sym_coarray_statement_token12] = ACTIONS(5442), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5442), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5442), + [aux_sym_identifier_token1] = ACTIONS(5442), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5396), - [sym__float_literal] = ACTIONS(5396), - [sym__boz_literal] = ACTIONS(5396), - [sym__string_literal] = ACTIONS(5396), - [sym__string_literal_kind] = ACTIONS(5396), + [sym__integer_literal] = ACTIONS(5444), + [sym__float_literal] = ACTIONS(5444), + [sym__boz_literal] = ACTIONS(5444), + [sym__string_literal] = ACTIONS(5444), + [sym__string_literal_kind] = ACTIONS(5444), }, - [1572] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [1531] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token2] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_subroutine_call_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_keyword_statement_token4] = ACTIONS(5067), + [aux_sym_keyword_statement_token6] = ACTIONS(5067), + [aux_sym_keyword_statement_token7] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym_do_loop_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym__inline_where_statement_token1] = ACTIONS(5067), + [aux_sym__forall_control_expression_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token3] = ACTIONS(5067), + [aux_sym_select_type_statement_token1] = ACTIONS(5067), + [aux_sym_select_rank_statement_token2] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_associate_statement_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_print_statement_token1] = ACTIONS(5067), + [aux_sym_open_statement_token1] = ACTIONS(5067), + [aux_sym_close_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token2] = ACTIONS(5067), + [aux_sym_file_position_statement_token3] = ACTIONS(5067), + [aux_sym_file_position_statement_token4] = ACTIONS(5067), + [aux_sym_allocate_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_logical_expression_token5] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LPAREN_SLASH] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [aux_sym_boolean_literal_token1] = ACTIONS(5069), + [aux_sym_boolean_literal_token2] = ACTIONS(5069), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + [sym__float_literal] = ACTIONS(5069), + [sym__boz_literal] = ACTIONS(5069), + [sym__string_literal] = ACTIONS(5069), + [sym__string_literal_kind] = ACTIONS(5069), + }, + [1532] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_end_function_statement_token1] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [1573] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [1533] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_end_function_statement_token1] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_end_program_statement_token2] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_subroutine_call_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_keyword_statement_token4] = ACTIONS(4387), + [aux_sym_keyword_statement_token6] = ACTIONS(4387), + [aux_sym_keyword_statement_token7] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym_do_loop_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym__inline_where_statement_token1] = ACTIONS(4387), + [aux_sym__forall_control_expression_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token3] = ACTIONS(4387), + [aux_sym_select_type_statement_token1] = ACTIONS(4387), + [aux_sym_select_rank_statement_token2] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_associate_statement_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_print_statement_token1] = ACTIONS(4387), + [aux_sym_open_statement_token1] = ACTIONS(4387), + [aux_sym_close_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token2] = ACTIONS(4387), + [aux_sym_file_position_statement_token3] = ACTIONS(4387), + [aux_sym_file_position_statement_token4] = ACTIONS(4387), + [aux_sym_allocate_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_logical_expression_token5] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LPAREN_SLASH] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [aux_sym_boolean_literal_token1] = ACTIONS(4389), + [aux_sym_boolean_literal_token2] = ACTIONS(4389), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), - }, - [1574] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token2] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_LPAREN2] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [anon_sym_SEMI] = ACTIONS(5055), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_subroutine_call_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_keyword_statement_token4] = ACTIONS(5053), - [aux_sym_keyword_statement_token6] = ACTIONS(5053), - [aux_sym_keyword_statement_token7] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym_do_loop_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym__inline_where_statement_token1] = ACTIONS(5053), - [aux_sym__forall_control_expression_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token3] = ACTIONS(5053), - [aux_sym_select_type_statement_token1] = ACTIONS(5053), - [aux_sym_select_rank_statement_token2] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_associate_statement_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_print_statement_token1] = ACTIONS(5053), - [aux_sym_open_statement_token1] = ACTIONS(5053), - [aux_sym_close_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token2] = ACTIONS(5053), - [aux_sym_file_position_statement_token3] = ACTIONS(5053), - [aux_sym_file_position_statement_token4] = ACTIONS(5053), - [aux_sym_allocate_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_logical_expression_token5] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_LPAREN_SLASH] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [aux_sym_boolean_literal_token1] = ACTIONS(5055), - [aux_sym_boolean_literal_token2] = ACTIONS(5055), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - [sym__float_literal] = ACTIONS(5055), - [sym__boz_literal] = ACTIONS(5055), - [sym__string_literal] = ACTIONS(5055), - [sym__string_literal_kind] = ACTIONS(5055), + [sym__integer_literal] = ACTIONS(4389), + [sym__float_literal] = ACTIONS(4389), + [sym__boz_literal] = ACTIONS(4389), + [sym__string_literal] = ACTIONS(4389), + [sym__string_literal_kind] = ACTIONS(4389), }, - [1575] = { + [1534] = { [aux_sym_preproc_include_token1] = ACTIONS(4972), [aux_sym_preproc_def_token1] = ACTIONS(4972), [aux_sym_preproc_if_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token2] = ACTIONS(4972), [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), [sym_preproc_directive] = ACTIONS(4972), @@ -298809,6 +293683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4972), [aux_sym_language_binding_token1] = ACTIONS(4972), [aux_sym_procedure_attributes_token1] = ACTIONS(4972), [aux_sym_procedure_attributes_token3] = ACTIONS(4972), @@ -298917,1760 +293792,1886 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4974), [sym__string_literal_kind] = ACTIONS(4974), }, - [1576] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_LPAREN2] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_subroutine_call_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_keyword_statement_token4] = ACTIONS(5021), - [aux_sym_keyword_statement_token6] = ACTIONS(5021), - [aux_sym_keyword_statement_token7] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym_do_loop_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym__inline_where_statement_token1] = ACTIONS(5021), - [aux_sym__forall_control_expression_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token3] = ACTIONS(5021), - [aux_sym_select_type_statement_token1] = ACTIONS(5021), - [aux_sym_select_rank_statement_token2] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_associate_statement_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_print_statement_token1] = ACTIONS(5021), - [aux_sym_open_statement_token1] = ACTIONS(5021), - [aux_sym_close_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token2] = ACTIONS(5021), - [aux_sym_file_position_statement_token3] = ACTIONS(5021), - [aux_sym_file_position_statement_token4] = ACTIONS(5021), - [aux_sym_allocate_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_logical_expression_token5] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_LPAREN_SLASH] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [aux_sym_boolean_literal_token1] = ACTIONS(5023), - [aux_sym_boolean_literal_token2] = ACTIONS(5023), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - [sym__float_literal] = ACTIONS(5023), - [sym__boz_literal] = ACTIONS(5023), - [sym__string_literal] = ACTIONS(5023), - [sym__string_literal_kind] = ACTIONS(5023), + [1535] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_end_function_statement_token1] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_subroutine_call_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_keyword_statement_token4] = ACTIONS(5026), + [aux_sym_keyword_statement_token6] = ACTIONS(5026), + [aux_sym_keyword_statement_token7] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym_do_loop_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym__inline_where_statement_token1] = ACTIONS(5026), + [aux_sym__forall_control_expression_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token3] = ACTIONS(5026), + [aux_sym_select_type_statement_token1] = ACTIONS(5026), + [aux_sym_select_rank_statement_token2] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_associate_statement_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_print_statement_token1] = ACTIONS(5026), + [aux_sym_open_statement_token1] = ACTIONS(5026), + [aux_sym_close_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token2] = ACTIONS(5026), + [aux_sym_file_position_statement_token3] = ACTIONS(5026), + [aux_sym_file_position_statement_token4] = ACTIONS(5026), + [aux_sym_allocate_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_logical_expression_token5] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_LPAREN_SLASH] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [aux_sym_boolean_literal_token1] = ACTIONS(5028), + [aux_sym_boolean_literal_token2] = ACTIONS(5028), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + [sym__float_literal] = ACTIONS(5028), + [sym__boz_literal] = ACTIONS(5028), + [sym__string_literal] = ACTIONS(5028), + [sym__string_literal_kind] = ACTIONS(5028), }, - [1577] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_subroutine_call_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_keyword_statement_token4] = ACTIONS(5025), - [aux_sym_keyword_statement_token6] = ACTIONS(5025), - [aux_sym_keyword_statement_token7] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym_do_loop_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym__inline_where_statement_token1] = ACTIONS(5025), - [aux_sym__forall_control_expression_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token3] = ACTIONS(5025), - [aux_sym_select_type_statement_token1] = ACTIONS(5025), - [aux_sym_select_rank_statement_token2] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_associate_statement_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_print_statement_token1] = ACTIONS(5025), - [aux_sym_open_statement_token1] = ACTIONS(5025), - [aux_sym_close_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token2] = ACTIONS(5025), - [aux_sym_file_position_statement_token3] = ACTIONS(5025), - [aux_sym_file_position_statement_token4] = ACTIONS(5025), - [aux_sym_allocate_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_logical_expression_token5] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_LPAREN_SLASH] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [aux_sym_boolean_literal_token1] = ACTIONS(5027), - [aux_sym_boolean_literal_token2] = ACTIONS(5027), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - [sym__float_literal] = ACTIONS(5027), - [sym__boz_literal] = ACTIONS(5027), - [sym__string_literal] = ACTIONS(5027), - [sym__string_literal_kind] = ACTIONS(5027), + [1536] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token2] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_LPAREN2] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_subroutine_call_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_keyword_statement_token4] = ACTIONS(4611), + [aux_sym_keyword_statement_token6] = ACTIONS(4611), + [aux_sym_keyword_statement_token7] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym_do_loop_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym__inline_where_statement_token1] = ACTIONS(4611), + [aux_sym__forall_control_expression_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token3] = ACTIONS(4611), + [aux_sym_select_type_statement_token1] = ACTIONS(4611), + [aux_sym_select_rank_statement_token2] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_associate_statement_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_print_statement_token1] = ACTIONS(4611), + [aux_sym_open_statement_token1] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token2] = ACTIONS(4611), + [aux_sym_file_position_statement_token3] = ACTIONS(4611), + [aux_sym_file_position_statement_token4] = ACTIONS(4611), + [aux_sym_allocate_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_logical_expression_token5] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LPAREN_SLASH] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4613), + [sym__float_literal] = ACTIONS(4613), + [sym__boz_literal] = ACTIONS(4613), + [sym__string_literal] = ACTIONS(4613), + [sym__string_literal_kind] = ACTIONS(4613), }, - [1578] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_subroutine_call_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_keyword_statement_token4] = ACTIONS(5037), - [aux_sym_keyword_statement_token6] = ACTIONS(5037), - [aux_sym_keyword_statement_token7] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym_do_loop_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym__inline_where_statement_token1] = ACTIONS(5037), - [aux_sym__forall_control_expression_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token3] = ACTIONS(5037), - [aux_sym_select_type_statement_token1] = ACTIONS(5037), - [aux_sym_select_rank_statement_token2] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_associate_statement_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_print_statement_token1] = ACTIONS(5037), - [aux_sym_open_statement_token1] = ACTIONS(5037), - [aux_sym_close_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token2] = ACTIONS(5037), - [aux_sym_file_position_statement_token3] = ACTIONS(5037), - [aux_sym_file_position_statement_token4] = ACTIONS(5037), - [aux_sym_allocate_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_logical_expression_token5] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_LPAREN_SLASH] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [aux_sym_boolean_literal_token1] = ACTIONS(5039), - [aux_sym_boolean_literal_token2] = ACTIONS(5039), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - [sym__float_literal] = ACTIONS(5039), - [sym__boz_literal] = ACTIONS(5039), - [sym__string_literal] = ACTIONS(5039), - [sym__string_literal_kind] = ACTIONS(5039), + [1537] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [1579] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_end_program_statement_token2] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), + [1538] = { + [aux_sym_preproc_include_token1] = ACTIONS(5402), + [aux_sym_preproc_def_token1] = ACTIONS(5402), + [aux_sym_preproc_if_token1] = ACTIONS(5402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5402), + [sym_preproc_directive] = ACTIONS(5402), + [anon_sym_LPAREN2] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5402), + [aux_sym_interface_statement_token1] = ACTIONS(5402), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5402), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5402), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5402), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5402), + [aux_sym_language_binding_token1] = ACTIONS(5402), + [aux_sym_procedure_attributes_token1] = ACTIONS(5402), + [aux_sym_procedure_attributes_token3] = ACTIONS(5402), + [aux_sym_contains_statement_token1] = ACTIONS(5402), + [aux_sym_use_statement_token1] = ACTIONS(5402), + [aux_sym_use_statement_token2] = ACTIONS(5402), + [aux_sym_implicit_statement_token1] = ACTIONS(5402), + [aux_sym_implicit_statement_token3] = ACTIONS(5402), + [aux_sym_implicit_statement_token4] = ACTIONS(5402), + [aux_sym_save_statement_token1] = ACTIONS(5402), + [aux_sym_private_statement_token1] = ACTIONS(5402), + [aux_sym_public_statement_token1] = ACTIONS(5402), + [aux_sym_namelist_statement_token1] = ACTIONS(5402), + [aux_sym_common_statement_token1] = ACTIONS(5402), + [aux_sym_import_statement_token1] = ACTIONS(5402), + [aux_sym_derived_type_definition_token1] = ACTIONS(5402), + [aux_sym_abstract_specifier_token1] = ACTIONS(5402), + [aux_sym_procedure_attribute_token6] = ACTIONS(5402), + [aux_sym_variable_attributes_token1] = ACTIONS(5402), + [aux_sym_variable_attributes_token2] = ACTIONS(5402), + [aux_sym_variable_attributes_token3] = ACTIONS(5402), + [aux_sym_variable_attributes_token4] = ACTIONS(5402), + [aux_sym_variable_attributes_token5] = ACTIONS(5402), + [aux_sym__intrinsic_type_token1] = ACTIONS(5402), + [aux_sym__intrinsic_type_token2] = ACTIONS(5402), + [aux_sym__intrinsic_type_token3] = ACTIONS(5402), + [aux_sym__intrinsic_type_token4] = ACTIONS(5402), + [aux_sym__intrinsic_type_token6] = ACTIONS(5402), + [aux_sym__intrinsic_type_token7] = ACTIONS(5402), + [aux_sym__intrinsic_type_token8] = ACTIONS(5402), + [aux_sym__intrinsic_type_token9] = ACTIONS(5402), + [aux_sym__intrinsic_type_token10] = ACTIONS(5402), + [aux_sym_derived_type_token1] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5402), + [aux_sym_type_qualifier_token1] = ACTIONS(5402), + [aux_sym_type_qualifier_token2] = ACTIONS(5402), + [aux_sym_equivalence_statement_token1] = ACTIONS(5402), + [anon_sym_SEMI] = ACTIONS(5404), + [aux_sym_stop_statement_token1] = ACTIONS(5402), + [aux_sym_stop_statement_token2] = ACTIONS(5402), + [aux_sym_subroutine_call_token1] = ACTIONS(5402), + [aux_sym_keyword_statement_token1] = ACTIONS(5402), + [aux_sym_keyword_statement_token2] = ACTIONS(5402), + [aux_sym_keyword_statement_token3] = ACTIONS(5402), + [aux_sym_keyword_statement_token4] = ACTIONS(5402), + [aux_sym_keyword_statement_token6] = ACTIONS(5402), + [aux_sym_keyword_statement_token7] = ACTIONS(5402), + [aux_sym_include_statement_token1] = ACTIONS(5402), + [aux_sym_data_statement_token1] = ACTIONS(5402), + [aux_sym_do_loop_statement_token1] = ACTIONS(5402), + [aux_sym__inline_if_statement_token1] = ACTIONS(5402), + [aux_sym_end_if_statement_token1] = ACTIONS(5402), + [aux_sym_elseif_clause_token2] = ACTIONS(5402), + [aux_sym__inline_where_statement_token1] = ACTIONS(5402), + [aux_sym__forall_control_expression_token1] = ACTIONS(5402), + [aux_sym_select_case_statement_token1] = ACTIONS(5402), + [aux_sym_select_case_statement_token3] = ACTIONS(5402), + [aux_sym_select_type_statement_token1] = ACTIONS(5402), + [aux_sym_select_rank_statement_token2] = ACTIONS(5402), + [aux_sym_block_construct_token1] = ACTIONS(5402), + [aux_sym_associate_statement_token1] = ACTIONS(5402), + [aux_sym_format_statement_token1] = ACTIONS(5402), + [aux_sym_print_statement_token1] = ACTIONS(5402), + [aux_sym_open_statement_token1] = ACTIONS(5402), + [aux_sym_close_statement_token1] = ACTIONS(5402), + [aux_sym_inquire_statement_token1] = ACTIONS(5402), + [aux_sym_enum_statement_token1] = ACTIONS(5402), + [aux_sym_file_position_statement_token1] = ACTIONS(5402), + [aux_sym_file_position_statement_token2] = ACTIONS(5402), + [aux_sym_file_position_statement_token3] = ACTIONS(5402), + [aux_sym_file_position_statement_token4] = ACTIONS(5402), + [aux_sym_allocate_statement_token1] = ACTIONS(5402), + [aux_sym_entry_statement_token1] = ACTIONS(5402), + [aux_sym_logical_expression_token5] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_LPAREN_SLASH] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [aux_sym_boolean_literal_token1] = ACTIONS(5404), + [aux_sym_boolean_literal_token2] = ACTIONS(5404), + [aux_sym_null_literal_token1] = ACTIONS(5402), + [aux_sym_coarray_statement_token1] = ACTIONS(5402), + [aux_sym_coarray_statement_token2] = ACTIONS(5402), + [aux_sym_coarray_statement_token6] = ACTIONS(5402), + [aux_sym_coarray_statement_token8] = ACTIONS(5402), + [aux_sym_coarray_statement_token11] = ACTIONS(5402), + [aux_sym_coarray_statement_token12] = ACTIONS(5402), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5402), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5402), + [aux_sym_identifier_token1] = ACTIONS(5402), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5404), + [sym__float_literal] = ACTIONS(5404), + [sym__boz_literal] = ACTIONS(5404), + [sym__string_literal] = ACTIONS(5404), + [sym__string_literal_kind] = ACTIONS(5404), }, - [1580] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_subroutine_call_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_keyword_statement_token4] = ACTIONS(5049), - [aux_sym_keyword_statement_token6] = ACTIONS(5049), - [aux_sym_keyword_statement_token7] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym_do_loop_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym__inline_where_statement_token1] = ACTIONS(5049), - [aux_sym__forall_control_expression_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token3] = ACTIONS(5049), - [aux_sym_select_type_statement_token1] = ACTIONS(5049), - [aux_sym_select_rank_statement_token2] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_associate_statement_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_print_statement_token1] = ACTIONS(5049), - [aux_sym_open_statement_token1] = ACTIONS(5049), - [aux_sym_close_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token2] = ACTIONS(5049), - [aux_sym_file_position_statement_token3] = ACTIONS(5049), - [aux_sym_file_position_statement_token4] = ACTIONS(5049), - [aux_sym_allocate_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_logical_expression_token5] = ACTIONS(5051), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_LPAREN_SLASH] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [aux_sym_boolean_literal_token1] = ACTIONS(5051), - [aux_sym_boolean_literal_token2] = ACTIONS(5051), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - [sym__float_literal] = ACTIONS(5051), - [sym__boz_literal] = ACTIONS(5051), - [sym__string_literal] = ACTIONS(5051), - [sym__string_literal_kind] = ACTIONS(5051), + [1539] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1581] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [1540] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_LPAREN2] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_subroutine_call_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_keyword_statement_token4] = ACTIONS(5063), + [aux_sym_keyword_statement_token6] = ACTIONS(5063), + [aux_sym_keyword_statement_token7] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym_do_loop_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym__inline_where_statement_token1] = ACTIONS(5063), + [aux_sym__forall_control_expression_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token3] = ACTIONS(5063), + [aux_sym_select_type_statement_token1] = ACTIONS(5063), + [aux_sym_select_rank_statement_token2] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_associate_statement_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_print_statement_token1] = ACTIONS(5063), + [aux_sym_open_statement_token1] = ACTIONS(5063), + [aux_sym_close_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token2] = ACTIONS(5063), + [aux_sym_file_position_statement_token3] = ACTIONS(5063), + [aux_sym_file_position_statement_token4] = ACTIONS(5063), + [aux_sym_allocate_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_logical_expression_token5] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_LPAREN_SLASH] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [aux_sym_boolean_literal_token1] = ACTIONS(5065), + [aux_sym_boolean_literal_token2] = ACTIONS(5065), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + [sym__float_literal] = ACTIONS(5065), + [sym__boz_literal] = ACTIONS(5065), + [sym__string_literal] = ACTIONS(5065), + [sym__string_literal_kind] = ACTIONS(5065), + }, + [1541] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_end_function_statement_token1] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), + }, + [1542] = { + [aux_sym_preproc_include_token1] = ACTIONS(5422), + [aux_sym_preproc_def_token1] = ACTIONS(5422), + [aux_sym_preproc_if_token1] = ACTIONS(5422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5422), + [sym_preproc_directive] = ACTIONS(5422), + [anon_sym_LPAREN2] = ACTIONS(5422), + [anon_sym_PLUS] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5424), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5422), + [aux_sym_interface_statement_token1] = ACTIONS(5422), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5422), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5422), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5422), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5422), + [aux_sym_language_binding_token1] = ACTIONS(5422), + [aux_sym_procedure_attributes_token1] = ACTIONS(5422), + [aux_sym_procedure_attributes_token3] = ACTIONS(5422), + [aux_sym_contains_statement_token1] = ACTIONS(5422), + [aux_sym_use_statement_token1] = ACTIONS(5422), + [aux_sym_use_statement_token2] = ACTIONS(5422), + [aux_sym_implicit_statement_token1] = ACTIONS(5422), + [aux_sym_implicit_statement_token3] = ACTIONS(5422), + [aux_sym_implicit_statement_token4] = ACTIONS(5422), + [aux_sym_save_statement_token1] = ACTIONS(5422), + [aux_sym_private_statement_token1] = ACTIONS(5422), + [aux_sym_public_statement_token1] = ACTIONS(5422), + [aux_sym_namelist_statement_token1] = ACTIONS(5422), + [aux_sym_common_statement_token1] = ACTIONS(5422), + [aux_sym_import_statement_token1] = ACTIONS(5422), + [aux_sym_derived_type_definition_token1] = ACTIONS(5422), + [aux_sym_abstract_specifier_token1] = ACTIONS(5422), + [aux_sym_procedure_attribute_token6] = ACTIONS(5422), + [aux_sym_variable_attributes_token1] = ACTIONS(5422), + [aux_sym_variable_attributes_token2] = ACTIONS(5422), + [aux_sym_variable_attributes_token3] = ACTIONS(5422), + [aux_sym_variable_attributes_token4] = ACTIONS(5422), + [aux_sym_variable_attributes_token5] = ACTIONS(5422), + [aux_sym__intrinsic_type_token1] = ACTIONS(5422), + [aux_sym__intrinsic_type_token2] = ACTIONS(5422), + [aux_sym__intrinsic_type_token3] = ACTIONS(5422), + [aux_sym__intrinsic_type_token4] = ACTIONS(5422), + [aux_sym__intrinsic_type_token6] = ACTIONS(5422), + [aux_sym__intrinsic_type_token7] = ACTIONS(5422), + [aux_sym__intrinsic_type_token8] = ACTIONS(5422), + [aux_sym__intrinsic_type_token9] = ACTIONS(5422), + [aux_sym__intrinsic_type_token10] = ACTIONS(5422), + [aux_sym_derived_type_token1] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5422), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5422), + [aux_sym_type_qualifier_token1] = ACTIONS(5422), + [aux_sym_type_qualifier_token2] = ACTIONS(5422), + [aux_sym_equivalence_statement_token1] = ACTIONS(5422), + [anon_sym_SEMI] = ACTIONS(5424), + [aux_sym_stop_statement_token1] = ACTIONS(5422), + [aux_sym_stop_statement_token2] = ACTIONS(5422), + [aux_sym_subroutine_call_token1] = ACTIONS(5422), + [aux_sym_keyword_statement_token1] = ACTIONS(5422), + [aux_sym_keyword_statement_token2] = ACTIONS(5422), + [aux_sym_keyword_statement_token3] = ACTIONS(5422), + [aux_sym_keyword_statement_token4] = ACTIONS(5422), + [aux_sym_keyword_statement_token6] = ACTIONS(5422), + [aux_sym_keyword_statement_token7] = ACTIONS(5422), + [aux_sym_include_statement_token1] = ACTIONS(5422), + [aux_sym_data_statement_token1] = ACTIONS(5422), + [aux_sym_do_loop_statement_token1] = ACTIONS(5422), + [aux_sym__inline_if_statement_token1] = ACTIONS(5422), + [aux_sym_end_if_statement_token1] = ACTIONS(5422), + [aux_sym_elseif_clause_token2] = ACTIONS(5422), + [aux_sym__inline_where_statement_token1] = ACTIONS(5422), + [aux_sym__forall_control_expression_token1] = ACTIONS(5422), + [aux_sym_select_case_statement_token1] = ACTIONS(5422), + [aux_sym_select_case_statement_token3] = ACTIONS(5422), + [aux_sym_select_type_statement_token1] = ACTIONS(5422), + [aux_sym_select_rank_statement_token2] = ACTIONS(5422), + [aux_sym_block_construct_token1] = ACTIONS(5422), + [aux_sym_associate_statement_token1] = ACTIONS(5422), + [aux_sym_format_statement_token1] = ACTIONS(5422), + [aux_sym_print_statement_token1] = ACTIONS(5422), + [aux_sym_open_statement_token1] = ACTIONS(5422), + [aux_sym_close_statement_token1] = ACTIONS(5422), + [aux_sym_inquire_statement_token1] = ACTIONS(5422), + [aux_sym_enum_statement_token1] = ACTIONS(5422), + [aux_sym_file_position_statement_token1] = ACTIONS(5422), + [aux_sym_file_position_statement_token2] = ACTIONS(5422), + [aux_sym_file_position_statement_token3] = ACTIONS(5422), + [aux_sym_file_position_statement_token4] = ACTIONS(5422), + [aux_sym_allocate_statement_token1] = ACTIONS(5422), + [aux_sym_entry_statement_token1] = ACTIONS(5422), + [aux_sym_logical_expression_token5] = ACTIONS(5424), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_LPAREN_SLASH] = ACTIONS(5424), + [anon_sym_LBRACK] = ACTIONS(5424), + [aux_sym_boolean_literal_token1] = ACTIONS(5424), + [aux_sym_boolean_literal_token2] = ACTIONS(5424), + [aux_sym_null_literal_token1] = ACTIONS(5422), + [aux_sym_coarray_statement_token1] = ACTIONS(5422), + [aux_sym_coarray_statement_token2] = ACTIONS(5422), + [aux_sym_coarray_statement_token6] = ACTIONS(5422), + [aux_sym_coarray_statement_token8] = ACTIONS(5422), + [aux_sym_coarray_statement_token11] = ACTIONS(5422), + [aux_sym_coarray_statement_token12] = ACTIONS(5422), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5422), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5422), + [aux_sym_identifier_token1] = ACTIONS(5422), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5424), + [sym__float_literal] = ACTIONS(5424), + [sym__boz_literal] = ACTIONS(5424), + [sym__string_literal] = ACTIONS(5424), + [sym__string_literal_kind] = ACTIONS(5424), + }, + [1543] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(4573), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), + [aux_sym_logical_expression_token5] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_LPAREN_SLASH] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4573), + [aux_sym_boolean_literal_token1] = ACTIONS(4573), + [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4573), + [sym__float_literal] = ACTIONS(4573), + [sym__boz_literal] = ACTIONS(4573), + [sym__string_literal] = ACTIONS(4573), + [sym__string_literal_kind] = ACTIONS(4573), + }, + [1544] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_LPAREN2] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_subroutine_call_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_keyword_statement_token4] = ACTIONS(5055), + [aux_sym_keyword_statement_token6] = ACTIONS(5055), + [aux_sym_keyword_statement_token7] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym_do_loop_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym__inline_where_statement_token1] = ACTIONS(5055), + [aux_sym__forall_control_expression_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token3] = ACTIONS(5055), + [aux_sym_select_type_statement_token1] = ACTIONS(5055), + [aux_sym_select_rank_statement_token2] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_associate_statement_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_print_statement_token1] = ACTIONS(5055), + [aux_sym_open_statement_token1] = ACTIONS(5055), + [aux_sym_close_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token2] = ACTIONS(5055), + [aux_sym_file_position_statement_token3] = ACTIONS(5055), + [aux_sym_file_position_statement_token4] = ACTIONS(5055), + [aux_sym_allocate_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_logical_expression_token5] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_LPAREN_SLASH] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [aux_sym_boolean_literal_token1] = ACTIONS(5057), + [aux_sym_boolean_literal_token2] = ACTIONS(5057), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + [sym__float_literal] = ACTIONS(5057), + [sym__boz_literal] = ACTIONS(5057), + [sym__string_literal] = ACTIONS(5057), + [sym__string_literal_kind] = ACTIONS(5057), + }, + [1545] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token2] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_subroutine_call_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_keyword_statement_token4] = ACTIONS(4615), + [aux_sym_keyword_statement_token6] = ACTIONS(4615), + [aux_sym_keyword_statement_token7] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym_do_loop_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym__inline_where_statement_token1] = ACTIONS(4615), + [aux_sym__forall_control_expression_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token3] = ACTIONS(4615), + [aux_sym_select_type_statement_token1] = ACTIONS(4615), + [aux_sym_select_rank_statement_token2] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_associate_statement_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_print_statement_token1] = ACTIONS(4615), + [aux_sym_open_statement_token1] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token2] = ACTIONS(4615), + [aux_sym_file_position_statement_token3] = ACTIONS(4615), + [aux_sym_file_position_statement_token4] = ACTIONS(4615), + [aux_sym_allocate_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_logical_expression_token5] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LPAREN_SLASH] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(4617), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [1582] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token2] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_subroutine_call_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_keyword_statement_token4] = ACTIONS(5065), - [aux_sym_keyword_statement_token6] = ACTIONS(5065), - [aux_sym_keyword_statement_token7] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym_do_loop_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym__inline_where_statement_token1] = ACTIONS(5065), - [aux_sym__forall_control_expression_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token3] = ACTIONS(5065), - [aux_sym_select_type_statement_token1] = ACTIONS(5065), - [aux_sym_select_rank_statement_token2] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_associate_statement_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_print_statement_token1] = ACTIONS(5065), - [aux_sym_open_statement_token1] = ACTIONS(5065), - [aux_sym_close_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token2] = ACTIONS(5065), - [aux_sym_file_position_statement_token3] = ACTIONS(5065), - [aux_sym_file_position_statement_token4] = ACTIONS(5065), - [aux_sym_allocate_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_logical_expression_token5] = ACTIONS(5067), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_LPAREN_SLASH] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [aux_sym_boolean_literal_token1] = ACTIONS(5067), - [aux_sym_boolean_literal_token2] = ACTIONS(5067), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - [sym__float_literal] = ACTIONS(5067), - [sym__boz_literal] = ACTIONS(5067), - [sym__string_literal] = ACTIONS(5067), - [sym__string_literal_kind] = ACTIONS(5067), - }, - [1583] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token2] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_LPAREN2] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_subroutine_call_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_keyword_statement_token4] = ACTIONS(5069), - [aux_sym_keyword_statement_token6] = ACTIONS(5069), - [aux_sym_keyword_statement_token7] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym_do_loop_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym__inline_where_statement_token1] = ACTIONS(5069), - [aux_sym__forall_control_expression_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token3] = ACTIONS(5069), - [aux_sym_select_type_statement_token1] = ACTIONS(5069), - [aux_sym_select_rank_statement_token2] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_associate_statement_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_print_statement_token1] = ACTIONS(5069), - [aux_sym_open_statement_token1] = ACTIONS(5069), - [aux_sym_close_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token2] = ACTIONS(5069), - [aux_sym_file_position_statement_token3] = ACTIONS(5069), - [aux_sym_file_position_statement_token4] = ACTIONS(5069), - [aux_sym_allocate_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_logical_expression_token5] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LPAREN_SLASH] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [aux_sym_boolean_literal_token1] = ACTIONS(5071), - [aux_sym_boolean_literal_token2] = ACTIONS(5071), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - [sym__float_literal] = ACTIONS(5071), - [sym__boz_literal] = ACTIONS(5071), - [sym__string_literal] = ACTIONS(5071), - [sym__string_literal_kind] = ACTIONS(5071), - }, - [1584] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_LPAREN2] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_subroutine_call_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_keyword_statement_token4] = ACTIONS(5061), - [aux_sym_keyword_statement_token6] = ACTIONS(5061), - [aux_sym_keyword_statement_token7] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym_do_loop_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym__inline_where_statement_token1] = ACTIONS(5061), - [aux_sym__forall_control_expression_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token3] = ACTIONS(5061), - [aux_sym_select_type_statement_token1] = ACTIONS(5061), - [aux_sym_select_rank_statement_token2] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_associate_statement_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_print_statement_token1] = ACTIONS(5061), - [aux_sym_open_statement_token1] = ACTIONS(5061), - [aux_sym_close_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token2] = ACTIONS(5061), - [aux_sym_file_position_statement_token3] = ACTIONS(5061), - [aux_sym_file_position_statement_token4] = ACTIONS(5061), - [aux_sym_allocate_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_logical_expression_token5] = ACTIONS(5063), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LPAREN_SLASH] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [aux_sym_boolean_literal_token1] = ACTIONS(5063), - [aux_sym_boolean_literal_token2] = ACTIONS(5063), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - [sym__float_literal] = ACTIONS(5063), - [sym__boz_literal] = ACTIONS(5063), - [sym__string_literal] = ACTIONS(5063), - [sym__string_literal_kind] = ACTIONS(5063), - }, - [1585] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), + [sym__integer_literal] = ACTIONS(4617), + [sym__float_literal] = ACTIONS(4617), + [sym__boz_literal] = ACTIONS(4617), + [sym__string_literal] = ACTIONS(4617), + [sym__string_literal_kind] = ACTIONS(4617), }, - [1586] = { - [aux_sym_preproc_include_token1] = ACTIONS(5406), - [aux_sym_preproc_def_token1] = ACTIONS(5406), - [aux_sym_preproc_if_token1] = ACTIONS(5406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5406), - [sym_preproc_directive] = ACTIONS(5406), - [anon_sym_LPAREN2] = ACTIONS(5406), - [anon_sym_PLUS] = ACTIONS(5408), - [anon_sym_DASH] = ACTIONS(5408), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5406), - [aux_sym_interface_statement_token1] = ACTIONS(5406), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5406), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5406), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5406), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5406), - [aux_sym_language_binding_token1] = ACTIONS(5406), - [aux_sym_procedure_attributes_token1] = ACTIONS(5406), - [aux_sym_procedure_attributes_token3] = ACTIONS(5406), - [aux_sym_contains_statement_token1] = ACTIONS(5406), - [aux_sym_use_statement_token1] = ACTIONS(5406), - [aux_sym_use_statement_token2] = ACTIONS(5406), - [aux_sym_implicit_statement_token1] = ACTIONS(5406), - [aux_sym_implicit_statement_token3] = ACTIONS(5406), - [aux_sym_implicit_statement_token4] = ACTIONS(5406), - [aux_sym_save_statement_token1] = ACTIONS(5406), - [aux_sym_private_statement_token1] = ACTIONS(5406), - [aux_sym_public_statement_token1] = ACTIONS(5406), - [aux_sym_namelist_statement_token1] = ACTIONS(5406), - [aux_sym_common_statement_token1] = ACTIONS(5406), - [aux_sym_import_statement_token1] = ACTIONS(5406), - [aux_sym_derived_type_definition_token1] = ACTIONS(5406), - [aux_sym_abstract_specifier_token1] = ACTIONS(5406), - [aux_sym_procedure_attribute_token6] = ACTIONS(5406), - [aux_sym_variable_attributes_token1] = ACTIONS(5406), - [aux_sym_variable_attributes_token2] = ACTIONS(5406), - [aux_sym_variable_attributes_token3] = ACTIONS(5406), - [aux_sym_variable_attributes_token4] = ACTIONS(5406), - [aux_sym_variable_attributes_token5] = ACTIONS(5406), - [aux_sym__intrinsic_type_token1] = ACTIONS(5406), - [aux_sym__intrinsic_type_token2] = ACTIONS(5406), - [aux_sym__intrinsic_type_token3] = ACTIONS(5406), - [aux_sym__intrinsic_type_token4] = ACTIONS(5406), - [aux_sym__intrinsic_type_token6] = ACTIONS(5406), - [aux_sym__intrinsic_type_token7] = ACTIONS(5406), - [aux_sym__intrinsic_type_token8] = ACTIONS(5406), - [aux_sym__intrinsic_type_token9] = ACTIONS(5406), - [aux_sym__intrinsic_type_token10] = ACTIONS(5406), - [aux_sym_derived_type_token1] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5406), - [aux_sym_type_qualifier_token1] = ACTIONS(5406), - [aux_sym_type_qualifier_token2] = ACTIONS(5406), - [aux_sym_equivalence_statement_token1] = ACTIONS(5406), - [anon_sym_SEMI] = ACTIONS(5408), - [aux_sym_stop_statement_token1] = ACTIONS(5406), - [aux_sym_stop_statement_token2] = ACTIONS(5406), - [aux_sym_subroutine_call_token1] = ACTIONS(5406), - [aux_sym_keyword_statement_token1] = ACTIONS(5406), - [aux_sym_keyword_statement_token2] = ACTIONS(5406), - [aux_sym_keyword_statement_token3] = ACTIONS(5406), - [aux_sym_keyword_statement_token4] = ACTIONS(5406), - [aux_sym_keyword_statement_token6] = ACTIONS(5406), - [aux_sym_keyword_statement_token7] = ACTIONS(5406), - [aux_sym_include_statement_token1] = ACTIONS(5406), - [aux_sym_data_statement_token1] = ACTIONS(5406), - [aux_sym_do_loop_statement_token1] = ACTIONS(5406), - [aux_sym__inline_if_statement_token1] = ACTIONS(5406), - [aux_sym_end_if_statement_token1] = ACTIONS(5406), - [aux_sym_elseif_clause_token2] = ACTIONS(5406), - [aux_sym__inline_where_statement_token1] = ACTIONS(5406), - [aux_sym__forall_control_expression_token1] = ACTIONS(5406), - [aux_sym_select_case_statement_token1] = ACTIONS(5406), - [aux_sym_select_case_statement_token3] = ACTIONS(5406), - [aux_sym_select_type_statement_token1] = ACTIONS(5406), - [aux_sym_select_rank_statement_token2] = ACTIONS(5406), - [aux_sym_block_construct_token1] = ACTIONS(5406), - [aux_sym_associate_statement_token1] = ACTIONS(5406), - [aux_sym_format_statement_token1] = ACTIONS(5406), - [aux_sym_print_statement_token1] = ACTIONS(5406), - [aux_sym_open_statement_token1] = ACTIONS(5406), - [aux_sym_close_statement_token1] = ACTIONS(5406), - [aux_sym_inquire_statement_token1] = ACTIONS(5406), - [aux_sym_enum_statement_token1] = ACTIONS(5406), - [aux_sym_file_position_statement_token1] = ACTIONS(5406), - [aux_sym_file_position_statement_token2] = ACTIONS(5406), - [aux_sym_file_position_statement_token3] = ACTIONS(5406), - [aux_sym_file_position_statement_token4] = ACTIONS(5406), - [aux_sym_allocate_statement_token1] = ACTIONS(5406), - [aux_sym_entry_statement_token1] = ACTIONS(5406), - [aux_sym_logical_expression_token5] = ACTIONS(5408), - [anon_sym_DOT] = ACTIONS(5406), - [anon_sym_LPAREN_SLASH] = ACTIONS(5408), - [anon_sym_LBRACK] = ACTIONS(5408), - [aux_sym_boolean_literal_token1] = ACTIONS(5408), - [aux_sym_boolean_literal_token2] = ACTIONS(5408), - [aux_sym_null_literal_token1] = ACTIONS(5406), - [aux_sym_coarray_statement_token1] = ACTIONS(5406), - [aux_sym_coarray_statement_token2] = ACTIONS(5406), - [aux_sym_coarray_statement_token6] = ACTIONS(5406), - [aux_sym_coarray_statement_token8] = ACTIONS(5406), - [aux_sym_coarray_statement_token11] = ACTIONS(5406), - [aux_sym_coarray_statement_token12] = ACTIONS(5406), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5406), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5406), - [aux_sym_identifier_token1] = ACTIONS(5406), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5408), - [sym__float_literal] = ACTIONS(5408), - [sym__boz_literal] = ACTIONS(5408), - [sym__string_literal] = ACTIONS(5408), - [sym__string_literal_kind] = ACTIONS(5408), + [1546] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_end_program_statement_token2] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, - [1587] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), + [1547] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_subroutine_call_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_keyword_statement_token4] = ACTIONS(4982), + [aux_sym_keyword_statement_token6] = ACTIONS(4982), + [aux_sym_keyword_statement_token7] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym_do_loop_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym__inline_where_statement_token1] = ACTIONS(4982), + [aux_sym__forall_control_expression_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token3] = ACTIONS(4982), + [aux_sym_select_type_statement_token1] = ACTIONS(4982), + [aux_sym_select_rank_statement_token2] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_associate_statement_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_print_statement_token1] = ACTIONS(4982), + [aux_sym_open_statement_token1] = ACTIONS(4982), + [aux_sym_close_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token2] = ACTIONS(4982), + [aux_sym_file_position_statement_token3] = ACTIONS(4982), + [aux_sym_file_position_statement_token4] = ACTIONS(4982), + [aux_sym_allocate_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_logical_expression_token5] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_LPAREN_SLASH] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [aux_sym_boolean_literal_token1] = ACTIONS(4984), + [aux_sym_boolean_literal_token2] = ACTIONS(4984), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + [sym__float_literal] = ACTIONS(4984), + [sym__boz_literal] = ACTIONS(4984), + [sym__string_literal] = ACTIONS(4984), + [sym__string_literal_kind] = ACTIONS(4984), }, - [1588] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), + [1548] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_subroutine_call_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_keyword_statement_token4] = ACTIONS(4487), - [aux_sym_keyword_statement_token6] = ACTIONS(4487), - [aux_sym_keyword_statement_token7] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym_do_loop_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym__inline_where_statement_token1] = ACTIONS(4487), - [aux_sym__forall_control_expression_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token3] = ACTIONS(4487), - [aux_sym_select_type_statement_token1] = ACTIONS(4487), - [aux_sym_select_rank_statement_token2] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_associate_statement_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_print_statement_token1] = ACTIONS(4487), - [aux_sym_open_statement_token1] = ACTIONS(4487), - [aux_sym_close_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token2] = ACTIONS(4487), - [aux_sym_file_position_statement_token3] = ACTIONS(4487), - [aux_sym_file_position_statement_token4] = ACTIONS(4487), - [aux_sym_allocate_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_logical_expression_token5] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_LPAREN_SLASH] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [aux_sym_boolean_literal_token1] = ACTIONS(4489), - [aux_sym_boolean_literal_token2] = ACTIONS(4489), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_subroutine_call_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_keyword_statement_token4] = ACTIONS(4379), + [aux_sym_keyword_statement_token6] = ACTIONS(4379), + [aux_sym_keyword_statement_token7] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym_do_loop_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym__inline_where_statement_token1] = ACTIONS(4379), + [aux_sym__forall_control_expression_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token3] = ACTIONS(4379), + [aux_sym_select_type_statement_token1] = ACTIONS(4379), + [aux_sym_select_rank_statement_token2] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_associate_statement_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_print_statement_token1] = ACTIONS(4379), + [aux_sym_open_statement_token1] = ACTIONS(4379), + [aux_sym_close_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token2] = ACTIONS(4379), + [aux_sym_file_position_statement_token3] = ACTIONS(4379), + [aux_sym_file_position_statement_token4] = ACTIONS(4379), + [aux_sym_allocate_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_logical_expression_token5] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LPAREN_SLASH] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [aux_sym_boolean_literal_token1] = ACTIONS(4381), + [aux_sym_boolean_literal_token2] = ACTIONS(4381), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - [sym__float_literal] = ACTIONS(4489), - [sym__boz_literal] = ACTIONS(4489), - [sym__string_literal] = ACTIONS(4489), - [sym__string_literal_kind] = ACTIONS(4489), + [sym__integer_literal] = ACTIONS(4381), + [sym__float_literal] = ACTIONS(4381), + [sym__boz_literal] = ACTIONS(4381), + [sym__string_literal] = ACTIONS(4381), + [sym__string_literal_kind] = ACTIONS(4381), }, - [1589] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_LPAREN2] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), + [1549] = { + [aux_sym_preproc_include_token1] = ACTIONS(5394), + [aux_sym_preproc_def_token1] = ACTIONS(5394), + [aux_sym_preproc_if_token1] = ACTIONS(5394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5394), + [sym_preproc_directive] = ACTIONS(5394), + [anon_sym_LPAREN2] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5396), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_subroutine_call_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_keyword_statement_token4] = ACTIONS(4619), - [aux_sym_keyword_statement_token6] = ACTIONS(4619), - [aux_sym_keyword_statement_token7] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym_do_loop_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym__inline_where_statement_token1] = ACTIONS(4619), - [aux_sym__forall_control_expression_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token3] = ACTIONS(4619), - [aux_sym_select_type_statement_token1] = ACTIONS(4619), - [aux_sym_select_rank_statement_token2] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_associate_statement_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_print_statement_token1] = ACTIONS(4619), - [aux_sym_open_statement_token1] = ACTIONS(4619), - [aux_sym_close_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token2] = ACTIONS(4619), - [aux_sym_file_position_statement_token3] = ACTIONS(4619), - [aux_sym_file_position_statement_token4] = ACTIONS(4619), - [aux_sym_allocate_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_logical_expression_token5] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_LPAREN_SLASH] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [aux_sym_boolean_literal_token1] = ACTIONS(4621), - [aux_sym_boolean_literal_token2] = ACTIONS(4621), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), + [aux_sym_end_program_statement_token1] = ACTIONS(5394), + [aux_sym_interface_statement_token1] = ACTIONS(5394), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5394), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5394), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5394), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5394), + [aux_sym_language_binding_token1] = ACTIONS(5394), + [aux_sym_procedure_attributes_token1] = ACTIONS(5394), + [aux_sym_procedure_attributes_token3] = ACTIONS(5394), + [aux_sym_contains_statement_token1] = ACTIONS(5394), + [aux_sym_use_statement_token1] = ACTIONS(5394), + [aux_sym_use_statement_token2] = ACTIONS(5394), + [aux_sym_implicit_statement_token1] = ACTIONS(5394), + [aux_sym_implicit_statement_token3] = ACTIONS(5394), + [aux_sym_implicit_statement_token4] = ACTIONS(5394), + [aux_sym_save_statement_token1] = ACTIONS(5394), + [aux_sym_private_statement_token1] = ACTIONS(5394), + [aux_sym_public_statement_token1] = ACTIONS(5394), + [aux_sym_namelist_statement_token1] = ACTIONS(5394), + [aux_sym_common_statement_token1] = ACTIONS(5394), + [aux_sym_import_statement_token1] = ACTIONS(5394), + [aux_sym_derived_type_definition_token1] = ACTIONS(5394), + [aux_sym_abstract_specifier_token1] = ACTIONS(5394), + [aux_sym_procedure_attribute_token6] = ACTIONS(5394), + [aux_sym_variable_attributes_token1] = ACTIONS(5394), + [aux_sym_variable_attributes_token2] = ACTIONS(5394), + [aux_sym_variable_attributes_token3] = ACTIONS(5394), + [aux_sym_variable_attributes_token4] = ACTIONS(5394), + [aux_sym_variable_attributes_token5] = ACTIONS(5394), + [aux_sym__intrinsic_type_token1] = ACTIONS(5394), + [aux_sym__intrinsic_type_token2] = ACTIONS(5394), + [aux_sym__intrinsic_type_token3] = ACTIONS(5394), + [aux_sym__intrinsic_type_token4] = ACTIONS(5394), + [aux_sym__intrinsic_type_token6] = ACTIONS(5394), + [aux_sym__intrinsic_type_token7] = ACTIONS(5394), + [aux_sym__intrinsic_type_token8] = ACTIONS(5394), + [aux_sym__intrinsic_type_token9] = ACTIONS(5394), + [aux_sym__intrinsic_type_token10] = ACTIONS(5394), + [aux_sym_derived_type_token1] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5394), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5394), + [aux_sym_type_qualifier_token1] = ACTIONS(5394), + [aux_sym_type_qualifier_token2] = ACTIONS(5394), + [aux_sym_equivalence_statement_token1] = ACTIONS(5394), + [anon_sym_SEMI] = ACTIONS(5396), + [aux_sym_stop_statement_token1] = ACTIONS(5394), + [aux_sym_stop_statement_token2] = ACTIONS(5394), + [aux_sym_subroutine_call_token1] = ACTIONS(5394), + [aux_sym_keyword_statement_token1] = ACTIONS(5394), + [aux_sym_keyword_statement_token2] = ACTIONS(5394), + [aux_sym_keyword_statement_token3] = ACTIONS(5394), + [aux_sym_keyword_statement_token4] = ACTIONS(5394), + [aux_sym_keyword_statement_token6] = ACTIONS(5394), + [aux_sym_keyword_statement_token7] = ACTIONS(5394), + [aux_sym_include_statement_token1] = ACTIONS(5394), + [aux_sym_data_statement_token1] = ACTIONS(5394), + [aux_sym_do_loop_statement_token1] = ACTIONS(5394), + [aux_sym__inline_if_statement_token1] = ACTIONS(5394), + [aux_sym_end_if_statement_token1] = ACTIONS(5394), + [aux_sym_elseif_clause_token2] = ACTIONS(5394), + [aux_sym__inline_where_statement_token1] = ACTIONS(5394), + [aux_sym__forall_control_expression_token1] = ACTIONS(5394), + [aux_sym_select_case_statement_token1] = ACTIONS(5394), + [aux_sym_select_case_statement_token3] = ACTIONS(5394), + [aux_sym_select_type_statement_token1] = ACTIONS(5394), + [aux_sym_select_rank_statement_token2] = ACTIONS(5394), + [aux_sym_block_construct_token1] = ACTIONS(5394), + [aux_sym_associate_statement_token1] = ACTIONS(5394), + [aux_sym_format_statement_token1] = ACTIONS(5394), + [aux_sym_print_statement_token1] = ACTIONS(5394), + [aux_sym_open_statement_token1] = ACTIONS(5394), + [aux_sym_close_statement_token1] = ACTIONS(5394), + [aux_sym_inquire_statement_token1] = ACTIONS(5394), + [aux_sym_enum_statement_token1] = ACTIONS(5394), + [aux_sym_file_position_statement_token1] = ACTIONS(5394), + [aux_sym_file_position_statement_token2] = ACTIONS(5394), + [aux_sym_file_position_statement_token3] = ACTIONS(5394), + [aux_sym_file_position_statement_token4] = ACTIONS(5394), + [aux_sym_allocate_statement_token1] = ACTIONS(5394), + [aux_sym_entry_statement_token1] = ACTIONS(5394), + [aux_sym_logical_expression_token5] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_LPAREN_SLASH] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [aux_sym_boolean_literal_token1] = ACTIONS(5396), + [aux_sym_boolean_literal_token2] = ACTIONS(5396), + [aux_sym_null_literal_token1] = ACTIONS(5394), + [aux_sym_coarray_statement_token1] = ACTIONS(5394), + [aux_sym_coarray_statement_token2] = ACTIONS(5394), + [aux_sym_coarray_statement_token6] = ACTIONS(5394), + [aux_sym_coarray_statement_token8] = ACTIONS(5394), + [aux_sym_coarray_statement_token11] = ACTIONS(5394), + [aux_sym_coarray_statement_token12] = ACTIONS(5394), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5394), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5394), + [aux_sym_identifier_token1] = ACTIONS(5394), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - [sym__float_literal] = ACTIONS(4621), - [sym__boz_literal] = ACTIONS(4621), - [sym__string_literal] = ACTIONS(4621), - [sym__string_literal_kind] = ACTIONS(4621), + [sym__integer_literal] = ACTIONS(5396), + [sym__float_literal] = ACTIONS(5396), + [sym__boz_literal] = ACTIONS(5396), + [sym__string_literal] = ACTIONS(5396), + [sym__string_literal_kind] = ACTIONS(5396), }, - [1590] = { + [1550] = { [aux_sym_preproc_include_token1] = ACTIONS(4511), [aux_sym_preproc_def_token1] = ACTIONS(4511), [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token2] = ACTIONS(4511), [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), [sym_preproc_directive] = ACTIONS(4511), @@ -300683,7 +295684,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4511), [aux_sym_language_binding_token1] = ACTIONS(4511), [aux_sym_procedure_attributes_token1] = ACTIONS(4511), [aux_sym_procedure_attributes_token3] = ACTIONS(4511), @@ -300792,1007 +295792,507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4513), [sym__string_literal_kind] = ACTIONS(4513), }, - [1591] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), - }, - [1592] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_LPAREN2] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_subroutine_call_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_keyword_statement_token4] = ACTIONS(5029), - [aux_sym_keyword_statement_token6] = ACTIONS(5029), - [aux_sym_keyword_statement_token7] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym_do_loop_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym__inline_where_statement_token1] = ACTIONS(5029), - [aux_sym__forall_control_expression_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token3] = ACTIONS(5029), - [aux_sym_select_type_statement_token1] = ACTIONS(5029), - [aux_sym_select_rank_statement_token2] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_associate_statement_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_print_statement_token1] = ACTIONS(5029), - [aux_sym_open_statement_token1] = ACTIONS(5029), - [aux_sym_close_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token2] = ACTIONS(5029), - [aux_sym_file_position_statement_token3] = ACTIONS(5029), - [aux_sym_file_position_statement_token4] = ACTIONS(5029), - [aux_sym_allocate_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_logical_expression_token5] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_LPAREN_SLASH] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [aux_sym_boolean_literal_token1] = ACTIONS(5031), - [aux_sym_boolean_literal_token2] = ACTIONS(5031), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - [sym__float_literal] = ACTIONS(5031), - [sym__boz_literal] = ACTIONS(5031), - [sym__string_literal] = ACTIONS(5031), - [sym__string_literal_kind] = ACTIONS(5031), - }, - [1593] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_LPAREN2] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_subroutine_call_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_keyword_statement_token4] = ACTIONS(5033), - [aux_sym_keyword_statement_token6] = ACTIONS(5033), - [aux_sym_keyword_statement_token7] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym_do_loop_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym__inline_where_statement_token1] = ACTIONS(5033), - [aux_sym__forall_control_expression_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token3] = ACTIONS(5033), - [aux_sym_select_type_statement_token1] = ACTIONS(5033), - [aux_sym_select_rank_statement_token2] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_associate_statement_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_print_statement_token1] = ACTIONS(5033), - [aux_sym_open_statement_token1] = ACTIONS(5033), - [aux_sym_close_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token2] = ACTIONS(5033), - [aux_sym_file_position_statement_token3] = ACTIONS(5033), - [aux_sym_file_position_statement_token4] = ACTIONS(5033), - [aux_sym_allocate_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_logical_expression_token5] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_LPAREN_SLASH] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [aux_sym_boolean_literal_token1] = ACTIONS(5035), - [aux_sym_boolean_literal_token2] = ACTIONS(5035), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - [sym__float_literal] = ACTIONS(5035), - [sym__boz_literal] = ACTIONS(5035), - [sym__string_literal] = ACTIONS(5035), - [sym__string_literal_kind] = ACTIONS(5035), - }, - [1594] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_LPAREN2] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_end_program_statement_token2] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [anon_sym_SEMI] = ACTIONS(5055), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_subroutine_call_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_keyword_statement_token4] = ACTIONS(5053), - [aux_sym_keyword_statement_token6] = ACTIONS(5053), - [aux_sym_keyword_statement_token7] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym_do_loop_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym__inline_where_statement_token1] = ACTIONS(5053), - [aux_sym__forall_control_expression_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token3] = ACTIONS(5053), - [aux_sym_select_type_statement_token1] = ACTIONS(5053), - [aux_sym_select_rank_statement_token2] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_associate_statement_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_print_statement_token1] = ACTIONS(5053), - [aux_sym_open_statement_token1] = ACTIONS(5053), - [aux_sym_close_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token2] = ACTIONS(5053), - [aux_sym_file_position_statement_token3] = ACTIONS(5053), - [aux_sym_file_position_statement_token4] = ACTIONS(5053), - [aux_sym_allocate_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_logical_expression_token5] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_LPAREN_SLASH] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [aux_sym_boolean_literal_token1] = ACTIONS(5055), - [aux_sym_boolean_literal_token2] = ACTIONS(5055), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - [sym__float_literal] = ACTIONS(5055), - [sym__boz_literal] = ACTIONS(5055), - [sym__string_literal] = ACTIONS(5055), - [sym__string_literal_kind] = ACTIONS(5055), - }, - [1595] = { - [aux_sym_preproc_include_token1] = ACTIONS(4815), - [aux_sym_preproc_def_token1] = ACTIONS(4815), - [aux_sym_preproc_if_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4815), - [sym_preproc_directive] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4815), - [aux_sym_end_program_statement_token2] = ACTIONS(4815), - [aux_sym_interface_statement_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4815), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4815), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4815), - [aux_sym_language_binding_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token1] = ACTIONS(4815), - [aux_sym_procedure_attributes_token3] = ACTIONS(4815), - [aux_sym_contains_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token1] = ACTIONS(4815), - [aux_sym_use_statement_token2] = ACTIONS(4815), - [aux_sym_implicit_statement_token1] = ACTIONS(4815), - [aux_sym_implicit_statement_token3] = ACTIONS(4815), - [aux_sym_implicit_statement_token4] = ACTIONS(4815), - [aux_sym_save_statement_token1] = ACTIONS(4815), - [aux_sym_private_statement_token1] = ACTIONS(4815), - [aux_sym_public_statement_token1] = ACTIONS(4815), - [aux_sym_namelist_statement_token1] = ACTIONS(4815), - [aux_sym_common_statement_token1] = ACTIONS(4815), - [aux_sym_import_statement_token1] = ACTIONS(4815), - [aux_sym_derived_type_definition_token1] = ACTIONS(4815), - [aux_sym_abstract_specifier_token1] = ACTIONS(4815), - [aux_sym_procedure_attribute_token6] = ACTIONS(4815), - [aux_sym_variable_attributes_token1] = ACTIONS(4815), - [aux_sym_variable_attributes_token2] = ACTIONS(4815), - [aux_sym_variable_attributes_token3] = ACTIONS(4815), - [aux_sym_variable_attributes_token4] = ACTIONS(4815), - [aux_sym_variable_attributes_token5] = ACTIONS(4815), - [aux_sym__intrinsic_type_token1] = ACTIONS(4815), - [aux_sym__intrinsic_type_token2] = ACTIONS(4815), - [aux_sym__intrinsic_type_token3] = ACTIONS(4815), - [aux_sym__intrinsic_type_token4] = ACTIONS(4815), - [aux_sym__intrinsic_type_token6] = ACTIONS(4815), - [aux_sym__intrinsic_type_token7] = ACTIONS(4815), - [aux_sym__intrinsic_type_token8] = ACTIONS(4815), - [aux_sym__intrinsic_type_token9] = ACTIONS(4815), - [aux_sym__intrinsic_type_token10] = ACTIONS(4815), - [aux_sym_derived_type_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4815), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4815), - [aux_sym_type_qualifier_token1] = ACTIONS(4815), - [aux_sym_type_qualifier_token2] = ACTIONS(4815), - [aux_sym_equivalence_statement_token1] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4821), - [aux_sym_stop_statement_token1] = ACTIONS(4815), - [aux_sym_stop_statement_token2] = ACTIONS(4815), - [aux_sym_subroutine_call_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token1] = ACTIONS(4815), - [aux_sym_keyword_statement_token2] = ACTIONS(4815), - [aux_sym_keyword_statement_token3] = ACTIONS(4815), - [aux_sym_keyword_statement_token4] = ACTIONS(4815), - [aux_sym_keyword_statement_token6] = ACTIONS(4815), - [aux_sym_keyword_statement_token7] = ACTIONS(4815), - [aux_sym_include_statement_token1] = ACTIONS(4815), - [aux_sym_data_statement_token1] = ACTIONS(4815), - [aux_sym_do_loop_statement_token1] = ACTIONS(4815), - [aux_sym__inline_if_statement_token1] = ACTIONS(4815), - [aux_sym_end_if_statement_token1] = ACTIONS(4815), - [aux_sym_elseif_clause_token2] = ACTIONS(4815), - [aux_sym__inline_where_statement_token1] = ACTIONS(4815), - [aux_sym__forall_control_expression_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token1] = ACTIONS(4815), - [aux_sym_select_case_statement_token3] = ACTIONS(4815), - [aux_sym_select_type_statement_token1] = ACTIONS(4815), - [aux_sym_select_rank_statement_token2] = ACTIONS(4815), - [aux_sym_block_construct_token1] = ACTIONS(4815), - [aux_sym_associate_statement_token1] = ACTIONS(4815), - [aux_sym_format_statement_token1] = ACTIONS(4815), - [aux_sym_print_statement_token1] = ACTIONS(4815), - [aux_sym_open_statement_token1] = ACTIONS(4815), - [aux_sym_close_statement_token1] = ACTIONS(4815), - [aux_sym_inquire_statement_token1] = ACTIONS(4815), - [aux_sym_enum_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token1] = ACTIONS(4815), - [aux_sym_file_position_statement_token2] = ACTIONS(4815), - [aux_sym_file_position_statement_token3] = ACTIONS(4815), - [aux_sym_file_position_statement_token4] = ACTIONS(4815), - [aux_sym_allocate_statement_token1] = ACTIONS(4815), - [aux_sym_entry_statement_token1] = ACTIONS(4815), - [aux_sym_logical_expression_token5] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_LPAREN_SLASH] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4821), - [aux_sym_boolean_literal_token1] = ACTIONS(4821), - [aux_sym_boolean_literal_token2] = ACTIONS(4821), - [aux_sym_null_literal_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_statement_token2] = ACTIONS(4815), - [aux_sym_coarray_statement_token6] = ACTIONS(4815), - [aux_sym_coarray_statement_token8] = ACTIONS(4815), - [aux_sym_coarray_statement_token11] = ACTIONS(4815), - [aux_sym_coarray_statement_token12] = ACTIONS(4815), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4815), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4815), - [aux_sym_identifier_token1] = ACTIONS(4815), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4821), - [sym__float_literal] = ACTIONS(4821), - [sym__boz_literal] = ACTIONS(4821), - [sym__string_literal] = ACTIONS(4821), - [sym__string_literal_kind] = ACTIONS(4821), - }, - [1596] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_LPAREN2] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_subroutine_call_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_keyword_statement_token4] = ACTIONS(5041), - [aux_sym_keyword_statement_token6] = ACTIONS(5041), - [aux_sym_keyword_statement_token7] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym_do_loop_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym__inline_where_statement_token1] = ACTIONS(5041), - [aux_sym__forall_control_expression_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token3] = ACTIONS(5041), - [aux_sym_select_type_statement_token1] = ACTIONS(5041), - [aux_sym_select_rank_statement_token2] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_associate_statement_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_print_statement_token1] = ACTIONS(5041), - [aux_sym_open_statement_token1] = ACTIONS(5041), - [aux_sym_close_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token2] = ACTIONS(5041), - [aux_sym_file_position_statement_token3] = ACTIONS(5041), - [aux_sym_file_position_statement_token4] = ACTIONS(5041), - [aux_sym_allocate_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_logical_expression_token5] = ACTIONS(5043), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_LPAREN_SLASH] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [aux_sym_boolean_literal_token1] = ACTIONS(5043), - [aux_sym_boolean_literal_token2] = ACTIONS(5043), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - [sym__float_literal] = ACTIONS(5043), - [sym__boz_literal] = ACTIONS(5043), - [sym__string_literal] = ACTIONS(5043), - [sym__string_literal_kind] = ACTIONS(5043), - }, - [1597] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_LPAREN2] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_subroutine_call_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_keyword_statement_token4] = ACTIONS(5045), - [aux_sym_keyword_statement_token6] = ACTIONS(5045), - [aux_sym_keyword_statement_token7] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym_do_loop_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym__inline_where_statement_token1] = ACTIONS(5045), - [aux_sym__forall_control_expression_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token3] = ACTIONS(5045), - [aux_sym_select_type_statement_token1] = ACTIONS(5045), - [aux_sym_select_rank_statement_token2] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_associate_statement_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_print_statement_token1] = ACTIONS(5045), - [aux_sym_open_statement_token1] = ACTIONS(5045), - [aux_sym_close_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token2] = ACTIONS(5045), - [aux_sym_file_position_statement_token3] = ACTIONS(5045), - [aux_sym_file_position_statement_token4] = ACTIONS(5045), - [aux_sym_allocate_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_logical_expression_token5] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_LPAREN_SLASH] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [aux_sym_boolean_literal_token1] = ACTIONS(5047), - [aux_sym_boolean_literal_token2] = ACTIONS(5047), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - [sym__float_literal] = ACTIONS(5047), - [sym__boz_literal] = ACTIONS(5047), - [sym__string_literal] = ACTIONS(5047), - [sym__string_literal_kind] = ACTIONS(5047), + [1551] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_subroutine_call_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_keyword_statement_token4] = ACTIONS(4383), + [aux_sym_keyword_statement_token6] = ACTIONS(4383), + [aux_sym_keyword_statement_token7] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym_do_loop_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym__inline_where_statement_token1] = ACTIONS(4383), + [aux_sym__forall_control_expression_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token3] = ACTIONS(4383), + [aux_sym_select_type_statement_token1] = ACTIONS(4383), + [aux_sym_select_rank_statement_token2] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_associate_statement_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_print_statement_token1] = ACTIONS(4383), + [aux_sym_open_statement_token1] = ACTIONS(4383), + [aux_sym_close_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token2] = ACTIONS(4383), + [aux_sym_file_position_statement_token3] = ACTIONS(4383), + [aux_sym_file_position_statement_token4] = ACTIONS(4383), + [aux_sym_allocate_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_logical_expression_token5] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LPAREN_SLASH] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [aux_sym_boolean_literal_token1] = ACTIONS(4385), + [aux_sym_boolean_literal_token2] = ACTIONS(4385), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4385), + [sym__float_literal] = ACTIONS(4385), + [sym__boz_literal] = ACTIONS(4385), + [sym__string_literal] = ACTIONS(4385), + [sym__string_literal_kind] = ACTIONS(4385), }, - [1598] = { - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), + [1552] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4443), - [aux_sym_interface_statement_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4443), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4443), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4443), - [aux_sym_language_binding_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token1] = ACTIONS(4443), - [aux_sym_procedure_attributes_token3] = ACTIONS(4443), - [aux_sym_contains_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token1] = ACTIONS(4443), - [aux_sym_use_statement_token2] = ACTIONS(4443), - [aux_sym_implicit_statement_token1] = ACTIONS(4443), - [aux_sym_implicit_statement_token3] = ACTIONS(4443), - [aux_sym_implicit_statement_token4] = ACTIONS(4443), - [aux_sym_save_statement_token1] = ACTIONS(4443), - [aux_sym_private_statement_token1] = ACTIONS(4443), - [aux_sym_public_statement_token1] = ACTIONS(4443), - [aux_sym_namelist_statement_token1] = ACTIONS(4443), - [aux_sym_common_statement_token1] = ACTIONS(4443), - [aux_sym_import_statement_token1] = ACTIONS(4443), - [aux_sym_derived_type_definition_token1] = ACTIONS(4443), - [aux_sym_abstract_specifier_token1] = ACTIONS(4443), - [aux_sym_procedure_attribute_token6] = ACTIONS(4443), - [aux_sym_variable_attributes_token1] = ACTIONS(4443), - [aux_sym_variable_attributes_token2] = ACTIONS(4443), - [aux_sym_variable_attributes_token3] = ACTIONS(4443), - [aux_sym_variable_attributes_token4] = ACTIONS(4443), - [aux_sym_variable_attributes_token5] = ACTIONS(4443), - [aux_sym__intrinsic_type_token1] = ACTIONS(4443), - [aux_sym__intrinsic_type_token2] = ACTIONS(4443), - [aux_sym__intrinsic_type_token3] = ACTIONS(4443), - [aux_sym__intrinsic_type_token4] = ACTIONS(4443), - [aux_sym__intrinsic_type_token6] = ACTIONS(4443), - [aux_sym__intrinsic_type_token7] = ACTIONS(4443), - [aux_sym__intrinsic_type_token8] = ACTIONS(4443), - [aux_sym__intrinsic_type_token9] = ACTIONS(4443), - [aux_sym__intrinsic_type_token10] = ACTIONS(4443), - [aux_sym_derived_type_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4443), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4443), - [aux_sym_type_qualifier_token1] = ACTIONS(4443), - [aux_sym_type_qualifier_token2] = ACTIONS(4443), - [aux_sym_equivalence_statement_token1] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4447), - [aux_sym_stop_statement_token1] = ACTIONS(4443), - [aux_sym_stop_statement_token2] = ACTIONS(4443), - [aux_sym_subroutine_call_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token1] = ACTIONS(4443), - [aux_sym_keyword_statement_token2] = ACTIONS(4443), - [aux_sym_keyword_statement_token3] = ACTIONS(4443), - [aux_sym_keyword_statement_token4] = ACTIONS(4443), - [aux_sym_keyword_statement_token6] = ACTIONS(4443), - [aux_sym_keyword_statement_token7] = ACTIONS(4443), - [aux_sym_include_statement_token1] = ACTIONS(4443), - [aux_sym_data_statement_token1] = ACTIONS(4443), - [aux_sym_do_loop_statement_token1] = ACTIONS(4443), - [aux_sym__inline_if_statement_token1] = ACTIONS(4443), - [aux_sym_end_if_statement_token1] = ACTIONS(4443), - [aux_sym_elseif_clause_token2] = ACTIONS(4443), - [aux_sym__inline_where_statement_token1] = ACTIONS(4443), - [aux_sym__forall_control_expression_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token1] = ACTIONS(4443), - [aux_sym_select_case_statement_token3] = ACTIONS(4443), - [aux_sym_select_type_statement_token1] = ACTIONS(4443), - [aux_sym_select_rank_statement_token2] = ACTIONS(4443), - [aux_sym_block_construct_token1] = ACTIONS(4443), - [aux_sym_associate_statement_token1] = ACTIONS(4443), - [aux_sym_format_statement_token1] = ACTIONS(4443), - [aux_sym_print_statement_token1] = ACTIONS(4443), - [aux_sym_open_statement_token1] = ACTIONS(4443), - [aux_sym_close_statement_token1] = ACTIONS(4443), - [aux_sym_inquire_statement_token1] = ACTIONS(4443), - [aux_sym_enum_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token1] = ACTIONS(4443), - [aux_sym_file_position_statement_token2] = ACTIONS(4443), - [aux_sym_file_position_statement_token3] = ACTIONS(4443), - [aux_sym_file_position_statement_token4] = ACTIONS(4443), - [aux_sym_allocate_statement_token1] = ACTIONS(4443), - [aux_sym_entry_statement_token1] = ACTIONS(4443), - [aux_sym_logical_expression_token5] = ACTIONS(4447), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LPAREN_SLASH] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4447), - [aux_sym_boolean_literal_token1] = ACTIONS(4447), - [aux_sym_boolean_literal_token2] = ACTIONS(4447), - [aux_sym_null_literal_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_statement_token2] = ACTIONS(4443), - [aux_sym_coarray_statement_token6] = ACTIONS(4443), - [aux_sym_coarray_statement_token8] = ACTIONS(4443), - [aux_sym_coarray_statement_token11] = ACTIONS(4443), - [aux_sym_coarray_statement_token12] = ACTIONS(4443), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4443), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4443), - [aux_sym_identifier_token1] = ACTIONS(4443), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4447), - [sym__float_literal] = ACTIONS(4447), - [sym__boz_literal] = ACTIONS(4447), - [sym__string_literal] = ACTIONS(4447), - [sym__string_literal_kind] = ACTIONS(4447), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [1599] = { + [1553] = { + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_LPAREN2] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_end_function_statement_token1] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_subroutine_call_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_keyword_statement_token4] = ACTIONS(5051), + [aux_sym_keyword_statement_token6] = ACTIONS(5051), + [aux_sym_keyword_statement_token7] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym_do_loop_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym__inline_where_statement_token1] = ACTIONS(5051), + [aux_sym__forall_control_expression_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token3] = ACTIONS(5051), + [aux_sym_select_type_statement_token1] = ACTIONS(5051), + [aux_sym_select_rank_statement_token2] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_associate_statement_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_print_statement_token1] = ACTIONS(5051), + [aux_sym_open_statement_token1] = ACTIONS(5051), + [aux_sym_close_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token2] = ACTIONS(5051), + [aux_sym_file_position_statement_token3] = ACTIONS(5051), + [aux_sym_file_position_statement_token4] = ACTIONS(5051), + [aux_sym_allocate_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_logical_expression_token5] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_LPAREN_SLASH] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [aux_sym_boolean_literal_token1] = ACTIONS(5053), + [aux_sym_boolean_literal_token2] = ACTIONS(5053), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + [sym__float_literal] = ACTIONS(5053), + [sym__boz_literal] = ACTIONS(5053), + [sym__string_literal] = ACTIONS(5053), + [sym__string_literal_kind] = ACTIONS(5053), + }, + [1554] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), + }, + [1555] = { [aux_sym_preproc_include_token1] = ACTIONS(4972), [aux_sym_preproc_def_token1] = ACTIONS(4972), [aux_sym_preproc_if_token1] = ACTIONS(4972), @@ -301808,10 +296308,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4972), [aux_sym_language_binding_token1] = ACTIONS(4972), [aux_sym_procedure_attributes_token1] = ACTIONS(4972), [aux_sym_procedure_attributes_token3] = ACTIONS(4972), + [aux_sym_end_function_statement_token1] = ACTIONS(4972), [aux_sym_contains_statement_token1] = ACTIONS(4972), [aux_sym_use_statement_token1] = ACTIONS(4972), [aux_sym_use_statement_token2] = ACTIONS(4972), @@ -301917,4482 +296417,1882 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4974), [sym__string_literal_kind] = ACTIONS(4974), }, - [1600] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_subroutine_call_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_keyword_statement_token4] = ACTIONS(5065), - [aux_sym_keyword_statement_token6] = ACTIONS(5065), - [aux_sym_keyword_statement_token7] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym_do_loop_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym__inline_where_statement_token1] = ACTIONS(5065), - [aux_sym__forall_control_expression_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token3] = ACTIONS(5065), - [aux_sym_select_type_statement_token1] = ACTIONS(5065), - [aux_sym_select_rank_statement_token2] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_associate_statement_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_print_statement_token1] = ACTIONS(5065), - [aux_sym_open_statement_token1] = ACTIONS(5065), - [aux_sym_close_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token2] = ACTIONS(5065), - [aux_sym_file_position_statement_token3] = ACTIONS(5065), - [aux_sym_file_position_statement_token4] = ACTIONS(5065), - [aux_sym_allocate_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_logical_expression_token5] = ACTIONS(5067), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_LPAREN_SLASH] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [aux_sym_boolean_literal_token1] = ACTIONS(5067), - [aux_sym_boolean_literal_token2] = ACTIONS(5067), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - [sym__float_literal] = ACTIONS(5067), - [sym__boz_literal] = ACTIONS(5067), - [sym__string_literal] = ACTIONS(5067), - [sym__string_literal_kind] = ACTIONS(5067), - }, - [1601] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_LPAREN2] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_subroutine_call_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_keyword_statement_token4] = ACTIONS(5069), - [aux_sym_keyword_statement_token6] = ACTIONS(5069), - [aux_sym_keyword_statement_token7] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym_do_loop_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym__inline_where_statement_token1] = ACTIONS(5069), - [aux_sym__forall_control_expression_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token3] = ACTIONS(5069), - [aux_sym_select_type_statement_token1] = ACTIONS(5069), - [aux_sym_select_rank_statement_token2] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_associate_statement_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_print_statement_token1] = ACTIONS(5069), - [aux_sym_open_statement_token1] = ACTIONS(5069), - [aux_sym_close_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token2] = ACTIONS(5069), - [aux_sym_file_position_statement_token3] = ACTIONS(5069), - [aux_sym_file_position_statement_token4] = ACTIONS(5069), - [aux_sym_allocate_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_logical_expression_token5] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LPAREN_SLASH] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [aux_sym_boolean_literal_token1] = ACTIONS(5071), - [aux_sym_boolean_literal_token2] = ACTIONS(5071), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - [sym__float_literal] = ACTIONS(5071), - [sym__boz_literal] = ACTIONS(5071), - [sym__string_literal] = ACTIONS(5071), - [sym__string_literal_kind] = ACTIONS(5071), - }, - [1602] = { - [aux_sym_preproc_include_token1] = ACTIONS(5406), - [aux_sym_preproc_def_token1] = ACTIONS(5406), - [aux_sym_preproc_if_token1] = ACTIONS(5406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5406), - [sym_preproc_directive] = ACTIONS(5406), - [anon_sym_LPAREN2] = ACTIONS(5406), - [anon_sym_PLUS] = ACTIONS(5408), - [anon_sym_DASH] = ACTIONS(5408), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5406), - [aux_sym_interface_statement_token1] = ACTIONS(5406), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5406), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5406), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5406), - [aux_sym_language_binding_token1] = ACTIONS(5406), - [aux_sym_procedure_attributes_token1] = ACTIONS(5406), - [aux_sym_procedure_attributes_token3] = ACTIONS(5406), - [aux_sym_end_function_statement_token1] = ACTIONS(5406), - [aux_sym_contains_statement_token1] = ACTIONS(5406), - [aux_sym_use_statement_token1] = ACTIONS(5406), - [aux_sym_use_statement_token2] = ACTIONS(5406), - [aux_sym_implicit_statement_token1] = ACTIONS(5406), - [aux_sym_implicit_statement_token3] = ACTIONS(5406), - [aux_sym_implicit_statement_token4] = ACTIONS(5406), - [aux_sym_save_statement_token1] = ACTIONS(5406), - [aux_sym_private_statement_token1] = ACTIONS(5406), - [aux_sym_public_statement_token1] = ACTIONS(5406), - [aux_sym_namelist_statement_token1] = ACTIONS(5406), - [aux_sym_common_statement_token1] = ACTIONS(5406), - [aux_sym_import_statement_token1] = ACTIONS(5406), - [aux_sym_derived_type_definition_token1] = ACTIONS(5406), - [aux_sym_abstract_specifier_token1] = ACTIONS(5406), - [aux_sym_procedure_attribute_token6] = ACTIONS(5406), - [aux_sym_variable_attributes_token1] = ACTIONS(5406), - [aux_sym_variable_attributes_token2] = ACTIONS(5406), - [aux_sym_variable_attributes_token3] = ACTIONS(5406), - [aux_sym_variable_attributes_token4] = ACTIONS(5406), - [aux_sym_variable_attributes_token5] = ACTIONS(5406), - [aux_sym__intrinsic_type_token1] = ACTIONS(5406), - [aux_sym__intrinsic_type_token2] = ACTIONS(5406), - [aux_sym__intrinsic_type_token3] = ACTIONS(5406), - [aux_sym__intrinsic_type_token4] = ACTIONS(5406), - [aux_sym__intrinsic_type_token6] = ACTIONS(5406), - [aux_sym__intrinsic_type_token7] = ACTIONS(5406), - [aux_sym__intrinsic_type_token8] = ACTIONS(5406), - [aux_sym__intrinsic_type_token9] = ACTIONS(5406), - [aux_sym__intrinsic_type_token10] = ACTIONS(5406), - [aux_sym_derived_type_token1] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5406), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5406), - [aux_sym_type_qualifier_token1] = ACTIONS(5406), - [aux_sym_type_qualifier_token2] = ACTIONS(5406), - [aux_sym_equivalence_statement_token1] = ACTIONS(5406), - [anon_sym_SEMI] = ACTIONS(5408), - [aux_sym_stop_statement_token1] = ACTIONS(5406), - [aux_sym_stop_statement_token2] = ACTIONS(5406), - [aux_sym_subroutine_call_token1] = ACTIONS(5406), - [aux_sym_keyword_statement_token1] = ACTIONS(5406), - [aux_sym_keyword_statement_token2] = ACTIONS(5406), - [aux_sym_keyword_statement_token3] = ACTIONS(5406), - [aux_sym_keyword_statement_token4] = ACTIONS(5406), - [aux_sym_keyword_statement_token6] = ACTIONS(5406), - [aux_sym_keyword_statement_token7] = ACTIONS(5406), - [aux_sym_include_statement_token1] = ACTIONS(5406), - [aux_sym_data_statement_token1] = ACTIONS(5406), - [aux_sym_do_loop_statement_token1] = ACTIONS(5406), - [aux_sym__inline_if_statement_token1] = ACTIONS(5406), - [aux_sym_end_if_statement_token1] = ACTIONS(5406), - [aux_sym_elseif_clause_token2] = ACTIONS(5406), - [aux_sym__inline_where_statement_token1] = ACTIONS(5406), - [aux_sym__forall_control_expression_token1] = ACTIONS(5406), - [aux_sym_select_case_statement_token1] = ACTIONS(5406), - [aux_sym_select_case_statement_token3] = ACTIONS(5406), - [aux_sym_select_type_statement_token1] = ACTIONS(5406), - [aux_sym_select_rank_statement_token2] = ACTIONS(5406), - [aux_sym_block_construct_token1] = ACTIONS(5406), - [aux_sym_associate_statement_token1] = ACTIONS(5406), - [aux_sym_format_statement_token1] = ACTIONS(5406), - [aux_sym_print_statement_token1] = ACTIONS(5406), - [aux_sym_open_statement_token1] = ACTIONS(5406), - [aux_sym_close_statement_token1] = ACTIONS(5406), - [aux_sym_inquire_statement_token1] = ACTIONS(5406), - [aux_sym_enum_statement_token1] = ACTIONS(5406), - [aux_sym_file_position_statement_token1] = ACTIONS(5406), - [aux_sym_file_position_statement_token2] = ACTIONS(5406), - [aux_sym_file_position_statement_token3] = ACTIONS(5406), - [aux_sym_file_position_statement_token4] = ACTIONS(5406), - [aux_sym_allocate_statement_token1] = ACTIONS(5406), - [aux_sym_entry_statement_token1] = ACTIONS(5406), - [aux_sym_logical_expression_token5] = ACTIONS(5408), - [anon_sym_DOT] = ACTIONS(5406), - [anon_sym_LPAREN_SLASH] = ACTIONS(5408), - [anon_sym_LBRACK] = ACTIONS(5408), - [aux_sym_boolean_literal_token1] = ACTIONS(5408), - [aux_sym_boolean_literal_token2] = ACTIONS(5408), - [aux_sym_null_literal_token1] = ACTIONS(5406), - [aux_sym_coarray_statement_token1] = ACTIONS(5406), - [aux_sym_coarray_statement_token2] = ACTIONS(5406), - [aux_sym_coarray_statement_token6] = ACTIONS(5406), - [aux_sym_coarray_statement_token8] = ACTIONS(5406), - [aux_sym_coarray_statement_token11] = ACTIONS(5406), - [aux_sym_coarray_statement_token12] = ACTIONS(5406), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5406), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5406), - [aux_sym_identifier_token1] = ACTIONS(5406), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5408), - [sym__float_literal] = ACTIONS(5408), - [sym__boz_literal] = ACTIONS(5408), - [sym__string_literal] = ACTIONS(5408), - [sym__string_literal_kind] = ACTIONS(5408), - }, - [1603] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_LPAREN2] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_end_program_statement_token2] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_subroutine_call_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_keyword_statement_token4] = ACTIONS(5029), - [aux_sym_keyword_statement_token6] = ACTIONS(5029), - [aux_sym_keyword_statement_token7] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym_do_loop_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym__inline_where_statement_token1] = ACTIONS(5029), - [aux_sym__forall_control_expression_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token3] = ACTIONS(5029), - [aux_sym_select_type_statement_token1] = ACTIONS(5029), - [aux_sym_select_rank_statement_token2] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_associate_statement_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_print_statement_token1] = ACTIONS(5029), - [aux_sym_open_statement_token1] = ACTIONS(5029), - [aux_sym_close_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token2] = ACTIONS(5029), - [aux_sym_file_position_statement_token3] = ACTIONS(5029), - [aux_sym_file_position_statement_token4] = ACTIONS(5029), - [aux_sym_allocate_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_logical_expression_token5] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_LPAREN_SLASH] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [aux_sym_boolean_literal_token1] = ACTIONS(5031), - [aux_sym_boolean_literal_token2] = ACTIONS(5031), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - [sym__float_literal] = ACTIONS(5031), - [sym__boz_literal] = ACTIONS(5031), - [sym__string_literal] = ACTIONS(5031), - [sym__string_literal_kind] = ACTIONS(5031), - }, - [1604] = { - [aux_sym_preproc_include_token1] = ACTIONS(4825), - [aux_sym_preproc_def_token1] = ACTIONS(4825), - [aux_sym_preproc_if_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4825), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4825), - [sym_preproc_directive] = ACTIONS(4825), - [anon_sym_LPAREN2] = ACTIONS(4825), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4825), - [aux_sym_interface_statement_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4825), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4825), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4825), - [aux_sym_language_binding_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token1] = ACTIONS(4825), - [aux_sym_procedure_attributes_token3] = ACTIONS(4825), - [aux_sym_contains_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token1] = ACTIONS(4825), - [aux_sym_use_statement_token2] = ACTIONS(4825), - [aux_sym_implicit_statement_token1] = ACTIONS(4825), - [aux_sym_implicit_statement_token3] = ACTIONS(4825), - [aux_sym_implicit_statement_token4] = ACTIONS(4825), - [aux_sym_save_statement_token1] = ACTIONS(4825), - [aux_sym_private_statement_token1] = ACTIONS(4825), - [aux_sym_public_statement_token1] = ACTIONS(4825), - [aux_sym_namelist_statement_token1] = ACTIONS(4825), - [aux_sym_common_statement_token1] = ACTIONS(4825), - [aux_sym_import_statement_token1] = ACTIONS(4825), - [aux_sym_derived_type_definition_token1] = ACTIONS(4825), - [aux_sym_abstract_specifier_token1] = ACTIONS(4825), - [aux_sym_procedure_attribute_token6] = ACTIONS(4825), - [aux_sym_variable_attributes_token1] = ACTIONS(4825), - [aux_sym_variable_attributes_token2] = ACTIONS(4825), - [aux_sym_variable_attributes_token3] = ACTIONS(4825), - [aux_sym_variable_attributes_token4] = ACTIONS(4825), - [aux_sym_variable_attributes_token5] = ACTIONS(4825), - [aux_sym__intrinsic_type_token1] = ACTIONS(4825), - [aux_sym__intrinsic_type_token2] = ACTIONS(4825), - [aux_sym__intrinsic_type_token3] = ACTIONS(4825), - [aux_sym__intrinsic_type_token4] = ACTIONS(4825), - [aux_sym__intrinsic_type_token6] = ACTIONS(4825), - [aux_sym__intrinsic_type_token7] = ACTIONS(4825), - [aux_sym__intrinsic_type_token8] = ACTIONS(4825), - [aux_sym__intrinsic_type_token9] = ACTIONS(4825), - [aux_sym__intrinsic_type_token10] = ACTIONS(4825), - [aux_sym_derived_type_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4825), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4825), - [aux_sym_type_qualifier_token1] = ACTIONS(4825), - [aux_sym_type_qualifier_token2] = ACTIONS(4825), - [aux_sym_equivalence_statement_token1] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4831), - [aux_sym_stop_statement_token1] = ACTIONS(4825), - [aux_sym_stop_statement_token2] = ACTIONS(4825), - [aux_sym_subroutine_call_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token1] = ACTIONS(4825), - [aux_sym_keyword_statement_token2] = ACTIONS(4825), - [aux_sym_keyword_statement_token3] = ACTIONS(4825), - [aux_sym_keyword_statement_token4] = ACTIONS(4825), - [aux_sym_keyword_statement_token6] = ACTIONS(4825), - [aux_sym_keyword_statement_token7] = ACTIONS(4825), - [aux_sym_include_statement_token1] = ACTIONS(4825), - [aux_sym_data_statement_token1] = ACTIONS(4825), - [aux_sym_do_loop_statement_token1] = ACTIONS(4825), - [aux_sym__inline_if_statement_token1] = ACTIONS(4825), - [aux_sym_end_if_statement_token1] = ACTIONS(4825), - [aux_sym_elseif_clause_token2] = ACTIONS(4825), - [aux_sym__inline_where_statement_token1] = ACTIONS(4825), - [aux_sym__forall_control_expression_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token1] = ACTIONS(4825), - [aux_sym_select_case_statement_token3] = ACTIONS(4825), - [aux_sym_select_type_statement_token1] = ACTIONS(4825), - [aux_sym_select_rank_statement_token2] = ACTIONS(4825), - [aux_sym_block_construct_token1] = ACTIONS(4825), - [aux_sym_associate_statement_token1] = ACTIONS(4825), - [aux_sym_format_statement_token1] = ACTIONS(4825), - [aux_sym_print_statement_token1] = ACTIONS(4825), - [aux_sym_open_statement_token1] = ACTIONS(4825), - [aux_sym_close_statement_token1] = ACTIONS(4825), - [aux_sym_inquire_statement_token1] = ACTIONS(4825), - [aux_sym_enum_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token1] = ACTIONS(4825), - [aux_sym_file_position_statement_token2] = ACTIONS(4825), - [aux_sym_file_position_statement_token3] = ACTIONS(4825), - [aux_sym_file_position_statement_token4] = ACTIONS(4825), - [aux_sym_allocate_statement_token1] = ACTIONS(4825), - [aux_sym_entry_statement_token1] = ACTIONS(4825), - [aux_sym_logical_expression_token5] = ACTIONS(4831), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_LPAREN_SLASH] = ACTIONS(4831), - [anon_sym_LBRACK] = ACTIONS(4831), - [aux_sym_boolean_literal_token1] = ACTIONS(4831), - [aux_sym_boolean_literal_token2] = ACTIONS(4831), - [aux_sym_null_literal_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_statement_token2] = ACTIONS(4825), - [aux_sym_coarray_statement_token6] = ACTIONS(4825), - [aux_sym_coarray_statement_token8] = ACTIONS(4825), - [aux_sym_coarray_statement_token11] = ACTIONS(4825), - [aux_sym_coarray_statement_token12] = ACTIONS(4825), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4825), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4825), - [aux_sym_identifier_token1] = ACTIONS(4825), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4831), - [sym__float_literal] = ACTIONS(4831), - [sym__boz_literal] = ACTIONS(4831), - [sym__string_literal] = ACTIONS(4831), - [sym__string_literal_kind] = ACTIONS(4831), - }, - [1605] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_LPAREN2] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_end_program_statement_token2] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_subroutine_call_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_keyword_statement_token4] = ACTIONS(5033), - [aux_sym_keyword_statement_token6] = ACTIONS(5033), - [aux_sym_keyword_statement_token7] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym_do_loop_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym__inline_where_statement_token1] = ACTIONS(5033), - [aux_sym__forall_control_expression_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token3] = ACTIONS(5033), - [aux_sym_select_type_statement_token1] = ACTIONS(5033), - [aux_sym_select_rank_statement_token2] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_associate_statement_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_print_statement_token1] = ACTIONS(5033), - [aux_sym_open_statement_token1] = ACTIONS(5033), - [aux_sym_close_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token2] = ACTIONS(5033), - [aux_sym_file_position_statement_token3] = ACTIONS(5033), - [aux_sym_file_position_statement_token4] = ACTIONS(5033), - [aux_sym_allocate_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_logical_expression_token5] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_LPAREN_SLASH] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [aux_sym_boolean_literal_token1] = ACTIONS(5035), - [aux_sym_boolean_literal_token2] = ACTIONS(5035), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - [sym__float_literal] = ACTIONS(5035), - [sym__boz_literal] = ACTIONS(5035), - [sym__string_literal] = ACTIONS(5035), - [sym__string_literal_kind] = ACTIONS(5035), - }, - [1606] = { - [aux_sym_preproc_include_token1] = ACTIONS(4293), - [aux_sym_preproc_def_token1] = ACTIONS(4293), - [aux_sym_preproc_if_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), - [sym_preproc_directive] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4293), - [aux_sym_interface_statement_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4293), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4293), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4293), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4293), - [aux_sym_language_binding_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token1] = ACTIONS(4293), - [aux_sym_procedure_attributes_token3] = ACTIONS(4293), - [aux_sym_contains_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token1] = ACTIONS(4293), - [aux_sym_use_statement_token2] = ACTIONS(4293), - [aux_sym_implicit_statement_token1] = ACTIONS(4293), - [aux_sym_implicit_statement_token3] = ACTIONS(4293), - [aux_sym_implicit_statement_token4] = ACTIONS(4293), - [aux_sym_save_statement_token1] = ACTIONS(4293), - [aux_sym_private_statement_token1] = ACTIONS(4293), - [aux_sym_public_statement_token1] = ACTIONS(4293), - [aux_sym_namelist_statement_token1] = ACTIONS(4293), - [aux_sym_common_statement_token1] = ACTIONS(4293), - [aux_sym_import_statement_token1] = ACTIONS(4293), - [aux_sym_derived_type_definition_token1] = ACTIONS(4293), - [aux_sym_abstract_specifier_token1] = ACTIONS(4293), - [aux_sym_procedure_attribute_token6] = ACTIONS(4293), - [aux_sym_variable_attributes_token1] = ACTIONS(4293), - [aux_sym_variable_attributes_token2] = ACTIONS(4293), - [aux_sym_variable_attributes_token3] = ACTIONS(4293), - [aux_sym_variable_attributes_token4] = ACTIONS(4293), - [aux_sym_variable_attributes_token5] = ACTIONS(4293), - [aux_sym__intrinsic_type_token1] = ACTIONS(4293), - [aux_sym__intrinsic_type_token2] = ACTIONS(4293), - [aux_sym__intrinsic_type_token3] = ACTIONS(4293), - [aux_sym__intrinsic_type_token4] = ACTIONS(4293), - [aux_sym__intrinsic_type_token6] = ACTIONS(4293), - [aux_sym__intrinsic_type_token7] = ACTIONS(4293), - [aux_sym__intrinsic_type_token8] = ACTIONS(4293), - [aux_sym__intrinsic_type_token9] = ACTIONS(4293), - [aux_sym__intrinsic_type_token10] = ACTIONS(4293), - [aux_sym_derived_type_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4293), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4293), - [aux_sym_type_qualifier_token1] = ACTIONS(4293), - [aux_sym_type_qualifier_token2] = ACTIONS(4293), - [aux_sym_equivalence_statement_token1] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4299), - [aux_sym_stop_statement_token1] = ACTIONS(4293), - [aux_sym_stop_statement_token2] = ACTIONS(4293), - [aux_sym_subroutine_call_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token1] = ACTIONS(4293), - [aux_sym_keyword_statement_token2] = ACTIONS(4293), - [aux_sym_keyword_statement_token3] = ACTIONS(4293), - [aux_sym_keyword_statement_token4] = ACTIONS(4293), - [aux_sym_keyword_statement_token6] = ACTIONS(4293), - [aux_sym_keyword_statement_token7] = ACTIONS(4293), - [aux_sym_include_statement_token1] = ACTIONS(4293), - [aux_sym_data_statement_token1] = ACTIONS(4293), - [aux_sym_do_loop_statement_token1] = ACTIONS(4293), - [aux_sym__inline_if_statement_token1] = ACTIONS(4293), - [aux_sym_end_if_statement_token1] = ACTIONS(4293), - [aux_sym_elseif_clause_token2] = ACTIONS(4293), - [aux_sym__inline_where_statement_token1] = ACTIONS(4293), - [aux_sym__forall_control_expression_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token1] = ACTIONS(4293), - [aux_sym_select_case_statement_token3] = ACTIONS(4293), - [aux_sym_select_type_statement_token1] = ACTIONS(4293), - [aux_sym_select_rank_statement_token2] = ACTIONS(4293), - [aux_sym_block_construct_token1] = ACTIONS(4293), - [aux_sym_associate_statement_token1] = ACTIONS(4293), - [aux_sym_format_statement_token1] = ACTIONS(4293), - [aux_sym_print_statement_token1] = ACTIONS(4293), - [aux_sym_open_statement_token1] = ACTIONS(4293), - [aux_sym_close_statement_token1] = ACTIONS(4293), - [aux_sym_inquire_statement_token1] = ACTIONS(4293), - [aux_sym_enum_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token1] = ACTIONS(4293), - [aux_sym_file_position_statement_token2] = ACTIONS(4293), - [aux_sym_file_position_statement_token3] = ACTIONS(4293), - [aux_sym_file_position_statement_token4] = ACTIONS(4293), - [aux_sym_allocate_statement_token1] = ACTIONS(4293), - [aux_sym_entry_statement_token1] = ACTIONS(4293), - [aux_sym_logical_expression_token5] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LPAREN_SLASH] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [aux_sym_boolean_literal_token1] = ACTIONS(4299), - [aux_sym_boolean_literal_token2] = ACTIONS(4299), - [aux_sym_null_literal_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_statement_token2] = ACTIONS(4293), - [aux_sym_coarray_statement_token6] = ACTIONS(4293), - [aux_sym_coarray_statement_token8] = ACTIONS(4293), - [aux_sym_coarray_statement_token11] = ACTIONS(4293), - [aux_sym_coarray_statement_token12] = ACTIONS(4293), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4293), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4293), - [aux_sym_identifier_token1] = ACTIONS(4293), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4299), - [sym__float_literal] = ACTIONS(4299), - [sym__boz_literal] = ACTIONS(4299), - [sym__string_literal] = ACTIONS(4299), - [sym__string_literal_kind] = ACTIONS(4299), - }, - [1607] = { - [aux_sym_preproc_include_token1] = ACTIONS(5442), - [aux_sym_preproc_def_token1] = ACTIONS(5442), - [aux_sym_preproc_if_token1] = ACTIONS(5442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5442), - [sym_preproc_directive] = ACTIONS(5442), - [anon_sym_LPAREN2] = ACTIONS(5442), - [anon_sym_PLUS] = ACTIONS(5444), - [anon_sym_DASH] = ACTIONS(5444), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5442), - [aux_sym_interface_statement_token1] = ACTIONS(5442), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5442), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5442), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5442), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5442), - [aux_sym_language_binding_token1] = ACTIONS(5442), - [aux_sym_procedure_attributes_token1] = ACTIONS(5442), - [aux_sym_procedure_attributes_token3] = ACTIONS(5442), - [aux_sym_contains_statement_token1] = ACTIONS(5442), - [aux_sym_use_statement_token1] = ACTIONS(5442), - [aux_sym_use_statement_token2] = ACTIONS(5442), - [aux_sym_implicit_statement_token1] = ACTIONS(5442), - [aux_sym_implicit_statement_token3] = ACTIONS(5442), - [aux_sym_implicit_statement_token4] = ACTIONS(5442), - [aux_sym_save_statement_token1] = ACTIONS(5442), - [aux_sym_private_statement_token1] = ACTIONS(5442), - [aux_sym_public_statement_token1] = ACTIONS(5442), - [aux_sym_namelist_statement_token1] = ACTIONS(5442), - [aux_sym_common_statement_token1] = ACTIONS(5442), - [aux_sym_import_statement_token1] = ACTIONS(5442), - [aux_sym_derived_type_definition_token1] = ACTIONS(5442), - [aux_sym_abstract_specifier_token1] = ACTIONS(5442), - [aux_sym_procedure_attribute_token6] = ACTIONS(5442), - [aux_sym_variable_attributes_token1] = ACTIONS(5442), - [aux_sym_variable_attributes_token2] = ACTIONS(5442), - [aux_sym_variable_attributes_token3] = ACTIONS(5442), - [aux_sym_variable_attributes_token4] = ACTIONS(5442), - [aux_sym_variable_attributes_token5] = ACTIONS(5442), - [aux_sym__intrinsic_type_token1] = ACTIONS(5442), - [aux_sym__intrinsic_type_token2] = ACTIONS(5442), - [aux_sym__intrinsic_type_token3] = ACTIONS(5442), - [aux_sym__intrinsic_type_token4] = ACTIONS(5442), - [aux_sym__intrinsic_type_token6] = ACTIONS(5442), - [aux_sym__intrinsic_type_token7] = ACTIONS(5442), - [aux_sym__intrinsic_type_token8] = ACTIONS(5442), - [aux_sym__intrinsic_type_token9] = ACTIONS(5442), - [aux_sym__intrinsic_type_token10] = ACTIONS(5442), - [aux_sym_derived_type_token1] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5442), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5442), - [aux_sym_type_qualifier_token1] = ACTIONS(5442), - [aux_sym_type_qualifier_token2] = ACTIONS(5442), - [aux_sym_equivalence_statement_token1] = ACTIONS(5442), - [anon_sym_SEMI] = ACTIONS(5444), - [aux_sym_stop_statement_token1] = ACTIONS(5442), - [aux_sym_stop_statement_token2] = ACTIONS(5442), - [aux_sym_subroutine_call_token1] = ACTIONS(5442), - [aux_sym_keyword_statement_token1] = ACTIONS(5442), - [aux_sym_keyword_statement_token2] = ACTIONS(5442), - [aux_sym_keyword_statement_token3] = ACTIONS(5442), - [aux_sym_keyword_statement_token4] = ACTIONS(5442), - [aux_sym_keyword_statement_token6] = ACTIONS(5442), - [aux_sym_keyword_statement_token7] = ACTIONS(5442), - [aux_sym_include_statement_token1] = ACTIONS(5442), - [aux_sym_data_statement_token1] = ACTIONS(5442), - [aux_sym_do_loop_statement_token1] = ACTIONS(5442), - [aux_sym__inline_if_statement_token1] = ACTIONS(5442), - [aux_sym_end_if_statement_token1] = ACTIONS(5442), - [aux_sym_elseif_clause_token2] = ACTIONS(5442), - [aux_sym__inline_where_statement_token1] = ACTIONS(5442), - [aux_sym__forall_control_expression_token1] = ACTIONS(5442), - [aux_sym_select_case_statement_token1] = ACTIONS(5442), - [aux_sym_select_case_statement_token3] = ACTIONS(5442), - [aux_sym_select_type_statement_token1] = ACTIONS(5442), - [aux_sym_select_rank_statement_token2] = ACTIONS(5442), - [aux_sym_block_construct_token1] = ACTIONS(5442), - [aux_sym_associate_statement_token1] = ACTIONS(5442), - [aux_sym_format_statement_token1] = ACTIONS(5442), - [aux_sym_print_statement_token1] = ACTIONS(5442), - [aux_sym_open_statement_token1] = ACTIONS(5442), - [aux_sym_close_statement_token1] = ACTIONS(5442), - [aux_sym_inquire_statement_token1] = ACTIONS(5442), - [aux_sym_enum_statement_token1] = ACTIONS(5442), - [aux_sym_file_position_statement_token1] = ACTIONS(5442), - [aux_sym_file_position_statement_token2] = ACTIONS(5442), - [aux_sym_file_position_statement_token3] = ACTIONS(5442), - [aux_sym_file_position_statement_token4] = ACTIONS(5442), - [aux_sym_allocate_statement_token1] = ACTIONS(5442), - [aux_sym_entry_statement_token1] = ACTIONS(5442), - [aux_sym_logical_expression_token5] = ACTIONS(5444), - [anon_sym_DOT] = ACTIONS(5442), - [anon_sym_LPAREN_SLASH] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [aux_sym_boolean_literal_token1] = ACTIONS(5444), - [aux_sym_boolean_literal_token2] = ACTIONS(5444), - [aux_sym_null_literal_token1] = ACTIONS(5442), - [aux_sym_coarray_statement_token1] = ACTIONS(5442), - [aux_sym_coarray_statement_token2] = ACTIONS(5442), - [aux_sym_coarray_statement_token6] = ACTIONS(5442), - [aux_sym_coarray_statement_token8] = ACTIONS(5442), - [aux_sym_coarray_statement_token11] = ACTIONS(5442), - [aux_sym_coarray_statement_token12] = ACTIONS(5442), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5442), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5442), - [aux_sym_identifier_token1] = ACTIONS(5442), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5444), - [sym__float_literal] = ACTIONS(5444), - [sym__boz_literal] = ACTIONS(5444), - [sym__string_literal] = ACTIONS(5444), - [sym__string_literal_kind] = ACTIONS(5444), - }, - [1608] = { - [aux_sym_preproc_include_token1] = ACTIONS(4994), - [aux_sym_preproc_def_token1] = ACTIONS(4994), - [aux_sym_preproc_if_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), - [sym_preproc_directive] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4994), - [aux_sym_interface_statement_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4994), - [aux_sym_language_binding_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token1] = ACTIONS(4994), - [aux_sym_procedure_attributes_token3] = ACTIONS(4994), - [aux_sym_contains_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token1] = ACTIONS(4994), - [aux_sym_use_statement_token2] = ACTIONS(4994), - [aux_sym_implicit_statement_token1] = ACTIONS(4994), - [aux_sym_implicit_statement_token3] = ACTIONS(4994), - [aux_sym_implicit_statement_token4] = ACTIONS(4994), - [aux_sym_save_statement_token1] = ACTIONS(4994), - [aux_sym_private_statement_token1] = ACTIONS(4994), - [aux_sym_public_statement_token1] = ACTIONS(4994), - [aux_sym_namelist_statement_token1] = ACTIONS(4994), - [aux_sym_common_statement_token1] = ACTIONS(4994), - [aux_sym_import_statement_token1] = ACTIONS(4994), - [aux_sym_derived_type_definition_token1] = ACTIONS(4994), - [aux_sym_abstract_specifier_token1] = ACTIONS(4994), - [aux_sym_procedure_attribute_token6] = ACTIONS(4994), - [aux_sym_variable_attributes_token1] = ACTIONS(4994), - [aux_sym_variable_attributes_token2] = ACTIONS(4994), - [aux_sym_variable_attributes_token3] = ACTIONS(4994), - [aux_sym_variable_attributes_token4] = ACTIONS(4994), - [aux_sym_variable_attributes_token5] = ACTIONS(4994), - [aux_sym__intrinsic_type_token1] = ACTIONS(4994), - [aux_sym__intrinsic_type_token2] = ACTIONS(4994), - [aux_sym__intrinsic_type_token3] = ACTIONS(4994), - [aux_sym__intrinsic_type_token4] = ACTIONS(4994), - [aux_sym__intrinsic_type_token6] = ACTIONS(4994), - [aux_sym__intrinsic_type_token7] = ACTIONS(4994), - [aux_sym__intrinsic_type_token8] = ACTIONS(4994), - [aux_sym__intrinsic_type_token9] = ACTIONS(4994), - [aux_sym__intrinsic_type_token10] = ACTIONS(4994), - [aux_sym_derived_type_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), - [aux_sym_type_qualifier_token1] = ACTIONS(4994), - [aux_sym_type_qualifier_token2] = ACTIONS(4994), - [aux_sym_equivalence_statement_token1] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4998), - [aux_sym_stop_statement_token1] = ACTIONS(4994), - [aux_sym_stop_statement_token2] = ACTIONS(4994), - [aux_sym_subroutine_call_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token1] = ACTIONS(4994), - [aux_sym_keyword_statement_token2] = ACTIONS(4994), - [aux_sym_keyword_statement_token3] = ACTIONS(4994), - [aux_sym_keyword_statement_token4] = ACTIONS(4994), - [aux_sym_keyword_statement_token6] = ACTIONS(4994), - [aux_sym_keyword_statement_token7] = ACTIONS(4994), - [aux_sym_include_statement_token1] = ACTIONS(4994), - [aux_sym_data_statement_token1] = ACTIONS(4994), - [aux_sym_do_loop_statement_token1] = ACTIONS(4994), - [aux_sym__inline_if_statement_token1] = ACTIONS(4994), - [aux_sym_end_if_statement_token1] = ACTIONS(4994), - [aux_sym_elseif_clause_token2] = ACTIONS(4994), - [aux_sym__inline_where_statement_token1] = ACTIONS(4994), - [aux_sym__forall_control_expression_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token1] = ACTIONS(4994), - [aux_sym_select_case_statement_token3] = ACTIONS(4994), - [aux_sym_select_type_statement_token1] = ACTIONS(4994), - [aux_sym_select_rank_statement_token2] = ACTIONS(4994), - [aux_sym_block_construct_token1] = ACTIONS(4994), - [aux_sym_associate_statement_token1] = ACTIONS(4994), - [aux_sym_format_statement_token1] = ACTIONS(4994), - [aux_sym_print_statement_token1] = ACTIONS(4994), - [aux_sym_open_statement_token1] = ACTIONS(4994), - [aux_sym_close_statement_token1] = ACTIONS(4994), - [aux_sym_inquire_statement_token1] = ACTIONS(4994), - [aux_sym_enum_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token1] = ACTIONS(4994), - [aux_sym_file_position_statement_token2] = ACTIONS(4994), - [aux_sym_file_position_statement_token3] = ACTIONS(4994), - [aux_sym_file_position_statement_token4] = ACTIONS(4994), - [aux_sym_allocate_statement_token1] = ACTIONS(4994), - [aux_sym_entry_statement_token1] = ACTIONS(4994), - [aux_sym_logical_expression_token5] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4994), - [anon_sym_LPAREN_SLASH] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [aux_sym_boolean_literal_token1] = ACTIONS(4998), - [aux_sym_boolean_literal_token2] = ACTIONS(4998), - [aux_sym_null_literal_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_statement_token2] = ACTIONS(4994), - [aux_sym_coarray_statement_token6] = ACTIONS(4994), - [aux_sym_coarray_statement_token8] = ACTIONS(4994), - [aux_sym_coarray_statement_token11] = ACTIONS(4994), - [aux_sym_coarray_statement_token12] = ACTIONS(4994), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), - [aux_sym_identifier_token1] = ACTIONS(4994), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4998), - [sym__float_literal] = ACTIONS(4998), - [sym__boz_literal] = ACTIONS(4998), - [sym__string_literal] = ACTIONS(4998), - [sym__string_literal_kind] = ACTIONS(4998), - }, - [1609] = { - [aux_sym_preproc_include_token1] = ACTIONS(4449), - [aux_sym_preproc_def_token1] = ACTIONS(4449), - [aux_sym_preproc_if_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), - [sym_preproc_directive] = ACTIONS(4449), - [anon_sym_LPAREN2] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4449), - [aux_sym_interface_statement_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4449), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4449), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4449), - [aux_sym_language_binding_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token1] = ACTIONS(4449), - [aux_sym_procedure_attributes_token3] = ACTIONS(4449), - [aux_sym_contains_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token1] = ACTIONS(4449), - [aux_sym_use_statement_token2] = ACTIONS(4449), - [aux_sym_implicit_statement_token1] = ACTIONS(4449), - [aux_sym_implicit_statement_token3] = ACTIONS(4449), - [aux_sym_implicit_statement_token4] = ACTIONS(4449), - [aux_sym_save_statement_token1] = ACTIONS(4449), - [aux_sym_private_statement_token1] = ACTIONS(4449), - [aux_sym_public_statement_token1] = ACTIONS(4449), - [aux_sym_namelist_statement_token1] = ACTIONS(4449), - [aux_sym_common_statement_token1] = ACTIONS(4449), - [aux_sym_import_statement_token1] = ACTIONS(4449), - [aux_sym_derived_type_definition_token1] = ACTIONS(4449), - [aux_sym_abstract_specifier_token1] = ACTIONS(4449), - [aux_sym_procedure_attribute_token6] = ACTIONS(4449), - [aux_sym_variable_attributes_token1] = ACTIONS(4449), - [aux_sym_variable_attributes_token2] = ACTIONS(4449), - [aux_sym_variable_attributes_token3] = ACTIONS(4449), - [aux_sym_variable_attributes_token4] = ACTIONS(4449), - [aux_sym_variable_attributes_token5] = ACTIONS(4449), - [aux_sym__intrinsic_type_token1] = ACTIONS(4449), - [aux_sym__intrinsic_type_token2] = ACTIONS(4449), - [aux_sym__intrinsic_type_token3] = ACTIONS(4449), - [aux_sym__intrinsic_type_token4] = ACTIONS(4449), - [aux_sym__intrinsic_type_token6] = ACTIONS(4449), - [aux_sym__intrinsic_type_token7] = ACTIONS(4449), - [aux_sym__intrinsic_type_token8] = ACTIONS(4449), - [aux_sym__intrinsic_type_token9] = ACTIONS(4449), - [aux_sym__intrinsic_type_token10] = ACTIONS(4449), - [aux_sym_derived_type_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4449), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4449), - [aux_sym_type_qualifier_token1] = ACTIONS(4449), - [aux_sym_type_qualifier_token2] = ACTIONS(4449), - [aux_sym_equivalence_statement_token1] = ACTIONS(4449), - [anon_sym_SEMI] = ACTIONS(4451), - [aux_sym_stop_statement_token1] = ACTIONS(4449), - [aux_sym_stop_statement_token2] = ACTIONS(4449), - [aux_sym_subroutine_call_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token1] = ACTIONS(4449), - [aux_sym_keyword_statement_token2] = ACTIONS(4449), - [aux_sym_keyword_statement_token3] = ACTIONS(4449), - [aux_sym_keyword_statement_token4] = ACTIONS(4449), - [aux_sym_keyword_statement_token6] = ACTIONS(4449), - [aux_sym_keyword_statement_token7] = ACTIONS(4449), - [aux_sym_include_statement_token1] = ACTIONS(4449), - [aux_sym_data_statement_token1] = ACTIONS(4449), - [aux_sym_do_loop_statement_token1] = ACTIONS(4449), - [aux_sym__inline_if_statement_token1] = ACTIONS(4449), - [aux_sym_end_if_statement_token1] = ACTIONS(4449), - [aux_sym_elseif_clause_token2] = ACTIONS(4449), - [aux_sym__inline_where_statement_token1] = ACTIONS(4449), - [aux_sym__forall_control_expression_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token1] = ACTIONS(4449), - [aux_sym_select_case_statement_token3] = ACTIONS(4449), - [aux_sym_select_type_statement_token1] = ACTIONS(4449), - [aux_sym_select_rank_statement_token2] = ACTIONS(4449), - [aux_sym_block_construct_token1] = ACTIONS(4449), - [aux_sym_associate_statement_token1] = ACTIONS(4449), - [aux_sym_format_statement_token1] = ACTIONS(4449), - [aux_sym_print_statement_token1] = ACTIONS(4449), - [aux_sym_open_statement_token1] = ACTIONS(4449), - [aux_sym_close_statement_token1] = ACTIONS(4449), - [aux_sym_inquire_statement_token1] = ACTIONS(4449), - [aux_sym_enum_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token1] = ACTIONS(4449), - [aux_sym_file_position_statement_token2] = ACTIONS(4449), - [aux_sym_file_position_statement_token3] = ACTIONS(4449), - [aux_sym_file_position_statement_token4] = ACTIONS(4449), - [aux_sym_allocate_statement_token1] = ACTIONS(4449), - [aux_sym_entry_statement_token1] = ACTIONS(4449), - [aux_sym_logical_expression_token5] = ACTIONS(4451), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LPAREN_SLASH] = ACTIONS(4451), - [anon_sym_LBRACK] = ACTIONS(4451), - [aux_sym_boolean_literal_token1] = ACTIONS(4451), - [aux_sym_boolean_literal_token2] = ACTIONS(4451), - [aux_sym_null_literal_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_statement_token2] = ACTIONS(4449), - [aux_sym_coarray_statement_token6] = ACTIONS(4449), - [aux_sym_coarray_statement_token8] = ACTIONS(4449), - [aux_sym_coarray_statement_token11] = ACTIONS(4449), - [aux_sym_coarray_statement_token12] = ACTIONS(4449), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4449), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4449), - [aux_sym_identifier_token1] = ACTIONS(4449), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4451), - [sym__float_literal] = ACTIONS(4451), - [sym__boz_literal] = ACTIONS(4451), - [sym__string_literal] = ACTIONS(4451), - [sym__string_literal_kind] = ACTIONS(4451), - }, - [1610] = { - [aux_sym_preproc_include_token1] = ACTIONS(5398), - [aux_sym_preproc_def_token1] = ACTIONS(5398), - [aux_sym_preproc_if_token1] = ACTIONS(5398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5398), - [sym_preproc_directive] = ACTIONS(5398), - [anon_sym_LPAREN2] = ACTIONS(5398), - [anon_sym_PLUS] = ACTIONS(5400), - [anon_sym_DASH] = ACTIONS(5400), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5398), - [aux_sym_interface_statement_token1] = ACTIONS(5398), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5398), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5398), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5398), - [aux_sym_language_binding_token1] = ACTIONS(5398), - [aux_sym_procedure_attributes_token1] = ACTIONS(5398), - [aux_sym_procedure_attributes_token3] = ACTIONS(5398), - [aux_sym_end_function_statement_token1] = ACTIONS(5398), - [aux_sym_contains_statement_token1] = ACTIONS(5398), - [aux_sym_use_statement_token1] = ACTIONS(5398), - [aux_sym_use_statement_token2] = ACTIONS(5398), - [aux_sym_implicit_statement_token1] = ACTIONS(5398), - [aux_sym_implicit_statement_token3] = ACTIONS(5398), - [aux_sym_implicit_statement_token4] = ACTIONS(5398), - [aux_sym_save_statement_token1] = ACTIONS(5398), - [aux_sym_private_statement_token1] = ACTIONS(5398), - [aux_sym_public_statement_token1] = ACTIONS(5398), - [aux_sym_namelist_statement_token1] = ACTIONS(5398), - [aux_sym_common_statement_token1] = ACTIONS(5398), - [aux_sym_import_statement_token1] = ACTIONS(5398), - [aux_sym_derived_type_definition_token1] = ACTIONS(5398), - [aux_sym_abstract_specifier_token1] = ACTIONS(5398), - [aux_sym_procedure_attribute_token6] = ACTIONS(5398), - [aux_sym_variable_attributes_token1] = ACTIONS(5398), - [aux_sym_variable_attributes_token2] = ACTIONS(5398), - [aux_sym_variable_attributes_token3] = ACTIONS(5398), - [aux_sym_variable_attributes_token4] = ACTIONS(5398), - [aux_sym_variable_attributes_token5] = ACTIONS(5398), - [aux_sym__intrinsic_type_token1] = ACTIONS(5398), - [aux_sym__intrinsic_type_token2] = ACTIONS(5398), - [aux_sym__intrinsic_type_token3] = ACTIONS(5398), - [aux_sym__intrinsic_type_token4] = ACTIONS(5398), - [aux_sym__intrinsic_type_token6] = ACTIONS(5398), - [aux_sym__intrinsic_type_token7] = ACTIONS(5398), - [aux_sym__intrinsic_type_token8] = ACTIONS(5398), - [aux_sym__intrinsic_type_token9] = ACTIONS(5398), - [aux_sym__intrinsic_type_token10] = ACTIONS(5398), - [aux_sym_derived_type_token1] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5398), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5398), - [aux_sym_type_qualifier_token1] = ACTIONS(5398), - [aux_sym_type_qualifier_token2] = ACTIONS(5398), - [aux_sym_equivalence_statement_token1] = ACTIONS(5398), - [anon_sym_SEMI] = ACTIONS(5400), - [aux_sym_stop_statement_token1] = ACTIONS(5398), - [aux_sym_stop_statement_token2] = ACTIONS(5398), - [aux_sym_subroutine_call_token1] = ACTIONS(5398), - [aux_sym_keyword_statement_token1] = ACTIONS(5398), - [aux_sym_keyword_statement_token2] = ACTIONS(5398), - [aux_sym_keyword_statement_token3] = ACTIONS(5398), - [aux_sym_keyword_statement_token4] = ACTIONS(5398), - [aux_sym_keyword_statement_token6] = ACTIONS(5398), - [aux_sym_keyword_statement_token7] = ACTIONS(5398), - [aux_sym_include_statement_token1] = ACTIONS(5398), - [aux_sym_data_statement_token1] = ACTIONS(5398), - [aux_sym_do_loop_statement_token1] = ACTIONS(5398), - [aux_sym__inline_if_statement_token1] = ACTIONS(5398), - [aux_sym_end_if_statement_token1] = ACTIONS(5398), - [aux_sym_elseif_clause_token2] = ACTIONS(5398), - [aux_sym__inline_where_statement_token1] = ACTIONS(5398), - [aux_sym__forall_control_expression_token1] = ACTIONS(5398), - [aux_sym_select_case_statement_token1] = ACTIONS(5398), - [aux_sym_select_case_statement_token3] = ACTIONS(5398), - [aux_sym_select_type_statement_token1] = ACTIONS(5398), - [aux_sym_select_rank_statement_token2] = ACTIONS(5398), - [aux_sym_block_construct_token1] = ACTIONS(5398), - [aux_sym_associate_statement_token1] = ACTIONS(5398), - [aux_sym_format_statement_token1] = ACTIONS(5398), - [aux_sym_print_statement_token1] = ACTIONS(5398), - [aux_sym_open_statement_token1] = ACTIONS(5398), - [aux_sym_close_statement_token1] = ACTIONS(5398), - [aux_sym_inquire_statement_token1] = ACTIONS(5398), - [aux_sym_enum_statement_token1] = ACTIONS(5398), - [aux_sym_file_position_statement_token1] = ACTIONS(5398), - [aux_sym_file_position_statement_token2] = ACTIONS(5398), - [aux_sym_file_position_statement_token3] = ACTIONS(5398), - [aux_sym_file_position_statement_token4] = ACTIONS(5398), - [aux_sym_allocate_statement_token1] = ACTIONS(5398), - [aux_sym_entry_statement_token1] = ACTIONS(5398), - [aux_sym_logical_expression_token5] = ACTIONS(5400), - [anon_sym_DOT] = ACTIONS(5398), - [anon_sym_LPAREN_SLASH] = ACTIONS(5400), - [anon_sym_LBRACK] = ACTIONS(5400), - [aux_sym_boolean_literal_token1] = ACTIONS(5400), - [aux_sym_boolean_literal_token2] = ACTIONS(5400), - [aux_sym_null_literal_token1] = ACTIONS(5398), - [aux_sym_coarray_statement_token1] = ACTIONS(5398), - [aux_sym_coarray_statement_token2] = ACTIONS(5398), - [aux_sym_coarray_statement_token6] = ACTIONS(5398), - [aux_sym_coarray_statement_token8] = ACTIONS(5398), - [aux_sym_coarray_statement_token11] = ACTIONS(5398), - [aux_sym_coarray_statement_token12] = ACTIONS(5398), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5398), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5398), - [aux_sym_identifier_token1] = ACTIONS(5398), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5400), - [sym__float_literal] = ACTIONS(5400), - [sym__boz_literal] = ACTIONS(5400), - [sym__string_literal] = ACTIONS(5400), - [sym__string_literal_kind] = ACTIONS(5400), - }, - [1611] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_LPAREN2] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [anon_sym_SEMI] = ACTIONS(5079), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_subroutine_call_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token1] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_keyword_statement_token4] = ACTIONS(5077), - [aux_sym_keyword_statement_token6] = ACTIONS(5077), - [aux_sym_keyword_statement_token7] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym_do_loop_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym__inline_where_statement_token1] = ACTIONS(5077), - [aux_sym__forall_control_expression_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_select_case_statement_token3] = ACTIONS(5077), - [aux_sym_select_type_statement_token1] = ACTIONS(5077), - [aux_sym_select_rank_statement_token2] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5077), - [aux_sym_associate_statement_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_print_statement_token1] = ACTIONS(5077), - [aux_sym_open_statement_token1] = ACTIONS(5077), - [aux_sym_close_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token1] = ACTIONS(5077), - [aux_sym_file_position_statement_token2] = ACTIONS(5077), - [aux_sym_file_position_statement_token3] = ACTIONS(5077), - [aux_sym_file_position_statement_token4] = ACTIONS(5077), - [aux_sym_allocate_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_logical_expression_token5] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_LPAREN_SLASH] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [aux_sym_boolean_literal_token1] = ACTIONS(5079), - [aux_sym_boolean_literal_token2] = ACTIONS(5079), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - [sym__float_literal] = ACTIONS(5079), - [sym__boz_literal] = ACTIONS(5079), - [sym__string_literal] = ACTIONS(5079), - [sym__string_literal_kind] = ACTIONS(5079), - }, - [1612] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), - }, - [1613] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [1614] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [1615] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), - }, - [1616] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [1556] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1617] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [1557] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token2] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_subroutine_call_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_keyword_statement_token4] = ACTIONS(4379), + [aux_sym_keyword_statement_token6] = ACTIONS(4379), + [aux_sym_keyword_statement_token7] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym_do_loop_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym__inline_where_statement_token1] = ACTIONS(4379), + [aux_sym__forall_control_expression_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token3] = ACTIONS(4379), + [aux_sym_select_type_statement_token1] = ACTIONS(4379), + [aux_sym_select_rank_statement_token2] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_associate_statement_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_print_statement_token1] = ACTIONS(4379), + [aux_sym_open_statement_token1] = ACTIONS(4379), + [aux_sym_close_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token2] = ACTIONS(4379), + [aux_sym_file_position_statement_token3] = ACTIONS(4379), + [aux_sym_file_position_statement_token4] = ACTIONS(4379), + [aux_sym_allocate_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_logical_expression_token5] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LPAREN_SLASH] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [aux_sym_boolean_literal_token1] = ACTIONS(4381), + [aux_sym_boolean_literal_token2] = ACTIONS(4381), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [1618] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_LPAREN2] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5023), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_subroutine_call_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token1] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_keyword_statement_token4] = ACTIONS(5021), - [aux_sym_keyword_statement_token6] = ACTIONS(5021), - [aux_sym_keyword_statement_token7] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym_do_loop_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym__inline_where_statement_token1] = ACTIONS(5021), - [aux_sym__forall_control_expression_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_select_case_statement_token3] = ACTIONS(5021), - [aux_sym_select_type_statement_token1] = ACTIONS(5021), - [aux_sym_select_rank_statement_token2] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5021), - [aux_sym_associate_statement_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_print_statement_token1] = ACTIONS(5021), - [aux_sym_open_statement_token1] = ACTIONS(5021), - [aux_sym_close_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token1] = ACTIONS(5021), - [aux_sym_file_position_statement_token2] = ACTIONS(5021), - [aux_sym_file_position_statement_token3] = ACTIONS(5021), - [aux_sym_file_position_statement_token4] = ACTIONS(5021), - [aux_sym_allocate_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_logical_expression_token5] = ACTIONS(5023), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_LPAREN_SLASH] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [aux_sym_boolean_literal_token1] = ACTIONS(5023), - [aux_sym_boolean_literal_token2] = ACTIONS(5023), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - [sym__float_literal] = ACTIONS(5023), - [sym__boz_literal] = ACTIONS(5023), - [sym__string_literal] = ACTIONS(5023), - [sym__string_literal_kind] = ACTIONS(5023), - }, - [1619] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [anon_sym_SEMI] = ACTIONS(5027), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_subroutine_call_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token1] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_keyword_statement_token4] = ACTIONS(5025), - [aux_sym_keyword_statement_token6] = ACTIONS(5025), - [aux_sym_keyword_statement_token7] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym_do_loop_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym__inline_where_statement_token1] = ACTIONS(5025), - [aux_sym__forall_control_expression_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_select_case_statement_token3] = ACTIONS(5025), - [aux_sym_select_type_statement_token1] = ACTIONS(5025), - [aux_sym_select_rank_statement_token2] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5025), - [aux_sym_associate_statement_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_print_statement_token1] = ACTIONS(5025), - [aux_sym_open_statement_token1] = ACTIONS(5025), - [aux_sym_close_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token1] = ACTIONS(5025), - [aux_sym_file_position_statement_token2] = ACTIONS(5025), - [aux_sym_file_position_statement_token3] = ACTIONS(5025), - [aux_sym_file_position_statement_token4] = ACTIONS(5025), - [aux_sym_allocate_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_logical_expression_token5] = ACTIONS(5027), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_LPAREN_SLASH] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [aux_sym_boolean_literal_token1] = ACTIONS(5027), - [aux_sym_boolean_literal_token2] = ACTIONS(5027), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - [sym__float_literal] = ACTIONS(5027), - [sym__boz_literal] = ACTIONS(5027), - [sym__string_literal] = ACTIONS(5027), - [sym__string_literal_kind] = ACTIONS(5027), - }, - [1620] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5039), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_subroutine_call_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token1] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_keyword_statement_token4] = ACTIONS(5037), - [aux_sym_keyword_statement_token6] = ACTIONS(5037), - [aux_sym_keyword_statement_token7] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym_do_loop_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym__inline_where_statement_token1] = ACTIONS(5037), - [aux_sym__forall_control_expression_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_select_case_statement_token3] = ACTIONS(5037), - [aux_sym_select_type_statement_token1] = ACTIONS(5037), - [aux_sym_select_rank_statement_token2] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5037), - [aux_sym_associate_statement_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_print_statement_token1] = ACTIONS(5037), - [aux_sym_open_statement_token1] = ACTIONS(5037), - [aux_sym_close_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token1] = ACTIONS(5037), - [aux_sym_file_position_statement_token2] = ACTIONS(5037), - [aux_sym_file_position_statement_token3] = ACTIONS(5037), - [aux_sym_file_position_statement_token4] = ACTIONS(5037), - [aux_sym_allocate_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_logical_expression_token5] = ACTIONS(5039), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_LPAREN_SLASH] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [aux_sym_boolean_literal_token1] = ACTIONS(5039), - [aux_sym_boolean_literal_token2] = ACTIONS(5039), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - [sym__float_literal] = ACTIONS(5039), - [sym__boz_literal] = ACTIONS(5039), - [sym__string_literal] = ACTIONS(5039), - [sym__string_literal_kind] = ACTIONS(5039), - }, - [1621] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_LPAREN2] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [anon_sym_SEMI] = ACTIONS(5051), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_subroutine_call_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token1] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_keyword_statement_token4] = ACTIONS(5049), - [aux_sym_keyword_statement_token6] = ACTIONS(5049), - [aux_sym_keyword_statement_token7] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym_do_loop_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym__inline_where_statement_token1] = ACTIONS(5049), - [aux_sym__forall_control_expression_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_select_case_statement_token3] = ACTIONS(5049), - [aux_sym_select_type_statement_token1] = ACTIONS(5049), - [aux_sym_select_rank_statement_token2] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5049), - [aux_sym_associate_statement_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_print_statement_token1] = ACTIONS(5049), - [aux_sym_open_statement_token1] = ACTIONS(5049), - [aux_sym_close_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token1] = ACTIONS(5049), - [aux_sym_file_position_statement_token2] = ACTIONS(5049), - [aux_sym_file_position_statement_token3] = ACTIONS(5049), - [aux_sym_file_position_statement_token4] = ACTIONS(5049), - [aux_sym_allocate_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_logical_expression_token5] = ACTIONS(5051), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_LPAREN_SLASH] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [aux_sym_boolean_literal_token1] = ACTIONS(5051), - [aux_sym_boolean_literal_token2] = ACTIONS(5051), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - [sym__float_literal] = ACTIONS(5051), - [sym__boz_literal] = ACTIONS(5051), - [sym__string_literal] = ACTIONS(5051), - [sym__string_literal_kind] = ACTIONS(5051), + [sym__integer_literal] = ACTIONS(4381), + [sym__float_literal] = ACTIONS(4381), + [sym__boz_literal] = ACTIONS(4381), + [sym__string_literal] = ACTIONS(4381), + [sym__string_literal_kind] = ACTIONS(4381), }, - [1622] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_LPAREN2] = ACTIONS(5029), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5031), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_subroutine_call_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token1] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_keyword_statement_token4] = ACTIONS(5029), - [aux_sym_keyword_statement_token6] = ACTIONS(5029), - [aux_sym_keyword_statement_token7] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym_do_loop_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym__inline_where_statement_token1] = ACTIONS(5029), - [aux_sym__forall_control_expression_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_select_case_statement_token3] = ACTIONS(5029), - [aux_sym_select_type_statement_token1] = ACTIONS(5029), - [aux_sym_select_rank_statement_token2] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5029), - [aux_sym_associate_statement_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_print_statement_token1] = ACTIONS(5029), - [aux_sym_open_statement_token1] = ACTIONS(5029), - [aux_sym_close_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token1] = ACTIONS(5029), - [aux_sym_file_position_statement_token2] = ACTIONS(5029), - [aux_sym_file_position_statement_token3] = ACTIONS(5029), - [aux_sym_file_position_statement_token4] = ACTIONS(5029), - [aux_sym_allocate_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_logical_expression_token5] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_LPAREN_SLASH] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [aux_sym_boolean_literal_token1] = ACTIONS(5031), - [aux_sym_boolean_literal_token2] = ACTIONS(5031), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - [sym__float_literal] = ACTIONS(5031), - [sym__boz_literal] = ACTIONS(5031), - [sym__string_literal] = ACTIONS(5031), - [sym__string_literal_kind] = ACTIONS(5031), + [1558] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_LPAREN2] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_end_function_statement_token1] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_subroutine_call_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_keyword_statement_token4] = ACTIONS(5055), + [aux_sym_keyword_statement_token6] = ACTIONS(5055), + [aux_sym_keyword_statement_token7] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym_do_loop_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym__inline_where_statement_token1] = ACTIONS(5055), + [aux_sym__forall_control_expression_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token3] = ACTIONS(5055), + [aux_sym_select_type_statement_token1] = ACTIONS(5055), + [aux_sym_select_rank_statement_token2] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_associate_statement_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_print_statement_token1] = ACTIONS(5055), + [aux_sym_open_statement_token1] = ACTIONS(5055), + [aux_sym_close_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token2] = ACTIONS(5055), + [aux_sym_file_position_statement_token3] = ACTIONS(5055), + [aux_sym_file_position_statement_token4] = ACTIONS(5055), + [aux_sym_allocate_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_logical_expression_token5] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_LPAREN_SLASH] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [aux_sym_boolean_literal_token1] = ACTIONS(5057), + [aux_sym_boolean_literal_token2] = ACTIONS(5057), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + [sym__float_literal] = ACTIONS(5057), + [sym__boz_literal] = ACTIONS(5057), + [sym__string_literal] = ACTIONS(5057), + [sym__string_literal_kind] = ACTIONS(5057), }, - [1623] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_LPAREN2] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5035), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_subroutine_call_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token1] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_keyword_statement_token4] = ACTIONS(5033), - [aux_sym_keyword_statement_token6] = ACTIONS(5033), - [aux_sym_keyword_statement_token7] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym_do_loop_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym__inline_where_statement_token1] = ACTIONS(5033), - [aux_sym__forall_control_expression_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_select_case_statement_token3] = ACTIONS(5033), - [aux_sym_select_type_statement_token1] = ACTIONS(5033), - [aux_sym_select_rank_statement_token2] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5033), - [aux_sym_associate_statement_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_print_statement_token1] = ACTIONS(5033), - [aux_sym_open_statement_token1] = ACTIONS(5033), - [aux_sym_close_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token1] = ACTIONS(5033), - [aux_sym_file_position_statement_token2] = ACTIONS(5033), - [aux_sym_file_position_statement_token3] = ACTIONS(5033), - [aux_sym_file_position_statement_token4] = ACTIONS(5033), - [aux_sym_allocate_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_logical_expression_token5] = ACTIONS(5035), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_LPAREN_SLASH] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [aux_sym_boolean_literal_token1] = ACTIONS(5035), - [aux_sym_boolean_literal_token2] = ACTIONS(5035), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - [sym__float_literal] = ACTIONS(5035), - [sym__boz_literal] = ACTIONS(5035), - [sym__string_literal] = ACTIONS(5035), - [sym__string_literal_kind] = ACTIONS(5035), + [1559] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token2] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_subroutine_call_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_keyword_statement_token4] = ACTIONS(4383), + [aux_sym_keyword_statement_token6] = ACTIONS(4383), + [aux_sym_keyword_statement_token7] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym_do_loop_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym__inline_where_statement_token1] = ACTIONS(4383), + [aux_sym__forall_control_expression_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token3] = ACTIONS(4383), + [aux_sym_select_type_statement_token1] = ACTIONS(4383), + [aux_sym_select_rank_statement_token2] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_associate_statement_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_print_statement_token1] = ACTIONS(4383), + [aux_sym_open_statement_token1] = ACTIONS(4383), + [aux_sym_close_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token2] = ACTIONS(4383), + [aux_sym_file_position_statement_token3] = ACTIONS(4383), + [aux_sym_file_position_statement_token4] = ACTIONS(4383), + [aux_sym_allocate_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_logical_expression_token5] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LPAREN_SLASH] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [aux_sym_boolean_literal_token1] = ACTIONS(4385), + [aux_sym_boolean_literal_token2] = ACTIONS(4385), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4385), + [sym__float_literal] = ACTIONS(4385), + [sym__boz_literal] = ACTIONS(4385), + [sym__string_literal] = ACTIONS(4385), + [sym__string_literal_kind] = ACTIONS(4385), }, - [1624] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_LPAREN2] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [anon_sym_SEMI] = ACTIONS(4463), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_subroutine_call_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token1] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_keyword_statement_token4] = ACTIONS(4461), - [aux_sym_keyword_statement_token6] = ACTIONS(4461), - [aux_sym_keyword_statement_token7] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym_do_loop_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym__inline_where_statement_token1] = ACTIONS(4461), - [aux_sym__forall_control_expression_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_select_case_statement_token3] = ACTIONS(4461), - [aux_sym_select_type_statement_token1] = ACTIONS(4461), - [aux_sym_select_rank_statement_token2] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4461), - [aux_sym_associate_statement_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_print_statement_token1] = ACTIONS(4461), - [aux_sym_open_statement_token1] = ACTIONS(4461), - [aux_sym_close_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token1] = ACTIONS(4461), - [aux_sym_file_position_statement_token2] = ACTIONS(4461), - [aux_sym_file_position_statement_token3] = ACTIONS(4461), - [aux_sym_file_position_statement_token4] = ACTIONS(4461), - [aux_sym_allocate_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_logical_expression_token5] = ACTIONS(4463), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_LPAREN_SLASH] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4463), - [aux_sym_boolean_literal_token1] = ACTIONS(4463), - [aux_sym_boolean_literal_token2] = ACTIONS(4463), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - [sym__float_literal] = ACTIONS(4463), - [sym__boz_literal] = ACTIONS(4463), - [sym__string_literal] = ACTIONS(4463), - [sym__string_literal_kind] = ACTIONS(4463), + [1560] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1625] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_LPAREN2] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_subroutine_call_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token1] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_keyword_statement_token4] = ACTIONS(5073), - [aux_sym_keyword_statement_token6] = ACTIONS(5073), - [aux_sym_keyword_statement_token7] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym_do_loop_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym__inline_where_statement_token1] = ACTIONS(5073), - [aux_sym__forall_control_expression_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_select_case_statement_token3] = ACTIONS(5073), - [aux_sym_select_type_statement_token1] = ACTIONS(5073), - [aux_sym_select_rank_statement_token2] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5073), - [aux_sym_associate_statement_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_print_statement_token1] = ACTIONS(5073), - [aux_sym_open_statement_token1] = ACTIONS(5073), - [aux_sym_close_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token1] = ACTIONS(5073), - [aux_sym_file_position_statement_token2] = ACTIONS(5073), - [aux_sym_file_position_statement_token3] = ACTIONS(5073), - [aux_sym_file_position_statement_token4] = ACTIONS(5073), - [aux_sym_allocate_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_logical_expression_token5] = ACTIONS(5075), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LPAREN_SLASH] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [aux_sym_boolean_literal_token1] = ACTIONS(5075), - [aux_sym_boolean_literal_token2] = ACTIONS(5075), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - [sym__float_literal] = ACTIONS(5075), - [sym__boz_literal] = ACTIONS(5075), - [sym__string_literal] = ACTIONS(5075), - [sym__string_literal_kind] = ACTIONS(5075), + [1561] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_LPAREN2] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_end_function_statement_token1] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_subroutine_call_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_keyword_statement_token4] = ACTIONS(5059), + [aux_sym_keyword_statement_token6] = ACTIONS(5059), + [aux_sym_keyword_statement_token7] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym_do_loop_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym__inline_where_statement_token1] = ACTIONS(5059), + [aux_sym__forall_control_expression_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token3] = ACTIONS(5059), + [aux_sym_select_type_statement_token1] = ACTIONS(5059), + [aux_sym_select_rank_statement_token2] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_associate_statement_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_print_statement_token1] = ACTIONS(5059), + [aux_sym_open_statement_token1] = ACTIONS(5059), + [aux_sym_close_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token2] = ACTIONS(5059), + [aux_sym_file_position_statement_token3] = ACTIONS(5059), + [aux_sym_file_position_statement_token4] = ACTIONS(5059), + [aux_sym_allocate_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_logical_expression_token5] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [aux_sym_boolean_literal_token1] = ACTIONS(5061), + [aux_sym_boolean_literal_token2] = ACTIONS(5061), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + [sym__float_literal] = ACTIONS(5061), + [sym__boz_literal] = ACTIONS(5061), + [sym__string_literal] = ACTIONS(5061), + [sym__string_literal_kind] = ACTIONS(5061), }, - [1626] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_LPAREN2] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [anon_sym_SEMI] = ACTIONS(5043), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_subroutine_call_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token1] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_keyword_statement_token4] = ACTIONS(5041), - [aux_sym_keyword_statement_token6] = ACTIONS(5041), - [aux_sym_keyword_statement_token7] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym_do_loop_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym__inline_where_statement_token1] = ACTIONS(5041), - [aux_sym__forall_control_expression_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_select_case_statement_token3] = ACTIONS(5041), - [aux_sym_select_type_statement_token1] = ACTIONS(5041), - [aux_sym_select_rank_statement_token2] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5041), - [aux_sym_associate_statement_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_print_statement_token1] = ACTIONS(5041), - [aux_sym_open_statement_token1] = ACTIONS(5041), - [aux_sym_close_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token1] = ACTIONS(5041), - [aux_sym_file_position_statement_token2] = ACTIONS(5041), - [aux_sym_file_position_statement_token3] = ACTIONS(5041), - [aux_sym_file_position_statement_token4] = ACTIONS(5041), - [aux_sym_allocate_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_logical_expression_token5] = ACTIONS(5043), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_LPAREN_SLASH] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5043), - [aux_sym_boolean_literal_token1] = ACTIONS(5043), - [aux_sym_boolean_literal_token2] = ACTIONS(5043), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - [sym__float_literal] = ACTIONS(5043), - [sym__boz_literal] = ACTIONS(5043), - [sym__string_literal] = ACTIONS(5043), - [sym__string_literal_kind] = ACTIONS(5043), + [1562] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_end_function_statement_token1] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [1627] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_LPAREN2] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [anon_sym_SEMI] = ACTIONS(5047), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_subroutine_call_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token1] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_keyword_statement_token4] = ACTIONS(5045), - [aux_sym_keyword_statement_token6] = ACTIONS(5045), - [aux_sym_keyword_statement_token7] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym_do_loop_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym__inline_where_statement_token1] = ACTIONS(5045), - [aux_sym__forall_control_expression_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_select_case_statement_token3] = ACTIONS(5045), - [aux_sym_select_type_statement_token1] = ACTIONS(5045), - [aux_sym_select_rank_statement_token2] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5045), - [aux_sym_associate_statement_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_print_statement_token1] = ACTIONS(5045), - [aux_sym_open_statement_token1] = ACTIONS(5045), - [aux_sym_close_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token1] = ACTIONS(5045), - [aux_sym_file_position_statement_token2] = ACTIONS(5045), - [aux_sym_file_position_statement_token3] = ACTIONS(5045), - [aux_sym_file_position_statement_token4] = ACTIONS(5045), - [aux_sym_allocate_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_logical_expression_token5] = ACTIONS(5047), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_LPAREN_SLASH] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [aux_sym_boolean_literal_token1] = ACTIONS(5047), - [aux_sym_boolean_literal_token2] = ACTIONS(5047), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - [sym__float_literal] = ACTIONS(5047), - [sym__boz_literal] = ACTIONS(5047), - [sym__string_literal] = ACTIONS(5047), - [sym__string_literal_kind] = ACTIONS(5047), + [1563] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_subroutine_call_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_keyword_statement_token4] = ACTIONS(4986), + [aux_sym_keyword_statement_token6] = ACTIONS(4986), + [aux_sym_keyword_statement_token7] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym_do_loop_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym__inline_where_statement_token1] = ACTIONS(4986), + [aux_sym__forall_control_expression_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token3] = ACTIONS(4986), + [aux_sym_select_type_statement_token1] = ACTIONS(4986), + [aux_sym_select_rank_statement_token2] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_associate_statement_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_print_statement_token1] = ACTIONS(4986), + [aux_sym_open_statement_token1] = ACTIONS(4986), + [aux_sym_close_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token2] = ACTIONS(4986), + [aux_sym_file_position_statement_token3] = ACTIONS(4986), + [aux_sym_file_position_statement_token4] = ACTIONS(4986), + [aux_sym_allocate_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_logical_expression_token5] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LPAREN_SLASH] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [aux_sym_boolean_literal_token1] = ACTIONS(4988), + [aux_sym_boolean_literal_token2] = ACTIONS(4988), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + [sym__float_literal] = ACTIONS(4988), + [sym__boz_literal] = ACTIONS(4988), + [sym__string_literal] = ACTIONS(4988), + [sym__string_literal_kind] = ACTIONS(4988), }, - [1628] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_LPAREN2] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [anon_sym_SEMI] = ACTIONS(4483), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_subroutine_call_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token1] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_keyword_statement_token4] = ACTIONS(4481), - [aux_sym_keyword_statement_token6] = ACTIONS(4481), - [aux_sym_keyword_statement_token7] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym_do_loop_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym__inline_where_statement_token1] = ACTIONS(4481), - [aux_sym__forall_control_expression_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_select_case_statement_token3] = ACTIONS(4481), - [aux_sym_select_type_statement_token1] = ACTIONS(4481), - [aux_sym_select_rank_statement_token2] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4481), - [aux_sym_associate_statement_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_print_statement_token1] = ACTIONS(4481), - [aux_sym_open_statement_token1] = ACTIONS(4481), - [aux_sym_close_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token1] = ACTIONS(4481), - [aux_sym_file_position_statement_token2] = ACTIONS(4481), - [aux_sym_file_position_statement_token3] = ACTIONS(4481), - [aux_sym_file_position_statement_token4] = ACTIONS(4481), - [aux_sym_allocate_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_logical_expression_token5] = ACTIONS(4483), - [anon_sym_DOT] = ACTIONS(4481), - [anon_sym_LPAREN_SLASH] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [aux_sym_boolean_literal_token1] = ACTIONS(4483), - [aux_sym_boolean_literal_token2] = ACTIONS(4483), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - [sym__float_literal] = ACTIONS(4483), - [sym__boz_literal] = ACTIONS(4483), - [sym__string_literal] = ACTIONS(4483), - [sym__string_literal_kind] = ACTIONS(4483), + [1564] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token2] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_subroutine_call_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_keyword_statement_token4] = ACTIONS(4387), + [aux_sym_keyword_statement_token6] = ACTIONS(4387), + [aux_sym_keyword_statement_token7] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym_do_loop_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym__inline_where_statement_token1] = ACTIONS(4387), + [aux_sym__forall_control_expression_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token3] = ACTIONS(4387), + [aux_sym_select_type_statement_token1] = ACTIONS(4387), + [aux_sym_select_rank_statement_token2] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_associate_statement_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_print_statement_token1] = ACTIONS(4387), + [aux_sym_open_statement_token1] = ACTIONS(4387), + [aux_sym_close_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token2] = ACTIONS(4387), + [aux_sym_file_position_statement_token3] = ACTIONS(4387), + [aux_sym_file_position_statement_token4] = ACTIONS(4387), + [aux_sym_allocate_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_logical_expression_token5] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LPAREN_SLASH] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [aux_sym_boolean_literal_token1] = ACTIONS(4389), + [aux_sym_boolean_literal_token2] = ACTIONS(4389), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4389), + [sym__float_literal] = ACTIONS(4389), + [sym__boz_literal] = ACTIONS(4389), + [sym__string_literal] = ACTIONS(4389), + [sym__string_literal_kind] = ACTIONS(4389), }, - [1629] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), + [1565] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [anon_sym_SEMI] = ACTIONS(4489), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_subroutine_call_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token1] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_keyword_statement_token4] = ACTIONS(4487), - [aux_sym_keyword_statement_token6] = ACTIONS(4487), - [aux_sym_keyword_statement_token7] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym_do_loop_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym__inline_where_statement_token1] = ACTIONS(4487), - [aux_sym__forall_control_expression_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_select_case_statement_token3] = ACTIONS(4487), - [aux_sym_select_type_statement_token1] = ACTIONS(4487), - [aux_sym_select_rank_statement_token2] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4487), - [aux_sym_associate_statement_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_print_statement_token1] = ACTIONS(4487), - [aux_sym_open_statement_token1] = ACTIONS(4487), - [aux_sym_close_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token1] = ACTIONS(4487), - [aux_sym_file_position_statement_token2] = ACTIONS(4487), - [aux_sym_file_position_statement_token3] = ACTIONS(4487), - [aux_sym_file_position_statement_token4] = ACTIONS(4487), - [aux_sym_allocate_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_logical_expression_token5] = ACTIONS(4489), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_LPAREN_SLASH] = ACTIONS(4489), - [anon_sym_LBRACK] = ACTIONS(4489), - [aux_sym_boolean_literal_token1] = ACTIONS(4489), - [aux_sym_boolean_literal_token2] = ACTIONS(4489), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_end_function_statement_token1] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - [sym__float_literal] = ACTIONS(4489), - [sym__boz_literal] = ACTIONS(4489), - [sym__string_literal] = ACTIONS(4489), - [sym__string_literal_kind] = ACTIONS(4489), - }, - [1630] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_LPAREN2] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [anon_sym_SEMI] = ACTIONS(5055), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_subroutine_call_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token1] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_keyword_statement_token4] = ACTIONS(5053), - [aux_sym_keyword_statement_token6] = ACTIONS(5053), - [aux_sym_keyword_statement_token7] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym_do_loop_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym__inline_where_statement_token1] = ACTIONS(5053), - [aux_sym__forall_control_expression_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_select_case_statement_token3] = ACTIONS(5053), - [aux_sym_select_type_statement_token1] = ACTIONS(5053), - [aux_sym_select_rank_statement_token2] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5053), - [aux_sym_associate_statement_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_print_statement_token1] = ACTIONS(5053), - [aux_sym_open_statement_token1] = ACTIONS(5053), - [aux_sym_close_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token1] = ACTIONS(5053), - [aux_sym_file_position_statement_token2] = ACTIONS(5053), - [aux_sym_file_position_statement_token3] = ACTIONS(5053), - [aux_sym_file_position_statement_token4] = ACTIONS(5053), - [aux_sym_allocate_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_logical_expression_token5] = ACTIONS(5055), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_LPAREN_SLASH] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [aux_sym_boolean_literal_token1] = ACTIONS(5055), - [aux_sym_boolean_literal_token2] = ACTIONS(5055), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - [sym__float_literal] = ACTIONS(5055), - [sym__boz_literal] = ACTIONS(5055), - [sym__string_literal] = ACTIONS(5055), - [sym__string_literal_kind] = ACTIONS(5055), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [1631] = { - [aux_sym_preproc_include_token1] = ACTIONS(4972), - [aux_sym_preproc_def_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), - [sym_preproc_directive] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_PLUS] = ACTIONS(4974), - [anon_sym_DASH] = ACTIONS(4974), + [1566] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4972), - [aux_sym_interface_statement_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), - [aux_sym_language_binding_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token3] = ACTIONS(4972), - [aux_sym_use_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token2] = ACTIONS(4972), - [aux_sym_implicit_statement_token1] = ACTIONS(4972), - [aux_sym_implicit_statement_token3] = ACTIONS(4972), - [aux_sym_implicit_statement_token4] = ACTIONS(4972), - [aux_sym_save_statement_token1] = ACTIONS(4972), - [aux_sym_private_statement_token1] = ACTIONS(4972), - [aux_sym_public_statement_token1] = ACTIONS(4972), - [aux_sym_namelist_statement_token1] = ACTIONS(4972), - [aux_sym_common_statement_token1] = ACTIONS(4972), - [aux_sym_import_statement_token1] = ACTIONS(4972), - [aux_sym_derived_type_definition_token1] = ACTIONS(4972), - [aux_sym_abstract_specifier_token1] = ACTIONS(4972), - [aux_sym_procedure_attribute_token6] = ACTIONS(4972), - [aux_sym_variable_attributes_token1] = ACTIONS(4972), - [aux_sym_variable_attributes_token2] = ACTIONS(4972), - [aux_sym_variable_attributes_token3] = ACTIONS(4972), - [aux_sym_variable_attributes_token4] = ACTIONS(4972), - [aux_sym_variable_attributes_token5] = ACTIONS(4972), - [aux_sym__intrinsic_type_token1] = ACTIONS(4972), - [aux_sym__intrinsic_type_token2] = ACTIONS(4972), - [aux_sym__intrinsic_type_token3] = ACTIONS(4972), - [aux_sym__intrinsic_type_token4] = ACTIONS(4972), - [aux_sym__intrinsic_type_token6] = ACTIONS(4972), - [aux_sym__intrinsic_type_token7] = ACTIONS(4972), - [aux_sym__intrinsic_type_token8] = ACTIONS(4972), - [aux_sym__intrinsic_type_token9] = ACTIONS(4972), - [aux_sym__intrinsic_type_token10] = ACTIONS(4972), - [aux_sym_derived_type_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), - [aux_sym_type_qualifier_token1] = ACTIONS(4972), - [aux_sym_type_qualifier_token2] = ACTIONS(4972), - [aux_sym_equivalence_statement_token1] = ACTIONS(4972), - [anon_sym_SEMI] = ACTIONS(4974), - [aux_sym_stop_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token2] = ACTIONS(4972), - [aux_sym_subroutine_call_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token1] = ACTIONS(4972), - [aux_sym_keyword_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token3] = ACTIONS(4972), - [aux_sym_keyword_statement_token4] = ACTIONS(4972), - [aux_sym_keyword_statement_token6] = ACTIONS(4972), - [aux_sym_keyword_statement_token7] = ACTIONS(4972), - [aux_sym_include_statement_token1] = ACTIONS(4972), - [aux_sym_data_statement_token1] = ACTIONS(4972), - [aux_sym_do_loop_statement_token1] = ACTIONS(4972), - [aux_sym__inline_if_statement_token1] = ACTIONS(4972), - [aux_sym_end_if_statement_token1] = ACTIONS(4972), - [aux_sym_elseif_clause_token2] = ACTIONS(4972), - [aux_sym__inline_where_statement_token1] = ACTIONS(4972), - [aux_sym__forall_control_expression_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token1] = ACTIONS(4972), - [aux_sym_select_case_statement_token3] = ACTIONS(4972), - [aux_sym_select_type_statement_token1] = ACTIONS(4972), - [aux_sym_select_rank_statement_token2] = ACTIONS(4972), - [aux_sym_block_construct_token1] = ACTIONS(4972), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4972), - [aux_sym_associate_statement_token1] = ACTIONS(4972), - [aux_sym_format_statement_token1] = ACTIONS(4972), - [aux_sym_print_statement_token1] = ACTIONS(4972), - [aux_sym_open_statement_token1] = ACTIONS(4972), - [aux_sym_close_statement_token1] = ACTIONS(4972), - [aux_sym_inquire_statement_token1] = ACTIONS(4972), - [aux_sym_enum_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token1] = ACTIONS(4972), - [aux_sym_file_position_statement_token2] = ACTIONS(4972), - [aux_sym_file_position_statement_token3] = ACTIONS(4972), - [aux_sym_file_position_statement_token4] = ACTIONS(4972), - [aux_sym_allocate_statement_token1] = ACTIONS(4972), - [aux_sym_entry_statement_token1] = ACTIONS(4972), - [aux_sym_logical_expression_token5] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_LPAREN_SLASH] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [aux_sym_boolean_literal_token1] = ACTIONS(4974), - [aux_sym_boolean_literal_token2] = ACTIONS(4974), - [aux_sym_null_literal_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token2] = ACTIONS(4972), - [aux_sym_coarray_statement_token6] = ACTIONS(4972), - [aux_sym_coarray_statement_token8] = ACTIONS(4972), - [aux_sym_coarray_statement_token11] = ACTIONS(4972), - [aux_sym_coarray_statement_token12] = ACTIONS(4972), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), - [aux_sym_identifier_token1] = ACTIONS(4972), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4974), - [sym__float_literal] = ACTIONS(4974), - [sym__boz_literal] = ACTIONS(4974), - [sym__string_literal] = ACTIONS(4974), - [sym__string_literal_kind] = ACTIONS(4974), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [1632] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_LPAREN2] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), + [1567] = { + [aux_sym_preproc_include_token1] = ACTIONS(5410), + [aux_sym_preproc_def_token1] = ACTIONS(5410), + [aux_sym_preproc_if_token1] = ACTIONS(5410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5410), + [sym_preproc_directive] = ACTIONS(5410), + [anon_sym_LPAREN2] = ACTIONS(5410), + [anon_sym_PLUS] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4621), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_subroutine_call_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token1] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_keyword_statement_token4] = ACTIONS(4619), - [aux_sym_keyword_statement_token6] = ACTIONS(4619), - [aux_sym_keyword_statement_token7] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym_do_loop_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym__inline_where_statement_token1] = ACTIONS(4619), - [aux_sym__forall_control_expression_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_select_case_statement_token3] = ACTIONS(4619), - [aux_sym_select_type_statement_token1] = ACTIONS(4619), - [aux_sym_select_rank_statement_token2] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4619), - [aux_sym_associate_statement_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_print_statement_token1] = ACTIONS(4619), - [aux_sym_open_statement_token1] = ACTIONS(4619), - [aux_sym_close_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token1] = ACTIONS(4619), - [aux_sym_file_position_statement_token2] = ACTIONS(4619), - [aux_sym_file_position_statement_token3] = ACTIONS(4619), - [aux_sym_file_position_statement_token4] = ACTIONS(4619), - [aux_sym_allocate_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_logical_expression_token5] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4619), - [anon_sym_LPAREN_SLASH] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), - [aux_sym_boolean_literal_token1] = ACTIONS(4621), - [aux_sym_boolean_literal_token2] = ACTIONS(4621), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), + [aux_sym_end_program_statement_token1] = ACTIONS(5410), + [aux_sym_interface_statement_token1] = ACTIONS(5410), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5410), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5410), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5410), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5410), + [aux_sym_language_binding_token1] = ACTIONS(5410), + [aux_sym_procedure_attributes_token1] = ACTIONS(5410), + [aux_sym_procedure_attributes_token3] = ACTIONS(5410), + [aux_sym_contains_statement_token1] = ACTIONS(5410), + [aux_sym_use_statement_token1] = ACTIONS(5410), + [aux_sym_use_statement_token2] = ACTIONS(5410), + [aux_sym_implicit_statement_token1] = ACTIONS(5410), + [aux_sym_implicit_statement_token3] = ACTIONS(5410), + [aux_sym_implicit_statement_token4] = ACTIONS(5410), + [aux_sym_save_statement_token1] = ACTIONS(5410), + [aux_sym_private_statement_token1] = ACTIONS(5410), + [aux_sym_public_statement_token1] = ACTIONS(5410), + [aux_sym_namelist_statement_token1] = ACTIONS(5410), + [aux_sym_common_statement_token1] = ACTIONS(5410), + [aux_sym_import_statement_token1] = ACTIONS(5410), + [aux_sym_derived_type_definition_token1] = ACTIONS(5410), + [aux_sym_abstract_specifier_token1] = ACTIONS(5410), + [aux_sym_procedure_attribute_token6] = ACTIONS(5410), + [aux_sym_variable_attributes_token1] = ACTIONS(5410), + [aux_sym_variable_attributes_token2] = ACTIONS(5410), + [aux_sym_variable_attributes_token3] = ACTIONS(5410), + [aux_sym_variable_attributes_token4] = ACTIONS(5410), + [aux_sym_variable_attributes_token5] = ACTIONS(5410), + [aux_sym__intrinsic_type_token1] = ACTIONS(5410), + [aux_sym__intrinsic_type_token2] = ACTIONS(5410), + [aux_sym__intrinsic_type_token3] = ACTIONS(5410), + [aux_sym__intrinsic_type_token4] = ACTIONS(5410), + [aux_sym__intrinsic_type_token6] = ACTIONS(5410), + [aux_sym__intrinsic_type_token7] = ACTIONS(5410), + [aux_sym__intrinsic_type_token8] = ACTIONS(5410), + [aux_sym__intrinsic_type_token9] = ACTIONS(5410), + [aux_sym__intrinsic_type_token10] = ACTIONS(5410), + [aux_sym_derived_type_token1] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5410), + [aux_sym_type_qualifier_token1] = ACTIONS(5410), + [aux_sym_type_qualifier_token2] = ACTIONS(5410), + [aux_sym_equivalence_statement_token1] = ACTIONS(5410), + [anon_sym_SEMI] = ACTIONS(5412), + [aux_sym_stop_statement_token1] = ACTIONS(5410), + [aux_sym_stop_statement_token2] = ACTIONS(5410), + [aux_sym_subroutine_call_token1] = ACTIONS(5410), + [aux_sym_keyword_statement_token1] = ACTIONS(5410), + [aux_sym_keyword_statement_token2] = ACTIONS(5410), + [aux_sym_keyword_statement_token3] = ACTIONS(5410), + [aux_sym_keyword_statement_token4] = ACTIONS(5410), + [aux_sym_keyword_statement_token6] = ACTIONS(5410), + [aux_sym_keyword_statement_token7] = ACTIONS(5410), + [aux_sym_include_statement_token1] = ACTIONS(5410), + [aux_sym_data_statement_token1] = ACTIONS(5410), + [aux_sym_do_loop_statement_token1] = ACTIONS(5410), + [aux_sym__inline_if_statement_token1] = ACTIONS(5410), + [aux_sym_end_if_statement_token1] = ACTIONS(5410), + [aux_sym_elseif_clause_token2] = ACTIONS(5410), + [aux_sym__inline_where_statement_token1] = ACTIONS(5410), + [aux_sym__forall_control_expression_token1] = ACTIONS(5410), + [aux_sym_select_case_statement_token1] = ACTIONS(5410), + [aux_sym_select_case_statement_token3] = ACTIONS(5410), + [aux_sym_select_type_statement_token1] = ACTIONS(5410), + [aux_sym_select_rank_statement_token2] = ACTIONS(5410), + [aux_sym_block_construct_token1] = ACTIONS(5410), + [aux_sym_associate_statement_token1] = ACTIONS(5410), + [aux_sym_format_statement_token1] = ACTIONS(5410), + [aux_sym_print_statement_token1] = ACTIONS(5410), + [aux_sym_open_statement_token1] = ACTIONS(5410), + [aux_sym_close_statement_token1] = ACTIONS(5410), + [aux_sym_inquire_statement_token1] = ACTIONS(5410), + [aux_sym_enum_statement_token1] = ACTIONS(5410), + [aux_sym_file_position_statement_token1] = ACTIONS(5410), + [aux_sym_file_position_statement_token2] = ACTIONS(5410), + [aux_sym_file_position_statement_token3] = ACTIONS(5410), + [aux_sym_file_position_statement_token4] = ACTIONS(5410), + [aux_sym_allocate_statement_token1] = ACTIONS(5410), + [aux_sym_entry_statement_token1] = ACTIONS(5410), + [aux_sym_logical_expression_token5] = ACTIONS(5412), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_LPAREN_SLASH] = ACTIONS(5412), + [anon_sym_LBRACK] = ACTIONS(5412), + [aux_sym_boolean_literal_token1] = ACTIONS(5412), + [aux_sym_boolean_literal_token2] = ACTIONS(5412), + [aux_sym_null_literal_token1] = ACTIONS(5410), + [aux_sym_coarray_statement_token1] = ACTIONS(5410), + [aux_sym_coarray_statement_token2] = ACTIONS(5410), + [aux_sym_coarray_statement_token6] = ACTIONS(5410), + [aux_sym_coarray_statement_token8] = ACTIONS(5410), + [aux_sym_coarray_statement_token11] = ACTIONS(5410), + [aux_sym_coarray_statement_token12] = ACTIONS(5410), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5410), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5410), + [aux_sym_identifier_token1] = ACTIONS(5410), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - [sym__float_literal] = ACTIONS(4621), - [sym__boz_literal] = ACTIONS(4621), - [sym__string_literal] = ACTIONS(4621), - [sym__string_literal_kind] = ACTIONS(4621), + [sym__integer_literal] = ACTIONS(5412), + [sym__float_literal] = ACTIONS(5412), + [sym__boz_literal] = ACTIONS(5412), + [sym__string_literal] = ACTIONS(5412), + [sym__string_literal_kind] = ACTIONS(5412), }, - [1633] = { - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), + [1568] = { + [aux_sym_preproc_include_token1] = ACTIONS(5442), + [aux_sym_preproc_def_token1] = ACTIONS(5442), + [aux_sym_preproc_if_token1] = ACTIONS(5442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5442), + [sym_preproc_directive] = ACTIONS(5442), + [anon_sym_LPAREN2] = ACTIONS(5442), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_DASH] = ACTIONS(5444), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [anon_sym_SEMI] = ACTIONS(4513), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_subroutine_call_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token1] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_keyword_statement_token4] = ACTIONS(4511), - [aux_sym_keyword_statement_token6] = ACTIONS(4511), - [aux_sym_keyword_statement_token7] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym_do_loop_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym__inline_where_statement_token1] = ACTIONS(4511), - [aux_sym__forall_control_expression_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_select_case_statement_token3] = ACTIONS(4511), - [aux_sym_select_type_statement_token1] = ACTIONS(4511), - [aux_sym_select_rank_statement_token2] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4511), - [aux_sym_associate_statement_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_print_statement_token1] = ACTIONS(4511), - [aux_sym_open_statement_token1] = ACTIONS(4511), - [aux_sym_close_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token1] = ACTIONS(4511), - [aux_sym_file_position_statement_token2] = ACTIONS(4511), - [aux_sym_file_position_statement_token3] = ACTIONS(4511), - [aux_sym_file_position_statement_token4] = ACTIONS(4511), - [aux_sym_allocate_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_logical_expression_token5] = ACTIONS(4513), - [anon_sym_DOT] = ACTIONS(4511), - [anon_sym_LPAREN_SLASH] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4513), - [aux_sym_boolean_literal_token1] = ACTIONS(4513), - [aux_sym_boolean_literal_token2] = ACTIONS(4513), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token1] = ACTIONS(5442), + [aux_sym_interface_statement_token1] = ACTIONS(5442), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5442), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5442), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5442), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5442), + [aux_sym_language_binding_token1] = ACTIONS(5442), + [aux_sym_procedure_attributes_token1] = ACTIONS(5442), + [aux_sym_procedure_attributes_token3] = ACTIONS(5442), + [aux_sym_contains_statement_token1] = ACTIONS(5442), + [aux_sym_use_statement_token1] = ACTIONS(5442), + [aux_sym_use_statement_token2] = ACTIONS(5442), + [aux_sym_implicit_statement_token1] = ACTIONS(5442), + [aux_sym_implicit_statement_token3] = ACTIONS(5442), + [aux_sym_implicit_statement_token4] = ACTIONS(5442), + [aux_sym_save_statement_token1] = ACTIONS(5442), + [aux_sym_private_statement_token1] = ACTIONS(5442), + [aux_sym_public_statement_token1] = ACTIONS(5442), + [aux_sym_namelist_statement_token1] = ACTIONS(5442), + [aux_sym_common_statement_token1] = ACTIONS(5442), + [aux_sym_import_statement_token1] = ACTIONS(5442), + [aux_sym_derived_type_definition_token1] = ACTIONS(5442), + [aux_sym_abstract_specifier_token1] = ACTIONS(5442), + [aux_sym_procedure_attribute_token6] = ACTIONS(5442), + [aux_sym_variable_attributes_token1] = ACTIONS(5442), + [aux_sym_variable_attributes_token2] = ACTIONS(5442), + [aux_sym_variable_attributes_token3] = ACTIONS(5442), + [aux_sym_variable_attributes_token4] = ACTIONS(5442), + [aux_sym_variable_attributes_token5] = ACTIONS(5442), + [aux_sym__intrinsic_type_token1] = ACTIONS(5442), + [aux_sym__intrinsic_type_token2] = ACTIONS(5442), + [aux_sym__intrinsic_type_token3] = ACTIONS(5442), + [aux_sym__intrinsic_type_token4] = ACTIONS(5442), + [aux_sym__intrinsic_type_token6] = ACTIONS(5442), + [aux_sym__intrinsic_type_token7] = ACTIONS(5442), + [aux_sym__intrinsic_type_token8] = ACTIONS(5442), + [aux_sym__intrinsic_type_token9] = ACTIONS(5442), + [aux_sym__intrinsic_type_token10] = ACTIONS(5442), + [aux_sym_derived_type_token1] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5442), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5442), + [aux_sym_type_qualifier_token1] = ACTIONS(5442), + [aux_sym_type_qualifier_token2] = ACTIONS(5442), + [aux_sym_equivalence_statement_token1] = ACTIONS(5442), + [anon_sym_SEMI] = ACTIONS(5444), + [aux_sym_stop_statement_token1] = ACTIONS(5442), + [aux_sym_stop_statement_token2] = ACTIONS(5442), + [aux_sym_subroutine_call_token1] = ACTIONS(5442), + [aux_sym_keyword_statement_token1] = ACTIONS(5442), + [aux_sym_keyword_statement_token2] = ACTIONS(5442), + [aux_sym_keyword_statement_token3] = ACTIONS(5442), + [aux_sym_keyword_statement_token4] = ACTIONS(5442), + [aux_sym_keyword_statement_token6] = ACTIONS(5442), + [aux_sym_keyword_statement_token7] = ACTIONS(5442), + [aux_sym_include_statement_token1] = ACTIONS(5442), + [aux_sym_data_statement_token1] = ACTIONS(5442), + [aux_sym_do_loop_statement_token1] = ACTIONS(5442), + [aux_sym__inline_if_statement_token1] = ACTIONS(5442), + [aux_sym_end_if_statement_token1] = ACTIONS(5442), + [aux_sym_elseif_clause_token2] = ACTIONS(5442), + [aux_sym__inline_where_statement_token1] = ACTIONS(5442), + [aux_sym__forall_control_expression_token1] = ACTIONS(5442), + [aux_sym_select_case_statement_token1] = ACTIONS(5442), + [aux_sym_select_case_statement_token3] = ACTIONS(5442), + [aux_sym_select_type_statement_token1] = ACTIONS(5442), + [aux_sym_select_rank_statement_token2] = ACTIONS(5442), + [aux_sym_block_construct_token1] = ACTIONS(5442), + [aux_sym_associate_statement_token1] = ACTIONS(5442), + [aux_sym_format_statement_token1] = ACTIONS(5442), + [aux_sym_print_statement_token1] = ACTIONS(5442), + [aux_sym_open_statement_token1] = ACTIONS(5442), + [aux_sym_close_statement_token1] = ACTIONS(5442), + [aux_sym_inquire_statement_token1] = ACTIONS(5442), + [aux_sym_enum_statement_token1] = ACTIONS(5442), + [aux_sym_file_position_statement_token1] = ACTIONS(5442), + [aux_sym_file_position_statement_token2] = ACTIONS(5442), + [aux_sym_file_position_statement_token3] = ACTIONS(5442), + [aux_sym_file_position_statement_token4] = ACTIONS(5442), + [aux_sym_allocate_statement_token1] = ACTIONS(5442), + [aux_sym_entry_statement_token1] = ACTIONS(5442), + [aux_sym_logical_expression_token5] = ACTIONS(5444), + [anon_sym_DOT] = ACTIONS(5442), + [anon_sym_LPAREN_SLASH] = ACTIONS(5444), + [anon_sym_LBRACK] = ACTIONS(5444), + [aux_sym_boolean_literal_token1] = ACTIONS(5444), + [aux_sym_boolean_literal_token2] = ACTIONS(5444), + [aux_sym_null_literal_token1] = ACTIONS(5442), + [aux_sym_coarray_statement_token1] = ACTIONS(5442), + [aux_sym_coarray_statement_token2] = ACTIONS(5442), + [aux_sym_coarray_statement_token6] = ACTIONS(5442), + [aux_sym_coarray_statement_token8] = ACTIONS(5442), + [aux_sym_coarray_statement_token11] = ACTIONS(5442), + [aux_sym_coarray_statement_token12] = ACTIONS(5442), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5442), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5442), + [aux_sym_identifier_token1] = ACTIONS(5442), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), - [sym__float_literal] = ACTIONS(4513), - [sym__boz_literal] = ACTIONS(4513), - [sym__string_literal] = ACTIONS(4513), - [sym__string_literal_kind] = ACTIONS(4513), + [sym__integer_literal] = ACTIONS(5444), + [sym__float_literal] = ACTIONS(5444), + [sym__boz_literal] = ACTIONS(5444), + [sym__string_literal] = ACTIONS(5444), + [sym__string_literal_kind] = ACTIONS(5444), }, - [1634] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [anon_sym_SEMI] = ACTIONS(5067), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_subroutine_call_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token1] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_keyword_statement_token4] = ACTIONS(5065), - [aux_sym_keyword_statement_token6] = ACTIONS(5065), - [aux_sym_keyword_statement_token7] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym_do_loop_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym__inline_where_statement_token1] = ACTIONS(5065), - [aux_sym__forall_control_expression_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_select_case_statement_token3] = ACTIONS(5065), - [aux_sym_select_type_statement_token1] = ACTIONS(5065), - [aux_sym_select_rank_statement_token2] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5065), - [aux_sym_associate_statement_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_print_statement_token1] = ACTIONS(5065), - [aux_sym_open_statement_token1] = ACTIONS(5065), - [aux_sym_close_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token1] = ACTIONS(5065), - [aux_sym_file_position_statement_token2] = ACTIONS(5065), - [aux_sym_file_position_statement_token3] = ACTIONS(5065), - [aux_sym_file_position_statement_token4] = ACTIONS(5065), - [aux_sym_allocate_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_logical_expression_token5] = ACTIONS(5067), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_LPAREN_SLASH] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [aux_sym_boolean_literal_token1] = ACTIONS(5067), - [aux_sym_boolean_literal_token2] = ACTIONS(5067), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - [sym__float_literal] = ACTIONS(5067), - [sym__boz_literal] = ACTIONS(5067), - [sym__string_literal] = ACTIONS(5067), - [sym__string_literal_kind] = ACTIONS(5067), + [1569] = { + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, - [1635] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_LPAREN2] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_subroutine_call_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token1] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_keyword_statement_token4] = ACTIONS(5069), - [aux_sym_keyword_statement_token6] = ACTIONS(5069), - [aux_sym_keyword_statement_token7] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym_do_loop_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym__inline_where_statement_token1] = ACTIONS(5069), - [aux_sym__forall_control_expression_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_select_case_statement_token3] = ACTIONS(5069), - [aux_sym_select_type_statement_token1] = ACTIONS(5069), - [aux_sym_select_rank_statement_token2] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5069), - [aux_sym_associate_statement_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_print_statement_token1] = ACTIONS(5069), - [aux_sym_open_statement_token1] = ACTIONS(5069), - [aux_sym_close_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token1] = ACTIONS(5069), - [aux_sym_file_position_statement_token2] = ACTIONS(5069), - [aux_sym_file_position_statement_token3] = ACTIONS(5069), - [aux_sym_file_position_statement_token4] = ACTIONS(5069), - [aux_sym_allocate_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_logical_expression_token5] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LPAREN_SLASH] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [aux_sym_boolean_literal_token1] = ACTIONS(5071), - [aux_sym_boolean_literal_token2] = ACTIONS(5071), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - [sym__float_literal] = ACTIONS(5071), - [sym__boz_literal] = ACTIONS(5071), - [sym__string_literal] = ACTIONS(5071), - [sym__string_literal_kind] = ACTIONS(5071), + [1570] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_LPAREN2] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_subroutine_call_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_keyword_statement_token4] = ACTIONS(5059), + [aux_sym_keyword_statement_token6] = ACTIONS(5059), + [aux_sym_keyword_statement_token7] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym_do_loop_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym__inline_where_statement_token1] = ACTIONS(5059), + [aux_sym__forall_control_expression_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token3] = ACTIONS(5059), + [aux_sym_select_type_statement_token1] = ACTIONS(5059), + [aux_sym_select_rank_statement_token2] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_associate_statement_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_print_statement_token1] = ACTIONS(5059), + [aux_sym_open_statement_token1] = ACTIONS(5059), + [aux_sym_close_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token2] = ACTIONS(5059), + [aux_sym_file_position_statement_token3] = ACTIONS(5059), + [aux_sym_file_position_statement_token4] = ACTIONS(5059), + [aux_sym_allocate_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_logical_expression_token5] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [aux_sym_boolean_literal_token1] = ACTIONS(5061), + [aux_sym_boolean_literal_token2] = ACTIONS(5061), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + [sym__float_literal] = ACTIONS(5061), + [sym__boz_literal] = ACTIONS(5061), + [sym__string_literal] = ACTIONS(5061), + [sym__string_literal_kind] = ACTIONS(5061), }, - [1636] = { + [1571] = { [aux_sym_preproc_include_token1] = ACTIONS(4990), [aux_sym_preproc_def_token1] = ACTIONS(4990), [aux_sym_preproc_if_token1] = ACTIONS(4990), @@ -306407,10 +298307,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_interface_statement_token1] = ACTIONS(4990), [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4990), [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), [aux_sym_language_binding_token1] = ACTIONS(4990), [aux_sym_procedure_attributes_token1] = ACTIONS(4990), [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_contains_statement_token1] = ACTIONS(4990), [aux_sym_use_statement_token1] = ACTIONS(4990), [aux_sym_use_statement_token2] = ACTIONS(4990), [aux_sym_implicit_statement_token1] = ACTIONS(4990), @@ -306479,7 +298381,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(4990), [aux_sym_select_rank_statement_token2] = ACTIONS(4990), [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4990), [aux_sym_associate_statement_token1] = ACTIONS(4990), [aux_sym_format_statement_token1] = ACTIONS(4990), [aux_sym_print_statement_token1] = ACTIONS(4990), @@ -306516,627 +298417,757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4992), [sym__string_literal_kind] = ACTIONS(4992), }, - [1637] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_subroutine_call_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token1] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_keyword_statement_token4] = ACTIONS(4547), - [aux_sym_keyword_statement_token6] = ACTIONS(4547), - [aux_sym_keyword_statement_token7] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym_do_loop_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym__inline_where_statement_token1] = ACTIONS(4547), - [aux_sym__forall_control_expression_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_select_case_statement_token3] = ACTIONS(4547), - [aux_sym_select_type_statement_token1] = ACTIONS(4547), - [aux_sym_select_rank_statement_token2] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4547), - [aux_sym_associate_statement_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_print_statement_token1] = ACTIONS(4547), - [aux_sym_open_statement_token1] = ACTIONS(4547), - [aux_sym_close_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token1] = ACTIONS(4547), - [aux_sym_file_position_statement_token2] = ACTIONS(4547), - [aux_sym_file_position_statement_token3] = ACTIONS(4547), - [aux_sym_file_position_statement_token4] = ACTIONS(4547), - [aux_sym_allocate_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_logical_expression_token5] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LPAREN_SLASH] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [aux_sym_boolean_literal_token1] = ACTIONS(4549), - [aux_sym_boolean_literal_token2] = ACTIONS(4549), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - [sym__float_literal] = ACTIONS(4549), - [sym__boz_literal] = ACTIONS(4549), - [sym__string_literal] = ACTIONS(4549), - [sym__string_literal_kind] = ACTIONS(4549), + [1572] = { + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_subroutine_call_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_keyword_statement_token4] = ACTIONS(5002), + [aux_sym_keyword_statement_token6] = ACTIONS(5002), + [aux_sym_keyword_statement_token7] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym_do_loop_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym__inline_where_statement_token1] = ACTIONS(5002), + [aux_sym__forall_control_expression_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token3] = ACTIONS(5002), + [aux_sym_select_type_statement_token1] = ACTIONS(5002), + [aux_sym_select_rank_statement_token2] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_associate_statement_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_print_statement_token1] = ACTIONS(5002), + [aux_sym_open_statement_token1] = ACTIONS(5002), + [aux_sym_close_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token2] = ACTIONS(5002), + [aux_sym_file_position_statement_token3] = ACTIONS(5002), + [aux_sym_file_position_statement_token4] = ACTIONS(5002), + [aux_sym_allocate_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_logical_expression_token5] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_LPAREN_SLASH] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [aux_sym_boolean_literal_token1] = ACTIONS(5004), + [aux_sym_boolean_literal_token2] = ACTIONS(5004), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5004), + [sym__float_literal] = ACTIONS(5004), + [sym__boz_literal] = ACTIONS(5004), + [sym__string_literal] = ACTIONS(5004), + [sym__string_literal_kind] = ACTIONS(5004), }, - [1638] = { - [aux_sym_preproc_include_token1] = ACTIONS(5081), - [aux_sym_preproc_def_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), - [sym_preproc_directive] = ACTIONS(5081), - [anon_sym_LPAREN2] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), + [1573] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5081), - [aux_sym_interface_statement_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), - [aux_sym_language_binding_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token3] = ACTIONS(5081), - [aux_sym_use_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token2] = ACTIONS(5081), - [aux_sym_implicit_statement_token1] = ACTIONS(5081), - [aux_sym_implicit_statement_token3] = ACTIONS(5081), - [aux_sym_implicit_statement_token4] = ACTIONS(5081), - [aux_sym_save_statement_token1] = ACTIONS(5081), - [aux_sym_private_statement_token1] = ACTIONS(5081), - [aux_sym_public_statement_token1] = ACTIONS(5081), - [aux_sym_namelist_statement_token1] = ACTIONS(5081), - [aux_sym_common_statement_token1] = ACTIONS(5081), - [aux_sym_import_statement_token1] = ACTIONS(5081), - [aux_sym_derived_type_definition_token1] = ACTIONS(5081), - [aux_sym_abstract_specifier_token1] = ACTIONS(5081), - [aux_sym_procedure_attribute_token6] = ACTIONS(5081), - [aux_sym_variable_attributes_token1] = ACTIONS(5081), - [aux_sym_variable_attributes_token2] = ACTIONS(5081), - [aux_sym_variable_attributes_token3] = ACTIONS(5081), - [aux_sym_variable_attributes_token4] = ACTIONS(5081), - [aux_sym_variable_attributes_token5] = ACTIONS(5081), - [aux_sym__intrinsic_type_token1] = ACTIONS(5081), - [aux_sym__intrinsic_type_token2] = ACTIONS(5081), - [aux_sym__intrinsic_type_token3] = ACTIONS(5081), - [aux_sym__intrinsic_type_token4] = ACTIONS(5081), - [aux_sym__intrinsic_type_token6] = ACTIONS(5081), - [aux_sym__intrinsic_type_token7] = ACTIONS(5081), - [aux_sym__intrinsic_type_token8] = ACTIONS(5081), - [aux_sym__intrinsic_type_token9] = ACTIONS(5081), - [aux_sym__intrinsic_type_token10] = ACTIONS(5081), - [aux_sym_derived_type_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), - [aux_sym_type_qualifier_token1] = ACTIONS(5081), - [aux_sym_type_qualifier_token2] = ACTIONS(5081), - [aux_sym_equivalence_statement_token1] = ACTIONS(5081), - [anon_sym_SEMI] = ACTIONS(5083), - [aux_sym_stop_statement_token1] = ACTIONS(5081), - [aux_sym_stop_statement_token2] = ACTIONS(5081), - [aux_sym_subroutine_call_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token1] = ACTIONS(5081), - [aux_sym_keyword_statement_token2] = ACTIONS(5081), - [aux_sym_keyword_statement_token3] = ACTIONS(5081), - [aux_sym_keyword_statement_token4] = ACTIONS(5081), - [aux_sym_keyword_statement_token6] = ACTIONS(5081), - [aux_sym_keyword_statement_token7] = ACTIONS(5081), - [aux_sym_include_statement_token1] = ACTIONS(5081), - [aux_sym_data_statement_token1] = ACTIONS(5081), - [aux_sym_do_loop_statement_token1] = ACTIONS(5081), - [aux_sym__inline_if_statement_token1] = ACTIONS(5081), - [aux_sym_end_if_statement_token1] = ACTIONS(5081), - [aux_sym_elseif_clause_token2] = ACTIONS(5081), - [aux_sym__inline_where_statement_token1] = ACTIONS(5081), - [aux_sym__forall_control_expression_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token1] = ACTIONS(5081), - [aux_sym_select_case_statement_token3] = ACTIONS(5081), - [aux_sym_select_type_statement_token1] = ACTIONS(5081), - [aux_sym_select_rank_statement_token2] = ACTIONS(5081), - [aux_sym_block_construct_token1] = ACTIONS(5081), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5081), - [aux_sym_associate_statement_token1] = ACTIONS(5081), - [aux_sym_format_statement_token1] = ACTIONS(5081), - [aux_sym_print_statement_token1] = ACTIONS(5081), - [aux_sym_open_statement_token1] = ACTIONS(5081), - [aux_sym_close_statement_token1] = ACTIONS(5081), - [aux_sym_inquire_statement_token1] = ACTIONS(5081), - [aux_sym_enum_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token1] = ACTIONS(5081), - [aux_sym_file_position_statement_token2] = ACTIONS(5081), - [aux_sym_file_position_statement_token3] = ACTIONS(5081), - [aux_sym_file_position_statement_token4] = ACTIONS(5081), - [aux_sym_allocate_statement_token1] = ACTIONS(5081), - [aux_sym_entry_statement_token1] = ACTIONS(5081), - [aux_sym_logical_expression_token5] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_LPAREN_SLASH] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [aux_sym_boolean_literal_token1] = ACTIONS(5083), - [aux_sym_boolean_literal_token2] = ACTIONS(5083), - [aux_sym_null_literal_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token2] = ACTIONS(5081), - [aux_sym_coarray_statement_token6] = ACTIONS(5081), - [aux_sym_coarray_statement_token8] = ACTIONS(5081), - [aux_sym_coarray_statement_token11] = ACTIONS(5081), - [aux_sym_coarray_statement_token12] = ACTIONS(5081), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), - [aux_sym_identifier_token1] = ACTIONS(5081), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5083), - [sym__float_literal] = ACTIONS(5083), - [sym__boz_literal] = ACTIONS(5083), - [sym__string_literal] = ACTIONS(5083), - [sym__string_literal_kind] = ACTIONS(5083), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, - [1639] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_LPAREN2] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [anon_sym_SEMI] = ACTIONS(5059), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_subroutine_call_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token1] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_keyword_statement_token4] = ACTIONS(5057), - [aux_sym_keyword_statement_token6] = ACTIONS(5057), - [aux_sym_keyword_statement_token7] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym_do_loop_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym__inline_where_statement_token1] = ACTIONS(5057), - [aux_sym__forall_control_expression_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_select_case_statement_token3] = ACTIONS(5057), - [aux_sym_select_type_statement_token1] = ACTIONS(5057), - [aux_sym_select_rank_statement_token2] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5057), - [aux_sym_associate_statement_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_print_statement_token1] = ACTIONS(5057), - [aux_sym_open_statement_token1] = ACTIONS(5057), - [aux_sym_close_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token1] = ACTIONS(5057), - [aux_sym_file_position_statement_token2] = ACTIONS(5057), - [aux_sym_file_position_statement_token3] = ACTIONS(5057), - [aux_sym_file_position_statement_token4] = ACTIONS(5057), - [aux_sym_allocate_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_logical_expression_token5] = ACTIONS(5059), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_LPAREN_SLASH] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [aux_sym_boolean_literal_token1] = ACTIONS(5059), - [aux_sym_boolean_literal_token2] = ACTIONS(5059), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - [sym__float_literal] = ACTIONS(5059), - [sym__boz_literal] = ACTIONS(5059), - [sym__string_literal] = ACTIONS(5059), - [sym__string_literal_kind] = ACTIONS(5059), + [1574] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_subroutine_call_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_keyword_statement_token4] = ACTIONS(4998), + [aux_sym_keyword_statement_token6] = ACTIONS(4998), + [aux_sym_keyword_statement_token7] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym_do_loop_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym__inline_where_statement_token1] = ACTIONS(4998), + [aux_sym__forall_control_expression_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token3] = ACTIONS(4998), + [aux_sym_select_type_statement_token1] = ACTIONS(4998), + [aux_sym_select_rank_statement_token2] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_associate_statement_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_print_statement_token1] = ACTIONS(4998), + [aux_sym_open_statement_token1] = ACTIONS(4998), + [aux_sym_close_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token2] = ACTIONS(4998), + [aux_sym_file_position_statement_token3] = ACTIONS(4998), + [aux_sym_file_position_statement_token4] = ACTIONS(4998), + [aux_sym_allocate_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [aux_sym_boolean_literal_token1] = ACTIONS(5000), + [aux_sym_boolean_literal_token2] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + [sym__float_literal] = ACTIONS(5000), + [sym__boz_literal] = ACTIONS(5000), + [sym__string_literal] = ACTIONS(5000), + [sym__string_literal_kind] = ACTIONS(5000), }, - [1640] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [1575] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_subroutine_call_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_keyword_statement_token4] = ACTIONS(5010), + [aux_sym_keyword_statement_token6] = ACTIONS(5010), + [aux_sym_keyword_statement_token7] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym_do_loop_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym__inline_where_statement_token1] = ACTIONS(5010), + [aux_sym__forall_control_expression_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token3] = ACTIONS(5010), + [aux_sym_select_type_statement_token1] = ACTIONS(5010), + [aux_sym_select_rank_statement_token2] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_associate_statement_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_print_statement_token1] = ACTIONS(5010), + [aux_sym_open_statement_token1] = ACTIONS(5010), + [aux_sym_close_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token2] = ACTIONS(5010), + [aux_sym_file_position_statement_token3] = ACTIONS(5010), + [aux_sym_file_position_statement_token4] = ACTIONS(5010), + [aux_sym_allocate_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_logical_expression_token5] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_LPAREN_SLASH] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [aux_sym_boolean_literal_token1] = ACTIONS(5012), + [aux_sym_boolean_literal_token2] = ACTIONS(5012), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + [sym__float_literal] = ACTIONS(5012), + [sym__boz_literal] = ACTIONS(5012), + [sym__string_literal] = ACTIONS(5012), + [sym__string_literal_kind] = ACTIONS(5012), }, - [1641] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_LPAREN2] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [anon_sym_SEMI] = ACTIONS(5063), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_subroutine_call_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token1] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_keyword_statement_token4] = ACTIONS(5061), - [aux_sym_keyword_statement_token6] = ACTIONS(5061), - [aux_sym_keyword_statement_token7] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym_do_loop_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym__inline_where_statement_token1] = ACTIONS(5061), - [aux_sym__forall_control_expression_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_select_case_statement_token3] = ACTIONS(5061), - [aux_sym_select_type_statement_token1] = ACTIONS(5061), - [aux_sym_select_rank_statement_token2] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5061), - [aux_sym_associate_statement_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_print_statement_token1] = ACTIONS(5061), - [aux_sym_open_statement_token1] = ACTIONS(5061), - [aux_sym_close_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token1] = ACTIONS(5061), - [aux_sym_file_position_statement_token2] = ACTIONS(5061), - [aux_sym_file_position_statement_token3] = ACTIONS(5061), - [aux_sym_file_position_statement_token4] = ACTIONS(5061), - [aux_sym_allocate_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_logical_expression_token5] = ACTIONS(5063), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LPAREN_SLASH] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [aux_sym_boolean_literal_token1] = ACTIONS(5063), - [aux_sym_boolean_literal_token2] = ACTIONS(5063), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - [sym__float_literal] = ACTIONS(5063), - [sym__boz_literal] = ACTIONS(5063), - [sym__string_literal] = ACTIONS(5063), - [sym__string_literal_kind] = ACTIONS(5063), + [1576] = { + [aux_sym_preproc_include_token1] = ACTIONS(5418), + [aux_sym_preproc_def_token1] = ACTIONS(5418), + [aux_sym_preproc_if_token1] = ACTIONS(5418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5418), + [sym_preproc_directive] = ACTIONS(5418), + [anon_sym_LPAREN2] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5418), + [aux_sym_interface_statement_token1] = ACTIONS(5418), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5418), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5418), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5418), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5418), + [aux_sym_language_binding_token1] = ACTIONS(5418), + [aux_sym_procedure_attributes_token1] = ACTIONS(5418), + [aux_sym_procedure_attributes_token3] = ACTIONS(5418), + [aux_sym_contains_statement_token1] = ACTIONS(5418), + [aux_sym_use_statement_token1] = ACTIONS(5418), + [aux_sym_use_statement_token2] = ACTIONS(5418), + [aux_sym_implicit_statement_token1] = ACTIONS(5418), + [aux_sym_implicit_statement_token3] = ACTIONS(5418), + [aux_sym_implicit_statement_token4] = ACTIONS(5418), + [aux_sym_save_statement_token1] = ACTIONS(5418), + [aux_sym_private_statement_token1] = ACTIONS(5418), + [aux_sym_public_statement_token1] = ACTIONS(5418), + [aux_sym_namelist_statement_token1] = ACTIONS(5418), + [aux_sym_common_statement_token1] = ACTIONS(5418), + [aux_sym_import_statement_token1] = ACTIONS(5418), + [aux_sym_derived_type_definition_token1] = ACTIONS(5418), + [aux_sym_abstract_specifier_token1] = ACTIONS(5418), + [aux_sym_procedure_attribute_token6] = ACTIONS(5418), + [aux_sym_variable_attributes_token1] = ACTIONS(5418), + [aux_sym_variable_attributes_token2] = ACTIONS(5418), + [aux_sym_variable_attributes_token3] = ACTIONS(5418), + [aux_sym_variable_attributes_token4] = ACTIONS(5418), + [aux_sym_variable_attributes_token5] = ACTIONS(5418), + [aux_sym__intrinsic_type_token1] = ACTIONS(5418), + [aux_sym__intrinsic_type_token2] = ACTIONS(5418), + [aux_sym__intrinsic_type_token3] = ACTIONS(5418), + [aux_sym__intrinsic_type_token4] = ACTIONS(5418), + [aux_sym__intrinsic_type_token6] = ACTIONS(5418), + [aux_sym__intrinsic_type_token7] = ACTIONS(5418), + [aux_sym__intrinsic_type_token8] = ACTIONS(5418), + [aux_sym__intrinsic_type_token9] = ACTIONS(5418), + [aux_sym__intrinsic_type_token10] = ACTIONS(5418), + [aux_sym_derived_type_token1] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5418), + [aux_sym_type_qualifier_token1] = ACTIONS(5418), + [aux_sym_type_qualifier_token2] = ACTIONS(5418), + [aux_sym_equivalence_statement_token1] = ACTIONS(5418), + [anon_sym_SEMI] = ACTIONS(5420), + [aux_sym_stop_statement_token1] = ACTIONS(5418), + [aux_sym_stop_statement_token2] = ACTIONS(5418), + [aux_sym_subroutine_call_token1] = ACTIONS(5418), + [aux_sym_keyword_statement_token1] = ACTIONS(5418), + [aux_sym_keyword_statement_token2] = ACTIONS(5418), + [aux_sym_keyword_statement_token3] = ACTIONS(5418), + [aux_sym_keyword_statement_token4] = ACTIONS(5418), + [aux_sym_keyword_statement_token6] = ACTIONS(5418), + [aux_sym_keyword_statement_token7] = ACTIONS(5418), + [aux_sym_include_statement_token1] = ACTIONS(5418), + [aux_sym_data_statement_token1] = ACTIONS(5418), + [aux_sym_do_loop_statement_token1] = ACTIONS(5418), + [aux_sym__inline_if_statement_token1] = ACTIONS(5418), + [aux_sym_end_if_statement_token1] = ACTIONS(5418), + [aux_sym_elseif_clause_token2] = ACTIONS(5418), + [aux_sym__inline_where_statement_token1] = ACTIONS(5418), + [aux_sym__forall_control_expression_token1] = ACTIONS(5418), + [aux_sym_select_case_statement_token1] = ACTIONS(5418), + [aux_sym_select_case_statement_token3] = ACTIONS(5418), + [aux_sym_select_type_statement_token1] = ACTIONS(5418), + [aux_sym_select_rank_statement_token2] = ACTIONS(5418), + [aux_sym_block_construct_token1] = ACTIONS(5418), + [aux_sym_associate_statement_token1] = ACTIONS(5418), + [aux_sym_format_statement_token1] = ACTIONS(5418), + [aux_sym_print_statement_token1] = ACTIONS(5418), + [aux_sym_open_statement_token1] = ACTIONS(5418), + [aux_sym_close_statement_token1] = ACTIONS(5418), + [aux_sym_inquire_statement_token1] = ACTIONS(5418), + [aux_sym_enum_statement_token1] = ACTIONS(5418), + [aux_sym_file_position_statement_token1] = ACTIONS(5418), + [aux_sym_file_position_statement_token2] = ACTIONS(5418), + [aux_sym_file_position_statement_token3] = ACTIONS(5418), + [aux_sym_file_position_statement_token4] = ACTIONS(5418), + [aux_sym_allocate_statement_token1] = ACTIONS(5418), + [aux_sym_entry_statement_token1] = ACTIONS(5418), + [aux_sym_logical_expression_token5] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_LPAREN_SLASH] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [aux_sym_boolean_literal_token1] = ACTIONS(5420), + [aux_sym_boolean_literal_token2] = ACTIONS(5420), + [aux_sym_null_literal_token1] = ACTIONS(5418), + [aux_sym_coarray_statement_token1] = ACTIONS(5418), + [aux_sym_coarray_statement_token2] = ACTIONS(5418), + [aux_sym_coarray_statement_token6] = ACTIONS(5418), + [aux_sym_coarray_statement_token8] = ACTIONS(5418), + [aux_sym_coarray_statement_token11] = ACTIONS(5418), + [aux_sym_coarray_statement_token12] = ACTIONS(5418), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5418), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5418), + [aux_sym_identifier_token1] = ACTIONS(5418), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5420), + [sym__float_literal] = ACTIONS(5420), + [sym__boz_literal] = ACTIONS(5420), + [sym__string_literal] = ACTIONS(5420), + [sym__string_literal_kind] = ACTIONS(5420), }, - [1642] = { + [1577] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_subroutine_call_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_keyword_statement_token4] = ACTIONS(4387), + [aux_sym_keyword_statement_token6] = ACTIONS(4387), + [aux_sym_keyword_statement_token7] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym_do_loop_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym__inline_where_statement_token1] = ACTIONS(4387), + [aux_sym__forall_control_expression_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token3] = ACTIONS(4387), + [aux_sym_select_type_statement_token1] = ACTIONS(4387), + [aux_sym_select_rank_statement_token2] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_associate_statement_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_print_statement_token1] = ACTIONS(4387), + [aux_sym_open_statement_token1] = ACTIONS(4387), + [aux_sym_close_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token2] = ACTIONS(4387), + [aux_sym_file_position_statement_token3] = ACTIONS(4387), + [aux_sym_file_position_statement_token4] = ACTIONS(4387), + [aux_sym_allocate_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_logical_expression_token5] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LPAREN_SLASH] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [aux_sym_boolean_literal_token1] = ACTIONS(4389), + [aux_sym_boolean_literal_token2] = ACTIONS(4389), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4389), + [sym__float_literal] = ACTIONS(4389), + [sym__boz_literal] = ACTIONS(4389), + [sym__string_literal] = ACTIONS(4389), + [sym__string_literal_kind] = ACTIONS(4389), + }, + [1578] = { [aux_sym_preproc_include_token1] = ACTIONS(4976), [aux_sym_preproc_def_token1] = ACTIONS(4976), [aux_sym_preproc_if_token1] = ACTIONS(4976), @@ -307144,17 +299175,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), [sym_preproc_directive] = ACTIONS(4976), [anon_sym_LPAREN2] = ACTIONS(4976), - [anon_sym_PLUS] = ACTIONS(4978), - [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4976), [aux_sym_interface_statement_token1] = ACTIONS(4976), [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4976), [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), [aux_sym_language_binding_token1] = ACTIONS(4976), [aux_sym_procedure_attributes_token1] = ACTIONS(4976), [aux_sym_procedure_attributes_token3] = ACTIONS(4976), + [aux_sym_contains_statement_token1] = ACTIONS(4976), [aux_sym_use_statement_token1] = ACTIONS(4976), [aux_sym_use_statement_token2] = ACTIONS(4976), [aux_sym_implicit_statement_token1] = ACTIONS(4976), @@ -307200,4416 +299233,1808 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_type_qualifier_token1] = ACTIONS(4976), [aux_sym_type_qualifier_token2] = ACTIONS(4976), [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4980), [aux_sym_stop_statement_token1] = ACTIONS(4976), [aux_sym_stop_statement_token2] = ACTIONS(4976), [aux_sym_subroutine_call_token1] = ACTIONS(4976), [aux_sym_keyword_statement_token1] = ACTIONS(4976), [aux_sym_keyword_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token3] = ACTIONS(4976), - [aux_sym_keyword_statement_token4] = ACTIONS(4976), - [aux_sym_keyword_statement_token6] = ACTIONS(4976), - [aux_sym_keyword_statement_token7] = ACTIONS(4976), - [aux_sym_include_statement_token1] = ACTIONS(4976), - [aux_sym_data_statement_token1] = ACTIONS(4976), - [aux_sym_do_loop_statement_token1] = ACTIONS(4976), - [aux_sym__inline_if_statement_token1] = ACTIONS(4976), - [aux_sym_end_if_statement_token1] = ACTIONS(4976), - [aux_sym_elseif_clause_token2] = ACTIONS(4976), - [aux_sym__inline_where_statement_token1] = ACTIONS(4976), - [aux_sym__forall_control_expression_token1] = ACTIONS(4976), - [aux_sym_select_case_statement_token1] = ACTIONS(4976), - [aux_sym_select_case_statement_token3] = ACTIONS(4976), - [aux_sym_select_type_statement_token1] = ACTIONS(4976), - [aux_sym_select_rank_statement_token2] = ACTIONS(4976), - [aux_sym_block_construct_token1] = ACTIONS(4976), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4976), - [aux_sym_associate_statement_token1] = ACTIONS(4976), - [aux_sym_format_statement_token1] = ACTIONS(4976), - [aux_sym_print_statement_token1] = ACTIONS(4976), - [aux_sym_open_statement_token1] = ACTIONS(4976), - [aux_sym_close_statement_token1] = ACTIONS(4976), - [aux_sym_inquire_statement_token1] = ACTIONS(4976), - [aux_sym_enum_statement_token1] = ACTIONS(4976), - [aux_sym_file_position_statement_token1] = ACTIONS(4976), - [aux_sym_file_position_statement_token2] = ACTIONS(4976), - [aux_sym_file_position_statement_token3] = ACTIONS(4976), - [aux_sym_file_position_statement_token4] = ACTIONS(4976), - [aux_sym_allocate_statement_token1] = ACTIONS(4976), - [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_logical_expression_token5] = ACTIONS(4978), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_LPAREN_SLASH] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [aux_sym_boolean_literal_token1] = ACTIONS(4978), - [aux_sym_boolean_literal_token2] = ACTIONS(4978), - [aux_sym_null_literal_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token2] = ACTIONS(4976), - [aux_sym_coarray_statement_token6] = ACTIONS(4976), - [aux_sym_coarray_statement_token8] = ACTIONS(4976), - [aux_sym_coarray_statement_token11] = ACTIONS(4976), - [aux_sym_coarray_statement_token12] = ACTIONS(4976), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), - [aux_sym_identifier_token1] = ACTIONS(4976), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - [sym__float_literal] = ACTIONS(4978), - [sym__boz_literal] = ACTIONS(4978), - [sym__string_literal] = ACTIONS(4978), - [sym__string_literal_kind] = ACTIONS(4978), - }, - [1643] = { - [sym_statement_label] = STATE(6739), - [sym_statement_label_reference] = STATE(6768), - [sym__io_arguments] = STATE(2672), - [sym_format_identifier] = STATE(6818), - [sym__io_expressions] = STATE(6768), - [sym__expression] = STATE(4565), - [sym_parenthesized_expression] = STATE(4681), - [sym_derived_type_member_expression] = STATE(4681), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(4681), - [sym_math_expression] = STATE(4681), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4681), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(4681), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4681), - [anon_sym_LPAREN2] = ACTIONS(5450), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4325), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(5464), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5466), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [1644] = { - [sym__expression] = STATE(4361), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_COMMA] = ACTIONS(5472), - [anon_sym_LPAREN2] = ACTIONS(5474), - [anon_sym_PLUS] = ACTIONS(5477), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4325), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5480), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(5484), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(5489), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - [sym__external_end_of_statement] = ACTIONS(5480), - }, - [1645] = { - [sym__kind] = STATE(3881), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5502), - [anon_sym_SLASH] = ACTIONS(5502), - [anon_sym_PERCENT] = ACTIONS(5504), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(5504), - [anon_sym_GT] = ACTIONS(5502), - [anon_sym_GT_EQ] = ACTIONS(5504), - [anon_sym_LT_EQ] = ACTIONS(5504), - [anon_sym_LT] = ACTIONS(5502), - [aux_sym_end_program_statement_token1] = ACTIONS(5498), - [anon_sym_EQ] = ACTIONS(5502), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5498), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5498), - [aux_sym_procedure_attributes_token3] = ACTIONS(5498), - [aux_sym_use_statement_token2] = ACTIONS(5498), - [anon_sym_EQ_GT] = ACTIONS(5504), - [aux_sym_implicit_statement_token3] = ACTIONS(5498), - [aux_sym_implicit_statement_token4] = ACTIONS(5498), - [aux_sym_save_statement_token1] = ACTIONS(5498), - [aux_sym_private_statement_token1] = ACTIONS(5498), - [aux_sym_public_statement_token1] = ACTIONS(5498), - [aux_sym_derived_type_definition_token1] = ACTIONS(5498), - [aux_sym_procedure_attribute_token6] = ACTIONS(5498), - [aux_sym_variable_attributes_token2] = ACTIONS(5498), - [aux_sym_variable_attributes_token3] = ACTIONS(5498), - [aux_sym_variable_attributes_token5] = ACTIONS(5498), - [aux_sym__intrinsic_type_token1] = ACTIONS(5498), - [aux_sym__intrinsic_type_token3] = ACTIONS(5498), - [aux_sym__intrinsic_type_token4] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5498), - [aux_sym_type_qualifier_token1] = ACTIONS(5498), - [aux_sym_type_qualifier_token2] = ACTIONS(5498), - [aux_sym_stop_statement_token1] = ACTIONS(5498), - [aux_sym_stop_statement_token2] = ACTIONS(5498), - [aux_sym_subroutine_call_token1] = ACTIONS(5498), - [aux_sym_keyword_statement_token1] = ACTIONS(5498), - [aux_sym_keyword_statement_token2] = ACTIONS(5498), - [aux_sym_keyword_statement_token3] = ACTIONS(5498), - [aux_sym_keyword_statement_token4] = ACTIONS(5498), - [aux_sym_keyword_statement_token6] = ACTIONS(5498), - [aux_sym_keyword_statement_token7] = ACTIONS(5498), - [aux_sym_include_statement_token1] = ACTIONS(5498), - [aux_sym_data_statement_token1] = ACTIONS(5498), - [aux_sym_do_loop_statement_token1] = ACTIONS(5498), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5498), - [aux_sym__inline_if_statement_token1] = ACTIONS(5498), - [aux_sym_end_if_statement_token1] = ACTIONS(5498), - [aux_sym_elseif_clause_token2] = ACTIONS(5498), - [aux_sym__inline_where_statement_token1] = ACTIONS(5498), - [aux_sym__forall_control_expression_token1] = ACTIONS(5498), - [aux_sym_select_case_statement_token1] = ACTIONS(5498), - [aux_sym_select_case_statement_token3] = ACTIONS(5498), - [aux_sym_select_type_statement_token1] = ACTIONS(5498), - [aux_sym_select_rank_statement_token2] = ACTIONS(5498), - [aux_sym_block_construct_token1] = ACTIONS(5498), - [aux_sym_associate_statement_token1] = ACTIONS(5498), - [aux_sym_format_statement_token1] = ACTIONS(5498), - [aux_sym_print_statement_token1] = ACTIONS(5498), - [aux_sym_open_statement_token1] = ACTIONS(5498), - [aux_sym_close_statement_token1] = ACTIONS(5498), - [aux_sym_inquire_statement_token1] = ACTIONS(5498), - [aux_sym_file_position_statement_token1] = ACTIONS(5498), - [aux_sym_file_position_statement_token2] = ACTIONS(5498), - [aux_sym_file_position_statement_token3] = ACTIONS(5498), - [aux_sym_file_position_statement_token4] = ACTIONS(5498), - [aux_sym_allocate_statement_token1] = ACTIONS(5498), - [aux_sym_entry_statement_token1] = ACTIONS(5498), - [aux_sym_logical_expression_token1] = ACTIONS(5504), - [aux_sym_logical_expression_token2] = ACTIONS(5504), - [aux_sym_logical_expression_token3] = ACTIONS(5504), - [aux_sym_logical_expression_token4] = ACTIONS(5504), - [aux_sym_logical_expression_token5] = ACTIONS(5500), - [aux_sym_relational_expression_token1] = ACTIONS(5504), - [aux_sym_relational_expression_token2] = ACTIONS(5504), - [aux_sym_relational_expression_token3] = ACTIONS(5504), - [aux_sym_relational_expression_token4] = ACTIONS(5504), - [aux_sym_relational_expression_token5] = ACTIONS(5504), - [anon_sym_SLASH_EQ] = ACTIONS(5504), - [aux_sym_relational_expression_token6] = ACTIONS(5504), - [anon_sym_SLASH_SLASH] = ACTIONS(5504), - [anon_sym_STAR_STAR] = ACTIONS(5504), - [anon_sym_DOT] = ACTIONS(5498), - [anon_sym_LPAREN_SLASH] = ACTIONS(5500), - [anon_sym_LBRACK] = ACTIONS(5500), - [aux_sym_boolean_literal_token1] = ACTIONS(5500), - [aux_sym_boolean_literal_token2] = ACTIONS(5500), - [anon_sym__] = ACTIONS(5506), - [aux_sym_null_literal_token1] = ACTIONS(5498), - [aux_sym_coarray_statement_token1] = ACTIONS(5498), - [aux_sym_coarray_statement_token2] = ACTIONS(5498), - [aux_sym_coarray_statement_token6] = ACTIONS(5498), - [aux_sym_coarray_statement_token8] = ACTIONS(5498), - [aux_sym_coarray_statement_token11] = ACTIONS(5498), - [aux_sym_coarray_statement_token12] = ACTIONS(5498), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5498), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5498), - [aux_sym_identifier_token1] = ACTIONS(5498), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5500), - [sym__float_literal] = ACTIONS(5500), - [sym__boz_literal] = ACTIONS(5500), - [sym__string_literal] = ACTIONS(5500), - [sym__string_literal_kind] = ACTIONS(5500), - }, - [1646] = { - [sym__kind] = STATE(3881), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5502), - [anon_sym_SLASH] = ACTIONS(5502), - [anon_sym_PERCENT] = ACTIONS(5504), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(5504), - [anon_sym_GT] = ACTIONS(5502), - [anon_sym_GT_EQ] = ACTIONS(5504), - [anon_sym_LT_EQ] = ACTIONS(5504), - [anon_sym_LT] = ACTIONS(5502), - [aux_sym_end_program_statement_token1] = ACTIONS(5498), - [anon_sym_EQ] = ACTIONS(5502), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5498), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5498), - [aux_sym_procedure_attributes_token3] = ACTIONS(5498), - [aux_sym_use_statement_token2] = ACTIONS(5498), - [anon_sym_EQ_GT] = ACTIONS(5504), - [aux_sym_implicit_statement_token4] = ACTIONS(5498), - [aux_sym_save_statement_token1] = ACTIONS(5498), - [aux_sym_private_statement_token1] = ACTIONS(5498), - [aux_sym_public_statement_token1] = ACTIONS(5498), - [aux_sym_derived_type_definition_token1] = ACTIONS(5498), - [aux_sym_procedure_attribute_token6] = ACTIONS(5498), - [aux_sym_variable_attributes_token2] = ACTIONS(5498), - [aux_sym_variable_attributes_token3] = ACTIONS(5498), - [aux_sym_variable_attributes_token5] = ACTIONS(5498), - [aux_sym__intrinsic_type_token1] = ACTIONS(5498), - [aux_sym__intrinsic_type_token3] = ACTIONS(5498), - [aux_sym__intrinsic_type_token4] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5498), - [aux_sym_type_qualifier_token1] = ACTIONS(5498), - [aux_sym_type_qualifier_token2] = ACTIONS(5498), - [aux_sym_stop_statement_token1] = ACTIONS(5498), - [aux_sym_stop_statement_token2] = ACTIONS(5498), - [aux_sym_subroutine_call_token1] = ACTIONS(5498), - [aux_sym_keyword_statement_token1] = ACTIONS(5498), - [aux_sym_keyword_statement_token2] = ACTIONS(5498), - [aux_sym_keyword_statement_token3] = ACTIONS(5498), - [aux_sym_keyword_statement_token4] = ACTIONS(5498), - [aux_sym_keyword_statement_token6] = ACTIONS(5498), - [aux_sym_keyword_statement_token7] = ACTIONS(5498), - [aux_sym_include_statement_token1] = ACTIONS(5498), - [aux_sym_data_statement_token1] = ACTIONS(5498), - [aux_sym_do_loop_statement_token1] = ACTIONS(5498), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5498), - [aux_sym__inline_if_statement_token1] = ACTIONS(5498), - [aux_sym_end_if_statement_token1] = ACTIONS(5498), - [aux_sym_elseif_clause_token2] = ACTIONS(5498), - [aux_sym__inline_where_statement_token1] = ACTIONS(5498), - [aux_sym__forall_control_expression_token1] = ACTIONS(5498), - [aux_sym_end_forall_statement_token1] = ACTIONS(5498), - [aux_sym_select_case_statement_token1] = ACTIONS(5498), - [aux_sym_select_case_statement_token3] = ACTIONS(5498), - [aux_sym_select_type_statement_token1] = ACTIONS(5498), - [aux_sym_select_rank_statement_token2] = ACTIONS(5498), - [aux_sym_block_construct_token1] = ACTIONS(5498), - [aux_sym_associate_statement_token1] = ACTIONS(5498), - [aux_sym_format_statement_token1] = ACTIONS(5498), - [aux_sym_print_statement_token1] = ACTIONS(5498), - [aux_sym_open_statement_token1] = ACTIONS(5498), - [aux_sym_close_statement_token1] = ACTIONS(5498), - [aux_sym_inquire_statement_token1] = ACTIONS(5498), - [aux_sym_file_position_statement_token1] = ACTIONS(5498), - [aux_sym_file_position_statement_token2] = ACTIONS(5498), - [aux_sym_file_position_statement_token3] = ACTIONS(5498), - [aux_sym_file_position_statement_token4] = ACTIONS(5498), - [aux_sym_allocate_statement_token1] = ACTIONS(5498), - [aux_sym_entry_statement_token1] = ACTIONS(5498), - [aux_sym_logical_expression_token1] = ACTIONS(5504), - [aux_sym_logical_expression_token2] = ACTIONS(5504), - [aux_sym_logical_expression_token3] = ACTIONS(5504), - [aux_sym_logical_expression_token4] = ACTIONS(5504), - [aux_sym_logical_expression_token5] = ACTIONS(5500), - [aux_sym_relational_expression_token1] = ACTIONS(5504), - [aux_sym_relational_expression_token2] = ACTIONS(5504), - [aux_sym_relational_expression_token3] = ACTIONS(5504), - [aux_sym_relational_expression_token4] = ACTIONS(5504), - [aux_sym_relational_expression_token5] = ACTIONS(5504), - [anon_sym_SLASH_EQ] = ACTIONS(5504), - [aux_sym_relational_expression_token6] = ACTIONS(5504), - [anon_sym_SLASH_SLASH] = ACTIONS(5504), - [anon_sym_STAR_STAR] = ACTIONS(5504), - [anon_sym_DOT] = ACTIONS(5498), - [anon_sym_LPAREN_SLASH] = ACTIONS(5500), - [anon_sym_LBRACK] = ACTIONS(5500), - [aux_sym_boolean_literal_token1] = ACTIONS(5500), - [aux_sym_boolean_literal_token2] = ACTIONS(5500), - [anon_sym__] = ACTIONS(5506), - [aux_sym_null_literal_token1] = ACTIONS(5498), - [aux_sym_coarray_statement_token1] = ACTIONS(5498), - [aux_sym_coarray_statement_token2] = ACTIONS(5498), - [aux_sym_coarray_statement_token6] = ACTIONS(5498), - [aux_sym_coarray_statement_token8] = ACTIONS(5498), - [aux_sym_coarray_statement_token11] = ACTIONS(5498), - [aux_sym_coarray_statement_token12] = ACTIONS(5498), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5498), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5498), - [aux_sym_identifier_token1] = ACTIONS(5498), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5500), - [sym__float_literal] = ACTIONS(5500), - [sym__boz_literal] = ACTIONS(5500), - [sym__string_literal] = ACTIONS(5500), - [sym__string_literal_kind] = ACTIONS(5500), - }, - [1647] = { - [sym__kind] = STATE(3881), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5502), - [anon_sym_SLASH] = ACTIONS(5502), - [anon_sym_PERCENT] = ACTIONS(5504), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(5504), - [anon_sym_GT] = ACTIONS(5502), - [anon_sym_GT_EQ] = ACTIONS(5504), - [anon_sym_LT_EQ] = ACTIONS(5504), - [anon_sym_LT] = ACTIONS(5502), - [aux_sym_end_program_statement_token1] = ACTIONS(5498), - [anon_sym_EQ] = ACTIONS(5502), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5498), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5498), - [aux_sym_procedure_attributes_token3] = ACTIONS(5498), - [aux_sym_use_statement_token2] = ACTIONS(5498), - [anon_sym_EQ_GT] = ACTIONS(5504), - [aux_sym_implicit_statement_token4] = ACTIONS(5498), - [aux_sym_save_statement_token1] = ACTIONS(5498), - [aux_sym_private_statement_token1] = ACTIONS(5498), - [aux_sym_public_statement_token1] = ACTIONS(5498), - [aux_sym_derived_type_definition_token1] = ACTIONS(5498), - [aux_sym_procedure_attribute_token6] = ACTIONS(5498), - [aux_sym_variable_attributes_token2] = ACTIONS(5498), - [aux_sym_variable_attributes_token3] = ACTIONS(5498), - [aux_sym_variable_attributes_token5] = ACTIONS(5498), - [aux_sym__intrinsic_type_token1] = ACTIONS(5498), - [aux_sym__intrinsic_type_token3] = ACTIONS(5498), - [aux_sym__intrinsic_type_token4] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5498), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5498), - [aux_sym_type_qualifier_token1] = ACTIONS(5498), - [aux_sym_type_qualifier_token2] = ACTIONS(5498), - [aux_sym_stop_statement_token1] = ACTIONS(5498), - [aux_sym_stop_statement_token2] = ACTIONS(5498), - [aux_sym_subroutine_call_token1] = ACTIONS(5498), - [aux_sym_keyword_statement_token1] = ACTIONS(5498), - [aux_sym_keyword_statement_token2] = ACTIONS(5498), - [aux_sym_keyword_statement_token3] = ACTIONS(5498), - [aux_sym_keyword_statement_token4] = ACTIONS(5498), - [aux_sym_keyword_statement_token6] = ACTIONS(5498), - [aux_sym_keyword_statement_token7] = ACTIONS(5498), - [aux_sym_include_statement_token1] = ACTIONS(5498), - [aux_sym_data_statement_token1] = ACTIONS(5498), - [aux_sym_do_loop_statement_token1] = ACTIONS(5498), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5498), - [aux_sym__inline_if_statement_token1] = ACTIONS(5498), - [aux_sym_end_if_statement_token1] = ACTIONS(5498), - [aux_sym_elseif_clause_token2] = ACTIONS(5498), - [aux_sym__inline_where_statement_token1] = ACTIONS(5498), - [aux_sym__forall_control_expression_token1] = ACTIONS(5498), - [aux_sym_select_case_statement_token1] = ACTIONS(5498), - [aux_sym_select_case_statement_token3] = ACTIONS(5498), - [aux_sym_select_type_statement_token1] = ACTIONS(5498), - [aux_sym_select_rank_statement_token2] = ACTIONS(5498), - [aux_sym_block_construct_token1] = ACTIONS(5498), - [aux_sym_associate_statement_token1] = ACTIONS(5498), - [aux_sym_format_statement_token1] = ACTIONS(5498), - [aux_sym_print_statement_token1] = ACTIONS(5498), - [aux_sym_open_statement_token1] = ACTIONS(5498), - [aux_sym_close_statement_token1] = ACTIONS(5498), - [aux_sym_inquire_statement_token1] = ACTIONS(5498), - [aux_sym_file_position_statement_token1] = ACTIONS(5498), - [aux_sym_file_position_statement_token2] = ACTIONS(5498), - [aux_sym_file_position_statement_token3] = ACTIONS(5498), - [aux_sym_file_position_statement_token4] = ACTIONS(5498), - [aux_sym_allocate_statement_token1] = ACTIONS(5498), - [aux_sym_entry_statement_token1] = ACTIONS(5498), - [aux_sym_logical_expression_token1] = ACTIONS(5504), - [aux_sym_logical_expression_token2] = ACTIONS(5504), - [aux_sym_logical_expression_token3] = ACTIONS(5504), - [aux_sym_logical_expression_token4] = ACTIONS(5504), - [aux_sym_logical_expression_token5] = ACTIONS(5500), - [aux_sym_relational_expression_token1] = ACTIONS(5504), - [aux_sym_relational_expression_token2] = ACTIONS(5504), - [aux_sym_relational_expression_token3] = ACTIONS(5504), - [aux_sym_relational_expression_token4] = ACTIONS(5504), - [aux_sym_relational_expression_token5] = ACTIONS(5504), - [anon_sym_SLASH_EQ] = ACTIONS(5504), - [aux_sym_relational_expression_token6] = ACTIONS(5504), - [anon_sym_SLASH_SLASH] = ACTIONS(5504), - [anon_sym_STAR_STAR] = ACTIONS(5504), - [anon_sym_DOT] = ACTIONS(5498), - [anon_sym_LPAREN_SLASH] = ACTIONS(5500), - [anon_sym_LBRACK] = ACTIONS(5500), - [aux_sym_boolean_literal_token1] = ACTIONS(5500), - [aux_sym_boolean_literal_token2] = ACTIONS(5500), - [anon_sym__] = ACTIONS(5506), - [aux_sym_null_literal_token1] = ACTIONS(5498), - [aux_sym_coarray_statement_token1] = ACTIONS(5498), - [aux_sym_coarray_statement_token2] = ACTIONS(5498), - [aux_sym_coarray_statement_token6] = ACTIONS(5498), - [aux_sym_coarray_statement_token8] = ACTIONS(5498), - [aux_sym_coarray_statement_token11] = ACTIONS(5498), - [aux_sym_coarray_statement_token12] = ACTIONS(5498), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5498), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5498), - [aux_sym_identifier_token1] = ACTIONS(5498), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5500), - [sym__float_literal] = ACTIONS(5500), - [sym__boz_literal] = ACTIONS(5500), - [sym__string_literal] = ACTIONS(5500), - [sym__string_literal_kind] = ACTIONS(5500), - }, - [1648] = { - [sym_data_set] = STATE(6149), - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4660), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4660), - [sym_implied_do_loop_expression] = STATE(4660), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4660), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(4325), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [1649] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [aux_sym_preproc_else_token1] = ACTIONS(4485), - [aux_sym_preproc_elif_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(5508), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_end_program_statement_token2] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [1650] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [aux_sym_preproc_else_token1] = ACTIONS(4817), - [aux_sym_preproc_elif_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(5512), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_end_program_statement_token2] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [1651] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [aux_sym_preproc_else_token1] = ACTIONS(4827), - [aux_sym_preproc_elif_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(5516), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_end_program_statement_token2] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1652] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token2] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [aux_sym_preproc_else_token1] = ACTIONS(5520), - [aux_sym_preproc_elif_token1] = ACTIONS(5520), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5522), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_end_program_statement_token2] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_contains_statement_token1] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [1653] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token2] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [aux_sym_preproc_else_token1] = ACTIONS(5526), - [aux_sym_preproc_elif_token1] = ACTIONS(5526), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(5528), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_end_program_statement_token2] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_contains_statement_token1] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [1654] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token2] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [aux_sym_preproc_else_token1] = ACTIONS(4315), - [aux_sym_preproc_elif_token1] = ACTIONS(4315), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(5532), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_end_program_statement_token2] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_contains_statement_token1] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), - }, - [1655] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token2] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [aux_sym_preproc_else_token1] = ACTIONS(5536), - [aux_sym_preproc_elif_token1] = ACTIONS(5536), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5538), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_end_program_statement_token2] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_contains_statement_token1] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [1656] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token2] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [aux_sym_preproc_else_token1] = ACTIONS(5542), - [aux_sym_preproc_elif_token1] = ACTIONS(5542), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(5544), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_end_program_statement_token2] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_contains_statement_token1] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [1657] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token2] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [aux_sym_preproc_else_token1] = ACTIONS(5548), - [aux_sym_preproc_elif_token1] = ACTIONS(5548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5550), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_end_program_statement_token2] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_contains_statement_token1] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [1658] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [aux_sym_preproc_else_token1] = ACTIONS(5554), - [aux_sym_preproc_elif_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_end_program_statement_token2] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_contains_statement_token1] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [1659] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [aux_sym_preproc_else_token1] = ACTIONS(4327), - [aux_sym_preproc_elif_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(5560), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_end_program_statement_token2] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1660] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [aux_sym_preproc_else_token1] = ACTIONS(4295), - [aux_sym_preproc_elif_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(5564), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_end_program_statement_token2] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), - }, - [1661] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token2] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [aux_sym_preproc_else_token1] = ACTIONS(5568), - [aux_sym_preproc_elif_token1] = ACTIONS(5568), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5570), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_end_program_statement_token2] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_contains_statement_token1] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [1662] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token2] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [aux_sym_preproc_else_token1] = ACTIONS(4269), - [aux_sym_preproc_elif_token1] = ACTIONS(4269), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(5574), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_end_program_statement_token2] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_contains_statement_token1] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), - }, - [1663] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token2] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [aux_sym_preproc_else_token1] = ACTIONS(5578), - [aux_sym_preproc_elif_token1] = ACTIONS(5578), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(5580), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_end_program_statement_token2] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_contains_statement_token1] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [1664] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [aux_sym_preproc_else_token1] = ACTIONS(4445), - [aux_sym_preproc_elif_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(5584), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_end_program_statement_token2] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [1665] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token2] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [aux_sym_preproc_else_token1] = ACTIONS(4323), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(4323), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_subroutine_call_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_keyword_statement_token4] = ACTIONS(4323), - [aux_sym_keyword_statement_token6] = ACTIONS(4323), - [aux_sym_keyword_statement_token7] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym_do_loop_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym__inline_where_statement_token1] = ACTIONS(4323), - [aux_sym__forall_control_expression_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token3] = ACTIONS(4323), - [aux_sym_select_type_statement_token1] = ACTIONS(4323), - [aux_sym_select_rank_statement_token2] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_associate_statement_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_print_statement_token1] = ACTIONS(4323), - [aux_sym_open_statement_token1] = ACTIONS(4323), - [aux_sym_close_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token2] = ACTIONS(4323), - [aux_sym_file_position_statement_token3] = ACTIONS(4323), - [aux_sym_file_position_statement_token4] = ACTIONS(4323), - [aux_sym_allocate_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_logical_expression_token5] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LPAREN_SLASH] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_boolean_literal_token1] = ACTIONS(4325), - [aux_sym_boolean_literal_token2] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - [sym__float_literal] = ACTIONS(4325), - [sym__boz_literal] = ACTIONS(4325), - [sym__string_literal] = ACTIONS(4325), - [sym__string_literal_kind] = ACTIONS(4325), - }, - [1666] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token2] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [aux_sym_preproc_else_token1] = ACTIONS(5542), - [aux_sym_preproc_elif_token1] = ACTIONS(5542), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(5588), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_contains_statement_token1] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [1667] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token2] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [aux_sym_preproc_else_token1] = ACTIONS(5590), - [aux_sym_preproc_elif_token1] = ACTIONS(5590), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_end_program_statement_token2] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_contains_statement_token1] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), - }, - [1668] = { - [sym_assignment] = STATE(6012), - [sym_operator] = STATE(6012), - [sym_defined_io_procedure] = STATE(6012), - [sym__generic_procedure] = STATE(6012), - [sym_identifier] = STATE(6012), - [sym__end_of_statement] = STATE(1276), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5602), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5604), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5604), - }, - [1669] = { - [sym_assignment] = STATE(6013), - [sym_operator] = STATE(6013), - [sym_defined_io_procedure] = STATE(6013), - [sym__generic_procedure] = STATE(6013), - [sym_identifier] = STATE(6013), - [sym__end_of_statement] = STATE(1277), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5606), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5608), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5608), - }, - [1670] = { - [sym_assignment] = STATE(5982), - [sym_operator] = STATE(5982), - [sym_defined_io_procedure] = STATE(5982), - [sym__generic_procedure] = STATE(5982), - [sym_identifier] = STATE(5982), - [sym__end_of_statement] = STATE(1380), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5610), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5612), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(4976), + [aux_sym_keyword_statement_token4] = ACTIONS(4976), + [aux_sym_keyword_statement_token6] = ACTIONS(4976), + [aux_sym_keyword_statement_token7] = ACTIONS(4976), + [aux_sym_include_statement_token1] = ACTIONS(4976), + [aux_sym_data_statement_token1] = ACTIONS(4976), + [aux_sym_do_loop_statement_token1] = ACTIONS(4976), + [aux_sym__inline_if_statement_token1] = ACTIONS(4976), + [aux_sym_end_if_statement_token1] = ACTIONS(4976), + [aux_sym_elseif_clause_token2] = ACTIONS(4976), + [aux_sym__inline_where_statement_token1] = ACTIONS(4976), + [aux_sym__forall_control_expression_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token3] = ACTIONS(4976), + [aux_sym_select_type_statement_token1] = ACTIONS(4976), + [aux_sym_select_rank_statement_token2] = ACTIONS(4976), + [aux_sym_block_construct_token1] = ACTIONS(4976), + [aux_sym_associate_statement_token1] = ACTIONS(4976), + [aux_sym_format_statement_token1] = ACTIONS(4976), + [aux_sym_print_statement_token1] = ACTIONS(4976), + [aux_sym_open_statement_token1] = ACTIONS(4976), + [aux_sym_close_statement_token1] = ACTIONS(4976), + [aux_sym_inquire_statement_token1] = ACTIONS(4976), + [aux_sym_enum_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token2] = ACTIONS(4976), + [aux_sym_file_position_statement_token3] = ACTIONS(4976), + [aux_sym_file_position_statement_token4] = ACTIONS(4976), + [aux_sym_allocate_statement_token1] = ACTIONS(4976), + [aux_sym_entry_statement_token1] = ACTIONS(4976), + [aux_sym_logical_expression_token5] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), + [aux_sym_null_literal_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token2] = ACTIONS(4976), + [aux_sym_coarray_statement_token6] = ACTIONS(4976), + [aux_sym_coarray_statement_token8] = ACTIONS(4976), + [aux_sym_coarray_statement_token11] = ACTIONS(4976), + [aux_sym_coarray_statement_token12] = ACTIONS(4976), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), + [aux_sym_identifier_token1] = ACTIONS(4976), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5612), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), }, - [1671] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [aux_sym_preproc_else_token1] = ACTIONS(4327), - [aux_sym_preproc_elif_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1579] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_end_program_statement_token2] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [1672] = { - [sym_assignment] = STATE(5983), - [sym_operator] = STATE(5983), - [sym_defined_io_procedure] = STATE(5983), - [sym__generic_procedure] = STATE(5983), - [sym_identifier] = STATE(5983), - [sym__end_of_statement] = STATE(1381), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5614), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5616), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5616), + [1580] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_end_function_statement_token1] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_subroutine_call_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_keyword_statement_token4] = ACTIONS(5067), + [aux_sym_keyword_statement_token6] = ACTIONS(5067), + [aux_sym_keyword_statement_token7] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym_do_loop_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym__inline_where_statement_token1] = ACTIONS(5067), + [aux_sym__forall_control_expression_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token3] = ACTIONS(5067), + [aux_sym_select_type_statement_token1] = ACTIONS(5067), + [aux_sym_select_rank_statement_token2] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_associate_statement_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_print_statement_token1] = ACTIONS(5067), + [aux_sym_open_statement_token1] = ACTIONS(5067), + [aux_sym_close_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token2] = ACTIONS(5067), + [aux_sym_file_position_statement_token3] = ACTIONS(5067), + [aux_sym_file_position_statement_token4] = ACTIONS(5067), + [aux_sym_allocate_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_logical_expression_token5] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LPAREN_SLASH] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [aux_sym_boolean_literal_token1] = ACTIONS(5069), + [aux_sym_boolean_literal_token2] = ACTIONS(5069), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + [sym__float_literal] = ACTIONS(5069), + [sym__boz_literal] = ACTIONS(5069), + [sym__string_literal] = ACTIONS(5069), + [sym__string_literal_kind] = ACTIONS(5069), }, - [1673] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token2] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [aux_sym_preproc_else_token1] = ACTIONS(5536), - [aux_sym_preproc_elif_token1] = ACTIONS(5536), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5618), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_contains_statement_token1] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), + [1581] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_subroutine_call_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_keyword_statement_token4] = ACTIONS(5014), + [aux_sym_keyword_statement_token6] = ACTIONS(5014), + [aux_sym_keyword_statement_token7] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym_do_loop_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym__inline_where_statement_token1] = ACTIONS(5014), + [aux_sym__forall_control_expression_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token3] = ACTIONS(5014), + [aux_sym_select_type_statement_token1] = ACTIONS(5014), + [aux_sym_select_rank_statement_token2] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_associate_statement_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_print_statement_token1] = ACTIONS(5014), + [aux_sym_open_statement_token1] = ACTIONS(5014), + [aux_sym_close_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token2] = ACTIONS(5014), + [aux_sym_file_position_statement_token3] = ACTIONS(5014), + [aux_sym_file_position_statement_token4] = ACTIONS(5014), + [aux_sym_allocate_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_logical_expression_token5] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LPAREN_SLASH] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [aux_sym_boolean_literal_token1] = ACTIONS(5016), + [aux_sym_boolean_literal_token2] = ACTIONS(5016), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + [sym__float_literal] = ACTIONS(5016), + [sym__boz_literal] = ACTIONS(5016), + [sym__string_literal] = ACTIONS(5016), + [sym__string_literal_kind] = ACTIONS(5016), }, - [1674] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [aux_sym_preproc_else_token1] = ACTIONS(4295), - [aux_sym_preproc_elif_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_end_program_statement_token2] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [1582] = { + [aux_sym_preproc_include_token1] = ACTIONS(5426), + [aux_sym_preproc_def_token1] = ACTIONS(5426), + [aux_sym_preproc_if_token1] = ACTIONS(5426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5426), + [sym_preproc_directive] = ACTIONS(5426), + [anon_sym_LPAREN2] = ACTIONS(5426), + [anon_sym_PLUS] = ACTIONS(5428), + [anon_sym_DASH] = ACTIONS(5428), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5426), + [aux_sym_interface_statement_token1] = ACTIONS(5426), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5426), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5426), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5426), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5426), + [aux_sym_language_binding_token1] = ACTIONS(5426), + [aux_sym_procedure_attributes_token1] = ACTIONS(5426), + [aux_sym_procedure_attributes_token3] = ACTIONS(5426), + [aux_sym_contains_statement_token1] = ACTIONS(5426), + [aux_sym_use_statement_token1] = ACTIONS(5426), + [aux_sym_use_statement_token2] = ACTIONS(5426), + [aux_sym_implicit_statement_token1] = ACTIONS(5426), + [aux_sym_implicit_statement_token3] = ACTIONS(5426), + [aux_sym_implicit_statement_token4] = ACTIONS(5426), + [aux_sym_save_statement_token1] = ACTIONS(5426), + [aux_sym_private_statement_token1] = ACTIONS(5426), + [aux_sym_public_statement_token1] = ACTIONS(5426), + [aux_sym_namelist_statement_token1] = ACTIONS(5426), + [aux_sym_common_statement_token1] = ACTIONS(5426), + [aux_sym_import_statement_token1] = ACTIONS(5426), + [aux_sym_derived_type_definition_token1] = ACTIONS(5426), + [aux_sym_abstract_specifier_token1] = ACTIONS(5426), + [aux_sym_procedure_attribute_token6] = ACTIONS(5426), + [aux_sym_variable_attributes_token1] = ACTIONS(5426), + [aux_sym_variable_attributes_token2] = ACTIONS(5426), + [aux_sym_variable_attributes_token3] = ACTIONS(5426), + [aux_sym_variable_attributes_token4] = ACTIONS(5426), + [aux_sym_variable_attributes_token5] = ACTIONS(5426), + [aux_sym__intrinsic_type_token1] = ACTIONS(5426), + [aux_sym__intrinsic_type_token2] = ACTIONS(5426), + [aux_sym__intrinsic_type_token3] = ACTIONS(5426), + [aux_sym__intrinsic_type_token4] = ACTIONS(5426), + [aux_sym__intrinsic_type_token6] = ACTIONS(5426), + [aux_sym__intrinsic_type_token7] = ACTIONS(5426), + [aux_sym__intrinsic_type_token8] = ACTIONS(5426), + [aux_sym__intrinsic_type_token9] = ACTIONS(5426), + [aux_sym__intrinsic_type_token10] = ACTIONS(5426), + [aux_sym_derived_type_token1] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5426), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5426), + [aux_sym_type_qualifier_token1] = ACTIONS(5426), + [aux_sym_type_qualifier_token2] = ACTIONS(5426), + [aux_sym_equivalence_statement_token1] = ACTIONS(5426), + [anon_sym_SEMI] = ACTIONS(5428), + [aux_sym_stop_statement_token1] = ACTIONS(5426), + [aux_sym_stop_statement_token2] = ACTIONS(5426), + [aux_sym_subroutine_call_token1] = ACTIONS(5426), + [aux_sym_keyword_statement_token1] = ACTIONS(5426), + [aux_sym_keyword_statement_token2] = ACTIONS(5426), + [aux_sym_keyword_statement_token3] = ACTIONS(5426), + [aux_sym_keyword_statement_token4] = ACTIONS(5426), + [aux_sym_keyword_statement_token6] = ACTIONS(5426), + [aux_sym_keyword_statement_token7] = ACTIONS(5426), + [aux_sym_include_statement_token1] = ACTIONS(5426), + [aux_sym_data_statement_token1] = ACTIONS(5426), + [aux_sym_do_loop_statement_token1] = ACTIONS(5426), + [aux_sym__inline_if_statement_token1] = ACTIONS(5426), + [aux_sym_end_if_statement_token1] = ACTIONS(5426), + [aux_sym_elseif_clause_token2] = ACTIONS(5426), + [aux_sym__inline_where_statement_token1] = ACTIONS(5426), + [aux_sym__forall_control_expression_token1] = ACTIONS(5426), + [aux_sym_select_case_statement_token1] = ACTIONS(5426), + [aux_sym_select_case_statement_token3] = ACTIONS(5426), + [aux_sym_select_type_statement_token1] = ACTIONS(5426), + [aux_sym_select_rank_statement_token2] = ACTIONS(5426), + [aux_sym_block_construct_token1] = ACTIONS(5426), + [aux_sym_associate_statement_token1] = ACTIONS(5426), + [aux_sym_format_statement_token1] = ACTIONS(5426), + [aux_sym_print_statement_token1] = ACTIONS(5426), + [aux_sym_open_statement_token1] = ACTIONS(5426), + [aux_sym_close_statement_token1] = ACTIONS(5426), + [aux_sym_inquire_statement_token1] = ACTIONS(5426), + [aux_sym_enum_statement_token1] = ACTIONS(5426), + [aux_sym_file_position_statement_token1] = ACTIONS(5426), + [aux_sym_file_position_statement_token2] = ACTIONS(5426), + [aux_sym_file_position_statement_token3] = ACTIONS(5426), + [aux_sym_file_position_statement_token4] = ACTIONS(5426), + [aux_sym_allocate_statement_token1] = ACTIONS(5426), + [aux_sym_entry_statement_token1] = ACTIONS(5426), + [aux_sym_logical_expression_token5] = ACTIONS(5428), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_LPAREN_SLASH] = ACTIONS(5428), + [anon_sym_LBRACK] = ACTIONS(5428), + [aux_sym_boolean_literal_token1] = ACTIONS(5428), + [aux_sym_boolean_literal_token2] = ACTIONS(5428), + [aux_sym_null_literal_token1] = ACTIONS(5426), + [aux_sym_coarray_statement_token1] = ACTIONS(5426), + [aux_sym_coarray_statement_token2] = ACTIONS(5426), + [aux_sym_coarray_statement_token6] = ACTIONS(5426), + [aux_sym_coarray_statement_token8] = ACTIONS(5426), + [aux_sym_coarray_statement_token11] = ACTIONS(5426), + [aux_sym_coarray_statement_token12] = ACTIONS(5426), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5426), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5426), + [aux_sym_identifier_token1] = ACTIONS(5426), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5428), + [sym__float_literal] = ACTIONS(5428), + [sym__boz_literal] = ACTIONS(5428), + [sym__string_literal] = ACTIONS(5428), + [sym__string_literal_kind] = ACTIONS(5428), }, - [1675] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token2] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [aux_sym_preproc_else_token1] = ACTIONS(5620), - [aux_sym_preproc_elif_token1] = ACTIONS(5620), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), + [1583] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_end_program_statement_token2] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_contains_statement_token1] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_end_function_statement_token1] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [1676] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [aux_sym_preproc_else_token1] = ACTIONS(4445), - [aux_sym_preproc_elif_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1584] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_end_program_statement_token2] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_end_function_statement_token1] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1677] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [aux_sym_preproc_else_token1] = ACTIONS(4559), - [aux_sym_preproc_elif_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token2] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [1585] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_end_function_statement_token1] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, - [1678] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [aux_sym_preproc_else_token1] = ACTIONS(4485), - [aux_sym_preproc_elif_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1586] = { + [aux_sym_preproc_include_token1] = ACTIONS(4535), + [aux_sym_preproc_def_token1] = ACTIONS(4535), + [aux_sym_preproc_if_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4535), + [sym_preproc_directive] = ACTIONS(4535), + [anon_sym_LPAREN2] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_end_program_statement_token2] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4535), + [aux_sym_interface_statement_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4535), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4535), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4535), + [aux_sym_language_binding_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token1] = ACTIONS(4535), + [aux_sym_procedure_attributes_token3] = ACTIONS(4535), + [aux_sym_end_function_statement_token1] = ACTIONS(4535), + [aux_sym_contains_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token1] = ACTIONS(4535), + [aux_sym_use_statement_token2] = ACTIONS(4535), + [aux_sym_implicit_statement_token1] = ACTIONS(4535), + [aux_sym_implicit_statement_token3] = ACTIONS(4535), + [aux_sym_implicit_statement_token4] = ACTIONS(4535), + [aux_sym_save_statement_token1] = ACTIONS(4535), + [aux_sym_private_statement_token1] = ACTIONS(4535), + [aux_sym_public_statement_token1] = ACTIONS(4535), + [aux_sym_namelist_statement_token1] = ACTIONS(4535), + [aux_sym_common_statement_token1] = ACTIONS(4535), + [aux_sym_import_statement_token1] = ACTIONS(4535), + [aux_sym_derived_type_definition_token1] = ACTIONS(4535), + [aux_sym_abstract_specifier_token1] = ACTIONS(4535), + [aux_sym_procedure_attribute_token6] = ACTIONS(4535), + [aux_sym_variable_attributes_token1] = ACTIONS(4535), + [aux_sym_variable_attributes_token2] = ACTIONS(4535), + [aux_sym_variable_attributes_token3] = ACTIONS(4535), + [aux_sym_variable_attributes_token4] = ACTIONS(4535), + [aux_sym_variable_attributes_token5] = ACTIONS(4535), + [aux_sym__intrinsic_type_token1] = ACTIONS(4535), + [aux_sym__intrinsic_type_token2] = ACTIONS(4535), + [aux_sym__intrinsic_type_token3] = ACTIONS(4535), + [aux_sym__intrinsic_type_token4] = ACTIONS(4535), + [aux_sym__intrinsic_type_token6] = ACTIONS(4535), + [aux_sym__intrinsic_type_token7] = ACTIONS(4535), + [aux_sym__intrinsic_type_token8] = ACTIONS(4535), + [aux_sym__intrinsic_type_token9] = ACTIONS(4535), + [aux_sym__intrinsic_type_token10] = ACTIONS(4535), + [aux_sym_derived_type_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4535), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4535), + [aux_sym_type_qualifier_token1] = ACTIONS(4535), + [aux_sym_type_qualifier_token2] = ACTIONS(4535), + [aux_sym_equivalence_statement_token1] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4539), + [aux_sym_stop_statement_token1] = ACTIONS(4535), + [aux_sym_stop_statement_token2] = ACTIONS(4535), + [aux_sym_subroutine_call_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token1] = ACTIONS(4535), + [aux_sym_keyword_statement_token2] = ACTIONS(4535), + [aux_sym_keyword_statement_token3] = ACTIONS(4535), + [aux_sym_keyword_statement_token4] = ACTIONS(4535), + [aux_sym_keyword_statement_token6] = ACTIONS(4535), + [aux_sym_keyword_statement_token7] = ACTIONS(4535), + [aux_sym_include_statement_token1] = ACTIONS(4535), + [aux_sym_data_statement_token1] = ACTIONS(4535), + [aux_sym_do_loop_statement_token1] = ACTIONS(4535), + [aux_sym__inline_if_statement_token1] = ACTIONS(4535), + [aux_sym_end_if_statement_token1] = ACTIONS(4535), + [aux_sym_elseif_clause_token2] = ACTIONS(4535), + [aux_sym__inline_where_statement_token1] = ACTIONS(4535), + [aux_sym__forall_control_expression_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token1] = ACTIONS(4535), + [aux_sym_select_case_statement_token3] = ACTIONS(4535), + [aux_sym_select_type_statement_token1] = ACTIONS(4535), + [aux_sym_select_rank_statement_token2] = ACTIONS(4535), + [aux_sym_block_construct_token1] = ACTIONS(4535), + [aux_sym_associate_statement_token1] = ACTIONS(4535), + [aux_sym_format_statement_token1] = ACTIONS(4535), + [aux_sym_print_statement_token1] = ACTIONS(4535), + [aux_sym_open_statement_token1] = ACTIONS(4535), + [aux_sym_close_statement_token1] = ACTIONS(4535), + [aux_sym_inquire_statement_token1] = ACTIONS(4535), + [aux_sym_enum_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token1] = ACTIONS(4535), + [aux_sym_file_position_statement_token2] = ACTIONS(4535), + [aux_sym_file_position_statement_token3] = ACTIONS(4535), + [aux_sym_file_position_statement_token4] = ACTIONS(4535), + [aux_sym_allocate_statement_token1] = ACTIONS(4535), + [aux_sym_entry_statement_token1] = ACTIONS(4535), + [aux_sym_logical_expression_token5] = ACTIONS(4539), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_LPAREN_SLASH] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4539), + [aux_sym_boolean_literal_token1] = ACTIONS(4539), + [aux_sym_boolean_literal_token2] = ACTIONS(4539), + [aux_sym_null_literal_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_statement_token2] = ACTIONS(4535), + [aux_sym_coarray_statement_token6] = ACTIONS(4535), + [aux_sym_coarray_statement_token8] = ACTIONS(4535), + [aux_sym_coarray_statement_token11] = ACTIONS(4535), + [aux_sym_coarray_statement_token12] = ACTIONS(4535), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4535), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4535), + [aux_sym_identifier_token1] = ACTIONS(4535), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), + [sym__integer_literal] = ACTIONS(4539), + [sym__float_literal] = ACTIONS(4539), + [sym__boz_literal] = ACTIONS(4539), + [sym__string_literal] = ACTIONS(4539), + [sym__string_literal_kind] = ACTIONS(4539), }, - [1679] = { - [sym_assignment] = STATE(6025), - [sym_operator] = STATE(6025), - [sym_defined_io_procedure] = STATE(6025), - [sym__generic_procedure] = STATE(6025), - [sym_identifier] = STATE(6025), - [sym__end_of_statement] = STATE(1173), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5624), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5626), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [1587] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_end_function_statement_token1] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5626), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1680] = { - [sym_assignment] = STATE(6026), - [sym_operator] = STATE(6026), - [sym_defined_io_procedure] = STATE(6026), - [sym__generic_procedure] = STATE(6026), - [sym_identifier] = STATE(6026), - [sym__end_of_statement] = STATE(1175), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5628), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5630), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [1588] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), + }, + [1589] = { + [aux_sym_preproc_include_token1] = ACTIONS(5414), + [aux_sym_preproc_def_token1] = ACTIONS(5414), + [aux_sym_preproc_if_token1] = ACTIONS(5414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5414), + [sym_preproc_directive] = ACTIONS(5414), + [anon_sym_LPAREN2] = ACTIONS(5414), + [anon_sym_PLUS] = ACTIONS(5416), + [anon_sym_DASH] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5414), + [aux_sym_interface_statement_token1] = ACTIONS(5414), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5414), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5414), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5414), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5414), + [aux_sym_language_binding_token1] = ACTIONS(5414), + [aux_sym_procedure_attributes_token1] = ACTIONS(5414), + [aux_sym_procedure_attributes_token3] = ACTIONS(5414), + [aux_sym_contains_statement_token1] = ACTIONS(5414), + [aux_sym_use_statement_token1] = ACTIONS(5414), + [aux_sym_use_statement_token2] = ACTIONS(5414), + [aux_sym_implicit_statement_token1] = ACTIONS(5414), + [aux_sym_implicit_statement_token3] = ACTIONS(5414), + [aux_sym_implicit_statement_token4] = ACTIONS(5414), + [aux_sym_save_statement_token1] = ACTIONS(5414), + [aux_sym_private_statement_token1] = ACTIONS(5414), + [aux_sym_public_statement_token1] = ACTIONS(5414), + [aux_sym_namelist_statement_token1] = ACTIONS(5414), + [aux_sym_common_statement_token1] = ACTIONS(5414), + [aux_sym_import_statement_token1] = ACTIONS(5414), + [aux_sym_derived_type_definition_token1] = ACTIONS(5414), + [aux_sym_abstract_specifier_token1] = ACTIONS(5414), + [aux_sym_procedure_attribute_token6] = ACTIONS(5414), + [aux_sym_variable_attributes_token1] = ACTIONS(5414), + [aux_sym_variable_attributes_token2] = ACTIONS(5414), + [aux_sym_variable_attributes_token3] = ACTIONS(5414), + [aux_sym_variable_attributes_token4] = ACTIONS(5414), + [aux_sym_variable_attributes_token5] = ACTIONS(5414), + [aux_sym__intrinsic_type_token1] = ACTIONS(5414), + [aux_sym__intrinsic_type_token2] = ACTIONS(5414), + [aux_sym__intrinsic_type_token3] = ACTIONS(5414), + [aux_sym__intrinsic_type_token4] = ACTIONS(5414), + [aux_sym__intrinsic_type_token6] = ACTIONS(5414), + [aux_sym__intrinsic_type_token7] = ACTIONS(5414), + [aux_sym__intrinsic_type_token8] = ACTIONS(5414), + [aux_sym__intrinsic_type_token9] = ACTIONS(5414), + [aux_sym__intrinsic_type_token10] = ACTIONS(5414), + [aux_sym_derived_type_token1] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5414), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5414), + [aux_sym_type_qualifier_token1] = ACTIONS(5414), + [aux_sym_type_qualifier_token2] = ACTIONS(5414), + [aux_sym_equivalence_statement_token1] = ACTIONS(5414), + [anon_sym_SEMI] = ACTIONS(5416), + [aux_sym_stop_statement_token1] = ACTIONS(5414), + [aux_sym_stop_statement_token2] = ACTIONS(5414), + [aux_sym_subroutine_call_token1] = ACTIONS(5414), + [aux_sym_keyword_statement_token1] = ACTIONS(5414), + [aux_sym_keyword_statement_token2] = ACTIONS(5414), + [aux_sym_keyword_statement_token3] = ACTIONS(5414), + [aux_sym_keyword_statement_token4] = ACTIONS(5414), + [aux_sym_keyword_statement_token6] = ACTIONS(5414), + [aux_sym_keyword_statement_token7] = ACTIONS(5414), + [aux_sym_include_statement_token1] = ACTIONS(5414), + [aux_sym_data_statement_token1] = ACTIONS(5414), + [aux_sym_do_loop_statement_token1] = ACTIONS(5414), + [aux_sym__inline_if_statement_token1] = ACTIONS(5414), + [aux_sym_end_if_statement_token1] = ACTIONS(5414), + [aux_sym_elseif_clause_token2] = ACTIONS(5414), + [aux_sym__inline_where_statement_token1] = ACTIONS(5414), + [aux_sym__forall_control_expression_token1] = ACTIONS(5414), + [aux_sym_select_case_statement_token1] = ACTIONS(5414), + [aux_sym_select_case_statement_token3] = ACTIONS(5414), + [aux_sym_select_type_statement_token1] = ACTIONS(5414), + [aux_sym_select_rank_statement_token2] = ACTIONS(5414), + [aux_sym_block_construct_token1] = ACTIONS(5414), + [aux_sym_associate_statement_token1] = ACTIONS(5414), + [aux_sym_format_statement_token1] = ACTIONS(5414), + [aux_sym_print_statement_token1] = ACTIONS(5414), + [aux_sym_open_statement_token1] = ACTIONS(5414), + [aux_sym_close_statement_token1] = ACTIONS(5414), + [aux_sym_inquire_statement_token1] = ACTIONS(5414), + [aux_sym_enum_statement_token1] = ACTIONS(5414), + [aux_sym_file_position_statement_token1] = ACTIONS(5414), + [aux_sym_file_position_statement_token2] = ACTIONS(5414), + [aux_sym_file_position_statement_token3] = ACTIONS(5414), + [aux_sym_file_position_statement_token4] = ACTIONS(5414), + [aux_sym_allocate_statement_token1] = ACTIONS(5414), + [aux_sym_entry_statement_token1] = ACTIONS(5414), + [aux_sym_logical_expression_token5] = ACTIONS(5416), + [anon_sym_DOT] = ACTIONS(5414), + [anon_sym_LPAREN_SLASH] = ACTIONS(5416), + [anon_sym_LBRACK] = ACTIONS(5416), + [aux_sym_boolean_literal_token1] = ACTIONS(5416), + [aux_sym_boolean_literal_token2] = ACTIONS(5416), + [aux_sym_null_literal_token1] = ACTIONS(5414), + [aux_sym_coarray_statement_token1] = ACTIONS(5414), + [aux_sym_coarray_statement_token2] = ACTIONS(5414), + [aux_sym_coarray_statement_token6] = ACTIONS(5414), + [aux_sym_coarray_statement_token8] = ACTIONS(5414), + [aux_sym_coarray_statement_token11] = ACTIONS(5414), + [aux_sym_coarray_statement_token12] = ACTIONS(5414), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5414), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5414), + [aux_sym_identifier_token1] = ACTIONS(5414), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5630), + [sym__integer_literal] = ACTIONS(5416), + [sym__float_literal] = ACTIONS(5416), + [sym__boz_literal] = ACTIONS(5416), + [sym__string_literal] = ACTIONS(5416), + [sym__string_literal_kind] = ACTIONS(5416), }, - [1681] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [aux_sym_preproc_else_token1] = ACTIONS(4567), - [aux_sym_preproc_elif_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token2] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [1590] = { + [aux_sym_preproc_include_token1] = ACTIONS(5030), + [aux_sym_preproc_def_token1] = ACTIONS(5030), + [aux_sym_preproc_if_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5030), + [sym_preproc_directive] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5030), + [aux_sym_interface_statement_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5030), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5030), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5030), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5030), + [aux_sym_language_binding_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token1] = ACTIONS(5030), + [aux_sym_procedure_attributes_token3] = ACTIONS(5030), + [aux_sym_contains_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token1] = ACTIONS(5030), + [aux_sym_use_statement_token2] = ACTIONS(5030), + [aux_sym_implicit_statement_token1] = ACTIONS(5030), + [aux_sym_implicit_statement_token3] = ACTIONS(5030), + [aux_sym_implicit_statement_token4] = ACTIONS(5030), + [aux_sym_save_statement_token1] = ACTIONS(5030), + [aux_sym_private_statement_token1] = ACTIONS(5030), + [aux_sym_public_statement_token1] = ACTIONS(5030), + [aux_sym_namelist_statement_token1] = ACTIONS(5030), + [aux_sym_common_statement_token1] = ACTIONS(5030), + [aux_sym_import_statement_token1] = ACTIONS(5030), + [aux_sym_derived_type_definition_token1] = ACTIONS(5030), + [aux_sym_abstract_specifier_token1] = ACTIONS(5030), + [aux_sym_procedure_attribute_token6] = ACTIONS(5030), + [aux_sym_variable_attributes_token1] = ACTIONS(5030), + [aux_sym_variable_attributes_token2] = ACTIONS(5030), + [aux_sym_variable_attributes_token3] = ACTIONS(5030), + [aux_sym_variable_attributes_token4] = ACTIONS(5030), + [aux_sym_variable_attributes_token5] = ACTIONS(5030), + [aux_sym__intrinsic_type_token1] = ACTIONS(5030), + [aux_sym__intrinsic_type_token2] = ACTIONS(5030), + [aux_sym__intrinsic_type_token3] = ACTIONS(5030), + [aux_sym__intrinsic_type_token4] = ACTIONS(5030), + [aux_sym__intrinsic_type_token6] = ACTIONS(5030), + [aux_sym__intrinsic_type_token7] = ACTIONS(5030), + [aux_sym__intrinsic_type_token8] = ACTIONS(5030), + [aux_sym__intrinsic_type_token9] = ACTIONS(5030), + [aux_sym__intrinsic_type_token10] = ACTIONS(5030), + [aux_sym_derived_type_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5030), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5030), + [aux_sym_type_qualifier_token1] = ACTIONS(5030), + [aux_sym_type_qualifier_token2] = ACTIONS(5030), + [aux_sym_equivalence_statement_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5034), + [aux_sym_stop_statement_token1] = ACTIONS(5030), + [aux_sym_stop_statement_token2] = ACTIONS(5030), + [aux_sym_subroutine_call_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token1] = ACTIONS(5030), + [aux_sym_keyword_statement_token2] = ACTIONS(5030), + [aux_sym_keyword_statement_token3] = ACTIONS(5030), + [aux_sym_keyword_statement_token4] = ACTIONS(5030), + [aux_sym_keyword_statement_token6] = ACTIONS(5030), + [aux_sym_keyword_statement_token7] = ACTIONS(5030), + [aux_sym_include_statement_token1] = ACTIONS(5030), + [aux_sym_data_statement_token1] = ACTIONS(5030), + [aux_sym_do_loop_statement_token1] = ACTIONS(5030), + [aux_sym__inline_if_statement_token1] = ACTIONS(5030), + [aux_sym_end_if_statement_token1] = ACTIONS(5030), + [aux_sym_elseif_clause_token2] = ACTIONS(5030), + [aux_sym__inline_where_statement_token1] = ACTIONS(5030), + [aux_sym__forall_control_expression_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token1] = ACTIONS(5030), + [aux_sym_select_case_statement_token3] = ACTIONS(5030), + [aux_sym_select_type_statement_token1] = ACTIONS(5030), + [aux_sym_select_rank_statement_token2] = ACTIONS(5030), + [aux_sym_block_construct_token1] = ACTIONS(5030), + [aux_sym_associate_statement_token1] = ACTIONS(5030), + [aux_sym_format_statement_token1] = ACTIONS(5030), + [aux_sym_print_statement_token1] = ACTIONS(5030), + [aux_sym_open_statement_token1] = ACTIONS(5030), + [aux_sym_close_statement_token1] = ACTIONS(5030), + [aux_sym_inquire_statement_token1] = ACTIONS(5030), + [aux_sym_enum_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token1] = ACTIONS(5030), + [aux_sym_file_position_statement_token2] = ACTIONS(5030), + [aux_sym_file_position_statement_token3] = ACTIONS(5030), + [aux_sym_file_position_statement_token4] = ACTIONS(5030), + [aux_sym_allocate_statement_token1] = ACTIONS(5030), + [aux_sym_entry_statement_token1] = ACTIONS(5030), + [aux_sym_logical_expression_token5] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_LPAREN_SLASH] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [aux_sym_boolean_literal_token1] = ACTIONS(5034), + [aux_sym_boolean_literal_token2] = ACTIONS(5034), + [aux_sym_null_literal_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_statement_token2] = ACTIONS(5030), + [aux_sym_coarray_statement_token6] = ACTIONS(5030), + [aux_sym_coarray_statement_token8] = ACTIONS(5030), + [aux_sym_coarray_statement_token11] = ACTIONS(5030), + [aux_sym_coarray_statement_token12] = ACTIONS(5030), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5030), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5030), + [aux_sym_identifier_token1] = ACTIONS(5030), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5034), + [sym__float_literal] = ACTIONS(5034), + [sym__boz_literal] = ACTIONS(5034), + [sym__string_literal] = ACTIONS(5034), + [sym__string_literal_kind] = ACTIONS(5034), }, - [1682] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [aux_sym_preproc_else_token1] = ACTIONS(4817), - [aux_sym_preproc_elif_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_end_program_statement_token2] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [1591] = { + [aux_sym_preproc_include_token1] = ACTIONS(5402), + [aux_sym_preproc_def_token1] = ACTIONS(5402), + [aux_sym_preproc_if_token1] = ACTIONS(5402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5402), + [sym_preproc_directive] = ACTIONS(5402), + [anon_sym_LPAREN2] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5402), + [aux_sym_interface_statement_token1] = ACTIONS(5402), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5402), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5402), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5402), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5402), + [aux_sym_language_binding_token1] = ACTIONS(5402), + [aux_sym_procedure_attributes_token1] = ACTIONS(5402), + [aux_sym_procedure_attributes_token3] = ACTIONS(5402), + [aux_sym_contains_statement_token1] = ACTIONS(5402), + [aux_sym_use_statement_token1] = ACTIONS(5402), + [aux_sym_use_statement_token2] = ACTIONS(5402), + [aux_sym_implicit_statement_token1] = ACTIONS(5402), + [aux_sym_implicit_statement_token3] = ACTIONS(5402), + [aux_sym_implicit_statement_token4] = ACTIONS(5402), + [aux_sym_save_statement_token1] = ACTIONS(5402), + [aux_sym_private_statement_token1] = ACTIONS(5402), + [aux_sym_public_statement_token1] = ACTIONS(5402), + [aux_sym_namelist_statement_token1] = ACTIONS(5402), + [aux_sym_common_statement_token1] = ACTIONS(5402), + [aux_sym_import_statement_token1] = ACTIONS(5402), + [aux_sym_derived_type_definition_token1] = ACTIONS(5402), + [aux_sym_abstract_specifier_token1] = ACTIONS(5402), + [aux_sym_procedure_attribute_token6] = ACTIONS(5402), + [aux_sym_variable_attributes_token1] = ACTIONS(5402), + [aux_sym_variable_attributes_token2] = ACTIONS(5402), + [aux_sym_variable_attributes_token3] = ACTIONS(5402), + [aux_sym_variable_attributes_token4] = ACTIONS(5402), + [aux_sym_variable_attributes_token5] = ACTIONS(5402), + [aux_sym__intrinsic_type_token1] = ACTIONS(5402), + [aux_sym__intrinsic_type_token2] = ACTIONS(5402), + [aux_sym__intrinsic_type_token3] = ACTIONS(5402), + [aux_sym__intrinsic_type_token4] = ACTIONS(5402), + [aux_sym__intrinsic_type_token6] = ACTIONS(5402), + [aux_sym__intrinsic_type_token7] = ACTIONS(5402), + [aux_sym__intrinsic_type_token8] = ACTIONS(5402), + [aux_sym__intrinsic_type_token9] = ACTIONS(5402), + [aux_sym__intrinsic_type_token10] = ACTIONS(5402), + [aux_sym_derived_type_token1] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5402), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5402), + [aux_sym_type_qualifier_token1] = ACTIONS(5402), + [aux_sym_type_qualifier_token2] = ACTIONS(5402), + [aux_sym_equivalence_statement_token1] = ACTIONS(5402), + [anon_sym_SEMI] = ACTIONS(5404), + [aux_sym_stop_statement_token1] = ACTIONS(5402), + [aux_sym_stop_statement_token2] = ACTIONS(5402), + [aux_sym_subroutine_call_token1] = ACTIONS(5402), + [aux_sym_keyword_statement_token1] = ACTIONS(5402), + [aux_sym_keyword_statement_token2] = ACTIONS(5402), + [aux_sym_keyword_statement_token3] = ACTIONS(5402), + [aux_sym_keyword_statement_token4] = ACTIONS(5402), + [aux_sym_keyword_statement_token6] = ACTIONS(5402), + [aux_sym_keyword_statement_token7] = ACTIONS(5402), + [aux_sym_include_statement_token1] = ACTIONS(5402), + [aux_sym_data_statement_token1] = ACTIONS(5402), + [aux_sym_do_loop_statement_token1] = ACTIONS(5402), + [aux_sym__inline_if_statement_token1] = ACTIONS(5402), + [aux_sym_end_if_statement_token1] = ACTIONS(5402), + [aux_sym_elseif_clause_token2] = ACTIONS(5402), + [aux_sym__inline_where_statement_token1] = ACTIONS(5402), + [aux_sym__forall_control_expression_token1] = ACTIONS(5402), + [aux_sym_select_case_statement_token1] = ACTIONS(5402), + [aux_sym_select_case_statement_token3] = ACTIONS(5402), + [aux_sym_select_type_statement_token1] = ACTIONS(5402), + [aux_sym_select_rank_statement_token2] = ACTIONS(5402), + [aux_sym_block_construct_token1] = ACTIONS(5402), + [aux_sym_associate_statement_token1] = ACTIONS(5402), + [aux_sym_format_statement_token1] = ACTIONS(5402), + [aux_sym_print_statement_token1] = ACTIONS(5402), + [aux_sym_open_statement_token1] = ACTIONS(5402), + [aux_sym_close_statement_token1] = ACTIONS(5402), + [aux_sym_inquire_statement_token1] = ACTIONS(5402), + [aux_sym_enum_statement_token1] = ACTIONS(5402), + [aux_sym_file_position_statement_token1] = ACTIONS(5402), + [aux_sym_file_position_statement_token2] = ACTIONS(5402), + [aux_sym_file_position_statement_token3] = ACTIONS(5402), + [aux_sym_file_position_statement_token4] = ACTIONS(5402), + [aux_sym_allocate_statement_token1] = ACTIONS(5402), + [aux_sym_entry_statement_token1] = ACTIONS(5402), + [aux_sym_logical_expression_token5] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_LPAREN_SLASH] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [aux_sym_boolean_literal_token1] = ACTIONS(5404), + [aux_sym_boolean_literal_token2] = ACTIONS(5404), + [aux_sym_null_literal_token1] = ACTIONS(5402), + [aux_sym_coarray_statement_token1] = ACTIONS(5402), + [aux_sym_coarray_statement_token2] = ACTIONS(5402), + [aux_sym_coarray_statement_token6] = ACTIONS(5402), + [aux_sym_coarray_statement_token8] = ACTIONS(5402), + [aux_sym_coarray_statement_token11] = ACTIONS(5402), + [aux_sym_coarray_statement_token12] = ACTIONS(5402), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5402), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5402), + [aux_sym_identifier_token1] = ACTIONS(5402), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5404), + [sym__float_literal] = ACTIONS(5404), + [sym__boz_literal] = ACTIONS(5404), + [sym__string_literal] = ACTIONS(5404), + [sym__string_literal_kind] = ACTIONS(5404), }, - [1683] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [aux_sym_preproc_else_token1] = ACTIONS(4571), - [aux_sym_preproc_elif_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), + [1592] = { + [aux_sym_preproc_include_token1] = ACTIONS(4569), + [aux_sym_preproc_def_token1] = ACTIONS(4569), + [aux_sym_preproc_if_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4569), + [sym_preproc_directive] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(4569), [anon_sym_PLUS] = ACTIONS(4573), [anon_sym_DASH] = ACTIONS(4573), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_program_statement_token2] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4569), + [aux_sym_interface_statement_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4569), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4569), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4569), + [aux_sym_language_binding_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token1] = ACTIONS(4569), + [aux_sym_procedure_attributes_token3] = ACTIONS(4569), + [aux_sym_contains_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token1] = ACTIONS(4569), + [aux_sym_use_statement_token2] = ACTIONS(4569), + [aux_sym_implicit_statement_token1] = ACTIONS(4569), + [aux_sym_implicit_statement_token3] = ACTIONS(4569), + [aux_sym_implicit_statement_token4] = ACTIONS(4569), + [aux_sym_save_statement_token1] = ACTIONS(4569), + [aux_sym_private_statement_token1] = ACTIONS(4569), + [aux_sym_public_statement_token1] = ACTIONS(4569), + [aux_sym_namelist_statement_token1] = ACTIONS(4569), + [aux_sym_common_statement_token1] = ACTIONS(4569), + [aux_sym_import_statement_token1] = ACTIONS(4569), + [aux_sym_derived_type_definition_token1] = ACTIONS(4569), + [aux_sym_abstract_specifier_token1] = ACTIONS(4569), + [aux_sym_procedure_attribute_token6] = ACTIONS(4569), + [aux_sym_variable_attributes_token1] = ACTIONS(4569), + [aux_sym_variable_attributes_token2] = ACTIONS(4569), + [aux_sym_variable_attributes_token3] = ACTIONS(4569), + [aux_sym_variable_attributes_token4] = ACTIONS(4569), + [aux_sym_variable_attributes_token5] = ACTIONS(4569), + [aux_sym__intrinsic_type_token1] = ACTIONS(4569), + [aux_sym__intrinsic_type_token2] = ACTIONS(4569), + [aux_sym__intrinsic_type_token3] = ACTIONS(4569), + [aux_sym__intrinsic_type_token4] = ACTIONS(4569), + [aux_sym__intrinsic_type_token6] = ACTIONS(4569), + [aux_sym__intrinsic_type_token7] = ACTIONS(4569), + [aux_sym__intrinsic_type_token8] = ACTIONS(4569), + [aux_sym__intrinsic_type_token9] = ACTIONS(4569), + [aux_sym__intrinsic_type_token10] = ACTIONS(4569), + [aux_sym_derived_type_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4569), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4569), + [aux_sym_type_qualifier_token1] = ACTIONS(4569), + [aux_sym_type_qualifier_token2] = ACTIONS(4569), + [aux_sym_equivalence_statement_token1] = ACTIONS(4569), [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token1] = ACTIONS(4569), + [aux_sym_stop_statement_token2] = ACTIONS(4569), + [aux_sym_subroutine_call_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token1] = ACTIONS(4569), + [aux_sym_keyword_statement_token2] = ACTIONS(4569), + [aux_sym_keyword_statement_token3] = ACTIONS(4569), + [aux_sym_keyword_statement_token4] = ACTIONS(4569), + [aux_sym_keyword_statement_token6] = ACTIONS(4569), + [aux_sym_keyword_statement_token7] = ACTIONS(4569), + [aux_sym_include_statement_token1] = ACTIONS(4569), + [aux_sym_data_statement_token1] = ACTIONS(4569), + [aux_sym_do_loop_statement_token1] = ACTIONS(4569), + [aux_sym__inline_if_statement_token1] = ACTIONS(4569), + [aux_sym_end_if_statement_token1] = ACTIONS(4569), + [aux_sym_elseif_clause_token2] = ACTIONS(4569), + [aux_sym__inline_where_statement_token1] = ACTIONS(4569), + [aux_sym__forall_control_expression_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token1] = ACTIONS(4569), + [aux_sym_select_case_statement_token3] = ACTIONS(4569), + [aux_sym_select_type_statement_token1] = ACTIONS(4569), + [aux_sym_select_rank_statement_token2] = ACTIONS(4569), + [aux_sym_block_construct_token1] = ACTIONS(4569), + [aux_sym_associate_statement_token1] = ACTIONS(4569), + [aux_sym_format_statement_token1] = ACTIONS(4569), + [aux_sym_print_statement_token1] = ACTIONS(4569), + [aux_sym_open_statement_token1] = ACTIONS(4569), + [aux_sym_close_statement_token1] = ACTIONS(4569), + [aux_sym_inquire_statement_token1] = ACTIONS(4569), + [aux_sym_enum_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token1] = ACTIONS(4569), + [aux_sym_file_position_statement_token2] = ACTIONS(4569), + [aux_sym_file_position_statement_token3] = ACTIONS(4569), + [aux_sym_file_position_statement_token4] = ACTIONS(4569), + [aux_sym_allocate_statement_token1] = ACTIONS(4569), + [aux_sym_entry_statement_token1] = ACTIONS(4569), [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_DOT] = ACTIONS(4569), [anon_sym_LPAREN_SLASH] = ACTIONS(4573), [anon_sym_LBRACK] = ACTIONS(4573), [aux_sym_boolean_literal_token1] = ACTIONS(4573), [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_null_literal_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_statement_token2] = ACTIONS(4569), + [aux_sym_coarray_statement_token6] = ACTIONS(4569), + [aux_sym_coarray_statement_token8] = ACTIONS(4569), + [aux_sym_coarray_statement_token11] = ACTIONS(4569), + [aux_sym_coarray_statement_token12] = ACTIONS(4569), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4569), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4569), + [aux_sym_identifier_token1] = ACTIONS(4569), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(4573), [sym__float_literal] = ACTIONS(4573), @@ -311617,365 +301042,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(4573), [sym__string_literal_kind] = ACTIONS(4573), }, - [1684] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [aux_sym_preproc_else_token1] = ACTIONS(4827), - [aux_sym_preproc_elif_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_end_program_statement_token2] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1685] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [aux_sym_preproc_else_token1] = ACTIONS(4575), - [aux_sym_preproc_elif_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [1593] = { + [aux_sym_preproc_include_token1] = ACTIONS(5446), + [aux_sym_preproc_def_token1] = ACTIONS(5446), + [aux_sym_preproc_if_token1] = ACTIONS(5446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5446), + [sym_preproc_directive] = ACTIONS(5446), + [anon_sym_LPAREN2] = ACTIONS(5446), + [anon_sym_PLUS] = ACTIONS(5448), + [anon_sym_DASH] = ACTIONS(5448), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_program_statement_token2] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(5446), + [aux_sym_interface_statement_token1] = ACTIONS(5446), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5446), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5446), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5446), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5446), + [aux_sym_language_binding_token1] = ACTIONS(5446), + [aux_sym_procedure_attributes_token1] = ACTIONS(5446), + [aux_sym_procedure_attributes_token3] = ACTIONS(5446), + [aux_sym_contains_statement_token1] = ACTIONS(5446), + [aux_sym_use_statement_token1] = ACTIONS(5446), + [aux_sym_use_statement_token2] = ACTIONS(5446), + [aux_sym_implicit_statement_token1] = ACTIONS(5446), + [aux_sym_implicit_statement_token3] = ACTIONS(5446), + [aux_sym_implicit_statement_token4] = ACTIONS(5446), + [aux_sym_save_statement_token1] = ACTIONS(5446), + [aux_sym_private_statement_token1] = ACTIONS(5446), + [aux_sym_public_statement_token1] = ACTIONS(5446), + [aux_sym_namelist_statement_token1] = ACTIONS(5446), + [aux_sym_common_statement_token1] = ACTIONS(5446), + [aux_sym_import_statement_token1] = ACTIONS(5446), + [aux_sym_derived_type_definition_token1] = ACTIONS(5446), + [aux_sym_abstract_specifier_token1] = ACTIONS(5446), + [aux_sym_procedure_attribute_token6] = ACTIONS(5446), + [aux_sym_variable_attributes_token1] = ACTIONS(5446), + [aux_sym_variable_attributes_token2] = ACTIONS(5446), + [aux_sym_variable_attributes_token3] = ACTIONS(5446), + [aux_sym_variable_attributes_token4] = ACTIONS(5446), + [aux_sym_variable_attributes_token5] = ACTIONS(5446), + [aux_sym__intrinsic_type_token1] = ACTIONS(5446), + [aux_sym__intrinsic_type_token2] = ACTIONS(5446), + [aux_sym__intrinsic_type_token3] = ACTIONS(5446), + [aux_sym__intrinsic_type_token4] = ACTIONS(5446), + [aux_sym__intrinsic_type_token6] = ACTIONS(5446), + [aux_sym__intrinsic_type_token7] = ACTIONS(5446), + [aux_sym__intrinsic_type_token8] = ACTIONS(5446), + [aux_sym__intrinsic_type_token9] = ACTIONS(5446), + [aux_sym__intrinsic_type_token10] = ACTIONS(5446), + [aux_sym_derived_type_token1] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5446), + [aux_sym_type_qualifier_token1] = ACTIONS(5446), + [aux_sym_type_qualifier_token2] = ACTIONS(5446), + [aux_sym_equivalence_statement_token1] = ACTIONS(5446), + [anon_sym_SEMI] = ACTIONS(5448), + [aux_sym_stop_statement_token1] = ACTIONS(5446), + [aux_sym_stop_statement_token2] = ACTIONS(5446), + [aux_sym_subroutine_call_token1] = ACTIONS(5446), + [aux_sym_keyword_statement_token1] = ACTIONS(5446), + [aux_sym_keyword_statement_token2] = ACTIONS(5446), + [aux_sym_keyword_statement_token3] = ACTIONS(5446), + [aux_sym_keyword_statement_token4] = ACTIONS(5446), + [aux_sym_keyword_statement_token6] = ACTIONS(5446), + [aux_sym_keyword_statement_token7] = ACTIONS(5446), + [aux_sym_include_statement_token1] = ACTIONS(5446), + [aux_sym_data_statement_token1] = ACTIONS(5446), + [aux_sym_do_loop_statement_token1] = ACTIONS(5446), + [aux_sym__inline_if_statement_token1] = ACTIONS(5446), + [aux_sym_end_if_statement_token1] = ACTIONS(5446), + [aux_sym_elseif_clause_token2] = ACTIONS(5446), + [aux_sym__inline_where_statement_token1] = ACTIONS(5446), + [aux_sym__forall_control_expression_token1] = ACTIONS(5446), + [aux_sym_select_case_statement_token1] = ACTIONS(5446), + [aux_sym_select_case_statement_token3] = ACTIONS(5446), + [aux_sym_select_type_statement_token1] = ACTIONS(5446), + [aux_sym_select_rank_statement_token2] = ACTIONS(5446), + [aux_sym_block_construct_token1] = ACTIONS(5446), + [aux_sym_associate_statement_token1] = ACTIONS(5446), + [aux_sym_format_statement_token1] = ACTIONS(5446), + [aux_sym_print_statement_token1] = ACTIONS(5446), + [aux_sym_open_statement_token1] = ACTIONS(5446), + [aux_sym_close_statement_token1] = ACTIONS(5446), + [aux_sym_inquire_statement_token1] = ACTIONS(5446), + [aux_sym_enum_statement_token1] = ACTIONS(5446), + [aux_sym_file_position_statement_token1] = ACTIONS(5446), + [aux_sym_file_position_statement_token2] = ACTIONS(5446), + [aux_sym_file_position_statement_token3] = ACTIONS(5446), + [aux_sym_file_position_statement_token4] = ACTIONS(5446), + [aux_sym_allocate_statement_token1] = ACTIONS(5446), + [aux_sym_entry_statement_token1] = ACTIONS(5446), + [aux_sym_logical_expression_token5] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5446), + [anon_sym_LPAREN_SLASH] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5448), + [aux_sym_boolean_literal_token1] = ACTIONS(5448), + [aux_sym_boolean_literal_token2] = ACTIONS(5448), + [aux_sym_null_literal_token1] = ACTIONS(5446), + [aux_sym_coarray_statement_token1] = ACTIONS(5446), + [aux_sym_coarray_statement_token2] = ACTIONS(5446), + [aux_sym_coarray_statement_token6] = ACTIONS(5446), + [aux_sym_coarray_statement_token8] = ACTIONS(5446), + [aux_sym_coarray_statement_token11] = ACTIONS(5446), + [aux_sym_coarray_statement_token12] = ACTIONS(5446), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5446), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5446), + [aux_sym_identifier_token1] = ACTIONS(5446), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5448), + [sym__float_literal] = ACTIONS(5448), + [sym__boz_literal] = ACTIONS(5448), + [sym__string_literal] = ACTIONS(5448), + [sym__string_literal_kind] = ACTIONS(5448), }, - [1686] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token2] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [aux_sym_preproc_else_token1] = ACTIONS(4996), - [aux_sym_preproc_elif_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_end_program_statement_token2] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_contains_statement_token1] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [1594] = { + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4277), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4271), + [aux_sym_interface_statement_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4271), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4271), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4271), + [aux_sym_language_binding_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token1] = ACTIONS(4271), + [aux_sym_procedure_attributes_token3] = ACTIONS(4271), + [aux_sym_contains_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token1] = ACTIONS(4271), + [aux_sym_use_statement_token2] = ACTIONS(4271), + [aux_sym_implicit_statement_token1] = ACTIONS(4271), + [aux_sym_implicit_statement_token3] = ACTIONS(4271), + [aux_sym_implicit_statement_token4] = ACTIONS(4271), + [aux_sym_save_statement_token1] = ACTIONS(4271), + [aux_sym_private_statement_token1] = ACTIONS(4271), + [aux_sym_public_statement_token1] = ACTIONS(4271), + [aux_sym_namelist_statement_token1] = ACTIONS(4271), + [aux_sym_common_statement_token1] = ACTIONS(4271), + [aux_sym_import_statement_token1] = ACTIONS(4271), + [aux_sym_derived_type_definition_token1] = ACTIONS(4271), + [aux_sym_abstract_specifier_token1] = ACTIONS(4271), + [aux_sym_procedure_attribute_token6] = ACTIONS(4271), + [aux_sym_variable_attributes_token1] = ACTIONS(4271), + [aux_sym_variable_attributes_token2] = ACTIONS(4271), + [aux_sym_variable_attributes_token3] = ACTIONS(4271), + [aux_sym_variable_attributes_token4] = ACTIONS(4271), + [aux_sym_variable_attributes_token5] = ACTIONS(4271), + [aux_sym__intrinsic_type_token1] = ACTIONS(4271), + [aux_sym__intrinsic_type_token2] = ACTIONS(4271), + [aux_sym__intrinsic_type_token3] = ACTIONS(4271), + [aux_sym__intrinsic_type_token4] = ACTIONS(4271), + [aux_sym__intrinsic_type_token6] = ACTIONS(4271), + [aux_sym__intrinsic_type_token7] = ACTIONS(4271), + [aux_sym__intrinsic_type_token8] = ACTIONS(4271), + [aux_sym__intrinsic_type_token9] = ACTIONS(4271), + [aux_sym__intrinsic_type_token10] = ACTIONS(4271), + [aux_sym_derived_type_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4271), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4271), + [aux_sym_type_qualifier_token1] = ACTIONS(4271), + [aux_sym_type_qualifier_token2] = ACTIONS(4271), + [aux_sym_equivalence_statement_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4277), + [aux_sym_stop_statement_token1] = ACTIONS(4271), + [aux_sym_stop_statement_token2] = ACTIONS(4271), + [aux_sym_subroutine_call_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token1] = ACTIONS(4271), + [aux_sym_keyword_statement_token2] = ACTIONS(4271), + [aux_sym_keyword_statement_token3] = ACTIONS(4271), + [aux_sym_keyword_statement_token4] = ACTIONS(4271), + [aux_sym_keyword_statement_token6] = ACTIONS(4271), + [aux_sym_keyword_statement_token7] = ACTIONS(4271), + [aux_sym_include_statement_token1] = ACTIONS(4271), + [aux_sym_data_statement_token1] = ACTIONS(4271), + [aux_sym_do_loop_statement_token1] = ACTIONS(4271), + [aux_sym__inline_if_statement_token1] = ACTIONS(4271), + [aux_sym_end_if_statement_token1] = ACTIONS(4271), + [aux_sym_elseif_clause_token2] = ACTIONS(4271), + [aux_sym__inline_where_statement_token1] = ACTIONS(4271), + [aux_sym__forall_control_expression_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token1] = ACTIONS(4271), + [aux_sym_select_case_statement_token3] = ACTIONS(4271), + [aux_sym_select_type_statement_token1] = ACTIONS(4271), + [aux_sym_select_rank_statement_token2] = ACTIONS(4271), + [aux_sym_block_construct_token1] = ACTIONS(4271), + [aux_sym_associate_statement_token1] = ACTIONS(4271), + [aux_sym_format_statement_token1] = ACTIONS(4271), + [aux_sym_print_statement_token1] = ACTIONS(4271), + [aux_sym_open_statement_token1] = ACTIONS(4271), + [aux_sym_close_statement_token1] = ACTIONS(4271), + [aux_sym_inquire_statement_token1] = ACTIONS(4271), + [aux_sym_enum_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token1] = ACTIONS(4271), + [aux_sym_file_position_statement_token2] = ACTIONS(4271), + [aux_sym_file_position_statement_token3] = ACTIONS(4271), + [aux_sym_file_position_statement_token4] = ACTIONS(4271), + [aux_sym_allocate_statement_token1] = ACTIONS(4271), + [aux_sym_entry_statement_token1] = ACTIONS(4271), + [aux_sym_logical_expression_token5] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LPAREN_SLASH] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4277), + [aux_sym_boolean_literal_token1] = ACTIONS(4277), + [aux_sym_boolean_literal_token2] = ACTIONS(4277), + [aux_sym_null_literal_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_statement_token2] = ACTIONS(4271), + [aux_sym_coarray_statement_token6] = ACTIONS(4271), + [aux_sym_coarray_statement_token8] = ACTIONS(4271), + [aux_sym_coarray_statement_token11] = ACTIONS(4271), + [aux_sym_coarray_statement_token12] = ACTIONS(4271), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4271), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4271), + [aux_sym_identifier_token1] = ACTIONS(4271), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4277), + [sym__float_literal] = ACTIONS(4277), + [sym__boz_literal] = ACTIONS(4277), + [sym__string_literal] = ACTIONS(4277), + [sym__string_literal_kind] = ACTIONS(4277), }, - [1687] = { + [1595] = { [aux_sym_preproc_include_token1] = ACTIONS(5002), [aux_sym_preproc_def_token1] = ACTIONS(5002), [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token2] = ACTIONS(5002), [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [aux_sym_preproc_else_token1] = ACTIONS(5002), - [aux_sym_preproc_elif_token1] = ACTIONS(5002), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), [sym_preproc_directive] = ACTIONS(5002), [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_end_program_statement_token2] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_end_function_statement_token1] = ACTIONS(5002), [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), [aux_sym_implicit_statement_token4] = ACTIONS(5002), [aux_sym_save_statement_token1] = ACTIONS(5002), [aux_sym_private_statement_token1] = ACTIONS(5002), [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), [aux_sym_variable_attributes_token2] = ACTIONS(5002), [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), [aux_sym_variable_attributes_token5] = ACTIONS(5002), [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), [aux_sym__intrinsic_type_token3] = ACTIONS(5002), [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), [aux_sym_type_qualifier_token1] = ACTIONS(5002), [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), [aux_sym_stop_statement_token1] = ACTIONS(5002), [aux_sym_stop_statement_token2] = ACTIONS(5002), [aux_sym_subroutine_call_token1] = ACTIONS(5002), @@ -312004,18 +301387,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_open_statement_token1] = ACTIONS(5002), [aux_sym_close_statement_token1] = ACTIONS(5002), [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), [aux_sym_file_position_statement_token1] = ACTIONS(5002), [aux_sym_file_position_statement_token2] = ACTIONS(5002), [aux_sym_file_position_statement_token3] = ACTIONS(5002), [aux_sym_file_position_statement_token4] = ACTIONS(5002), [aux_sym_allocate_statement_token1] = ACTIONS(5002), [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), + [aux_sym_logical_expression_token5] = ACTIONS(5004), [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [anon_sym_LPAREN_SLASH] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [aux_sym_boolean_literal_token1] = ACTIONS(5004), + [aux_sym_boolean_literal_token2] = ACTIONS(5004), [aux_sym_null_literal_token1] = ACTIONS(5002), [aux_sym_coarray_statement_token1] = ACTIONS(5002), [aux_sym_coarray_statement_token2] = ACTIONS(5002), @@ -312027,995 +301411,1079 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), [aux_sym_identifier_token1] = ACTIONS(5002), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [sym__integer_literal] = ACTIONS(5004), + [sym__float_literal] = ACTIONS(5004), + [sym__boz_literal] = ACTIONS(5004), + [sym__string_literal] = ACTIONS(5004), + [sym__string_literal_kind] = ACTIONS(5004), }, - [1688] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token2] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [aux_sym_preproc_else_token1] = ACTIONS(5636), - [aux_sym_preproc_elif_token1] = ACTIONS(5636), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_end_program_statement_token2] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_contains_statement_token1] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [1596] = { + [aux_sym_preproc_include_token1] = ACTIONS(4933), + [aux_sym_preproc_def_token1] = ACTIONS(4933), + [aux_sym_preproc_if_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4933), + [sym_preproc_directive] = ACTIONS(4933), + [anon_sym_LPAREN2] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4933), + [aux_sym_interface_statement_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4933), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4933), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4933), + [aux_sym_language_binding_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token1] = ACTIONS(4933), + [aux_sym_procedure_attributes_token3] = ACTIONS(4933), + [aux_sym_contains_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token1] = ACTIONS(4933), + [aux_sym_use_statement_token2] = ACTIONS(4933), + [aux_sym_implicit_statement_token1] = ACTIONS(4933), + [aux_sym_implicit_statement_token3] = ACTIONS(4933), + [aux_sym_implicit_statement_token4] = ACTIONS(4933), + [aux_sym_save_statement_token1] = ACTIONS(4933), + [aux_sym_private_statement_token1] = ACTIONS(4933), + [aux_sym_public_statement_token1] = ACTIONS(4933), + [aux_sym_namelist_statement_token1] = ACTIONS(4933), + [aux_sym_common_statement_token1] = ACTIONS(4933), + [aux_sym_import_statement_token1] = ACTIONS(4933), + [aux_sym_derived_type_definition_token1] = ACTIONS(4933), + [aux_sym_abstract_specifier_token1] = ACTIONS(4933), + [aux_sym_procedure_attribute_token6] = ACTIONS(4933), + [aux_sym_variable_attributes_token1] = ACTIONS(4933), + [aux_sym_variable_attributes_token2] = ACTIONS(4933), + [aux_sym_variable_attributes_token3] = ACTIONS(4933), + [aux_sym_variable_attributes_token4] = ACTIONS(4933), + [aux_sym_variable_attributes_token5] = ACTIONS(4933), + [aux_sym__intrinsic_type_token1] = ACTIONS(4933), + [aux_sym__intrinsic_type_token2] = ACTIONS(4933), + [aux_sym__intrinsic_type_token3] = ACTIONS(4933), + [aux_sym__intrinsic_type_token4] = ACTIONS(4933), + [aux_sym__intrinsic_type_token6] = ACTIONS(4933), + [aux_sym__intrinsic_type_token7] = ACTIONS(4933), + [aux_sym__intrinsic_type_token8] = ACTIONS(4933), + [aux_sym__intrinsic_type_token9] = ACTIONS(4933), + [aux_sym__intrinsic_type_token10] = ACTIONS(4933), + [aux_sym_derived_type_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4933), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4933), + [aux_sym_type_qualifier_token1] = ACTIONS(4933), + [aux_sym_type_qualifier_token2] = ACTIONS(4933), + [aux_sym_equivalence_statement_token1] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4939), + [aux_sym_stop_statement_token1] = ACTIONS(4933), + [aux_sym_stop_statement_token2] = ACTIONS(4933), + [aux_sym_subroutine_call_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token1] = ACTIONS(4933), + [aux_sym_keyword_statement_token2] = ACTIONS(4933), + [aux_sym_keyword_statement_token3] = ACTIONS(4933), + [aux_sym_keyword_statement_token4] = ACTIONS(4933), + [aux_sym_keyword_statement_token6] = ACTIONS(4933), + [aux_sym_keyword_statement_token7] = ACTIONS(4933), + [aux_sym_include_statement_token1] = ACTIONS(4933), + [aux_sym_data_statement_token1] = ACTIONS(4933), + [aux_sym_do_loop_statement_token1] = ACTIONS(4933), + [aux_sym__inline_if_statement_token1] = ACTIONS(4933), + [aux_sym_end_if_statement_token1] = ACTIONS(4933), + [aux_sym_elseif_clause_token2] = ACTIONS(4933), + [aux_sym__inline_where_statement_token1] = ACTIONS(4933), + [aux_sym__forall_control_expression_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token1] = ACTIONS(4933), + [aux_sym_select_case_statement_token3] = ACTIONS(4933), + [aux_sym_select_type_statement_token1] = ACTIONS(4933), + [aux_sym_select_rank_statement_token2] = ACTIONS(4933), + [aux_sym_block_construct_token1] = ACTIONS(4933), + [aux_sym_associate_statement_token1] = ACTIONS(4933), + [aux_sym_format_statement_token1] = ACTIONS(4933), + [aux_sym_print_statement_token1] = ACTIONS(4933), + [aux_sym_open_statement_token1] = ACTIONS(4933), + [aux_sym_close_statement_token1] = ACTIONS(4933), + [aux_sym_inquire_statement_token1] = ACTIONS(4933), + [aux_sym_enum_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token1] = ACTIONS(4933), + [aux_sym_file_position_statement_token2] = ACTIONS(4933), + [aux_sym_file_position_statement_token3] = ACTIONS(4933), + [aux_sym_file_position_statement_token4] = ACTIONS(4933), + [aux_sym_allocate_statement_token1] = ACTIONS(4933), + [aux_sym_entry_statement_token1] = ACTIONS(4933), + [aux_sym_logical_expression_token5] = ACTIONS(4939), + [anon_sym_DOT] = ACTIONS(4933), + [anon_sym_LPAREN_SLASH] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [aux_sym_boolean_literal_token1] = ACTIONS(4939), + [aux_sym_boolean_literal_token2] = ACTIONS(4939), + [aux_sym_null_literal_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_statement_token2] = ACTIONS(4933), + [aux_sym_coarray_statement_token6] = ACTIONS(4933), + [aux_sym_coarray_statement_token8] = ACTIONS(4933), + [aux_sym_coarray_statement_token11] = ACTIONS(4933), + [aux_sym_coarray_statement_token12] = ACTIONS(4933), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4933), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4933), + [aux_sym_identifier_token1] = ACTIONS(4933), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4939), + [sym__float_literal] = ACTIONS(4939), + [sym__boz_literal] = ACTIONS(4939), + [sym__string_literal] = ACTIONS(4939), + [sym__string_literal_kind] = ACTIONS(4939), }, - [1689] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token2] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [aux_sym_preproc_else_token1] = ACTIONS(5640), - [aux_sym_preproc_elif_token1] = ACTIONS(5640), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [1597] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_end_function_statement_token1] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_subroutine_call_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_keyword_statement_token4] = ACTIONS(4998), + [aux_sym_keyword_statement_token6] = ACTIONS(4998), + [aux_sym_keyword_statement_token7] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym_do_loop_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym__inline_where_statement_token1] = ACTIONS(4998), + [aux_sym__forall_control_expression_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token3] = ACTIONS(4998), + [aux_sym_select_type_statement_token1] = ACTIONS(4998), + [aux_sym_select_rank_statement_token2] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_associate_statement_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_print_statement_token1] = ACTIONS(4998), + [aux_sym_open_statement_token1] = ACTIONS(4998), + [aux_sym_close_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token2] = ACTIONS(4998), + [aux_sym_file_position_statement_token3] = ACTIONS(4998), + [aux_sym_file_position_statement_token4] = ACTIONS(4998), + [aux_sym_allocate_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [aux_sym_boolean_literal_token1] = ACTIONS(5000), + [aux_sym_boolean_literal_token2] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + [sym__float_literal] = ACTIONS(5000), + [sym__boz_literal] = ACTIONS(5000), + [sym__string_literal] = ACTIONS(5000), + [sym__string_literal_kind] = ACTIONS(5000), + }, + [1598] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_LPAREN2] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_end_program_statement_token2] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_contains_statement_token1] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_end_function_statement_token1] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_subroutine_call_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_keyword_statement_token4] = ACTIONS(4611), + [aux_sym_keyword_statement_token6] = ACTIONS(4611), + [aux_sym_keyword_statement_token7] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym_do_loop_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym__inline_where_statement_token1] = ACTIONS(4611), + [aux_sym__forall_control_expression_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token3] = ACTIONS(4611), + [aux_sym_select_type_statement_token1] = ACTIONS(4611), + [aux_sym_select_rank_statement_token2] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_associate_statement_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_print_statement_token1] = ACTIONS(4611), + [aux_sym_open_statement_token1] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token2] = ACTIONS(4611), + [aux_sym_file_position_statement_token3] = ACTIONS(4611), + [aux_sym_file_position_statement_token4] = ACTIONS(4611), + [aux_sym_allocate_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_logical_expression_token5] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LPAREN_SLASH] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4613), + [sym__float_literal] = ACTIONS(4613), + [sym__boz_literal] = ACTIONS(4613), + [sym__string_literal] = ACTIONS(4613), + [sym__string_literal_kind] = ACTIONS(4613), + }, + [1599] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token2] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_subroutine_call_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_keyword_statement_token4] = ACTIONS(4986), + [aux_sym_keyword_statement_token6] = ACTIONS(4986), + [aux_sym_keyword_statement_token7] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym_do_loop_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym__inline_where_statement_token1] = ACTIONS(4986), + [aux_sym__forall_control_expression_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token3] = ACTIONS(4986), + [aux_sym_select_type_statement_token1] = ACTIONS(4986), + [aux_sym_select_rank_statement_token2] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_associate_statement_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_print_statement_token1] = ACTIONS(4986), + [aux_sym_open_statement_token1] = ACTIONS(4986), + [aux_sym_close_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token2] = ACTIONS(4986), + [aux_sym_file_position_statement_token3] = ACTIONS(4986), + [aux_sym_file_position_statement_token4] = ACTIONS(4986), + [aux_sym_allocate_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_logical_expression_token5] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LPAREN_SLASH] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [aux_sym_boolean_literal_token1] = ACTIONS(4988), + [aux_sym_boolean_literal_token2] = ACTIONS(4988), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + [sym__float_literal] = ACTIONS(4988), + [sym__boz_literal] = ACTIONS(4988), + [sym__string_literal] = ACTIONS(4988), + [sym__string_literal_kind] = ACTIONS(4988), + }, + [1600] = { + [aux_sym_preproc_include_token1] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token2] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4990), + [aux_sym_interface_statement_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_language_binding_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_contains_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token2] = ACTIONS(4990), + [aux_sym_implicit_statement_token1] = ACTIONS(4990), + [aux_sym_implicit_statement_token3] = ACTIONS(4990), + [aux_sym_implicit_statement_token4] = ACTIONS(4990), + [aux_sym_save_statement_token1] = ACTIONS(4990), + [aux_sym_private_statement_token1] = ACTIONS(4990), + [aux_sym_public_statement_token1] = ACTIONS(4990), + [aux_sym_namelist_statement_token1] = ACTIONS(4990), + [aux_sym_common_statement_token1] = ACTIONS(4990), + [aux_sym_import_statement_token1] = ACTIONS(4990), + [aux_sym_derived_type_definition_token1] = ACTIONS(4990), + [aux_sym_abstract_specifier_token1] = ACTIONS(4990), + [aux_sym_procedure_attribute_token6] = ACTIONS(4990), + [aux_sym_variable_attributes_token1] = ACTIONS(4990), + [aux_sym_variable_attributes_token2] = ACTIONS(4990), + [aux_sym_variable_attributes_token3] = ACTIONS(4990), + [aux_sym_variable_attributes_token4] = ACTIONS(4990), + [aux_sym_variable_attributes_token5] = ACTIONS(4990), + [aux_sym__intrinsic_type_token1] = ACTIONS(4990), + [aux_sym__intrinsic_type_token2] = ACTIONS(4990), + [aux_sym__intrinsic_type_token3] = ACTIONS(4990), + [aux_sym__intrinsic_type_token4] = ACTIONS(4990), + [aux_sym__intrinsic_type_token6] = ACTIONS(4990), + [aux_sym__intrinsic_type_token7] = ACTIONS(4990), + [aux_sym__intrinsic_type_token8] = ACTIONS(4990), + [aux_sym__intrinsic_type_token9] = ACTIONS(4990), + [aux_sym__intrinsic_type_token10] = ACTIONS(4990), + [aux_sym_derived_type_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), + [aux_sym_type_qualifier_token1] = ACTIONS(4990), + [aux_sym_type_qualifier_token2] = ACTIONS(4990), + [aux_sym_equivalence_statement_token1] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(4992), + [aux_sym_stop_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token2] = ACTIONS(4990), + [aux_sym_subroutine_call_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token3] = ACTIONS(4990), + [aux_sym_keyword_statement_token4] = ACTIONS(4990), + [aux_sym_keyword_statement_token6] = ACTIONS(4990), + [aux_sym_keyword_statement_token7] = ACTIONS(4990), + [aux_sym_include_statement_token1] = ACTIONS(4990), + [aux_sym_data_statement_token1] = ACTIONS(4990), + [aux_sym_do_loop_statement_token1] = ACTIONS(4990), + [aux_sym__inline_if_statement_token1] = ACTIONS(4990), + [aux_sym_end_if_statement_token1] = ACTIONS(4990), + [aux_sym_elseif_clause_token2] = ACTIONS(4990), + [aux_sym__inline_where_statement_token1] = ACTIONS(4990), + [aux_sym__forall_control_expression_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token3] = ACTIONS(4990), + [aux_sym_select_type_statement_token1] = ACTIONS(4990), + [aux_sym_select_rank_statement_token2] = ACTIONS(4990), + [aux_sym_block_construct_token1] = ACTIONS(4990), + [aux_sym_associate_statement_token1] = ACTIONS(4990), + [aux_sym_format_statement_token1] = ACTIONS(4990), + [aux_sym_print_statement_token1] = ACTIONS(4990), + [aux_sym_open_statement_token1] = ACTIONS(4990), + [aux_sym_close_statement_token1] = ACTIONS(4990), + [aux_sym_inquire_statement_token1] = ACTIONS(4990), + [aux_sym_enum_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token2] = ACTIONS(4990), + [aux_sym_file_position_statement_token3] = ACTIONS(4990), + [aux_sym_file_position_statement_token4] = ACTIONS(4990), + [aux_sym_allocate_statement_token1] = ACTIONS(4990), + [aux_sym_entry_statement_token1] = ACTIONS(4990), + [aux_sym_logical_expression_token5] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_LPAREN_SLASH] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [aux_sym_boolean_literal_token1] = ACTIONS(4992), + [aux_sym_boolean_literal_token2] = ACTIONS(4992), + [aux_sym_null_literal_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token2] = ACTIONS(4990), + [aux_sym_coarray_statement_token6] = ACTIONS(4990), + [aux_sym_coarray_statement_token8] = ACTIONS(4990), + [aux_sym_coarray_statement_token11] = ACTIONS(4990), + [aux_sym_coarray_statement_token12] = ACTIONS(4990), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), + [aux_sym_identifier_token1] = ACTIONS(4990), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), - }, - [1690] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token2] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [aux_sym_preproc_else_token1] = ACTIONS(5526), - [aux_sym_preproc_elif_token1] = ACTIONS(5526), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(5644), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_contains_statement_token1] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [sym__integer_literal] = ACTIONS(4992), + [sym__float_literal] = ACTIONS(4992), + [sym__boz_literal] = ACTIONS(4992), + [sym__string_literal] = ACTIONS(4992), + [sym__string_literal_kind] = ACTIONS(4992), }, - [1691] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token2] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [aux_sym_preproc_else_token1] = ACTIONS(5578), - [aux_sym_preproc_elif_token1] = ACTIONS(5578), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(5646), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), + [1601] = { + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_contains_statement_token1] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [1692] = { - [sym_assignment] = STATE(6038), - [sym_operator] = STATE(6038), - [sym_defined_io_procedure] = STATE(6038), - [sym__generic_procedure] = STATE(6038), - [sym_identifier] = STATE(6038), - [sym__end_of_statement] = STATE(1605), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5648), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5650), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token3] = ACTIONS(4335), + [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), + [aux_sym_implicit_statement_token4] = ACTIONS(4335), + [aux_sym_save_statement_token1] = ACTIONS(4335), + [aux_sym_private_statement_token1] = ACTIONS(4335), + [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), + [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), + [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), + [aux_sym_variable_attributes_token2] = ACTIONS(4335), + [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), + [aux_sym_variable_attributes_token5] = ACTIONS(4335), + [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), + [aux_sym__intrinsic_type_token3] = ACTIONS(4335), + [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), + [aux_sym_type_qualifier_token1] = ACTIONS(4335), + [aux_sym_type_qualifier_token2] = ACTIONS(4335), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), + [aux_sym_stop_statement_token1] = ACTIONS(4335), + [aux_sym_stop_statement_token2] = ACTIONS(4335), + [aux_sym_subroutine_call_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token1] = ACTIONS(4335), + [aux_sym_keyword_statement_token2] = ACTIONS(4335), + [aux_sym_keyword_statement_token3] = ACTIONS(4335), + [aux_sym_keyword_statement_token4] = ACTIONS(4335), + [aux_sym_keyword_statement_token6] = ACTIONS(4335), + [aux_sym_keyword_statement_token7] = ACTIONS(4335), + [aux_sym_include_statement_token1] = ACTIONS(4335), + [aux_sym_data_statement_token1] = ACTIONS(4335), + [aux_sym_do_loop_statement_token1] = ACTIONS(4335), + [aux_sym__inline_if_statement_token1] = ACTIONS(4335), + [aux_sym_end_if_statement_token1] = ACTIONS(4335), + [aux_sym_elseif_clause_token2] = ACTIONS(4335), + [aux_sym__inline_where_statement_token1] = ACTIONS(4335), + [aux_sym__forall_control_expression_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token1] = ACTIONS(4335), + [aux_sym_select_case_statement_token3] = ACTIONS(4335), + [aux_sym_select_type_statement_token1] = ACTIONS(4335), + [aux_sym_select_rank_statement_token2] = ACTIONS(4335), + [aux_sym_block_construct_token1] = ACTIONS(4335), + [aux_sym_associate_statement_token1] = ACTIONS(4335), + [aux_sym_format_statement_token1] = ACTIONS(4335), + [aux_sym_print_statement_token1] = ACTIONS(4335), + [aux_sym_open_statement_token1] = ACTIONS(4335), + [aux_sym_close_statement_token1] = ACTIONS(4335), + [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token1] = ACTIONS(4335), + [aux_sym_file_position_statement_token2] = ACTIONS(4335), + [aux_sym_file_position_statement_token3] = ACTIONS(4335), + [aux_sym_file_position_statement_token4] = ACTIONS(4335), + [aux_sym_allocate_statement_token1] = ACTIONS(4335), + [aux_sym_entry_statement_token1] = ACTIONS(4335), + [aux_sym_logical_expression_token5] = ACTIONS(4341), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), + [aux_sym_null_literal_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_statement_token2] = ACTIONS(4335), + [aux_sym_coarray_statement_token6] = ACTIONS(4335), + [aux_sym_coarray_statement_token8] = ACTIONS(4335), + [aux_sym_coarray_statement_token11] = ACTIONS(4335), + [aux_sym_coarray_statement_token12] = ACTIONS(4335), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), + [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5650), - }, - [1693] = { - [aux_sym_preproc_include_token1] = ACTIONS(4277), - [aux_sym_preproc_def_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token2] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4277), - [aux_sym_preproc_else_token1] = ACTIONS(4277), - [aux_sym_preproc_elif_token1] = ACTIONS(4277), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4277), - [sym_preproc_directive] = ACTIONS(4277), - [anon_sym_LPAREN2] = ACTIONS(4277), - [sym_preproc_comment] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4277), - [aux_sym_procedure_attributes_token3] = ACTIONS(4277), - [aux_sym_contains_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token2] = ACTIONS(4277), - [aux_sym_implicit_statement_token4] = ACTIONS(4277), - [aux_sym_save_statement_token1] = ACTIONS(4277), - [aux_sym_private_statement_token1] = ACTIONS(4277), - [aux_sym_public_statement_token1] = ACTIONS(4277), - [aux_sym_derived_type_definition_token1] = ACTIONS(4277), - [aux_sym_procedure_attribute_token6] = ACTIONS(4277), - [aux_sym_variable_attributes_token2] = ACTIONS(4277), - [aux_sym_variable_attributes_token3] = ACTIONS(4277), - [aux_sym_variable_attributes_token5] = ACTIONS(4277), - [aux_sym__intrinsic_type_token1] = ACTIONS(4277), - [aux_sym__intrinsic_type_token3] = ACTIONS(4277), - [aux_sym__intrinsic_type_token4] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4277), - [aux_sym_type_qualifier_token1] = ACTIONS(4277), - [aux_sym_type_qualifier_token2] = ACTIONS(4277), - [anon_sym_SEMI] = ACTIONS(4279), - [aux_sym_stop_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token2] = ACTIONS(4277), - [aux_sym_subroutine_call_token1] = ACTIONS(4277), - [aux_sym_keyword_statement_token1] = ACTIONS(4277), - [aux_sym_keyword_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token3] = ACTIONS(4277), - [aux_sym_keyword_statement_token4] = ACTIONS(4277), - [aux_sym_keyword_statement_token6] = ACTIONS(4277), - [aux_sym_keyword_statement_token7] = ACTIONS(4277), - [aux_sym_include_statement_token1] = ACTIONS(4277), - [aux_sym_data_statement_token1] = ACTIONS(4277), - [aux_sym_do_loop_statement_token1] = ACTIONS(4277), - [aux_sym__inline_if_statement_token1] = ACTIONS(4277), - [aux_sym_end_if_statement_token1] = ACTIONS(4277), - [aux_sym_elseif_clause_token2] = ACTIONS(4277), - [aux_sym__inline_where_statement_token1] = ACTIONS(4277), - [aux_sym__forall_control_expression_token1] = ACTIONS(4277), - [aux_sym_select_case_statement_token1] = ACTIONS(4277), - [aux_sym_select_case_statement_token3] = ACTIONS(4277), - [aux_sym_select_type_statement_token1] = ACTIONS(4277), - [aux_sym_select_rank_statement_token2] = ACTIONS(4277), - [aux_sym_block_construct_token1] = ACTIONS(4277), - [aux_sym_associate_statement_token1] = ACTIONS(4277), - [aux_sym_format_statement_token1] = ACTIONS(4277), - [aux_sym_print_statement_token1] = ACTIONS(4277), - [aux_sym_open_statement_token1] = ACTIONS(4277), - [aux_sym_close_statement_token1] = ACTIONS(4277), - [aux_sym_inquire_statement_token1] = ACTIONS(4277), - [aux_sym_file_position_statement_token1] = ACTIONS(4277), - [aux_sym_file_position_statement_token2] = ACTIONS(4277), - [aux_sym_file_position_statement_token3] = ACTIONS(4277), - [aux_sym_file_position_statement_token4] = ACTIONS(4277), - [aux_sym_allocate_statement_token1] = ACTIONS(4277), - [aux_sym_entry_statement_token1] = ACTIONS(4277), - [aux_sym_logical_expression_token5] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LPAREN_SLASH] = ACTIONS(4279), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_boolean_literal_token1] = ACTIONS(4279), - [aux_sym_boolean_literal_token2] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token2] = ACTIONS(4277), - [aux_sym_coarray_statement_token6] = ACTIONS(4277), - [aux_sym_coarray_statement_token8] = ACTIONS(4277), - [aux_sym_coarray_statement_token11] = ACTIONS(4277), - [aux_sym_coarray_statement_token12] = ACTIONS(4277), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4277), - [aux_sym_identifier_token1] = ACTIONS(4277), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4279), - [sym__float_literal] = ACTIONS(4279), - [sym__boz_literal] = ACTIONS(4279), - [sym__string_literal] = ACTIONS(4279), - [sym__string_literal_kind] = ACTIONS(4279), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), }, - [1694] = { - [aux_sym_preproc_include_token1] = ACTIONS(4331), - [aux_sym_preproc_def_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token2] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4331), - [sym_preproc_directive] = ACTIONS(4331), - [anon_sym_LPAREN2] = ACTIONS(4331), - [sym_preproc_comment] = ACTIONS(4333), - [anon_sym_PLUS] = ACTIONS(4333), - [anon_sym_DASH] = ACTIONS(4333), + [1602] = { + [aux_sym_preproc_include_token1] = ACTIONS(5410), + [aux_sym_preproc_def_token1] = ACTIONS(5410), + [aux_sym_preproc_if_token1] = ACTIONS(5410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5410), + [sym_preproc_directive] = ACTIONS(5410), + [anon_sym_LPAREN2] = ACTIONS(5410), + [anon_sym_PLUS] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4331), - [aux_sym_procedure_attributes_token3] = ACTIONS(4331), - [aux_sym_contains_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token2] = ACTIONS(4331), - [aux_sym_implicit_statement_token4] = ACTIONS(4331), - [aux_sym_save_statement_token1] = ACTIONS(4331), - [aux_sym_private_statement_token1] = ACTIONS(4331), - [aux_sym_public_statement_token1] = ACTIONS(4331), - [aux_sym_derived_type_definition_token1] = ACTIONS(4331), - [aux_sym_procedure_attribute_token6] = ACTIONS(4331), - [aux_sym_variable_attributes_token2] = ACTIONS(4331), - [aux_sym_variable_attributes_token3] = ACTIONS(4331), - [aux_sym_variable_attributes_token5] = ACTIONS(4331), - [aux_sym__intrinsic_type_token1] = ACTIONS(4331), - [aux_sym__intrinsic_type_token3] = ACTIONS(4331), - [aux_sym__intrinsic_type_token4] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4331), - [aux_sym_type_qualifier_token1] = ACTIONS(4331), - [aux_sym_type_qualifier_token2] = ACTIONS(4331), - [anon_sym_SEMI] = ACTIONS(4333), - [aux_sym_stop_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token2] = ACTIONS(4331), - [aux_sym_subroutine_call_token1] = ACTIONS(4331), - [aux_sym_keyword_statement_token1] = ACTIONS(4331), - [aux_sym_keyword_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token3] = ACTIONS(4331), - [aux_sym_keyword_statement_token4] = ACTIONS(4331), - [aux_sym_keyword_statement_token6] = ACTIONS(4331), - [aux_sym_keyword_statement_token7] = ACTIONS(4331), - [aux_sym_include_statement_token1] = ACTIONS(4331), - [aux_sym_data_statement_token1] = ACTIONS(4331), - [aux_sym_do_loop_statement_token1] = ACTIONS(4331), - [aux_sym__inline_if_statement_token1] = ACTIONS(4331), - [aux_sym_end_if_statement_token1] = ACTIONS(4331), - [aux_sym_elseif_clause_token2] = ACTIONS(4331), - [aux_sym__inline_where_statement_token1] = ACTIONS(4331), - [aux_sym__forall_control_expression_token1] = ACTIONS(4331), - [aux_sym_select_case_statement_token1] = ACTIONS(4331), - [aux_sym_select_case_statement_token3] = ACTIONS(4331), - [aux_sym_select_type_statement_token1] = ACTIONS(4331), - [aux_sym_select_rank_statement_token2] = ACTIONS(4331), - [aux_sym_block_construct_token1] = ACTIONS(4331), - [aux_sym_associate_statement_token1] = ACTIONS(4331), - [aux_sym_format_statement_token1] = ACTIONS(4331), - [aux_sym_print_statement_token1] = ACTIONS(4331), - [aux_sym_open_statement_token1] = ACTIONS(4331), - [aux_sym_close_statement_token1] = ACTIONS(4331), - [aux_sym_inquire_statement_token1] = ACTIONS(4331), - [aux_sym_file_position_statement_token1] = ACTIONS(4331), - [aux_sym_file_position_statement_token2] = ACTIONS(4331), - [aux_sym_file_position_statement_token3] = ACTIONS(4331), - [aux_sym_file_position_statement_token4] = ACTIONS(4331), - [aux_sym_allocate_statement_token1] = ACTIONS(4331), - [aux_sym_entry_statement_token1] = ACTIONS(4331), - [aux_sym_logical_expression_token5] = ACTIONS(4333), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_LPAREN_SLASH] = ACTIONS(4333), - [anon_sym_LBRACK] = ACTIONS(4333), - [aux_sym_boolean_literal_token1] = ACTIONS(4333), - [aux_sym_boolean_literal_token2] = ACTIONS(4333), - [aux_sym_null_literal_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token2] = ACTIONS(4331), - [aux_sym_coarray_statement_token6] = ACTIONS(4331), - [aux_sym_coarray_statement_token8] = ACTIONS(4331), - [aux_sym_coarray_statement_token11] = ACTIONS(4331), - [aux_sym_coarray_statement_token12] = ACTIONS(4331), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4331), - [aux_sym_identifier_token1] = ACTIONS(4331), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4333), - [sym__float_literal] = ACTIONS(4333), - [sym__boz_literal] = ACTIONS(4333), - [sym__string_literal] = ACTIONS(4333), - [sym__string_literal_kind] = ACTIONS(4333), - }, - [1695] = { - [sym_assignment] = STATE(6052), - [sym_operator] = STATE(6052), - [sym_defined_io_procedure] = STATE(6052), - [sym__generic_procedure] = STATE(6052), - [sym_identifier] = STATE(6052), - [sym__end_of_statement] = STATE(1557), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5652), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5654), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(5410), + [aux_sym_interface_statement_token1] = ACTIONS(5410), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5410), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5410), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5410), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5410), + [aux_sym_language_binding_token1] = ACTIONS(5410), + [aux_sym_procedure_attributes_token1] = ACTIONS(5410), + [aux_sym_procedure_attributes_token3] = ACTIONS(5410), + [aux_sym_contains_statement_token1] = ACTIONS(5410), + [aux_sym_use_statement_token1] = ACTIONS(5410), + [aux_sym_use_statement_token2] = ACTIONS(5410), + [aux_sym_implicit_statement_token1] = ACTIONS(5410), + [aux_sym_implicit_statement_token3] = ACTIONS(5410), + [aux_sym_implicit_statement_token4] = ACTIONS(5410), + [aux_sym_save_statement_token1] = ACTIONS(5410), + [aux_sym_private_statement_token1] = ACTIONS(5410), + [aux_sym_public_statement_token1] = ACTIONS(5410), + [aux_sym_namelist_statement_token1] = ACTIONS(5410), + [aux_sym_common_statement_token1] = ACTIONS(5410), + [aux_sym_import_statement_token1] = ACTIONS(5410), + [aux_sym_derived_type_definition_token1] = ACTIONS(5410), + [aux_sym_abstract_specifier_token1] = ACTIONS(5410), + [aux_sym_procedure_attribute_token6] = ACTIONS(5410), + [aux_sym_variable_attributes_token1] = ACTIONS(5410), + [aux_sym_variable_attributes_token2] = ACTIONS(5410), + [aux_sym_variable_attributes_token3] = ACTIONS(5410), + [aux_sym_variable_attributes_token4] = ACTIONS(5410), + [aux_sym_variable_attributes_token5] = ACTIONS(5410), + [aux_sym__intrinsic_type_token1] = ACTIONS(5410), + [aux_sym__intrinsic_type_token2] = ACTIONS(5410), + [aux_sym__intrinsic_type_token3] = ACTIONS(5410), + [aux_sym__intrinsic_type_token4] = ACTIONS(5410), + [aux_sym__intrinsic_type_token6] = ACTIONS(5410), + [aux_sym__intrinsic_type_token7] = ACTIONS(5410), + [aux_sym__intrinsic_type_token8] = ACTIONS(5410), + [aux_sym__intrinsic_type_token9] = ACTIONS(5410), + [aux_sym__intrinsic_type_token10] = ACTIONS(5410), + [aux_sym_derived_type_token1] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5410), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5410), + [aux_sym_type_qualifier_token1] = ACTIONS(5410), + [aux_sym_type_qualifier_token2] = ACTIONS(5410), + [aux_sym_equivalence_statement_token1] = ACTIONS(5410), + [anon_sym_SEMI] = ACTIONS(5412), + [aux_sym_stop_statement_token1] = ACTIONS(5410), + [aux_sym_stop_statement_token2] = ACTIONS(5410), + [aux_sym_subroutine_call_token1] = ACTIONS(5410), + [aux_sym_keyword_statement_token1] = ACTIONS(5410), + [aux_sym_keyword_statement_token2] = ACTIONS(5410), + [aux_sym_keyword_statement_token3] = ACTIONS(5410), + [aux_sym_keyword_statement_token4] = ACTIONS(5410), + [aux_sym_keyword_statement_token6] = ACTIONS(5410), + [aux_sym_keyword_statement_token7] = ACTIONS(5410), + [aux_sym_include_statement_token1] = ACTIONS(5410), + [aux_sym_data_statement_token1] = ACTIONS(5410), + [aux_sym_do_loop_statement_token1] = ACTIONS(5410), + [aux_sym__inline_if_statement_token1] = ACTIONS(5410), + [aux_sym_end_if_statement_token1] = ACTIONS(5410), + [aux_sym_elseif_clause_token2] = ACTIONS(5410), + [aux_sym__inline_where_statement_token1] = ACTIONS(5410), + [aux_sym__forall_control_expression_token1] = ACTIONS(5410), + [aux_sym_select_case_statement_token1] = ACTIONS(5410), + [aux_sym_select_case_statement_token3] = ACTIONS(5410), + [aux_sym_select_type_statement_token1] = ACTIONS(5410), + [aux_sym_select_rank_statement_token2] = ACTIONS(5410), + [aux_sym_block_construct_token1] = ACTIONS(5410), + [aux_sym_associate_statement_token1] = ACTIONS(5410), + [aux_sym_format_statement_token1] = ACTIONS(5410), + [aux_sym_print_statement_token1] = ACTIONS(5410), + [aux_sym_open_statement_token1] = ACTIONS(5410), + [aux_sym_close_statement_token1] = ACTIONS(5410), + [aux_sym_inquire_statement_token1] = ACTIONS(5410), + [aux_sym_enum_statement_token1] = ACTIONS(5410), + [aux_sym_file_position_statement_token1] = ACTIONS(5410), + [aux_sym_file_position_statement_token2] = ACTIONS(5410), + [aux_sym_file_position_statement_token3] = ACTIONS(5410), + [aux_sym_file_position_statement_token4] = ACTIONS(5410), + [aux_sym_allocate_statement_token1] = ACTIONS(5410), + [aux_sym_entry_statement_token1] = ACTIONS(5410), + [aux_sym_logical_expression_token5] = ACTIONS(5412), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_LPAREN_SLASH] = ACTIONS(5412), + [anon_sym_LBRACK] = ACTIONS(5412), + [aux_sym_boolean_literal_token1] = ACTIONS(5412), + [aux_sym_boolean_literal_token2] = ACTIONS(5412), + [aux_sym_null_literal_token1] = ACTIONS(5410), + [aux_sym_coarray_statement_token1] = ACTIONS(5410), + [aux_sym_coarray_statement_token2] = ACTIONS(5410), + [aux_sym_coarray_statement_token6] = ACTIONS(5410), + [aux_sym_coarray_statement_token8] = ACTIONS(5410), + [aux_sym_coarray_statement_token11] = ACTIONS(5410), + [aux_sym_coarray_statement_token12] = ACTIONS(5410), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5410), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5410), + [aux_sym_identifier_token1] = ACTIONS(5410), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5654), + [sym__integer_literal] = ACTIONS(5412), + [sym__float_literal] = ACTIONS(5412), + [sym__boz_literal] = ACTIONS(5412), + [sym__string_literal] = ACTIONS(5412), + [sym__string_literal_kind] = ACTIONS(5412), }, - [1696] = { - [sym_assignment] = STATE(6053), - [sym_operator] = STATE(6053), - [sym_defined_io_procedure] = STATE(6053), - [sym__generic_procedure] = STATE(6053), - [sym_identifier] = STATE(6053), - [sym__end_of_statement] = STATE(1558), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5656), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5658), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5658), + [1603] = { + [aux_sym_preproc_include_token1] = ACTIONS(4943), + [aux_sym_preproc_def_token1] = ACTIONS(4943), + [aux_sym_preproc_if_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4943), + [sym_preproc_directive] = ACTIONS(4943), + [anon_sym_LPAREN2] = ACTIONS(4943), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4943), + [aux_sym_interface_statement_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4943), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4943), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4943), + [aux_sym_language_binding_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token1] = ACTIONS(4943), + [aux_sym_procedure_attributes_token3] = ACTIONS(4943), + [aux_sym_contains_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token1] = ACTIONS(4943), + [aux_sym_use_statement_token2] = ACTIONS(4943), + [aux_sym_implicit_statement_token1] = ACTIONS(4943), + [aux_sym_implicit_statement_token3] = ACTIONS(4943), + [aux_sym_implicit_statement_token4] = ACTIONS(4943), + [aux_sym_save_statement_token1] = ACTIONS(4943), + [aux_sym_private_statement_token1] = ACTIONS(4943), + [aux_sym_public_statement_token1] = ACTIONS(4943), + [aux_sym_namelist_statement_token1] = ACTIONS(4943), + [aux_sym_common_statement_token1] = ACTIONS(4943), + [aux_sym_import_statement_token1] = ACTIONS(4943), + [aux_sym_derived_type_definition_token1] = ACTIONS(4943), + [aux_sym_abstract_specifier_token1] = ACTIONS(4943), + [aux_sym_procedure_attribute_token6] = ACTIONS(4943), + [aux_sym_variable_attributes_token1] = ACTIONS(4943), + [aux_sym_variable_attributes_token2] = ACTIONS(4943), + [aux_sym_variable_attributes_token3] = ACTIONS(4943), + [aux_sym_variable_attributes_token4] = ACTIONS(4943), + [aux_sym_variable_attributes_token5] = ACTIONS(4943), + [aux_sym__intrinsic_type_token1] = ACTIONS(4943), + [aux_sym__intrinsic_type_token2] = ACTIONS(4943), + [aux_sym__intrinsic_type_token3] = ACTIONS(4943), + [aux_sym__intrinsic_type_token4] = ACTIONS(4943), + [aux_sym__intrinsic_type_token6] = ACTIONS(4943), + [aux_sym__intrinsic_type_token7] = ACTIONS(4943), + [aux_sym__intrinsic_type_token8] = ACTIONS(4943), + [aux_sym__intrinsic_type_token9] = ACTIONS(4943), + [aux_sym__intrinsic_type_token10] = ACTIONS(4943), + [aux_sym_derived_type_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4943), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4943), + [aux_sym_type_qualifier_token1] = ACTIONS(4943), + [aux_sym_type_qualifier_token2] = ACTIONS(4943), + [aux_sym_equivalence_statement_token1] = ACTIONS(4943), + [anon_sym_SEMI] = ACTIONS(4949), + [aux_sym_stop_statement_token1] = ACTIONS(4943), + [aux_sym_stop_statement_token2] = ACTIONS(4943), + [aux_sym_subroutine_call_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token1] = ACTIONS(4943), + [aux_sym_keyword_statement_token2] = ACTIONS(4943), + [aux_sym_keyword_statement_token3] = ACTIONS(4943), + [aux_sym_keyword_statement_token4] = ACTIONS(4943), + [aux_sym_keyword_statement_token6] = ACTIONS(4943), + [aux_sym_keyword_statement_token7] = ACTIONS(4943), + [aux_sym_include_statement_token1] = ACTIONS(4943), + [aux_sym_data_statement_token1] = ACTIONS(4943), + [aux_sym_do_loop_statement_token1] = ACTIONS(4943), + [aux_sym__inline_if_statement_token1] = ACTIONS(4943), + [aux_sym_end_if_statement_token1] = ACTIONS(4943), + [aux_sym_elseif_clause_token2] = ACTIONS(4943), + [aux_sym__inline_where_statement_token1] = ACTIONS(4943), + [aux_sym__forall_control_expression_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token1] = ACTIONS(4943), + [aux_sym_select_case_statement_token3] = ACTIONS(4943), + [aux_sym_select_type_statement_token1] = ACTIONS(4943), + [aux_sym_select_rank_statement_token2] = ACTIONS(4943), + [aux_sym_block_construct_token1] = ACTIONS(4943), + [aux_sym_associate_statement_token1] = ACTIONS(4943), + [aux_sym_format_statement_token1] = ACTIONS(4943), + [aux_sym_print_statement_token1] = ACTIONS(4943), + [aux_sym_open_statement_token1] = ACTIONS(4943), + [aux_sym_close_statement_token1] = ACTIONS(4943), + [aux_sym_inquire_statement_token1] = ACTIONS(4943), + [aux_sym_enum_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token1] = ACTIONS(4943), + [aux_sym_file_position_statement_token2] = ACTIONS(4943), + [aux_sym_file_position_statement_token3] = ACTIONS(4943), + [aux_sym_file_position_statement_token4] = ACTIONS(4943), + [aux_sym_allocate_statement_token1] = ACTIONS(4943), + [aux_sym_entry_statement_token1] = ACTIONS(4943), + [aux_sym_logical_expression_token5] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_LPAREN_SLASH] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [aux_sym_boolean_literal_token1] = ACTIONS(4949), + [aux_sym_boolean_literal_token2] = ACTIONS(4949), + [aux_sym_null_literal_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_statement_token2] = ACTIONS(4943), + [aux_sym_coarray_statement_token6] = ACTIONS(4943), + [aux_sym_coarray_statement_token8] = ACTIONS(4943), + [aux_sym_coarray_statement_token11] = ACTIONS(4943), + [aux_sym_coarray_statement_token12] = ACTIONS(4943), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4943), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4943), + [aux_sym_identifier_token1] = ACTIONS(4943), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4949), + [sym__float_literal] = ACTIONS(4949), + [sym__boz_literal] = ACTIONS(4949), + [sym__string_literal] = ACTIONS(4949), + [sym__string_literal_kind] = ACTIONS(4949), }, - [1697] = { + [1604] = { [aux_sym_preproc_include_token1] = ACTIONS(4335), [aux_sym_preproc_def_token1] = ACTIONS(4335), [aux_sym_preproc_if_token1] = ACTIONS(4335), - [aux_sym_preproc_if_token2] = ACTIONS(4335), [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), - [aux_sym_preproc_else_token1] = ACTIONS(4335), - [aux_sym_preproc_elif_token1] = ACTIONS(4335), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4335), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4335), [sym_preproc_directive] = ACTIONS(4335), [anon_sym_LPAREN2] = ACTIONS(4335), - [sym_preproc_comment] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4337), - [anon_sym_DASH] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4335), + [aux_sym_interface_statement_token1] = ACTIONS(4335), [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4335), + [aux_sym_language_binding_token1] = ACTIONS(4335), + [aux_sym_procedure_attributes_token1] = ACTIONS(4335), [aux_sym_procedure_attributes_token3] = ACTIONS(4335), [aux_sym_contains_statement_token1] = ACTIONS(4335), + [aux_sym_use_statement_token1] = ACTIONS(4335), [aux_sym_use_statement_token2] = ACTIONS(4335), + [aux_sym_implicit_statement_token1] = ACTIONS(4335), + [aux_sym_implicit_statement_token3] = ACTIONS(4335), [aux_sym_implicit_statement_token4] = ACTIONS(4335), [aux_sym_save_statement_token1] = ACTIONS(4335), [aux_sym_private_statement_token1] = ACTIONS(4335), [aux_sym_public_statement_token1] = ACTIONS(4335), + [aux_sym_namelist_statement_token1] = ACTIONS(4335), + [aux_sym_common_statement_token1] = ACTIONS(4335), + [aux_sym_import_statement_token1] = ACTIONS(4335), [aux_sym_derived_type_definition_token1] = ACTIONS(4335), + [aux_sym_abstract_specifier_token1] = ACTIONS(4335), [aux_sym_procedure_attribute_token6] = ACTIONS(4335), + [aux_sym_variable_attributes_token1] = ACTIONS(4335), [aux_sym_variable_attributes_token2] = ACTIONS(4335), [aux_sym_variable_attributes_token3] = ACTIONS(4335), + [aux_sym_variable_attributes_token4] = ACTIONS(4335), [aux_sym_variable_attributes_token5] = ACTIONS(4335), [aux_sym__intrinsic_type_token1] = ACTIONS(4335), + [aux_sym__intrinsic_type_token2] = ACTIONS(4335), [aux_sym__intrinsic_type_token3] = ACTIONS(4335), [aux_sym__intrinsic_type_token4] = ACTIONS(4335), + [aux_sym__intrinsic_type_token6] = ACTIONS(4335), + [aux_sym__intrinsic_type_token7] = ACTIONS(4335), + [aux_sym__intrinsic_type_token8] = ACTIONS(4335), + [aux_sym__intrinsic_type_token9] = ACTIONS(4335), + [aux_sym__intrinsic_type_token10] = ACTIONS(4335), + [aux_sym_derived_type_token1] = ACTIONS(4335), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), [aux_sym_type_qualifier_token1] = ACTIONS(4335), [aux_sym_type_qualifier_token2] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4337), + [aux_sym_equivalence_statement_token1] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4341), [aux_sym_stop_statement_token1] = ACTIONS(4335), [aux_sym_stop_statement_token2] = ACTIONS(4335), [aux_sym_subroutine_call_token1] = ACTIONS(4335), @@ -313044,18 +302512,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_open_statement_token1] = ACTIONS(4335), [aux_sym_close_statement_token1] = ACTIONS(4335), [aux_sym_inquire_statement_token1] = ACTIONS(4335), + [aux_sym_enum_statement_token1] = ACTIONS(4335), [aux_sym_file_position_statement_token1] = ACTIONS(4335), [aux_sym_file_position_statement_token2] = ACTIONS(4335), [aux_sym_file_position_statement_token3] = ACTIONS(4335), [aux_sym_file_position_statement_token4] = ACTIONS(4335), [aux_sym_allocate_statement_token1] = ACTIONS(4335), [aux_sym_entry_statement_token1] = ACTIONS(4335), - [aux_sym_logical_expression_token5] = ACTIONS(4337), + [aux_sym_logical_expression_token5] = ACTIONS(4341), [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_LPAREN_SLASH] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [aux_sym_boolean_literal_token1] = ACTIONS(4337), - [aux_sym_boolean_literal_token2] = ACTIONS(4337), + [anon_sym_LPAREN_SLASH] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [aux_sym_boolean_literal_token1] = ACTIONS(4341), + [aux_sym_boolean_literal_token2] = ACTIONS(4341), [aux_sym_null_literal_token1] = ACTIONS(4335), [aux_sym_coarray_statement_token1] = ACTIONS(4335), [aux_sym_coarray_statement_token2] = ACTIONS(4335), @@ -313067,3507 +302536,4800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), [aux_sym_identifier_token1] = ACTIONS(4335), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4337), - [sym__float_literal] = ACTIONS(4337), - [sym__boz_literal] = ACTIONS(4337), - [sym__string_literal] = ACTIONS(4337), - [sym__string_literal_kind] = ACTIONS(4337), + [sym__integer_literal] = ACTIONS(4341), + [sym__float_literal] = ACTIONS(4341), + [sym__boz_literal] = ACTIONS(4341), + [sym__string_literal] = ACTIONS(4341), + [sym__string_literal_kind] = ACTIONS(4341), + }, + [1605] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_subroutine_call_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_keyword_statement_token4] = ACTIONS(5067), + [aux_sym_keyword_statement_token6] = ACTIONS(5067), + [aux_sym_keyword_statement_token7] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym_do_loop_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym__inline_where_statement_token1] = ACTIONS(5067), + [aux_sym__forall_control_expression_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token3] = ACTIONS(5067), + [aux_sym_select_type_statement_token1] = ACTIONS(5067), + [aux_sym_select_rank_statement_token2] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_associate_statement_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_print_statement_token1] = ACTIONS(5067), + [aux_sym_open_statement_token1] = ACTIONS(5067), + [aux_sym_close_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token2] = ACTIONS(5067), + [aux_sym_file_position_statement_token3] = ACTIONS(5067), + [aux_sym_file_position_statement_token4] = ACTIONS(5067), + [aux_sym_allocate_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_logical_expression_token5] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LPAREN_SLASH] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [aux_sym_boolean_literal_token1] = ACTIONS(5069), + [aux_sym_boolean_literal_token2] = ACTIONS(5069), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + [sym__float_literal] = ACTIONS(5069), + [sym__boz_literal] = ACTIONS(5069), + [sym__string_literal] = ACTIONS(5069), + [sym__string_literal_kind] = ACTIONS(5069), + }, + [1606] = { + [aux_sym_preproc_include_token1] = ACTIONS(5418), + [aux_sym_preproc_def_token1] = ACTIONS(5418), + [aux_sym_preproc_if_token1] = ACTIONS(5418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5418), + [sym_preproc_directive] = ACTIONS(5418), + [anon_sym_LPAREN2] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5418), + [aux_sym_interface_statement_token1] = ACTIONS(5418), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5418), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5418), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5418), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5418), + [aux_sym_language_binding_token1] = ACTIONS(5418), + [aux_sym_procedure_attributes_token1] = ACTIONS(5418), + [aux_sym_procedure_attributes_token3] = ACTIONS(5418), + [aux_sym_contains_statement_token1] = ACTIONS(5418), + [aux_sym_use_statement_token1] = ACTIONS(5418), + [aux_sym_use_statement_token2] = ACTIONS(5418), + [aux_sym_implicit_statement_token1] = ACTIONS(5418), + [aux_sym_implicit_statement_token3] = ACTIONS(5418), + [aux_sym_implicit_statement_token4] = ACTIONS(5418), + [aux_sym_save_statement_token1] = ACTIONS(5418), + [aux_sym_private_statement_token1] = ACTIONS(5418), + [aux_sym_public_statement_token1] = ACTIONS(5418), + [aux_sym_namelist_statement_token1] = ACTIONS(5418), + [aux_sym_common_statement_token1] = ACTIONS(5418), + [aux_sym_import_statement_token1] = ACTIONS(5418), + [aux_sym_derived_type_definition_token1] = ACTIONS(5418), + [aux_sym_abstract_specifier_token1] = ACTIONS(5418), + [aux_sym_procedure_attribute_token6] = ACTIONS(5418), + [aux_sym_variable_attributes_token1] = ACTIONS(5418), + [aux_sym_variable_attributes_token2] = ACTIONS(5418), + [aux_sym_variable_attributes_token3] = ACTIONS(5418), + [aux_sym_variable_attributes_token4] = ACTIONS(5418), + [aux_sym_variable_attributes_token5] = ACTIONS(5418), + [aux_sym__intrinsic_type_token1] = ACTIONS(5418), + [aux_sym__intrinsic_type_token2] = ACTIONS(5418), + [aux_sym__intrinsic_type_token3] = ACTIONS(5418), + [aux_sym__intrinsic_type_token4] = ACTIONS(5418), + [aux_sym__intrinsic_type_token6] = ACTIONS(5418), + [aux_sym__intrinsic_type_token7] = ACTIONS(5418), + [aux_sym__intrinsic_type_token8] = ACTIONS(5418), + [aux_sym__intrinsic_type_token9] = ACTIONS(5418), + [aux_sym__intrinsic_type_token10] = ACTIONS(5418), + [aux_sym_derived_type_token1] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5418), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5418), + [aux_sym_type_qualifier_token1] = ACTIONS(5418), + [aux_sym_type_qualifier_token2] = ACTIONS(5418), + [aux_sym_equivalence_statement_token1] = ACTIONS(5418), + [anon_sym_SEMI] = ACTIONS(5420), + [aux_sym_stop_statement_token1] = ACTIONS(5418), + [aux_sym_stop_statement_token2] = ACTIONS(5418), + [aux_sym_subroutine_call_token1] = ACTIONS(5418), + [aux_sym_keyword_statement_token1] = ACTIONS(5418), + [aux_sym_keyword_statement_token2] = ACTIONS(5418), + [aux_sym_keyword_statement_token3] = ACTIONS(5418), + [aux_sym_keyword_statement_token4] = ACTIONS(5418), + [aux_sym_keyword_statement_token6] = ACTIONS(5418), + [aux_sym_keyword_statement_token7] = ACTIONS(5418), + [aux_sym_include_statement_token1] = ACTIONS(5418), + [aux_sym_data_statement_token1] = ACTIONS(5418), + [aux_sym_do_loop_statement_token1] = ACTIONS(5418), + [aux_sym__inline_if_statement_token1] = ACTIONS(5418), + [aux_sym_end_if_statement_token1] = ACTIONS(5418), + [aux_sym_elseif_clause_token2] = ACTIONS(5418), + [aux_sym__inline_where_statement_token1] = ACTIONS(5418), + [aux_sym__forall_control_expression_token1] = ACTIONS(5418), + [aux_sym_select_case_statement_token1] = ACTIONS(5418), + [aux_sym_select_case_statement_token3] = ACTIONS(5418), + [aux_sym_select_type_statement_token1] = ACTIONS(5418), + [aux_sym_select_rank_statement_token2] = ACTIONS(5418), + [aux_sym_block_construct_token1] = ACTIONS(5418), + [aux_sym_associate_statement_token1] = ACTIONS(5418), + [aux_sym_format_statement_token1] = ACTIONS(5418), + [aux_sym_print_statement_token1] = ACTIONS(5418), + [aux_sym_open_statement_token1] = ACTIONS(5418), + [aux_sym_close_statement_token1] = ACTIONS(5418), + [aux_sym_inquire_statement_token1] = ACTIONS(5418), + [aux_sym_enum_statement_token1] = ACTIONS(5418), + [aux_sym_file_position_statement_token1] = ACTIONS(5418), + [aux_sym_file_position_statement_token2] = ACTIONS(5418), + [aux_sym_file_position_statement_token3] = ACTIONS(5418), + [aux_sym_file_position_statement_token4] = ACTIONS(5418), + [aux_sym_allocate_statement_token1] = ACTIONS(5418), + [aux_sym_entry_statement_token1] = ACTIONS(5418), + [aux_sym_logical_expression_token5] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_LPAREN_SLASH] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [aux_sym_boolean_literal_token1] = ACTIONS(5420), + [aux_sym_boolean_literal_token2] = ACTIONS(5420), + [aux_sym_null_literal_token1] = ACTIONS(5418), + [aux_sym_coarray_statement_token1] = ACTIONS(5418), + [aux_sym_coarray_statement_token2] = ACTIONS(5418), + [aux_sym_coarray_statement_token6] = ACTIONS(5418), + [aux_sym_coarray_statement_token8] = ACTIONS(5418), + [aux_sym_coarray_statement_token11] = ACTIONS(5418), + [aux_sym_coarray_statement_token12] = ACTIONS(5418), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5418), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5418), + [aux_sym_identifier_token1] = ACTIONS(5418), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5420), + [sym__float_literal] = ACTIONS(5420), + [sym__boz_literal] = ACTIONS(5420), + [sym__string_literal] = ACTIONS(5420), + [sym__string_literal_kind] = ACTIONS(5420), + }, + [1607] = { + [aux_sym_preproc_include_token1] = ACTIONS(4976), + [aux_sym_preproc_def_token1] = ACTIONS(4976), + [aux_sym_preproc_if_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), + [sym_preproc_directive] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4976), + [aux_sym_interface_statement_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_language_binding_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token3] = ACTIONS(4976), + [aux_sym_contains_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token2] = ACTIONS(4976), + [aux_sym_implicit_statement_token1] = ACTIONS(4976), + [aux_sym_implicit_statement_token3] = ACTIONS(4976), + [aux_sym_implicit_statement_token4] = ACTIONS(4976), + [aux_sym_save_statement_token1] = ACTIONS(4976), + [aux_sym_private_statement_token1] = ACTIONS(4976), + [aux_sym_public_statement_token1] = ACTIONS(4976), + [aux_sym_namelist_statement_token1] = ACTIONS(4976), + [aux_sym_common_statement_token1] = ACTIONS(4976), + [aux_sym_import_statement_token1] = ACTIONS(4976), + [aux_sym_derived_type_definition_token1] = ACTIONS(4976), + [aux_sym_abstract_specifier_token1] = ACTIONS(4976), + [aux_sym_procedure_attribute_token6] = ACTIONS(4976), + [aux_sym_variable_attributes_token1] = ACTIONS(4976), + [aux_sym_variable_attributes_token2] = ACTIONS(4976), + [aux_sym_variable_attributes_token3] = ACTIONS(4976), + [aux_sym_variable_attributes_token4] = ACTIONS(4976), + [aux_sym_variable_attributes_token5] = ACTIONS(4976), + [aux_sym__intrinsic_type_token1] = ACTIONS(4976), + [aux_sym__intrinsic_type_token2] = ACTIONS(4976), + [aux_sym__intrinsic_type_token3] = ACTIONS(4976), + [aux_sym__intrinsic_type_token4] = ACTIONS(4976), + [aux_sym__intrinsic_type_token6] = ACTIONS(4976), + [aux_sym__intrinsic_type_token7] = ACTIONS(4976), + [aux_sym__intrinsic_type_token8] = ACTIONS(4976), + [aux_sym__intrinsic_type_token9] = ACTIONS(4976), + [aux_sym__intrinsic_type_token10] = ACTIONS(4976), + [aux_sym_derived_type_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), + [aux_sym_type_qualifier_token1] = ACTIONS(4976), + [aux_sym_type_qualifier_token2] = ACTIONS(4976), + [aux_sym_equivalence_statement_token1] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4980), + [aux_sym_stop_statement_token1] = ACTIONS(4976), + [aux_sym_stop_statement_token2] = ACTIONS(4976), + [aux_sym_subroutine_call_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token2] = ACTIONS(4976), + [aux_sym_keyword_statement_token3] = ACTIONS(4976), + [aux_sym_keyword_statement_token4] = ACTIONS(4976), + [aux_sym_keyword_statement_token6] = ACTIONS(4976), + [aux_sym_keyword_statement_token7] = ACTIONS(4976), + [aux_sym_include_statement_token1] = ACTIONS(4976), + [aux_sym_data_statement_token1] = ACTIONS(4976), + [aux_sym_do_loop_statement_token1] = ACTIONS(4976), + [aux_sym__inline_if_statement_token1] = ACTIONS(4976), + [aux_sym_end_if_statement_token1] = ACTIONS(4976), + [aux_sym_elseif_clause_token2] = ACTIONS(4976), + [aux_sym__inline_where_statement_token1] = ACTIONS(4976), + [aux_sym__forall_control_expression_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token3] = ACTIONS(4976), + [aux_sym_select_type_statement_token1] = ACTIONS(4976), + [aux_sym_select_rank_statement_token2] = ACTIONS(4976), + [aux_sym_block_construct_token1] = ACTIONS(4976), + [aux_sym_associate_statement_token1] = ACTIONS(4976), + [aux_sym_format_statement_token1] = ACTIONS(4976), + [aux_sym_print_statement_token1] = ACTIONS(4976), + [aux_sym_open_statement_token1] = ACTIONS(4976), + [aux_sym_close_statement_token1] = ACTIONS(4976), + [aux_sym_inquire_statement_token1] = ACTIONS(4976), + [aux_sym_enum_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token2] = ACTIONS(4976), + [aux_sym_file_position_statement_token3] = ACTIONS(4976), + [aux_sym_file_position_statement_token4] = ACTIONS(4976), + [aux_sym_allocate_statement_token1] = ACTIONS(4976), + [aux_sym_entry_statement_token1] = ACTIONS(4976), + [aux_sym_logical_expression_token5] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), + [aux_sym_null_literal_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token2] = ACTIONS(4976), + [aux_sym_coarray_statement_token6] = ACTIONS(4976), + [aux_sym_coarray_statement_token8] = ACTIONS(4976), + [aux_sym_coarray_statement_token11] = ACTIONS(4976), + [aux_sym_coarray_statement_token12] = ACTIONS(4976), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), + [aux_sym_identifier_token1] = ACTIONS(4976), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), + }, + [1608] = { + [aux_sym_preproc_include_token1] = ACTIONS(4976), + [aux_sym_preproc_def_token1] = ACTIONS(4976), + [aux_sym_preproc_if_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), + [sym_preproc_directive] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4976), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4976), + [aux_sym_interface_statement_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), + [aux_sym_language_binding_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token1] = ACTIONS(4976), + [aux_sym_procedure_attributes_token3] = ACTIONS(4976), + [aux_sym_end_function_statement_token1] = ACTIONS(4976), + [aux_sym_contains_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token1] = ACTIONS(4976), + [aux_sym_use_statement_token2] = ACTIONS(4976), + [aux_sym_implicit_statement_token1] = ACTIONS(4976), + [aux_sym_implicit_statement_token3] = ACTIONS(4976), + [aux_sym_implicit_statement_token4] = ACTIONS(4976), + [aux_sym_save_statement_token1] = ACTIONS(4976), + [aux_sym_private_statement_token1] = ACTIONS(4976), + [aux_sym_public_statement_token1] = ACTIONS(4976), + [aux_sym_namelist_statement_token1] = ACTIONS(4976), + [aux_sym_common_statement_token1] = ACTIONS(4976), + [aux_sym_import_statement_token1] = ACTIONS(4976), + [aux_sym_derived_type_definition_token1] = ACTIONS(4976), + [aux_sym_abstract_specifier_token1] = ACTIONS(4976), + [aux_sym_procedure_attribute_token6] = ACTIONS(4976), + [aux_sym_variable_attributes_token1] = ACTIONS(4976), + [aux_sym_variable_attributes_token2] = ACTIONS(4976), + [aux_sym_variable_attributes_token3] = ACTIONS(4976), + [aux_sym_variable_attributes_token4] = ACTIONS(4976), + [aux_sym_variable_attributes_token5] = ACTIONS(4976), + [aux_sym__intrinsic_type_token1] = ACTIONS(4976), + [aux_sym__intrinsic_type_token2] = ACTIONS(4976), + [aux_sym__intrinsic_type_token3] = ACTIONS(4976), + [aux_sym__intrinsic_type_token4] = ACTIONS(4976), + [aux_sym__intrinsic_type_token6] = ACTIONS(4976), + [aux_sym__intrinsic_type_token7] = ACTIONS(4976), + [aux_sym__intrinsic_type_token8] = ACTIONS(4976), + [aux_sym__intrinsic_type_token9] = ACTIONS(4976), + [aux_sym__intrinsic_type_token10] = ACTIONS(4976), + [aux_sym_derived_type_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), + [aux_sym_type_qualifier_token1] = ACTIONS(4976), + [aux_sym_type_qualifier_token2] = ACTIONS(4976), + [aux_sym_equivalence_statement_token1] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4980), + [aux_sym_stop_statement_token1] = ACTIONS(4976), + [aux_sym_stop_statement_token2] = ACTIONS(4976), + [aux_sym_subroutine_call_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token1] = ACTIONS(4976), + [aux_sym_keyword_statement_token2] = ACTIONS(4976), + [aux_sym_keyword_statement_token3] = ACTIONS(4976), + [aux_sym_keyword_statement_token4] = ACTIONS(4976), + [aux_sym_keyword_statement_token6] = ACTIONS(4976), + [aux_sym_keyword_statement_token7] = ACTIONS(4976), + [aux_sym_include_statement_token1] = ACTIONS(4976), + [aux_sym_data_statement_token1] = ACTIONS(4976), + [aux_sym_do_loop_statement_token1] = ACTIONS(4976), + [aux_sym__inline_if_statement_token1] = ACTIONS(4976), + [aux_sym_end_if_statement_token1] = ACTIONS(4976), + [aux_sym_elseif_clause_token2] = ACTIONS(4976), + [aux_sym__inline_where_statement_token1] = ACTIONS(4976), + [aux_sym__forall_control_expression_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token1] = ACTIONS(4976), + [aux_sym_select_case_statement_token3] = ACTIONS(4976), + [aux_sym_select_type_statement_token1] = ACTIONS(4976), + [aux_sym_select_rank_statement_token2] = ACTIONS(4976), + [aux_sym_block_construct_token1] = ACTIONS(4976), + [aux_sym_associate_statement_token1] = ACTIONS(4976), + [aux_sym_format_statement_token1] = ACTIONS(4976), + [aux_sym_print_statement_token1] = ACTIONS(4976), + [aux_sym_open_statement_token1] = ACTIONS(4976), + [aux_sym_close_statement_token1] = ACTIONS(4976), + [aux_sym_inquire_statement_token1] = ACTIONS(4976), + [aux_sym_enum_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token1] = ACTIONS(4976), + [aux_sym_file_position_statement_token2] = ACTIONS(4976), + [aux_sym_file_position_statement_token3] = ACTIONS(4976), + [aux_sym_file_position_statement_token4] = ACTIONS(4976), + [aux_sym_allocate_statement_token1] = ACTIONS(4976), + [aux_sym_entry_statement_token1] = ACTIONS(4976), + [aux_sym_logical_expression_token5] = ACTIONS(4980), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_LPAREN_SLASH] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [aux_sym_boolean_literal_token1] = ACTIONS(4980), + [aux_sym_boolean_literal_token2] = ACTIONS(4980), + [aux_sym_null_literal_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_statement_token2] = ACTIONS(4976), + [aux_sym_coarray_statement_token6] = ACTIONS(4976), + [aux_sym_coarray_statement_token8] = ACTIONS(4976), + [aux_sym_coarray_statement_token11] = ACTIONS(4976), + [aux_sym_coarray_statement_token12] = ACTIONS(4976), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), + [aux_sym_identifier_token1] = ACTIONS(4976), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4980), + [sym__float_literal] = ACTIONS(4980), + [sym__boz_literal] = ACTIONS(4980), + [sym__string_literal] = ACTIONS(4980), + [sym__string_literal_kind] = ACTIONS(4980), + }, + [1609] = { + [aux_sym_preproc_include_token1] = ACTIONS(5446), + [aux_sym_preproc_def_token1] = ACTIONS(5446), + [aux_sym_preproc_if_token1] = ACTIONS(5446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5446), + [sym_preproc_directive] = ACTIONS(5446), + [anon_sym_LPAREN2] = ACTIONS(5446), + [anon_sym_PLUS] = ACTIONS(5448), + [anon_sym_DASH] = ACTIONS(5448), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5446), + [aux_sym_interface_statement_token1] = ACTIONS(5446), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5446), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5446), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5446), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5446), + [aux_sym_language_binding_token1] = ACTIONS(5446), + [aux_sym_procedure_attributes_token1] = ACTIONS(5446), + [aux_sym_procedure_attributes_token3] = ACTIONS(5446), + [aux_sym_contains_statement_token1] = ACTIONS(5446), + [aux_sym_use_statement_token1] = ACTIONS(5446), + [aux_sym_use_statement_token2] = ACTIONS(5446), + [aux_sym_implicit_statement_token1] = ACTIONS(5446), + [aux_sym_implicit_statement_token3] = ACTIONS(5446), + [aux_sym_implicit_statement_token4] = ACTIONS(5446), + [aux_sym_save_statement_token1] = ACTIONS(5446), + [aux_sym_private_statement_token1] = ACTIONS(5446), + [aux_sym_public_statement_token1] = ACTIONS(5446), + [aux_sym_namelist_statement_token1] = ACTIONS(5446), + [aux_sym_common_statement_token1] = ACTIONS(5446), + [aux_sym_import_statement_token1] = ACTIONS(5446), + [aux_sym_derived_type_definition_token1] = ACTIONS(5446), + [aux_sym_abstract_specifier_token1] = ACTIONS(5446), + [aux_sym_procedure_attribute_token6] = ACTIONS(5446), + [aux_sym_variable_attributes_token1] = ACTIONS(5446), + [aux_sym_variable_attributes_token2] = ACTIONS(5446), + [aux_sym_variable_attributes_token3] = ACTIONS(5446), + [aux_sym_variable_attributes_token4] = ACTIONS(5446), + [aux_sym_variable_attributes_token5] = ACTIONS(5446), + [aux_sym__intrinsic_type_token1] = ACTIONS(5446), + [aux_sym__intrinsic_type_token2] = ACTIONS(5446), + [aux_sym__intrinsic_type_token3] = ACTIONS(5446), + [aux_sym__intrinsic_type_token4] = ACTIONS(5446), + [aux_sym__intrinsic_type_token6] = ACTIONS(5446), + [aux_sym__intrinsic_type_token7] = ACTIONS(5446), + [aux_sym__intrinsic_type_token8] = ACTIONS(5446), + [aux_sym__intrinsic_type_token9] = ACTIONS(5446), + [aux_sym__intrinsic_type_token10] = ACTIONS(5446), + [aux_sym_derived_type_token1] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5446), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5446), + [aux_sym_type_qualifier_token1] = ACTIONS(5446), + [aux_sym_type_qualifier_token2] = ACTIONS(5446), + [aux_sym_equivalence_statement_token1] = ACTIONS(5446), + [anon_sym_SEMI] = ACTIONS(5448), + [aux_sym_stop_statement_token1] = ACTIONS(5446), + [aux_sym_stop_statement_token2] = ACTIONS(5446), + [aux_sym_subroutine_call_token1] = ACTIONS(5446), + [aux_sym_keyword_statement_token1] = ACTIONS(5446), + [aux_sym_keyword_statement_token2] = ACTIONS(5446), + [aux_sym_keyword_statement_token3] = ACTIONS(5446), + [aux_sym_keyword_statement_token4] = ACTIONS(5446), + [aux_sym_keyword_statement_token6] = ACTIONS(5446), + [aux_sym_keyword_statement_token7] = ACTIONS(5446), + [aux_sym_include_statement_token1] = ACTIONS(5446), + [aux_sym_data_statement_token1] = ACTIONS(5446), + [aux_sym_do_loop_statement_token1] = ACTIONS(5446), + [aux_sym__inline_if_statement_token1] = ACTIONS(5446), + [aux_sym_end_if_statement_token1] = ACTIONS(5446), + [aux_sym_elseif_clause_token2] = ACTIONS(5446), + [aux_sym__inline_where_statement_token1] = ACTIONS(5446), + [aux_sym__forall_control_expression_token1] = ACTIONS(5446), + [aux_sym_select_case_statement_token1] = ACTIONS(5446), + [aux_sym_select_case_statement_token3] = ACTIONS(5446), + [aux_sym_select_type_statement_token1] = ACTIONS(5446), + [aux_sym_select_rank_statement_token2] = ACTIONS(5446), + [aux_sym_block_construct_token1] = ACTIONS(5446), + [aux_sym_associate_statement_token1] = ACTIONS(5446), + [aux_sym_format_statement_token1] = ACTIONS(5446), + [aux_sym_print_statement_token1] = ACTIONS(5446), + [aux_sym_open_statement_token1] = ACTIONS(5446), + [aux_sym_close_statement_token1] = ACTIONS(5446), + [aux_sym_inquire_statement_token1] = ACTIONS(5446), + [aux_sym_enum_statement_token1] = ACTIONS(5446), + [aux_sym_file_position_statement_token1] = ACTIONS(5446), + [aux_sym_file_position_statement_token2] = ACTIONS(5446), + [aux_sym_file_position_statement_token3] = ACTIONS(5446), + [aux_sym_file_position_statement_token4] = ACTIONS(5446), + [aux_sym_allocate_statement_token1] = ACTIONS(5446), + [aux_sym_entry_statement_token1] = ACTIONS(5446), + [aux_sym_logical_expression_token5] = ACTIONS(5448), + [anon_sym_DOT] = ACTIONS(5446), + [anon_sym_LPAREN_SLASH] = ACTIONS(5448), + [anon_sym_LBRACK] = ACTIONS(5448), + [aux_sym_boolean_literal_token1] = ACTIONS(5448), + [aux_sym_boolean_literal_token2] = ACTIONS(5448), + [aux_sym_null_literal_token1] = ACTIONS(5446), + [aux_sym_coarray_statement_token1] = ACTIONS(5446), + [aux_sym_coarray_statement_token2] = ACTIONS(5446), + [aux_sym_coarray_statement_token6] = ACTIONS(5446), + [aux_sym_coarray_statement_token8] = ACTIONS(5446), + [aux_sym_coarray_statement_token11] = ACTIONS(5446), + [aux_sym_coarray_statement_token12] = ACTIONS(5446), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5446), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5446), + [aux_sym_identifier_token1] = ACTIONS(5446), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5448), + [sym__float_literal] = ACTIONS(5448), + [sym__boz_literal] = ACTIONS(5448), + [sym__string_literal] = ACTIONS(5448), + [sym__string_literal_kind] = ACTIONS(5448), + }, + [1610] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_subroutine_call_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_keyword_statement_token4] = ACTIONS(4998), + [aux_sym_keyword_statement_token6] = ACTIONS(4998), + [aux_sym_keyword_statement_token7] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym_do_loop_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym__inline_where_statement_token1] = ACTIONS(4998), + [aux_sym__forall_control_expression_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token3] = ACTIONS(4998), + [aux_sym_select_type_statement_token1] = ACTIONS(4998), + [aux_sym_select_rank_statement_token2] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_associate_statement_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_print_statement_token1] = ACTIONS(4998), + [aux_sym_open_statement_token1] = ACTIONS(4998), + [aux_sym_close_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token2] = ACTIONS(4998), + [aux_sym_file_position_statement_token3] = ACTIONS(4998), + [aux_sym_file_position_statement_token4] = ACTIONS(4998), + [aux_sym_allocate_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [aux_sym_boolean_literal_token1] = ACTIONS(5000), + [aux_sym_boolean_literal_token2] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + [sym__float_literal] = ACTIONS(5000), + [sym__boz_literal] = ACTIONS(5000), + [sym__string_literal] = ACTIONS(5000), + [sym__string_literal_kind] = ACTIONS(5000), + }, + [1611] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1698] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [aux_sym_preproc_else_token1] = ACTIONS(4579), - [aux_sym_preproc_elif_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [1612] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_program_statement_token2] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [1699] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [aux_sym_preproc_else_token1] = ACTIONS(4583), - [aux_sym_preproc_elif_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [1613] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_end_program_statement_token2] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1700] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [aux_sym_preproc_else_token1] = ACTIONS(4587), - [aux_sym_preproc_elif_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [1614] = { + [aux_sym_preproc_include_token1] = ACTIONS(4972), + [aux_sym_preproc_def_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), + [sym_preproc_directive] = ACTIONS(4972), + [anon_sym_LPAREN2] = ACTIONS(4972), + [anon_sym_PLUS] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4974), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_program_statement_token2] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4972), + [aux_sym_interface_statement_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), + [aux_sym_language_binding_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token3] = ACTIONS(4972), + [aux_sym_use_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token2] = ACTIONS(4972), + [aux_sym_implicit_statement_token1] = ACTIONS(4972), + [aux_sym_implicit_statement_token3] = ACTIONS(4972), + [aux_sym_implicit_statement_token4] = ACTIONS(4972), + [aux_sym_save_statement_token1] = ACTIONS(4972), + [aux_sym_private_statement_token1] = ACTIONS(4972), + [aux_sym_public_statement_token1] = ACTIONS(4972), + [aux_sym_namelist_statement_token1] = ACTIONS(4972), + [aux_sym_common_statement_token1] = ACTIONS(4972), + [aux_sym_import_statement_token1] = ACTIONS(4972), + [aux_sym_derived_type_definition_token1] = ACTIONS(4972), + [aux_sym_abstract_specifier_token1] = ACTIONS(4972), + [aux_sym_procedure_attribute_token6] = ACTIONS(4972), + [aux_sym_variable_attributes_token1] = ACTIONS(4972), + [aux_sym_variable_attributes_token2] = ACTIONS(4972), + [aux_sym_variable_attributes_token3] = ACTIONS(4972), + [aux_sym_variable_attributes_token4] = ACTIONS(4972), + [aux_sym_variable_attributes_token5] = ACTIONS(4972), + [aux_sym__intrinsic_type_token1] = ACTIONS(4972), + [aux_sym__intrinsic_type_token2] = ACTIONS(4972), + [aux_sym__intrinsic_type_token3] = ACTIONS(4972), + [aux_sym__intrinsic_type_token4] = ACTIONS(4972), + [aux_sym__intrinsic_type_token6] = ACTIONS(4972), + [aux_sym__intrinsic_type_token7] = ACTIONS(4972), + [aux_sym__intrinsic_type_token8] = ACTIONS(4972), + [aux_sym__intrinsic_type_token9] = ACTIONS(4972), + [aux_sym__intrinsic_type_token10] = ACTIONS(4972), + [aux_sym_derived_type_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), + [aux_sym_type_qualifier_token1] = ACTIONS(4972), + [aux_sym_type_qualifier_token2] = ACTIONS(4972), + [aux_sym_equivalence_statement_token1] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [aux_sym_stop_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token2] = ACTIONS(4972), + [aux_sym_subroutine_call_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token1] = ACTIONS(4972), + [aux_sym_keyword_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token3] = ACTIONS(4972), + [aux_sym_keyword_statement_token4] = ACTIONS(4972), + [aux_sym_keyword_statement_token6] = ACTIONS(4972), + [aux_sym_keyword_statement_token7] = ACTIONS(4972), + [aux_sym_include_statement_token1] = ACTIONS(4972), + [aux_sym_data_statement_token1] = ACTIONS(4972), + [aux_sym_do_loop_statement_token1] = ACTIONS(4972), + [aux_sym__inline_if_statement_token1] = ACTIONS(4972), + [aux_sym_end_if_statement_token1] = ACTIONS(4972), + [aux_sym_elseif_clause_token2] = ACTIONS(4972), + [aux_sym__inline_where_statement_token1] = ACTIONS(4972), + [aux_sym__forall_control_expression_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token1] = ACTIONS(4972), + [aux_sym_select_case_statement_token3] = ACTIONS(4972), + [aux_sym_select_type_statement_token1] = ACTIONS(4972), + [aux_sym_select_rank_statement_token2] = ACTIONS(4972), + [aux_sym_block_construct_token1] = ACTIONS(4972), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4972), + [aux_sym_associate_statement_token1] = ACTIONS(4972), + [aux_sym_format_statement_token1] = ACTIONS(4972), + [aux_sym_print_statement_token1] = ACTIONS(4972), + [aux_sym_open_statement_token1] = ACTIONS(4972), + [aux_sym_close_statement_token1] = ACTIONS(4972), + [aux_sym_inquire_statement_token1] = ACTIONS(4972), + [aux_sym_enum_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token1] = ACTIONS(4972), + [aux_sym_file_position_statement_token2] = ACTIONS(4972), + [aux_sym_file_position_statement_token3] = ACTIONS(4972), + [aux_sym_file_position_statement_token4] = ACTIONS(4972), + [aux_sym_allocate_statement_token1] = ACTIONS(4972), + [aux_sym_entry_statement_token1] = ACTIONS(4972), + [aux_sym_logical_expression_token5] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_LPAREN_SLASH] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [aux_sym_boolean_literal_token1] = ACTIONS(4974), + [aux_sym_boolean_literal_token2] = ACTIONS(4974), + [aux_sym_null_literal_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token2] = ACTIONS(4972), + [aux_sym_coarray_statement_token6] = ACTIONS(4972), + [aux_sym_coarray_statement_token8] = ACTIONS(4972), + [aux_sym_coarray_statement_token11] = ACTIONS(4972), + [aux_sym_coarray_statement_token12] = ACTIONS(4972), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), + [aux_sym_identifier_token1] = ACTIONS(4972), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(4974), + [sym__float_literal] = ACTIONS(4974), + [sym__boz_literal] = ACTIONS(4974), + [sym__string_literal] = ACTIONS(4974), + [sym__string_literal_kind] = ACTIONS(4974), }, - [1701] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token2] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_end_program_statement_token2] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_contains_statement_token1] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [1615] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_subroutine_call_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token1] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_keyword_statement_token4] = ACTIONS(5022), + [aux_sym_keyword_statement_token6] = ACTIONS(5022), + [aux_sym_keyword_statement_token7] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym_do_loop_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym__inline_where_statement_token1] = ACTIONS(5022), + [aux_sym__forall_control_expression_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_select_case_statement_token3] = ACTIONS(5022), + [aux_sym_select_type_statement_token1] = ACTIONS(5022), + [aux_sym_select_rank_statement_token2] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5022), + [aux_sym_associate_statement_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_print_statement_token1] = ACTIONS(5022), + [aux_sym_open_statement_token1] = ACTIONS(5022), + [aux_sym_close_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token1] = ACTIONS(5022), + [aux_sym_file_position_statement_token2] = ACTIONS(5022), + [aux_sym_file_position_statement_token3] = ACTIONS(5022), + [aux_sym_file_position_statement_token4] = ACTIONS(5022), + [aux_sym_allocate_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_logical_expression_token5] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_LPAREN_SLASH] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [aux_sym_boolean_literal_token1] = ACTIONS(5024), + [aux_sym_boolean_literal_token2] = ACTIONS(5024), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + [sym__float_literal] = ACTIONS(5024), + [sym__boz_literal] = ACTIONS(5024), + [sym__string_literal] = ACTIONS(5024), + [sym__string_literal_kind] = ACTIONS(5024), }, - [1702] = { - [sym_assignment] = STATE(5991), - [sym_operator] = STATE(5991), - [sym_defined_io_procedure] = STATE(5991), - [sym__generic_procedure] = STATE(5991), - [sym_identifier] = STATE(5991), - [sym__end_of_statement] = STATE(1410), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5664), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5666), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [1616] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_LPAREN2] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_subroutine_call_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token1] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_keyword_statement_token4] = ACTIONS(5055), + [aux_sym_keyword_statement_token6] = ACTIONS(5055), + [aux_sym_keyword_statement_token7] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym_do_loop_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym__inline_where_statement_token1] = ACTIONS(5055), + [aux_sym__forall_control_expression_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_select_case_statement_token3] = ACTIONS(5055), + [aux_sym_select_type_statement_token1] = ACTIONS(5055), + [aux_sym_select_rank_statement_token2] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5055), + [aux_sym_associate_statement_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_print_statement_token1] = ACTIONS(5055), + [aux_sym_open_statement_token1] = ACTIONS(5055), + [aux_sym_close_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token1] = ACTIONS(5055), + [aux_sym_file_position_statement_token2] = ACTIONS(5055), + [aux_sym_file_position_statement_token3] = ACTIONS(5055), + [aux_sym_file_position_statement_token4] = ACTIONS(5055), + [aux_sym_allocate_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_logical_expression_token5] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_LPAREN_SLASH] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [aux_sym_boolean_literal_token1] = ACTIONS(5057), + [aux_sym_boolean_literal_token2] = ACTIONS(5057), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + [sym__float_literal] = ACTIONS(5057), + [sym__boz_literal] = ACTIONS(5057), + [sym__string_literal] = ACTIONS(5057), + [sym__string_literal_kind] = ACTIONS(5057), + }, + [1617] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_subroutine_call_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token1] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_keyword_statement_token4] = ACTIONS(5026), + [aux_sym_keyword_statement_token6] = ACTIONS(5026), + [aux_sym_keyword_statement_token7] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym_do_loop_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym__inline_where_statement_token1] = ACTIONS(5026), + [aux_sym__forall_control_expression_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_select_case_statement_token3] = ACTIONS(5026), + [aux_sym_select_type_statement_token1] = ACTIONS(5026), + [aux_sym_select_rank_statement_token2] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5026), + [aux_sym_associate_statement_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_print_statement_token1] = ACTIONS(5026), + [aux_sym_open_statement_token1] = ACTIONS(5026), + [aux_sym_close_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token1] = ACTIONS(5026), + [aux_sym_file_position_statement_token2] = ACTIONS(5026), + [aux_sym_file_position_statement_token3] = ACTIONS(5026), + [aux_sym_file_position_statement_token4] = ACTIONS(5026), + [aux_sym_allocate_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_logical_expression_token5] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_LPAREN_SLASH] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [aux_sym_boolean_literal_token1] = ACTIONS(5028), + [aux_sym_boolean_literal_token2] = ACTIONS(5028), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + [sym__float_literal] = ACTIONS(5028), + [sym__boz_literal] = ACTIONS(5028), + [sym__string_literal] = ACTIONS(5028), + [sym__string_literal_kind] = ACTIONS(5028), + }, + [1618] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), + }, + [1619] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5666), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1703] = { - [sym_assignment] = STATE(5992), - [sym_operator] = STATE(5992), - [sym_defined_io_procedure] = STATE(5992), - [sym__generic_procedure] = STATE(5992), - [sym_identifier] = STATE(5992), - [sym__end_of_statement] = STATE(1411), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5668), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5670), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5670), + [1620] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_LPAREN2] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5065), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_subroutine_call_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token1] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_keyword_statement_token4] = ACTIONS(5063), + [aux_sym_keyword_statement_token6] = ACTIONS(5063), + [aux_sym_keyword_statement_token7] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym_do_loop_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym__inline_where_statement_token1] = ACTIONS(5063), + [aux_sym__forall_control_expression_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_select_case_statement_token3] = ACTIONS(5063), + [aux_sym_select_type_statement_token1] = ACTIONS(5063), + [aux_sym_select_rank_statement_token2] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5063), + [aux_sym_associate_statement_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_print_statement_token1] = ACTIONS(5063), + [aux_sym_open_statement_token1] = ACTIONS(5063), + [aux_sym_close_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token1] = ACTIONS(5063), + [aux_sym_file_position_statement_token2] = ACTIONS(5063), + [aux_sym_file_position_statement_token3] = ACTIONS(5063), + [aux_sym_file_position_statement_token4] = ACTIONS(5063), + [aux_sym_allocate_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_logical_expression_token5] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_LPAREN_SLASH] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [aux_sym_boolean_literal_token1] = ACTIONS(5065), + [aux_sym_boolean_literal_token2] = ACTIONS(5065), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + [sym__float_literal] = ACTIONS(5065), + [sym__boz_literal] = ACTIONS(5065), + [sym__string_literal] = ACTIONS(5065), + [sym__string_literal_kind] = ACTIONS(5065), }, - [1704] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token2] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [aux_sym_preproc_else_token1] = ACTIONS(4323), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_LPAREN2] = ACTIONS(4323), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_subroutine_call_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token1] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_keyword_statement_token4] = ACTIONS(4323), - [aux_sym_keyword_statement_token6] = ACTIONS(4323), - [aux_sym_keyword_statement_token7] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym_do_loop_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym__inline_where_statement_token1] = ACTIONS(4323), - [aux_sym__forall_control_expression_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_select_case_statement_token3] = ACTIONS(4323), - [aux_sym_select_type_statement_token1] = ACTIONS(4323), - [aux_sym_select_rank_statement_token2] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_associate_statement_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_print_statement_token1] = ACTIONS(4323), - [aux_sym_open_statement_token1] = ACTIONS(4323), - [aux_sym_close_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token1] = ACTIONS(4323), - [aux_sym_file_position_statement_token2] = ACTIONS(4323), - [aux_sym_file_position_statement_token3] = ACTIONS(4323), - [aux_sym_file_position_statement_token4] = ACTIONS(4323), - [aux_sym_allocate_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_logical_expression_token5] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LPAREN_SLASH] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_boolean_literal_token1] = ACTIONS(4325), - [aux_sym_boolean_literal_token2] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - [sym__float_literal] = ACTIONS(4325), - [sym__boz_literal] = ACTIONS(4325), - [sym__string_literal] = ACTIONS(4325), - [sym__string_literal_kind] = ACTIONS(4325), + [1621] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(5006), + [anon_sym_PLUS] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5008), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_subroutine_call_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token1] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_keyword_statement_token4] = ACTIONS(5006), + [aux_sym_keyword_statement_token6] = ACTIONS(5006), + [aux_sym_keyword_statement_token7] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym_do_loop_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym__inline_where_statement_token1] = ACTIONS(5006), + [aux_sym__forall_control_expression_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_select_case_statement_token3] = ACTIONS(5006), + [aux_sym_select_type_statement_token1] = ACTIONS(5006), + [aux_sym_select_rank_statement_token2] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5006), + [aux_sym_associate_statement_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_print_statement_token1] = ACTIONS(5006), + [aux_sym_open_statement_token1] = ACTIONS(5006), + [aux_sym_close_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token1] = ACTIONS(5006), + [aux_sym_file_position_statement_token2] = ACTIONS(5006), + [aux_sym_file_position_statement_token3] = ACTIONS(5006), + [aux_sym_file_position_statement_token4] = ACTIONS(5006), + [aux_sym_allocate_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_logical_expression_token5] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_LPAREN_SLASH] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [aux_sym_boolean_literal_token1] = ACTIONS(5008), + [aux_sym_boolean_literal_token2] = ACTIONS(5008), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + [sym__float_literal] = ACTIONS(5008), + [sym__boz_literal] = ACTIONS(5008), + [sym__string_literal] = ACTIONS(5008), + [sym__string_literal_kind] = ACTIONS(5008), }, - [1705] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(5672), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token3] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym_derived_type_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_end_select_statement_token1] = ACTIONS(5542), - [aux_sym_type_statement_token2] = ACTIONS(5542), - [aux_sym_type_statement_token3] = ACTIONS(5542), - [aux_sym__class_default_token1] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), + [1622] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_subroutine_call_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token1] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_keyword_statement_token4] = ACTIONS(4982), + [aux_sym_keyword_statement_token6] = ACTIONS(4982), + [aux_sym_keyword_statement_token7] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym_do_loop_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym__inline_where_statement_token1] = ACTIONS(4982), + [aux_sym__forall_control_expression_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_select_case_statement_token3] = ACTIONS(4982), + [aux_sym_select_type_statement_token1] = ACTIONS(4982), + [aux_sym_select_rank_statement_token2] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4982), + [aux_sym_associate_statement_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_print_statement_token1] = ACTIONS(4982), + [aux_sym_open_statement_token1] = ACTIONS(4982), + [aux_sym_close_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token1] = ACTIONS(4982), + [aux_sym_file_position_statement_token2] = ACTIONS(4982), + [aux_sym_file_position_statement_token3] = ACTIONS(4982), + [aux_sym_file_position_statement_token4] = ACTIONS(4982), + [aux_sym_allocate_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_logical_expression_token5] = ACTIONS(4984), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_LPAREN_SLASH] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [aux_sym_boolean_literal_token1] = ACTIONS(4984), + [aux_sym_boolean_literal_token2] = ACTIONS(4984), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + [sym__float_literal] = ACTIONS(4984), + [sym__boz_literal] = ACTIONS(4984), + [sym__string_literal] = ACTIONS(4984), + [sym__string_literal_kind] = ACTIONS(4984), }, - [1706] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token2] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [aux_sym_preproc_else_token1] = ACTIONS(4269), - [aux_sym_preproc_elif_token1] = ACTIONS(4269), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(5674), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_contains_statement_token1] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [1623] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_LPAREN2] = ACTIONS(5010), + [anon_sym_PLUS] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_subroutine_call_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token1] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_keyword_statement_token4] = ACTIONS(5010), + [aux_sym_keyword_statement_token6] = ACTIONS(5010), + [aux_sym_keyword_statement_token7] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym_do_loop_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym__inline_where_statement_token1] = ACTIONS(5010), + [aux_sym__forall_control_expression_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_select_case_statement_token3] = ACTIONS(5010), + [aux_sym_select_type_statement_token1] = ACTIONS(5010), + [aux_sym_select_rank_statement_token2] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5010), + [aux_sym_associate_statement_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_print_statement_token1] = ACTIONS(5010), + [aux_sym_open_statement_token1] = ACTIONS(5010), + [aux_sym_close_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token1] = ACTIONS(5010), + [aux_sym_file_position_statement_token2] = ACTIONS(5010), + [aux_sym_file_position_statement_token3] = ACTIONS(5010), + [aux_sym_file_position_statement_token4] = ACTIONS(5010), + [aux_sym_allocate_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_logical_expression_token5] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_LPAREN_SLASH] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [aux_sym_boolean_literal_token1] = ACTIONS(5012), + [aux_sym_boolean_literal_token2] = ACTIONS(5012), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + [sym__float_literal] = ACTIONS(5012), + [sym__boz_literal] = ACTIONS(5012), + [sym__string_literal] = ACTIONS(5012), + [sym__string_literal_kind] = ACTIONS(5012), }, - [1707] = { - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), - [aux_sym_preproc_else_token1] = ACTIONS(2059), - [aux_sym_preproc_elif_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [1624] = { + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5004), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_end_program_statement_token2] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), - [aux_sym_procedure_attributes_token3] = ACTIONS(2059), - [aux_sym_contains_statement_token1] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2059), - [aux_sym_save_statement_token1] = ACTIONS(2059), - [aux_sym_private_statement_token1] = ACTIONS(2059), - [aux_sym_public_statement_token1] = ACTIONS(2059), - [aux_sym_derived_type_definition_token1] = ACTIONS(2059), - [aux_sym_procedure_attribute_token6] = ACTIONS(2059), - [aux_sym_variable_attributes_token2] = ACTIONS(2059), - [aux_sym_variable_attributes_token3] = ACTIONS(2059), - [aux_sym_variable_attributes_token5] = ACTIONS(2059), - [aux_sym__intrinsic_type_token1] = ACTIONS(2059), - [aux_sym__intrinsic_type_token3] = ACTIONS(2059), - [aux_sym__intrinsic_type_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), - [aux_sym_type_qualifier_token1] = ACTIONS(2059), - [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), - [aux_sym_stop_statement_token1] = ACTIONS(2059), - [aux_sym_stop_statement_token2] = ACTIONS(2059), - [aux_sym_subroutine_call_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token2] = ACTIONS(2059), - [aux_sym_keyword_statement_token3] = ACTIONS(2059), - [aux_sym_keyword_statement_token4] = ACTIONS(2059), - [aux_sym_keyword_statement_token6] = ACTIONS(2059), - [aux_sym_keyword_statement_token7] = ACTIONS(2059), - [aux_sym_include_statement_token1] = ACTIONS(2059), - [aux_sym_data_statement_token1] = ACTIONS(2059), - [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2059), - [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2059), - [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token3] = ACTIONS(2059), - [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), - }, - [1708] = { - [sym_assignment] = STATE(6069), - [sym_operator] = STATE(6069), - [sym_defined_io_procedure] = STATE(6069), - [sym__generic_procedure] = STATE(6069), - [sym_identifier] = STATE(6069), - [sym__end_of_statement] = STATE(1592), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5678), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5680), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5680), - }, - [1709] = { - [sym_assignment] = STATE(6070), - [sym_operator] = STATE(6070), - [sym_defined_io_procedure] = STATE(6070), - [sym__generic_procedure] = STATE(6070), - [sym_identifier] = STATE(6070), - [sym__end_of_statement] = STATE(1593), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5682), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5684), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_subroutine_call_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token1] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_keyword_statement_token4] = ACTIONS(5002), + [aux_sym_keyword_statement_token6] = ACTIONS(5002), + [aux_sym_keyword_statement_token7] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym_do_loop_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym__inline_where_statement_token1] = ACTIONS(5002), + [aux_sym__forall_control_expression_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_select_case_statement_token3] = ACTIONS(5002), + [aux_sym_select_type_statement_token1] = ACTIONS(5002), + [aux_sym_select_rank_statement_token2] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5002), + [aux_sym_associate_statement_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_print_statement_token1] = ACTIONS(5002), + [aux_sym_open_statement_token1] = ACTIONS(5002), + [aux_sym_close_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token1] = ACTIONS(5002), + [aux_sym_file_position_statement_token2] = ACTIONS(5002), + [aux_sym_file_position_statement_token3] = ACTIONS(5002), + [aux_sym_file_position_statement_token4] = ACTIONS(5002), + [aux_sym_allocate_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_logical_expression_token5] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_LPAREN_SLASH] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [aux_sym_boolean_literal_token1] = ACTIONS(5004), + [aux_sym_boolean_literal_token2] = ACTIONS(5004), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5684), + [sym__integer_literal] = ACTIONS(5004), + [sym__float_literal] = ACTIONS(5004), + [sym__boz_literal] = ACTIONS(5004), + [sym__string_literal] = ACTIONS(5004), + [sym__string_literal_kind] = ACTIONS(5004), }, - [1710] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token2] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [aux_sym_preproc_else_token1] = ACTIONS(5548), - [aux_sym_preproc_elif_token1] = ACTIONS(5548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5686), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_contains_statement_token1] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), + [1625] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(5000), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_subroutine_call_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token1] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_keyword_statement_token4] = ACTIONS(4998), + [aux_sym_keyword_statement_token6] = ACTIONS(4998), + [aux_sym_keyword_statement_token7] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym_do_loop_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym__inline_where_statement_token1] = ACTIONS(4998), + [aux_sym__forall_control_expression_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_select_case_statement_token3] = ACTIONS(4998), + [aux_sym_select_type_statement_token1] = ACTIONS(4998), + [aux_sym_select_rank_statement_token2] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4998), + [aux_sym_associate_statement_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_print_statement_token1] = ACTIONS(4998), + [aux_sym_open_statement_token1] = ACTIONS(4998), + [aux_sym_close_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token1] = ACTIONS(4998), + [aux_sym_file_position_statement_token2] = ACTIONS(4998), + [aux_sym_file_position_statement_token3] = ACTIONS(4998), + [aux_sym_file_position_statement_token4] = ACTIONS(4998), + [aux_sym_allocate_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_logical_expression_token5] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_LPAREN_SLASH] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [aux_sym_boolean_literal_token1] = ACTIONS(5000), + [aux_sym_boolean_literal_token2] = ACTIONS(5000), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + [sym__float_literal] = ACTIONS(5000), + [sym__boz_literal] = ACTIONS(5000), + [sym__string_literal] = ACTIONS(5000), + [sym__string_literal_kind] = ACTIONS(5000), }, - [1711] = { - [sym_assignment] = STATE(5965), - [sym_operator] = STATE(5965), - [sym_defined_io_procedure] = STATE(5965), - [sym__generic_procedure] = STATE(5965), - [sym_identifier] = STATE(5965), - [sym__end_of_statement] = STATE(1130), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5688), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5690), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5690), + [1626] = { + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_LPAREN2] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5053), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_subroutine_call_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token1] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_keyword_statement_token4] = ACTIONS(5051), + [aux_sym_keyword_statement_token6] = ACTIONS(5051), + [aux_sym_keyword_statement_token7] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym_do_loop_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym__inline_where_statement_token1] = ACTIONS(5051), + [aux_sym__forall_control_expression_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_select_case_statement_token3] = ACTIONS(5051), + [aux_sym_select_type_statement_token1] = ACTIONS(5051), + [aux_sym_select_rank_statement_token2] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5051), + [aux_sym_associate_statement_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_print_statement_token1] = ACTIONS(5051), + [aux_sym_open_statement_token1] = ACTIONS(5051), + [aux_sym_close_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token1] = ACTIONS(5051), + [aux_sym_file_position_statement_token2] = ACTIONS(5051), + [aux_sym_file_position_statement_token3] = ACTIONS(5051), + [aux_sym_file_position_statement_token4] = ACTIONS(5051), + [aux_sym_allocate_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_logical_expression_token5] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_LPAREN_SLASH] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [aux_sym_boolean_literal_token1] = ACTIONS(5053), + [aux_sym_boolean_literal_token2] = ACTIONS(5053), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + [sym__float_literal] = ACTIONS(5053), + [sym__boz_literal] = ACTIONS(5053), + [sym__string_literal] = ACTIONS(5053), + [sym__string_literal_kind] = ACTIONS(5053), }, - [1712] = { - [sym_assignment] = STATE(5966), - [sym_operator] = STATE(5966), - [sym_defined_io_procedure] = STATE(5966), - [sym__generic_procedure] = STATE(5966), - [sym_identifier] = STATE(5966), - [sym__end_of_statement] = STATE(1131), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5692), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5694), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [1627] = { + [aux_sym_preproc_include_token1] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4990), + [aux_sym_interface_statement_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_language_binding_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_use_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token2] = ACTIONS(4990), + [aux_sym_implicit_statement_token1] = ACTIONS(4990), + [aux_sym_implicit_statement_token3] = ACTIONS(4990), + [aux_sym_implicit_statement_token4] = ACTIONS(4990), + [aux_sym_save_statement_token1] = ACTIONS(4990), + [aux_sym_private_statement_token1] = ACTIONS(4990), + [aux_sym_public_statement_token1] = ACTIONS(4990), + [aux_sym_namelist_statement_token1] = ACTIONS(4990), + [aux_sym_common_statement_token1] = ACTIONS(4990), + [aux_sym_import_statement_token1] = ACTIONS(4990), + [aux_sym_derived_type_definition_token1] = ACTIONS(4990), + [aux_sym_abstract_specifier_token1] = ACTIONS(4990), + [aux_sym_procedure_attribute_token6] = ACTIONS(4990), + [aux_sym_variable_attributes_token1] = ACTIONS(4990), + [aux_sym_variable_attributes_token2] = ACTIONS(4990), + [aux_sym_variable_attributes_token3] = ACTIONS(4990), + [aux_sym_variable_attributes_token4] = ACTIONS(4990), + [aux_sym_variable_attributes_token5] = ACTIONS(4990), + [aux_sym__intrinsic_type_token1] = ACTIONS(4990), + [aux_sym__intrinsic_type_token2] = ACTIONS(4990), + [aux_sym__intrinsic_type_token3] = ACTIONS(4990), + [aux_sym__intrinsic_type_token4] = ACTIONS(4990), + [aux_sym__intrinsic_type_token6] = ACTIONS(4990), + [aux_sym__intrinsic_type_token7] = ACTIONS(4990), + [aux_sym__intrinsic_type_token8] = ACTIONS(4990), + [aux_sym__intrinsic_type_token9] = ACTIONS(4990), + [aux_sym__intrinsic_type_token10] = ACTIONS(4990), + [aux_sym_derived_type_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), + [aux_sym_type_qualifier_token1] = ACTIONS(4990), + [aux_sym_type_qualifier_token2] = ACTIONS(4990), + [aux_sym_equivalence_statement_token1] = ACTIONS(4990), + [anon_sym_SEMI] = ACTIONS(4992), + [aux_sym_stop_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token2] = ACTIONS(4990), + [aux_sym_subroutine_call_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token1] = ACTIONS(4990), + [aux_sym_keyword_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token3] = ACTIONS(4990), + [aux_sym_keyword_statement_token4] = ACTIONS(4990), + [aux_sym_keyword_statement_token6] = ACTIONS(4990), + [aux_sym_keyword_statement_token7] = ACTIONS(4990), + [aux_sym_include_statement_token1] = ACTIONS(4990), + [aux_sym_data_statement_token1] = ACTIONS(4990), + [aux_sym_do_loop_statement_token1] = ACTIONS(4990), + [aux_sym__inline_if_statement_token1] = ACTIONS(4990), + [aux_sym_end_if_statement_token1] = ACTIONS(4990), + [aux_sym_elseif_clause_token2] = ACTIONS(4990), + [aux_sym__inline_where_statement_token1] = ACTIONS(4990), + [aux_sym__forall_control_expression_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token1] = ACTIONS(4990), + [aux_sym_select_case_statement_token3] = ACTIONS(4990), + [aux_sym_select_type_statement_token1] = ACTIONS(4990), + [aux_sym_select_rank_statement_token2] = ACTIONS(4990), + [aux_sym_block_construct_token1] = ACTIONS(4990), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4990), + [aux_sym_associate_statement_token1] = ACTIONS(4990), + [aux_sym_format_statement_token1] = ACTIONS(4990), + [aux_sym_print_statement_token1] = ACTIONS(4990), + [aux_sym_open_statement_token1] = ACTIONS(4990), + [aux_sym_close_statement_token1] = ACTIONS(4990), + [aux_sym_inquire_statement_token1] = ACTIONS(4990), + [aux_sym_enum_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token1] = ACTIONS(4990), + [aux_sym_file_position_statement_token2] = ACTIONS(4990), + [aux_sym_file_position_statement_token3] = ACTIONS(4990), + [aux_sym_file_position_statement_token4] = ACTIONS(4990), + [aux_sym_allocate_statement_token1] = ACTIONS(4990), + [aux_sym_entry_statement_token1] = ACTIONS(4990), + [aux_sym_logical_expression_token5] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_LPAREN_SLASH] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [aux_sym_boolean_literal_token1] = ACTIONS(4992), + [aux_sym_boolean_literal_token2] = ACTIONS(4992), + [aux_sym_null_literal_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token2] = ACTIONS(4990), + [aux_sym_coarray_statement_token6] = ACTIONS(4990), + [aux_sym_coarray_statement_token8] = ACTIONS(4990), + [aux_sym_coarray_statement_token11] = ACTIONS(4990), + [aux_sym_coarray_statement_token12] = ACTIONS(4990), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), + [aux_sym_identifier_token1] = ACTIONS(4990), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5694), + [sym__integer_literal] = ACTIONS(4992), + [sym__float_literal] = ACTIONS(4992), + [sym__boz_literal] = ACTIONS(4992), + [sym__string_literal] = ACTIONS(4992), + [sym__string_literal_kind] = ACTIONS(4992), }, - [1713] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token2] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [aux_sym_preproc_else_token1] = ACTIONS(5520), - [aux_sym_preproc_elif_token1] = ACTIONS(5520), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5696), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_contains_statement_token1] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), + [1628] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_subroutine_call_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token1] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_keyword_statement_token4] = ACTIONS(4986), + [aux_sym_keyword_statement_token6] = ACTIONS(4986), + [aux_sym_keyword_statement_token7] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym_do_loop_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym__inline_where_statement_token1] = ACTIONS(4986), + [aux_sym__forall_control_expression_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_select_case_statement_token3] = ACTIONS(4986), + [aux_sym_select_type_statement_token1] = ACTIONS(4986), + [aux_sym_select_rank_statement_token2] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4986), + [aux_sym_associate_statement_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_print_statement_token1] = ACTIONS(4986), + [aux_sym_open_statement_token1] = ACTIONS(4986), + [aux_sym_close_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token1] = ACTIONS(4986), + [aux_sym_file_position_statement_token2] = ACTIONS(4986), + [aux_sym_file_position_statement_token3] = ACTIONS(4986), + [aux_sym_file_position_statement_token4] = ACTIONS(4986), + [aux_sym_allocate_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_logical_expression_token5] = ACTIONS(4988), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LPAREN_SLASH] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [aux_sym_boolean_literal_token1] = ACTIONS(4988), + [aux_sym_boolean_literal_token2] = ACTIONS(4988), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + [sym__float_literal] = ACTIONS(4988), + [sym__boz_literal] = ACTIONS(4988), + [sym__string_literal] = ACTIONS(4988), + [sym__string_literal_kind] = ACTIONS(4988), }, - [1714] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token2] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [aux_sym_preproc_else_token1] = ACTIONS(4315), - [aux_sym_preproc_elif_token1] = ACTIONS(4315), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(5698), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [1629] = { + [aux_sym_preproc_include_token1] = ACTIONS(5081), + [aux_sym_preproc_def_token1] = ACTIONS(5081), + [aux_sym_preproc_if_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), + [sym_preproc_directive] = ACTIONS(5081), + [anon_sym_LPAREN2] = ACTIONS(5081), + [anon_sym_PLUS] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_contains_statement_token1] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(5081), + [aux_sym_interface_statement_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), + [aux_sym_language_binding_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token3] = ACTIONS(5081), + [aux_sym_use_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token2] = ACTIONS(5081), + [aux_sym_implicit_statement_token1] = ACTIONS(5081), + [aux_sym_implicit_statement_token3] = ACTIONS(5081), + [aux_sym_implicit_statement_token4] = ACTIONS(5081), + [aux_sym_save_statement_token1] = ACTIONS(5081), + [aux_sym_private_statement_token1] = ACTIONS(5081), + [aux_sym_public_statement_token1] = ACTIONS(5081), + [aux_sym_namelist_statement_token1] = ACTIONS(5081), + [aux_sym_common_statement_token1] = ACTIONS(5081), + [aux_sym_import_statement_token1] = ACTIONS(5081), + [aux_sym_derived_type_definition_token1] = ACTIONS(5081), + [aux_sym_abstract_specifier_token1] = ACTIONS(5081), + [aux_sym_procedure_attribute_token6] = ACTIONS(5081), + [aux_sym_variable_attributes_token1] = ACTIONS(5081), + [aux_sym_variable_attributes_token2] = ACTIONS(5081), + [aux_sym_variable_attributes_token3] = ACTIONS(5081), + [aux_sym_variable_attributes_token4] = ACTIONS(5081), + [aux_sym_variable_attributes_token5] = ACTIONS(5081), + [aux_sym__intrinsic_type_token1] = ACTIONS(5081), + [aux_sym__intrinsic_type_token2] = ACTIONS(5081), + [aux_sym__intrinsic_type_token3] = ACTIONS(5081), + [aux_sym__intrinsic_type_token4] = ACTIONS(5081), + [aux_sym__intrinsic_type_token6] = ACTIONS(5081), + [aux_sym__intrinsic_type_token7] = ACTIONS(5081), + [aux_sym__intrinsic_type_token8] = ACTIONS(5081), + [aux_sym__intrinsic_type_token9] = ACTIONS(5081), + [aux_sym__intrinsic_type_token10] = ACTIONS(5081), + [aux_sym_derived_type_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), + [aux_sym_type_qualifier_token1] = ACTIONS(5081), + [aux_sym_type_qualifier_token2] = ACTIONS(5081), + [aux_sym_equivalence_statement_token1] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [aux_sym_stop_statement_token1] = ACTIONS(5081), + [aux_sym_stop_statement_token2] = ACTIONS(5081), + [aux_sym_subroutine_call_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token1] = ACTIONS(5081), + [aux_sym_keyword_statement_token2] = ACTIONS(5081), + [aux_sym_keyword_statement_token3] = ACTIONS(5081), + [aux_sym_keyword_statement_token4] = ACTIONS(5081), + [aux_sym_keyword_statement_token6] = ACTIONS(5081), + [aux_sym_keyword_statement_token7] = ACTIONS(5081), + [aux_sym_include_statement_token1] = ACTIONS(5081), + [aux_sym_data_statement_token1] = ACTIONS(5081), + [aux_sym_do_loop_statement_token1] = ACTIONS(5081), + [aux_sym__inline_if_statement_token1] = ACTIONS(5081), + [aux_sym_end_if_statement_token1] = ACTIONS(5081), + [aux_sym_elseif_clause_token2] = ACTIONS(5081), + [aux_sym__inline_where_statement_token1] = ACTIONS(5081), + [aux_sym__forall_control_expression_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token1] = ACTIONS(5081), + [aux_sym_select_case_statement_token3] = ACTIONS(5081), + [aux_sym_select_type_statement_token1] = ACTIONS(5081), + [aux_sym_select_rank_statement_token2] = ACTIONS(5081), + [aux_sym_block_construct_token1] = ACTIONS(5081), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5081), + [aux_sym_associate_statement_token1] = ACTIONS(5081), + [aux_sym_format_statement_token1] = ACTIONS(5081), + [aux_sym_print_statement_token1] = ACTIONS(5081), + [aux_sym_open_statement_token1] = ACTIONS(5081), + [aux_sym_close_statement_token1] = ACTIONS(5081), + [aux_sym_inquire_statement_token1] = ACTIONS(5081), + [aux_sym_enum_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token1] = ACTIONS(5081), + [aux_sym_file_position_statement_token2] = ACTIONS(5081), + [aux_sym_file_position_statement_token3] = ACTIONS(5081), + [aux_sym_file_position_statement_token4] = ACTIONS(5081), + [aux_sym_allocate_statement_token1] = ACTIONS(5081), + [aux_sym_entry_statement_token1] = ACTIONS(5081), + [aux_sym_logical_expression_token5] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_LPAREN_SLASH] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [aux_sym_boolean_literal_token1] = ACTIONS(5083), + [aux_sym_boolean_literal_token2] = ACTIONS(5083), + [aux_sym_null_literal_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token2] = ACTIONS(5081), + [aux_sym_coarray_statement_token6] = ACTIONS(5081), + [aux_sym_coarray_statement_token8] = ACTIONS(5081), + [aux_sym_coarray_statement_token11] = ACTIONS(5081), + [aux_sym_coarray_statement_token12] = ACTIONS(5081), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), + [aux_sym_identifier_token1] = ACTIONS(5081), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(5083), + [sym__float_literal] = ACTIONS(5083), + [sym__boz_literal] = ACTIONS(5083), + [sym__string_literal] = ACTIONS(5083), + [sym__string_literal_kind] = ACTIONS(5083), }, - [1715] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [aux_sym_preproc_else_token1] = ACTIONS(4327), - [aux_sym_preproc_elif_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(5700), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1630] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_LPAREN2] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [anon_sym_SEMI] = ACTIONS(5061), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_subroutine_call_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token1] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_keyword_statement_token4] = ACTIONS(5059), + [aux_sym_keyword_statement_token6] = ACTIONS(5059), + [aux_sym_keyword_statement_token7] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym_do_loop_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym__inline_where_statement_token1] = ACTIONS(5059), + [aux_sym__forall_control_expression_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_select_case_statement_token3] = ACTIONS(5059), + [aux_sym_select_type_statement_token1] = ACTIONS(5059), + [aux_sym_select_rank_statement_token2] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5059), + [aux_sym_associate_statement_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_print_statement_token1] = ACTIONS(5059), + [aux_sym_open_statement_token1] = ACTIONS(5059), + [aux_sym_close_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token1] = ACTIONS(5059), + [aux_sym_file_position_statement_token2] = ACTIONS(5059), + [aux_sym_file_position_statement_token3] = ACTIONS(5059), + [aux_sym_file_position_statement_token4] = ACTIONS(5059), + [aux_sym_allocate_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_logical_expression_token5] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [aux_sym_boolean_literal_token1] = ACTIONS(5061), + [aux_sym_boolean_literal_token2] = ACTIONS(5061), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + [sym__float_literal] = ACTIONS(5061), + [sym__boz_literal] = ACTIONS(5061), + [sym__string_literal] = ACTIONS(5061), + [sym__string_literal_kind] = ACTIONS(5061), + }, + [1631] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_subroutine_call_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token1] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_keyword_statement_token4] = ACTIONS(4379), + [aux_sym_keyword_statement_token6] = ACTIONS(4379), + [aux_sym_keyword_statement_token7] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym_do_loop_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym__inline_where_statement_token1] = ACTIONS(4379), + [aux_sym__forall_control_expression_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_select_case_statement_token3] = ACTIONS(4379), + [aux_sym_select_type_statement_token1] = ACTIONS(4379), + [aux_sym_select_rank_statement_token2] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4379), + [aux_sym_associate_statement_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_print_statement_token1] = ACTIONS(4379), + [aux_sym_open_statement_token1] = ACTIONS(4379), + [aux_sym_close_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token1] = ACTIONS(4379), + [aux_sym_file_position_statement_token2] = ACTIONS(4379), + [aux_sym_file_position_statement_token3] = ACTIONS(4379), + [aux_sym_file_position_statement_token4] = ACTIONS(4379), + [aux_sym_allocate_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_logical_expression_token5] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LPAREN_SLASH] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [aux_sym_boolean_literal_token1] = ACTIONS(4381), + [aux_sym_boolean_literal_token2] = ACTIONS(4381), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1716] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [aux_sym_preproc_else_token1] = ACTIONS(4295), - [aux_sym_preproc_elif_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(5702), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4381), + [sym__float_literal] = ACTIONS(4381), + [sym__boz_literal] = ACTIONS(4381), + [sym__string_literal] = ACTIONS(4381), + [sym__string_literal_kind] = ACTIONS(4381), }, - [1717] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [aux_sym_preproc_else_token1] = ACTIONS(4445), - [aux_sym_preproc_elif_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(5704), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1632] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_subroutine_call_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token1] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_keyword_statement_token4] = ACTIONS(4387), + [aux_sym_keyword_statement_token6] = ACTIONS(4387), + [aux_sym_keyword_statement_token7] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym_do_loop_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym__inline_where_statement_token1] = ACTIONS(4387), + [aux_sym__forall_control_expression_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_select_case_statement_token3] = ACTIONS(4387), + [aux_sym_select_type_statement_token1] = ACTIONS(4387), + [aux_sym_select_rank_statement_token2] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4387), + [aux_sym_associate_statement_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_print_statement_token1] = ACTIONS(4387), + [aux_sym_open_statement_token1] = ACTIONS(4387), + [aux_sym_close_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token1] = ACTIONS(4387), + [aux_sym_file_position_statement_token2] = ACTIONS(4387), + [aux_sym_file_position_statement_token3] = ACTIONS(4387), + [aux_sym_file_position_statement_token4] = ACTIONS(4387), + [aux_sym_allocate_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_logical_expression_token5] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LPAREN_SLASH] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [aux_sym_boolean_literal_token1] = ACTIONS(4389), + [aux_sym_boolean_literal_token2] = ACTIONS(4389), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(4389), + [sym__float_literal] = ACTIONS(4389), + [sym__boz_literal] = ACTIONS(4389), + [sym__string_literal] = ACTIONS(4389), + [sym__string_literal_kind] = ACTIONS(4389), }, - [1718] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [aux_sym_preproc_else_token1] = ACTIONS(4485), - [aux_sym_preproc_elif_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(5706), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1633] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_subroutine_call_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token1] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_keyword_statement_token4] = ACTIONS(4383), + [aux_sym_keyword_statement_token6] = ACTIONS(4383), + [aux_sym_keyword_statement_token7] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym_do_loop_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym__inline_where_statement_token1] = ACTIONS(4383), + [aux_sym__forall_control_expression_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_select_case_statement_token3] = ACTIONS(4383), + [aux_sym_select_type_statement_token1] = ACTIONS(4383), + [aux_sym_select_rank_statement_token2] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4383), + [aux_sym_associate_statement_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_print_statement_token1] = ACTIONS(4383), + [aux_sym_open_statement_token1] = ACTIONS(4383), + [aux_sym_close_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token1] = ACTIONS(4383), + [aux_sym_file_position_statement_token2] = ACTIONS(4383), + [aux_sym_file_position_statement_token3] = ACTIONS(4383), + [aux_sym_file_position_statement_token4] = ACTIONS(4383), + [aux_sym_allocate_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_logical_expression_token5] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LPAREN_SLASH] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [aux_sym_boolean_literal_token1] = ACTIONS(4385), + [aux_sym_boolean_literal_token2] = ACTIONS(4385), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), + [sym__integer_literal] = ACTIONS(4385), + [sym__float_literal] = ACTIONS(4385), + [sym__boz_literal] = ACTIONS(4385), + [sym__string_literal] = ACTIONS(4385), + [sym__string_literal_kind] = ACTIONS(4385), }, - [1719] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(5708), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token3] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym_derived_type_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_end_select_statement_token1] = ACTIONS(4269), - [aux_sym_type_statement_token2] = ACTIONS(4269), - [aux_sym_type_statement_token3] = ACTIONS(4269), - [aux_sym__class_default_token1] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [1634] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_LPAREN2] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_subroutine_call_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token1] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_keyword_statement_token4] = ACTIONS(5014), + [aux_sym_keyword_statement_token6] = ACTIONS(5014), + [aux_sym_keyword_statement_token7] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym_do_loop_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym__inline_where_statement_token1] = ACTIONS(5014), + [aux_sym__forall_control_expression_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_select_case_statement_token3] = ACTIONS(5014), + [aux_sym_select_type_statement_token1] = ACTIONS(5014), + [aux_sym_select_rank_statement_token2] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5014), + [aux_sym_associate_statement_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_print_statement_token1] = ACTIONS(5014), + [aux_sym_open_statement_token1] = ACTIONS(5014), + [aux_sym_close_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token1] = ACTIONS(5014), + [aux_sym_file_position_statement_token2] = ACTIONS(5014), + [aux_sym_file_position_statement_token3] = ACTIONS(5014), + [aux_sym_file_position_statement_token4] = ACTIONS(5014), + [aux_sym_allocate_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_logical_expression_token5] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_LPAREN_SLASH] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [aux_sym_boolean_literal_token1] = ACTIONS(5016), + [aux_sym_boolean_literal_token2] = ACTIONS(5016), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + [sym__float_literal] = ACTIONS(5016), + [sym__boz_literal] = ACTIONS(5016), + [sym__string_literal] = ACTIONS(5016), + [sym__string_literal_kind] = ACTIONS(5016), }, - [1720] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token2] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [aux_sym_preproc_else_token1] = ACTIONS(5710), - [aux_sym_preproc_elif_token1] = ACTIONS(5710), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_end_program_statement_token2] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_contains_statement_token1] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [1635] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [anon_sym_SEMI] = ACTIONS(5069), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_subroutine_call_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token1] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_keyword_statement_token4] = ACTIONS(5067), + [aux_sym_keyword_statement_token6] = ACTIONS(5067), + [aux_sym_keyword_statement_token7] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym_do_loop_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym__inline_where_statement_token1] = ACTIONS(5067), + [aux_sym__forall_control_expression_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_select_case_statement_token3] = ACTIONS(5067), + [aux_sym_select_type_statement_token1] = ACTIONS(5067), + [aux_sym_select_rank_statement_token2] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5067), + [aux_sym_associate_statement_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_print_statement_token1] = ACTIONS(5067), + [aux_sym_open_statement_token1] = ACTIONS(5067), + [aux_sym_close_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token1] = ACTIONS(5067), + [aux_sym_file_position_statement_token2] = ACTIONS(5067), + [aux_sym_file_position_statement_token3] = ACTIONS(5067), + [aux_sym_file_position_statement_token4] = ACTIONS(5067), + [aux_sym_allocate_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_logical_expression_token5] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LPAREN_SLASH] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [aux_sym_boolean_literal_token1] = ACTIONS(5069), + [aux_sym_boolean_literal_token2] = ACTIONS(5069), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + [sym__float_literal] = ACTIONS(5069), + [sym__boz_literal] = ACTIONS(5069), + [sym__string_literal] = ACTIONS(5069), + [sym__string_literal_kind] = ACTIONS(5069), }, - [1721] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(5714), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [1636] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_LPAREN2] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token3] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym_derived_type_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_end_select_statement_token1] = ACTIONS(4315), - [aux_sym_type_statement_token2] = ACTIONS(4315), - [aux_sym_type_statement_token3] = ACTIONS(4315), - [aux_sym__class_default_token1] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_subroutine_call_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token1] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_keyword_statement_token4] = ACTIONS(4611), + [aux_sym_keyword_statement_token6] = ACTIONS(4611), + [aux_sym_keyword_statement_token7] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym_do_loop_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym__inline_where_statement_token1] = ACTIONS(4611), + [aux_sym__forall_control_expression_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_select_case_statement_token3] = ACTIONS(4611), + [aux_sym_select_type_statement_token1] = ACTIONS(4611), + [aux_sym_select_rank_statement_token2] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4611), + [aux_sym_associate_statement_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_print_statement_token1] = ACTIONS(4611), + [aux_sym_open_statement_token1] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token1] = ACTIONS(4611), + [aux_sym_file_position_statement_token2] = ACTIONS(4611), + [aux_sym_file_position_statement_token3] = ACTIONS(4611), + [aux_sym_file_position_statement_token4] = ACTIONS(4611), + [aux_sym_allocate_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_logical_expression_token5] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LPAREN_SLASH] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(4613), + [sym__float_literal] = ACTIONS(4613), + [sym__boz_literal] = ACTIONS(4613), + [sym__string_literal] = ACTIONS(4613), + [sym__string_literal_kind] = ACTIONS(4613), }, - [1722] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(5716), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1637] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token3] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym_derived_type_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_end_select_statement_token1] = ACTIONS(4327), - [aux_sym_type_statement_token2] = ACTIONS(4327), - [aux_sym_type_statement_token3] = ACTIONS(4327), - [aux_sym__class_default_token1] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [1723] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(5718), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token3] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym_derived_type_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_end_select_statement_token1] = ACTIONS(4295), - [aux_sym_type_statement_token2] = ACTIONS(4295), - [aux_sym_type_statement_token3] = ACTIONS(4295), - [aux_sym__class_default_token1] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [1638] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_LPAREN2] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4617), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_subroutine_call_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token1] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_keyword_statement_token4] = ACTIONS(4615), + [aux_sym_keyword_statement_token6] = ACTIONS(4615), + [aux_sym_keyword_statement_token7] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym_do_loop_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym__inline_where_statement_token1] = ACTIONS(4615), + [aux_sym__forall_control_expression_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_select_case_statement_token3] = ACTIONS(4615), + [aux_sym_select_type_statement_token1] = ACTIONS(4615), + [aux_sym_select_rank_statement_token2] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4615), + [aux_sym_associate_statement_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_print_statement_token1] = ACTIONS(4615), + [aux_sym_open_statement_token1] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token1] = ACTIONS(4615), + [aux_sym_file_position_statement_token2] = ACTIONS(4615), + [aux_sym_file_position_statement_token3] = ACTIONS(4615), + [aux_sym_file_position_statement_token4] = ACTIONS(4615), + [aux_sym_allocate_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_logical_expression_token5] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LPAREN_SLASH] = ACTIONS(4617), + [anon_sym_LBRACK] = ACTIONS(4617), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4617), + [sym__float_literal] = ACTIONS(4617), + [sym__boz_literal] = ACTIONS(4617), + [sym__string_literal] = ACTIONS(4617), + [sym__string_literal_kind] = ACTIONS(4617), }, - [1724] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(5720), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1639] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token3] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym_derived_type_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_end_select_statement_token1] = ACTIONS(4445), - [aux_sym_type_statement_token2] = ACTIONS(4445), - [aux_sym_type_statement_token3] = ACTIONS(4445), - [aux_sym__class_default_token1] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_subroutine_call_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token1] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_keyword_statement_token4] = ACTIONS(4994), + [aux_sym_keyword_statement_token6] = ACTIONS(4994), + [aux_sym_keyword_statement_token7] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym_do_loop_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym__inline_where_statement_token1] = ACTIONS(4994), + [aux_sym__forall_control_expression_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_select_case_statement_token3] = ACTIONS(4994), + [aux_sym_select_type_statement_token1] = ACTIONS(4994), + [aux_sym_select_rank_statement_token2] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4994), + [aux_sym_associate_statement_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_print_statement_token1] = ACTIONS(4994), + [aux_sym_open_statement_token1] = ACTIONS(4994), + [aux_sym_close_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token1] = ACTIONS(4994), + [aux_sym_file_position_statement_token2] = ACTIONS(4994), + [aux_sym_file_position_statement_token3] = ACTIONS(4994), + [aux_sym_file_position_statement_token4] = ACTIONS(4994), + [aux_sym_allocate_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_logical_expression_token5] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_LPAREN_SLASH] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [aux_sym_boolean_literal_token1] = ACTIONS(4996), + [aux_sym_boolean_literal_token2] = ACTIONS(4996), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(4996), + [sym__float_literal] = ACTIONS(4996), + [sym__boz_literal] = ACTIONS(4996), + [sym__string_literal] = ACTIONS(4996), + [sym__string_literal_kind] = ACTIONS(4996), }, - [1725] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(5722), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1640] = { + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), + [anon_sym_LPAREN2] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token3] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym_derived_type_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_end_select_statement_token1] = ACTIONS(4485), - [aux_sym_type_statement_token2] = ACTIONS(4485), - [aux_sym_type_statement_token3] = ACTIONS(4485), - [aux_sym__class_default_token1] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_subroutine_call_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token1] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_keyword_statement_token4] = ACTIONS(4511), + [aux_sym_keyword_statement_token6] = ACTIONS(4511), + [aux_sym_keyword_statement_token7] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym_do_loop_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym__inline_where_statement_token1] = ACTIONS(4511), + [aux_sym__forall_control_expression_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_select_case_statement_token3] = ACTIONS(4511), + [aux_sym_select_type_statement_token1] = ACTIONS(4511), + [aux_sym_select_rank_statement_token2] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4511), + [aux_sym_associate_statement_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_print_statement_token1] = ACTIONS(4511), + [aux_sym_open_statement_token1] = ACTIONS(4511), + [aux_sym_close_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token1] = ACTIONS(4511), + [aux_sym_file_position_statement_token2] = ACTIONS(4511), + [aux_sym_file_position_statement_token3] = ACTIONS(4511), + [aux_sym_file_position_statement_token4] = ACTIONS(4511), + [aux_sym_allocate_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_logical_expression_token5] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_LPAREN_SLASH] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [aux_sym_boolean_literal_token1] = ACTIONS(4513), + [aux_sym_boolean_literal_token2] = ACTIONS(4513), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [1726] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(5724), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token3] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym_derived_type_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_end_select_statement_token1] = ACTIONS(4817), - [aux_sym_type_statement_token2] = ACTIONS(4817), - [aux_sym_type_statement_token3] = ACTIONS(4817), - [aux_sym__class_default_token1] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [1727] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(5726), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token3] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym_derived_type_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_end_select_statement_token1] = ACTIONS(4827), - [aux_sym_type_statement_token2] = ACTIONS(4827), - [aux_sym_type_statement_token3] = ACTIONS(4827), - [aux_sym__class_default_token1] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1728] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [aux_sym_preproc_else_token1] = ACTIONS(4817), - [aux_sym_preproc_elif_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(5728), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [sym__integer_literal] = ACTIONS(4513), + [sym__float_literal] = ACTIONS(4513), + [sym__boz_literal] = ACTIONS(4513), + [sym__string_literal] = ACTIONS(4513), + [sym__string_literal_kind] = ACTIONS(4513), }, - [1729] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [aux_sym_preproc_else_token1] = ACTIONS(5554), - [aux_sym_preproc_elif_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(5730), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), + [1641] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_contains_statement_token1] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1730] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [aux_sym_preproc_else_token1] = ACTIONS(4827), - [aux_sym_preproc_elif_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(5732), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [1642] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_subroutine_call_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token1] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_keyword_statement_token4] = ACTIONS(5018), + [aux_sym_keyword_statement_token6] = ACTIONS(5018), + [aux_sym_keyword_statement_token7] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym_do_loop_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym__inline_where_statement_token1] = ACTIONS(5018), + [aux_sym__forall_control_expression_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_select_case_statement_token3] = ACTIONS(5018), + [aux_sym_select_type_statement_token1] = ACTIONS(5018), + [aux_sym_select_rank_statement_token2] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5018), + [aux_sym_associate_statement_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_print_statement_token1] = ACTIONS(5018), + [aux_sym_open_statement_token1] = ACTIONS(5018), + [aux_sym_close_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token1] = ACTIONS(5018), + [aux_sym_file_position_statement_token2] = ACTIONS(5018), + [aux_sym_file_position_statement_token3] = ACTIONS(5018), + [aux_sym_file_position_statement_token4] = ACTIONS(5018), + [aux_sym_allocate_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_logical_expression_token5] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_LPAREN_SLASH] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [aux_sym_boolean_literal_token1] = ACTIONS(5020), + [aux_sym_boolean_literal_token2] = ACTIONS(5020), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + [sym__float_literal] = ACTIONS(5020), + [sym__boz_literal] = ACTIONS(5020), + [sym__string_literal] = ACTIONS(5020), + [sym__string_literal_kind] = ACTIONS(5020), }, - [1731] = { - [sym_assignment] = STATE(6035), - [sym_operator] = STATE(6035), - [sym_defined_io_procedure] = STATE(6035), - [sym__generic_procedure] = STATE(6035), - [sym_identifier] = STATE(6035), - [sym__end_of_statement] = STATE(1603), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), + [1643] = { + [sym_statement_label] = STATE(6507), + [sym_statement_label_reference] = STATE(6508), + [sym__io_arguments] = STATE(2687), + [sym_format_identifier] = STATE(6813), + [sym__io_expressions] = STATE(6508), + [sym__expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4653), + [sym_derived_type_member_expression] = STATE(4653), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(4653), + [sym_math_expression] = STATE(4653), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4653), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(4653), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4653), + [anon_sym_LPAREN2] = ACTIONS(5450), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5734), - [anon_sym_EQ_GT] = ACTIONS(4325), + [anon_sym_EQ_GT] = ACTIONS(4257), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), [aux_sym_public_statement_token1] = ACTIONS(5456), [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), [aux_sym_variable_attributes_token2] = ACTIONS(5456), [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), [aux_sym_variable_attributes_token5] = ACTIONS(5456), [aux_sym__intrinsic_type_token1] = ACTIONS(5456), [aux_sym__intrinsic_type_token3] = ACTIONS(5456), [aux_sym__intrinsic_type_token4] = ACTIONS(5458), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5736), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -316581,22 +307343,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(5464), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -316607,279 +307373,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5736), - }, - [1732] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token2] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [aux_sym_preproc_else_token1] = ACTIONS(5738), - [aux_sym_preproc_elif_token1] = ACTIONS(5738), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_end_program_statement_token2] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_contains_statement_token1] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [sym__integer_literal] = ACTIONS(5466), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [1733] = { - [sym_assignment] = STATE(5973), - [sym_operator] = STATE(5973), - [sym_defined_io_procedure] = STATE(5973), - [sym__generic_procedure] = STATE(5973), - [sym_identifier] = STATE(5973), - [sym__end_of_statement] = STATE(1622), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5742), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5744), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5744), + [1644] = { + [sym__kind] = STATE(3860), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_PLUS] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5474), + [anon_sym_STAR] = ACTIONS(5476), + [anon_sym_SLASH] = ACTIONS(5476), + [anon_sym_PERCENT] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_LT_EQ] = ACTIONS(5478), + [anon_sym_LT] = ACTIONS(5476), + [aux_sym_end_program_statement_token1] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5476), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5472), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5472), + [aux_sym_procedure_attributes_token3] = ACTIONS(5472), + [aux_sym_use_statement_token2] = ACTIONS(5472), + [anon_sym_EQ_GT] = ACTIONS(5478), + [aux_sym_implicit_statement_token3] = ACTIONS(5472), + [aux_sym_implicit_statement_token4] = ACTIONS(5472), + [aux_sym_save_statement_token1] = ACTIONS(5472), + [aux_sym_private_statement_token1] = ACTIONS(5472), + [aux_sym_public_statement_token1] = ACTIONS(5472), + [aux_sym_derived_type_definition_token1] = ACTIONS(5472), + [aux_sym_procedure_attribute_token6] = ACTIONS(5472), + [aux_sym_variable_attributes_token2] = ACTIONS(5472), + [aux_sym_variable_attributes_token3] = ACTIONS(5472), + [aux_sym_variable_attributes_token5] = ACTIONS(5472), + [aux_sym__intrinsic_type_token1] = ACTIONS(5472), + [aux_sym__intrinsic_type_token3] = ACTIONS(5472), + [aux_sym__intrinsic_type_token4] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5472), + [aux_sym_type_qualifier_token1] = ACTIONS(5472), + [aux_sym_type_qualifier_token2] = ACTIONS(5472), + [aux_sym_stop_statement_token1] = ACTIONS(5472), + [aux_sym_stop_statement_token2] = ACTIONS(5472), + [aux_sym_subroutine_call_token1] = ACTIONS(5472), + [aux_sym_keyword_statement_token1] = ACTIONS(5472), + [aux_sym_keyword_statement_token2] = ACTIONS(5472), + [aux_sym_keyword_statement_token3] = ACTIONS(5472), + [aux_sym_keyword_statement_token4] = ACTIONS(5472), + [aux_sym_keyword_statement_token6] = ACTIONS(5472), + [aux_sym_keyword_statement_token7] = ACTIONS(5472), + [aux_sym_include_statement_token1] = ACTIONS(5472), + [aux_sym_data_statement_token1] = ACTIONS(5472), + [aux_sym_do_loop_statement_token1] = ACTIONS(5472), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5472), + [aux_sym__inline_if_statement_token1] = ACTIONS(5472), + [aux_sym_end_if_statement_token1] = ACTIONS(5472), + [aux_sym_elseif_clause_token2] = ACTIONS(5472), + [aux_sym__inline_where_statement_token1] = ACTIONS(5472), + [aux_sym__forall_control_expression_token1] = ACTIONS(5472), + [aux_sym_select_case_statement_token1] = ACTIONS(5472), + [aux_sym_select_case_statement_token3] = ACTIONS(5472), + [aux_sym_select_type_statement_token1] = ACTIONS(5472), + [aux_sym_select_rank_statement_token2] = ACTIONS(5472), + [aux_sym_block_construct_token1] = ACTIONS(5472), + [aux_sym_associate_statement_token1] = ACTIONS(5472), + [aux_sym_format_statement_token1] = ACTIONS(5472), + [aux_sym_print_statement_token1] = ACTIONS(5472), + [aux_sym_open_statement_token1] = ACTIONS(5472), + [aux_sym_close_statement_token1] = ACTIONS(5472), + [aux_sym_inquire_statement_token1] = ACTIONS(5472), + [aux_sym_file_position_statement_token1] = ACTIONS(5472), + [aux_sym_file_position_statement_token2] = ACTIONS(5472), + [aux_sym_file_position_statement_token3] = ACTIONS(5472), + [aux_sym_file_position_statement_token4] = ACTIONS(5472), + [aux_sym_allocate_statement_token1] = ACTIONS(5472), + [aux_sym_entry_statement_token1] = ACTIONS(5472), + [aux_sym_logical_expression_token1] = ACTIONS(5478), + [aux_sym_logical_expression_token2] = ACTIONS(5478), + [aux_sym_logical_expression_token3] = ACTIONS(5478), + [aux_sym_logical_expression_token4] = ACTIONS(5478), + [aux_sym_logical_expression_token5] = ACTIONS(5474), + [aux_sym_relational_expression_token1] = ACTIONS(5478), + [aux_sym_relational_expression_token2] = ACTIONS(5478), + [aux_sym_relational_expression_token3] = ACTIONS(5478), + [aux_sym_relational_expression_token4] = ACTIONS(5478), + [aux_sym_relational_expression_token5] = ACTIONS(5478), + [anon_sym_SLASH_EQ] = ACTIONS(5478), + [aux_sym_relational_expression_token6] = ACTIONS(5478), + [anon_sym_SLASH_SLASH] = ACTIONS(5478), + [anon_sym_STAR_STAR] = ACTIONS(5478), + [anon_sym_DOT] = ACTIONS(5472), + [anon_sym_LPAREN_SLASH] = ACTIONS(5474), + [anon_sym_LBRACK] = ACTIONS(5474), + [aux_sym_boolean_literal_token1] = ACTIONS(5474), + [aux_sym_boolean_literal_token2] = ACTIONS(5474), + [anon_sym__] = ACTIONS(5480), + [aux_sym_null_literal_token1] = ACTIONS(5472), + [aux_sym_coarray_statement_token1] = ACTIONS(5472), + [aux_sym_coarray_statement_token2] = ACTIONS(5472), + [aux_sym_coarray_statement_token6] = ACTIONS(5472), + [aux_sym_coarray_statement_token8] = ACTIONS(5472), + [aux_sym_coarray_statement_token11] = ACTIONS(5472), + [aux_sym_coarray_statement_token12] = ACTIONS(5472), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5472), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5472), + [aux_sym_identifier_token1] = ACTIONS(5472), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5474), + [sym__float_literal] = ACTIONS(5474), + [sym__boz_literal] = ACTIONS(5474), + [sym__string_literal] = ACTIONS(5474), + [sym__string_literal_kind] = ACTIONS(5474), }, - [1734] = { - [sym_assignment] = STATE(5974), - [sym_operator] = STATE(5974), - [sym_defined_io_procedure] = STATE(5974), - [sym__generic_procedure] = STATE(5974), - [sym_identifier] = STATE(5974), - [sym__end_of_statement] = STATE(1623), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), + [1645] = { + [sym__expression] = STATE(4358), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_LPAREN2] = ACTIONS(5484), + [anon_sym_PLUS] = ACTIONS(5487), + [anon_sym_DASH] = ACTIONS(5487), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [aux_sym_assignment_token1] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5746), - [anon_sym_EQ_GT] = ACTIONS(4325), + [anon_sym_EQ_GT] = ACTIONS(4257), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), [aux_sym_public_statement_token1] = ACTIONS(5456), [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), [aux_sym_variable_attributes_token2] = ACTIONS(5456), [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), [aux_sym_variable_attributes_token5] = ACTIONS(5456), [aux_sym__intrinsic_type_token1] = ACTIONS(5456), [aux_sym__intrinsic_type_token3] = ACTIONS(5456), [aux_sym__intrinsic_type_token4] = ACTIONS(5458), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5748), + [anon_sym_SEMI] = ACTIONS(5490), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -316893,22 +307576,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(5494), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(5499), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -316919,1497 +307606,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(5748), - }, - [1735] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token2] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [aux_sym_preproc_else_token1] = ACTIONS(5750), - [aux_sym_preproc_elif_token1] = ACTIONS(5750), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_end_program_statement_token2] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_contains_statement_token1] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [1736] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token2] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [aux_sym_preproc_else_token1] = ACTIONS(5568), - [aux_sym_preproc_elif_token1] = ACTIONS(5568), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5754), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_contains_statement_token1] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [1737] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5756), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token3] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym_derived_type_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_end_select_statement_token1] = ACTIONS(5536), - [aux_sym_type_statement_token2] = ACTIONS(5536), - [aux_sym_type_statement_token3] = ACTIONS(5536), - [aux_sym__class_default_token1] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [1738] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(5758), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token3] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym_derived_type_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_end_select_statement_token1] = ACTIONS(5526), - [aux_sym_type_statement_token2] = ACTIONS(5526), - [aux_sym_type_statement_token3] = ACTIONS(5526), - [aux_sym__class_default_token1] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [1739] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(5760), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token3] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym_derived_type_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_end_select_statement_token1] = ACTIONS(5578), - [aux_sym_type_statement_token2] = ACTIONS(5578), - [aux_sym_type_statement_token3] = ACTIONS(5578), - [aux_sym__class_default_token1] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [1740] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5762), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token3] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym_derived_type_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_end_select_statement_token1] = ACTIONS(5548), - [aux_sym_type_statement_token2] = ACTIONS(5548), - [aux_sym_type_statement_token3] = ACTIONS(5548), - [aux_sym__class_default_token1] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [1741] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5764), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token3] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym_derived_type_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_end_select_statement_token1] = ACTIONS(5520), - [aux_sym_type_statement_token2] = ACTIONS(5520), - [aux_sym_type_statement_token3] = ACTIONS(5520), - [aux_sym__class_default_token1] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [1742] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(5766), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token3] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym_derived_type_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_end_select_statement_token1] = ACTIONS(5554), - [aux_sym_type_statement_token2] = ACTIONS(5554), - [aux_sym_type_statement_token3] = ACTIONS(5554), - [aux_sym__class_default_token1] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [1743] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5768), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token3] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym_derived_type_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_end_select_statement_token1] = ACTIONS(5568), - [aux_sym_type_statement_token2] = ACTIONS(5568), - [aux_sym_type_statement_token3] = ACTIONS(5568), - [aux_sym__class_default_token1] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [1744] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token2] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [aux_sym_preproc_else_token1] = ACTIONS(5770), - [aux_sym_preproc_elif_token1] = ACTIONS(5770), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_end_program_statement_token2] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_contains_statement_token1] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [1745] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token2] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [aux_sym_preproc_else_token1] = ACTIONS(4315), - [aux_sym_preproc_elif_token1] = ACTIONS(4315), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(5774), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), - }, - [1746] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token2] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [aux_sym_preproc_else_token1] = ACTIONS(5536), - [aux_sym_preproc_elif_token1] = ACTIONS(5536), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5776), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(5490), }, - [1747] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token2] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [aux_sym_preproc_else_token1] = ACTIONS(5526), - [aux_sym_preproc_elif_token1] = ACTIONS(5526), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(5778), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [1646] = { + [sym__kind] = STATE(3860), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_PLUS] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5474), + [anon_sym_STAR] = ACTIONS(5476), + [anon_sym_SLASH] = ACTIONS(5476), + [anon_sym_PERCENT] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_LT_EQ] = ACTIONS(5478), + [anon_sym_LT] = ACTIONS(5476), + [aux_sym_end_program_statement_token1] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5476), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5472), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5472), + [aux_sym_procedure_attributes_token3] = ACTIONS(5472), + [aux_sym_use_statement_token2] = ACTIONS(5472), + [anon_sym_EQ_GT] = ACTIONS(5478), + [aux_sym_implicit_statement_token4] = ACTIONS(5472), + [aux_sym_save_statement_token1] = ACTIONS(5472), + [aux_sym_private_statement_token1] = ACTIONS(5472), + [aux_sym_public_statement_token1] = ACTIONS(5472), + [aux_sym_derived_type_definition_token1] = ACTIONS(5472), + [aux_sym_procedure_attribute_token6] = ACTIONS(5472), + [aux_sym_variable_attributes_token2] = ACTIONS(5472), + [aux_sym_variable_attributes_token3] = ACTIONS(5472), + [aux_sym_variable_attributes_token5] = ACTIONS(5472), + [aux_sym__intrinsic_type_token1] = ACTIONS(5472), + [aux_sym__intrinsic_type_token3] = ACTIONS(5472), + [aux_sym__intrinsic_type_token4] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5472), + [aux_sym_type_qualifier_token1] = ACTIONS(5472), + [aux_sym_type_qualifier_token2] = ACTIONS(5472), + [aux_sym_stop_statement_token1] = ACTIONS(5472), + [aux_sym_stop_statement_token2] = ACTIONS(5472), + [aux_sym_subroutine_call_token1] = ACTIONS(5472), + [aux_sym_keyword_statement_token1] = ACTIONS(5472), + [aux_sym_keyword_statement_token2] = ACTIONS(5472), + [aux_sym_keyword_statement_token3] = ACTIONS(5472), + [aux_sym_keyword_statement_token4] = ACTIONS(5472), + [aux_sym_keyword_statement_token6] = ACTIONS(5472), + [aux_sym_keyword_statement_token7] = ACTIONS(5472), + [aux_sym_include_statement_token1] = ACTIONS(5472), + [aux_sym_data_statement_token1] = ACTIONS(5472), + [aux_sym_do_loop_statement_token1] = ACTIONS(5472), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5472), + [aux_sym__inline_if_statement_token1] = ACTIONS(5472), + [aux_sym_end_if_statement_token1] = ACTIONS(5472), + [aux_sym_elseif_clause_token2] = ACTIONS(5472), + [aux_sym__inline_where_statement_token1] = ACTIONS(5472), + [aux_sym__forall_control_expression_token1] = ACTIONS(5472), + [aux_sym_end_forall_statement_token1] = ACTIONS(5472), + [aux_sym_select_case_statement_token1] = ACTIONS(5472), + [aux_sym_select_case_statement_token3] = ACTIONS(5472), + [aux_sym_select_type_statement_token1] = ACTIONS(5472), + [aux_sym_select_rank_statement_token2] = ACTIONS(5472), + [aux_sym_block_construct_token1] = ACTIONS(5472), + [aux_sym_associate_statement_token1] = ACTIONS(5472), + [aux_sym_format_statement_token1] = ACTIONS(5472), + [aux_sym_print_statement_token1] = ACTIONS(5472), + [aux_sym_open_statement_token1] = ACTIONS(5472), + [aux_sym_close_statement_token1] = ACTIONS(5472), + [aux_sym_inquire_statement_token1] = ACTIONS(5472), + [aux_sym_file_position_statement_token1] = ACTIONS(5472), + [aux_sym_file_position_statement_token2] = ACTIONS(5472), + [aux_sym_file_position_statement_token3] = ACTIONS(5472), + [aux_sym_file_position_statement_token4] = ACTIONS(5472), + [aux_sym_allocate_statement_token1] = ACTIONS(5472), + [aux_sym_entry_statement_token1] = ACTIONS(5472), + [aux_sym_logical_expression_token1] = ACTIONS(5478), + [aux_sym_logical_expression_token2] = ACTIONS(5478), + [aux_sym_logical_expression_token3] = ACTIONS(5478), + [aux_sym_logical_expression_token4] = ACTIONS(5478), + [aux_sym_logical_expression_token5] = ACTIONS(5474), + [aux_sym_relational_expression_token1] = ACTIONS(5478), + [aux_sym_relational_expression_token2] = ACTIONS(5478), + [aux_sym_relational_expression_token3] = ACTIONS(5478), + [aux_sym_relational_expression_token4] = ACTIONS(5478), + [aux_sym_relational_expression_token5] = ACTIONS(5478), + [anon_sym_SLASH_EQ] = ACTIONS(5478), + [aux_sym_relational_expression_token6] = ACTIONS(5478), + [anon_sym_SLASH_SLASH] = ACTIONS(5478), + [anon_sym_STAR_STAR] = ACTIONS(5478), + [anon_sym_DOT] = ACTIONS(5472), + [anon_sym_LPAREN_SLASH] = ACTIONS(5474), + [anon_sym_LBRACK] = ACTIONS(5474), + [aux_sym_boolean_literal_token1] = ACTIONS(5474), + [aux_sym_boolean_literal_token2] = ACTIONS(5474), + [anon_sym__] = ACTIONS(5480), + [aux_sym_null_literal_token1] = ACTIONS(5472), + [aux_sym_coarray_statement_token1] = ACTIONS(5472), + [aux_sym_coarray_statement_token2] = ACTIONS(5472), + [aux_sym_coarray_statement_token6] = ACTIONS(5472), + [aux_sym_coarray_statement_token8] = ACTIONS(5472), + [aux_sym_coarray_statement_token11] = ACTIONS(5472), + [aux_sym_coarray_statement_token12] = ACTIONS(5472), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5472), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5472), + [aux_sym_identifier_token1] = ACTIONS(5472), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5474), + [sym__float_literal] = ACTIONS(5474), + [sym__boz_literal] = ACTIONS(5474), + [sym__string_literal] = ACTIONS(5474), + [sym__string_literal_kind] = ACTIONS(5474), }, - [1748] = { - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), - [aux_sym_procedure_attributes_token3] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2059), - [aux_sym_implicit_statement_token3] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2059), - [aux_sym_save_statement_token1] = ACTIONS(2059), - [aux_sym_private_statement_token1] = ACTIONS(2059), - [aux_sym_public_statement_token1] = ACTIONS(2059), - [aux_sym_derived_type_definition_token1] = ACTIONS(2059), - [aux_sym_procedure_attribute_token6] = ACTIONS(2059), - [aux_sym_variable_attributes_token2] = ACTIONS(2059), - [aux_sym_variable_attributes_token3] = ACTIONS(2059), - [aux_sym_variable_attributes_token5] = ACTIONS(2059), - [aux_sym__intrinsic_type_token1] = ACTIONS(2059), - [aux_sym__intrinsic_type_token3] = ACTIONS(2059), - [aux_sym__intrinsic_type_token4] = ACTIONS(2059), - [aux_sym_derived_type_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), - [aux_sym_type_qualifier_token1] = ACTIONS(2059), - [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), - [aux_sym_stop_statement_token1] = ACTIONS(2059), - [aux_sym_stop_statement_token2] = ACTIONS(2059), - [aux_sym_subroutine_call_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token2] = ACTIONS(2059), - [aux_sym_keyword_statement_token3] = ACTIONS(2059), - [aux_sym_keyword_statement_token4] = ACTIONS(2059), - [aux_sym_keyword_statement_token6] = ACTIONS(2059), - [aux_sym_keyword_statement_token7] = ACTIONS(2059), - [aux_sym_include_statement_token1] = ACTIONS(2059), - [aux_sym_data_statement_token1] = ACTIONS(2059), - [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2059), - [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2059), - [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token3] = ACTIONS(2059), - [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_end_select_statement_token1] = ACTIONS(2059), - [aux_sym_type_statement_token2] = ACTIONS(2059), - [aux_sym_type_statement_token3] = ACTIONS(2059), - [aux_sym__class_default_token1] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [1647] = { + [sym__kind] = STATE(3860), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_PLUS] = ACTIONS(5474), + [anon_sym_DASH] = ACTIONS(5474), + [anon_sym_STAR] = ACTIONS(5476), + [anon_sym_SLASH] = ACTIONS(5476), + [anon_sym_PERCENT] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(5476), + [anon_sym_GT_EQ] = ACTIONS(5478), + [anon_sym_LT_EQ] = ACTIONS(5478), + [anon_sym_LT] = ACTIONS(5476), + [aux_sym_end_program_statement_token1] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(5476), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5472), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5472), + [aux_sym_procedure_attributes_token3] = ACTIONS(5472), + [aux_sym_use_statement_token2] = ACTIONS(5472), + [anon_sym_EQ_GT] = ACTIONS(5478), + [aux_sym_implicit_statement_token4] = ACTIONS(5472), + [aux_sym_save_statement_token1] = ACTIONS(5472), + [aux_sym_private_statement_token1] = ACTIONS(5472), + [aux_sym_public_statement_token1] = ACTIONS(5472), + [aux_sym_derived_type_definition_token1] = ACTIONS(5472), + [aux_sym_procedure_attribute_token6] = ACTIONS(5472), + [aux_sym_variable_attributes_token2] = ACTIONS(5472), + [aux_sym_variable_attributes_token3] = ACTIONS(5472), + [aux_sym_variable_attributes_token5] = ACTIONS(5472), + [aux_sym__intrinsic_type_token1] = ACTIONS(5472), + [aux_sym__intrinsic_type_token3] = ACTIONS(5472), + [aux_sym__intrinsic_type_token4] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5472), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5472), + [aux_sym_type_qualifier_token1] = ACTIONS(5472), + [aux_sym_type_qualifier_token2] = ACTIONS(5472), + [aux_sym_stop_statement_token1] = ACTIONS(5472), + [aux_sym_stop_statement_token2] = ACTIONS(5472), + [aux_sym_subroutine_call_token1] = ACTIONS(5472), + [aux_sym_keyword_statement_token1] = ACTIONS(5472), + [aux_sym_keyword_statement_token2] = ACTIONS(5472), + [aux_sym_keyword_statement_token3] = ACTIONS(5472), + [aux_sym_keyword_statement_token4] = ACTIONS(5472), + [aux_sym_keyword_statement_token6] = ACTIONS(5472), + [aux_sym_keyword_statement_token7] = ACTIONS(5472), + [aux_sym_include_statement_token1] = ACTIONS(5472), + [aux_sym_data_statement_token1] = ACTIONS(5472), + [aux_sym_do_loop_statement_token1] = ACTIONS(5472), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5472), + [aux_sym__inline_if_statement_token1] = ACTIONS(5472), + [aux_sym_end_if_statement_token1] = ACTIONS(5472), + [aux_sym_elseif_clause_token2] = ACTIONS(5472), + [aux_sym__inline_where_statement_token1] = ACTIONS(5472), + [aux_sym__forall_control_expression_token1] = ACTIONS(5472), + [aux_sym_select_case_statement_token1] = ACTIONS(5472), + [aux_sym_select_case_statement_token3] = ACTIONS(5472), + [aux_sym_select_type_statement_token1] = ACTIONS(5472), + [aux_sym_select_rank_statement_token2] = ACTIONS(5472), + [aux_sym_block_construct_token1] = ACTIONS(5472), + [aux_sym_associate_statement_token1] = ACTIONS(5472), + [aux_sym_format_statement_token1] = ACTIONS(5472), + [aux_sym_print_statement_token1] = ACTIONS(5472), + [aux_sym_open_statement_token1] = ACTIONS(5472), + [aux_sym_close_statement_token1] = ACTIONS(5472), + [aux_sym_inquire_statement_token1] = ACTIONS(5472), + [aux_sym_file_position_statement_token1] = ACTIONS(5472), + [aux_sym_file_position_statement_token2] = ACTIONS(5472), + [aux_sym_file_position_statement_token3] = ACTIONS(5472), + [aux_sym_file_position_statement_token4] = ACTIONS(5472), + [aux_sym_allocate_statement_token1] = ACTIONS(5472), + [aux_sym_entry_statement_token1] = ACTIONS(5472), + [aux_sym_logical_expression_token1] = ACTIONS(5478), + [aux_sym_logical_expression_token2] = ACTIONS(5478), + [aux_sym_logical_expression_token3] = ACTIONS(5478), + [aux_sym_logical_expression_token4] = ACTIONS(5478), + [aux_sym_logical_expression_token5] = ACTIONS(5474), + [aux_sym_relational_expression_token1] = ACTIONS(5478), + [aux_sym_relational_expression_token2] = ACTIONS(5478), + [aux_sym_relational_expression_token3] = ACTIONS(5478), + [aux_sym_relational_expression_token4] = ACTIONS(5478), + [aux_sym_relational_expression_token5] = ACTIONS(5478), + [anon_sym_SLASH_EQ] = ACTIONS(5478), + [aux_sym_relational_expression_token6] = ACTIONS(5478), + [anon_sym_SLASH_SLASH] = ACTIONS(5478), + [anon_sym_STAR_STAR] = ACTIONS(5478), + [anon_sym_DOT] = ACTIONS(5472), + [anon_sym_LPAREN_SLASH] = ACTIONS(5474), + [anon_sym_LBRACK] = ACTIONS(5474), + [aux_sym_boolean_literal_token1] = ACTIONS(5474), + [aux_sym_boolean_literal_token2] = ACTIONS(5474), + [anon_sym__] = ACTIONS(5480), + [aux_sym_null_literal_token1] = ACTIONS(5472), + [aux_sym_coarray_statement_token1] = ACTIONS(5472), + [aux_sym_coarray_statement_token2] = ACTIONS(5472), + [aux_sym_coarray_statement_token6] = ACTIONS(5472), + [aux_sym_coarray_statement_token8] = ACTIONS(5472), + [aux_sym_coarray_statement_token11] = ACTIONS(5472), + [aux_sym_coarray_statement_token12] = ACTIONS(5472), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5472), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5472), + [aux_sym_identifier_token1] = ACTIONS(5472), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5474), + [sym__float_literal] = ACTIONS(5474), + [sym__boz_literal] = ACTIONS(5474), + [sym__string_literal] = ACTIONS(5474), + [sym__string_literal_kind] = ACTIONS(5474), }, - [1749] = { - [sym__intrinsic_type] = STATE(5872), - [sym_intrinsic_type] = STATE(8177), - [sym_derived_type] = STATE(8177), - [sym__expression] = STATE(4319), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym__type_spec] = STATE(2714), - [sym__ac_value_list] = STATE(7565), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [1648] = { + [sym_data_set] = STATE(6174), + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(4713), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4713), + [sym_implied_do_loop_expression] = STATE(4713), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4713), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_EQ] = ACTIONS(4255), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(5782), + [anon_sym_EQ_GT] = ACTIONS(4257), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), @@ -318419,19 +307898,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token2] = ACTIONS(93), [aux_sym_variable_attributes_token3] = ACTIONS(93), [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(5784), - [aux_sym__intrinsic_type_token2] = ACTIONS(77), - [aux_sym__intrinsic_type_token3] = ACTIONS(5784), - [aux_sym__intrinsic_type_token4] = ACTIONS(79), - [aux_sym__intrinsic_type_token6] = ACTIONS(77), - [aux_sym__intrinsic_type_token7] = ACTIONS(77), - [aux_sym__intrinsic_type_token8] = ACTIONS(81), - [aux_sym__intrinsic_type_token9] = ACTIONS(77), - [aux_sym__intrinsic_type_token10] = ACTIONS(77), - [aux_sym_derived_type_token1] = ACTIONS(83), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -318448,12 +307920,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -318470,520 +307955,1580 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [1750] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [1649] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token3] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym_derived_type_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_end_select_statement_token1] = ACTIONS(5640), - [aux_sym_type_statement_token2] = ACTIONS(5640), - [aux_sym_type_statement_token3] = ACTIONS(5640), - [aux_sym__class_default_token1] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_end_program_statement_token2] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [1751] = { - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), - [aux_sym_preproc_else_token1] = ACTIONS(2059), - [aux_sym_preproc_elif_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [1650] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token2] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [aux_sym_preproc_else_token1] = ACTIONS(5512), + [aux_sym_preproc_elif_token1] = ACTIONS(5512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(5514), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_end_program_statement_token2] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_contains_statement_token1] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [1651] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(5518), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_end_program_statement_token2] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [1652] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token2] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [aux_sym_preproc_else_token1] = ACTIONS(5522), + [aux_sym_preproc_elif_token1] = ACTIONS(5522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(5524), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_end_program_statement_token2] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_contains_statement_token1] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [1653] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token2] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [aux_sym_preproc_else_token1] = ACTIONS(5528), + [aux_sym_preproc_elif_token1] = ACTIONS(5528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(5530), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_end_program_statement_token2] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_contains_statement_token1] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [1654] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5534), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_end_program_statement_token2] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [1655] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token2] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [aux_sym_preproc_else_token1] = ACTIONS(5538), + [aux_sym_preproc_elif_token1] = ACTIONS(5538), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_end_program_statement_token2] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_contains_statement_token1] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [1656] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token2] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [aux_sym_preproc_else_token1] = ACTIONS(5544), + [aux_sym_preproc_elif_token1] = ACTIONS(5544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(5546), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_end_program_statement_token2] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_contains_statement_token1] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [1657] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token2] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [aux_sym_preproc_else_token1] = ACTIONS(5550), + [aux_sym_preproc_elif_token1] = ACTIONS(5550), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(5552), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_end_program_statement_token2] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_contains_statement_token1] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [1658] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token2] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [aux_sym_preproc_else_token1] = ACTIONS(4357), + [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(5556), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), - [aux_sym_procedure_attributes_token3] = ACTIONS(2059), - [aux_sym_contains_statement_token1] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2059), - [aux_sym_save_statement_token1] = ACTIONS(2059), - [aux_sym_private_statement_token1] = ACTIONS(2059), - [aux_sym_public_statement_token1] = ACTIONS(2059), - [aux_sym_derived_type_definition_token1] = ACTIONS(2059), - [aux_sym_procedure_attribute_token6] = ACTIONS(2059), - [aux_sym_variable_attributes_token2] = ACTIONS(2059), - [aux_sym_variable_attributes_token3] = ACTIONS(2059), - [aux_sym_variable_attributes_token5] = ACTIONS(2059), - [aux_sym__intrinsic_type_token1] = ACTIONS(2059), - [aux_sym__intrinsic_type_token3] = ACTIONS(2059), - [aux_sym__intrinsic_type_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), - [aux_sym_type_qualifier_token1] = ACTIONS(2059), - [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), - [aux_sym_stop_statement_token1] = ACTIONS(2059), - [aux_sym_stop_statement_token2] = ACTIONS(2059), - [aux_sym_subroutine_call_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token2] = ACTIONS(2059), - [aux_sym_keyword_statement_token3] = ACTIONS(2059), - [aux_sym_keyword_statement_token4] = ACTIONS(2059), - [aux_sym_keyword_statement_token6] = ACTIONS(2059), - [aux_sym_keyword_statement_token7] = ACTIONS(2059), - [aux_sym_include_statement_token1] = ACTIONS(2059), - [aux_sym_data_statement_token1] = ACTIONS(2059), - [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2059), - [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2059), - [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token3] = ACTIONS(2059), - [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_end_program_statement_token2] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_contains_statement_token1] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [1752] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [aux_sym_preproc_else_token1] = ACTIONS(4559), - [aux_sym_preproc_elif_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [1659] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token2] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [aux_sym_preproc_else_token1] = ACTIONS(5560), + [aux_sym_preproc_elif_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_end_program_statement_token2] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_contains_statement_token1] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), }, - [1753] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token2] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [aux_sym_preproc_else_token1] = ACTIONS(5750), - [aux_sym_preproc_elif_token1] = ACTIONS(5750), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_contains_statement_token1] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [1660] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token2] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [aux_sym_preproc_else_token1] = ACTIONS(5566), + [aux_sym_preproc_elif_token1] = ACTIONS(5566), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(5568), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_end_program_statement_token2] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_contains_statement_token1] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), }, - [1754] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token2] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [aux_sym_preproc_else_token1] = ACTIONS(5578), - [aux_sym_preproc_elif_token1] = ACTIONS(5578), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(5790), + [1661] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(5572), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_end_program_statement_token2] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [1662] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token2] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [aux_sym_preproc_else_token1] = ACTIONS(4353), + [aux_sym_preproc_elif_token1] = ACTIONS(4353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(5576), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_end_program_statement_token2] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_contains_statement_token1] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), + }, + [1663] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [aux_sym_preproc_else_token1] = ACTIONS(4571), + [aux_sym_preproc_elif_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(5580), [anon_sym_PLUS] = ACTIONS(5582), [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token2] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_contains_statement_token1] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4571), [anon_sym_LPAREN_SLASH] = ACTIONS(5582), [anon_sym_LBRACK] = ACTIONS(5582), [aux_sym_boolean_literal_token1] = ACTIONS(5582), [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5582), [sym__float_literal] = ACTIONS(5582), @@ -318991,514 +309536,624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5582), [sym__string_literal_kind] = ACTIONS(5582), }, - [1755] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token3] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym_derived_type_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_end_select_statement_token1] = ACTIONS(5738), - [aux_sym_type_statement_token2] = ACTIONS(5738), - [aux_sym_type_statement_token3] = ACTIONS(5738), - [aux_sym__class_default_token1] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [1664] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(5584), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_end_program_statement_token2] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [1665] = { + [sym_assignment] = STATE(6111), + [sym_operator] = STATE(6111), + [sym_defined_io_procedure] = STATE(6111), + [sym__generic_procedure] = STATE(6111), + [sym_identifier] = STATE(6111), + [sym__end_of_statement] = STATE(1624), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5596), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5598), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5598), }, - [1756] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [aux_sym_preproc_else_token1] = ACTIONS(4327), - [aux_sym_preproc_elif_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1666] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token2] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [aux_sym_preproc_else_token1] = ACTIONS(5600), + [aux_sym_preproc_elif_token1] = ACTIONS(5600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_end_program_statement_token2] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_contains_statement_token1] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [1757] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [aux_sym_preproc_else_token1] = ACTIONS(4295), - [aux_sym_preproc_elif_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [1667] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token2] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [aux_sym_preproc_else_token1] = ACTIONS(4353), + [aux_sym_preproc_elif_token1] = ACTIONS(4353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(5604), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_contains_statement_token1] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [1758] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [1668] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token2] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [aux_sym_preproc_else_token1] = ACTIONS(4357), + [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(5606), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_end_select_statement_token1] = ACTIONS(4579), - [aux_sym_type_statement_token2] = ACTIONS(4579), - [aux_sym_type_statement_token3] = ACTIONS(4579), - [aux_sym__class_default_token1] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_contains_statement_token1] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [1759] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [aux_sym_preproc_else_token1] = ACTIONS(4445), - [aux_sym_preproc_elif_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), + [1669] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(5608), [anon_sym_PLUS] = ACTIONS(5586), [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4361), [anon_sym_LPAREN_SLASH] = ACTIONS(5586), [anon_sym_LBRACK] = ACTIONS(5586), [aux_sym_boolean_literal_token1] = ACTIONS(5586), [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5586), [sym__float_literal] = ACTIONS(5586), @@ -319506,205 +310161,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5586), [sym__string_literal_kind] = ACTIONS(5586), }, - [1760] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_end_select_statement_token1] = ACTIONS(4567), - [aux_sym_type_statement_token2] = ACTIONS(4567), - [aux_sym_type_statement_token3] = ACTIONS(4567), - [aux_sym__class_default_token1] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [1670] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5610), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [1761] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [aux_sym_preproc_else_token1] = ACTIONS(4485), - [aux_sym_preproc_elif_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), + [1671] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(5612), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [1672] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [aux_sym_preproc_else_token1] = ACTIONS(4571), + [aux_sym_preproc_elif_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_contains_statement_token1] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), + }, + [1673] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(5616), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -319712,110 +310577,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [1762] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token2] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [aux_sym_preproc_else_token1] = ACTIONS(5548), - [aux_sym_preproc_elif_token1] = ACTIONS(5548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5792), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), + [1674] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(5618), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [1763] = { + [1675] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), @@ -319832,6 +310698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5622), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token2] = ACTIONS(5620), [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), [aux_sym_procedure_attributes_token3] = ACTIONS(5620), @@ -319918,720 +310785,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [1764] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [aux_sym_preproc_else_token1] = ACTIONS(4817), - [aux_sym_preproc_elif_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [1765] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token2] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [aux_sym_preproc_else_token1] = ACTIONS(5542), - [aux_sym_preproc_elif_token1] = ACTIONS(5542), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(5794), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [1766] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token2] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [aux_sym_preproc_else_token1] = ACTIONS(5640), - [aux_sym_preproc_elif_token1] = ACTIONS(5640), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_contains_statement_token1] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), - }, - [1767] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token3] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym_derived_type_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_end_select_statement_token1] = ACTIONS(4327), - [aux_sym_type_statement_token2] = ACTIONS(4327), - [aux_sym_type_statement_token3] = ACTIONS(4327), - [aux_sym__class_default_token1] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1768] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token2] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [aux_sym_preproc_else_token1] = ACTIONS(5770), - [aux_sym_preproc_elif_token1] = ACTIONS(5770), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_contains_statement_token1] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [1769] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token3] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym_derived_type_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_end_select_statement_token1] = ACTIONS(4295), - [aux_sym_type_statement_token2] = ACTIONS(4295), - [aux_sym_type_statement_token3] = ACTIONS(4295), - [aux_sym__class_default_token1] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), - }, - [1770] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [aux_sym_preproc_else_token1] = ACTIONS(4445), - [aux_sym_preproc_elif_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(5796), + [1676] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), [anon_sym_PLUS] = ACTIONS(5586), [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_end_program_statement_token2] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4361), [anon_sym_LPAREN_SLASH] = ACTIONS(5586), [anon_sym_LBRACK] = ACTIONS(5586), [aux_sym_boolean_literal_token1] = ACTIONS(5586), [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5586), [sym__float_literal] = ACTIONS(5586), @@ -320639,823 +310889,935 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5586), [sym__string_literal_kind] = ACTIONS(5586), }, - [1771] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token3] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym_derived_type_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_end_select_statement_token1] = ACTIONS(4445), - [aux_sym_type_statement_token2] = ACTIONS(4445), - [aux_sym_type_statement_token3] = ACTIONS(4445), - [aux_sym__class_default_token1] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [1677] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_end_program_statement_token2] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [1772] = { - [anon_sym_COMMA] = ACTIONS(5798), - [anon_sym_RPAREN] = ACTIONS(5800), - [anon_sym_LPAREN2] = ACTIONS(5800), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5806), - [aux_sym_module_statement_token1] = ACTIONS(5806), - [anon_sym_COLON] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5806), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5806), - [aux_sym_subroutine_statement_token1] = ACTIONS(5806), - [aux_sym_function_statement_token1] = ACTIONS(5806), - [aux_sym_procedure_attributes_token1] = ACTIONS(5806), - [aux_sym_procedure_attributes_token3] = ACTIONS(5806), - [aux_sym_use_statement_token2] = ACTIONS(5806), - [anon_sym_COLON_COLON] = ACTIONS(5798), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token3] = ACTIONS(5806), - [aux_sym_implicit_statement_token4] = ACTIONS(5806), - [aux_sym_save_statement_token1] = ACTIONS(5806), - [aux_sym_private_statement_token1] = ACTIONS(5806), - [aux_sym_public_statement_token1] = ACTIONS(5806), - [aux_sym_derived_type_definition_token1] = ACTIONS(5806), - [aux_sym_procedure_attribute_token6] = ACTIONS(5806), - [aux_sym_variable_attributes_token2] = ACTIONS(5806), - [aux_sym_variable_attributes_token3] = ACTIONS(5806), - [aux_sym_variable_attributes_token5] = ACTIONS(5806), - [aux_sym__intrinsic_type_token1] = ACTIONS(5806), - [aux_sym__intrinsic_type_token2] = ACTIONS(5806), - [aux_sym__intrinsic_type_token3] = ACTIONS(5806), - [aux_sym__intrinsic_type_token4] = ACTIONS(5806), - [aux_sym__intrinsic_type_token6] = ACTIONS(5806), - [aux_sym__intrinsic_type_token7] = ACTIONS(5806), - [aux_sym__intrinsic_type_token8] = ACTIONS(5806), - [aux_sym__intrinsic_type_token9] = ACTIONS(5806), - [aux_sym__intrinsic_type_token10] = ACTIONS(5806), - [aux_sym_derived_type_token1] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5806), - [aux_sym_type_qualifier_token1] = ACTIONS(5806), - [aux_sym_type_qualifier_token2] = ACTIONS(5806), - [aux_sym_procedure_qualifier_token1] = ACTIONS(5806), - [aux_sym_procedure_qualifier_token2] = ACTIONS(5806), - [aux_sym_procedure_qualifier_token3] = ACTIONS(5806), - [aux_sym_procedure_qualifier_token4] = ACTIONS(5806), - [aux_sym_stop_statement_token1] = ACTIONS(5806), - [aux_sym_stop_statement_token2] = ACTIONS(5806), - [aux_sym_keyword_statement_token2] = ACTIONS(5806), - [aux_sym_keyword_statement_token3] = ACTIONS(5806), - [aux_sym_data_statement_token1] = ACTIONS(5806), - [aux_sym__inline_if_statement_token1] = ACTIONS(5806), - [aux_sym_end_if_statement_token1] = ACTIONS(5806), - [aux_sym_elseif_clause_token2] = ACTIONS(5806), - [aux_sym_select_case_statement_token1] = ACTIONS(5806), - [aux_sym_block_construct_token1] = ACTIONS(5806), - [aux_sym_format_statement_token1] = ACTIONS(5806), - [aux_sym_inquire_statement_token1] = ACTIONS(5806), - [aux_sym_entry_statement_token1] = ACTIONS(5806), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5806), - [aux_sym_coarray_statement_token1] = ACTIONS(5806), - [aux_sym_coarray_statement_token2] = ACTIONS(5806), - [aux_sym_coarray_statement_token6] = ACTIONS(5806), - [aux_sym_coarray_statement_token8] = ACTIONS(5806), - [aux_sym_coarray_statement_token11] = ACTIONS(5806), - [aux_sym_coarray_statement_token12] = ACTIONS(5806), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5806), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5806), - [aux_sym_identifier_token1] = ACTIONS(5806), + [1678] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_end_program_statement_token2] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [1679] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token2] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [aux_sym_preproc_else_token1] = ACTIONS(5624), + [aux_sym_preproc_elif_token1] = ACTIONS(5624), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_end_program_statement_token2] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_contains_statement_token1] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [1680] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [aux_sym_preproc_else_token1] = ACTIONS(4571), + [aux_sym_preproc_elif_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token2] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_contains_statement_token1] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [1773] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), + [1681] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token3] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym_derived_type_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_end_program_statement_token2] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_end_select_statement_token1] = ACTIONS(4485), - [aux_sym_type_statement_token2] = ACTIONS(4485), - [aux_sym_type_statement_token3] = ACTIONS(4485), - [aux_sym__class_default_token1] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [1774] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token3] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym_derived_type_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_end_select_statement_token1] = ACTIONS(4817), - [aux_sym_type_statement_token2] = ACTIONS(4817), - [aux_sym_type_statement_token3] = ACTIONS(4817), - [aux_sym__class_default_token1] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [1775] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token3] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym_derived_type_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_end_select_statement_token1] = ACTIONS(4827), - [aux_sym_type_statement_token2] = ACTIONS(4827), - [aux_sym_type_statement_token3] = ACTIONS(4827), - [aux_sym__class_default_token1] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1776] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [aux_sym_preproc_else_token1] = ACTIONS(4579), - [aux_sym_preproc_elif_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), - }, - [1777] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token3] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym_derived_type_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_end_select_statement_token1] = ACTIONS(4996), - [aux_sym_type_statement_token2] = ACTIONS(4996), - [aux_sym_type_statement_token3] = ACTIONS(4996), - [aux_sym__class_default_token1] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), - }, - [1778] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token3] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym_derived_type_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [1682] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_end_program_statement_token2] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [1683] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token2] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [aux_sym_preproc_else_token1] = ACTIONS(4978), + [aux_sym_preproc_elif_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_end_program_statement_token2] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_contains_statement_token1] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [1684] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token2] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [aux_sym_preproc_else_token1] = ACTIONS(5032), + [aux_sym_preproc_elif_token1] = ACTIONS(5032), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_end_program_statement_token2] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_contains_statement_token1] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [1685] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token2] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [aux_sym_preproc_else_token1] = ACTIONS(5632), + [aux_sym_preproc_elif_token1] = ACTIONS(5632), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_end_program_statement_token2] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_contains_statement_token1] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_end_select_statement_token1] = ACTIONS(5002), - [aux_sym_type_statement_token2] = ACTIONS(5002), - [aux_sym_type_statement_token3] = ACTIONS(5002), - [aux_sym__class_default_token1] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5632), [anon_sym_LPAREN_SLASH] = ACTIONS(5634), [anon_sym_LBRACK] = ACTIONS(5634), [aux_sym_boolean_literal_token1] = ACTIONS(5634), [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5634), [sym__float_literal] = ACTIONS(5634), @@ -321463,1243 +311825,2607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5634), [sym__string_literal_kind] = ACTIONS(5634), }, - [1779] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [aux_sym_preproc_else_token1] = ACTIONS(4575), - [aux_sym_preproc_elif_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [1686] = { + [sym_assignment] = STATE(5934), + [sym_operator] = STATE(5934), + [sym_defined_io_procedure] = STATE(5934), + [sym__generic_procedure] = STATE(5934), + [sym_identifier] = STATE(5934), + [sym__end_of_statement] = STATE(1386), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5636), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5638), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [1780] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [aux_sym_preproc_else_token1] = ACTIONS(4827), - [aux_sym_preproc_elif_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [sym__external_end_of_statement] = ACTIONS(5638), }, - [1781] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [1687] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token2] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [aux_sym_preproc_else_token1] = ACTIONS(5640), + [aux_sym_preproc_elif_token1] = ACTIONS(5640), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_end_select_statement_token1] = ACTIONS(4587), - [aux_sym_type_statement_token2] = ACTIONS(4587), - [aux_sym_type_statement_token3] = ACTIONS(4587), - [aux_sym__class_default_token1] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token2] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_contains_statement_token1] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [1782] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token2] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [aux_sym_preproc_else_token1] = ACTIONS(5636), - [aux_sym_preproc_elif_token1] = ACTIONS(5636), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_contains_statement_token1] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [1688] = { + [sym_assignment] = STATE(5951), + [sym_operator] = STATE(5951), + [sym_defined_io_procedure] = STATE(5951), + [sym__generic_procedure] = STATE(5951), + [sym_identifier] = STATE(5951), + [sym__end_of_statement] = STATE(1387), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5644), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5646), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5646), }, - [1783] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [aux_sym_preproc_else_token1] = ACTIONS(4567), - [aux_sym_preproc_elif_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [1689] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token2] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [aux_sym_preproc_else_token1] = ACTIONS(5648), + [aux_sym_preproc_elif_token1] = ACTIONS(5648), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_end_program_statement_token2] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_contains_statement_token1] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [1784] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token2] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_contains_statement_token1] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [1690] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token2] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [aux_sym_preproc_else_token1] = ACTIONS(5550), + [aux_sym_preproc_elif_token1] = ACTIONS(5550), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(5652), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_contains_statement_token1] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), }, - [1785] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [aux_sym_preproc_else_token1] = ACTIONS(5554), - [aux_sym_preproc_elif_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(5808), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), + [1691] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token2] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [aux_sym_preproc_else_token1] = ACTIONS(5528), + [aux_sym_preproc_elif_token1] = ACTIONS(5528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(5654), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_contains_statement_token1] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [1692] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token2] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [aux_sym_preproc_else_token1] = ACTIONS(5566), + [aux_sym_preproc_elif_token1] = ACTIONS(5566), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(5656), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_contains_statement_token1] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [1693] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token2] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [aux_sym_preproc_else_token1] = ACTIONS(5512), + [aux_sym_preproc_elif_token1] = ACTIONS(5512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_contains_statement_token1] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [1694] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token2] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [aux_sym_preproc_else_token1] = ACTIONS(5522), + [aux_sym_preproc_elif_token1] = ACTIONS(5522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_contains_statement_token1] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [1695] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token2] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [aux_sym_preproc_else_token1] = ACTIONS(5538), + [aux_sym_preproc_elif_token1] = ACTIONS(5538), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(5662), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_contains_statement_token1] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [1696] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token2] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [aux_sym_preproc_else_token1] = ACTIONS(5544), + [aux_sym_preproc_elif_token1] = ACTIONS(5544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(5664), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_contains_statement_token1] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [1697] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token2] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [aux_sym_preproc_else_token1] = ACTIONS(5560), + [aux_sym_preproc_elif_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_contains_statement_token1] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [1698] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token2] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [aux_sym_preproc_else_token1] = ACTIONS(5668), + [aux_sym_preproc_elif_token1] = ACTIONS(5668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_end_program_statement_token2] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_contains_statement_token1] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [1699] = { + [aux_sym_preproc_include_token1] = ACTIONS(4345), + [aux_sym_preproc_def_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token2] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4345), + [sym_preproc_directive] = ACTIONS(4345), + [anon_sym_LPAREN2] = ACTIONS(4345), + [sym_preproc_comment] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4345), + [aux_sym_procedure_attributes_token3] = ACTIONS(4345), + [aux_sym_contains_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token2] = ACTIONS(4345), + [aux_sym_implicit_statement_token4] = ACTIONS(4345), + [aux_sym_save_statement_token1] = ACTIONS(4345), + [aux_sym_private_statement_token1] = ACTIONS(4345), + [aux_sym_public_statement_token1] = ACTIONS(4345), + [aux_sym_derived_type_definition_token1] = ACTIONS(4345), + [aux_sym_procedure_attribute_token6] = ACTIONS(4345), + [aux_sym_variable_attributes_token2] = ACTIONS(4345), + [aux_sym_variable_attributes_token3] = ACTIONS(4345), + [aux_sym_variable_attributes_token5] = ACTIONS(4345), + [aux_sym__intrinsic_type_token1] = ACTIONS(4345), + [aux_sym__intrinsic_type_token3] = ACTIONS(4345), + [aux_sym__intrinsic_type_token4] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4345), + [aux_sym_type_qualifier_token1] = ACTIONS(4345), + [aux_sym_type_qualifier_token2] = ACTIONS(4345), + [anon_sym_SEMI] = ACTIONS(4347), + [aux_sym_stop_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token2] = ACTIONS(4345), + [aux_sym_subroutine_call_token1] = ACTIONS(4345), + [aux_sym_keyword_statement_token1] = ACTIONS(4345), + [aux_sym_keyword_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token3] = ACTIONS(4345), + [aux_sym_keyword_statement_token4] = ACTIONS(4345), + [aux_sym_keyword_statement_token6] = ACTIONS(4345), + [aux_sym_keyword_statement_token7] = ACTIONS(4345), + [aux_sym_include_statement_token1] = ACTIONS(4345), + [aux_sym_data_statement_token1] = ACTIONS(4345), + [aux_sym_do_loop_statement_token1] = ACTIONS(4345), + [aux_sym__inline_if_statement_token1] = ACTIONS(4345), + [aux_sym_end_if_statement_token1] = ACTIONS(4345), + [aux_sym_elseif_clause_token2] = ACTIONS(4345), + [aux_sym__inline_where_statement_token1] = ACTIONS(4345), + [aux_sym__forall_control_expression_token1] = ACTIONS(4345), + [aux_sym_select_case_statement_token1] = ACTIONS(4345), + [aux_sym_select_case_statement_token3] = ACTIONS(4345), + [aux_sym_select_type_statement_token1] = ACTIONS(4345), + [aux_sym_select_rank_statement_token2] = ACTIONS(4345), + [aux_sym_block_construct_token1] = ACTIONS(4345), + [aux_sym_associate_statement_token1] = ACTIONS(4345), + [aux_sym_format_statement_token1] = ACTIONS(4345), + [aux_sym_print_statement_token1] = ACTIONS(4345), + [aux_sym_open_statement_token1] = ACTIONS(4345), + [aux_sym_close_statement_token1] = ACTIONS(4345), + [aux_sym_inquire_statement_token1] = ACTIONS(4345), + [aux_sym_file_position_statement_token1] = ACTIONS(4345), + [aux_sym_file_position_statement_token2] = ACTIONS(4345), + [aux_sym_file_position_statement_token3] = ACTIONS(4345), + [aux_sym_file_position_statement_token4] = ACTIONS(4345), + [aux_sym_allocate_statement_token1] = ACTIONS(4345), + [aux_sym_entry_statement_token1] = ACTIONS(4345), + [aux_sym_logical_expression_token5] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LPAREN_SLASH] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_boolean_literal_token1] = ACTIONS(4347), + [aux_sym_boolean_literal_token2] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token2] = ACTIONS(4345), + [aux_sym_coarray_statement_token6] = ACTIONS(4345), + [aux_sym_coarray_statement_token8] = ACTIONS(4345), + [aux_sym_coarray_statement_token11] = ACTIONS(4345), + [aux_sym_coarray_statement_token12] = ACTIONS(4345), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4345), + [aux_sym_identifier_token1] = ACTIONS(4345), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4347), + [sym__float_literal] = ACTIONS(4347), + [sym__boz_literal] = ACTIONS(4347), + [sym__string_literal] = ACTIONS(4347), + [sym__string_literal_kind] = ACTIONS(4347), + }, + [1700] = { + [aux_sym_preproc_include_token1] = ACTIONS(4349), + [aux_sym_preproc_def_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token2] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4349), + [aux_sym_preproc_else_token1] = ACTIONS(4349), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4349), + [sym_preproc_directive] = ACTIONS(4349), + [anon_sym_LPAREN2] = ACTIONS(4349), + [sym_preproc_comment] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4349), + [aux_sym_procedure_attributes_token3] = ACTIONS(4349), + [aux_sym_contains_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token2] = ACTIONS(4349), + [aux_sym_implicit_statement_token4] = ACTIONS(4349), + [aux_sym_save_statement_token1] = ACTIONS(4349), + [aux_sym_private_statement_token1] = ACTIONS(4349), + [aux_sym_public_statement_token1] = ACTIONS(4349), + [aux_sym_derived_type_definition_token1] = ACTIONS(4349), + [aux_sym_procedure_attribute_token6] = ACTIONS(4349), + [aux_sym_variable_attributes_token2] = ACTIONS(4349), + [aux_sym_variable_attributes_token3] = ACTIONS(4349), + [aux_sym_variable_attributes_token5] = ACTIONS(4349), + [aux_sym__intrinsic_type_token1] = ACTIONS(4349), + [aux_sym__intrinsic_type_token3] = ACTIONS(4349), + [aux_sym__intrinsic_type_token4] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4349), + [aux_sym_type_qualifier_token1] = ACTIONS(4349), + [aux_sym_type_qualifier_token2] = ACTIONS(4349), + [anon_sym_SEMI] = ACTIONS(4351), + [aux_sym_stop_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token2] = ACTIONS(4349), + [aux_sym_subroutine_call_token1] = ACTIONS(4349), + [aux_sym_keyword_statement_token1] = ACTIONS(4349), + [aux_sym_keyword_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token3] = ACTIONS(4349), + [aux_sym_keyword_statement_token4] = ACTIONS(4349), + [aux_sym_keyword_statement_token6] = ACTIONS(4349), + [aux_sym_keyword_statement_token7] = ACTIONS(4349), + [aux_sym_include_statement_token1] = ACTIONS(4349), + [aux_sym_data_statement_token1] = ACTIONS(4349), + [aux_sym_do_loop_statement_token1] = ACTIONS(4349), + [aux_sym__inline_if_statement_token1] = ACTIONS(4349), + [aux_sym_end_if_statement_token1] = ACTIONS(4349), + [aux_sym_elseif_clause_token2] = ACTIONS(4349), + [aux_sym__inline_where_statement_token1] = ACTIONS(4349), + [aux_sym__forall_control_expression_token1] = ACTIONS(4349), + [aux_sym_select_case_statement_token1] = ACTIONS(4349), + [aux_sym_select_case_statement_token3] = ACTIONS(4349), + [aux_sym_select_type_statement_token1] = ACTIONS(4349), + [aux_sym_select_rank_statement_token2] = ACTIONS(4349), + [aux_sym_block_construct_token1] = ACTIONS(4349), + [aux_sym_associate_statement_token1] = ACTIONS(4349), + [aux_sym_format_statement_token1] = ACTIONS(4349), + [aux_sym_print_statement_token1] = ACTIONS(4349), + [aux_sym_open_statement_token1] = ACTIONS(4349), + [aux_sym_close_statement_token1] = ACTIONS(4349), + [aux_sym_inquire_statement_token1] = ACTIONS(4349), + [aux_sym_file_position_statement_token1] = ACTIONS(4349), + [aux_sym_file_position_statement_token2] = ACTIONS(4349), + [aux_sym_file_position_statement_token3] = ACTIONS(4349), + [aux_sym_file_position_statement_token4] = ACTIONS(4349), + [aux_sym_allocate_statement_token1] = ACTIONS(4349), + [aux_sym_entry_statement_token1] = ACTIONS(4349), + [aux_sym_logical_expression_token5] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_LPAREN_SLASH] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [aux_sym_boolean_literal_token1] = ACTIONS(4351), + [aux_sym_boolean_literal_token2] = ACTIONS(4351), + [aux_sym_null_literal_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token2] = ACTIONS(4349), + [aux_sym_coarray_statement_token6] = ACTIONS(4349), + [aux_sym_coarray_statement_token8] = ACTIONS(4349), + [aux_sym_coarray_statement_token11] = ACTIONS(4349), + [aux_sym_coarray_statement_token12] = ACTIONS(4349), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4349), + [aux_sym_identifier_token1] = ACTIONS(4349), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), + [sym__integer_literal] = ACTIONS(4351), + [sym__float_literal] = ACTIONS(4351), + [sym__boz_literal] = ACTIONS(4351), + [sym__string_literal] = ACTIONS(4351), + [sym__string_literal_kind] = ACTIONS(4351), }, - [1786] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [aux_sym_preproc_else_token1] = ACTIONS(4583), - [aux_sym_preproc_elif_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [1701] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token2] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [aux_sym_preproc_else_token1] = ACTIONS(4255), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), + [anon_sym_LPAREN2] = ACTIONS(4255), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_subroutine_call_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_keyword_statement_token4] = ACTIONS(4255), + [aux_sym_keyword_statement_token6] = ACTIONS(4255), + [aux_sym_keyword_statement_token7] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym_do_loop_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym__inline_where_statement_token1] = ACTIONS(4255), + [aux_sym__forall_control_expression_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token3] = ACTIONS(4255), + [aux_sym_select_type_statement_token1] = ACTIONS(4255), + [aux_sym_select_rank_statement_token2] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_associate_statement_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_print_statement_token1] = ACTIONS(4255), + [aux_sym_open_statement_token1] = ACTIONS(4255), + [aux_sym_close_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token2] = ACTIONS(4255), + [aux_sym_file_position_statement_token3] = ACTIONS(4255), + [aux_sym_file_position_statement_token4] = ACTIONS(4255), + [aux_sym_allocate_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_logical_expression_token5] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LPAREN_SLASH] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_boolean_literal_token1] = ACTIONS(4257), + [aux_sym_boolean_literal_token2] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4257), + [sym__float_literal] = ACTIONS(4257), + [sym__boz_literal] = ACTIONS(4257), + [sym__string_literal] = ACTIONS(4257), + [sym__string_literal_kind] = ACTIONS(4257), }, - [1787] = { - [sym__intrinsic_type] = STATE(5872), - [sym_intrinsic_type] = STATE(8177), - [sym_derived_type] = STATE(8177), - [sym__expression] = STATE(4319), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym__type_spec] = STATE(2714), - [sym__ac_value_list] = STATE(7541), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [1702] = { + [aux_sym_preproc_include_token1] = ACTIONS(4315), + [aux_sym_preproc_def_token1] = ACTIONS(4315), + [aux_sym_preproc_if_token1] = ACTIONS(4315), + [aux_sym_preproc_if_token2] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), + [aux_sym_preproc_else_token1] = ACTIONS(4315), + [aux_sym_preproc_elif_token1] = ACTIONS(4315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4315), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4315), + [sym_preproc_directive] = ACTIONS(4315), + [anon_sym_LPAREN2] = ACTIONS(4315), + [sym_preproc_comment] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(5782), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(5784), - [aux_sym__intrinsic_type_token2] = ACTIONS(77), - [aux_sym__intrinsic_type_token3] = ACTIONS(5784), - [aux_sym__intrinsic_type_token4] = ACTIONS(79), - [aux_sym__intrinsic_type_token6] = ACTIONS(77), - [aux_sym__intrinsic_type_token7] = ACTIONS(77), - [aux_sym__intrinsic_type_token8] = ACTIONS(81), - [aux_sym__intrinsic_type_token9] = ACTIONS(77), - [aux_sym__intrinsic_type_token10] = ACTIONS(77), - [aux_sym_derived_type_token1] = ACTIONS(83), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), + [aux_sym_procedure_attributes_token3] = ACTIONS(4315), + [aux_sym_contains_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token2] = ACTIONS(4315), + [aux_sym_implicit_statement_token4] = ACTIONS(4315), + [aux_sym_save_statement_token1] = ACTIONS(4315), + [aux_sym_private_statement_token1] = ACTIONS(4315), + [aux_sym_public_statement_token1] = ACTIONS(4315), + [aux_sym_derived_type_definition_token1] = ACTIONS(4315), + [aux_sym_procedure_attribute_token6] = ACTIONS(4315), + [aux_sym_variable_attributes_token2] = ACTIONS(4315), + [aux_sym_variable_attributes_token3] = ACTIONS(4315), + [aux_sym_variable_attributes_token5] = ACTIONS(4315), + [aux_sym__intrinsic_type_token1] = ACTIONS(4315), + [aux_sym__intrinsic_type_token3] = ACTIONS(4315), + [aux_sym__intrinsic_type_token4] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), + [aux_sym_type_qualifier_token1] = ACTIONS(4315), + [aux_sym_type_qualifier_token2] = ACTIONS(4315), + [anon_sym_SEMI] = ACTIONS(4317), + [aux_sym_stop_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token2] = ACTIONS(4315), + [aux_sym_subroutine_call_token1] = ACTIONS(4315), + [aux_sym_keyword_statement_token1] = ACTIONS(4315), + [aux_sym_keyword_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token3] = ACTIONS(4315), + [aux_sym_keyword_statement_token4] = ACTIONS(4315), + [aux_sym_keyword_statement_token6] = ACTIONS(4315), + [aux_sym_keyword_statement_token7] = ACTIONS(4315), + [aux_sym_include_statement_token1] = ACTIONS(4315), + [aux_sym_data_statement_token1] = ACTIONS(4315), + [aux_sym_do_loop_statement_token1] = ACTIONS(4315), + [aux_sym__inline_if_statement_token1] = ACTIONS(4315), + [aux_sym_end_if_statement_token1] = ACTIONS(4315), + [aux_sym_elseif_clause_token2] = ACTIONS(4315), + [aux_sym__inline_where_statement_token1] = ACTIONS(4315), + [aux_sym__forall_control_expression_token1] = ACTIONS(4315), + [aux_sym_select_case_statement_token1] = ACTIONS(4315), + [aux_sym_select_case_statement_token3] = ACTIONS(4315), + [aux_sym_select_type_statement_token1] = ACTIONS(4315), + [aux_sym_select_rank_statement_token2] = ACTIONS(4315), + [aux_sym_block_construct_token1] = ACTIONS(4315), + [aux_sym_associate_statement_token1] = ACTIONS(4315), + [aux_sym_format_statement_token1] = ACTIONS(4315), + [aux_sym_print_statement_token1] = ACTIONS(4315), + [aux_sym_open_statement_token1] = ACTIONS(4315), + [aux_sym_close_statement_token1] = ACTIONS(4315), + [aux_sym_inquire_statement_token1] = ACTIONS(4315), + [aux_sym_file_position_statement_token1] = ACTIONS(4315), + [aux_sym_file_position_statement_token2] = ACTIONS(4315), + [aux_sym_file_position_statement_token3] = ACTIONS(4315), + [aux_sym_file_position_statement_token4] = ACTIONS(4315), + [aux_sym_allocate_statement_token1] = ACTIONS(4315), + [aux_sym_entry_statement_token1] = ACTIONS(4315), + [aux_sym_logical_expression_token5] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4315), + [anon_sym_LPAREN_SLASH] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [aux_sym_boolean_literal_token1] = ACTIONS(4317), + [aux_sym_boolean_literal_token2] = ACTIONS(4317), + [aux_sym_null_literal_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token2] = ACTIONS(4315), + [aux_sym_coarray_statement_token6] = ACTIONS(4315), + [aux_sym_coarray_statement_token8] = ACTIONS(4315), + [aux_sym_coarray_statement_token11] = ACTIONS(4315), + [aux_sym_coarray_statement_token12] = ACTIONS(4315), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), + [aux_sym_identifier_token1] = ACTIONS(4315), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4317), + [sym__float_literal] = ACTIONS(4317), + [sym__boz_literal] = ACTIONS(4317), + [sym__string_literal] = ACTIONS(4317), + [sym__string_literal_kind] = ACTIONS(4317), }, - [1788] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [aux_sym_preproc_else_token1] = ACTIONS(4587), - [aux_sym_preproc_elif_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [1703] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token2] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [aux_sym_preproc_else_token1] = ACTIONS(5672), + [aux_sym_preproc_elif_token1] = ACTIONS(5672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_end_program_statement_token2] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_contains_statement_token1] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [1704] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token2] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [aux_sym_preproc_else_token1] = ACTIONS(4255), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), + [anon_sym_LPAREN2] = ACTIONS(4255), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_subroutine_call_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token1] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_keyword_statement_token4] = ACTIONS(4255), + [aux_sym_keyword_statement_token6] = ACTIONS(4255), + [aux_sym_keyword_statement_token7] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym_do_loop_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym__inline_where_statement_token1] = ACTIONS(4255), + [aux_sym__forall_control_expression_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_select_case_statement_token3] = ACTIONS(4255), + [aux_sym_select_type_statement_token1] = ACTIONS(4255), + [aux_sym_select_rank_statement_token2] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_associate_statement_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_print_statement_token1] = ACTIONS(4255), + [aux_sym_open_statement_token1] = ACTIONS(4255), + [aux_sym_close_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token1] = ACTIONS(4255), + [aux_sym_file_position_statement_token2] = ACTIONS(4255), + [aux_sym_file_position_statement_token3] = ACTIONS(4255), + [aux_sym_file_position_statement_token4] = ACTIONS(4255), + [aux_sym_allocate_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_logical_expression_token5] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LPAREN_SLASH] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_boolean_literal_token1] = ACTIONS(4257), + [aux_sym_boolean_literal_token2] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4257), + [sym__float_literal] = ACTIONS(4257), + [sym__boz_literal] = ACTIONS(4257), + [sym__string_literal] = ACTIONS(4257), + [sym__string_literal_kind] = ACTIONS(4257), + }, + [1705] = { + [sym_assignment] = STATE(6023), + [sym_operator] = STATE(6023), + [sym_defined_io_procedure] = STATE(6023), + [sym__generic_procedure] = STATE(6023), + [sym_identifier] = STATE(6023), + [sym__end_of_statement] = STATE(1610), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5676), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5678), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5678), + }, + [1706] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token2] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [aux_sym_preproc_else_token1] = ACTIONS(5680), + [aux_sym_preproc_elif_token1] = ACTIONS(5680), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_end_program_statement_token2] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_contains_statement_token1] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [1707] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(5684), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token3] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym_derived_type_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_end_select_statement_token1] = ACTIONS(4357), + [aux_sym_type_statement_token2] = ACTIONS(4357), + [aux_sym_type_statement_token3] = ACTIONS(4357), + [aux_sym__class_default_token1] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), + }, + [1708] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(5686), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token3] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym_derived_type_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_end_select_statement_token1] = ACTIONS(4361), + [aux_sym_type_statement_token2] = ACTIONS(4361), + [aux_sym_type_statement_token3] = ACTIONS(4361), + [aux_sym__class_default_token1] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [1789] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token2] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [aux_sym_preproc_else_token1] = ACTIONS(4269), - [aux_sym_preproc_elif_token1] = ACTIONS(4269), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(5810), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [1709] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5688), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token3] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym_derived_type_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_end_select_statement_token1] = ACTIONS(4273), + [aux_sym_type_statement_token2] = ACTIONS(4273), + [aux_sym_type_statement_token3] = ACTIONS(4273), + [aux_sym__class_default_token1] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [1790] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token2] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [aux_sym_preproc_else_token1] = ACTIONS(5568), - [aux_sym_preproc_elif_token1] = ACTIONS(5568), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5812), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), + [1710] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(5690), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token3] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym_derived_type_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_end_select_statement_token1] = ACTIONS(4537), + [aux_sym_type_statement_token2] = ACTIONS(4537), + [aux_sym_type_statement_token3] = ACTIONS(4537), + [aux_sym__class_default_token1] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [1791] = { + [1711] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -322707,8 +314433,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [sym_preproc_comment] = ACTIONS(5692), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), @@ -322740,7 +314467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -322779,12 +314506,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -322796,108 +314523,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [1792] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [aux_sym_preproc_else_token1] = ACTIONS(4485), - [aux_sym_preproc_elif_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(5814), + [1712] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(5694), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token3] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym_derived_type_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_end_select_statement_token1] = ACTIONS(4935), + [aux_sym_type_statement_token2] = ACTIONS(4935), + [aux_sym_type_statement_token3] = ACTIONS(4935), + [aux_sym__class_default_token1] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -322905,4416 +314633,4159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [1793] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token2] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [aux_sym_preproc_else_token1] = ACTIONS(4996), - [aux_sym_preproc_elif_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_contains_statement_token1] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [1713] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(5696), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token3] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym_derived_type_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_end_select_statement_token1] = ACTIONS(4945), + [aux_sym_type_statement_token2] = ACTIONS(4945), + [aux_sym_type_statement_token3] = ACTIONS(4945), + [aux_sym__class_default_token1] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [1794] = { - [sym__intrinsic_type] = STATE(5872), - [sym_intrinsic_type] = STATE(8177), - [sym_derived_type] = STATE(8177), - [sym__expression] = STATE(4319), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym__type_spec] = STATE(2714), - [sym__ac_value_list] = STATE(8024), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [1714] = { + [aux_sym_preproc_include_token1] = ACTIONS(2059), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [aux_sym_preproc_else_token1] = ACTIONS(2059), + [aux_sym_preproc_elif_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(5782), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(5784), - [aux_sym__intrinsic_type_token2] = ACTIONS(77), - [aux_sym__intrinsic_type_token3] = ACTIONS(5784), - [aux_sym__intrinsic_type_token4] = ACTIONS(79), - [aux_sym__intrinsic_type_token6] = ACTIONS(77), - [aux_sym__intrinsic_type_token7] = ACTIONS(77), - [aux_sym__intrinsic_type_token8] = ACTIONS(81), - [aux_sym__intrinsic_type_token9] = ACTIONS(77), - [aux_sym__intrinsic_type_token10] = ACTIONS(77), - [aux_sym_derived_type_token1] = ACTIONS(83), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_end_program_statement_token2] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), + [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_contains_statement_token1] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2059), + [aux_sym_save_statement_token1] = ACTIONS(2059), + [aux_sym_private_statement_token1] = ACTIONS(2059), + [aux_sym_public_statement_token1] = ACTIONS(2059), + [aux_sym_derived_type_definition_token1] = ACTIONS(2059), + [aux_sym_procedure_attribute_token6] = ACTIONS(2059), + [aux_sym_variable_attributes_token2] = ACTIONS(2059), + [aux_sym_variable_attributes_token3] = ACTIONS(2059), + [aux_sym_variable_attributes_token5] = ACTIONS(2059), + [aux_sym__intrinsic_type_token1] = ACTIONS(2059), + [aux_sym__intrinsic_type_token3] = ACTIONS(2059), + [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), + [aux_sym_type_qualifier_token1] = ACTIONS(2059), + [aux_sym_type_qualifier_token2] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(5698), + [aux_sym_stop_statement_token1] = ACTIONS(2059), + [aux_sym_stop_statement_token2] = ACTIONS(2059), + [aux_sym_subroutine_call_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token2] = ACTIONS(2059), + [aux_sym_keyword_statement_token3] = ACTIONS(2059), + [aux_sym_keyword_statement_token4] = ACTIONS(2059), + [aux_sym_keyword_statement_token6] = ACTIONS(2059), + [aux_sym_keyword_statement_token7] = ACTIONS(2059), + [aux_sym_include_statement_token1] = ACTIONS(2059), + [aux_sym_data_statement_token1] = ACTIONS(2059), + [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2059), + [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2059), + [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token3] = ACTIONS(2059), + [aux_sym_select_type_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [1795] = { - [sym__intrinsic_type] = STATE(5872), - [sym_intrinsic_type] = STATE(8177), - [sym_derived_type] = STATE(8177), - [sym__expression] = STATE(4319), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym__type_spec] = STATE(2714), - [sym__ac_value_list] = STATE(8025), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token3] = ACTIONS(5782), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(5784), - [aux_sym__intrinsic_type_token2] = ACTIONS(77), - [aux_sym__intrinsic_type_token3] = ACTIONS(5784), - [aux_sym__intrinsic_type_token4] = ACTIONS(79), - [aux_sym__intrinsic_type_token6] = ACTIONS(77), - [aux_sym__intrinsic_type_token7] = ACTIONS(77), - [aux_sym__intrinsic_type_token8] = ACTIONS(81), - [aux_sym__intrinsic_type_token9] = ACTIONS(77), - [aux_sym__intrinsic_type_token10] = ACTIONS(77), - [aux_sym_derived_type_token1] = ACTIONS(83), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [1715] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(5700), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token3] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym_derived_type_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_end_select_statement_token1] = ACTIONS(5550), + [aux_sym_type_statement_token2] = ACTIONS(5550), + [aux_sym_type_statement_token3] = ACTIONS(5550), + [aux_sym__class_default_token1] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), }, - [1796] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token2] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [aux_sym_preproc_else_token1] = ACTIONS(5002), - [aux_sym_preproc_elif_token1] = ACTIONS(5002), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [1716] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(5702), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token3] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym_derived_type_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_end_select_statement_token1] = ACTIONS(5528), + [aux_sym_type_statement_token2] = ACTIONS(5528), + [aux_sym_type_statement_token3] = ACTIONS(5528), + [aux_sym__class_default_token1] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [1717] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(5704), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token3] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym_derived_type_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_end_select_statement_token1] = ACTIONS(5566), + [aux_sym_type_statement_token2] = ACTIONS(5566), + [aux_sym_type_statement_token3] = ACTIONS(5566), + [aux_sym__class_default_token1] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [1718] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(5706), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token3] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym_derived_type_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_end_select_statement_token1] = ACTIONS(5512), + [aux_sym_type_statement_token2] = ACTIONS(5512), + [aux_sym_type_statement_token3] = ACTIONS(5512), + [aux_sym__class_default_token1] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [1719] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(5708), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token3] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym_derived_type_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_end_select_statement_token1] = ACTIONS(5522), + [aux_sym_type_statement_token2] = ACTIONS(5522), + [aux_sym_type_statement_token3] = ACTIONS(5522), + [aux_sym__class_default_token1] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [1720] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token3] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym_derived_type_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_end_select_statement_token1] = ACTIONS(5538), + [aux_sym_type_statement_token2] = ACTIONS(5538), + [aux_sym_type_statement_token3] = ACTIONS(5538), + [aux_sym__class_default_token1] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [1721] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(5712), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token3] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym_derived_type_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_end_select_statement_token1] = ACTIONS(5544), + [aux_sym_type_statement_token2] = ACTIONS(5544), + [aux_sym_type_statement_token3] = ACTIONS(5544), + [aux_sym__class_default_token1] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [1722] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(5714), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token3] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym_derived_type_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_end_select_statement_token1] = ACTIONS(5560), + [aux_sym_type_statement_token2] = ACTIONS(5560), + [aux_sym_type_statement_token3] = ACTIONS(5560), + [aux_sym__class_default_token1] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [1723] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [aux_sym_preproc_else_token1] = ACTIONS(4391), + [aux_sym_preproc_elif_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_contains_statement_token1] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token2] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), - }, - [1797] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token2] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [aux_sym_preproc_else_token1] = ACTIONS(5738), - [aux_sym_preproc_elif_token1] = ACTIONS(5738), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_contains_statement_token1] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [1798] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [aux_sym_preproc_else_token1] = ACTIONS(4327), - [aux_sym_preproc_elif_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(5816), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1724] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [aux_sym_preproc_else_token1] = ACTIONS(4395), + [aux_sym_preproc_elif_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_program_statement_token2] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [1799] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [aux_sym_preproc_else_token1] = ACTIONS(4571), - [aux_sym_preproc_elif_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [1725] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [aux_sym_preproc_else_token1] = ACTIONS(4399), + [aux_sym_preproc_elif_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token2] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [1800] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [aux_sym_preproc_else_token1] = ACTIONS(4817), - [aux_sym_preproc_elif_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(5818), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [1801] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token2] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [aux_sym_preproc_else_token1] = ACTIONS(5590), - [aux_sym_preproc_elif_token1] = ACTIONS(5590), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_contains_statement_token1] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), - }, - [1802] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [aux_sym_preproc_else_token1] = ACTIONS(4295), - [aux_sym_preproc_elif_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(5820), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1803] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [1726] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_end_select_statement_token1] = ACTIONS(4575), - [aux_sym_type_statement_token2] = ACTIONS(4575), - [aux_sym_type_statement_token3] = ACTIONS(4575), - [aux_sym__class_default_token1] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_program_statement_token2] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [1804] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token3] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym_derived_type_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_end_select_statement_token1] = ACTIONS(5770), - [aux_sym_type_statement_token2] = ACTIONS(5770), - [aux_sym_type_statement_token3] = ACTIONS(5770), - [aux_sym__class_default_token1] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [1805] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token3] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym_derived_type_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_end_select_statement_token1] = ACTIONS(5710), - [aux_sym_type_statement_token2] = ACTIONS(5710), - [aux_sym_type_statement_token3] = ACTIONS(5710), - [aux_sym__class_default_token1] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [1806] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_end_select_statement_token1] = ACTIONS(4559), - [aux_sym_type_statement_token2] = ACTIONS(4559), - [aux_sym_type_statement_token3] = ACTIONS(4559), - [aux_sym__class_default_token1] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), - }, - [1807] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token3] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym_derived_type_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_end_select_statement_token1] = ACTIONS(5750), - [aux_sym_type_statement_token2] = ACTIONS(5750), - [aux_sym_type_statement_token3] = ACTIONS(5750), - [aux_sym__class_default_token1] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [1808] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [aux_sym_preproc_else_token1] = ACTIONS(4827), - [aux_sym_preproc_elif_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(5822), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1809] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token3] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym_derived_type_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_end_select_statement_token1] = ACTIONS(5636), - [aux_sym_type_statement_token2] = ACTIONS(5636), - [aux_sym_type_statement_token3] = ACTIONS(5636), - [aux_sym__class_default_token1] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1810] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [1727] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [aux_sym_preproc_else_token1] = ACTIONS(4407), + [aux_sym_preproc_elif_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_end_select_statement_token1] = ACTIONS(4583), - [aux_sym_type_statement_token2] = ACTIONS(4583), - [aux_sym_type_statement_token3] = ACTIONS(4583), - [aux_sym__class_default_token1] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_program_statement_token2] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), - }, - [1811] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token3] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym_derived_type_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_end_select_statement_token1] = ACTIONS(5660), - [aux_sym_type_statement_token2] = ACTIONS(5660), - [aux_sym_type_statement_token3] = ACTIONS(5660), - [aux_sym__class_default_token1] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), - }, - [1812] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token2] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [aux_sym_preproc_else_token1] = ACTIONS(5710), - [aux_sym_preproc_elif_token1] = ACTIONS(5710), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_contains_statement_token1] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [1813] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token3] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym_derived_type_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_end_select_statement_token1] = ACTIONS(5590), - [aux_sym_type_statement_token2] = ACTIONS(5590), - [aux_sym_type_statement_token3] = ACTIONS(5590), - [aux_sym__class_default_token1] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [1814] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), + [1728] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token3] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym_derived_type_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_end_select_statement_token1] = ACTIONS(5620), - [aux_sym_type_statement_token2] = ACTIONS(5620), - [aux_sym_type_statement_token3] = ACTIONS(5620), - [aux_sym__class_default_token1] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_program_statement_token2] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), - }, - [1815] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token2] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [aux_sym_preproc_else_token1] = ACTIONS(5520), - [aux_sym_preproc_elif_token1] = ACTIONS(5520), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5824), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [1816] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [aux_sym_preproc_else_token1] = ACTIONS(4827), - [aux_sym_preproc_elif_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1817] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [aux_sym_preproc_else_token1] = ACTIONS(4587), - [aux_sym_preproc_elif_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [1729] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [aux_sym_preproc_else_token1] = ACTIONS(4415), + [aux_sym_preproc_elif_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_end_program_statement_token2] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1818] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token2] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [aux_sym_preproc_else_token1] = ACTIONS(5590), - [aux_sym_preproc_elif_token1] = ACTIONS(5590), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [1730] = { + [sym_assignment] = STATE(6060), + [sym_operator] = STATE(6060), + [sym_defined_io_procedure] = STATE(6060), + [sym__generic_procedure] = STATE(6060), + [sym_identifier] = STATE(6060), + [sym__end_of_statement] = STATE(1126), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5716), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5718), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5718), }, - [1819] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [aux_sym_preproc_else_token1] = ACTIONS(4559), - [aux_sym_preproc_elif_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [1731] = { + [sym_assignment] = STATE(6061), + [sym_operator] = STATE(6061), + [sym_defined_io_procedure] = STATE(6061), + [sym__generic_procedure] = STATE(6061), + [sym_identifier] = STATE(6061), + [sym__end_of_statement] = STATE(1125), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5720), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5722), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5722), + }, + [1732] = { + [sym_assignment] = STATE(6112), + [sym_operator] = STATE(6112), + [sym_defined_io_procedure] = STATE(6112), + [sym__generic_procedure] = STATE(6112), + [sym_identifier] = STATE(6112), + [sym__end_of_statement] = STATE(1625), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5724), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5726), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5726), }, - [1820] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token2] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [aux_sym_preproc_else_token1] = ACTIONS(5738), - [aux_sym_preproc_elif_token1] = ACTIONS(5738), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [1733] = { + [sym_assignment] = STATE(6072), + [sym_operator] = STATE(6072), + [sym_defined_io_procedure] = STATE(6072), + [sym__generic_procedure] = STATE(6072), + [sym_identifier] = STATE(6072), + [sym__end_of_statement] = STATE(1441), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5728), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5730), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5730), }, - [1821] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token2] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [aux_sym_preproc_else_token1] = ACTIONS(5620), - [aux_sym_preproc_elif_token1] = ACTIONS(5620), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), + [1734] = { + [sym_assignment] = STATE(6077), + [sym_operator] = STATE(6077), + [sym_defined_io_procedure] = STATE(6077), + [sym__generic_procedure] = STATE(6077), + [sym_identifier] = STATE(6077), + [sym__end_of_statement] = STATE(1458), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5732), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5734), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), + [sym__external_end_of_statement] = ACTIONS(5734), }, - [1822] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [aux_sym_preproc_else_token1] = ACTIONS(4579), - [aux_sym_preproc_elif_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [1735] = { + [sym_assignment] = STATE(5915), + [sym_operator] = STATE(5915), + [sym_defined_io_procedure] = STATE(5915), + [sym__generic_procedure] = STATE(5915), + [sym_identifier] = STATE(5915), + [sym__end_of_statement] = STATE(1595), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5736), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5738), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__external_end_of_statement] = ACTIONS(5738), }, - [1823] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [aux_sym_preproc_else_token1] = ACTIONS(4817), - [aux_sym_preproc_elif_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [1736] = { + [sym_assignment] = STATE(5916), + [sym_operator] = STATE(5916), + [sym_defined_io_procedure] = STATE(5916), + [sym__generic_procedure] = STATE(5916), + [sym_identifier] = STATE(5916), + [sym__end_of_statement] = STATE(1597), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5740), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5742), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5742), }, - [1824] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [aux_sym_preproc_else_token1] = ACTIONS(4295), - [aux_sym_preproc_elif_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [1737] = { + [sym_assignment] = STATE(5953), + [sym_operator] = STATE(5953), + [sym_defined_io_procedure] = STATE(5953), + [sym__generic_procedure] = STATE(5953), + [sym_identifier] = STATE(5953), + [sym__end_of_statement] = STATE(1263), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5744), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5746), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5746), }, - [1825] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token2] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [aux_sym_preproc_else_token1] = ACTIONS(5636), - [aux_sym_preproc_elif_token1] = ACTIONS(5636), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [1738] = { + [sym_assignment] = STATE(5954), + [sym_operator] = STATE(5954), + [sym_defined_io_procedure] = STATE(5954), + [sym__generic_procedure] = STATE(5954), + [sym_identifier] = STATE(5954), + [sym__end_of_statement] = STATE(1264), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5748), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5750), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5750), }, - [1826] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [aux_sym_preproc_else_token1] = ACTIONS(4567), - [aux_sym_preproc_elif_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [1739] = { + [sym_assignment] = STATE(5968), + [sym_operator] = STATE(5968), + [sym_defined_io_procedure] = STATE(5968), + [sym__generic_procedure] = STATE(5968), + [sym_identifier] = STATE(5968), + [sym__end_of_statement] = STATE(1175), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5752), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5754), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5754), }, - [1827] = { - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), - [aux_sym_preproc_else_token1] = ACTIONS(2059), - [aux_sym_preproc_elif_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), - [aux_sym_procedure_attributes_token3] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2059), - [aux_sym_save_statement_token1] = ACTIONS(2059), - [aux_sym_private_statement_token1] = ACTIONS(2059), - [aux_sym_public_statement_token1] = ACTIONS(2059), - [aux_sym_derived_type_definition_token1] = ACTIONS(2059), - [aux_sym_procedure_attribute_token6] = ACTIONS(2059), - [aux_sym_variable_attributes_token2] = ACTIONS(2059), - [aux_sym_variable_attributes_token3] = ACTIONS(2059), - [aux_sym_variable_attributes_token5] = ACTIONS(2059), - [aux_sym__intrinsic_type_token1] = ACTIONS(2059), - [aux_sym__intrinsic_type_token3] = ACTIONS(2059), - [aux_sym__intrinsic_type_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), - [aux_sym_type_qualifier_token1] = ACTIONS(2059), - [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), - [aux_sym_stop_statement_token1] = ACTIONS(2059), - [aux_sym_stop_statement_token2] = ACTIONS(2059), - [aux_sym_subroutine_call_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token2] = ACTIONS(2059), - [aux_sym_keyword_statement_token3] = ACTIONS(2059), - [aux_sym_keyword_statement_token4] = ACTIONS(2059), - [aux_sym_keyword_statement_token6] = ACTIONS(2059), - [aux_sym_keyword_statement_token7] = ACTIONS(2059), - [aux_sym_include_statement_token1] = ACTIONS(2059), - [aux_sym_data_statement_token1] = ACTIONS(2059), - [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2059), - [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2059), - [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token3] = ACTIONS(2059), - [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), + [1740] = { + [sym_assignment] = STATE(5969), + [sym_operator] = STATE(5969), + [sym_defined_io_procedure] = STATE(5969), + [sym__generic_procedure] = STATE(5969), + [sym_identifier] = STATE(5969), + [sym__end_of_statement] = STATE(1176), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5756), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5758), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [sym__external_end_of_statement] = ACTIONS(5758), }, - [1828] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [aux_sym_preproc_else_token1] = ACTIONS(4571), - [aux_sym_preproc_elif_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [1741] = { + [sym_assignment] = STATE(5993), + [sym_operator] = STATE(5993), + [sym_defined_io_procedure] = STATE(5993), + [sym__generic_procedure] = STATE(5993), + [sym_identifier] = STATE(5993), + [sym__end_of_statement] = STATE(1572), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5760), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5762), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__external_end_of_statement] = ACTIONS(5762), }, - [1829] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token2] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [1742] = { + [sym_assignment] = STATE(5994), + [sym_operator] = STATE(5994), + [sym_defined_io_procedure] = STATE(5994), + [sym__generic_procedure] = STATE(5994), + [sym_identifier] = STATE(5994), + [sym__end_of_statement] = STATE(1574), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5764), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5766), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(5766), }, - [1830] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [aux_sym_preproc_else_token1] = ACTIONS(4583), - [aux_sym_preproc_elif_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [1743] = { + [sym_assignment] = STATE(6022), + [sym_operator] = STATE(6022), + [sym_defined_io_procedure] = STATE(6022), + [sym__generic_procedure] = STATE(6022), + [sym_identifier] = STATE(6022), + [sym__end_of_statement] = STATE(1349), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [aux_sym_assignment_token1] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5768), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(5770), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__external_end_of_statement] = ACTIONS(5770), }, - [1831] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [aux_sym_preproc_else_token1] = ACTIONS(4327), - [aux_sym_preproc_elif_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1744] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token3] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym_derived_type_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_end_select_statement_token1] = ACTIONS(4353), + [aux_sym_type_statement_token2] = ACTIONS(4353), + [aux_sym_type_statement_token3] = ACTIONS(4353), + [aux_sym__class_default_token1] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), + }, + [1745] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token3] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym_derived_type_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_end_select_statement_token1] = ACTIONS(4978), + [aux_sym_type_statement_token2] = ACTIONS(4978), + [aux_sym_type_statement_token3] = ACTIONS(4978), + [aux_sym__class_default_token1] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [1746] = { + [sym__intrinsic_type] = STATE(5877), + [sym_intrinsic_type] = STATE(7813), + [sym_derived_type] = STATE(7813), + [sym__expression] = STATE(4306), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym__type_spec] = STATE(2747), + [sym__ac_value_list] = STATE(7871), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(5776), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(5778), + [aux_sym__intrinsic_type_token2] = ACTIONS(77), + [aux_sym__intrinsic_type_token3] = ACTIONS(5778), + [aux_sym__intrinsic_type_token4] = ACTIONS(79), + [aux_sym__intrinsic_type_token6] = ACTIONS(77), + [aux_sym__intrinsic_type_token7] = ACTIONS(77), + [aux_sym__intrinsic_type_token8] = ACTIONS(81), + [aux_sym__intrinsic_type_token9] = ACTIONS(77), + [aux_sym__intrinsic_type_token10] = ACTIONS(77), + [aux_sym_derived_type_token1] = ACTIONS(83), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [1832] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [aux_sym_preproc_else_token1] = ACTIONS(4445), - [aux_sym_preproc_elif_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1747] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [1748] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token2] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [aux_sym_preproc_else_token1] = ACTIONS(5620), + [aux_sym_preproc_elif_token1] = ACTIONS(5620), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_contains_statement_token1] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), }, - [1833] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token2] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [aux_sym_preproc_else_token1] = ACTIONS(5770), - [aux_sym_preproc_elif_token1] = ACTIONS(5770), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [1749] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token2] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [aux_sym_preproc_else_token1] = ACTIONS(5624), + [aux_sym_preproc_elif_token1] = ACTIONS(5624), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_contains_statement_token1] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), }, - [1834] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [aux_sym_preproc_else_token1] = ACTIONS(4485), - [aux_sym_preproc_elif_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1750] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token2] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [aux_sym_preproc_else_token1] = ACTIONS(4978), + [aux_sym_preproc_elif_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_contains_statement_token1] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [1751] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token2] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [aux_sym_preproc_else_token1] = ACTIONS(5632), + [aux_sym_preproc_elif_token1] = ACTIONS(5632), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_contains_statement_token1] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [1835] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token2] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [aux_sym_preproc_else_token1] = ACTIONS(5710), - [aux_sym_preproc_elif_token1] = ACTIONS(5710), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [1752] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token2] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [aux_sym_preproc_else_token1] = ACTIONS(5032), + [aux_sym_preproc_elif_token1] = ACTIONS(5032), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_contains_statement_token1] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), }, - [1836] = { + [1753] = { [aux_sym_preproc_include_token1] = ACTIONS(5640), [aux_sym_preproc_def_token1] = ACTIONS(5640), [aux_sym_preproc_if_token1] = ACTIONS(5640), @@ -327334,6 +318805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_contains_statement_token1] = ACTIONS(5640), [aux_sym_use_statement_token2] = ACTIONS(5640), [aux_sym_implicit_statement_token4] = ACTIONS(5640), [aux_sym_save_statement_token1] = ACTIONS(5640), @@ -327416,2629 +318888,514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5642), [sym__string_literal_kind] = ACTIONS(5642), }, - [1837] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [aux_sym_preproc_else_token1] = ACTIONS(4575), - [aux_sym_preproc_elif_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [1838] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token2] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [aux_sym_preproc_else_token1] = ACTIONS(5002), - [aux_sym_preproc_elif_token1] = ACTIONS(5002), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), - }, - [1839] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token2] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [aux_sym_preproc_else_token1] = ACTIONS(4996), - [aux_sym_preproc_elif_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), - }, - [1840] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token2] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [aux_sym_preproc_else_token1] = ACTIONS(5750), - [aux_sym_preproc_elif_token1] = ACTIONS(5750), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [1841] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token2] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_end_program_statement_token2] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_contains_statement_token1] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [1842] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(5828), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym_end_where_statement_token1] = ACTIONS(5542), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [1843] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(5830), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym_end_where_statement_token1] = ACTIONS(4269), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), - }, - [1844] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(5832), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym_end_where_statement_token1] = ACTIONS(4315), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), - }, - [1845] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(5834), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym_end_where_statement_token1] = ACTIONS(4327), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1846] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(5836), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym_end_where_statement_token1] = ACTIONS(4295), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), - }, - [1847] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(5838), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym_end_where_statement_token1] = ACTIONS(4445), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [1848] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(5840), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym_end_where_statement_token1] = ACTIONS(4485), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [1849] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(5842), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym_end_where_statement_token1] = ACTIONS(4817), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [1850] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(5844), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym_end_where_statement_token1] = ACTIONS(4827), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1851] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token2] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_end_program_statement_token2] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_contains_statement_token1] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [1852] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token2] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(5848), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_end_program_statement_token2] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_contains_statement_token1] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [1853] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token2] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(5850), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_end_program_statement_token2] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_contains_statement_token1] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [1854] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token2] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5852), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_end_program_statement_token2] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_contains_statement_token1] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [1855] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token2] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5854), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_end_program_statement_token2] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_contains_statement_token1] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [1856] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(5856), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_end_program_statement_token2] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_contains_statement_token1] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [1857] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token2] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5858), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_end_program_statement_token2] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_contains_statement_token1] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [1858] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token2] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(5860), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_end_program_statement_token2] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_contains_statement_token1] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [1754] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token2] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [aux_sym_preproc_else_token1] = ACTIONS(5648), + [aux_sym_preproc_elif_token1] = ACTIONS(5648), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_contains_statement_token1] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [1859] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token2] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_end_program_statement_token2] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_contains_statement_token1] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [1755] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token2] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [aux_sym_preproc_else_token1] = ACTIONS(5668), + [aux_sym_preproc_elif_token1] = ACTIONS(5668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_contains_statement_token1] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), }, - [1860] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(5864), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_end_program_statement_token2] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [1756] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token2] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [aux_sym_preproc_else_token1] = ACTIONS(5672), + [aux_sym_preproc_elif_token1] = ACTIONS(5672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_contains_statement_token1] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), }, - [1861] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_end_program_statement_token2] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [1757] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token2] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [aux_sym_preproc_else_token1] = ACTIONS(5680), + [aux_sym_preproc_elif_token1] = ACTIONS(5680), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_contains_statement_token1] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), }, - [1862] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(5868), + [1758] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), [anon_sym_PLUS] = ACTIONS(5586), [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_end_program_statement_token2] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4361), [anon_sym_LPAREN_SLASH] = ACTIONS(5586), [anon_sym_LBRACK] = ACTIONS(5586), [aux_sym_boolean_literal_token1] = ACTIONS(5586), [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5586), [sym__float_literal] = ACTIONS(5586), @@ -330046,1517 +319403,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5586), [sym__string_literal_kind] = ACTIONS(5586), }, - [1863] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_end_program_statement_token2] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [1864] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_end_program_statement_token2] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [1865] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(5874), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_end_program_statement_token2] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1866] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5876), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym_end_where_statement_token1] = ACTIONS(5536), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [1867] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(5878), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym_end_where_statement_token1] = ACTIONS(5526), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [1868] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(5880), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym_end_where_statement_token1] = ACTIONS(5578), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [1869] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5882), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym_end_where_statement_token1] = ACTIONS(5548), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [1870] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5884), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym_end_where_statement_token1] = ACTIONS(5520), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [1871] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(5886), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym_end_where_statement_token1] = ACTIONS(5554), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [1872] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5888), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym_end_where_statement_token1] = ACTIONS(5568), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [1873] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5890), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_contains_statement_token1] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [1874] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym_end_where_statement_token1] = ACTIONS(4827), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1875] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5892), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_contains_statement_token1] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [1876] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym_end_where_statement_token1] = ACTIONS(4996), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), - }, - [1877] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym_end_where_statement_token1] = ACTIONS(5002), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [1759] = { + [anon_sym_COMMA] = ACTIONS(5784), + [anon_sym_RPAREN] = ACTIONS(5786), + [anon_sym_LPAREN2] = ACTIONS(5786), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(5789), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5792), + [aux_sym_module_statement_token1] = ACTIONS(5792), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5792), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5792), + [aux_sym_subroutine_statement_token1] = ACTIONS(5792), + [aux_sym_function_statement_token1] = ACTIONS(5792), + [aux_sym_procedure_attributes_token1] = ACTIONS(5792), + [aux_sym_procedure_attributes_token3] = ACTIONS(5792), + [aux_sym_use_statement_token2] = ACTIONS(5792), + [anon_sym_COLON_COLON] = ACTIONS(5784), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token3] = ACTIONS(5792), + [aux_sym_implicit_statement_token4] = ACTIONS(5792), + [aux_sym_save_statement_token1] = ACTIONS(5792), + [aux_sym_private_statement_token1] = ACTIONS(5792), + [aux_sym_public_statement_token1] = ACTIONS(5792), + [aux_sym_derived_type_definition_token1] = ACTIONS(5792), + [aux_sym_procedure_attribute_token6] = ACTIONS(5792), + [aux_sym_variable_attributes_token2] = ACTIONS(5792), + [aux_sym_variable_attributes_token3] = ACTIONS(5792), + [aux_sym_variable_attributes_token5] = ACTIONS(5792), + [aux_sym__intrinsic_type_token1] = ACTIONS(5792), + [aux_sym__intrinsic_type_token2] = ACTIONS(5792), + [aux_sym__intrinsic_type_token3] = ACTIONS(5792), + [aux_sym__intrinsic_type_token4] = ACTIONS(5792), + [aux_sym__intrinsic_type_token6] = ACTIONS(5792), + [aux_sym__intrinsic_type_token7] = ACTIONS(5792), + [aux_sym__intrinsic_type_token8] = ACTIONS(5792), + [aux_sym__intrinsic_type_token9] = ACTIONS(5792), + [aux_sym__intrinsic_type_token10] = ACTIONS(5792), + [aux_sym_derived_type_token1] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5792), + [aux_sym_type_qualifier_token1] = ACTIONS(5792), + [aux_sym_type_qualifier_token2] = ACTIONS(5792), + [aux_sym_procedure_qualifier_token1] = ACTIONS(5792), + [aux_sym_procedure_qualifier_token2] = ACTIONS(5792), + [aux_sym_procedure_qualifier_token3] = ACTIONS(5792), + [aux_sym_procedure_qualifier_token4] = ACTIONS(5792), + [aux_sym_stop_statement_token1] = ACTIONS(5792), + [aux_sym_stop_statement_token2] = ACTIONS(5792), + [aux_sym_keyword_statement_token2] = ACTIONS(5792), + [aux_sym_keyword_statement_token3] = ACTIONS(5792), + [aux_sym_data_statement_token1] = ACTIONS(5792), + [aux_sym__inline_if_statement_token1] = ACTIONS(5792), + [aux_sym_end_if_statement_token1] = ACTIONS(5792), + [aux_sym_elseif_clause_token2] = ACTIONS(5792), + [aux_sym_select_case_statement_token1] = ACTIONS(5792), + [aux_sym_block_construct_token1] = ACTIONS(5792), + [aux_sym_format_statement_token1] = ACTIONS(5792), + [aux_sym_inquire_statement_token1] = ACTIONS(5792), + [aux_sym_entry_statement_token1] = ACTIONS(5792), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5792), + [aux_sym_coarray_statement_token1] = ACTIONS(5792), + [aux_sym_coarray_statement_token2] = ACTIONS(5792), + [aux_sym_coarray_statement_token6] = ACTIONS(5792), + [aux_sym_coarray_statement_token8] = ACTIONS(5792), + [aux_sym_coarray_statement_token11] = ACTIONS(5792), + [aux_sym_coarray_statement_token12] = ACTIONS(5792), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5792), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5792), + [aux_sym_identifier_token1] = ACTIONS(5792), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), }, - [1878] = { + [1760] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), @@ -331564,14 +319514,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), [aux_sym_procedure_attributes_token3] = ACTIONS(2059), [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token3] = ACTIONS(2059), [aux_sym_implicit_statement_token4] = ACTIONS(2059), [aux_sym_save_statement_token1] = ACTIONS(2059), [aux_sym_private_statement_token1] = ACTIONS(2059), @@ -331584,6 +319535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__intrinsic_type_token1] = ACTIONS(2059), [aux_sym__intrinsic_type_token3] = ACTIONS(2059), [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym_derived_type_token1] = ACTIONS(2059), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), @@ -331595,7 +319547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -331610,16 +319562,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(2059), [aux_sym__inline_if_statement_token1] = ACTIONS(2059), [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token1] = ACTIONS(2059), [aux_sym_elseif_clause_token2] = ACTIONS(2059), [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym_end_where_statement_token1] = ACTIONS(2059), - [aux_sym_elsewhere_clause_token1] = ACTIONS(2059), [aux_sym__forall_control_expression_token1] = ACTIONS(2059), [aux_sym_select_case_statement_token1] = ACTIONS(2059), [aux_sym_select_case_statement_token3] = ACTIONS(2059), [aux_sym_select_type_statement_token1] = ACTIONS(2059), [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_end_select_statement_token1] = ACTIONS(2059), + [aux_sym_type_statement_token2] = ACTIONS(2059), + [aux_sym_type_statement_token3] = ACTIONS(2059), + [aux_sym__class_default_token1] = ACTIONS(2059), [aux_sym_block_construct_token1] = ACTIONS(2059), [aux_sym_associate_statement_token1] = ACTIONS(2059), [aux_sym_format_statement_token1] = ACTIONS(2059), @@ -331633,12 +319586,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(2059), [aux_sym_allocate_statement_token1] = ACTIONS(2059), [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), + [aux_sym_logical_expression_token5] = ACTIONS(5698), [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), [aux_sym_null_literal_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token2] = ACTIONS(2059), @@ -331650,426 +319603,1059 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [1879] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym_end_where_statement_token1] = ACTIONS(5738), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [1761] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token3] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym_derived_type_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_end_select_statement_token1] = ACTIONS(5600), + [aux_sym_type_statement_token2] = ACTIONS(5600), + [aux_sym_type_statement_token3] = ACTIONS(5600), + [aux_sym__class_default_token1] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [1880] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_contains_statement_token1] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), + [1762] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token3] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym_derived_type_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_end_select_statement_token1] = ACTIONS(4361), + [aux_sym_type_statement_token2] = ACTIONS(4361), + [aux_sym_type_statement_token3] = ACTIONS(4361), + [aux_sym__class_default_token1] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [1881] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(5896), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [1763] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token3] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym_derived_type_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_end_select_statement_token1] = ACTIONS(4273), + [aux_sym_type_statement_token2] = ACTIONS(4273), + [aux_sym_type_statement_token3] = ACTIONS(4273), + [aux_sym__class_default_token1] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [1764] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [1765] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token3] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym_derived_type_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_end_select_statement_token1] = ACTIONS(4537), + [aux_sym_type_statement_token2] = ACTIONS(4537), + [aux_sym_type_statement_token3] = ACTIONS(4537), + [aux_sym__class_default_token1] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [1766] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_end_program_statement_token2] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_contains_statement_token1] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token3] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym_derived_type_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_end_select_statement_token1] = ACTIONS(4571), + [aux_sym_type_statement_token2] = ACTIONS(4571), + [aux_sym_type_statement_token3] = ACTIONS(4571), + [aux_sym__class_default_token1] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [1882] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token2] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(5898), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_contains_statement_token1] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [1767] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token3] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym_derived_type_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_end_select_statement_token1] = ACTIONS(4935), + [aux_sym_type_statement_token2] = ACTIONS(4935), + [aux_sym_type_statement_token3] = ACTIONS(4935), + [aux_sym__class_default_token1] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [1883] = { + [1768] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [1769] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token3] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym_derived_type_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_end_select_statement_token1] = ACTIONS(4945), + [aux_sym_type_statement_token2] = ACTIONS(4945), + [aux_sym_type_statement_token3] = ACTIONS(4945), + [aux_sym__class_default_token1] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [1770] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token3] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym_derived_type_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_end_select_statement_token1] = ACTIONS(5032), + [aux_sym_type_statement_token2] = ACTIONS(5032), + [aux_sym_type_statement_token3] = ACTIONS(5032), + [aux_sym__class_default_token1] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [1771] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), [aux_sym_preproc_if_token2] = ACTIONS(2059), [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [aux_sym_preproc_else_token1] = ACTIONS(2059), + [aux_sym_preproc_elif_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_end_program_statement_token2] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), [aux_sym_procedure_attributes_token3] = ACTIONS(2059), @@ -332098,7 +320684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -332133,12 +320719,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(2059), [aux_sym_allocate_statement_token1] = ACTIONS(2059), [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), + [aux_sym_logical_expression_token5] = ACTIONS(5698), [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), [aux_sym_null_literal_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token2] = ACTIONS(2059), @@ -332150,1717 +320736,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), - }, - [1884] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token2] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_end_program_statement_token2] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_contains_statement_token1] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), - }, - [1885] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token2] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_end_program_statement_token2] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_contains_statement_token1] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [1886] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token2] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(5900), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_contains_statement_token1] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), - }, - [1887] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(5902), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1888] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token2] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_end_program_statement_token2] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_contains_statement_token1] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [1889] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_end_function_statement_token1] = ACTIONS(5536), - [aux_sym_contains_statement_token1] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [1890] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token2] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_end_program_statement_token2] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_contains_statement_token1] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [1891] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(5906), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_end_function_statement_token1] = ACTIONS(5526), - [aux_sym_contains_statement_token1] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [1892] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(5908), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), - }, - [1893] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(5910), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [1894] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token2] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_end_program_statement_token2] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_contains_statement_token1] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [1895] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(5912), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_end_function_statement_token1] = ACTIONS(5578), - [aux_sym_contains_statement_token1] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [1896] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token2] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_end_program_statement_token2] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_contains_statement_token1] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), - }, - [1897] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5914), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_end_function_statement_token1] = ACTIONS(5548), - [aux_sym_contains_statement_token1] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [1898] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(5916), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1772] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token2] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [aux_sym_preproc_else_token1] = ACTIONS(5600), + [aux_sym_preproc_elif_token1] = ACTIONS(5600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_contains_statement_token1] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [1899] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(5918), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [1900] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token2] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_end_program_statement_token2] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_contains_statement_token1] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), - }, - [1901] = { + [1773] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token2] = ACTIONS(5620), [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), [sym_preproc_directive] = ACTIONS(5620), @@ -333869,12 +320857,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5622), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_end_program_statement_token2] = ACTIONS(5620), [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_contains_statement_token1] = ACTIONS(5620), [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token3] = ACTIONS(5620), [aux_sym_implicit_statement_token4] = ACTIONS(5620), [aux_sym_save_statement_token1] = ACTIONS(5620), [aux_sym_private_statement_token1] = ACTIONS(5620), @@ -333887,6 +320874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__intrinsic_type_token1] = ACTIONS(5620), [aux_sym__intrinsic_type_token3] = ACTIONS(5620), [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym_derived_type_token1] = ACTIONS(5620), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), @@ -333920,6 +320908,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(5620), [aux_sym_select_type_statement_token1] = ACTIONS(5620), [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_end_select_statement_token1] = ACTIONS(5620), + [aux_sym_type_statement_token2] = ACTIONS(5620), + [aux_sym_type_statement_token3] = ACTIONS(5620), + [aux_sym__class_default_token1] = ACTIONS(5620), [aux_sym_block_construct_token1] = ACTIONS(5620), [aux_sym_associate_statement_token1] = ACTIONS(5620), [aux_sym_format_statement_token1] = ACTIONS(5620), @@ -333950,117 +320942,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), [aux_sym_identifier_token1] = ACTIONS(5620), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), + }, + [1774] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token3] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym_derived_type_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_end_select_statement_token1] = ACTIONS(5624), + [aux_sym_type_statement_token2] = ACTIONS(5624), + [aux_sym_type_statement_token3] = ACTIONS(5624), + [aux_sym__class_default_token1] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [1775] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [aux_sym_preproc_else_token1] = ACTIONS(4571), + [aux_sym_preproc_elif_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_contains_statement_token1] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [1902] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(5920), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [1776] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token3] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym_derived_type_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_end_select_statement_token1] = ACTIONS(5632), + [aux_sym_type_statement_token2] = ACTIONS(5632), + [aux_sym_type_statement_token3] = ACTIONS(5632), + [aux_sym__class_default_token1] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [1903] = { + [1777] = { [aux_sym_preproc_include_token1] = ACTIONS(5640), [aux_sym_preproc_def_token1] = ACTIONS(5640), [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token2] = ACTIONS(5640), [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), [sym_preproc_directive] = ACTIONS(5640), @@ -334069,12 +321269,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5642), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_end_program_statement_token2] = ACTIONS(5640), [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_contains_statement_token1] = ACTIONS(5640), [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token3] = ACTIONS(5640), [aux_sym_implicit_statement_token4] = ACTIONS(5640), [aux_sym_save_statement_token1] = ACTIONS(5640), [aux_sym_private_statement_token1] = ACTIONS(5640), @@ -334087,6 +321286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__intrinsic_type_token1] = ACTIONS(5640), [aux_sym__intrinsic_type_token3] = ACTIONS(5640), [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym_derived_type_token1] = ACTIONS(5640), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), @@ -334120,6 +321320,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token3] = ACTIONS(5640), [aux_sym_select_type_statement_token1] = ACTIONS(5640), [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_end_select_statement_token1] = ACTIONS(5640), + [aux_sym_type_statement_token2] = ACTIONS(5640), + [aux_sym_type_statement_token3] = ACTIONS(5640), + [aux_sym__class_default_token1] = ACTIONS(5640), [aux_sym_block_construct_token1] = ACTIONS(5640), [aux_sym_associate_statement_token1] = ACTIONS(5640), [aux_sym_format_statement_token1] = ACTIONS(5640), @@ -334150,1205 +321354,3610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), + }, + [1778] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token3] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym_derived_type_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_end_select_statement_token1] = ACTIONS(5648), + [aux_sym_type_statement_token2] = ACTIONS(5648), + [aux_sym_type_statement_token3] = ACTIONS(5648), + [aux_sym__class_default_token1] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [1779] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token3] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym_derived_type_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_end_select_statement_token1] = ACTIONS(5668), + [aux_sym_type_statement_token2] = ACTIONS(5668), + [aux_sym_type_statement_token3] = ACTIONS(5668), + [aux_sym__class_default_token1] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [1780] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token3] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym_derived_type_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_end_select_statement_token1] = ACTIONS(5672), + [aux_sym_type_statement_token2] = ACTIONS(5672), + [aux_sym_type_statement_token3] = ACTIONS(5672), + [aux_sym__class_default_token1] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [1781] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token3] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym_derived_type_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_end_select_statement_token1] = ACTIONS(5680), + [aux_sym_type_statement_token2] = ACTIONS(5680), + [aux_sym_type_statement_token3] = ACTIONS(5680), + [aux_sym__class_default_token1] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [1782] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token2] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [aux_sym_preproc_else_token1] = ACTIONS(4353), + [aux_sym_preproc_elif_token1] = ACTIONS(4353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(5794), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), + }, + [1783] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token2] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [aux_sym_preproc_else_token1] = ACTIONS(4357), + [aux_sym_preproc_elif_token1] = ACTIONS(4357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(5796), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), + }, + [1784] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(5798), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [1785] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5800), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [1786] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(5802), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [1787] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [aux_sym_preproc_else_token1] = ACTIONS(4571), + [aux_sym_preproc_elif_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(5804), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), + }, + [1788] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [1789] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(5808), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [1790] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token2] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [aux_sym_preproc_else_token1] = ACTIONS(5550), + [aux_sym_preproc_elif_token1] = ACTIONS(5550), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(5810), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [1791] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token2] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [aux_sym_preproc_else_token1] = ACTIONS(5528), + [aux_sym_preproc_elif_token1] = ACTIONS(5528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(5812), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [1792] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token2] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [aux_sym_preproc_else_token1] = ACTIONS(5566), + [aux_sym_preproc_elif_token1] = ACTIONS(5566), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(5814), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [1793] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token2] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [aux_sym_preproc_else_token1] = ACTIONS(5512), + [aux_sym_preproc_elif_token1] = ACTIONS(5512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(5816), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [1794] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token2] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [aux_sym_preproc_else_token1] = ACTIONS(5522), + [aux_sym_preproc_elif_token1] = ACTIONS(5522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(5818), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [1795] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token2] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [aux_sym_preproc_else_token1] = ACTIONS(5538), + [aux_sym_preproc_elif_token1] = ACTIONS(5538), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(5820), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [1796] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token2] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [aux_sym_preproc_else_token1] = ACTIONS(5544), + [aux_sym_preproc_elif_token1] = ACTIONS(5544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(5822), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [1797] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token2] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [aux_sym_preproc_else_token1] = ACTIONS(5560), + [aux_sym_preproc_elif_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(5824), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [1798] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [aux_sym_preproc_else_token1] = ACTIONS(4391), + [aux_sym_preproc_elif_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), + }, + [1799] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [aux_sym_preproc_else_token1] = ACTIONS(4395), + [aux_sym_preproc_elif_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), + }, + [1800] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [aux_sym_preproc_else_token1] = ACTIONS(4399), + [aux_sym_preproc_elif_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), + }, + [1801] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), + }, + [1802] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [aux_sym_preproc_else_token1] = ACTIONS(4407), + [aux_sym_preproc_elif_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), + }, + [1803] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), + }, + [1804] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [aux_sym_preproc_else_token1] = ACTIONS(4415), + [aux_sym_preproc_elif_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1904] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(5922), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1805] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_end_program_statement_token2] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_end_select_statement_token1] = ACTIONS(4391), + [aux_sym_type_statement_token2] = ACTIONS(4391), + [aux_sym_type_statement_token3] = ACTIONS(4391), + [aux_sym__class_default_token1] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1905] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5924), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_end_function_statement_token1] = ACTIONS(5520), - [aux_sym_contains_statement_token1] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [1906] = { - [sym__intrinsic_type] = STATE(5872), - [sym_intrinsic_type] = STATE(7900), - [sym_sized_allocation] = STATE(6028), - [sym_coarray_allocation] = STATE(6703), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4762), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4586), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [1806] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5926), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5928), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5928), - [aux_sym_procedure_attributes_token3] = ACTIONS(5928), - [aux_sym_use_statement_token2] = ACTIONS(5928), - [aux_sym_implicit_statement_token4] = ACTIONS(5928), - [aux_sym_save_statement_token1] = ACTIONS(5928), - [aux_sym_private_statement_token1] = ACTIONS(5928), - [aux_sym_public_statement_token1] = ACTIONS(5928), - [aux_sym_derived_type_definition_token1] = ACTIONS(5928), - [aux_sym_procedure_attribute_token6] = ACTIONS(5928), - [aux_sym_variable_attributes_token2] = ACTIONS(5928), - [aux_sym_variable_attributes_token3] = ACTIONS(5928), - [aux_sym_variable_attributes_token5] = ACTIONS(5928), - [aux_sym__intrinsic_type_token1] = ACTIONS(5930), - [aux_sym__intrinsic_type_token2] = ACTIONS(77), - [aux_sym__intrinsic_type_token3] = ACTIONS(5930), - [aux_sym__intrinsic_type_token4] = ACTIONS(5932), - [aux_sym__intrinsic_type_token6] = ACTIONS(77), - [aux_sym__intrinsic_type_token7] = ACTIONS(77), - [aux_sym__intrinsic_type_token8] = ACTIONS(81), - [aux_sym__intrinsic_type_token9] = ACTIONS(77), - [aux_sym__intrinsic_type_token10] = ACTIONS(77), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5934), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5928), - [aux_sym_type_qualifier_token1] = ACTIONS(5928), - [aux_sym_type_qualifier_token2] = ACTIONS(5928), - [aux_sym_stop_statement_token1] = ACTIONS(5928), - [aux_sym_stop_statement_token2] = ACTIONS(5928), - [aux_sym_keyword_statement_token2] = ACTIONS(5928), - [aux_sym_keyword_statement_token3] = ACTIONS(5928), - [aux_sym_data_statement_token1] = ACTIONS(5928), - [aux_sym__inline_if_statement_token1] = ACTIONS(5928), - [aux_sym_end_if_statement_token1] = ACTIONS(5928), - [aux_sym_elseif_clause_token2] = ACTIONS(5928), - [aux_sym_select_case_statement_token1] = ACTIONS(5936), - [aux_sym_block_construct_token1] = ACTIONS(5928), - [aux_sym_format_statement_token1] = ACTIONS(5928), - [aux_sym_inquire_statement_token1] = ACTIONS(5928), - [aux_sym_entry_statement_token1] = ACTIONS(5928), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(5938), - [aux_sym_coarray_statement_token1] = ACTIONS(5928), - [aux_sym_coarray_statement_token2] = ACTIONS(5928), - [aux_sym_coarray_statement_token6] = ACTIONS(5928), - [aux_sym_coarray_statement_token8] = ACTIONS(5928), - [aux_sym_coarray_statement_token11] = ACTIONS(5928), - [aux_sym_coarray_statement_token12] = ACTIONS(5928), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5928), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5928), - [aux_sym_identifier_token1] = ACTIONS(5928), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_end_select_statement_token1] = ACTIONS(4395), + [aux_sym_type_statement_token2] = ACTIONS(4395), + [aux_sym_type_statement_token3] = ACTIONS(4395), + [aux_sym__class_default_token1] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [1907] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(5940), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), + [1807] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_end_function_statement_token1] = ACTIONS(5554), - [aux_sym_contains_statement_token1] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_end_select_statement_token1] = ACTIONS(4399), + [aux_sym_type_statement_token2] = ACTIONS(4399), + [aux_sym_type_statement_token3] = ACTIONS(4399), + [aux_sym__class_default_token1] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1908] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1808] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_end_program_statement_token2] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_end_select_statement_token1] = ACTIONS(4403), + [aux_sym_type_statement_token2] = ACTIONS(4403), + [aux_sym_type_statement_token3] = ACTIONS(4403), + [aux_sym__class_default_token1] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1909] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5942), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_end_function_statement_token1] = ACTIONS(5568), - [aux_sym_contains_statement_token1] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [1910] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_end_program_statement_token2] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_contains_statement_token1] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [1911] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_end_program_statement_token2] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1912] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(5946), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_end_function_statement_token1] = ACTIONS(5542), - [aux_sym_contains_statement_token1] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), + [1809] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_end_select_statement_token1] = ACTIONS(4407), + [aux_sym_type_statement_token2] = ACTIONS(4407), + [aux_sym_type_statement_token3] = ACTIONS(4407), + [aux_sym__class_default_token1] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [1913] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1810] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_end_program_statement_token2] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_end_select_statement_token1] = ACTIONS(4411), + [aux_sym_type_statement_token2] = ACTIONS(4411), + [aux_sym_type_statement_token3] = ACTIONS(4411), + [aux_sym__class_default_token1] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1914] = { - [aux_sym_preproc_include_token1] = ACTIONS(5948), - [aux_sym_preproc_def_token1] = ACTIONS(5948), - [aux_sym_preproc_if_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5948), - [sym_preproc_directive] = ACTIONS(5948), - [anon_sym_LPAREN2] = ACTIONS(5948), - [sym_preproc_comment] = ACTIONS(5950), - [anon_sym_PLUS] = ACTIONS(5952), - [anon_sym_DASH] = ACTIONS(5952), + [1811] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5948), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5948), - [aux_sym_procedure_attributes_token3] = ACTIONS(5948), - [aux_sym_contains_statement_token1] = ACTIONS(5948), - [aux_sym_use_statement_token2] = ACTIONS(5948), - [aux_sym_implicit_statement_token4] = ACTIONS(5948), - [aux_sym_save_statement_token1] = ACTIONS(5948), - [aux_sym_private_statement_token1] = ACTIONS(5948), - [aux_sym_public_statement_token1] = ACTIONS(5948), - [aux_sym_derived_type_definition_token1] = ACTIONS(5948), - [aux_sym_procedure_attribute_token6] = ACTIONS(5948), - [aux_sym_variable_attributes_token2] = ACTIONS(5948), - [aux_sym_variable_attributes_token3] = ACTIONS(5948), - [aux_sym_variable_attributes_token5] = ACTIONS(5948), - [aux_sym__intrinsic_type_token1] = ACTIONS(5948), - [aux_sym__intrinsic_type_token3] = ACTIONS(5948), - [aux_sym__intrinsic_type_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5948), - [aux_sym_type_qualifier_token1] = ACTIONS(5948), - [aux_sym_type_qualifier_token2] = ACTIONS(5948), - [anon_sym_SEMI] = ACTIONS(5952), - [aux_sym_stop_statement_token1] = ACTIONS(5948), - [aux_sym_stop_statement_token2] = ACTIONS(5948), - [aux_sym_subroutine_call_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token2] = ACTIONS(5948), - [aux_sym_keyword_statement_token3] = ACTIONS(5948), - [aux_sym_keyword_statement_token4] = ACTIONS(5948), - [aux_sym_keyword_statement_token6] = ACTIONS(5948), - [aux_sym_keyword_statement_token7] = ACTIONS(5948), - [aux_sym_include_statement_token1] = ACTIONS(5948), - [aux_sym_data_statement_token1] = ACTIONS(5948), - [aux_sym_do_loop_statement_token1] = ACTIONS(5948), - [aux_sym__inline_if_statement_token1] = ACTIONS(5948), - [aux_sym_end_if_statement_token1] = ACTIONS(5948), - [aux_sym_elseif_clause_token2] = ACTIONS(5948), - [aux_sym__inline_where_statement_token1] = ACTIONS(5948), - [aux_sym__forall_control_expression_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token3] = ACTIONS(5948), - [aux_sym_select_type_statement_token1] = ACTIONS(5948), - [aux_sym_select_rank_statement_token2] = ACTIONS(5948), - [aux_sym_block_construct_token1] = ACTIONS(5948), - [aux_sym_associate_statement_token1] = ACTIONS(5948), - [aux_sym_format_statement_token1] = ACTIONS(5948), - [aux_sym_print_statement_token1] = ACTIONS(5948), - [aux_sym_open_statement_token1] = ACTIONS(5948), - [aux_sym_close_statement_token1] = ACTIONS(5948), - [aux_sym_inquire_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token2] = ACTIONS(5948), - [aux_sym_file_position_statement_token3] = ACTIONS(5948), - [aux_sym_file_position_statement_token4] = ACTIONS(5948), - [aux_sym_allocate_statement_token1] = ACTIONS(5948), - [aux_sym_entry_statement_token1] = ACTIONS(5948), - [aux_sym_logical_expression_token5] = ACTIONS(5952), - [anon_sym_DOT] = ACTIONS(5948), - [anon_sym_LPAREN_SLASH] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5952), - [aux_sym_boolean_literal_token1] = ACTIONS(5952), - [aux_sym_boolean_literal_token2] = ACTIONS(5952), - [aux_sym_null_literal_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token2] = ACTIONS(5948), - [aux_sym_coarray_statement_token6] = ACTIONS(5948), - [aux_sym_coarray_statement_token8] = ACTIONS(5948), - [aux_sym_coarray_statement_token11] = ACTIONS(5948), - [aux_sym_coarray_statement_token12] = ACTIONS(5948), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5948), - [aux_sym_identifier_token1] = ACTIONS(5948), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_end_select_statement_token1] = ACTIONS(4415), + [aux_sym_type_statement_token2] = ACTIONS(4415), + [aux_sym_type_statement_token3] = ACTIONS(4415), + [aux_sym__class_default_token1] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5952), - [sym__float_literal] = ACTIONS(5952), - [sym__boz_literal] = ACTIONS(5952), - [sym__string_literal] = ACTIONS(5952), - [sym__string_literal_kind] = ACTIONS(5952), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1915] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), + [1812] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_end_program_statement_token2] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -335356,899 +324965,512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [1916] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5954), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_contains_statement_token1] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [1917] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_end_program_statement_token2] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [1918] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1813] = { + [sym__intrinsic_type] = STATE(5877), + [sym_intrinsic_type] = STATE(7813), + [sym_derived_type] = STATE(7813), + [sym__expression] = STATE(4306), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym__type_spec] = STATE(2747), + [sym__ac_value_list] = STATE(7909), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym_end_where_statement_token1] = ACTIONS(4327), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(5776), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(5778), + [aux_sym__intrinsic_type_token2] = ACTIONS(77), + [aux_sym__intrinsic_type_token3] = ACTIONS(5778), + [aux_sym__intrinsic_type_token4] = ACTIONS(79), + [aux_sym__intrinsic_type_token6] = ACTIONS(77), + [aux_sym__intrinsic_type_token7] = ACTIONS(77), + [aux_sym__intrinsic_type_token8] = ACTIONS(81), + [aux_sym__intrinsic_type_token9] = ACTIONS(77), + [aux_sym__intrinsic_type_token10] = ACTIONS(77), + [aux_sym_derived_type_token1] = ACTIONS(83), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1919] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_end_program_statement_token2] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1920] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(5956), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_contains_statement_token1] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [1921] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token2] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_end_program_statement_token2] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_contains_statement_token1] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [1814] = { + [sym__intrinsic_type] = STATE(5877), + [sym_intrinsic_type] = STATE(7813), + [sym_derived_type] = STATE(7813), + [sym__expression] = STATE(4306), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym__type_spec] = STATE(2747), + [sym__ac_value_list] = STATE(7977), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(5776), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(5778), + [aux_sym__intrinsic_type_token2] = ACTIONS(77), + [aux_sym__intrinsic_type_token3] = ACTIONS(5778), + [aux_sym__intrinsic_type_token4] = ACTIONS(79), + [aux_sym__intrinsic_type_token6] = ACTIONS(77), + [aux_sym__intrinsic_type_token7] = ACTIONS(77), + [aux_sym__intrinsic_type_token8] = ACTIONS(81), + [aux_sym__intrinsic_type_token9] = ACTIONS(77), + [aux_sym__intrinsic_type_token10] = ACTIONS(77), + [aux_sym_derived_type_token1] = ACTIONS(83), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [1922] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token2] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [1815] = { + [sym__intrinsic_type] = STATE(5877), + [sym_intrinsic_type] = STATE(7813), + [sym_derived_type] = STATE(7813), + [sym__expression] = STATE(4306), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym__type_spec] = STATE(2747), + [sym__ac_value_list] = STATE(7887), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_end_program_statement_token2] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_contains_statement_token1] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token3] = ACTIONS(5776), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(5778), + [aux_sym__intrinsic_type_token2] = ACTIONS(77), + [aux_sym__intrinsic_type_token3] = ACTIONS(5778), + [aux_sym__intrinsic_type_token4] = ACTIONS(79), + [aux_sym__intrinsic_type_token6] = ACTIONS(77), + [aux_sym__intrinsic_type_token7] = ACTIONS(77), + [aux_sym__intrinsic_type_token8] = ACTIONS(81), + [aux_sym__intrinsic_type_token9] = ACTIONS(77), + [aux_sym__intrinsic_type_token10] = ACTIONS(77), + [aux_sym_derived_type_token1] = ACTIONS(83), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [1923] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym_end_where_statement_token1] = ACTIONS(4295), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [1816] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [aux_sym_preproc_else_token1] = ACTIONS(4537), + [aux_sym_preproc_elif_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [1924] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(5958), + [1817] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [aux_sym_preproc_else_token1] = ACTIONS(4571), + [aux_sym_preproc_elif_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), [anon_sym_PLUS] = ACTIONS(5582), [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_contains_statement_token1] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4571), [anon_sym_LPAREN_SLASH] = ACTIONS(5582), [anon_sym_LBRACK] = ACTIONS(5582), [aux_sym_boolean_literal_token1] = ACTIONS(5582), [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5582), [sym__float_literal] = ACTIONS(5582), @@ -336256,799 +325478,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5582), [sym__string_literal_kind] = ACTIONS(5582), }, - [1925] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym_end_where_statement_token1] = ACTIONS(4445), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [1926] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym_end_where_statement_token1] = ACTIONS(5770), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [1927] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5960), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_end_program_statement_token2] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_contains_statement_token1] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [1928] = { - [aux_sym_preproc_include_token1] = ACTIONS(5962), - [aux_sym_preproc_def_token1] = ACTIONS(5962), - [aux_sym_preproc_if_token1] = ACTIONS(5962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5962), - [sym_preproc_directive] = ACTIONS(5962), - [anon_sym_LPAREN2] = ACTIONS(5962), - [sym_preproc_comment] = ACTIONS(5964), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5962), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5962), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5962), - [aux_sym_procedure_attributes_token3] = ACTIONS(5962), - [aux_sym_end_function_statement_token1] = ACTIONS(5962), - [aux_sym_contains_statement_token1] = ACTIONS(5962), - [aux_sym_use_statement_token2] = ACTIONS(5962), - [aux_sym_implicit_statement_token4] = ACTIONS(5962), - [aux_sym_save_statement_token1] = ACTIONS(5962), - [aux_sym_private_statement_token1] = ACTIONS(5962), - [aux_sym_public_statement_token1] = ACTIONS(5962), - [aux_sym_derived_type_definition_token1] = ACTIONS(5962), - [aux_sym_procedure_attribute_token6] = ACTIONS(5962), - [aux_sym_variable_attributes_token2] = ACTIONS(5962), - [aux_sym_variable_attributes_token3] = ACTIONS(5962), - [aux_sym_variable_attributes_token5] = ACTIONS(5962), - [aux_sym__intrinsic_type_token1] = ACTIONS(5962), - [aux_sym__intrinsic_type_token3] = ACTIONS(5962), - [aux_sym__intrinsic_type_token4] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5962), - [aux_sym_type_qualifier_token1] = ACTIONS(5962), - [aux_sym_type_qualifier_token2] = ACTIONS(5962), - [anon_sym_SEMI] = ACTIONS(5966), - [aux_sym_stop_statement_token1] = ACTIONS(5962), - [aux_sym_stop_statement_token2] = ACTIONS(5962), - [aux_sym_subroutine_call_token1] = ACTIONS(5962), - [aux_sym_keyword_statement_token1] = ACTIONS(5962), - [aux_sym_keyword_statement_token2] = ACTIONS(5962), - [aux_sym_keyword_statement_token3] = ACTIONS(5962), - [aux_sym_keyword_statement_token4] = ACTIONS(5962), - [aux_sym_keyword_statement_token6] = ACTIONS(5962), - [aux_sym_keyword_statement_token7] = ACTIONS(5962), - [aux_sym_include_statement_token1] = ACTIONS(5962), - [aux_sym_data_statement_token1] = ACTIONS(5962), - [aux_sym_do_loop_statement_token1] = ACTIONS(5962), - [aux_sym__inline_if_statement_token1] = ACTIONS(5962), - [aux_sym_end_if_statement_token1] = ACTIONS(5962), - [aux_sym_elseif_clause_token2] = ACTIONS(5962), - [aux_sym__inline_where_statement_token1] = ACTIONS(5962), - [aux_sym__forall_control_expression_token1] = ACTIONS(5962), - [aux_sym_select_case_statement_token1] = ACTIONS(5962), - [aux_sym_select_case_statement_token3] = ACTIONS(5962), - [aux_sym_select_type_statement_token1] = ACTIONS(5962), - [aux_sym_select_rank_statement_token2] = ACTIONS(5962), - [aux_sym_block_construct_token1] = ACTIONS(5962), - [aux_sym_associate_statement_token1] = ACTIONS(5962), - [aux_sym_format_statement_token1] = ACTIONS(5962), - [aux_sym_print_statement_token1] = ACTIONS(5962), - [aux_sym_open_statement_token1] = ACTIONS(5962), - [aux_sym_close_statement_token1] = ACTIONS(5962), - [aux_sym_inquire_statement_token1] = ACTIONS(5962), - [aux_sym_file_position_statement_token1] = ACTIONS(5962), - [aux_sym_file_position_statement_token2] = ACTIONS(5962), - [aux_sym_file_position_statement_token3] = ACTIONS(5962), - [aux_sym_file_position_statement_token4] = ACTIONS(5962), - [aux_sym_allocate_statement_token1] = ACTIONS(5962), - [aux_sym_entry_statement_token1] = ACTIONS(5962), - [aux_sym_logical_expression_token5] = ACTIONS(5966), - [anon_sym_DOT] = ACTIONS(5962), - [anon_sym_LPAREN_SLASH] = ACTIONS(5966), - [anon_sym_LBRACK] = ACTIONS(5966), - [aux_sym_boolean_literal_token1] = ACTIONS(5966), - [aux_sym_boolean_literal_token2] = ACTIONS(5966), - [aux_sym_null_literal_token1] = ACTIONS(5962), - [aux_sym_coarray_statement_token1] = ACTIONS(5962), - [aux_sym_coarray_statement_token2] = ACTIONS(5962), - [aux_sym_coarray_statement_token6] = ACTIONS(5962), - [aux_sym_coarray_statement_token8] = ACTIONS(5962), - [aux_sym_coarray_statement_token11] = ACTIONS(5962), - [aux_sym_coarray_statement_token12] = ACTIONS(5962), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5962), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5962), - [aux_sym_identifier_token1] = ACTIONS(5962), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5966), - [sym__float_literal] = ACTIONS(5966), - [sym__boz_literal] = ACTIONS(5966), - [sym__string_literal] = ACTIONS(5966), - [sym__string_literal_kind] = ACTIONS(5966), - }, - [1929] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym_end_where_statement_token1] = ACTIONS(5710), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [1930] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5968), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_contains_statement_token1] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [1931] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym_end_where_statement_token1] = ACTIONS(5750), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [1932] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), + [1818] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [aux_sym_preproc_else_token1] = ACTIONS(4935), + [aux_sym_preproc_elif_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym_end_where_statement_token1] = ACTIONS(4485), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -337056,612 +325580,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [1933] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym_end_where_statement_token1] = ACTIONS(5636), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [1934] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5970), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_contains_statement_token1] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [1935] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym_end_where_statement_token1] = ACTIONS(5660), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), - }, - [1936] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym_end_where_statement_token1] = ACTIONS(4817), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [1819] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [1937] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym_end_where_statement_token1] = ACTIONS(5590), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [1820] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token2] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [aux_sym_preproc_else_token1] = ACTIONS(4978), + [aux_sym_preproc_elif_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), }, - [1938] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_contains_statement_token1] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), + [1821] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token2] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [aux_sym_preproc_else_token1] = ACTIONS(5032), + [aux_sym_preproc_elif_token1] = ACTIONS(5032), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), }, - [1939] = { + [1822] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token2] = ACTIONS(5620), [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [aux_sym_preproc_else_token1] = ACTIONS(5620), + [aux_sym_preproc_elif_token1] = ACTIONS(5620), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5620), [sym_preproc_directive] = ACTIONS(5620), [anon_sym_LPAREN2] = ACTIONS(5620), [anon_sym_PLUS] = ACTIONS(5622), @@ -337710,11 +325945,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(5620), [aux_sym__inline_if_statement_token1] = ACTIONS(5620), [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token1] = ACTIONS(5620), [aux_sym_elseif_clause_token2] = ACTIONS(5620), [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym_end_where_statement_token1] = ACTIONS(5620), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5620), [aux_sym__forall_control_expression_token1] = ACTIONS(5620), [aux_sym_select_case_statement_token1] = ACTIONS(5620), [aux_sym_select_case_statement_token3] = ACTIONS(5620), @@ -337756,12 +325988,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [1940] = { + [1823] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token2] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [aux_sym_preproc_else_token1] = ACTIONS(5624), + [aux_sym_preproc_elif_token1] = ACTIONS(5624), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [1824] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token2] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [aux_sym_preproc_else_token1] = ACTIONS(5632), + [aux_sym_preproc_elif_token1] = ACTIONS(5632), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), + }, + [1825] = { [aux_sym_preproc_include_token1] = ACTIONS(5640), [aux_sym_preproc_def_token1] = ACTIONS(5640), [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token2] = ACTIONS(5640), [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [aux_sym_preproc_else_token1] = ACTIONS(5640), + [aux_sym_preproc_elif_token1] = ACTIONS(5640), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5640), [sym_preproc_directive] = ACTIONS(5640), [anon_sym_LPAREN2] = ACTIONS(5640), [anon_sym_PLUS] = ACTIONS(5642), @@ -337810,11 +326251,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(5640), [aux_sym__inline_if_statement_token1] = ACTIONS(5640), [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token1] = ACTIONS(5640), [aux_sym_elseif_clause_token2] = ACTIONS(5640), [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym_end_where_statement_token1] = ACTIONS(5640), - [aux_sym_elsewhere_clause_token1] = ACTIONS(5640), [aux_sym__forall_control_expression_token1] = ACTIONS(5640), [aux_sym_select_case_statement_token1] = ACTIONS(5640), [aux_sym_select_case_statement_token3] = ACTIONS(5640), @@ -337856,3899 +326294,1427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5642), [sym__string_literal_kind] = ACTIONS(5642), }, - [1941] = { - [aux_sym_preproc_include_token1] = ACTIONS(5974), - [aux_sym_preproc_def_token1] = ACTIONS(5974), - [aux_sym_preproc_if_token1] = ACTIONS(5974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5974), - [sym_preproc_directive] = ACTIONS(5974), - [anon_sym_LPAREN2] = ACTIONS(5974), - [sym_preproc_comment] = ACTIONS(5976), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5974), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5974), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5974), - [aux_sym_procedure_attributes_token3] = ACTIONS(5974), - [aux_sym_end_function_statement_token1] = ACTIONS(5974), - [aux_sym_contains_statement_token1] = ACTIONS(5974), - [aux_sym_use_statement_token2] = ACTIONS(5974), - [aux_sym_implicit_statement_token4] = ACTIONS(5974), - [aux_sym_save_statement_token1] = ACTIONS(5974), - [aux_sym_private_statement_token1] = ACTIONS(5974), - [aux_sym_public_statement_token1] = ACTIONS(5974), - [aux_sym_derived_type_definition_token1] = ACTIONS(5974), - [aux_sym_procedure_attribute_token6] = ACTIONS(5974), - [aux_sym_variable_attributes_token2] = ACTIONS(5974), - [aux_sym_variable_attributes_token3] = ACTIONS(5974), - [aux_sym_variable_attributes_token5] = ACTIONS(5974), - [aux_sym__intrinsic_type_token1] = ACTIONS(5974), - [aux_sym__intrinsic_type_token3] = ACTIONS(5974), - [aux_sym__intrinsic_type_token4] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5974), - [aux_sym_type_qualifier_token1] = ACTIONS(5974), - [aux_sym_type_qualifier_token2] = ACTIONS(5974), - [anon_sym_SEMI] = ACTIONS(5978), - [aux_sym_stop_statement_token1] = ACTIONS(5974), - [aux_sym_stop_statement_token2] = ACTIONS(5974), - [aux_sym_subroutine_call_token1] = ACTIONS(5974), - [aux_sym_keyword_statement_token1] = ACTIONS(5974), - [aux_sym_keyword_statement_token2] = ACTIONS(5974), - [aux_sym_keyword_statement_token3] = ACTIONS(5974), - [aux_sym_keyword_statement_token4] = ACTIONS(5974), - [aux_sym_keyword_statement_token6] = ACTIONS(5974), - [aux_sym_keyword_statement_token7] = ACTIONS(5974), - [aux_sym_include_statement_token1] = ACTIONS(5974), - [aux_sym_data_statement_token1] = ACTIONS(5974), - [aux_sym_do_loop_statement_token1] = ACTIONS(5974), - [aux_sym__inline_if_statement_token1] = ACTIONS(5974), - [aux_sym_end_if_statement_token1] = ACTIONS(5974), - [aux_sym_elseif_clause_token2] = ACTIONS(5974), - [aux_sym__inline_where_statement_token1] = ACTIONS(5974), - [aux_sym__forall_control_expression_token1] = ACTIONS(5974), - [aux_sym_select_case_statement_token1] = ACTIONS(5974), - [aux_sym_select_case_statement_token3] = ACTIONS(5974), - [aux_sym_select_type_statement_token1] = ACTIONS(5974), - [aux_sym_select_rank_statement_token2] = ACTIONS(5974), - [aux_sym_block_construct_token1] = ACTIONS(5974), - [aux_sym_associate_statement_token1] = ACTIONS(5974), - [aux_sym_format_statement_token1] = ACTIONS(5974), - [aux_sym_print_statement_token1] = ACTIONS(5974), - [aux_sym_open_statement_token1] = ACTIONS(5974), - [aux_sym_close_statement_token1] = ACTIONS(5974), - [aux_sym_inquire_statement_token1] = ACTIONS(5974), - [aux_sym_file_position_statement_token1] = ACTIONS(5974), - [aux_sym_file_position_statement_token2] = ACTIONS(5974), - [aux_sym_file_position_statement_token3] = ACTIONS(5974), - [aux_sym_file_position_statement_token4] = ACTIONS(5974), - [aux_sym_allocate_statement_token1] = ACTIONS(5974), - [aux_sym_entry_statement_token1] = ACTIONS(5974), - [aux_sym_logical_expression_token5] = ACTIONS(5978), - [anon_sym_DOT] = ACTIONS(5974), - [anon_sym_LPAREN_SLASH] = ACTIONS(5978), - [anon_sym_LBRACK] = ACTIONS(5978), - [aux_sym_boolean_literal_token1] = ACTIONS(5978), - [aux_sym_boolean_literal_token2] = ACTIONS(5978), - [aux_sym_null_literal_token1] = ACTIONS(5974), - [aux_sym_coarray_statement_token1] = ACTIONS(5974), - [aux_sym_coarray_statement_token2] = ACTIONS(5974), - [aux_sym_coarray_statement_token6] = ACTIONS(5974), - [aux_sym_coarray_statement_token8] = ACTIONS(5974), - [aux_sym_coarray_statement_token11] = ACTIONS(5974), - [aux_sym_coarray_statement_token12] = ACTIONS(5974), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5974), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5974), - [aux_sym_identifier_token1] = ACTIONS(5974), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5978), - [sym__float_literal] = ACTIONS(5978), - [sym__boz_literal] = ACTIONS(5978), - [sym__string_literal] = ACTIONS(5978), - [sym__string_literal_kind] = ACTIONS(5978), - }, - [1942] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5980), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_end_program_statement_token2] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_contains_statement_token1] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [1943] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token2] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(5982), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_contains_statement_token1] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [1944] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token2] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(5984), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_contains_statement_token1] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [1945] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token2] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(5986), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_contains_statement_token1] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [1946] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token2] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(5988), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_contains_statement_token1] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [1947] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token2] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(5990), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_contains_statement_token1] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [1948] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(5992), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_contains_statement_token1] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [1949] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token2] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(5994), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_contains_statement_token1] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [1950] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token2] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(5996), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_contains_statement_token1] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [1951] = { - [aux_sym_preproc_include_token1] = ACTIONS(5998), - [aux_sym_preproc_def_token1] = ACTIONS(5998), - [aux_sym_preproc_if_token1] = ACTIONS(5998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5998), - [sym_preproc_directive] = ACTIONS(5998), - [anon_sym_LPAREN2] = ACTIONS(5998), - [sym_preproc_comment] = ACTIONS(6000), - [anon_sym_PLUS] = ACTIONS(6002), - [anon_sym_DASH] = ACTIONS(6002), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5998), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5998), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5998), - [aux_sym_procedure_attributes_token3] = ACTIONS(5998), - [aux_sym_end_function_statement_token1] = ACTIONS(5998), - [aux_sym_contains_statement_token1] = ACTIONS(5998), - [aux_sym_use_statement_token2] = ACTIONS(5998), - [aux_sym_implicit_statement_token4] = ACTIONS(5998), - [aux_sym_save_statement_token1] = ACTIONS(5998), - [aux_sym_private_statement_token1] = ACTIONS(5998), - [aux_sym_public_statement_token1] = ACTIONS(5998), - [aux_sym_derived_type_definition_token1] = ACTIONS(5998), - [aux_sym_procedure_attribute_token6] = ACTIONS(5998), - [aux_sym_variable_attributes_token2] = ACTIONS(5998), - [aux_sym_variable_attributes_token3] = ACTIONS(5998), - [aux_sym_variable_attributes_token5] = ACTIONS(5998), - [aux_sym__intrinsic_type_token1] = ACTIONS(5998), - [aux_sym__intrinsic_type_token3] = ACTIONS(5998), - [aux_sym__intrinsic_type_token4] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5998), - [aux_sym_type_qualifier_token1] = ACTIONS(5998), - [aux_sym_type_qualifier_token2] = ACTIONS(5998), - [anon_sym_SEMI] = ACTIONS(6002), - [aux_sym_stop_statement_token1] = ACTIONS(5998), - [aux_sym_stop_statement_token2] = ACTIONS(5998), - [aux_sym_subroutine_call_token1] = ACTIONS(5998), - [aux_sym_keyword_statement_token1] = ACTIONS(5998), - [aux_sym_keyword_statement_token2] = ACTIONS(5998), - [aux_sym_keyword_statement_token3] = ACTIONS(5998), - [aux_sym_keyword_statement_token4] = ACTIONS(5998), - [aux_sym_keyword_statement_token6] = ACTIONS(5998), - [aux_sym_keyword_statement_token7] = ACTIONS(5998), - [aux_sym_include_statement_token1] = ACTIONS(5998), - [aux_sym_data_statement_token1] = ACTIONS(5998), - [aux_sym_do_loop_statement_token1] = ACTIONS(5998), - [aux_sym__inline_if_statement_token1] = ACTIONS(5998), - [aux_sym_end_if_statement_token1] = ACTIONS(5998), - [aux_sym_elseif_clause_token2] = ACTIONS(5998), - [aux_sym__inline_where_statement_token1] = ACTIONS(5998), - [aux_sym__forall_control_expression_token1] = ACTIONS(5998), - [aux_sym_select_case_statement_token1] = ACTIONS(5998), - [aux_sym_select_case_statement_token3] = ACTIONS(5998), - [aux_sym_select_type_statement_token1] = ACTIONS(5998), - [aux_sym_select_rank_statement_token2] = ACTIONS(5998), - [aux_sym_block_construct_token1] = ACTIONS(5998), - [aux_sym_associate_statement_token1] = ACTIONS(5998), - [aux_sym_format_statement_token1] = ACTIONS(5998), - [aux_sym_print_statement_token1] = ACTIONS(5998), - [aux_sym_open_statement_token1] = ACTIONS(5998), - [aux_sym_close_statement_token1] = ACTIONS(5998), - [aux_sym_inquire_statement_token1] = ACTIONS(5998), - [aux_sym_file_position_statement_token1] = ACTIONS(5998), - [aux_sym_file_position_statement_token2] = ACTIONS(5998), - [aux_sym_file_position_statement_token3] = ACTIONS(5998), - [aux_sym_file_position_statement_token4] = ACTIONS(5998), - [aux_sym_allocate_statement_token1] = ACTIONS(5998), - [aux_sym_entry_statement_token1] = ACTIONS(5998), - [aux_sym_logical_expression_token5] = ACTIONS(6002), - [anon_sym_DOT] = ACTIONS(5998), - [anon_sym_LPAREN_SLASH] = ACTIONS(6002), - [anon_sym_LBRACK] = ACTIONS(6002), - [aux_sym_boolean_literal_token1] = ACTIONS(6002), - [aux_sym_boolean_literal_token2] = ACTIONS(6002), - [aux_sym_null_literal_token1] = ACTIONS(5998), - [aux_sym_coarray_statement_token1] = ACTIONS(5998), - [aux_sym_coarray_statement_token2] = ACTIONS(5998), - [aux_sym_coarray_statement_token6] = ACTIONS(5998), - [aux_sym_coarray_statement_token8] = ACTIONS(5998), - [aux_sym_coarray_statement_token11] = ACTIONS(5998), - [aux_sym_coarray_statement_token12] = ACTIONS(5998), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5998), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5998), - [aux_sym_identifier_token1] = ACTIONS(5998), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6002), - [sym__float_literal] = ACTIONS(6002), - [sym__boz_literal] = ACTIONS(6002), - [sym__string_literal] = ACTIONS(6002), - [sym__string_literal_kind] = ACTIONS(6002), - }, - [1952] = { - [aux_sym_preproc_include_token1] = ACTIONS(6004), - [aux_sym_preproc_def_token1] = ACTIONS(6004), - [aux_sym_preproc_if_token1] = ACTIONS(6004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6004), - [sym_preproc_directive] = ACTIONS(6004), - [anon_sym_LPAREN2] = ACTIONS(6004), - [sym_preproc_comment] = ACTIONS(6006), - [anon_sym_PLUS] = ACTIONS(6008), - [anon_sym_DASH] = ACTIONS(6008), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6004), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6004), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6004), - [aux_sym_procedure_attributes_token3] = ACTIONS(6004), - [aux_sym_end_function_statement_token1] = ACTIONS(6004), - [aux_sym_contains_statement_token1] = ACTIONS(6004), - [aux_sym_use_statement_token2] = ACTIONS(6004), - [aux_sym_implicit_statement_token4] = ACTIONS(6004), - [aux_sym_save_statement_token1] = ACTIONS(6004), - [aux_sym_private_statement_token1] = ACTIONS(6004), - [aux_sym_public_statement_token1] = ACTIONS(6004), - [aux_sym_derived_type_definition_token1] = ACTIONS(6004), - [aux_sym_procedure_attribute_token6] = ACTIONS(6004), - [aux_sym_variable_attributes_token2] = ACTIONS(6004), - [aux_sym_variable_attributes_token3] = ACTIONS(6004), - [aux_sym_variable_attributes_token5] = ACTIONS(6004), - [aux_sym__intrinsic_type_token1] = ACTIONS(6004), - [aux_sym__intrinsic_type_token3] = ACTIONS(6004), - [aux_sym__intrinsic_type_token4] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6004), - [aux_sym_type_qualifier_token1] = ACTIONS(6004), - [aux_sym_type_qualifier_token2] = ACTIONS(6004), - [anon_sym_SEMI] = ACTIONS(6008), - [aux_sym_stop_statement_token1] = ACTIONS(6004), - [aux_sym_stop_statement_token2] = ACTIONS(6004), - [aux_sym_subroutine_call_token1] = ACTIONS(6004), - [aux_sym_keyword_statement_token1] = ACTIONS(6004), - [aux_sym_keyword_statement_token2] = ACTIONS(6004), - [aux_sym_keyword_statement_token3] = ACTIONS(6004), - [aux_sym_keyword_statement_token4] = ACTIONS(6004), - [aux_sym_keyword_statement_token6] = ACTIONS(6004), - [aux_sym_keyword_statement_token7] = ACTIONS(6004), - [aux_sym_include_statement_token1] = ACTIONS(6004), - [aux_sym_data_statement_token1] = ACTIONS(6004), - [aux_sym_do_loop_statement_token1] = ACTIONS(6004), - [aux_sym__inline_if_statement_token1] = ACTIONS(6004), - [aux_sym_end_if_statement_token1] = ACTIONS(6004), - [aux_sym_elseif_clause_token2] = ACTIONS(6004), - [aux_sym__inline_where_statement_token1] = ACTIONS(6004), - [aux_sym__forall_control_expression_token1] = ACTIONS(6004), - [aux_sym_select_case_statement_token1] = ACTIONS(6004), - [aux_sym_select_case_statement_token3] = ACTIONS(6004), - [aux_sym_select_type_statement_token1] = ACTIONS(6004), - [aux_sym_select_rank_statement_token2] = ACTIONS(6004), - [aux_sym_block_construct_token1] = ACTIONS(6004), - [aux_sym_associate_statement_token1] = ACTIONS(6004), - [aux_sym_format_statement_token1] = ACTIONS(6004), - [aux_sym_print_statement_token1] = ACTIONS(6004), - [aux_sym_open_statement_token1] = ACTIONS(6004), - [aux_sym_close_statement_token1] = ACTIONS(6004), - [aux_sym_inquire_statement_token1] = ACTIONS(6004), - [aux_sym_file_position_statement_token1] = ACTIONS(6004), - [aux_sym_file_position_statement_token2] = ACTIONS(6004), - [aux_sym_file_position_statement_token3] = ACTIONS(6004), - [aux_sym_file_position_statement_token4] = ACTIONS(6004), - [aux_sym_allocate_statement_token1] = ACTIONS(6004), - [aux_sym_entry_statement_token1] = ACTIONS(6004), - [aux_sym_logical_expression_token5] = ACTIONS(6008), - [anon_sym_DOT] = ACTIONS(6004), - [anon_sym_LPAREN_SLASH] = ACTIONS(6008), - [anon_sym_LBRACK] = ACTIONS(6008), - [aux_sym_boolean_literal_token1] = ACTIONS(6008), - [aux_sym_boolean_literal_token2] = ACTIONS(6008), - [aux_sym_null_literal_token1] = ACTIONS(6004), - [aux_sym_coarray_statement_token1] = ACTIONS(6004), - [aux_sym_coarray_statement_token2] = ACTIONS(6004), - [aux_sym_coarray_statement_token6] = ACTIONS(6004), - [aux_sym_coarray_statement_token8] = ACTIONS(6004), - [aux_sym_coarray_statement_token11] = ACTIONS(6004), - [aux_sym_coarray_statement_token12] = ACTIONS(6004), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6004), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6004), - [aux_sym_identifier_token1] = ACTIONS(6004), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6008), - [sym__float_literal] = ACTIONS(6008), - [sym__boz_literal] = ACTIONS(6008), - [sym__string_literal] = ACTIONS(6008), - [sym__string_literal_kind] = ACTIONS(6008), - }, - [1953] = { - [aux_sym_preproc_include_token1] = ACTIONS(6010), - [aux_sym_preproc_def_token1] = ACTIONS(6010), - [aux_sym_preproc_if_token1] = ACTIONS(6010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6010), - [sym_preproc_directive] = ACTIONS(6010), - [anon_sym_LPAREN2] = ACTIONS(6010), - [sym_preproc_comment] = ACTIONS(6012), - [anon_sym_PLUS] = ACTIONS(6014), - [anon_sym_DASH] = ACTIONS(6014), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6010), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6010), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6010), - [aux_sym_procedure_attributes_token3] = ACTIONS(6010), - [aux_sym_end_function_statement_token1] = ACTIONS(6010), - [aux_sym_contains_statement_token1] = ACTIONS(6010), - [aux_sym_use_statement_token2] = ACTIONS(6010), - [aux_sym_implicit_statement_token4] = ACTIONS(6010), - [aux_sym_save_statement_token1] = ACTIONS(6010), - [aux_sym_private_statement_token1] = ACTIONS(6010), - [aux_sym_public_statement_token1] = ACTIONS(6010), - [aux_sym_derived_type_definition_token1] = ACTIONS(6010), - [aux_sym_procedure_attribute_token6] = ACTIONS(6010), - [aux_sym_variable_attributes_token2] = ACTIONS(6010), - [aux_sym_variable_attributes_token3] = ACTIONS(6010), - [aux_sym_variable_attributes_token5] = ACTIONS(6010), - [aux_sym__intrinsic_type_token1] = ACTIONS(6010), - [aux_sym__intrinsic_type_token3] = ACTIONS(6010), - [aux_sym__intrinsic_type_token4] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6010), - [aux_sym_type_qualifier_token1] = ACTIONS(6010), - [aux_sym_type_qualifier_token2] = ACTIONS(6010), - [anon_sym_SEMI] = ACTIONS(6014), - [aux_sym_stop_statement_token1] = ACTIONS(6010), - [aux_sym_stop_statement_token2] = ACTIONS(6010), - [aux_sym_subroutine_call_token1] = ACTIONS(6010), - [aux_sym_keyword_statement_token1] = ACTIONS(6010), - [aux_sym_keyword_statement_token2] = ACTIONS(6010), - [aux_sym_keyword_statement_token3] = ACTIONS(6010), - [aux_sym_keyword_statement_token4] = ACTIONS(6010), - [aux_sym_keyword_statement_token6] = ACTIONS(6010), - [aux_sym_keyword_statement_token7] = ACTIONS(6010), - [aux_sym_include_statement_token1] = ACTIONS(6010), - [aux_sym_data_statement_token1] = ACTIONS(6010), - [aux_sym_do_loop_statement_token1] = ACTIONS(6010), - [aux_sym__inline_if_statement_token1] = ACTIONS(6010), - [aux_sym_end_if_statement_token1] = ACTIONS(6010), - [aux_sym_elseif_clause_token2] = ACTIONS(6010), - [aux_sym__inline_where_statement_token1] = ACTIONS(6010), - [aux_sym__forall_control_expression_token1] = ACTIONS(6010), - [aux_sym_select_case_statement_token1] = ACTIONS(6010), - [aux_sym_select_case_statement_token3] = ACTIONS(6010), - [aux_sym_select_type_statement_token1] = ACTIONS(6010), - [aux_sym_select_rank_statement_token2] = ACTIONS(6010), - [aux_sym_block_construct_token1] = ACTIONS(6010), - [aux_sym_associate_statement_token1] = ACTIONS(6010), - [aux_sym_format_statement_token1] = ACTIONS(6010), - [aux_sym_print_statement_token1] = ACTIONS(6010), - [aux_sym_open_statement_token1] = ACTIONS(6010), - [aux_sym_close_statement_token1] = ACTIONS(6010), - [aux_sym_inquire_statement_token1] = ACTIONS(6010), - [aux_sym_file_position_statement_token1] = ACTIONS(6010), - [aux_sym_file_position_statement_token2] = ACTIONS(6010), - [aux_sym_file_position_statement_token3] = ACTIONS(6010), - [aux_sym_file_position_statement_token4] = ACTIONS(6010), - [aux_sym_allocate_statement_token1] = ACTIONS(6010), - [aux_sym_entry_statement_token1] = ACTIONS(6010), - [aux_sym_logical_expression_token5] = ACTIONS(6014), - [anon_sym_DOT] = ACTIONS(6010), - [anon_sym_LPAREN_SLASH] = ACTIONS(6014), - [anon_sym_LBRACK] = ACTIONS(6014), - [aux_sym_boolean_literal_token1] = ACTIONS(6014), - [aux_sym_boolean_literal_token2] = ACTIONS(6014), - [aux_sym_null_literal_token1] = ACTIONS(6010), - [aux_sym_coarray_statement_token1] = ACTIONS(6010), - [aux_sym_coarray_statement_token2] = ACTIONS(6010), - [aux_sym_coarray_statement_token6] = ACTIONS(6010), - [aux_sym_coarray_statement_token8] = ACTIONS(6010), - [aux_sym_coarray_statement_token11] = ACTIONS(6010), - [aux_sym_coarray_statement_token12] = ACTIONS(6010), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6010), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6010), - [aux_sym_identifier_token1] = ACTIONS(6010), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6014), - [sym__float_literal] = ACTIONS(6014), - [sym__boz_literal] = ACTIONS(6014), - [sym__string_literal] = ACTIONS(6014), - [sym__string_literal_kind] = ACTIONS(6014), + [1826] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token2] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [aux_sym_preproc_else_token1] = ACTIONS(5648), + [aux_sym_preproc_elif_token1] = ACTIONS(5648), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [1954] = { - [aux_sym_preproc_include_token1] = ACTIONS(6016), - [aux_sym_preproc_def_token1] = ACTIONS(6016), - [aux_sym_preproc_if_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6016), - [sym_preproc_directive] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [sym_preproc_comment] = ACTIONS(6018), - [anon_sym_PLUS] = ACTIONS(6020), - [anon_sym_DASH] = ACTIONS(6020), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6016), - [aux_sym_procedure_attributes_token3] = ACTIONS(6016), - [aux_sym_end_function_statement_token1] = ACTIONS(6016), - [aux_sym_contains_statement_token1] = ACTIONS(6016), - [aux_sym_use_statement_token2] = ACTIONS(6016), - [aux_sym_implicit_statement_token4] = ACTIONS(6016), - [aux_sym_save_statement_token1] = ACTIONS(6016), - [aux_sym_private_statement_token1] = ACTIONS(6016), - [aux_sym_public_statement_token1] = ACTIONS(6016), - [aux_sym_derived_type_definition_token1] = ACTIONS(6016), - [aux_sym_procedure_attribute_token6] = ACTIONS(6016), - [aux_sym_variable_attributes_token2] = ACTIONS(6016), - [aux_sym_variable_attributes_token3] = ACTIONS(6016), - [aux_sym_variable_attributes_token5] = ACTIONS(6016), - [aux_sym__intrinsic_type_token1] = ACTIONS(6016), - [aux_sym__intrinsic_type_token3] = ACTIONS(6016), - [aux_sym__intrinsic_type_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6016), - [aux_sym_type_qualifier_token1] = ACTIONS(6016), - [aux_sym_type_qualifier_token2] = ACTIONS(6016), - [anon_sym_SEMI] = ACTIONS(6020), - [aux_sym_stop_statement_token1] = ACTIONS(6016), - [aux_sym_stop_statement_token2] = ACTIONS(6016), - [aux_sym_subroutine_call_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token2] = ACTIONS(6016), - [aux_sym_keyword_statement_token3] = ACTIONS(6016), - [aux_sym_keyword_statement_token4] = ACTIONS(6016), - [aux_sym_keyword_statement_token6] = ACTIONS(6016), - [aux_sym_keyword_statement_token7] = ACTIONS(6016), - [aux_sym_include_statement_token1] = ACTIONS(6016), - [aux_sym_data_statement_token1] = ACTIONS(6016), - [aux_sym_do_loop_statement_token1] = ACTIONS(6016), - [aux_sym__inline_if_statement_token1] = ACTIONS(6016), - [aux_sym_end_if_statement_token1] = ACTIONS(6016), - [aux_sym_elseif_clause_token2] = ACTIONS(6016), - [aux_sym__inline_where_statement_token1] = ACTIONS(6016), - [aux_sym__forall_control_expression_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token3] = ACTIONS(6016), - [aux_sym_select_type_statement_token1] = ACTIONS(6016), - [aux_sym_select_rank_statement_token2] = ACTIONS(6016), - [aux_sym_block_construct_token1] = ACTIONS(6016), - [aux_sym_associate_statement_token1] = ACTIONS(6016), - [aux_sym_format_statement_token1] = ACTIONS(6016), - [aux_sym_print_statement_token1] = ACTIONS(6016), - [aux_sym_open_statement_token1] = ACTIONS(6016), - [aux_sym_close_statement_token1] = ACTIONS(6016), - [aux_sym_inquire_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token2] = ACTIONS(6016), - [aux_sym_file_position_statement_token3] = ACTIONS(6016), - [aux_sym_file_position_statement_token4] = ACTIONS(6016), - [aux_sym_allocate_statement_token1] = ACTIONS(6016), - [aux_sym_entry_statement_token1] = ACTIONS(6016), - [aux_sym_logical_expression_token5] = ACTIONS(6020), - [anon_sym_DOT] = ACTIONS(6016), - [anon_sym_LPAREN_SLASH] = ACTIONS(6020), - [anon_sym_LBRACK] = ACTIONS(6020), - [aux_sym_boolean_literal_token1] = ACTIONS(6020), - [aux_sym_boolean_literal_token2] = ACTIONS(6020), - [aux_sym_null_literal_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token2] = ACTIONS(6016), - [aux_sym_coarray_statement_token6] = ACTIONS(6016), - [aux_sym_coarray_statement_token8] = ACTIONS(6016), - [aux_sym_coarray_statement_token11] = ACTIONS(6016), - [aux_sym_coarray_statement_token12] = ACTIONS(6016), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6016), - [aux_sym_identifier_token1] = ACTIONS(6016), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6020), - [sym__float_literal] = ACTIONS(6020), - [sym__boz_literal] = ACTIONS(6020), - [sym__string_literal] = ACTIONS(6020), - [sym__string_literal_kind] = ACTIONS(6020), + [1827] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token2] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [aux_sym_preproc_else_token1] = ACTIONS(5668), + [aux_sym_preproc_elif_token1] = ACTIONS(5668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), }, - [1955] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6022), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_contains_statement_token1] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), + [1828] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token2] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [aux_sym_preproc_else_token1] = ACTIONS(5672), + [aux_sym_preproc_elif_token1] = ACTIONS(5672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), }, - [1956] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6024), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_contains_statement_token1] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [1829] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token2] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [aux_sym_preproc_else_token1] = ACTIONS(5680), + [aux_sym_preproc_elif_token1] = ACTIONS(5680), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), }, - [1957] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6026), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), + [1830] = { + [aux_sym_preproc_include_token1] = ACTIONS(2059), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [aux_sym_preproc_else_token1] = ACTIONS(2059), + [aux_sym_preproc_elif_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_contains_statement_token1] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), + [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2059), + [aux_sym_save_statement_token1] = ACTIONS(2059), + [aux_sym_private_statement_token1] = ACTIONS(2059), + [aux_sym_public_statement_token1] = ACTIONS(2059), + [aux_sym_derived_type_definition_token1] = ACTIONS(2059), + [aux_sym_procedure_attribute_token6] = ACTIONS(2059), + [aux_sym_variable_attributes_token2] = ACTIONS(2059), + [aux_sym_variable_attributes_token3] = ACTIONS(2059), + [aux_sym_variable_attributes_token5] = ACTIONS(2059), + [aux_sym__intrinsic_type_token1] = ACTIONS(2059), + [aux_sym__intrinsic_type_token3] = ACTIONS(2059), + [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), + [aux_sym_type_qualifier_token1] = ACTIONS(2059), + [aux_sym_type_qualifier_token2] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(5698), + [aux_sym_stop_statement_token1] = ACTIONS(2059), + [aux_sym_stop_statement_token2] = ACTIONS(2059), + [aux_sym_subroutine_call_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token2] = ACTIONS(2059), + [aux_sym_keyword_statement_token3] = ACTIONS(2059), + [aux_sym_keyword_statement_token4] = ACTIONS(2059), + [aux_sym_keyword_statement_token6] = ACTIONS(2059), + [aux_sym_keyword_statement_token7] = ACTIONS(2059), + [aux_sym_include_statement_token1] = ACTIONS(2059), + [aux_sym_data_statement_token1] = ACTIONS(2059), + [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2059), + [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2059), + [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token3] = ACTIONS(2059), + [aux_sym_select_type_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [1958] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6028), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_contains_statement_token1] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [1959] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6030), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_contains_statement_token1] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [1960] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6032), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), + [1831] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token2] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [aux_sym_preproc_else_token1] = ACTIONS(5600), + [aux_sym_preproc_elif_token1] = ACTIONS(5600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_contains_statement_token1] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [1961] = { - [aux_sym_preproc_include_token1] = ACTIONS(6034), - [aux_sym_preproc_def_token1] = ACTIONS(6034), - [aux_sym_preproc_if_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6034), - [sym_preproc_directive] = ACTIONS(6034), - [anon_sym_LPAREN2] = ACTIONS(6034), - [sym_preproc_comment] = ACTIONS(6036), - [anon_sym_PLUS] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6038), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6034), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6034), - [aux_sym_procedure_attributes_token3] = ACTIONS(6034), - [aux_sym_contains_statement_token1] = ACTIONS(6034), - [aux_sym_use_statement_token2] = ACTIONS(6034), - [aux_sym_implicit_statement_token4] = ACTIONS(6034), - [aux_sym_save_statement_token1] = ACTIONS(6034), - [aux_sym_private_statement_token1] = ACTIONS(6034), - [aux_sym_public_statement_token1] = ACTIONS(6034), - [aux_sym_derived_type_definition_token1] = ACTIONS(6034), - [aux_sym_procedure_attribute_token6] = ACTIONS(6034), - [aux_sym_variable_attributes_token2] = ACTIONS(6034), - [aux_sym_variable_attributes_token3] = ACTIONS(6034), - [aux_sym_variable_attributes_token5] = ACTIONS(6034), - [aux_sym__intrinsic_type_token1] = ACTIONS(6034), - [aux_sym__intrinsic_type_token3] = ACTIONS(6034), - [aux_sym__intrinsic_type_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6034), - [aux_sym_type_qualifier_token1] = ACTIONS(6034), - [aux_sym_type_qualifier_token2] = ACTIONS(6034), - [anon_sym_SEMI] = ACTIONS(6038), - [aux_sym_stop_statement_token1] = ACTIONS(6034), - [aux_sym_stop_statement_token2] = ACTIONS(6034), - [aux_sym_subroutine_call_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token2] = ACTIONS(6034), - [aux_sym_keyword_statement_token3] = ACTIONS(6034), - [aux_sym_keyword_statement_token4] = ACTIONS(6034), - [aux_sym_keyword_statement_token6] = ACTIONS(6034), - [aux_sym_keyword_statement_token7] = ACTIONS(6034), - [aux_sym_include_statement_token1] = ACTIONS(6034), - [aux_sym_data_statement_token1] = ACTIONS(6034), - [aux_sym_do_loop_statement_token1] = ACTIONS(6034), - [aux_sym__inline_if_statement_token1] = ACTIONS(6034), - [aux_sym_end_if_statement_token1] = ACTIONS(6034), - [aux_sym_elseif_clause_token2] = ACTIONS(6034), - [aux_sym__inline_where_statement_token1] = ACTIONS(6034), - [aux_sym__forall_control_expression_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token3] = ACTIONS(6034), - [aux_sym_select_type_statement_token1] = ACTIONS(6034), - [aux_sym_select_rank_statement_token2] = ACTIONS(6034), - [aux_sym_block_construct_token1] = ACTIONS(6034), - [aux_sym_associate_statement_token1] = ACTIONS(6034), - [aux_sym_format_statement_token1] = ACTIONS(6034), - [aux_sym_print_statement_token1] = ACTIONS(6034), - [aux_sym_open_statement_token1] = ACTIONS(6034), - [aux_sym_close_statement_token1] = ACTIONS(6034), - [aux_sym_inquire_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token2] = ACTIONS(6034), - [aux_sym_file_position_statement_token3] = ACTIONS(6034), - [aux_sym_file_position_statement_token4] = ACTIONS(6034), - [aux_sym_allocate_statement_token1] = ACTIONS(6034), - [aux_sym_entry_statement_token1] = ACTIONS(6034), - [aux_sym_logical_expression_token5] = ACTIONS(6038), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_LPAREN_SLASH] = ACTIONS(6038), - [anon_sym_LBRACK] = ACTIONS(6038), - [aux_sym_boolean_literal_token1] = ACTIONS(6038), - [aux_sym_boolean_literal_token2] = ACTIONS(6038), - [aux_sym_null_literal_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token2] = ACTIONS(6034), - [aux_sym_coarray_statement_token6] = ACTIONS(6034), - [aux_sym_coarray_statement_token8] = ACTIONS(6034), - [aux_sym_coarray_statement_token11] = ACTIONS(6034), - [aux_sym_coarray_statement_token12] = ACTIONS(6034), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6034), - [aux_sym_identifier_token1] = ACTIONS(6034), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6038), - [sym__float_literal] = ACTIONS(6038), - [sym__boz_literal] = ACTIONS(6038), - [sym__string_literal] = ACTIONS(6038), - [sym__string_literal_kind] = ACTIONS(6038), - }, - [1962] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6040), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_contains_statement_token1] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [1963] = { - [aux_sym_preproc_include_token1] = ACTIONS(6042), - [aux_sym_preproc_def_token1] = ACTIONS(6042), - [aux_sym_preproc_if_token1] = ACTIONS(6042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6042), - [sym_preproc_directive] = ACTIONS(6042), - [anon_sym_LPAREN2] = ACTIONS(6042), - [sym_preproc_comment] = ACTIONS(6044), - [anon_sym_PLUS] = ACTIONS(6046), - [anon_sym_DASH] = ACTIONS(6046), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6042), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6042), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6042), - [aux_sym_procedure_attributes_token3] = ACTIONS(6042), - [aux_sym_end_function_statement_token1] = ACTIONS(6042), - [aux_sym_contains_statement_token1] = ACTIONS(6042), - [aux_sym_use_statement_token2] = ACTIONS(6042), - [aux_sym_implicit_statement_token4] = ACTIONS(6042), - [aux_sym_save_statement_token1] = ACTIONS(6042), - [aux_sym_private_statement_token1] = ACTIONS(6042), - [aux_sym_public_statement_token1] = ACTIONS(6042), - [aux_sym_derived_type_definition_token1] = ACTIONS(6042), - [aux_sym_procedure_attribute_token6] = ACTIONS(6042), - [aux_sym_variable_attributes_token2] = ACTIONS(6042), - [aux_sym_variable_attributes_token3] = ACTIONS(6042), - [aux_sym_variable_attributes_token5] = ACTIONS(6042), - [aux_sym__intrinsic_type_token1] = ACTIONS(6042), - [aux_sym__intrinsic_type_token3] = ACTIONS(6042), - [aux_sym__intrinsic_type_token4] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6042), - [aux_sym_type_qualifier_token1] = ACTIONS(6042), - [aux_sym_type_qualifier_token2] = ACTIONS(6042), - [anon_sym_SEMI] = ACTIONS(6046), - [aux_sym_stop_statement_token1] = ACTIONS(6042), - [aux_sym_stop_statement_token2] = ACTIONS(6042), - [aux_sym_subroutine_call_token1] = ACTIONS(6042), - [aux_sym_keyword_statement_token1] = ACTIONS(6042), - [aux_sym_keyword_statement_token2] = ACTIONS(6042), - [aux_sym_keyword_statement_token3] = ACTIONS(6042), - [aux_sym_keyword_statement_token4] = ACTIONS(6042), - [aux_sym_keyword_statement_token6] = ACTIONS(6042), - [aux_sym_keyword_statement_token7] = ACTIONS(6042), - [aux_sym_include_statement_token1] = ACTIONS(6042), - [aux_sym_data_statement_token1] = ACTIONS(6042), - [aux_sym_do_loop_statement_token1] = ACTIONS(6042), - [aux_sym__inline_if_statement_token1] = ACTIONS(6042), - [aux_sym_end_if_statement_token1] = ACTIONS(6042), - [aux_sym_elseif_clause_token2] = ACTIONS(6042), - [aux_sym__inline_where_statement_token1] = ACTIONS(6042), - [aux_sym__forall_control_expression_token1] = ACTIONS(6042), - [aux_sym_select_case_statement_token1] = ACTIONS(6042), - [aux_sym_select_case_statement_token3] = ACTIONS(6042), - [aux_sym_select_type_statement_token1] = ACTIONS(6042), - [aux_sym_select_rank_statement_token2] = ACTIONS(6042), - [aux_sym_block_construct_token1] = ACTIONS(6042), - [aux_sym_associate_statement_token1] = ACTIONS(6042), - [aux_sym_format_statement_token1] = ACTIONS(6042), - [aux_sym_print_statement_token1] = ACTIONS(6042), - [aux_sym_open_statement_token1] = ACTIONS(6042), - [aux_sym_close_statement_token1] = ACTIONS(6042), - [aux_sym_inquire_statement_token1] = ACTIONS(6042), - [aux_sym_file_position_statement_token1] = ACTIONS(6042), - [aux_sym_file_position_statement_token2] = ACTIONS(6042), - [aux_sym_file_position_statement_token3] = ACTIONS(6042), - [aux_sym_file_position_statement_token4] = ACTIONS(6042), - [aux_sym_allocate_statement_token1] = ACTIONS(6042), - [aux_sym_entry_statement_token1] = ACTIONS(6042), - [aux_sym_logical_expression_token5] = ACTIONS(6046), - [anon_sym_DOT] = ACTIONS(6042), - [anon_sym_LPAREN_SLASH] = ACTIONS(6046), - [anon_sym_LBRACK] = ACTIONS(6046), - [aux_sym_boolean_literal_token1] = ACTIONS(6046), - [aux_sym_boolean_literal_token2] = ACTIONS(6046), - [aux_sym_null_literal_token1] = ACTIONS(6042), - [aux_sym_coarray_statement_token1] = ACTIONS(6042), - [aux_sym_coarray_statement_token2] = ACTIONS(6042), - [aux_sym_coarray_statement_token6] = ACTIONS(6042), - [aux_sym_coarray_statement_token8] = ACTIONS(6042), - [aux_sym_coarray_statement_token11] = ACTIONS(6042), - [aux_sym_coarray_statement_token12] = ACTIONS(6042), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6042), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6042), - [aux_sym_identifier_token1] = ACTIONS(6042), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6046), - [sym__float_literal] = ACTIONS(6046), - [sym__boz_literal] = ACTIONS(6046), - [sym__string_literal] = ACTIONS(6046), - [sym__string_literal_kind] = ACTIONS(6046), - }, - [1964] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6048), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token2] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_end_select_statement_token1] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), - }, - [1965] = { - [aux_sym_preproc_include_token1] = ACTIONS(6050), - [aux_sym_preproc_def_token1] = ACTIONS(6050), - [aux_sym_preproc_if_token1] = ACTIONS(6050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6050), - [sym_preproc_directive] = ACTIONS(6050), - [anon_sym_LPAREN2] = ACTIONS(6050), - [sym_preproc_comment] = ACTIONS(6052), - [anon_sym_PLUS] = ACTIONS(6054), - [anon_sym_DASH] = ACTIONS(6054), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6050), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6050), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6050), - [aux_sym_procedure_attributes_token3] = ACTIONS(6050), - [aux_sym_end_function_statement_token1] = ACTIONS(6050), - [aux_sym_contains_statement_token1] = ACTIONS(6050), - [aux_sym_use_statement_token2] = ACTIONS(6050), - [aux_sym_implicit_statement_token4] = ACTIONS(6050), - [aux_sym_save_statement_token1] = ACTIONS(6050), - [aux_sym_private_statement_token1] = ACTIONS(6050), - [aux_sym_public_statement_token1] = ACTIONS(6050), - [aux_sym_derived_type_definition_token1] = ACTIONS(6050), - [aux_sym_procedure_attribute_token6] = ACTIONS(6050), - [aux_sym_variable_attributes_token2] = ACTIONS(6050), - [aux_sym_variable_attributes_token3] = ACTIONS(6050), - [aux_sym_variable_attributes_token5] = ACTIONS(6050), - [aux_sym__intrinsic_type_token1] = ACTIONS(6050), - [aux_sym__intrinsic_type_token3] = ACTIONS(6050), - [aux_sym__intrinsic_type_token4] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6050), - [aux_sym_type_qualifier_token1] = ACTIONS(6050), - [aux_sym_type_qualifier_token2] = ACTIONS(6050), - [anon_sym_SEMI] = ACTIONS(6054), - [aux_sym_stop_statement_token1] = ACTIONS(6050), - [aux_sym_stop_statement_token2] = ACTIONS(6050), - [aux_sym_subroutine_call_token1] = ACTIONS(6050), - [aux_sym_keyword_statement_token1] = ACTIONS(6050), - [aux_sym_keyword_statement_token2] = ACTIONS(6050), - [aux_sym_keyword_statement_token3] = ACTIONS(6050), - [aux_sym_keyword_statement_token4] = ACTIONS(6050), - [aux_sym_keyword_statement_token6] = ACTIONS(6050), - [aux_sym_keyword_statement_token7] = ACTIONS(6050), - [aux_sym_include_statement_token1] = ACTIONS(6050), - [aux_sym_data_statement_token1] = ACTIONS(6050), - [aux_sym_do_loop_statement_token1] = ACTIONS(6050), - [aux_sym__inline_if_statement_token1] = ACTIONS(6050), - [aux_sym_end_if_statement_token1] = ACTIONS(6050), - [aux_sym_elseif_clause_token2] = ACTIONS(6050), - [aux_sym__inline_where_statement_token1] = ACTIONS(6050), - [aux_sym__forall_control_expression_token1] = ACTIONS(6050), - [aux_sym_select_case_statement_token1] = ACTIONS(6050), - [aux_sym_select_case_statement_token3] = ACTIONS(6050), - [aux_sym_select_type_statement_token1] = ACTIONS(6050), - [aux_sym_select_rank_statement_token2] = ACTIONS(6050), - [aux_sym_block_construct_token1] = ACTIONS(6050), - [aux_sym_associate_statement_token1] = ACTIONS(6050), - [aux_sym_format_statement_token1] = ACTIONS(6050), - [aux_sym_print_statement_token1] = ACTIONS(6050), - [aux_sym_open_statement_token1] = ACTIONS(6050), - [aux_sym_close_statement_token1] = ACTIONS(6050), - [aux_sym_inquire_statement_token1] = ACTIONS(6050), - [aux_sym_file_position_statement_token1] = ACTIONS(6050), - [aux_sym_file_position_statement_token2] = ACTIONS(6050), - [aux_sym_file_position_statement_token3] = ACTIONS(6050), - [aux_sym_file_position_statement_token4] = ACTIONS(6050), - [aux_sym_allocate_statement_token1] = ACTIONS(6050), - [aux_sym_entry_statement_token1] = ACTIONS(6050), - [aux_sym_logical_expression_token5] = ACTIONS(6054), - [anon_sym_DOT] = ACTIONS(6050), - [anon_sym_LPAREN_SLASH] = ACTIONS(6054), - [anon_sym_LBRACK] = ACTIONS(6054), - [aux_sym_boolean_literal_token1] = ACTIONS(6054), - [aux_sym_boolean_literal_token2] = ACTIONS(6054), - [aux_sym_null_literal_token1] = ACTIONS(6050), - [aux_sym_coarray_statement_token1] = ACTIONS(6050), - [aux_sym_coarray_statement_token2] = ACTIONS(6050), - [aux_sym_coarray_statement_token6] = ACTIONS(6050), - [aux_sym_coarray_statement_token8] = ACTIONS(6050), - [aux_sym_coarray_statement_token11] = ACTIONS(6050), - [aux_sym_coarray_statement_token12] = ACTIONS(6050), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6050), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6050), - [aux_sym_identifier_token1] = ACTIONS(6050), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6054), - [sym__float_literal] = ACTIONS(6054), - [sym__boz_literal] = ACTIONS(6054), - [sym__string_literal] = ACTIONS(6054), - [sym__string_literal_kind] = ACTIONS(6054), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [1966] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6056), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [1832] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [aux_sym_preproc_else_token1] = ACTIONS(4391), + [aux_sym_preproc_elif_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token2] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_end_select_statement_token1] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [1967] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6058), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1833] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [aux_sym_preproc_else_token1] = ACTIONS(4395), + [aux_sym_preproc_elif_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token2] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_end_select_statement_token1] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1968] = { - [aux_sym_preproc_include_token1] = ACTIONS(6060), - [aux_sym_preproc_def_token1] = ACTIONS(6060), - [aux_sym_preproc_if_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6060), - [sym_preproc_directive] = ACTIONS(6060), - [anon_sym_LPAREN2] = ACTIONS(6060), - [sym_preproc_comment] = ACTIONS(6062), - [anon_sym_PLUS] = ACTIONS(6064), - [anon_sym_DASH] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6060), - [aux_sym_procedure_attributes_token3] = ACTIONS(6060), - [aux_sym_end_function_statement_token1] = ACTIONS(6060), - [aux_sym_contains_statement_token1] = ACTIONS(6060), - [aux_sym_use_statement_token2] = ACTIONS(6060), - [aux_sym_implicit_statement_token4] = ACTIONS(6060), - [aux_sym_save_statement_token1] = ACTIONS(6060), - [aux_sym_private_statement_token1] = ACTIONS(6060), - [aux_sym_public_statement_token1] = ACTIONS(6060), - [aux_sym_derived_type_definition_token1] = ACTIONS(6060), - [aux_sym_procedure_attribute_token6] = ACTIONS(6060), - [aux_sym_variable_attributes_token2] = ACTIONS(6060), - [aux_sym_variable_attributes_token3] = ACTIONS(6060), - [aux_sym_variable_attributes_token5] = ACTIONS(6060), - [aux_sym__intrinsic_type_token1] = ACTIONS(6060), - [aux_sym__intrinsic_type_token3] = ACTIONS(6060), - [aux_sym__intrinsic_type_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6060), - [aux_sym_type_qualifier_token1] = ACTIONS(6060), - [aux_sym_type_qualifier_token2] = ACTIONS(6060), - [anon_sym_SEMI] = ACTIONS(6064), - [aux_sym_stop_statement_token1] = ACTIONS(6060), - [aux_sym_stop_statement_token2] = ACTIONS(6060), - [aux_sym_subroutine_call_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token2] = ACTIONS(6060), - [aux_sym_keyword_statement_token3] = ACTIONS(6060), - [aux_sym_keyword_statement_token4] = ACTIONS(6060), - [aux_sym_keyword_statement_token6] = ACTIONS(6060), - [aux_sym_keyword_statement_token7] = ACTIONS(6060), - [aux_sym_include_statement_token1] = ACTIONS(6060), - [aux_sym_data_statement_token1] = ACTIONS(6060), - [aux_sym_do_loop_statement_token1] = ACTIONS(6060), - [aux_sym__inline_if_statement_token1] = ACTIONS(6060), - [aux_sym_end_if_statement_token1] = ACTIONS(6060), - [aux_sym_elseif_clause_token2] = ACTIONS(6060), - [aux_sym__inline_where_statement_token1] = ACTIONS(6060), - [aux_sym__forall_control_expression_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token3] = ACTIONS(6060), - [aux_sym_select_type_statement_token1] = ACTIONS(6060), - [aux_sym_select_rank_statement_token2] = ACTIONS(6060), - [aux_sym_block_construct_token1] = ACTIONS(6060), - [aux_sym_associate_statement_token1] = ACTIONS(6060), - [aux_sym_format_statement_token1] = ACTIONS(6060), - [aux_sym_print_statement_token1] = ACTIONS(6060), - [aux_sym_open_statement_token1] = ACTIONS(6060), - [aux_sym_close_statement_token1] = ACTIONS(6060), - [aux_sym_inquire_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token2] = ACTIONS(6060), - [aux_sym_file_position_statement_token3] = ACTIONS(6060), - [aux_sym_file_position_statement_token4] = ACTIONS(6060), - [aux_sym_allocate_statement_token1] = ACTIONS(6060), - [aux_sym_entry_statement_token1] = ACTIONS(6060), - [aux_sym_logical_expression_token5] = ACTIONS(6064), - [anon_sym_DOT] = ACTIONS(6060), - [anon_sym_LPAREN_SLASH] = ACTIONS(6064), - [anon_sym_LBRACK] = ACTIONS(6064), - [aux_sym_boolean_literal_token1] = ACTIONS(6064), - [aux_sym_boolean_literal_token2] = ACTIONS(6064), - [aux_sym_null_literal_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token2] = ACTIONS(6060), - [aux_sym_coarray_statement_token6] = ACTIONS(6060), - [aux_sym_coarray_statement_token8] = ACTIONS(6060), - [aux_sym_coarray_statement_token11] = ACTIONS(6060), - [aux_sym_coarray_statement_token12] = ACTIONS(6060), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6060), - [aux_sym_identifier_token1] = ACTIONS(6060), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6064), - [sym__float_literal] = ACTIONS(6064), - [sym__boz_literal] = ACTIONS(6064), - [sym__string_literal] = ACTIONS(6064), - [sym__string_literal_kind] = ACTIONS(6064), - }, - [1969] = { - [aux_sym_preproc_include_token1] = ACTIONS(6066), - [aux_sym_preproc_def_token1] = ACTIONS(6066), - [aux_sym_preproc_if_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6066), - [sym_preproc_directive] = ACTIONS(6066), - [anon_sym_LPAREN2] = ACTIONS(6066), - [sym_preproc_comment] = ACTIONS(6068), - [anon_sym_PLUS] = ACTIONS(6070), - [anon_sym_DASH] = ACTIONS(6070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6066), - [aux_sym_procedure_attributes_token3] = ACTIONS(6066), - [aux_sym_end_function_statement_token1] = ACTIONS(6066), - [aux_sym_contains_statement_token1] = ACTIONS(6066), - [aux_sym_use_statement_token2] = ACTIONS(6066), - [aux_sym_implicit_statement_token4] = ACTIONS(6066), - [aux_sym_save_statement_token1] = ACTIONS(6066), - [aux_sym_private_statement_token1] = ACTIONS(6066), - [aux_sym_public_statement_token1] = ACTIONS(6066), - [aux_sym_derived_type_definition_token1] = ACTIONS(6066), - [aux_sym_procedure_attribute_token6] = ACTIONS(6066), - [aux_sym_variable_attributes_token2] = ACTIONS(6066), - [aux_sym_variable_attributes_token3] = ACTIONS(6066), - [aux_sym_variable_attributes_token5] = ACTIONS(6066), - [aux_sym__intrinsic_type_token1] = ACTIONS(6066), - [aux_sym__intrinsic_type_token3] = ACTIONS(6066), - [aux_sym__intrinsic_type_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6066), - [aux_sym_type_qualifier_token1] = ACTIONS(6066), - [aux_sym_type_qualifier_token2] = ACTIONS(6066), - [anon_sym_SEMI] = ACTIONS(6070), - [aux_sym_stop_statement_token1] = ACTIONS(6066), - [aux_sym_stop_statement_token2] = ACTIONS(6066), - [aux_sym_subroutine_call_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token2] = ACTIONS(6066), - [aux_sym_keyword_statement_token3] = ACTIONS(6066), - [aux_sym_keyword_statement_token4] = ACTIONS(6066), - [aux_sym_keyword_statement_token6] = ACTIONS(6066), - [aux_sym_keyword_statement_token7] = ACTIONS(6066), - [aux_sym_include_statement_token1] = ACTIONS(6066), - [aux_sym_data_statement_token1] = ACTIONS(6066), - [aux_sym_do_loop_statement_token1] = ACTIONS(6066), - [aux_sym__inline_if_statement_token1] = ACTIONS(6066), - [aux_sym_end_if_statement_token1] = ACTIONS(6066), - [aux_sym_elseif_clause_token2] = ACTIONS(6066), - [aux_sym__inline_where_statement_token1] = ACTIONS(6066), - [aux_sym__forall_control_expression_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token3] = ACTIONS(6066), - [aux_sym_select_type_statement_token1] = ACTIONS(6066), - [aux_sym_select_rank_statement_token2] = ACTIONS(6066), - [aux_sym_block_construct_token1] = ACTIONS(6066), - [aux_sym_associate_statement_token1] = ACTIONS(6066), - [aux_sym_format_statement_token1] = ACTIONS(6066), - [aux_sym_print_statement_token1] = ACTIONS(6066), - [aux_sym_open_statement_token1] = ACTIONS(6066), - [aux_sym_close_statement_token1] = ACTIONS(6066), - [aux_sym_inquire_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token2] = ACTIONS(6066), - [aux_sym_file_position_statement_token3] = ACTIONS(6066), - [aux_sym_file_position_statement_token4] = ACTIONS(6066), - [aux_sym_allocate_statement_token1] = ACTIONS(6066), - [aux_sym_entry_statement_token1] = ACTIONS(6066), - [aux_sym_logical_expression_token5] = ACTIONS(6070), - [anon_sym_DOT] = ACTIONS(6066), - [anon_sym_LPAREN_SLASH] = ACTIONS(6070), - [anon_sym_LBRACK] = ACTIONS(6070), - [aux_sym_boolean_literal_token1] = ACTIONS(6070), - [aux_sym_boolean_literal_token2] = ACTIONS(6070), - [aux_sym_null_literal_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token2] = ACTIONS(6066), - [aux_sym_coarray_statement_token6] = ACTIONS(6066), - [aux_sym_coarray_statement_token8] = ACTIONS(6066), - [aux_sym_coarray_statement_token11] = ACTIONS(6066), - [aux_sym_coarray_statement_token12] = ACTIONS(6066), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6066), - [aux_sym_identifier_token1] = ACTIONS(6066), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6070), - [sym__float_literal] = ACTIONS(6070), - [sym__boz_literal] = ACTIONS(6070), - [sym__string_literal] = ACTIONS(6070), - [sym__string_literal_kind] = ACTIONS(6070), - }, - [1970] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6072), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token2] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_end_select_statement_token1] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [1971] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6074), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1834] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [aux_sym_preproc_else_token1] = ACTIONS(4399), + [aux_sym_preproc_elif_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token2] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_end_select_statement_token1] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [1972] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6076), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1835] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token2] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_end_select_statement_token1] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [1973] = { - [aux_sym_preproc_include_token1] = ACTIONS(6078), - [aux_sym_preproc_def_token1] = ACTIONS(6078), - [aux_sym_preproc_if_token1] = ACTIONS(6078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6078), - [sym_preproc_directive] = ACTIONS(6078), - [anon_sym_LPAREN2] = ACTIONS(6078), - [sym_preproc_comment] = ACTIONS(6080), - [anon_sym_PLUS] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6082), + [1836] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [aux_sym_preproc_else_token1] = ACTIONS(4407), + [aux_sym_preproc_elif_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6078), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6078), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6078), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6078), - [aux_sym_procedure_attributes_token3] = ACTIONS(6078), - [aux_sym_contains_statement_token1] = ACTIONS(6078), - [aux_sym_use_statement_token2] = ACTIONS(6078), - [aux_sym_implicit_statement_token4] = ACTIONS(6078), - [aux_sym_save_statement_token1] = ACTIONS(6078), - [aux_sym_private_statement_token1] = ACTIONS(6078), - [aux_sym_public_statement_token1] = ACTIONS(6078), - [aux_sym_derived_type_definition_token1] = ACTIONS(6078), - [aux_sym_procedure_attribute_token6] = ACTIONS(6078), - [aux_sym_variable_attributes_token2] = ACTIONS(6078), - [aux_sym_variable_attributes_token3] = ACTIONS(6078), - [aux_sym_variable_attributes_token5] = ACTIONS(6078), - [aux_sym__intrinsic_type_token1] = ACTIONS(6078), - [aux_sym__intrinsic_type_token3] = ACTIONS(6078), - [aux_sym__intrinsic_type_token4] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6078), - [aux_sym_type_qualifier_token1] = ACTIONS(6078), - [aux_sym_type_qualifier_token2] = ACTIONS(6078), - [anon_sym_SEMI] = ACTIONS(6082), - [aux_sym_stop_statement_token1] = ACTIONS(6078), - [aux_sym_stop_statement_token2] = ACTIONS(6078), - [aux_sym_subroutine_call_token1] = ACTIONS(6078), - [aux_sym_keyword_statement_token1] = ACTIONS(6078), - [aux_sym_keyword_statement_token2] = ACTIONS(6078), - [aux_sym_keyword_statement_token3] = ACTIONS(6078), - [aux_sym_keyword_statement_token4] = ACTIONS(6078), - [aux_sym_keyword_statement_token6] = ACTIONS(6078), - [aux_sym_keyword_statement_token7] = ACTIONS(6078), - [aux_sym_include_statement_token1] = ACTIONS(6078), - [aux_sym_data_statement_token1] = ACTIONS(6078), - [aux_sym_do_loop_statement_token1] = ACTIONS(6078), - [aux_sym__inline_if_statement_token1] = ACTIONS(6078), - [aux_sym_end_if_statement_token1] = ACTIONS(6078), - [aux_sym_elseif_clause_token2] = ACTIONS(6078), - [aux_sym__inline_where_statement_token1] = ACTIONS(6078), - [aux_sym__forall_control_expression_token1] = ACTIONS(6078), - [aux_sym_select_case_statement_token1] = ACTIONS(6078), - [aux_sym_select_case_statement_token3] = ACTIONS(6078), - [aux_sym_select_type_statement_token1] = ACTIONS(6078), - [aux_sym_select_rank_statement_token2] = ACTIONS(6078), - [aux_sym_block_construct_token1] = ACTIONS(6078), - [aux_sym_associate_statement_token1] = ACTIONS(6078), - [aux_sym_format_statement_token1] = ACTIONS(6078), - [aux_sym_print_statement_token1] = ACTIONS(6078), - [aux_sym_open_statement_token1] = ACTIONS(6078), - [aux_sym_close_statement_token1] = ACTIONS(6078), - [aux_sym_inquire_statement_token1] = ACTIONS(6078), - [aux_sym_file_position_statement_token1] = ACTIONS(6078), - [aux_sym_file_position_statement_token2] = ACTIONS(6078), - [aux_sym_file_position_statement_token3] = ACTIONS(6078), - [aux_sym_file_position_statement_token4] = ACTIONS(6078), - [aux_sym_allocate_statement_token1] = ACTIONS(6078), - [aux_sym_entry_statement_token1] = ACTIONS(6078), - [aux_sym_logical_expression_token5] = ACTIONS(6082), - [anon_sym_DOT] = ACTIONS(6078), - [anon_sym_LPAREN_SLASH] = ACTIONS(6082), - [anon_sym_LBRACK] = ACTIONS(6082), - [aux_sym_boolean_literal_token1] = ACTIONS(6082), - [aux_sym_boolean_literal_token2] = ACTIONS(6082), - [aux_sym_null_literal_token1] = ACTIONS(6078), - [aux_sym_coarray_statement_token1] = ACTIONS(6078), - [aux_sym_coarray_statement_token2] = ACTIONS(6078), - [aux_sym_coarray_statement_token6] = ACTIONS(6078), - [aux_sym_coarray_statement_token8] = ACTIONS(6078), - [aux_sym_coarray_statement_token11] = ACTIONS(6078), - [aux_sym_coarray_statement_token12] = ACTIONS(6078), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6078), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6078), - [aux_sym_identifier_token1] = ACTIONS(6078), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6082), - [sym__float_literal] = ACTIONS(6082), - [sym__boz_literal] = ACTIONS(6082), - [sym__string_literal] = ACTIONS(6082), - [sym__string_literal_kind] = ACTIONS(6082), - }, - [1974] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6084), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token2] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_end_select_statement_token1] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [1975] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6086), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_end_select_statement_token1] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [1976] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6088), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [1837] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_end_select_statement_token1] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [1977] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6090), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1838] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [aux_sym_preproc_else_token1] = ACTIONS(4415), + [aux_sym_preproc_elif_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_end_select_statement_token1] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [1978] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6092), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_end_select_statement_token1] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [1979] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6094), + [1839] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), [anon_sym_PLUS] = ACTIONS(5586), [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_end_select_statement_token1] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4361), [anon_sym_LPAREN_SLASH] = ACTIONS(5586), [anon_sym_LBRACK] = ACTIONS(5586), [aux_sym_boolean_literal_token1] = ACTIONS(5586), [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5586), [sym__float_literal] = ACTIONS(5586), @@ -341756,1007 +327722,1422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5586), [sym__string_literal_kind] = ACTIONS(5586), }, - [1980] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6096), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1840] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [1841] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(5826), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_end_select_statement_token1] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym_end_where_statement_token1] = ACTIONS(4357), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [1981] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_end_select_statement_token1] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [1842] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token2] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_end_program_statement_token2] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_contains_statement_token1] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), }, - [1982] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6100), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_end_select_statement_token1] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [1843] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(5830), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym_end_where_statement_token1] = ACTIONS(5560), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), }, - [1983] = { - [aux_sym_preproc_include_token1] = ACTIONS(6102), - [aux_sym_preproc_def_token1] = ACTIONS(6102), - [aux_sym_preproc_if_token1] = ACTIONS(6102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6102), - [sym_preproc_directive] = ACTIONS(6102), - [anon_sym_LPAREN2] = ACTIONS(6102), - [sym_preproc_comment] = ACTIONS(6104), - [anon_sym_PLUS] = ACTIONS(6106), - [anon_sym_DASH] = ACTIONS(6106), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6102), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6102), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6102), - [aux_sym_procedure_attributes_token3] = ACTIONS(6102), - [aux_sym_end_function_statement_token1] = ACTIONS(6102), - [aux_sym_contains_statement_token1] = ACTIONS(6102), - [aux_sym_use_statement_token2] = ACTIONS(6102), - [aux_sym_implicit_statement_token4] = ACTIONS(6102), - [aux_sym_save_statement_token1] = ACTIONS(6102), - [aux_sym_private_statement_token1] = ACTIONS(6102), - [aux_sym_public_statement_token1] = ACTIONS(6102), - [aux_sym_derived_type_definition_token1] = ACTIONS(6102), - [aux_sym_procedure_attribute_token6] = ACTIONS(6102), - [aux_sym_variable_attributes_token2] = ACTIONS(6102), - [aux_sym_variable_attributes_token3] = ACTIONS(6102), - [aux_sym_variable_attributes_token5] = ACTIONS(6102), - [aux_sym__intrinsic_type_token1] = ACTIONS(6102), - [aux_sym__intrinsic_type_token3] = ACTIONS(6102), - [aux_sym__intrinsic_type_token4] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6102), - [aux_sym_type_qualifier_token1] = ACTIONS(6102), - [aux_sym_type_qualifier_token2] = ACTIONS(6102), - [anon_sym_SEMI] = ACTIONS(6106), - [aux_sym_stop_statement_token1] = ACTIONS(6102), - [aux_sym_stop_statement_token2] = ACTIONS(6102), - [aux_sym_subroutine_call_token1] = ACTIONS(6102), - [aux_sym_keyword_statement_token1] = ACTIONS(6102), - [aux_sym_keyword_statement_token2] = ACTIONS(6102), - [aux_sym_keyword_statement_token3] = ACTIONS(6102), - [aux_sym_keyword_statement_token4] = ACTIONS(6102), - [aux_sym_keyword_statement_token6] = ACTIONS(6102), - [aux_sym_keyword_statement_token7] = ACTIONS(6102), - [aux_sym_include_statement_token1] = ACTIONS(6102), - [aux_sym_data_statement_token1] = ACTIONS(6102), - [aux_sym_do_loop_statement_token1] = ACTIONS(6102), - [aux_sym__inline_if_statement_token1] = ACTIONS(6102), - [aux_sym_end_if_statement_token1] = ACTIONS(6102), - [aux_sym_elseif_clause_token2] = ACTIONS(6102), - [aux_sym__inline_where_statement_token1] = ACTIONS(6102), - [aux_sym__forall_control_expression_token1] = ACTIONS(6102), - [aux_sym_select_case_statement_token1] = ACTIONS(6102), - [aux_sym_select_case_statement_token3] = ACTIONS(6102), - [aux_sym_select_type_statement_token1] = ACTIONS(6102), - [aux_sym_select_rank_statement_token2] = ACTIONS(6102), - [aux_sym_block_construct_token1] = ACTIONS(6102), - [aux_sym_associate_statement_token1] = ACTIONS(6102), - [aux_sym_format_statement_token1] = ACTIONS(6102), - [aux_sym_print_statement_token1] = ACTIONS(6102), - [aux_sym_open_statement_token1] = ACTIONS(6102), - [aux_sym_close_statement_token1] = ACTIONS(6102), - [aux_sym_inquire_statement_token1] = ACTIONS(6102), - [aux_sym_file_position_statement_token1] = ACTIONS(6102), - [aux_sym_file_position_statement_token2] = ACTIONS(6102), - [aux_sym_file_position_statement_token3] = ACTIONS(6102), - [aux_sym_file_position_statement_token4] = ACTIONS(6102), - [aux_sym_allocate_statement_token1] = ACTIONS(6102), - [aux_sym_entry_statement_token1] = ACTIONS(6102), - [aux_sym_logical_expression_token5] = ACTIONS(6106), - [anon_sym_DOT] = ACTIONS(6102), - [anon_sym_LPAREN_SLASH] = ACTIONS(6106), - [anon_sym_LBRACK] = ACTIONS(6106), - [aux_sym_boolean_literal_token1] = ACTIONS(6106), - [aux_sym_boolean_literal_token2] = ACTIONS(6106), - [aux_sym_null_literal_token1] = ACTIONS(6102), - [aux_sym_coarray_statement_token1] = ACTIONS(6102), - [aux_sym_coarray_statement_token2] = ACTIONS(6102), - [aux_sym_coarray_statement_token6] = ACTIONS(6102), - [aux_sym_coarray_statement_token8] = ACTIONS(6102), - [aux_sym_coarray_statement_token11] = ACTIONS(6102), - [aux_sym_coarray_statement_token12] = ACTIONS(6102), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6102), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6102), - [aux_sym_identifier_token1] = ACTIONS(6102), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6106), - [sym__float_literal] = ACTIONS(6106), - [sym__boz_literal] = ACTIONS(6106), - [sym__string_literal] = ACTIONS(6106), - [sym__string_literal_kind] = ACTIONS(6106), + [1844] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token2] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(5832), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_end_program_statement_token2] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_contains_statement_token1] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), }, - [1984] = { - [aux_sym_preproc_include_token1] = ACTIONS(6108), - [aux_sym_preproc_def_token1] = ACTIONS(6108), - [aux_sym_preproc_if_token1] = ACTIONS(6108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6108), - [sym_preproc_directive] = ACTIONS(6108), - [anon_sym_LPAREN2] = ACTIONS(6108), - [sym_preproc_comment] = ACTIONS(6110), - [anon_sym_PLUS] = ACTIONS(6112), - [anon_sym_DASH] = ACTIONS(6112), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6108), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6108), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6108), - [aux_sym_procedure_attributes_token3] = ACTIONS(6108), - [aux_sym_end_function_statement_token1] = ACTIONS(6108), - [aux_sym_contains_statement_token1] = ACTIONS(6108), - [aux_sym_use_statement_token2] = ACTIONS(6108), - [aux_sym_implicit_statement_token4] = ACTIONS(6108), - [aux_sym_save_statement_token1] = ACTIONS(6108), - [aux_sym_private_statement_token1] = ACTIONS(6108), - [aux_sym_public_statement_token1] = ACTIONS(6108), - [aux_sym_derived_type_definition_token1] = ACTIONS(6108), - [aux_sym_procedure_attribute_token6] = ACTIONS(6108), - [aux_sym_variable_attributes_token2] = ACTIONS(6108), - [aux_sym_variable_attributes_token3] = ACTIONS(6108), - [aux_sym_variable_attributes_token5] = ACTIONS(6108), - [aux_sym__intrinsic_type_token1] = ACTIONS(6108), - [aux_sym__intrinsic_type_token3] = ACTIONS(6108), - [aux_sym__intrinsic_type_token4] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6108), - [aux_sym_type_qualifier_token1] = ACTIONS(6108), - [aux_sym_type_qualifier_token2] = ACTIONS(6108), - [anon_sym_SEMI] = ACTIONS(6112), - [aux_sym_stop_statement_token1] = ACTIONS(6108), - [aux_sym_stop_statement_token2] = ACTIONS(6108), - [aux_sym_subroutine_call_token1] = ACTIONS(6108), - [aux_sym_keyword_statement_token1] = ACTIONS(6108), - [aux_sym_keyword_statement_token2] = ACTIONS(6108), - [aux_sym_keyword_statement_token3] = ACTIONS(6108), - [aux_sym_keyword_statement_token4] = ACTIONS(6108), - [aux_sym_keyword_statement_token6] = ACTIONS(6108), - [aux_sym_keyword_statement_token7] = ACTIONS(6108), - [aux_sym_include_statement_token1] = ACTIONS(6108), - [aux_sym_data_statement_token1] = ACTIONS(6108), - [aux_sym_do_loop_statement_token1] = ACTIONS(6108), - [aux_sym__inline_if_statement_token1] = ACTIONS(6108), - [aux_sym_end_if_statement_token1] = ACTIONS(6108), - [aux_sym_elseif_clause_token2] = ACTIONS(6108), - [aux_sym__inline_where_statement_token1] = ACTIONS(6108), - [aux_sym__forall_control_expression_token1] = ACTIONS(6108), - [aux_sym_select_case_statement_token1] = ACTIONS(6108), - [aux_sym_select_case_statement_token3] = ACTIONS(6108), - [aux_sym_select_type_statement_token1] = ACTIONS(6108), - [aux_sym_select_rank_statement_token2] = ACTIONS(6108), - [aux_sym_block_construct_token1] = ACTIONS(6108), - [aux_sym_associate_statement_token1] = ACTIONS(6108), - [aux_sym_format_statement_token1] = ACTIONS(6108), - [aux_sym_print_statement_token1] = ACTIONS(6108), - [aux_sym_open_statement_token1] = ACTIONS(6108), - [aux_sym_close_statement_token1] = ACTIONS(6108), - [aux_sym_inquire_statement_token1] = ACTIONS(6108), - [aux_sym_file_position_statement_token1] = ACTIONS(6108), - [aux_sym_file_position_statement_token2] = ACTIONS(6108), - [aux_sym_file_position_statement_token3] = ACTIONS(6108), - [aux_sym_file_position_statement_token4] = ACTIONS(6108), - [aux_sym_allocate_statement_token1] = ACTIONS(6108), - [aux_sym_entry_statement_token1] = ACTIONS(6108), - [aux_sym_logical_expression_token5] = ACTIONS(6112), - [anon_sym_DOT] = ACTIONS(6108), - [anon_sym_LPAREN_SLASH] = ACTIONS(6112), - [anon_sym_LBRACK] = ACTIONS(6112), - [aux_sym_boolean_literal_token1] = ACTIONS(6112), - [aux_sym_boolean_literal_token2] = ACTIONS(6112), - [aux_sym_null_literal_token1] = ACTIONS(6108), - [aux_sym_coarray_statement_token1] = ACTIONS(6108), - [aux_sym_coarray_statement_token2] = ACTIONS(6108), - [aux_sym_coarray_statement_token6] = ACTIONS(6108), - [aux_sym_coarray_statement_token8] = ACTIONS(6108), - [aux_sym_coarray_statement_token11] = ACTIONS(6108), - [aux_sym_coarray_statement_token12] = ACTIONS(6108), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6108), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6108), - [aux_sym_identifier_token1] = ACTIONS(6108), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6112), - [sym__float_literal] = ACTIONS(6112), - [sym__boz_literal] = ACTIONS(6112), - [sym__string_literal] = ACTIONS(6112), - [sym__string_literal_kind] = ACTIONS(6112), + [1845] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token2] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(5834), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_end_program_statement_token2] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_contains_statement_token1] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [1985] = { - [aux_sym_preproc_include_token1] = ACTIONS(6114), - [aux_sym_preproc_def_token1] = ACTIONS(6114), - [aux_sym_preproc_if_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6114), - [sym_preproc_directive] = ACTIONS(6114), - [anon_sym_LPAREN2] = ACTIONS(6114), - [sym_preproc_comment] = ACTIONS(6116), - [anon_sym_PLUS] = ACTIONS(6118), - [anon_sym_DASH] = ACTIONS(6118), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6114), - [aux_sym_procedure_attributes_token3] = ACTIONS(6114), - [aux_sym_end_function_statement_token1] = ACTIONS(6114), - [aux_sym_contains_statement_token1] = ACTIONS(6114), - [aux_sym_use_statement_token2] = ACTIONS(6114), - [aux_sym_implicit_statement_token4] = ACTIONS(6114), - [aux_sym_save_statement_token1] = ACTIONS(6114), - [aux_sym_private_statement_token1] = ACTIONS(6114), - [aux_sym_public_statement_token1] = ACTIONS(6114), - [aux_sym_derived_type_definition_token1] = ACTIONS(6114), - [aux_sym_procedure_attribute_token6] = ACTIONS(6114), - [aux_sym_variable_attributes_token2] = ACTIONS(6114), - [aux_sym_variable_attributes_token3] = ACTIONS(6114), - [aux_sym_variable_attributes_token5] = ACTIONS(6114), - [aux_sym__intrinsic_type_token1] = ACTIONS(6114), - [aux_sym__intrinsic_type_token3] = ACTIONS(6114), - [aux_sym__intrinsic_type_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6114), - [aux_sym_type_qualifier_token1] = ACTIONS(6114), - [aux_sym_type_qualifier_token2] = ACTIONS(6114), - [anon_sym_SEMI] = ACTIONS(6118), - [aux_sym_stop_statement_token1] = ACTIONS(6114), - [aux_sym_stop_statement_token2] = ACTIONS(6114), - [aux_sym_subroutine_call_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token2] = ACTIONS(6114), - [aux_sym_keyword_statement_token3] = ACTIONS(6114), - [aux_sym_keyword_statement_token4] = ACTIONS(6114), - [aux_sym_keyword_statement_token6] = ACTIONS(6114), - [aux_sym_keyword_statement_token7] = ACTIONS(6114), - [aux_sym_include_statement_token1] = ACTIONS(6114), - [aux_sym_data_statement_token1] = ACTIONS(6114), - [aux_sym_do_loop_statement_token1] = ACTIONS(6114), - [aux_sym__inline_if_statement_token1] = ACTIONS(6114), - [aux_sym_end_if_statement_token1] = ACTIONS(6114), - [aux_sym_elseif_clause_token2] = ACTIONS(6114), - [aux_sym__inline_where_statement_token1] = ACTIONS(6114), - [aux_sym__forall_control_expression_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token3] = ACTIONS(6114), - [aux_sym_select_type_statement_token1] = ACTIONS(6114), - [aux_sym_select_rank_statement_token2] = ACTIONS(6114), - [aux_sym_block_construct_token1] = ACTIONS(6114), - [aux_sym_associate_statement_token1] = ACTIONS(6114), - [aux_sym_format_statement_token1] = ACTIONS(6114), - [aux_sym_print_statement_token1] = ACTIONS(6114), - [aux_sym_open_statement_token1] = ACTIONS(6114), - [aux_sym_close_statement_token1] = ACTIONS(6114), - [aux_sym_inquire_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token2] = ACTIONS(6114), - [aux_sym_file_position_statement_token3] = ACTIONS(6114), - [aux_sym_file_position_statement_token4] = ACTIONS(6114), - [aux_sym_allocate_statement_token1] = ACTIONS(6114), - [aux_sym_entry_statement_token1] = ACTIONS(6114), - [aux_sym_logical_expression_token5] = ACTIONS(6118), - [anon_sym_DOT] = ACTIONS(6114), - [anon_sym_LPAREN_SLASH] = ACTIONS(6118), - [anon_sym_LBRACK] = ACTIONS(6118), - [aux_sym_boolean_literal_token1] = ACTIONS(6118), - [aux_sym_boolean_literal_token2] = ACTIONS(6118), - [aux_sym_null_literal_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token2] = ACTIONS(6114), - [aux_sym_coarray_statement_token6] = ACTIONS(6114), - [aux_sym_coarray_statement_token8] = ACTIONS(6114), - [aux_sym_coarray_statement_token11] = ACTIONS(6114), - [aux_sym_coarray_statement_token12] = ACTIONS(6114), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6114), - [aux_sym_identifier_token1] = ACTIONS(6114), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6118), - [sym__float_literal] = ACTIONS(6118), - [sym__boz_literal] = ACTIONS(6118), - [sym__string_literal] = ACTIONS(6118), - [sym__string_literal_kind] = ACTIONS(6118), + [1846] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token2] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(5836), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_end_program_statement_token2] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_contains_statement_token1] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [1986] = { - [aux_sym_preproc_include_token1] = ACTIONS(6034), - [aux_sym_preproc_def_token1] = ACTIONS(6034), - [aux_sym_preproc_if_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6034), - [sym_preproc_directive] = ACTIONS(6034), - [anon_sym_LPAREN2] = ACTIONS(6034), - [sym_preproc_comment] = ACTIONS(6120), - [anon_sym_PLUS] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6038), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6034), - [aux_sym_procedure_attributes_token3] = ACTIONS(6034), - [aux_sym_end_function_statement_token1] = ACTIONS(6034), - [aux_sym_contains_statement_token1] = ACTIONS(6034), - [aux_sym_use_statement_token2] = ACTIONS(6034), - [aux_sym_implicit_statement_token4] = ACTIONS(6034), - [aux_sym_save_statement_token1] = ACTIONS(6034), - [aux_sym_private_statement_token1] = ACTIONS(6034), - [aux_sym_public_statement_token1] = ACTIONS(6034), - [aux_sym_derived_type_definition_token1] = ACTIONS(6034), - [aux_sym_procedure_attribute_token6] = ACTIONS(6034), - [aux_sym_variable_attributes_token2] = ACTIONS(6034), - [aux_sym_variable_attributes_token3] = ACTIONS(6034), - [aux_sym_variable_attributes_token5] = ACTIONS(6034), - [aux_sym__intrinsic_type_token1] = ACTIONS(6034), - [aux_sym__intrinsic_type_token3] = ACTIONS(6034), - [aux_sym__intrinsic_type_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6034), - [aux_sym_type_qualifier_token1] = ACTIONS(6034), - [aux_sym_type_qualifier_token2] = ACTIONS(6034), - [anon_sym_SEMI] = ACTIONS(6038), - [aux_sym_stop_statement_token1] = ACTIONS(6034), - [aux_sym_stop_statement_token2] = ACTIONS(6034), - [aux_sym_subroutine_call_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token2] = ACTIONS(6034), - [aux_sym_keyword_statement_token3] = ACTIONS(6034), - [aux_sym_keyword_statement_token4] = ACTIONS(6034), - [aux_sym_keyword_statement_token6] = ACTIONS(6034), - [aux_sym_keyword_statement_token7] = ACTIONS(6034), - [aux_sym_include_statement_token1] = ACTIONS(6034), - [aux_sym_data_statement_token1] = ACTIONS(6034), - [aux_sym_do_loop_statement_token1] = ACTIONS(6034), - [aux_sym__inline_if_statement_token1] = ACTIONS(6034), - [aux_sym_end_if_statement_token1] = ACTIONS(6034), - [aux_sym_elseif_clause_token2] = ACTIONS(6034), - [aux_sym__inline_where_statement_token1] = ACTIONS(6034), - [aux_sym__forall_control_expression_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token3] = ACTIONS(6034), - [aux_sym_select_type_statement_token1] = ACTIONS(6034), - [aux_sym_select_rank_statement_token2] = ACTIONS(6034), - [aux_sym_block_construct_token1] = ACTIONS(6034), - [aux_sym_associate_statement_token1] = ACTIONS(6034), - [aux_sym_format_statement_token1] = ACTIONS(6034), - [aux_sym_print_statement_token1] = ACTIONS(6034), - [aux_sym_open_statement_token1] = ACTIONS(6034), - [aux_sym_close_statement_token1] = ACTIONS(6034), - [aux_sym_inquire_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token2] = ACTIONS(6034), - [aux_sym_file_position_statement_token3] = ACTIONS(6034), - [aux_sym_file_position_statement_token4] = ACTIONS(6034), - [aux_sym_allocate_statement_token1] = ACTIONS(6034), - [aux_sym_entry_statement_token1] = ACTIONS(6034), - [aux_sym_logical_expression_token5] = ACTIONS(6038), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_LPAREN_SLASH] = ACTIONS(6038), - [anon_sym_LBRACK] = ACTIONS(6038), - [aux_sym_boolean_literal_token1] = ACTIONS(6038), - [aux_sym_boolean_literal_token2] = ACTIONS(6038), - [aux_sym_null_literal_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token2] = ACTIONS(6034), - [aux_sym_coarray_statement_token6] = ACTIONS(6034), - [aux_sym_coarray_statement_token8] = ACTIONS(6034), - [aux_sym_coarray_statement_token11] = ACTIONS(6034), - [aux_sym_coarray_statement_token12] = ACTIONS(6034), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6034), - [aux_sym_identifier_token1] = ACTIONS(6034), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6038), - [sym__float_literal] = ACTIONS(6038), - [sym__boz_literal] = ACTIONS(6038), - [sym__string_literal] = ACTIONS(6038), - [sym__string_literal_kind] = ACTIONS(6038), + [1847] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(5838), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym_end_where_statement_token1] = ACTIONS(4361), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [1987] = { - [aux_sym_preproc_include_token1] = ACTIONS(5962), - [aux_sym_preproc_def_token1] = ACTIONS(5962), - [aux_sym_preproc_if_token1] = ACTIONS(5962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5962), - [sym_preproc_directive] = ACTIONS(5962), - [anon_sym_LPAREN2] = ACTIONS(5962), - [sym_preproc_comment] = ACTIONS(6122), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5962), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5962), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5962), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5962), - [aux_sym_procedure_attributes_token3] = ACTIONS(5962), - [aux_sym_contains_statement_token1] = ACTIONS(5962), - [aux_sym_use_statement_token2] = ACTIONS(5962), - [aux_sym_implicit_statement_token4] = ACTIONS(5962), - [aux_sym_save_statement_token1] = ACTIONS(5962), - [aux_sym_private_statement_token1] = ACTIONS(5962), - [aux_sym_public_statement_token1] = ACTIONS(5962), - [aux_sym_derived_type_definition_token1] = ACTIONS(5962), - [aux_sym_procedure_attribute_token6] = ACTIONS(5962), - [aux_sym_variable_attributes_token2] = ACTIONS(5962), - [aux_sym_variable_attributes_token3] = ACTIONS(5962), - [aux_sym_variable_attributes_token5] = ACTIONS(5962), - [aux_sym__intrinsic_type_token1] = ACTIONS(5962), - [aux_sym__intrinsic_type_token3] = ACTIONS(5962), - [aux_sym__intrinsic_type_token4] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5962), - [aux_sym_type_qualifier_token1] = ACTIONS(5962), - [aux_sym_type_qualifier_token2] = ACTIONS(5962), - [anon_sym_SEMI] = ACTIONS(5966), - [aux_sym_stop_statement_token1] = ACTIONS(5962), - [aux_sym_stop_statement_token2] = ACTIONS(5962), - [aux_sym_subroutine_call_token1] = ACTIONS(5962), - [aux_sym_keyword_statement_token1] = ACTIONS(5962), - [aux_sym_keyword_statement_token2] = ACTIONS(5962), - [aux_sym_keyword_statement_token3] = ACTIONS(5962), - [aux_sym_keyword_statement_token4] = ACTIONS(5962), - [aux_sym_keyword_statement_token6] = ACTIONS(5962), - [aux_sym_keyword_statement_token7] = ACTIONS(5962), - [aux_sym_include_statement_token1] = ACTIONS(5962), - [aux_sym_data_statement_token1] = ACTIONS(5962), - [aux_sym_do_loop_statement_token1] = ACTIONS(5962), - [aux_sym__inline_if_statement_token1] = ACTIONS(5962), - [aux_sym_end_if_statement_token1] = ACTIONS(5962), - [aux_sym_elseif_clause_token2] = ACTIONS(5962), - [aux_sym__inline_where_statement_token1] = ACTIONS(5962), - [aux_sym__forall_control_expression_token1] = ACTIONS(5962), - [aux_sym_select_case_statement_token1] = ACTIONS(5962), - [aux_sym_select_case_statement_token3] = ACTIONS(5962), - [aux_sym_select_type_statement_token1] = ACTIONS(5962), - [aux_sym_select_rank_statement_token2] = ACTIONS(5962), - [aux_sym_block_construct_token1] = ACTIONS(5962), - [aux_sym_associate_statement_token1] = ACTIONS(5962), - [aux_sym_format_statement_token1] = ACTIONS(5962), - [aux_sym_print_statement_token1] = ACTIONS(5962), - [aux_sym_open_statement_token1] = ACTIONS(5962), - [aux_sym_close_statement_token1] = ACTIONS(5962), - [aux_sym_inquire_statement_token1] = ACTIONS(5962), - [aux_sym_file_position_statement_token1] = ACTIONS(5962), - [aux_sym_file_position_statement_token2] = ACTIONS(5962), - [aux_sym_file_position_statement_token3] = ACTIONS(5962), - [aux_sym_file_position_statement_token4] = ACTIONS(5962), - [aux_sym_allocate_statement_token1] = ACTIONS(5962), - [aux_sym_entry_statement_token1] = ACTIONS(5962), - [aux_sym_logical_expression_token5] = ACTIONS(5966), - [anon_sym_DOT] = ACTIONS(5962), - [anon_sym_LPAREN_SLASH] = ACTIONS(5966), - [anon_sym_LBRACK] = ACTIONS(5966), - [aux_sym_boolean_literal_token1] = ACTIONS(5966), - [aux_sym_boolean_literal_token2] = ACTIONS(5966), - [aux_sym_null_literal_token1] = ACTIONS(5962), - [aux_sym_coarray_statement_token1] = ACTIONS(5962), - [aux_sym_coarray_statement_token2] = ACTIONS(5962), - [aux_sym_coarray_statement_token6] = ACTIONS(5962), - [aux_sym_coarray_statement_token8] = ACTIONS(5962), - [aux_sym_coarray_statement_token11] = ACTIONS(5962), - [aux_sym_coarray_statement_token12] = ACTIONS(5962), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5962), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5962), - [aux_sym_identifier_token1] = ACTIONS(5962), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5966), - [sym__float_literal] = ACTIONS(5966), - [sym__boz_literal] = ACTIONS(5966), - [sym__string_literal] = ACTIONS(5966), - [sym__string_literal_kind] = ACTIONS(5966), + [1848] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5840), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_end_program_statement_token2] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [1988] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym_end_where_statement_token1] = ACTIONS(4559), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [1849] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(5842), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_end_program_statement_token2] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [1989] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym_end_where_statement_token1] = ACTIONS(4567), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [1850] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token2] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(5844), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_end_program_statement_token2] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_contains_statement_token1] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), }, - [1990] = { + [1851] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5846), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym_end_where_statement_token1] = ACTIONS(4273), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [1852] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(5848), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym_end_where_statement_token1] = ACTIONS(4537), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [1853] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(5850), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym_end_where_statement_token1] = ACTIONS(5512), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [1854] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -342764,8 +329145,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [sym_preproc_comment] = ACTIONS(5852), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), @@ -342795,7 +329177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -342833,12 +329215,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -342850,1805 +329232,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [1991] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym_end_where_statement_token1] = ACTIONS(4575), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [1992] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym_end_where_statement_token1] = ACTIONS(4579), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), - }, - [1993] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym_end_where_statement_token1] = ACTIONS(4583), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), - }, - [1994] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6124), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token2] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_end_select_statement_token1] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [1995] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym_end_where_statement_token1] = ACTIONS(4587), - [aux_sym_elsewhere_clause_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [1996] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6126), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token2] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_end_select_statement_token1] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [1997] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6128), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token2] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_end_select_statement_token1] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [1998] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6130), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token2] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_end_select_statement_token1] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [1999] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6132), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token2] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_end_select_statement_token1] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [2000] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6134), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token2] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_end_select_statement_token1] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [2001] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6136), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token2] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_end_select_statement_token1] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [2002] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6138), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token2] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_end_select_statement_token1] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [2003] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6140), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_end_select_statement_token1] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [2004] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6142), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_end_select_statement_token1] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [2005] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6144), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_end_select_statement_token1] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5582), [sym__float_literal] = ACTIONS(5582), [sym__boz_literal] = ACTIONS(5582), [sym__string_literal] = ACTIONS(5582), [sym__string_literal_kind] = ACTIONS(5582), }, - [2006] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6146), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_end_select_statement_token1] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [2007] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6148), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_end_select_statement_token1] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), + [1855] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token2] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(5854), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_end_program_statement_token2] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_contains_statement_token1] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), }, - [2008] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6150), + [1856] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token2] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(5856), [anon_sym_PLUS] = ACTIONS(5558), [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_end_program_statement_token2] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_contains_statement_token1] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_end_select_statement_token1] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(4357), [anon_sym_LPAREN_SLASH] = ACTIONS(5558), [anon_sym_LBRACK] = ACTIONS(5558), [aux_sym_boolean_literal_token1] = ACTIONS(5558), [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5558), [sym__float_literal] = ACTIONS(5558), @@ -344656,707 +329440,1320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5558), [sym__string_literal_kind] = ACTIONS(5558), }, - [2009] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6152), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_end_select_statement_token1] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [2010] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6154), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_end_select_statement_token1] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [2011] = { - [aux_sym_preproc_include_token1] = ACTIONS(6078), - [aux_sym_preproc_def_token1] = ACTIONS(6078), - [aux_sym_preproc_if_token1] = ACTIONS(6078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6078), - [sym_preproc_directive] = ACTIONS(6078), - [anon_sym_LPAREN2] = ACTIONS(6078), - [sym_preproc_comment] = ACTIONS(6156), - [anon_sym_PLUS] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6082), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6078), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6078), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6078), - [aux_sym_procedure_attributes_token3] = ACTIONS(6078), - [aux_sym_end_function_statement_token1] = ACTIONS(6078), - [aux_sym_contains_statement_token1] = ACTIONS(6078), - [aux_sym_use_statement_token2] = ACTIONS(6078), - [aux_sym_implicit_statement_token4] = ACTIONS(6078), - [aux_sym_save_statement_token1] = ACTIONS(6078), - [aux_sym_private_statement_token1] = ACTIONS(6078), - [aux_sym_public_statement_token1] = ACTIONS(6078), - [aux_sym_derived_type_definition_token1] = ACTIONS(6078), - [aux_sym_procedure_attribute_token6] = ACTIONS(6078), - [aux_sym_variable_attributes_token2] = ACTIONS(6078), - [aux_sym_variable_attributes_token3] = ACTIONS(6078), - [aux_sym_variable_attributes_token5] = ACTIONS(6078), - [aux_sym__intrinsic_type_token1] = ACTIONS(6078), - [aux_sym__intrinsic_type_token3] = ACTIONS(6078), - [aux_sym__intrinsic_type_token4] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6078), - [aux_sym_type_qualifier_token1] = ACTIONS(6078), - [aux_sym_type_qualifier_token2] = ACTIONS(6078), - [anon_sym_SEMI] = ACTIONS(6082), - [aux_sym_stop_statement_token1] = ACTIONS(6078), - [aux_sym_stop_statement_token2] = ACTIONS(6078), - [aux_sym_subroutine_call_token1] = ACTIONS(6078), - [aux_sym_keyword_statement_token1] = ACTIONS(6078), - [aux_sym_keyword_statement_token2] = ACTIONS(6078), - [aux_sym_keyword_statement_token3] = ACTIONS(6078), - [aux_sym_keyword_statement_token4] = ACTIONS(6078), - [aux_sym_keyword_statement_token6] = ACTIONS(6078), - [aux_sym_keyword_statement_token7] = ACTIONS(6078), - [aux_sym_include_statement_token1] = ACTIONS(6078), - [aux_sym_data_statement_token1] = ACTIONS(6078), - [aux_sym_do_loop_statement_token1] = ACTIONS(6078), - [aux_sym__inline_if_statement_token1] = ACTIONS(6078), - [aux_sym_end_if_statement_token1] = ACTIONS(6078), - [aux_sym_elseif_clause_token2] = ACTIONS(6078), - [aux_sym__inline_where_statement_token1] = ACTIONS(6078), - [aux_sym__forall_control_expression_token1] = ACTIONS(6078), - [aux_sym_select_case_statement_token1] = ACTIONS(6078), - [aux_sym_select_case_statement_token3] = ACTIONS(6078), - [aux_sym_select_type_statement_token1] = ACTIONS(6078), - [aux_sym_select_rank_statement_token2] = ACTIONS(6078), - [aux_sym_block_construct_token1] = ACTIONS(6078), - [aux_sym_associate_statement_token1] = ACTIONS(6078), - [aux_sym_format_statement_token1] = ACTIONS(6078), - [aux_sym_print_statement_token1] = ACTIONS(6078), - [aux_sym_open_statement_token1] = ACTIONS(6078), - [aux_sym_close_statement_token1] = ACTIONS(6078), - [aux_sym_inquire_statement_token1] = ACTIONS(6078), - [aux_sym_file_position_statement_token1] = ACTIONS(6078), - [aux_sym_file_position_statement_token2] = ACTIONS(6078), - [aux_sym_file_position_statement_token3] = ACTIONS(6078), - [aux_sym_file_position_statement_token4] = ACTIONS(6078), - [aux_sym_allocate_statement_token1] = ACTIONS(6078), - [aux_sym_entry_statement_token1] = ACTIONS(6078), - [aux_sym_logical_expression_token5] = ACTIONS(6082), - [anon_sym_DOT] = ACTIONS(6078), - [anon_sym_LPAREN_SLASH] = ACTIONS(6082), - [anon_sym_LBRACK] = ACTIONS(6082), - [aux_sym_boolean_literal_token1] = ACTIONS(6082), - [aux_sym_boolean_literal_token2] = ACTIONS(6082), - [aux_sym_null_literal_token1] = ACTIONS(6078), - [aux_sym_coarray_statement_token1] = ACTIONS(6078), - [aux_sym_coarray_statement_token2] = ACTIONS(6078), - [aux_sym_coarray_statement_token6] = ACTIONS(6078), - [aux_sym_coarray_statement_token8] = ACTIONS(6078), - [aux_sym_coarray_statement_token11] = ACTIONS(6078), - [aux_sym_coarray_statement_token12] = ACTIONS(6078), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6078), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6078), - [aux_sym_identifier_token1] = ACTIONS(6078), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6082), - [sym__float_literal] = ACTIONS(6082), - [sym__boz_literal] = ACTIONS(6082), - [sym__string_literal] = ACTIONS(6082), - [sym__string_literal_kind] = ACTIONS(6082), - }, - [2012] = { - [aux_sym_preproc_include_token1] = ACTIONS(5948), - [aux_sym_preproc_def_token1] = ACTIONS(5948), - [aux_sym_preproc_if_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5948), - [sym_preproc_directive] = ACTIONS(5948), - [anon_sym_LPAREN2] = ACTIONS(5948), - [sym_preproc_comment] = ACTIONS(6158), - [anon_sym_PLUS] = ACTIONS(5952), - [anon_sym_DASH] = ACTIONS(5952), + [1857] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(5858), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5948), - [aux_sym_procedure_attributes_token3] = ACTIONS(5948), - [aux_sym_end_function_statement_token1] = ACTIONS(5948), - [aux_sym_contains_statement_token1] = ACTIONS(5948), - [aux_sym_use_statement_token2] = ACTIONS(5948), - [aux_sym_implicit_statement_token4] = ACTIONS(5948), - [aux_sym_save_statement_token1] = ACTIONS(5948), - [aux_sym_private_statement_token1] = ACTIONS(5948), - [aux_sym_public_statement_token1] = ACTIONS(5948), - [aux_sym_derived_type_definition_token1] = ACTIONS(5948), - [aux_sym_procedure_attribute_token6] = ACTIONS(5948), - [aux_sym_variable_attributes_token2] = ACTIONS(5948), - [aux_sym_variable_attributes_token3] = ACTIONS(5948), - [aux_sym_variable_attributes_token5] = ACTIONS(5948), - [aux_sym__intrinsic_type_token1] = ACTIONS(5948), - [aux_sym__intrinsic_type_token3] = ACTIONS(5948), - [aux_sym__intrinsic_type_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5948), - [aux_sym_type_qualifier_token1] = ACTIONS(5948), - [aux_sym_type_qualifier_token2] = ACTIONS(5948), - [anon_sym_SEMI] = ACTIONS(5952), - [aux_sym_stop_statement_token1] = ACTIONS(5948), - [aux_sym_stop_statement_token2] = ACTIONS(5948), - [aux_sym_subroutine_call_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token2] = ACTIONS(5948), - [aux_sym_keyword_statement_token3] = ACTIONS(5948), - [aux_sym_keyword_statement_token4] = ACTIONS(5948), - [aux_sym_keyword_statement_token6] = ACTIONS(5948), - [aux_sym_keyword_statement_token7] = ACTIONS(5948), - [aux_sym_include_statement_token1] = ACTIONS(5948), - [aux_sym_data_statement_token1] = ACTIONS(5948), - [aux_sym_do_loop_statement_token1] = ACTIONS(5948), - [aux_sym__inline_if_statement_token1] = ACTIONS(5948), - [aux_sym_end_if_statement_token1] = ACTIONS(5948), - [aux_sym_elseif_clause_token2] = ACTIONS(5948), - [aux_sym__inline_where_statement_token1] = ACTIONS(5948), - [aux_sym__forall_control_expression_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token3] = ACTIONS(5948), - [aux_sym_select_type_statement_token1] = ACTIONS(5948), - [aux_sym_select_rank_statement_token2] = ACTIONS(5948), - [aux_sym_block_construct_token1] = ACTIONS(5948), - [aux_sym_associate_statement_token1] = ACTIONS(5948), - [aux_sym_format_statement_token1] = ACTIONS(5948), - [aux_sym_print_statement_token1] = ACTIONS(5948), - [aux_sym_open_statement_token1] = ACTIONS(5948), - [aux_sym_close_statement_token1] = ACTIONS(5948), - [aux_sym_inquire_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token2] = ACTIONS(5948), - [aux_sym_file_position_statement_token3] = ACTIONS(5948), - [aux_sym_file_position_statement_token4] = ACTIONS(5948), - [aux_sym_allocate_statement_token1] = ACTIONS(5948), - [aux_sym_entry_statement_token1] = ACTIONS(5948), - [aux_sym_logical_expression_token5] = ACTIONS(5952), - [anon_sym_DOT] = ACTIONS(5948), - [anon_sym_LPAREN_SLASH] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5952), - [aux_sym_boolean_literal_token1] = ACTIONS(5952), - [aux_sym_boolean_literal_token2] = ACTIONS(5952), - [aux_sym_null_literal_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token2] = ACTIONS(5948), - [aux_sym_coarray_statement_token6] = ACTIONS(5948), - [aux_sym_coarray_statement_token8] = ACTIONS(5948), - [aux_sym_coarray_statement_token11] = ACTIONS(5948), - [aux_sym_coarray_statement_token12] = ACTIONS(5948), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5948), - [aux_sym_identifier_token1] = ACTIONS(5948), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_end_program_statement_token2] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5952), - [sym__float_literal] = ACTIONS(5952), - [sym__boz_literal] = ACTIONS(5952), - [sym__string_literal] = ACTIONS(5952), - [sym__string_literal_kind] = ACTIONS(5952), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2013] = { - [aux_sym_preproc_include_token1] = ACTIONS(5974), - [aux_sym_preproc_def_token1] = ACTIONS(5974), - [aux_sym_preproc_if_token1] = ACTIONS(5974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5974), - [sym_preproc_directive] = ACTIONS(5974), - [anon_sym_LPAREN2] = ACTIONS(5974), - [sym_preproc_comment] = ACTIONS(6160), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5974), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5974), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5974), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5974), - [aux_sym_procedure_attributes_token3] = ACTIONS(5974), - [aux_sym_contains_statement_token1] = ACTIONS(5974), - [aux_sym_use_statement_token2] = ACTIONS(5974), - [aux_sym_implicit_statement_token4] = ACTIONS(5974), - [aux_sym_save_statement_token1] = ACTIONS(5974), - [aux_sym_private_statement_token1] = ACTIONS(5974), - [aux_sym_public_statement_token1] = ACTIONS(5974), - [aux_sym_derived_type_definition_token1] = ACTIONS(5974), - [aux_sym_procedure_attribute_token6] = ACTIONS(5974), - [aux_sym_variable_attributes_token2] = ACTIONS(5974), - [aux_sym_variable_attributes_token3] = ACTIONS(5974), - [aux_sym_variable_attributes_token5] = ACTIONS(5974), - [aux_sym__intrinsic_type_token1] = ACTIONS(5974), - [aux_sym__intrinsic_type_token3] = ACTIONS(5974), - [aux_sym__intrinsic_type_token4] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5974), - [aux_sym_type_qualifier_token1] = ACTIONS(5974), - [aux_sym_type_qualifier_token2] = ACTIONS(5974), - [anon_sym_SEMI] = ACTIONS(5978), - [aux_sym_stop_statement_token1] = ACTIONS(5974), - [aux_sym_stop_statement_token2] = ACTIONS(5974), - [aux_sym_subroutine_call_token1] = ACTIONS(5974), - [aux_sym_keyword_statement_token1] = ACTIONS(5974), - [aux_sym_keyword_statement_token2] = ACTIONS(5974), - [aux_sym_keyword_statement_token3] = ACTIONS(5974), - [aux_sym_keyword_statement_token4] = ACTIONS(5974), - [aux_sym_keyword_statement_token6] = ACTIONS(5974), - [aux_sym_keyword_statement_token7] = ACTIONS(5974), - [aux_sym_include_statement_token1] = ACTIONS(5974), - [aux_sym_data_statement_token1] = ACTIONS(5974), - [aux_sym_do_loop_statement_token1] = ACTIONS(5974), - [aux_sym__inline_if_statement_token1] = ACTIONS(5974), - [aux_sym_end_if_statement_token1] = ACTIONS(5974), - [aux_sym_elseif_clause_token2] = ACTIONS(5974), - [aux_sym__inline_where_statement_token1] = ACTIONS(5974), - [aux_sym__forall_control_expression_token1] = ACTIONS(5974), - [aux_sym_select_case_statement_token1] = ACTIONS(5974), - [aux_sym_select_case_statement_token3] = ACTIONS(5974), - [aux_sym_select_type_statement_token1] = ACTIONS(5974), - [aux_sym_select_rank_statement_token2] = ACTIONS(5974), - [aux_sym_block_construct_token1] = ACTIONS(5974), - [aux_sym_associate_statement_token1] = ACTIONS(5974), - [aux_sym_format_statement_token1] = ACTIONS(5974), - [aux_sym_print_statement_token1] = ACTIONS(5974), - [aux_sym_open_statement_token1] = ACTIONS(5974), - [aux_sym_close_statement_token1] = ACTIONS(5974), - [aux_sym_inquire_statement_token1] = ACTIONS(5974), - [aux_sym_file_position_statement_token1] = ACTIONS(5974), - [aux_sym_file_position_statement_token2] = ACTIONS(5974), - [aux_sym_file_position_statement_token3] = ACTIONS(5974), - [aux_sym_file_position_statement_token4] = ACTIONS(5974), - [aux_sym_allocate_statement_token1] = ACTIONS(5974), - [aux_sym_entry_statement_token1] = ACTIONS(5974), - [aux_sym_logical_expression_token5] = ACTIONS(5978), - [anon_sym_DOT] = ACTIONS(5974), - [anon_sym_LPAREN_SLASH] = ACTIONS(5978), - [anon_sym_LBRACK] = ACTIONS(5978), - [aux_sym_boolean_literal_token1] = ACTIONS(5978), - [aux_sym_boolean_literal_token2] = ACTIONS(5978), - [aux_sym_null_literal_token1] = ACTIONS(5974), - [aux_sym_coarray_statement_token1] = ACTIONS(5974), - [aux_sym_coarray_statement_token2] = ACTIONS(5974), - [aux_sym_coarray_statement_token6] = ACTIONS(5974), - [aux_sym_coarray_statement_token8] = ACTIONS(5974), - [aux_sym_coarray_statement_token11] = ACTIONS(5974), - [aux_sym_coarray_statement_token12] = ACTIONS(5974), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5974), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5974), - [aux_sym_identifier_token1] = ACTIONS(5974), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5978), - [sym__float_literal] = ACTIONS(5978), - [sym__boz_literal] = ACTIONS(5978), - [sym__string_literal] = ACTIONS(5978), - [sym__string_literal_kind] = ACTIONS(5978), + [1858] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(5860), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym_end_where_statement_token1] = ACTIONS(5522), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2014] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token2] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [1859] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(5862), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_end_program_statement_token2] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2015] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token2] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [1860] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(5864), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym_end_where_statement_token1] = ACTIONS(5538), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), }, - [2016] = { + [1861] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(5866), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym_end_where_statement_token1] = ACTIONS(5550), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [1862] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(5868), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym_end_where_statement_token1] = ACTIONS(5544), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [1863] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(5870), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym_end_where_statement_token1] = ACTIONS(5528), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [1864] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(5872), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym_end_where_statement_token1] = ACTIONS(4935), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [1865] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(5874), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym_end_where_statement_token1] = ACTIONS(4945), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [1866] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token2] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(5876), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_end_program_statement_token2] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_contains_statement_token1] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [1867] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(5878), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym_end_where_statement_token1] = ACTIONS(4353), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), + }, + [1868] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token2] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(5880), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_end_program_statement_token2] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_contains_statement_token1] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [1869] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token2] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(5882), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_end_program_statement_token2] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_contains_statement_token1] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [1870] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -345365,8 +330762,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [sym_preproc_comment] = ACTIONS(5884), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_end_program_statement_token2] = ACTIONS(4571), @@ -345398,7 +330796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -345433,12 +330831,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -345450,705 +330848,1107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2017] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_program_statement_token2] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [1871] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(5886), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym_end_where_statement_token1] = ACTIONS(5566), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), }, - [2018] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [1872] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(5888), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_program_statement_token2] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_end_program_statement_token2] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2019] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_end_program_statement_token2] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [1873] = { + [aux_sym_preproc_include_token1] = ACTIONS(5890), + [aux_sym_preproc_def_token1] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5890), + [sym_preproc_directive] = ACTIONS(5890), + [anon_sym_LPAREN2] = ACTIONS(5890), + [sym_preproc_comment] = ACTIONS(5892), + [anon_sym_PLUS] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5890), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5890), + [aux_sym_procedure_attributes_token3] = ACTIONS(5890), + [aux_sym_contains_statement_token1] = ACTIONS(5890), + [aux_sym_use_statement_token2] = ACTIONS(5890), + [aux_sym_implicit_statement_token4] = ACTIONS(5890), + [aux_sym_save_statement_token1] = ACTIONS(5890), + [aux_sym_private_statement_token1] = ACTIONS(5890), + [aux_sym_public_statement_token1] = ACTIONS(5890), + [aux_sym_derived_type_definition_token1] = ACTIONS(5890), + [aux_sym_procedure_attribute_token6] = ACTIONS(5890), + [aux_sym_variable_attributes_token2] = ACTIONS(5890), + [aux_sym_variable_attributes_token3] = ACTIONS(5890), + [aux_sym_variable_attributes_token5] = ACTIONS(5890), + [aux_sym__intrinsic_type_token1] = ACTIONS(5890), + [aux_sym__intrinsic_type_token3] = ACTIONS(5890), + [aux_sym__intrinsic_type_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5890), + [aux_sym_type_qualifier_token1] = ACTIONS(5890), + [aux_sym_type_qualifier_token2] = ACTIONS(5890), + [anon_sym_SEMI] = ACTIONS(5894), + [aux_sym_stop_statement_token1] = ACTIONS(5890), + [aux_sym_stop_statement_token2] = ACTIONS(5890), + [aux_sym_subroutine_call_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token2] = ACTIONS(5890), + [aux_sym_keyword_statement_token3] = ACTIONS(5890), + [aux_sym_keyword_statement_token4] = ACTIONS(5890), + [aux_sym_keyword_statement_token6] = ACTIONS(5890), + [aux_sym_keyword_statement_token7] = ACTIONS(5890), + [aux_sym_include_statement_token1] = ACTIONS(5890), + [aux_sym_data_statement_token1] = ACTIONS(5890), + [aux_sym_do_loop_statement_token1] = ACTIONS(5890), + [aux_sym__inline_if_statement_token1] = ACTIONS(5890), + [aux_sym_end_if_statement_token1] = ACTIONS(5890), + [aux_sym_elseif_clause_token2] = ACTIONS(5890), + [aux_sym__inline_where_statement_token1] = ACTIONS(5890), + [aux_sym__forall_control_expression_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token3] = ACTIONS(5890), + [aux_sym_select_type_statement_token1] = ACTIONS(5890), + [aux_sym_select_rank_statement_token2] = ACTIONS(5890), + [aux_sym_block_construct_token1] = ACTIONS(5890), + [aux_sym_associate_statement_token1] = ACTIONS(5890), + [aux_sym_format_statement_token1] = ACTIONS(5890), + [aux_sym_print_statement_token1] = ACTIONS(5890), + [aux_sym_open_statement_token1] = ACTIONS(5890), + [aux_sym_close_statement_token1] = ACTIONS(5890), + [aux_sym_inquire_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token2] = ACTIONS(5890), + [aux_sym_file_position_statement_token3] = ACTIONS(5890), + [aux_sym_file_position_statement_token4] = ACTIONS(5890), + [aux_sym_allocate_statement_token1] = ACTIONS(5890), + [aux_sym_entry_statement_token1] = ACTIONS(5890), + [aux_sym_logical_expression_token5] = ACTIONS(5894), + [anon_sym_DOT] = ACTIONS(5890), + [anon_sym_LPAREN_SLASH] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(5894), + [aux_sym_boolean_literal_token1] = ACTIONS(5894), + [aux_sym_boolean_literal_token2] = ACTIONS(5894), + [aux_sym_null_literal_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token2] = ACTIONS(5890), + [aux_sym_coarray_statement_token6] = ACTIONS(5890), + [aux_sym_coarray_statement_token8] = ACTIONS(5890), + [aux_sym_coarray_statement_token11] = ACTIONS(5890), + [aux_sym_coarray_statement_token12] = ACTIONS(5890), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5890), + [aux_sym_identifier_token1] = ACTIONS(5890), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5894), + [sym__float_literal] = ACTIONS(5894), + [sym__boz_literal] = ACTIONS(5894), + [sym__string_literal] = ACTIONS(5894), + [sym__string_literal_kind] = ACTIONS(5894), }, - [2020] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_program_statement_token2] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [1874] = { + [aux_sym_preproc_include_token1] = ACTIONS(5896), + [aux_sym_preproc_def_token1] = ACTIONS(5896), + [aux_sym_preproc_if_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5896), + [sym_preproc_directive] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(5896), + [sym_preproc_comment] = ACTIONS(5898), + [anon_sym_PLUS] = ACTIONS(5900), + [anon_sym_DASH] = ACTIONS(5900), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5896), + [aux_sym_procedure_attributes_token3] = ACTIONS(5896), + [aux_sym_end_function_statement_token1] = ACTIONS(5896), + [aux_sym_contains_statement_token1] = ACTIONS(5896), + [aux_sym_use_statement_token2] = ACTIONS(5896), + [aux_sym_implicit_statement_token4] = ACTIONS(5896), + [aux_sym_save_statement_token1] = ACTIONS(5896), + [aux_sym_private_statement_token1] = ACTIONS(5896), + [aux_sym_public_statement_token1] = ACTIONS(5896), + [aux_sym_derived_type_definition_token1] = ACTIONS(5896), + [aux_sym_procedure_attribute_token6] = ACTIONS(5896), + [aux_sym_variable_attributes_token2] = ACTIONS(5896), + [aux_sym_variable_attributes_token3] = ACTIONS(5896), + [aux_sym_variable_attributes_token5] = ACTIONS(5896), + [aux_sym__intrinsic_type_token1] = ACTIONS(5896), + [aux_sym__intrinsic_type_token3] = ACTIONS(5896), + [aux_sym__intrinsic_type_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5896), + [aux_sym_type_qualifier_token1] = ACTIONS(5896), + [aux_sym_type_qualifier_token2] = ACTIONS(5896), + [anon_sym_SEMI] = ACTIONS(5900), + [aux_sym_stop_statement_token1] = ACTIONS(5896), + [aux_sym_stop_statement_token2] = ACTIONS(5896), + [aux_sym_subroutine_call_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token2] = ACTIONS(5896), + [aux_sym_keyword_statement_token3] = ACTIONS(5896), + [aux_sym_keyword_statement_token4] = ACTIONS(5896), + [aux_sym_keyword_statement_token6] = ACTIONS(5896), + [aux_sym_keyword_statement_token7] = ACTIONS(5896), + [aux_sym_include_statement_token1] = ACTIONS(5896), + [aux_sym_data_statement_token1] = ACTIONS(5896), + [aux_sym_do_loop_statement_token1] = ACTIONS(5896), + [aux_sym__inline_if_statement_token1] = ACTIONS(5896), + [aux_sym_end_if_statement_token1] = ACTIONS(5896), + [aux_sym_elseif_clause_token2] = ACTIONS(5896), + [aux_sym__inline_where_statement_token1] = ACTIONS(5896), + [aux_sym__forall_control_expression_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token3] = ACTIONS(5896), + [aux_sym_select_type_statement_token1] = ACTIONS(5896), + [aux_sym_select_rank_statement_token2] = ACTIONS(5896), + [aux_sym_block_construct_token1] = ACTIONS(5896), + [aux_sym_associate_statement_token1] = ACTIONS(5896), + [aux_sym_format_statement_token1] = ACTIONS(5896), + [aux_sym_print_statement_token1] = ACTIONS(5896), + [aux_sym_open_statement_token1] = ACTIONS(5896), + [aux_sym_close_statement_token1] = ACTIONS(5896), + [aux_sym_inquire_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token2] = ACTIONS(5896), + [aux_sym_file_position_statement_token3] = ACTIONS(5896), + [aux_sym_file_position_statement_token4] = ACTIONS(5896), + [aux_sym_allocate_statement_token1] = ACTIONS(5896), + [aux_sym_entry_statement_token1] = ACTIONS(5896), + [aux_sym_logical_expression_token5] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_LPAREN_SLASH] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [aux_sym_boolean_literal_token1] = ACTIONS(5900), + [aux_sym_boolean_literal_token2] = ACTIONS(5900), + [aux_sym_null_literal_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token2] = ACTIONS(5896), + [aux_sym_coarray_statement_token6] = ACTIONS(5896), + [aux_sym_coarray_statement_token8] = ACTIONS(5896), + [aux_sym_coarray_statement_token11] = ACTIONS(5896), + [aux_sym_coarray_statement_token12] = ACTIONS(5896), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5896), + [aux_sym_identifier_token1] = ACTIONS(5896), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5900), + [sym__float_literal] = ACTIONS(5900), + [sym__boz_literal] = ACTIONS(5900), + [sym__string_literal] = ACTIONS(5900), + [sym__string_literal_kind] = ACTIONS(5900), }, - [2021] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6162), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_end_program_statement_token2] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [1875] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(5902), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_contains_statement_token1] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), }, - [2022] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6164), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1876] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(5904), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token2] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_end_select_statement_token1] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), + }, + [1877] = { + [aux_sym_preproc_include_token1] = ACTIONS(5906), + [aux_sym_preproc_def_token1] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), + [sym_preproc_directive] = ACTIONS(5906), + [anon_sym_LPAREN2] = ACTIONS(5906), + [sym_preproc_comment] = ACTIONS(5908), + [anon_sym_PLUS] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5906), + [aux_sym_procedure_attributes_token3] = ACTIONS(5906), + [aux_sym_end_function_statement_token1] = ACTIONS(5906), + [aux_sym_contains_statement_token1] = ACTIONS(5906), + [aux_sym_use_statement_token2] = ACTIONS(5906), + [aux_sym_implicit_statement_token4] = ACTIONS(5906), + [aux_sym_save_statement_token1] = ACTIONS(5906), + [aux_sym_private_statement_token1] = ACTIONS(5906), + [aux_sym_public_statement_token1] = ACTIONS(5906), + [aux_sym_derived_type_definition_token1] = ACTIONS(5906), + [aux_sym_procedure_attribute_token6] = ACTIONS(5906), + [aux_sym_variable_attributes_token2] = ACTIONS(5906), + [aux_sym_variable_attributes_token3] = ACTIONS(5906), + [aux_sym_variable_attributes_token5] = ACTIONS(5906), + [aux_sym__intrinsic_type_token1] = ACTIONS(5906), + [aux_sym__intrinsic_type_token3] = ACTIONS(5906), + [aux_sym__intrinsic_type_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5906), + [aux_sym_type_qualifier_token1] = ACTIONS(5906), + [aux_sym_type_qualifier_token2] = ACTIONS(5906), + [anon_sym_SEMI] = ACTIONS(5910), + [aux_sym_stop_statement_token1] = ACTIONS(5906), + [aux_sym_stop_statement_token2] = ACTIONS(5906), + [aux_sym_subroutine_call_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token2] = ACTIONS(5906), + [aux_sym_keyword_statement_token3] = ACTIONS(5906), + [aux_sym_keyword_statement_token4] = ACTIONS(5906), + [aux_sym_keyword_statement_token6] = ACTIONS(5906), + [aux_sym_keyword_statement_token7] = ACTIONS(5906), + [aux_sym_include_statement_token1] = ACTIONS(5906), + [aux_sym_data_statement_token1] = ACTIONS(5906), + [aux_sym_do_loop_statement_token1] = ACTIONS(5906), + [aux_sym__inline_if_statement_token1] = ACTIONS(5906), + [aux_sym_end_if_statement_token1] = ACTIONS(5906), + [aux_sym_elseif_clause_token2] = ACTIONS(5906), + [aux_sym__inline_where_statement_token1] = ACTIONS(5906), + [aux_sym__forall_control_expression_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token3] = ACTIONS(5906), + [aux_sym_select_type_statement_token1] = ACTIONS(5906), + [aux_sym_select_rank_statement_token2] = ACTIONS(5906), + [aux_sym_block_construct_token1] = ACTIONS(5906), + [aux_sym_associate_statement_token1] = ACTIONS(5906), + [aux_sym_format_statement_token1] = ACTIONS(5906), + [aux_sym_print_statement_token1] = ACTIONS(5906), + [aux_sym_open_statement_token1] = ACTIONS(5906), + [aux_sym_close_statement_token1] = ACTIONS(5906), + [aux_sym_inquire_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token2] = ACTIONS(5906), + [aux_sym_file_position_statement_token3] = ACTIONS(5906), + [aux_sym_file_position_statement_token4] = ACTIONS(5906), + [aux_sym_allocate_statement_token1] = ACTIONS(5906), + [aux_sym_entry_statement_token1] = ACTIONS(5906), + [aux_sym_logical_expression_token5] = ACTIONS(5910), + [anon_sym_DOT] = ACTIONS(5906), + [anon_sym_LPAREN_SLASH] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5910), + [aux_sym_boolean_literal_token1] = ACTIONS(5910), + [aux_sym_boolean_literal_token2] = ACTIONS(5910), + [aux_sym_null_literal_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token2] = ACTIONS(5906), + [aux_sym_coarray_statement_token6] = ACTIONS(5906), + [aux_sym_coarray_statement_token8] = ACTIONS(5906), + [aux_sym_coarray_statement_token11] = ACTIONS(5906), + [aux_sym_coarray_statement_token12] = ACTIONS(5906), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5906), + [aux_sym_identifier_token1] = ACTIONS(5906), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5910), + [sym__float_literal] = ACTIONS(5910), + [sym__boz_literal] = ACTIONS(5910), + [sym__string_literal] = ACTIONS(5910), + [sym__string_literal_kind] = ACTIONS(5910), + }, + [1878] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(5912), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_contains_statement_token1] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [1879] = { + [aux_sym_preproc_include_token1] = ACTIONS(5914), + [aux_sym_preproc_def_token1] = ACTIONS(5914), + [aux_sym_preproc_if_token1] = ACTIONS(5914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5914), + [sym_preproc_directive] = ACTIONS(5914), + [anon_sym_LPAREN2] = ACTIONS(5914), + [sym_preproc_comment] = ACTIONS(5916), + [anon_sym_PLUS] = ACTIONS(5918), + [anon_sym_DASH] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5914), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5914), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5914), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5914), + [aux_sym_procedure_attributes_token3] = ACTIONS(5914), + [aux_sym_contains_statement_token1] = ACTIONS(5914), + [aux_sym_use_statement_token2] = ACTIONS(5914), + [aux_sym_implicit_statement_token4] = ACTIONS(5914), + [aux_sym_save_statement_token1] = ACTIONS(5914), + [aux_sym_private_statement_token1] = ACTIONS(5914), + [aux_sym_public_statement_token1] = ACTIONS(5914), + [aux_sym_derived_type_definition_token1] = ACTIONS(5914), + [aux_sym_procedure_attribute_token6] = ACTIONS(5914), + [aux_sym_variable_attributes_token2] = ACTIONS(5914), + [aux_sym_variable_attributes_token3] = ACTIONS(5914), + [aux_sym_variable_attributes_token5] = ACTIONS(5914), + [aux_sym__intrinsic_type_token1] = ACTIONS(5914), + [aux_sym__intrinsic_type_token3] = ACTIONS(5914), + [aux_sym__intrinsic_type_token4] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5914), + [aux_sym_type_qualifier_token1] = ACTIONS(5914), + [aux_sym_type_qualifier_token2] = ACTIONS(5914), + [anon_sym_SEMI] = ACTIONS(5918), + [aux_sym_stop_statement_token1] = ACTIONS(5914), + [aux_sym_stop_statement_token2] = ACTIONS(5914), + [aux_sym_subroutine_call_token1] = ACTIONS(5914), + [aux_sym_keyword_statement_token1] = ACTIONS(5914), + [aux_sym_keyword_statement_token2] = ACTIONS(5914), + [aux_sym_keyword_statement_token3] = ACTIONS(5914), + [aux_sym_keyword_statement_token4] = ACTIONS(5914), + [aux_sym_keyword_statement_token6] = ACTIONS(5914), + [aux_sym_keyword_statement_token7] = ACTIONS(5914), + [aux_sym_include_statement_token1] = ACTIONS(5914), + [aux_sym_data_statement_token1] = ACTIONS(5914), + [aux_sym_do_loop_statement_token1] = ACTIONS(5914), + [aux_sym__inline_if_statement_token1] = ACTIONS(5914), + [aux_sym_end_if_statement_token1] = ACTIONS(5914), + [aux_sym_elseif_clause_token2] = ACTIONS(5914), + [aux_sym__inline_where_statement_token1] = ACTIONS(5914), + [aux_sym__forall_control_expression_token1] = ACTIONS(5914), + [aux_sym_select_case_statement_token1] = ACTIONS(5914), + [aux_sym_select_case_statement_token3] = ACTIONS(5914), + [aux_sym_select_type_statement_token1] = ACTIONS(5914), + [aux_sym_select_rank_statement_token2] = ACTIONS(5914), + [aux_sym_block_construct_token1] = ACTIONS(5914), + [aux_sym_associate_statement_token1] = ACTIONS(5914), + [aux_sym_format_statement_token1] = ACTIONS(5914), + [aux_sym_print_statement_token1] = ACTIONS(5914), + [aux_sym_open_statement_token1] = ACTIONS(5914), + [aux_sym_close_statement_token1] = ACTIONS(5914), + [aux_sym_inquire_statement_token1] = ACTIONS(5914), + [aux_sym_file_position_statement_token1] = ACTIONS(5914), + [aux_sym_file_position_statement_token2] = ACTIONS(5914), + [aux_sym_file_position_statement_token3] = ACTIONS(5914), + [aux_sym_file_position_statement_token4] = ACTIONS(5914), + [aux_sym_allocate_statement_token1] = ACTIONS(5914), + [aux_sym_entry_statement_token1] = ACTIONS(5914), + [aux_sym_logical_expression_token5] = ACTIONS(5918), + [anon_sym_DOT] = ACTIONS(5914), + [anon_sym_LPAREN_SLASH] = ACTIONS(5918), + [anon_sym_LBRACK] = ACTIONS(5918), + [aux_sym_boolean_literal_token1] = ACTIONS(5918), + [aux_sym_boolean_literal_token2] = ACTIONS(5918), + [aux_sym_null_literal_token1] = ACTIONS(5914), + [aux_sym_coarray_statement_token1] = ACTIONS(5914), + [aux_sym_coarray_statement_token2] = ACTIONS(5914), + [aux_sym_coarray_statement_token6] = ACTIONS(5914), + [aux_sym_coarray_statement_token8] = ACTIONS(5914), + [aux_sym_coarray_statement_token11] = ACTIONS(5914), + [aux_sym_coarray_statement_token12] = ACTIONS(5914), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5914), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5914), + [aux_sym_identifier_token1] = ACTIONS(5914), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5918), + [sym__float_literal] = ACTIONS(5918), + [sym__boz_literal] = ACTIONS(5918), + [sym__string_literal] = ACTIONS(5918), + [sym__string_literal_kind] = ACTIONS(5918), + }, + [1880] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token2] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_end_program_statement_token2] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_end_program_statement_token2] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_contains_statement_token1] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2023] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6166), + [1881] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(5920), [anon_sym_PLUS] = ACTIONS(5558), [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_end_program_statement_token2] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_contains_statement_token1] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token2] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_end_select_statement_token1] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(4357), [anon_sym_LPAREN_SLASH] = ACTIONS(5558), [anon_sym_LBRACK] = ACTIONS(5558), [aux_sym_boolean_literal_token1] = ACTIONS(5558), [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5558), [sym__float_literal] = ACTIONS(5558), @@ -346156,1199 +331956,1299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5558), [sym__string_literal_kind] = ACTIONS(5558), }, - [2024] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6168), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_end_program_statement_token2] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_contains_statement_token1] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), + [1882] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(5922), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token2] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_end_select_statement_token1] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2025] = { - [aux_sym_preproc_include_token1] = ACTIONS(5962), - [aux_sym_preproc_def_token1] = ACTIONS(5962), - [aux_sym_preproc_if_token1] = ACTIONS(5962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5962), - [sym_preproc_directive] = ACTIONS(5962), - [anon_sym_LPAREN2] = ACTIONS(5962), - [sym_preproc_comment] = ACTIONS(6170), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5962), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5962), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5962), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5962), - [aux_sym_procedure_attributes_token3] = ACTIONS(5962), - [aux_sym_contains_statement_token1] = ACTIONS(5962), - [aux_sym_use_statement_token2] = ACTIONS(5962), - [aux_sym_implicit_statement_token4] = ACTIONS(5962), - [aux_sym_save_statement_token1] = ACTIONS(5962), - [aux_sym_private_statement_token1] = ACTIONS(5962), - [aux_sym_public_statement_token1] = ACTIONS(5962), - [aux_sym_derived_type_definition_token1] = ACTIONS(5962), - [aux_sym_procedure_attribute_token6] = ACTIONS(5962), - [aux_sym_variable_attributes_token2] = ACTIONS(5962), - [aux_sym_variable_attributes_token3] = ACTIONS(5962), - [aux_sym_variable_attributes_token5] = ACTIONS(5962), - [aux_sym__intrinsic_type_token1] = ACTIONS(5962), - [aux_sym__intrinsic_type_token3] = ACTIONS(5962), - [aux_sym__intrinsic_type_token4] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5962), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5962), - [aux_sym_type_qualifier_token1] = ACTIONS(5962), - [aux_sym_type_qualifier_token2] = ACTIONS(5962), - [anon_sym_SEMI] = ACTIONS(5966), - [aux_sym_stop_statement_token1] = ACTIONS(5962), - [aux_sym_stop_statement_token2] = ACTIONS(5962), - [aux_sym_subroutine_call_token1] = ACTIONS(5962), - [aux_sym_keyword_statement_token1] = ACTIONS(5962), - [aux_sym_keyword_statement_token2] = ACTIONS(5962), - [aux_sym_keyword_statement_token3] = ACTIONS(5962), - [aux_sym_keyword_statement_token4] = ACTIONS(5962), - [aux_sym_keyword_statement_token6] = ACTIONS(5962), - [aux_sym_keyword_statement_token7] = ACTIONS(5962), - [aux_sym_include_statement_token1] = ACTIONS(5962), - [aux_sym_data_statement_token1] = ACTIONS(5962), - [aux_sym_do_loop_statement_token1] = ACTIONS(5962), - [aux_sym__inline_if_statement_token1] = ACTIONS(5962), - [aux_sym_end_if_statement_token1] = ACTIONS(5962), - [aux_sym_elseif_clause_token2] = ACTIONS(5962), - [aux_sym__inline_where_statement_token1] = ACTIONS(5962), - [aux_sym__forall_control_expression_token1] = ACTIONS(5962), - [aux_sym_select_case_statement_token1] = ACTIONS(5962), - [aux_sym_select_case_statement_token3] = ACTIONS(5962), - [aux_sym_select_type_statement_token1] = ACTIONS(5962), - [aux_sym_select_rank_statement_token2] = ACTIONS(5962), - [aux_sym_block_construct_token1] = ACTIONS(5962), - [aux_sym_associate_statement_token1] = ACTIONS(5962), - [aux_sym_format_statement_token1] = ACTIONS(5962), - [aux_sym_print_statement_token1] = ACTIONS(5962), - [aux_sym_open_statement_token1] = ACTIONS(5962), - [aux_sym_close_statement_token1] = ACTIONS(5962), - [aux_sym_inquire_statement_token1] = ACTIONS(5962), - [aux_sym_file_position_statement_token1] = ACTIONS(5962), - [aux_sym_file_position_statement_token2] = ACTIONS(5962), - [aux_sym_file_position_statement_token3] = ACTIONS(5962), - [aux_sym_file_position_statement_token4] = ACTIONS(5962), - [aux_sym_allocate_statement_token1] = ACTIONS(5962), - [aux_sym_entry_statement_token1] = ACTIONS(5962), - [aux_sym_logical_expression_token5] = ACTIONS(5966), - [anon_sym_DOT] = ACTIONS(5962), - [anon_sym_LPAREN_SLASH] = ACTIONS(5966), - [anon_sym_LBRACK] = ACTIONS(5966), - [aux_sym_boolean_literal_token1] = ACTIONS(5966), - [aux_sym_boolean_literal_token2] = ACTIONS(5966), - [aux_sym_null_literal_token1] = ACTIONS(5962), - [aux_sym_coarray_statement_token1] = ACTIONS(5962), - [aux_sym_coarray_statement_token2] = ACTIONS(5962), - [aux_sym_coarray_statement_token6] = ACTIONS(5962), - [aux_sym_coarray_statement_token8] = ACTIONS(5962), - [aux_sym_coarray_statement_token11] = ACTIONS(5962), - [aux_sym_coarray_statement_token12] = ACTIONS(5962), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5962), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5962), - [aux_sym_identifier_token1] = ACTIONS(5962), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5966), - [sym__float_literal] = ACTIONS(5966), - [sym__boz_literal] = ACTIONS(5966), - [sym__string_literal] = ACTIONS(5966), - [sym__string_literal_kind] = ACTIONS(5966), + [1883] = { + [aux_sym_preproc_include_token1] = ACTIONS(5924), + [aux_sym_preproc_def_token1] = ACTIONS(5924), + [aux_sym_preproc_if_token1] = ACTIONS(5924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5924), + [sym_preproc_directive] = ACTIONS(5924), + [anon_sym_LPAREN2] = ACTIONS(5924), + [sym_preproc_comment] = ACTIONS(5926), + [anon_sym_PLUS] = ACTIONS(5928), + [anon_sym_DASH] = ACTIONS(5928), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5924), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5924), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5924), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5924), + [aux_sym_procedure_attributes_token3] = ACTIONS(5924), + [aux_sym_contains_statement_token1] = ACTIONS(5924), + [aux_sym_use_statement_token2] = ACTIONS(5924), + [aux_sym_implicit_statement_token4] = ACTIONS(5924), + [aux_sym_save_statement_token1] = ACTIONS(5924), + [aux_sym_private_statement_token1] = ACTIONS(5924), + [aux_sym_public_statement_token1] = ACTIONS(5924), + [aux_sym_derived_type_definition_token1] = ACTIONS(5924), + [aux_sym_procedure_attribute_token6] = ACTIONS(5924), + [aux_sym_variable_attributes_token2] = ACTIONS(5924), + [aux_sym_variable_attributes_token3] = ACTIONS(5924), + [aux_sym_variable_attributes_token5] = ACTIONS(5924), + [aux_sym__intrinsic_type_token1] = ACTIONS(5924), + [aux_sym__intrinsic_type_token3] = ACTIONS(5924), + [aux_sym__intrinsic_type_token4] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5924), + [aux_sym_type_qualifier_token1] = ACTIONS(5924), + [aux_sym_type_qualifier_token2] = ACTIONS(5924), + [anon_sym_SEMI] = ACTIONS(5928), + [aux_sym_stop_statement_token1] = ACTIONS(5924), + [aux_sym_stop_statement_token2] = ACTIONS(5924), + [aux_sym_subroutine_call_token1] = ACTIONS(5924), + [aux_sym_keyword_statement_token1] = ACTIONS(5924), + [aux_sym_keyword_statement_token2] = ACTIONS(5924), + [aux_sym_keyword_statement_token3] = ACTIONS(5924), + [aux_sym_keyword_statement_token4] = ACTIONS(5924), + [aux_sym_keyword_statement_token6] = ACTIONS(5924), + [aux_sym_keyword_statement_token7] = ACTIONS(5924), + [aux_sym_include_statement_token1] = ACTIONS(5924), + [aux_sym_data_statement_token1] = ACTIONS(5924), + [aux_sym_do_loop_statement_token1] = ACTIONS(5924), + [aux_sym__inline_if_statement_token1] = ACTIONS(5924), + [aux_sym_end_if_statement_token1] = ACTIONS(5924), + [aux_sym_elseif_clause_token2] = ACTIONS(5924), + [aux_sym__inline_where_statement_token1] = ACTIONS(5924), + [aux_sym__forall_control_expression_token1] = ACTIONS(5924), + [aux_sym_select_case_statement_token1] = ACTIONS(5924), + [aux_sym_select_case_statement_token3] = ACTIONS(5924), + [aux_sym_select_type_statement_token1] = ACTIONS(5924), + [aux_sym_select_rank_statement_token2] = ACTIONS(5924), + [aux_sym_block_construct_token1] = ACTIONS(5924), + [aux_sym_associate_statement_token1] = ACTIONS(5924), + [aux_sym_format_statement_token1] = ACTIONS(5924), + [aux_sym_print_statement_token1] = ACTIONS(5924), + [aux_sym_open_statement_token1] = ACTIONS(5924), + [aux_sym_close_statement_token1] = ACTIONS(5924), + [aux_sym_inquire_statement_token1] = ACTIONS(5924), + [aux_sym_file_position_statement_token1] = ACTIONS(5924), + [aux_sym_file_position_statement_token2] = ACTIONS(5924), + [aux_sym_file_position_statement_token3] = ACTIONS(5924), + [aux_sym_file_position_statement_token4] = ACTIONS(5924), + [aux_sym_allocate_statement_token1] = ACTIONS(5924), + [aux_sym_entry_statement_token1] = ACTIONS(5924), + [aux_sym_logical_expression_token5] = ACTIONS(5928), + [anon_sym_DOT] = ACTIONS(5924), + [anon_sym_LPAREN_SLASH] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5928), + [aux_sym_boolean_literal_token1] = ACTIONS(5928), + [aux_sym_boolean_literal_token2] = ACTIONS(5928), + [aux_sym_null_literal_token1] = ACTIONS(5924), + [aux_sym_coarray_statement_token1] = ACTIONS(5924), + [aux_sym_coarray_statement_token2] = ACTIONS(5924), + [aux_sym_coarray_statement_token6] = ACTIONS(5924), + [aux_sym_coarray_statement_token8] = ACTIONS(5924), + [aux_sym_coarray_statement_token11] = ACTIONS(5924), + [aux_sym_coarray_statement_token12] = ACTIONS(5924), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5924), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5924), + [aux_sym_identifier_token1] = ACTIONS(5924), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5928), + [sym__float_literal] = ACTIONS(5928), + [sym__boz_literal] = ACTIONS(5928), + [sym__string_literal] = ACTIONS(5928), + [sym__string_literal_kind] = ACTIONS(5928), }, - [2026] = { - [aux_sym_preproc_include_token1] = ACTIONS(5974), - [aux_sym_preproc_def_token1] = ACTIONS(5974), - [aux_sym_preproc_if_token1] = ACTIONS(5974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5974), - [sym_preproc_directive] = ACTIONS(5974), - [anon_sym_LPAREN2] = ACTIONS(5974), - [sym_preproc_comment] = ACTIONS(6172), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5974), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5974), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5974), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5974), - [aux_sym_procedure_attributes_token3] = ACTIONS(5974), - [aux_sym_contains_statement_token1] = ACTIONS(5974), - [aux_sym_use_statement_token2] = ACTIONS(5974), - [aux_sym_implicit_statement_token4] = ACTIONS(5974), - [aux_sym_save_statement_token1] = ACTIONS(5974), - [aux_sym_private_statement_token1] = ACTIONS(5974), - [aux_sym_public_statement_token1] = ACTIONS(5974), - [aux_sym_derived_type_definition_token1] = ACTIONS(5974), - [aux_sym_procedure_attribute_token6] = ACTIONS(5974), - [aux_sym_variable_attributes_token2] = ACTIONS(5974), - [aux_sym_variable_attributes_token3] = ACTIONS(5974), - [aux_sym_variable_attributes_token5] = ACTIONS(5974), - [aux_sym__intrinsic_type_token1] = ACTIONS(5974), - [aux_sym__intrinsic_type_token3] = ACTIONS(5974), - [aux_sym__intrinsic_type_token4] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5974), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5974), - [aux_sym_type_qualifier_token1] = ACTIONS(5974), - [aux_sym_type_qualifier_token2] = ACTIONS(5974), - [anon_sym_SEMI] = ACTIONS(5978), - [aux_sym_stop_statement_token1] = ACTIONS(5974), - [aux_sym_stop_statement_token2] = ACTIONS(5974), - [aux_sym_subroutine_call_token1] = ACTIONS(5974), - [aux_sym_keyword_statement_token1] = ACTIONS(5974), - [aux_sym_keyword_statement_token2] = ACTIONS(5974), - [aux_sym_keyword_statement_token3] = ACTIONS(5974), - [aux_sym_keyword_statement_token4] = ACTIONS(5974), - [aux_sym_keyword_statement_token6] = ACTIONS(5974), - [aux_sym_keyword_statement_token7] = ACTIONS(5974), - [aux_sym_include_statement_token1] = ACTIONS(5974), - [aux_sym_data_statement_token1] = ACTIONS(5974), - [aux_sym_do_loop_statement_token1] = ACTIONS(5974), - [aux_sym__inline_if_statement_token1] = ACTIONS(5974), - [aux_sym_end_if_statement_token1] = ACTIONS(5974), - [aux_sym_elseif_clause_token2] = ACTIONS(5974), - [aux_sym__inline_where_statement_token1] = ACTIONS(5974), - [aux_sym__forall_control_expression_token1] = ACTIONS(5974), - [aux_sym_select_case_statement_token1] = ACTIONS(5974), - [aux_sym_select_case_statement_token3] = ACTIONS(5974), - [aux_sym_select_type_statement_token1] = ACTIONS(5974), - [aux_sym_select_rank_statement_token2] = ACTIONS(5974), - [aux_sym_block_construct_token1] = ACTIONS(5974), - [aux_sym_associate_statement_token1] = ACTIONS(5974), - [aux_sym_format_statement_token1] = ACTIONS(5974), - [aux_sym_print_statement_token1] = ACTIONS(5974), - [aux_sym_open_statement_token1] = ACTIONS(5974), - [aux_sym_close_statement_token1] = ACTIONS(5974), - [aux_sym_inquire_statement_token1] = ACTIONS(5974), - [aux_sym_file_position_statement_token1] = ACTIONS(5974), - [aux_sym_file_position_statement_token2] = ACTIONS(5974), - [aux_sym_file_position_statement_token3] = ACTIONS(5974), - [aux_sym_file_position_statement_token4] = ACTIONS(5974), - [aux_sym_allocate_statement_token1] = ACTIONS(5974), - [aux_sym_entry_statement_token1] = ACTIONS(5974), - [aux_sym_logical_expression_token5] = ACTIONS(5978), - [anon_sym_DOT] = ACTIONS(5974), - [anon_sym_LPAREN_SLASH] = ACTIONS(5978), - [anon_sym_LBRACK] = ACTIONS(5978), - [aux_sym_boolean_literal_token1] = ACTIONS(5978), - [aux_sym_boolean_literal_token2] = ACTIONS(5978), - [aux_sym_null_literal_token1] = ACTIONS(5974), - [aux_sym_coarray_statement_token1] = ACTIONS(5974), - [aux_sym_coarray_statement_token2] = ACTIONS(5974), - [aux_sym_coarray_statement_token6] = ACTIONS(5974), - [aux_sym_coarray_statement_token8] = ACTIONS(5974), - [aux_sym_coarray_statement_token11] = ACTIONS(5974), - [aux_sym_coarray_statement_token12] = ACTIONS(5974), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5974), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5974), - [aux_sym_identifier_token1] = ACTIONS(5974), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5978), - [sym__float_literal] = ACTIONS(5978), - [sym__boz_literal] = ACTIONS(5978), - [sym__string_literal] = ACTIONS(5978), - [sym__string_literal_kind] = ACTIONS(5978), + [1884] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_end_program_statement_token2] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2027] = { - [aux_sym_preproc_include_token1] = ACTIONS(5998), - [aux_sym_preproc_def_token1] = ACTIONS(5998), - [aux_sym_preproc_if_token1] = ACTIONS(5998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5998), - [sym_preproc_directive] = ACTIONS(5998), - [anon_sym_LPAREN2] = ACTIONS(5998), - [sym_preproc_comment] = ACTIONS(6174), - [anon_sym_PLUS] = ACTIONS(6002), - [anon_sym_DASH] = ACTIONS(6002), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5998), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5998), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5998), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5998), - [aux_sym_procedure_attributes_token3] = ACTIONS(5998), - [aux_sym_contains_statement_token1] = ACTIONS(5998), - [aux_sym_use_statement_token2] = ACTIONS(5998), - [aux_sym_implicit_statement_token4] = ACTIONS(5998), - [aux_sym_save_statement_token1] = ACTIONS(5998), - [aux_sym_private_statement_token1] = ACTIONS(5998), - [aux_sym_public_statement_token1] = ACTIONS(5998), - [aux_sym_derived_type_definition_token1] = ACTIONS(5998), - [aux_sym_procedure_attribute_token6] = ACTIONS(5998), - [aux_sym_variable_attributes_token2] = ACTIONS(5998), - [aux_sym_variable_attributes_token3] = ACTIONS(5998), - [aux_sym_variable_attributes_token5] = ACTIONS(5998), - [aux_sym__intrinsic_type_token1] = ACTIONS(5998), - [aux_sym__intrinsic_type_token3] = ACTIONS(5998), - [aux_sym__intrinsic_type_token4] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5998), - [aux_sym_type_qualifier_token1] = ACTIONS(5998), - [aux_sym_type_qualifier_token2] = ACTIONS(5998), - [anon_sym_SEMI] = ACTIONS(6002), - [aux_sym_stop_statement_token1] = ACTIONS(5998), - [aux_sym_stop_statement_token2] = ACTIONS(5998), - [aux_sym_subroutine_call_token1] = ACTIONS(5998), - [aux_sym_keyword_statement_token1] = ACTIONS(5998), - [aux_sym_keyword_statement_token2] = ACTIONS(5998), - [aux_sym_keyword_statement_token3] = ACTIONS(5998), - [aux_sym_keyword_statement_token4] = ACTIONS(5998), - [aux_sym_keyword_statement_token6] = ACTIONS(5998), - [aux_sym_keyword_statement_token7] = ACTIONS(5998), - [aux_sym_include_statement_token1] = ACTIONS(5998), - [aux_sym_data_statement_token1] = ACTIONS(5998), - [aux_sym_do_loop_statement_token1] = ACTIONS(5998), - [aux_sym__inline_if_statement_token1] = ACTIONS(5998), - [aux_sym_end_if_statement_token1] = ACTIONS(5998), - [aux_sym_elseif_clause_token2] = ACTIONS(5998), - [aux_sym__inline_where_statement_token1] = ACTIONS(5998), - [aux_sym__forall_control_expression_token1] = ACTIONS(5998), - [aux_sym_select_case_statement_token1] = ACTIONS(5998), - [aux_sym_select_case_statement_token3] = ACTIONS(5998), - [aux_sym_select_type_statement_token1] = ACTIONS(5998), - [aux_sym_select_rank_statement_token2] = ACTIONS(5998), - [aux_sym_block_construct_token1] = ACTIONS(5998), - [aux_sym_associate_statement_token1] = ACTIONS(5998), - [aux_sym_format_statement_token1] = ACTIONS(5998), - [aux_sym_print_statement_token1] = ACTIONS(5998), - [aux_sym_open_statement_token1] = ACTIONS(5998), - [aux_sym_close_statement_token1] = ACTIONS(5998), - [aux_sym_inquire_statement_token1] = ACTIONS(5998), - [aux_sym_file_position_statement_token1] = ACTIONS(5998), - [aux_sym_file_position_statement_token2] = ACTIONS(5998), - [aux_sym_file_position_statement_token3] = ACTIONS(5998), - [aux_sym_file_position_statement_token4] = ACTIONS(5998), - [aux_sym_allocate_statement_token1] = ACTIONS(5998), - [aux_sym_entry_statement_token1] = ACTIONS(5998), - [aux_sym_logical_expression_token5] = ACTIONS(6002), - [anon_sym_DOT] = ACTIONS(5998), - [anon_sym_LPAREN_SLASH] = ACTIONS(6002), - [anon_sym_LBRACK] = ACTIONS(6002), - [aux_sym_boolean_literal_token1] = ACTIONS(6002), - [aux_sym_boolean_literal_token2] = ACTIONS(6002), - [aux_sym_null_literal_token1] = ACTIONS(5998), - [aux_sym_coarray_statement_token1] = ACTIONS(5998), - [aux_sym_coarray_statement_token2] = ACTIONS(5998), - [aux_sym_coarray_statement_token6] = ACTIONS(5998), - [aux_sym_coarray_statement_token8] = ACTIONS(5998), - [aux_sym_coarray_statement_token11] = ACTIONS(5998), - [aux_sym_coarray_statement_token12] = ACTIONS(5998), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5998), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5998), - [aux_sym_identifier_token1] = ACTIONS(5998), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6002), - [sym__float_literal] = ACTIONS(6002), - [sym__boz_literal] = ACTIONS(6002), - [sym__string_literal] = ACTIONS(6002), - [sym__string_literal_kind] = ACTIONS(6002), + [1885] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(5930), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_contains_statement_token1] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), }, - [2028] = { - [aux_sym_preproc_include_token1] = ACTIONS(6004), - [aux_sym_preproc_def_token1] = ACTIONS(6004), - [aux_sym_preproc_if_token1] = ACTIONS(6004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6004), - [sym_preproc_directive] = ACTIONS(6004), - [anon_sym_LPAREN2] = ACTIONS(6004), - [sym_preproc_comment] = ACTIONS(6176), - [anon_sym_PLUS] = ACTIONS(6008), - [anon_sym_DASH] = ACTIONS(6008), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6004), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6004), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6004), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6004), - [aux_sym_procedure_attributes_token3] = ACTIONS(6004), - [aux_sym_contains_statement_token1] = ACTIONS(6004), - [aux_sym_use_statement_token2] = ACTIONS(6004), - [aux_sym_implicit_statement_token4] = ACTIONS(6004), - [aux_sym_save_statement_token1] = ACTIONS(6004), - [aux_sym_private_statement_token1] = ACTIONS(6004), - [aux_sym_public_statement_token1] = ACTIONS(6004), - [aux_sym_derived_type_definition_token1] = ACTIONS(6004), - [aux_sym_procedure_attribute_token6] = ACTIONS(6004), - [aux_sym_variable_attributes_token2] = ACTIONS(6004), - [aux_sym_variable_attributes_token3] = ACTIONS(6004), - [aux_sym_variable_attributes_token5] = ACTIONS(6004), - [aux_sym__intrinsic_type_token1] = ACTIONS(6004), - [aux_sym__intrinsic_type_token3] = ACTIONS(6004), - [aux_sym__intrinsic_type_token4] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6004), - [aux_sym_type_qualifier_token1] = ACTIONS(6004), - [aux_sym_type_qualifier_token2] = ACTIONS(6004), - [anon_sym_SEMI] = ACTIONS(6008), - [aux_sym_stop_statement_token1] = ACTIONS(6004), - [aux_sym_stop_statement_token2] = ACTIONS(6004), - [aux_sym_subroutine_call_token1] = ACTIONS(6004), - [aux_sym_keyword_statement_token1] = ACTIONS(6004), - [aux_sym_keyword_statement_token2] = ACTIONS(6004), - [aux_sym_keyword_statement_token3] = ACTIONS(6004), - [aux_sym_keyword_statement_token4] = ACTIONS(6004), - [aux_sym_keyword_statement_token6] = ACTIONS(6004), - [aux_sym_keyword_statement_token7] = ACTIONS(6004), - [aux_sym_include_statement_token1] = ACTIONS(6004), - [aux_sym_data_statement_token1] = ACTIONS(6004), - [aux_sym_do_loop_statement_token1] = ACTIONS(6004), - [aux_sym__inline_if_statement_token1] = ACTIONS(6004), - [aux_sym_end_if_statement_token1] = ACTIONS(6004), - [aux_sym_elseif_clause_token2] = ACTIONS(6004), - [aux_sym__inline_where_statement_token1] = ACTIONS(6004), - [aux_sym__forall_control_expression_token1] = ACTIONS(6004), - [aux_sym_select_case_statement_token1] = ACTIONS(6004), - [aux_sym_select_case_statement_token3] = ACTIONS(6004), - [aux_sym_select_type_statement_token1] = ACTIONS(6004), - [aux_sym_select_rank_statement_token2] = ACTIONS(6004), - [aux_sym_block_construct_token1] = ACTIONS(6004), - [aux_sym_associate_statement_token1] = ACTIONS(6004), - [aux_sym_format_statement_token1] = ACTIONS(6004), - [aux_sym_print_statement_token1] = ACTIONS(6004), - [aux_sym_open_statement_token1] = ACTIONS(6004), - [aux_sym_close_statement_token1] = ACTIONS(6004), - [aux_sym_inquire_statement_token1] = ACTIONS(6004), - [aux_sym_file_position_statement_token1] = ACTIONS(6004), - [aux_sym_file_position_statement_token2] = ACTIONS(6004), - [aux_sym_file_position_statement_token3] = ACTIONS(6004), - [aux_sym_file_position_statement_token4] = ACTIONS(6004), - [aux_sym_allocate_statement_token1] = ACTIONS(6004), - [aux_sym_entry_statement_token1] = ACTIONS(6004), - [aux_sym_logical_expression_token5] = ACTIONS(6008), - [anon_sym_DOT] = ACTIONS(6004), - [anon_sym_LPAREN_SLASH] = ACTIONS(6008), - [anon_sym_LBRACK] = ACTIONS(6008), - [aux_sym_boolean_literal_token1] = ACTIONS(6008), - [aux_sym_boolean_literal_token2] = ACTIONS(6008), - [aux_sym_null_literal_token1] = ACTIONS(6004), - [aux_sym_coarray_statement_token1] = ACTIONS(6004), - [aux_sym_coarray_statement_token2] = ACTIONS(6004), - [aux_sym_coarray_statement_token6] = ACTIONS(6004), - [aux_sym_coarray_statement_token8] = ACTIONS(6004), - [aux_sym_coarray_statement_token11] = ACTIONS(6004), - [aux_sym_coarray_statement_token12] = ACTIONS(6004), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6004), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6004), - [aux_sym_identifier_token1] = ACTIONS(6004), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6008), - [sym__float_literal] = ACTIONS(6008), - [sym__boz_literal] = ACTIONS(6008), - [sym__string_literal] = ACTIONS(6008), - [sym__string_literal_kind] = ACTIONS(6008), + [1886] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token2] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_end_program_statement_token2] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_contains_statement_token1] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), }, - [2029] = { - [aux_sym_preproc_include_token1] = ACTIONS(6010), - [aux_sym_preproc_def_token1] = ACTIONS(6010), - [aux_sym_preproc_if_token1] = ACTIONS(6010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6010), - [sym_preproc_directive] = ACTIONS(6010), - [anon_sym_LPAREN2] = ACTIONS(6010), - [sym_preproc_comment] = ACTIONS(6178), - [anon_sym_PLUS] = ACTIONS(6014), - [anon_sym_DASH] = ACTIONS(6014), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6010), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6010), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6010), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6010), - [aux_sym_procedure_attributes_token3] = ACTIONS(6010), - [aux_sym_contains_statement_token1] = ACTIONS(6010), - [aux_sym_use_statement_token2] = ACTIONS(6010), - [aux_sym_implicit_statement_token4] = ACTIONS(6010), - [aux_sym_save_statement_token1] = ACTIONS(6010), - [aux_sym_private_statement_token1] = ACTIONS(6010), - [aux_sym_public_statement_token1] = ACTIONS(6010), - [aux_sym_derived_type_definition_token1] = ACTIONS(6010), - [aux_sym_procedure_attribute_token6] = ACTIONS(6010), - [aux_sym_variable_attributes_token2] = ACTIONS(6010), - [aux_sym_variable_attributes_token3] = ACTIONS(6010), - [aux_sym_variable_attributes_token5] = ACTIONS(6010), - [aux_sym__intrinsic_type_token1] = ACTIONS(6010), - [aux_sym__intrinsic_type_token3] = ACTIONS(6010), - [aux_sym__intrinsic_type_token4] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6010), - [aux_sym_type_qualifier_token1] = ACTIONS(6010), - [aux_sym_type_qualifier_token2] = ACTIONS(6010), - [anon_sym_SEMI] = ACTIONS(6014), - [aux_sym_stop_statement_token1] = ACTIONS(6010), - [aux_sym_stop_statement_token2] = ACTIONS(6010), - [aux_sym_subroutine_call_token1] = ACTIONS(6010), - [aux_sym_keyword_statement_token1] = ACTIONS(6010), - [aux_sym_keyword_statement_token2] = ACTIONS(6010), - [aux_sym_keyword_statement_token3] = ACTIONS(6010), - [aux_sym_keyword_statement_token4] = ACTIONS(6010), - [aux_sym_keyword_statement_token6] = ACTIONS(6010), - [aux_sym_keyword_statement_token7] = ACTIONS(6010), - [aux_sym_include_statement_token1] = ACTIONS(6010), - [aux_sym_data_statement_token1] = ACTIONS(6010), - [aux_sym_do_loop_statement_token1] = ACTIONS(6010), - [aux_sym__inline_if_statement_token1] = ACTIONS(6010), - [aux_sym_end_if_statement_token1] = ACTIONS(6010), - [aux_sym_elseif_clause_token2] = ACTIONS(6010), - [aux_sym__inline_where_statement_token1] = ACTIONS(6010), - [aux_sym__forall_control_expression_token1] = ACTIONS(6010), - [aux_sym_select_case_statement_token1] = ACTIONS(6010), - [aux_sym_select_case_statement_token3] = ACTIONS(6010), - [aux_sym_select_type_statement_token1] = ACTIONS(6010), - [aux_sym_select_rank_statement_token2] = ACTIONS(6010), - [aux_sym_block_construct_token1] = ACTIONS(6010), - [aux_sym_associate_statement_token1] = ACTIONS(6010), - [aux_sym_format_statement_token1] = ACTIONS(6010), - [aux_sym_print_statement_token1] = ACTIONS(6010), - [aux_sym_open_statement_token1] = ACTIONS(6010), - [aux_sym_close_statement_token1] = ACTIONS(6010), - [aux_sym_inquire_statement_token1] = ACTIONS(6010), - [aux_sym_file_position_statement_token1] = ACTIONS(6010), - [aux_sym_file_position_statement_token2] = ACTIONS(6010), - [aux_sym_file_position_statement_token3] = ACTIONS(6010), - [aux_sym_file_position_statement_token4] = ACTIONS(6010), - [aux_sym_allocate_statement_token1] = ACTIONS(6010), - [aux_sym_entry_statement_token1] = ACTIONS(6010), - [aux_sym_logical_expression_token5] = ACTIONS(6014), - [anon_sym_DOT] = ACTIONS(6010), - [anon_sym_LPAREN_SLASH] = ACTIONS(6014), - [anon_sym_LBRACK] = ACTIONS(6014), - [aux_sym_boolean_literal_token1] = ACTIONS(6014), - [aux_sym_boolean_literal_token2] = ACTIONS(6014), - [aux_sym_null_literal_token1] = ACTIONS(6010), - [aux_sym_coarray_statement_token1] = ACTIONS(6010), - [aux_sym_coarray_statement_token2] = ACTIONS(6010), - [aux_sym_coarray_statement_token6] = ACTIONS(6010), - [aux_sym_coarray_statement_token8] = ACTIONS(6010), - [aux_sym_coarray_statement_token11] = ACTIONS(6010), - [aux_sym_coarray_statement_token12] = ACTIONS(6010), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6010), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6010), - [aux_sym_identifier_token1] = ACTIONS(6010), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6014), - [sym__float_literal] = ACTIONS(6014), - [sym__boz_literal] = ACTIONS(6014), - [sym__string_literal] = ACTIONS(6014), - [sym__string_literal_kind] = ACTIONS(6014), + [1887] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5932), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token2] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_end_select_statement_token1] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2030] = { - [aux_sym_preproc_include_token1] = ACTIONS(6016), - [aux_sym_preproc_def_token1] = ACTIONS(6016), - [aux_sym_preproc_if_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6016), - [sym_preproc_directive] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [sym_preproc_comment] = ACTIONS(6180), - [anon_sym_PLUS] = ACTIONS(6020), - [anon_sym_DASH] = ACTIONS(6020), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6016), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6016), - [aux_sym_procedure_attributes_token3] = ACTIONS(6016), - [aux_sym_contains_statement_token1] = ACTIONS(6016), - [aux_sym_use_statement_token2] = ACTIONS(6016), - [aux_sym_implicit_statement_token4] = ACTIONS(6016), - [aux_sym_save_statement_token1] = ACTIONS(6016), - [aux_sym_private_statement_token1] = ACTIONS(6016), - [aux_sym_public_statement_token1] = ACTIONS(6016), - [aux_sym_derived_type_definition_token1] = ACTIONS(6016), - [aux_sym_procedure_attribute_token6] = ACTIONS(6016), - [aux_sym_variable_attributes_token2] = ACTIONS(6016), - [aux_sym_variable_attributes_token3] = ACTIONS(6016), - [aux_sym_variable_attributes_token5] = ACTIONS(6016), - [aux_sym__intrinsic_type_token1] = ACTIONS(6016), - [aux_sym__intrinsic_type_token3] = ACTIONS(6016), - [aux_sym__intrinsic_type_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6016), - [aux_sym_type_qualifier_token1] = ACTIONS(6016), - [aux_sym_type_qualifier_token2] = ACTIONS(6016), - [anon_sym_SEMI] = ACTIONS(6020), - [aux_sym_stop_statement_token1] = ACTIONS(6016), - [aux_sym_stop_statement_token2] = ACTIONS(6016), - [aux_sym_subroutine_call_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token2] = ACTIONS(6016), - [aux_sym_keyword_statement_token3] = ACTIONS(6016), - [aux_sym_keyword_statement_token4] = ACTIONS(6016), - [aux_sym_keyword_statement_token6] = ACTIONS(6016), - [aux_sym_keyword_statement_token7] = ACTIONS(6016), - [aux_sym_include_statement_token1] = ACTIONS(6016), - [aux_sym_data_statement_token1] = ACTIONS(6016), - [aux_sym_do_loop_statement_token1] = ACTIONS(6016), - [aux_sym__inline_if_statement_token1] = ACTIONS(6016), - [aux_sym_end_if_statement_token1] = ACTIONS(6016), - [aux_sym_elseif_clause_token2] = ACTIONS(6016), - [aux_sym__inline_where_statement_token1] = ACTIONS(6016), - [aux_sym__forall_control_expression_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token3] = ACTIONS(6016), - [aux_sym_select_type_statement_token1] = ACTIONS(6016), - [aux_sym_select_rank_statement_token2] = ACTIONS(6016), - [aux_sym_block_construct_token1] = ACTIONS(6016), - [aux_sym_associate_statement_token1] = ACTIONS(6016), - [aux_sym_format_statement_token1] = ACTIONS(6016), - [aux_sym_print_statement_token1] = ACTIONS(6016), - [aux_sym_open_statement_token1] = ACTIONS(6016), - [aux_sym_close_statement_token1] = ACTIONS(6016), - [aux_sym_inquire_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token2] = ACTIONS(6016), - [aux_sym_file_position_statement_token3] = ACTIONS(6016), - [aux_sym_file_position_statement_token4] = ACTIONS(6016), - [aux_sym_allocate_statement_token1] = ACTIONS(6016), - [aux_sym_entry_statement_token1] = ACTIONS(6016), - [aux_sym_logical_expression_token5] = ACTIONS(6020), - [anon_sym_DOT] = ACTIONS(6016), - [anon_sym_LPAREN_SLASH] = ACTIONS(6020), - [anon_sym_LBRACK] = ACTIONS(6020), - [aux_sym_boolean_literal_token1] = ACTIONS(6020), - [aux_sym_boolean_literal_token2] = ACTIONS(6020), - [aux_sym_null_literal_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token2] = ACTIONS(6016), - [aux_sym_coarray_statement_token6] = ACTIONS(6016), - [aux_sym_coarray_statement_token8] = ACTIONS(6016), - [aux_sym_coarray_statement_token11] = ACTIONS(6016), - [aux_sym_coarray_statement_token12] = ACTIONS(6016), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6016), - [aux_sym_identifier_token1] = ACTIONS(6016), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6020), - [sym__float_literal] = ACTIONS(6020), - [sym__boz_literal] = ACTIONS(6020), - [sym__string_literal] = ACTIONS(6020), - [sym__string_literal_kind] = ACTIONS(6020), + [1888] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(5934), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token2] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_end_select_statement_token1] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2031] = { - [aux_sym_preproc_include_token1] = ACTIONS(5998), - [aux_sym_preproc_def_token1] = ACTIONS(5998), - [aux_sym_preproc_if_token1] = ACTIONS(5998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5998), - [sym_preproc_directive] = ACTIONS(5998), - [anon_sym_LPAREN2] = ACTIONS(5998), - [sym_preproc_comment] = ACTIONS(6182), - [anon_sym_PLUS] = ACTIONS(6002), - [anon_sym_DASH] = ACTIONS(6002), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5998), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5998), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5998), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5998), - [aux_sym_procedure_attributes_token3] = ACTIONS(5998), - [aux_sym_contains_statement_token1] = ACTIONS(5998), - [aux_sym_use_statement_token2] = ACTIONS(5998), - [aux_sym_implicit_statement_token4] = ACTIONS(5998), - [aux_sym_save_statement_token1] = ACTIONS(5998), - [aux_sym_private_statement_token1] = ACTIONS(5998), - [aux_sym_public_statement_token1] = ACTIONS(5998), - [aux_sym_derived_type_definition_token1] = ACTIONS(5998), - [aux_sym_procedure_attribute_token6] = ACTIONS(5998), - [aux_sym_variable_attributes_token2] = ACTIONS(5998), - [aux_sym_variable_attributes_token3] = ACTIONS(5998), - [aux_sym_variable_attributes_token5] = ACTIONS(5998), - [aux_sym__intrinsic_type_token1] = ACTIONS(5998), - [aux_sym__intrinsic_type_token3] = ACTIONS(5998), - [aux_sym__intrinsic_type_token4] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5998), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5998), - [aux_sym_type_qualifier_token1] = ACTIONS(5998), - [aux_sym_type_qualifier_token2] = ACTIONS(5998), - [anon_sym_SEMI] = ACTIONS(6002), - [aux_sym_stop_statement_token1] = ACTIONS(5998), - [aux_sym_stop_statement_token2] = ACTIONS(5998), - [aux_sym_subroutine_call_token1] = ACTIONS(5998), - [aux_sym_keyword_statement_token1] = ACTIONS(5998), - [aux_sym_keyword_statement_token2] = ACTIONS(5998), - [aux_sym_keyword_statement_token3] = ACTIONS(5998), - [aux_sym_keyword_statement_token4] = ACTIONS(5998), - [aux_sym_keyword_statement_token6] = ACTIONS(5998), - [aux_sym_keyword_statement_token7] = ACTIONS(5998), - [aux_sym_include_statement_token1] = ACTIONS(5998), - [aux_sym_data_statement_token1] = ACTIONS(5998), - [aux_sym_do_loop_statement_token1] = ACTIONS(5998), - [aux_sym__inline_if_statement_token1] = ACTIONS(5998), - [aux_sym_end_if_statement_token1] = ACTIONS(5998), - [aux_sym_elseif_clause_token2] = ACTIONS(5998), - [aux_sym__inline_where_statement_token1] = ACTIONS(5998), - [aux_sym__forall_control_expression_token1] = ACTIONS(5998), - [aux_sym_select_case_statement_token1] = ACTIONS(5998), - [aux_sym_select_case_statement_token3] = ACTIONS(5998), - [aux_sym_select_type_statement_token1] = ACTIONS(5998), - [aux_sym_select_rank_statement_token2] = ACTIONS(5998), - [aux_sym_block_construct_token1] = ACTIONS(5998), - [aux_sym_associate_statement_token1] = ACTIONS(5998), - [aux_sym_format_statement_token1] = ACTIONS(5998), - [aux_sym_print_statement_token1] = ACTIONS(5998), - [aux_sym_open_statement_token1] = ACTIONS(5998), - [aux_sym_close_statement_token1] = ACTIONS(5998), - [aux_sym_inquire_statement_token1] = ACTIONS(5998), - [aux_sym_file_position_statement_token1] = ACTIONS(5998), - [aux_sym_file_position_statement_token2] = ACTIONS(5998), - [aux_sym_file_position_statement_token3] = ACTIONS(5998), - [aux_sym_file_position_statement_token4] = ACTIONS(5998), - [aux_sym_allocate_statement_token1] = ACTIONS(5998), - [aux_sym_entry_statement_token1] = ACTIONS(5998), - [aux_sym_logical_expression_token5] = ACTIONS(6002), - [anon_sym_DOT] = ACTIONS(5998), - [anon_sym_LPAREN_SLASH] = ACTIONS(6002), - [anon_sym_LBRACK] = ACTIONS(6002), - [aux_sym_boolean_literal_token1] = ACTIONS(6002), - [aux_sym_boolean_literal_token2] = ACTIONS(6002), - [aux_sym_null_literal_token1] = ACTIONS(5998), - [aux_sym_coarray_statement_token1] = ACTIONS(5998), - [aux_sym_coarray_statement_token2] = ACTIONS(5998), - [aux_sym_coarray_statement_token6] = ACTIONS(5998), - [aux_sym_coarray_statement_token8] = ACTIONS(5998), - [aux_sym_coarray_statement_token11] = ACTIONS(5998), - [aux_sym_coarray_statement_token12] = ACTIONS(5998), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5998), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5998), - [aux_sym_identifier_token1] = ACTIONS(5998), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6002), - [sym__float_literal] = ACTIONS(6002), - [sym__boz_literal] = ACTIONS(6002), - [sym__string_literal] = ACTIONS(6002), - [sym__string_literal_kind] = ACTIONS(6002), + [1889] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(5936), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2032] = { - [aux_sym_preproc_include_token1] = ACTIONS(6004), - [aux_sym_preproc_def_token1] = ACTIONS(6004), - [aux_sym_preproc_if_token1] = ACTIONS(6004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6004), - [sym_preproc_directive] = ACTIONS(6004), - [anon_sym_LPAREN2] = ACTIONS(6004), - [sym_preproc_comment] = ACTIONS(6184), - [anon_sym_PLUS] = ACTIONS(6008), - [anon_sym_DASH] = ACTIONS(6008), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6004), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6004), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6004), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6004), - [aux_sym_procedure_attributes_token3] = ACTIONS(6004), - [aux_sym_contains_statement_token1] = ACTIONS(6004), - [aux_sym_use_statement_token2] = ACTIONS(6004), - [aux_sym_implicit_statement_token4] = ACTIONS(6004), - [aux_sym_save_statement_token1] = ACTIONS(6004), - [aux_sym_private_statement_token1] = ACTIONS(6004), - [aux_sym_public_statement_token1] = ACTIONS(6004), - [aux_sym_derived_type_definition_token1] = ACTIONS(6004), - [aux_sym_procedure_attribute_token6] = ACTIONS(6004), - [aux_sym_variable_attributes_token2] = ACTIONS(6004), - [aux_sym_variable_attributes_token3] = ACTIONS(6004), - [aux_sym_variable_attributes_token5] = ACTIONS(6004), - [aux_sym__intrinsic_type_token1] = ACTIONS(6004), - [aux_sym__intrinsic_type_token3] = ACTIONS(6004), - [aux_sym__intrinsic_type_token4] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6004), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6004), - [aux_sym_type_qualifier_token1] = ACTIONS(6004), - [aux_sym_type_qualifier_token2] = ACTIONS(6004), - [anon_sym_SEMI] = ACTIONS(6008), - [aux_sym_stop_statement_token1] = ACTIONS(6004), - [aux_sym_stop_statement_token2] = ACTIONS(6004), - [aux_sym_subroutine_call_token1] = ACTIONS(6004), - [aux_sym_keyword_statement_token1] = ACTIONS(6004), - [aux_sym_keyword_statement_token2] = ACTIONS(6004), - [aux_sym_keyword_statement_token3] = ACTIONS(6004), - [aux_sym_keyword_statement_token4] = ACTIONS(6004), - [aux_sym_keyword_statement_token6] = ACTIONS(6004), - [aux_sym_keyword_statement_token7] = ACTIONS(6004), - [aux_sym_include_statement_token1] = ACTIONS(6004), - [aux_sym_data_statement_token1] = ACTIONS(6004), - [aux_sym_do_loop_statement_token1] = ACTIONS(6004), - [aux_sym__inline_if_statement_token1] = ACTIONS(6004), - [aux_sym_end_if_statement_token1] = ACTIONS(6004), - [aux_sym_elseif_clause_token2] = ACTIONS(6004), - [aux_sym__inline_where_statement_token1] = ACTIONS(6004), - [aux_sym__forall_control_expression_token1] = ACTIONS(6004), - [aux_sym_select_case_statement_token1] = ACTIONS(6004), - [aux_sym_select_case_statement_token3] = ACTIONS(6004), - [aux_sym_select_type_statement_token1] = ACTIONS(6004), - [aux_sym_select_rank_statement_token2] = ACTIONS(6004), - [aux_sym_block_construct_token1] = ACTIONS(6004), - [aux_sym_associate_statement_token1] = ACTIONS(6004), - [aux_sym_format_statement_token1] = ACTIONS(6004), - [aux_sym_print_statement_token1] = ACTIONS(6004), - [aux_sym_open_statement_token1] = ACTIONS(6004), - [aux_sym_close_statement_token1] = ACTIONS(6004), - [aux_sym_inquire_statement_token1] = ACTIONS(6004), - [aux_sym_file_position_statement_token1] = ACTIONS(6004), - [aux_sym_file_position_statement_token2] = ACTIONS(6004), - [aux_sym_file_position_statement_token3] = ACTIONS(6004), - [aux_sym_file_position_statement_token4] = ACTIONS(6004), - [aux_sym_allocate_statement_token1] = ACTIONS(6004), - [aux_sym_entry_statement_token1] = ACTIONS(6004), - [aux_sym_logical_expression_token5] = ACTIONS(6008), - [anon_sym_DOT] = ACTIONS(6004), - [anon_sym_LPAREN_SLASH] = ACTIONS(6008), - [anon_sym_LBRACK] = ACTIONS(6008), - [aux_sym_boolean_literal_token1] = ACTIONS(6008), - [aux_sym_boolean_literal_token2] = ACTIONS(6008), - [aux_sym_null_literal_token1] = ACTIONS(6004), - [aux_sym_coarray_statement_token1] = ACTIONS(6004), - [aux_sym_coarray_statement_token2] = ACTIONS(6004), - [aux_sym_coarray_statement_token6] = ACTIONS(6004), - [aux_sym_coarray_statement_token8] = ACTIONS(6004), - [aux_sym_coarray_statement_token11] = ACTIONS(6004), - [aux_sym_coarray_statement_token12] = ACTIONS(6004), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6004), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6004), - [aux_sym_identifier_token1] = ACTIONS(6004), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6008), - [sym__float_literal] = ACTIONS(6008), - [sym__boz_literal] = ACTIONS(6008), - [sym__string_literal] = ACTIONS(6008), - [sym__string_literal_kind] = ACTIONS(6008), + [1890] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token2] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_end_program_statement_token2] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_contains_statement_token1] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), }, - [2033] = { - [aux_sym_preproc_include_token1] = ACTIONS(6010), - [aux_sym_preproc_def_token1] = ACTIONS(6010), - [aux_sym_preproc_if_token1] = ACTIONS(6010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6010), - [sym_preproc_directive] = ACTIONS(6010), - [anon_sym_LPAREN2] = ACTIONS(6010), - [sym_preproc_comment] = ACTIONS(6186), - [anon_sym_PLUS] = ACTIONS(6014), - [anon_sym_DASH] = ACTIONS(6014), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6010), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6010), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6010), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6010), - [aux_sym_procedure_attributes_token3] = ACTIONS(6010), - [aux_sym_contains_statement_token1] = ACTIONS(6010), - [aux_sym_use_statement_token2] = ACTIONS(6010), - [aux_sym_implicit_statement_token4] = ACTIONS(6010), - [aux_sym_save_statement_token1] = ACTIONS(6010), - [aux_sym_private_statement_token1] = ACTIONS(6010), - [aux_sym_public_statement_token1] = ACTIONS(6010), - [aux_sym_derived_type_definition_token1] = ACTIONS(6010), - [aux_sym_procedure_attribute_token6] = ACTIONS(6010), - [aux_sym_variable_attributes_token2] = ACTIONS(6010), - [aux_sym_variable_attributes_token3] = ACTIONS(6010), - [aux_sym_variable_attributes_token5] = ACTIONS(6010), - [aux_sym__intrinsic_type_token1] = ACTIONS(6010), - [aux_sym__intrinsic_type_token3] = ACTIONS(6010), - [aux_sym__intrinsic_type_token4] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6010), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6010), - [aux_sym_type_qualifier_token1] = ACTIONS(6010), - [aux_sym_type_qualifier_token2] = ACTIONS(6010), - [anon_sym_SEMI] = ACTIONS(6014), - [aux_sym_stop_statement_token1] = ACTIONS(6010), - [aux_sym_stop_statement_token2] = ACTIONS(6010), - [aux_sym_subroutine_call_token1] = ACTIONS(6010), - [aux_sym_keyword_statement_token1] = ACTIONS(6010), - [aux_sym_keyword_statement_token2] = ACTIONS(6010), - [aux_sym_keyword_statement_token3] = ACTIONS(6010), - [aux_sym_keyword_statement_token4] = ACTIONS(6010), - [aux_sym_keyword_statement_token6] = ACTIONS(6010), - [aux_sym_keyword_statement_token7] = ACTIONS(6010), - [aux_sym_include_statement_token1] = ACTIONS(6010), - [aux_sym_data_statement_token1] = ACTIONS(6010), - [aux_sym_do_loop_statement_token1] = ACTIONS(6010), - [aux_sym__inline_if_statement_token1] = ACTIONS(6010), - [aux_sym_end_if_statement_token1] = ACTIONS(6010), - [aux_sym_elseif_clause_token2] = ACTIONS(6010), - [aux_sym__inline_where_statement_token1] = ACTIONS(6010), - [aux_sym__forall_control_expression_token1] = ACTIONS(6010), - [aux_sym_select_case_statement_token1] = ACTIONS(6010), - [aux_sym_select_case_statement_token3] = ACTIONS(6010), - [aux_sym_select_type_statement_token1] = ACTIONS(6010), - [aux_sym_select_rank_statement_token2] = ACTIONS(6010), - [aux_sym_block_construct_token1] = ACTIONS(6010), - [aux_sym_associate_statement_token1] = ACTIONS(6010), - [aux_sym_format_statement_token1] = ACTIONS(6010), - [aux_sym_print_statement_token1] = ACTIONS(6010), - [aux_sym_open_statement_token1] = ACTIONS(6010), - [aux_sym_close_statement_token1] = ACTIONS(6010), - [aux_sym_inquire_statement_token1] = ACTIONS(6010), - [aux_sym_file_position_statement_token1] = ACTIONS(6010), - [aux_sym_file_position_statement_token2] = ACTIONS(6010), - [aux_sym_file_position_statement_token3] = ACTIONS(6010), - [aux_sym_file_position_statement_token4] = ACTIONS(6010), - [aux_sym_allocate_statement_token1] = ACTIONS(6010), - [aux_sym_entry_statement_token1] = ACTIONS(6010), - [aux_sym_logical_expression_token5] = ACTIONS(6014), - [anon_sym_DOT] = ACTIONS(6010), - [anon_sym_LPAREN_SLASH] = ACTIONS(6014), - [anon_sym_LBRACK] = ACTIONS(6014), - [aux_sym_boolean_literal_token1] = ACTIONS(6014), - [aux_sym_boolean_literal_token2] = ACTIONS(6014), - [aux_sym_null_literal_token1] = ACTIONS(6010), - [aux_sym_coarray_statement_token1] = ACTIONS(6010), - [aux_sym_coarray_statement_token2] = ACTIONS(6010), - [aux_sym_coarray_statement_token6] = ACTIONS(6010), - [aux_sym_coarray_statement_token8] = ACTIONS(6010), - [aux_sym_coarray_statement_token11] = ACTIONS(6010), - [aux_sym_coarray_statement_token12] = ACTIONS(6010), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6010), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6010), - [aux_sym_identifier_token1] = ACTIONS(6010), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6014), - [sym__float_literal] = ACTIONS(6014), - [sym__boz_literal] = ACTIONS(6014), - [sym__string_literal] = ACTIONS(6014), - [sym__string_literal_kind] = ACTIONS(6014), + [1891] = { + [aux_sym_preproc_include_token1] = ACTIONS(5938), + [aux_sym_preproc_def_token1] = ACTIONS(5938), + [aux_sym_preproc_if_token1] = ACTIONS(5938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), + [sym_preproc_directive] = ACTIONS(5938), + [anon_sym_LPAREN2] = ACTIONS(5938), + [sym_preproc_comment] = ACTIONS(5940), + [anon_sym_PLUS] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5942), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5938), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5938), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5938), + [aux_sym_procedure_attributes_token3] = ACTIONS(5938), + [aux_sym_end_function_statement_token1] = ACTIONS(5938), + [aux_sym_contains_statement_token1] = ACTIONS(5938), + [aux_sym_use_statement_token2] = ACTIONS(5938), + [aux_sym_implicit_statement_token4] = ACTIONS(5938), + [aux_sym_save_statement_token1] = ACTIONS(5938), + [aux_sym_private_statement_token1] = ACTIONS(5938), + [aux_sym_public_statement_token1] = ACTIONS(5938), + [aux_sym_derived_type_definition_token1] = ACTIONS(5938), + [aux_sym_procedure_attribute_token6] = ACTIONS(5938), + [aux_sym_variable_attributes_token2] = ACTIONS(5938), + [aux_sym_variable_attributes_token3] = ACTIONS(5938), + [aux_sym_variable_attributes_token5] = ACTIONS(5938), + [aux_sym__intrinsic_type_token1] = ACTIONS(5938), + [aux_sym__intrinsic_type_token3] = ACTIONS(5938), + [aux_sym__intrinsic_type_token4] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5938), + [aux_sym_type_qualifier_token1] = ACTIONS(5938), + [aux_sym_type_qualifier_token2] = ACTIONS(5938), + [anon_sym_SEMI] = ACTIONS(5942), + [aux_sym_stop_statement_token1] = ACTIONS(5938), + [aux_sym_stop_statement_token2] = ACTIONS(5938), + [aux_sym_subroutine_call_token1] = ACTIONS(5938), + [aux_sym_keyword_statement_token1] = ACTIONS(5938), + [aux_sym_keyword_statement_token2] = ACTIONS(5938), + [aux_sym_keyword_statement_token3] = ACTIONS(5938), + [aux_sym_keyword_statement_token4] = ACTIONS(5938), + [aux_sym_keyword_statement_token6] = ACTIONS(5938), + [aux_sym_keyword_statement_token7] = ACTIONS(5938), + [aux_sym_include_statement_token1] = ACTIONS(5938), + [aux_sym_data_statement_token1] = ACTIONS(5938), + [aux_sym_do_loop_statement_token1] = ACTIONS(5938), + [aux_sym__inline_if_statement_token1] = ACTIONS(5938), + [aux_sym_end_if_statement_token1] = ACTIONS(5938), + [aux_sym_elseif_clause_token2] = ACTIONS(5938), + [aux_sym__inline_where_statement_token1] = ACTIONS(5938), + [aux_sym__forall_control_expression_token1] = ACTIONS(5938), + [aux_sym_select_case_statement_token1] = ACTIONS(5938), + [aux_sym_select_case_statement_token3] = ACTIONS(5938), + [aux_sym_select_type_statement_token1] = ACTIONS(5938), + [aux_sym_select_rank_statement_token2] = ACTIONS(5938), + [aux_sym_block_construct_token1] = ACTIONS(5938), + [aux_sym_associate_statement_token1] = ACTIONS(5938), + [aux_sym_format_statement_token1] = ACTIONS(5938), + [aux_sym_print_statement_token1] = ACTIONS(5938), + [aux_sym_open_statement_token1] = ACTIONS(5938), + [aux_sym_close_statement_token1] = ACTIONS(5938), + [aux_sym_inquire_statement_token1] = ACTIONS(5938), + [aux_sym_file_position_statement_token1] = ACTIONS(5938), + [aux_sym_file_position_statement_token2] = ACTIONS(5938), + [aux_sym_file_position_statement_token3] = ACTIONS(5938), + [aux_sym_file_position_statement_token4] = ACTIONS(5938), + [aux_sym_allocate_statement_token1] = ACTIONS(5938), + [aux_sym_entry_statement_token1] = ACTIONS(5938), + [aux_sym_logical_expression_token5] = ACTIONS(5942), + [anon_sym_DOT] = ACTIONS(5938), + [anon_sym_LPAREN_SLASH] = ACTIONS(5942), + [anon_sym_LBRACK] = ACTIONS(5942), + [aux_sym_boolean_literal_token1] = ACTIONS(5942), + [aux_sym_boolean_literal_token2] = ACTIONS(5942), + [aux_sym_null_literal_token1] = ACTIONS(5938), + [aux_sym_coarray_statement_token1] = ACTIONS(5938), + [aux_sym_coarray_statement_token2] = ACTIONS(5938), + [aux_sym_coarray_statement_token6] = ACTIONS(5938), + [aux_sym_coarray_statement_token8] = ACTIONS(5938), + [aux_sym_coarray_statement_token11] = ACTIONS(5938), + [aux_sym_coarray_statement_token12] = ACTIONS(5938), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5938), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5938), + [aux_sym_identifier_token1] = ACTIONS(5938), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5942), + [sym__float_literal] = ACTIONS(5942), + [sym__boz_literal] = ACTIONS(5942), + [sym__string_literal] = ACTIONS(5942), + [sym__string_literal_kind] = ACTIONS(5942), }, - [2034] = { - [aux_sym_preproc_include_token1] = ACTIONS(6016), - [aux_sym_preproc_def_token1] = ACTIONS(6016), - [aux_sym_preproc_if_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6016), - [sym_preproc_directive] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [sym_preproc_comment] = ACTIONS(6188), - [anon_sym_PLUS] = ACTIONS(6020), - [anon_sym_DASH] = ACTIONS(6020), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6016), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6016), - [aux_sym_procedure_attributes_token3] = ACTIONS(6016), - [aux_sym_contains_statement_token1] = ACTIONS(6016), - [aux_sym_use_statement_token2] = ACTIONS(6016), - [aux_sym_implicit_statement_token4] = ACTIONS(6016), - [aux_sym_save_statement_token1] = ACTIONS(6016), - [aux_sym_private_statement_token1] = ACTIONS(6016), - [aux_sym_public_statement_token1] = ACTIONS(6016), - [aux_sym_derived_type_definition_token1] = ACTIONS(6016), - [aux_sym_procedure_attribute_token6] = ACTIONS(6016), - [aux_sym_variable_attributes_token2] = ACTIONS(6016), - [aux_sym_variable_attributes_token3] = ACTIONS(6016), - [aux_sym_variable_attributes_token5] = ACTIONS(6016), - [aux_sym__intrinsic_type_token1] = ACTIONS(6016), - [aux_sym__intrinsic_type_token3] = ACTIONS(6016), - [aux_sym__intrinsic_type_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6016), - [aux_sym_type_qualifier_token1] = ACTIONS(6016), - [aux_sym_type_qualifier_token2] = ACTIONS(6016), - [anon_sym_SEMI] = ACTIONS(6020), - [aux_sym_stop_statement_token1] = ACTIONS(6016), - [aux_sym_stop_statement_token2] = ACTIONS(6016), - [aux_sym_subroutine_call_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token2] = ACTIONS(6016), - [aux_sym_keyword_statement_token3] = ACTIONS(6016), - [aux_sym_keyword_statement_token4] = ACTIONS(6016), - [aux_sym_keyword_statement_token6] = ACTIONS(6016), - [aux_sym_keyword_statement_token7] = ACTIONS(6016), - [aux_sym_include_statement_token1] = ACTIONS(6016), - [aux_sym_data_statement_token1] = ACTIONS(6016), - [aux_sym_do_loop_statement_token1] = ACTIONS(6016), - [aux_sym__inline_if_statement_token1] = ACTIONS(6016), - [aux_sym_end_if_statement_token1] = ACTIONS(6016), - [aux_sym_elseif_clause_token2] = ACTIONS(6016), - [aux_sym__inline_where_statement_token1] = ACTIONS(6016), - [aux_sym__forall_control_expression_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token3] = ACTIONS(6016), - [aux_sym_select_type_statement_token1] = ACTIONS(6016), - [aux_sym_select_rank_statement_token2] = ACTIONS(6016), - [aux_sym_block_construct_token1] = ACTIONS(6016), - [aux_sym_associate_statement_token1] = ACTIONS(6016), - [aux_sym_format_statement_token1] = ACTIONS(6016), - [aux_sym_print_statement_token1] = ACTIONS(6016), - [aux_sym_open_statement_token1] = ACTIONS(6016), - [aux_sym_close_statement_token1] = ACTIONS(6016), - [aux_sym_inquire_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token2] = ACTIONS(6016), - [aux_sym_file_position_statement_token3] = ACTIONS(6016), - [aux_sym_file_position_statement_token4] = ACTIONS(6016), - [aux_sym_allocate_statement_token1] = ACTIONS(6016), - [aux_sym_entry_statement_token1] = ACTIONS(6016), - [aux_sym_logical_expression_token5] = ACTIONS(6020), - [anon_sym_DOT] = ACTIONS(6016), - [anon_sym_LPAREN_SLASH] = ACTIONS(6020), - [anon_sym_LBRACK] = ACTIONS(6020), - [aux_sym_boolean_literal_token1] = ACTIONS(6020), - [aux_sym_boolean_literal_token2] = ACTIONS(6020), - [aux_sym_null_literal_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token2] = ACTIONS(6016), - [aux_sym_coarray_statement_token6] = ACTIONS(6016), - [aux_sym_coarray_statement_token8] = ACTIONS(6016), - [aux_sym_coarray_statement_token11] = ACTIONS(6016), - [aux_sym_coarray_statement_token12] = ACTIONS(6016), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6016), - [aux_sym_identifier_token1] = ACTIONS(6016), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6020), - [sym__float_literal] = ACTIONS(6020), - [sym__boz_literal] = ACTIONS(6020), - [sym__string_literal] = ACTIONS(6020), - [sym__string_literal_kind] = ACTIONS(6020), + [1892] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym_end_where_statement_token1] = ACTIONS(4361), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [1893] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(5944), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token2] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_end_select_statement_token1] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2035] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6190), + [1894] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(5946), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_end_program_statement_token2] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token2] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_end_select_statement_token1] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -347356,1307 +333256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [2036] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6192), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_end_program_statement_token2] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_contains_statement_token1] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), - }, - [2037] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6194), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_end_program_statement_token2] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2038] = { - [aux_sym_preproc_include_token1] = ACTIONS(6042), - [aux_sym_preproc_def_token1] = ACTIONS(6042), - [aux_sym_preproc_if_token1] = ACTIONS(6042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6042), - [sym_preproc_directive] = ACTIONS(6042), - [anon_sym_LPAREN2] = ACTIONS(6042), - [sym_preproc_comment] = ACTIONS(6196), - [anon_sym_PLUS] = ACTIONS(6046), - [anon_sym_DASH] = ACTIONS(6046), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6042), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6042), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6042), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6042), - [aux_sym_procedure_attributes_token3] = ACTIONS(6042), - [aux_sym_contains_statement_token1] = ACTIONS(6042), - [aux_sym_use_statement_token2] = ACTIONS(6042), - [aux_sym_implicit_statement_token4] = ACTIONS(6042), - [aux_sym_save_statement_token1] = ACTIONS(6042), - [aux_sym_private_statement_token1] = ACTIONS(6042), - [aux_sym_public_statement_token1] = ACTIONS(6042), - [aux_sym_derived_type_definition_token1] = ACTIONS(6042), - [aux_sym_procedure_attribute_token6] = ACTIONS(6042), - [aux_sym_variable_attributes_token2] = ACTIONS(6042), - [aux_sym_variable_attributes_token3] = ACTIONS(6042), - [aux_sym_variable_attributes_token5] = ACTIONS(6042), - [aux_sym__intrinsic_type_token1] = ACTIONS(6042), - [aux_sym__intrinsic_type_token3] = ACTIONS(6042), - [aux_sym__intrinsic_type_token4] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6042), - [aux_sym_type_qualifier_token1] = ACTIONS(6042), - [aux_sym_type_qualifier_token2] = ACTIONS(6042), - [anon_sym_SEMI] = ACTIONS(6046), - [aux_sym_stop_statement_token1] = ACTIONS(6042), - [aux_sym_stop_statement_token2] = ACTIONS(6042), - [aux_sym_subroutine_call_token1] = ACTIONS(6042), - [aux_sym_keyword_statement_token1] = ACTIONS(6042), - [aux_sym_keyword_statement_token2] = ACTIONS(6042), - [aux_sym_keyword_statement_token3] = ACTIONS(6042), - [aux_sym_keyword_statement_token4] = ACTIONS(6042), - [aux_sym_keyword_statement_token6] = ACTIONS(6042), - [aux_sym_keyword_statement_token7] = ACTIONS(6042), - [aux_sym_include_statement_token1] = ACTIONS(6042), - [aux_sym_data_statement_token1] = ACTIONS(6042), - [aux_sym_do_loop_statement_token1] = ACTIONS(6042), - [aux_sym__inline_if_statement_token1] = ACTIONS(6042), - [aux_sym_end_if_statement_token1] = ACTIONS(6042), - [aux_sym_elseif_clause_token2] = ACTIONS(6042), - [aux_sym__inline_where_statement_token1] = ACTIONS(6042), - [aux_sym__forall_control_expression_token1] = ACTIONS(6042), - [aux_sym_select_case_statement_token1] = ACTIONS(6042), - [aux_sym_select_case_statement_token3] = ACTIONS(6042), - [aux_sym_select_type_statement_token1] = ACTIONS(6042), - [aux_sym_select_rank_statement_token2] = ACTIONS(6042), - [aux_sym_block_construct_token1] = ACTIONS(6042), - [aux_sym_associate_statement_token1] = ACTIONS(6042), - [aux_sym_format_statement_token1] = ACTIONS(6042), - [aux_sym_print_statement_token1] = ACTIONS(6042), - [aux_sym_open_statement_token1] = ACTIONS(6042), - [aux_sym_close_statement_token1] = ACTIONS(6042), - [aux_sym_inquire_statement_token1] = ACTIONS(6042), - [aux_sym_file_position_statement_token1] = ACTIONS(6042), - [aux_sym_file_position_statement_token2] = ACTIONS(6042), - [aux_sym_file_position_statement_token3] = ACTIONS(6042), - [aux_sym_file_position_statement_token4] = ACTIONS(6042), - [aux_sym_allocate_statement_token1] = ACTIONS(6042), - [aux_sym_entry_statement_token1] = ACTIONS(6042), - [aux_sym_logical_expression_token5] = ACTIONS(6046), - [anon_sym_DOT] = ACTIONS(6042), - [anon_sym_LPAREN_SLASH] = ACTIONS(6046), - [anon_sym_LBRACK] = ACTIONS(6046), - [aux_sym_boolean_literal_token1] = ACTIONS(6046), - [aux_sym_boolean_literal_token2] = ACTIONS(6046), - [aux_sym_null_literal_token1] = ACTIONS(6042), - [aux_sym_coarray_statement_token1] = ACTIONS(6042), - [aux_sym_coarray_statement_token2] = ACTIONS(6042), - [aux_sym_coarray_statement_token6] = ACTIONS(6042), - [aux_sym_coarray_statement_token8] = ACTIONS(6042), - [aux_sym_coarray_statement_token11] = ACTIONS(6042), - [aux_sym_coarray_statement_token12] = ACTIONS(6042), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6042), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6042), - [aux_sym_identifier_token1] = ACTIONS(6042), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6046), - [sym__float_literal] = ACTIONS(6046), - [sym__boz_literal] = ACTIONS(6046), - [sym__string_literal] = ACTIONS(6046), - [sym__string_literal_kind] = ACTIONS(6046), - }, - [2039] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6198), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_end_program_statement_token2] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_contains_statement_token1] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [2040] = { - [aux_sym_preproc_include_token1] = ACTIONS(6050), - [aux_sym_preproc_def_token1] = ACTIONS(6050), - [aux_sym_preproc_if_token1] = ACTIONS(6050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6050), - [sym_preproc_directive] = ACTIONS(6050), - [anon_sym_LPAREN2] = ACTIONS(6050), - [sym_preproc_comment] = ACTIONS(6200), - [anon_sym_PLUS] = ACTIONS(6054), - [anon_sym_DASH] = ACTIONS(6054), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6050), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6050), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6050), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6050), - [aux_sym_procedure_attributes_token3] = ACTIONS(6050), - [aux_sym_contains_statement_token1] = ACTIONS(6050), - [aux_sym_use_statement_token2] = ACTIONS(6050), - [aux_sym_implicit_statement_token4] = ACTIONS(6050), - [aux_sym_save_statement_token1] = ACTIONS(6050), - [aux_sym_private_statement_token1] = ACTIONS(6050), - [aux_sym_public_statement_token1] = ACTIONS(6050), - [aux_sym_derived_type_definition_token1] = ACTIONS(6050), - [aux_sym_procedure_attribute_token6] = ACTIONS(6050), - [aux_sym_variable_attributes_token2] = ACTIONS(6050), - [aux_sym_variable_attributes_token3] = ACTIONS(6050), - [aux_sym_variable_attributes_token5] = ACTIONS(6050), - [aux_sym__intrinsic_type_token1] = ACTIONS(6050), - [aux_sym__intrinsic_type_token3] = ACTIONS(6050), - [aux_sym__intrinsic_type_token4] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6050), - [aux_sym_type_qualifier_token1] = ACTIONS(6050), - [aux_sym_type_qualifier_token2] = ACTIONS(6050), - [anon_sym_SEMI] = ACTIONS(6054), - [aux_sym_stop_statement_token1] = ACTIONS(6050), - [aux_sym_stop_statement_token2] = ACTIONS(6050), - [aux_sym_subroutine_call_token1] = ACTIONS(6050), - [aux_sym_keyword_statement_token1] = ACTIONS(6050), - [aux_sym_keyword_statement_token2] = ACTIONS(6050), - [aux_sym_keyword_statement_token3] = ACTIONS(6050), - [aux_sym_keyword_statement_token4] = ACTIONS(6050), - [aux_sym_keyword_statement_token6] = ACTIONS(6050), - [aux_sym_keyword_statement_token7] = ACTIONS(6050), - [aux_sym_include_statement_token1] = ACTIONS(6050), - [aux_sym_data_statement_token1] = ACTIONS(6050), - [aux_sym_do_loop_statement_token1] = ACTIONS(6050), - [aux_sym__inline_if_statement_token1] = ACTIONS(6050), - [aux_sym_end_if_statement_token1] = ACTIONS(6050), - [aux_sym_elseif_clause_token2] = ACTIONS(6050), - [aux_sym__inline_where_statement_token1] = ACTIONS(6050), - [aux_sym__forall_control_expression_token1] = ACTIONS(6050), - [aux_sym_select_case_statement_token1] = ACTIONS(6050), - [aux_sym_select_case_statement_token3] = ACTIONS(6050), - [aux_sym_select_type_statement_token1] = ACTIONS(6050), - [aux_sym_select_rank_statement_token2] = ACTIONS(6050), - [aux_sym_block_construct_token1] = ACTIONS(6050), - [aux_sym_associate_statement_token1] = ACTIONS(6050), - [aux_sym_format_statement_token1] = ACTIONS(6050), - [aux_sym_print_statement_token1] = ACTIONS(6050), - [aux_sym_open_statement_token1] = ACTIONS(6050), - [aux_sym_close_statement_token1] = ACTIONS(6050), - [aux_sym_inquire_statement_token1] = ACTIONS(6050), - [aux_sym_file_position_statement_token1] = ACTIONS(6050), - [aux_sym_file_position_statement_token2] = ACTIONS(6050), - [aux_sym_file_position_statement_token3] = ACTIONS(6050), - [aux_sym_file_position_statement_token4] = ACTIONS(6050), - [aux_sym_allocate_statement_token1] = ACTIONS(6050), - [aux_sym_entry_statement_token1] = ACTIONS(6050), - [aux_sym_logical_expression_token5] = ACTIONS(6054), - [anon_sym_DOT] = ACTIONS(6050), - [anon_sym_LPAREN_SLASH] = ACTIONS(6054), - [anon_sym_LBRACK] = ACTIONS(6054), - [aux_sym_boolean_literal_token1] = ACTIONS(6054), - [aux_sym_boolean_literal_token2] = ACTIONS(6054), - [aux_sym_null_literal_token1] = ACTIONS(6050), - [aux_sym_coarray_statement_token1] = ACTIONS(6050), - [aux_sym_coarray_statement_token2] = ACTIONS(6050), - [aux_sym_coarray_statement_token6] = ACTIONS(6050), - [aux_sym_coarray_statement_token8] = ACTIONS(6050), - [aux_sym_coarray_statement_token11] = ACTIONS(6050), - [aux_sym_coarray_statement_token12] = ACTIONS(6050), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6050), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6050), - [aux_sym_identifier_token1] = ACTIONS(6050), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6054), - [sym__float_literal] = ACTIONS(6054), - [sym__boz_literal] = ACTIONS(6054), - [sym__string_literal] = ACTIONS(6054), - [sym__string_literal_kind] = ACTIONS(6054), - }, - [2041] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6202), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_end_program_statement_token2] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_contains_statement_token1] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [2042] = { - [aux_sym_preproc_include_token1] = ACTIONS(6060), - [aux_sym_preproc_def_token1] = ACTIONS(6060), - [aux_sym_preproc_if_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6060), - [sym_preproc_directive] = ACTIONS(6060), - [anon_sym_LPAREN2] = ACTIONS(6060), - [sym_preproc_comment] = ACTIONS(6204), - [anon_sym_PLUS] = ACTIONS(6064), - [anon_sym_DASH] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6060), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6060), - [aux_sym_procedure_attributes_token3] = ACTIONS(6060), - [aux_sym_contains_statement_token1] = ACTIONS(6060), - [aux_sym_use_statement_token2] = ACTIONS(6060), - [aux_sym_implicit_statement_token4] = ACTIONS(6060), - [aux_sym_save_statement_token1] = ACTIONS(6060), - [aux_sym_private_statement_token1] = ACTIONS(6060), - [aux_sym_public_statement_token1] = ACTIONS(6060), - [aux_sym_derived_type_definition_token1] = ACTIONS(6060), - [aux_sym_procedure_attribute_token6] = ACTIONS(6060), - [aux_sym_variable_attributes_token2] = ACTIONS(6060), - [aux_sym_variable_attributes_token3] = ACTIONS(6060), - [aux_sym_variable_attributes_token5] = ACTIONS(6060), - [aux_sym__intrinsic_type_token1] = ACTIONS(6060), - [aux_sym__intrinsic_type_token3] = ACTIONS(6060), - [aux_sym__intrinsic_type_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6060), - [aux_sym_type_qualifier_token1] = ACTIONS(6060), - [aux_sym_type_qualifier_token2] = ACTIONS(6060), - [anon_sym_SEMI] = ACTIONS(6064), - [aux_sym_stop_statement_token1] = ACTIONS(6060), - [aux_sym_stop_statement_token2] = ACTIONS(6060), - [aux_sym_subroutine_call_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token2] = ACTIONS(6060), - [aux_sym_keyword_statement_token3] = ACTIONS(6060), - [aux_sym_keyword_statement_token4] = ACTIONS(6060), - [aux_sym_keyword_statement_token6] = ACTIONS(6060), - [aux_sym_keyword_statement_token7] = ACTIONS(6060), - [aux_sym_include_statement_token1] = ACTIONS(6060), - [aux_sym_data_statement_token1] = ACTIONS(6060), - [aux_sym_do_loop_statement_token1] = ACTIONS(6060), - [aux_sym__inline_if_statement_token1] = ACTIONS(6060), - [aux_sym_end_if_statement_token1] = ACTIONS(6060), - [aux_sym_elseif_clause_token2] = ACTIONS(6060), - [aux_sym__inline_where_statement_token1] = ACTIONS(6060), - [aux_sym__forall_control_expression_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token3] = ACTIONS(6060), - [aux_sym_select_type_statement_token1] = ACTIONS(6060), - [aux_sym_select_rank_statement_token2] = ACTIONS(6060), - [aux_sym_block_construct_token1] = ACTIONS(6060), - [aux_sym_associate_statement_token1] = ACTIONS(6060), - [aux_sym_format_statement_token1] = ACTIONS(6060), - [aux_sym_print_statement_token1] = ACTIONS(6060), - [aux_sym_open_statement_token1] = ACTIONS(6060), - [aux_sym_close_statement_token1] = ACTIONS(6060), - [aux_sym_inquire_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token2] = ACTIONS(6060), - [aux_sym_file_position_statement_token3] = ACTIONS(6060), - [aux_sym_file_position_statement_token4] = ACTIONS(6060), - [aux_sym_allocate_statement_token1] = ACTIONS(6060), - [aux_sym_entry_statement_token1] = ACTIONS(6060), - [aux_sym_logical_expression_token5] = ACTIONS(6064), - [anon_sym_DOT] = ACTIONS(6060), - [anon_sym_LPAREN_SLASH] = ACTIONS(6064), - [anon_sym_LBRACK] = ACTIONS(6064), - [aux_sym_boolean_literal_token1] = ACTIONS(6064), - [aux_sym_boolean_literal_token2] = ACTIONS(6064), - [aux_sym_null_literal_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token2] = ACTIONS(6060), - [aux_sym_coarray_statement_token6] = ACTIONS(6060), - [aux_sym_coarray_statement_token8] = ACTIONS(6060), - [aux_sym_coarray_statement_token11] = ACTIONS(6060), - [aux_sym_coarray_statement_token12] = ACTIONS(6060), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6060), - [aux_sym_identifier_token1] = ACTIONS(6060), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6064), - [sym__float_literal] = ACTIONS(6064), - [sym__boz_literal] = ACTIONS(6064), - [sym__string_literal] = ACTIONS(6064), - [sym__string_literal_kind] = ACTIONS(6064), - }, - [2043] = { - [aux_sym_preproc_include_token1] = ACTIONS(6066), - [aux_sym_preproc_def_token1] = ACTIONS(6066), - [aux_sym_preproc_if_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6066), - [sym_preproc_directive] = ACTIONS(6066), - [anon_sym_LPAREN2] = ACTIONS(6066), - [sym_preproc_comment] = ACTIONS(6206), - [anon_sym_PLUS] = ACTIONS(6070), - [anon_sym_DASH] = ACTIONS(6070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6066), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6066), - [aux_sym_procedure_attributes_token3] = ACTIONS(6066), - [aux_sym_contains_statement_token1] = ACTIONS(6066), - [aux_sym_use_statement_token2] = ACTIONS(6066), - [aux_sym_implicit_statement_token4] = ACTIONS(6066), - [aux_sym_save_statement_token1] = ACTIONS(6066), - [aux_sym_private_statement_token1] = ACTIONS(6066), - [aux_sym_public_statement_token1] = ACTIONS(6066), - [aux_sym_derived_type_definition_token1] = ACTIONS(6066), - [aux_sym_procedure_attribute_token6] = ACTIONS(6066), - [aux_sym_variable_attributes_token2] = ACTIONS(6066), - [aux_sym_variable_attributes_token3] = ACTIONS(6066), - [aux_sym_variable_attributes_token5] = ACTIONS(6066), - [aux_sym__intrinsic_type_token1] = ACTIONS(6066), - [aux_sym__intrinsic_type_token3] = ACTIONS(6066), - [aux_sym__intrinsic_type_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6066), - [aux_sym_type_qualifier_token1] = ACTIONS(6066), - [aux_sym_type_qualifier_token2] = ACTIONS(6066), - [anon_sym_SEMI] = ACTIONS(6070), - [aux_sym_stop_statement_token1] = ACTIONS(6066), - [aux_sym_stop_statement_token2] = ACTIONS(6066), - [aux_sym_subroutine_call_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token2] = ACTIONS(6066), - [aux_sym_keyword_statement_token3] = ACTIONS(6066), - [aux_sym_keyword_statement_token4] = ACTIONS(6066), - [aux_sym_keyword_statement_token6] = ACTIONS(6066), - [aux_sym_keyword_statement_token7] = ACTIONS(6066), - [aux_sym_include_statement_token1] = ACTIONS(6066), - [aux_sym_data_statement_token1] = ACTIONS(6066), - [aux_sym_do_loop_statement_token1] = ACTIONS(6066), - [aux_sym__inline_if_statement_token1] = ACTIONS(6066), - [aux_sym_end_if_statement_token1] = ACTIONS(6066), - [aux_sym_elseif_clause_token2] = ACTIONS(6066), - [aux_sym__inline_where_statement_token1] = ACTIONS(6066), - [aux_sym__forall_control_expression_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token3] = ACTIONS(6066), - [aux_sym_select_type_statement_token1] = ACTIONS(6066), - [aux_sym_select_rank_statement_token2] = ACTIONS(6066), - [aux_sym_block_construct_token1] = ACTIONS(6066), - [aux_sym_associate_statement_token1] = ACTIONS(6066), - [aux_sym_format_statement_token1] = ACTIONS(6066), - [aux_sym_print_statement_token1] = ACTIONS(6066), - [aux_sym_open_statement_token1] = ACTIONS(6066), - [aux_sym_close_statement_token1] = ACTIONS(6066), - [aux_sym_inquire_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token2] = ACTIONS(6066), - [aux_sym_file_position_statement_token3] = ACTIONS(6066), - [aux_sym_file_position_statement_token4] = ACTIONS(6066), - [aux_sym_allocate_statement_token1] = ACTIONS(6066), - [aux_sym_entry_statement_token1] = ACTIONS(6066), - [aux_sym_logical_expression_token5] = ACTIONS(6070), - [anon_sym_DOT] = ACTIONS(6066), - [anon_sym_LPAREN_SLASH] = ACTIONS(6070), - [anon_sym_LBRACK] = ACTIONS(6070), - [aux_sym_boolean_literal_token1] = ACTIONS(6070), - [aux_sym_boolean_literal_token2] = ACTIONS(6070), - [aux_sym_null_literal_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token2] = ACTIONS(6066), - [aux_sym_coarray_statement_token6] = ACTIONS(6066), - [aux_sym_coarray_statement_token8] = ACTIONS(6066), - [aux_sym_coarray_statement_token11] = ACTIONS(6066), - [aux_sym_coarray_statement_token12] = ACTIONS(6066), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6066), - [aux_sym_identifier_token1] = ACTIONS(6066), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6070), - [sym__float_literal] = ACTIONS(6070), - [sym__boz_literal] = ACTIONS(6070), - [sym__string_literal] = ACTIONS(6070), - [sym__string_literal_kind] = ACTIONS(6070), - }, - [2044] = { - [aux_sym_preproc_include_token1] = ACTIONS(6102), - [aux_sym_preproc_def_token1] = ACTIONS(6102), - [aux_sym_preproc_if_token1] = ACTIONS(6102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6102), - [sym_preproc_directive] = ACTIONS(6102), - [anon_sym_LPAREN2] = ACTIONS(6102), - [sym_preproc_comment] = ACTIONS(6208), - [anon_sym_PLUS] = ACTIONS(6106), - [anon_sym_DASH] = ACTIONS(6106), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6102), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6102), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6102), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6102), - [aux_sym_procedure_attributes_token3] = ACTIONS(6102), - [aux_sym_contains_statement_token1] = ACTIONS(6102), - [aux_sym_use_statement_token2] = ACTIONS(6102), - [aux_sym_implicit_statement_token4] = ACTIONS(6102), - [aux_sym_save_statement_token1] = ACTIONS(6102), - [aux_sym_private_statement_token1] = ACTIONS(6102), - [aux_sym_public_statement_token1] = ACTIONS(6102), - [aux_sym_derived_type_definition_token1] = ACTIONS(6102), - [aux_sym_procedure_attribute_token6] = ACTIONS(6102), - [aux_sym_variable_attributes_token2] = ACTIONS(6102), - [aux_sym_variable_attributes_token3] = ACTIONS(6102), - [aux_sym_variable_attributes_token5] = ACTIONS(6102), - [aux_sym__intrinsic_type_token1] = ACTIONS(6102), - [aux_sym__intrinsic_type_token3] = ACTIONS(6102), - [aux_sym__intrinsic_type_token4] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6102), - [aux_sym_type_qualifier_token1] = ACTIONS(6102), - [aux_sym_type_qualifier_token2] = ACTIONS(6102), - [anon_sym_SEMI] = ACTIONS(6106), - [aux_sym_stop_statement_token1] = ACTIONS(6102), - [aux_sym_stop_statement_token2] = ACTIONS(6102), - [aux_sym_subroutine_call_token1] = ACTIONS(6102), - [aux_sym_keyword_statement_token1] = ACTIONS(6102), - [aux_sym_keyword_statement_token2] = ACTIONS(6102), - [aux_sym_keyword_statement_token3] = ACTIONS(6102), - [aux_sym_keyword_statement_token4] = ACTIONS(6102), - [aux_sym_keyword_statement_token6] = ACTIONS(6102), - [aux_sym_keyword_statement_token7] = ACTIONS(6102), - [aux_sym_include_statement_token1] = ACTIONS(6102), - [aux_sym_data_statement_token1] = ACTIONS(6102), - [aux_sym_do_loop_statement_token1] = ACTIONS(6102), - [aux_sym__inline_if_statement_token1] = ACTIONS(6102), - [aux_sym_end_if_statement_token1] = ACTIONS(6102), - [aux_sym_elseif_clause_token2] = ACTIONS(6102), - [aux_sym__inline_where_statement_token1] = ACTIONS(6102), - [aux_sym__forall_control_expression_token1] = ACTIONS(6102), - [aux_sym_select_case_statement_token1] = ACTIONS(6102), - [aux_sym_select_case_statement_token3] = ACTIONS(6102), - [aux_sym_select_type_statement_token1] = ACTIONS(6102), - [aux_sym_select_rank_statement_token2] = ACTIONS(6102), - [aux_sym_block_construct_token1] = ACTIONS(6102), - [aux_sym_associate_statement_token1] = ACTIONS(6102), - [aux_sym_format_statement_token1] = ACTIONS(6102), - [aux_sym_print_statement_token1] = ACTIONS(6102), - [aux_sym_open_statement_token1] = ACTIONS(6102), - [aux_sym_close_statement_token1] = ACTIONS(6102), - [aux_sym_inquire_statement_token1] = ACTIONS(6102), - [aux_sym_file_position_statement_token1] = ACTIONS(6102), - [aux_sym_file_position_statement_token2] = ACTIONS(6102), - [aux_sym_file_position_statement_token3] = ACTIONS(6102), - [aux_sym_file_position_statement_token4] = ACTIONS(6102), - [aux_sym_allocate_statement_token1] = ACTIONS(6102), - [aux_sym_entry_statement_token1] = ACTIONS(6102), - [aux_sym_logical_expression_token5] = ACTIONS(6106), - [anon_sym_DOT] = ACTIONS(6102), - [anon_sym_LPAREN_SLASH] = ACTIONS(6106), - [anon_sym_LBRACK] = ACTIONS(6106), - [aux_sym_boolean_literal_token1] = ACTIONS(6106), - [aux_sym_boolean_literal_token2] = ACTIONS(6106), - [aux_sym_null_literal_token1] = ACTIONS(6102), - [aux_sym_coarray_statement_token1] = ACTIONS(6102), - [aux_sym_coarray_statement_token2] = ACTIONS(6102), - [aux_sym_coarray_statement_token6] = ACTIONS(6102), - [aux_sym_coarray_statement_token8] = ACTIONS(6102), - [aux_sym_coarray_statement_token11] = ACTIONS(6102), - [aux_sym_coarray_statement_token12] = ACTIONS(6102), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6102), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6102), - [aux_sym_identifier_token1] = ACTIONS(6102), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6106), - [sym__float_literal] = ACTIONS(6106), - [sym__boz_literal] = ACTIONS(6106), - [sym__string_literal] = ACTIONS(6106), - [sym__string_literal_kind] = ACTIONS(6106), - }, - [2045] = { - [aux_sym_preproc_include_token1] = ACTIONS(6108), - [aux_sym_preproc_def_token1] = ACTIONS(6108), - [aux_sym_preproc_if_token1] = ACTIONS(6108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6108), - [sym_preproc_directive] = ACTIONS(6108), - [anon_sym_LPAREN2] = ACTIONS(6108), - [sym_preproc_comment] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6112), - [anon_sym_DASH] = ACTIONS(6112), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6108), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6108), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6108), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6108), - [aux_sym_procedure_attributes_token3] = ACTIONS(6108), - [aux_sym_contains_statement_token1] = ACTIONS(6108), - [aux_sym_use_statement_token2] = ACTIONS(6108), - [aux_sym_implicit_statement_token4] = ACTIONS(6108), - [aux_sym_save_statement_token1] = ACTIONS(6108), - [aux_sym_private_statement_token1] = ACTIONS(6108), - [aux_sym_public_statement_token1] = ACTIONS(6108), - [aux_sym_derived_type_definition_token1] = ACTIONS(6108), - [aux_sym_procedure_attribute_token6] = ACTIONS(6108), - [aux_sym_variable_attributes_token2] = ACTIONS(6108), - [aux_sym_variable_attributes_token3] = ACTIONS(6108), - [aux_sym_variable_attributes_token5] = ACTIONS(6108), - [aux_sym__intrinsic_type_token1] = ACTIONS(6108), - [aux_sym__intrinsic_type_token3] = ACTIONS(6108), - [aux_sym__intrinsic_type_token4] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6108), - [aux_sym_type_qualifier_token1] = ACTIONS(6108), - [aux_sym_type_qualifier_token2] = ACTIONS(6108), - [anon_sym_SEMI] = ACTIONS(6112), - [aux_sym_stop_statement_token1] = ACTIONS(6108), - [aux_sym_stop_statement_token2] = ACTIONS(6108), - [aux_sym_subroutine_call_token1] = ACTIONS(6108), - [aux_sym_keyword_statement_token1] = ACTIONS(6108), - [aux_sym_keyword_statement_token2] = ACTIONS(6108), - [aux_sym_keyword_statement_token3] = ACTIONS(6108), - [aux_sym_keyword_statement_token4] = ACTIONS(6108), - [aux_sym_keyword_statement_token6] = ACTIONS(6108), - [aux_sym_keyword_statement_token7] = ACTIONS(6108), - [aux_sym_include_statement_token1] = ACTIONS(6108), - [aux_sym_data_statement_token1] = ACTIONS(6108), - [aux_sym_do_loop_statement_token1] = ACTIONS(6108), - [aux_sym__inline_if_statement_token1] = ACTIONS(6108), - [aux_sym_end_if_statement_token1] = ACTIONS(6108), - [aux_sym_elseif_clause_token2] = ACTIONS(6108), - [aux_sym__inline_where_statement_token1] = ACTIONS(6108), - [aux_sym__forall_control_expression_token1] = ACTIONS(6108), - [aux_sym_select_case_statement_token1] = ACTIONS(6108), - [aux_sym_select_case_statement_token3] = ACTIONS(6108), - [aux_sym_select_type_statement_token1] = ACTIONS(6108), - [aux_sym_select_rank_statement_token2] = ACTIONS(6108), - [aux_sym_block_construct_token1] = ACTIONS(6108), - [aux_sym_associate_statement_token1] = ACTIONS(6108), - [aux_sym_format_statement_token1] = ACTIONS(6108), - [aux_sym_print_statement_token1] = ACTIONS(6108), - [aux_sym_open_statement_token1] = ACTIONS(6108), - [aux_sym_close_statement_token1] = ACTIONS(6108), - [aux_sym_inquire_statement_token1] = ACTIONS(6108), - [aux_sym_file_position_statement_token1] = ACTIONS(6108), - [aux_sym_file_position_statement_token2] = ACTIONS(6108), - [aux_sym_file_position_statement_token3] = ACTIONS(6108), - [aux_sym_file_position_statement_token4] = ACTIONS(6108), - [aux_sym_allocate_statement_token1] = ACTIONS(6108), - [aux_sym_entry_statement_token1] = ACTIONS(6108), - [aux_sym_logical_expression_token5] = ACTIONS(6112), - [anon_sym_DOT] = ACTIONS(6108), - [anon_sym_LPAREN_SLASH] = ACTIONS(6112), - [anon_sym_LBRACK] = ACTIONS(6112), - [aux_sym_boolean_literal_token1] = ACTIONS(6112), - [aux_sym_boolean_literal_token2] = ACTIONS(6112), - [aux_sym_null_literal_token1] = ACTIONS(6108), - [aux_sym_coarray_statement_token1] = ACTIONS(6108), - [aux_sym_coarray_statement_token2] = ACTIONS(6108), - [aux_sym_coarray_statement_token6] = ACTIONS(6108), - [aux_sym_coarray_statement_token8] = ACTIONS(6108), - [aux_sym_coarray_statement_token11] = ACTIONS(6108), - [aux_sym_coarray_statement_token12] = ACTIONS(6108), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6108), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6108), - [aux_sym_identifier_token1] = ACTIONS(6108), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6112), - [sym__float_literal] = ACTIONS(6112), - [sym__boz_literal] = ACTIONS(6112), - [sym__string_literal] = ACTIONS(6112), - [sym__string_literal_kind] = ACTIONS(6112), - }, - [2046] = { - [aux_sym_preproc_include_token1] = ACTIONS(6114), - [aux_sym_preproc_def_token1] = ACTIONS(6114), - [aux_sym_preproc_if_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6114), - [sym_preproc_directive] = ACTIONS(6114), - [anon_sym_LPAREN2] = ACTIONS(6114), - [sym_preproc_comment] = ACTIONS(6212), - [anon_sym_PLUS] = ACTIONS(6118), - [anon_sym_DASH] = ACTIONS(6118), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6114), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6114), - [aux_sym_procedure_attributes_token3] = ACTIONS(6114), - [aux_sym_contains_statement_token1] = ACTIONS(6114), - [aux_sym_use_statement_token2] = ACTIONS(6114), - [aux_sym_implicit_statement_token4] = ACTIONS(6114), - [aux_sym_save_statement_token1] = ACTIONS(6114), - [aux_sym_private_statement_token1] = ACTIONS(6114), - [aux_sym_public_statement_token1] = ACTIONS(6114), - [aux_sym_derived_type_definition_token1] = ACTIONS(6114), - [aux_sym_procedure_attribute_token6] = ACTIONS(6114), - [aux_sym_variable_attributes_token2] = ACTIONS(6114), - [aux_sym_variable_attributes_token3] = ACTIONS(6114), - [aux_sym_variable_attributes_token5] = ACTIONS(6114), - [aux_sym__intrinsic_type_token1] = ACTIONS(6114), - [aux_sym__intrinsic_type_token3] = ACTIONS(6114), - [aux_sym__intrinsic_type_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6114), - [aux_sym_type_qualifier_token1] = ACTIONS(6114), - [aux_sym_type_qualifier_token2] = ACTIONS(6114), - [anon_sym_SEMI] = ACTIONS(6118), - [aux_sym_stop_statement_token1] = ACTIONS(6114), - [aux_sym_stop_statement_token2] = ACTIONS(6114), - [aux_sym_subroutine_call_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token2] = ACTIONS(6114), - [aux_sym_keyword_statement_token3] = ACTIONS(6114), - [aux_sym_keyword_statement_token4] = ACTIONS(6114), - [aux_sym_keyword_statement_token6] = ACTIONS(6114), - [aux_sym_keyword_statement_token7] = ACTIONS(6114), - [aux_sym_include_statement_token1] = ACTIONS(6114), - [aux_sym_data_statement_token1] = ACTIONS(6114), - [aux_sym_do_loop_statement_token1] = ACTIONS(6114), - [aux_sym__inline_if_statement_token1] = ACTIONS(6114), - [aux_sym_end_if_statement_token1] = ACTIONS(6114), - [aux_sym_elseif_clause_token2] = ACTIONS(6114), - [aux_sym__inline_where_statement_token1] = ACTIONS(6114), - [aux_sym__forall_control_expression_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token3] = ACTIONS(6114), - [aux_sym_select_type_statement_token1] = ACTIONS(6114), - [aux_sym_select_rank_statement_token2] = ACTIONS(6114), - [aux_sym_block_construct_token1] = ACTIONS(6114), - [aux_sym_associate_statement_token1] = ACTIONS(6114), - [aux_sym_format_statement_token1] = ACTIONS(6114), - [aux_sym_print_statement_token1] = ACTIONS(6114), - [aux_sym_open_statement_token1] = ACTIONS(6114), - [aux_sym_close_statement_token1] = ACTIONS(6114), - [aux_sym_inquire_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token2] = ACTIONS(6114), - [aux_sym_file_position_statement_token3] = ACTIONS(6114), - [aux_sym_file_position_statement_token4] = ACTIONS(6114), - [aux_sym_allocate_statement_token1] = ACTIONS(6114), - [aux_sym_entry_statement_token1] = ACTIONS(6114), - [aux_sym_logical_expression_token5] = ACTIONS(6118), - [anon_sym_DOT] = ACTIONS(6114), - [anon_sym_LPAREN_SLASH] = ACTIONS(6118), - [anon_sym_LBRACK] = ACTIONS(6118), - [aux_sym_boolean_literal_token1] = ACTIONS(6118), - [aux_sym_boolean_literal_token2] = ACTIONS(6118), - [aux_sym_null_literal_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token2] = ACTIONS(6114), - [aux_sym_coarray_statement_token6] = ACTIONS(6114), - [aux_sym_coarray_statement_token8] = ACTIONS(6114), - [aux_sym_coarray_statement_token11] = ACTIONS(6114), - [aux_sym_coarray_statement_token12] = ACTIONS(6114), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6114), - [aux_sym_identifier_token1] = ACTIONS(6114), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6118), - [sym__float_literal] = ACTIONS(6118), - [sym__boz_literal] = ACTIONS(6118), - [sym__string_literal] = ACTIONS(6118), - [sym__string_literal_kind] = ACTIONS(6118), - }, - [2047] = { - [aux_sym_preproc_include_token1] = ACTIONS(6034), - [aux_sym_preproc_def_token1] = ACTIONS(6034), - [aux_sym_preproc_if_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6034), - [sym_preproc_directive] = ACTIONS(6034), - [anon_sym_LPAREN2] = ACTIONS(6034), - [sym_preproc_comment] = ACTIONS(6214), - [anon_sym_PLUS] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6038), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6034), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6034), - [aux_sym_procedure_attributes_token3] = ACTIONS(6034), - [aux_sym_contains_statement_token1] = ACTIONS(6034), - [aux_sym_use_statement_token2] = ACTIONS(6034), - [aux_sym_implicit_statement_token4] = ACTIONS(6034), - [aux_sym_save_statement_token1] = ACTIONS(6034), - [aux_sym_private_statement_token1] = ACTIONS(6034), - [aux_sym_public_statement_token1] = ACTIONS(6034), - [aux_sym_derived_type_definition_token1] = ACTIONS(6034), - [aux_sym_procedure_attribute_token6] = ACTIONS(6034), - [aux_sym_variable_attributes_token2] = ACTIONS(6034), - [aux_sym_variable_attributes_token3] = ACTIONS(6034), - [aux_sym_variable_attributes_token5] = ACTIONS(6034), - [aux_sym__intrinsic_type_token1] = ACTIONS(6034), - [aux_sym__intrinsic_type_token3] = ACTIONS(6034), - [aux_sym__intrinsic_type_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6034), - [aux_sym_type_qualifier_token1] = ACTIONS(6034), - [aux_sym_type_qualifier_token2] = ACTIONS(6034), - [anon_sym_SEMI] = ACTIONS(6038), - [aux_sym_stop_statement_token1] = ACTIONS(6034), - [aux_sym_stop_statement_token2] = ACTIONS(6034), - [aux_sym_subroutine_call_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token2] = ACTIONS(6034), - [aux_sym_keyword_statement_token3] = ACTIONS(6034), - [aux_sym_keyword_statement_token4] = ACTIONS(6034), - [aux_sym_keyword_statement_token6] = ACTIONS(6034), - [aux_sym_keyword_statement_token7] = ACTIONS(6034), - [aux_sym_include_statement_token1] = ACTIONS(6034), - [aux_sym_data_statement_token1] = ACTIONS(6034), - [aux_sym_do_loop_statement_token1] = ACTIONS(6034), - [aux_sym__inline_if_statement_token1] = ACTIONS(6034), - [aux_sym_end_if_statement_token1] = ACTIONS(6034), - [aux_sym_elseif_clause_token2] = ACTIONS(6034), - [aux_sym__inline_where_statement_token1] = ACTIONS(6034), - [aux_sym__forall_control_expression_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token3] = ACTIONS(6034), - [aux_sym_select_type_statement_token1] = ACTIONS(6034), - [aux_sym_select_rank_statement_token2] = ACTIONS(6034), - [aux_sym_block_construct_token1] = ACTIONS(6034), - [aux_sym_associate_statement_token1] = ACTIONS(6034), - [aux_sym_format_statement_token1] = ACTIONS(6034), - [aux_sym_print_statement_token1] = ACTIONS(6034), - [aux_sym_open_statement_token1] = ACTIONS(6034), - [aux_sym_close_statement_token1] = ACTIONS(6034), - [aux_sym_inquire_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token2] = ACTIONS(6034), - [aux_sym_file_position_statement_token3] = ACTIONS(6034), - [aux_sym_file_position_statement_token4] = ACTIONS(6034), - [aux_sym_allocate_statement_token1] = ACTIONS(6034), - [aux_sym_entry_statement_token1] = ACTIONS(6034), - [aux_sym_logical_expression_token5] = ACTIONS(6038), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_LPAREN_SLASH] = ACTIONS(6038), - [anon_sym_LBRACK] = ACTIONS(6038), - [aux_sym_boolean_literal_token1] = ACTIONS(6038), - [aux_sym_boolean_literal_token2] = ACTIONS(6038), - [aux_sym_null_literal_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token2] = ACTIONS(6034), - [aux_sym_coarray_statement_token6] = ACTIONS(6034), - [aux_sym_coarray_statement_token8] = ACTIONS(6034), - [aux_sym_coarray_statement_token11] = ACTIONS(6034), - [aux_sym_coarray_statement_token12] = ACTIONS(6034), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6034), - [aux_sym_identifier_token1] = ACTIONS(6034), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6038), - [sym__float_literal] = ACTIONS(6038), - [sym__boz_literal] = ACTIONS(6038), - [sym__string_literal] = ACTIONS(6038), - [sym__string_literal_kind] = ACTIONS(6038), - }, - [2048] = { - [aux_sym_preproc_include_token1] = ACTIONS(6078), - [aux_sym_preproc_def_token1] = ACTIONS(6078), - [aux_sym_preproc_if_token1] = ACTIONS(6078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6078), - [sym_preproc_directive] = ACTIONS(6078), - [anon_sym_LPAREN2] = ACTIONS(6078), - [sym_preproc_comment] = ACTIONS(6216), - [anon_sym_PLUS] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6082), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6078), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6078), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6078), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6078), - [aux_sym_procedure_attributes_token3] = ACTIONS(6078), - [aux_sym_contains_statement_token1] = ACTIONS(6078), - [aux_sym_use_statement_token2] = ACTIONS(6078), - [aux_sym_implicit_statement_token4] = ACTIONS(6078), - [aux_sym_save_statement_token1] = ACTIONS(6078), - [aux_sym_private_statement_token1] = ACTIONS(6078), - [aux_sym_public_statement_token1] = ACTIONS(6078), - [aux_sym_derived_type_definition_token1] = ACTIONS(6078), - [aux_sym_procedure_attribute_token6] = ACTIONS(6078), - [aux_sym_variable_attributes_token2] = ACTIONS(6078), - [aux_sym_variable_attributes_token3] = ACTIONS(6078), - [aux_sym_variable_attributes_token5] = ACTIONS(6078), - [aux_sym__intrinsic_type_token1] = ACTIONS(6078), - [aux_sym__intrinsic_type_token3] = ACTIONS(6078), - [aux_sym__intrinsic_type_token4] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6078), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6078), - [aux_sym_type_qualifier_token1] = ACTIONS(6078), - [aux_sym_type_qualifier_token2] = ACTIONS(6078), - [anon_sym_SEMI] = ACTIONS(6082), - [aux_sym_stop_statement_token1] = ACTIONS(6078), - [aux_sym_stop_statement_token2] = ACTIONS(6078), - [aux_sym_subroutine_call_token1] = ACTIONS(6078), - [aux_sym_keyword_statement_token1] = ACTIONS(6078), - [aux_sym_keyword_statement_token2] = ACTIONS(6078), - [aux_sym_keyword_statement_token3] = ACTIONS(6078), - [aux_sym_keyword_statement_token4] = ACTIONS(6078), - [aux_sym_keyword_statement_token6] = ACTIONS(6078), - [aux_sym_keyword_statement_token7] = ACTIONS(6078), - [aux_sym_include_statement_token1] = ACTIONS(6078), - [aux_sym_data_statement_token1] = ACTIONS(6078), - [aux_sym_do_loop_statement_token1] = ACTIONS(6078), - [aux_sym__inline_if_statement_token1] = ACTIONS(6078), - [aux_sym_end_if_statement_token1] = ACTIONS(6078), - [aux_sym_elseif_clause_token2] = ACTIONS(6078), - [aux_sym__inline_where_statement_token1] = ACTIONS(6078), - [aux_sym__forall_control_expression_token1] = ACTIONS(6078), - [aux_sym_select_case_statement_token1] = ACTIONS(6078), - [aux_sym_select_case_statement_token3] = ACTIONS(6078), - [aux_sym_select_type_statement_token1] = ACTIONS(6078), - [aux_sym_select_rank_statement_token2] = ACTIONS(6078), - [aux_sym_block_construct_token1] = ACTIONS(6078), - [aux_sym_associate_statement_token1] = ACTIONS(6078), - [aux_sym_format_statement_token1] = ACTIONS(6078), - [aux_sym_print_statement_token1] = ACTIONS(6078), - [aux_sym_open_statement_token1] = ACTIONS(6078), - [aux_sym_close_statement_token1] = ACTIONS(6078), - [aux_sym_inquire_statement_token1] = ACTIONS(6078), - [aux_sym_file_position_statement_token1] = ACTIONS(6078), - [aux_sym_file_position_statement_token2] = ACTIONS(6078), - [aux_sym_file_position_statement_token3] = ACTIONS(6078), - [aux_sym_file_position_statement_token4] = ACTIONS(6078), - [aux_sym_allocate_statement_token1] = ACTIONS(6078), - [aux_sym_entry_statement_token1] = ACTIONS(6078), - [aux_sym_logical_expression_token5] = ACTIONS(6082), - [anon_sym_DOT] = ACTIONS(6078), - [anon_sym_LPAREN_SLASH] = ACTIONS(6082), - [anon_sym_LBRACK] = ACTIONS(6082), - [aux_sym_boolean_literal_token1] = ACTIONS(6082), - [aux_sym_boolean_literal_token2] = ACTIONS(6082), - [aux_sym_null_literal_token1] = ACTIONS(6078), - [aux_sym_coarray_statement_token1] = ACTIONS(6078), - [aux_sym_coarray_statement_token2] = ACTIONS(6078), - [aux_sym_coarray_statement_token6] = ACTIONS(6078), - [aux_sym_coarray_statement_token8] = ACTIONS(6078), - [aux_sym_coarray_statement_token11] = ACTIONS(6078), - [aux_sym_coarray_statement_token12] = ACTIONS(6078), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6078), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6078), - [aux_sym_identifier_token1] = ACTIONS(6078), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6082), - [sym__float_literal] = ACTIONS(6082), - [sym__boz_literal] = ACTIONS(6082), - [sym__string_literal] = ACTIONS(6082), - [sym__string_literal_kind] = ACTIONS(6082), - }, - [2049] = { + [1895] = { [aux_sym_preproc_include_token1] = ACTIONS(5948), [aux_sym_preproc_def_token1] = ACTIONS(5948), [aux_sym_preproc_if_token1] = ACTIONS(5948), @@ -348664,15 +333264,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(5948), [sym_preproc_directive] = ACTIONS(5948), [anon_sym_LPAREN2] = ACTIONS(5948), - [sym_preproc_comment] = ACTIONS(6218), + [sym_preproc_comment] = ACTIONS(5950), [anon_sym_PLUS] = ACTIONS(5952), [anon_sym_DASH] = ACTIONS(5952), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5948), [aux_sym_defined_io_procedure_token1] = ACTIONS(5948), [aux_sym_defined_io_procedure_token2] = ACTIONS(5948), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5948), [aux_sym_procedure_attributes_token3] = ACTIONS(5948), + [aux_sym_end_function_statement_token1] = ACTIONS(5948), [aux_sym_contains_statement_token1] = ACTIONS(5948), [aux_sym_use_statement_token2] = ACTIONS(5948), [aux_sym_implicit_statement_token4] = ACTIONS(5948), @@ -348756,1098 +333356,1199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5952), [sym__string_literal_kind] = ACTIONS(5952), }, - [2050] = { - [aux_sym_preproc_include_token1] = ACTIONS(6042), - [aux_sym_preproc_def_token1] = ACTIONS(6042), - [aux_sym_preproc_if_token1] = ACTIONS(6042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6042), - [sym_preproc_directive] = ACTIONS(6042), - [anon_sym_LPAREN2] = ACTIONS(6042), - [sym_preproc_comment] = ACTIONS(6220), - [anon_sym_PLUS] = ACTIONS(6046), - [anon_sym_DASH] = ACTIONS(6046), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6042), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6042), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6042), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6042), - [aux_sym_procedure_attributes_token3] = ACTIONS(6042), - [aux_sym_contains_statement_token1] = ACTIONS(6042), - [aux_sym_use_statement_token2] = ACTIONS(6042), - [aux_sym_implicit_statement_token4] = ACTIONS(6042), - [aux_sym_save_statement_token1] = ACTIONS(6042), - [aux_sym_private_statement_token1] = ACTIONS(6042), - [aux_sym_public_statement_token1] = ACTIONS(6042), - [aux_sym_derived_type_definition_token1] = ACTIONS(6042), - [aux_sym_procedure_attribute_token6] = ACTIONS(6042), - [aux_sym_variable_attributes_token2] = ACTIONS(6042), - [aux_sym_variable_attributes_token3] = ACTIONS(6042), - [aux_sym_variable_attributes_token5] = ACTIONS(6042), - [aux_sym__intrinsic_type_token1] = ACTIONS(6042), - [aux_sym__intrinsic_type_token3] = ACTIONS(6042), - [aux_sym__intrinsic_type_token4] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6042), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6042), - [aux_sym_type_qualifier_token1] = ACTIONS(6042), - [aux_sym_type_qualifier_token2] = ACTIONS(6042), - [anon_sym_SEMI] = ACTIONS(6046), - [aux_sym_stop_statement_token1] = ACTIONS(6042), - [aux_sym_stop_statement_token2] = ACTIONS(6042), - [aux_sym_subroutine_call_token1] = ACTIONS(6042), - [aux_sym_keyword_statement_token1] = ACTIONS(6042), - [aux_sym_keyword_statement_token2] = ACTIONS(6042), - [aux_sym_keyword_statement_token3] = ACTIONS(6042), - [aux_sym_keyword_statement_token4] = ACTIONS(6042), - [aux_sym_keyword_statement_token6] = ACTIONS(6042), - [aux_sym_keyword_statement_token7] = ACTIONS(6042), - [aux_sym_include_statement_token1] = ACTIONS(6042), - [aux_sym_data_statement_token1] = ACTIONS(6042), - [aux_sym_do_loop_statement_token1] = ACTIONS(6042), - [aux_sym__inline_if_statement_token1] = ACTIONS(6042), - [aux_sym_end_if_statement_token1] = ACTIONS(6042), - [aux_sym_elseif_clause_token2] = ACTIONS(6042), - [aux_sym__inline_where_statement_token1] = ACTIONS(6042), - [aux_sym__forall_control_expression_token1] = ACTIONS(6042), - [aux_sym_select_case_statement_token1] = ACTIONS(6042), - [aux_sym_select_case_statement_token3] = ACTIONS(6042), - [aux_sym_select_type_statement_token1] = ACTIONS(6042), - [aux_sym_select_rank_statement_token2] = ACTIONS(6042), - [aux_sym_block_construct_token1] = ACTIONS(6042), - [aux_sym_associate_statement_token1] = ACTIONS(6042), - [aux_sym_format_statement_token1] = ACTIONS(6042), - [aux_sym_print_statement_token1] = ACTIONS(6042), - [aux_sym_open_statement_token1] = ACTIONS(6042), - [aux_sym_close_statement_token1] = ACTIONS(6042), - [aux_sym_inquire_statement_token1] = ACTIONS(6042), - [aux_sym_file_position_statement_token1] = ACTIONS(6042), - [aux_sym_file_position_statement_token2] = ACTIONS(6042), - [aux_sym_file_position_statement_token3] = ACTIONS(6042), - [aux_sym_file_position_statement_token4] = ACTIONS(6042), - [aux_sym_allocate_statement_token1] = ACTIONS(6042), - [aux_sym_entry_statement_token1] = ACTIONS(6042), - [aux_sym_logical_expression_token5] = ACTIONS(6046), - [anon_sym_DOT] = ACTIONS(6042), - [anon_sym_LPAREN_SLASH] = ACTIONS(6046), - [anon_sym_LBRACK] = ACTIONS(6046), - [aux_sym_boolean_literal_token1] = ACTIONS(6046), - [aux_sym_boolean_literal_token2] = ACTIONS(6046), - [aux_sym_null_literal_token1] = ACTIONS(6042), - [aux_sym_coarray_statement_token1] = ACTIONS(6042), - [aux_sym_coarray_statement_token2] = ACTIONS(6042), - [aux_sym_coarray_statement_token6] = ACTIONS(6042), - [aux_sym_coarray_statement_token8] = ACTIONS(6042), - [aux_sym_coarray_statement_token11] = ACTIONS(6042), - [aux_sym_coarray_statement_token12] = ACTIONS(6042), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6042), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6042), - [aux_sym_identifier_token1] = ACTIONS(6042), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6046), - [sym__float_literal] = ACTIONS(6046), - [sym__boz_literal] = ACTIONS(6046), - [sym__string_literal] = ACTIONS(6046), - [sym__string_literal_kind] = ACTIONS(6046), + [1896] = { + [aux_sym_preproc_include_token1] = ACTIONS(5954), + [aux_sym_preproc_def_token1] = ACTIONS(5954), + [aux_sym_preproc_if_token1] = ACTIONS(5954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5954), + [sym_preproc_directive] = ACTIONS(5954), + [anon_sym_LPAREN2] = ACTIONS(5954), + [sym_preproc_comment] = ACTIONS(5956), + [anon_sym_PLUS] = ACTIONS(5958), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5954), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5954), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5954), + [aux_sym_procedure_attributes_token3] = ACTIONS(5954), + [aux_sym_end_function_statement_token1] = ACTIONS(5954), + [aux_sym_contains_statement_token1] = ACTIONS(5954), + [aux_sym_use_statement_token2] = ACTIONS(5954), + [aux_sym_implicit_statement_token4] = ACTIONS(5954), + [aux_sym_save_statement_token1] = ACTIONS(5954), + [aux_sym_private_statement_token1] = ACTIONS(5954), + [aux_sym_public_statement_token1] = ACTIONS(5954), + [aux_sym_derived_type_definition_token1] = ACTIONS(5954), + [aux_sym_procedure_attribute_token6] = ACTIONS(5954), + [aux_sym_variable_attributes_token2] = ACTIONS(5954), + [aux_sym_variable_attributes_token3] = ACTIONS(5954), + [aux_sym_variable_attributes_token5] = ACTIONS(5954), + [aux_sym__intrinsic_type_token1] = ACTIONS(5954), + [aux_sym__intrinsic_type_token3] = ACTIONS(5954), + [aux_sym__intrinsic_type_token4] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5954), + [aux_sym_type_qualifier_token1] = ACTIONS(5954), + [aux_sym_type_qualifier_token2] = ACTIONS(5954), + [anon_sym_SEMI] = ACTIONS(5958), + [aux_sym_stop_statement_token1] = ACTIONS(5954), + [aux_sym_stop_statement_token2] = ACTIONS(5954), + [aux_sym_subroutine_call_token1] = ACTIONS(5954), + [aux_sym_keyword_statement_token1] = ACTIONS(5954), + [aux_sym_keyword_statement_token2] = ACTIONS(5954), + [aux_sym_keyword_statement_token3] = ACTIONS(5954), + [aux_sym_keyword_statement_token4] = ACTIONS(5954), + [aux_sym_keyword_statement_token6] = ACTIONS(5954), + [aux_sym_keyword_statement_token7] = ACTIONS(5954), + [aux_sym_include_statement_token1] = ACTIONS(5954), + [aux_sym_data_statement_token1] = ACTIONS(5954), + [aux_sym_do_loop_statement_token1] = ACTIONS(5954), + [aux_sym__inline_if_statement_token1] = ACTIONS(5954), + [aux_sym_end_if_statement_token1] = ACTIONS(5954), + [aux_sym_elseif_clause_token2] = ACTIONS(5954), + [aux_sym__inline_where_statement_token1] = ACTIONS(5954), + [aux_sym__forall_control_expression_token1] = ACTIONS(5954), + [aux_sym_select_case_statement_token1] = ACTIONS(5954), + [aux_sym_select_case_statement_token3] = ACTIONS(5954), + [aux_sym_select_type_statement_token1] = ACTIONS(5954), + [aux_sym_select_rank_statement_token2] = ACTIONS(5954), + [aux_sym_block_construct_token1] = ACTIONS(5954), + [aux_sym_associate_statement_token1] = ACTIONS(5954), + [aux_sym_format_statement_token1] = ACTIONS(5954), + [aux_sym_print_statement_token1] = ACTIONS(5954), + [aux_sym_open_statement_token1] = ACTIONS(5954), + [aux_sym_close_statement_token1] = ACTIONS(5954), + [aux_sym_inquire_statement_token1] = ACTIONS(5954), + [aux_sym_file_position_statement_token1] = ACTIONS(5954), + [aux_sym_file_position_statement_token2] = ACTIONS(5954), + [aux_sym_file_position_statement_token3] = ACTIONS(5954), + [aux_sym_file_position_statement_token4] = ACTIONS(5954), + [aux_sym_allocate_statement_token1] = ACTIONS(5954), + [aux_sym_entry_statement_token1] = ACTIONS(5954), + [aux_sym_logical_expression_token5] = ACTIONS(5958), + [anon_sym_DOT] = ACTIONS(5954), + [anon_sym_LPAREN_SLASH] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5958), + [aux_sym_boolean_literal_token1] = ACTIONS(5958), + [aux_sym_boolean_literal_token2] = ACTIONS(5958), + [aux_sym_null_literal_token1] = ACTIONS(5954), + [aux_sym_coarray_statement_token1] = ACTIONS(5954), + [aux_sym_coarray_statement_token2] = ACTIONS(5954), + [aux_sym_coarray_statement_token6] = ACTIONS(5954), + [aux_sym_coarray_statement_token8] = ACTIONS(5954), + [aux_sym_coarray_statement_token11] = ACTIONS(5954), + [aux_sym_coarray_statement_token12] = ACTIONS(5954), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5954), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5954), + [aux_sym_identifier_token1] = ACTIONS(5954), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5958), + [sym__float_literal] = ACTIONS(5958), + [sym__boz_literal] = ACTIONS(5958), + [sym__string_literal] = ACTIONS(5958), + [sym__string_literal_kind] = ACTIONS(5958), }, - [2051] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6222), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_end_program_statement_token2] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_contains_statement_token1] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), + [1897] = { + [aux_sym_preproc_include_token1] = ACTIONS(5960), + [aux_sym_preproc_def_token1] = ACTIONS(5960), + [aux_sym_preproc_if_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5960), + [sym_preproc_directive] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [sym_preproc_comment] = ACTIONS(5962), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5960), + [aux_sym_procedure_attributes_token3] = ACTIONS(5960), + [aux_sym_end_function_statement_token1] = ACTIONS(5960), + [aux_sym_contains_statement_token1] = ACTIONS(5960), + [aux_sym_use_statement_token2] = ACTIONS(5960), + [aux_sym_implicit_statement_token4] = ACTIONS(5960), + [aux_sym_save_statement_token1] = ACTIONS(5960), + [aux_sym_private_statement_token1] = ACTIONS(5960), + [aux_sym_public_statement_token1] = ACTIONS(5960), + [aux_sym_derived_type_definition_token1] = ACTIONS(5960), + [aux_sym_procedure_attribute_token6] = ACTIONS(5960), + [aux_sym_variable_attributes_token2] = ACTIONS(5960), + [aux_sym_variable_attributes_token3] = ACTIONS(5960), + [aux_sym_variable_attributes_token5] = ACTIONS(5960), + [aux_sym__intrinsic_type_token1] = ACTIONS(5960), + [aux_sym__intrinsic_type_token3] = ACTIONS(5960), + [aux_sym__intrinsic_type_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5960), + [aux_sym_type_qualifier_token1] = ACTIONS(5960), + [aux_sym_type_qualifier_token2] = ACTIONS(5960), + [anon_sym_SEMI] = ACTIONS(5964), + [aux_sym_stop_statement_token1] = ACTIONS(5960), + [aux_sym_stop_statement_token2] = ACTIONS(5960), + [aux_sym_subroutine_call_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token2] = ACTIONS(5960), + [aux_sym_keyword_statement_token3] = ACTIONS(5960), + [aux_sym_keyword_statement_token4] = ACTIONS(5960), + [aux_sym_keyword_statement_token6] = ACTIONS(5960), + [aux_sym_keyword_statement_token7] = ACTIONS(5960), + [aux_sym_include_statement_token1] = ACTIONS(5960), + [aux_sym_data_statement_token1] = ACTIONS(5960), + [aux_sym_do_loop_statement_token1] = ACTIONS(5960), + [aux_sym__inline_if_statement_token1] = ACTIONS(5960), + [aux_sym_end_if_statement_token1] = ACTIONS(5960), + [aux_sym_elseif_clause_token2] = ACTIONS(5960), + [aux_sym__inline_where_statement_token1] = ACTIONS(5960), + [aux_sym__forall_control_expression_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token3] = ACTIONS(5960), + [aux_sym_select_type_statement_token1] = ACTIONS(5960), + [aux_sym_select_rank_statement_token2] = ACTIONS(5960), + [aux_sym_block_construct_token1] = ACTIONS(5960), + [aux_sym_associate_statement_token1] = ACTIONS(5960), + [aux_sym_format_statement_token1] = ACTIONS(5960), + [aux_sym_print_statement_token1] = ACTIONS(5960), + [aux_sym_open_statement_token1] = ACTIONS(5960), + [aux_sym_close_statement_token1] = ACTIONS(5960), + [aux_sym_inquire_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token2] = ACTIONS(5960), + [aux_sym_file_position_statement_token3] = ACTIONS(5960), + [aux_sym_file_position_statement_token4] = ACTIONS(5960), + [aux_sym_allocate_statement_token1] = ACTIONS(5960), + [aux_sym_entry_statement_token1] = ACTIONS(5960), + [aux_sym_logical_expression_token5] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5960), + [anon_sym_LPAREN_SLASH] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5964), + [aux_sym_boolean_literal_token1] = ACTIONS(5964), + [aux_sym_boolean_literal_token2] = ACTIONS(5964), + [aux_sym_null_literal_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token2] = ACTIONS(5960), + [aux_sym_coarray_statement_token6] = ACTIONS(5960), + [aux_sym_coarray_statement_token8] = ACTIONS(5960), + [aux_sym_coarray_statement_token11] = ACTIONS(5960), + [aux_sym_coarray_statement_token12] = ACTIONS(5960), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5960), + [aux_sym_identifier_token1] = ACTIONS(5960), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5964), + [sym__float_literal] = ACTIONS(5964), + [sym__boz_literal] = ACTIONS(5964), + [sym__string_literal] = ACTIONS(5964), + [sym__string_literal_kind] = ACTIONS(5964), }, - [2052] = { - [aux_sym_preproc_include_token1] = ACTIONS(6050), - [aux_sym_preproc_def_token1] = ACTIONS(6050), - [aux_sym_preproc_if_token1] = ACTIONS(6050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6050), - [sym_preproc_directive] = ACTIONS(6050), - [anon_sym_LPAREN2] = ACTIONS(6050), - [sym_preproc_comment] = ACTIONS(6224), - [anon_sym_PLUS] = ACTIONS(6054), - [anon_sym_DASH] = ACTIONS(6054), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6050), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6050), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6050), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6050), - [aux_sym_procedure_attributes_token3] = ACTIONS(6050), - [aux_sym_contains_statement_token1] = ACTIONS(6050), - [aux_sym_use_statement_token2] = ACTIONS(6050), - [aux_sym_implicit_statement_token4] = ACTIONS(6050), - [aux_sym_save_statement_token1] = ACTIONS(6050), - [aux_sym_private_statement_token1] = ACTIONS(6050), - [aux_sym_public_statement_token1] = ACTIONS(6050), - [aux_sym_derived_type_definition_token1] = ACTIONS(6050), - [aux_sym_procedure_attribute_token6] = ACTIONS(6050), - [aux_sym_variable_attributes_token2] = ACTIONS(6050), - [aux_sym_variable_attributes_token3] = ACTIONS(6050), - [aux_sym_variable_attributes_token5] = ACTIONS(6050), - [aux_sym__intrinsic_type_token1] = ACTIONS(6050), - [aux_sym__intrinsic_type_token3] = ACTIONS(6050), - [aux_sym__intrinsic_type_token4] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6050), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6050), - [aux_sym_type_qualifier_token1] = ACTIONS(6050), - [aux_sym_type_qualifier_token2] = ACTIONS(6050), - [anon_sym_SEMI] = ACTIONS(6054), - [aux_sym_stop_statement_token1] = ACTIONS(6050), - [aux_sym_stop_statement_token2] = ACTIONS(6050), - [aux_sym_subroutine_call_token1] = ACTIONS(6050), - [aux_sym_keyword_statement_token1] = ACTIONS(6050), - [aux_sym_keyword_statement_token2] = ACTIONS(6050), - [aux_sym_keyword_statement_token3] = ACTIONS(6050), - [aux_sym_keyword_statement_token4] = ACTIONS(6050), - [aux_sym_keyword_statement_token6] = ACTIONS(6050), - [aux_sym_keyword_statement_token7] = ACTIONS(6050), - [aux_sym_include_statement_token1] = ACTIONS(6050), - [aux_sym_data_statement_token1] = ACTIONS(6050), - [aux_sym_do_loop_statement_token1] = ACTIONS(6050), - [aux_sym__inline_if_statement_token1] = ACTIONS(6050), - [aux_sym_end_if_statement_token1] = ACTIONS(6050), - [aux_sym_elseif_clause_token2] = ACTIONS(6050), - [aux_sym__inline_where_statement_token1] = ACTIONS(6050), - [aux_sym__forall_control_expression_token1] = ACTIONS(6050), - [aux_sym_select_case_statement_token1] = ACTIONS(6050), - [aux_sym_select_case_statement_token3] = ACTIONS(6050), - [aux_sym_select_type_statement_token1] = ACTIONS(6050), - [aux_sym_select_rank_statement_token2] = ACTIONS(6050), - [aux_sym_block_construct_token1] = ACTIONS(6050), - [aux_sym_associate_statement_token1] = ACTIONS(6050), - [aux_sym_format_statement_token1] = ACTIONS(6050), - [aux_sym_print_statement_token1] = ACTIONS(6050), - [aux_sym_open_statement_token1] = ACTIONS(6050), - [aux_sym_close_statement_token1] = ACTIONS(6050), - [aux_sym_inquire_statement_token1] = ACTIONS(6050), - [aux_sym_file_position_statement_token1] = ACTIONS(6050), - [aux_sym_file_position_statement_token2] = ACTIONS(6050), - [aux_sym_file_position_statement_token3] = ACTIONS(6050), - [aux_sym_file_position_statement_token4] = ACTIONS(6050), - [aux_sym_allocate_statement_token1] = ACTIONS(6050), - [aux_sym_entry_statement_token1] = ACTIONS(6050), - [aux_sym_logical_expression_token5] = ACTIONS(6054), - [anon_sym_DOT] = ACTIONS(6050), - [anon_sym_LPAREN_SLASH] = ACTIONS(6054), - [anon_sym_LBRACK] = ACTIONS(6054), - [aux_sym_boolean_literal_token1] = ACTIONS(6054), - [aux_sym_boolean_literal_token2] = ACTIONS(6054), - [aux_sym_null_literal_token1] = ACTIONS(6050), - [aux_sym_coarray_statement_token1] = ACTIONS(6050), - [aux_sym_coarray_statement_token2] = ACTIONS(6050), - [aux_sym_coarray_statement_token6] = ACTIONS(6050), - [aux_sym_coarray_statement_token8] = ACTIONS(6050), - [aux_sym_coarray_statement_token11] = ACTIONS(6050), - [aux_sym_coarray_statement_token12] = ACTIONS(6050), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6050), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6050), - [aux_sym_identifier_token1] = ACTIONS(6050), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6054), - [sym__float_literal] = ACTIONS(6054), - [sym__boz_literal] = ACTIONS(6054), - [sym__string_literal] = ACTIONS(6054), - [sym__string_literal_kind] = ACTIONS(6054), + [1898] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(5966), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token2] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_end_select_statement_token1] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2053] = { - [aux_sym_preproc_include_token1] = ACTIONS(6060), - [aux_sym_preproc_def_token1] = ACTIONS(6060), - [aux_sym_preproc_if_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6060), - [sym_preproc_directive] = ACTIONS(6060), - [anon_sym_LPAREN2] = ACTIONS(6060), - [sym_preproc_comment] = ACTIONS(6226), - [anon_sym_PLUS] = ACTIONS(6064), - [anon_sym_DASH] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6060), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6060), - [aux_sym_procedure_attributes_token3] = ACTIONS(6060), - [aux_sym_contains_statement_token1] = ACTIONS(6060), - [aux_sym_use_statement_token2] = ACTIONS(6060), - [aux_sym_implicit_statement_token4] = ACTIONS(6060), - [aux_sym_save_statement_token1] = ACTIONS(6060), - [aux_sym_private_statement_token1] = ACTIONS(6060), - [aux_sym_public_statement_token1] = ACTIONS(6060), - [aux_sym_derived_type_definition_token1] = ACTIONS(6060), - [aux_sym_procedure_attribute_token6] = ACTIONS(6060), - [aux_sym_variable_attributes_token2] = ACTIONS(6060), - [aux_sym_variable_attributes_token3] = ACTIONS(6060), - [aux_sym_variable_attributes_token5] = ACTIONS(6060), - [aux_sym__intrinsic_type_token1] = ACTIONS(6060), - [aux_sym__intrinsic_type_token3] = ACTIONS(6060), - [aux_sym__intrinsic_type_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6060), - [aux_sym_type_qualifier_token1] = ACTIONS(6060), - [aux_sym_type_qualifier_token2] = ACTIONS(6060), - [anon_sym_SEMI] = ACTIONS(6064), - [aux_sym_stop_statement_token1] = ACTIONS(6060), - [aux_sym_stop_statement_token2] = ACTIONS(6060), - [aux_sym_subroutine_call_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token2] = ACTIONS(6060), - [aux_sym_keyword_statement_token3] = ACTIONS(6060), - [aux_sym_keyword_statement_token4] = ACTIONS(6060), - [aux_sym_keyword_statement_token6] = ACTIONS(6060), - [aux_sym_keyword_statement_token7] = ACTIONS(6060), - [aux_sym_include_statement_token1] = ACTIONS(6060), - [aux_sym_data_statement_token1] = ACTIONS(6060), - [aux_sym_do_loop_statement_token1] = ACTIONS(6060), - [aux_sym__inline_if_statement_token1] = ACTIONS(6060), - [aux_sym_end_if_statement_token1] = ACTIONS(6060), - [aux_sym_elseif_clause_token2] = ACTIONS(6060), - [aux_sym__inline_where_statement_token1] = ACTIONS(6060), - [aux_sym__forall_control_expression_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token3] = ACTIONS(6060), - [aux_sym_select_type_statement_token1] = ACTIONS(6060), - [aux_sym_select_rank_statement_token2] = ACTIONS(6060), - [aux_sym_block_construct_token1] = ACTIONS(6060), - [aux_sym_associate_statement_token1] = ACTIONS(6060), - [aux_sym_format_statement_token1] = ACTIONS(6060), - [aux_sym_print_statement_token1] = ACTIONS(6060), - [aux_sym_open_statement_token1] = ACTIONS(6060), - [aux_sym_close_statement_token1] = ACTIONS(6060), - [aux_sym_inquire_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token2] = ACTIONS(6060), - [aux_sym_file_position_statement_token3] = ACTIONS(6060), - [aux_sym_file_position_statement_token4] = ACTIONS(6060), - [aux_sym_allocate_statement_token1] = ACTIONS(6060), - [aux_sym_entry_statement_token1] = ACTIONS(6060), - [aux_sym_logical_expression_token5] = ACTIONS(6064), - [anon_sym_DOT] = ACTIONS(6060), - [anon_sym_LPAREN_SLASH] = ACTIONS(6064), - [anon_sym_LBRACK] = ACTIONS(6064), - [aux_sym_boolean_literal_token1] = ACTIONS(6064), - [aux_sym_boolean_literal_token2] = ACTIONS(6064), - [aux_sym_null_literal_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token2] = ACTIONS(6060), - [aux_sym_coarray_statement_token6] = ACTIONS(6060), - [aux_sym_coarray_statement_token8] = ACTIONS(6060), - [aux_sym_coarray_statement_token11] = ACTIONS(6060), - [aux_sym_coarray_statement_token12] = ACTIONS(6060), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6060), - [aux_sym_identifier_token1] = ACTIONS(6060), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6064), - [sym__float_literal] = ACTIONS(6064), - [sym__boz_literal] = ACTIONS(6064), - [sym__string_literal] = ACTIONS(6064), - [sym__string_literal_kind] = ACTIONS(6064), + [1899] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5968), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2054] = { - [aux_sym_preproc_include_token1] = ACTIONS(6066), - [aux_sym_preproc_def_token1] = ACTIONS(6066), - [aux_sym_preproc_if_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6066), - [sym_preproc_directive] = ACTIONS(6066), - [anon_sym_LPAREN2] = ACTIONS(6066), - [sym_preproc_comment] = ACTIONS(6228), - [anon_sym_PLUS] = ACTIONS(6070), - [anon_sym_DASH] = ACTIONS(6070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6066), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6066), - [aux_sym_procedure_attributes_token3] = ACTIONS(6066), - [aux_sym_contains_statement_token1] = ACTIONS(6066), - [aux_sym_use_statement_token2] = ACTIONS(6066), - [aux_sym_implicit_statement_token4] = ACTIONS(6066), - [aux_sym_save_statement_token1] = ACTIONS(6066), - [aux_sym_private_statement_token1] = ACTIONS(6066), - [aux_sym_public_statement_token1] = ACTIONS(6066), - [aux_sym_derived_type_definition_token1] = ACTIONS(6066), - [aux_sym_procedure_attribute_token6] = ACTIONS(6066), - [aux_sym_variable_attributes_token2] = ACTIONS(6066), - [aux_sym_variable_attributes_token3] = ACTIONS(6066), - [aux_sym_variable_attributes_token5] = ACTIONS(6066), - [aux_sym__intrinsic_type_token1] = ACTIONS(6066), - [aux_sym__intrinsic_type_token3] = ACTIONS(6066), - [aux_sym__intrinsic_type_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6066), - [aux_sym_type_qualifier_token1] = ACTIONS(6066), - [aux_sym_type_qualifier_token2] = ACTIONS(6066), - [anon_sym_SEMI] = ACTIONS(6070), - [aux_sym_stop_statement_token1] = ACTIONS(6066), - [aux_sym_stop_statement_token2] = ACTIONS(6066), - [aux_sym_subroutine_call_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token2] = ACTIONS(6066), - [aux_sym_keyword_statement_token3] = ACTIONS(6066), - [aux_sym_keyword_statement_token4] = ACTIONS(6066), - [aux_sym_keyword_statement_token6] = ACTIONS(6066), - [aux_sym_keyword_statement_token7] = ACTIONS(6066), - [aux_sym_include_statement_token1] = ACTIONS(6066), - [aux_sym_data_statement_token1] = ACTIONS(6066), - [aux_sym_do_loop_statement_token1] = ACTIONS(6066), - [aux_sym__inline_if_statement_token1] = ACTIONS(6066), - [aux_sym_end_if_statement_token1] = ACTIONS(6066), - [aux_sym_elseif_clause_token2] = ACTIONS(6066), - [aux_sym__inline_where_statement_token1] = ACTIONS(6066), - [aux_sym__forall_control_expression_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token3] = ACTIONS(6066), - [aux_sym_select_type_statement_token1] = ACTIONS(6066), - [aux_sym_select_rank_statement_token2] = ACTIONS(6066), - [aux_sym_block_construct_token1] = ACTIONS(6066), - [aux_sym_associate_statement_token1] = ACTIONS(6066), - [aux_sym_format_statement_token1] = ACTIONS(6066), - [aux_sym_print_statement_token1] = ACTIONS(6066), - [aux_sym_open_statement_token1] = ACTIONS(6066), - [aux_sym_close_statement_token1] = ACTIONS(6066), - [aux_sym_inquire_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token2] = ACTIONS(6066), - [aux_sym_file_position_statement_token3] = ACTIONS(6066), - [aux_sym_file_position_statement_token4] = ACTIONS(6066), - [aux_sym_allocate_statement_token1] = ACTIONS(6066), - [aux_sym_entry_statement_token1] = ACTIONS(6066), - [aux_sym_logical_expression_token5] = ACTIONS(6070), - [anon_sym_DOT] = ACTIONS(6066), - [anon_sym_LPAREN_SLASH] = ACTIONS(6070), - [anon_sym_LBRACK] = ACTIONS(6070), - [aux_sym_boolean_literal_token1] = ACTIONS(6070), - [aux_sym_boolean_literal_token2] = ACTIONS(6070), - [aux_sym_null_literal_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token2] = ACTIONS(6066), - [aux_sym_coarray_statement_token6] = ACTIONS(6066), - [aux_sym_coarray_statement_token8] = ACTIONS(6066), - [aux_sym_coarray_statement_token11] = ACTIONS(6066), - [aux_sym_coarray_statement_token12] = ACTIONS(6066), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6066), - [aux_sym_identifier_token1] = ACTIONS(6066), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6070), - [sym__float_literal] = ACTIONS(6070), - [sym__boz_literal] = ACTIONS(6070), - [sym__string_literal] = ACTIONS(6070), - [sym__string_literal_kind] = ACTIONS(6070), + [1900] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_end_program_statement_token2] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_contains_statement_token1] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), }, - [2055] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6230), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_end_program_statement_token2] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [1901] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(5972), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_end_program_statement_token2] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_contains_statement_token1] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), }, - [2056] = { - [aux_sym_preproc_include_token1] = ACTIONS(6102), - [aux_sym_preproc_def_token1] = ACTIONS(6102), - [aux_sym_preproc_if_token1] = ACTIONS(6102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6102), - [sym_preproc_directive] = ACTIONS(6102), - [anon_sym_LPAREN2] = ACTIONS(6102), - [sym_preproc_comment] = ACTIONS(6232), - [anon_sym_PLUS] = ACTIONS(6106), - [anon_sym_DASH] = ACTIONS(6106), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6102), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6102), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6102), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6102), - [aux_sym_procedure_attributes_token3] = ACTIONS(6102), - [aux_sym_contains_statement_token1] = ACTIONS(6102), - [aux_sym_use_statement_token2] = ACTIONS(6102), - [aux_sym_implicit_statement_token4] = ACTIONS(6102), - [aux_sym_save_statement_token1] = ACTIONS(6102), - [aux_sym_private_statement_token1] = ACTIONS(6102), - [aux_sym_public_statement_token1] = ACTIONS(6102), - [aux_sym_derived_type_definition_token1] = ACTIONS(6102), - [aux_sym_procedure_attribute_token6] = ACTIONS(6102), - [aux_sym_variable_attributes_token2] = ACTIONS(6102), - [aux_sym_variable_attributes_token3] = ACTIONS(6102), - [aux_sym_variable_attributes_token5] = ACTIONS(6102), - [aux_sym__intrinsic_type_token1] = ACTIONS(6102), - [aux_sym__intrinsic_type_token3] = ACTIONS(6102), - [aux_sym__intrinsic_type_token4] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6102), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6102), - [aux_sym_type_qualifier_token1] = ACTIONS(6102), - [aux_sym_type_qualifier_token2] = ACTIONS(6102), - [anon_sym_SEMI] = ACTIONS(6106), - [aux_sym_stop_statement_token1] = ACTIONS(6102), - [aux_sym_stop_statement_token2] = ACTIONS(6102), - [aux_sym_subroutine_call_token1] = ACTIONS(6102), - [aux_sym_keyword_statement_token1] = ACTIONS(6102), - [aux_sym_keyword_statement_token2] = ACTIONS(6102), - [aux_sym_keyword_statement_token3] = ACTIONS(6102), - [aux_sym_keyword_statement_token4] = ACTIONS(6102), - [aux_sym_keyword_statement_token6] = ACTIONS(6102), - [aux_sym_keyword_statement_token7] = ACTIONS(6102), - [aux_sym_include_statement_token1] = ACTIONS(6102), - [aux_sym_data_statement_token1] = ACTIONS(6102), - [aux_sym_do_loop_statement_token1] = ACTIONS(6102), - [aux_sym__inline_if_statement_token1] = ACTIONS(6102), - [aux_sym_end_if_statement_token1] = ACTIONS(6102), - [aux_sym_elseif_clause_token2] = ACTIONS(6102), - [aux_sym__inline_where_statement_token1] = ACTIONS(6102), - [aux_sym__forall_control_expression_token1] = ACTIONS(6102), - [aux_sym_select_case_statement_token1] = ACTIONS(6102), - [aux_sym_select_case_statement_token3] = ACTIONS(6102), - [aux_sym_select_type_statement_token1] = ACTIONS(6102), - [aux_sym_select_rank_statement_token2] = ACTIONS(6102), - [aux_sym_block_construct_token1] = ACTIONS(6102), - [aux_sym_associate_statement_token1] = ACTIONS(6102), - [aux_sym_format_statement_token1] = ACTIONS(6102), - [aux_sym_print_statement_token1] = ACTIONS(6102), - [aux_sym_open_statement_token1] = ACTIONS(6102), - [aux_sym_close_statement_token1] = ACTIONS(6102), - [aux_sym_inquire_statement_token1] = ACTIONS(6102), - [aux_sym_file_position_statement_token1] = ACTIONS(6102), - [aux_sym_file_position_statement_token2] = ACTIONS(6102), - [aux_sym_file_position_statement_token3] = ACTIONS(6102), - [aux_sym_file_position_statement_token4] = ACTIONS(6102), - [aux_sym_allocate_statement_token1] = ACTIONS(6102), - [aux_sym_entry_statement_token1] = ACTIONS(6102), - [aux_sym_logical_expression_token5] = ACTIONS(6106), - [anon_sym_DOT] = ACTIONS(6102), - [anon_sym_LPAREN_SLASH] = ACTIONS(6106), - [anon_sym_LBRACK] = ACTIONS(6106), - [aux_sym_boolean_literal_token1] = ACTIONS(6106), - [aux_sym_boolean_literal_token2] = ACTIONS(6106), - [aux_sym_null_literal_token1] = ACTIONS(6102), - [aux_sym_coarray_statement_token1] = ACTIONS(6102), - [aux_sym_coarray_statement_token2] = ACTIONS(6102), - [aux_sym_coarray_statement_token6] = ACTIONS(6102), - [aux_sym_coarray_statement_token8] = ACTIONS(6102), - [aux_sym_coarray_statement_token11] = ACTIONS(6102), - [aux_sym_coarray_statement_token12] = ACTIONS(6102), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6102), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6102), - [aux_sym_identifier_token1] = ACTIONS(6102), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6106), - [sym__float_literal] = ACTIONS(6106), - [sym__boz_literal] = ACTIONS(6106), - [sym__string_literal] = ACTIONS(6106), - [sym__string_literal_kind] = ACTIONS(6106), + [1902] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(5974), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_end_select_statement_token1] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [2057] = { - [aux_sym_preproc_include_token1] = ACTIONS(6108), - [aux_sym_preproc_def_token1] = ACTIONS(6108), - [aux_sym_preproc_if_token1] = ACTIONS(6108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6108), - [sym_preproc_directive] = ACTIONS(6108), - [anon_sym_LPAREN2] = ACTIONS(6108), - [sym_preproc_comment] = ACTIONS(6234), - [anon_sym_PLUS] = ACTIONS(6112), - [anon_sym_DASH] = ACTIONS(6112), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6108), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6108), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6108), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6108), - [aux_sym_procedure_attributes_token3] = ACTIONS(6108), - [aux_sym_contains_statement_token1] = ACTIONS(6108), - [aux_sym_use_statement_token2] = ACTIONS(6108), - [aux_sym_implicit_statement_token4] = ACTIONS(6108), - [aux_sym_save_statement_token1] = ACTIONS(6108), - [aux_sym_private_statement_token1] = ACTIONS(6108), - [aux_sym_public_statement_token1] = ACTIONS(6108), - [aux_sym_derived_type_definition_token1] = ACTIONS(6108), - [aux_sym_procedure_attribute_token6] = ACTIONS(6108), - [aux_sym_variable_attributes_token2] = ACTIONS(6108), - [aux_sym_variable_attributes_token3] = ACTIONS(6108), - [aux_sym_variable_attributes_token5] = ACTIONS(6108), - [aux_sym__intrinsic_type_token1] = ACTIONS(6108), - [aux_sym__intrinsic_type_token3] = ACTIONS(6108), - [aux_sym__intrinsic_type_token4] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6108), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6108), - [aux_sym_type_qualifier_token1] = ACTIONS(6108), - [aux_sym_type_qualifier_token2] = ACTIONS(6108), - [anon_sym_SEMI] = ACTIONS(6112), - [aux_sym_stop_statement_token1] = ACTIONS(6108), - [aux_sym_stop_statement_token2] = ACTIONS(6108), - [aux_sym_subroutine_call_token1] = ACTIONS(6108), - [aux_sym_keyword_statement_token1] = ACTIONS(6108), - [aux_sym_keyword_statement_token2] = ACTIONS(6108), - [aux_sym_keyword_statement_token3] = ACTIONS(6108), - [aux_sym_keyword_statement_token4] = ACTIONS(6108), - [aux_sym_keyword_statement_token6] = ACTIONS(6108), - [aux_sym_keyword_statement_token7] = ACTIONS(6108), - [aux_sym_include_statement_token1] = ACTIONS(6108), - [aux_sym_data_statement_token1] = ACTIONS(6108), - [aux_sym_do_loop_statement_token1] = ACTIONS(6108), - [aux_sym__inline_if_statement_token1] = ACTIONS(6108), - [aux_sym_end_if_statement_token1] = ACTIONS(6108), - [aux_sym_elseif_clause_token2] = ACTIONS(6108), - [aux_sym__inline_where_statement_token1] = ACTIONS(6108), - [aux_sym__forall_control_expression_token1] = ACTIONS(6108), - [aux_sym_select_case_statement_token1] = ACTIONS(6108), - [aux_sym_select_case_statement_token3] = ACTIONS(6108), - [aux_sym_select_type_statement_token1] = ACTIONS(6108), - [aux_sym_select_rank_statement_token2] = ACTIONS(6108), - [aux_sym_block_construct_token1] = ACTIONS(6108), - [aux_sym_associate_statement_token1] = ACTIONS(6108), - [aux_sym_format_statement_token1] = ACTIONS(6108), - [aux_sym_print_statement_token1] = ACTIONS(6108), - [aux_sym_open_statement_token1] = ACTIONS(6108), - [aux_sym_close_statement_token1] = ACTIONS(6108), - [aux_sym_inquire_statement_token1] = ACTIONS(6108), - [aux_sym_file_position_statement_token1] = ACTIONS(6108), - [aux_sym_file_position_statement_token2] = ACTIONS(6108), - [aux_sym_file_position_statement_token3] = ACTIONS(6108), - [aux_sym_file_position_statement_token4] = ACTIONS(6108), - [aux_sym_allocate_statement_token1] = ACTIONS(6108), - [aux_sym_entry_statement_token1] = ACTIONS(6108), - [aux_sym_logical_expression_token5] = ACTIONS(6112), - [anon_sym_DOT] = ACTIONS(6108), - [anon_sym_LPAREN_SLASH] = ACTIONS(6112), - [anon_sym_LBRACK] = ACTIONS(6112), - [aux_sym_boolean_literal_token1] = ACTIONS(6112), - [aux_sym_boolean_literal_token2] = ACTIONS(6112), - [aux_sym_null_literal_token1] = ACTIONS(6108), - [aux_sym_coarray_statement_token1] = ACTIONS(6108), - [aux_sym_coarray_statement_token2] = ACTIONS(6108), - [aux_sym_coarray_statement_token6] = ACTIONS(6108), - [aux_sym_coarray_statement_token8] = ACTIONS(6108), - [aux_sym_coarray_statement_token11] = ACTIONS(6108), - [aux_sym_coarray_statement_token12] = ACTIONS(6108), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6108), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6108), - [aux_sym_identifier_token1] = ACTIONS(6108), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6112), - [sym__float_literal] = ACTIONS(6112), - [sym__boz_literal] = ACTIONS(6112), - [sym__string_literal] = ACTIONS(6112), - [sym__string_literal_kind] = ACTIONS(6112), + [1903] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(5976), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_end_select_statement_token1] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [2058] = { - [aux_sym_preproc_include_token1] = ACTIONS(6114), - [aux_sym_preproc_def_token1] = ACTIONS(6114), - [aux_sym_preproc_if_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6114), - [sym_preproc_directive] = ACTIONS(6114), - [anon_sym_LPAREN2] = ACTIONS(6114), - [sym_preproc_comment] = ACTIONS(6236), - [anon_sym_PLUS] = ACTIONS(6118), - [anon_sym_DASH] = ACTIONS(6118), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6114), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6114), - [aux_sym_procedure_attributes_token3] = ACTIONS(6114), - [aux_sym_contains_statement_token1] = ACTIONS(6114), - [aux_sym_use_statement_token2] = ACTIONS(6114), - [aux_sym_implicit_statement_token4] = ACTIONS(6114), - [aux_sym_save_statement_token1] = ACTIONS(6114), - [aux_sym_private_statement_token1] = ACTIONS(6114), - [aux_sym_public_statement_token1] = ACTIONS(6114), - [aux_sym_derived_type_definition_token1] = ACTIONS(6114), - [aux_sym_procedure_attribute_token6] = ACTIONS(6114), - [aux_sym_variable_attributes_token2] = ACTIONS(6114), - [aux_sym_variable_attributes_token3] = ACTIONS(6114), - [aux_sym_variable_attributes_token5] = ACTIONS(6114), - [aux_sym__intrinsic_type_token1] = ACTIONS(6114), - [aux_sym__intrinsic_type_token3] = ACTIONS(6114), - [aux_sym__intrinsic_type_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6114), - [aux_sym_type_qualifier_token1] = ACTIONS(6114), - [aux_sym_type_qualifier_token2] = ACTIONS(6114), - [anon_sym_SEMI] = ACTIONS(6118), - [aux_sym_stop_statement_token1] = ACTIONS(6114), - [aux_sym_stop_statement_token2] = ACTIONS(6114), - [aux_sym_subroutine_call_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token2] = ACTIONS(6114), - [aux_sym_keyword_statement_token3] = ACTIONS(6114), - [aux_sym_keyword_statement_token4] = ACTIONS(6114), - [aux_sym_keyword_statement_token6] = ACTIONS(6114), - [aux_sym_keyword_statement_token7] = ACTIONS(6114), - [aux_sym_include_statement_token1] = ACTIONS(6114), - [aux_sym_data_statement_token1] = ACTIONS(6114), - [aux_sym_do_loop_statement_token1] = ACTIONS(6114), - [aux_sym__inline_if_statement_token1] = ACTIONS(6114), - [aux_sym_end_if_statement_token1] = ACTIONS(6114), - [aux_sym_elseif_clause_token2] = ACTIONS(6114), - [aux_sym__inline_where_statement_token1] = ACTIONS(6114), - [aux_sym__forall_control_expression_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token3] = ACTIONS(6114), - [aux_sym_select_type_statement_token1] = ACTIONS(6114), - [aux_sym_select_rank_statement_token2] = ACTIONS(6114), - [aux_sym_block_construct_token1] = ACTIONS(6114), - [aux_sym_associate_statement_token1] = ACTIONS(6114), - [aux_sym_format_statement_token1] = ACTIONS(6114), - [aux_sym_print_statement_token1] = ACTIONS(6114), - [aux_sym_open_statement_token1] = ACTIONS(6114), - [aux_sym_close_statement_token1] = ACTIONS(6114), - [aux_sym_inquire_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token2] = ACTIONS(6114), - [aux_sym_file_position_statement_token3] = ACTIONS(6114), - [aux_sym_file_position_statement_token4] = ACTIONS(6114), - [aux_sym_allocate_statement_token1] = ACTIONS(6114), - [aux_sym_entry_statement_token1] = ACTIONS(6114), - [aux_sym_logical_expression_token5] = ACTIONS(6118), - [anon_sym_DOT] = ACTIONS(6114), - [anon_sym_LPAREN_SLASH] = ACTIONS(6118), - [anon_sym_LBRACK] = ACTIONS(6118), - [aux_sym_boolean_literal_token1] = ACTIONS(6118), - [aux_sym_boolean_literal_token2] = ACTIONS(6118), - [aux_sym_null_literal_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token2] = ACTIONS(6114), - [aux_sym_coarray_statement_token6] = ACTIONS(6114), - [aux_sym_coarray_statement_token8] = ACTIONS(6114), - [aux_sym_coarray_statement_token11] = ACTIONS(6114), - [aux_sym_coarray_statement_token12] = ACTIONS(6114), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6114), - [aux_sym_identifier_token1] = ACTIONS(6114), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6118), - [sym__float_literal] = ACTIONS(6118), - [sym__boz_literal] = ACTIONS(6118), - [sym__string_literal] = ACTIONS(6118), - [sym__string_literal_kind] = ACTIONS(6118), + [1904] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(5978), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_end_select_statement_token1] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2059] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6238), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token2] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_end_select_statement_token1] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [1905] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5980), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_end_select_statement_token1] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2060] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6240), + [1906] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(5982), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_end_select_statement_token1] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [1907] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(5984), [anon_sym_PLUS] = ACTIONS(5582), [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_end_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_end_select_statement_token1] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4571), [anon_sym_LPAREN_SLASH] = ACTIONS(5582), [anon_sym_LBRACK] = ACTIONS(5582), [aux_sym_boolean_literal_token1] = ACTIONS(5582), [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5582), [sym__float_literal] = ACTIONS(5582), @@ -349855,898 +334556,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5582), [sym__string_literal_kind] = ACTIONS(5582), }, - [2061] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), - }, - [2062] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6244), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1908] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_end_select_statement_token1] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [2063] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_contains_statement_token1] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [2064] = { - [aux_sym_preproc_include_token1] = ACTIONS(6246), - [aux_sym_preproc_def_token1] = ACTIONS(6246), - [aux_sym_preproc_if_token1] = ACTIONS(6246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6246), - [sym_preproc_directive] = ACTIONS(6246), - [anon_sym_LPAREN2] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6248), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6246), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6246), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6246), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6246), - [aux_sym_procedure_attributes_token3] = ACTIONS(6246), - [aux_sym_contains_statement_token1] = ACTIONS(6246), - [aux_sym_use_statement_token2] = ACTIONS(6246), - [aux_sym_implicit_statement_token4] = ACTIONS(6246), - [aux_sym_save_statement_token1] = ACTIONS(6246), - [aux_sym_private_statement_token1] = ACTIONS(6246), - [aux_sym_public_statement_token1] = ACTIONS(6246), - [aux_sym_derived_type_definition_token1] = ACTIONS(6246), - [aux_sym_procedure_attribute_token6] = ACTIONS(6246), - [aux_sym_variable_attributes_token2] = ACTIONS(6246), - [aux_sym_variable_attributes_token3] = ACTIONS(6246), - [aux_sym_variable_attributes_token5] = ACTIONS(6246), - [aux_sym__intrinsic_type_token1] = ACTIONS(6246), - [aux_sym__intrinsic_type_token3] = ACTIONS(6246), - [aux_sym__intrinsic_type_token4] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6246), - [aux_sym_type_qualifier_token1] = ACTIONS(6246), - [aux_sym_type_qualifier_token2] = ACTIONS(6246), - [anon_sym_SEMI] = ACTIONS(6248), - [aux_sym_stop_statement_token1] = ACTIONS(6246), - [aux_sym_stop_statement_token2] = ACTIONS(6246), - [aux_sym_subroutine_call_token1] = ACTIONS(6246), - [aux_sym_keyword_statement_token1] = ACTIONS(6246), - [aux_sym_keyword_statement_token2] = ACTIONS(6246), - [aux_sym_keyword_statement_token3] = ACTIONS(6246), - [aux_sym_keyword_statement_token4] = ACTIONS(6246), - [aux_sym_keyword_statement_token6] = ACTIONS(6246), - [aux_sym_keyword_statement_token7] = ACTIONS(6246), - [aux_sym_include_statement_token1] = ACTIONS(6246), - [aux_sym_data_statement_token1] = ACTIONS(6246), - [aux_sym_do_loop_statement_token1] = ACTIONS(6246), - [aux_sym__inline_if_statement_token1] = ACTIONS(6246), - [aux_sym_end_if_statement_token1] = ACTIONS(6246), - [aux_sym_elseif_clause_token2] = ACTIONS(6246), - [aux_sym__inline_where_statement_token1] = ACTIONS(6246), - [aux_sym__forall_control_expression_token1] = ACTIONS(6246), - [aux_sym_select_case_statement_token1] = ACTIONS(6246), - [aux_sym_select_case_statement_token3] = ACTIONS(6246), - [aux_sym_select_type_statement_token1] = ACTIONS(6246), - [aux_sym_select_rank_statement_token2] = ACTIONS(6246), - [aux_sym_block_construct_token1] = ACTIONS(6246), - [aux_sym_associate_statement_token1] = ACTIONS(6246), - [aux_sym_format_statement_token1] = ACTIONS(6246), - [aux_sym_print_statement_token1] = ACTIONS(6246), - [aux_sym_open_statement_token1] = ACTIONS(6246), - [aux_sym_close_statement_token1] = ACTIONS(6246), - [aux_sym_inquire_statement_token1] = ACTIONS(6246), - [aux_sym_file_position_statement_token1] = ACTIONS(6246), - [aux_sym_file_position_statement_token2] = ACTIONS(6246), - [aux_sym_file_position_statement_token3] = ACTIONS(6246), - [aux_sym_file_position_statement_token4] = ACTIONS(6246), - [aux_sym_allocate_statement_token1] = ACTIONS(6246), - [aux_sym_entry_statement_token1] = ACTIONS(6246), - [aux_sym_logical_expression_token5] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_LPAREN_SLASH] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6248), - [aux_sym_boolean_literal_token1] = ACTIONS(6248), - [aux_sym_boolean_literal_token2] = ACTIONS(6248), - [aux_sym_null_literal_token1] = ACTIONS(6246), - [aux_sym_coarray_statement_token1] = ACTIONS(6246), - [aux_sym_coarray_statement_token2] = ACTIONS(6246), - [aux_sym_coarray_statement_token6] = ACTIONS(6246), - [aux_sym_coarray_statement_token8] = ACTIONS(6246), - [aux_sym_coarray_statement_token11] = ACTIONS(6246), - [aux_sym_coarray_statement_token12] = ACTIONS(6246), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6246), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6246), - [aux_sym_identifier_token1] = ACTIONS(6246), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6248), - [sym__float_literal] = ACTIONS(6248), - [sym__boz_literal] = ACTIONS(6248), - [sym__string_literal] = ACTIONS(6248), - [sym__string_literal_kind] = ACTIONS(6248), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2065] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_contains_statement_token1] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [1909] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(5988), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_end_select_statement_token1] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2066] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_end_program_statement_token2] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_contains_statement_token1] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [1910] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym_end_where_statement_token1] = ACTIONS(4273), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2067] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_end_forall_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [1911] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(5990), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_contains_statement_token1] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), }, - [2068] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_contains_statement_token1] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [1912] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2069] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6252), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [1913] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym_end_where_statement_token1] = ACTIONS(4537), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2070] = { + [1914] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), @@ -350760,9 +335170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_end_program_statement_token1] = ACTIONS(5620), [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5620), [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_contains_statement_token1] = ACTIONS(5620), [aux_sym_use_statement_token2] = ACTIONS(5620), [aux_sym_implicit_statement_token4] = ACTIONS(5620), [aux_sym_save_statement_token1] = ACTIONS(5620), @@ -350802,8 +335210,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(5620), [aux_sym__inline_if_statement_token1] = ACTIONS(5620), [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token1] = ACTIONS(5620), [aux_sym_elseif_clause_token2] = ACTIONS(5620), [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym_end_where_statement_token1] = ACTIONS(5620), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5620), [aux_sym__forall_control_expression_token1] = ACTIONS(5620), [aux_sym_select_case_statement_token1] = ACTIONS(5620), [aux_sym_select_case_statement_token3] = ACTIONS(5620), @@ -350845,10 +335256,511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [2071] = { + [1915] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(5994), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_end_function_statement_token1] = ACTIONS(5550), + [aux_sym_contains_statement_token1] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [1916] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym_end_where_statement_token1] = ACTIONS(4571), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), + }, + [1917] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_end_program_statement_token2] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [1918] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym_end_where_statement_token1] = ACTIONS(5624), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [1919] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym_end_where_statement_token1] = ACTIONS(4935), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [1920] = { [aux_sym_preproc_include_token1] = ACTIONS(5640), [aux_sym_preproc_def_token1] = ACTIONS(5640), [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token2] = ACTIONS(5640), [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), [sym_preproc_directive] = ACTIONS(5640), @@ -350857,9 +335769,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5642), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token2] = ACTIONS(5640), [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5640), [aux_sym_procedure_attributes_token3] = ACTIONS(5640), [aux_sym_contains_statement_token1] = ACTIONS(5640), [aux_sym_use_statement_token2] = ACTIONS(5640), @@ -350944,316 +335856,1220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5642), [sym__string_literal_kind] = ACTIONS(5642), }, - [2072] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_program_statement_token2] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [1921] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym_end_where_statement_token1] = ACTIONS(5632), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2073] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), + [1922] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_end_program_statement_token2] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2074] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_program_statement_token2] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [1923] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym_end_where_statement_token1] = ACTIONS(5640), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [2075] = { + [1924] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token2] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_end_program_statement_token2] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_contains_statement_token1] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [1925] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym_end_where_statement_token1] = ACTIONS(5648), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [1926] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token2] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_end_program_statement_token2] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_contains_statement_token1] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [1927] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym_end_where_statement_token1] = ACTIONS(5668), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [1928] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token2] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(5998), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_contains_statement_token1] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), + }, + [1929] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym_end_where_statement_token1] = ACTIONS(5672), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [1930] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym_end_where_statement_token1] = ACTIONS(5680), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [1931] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6000), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_end_function_statement_token1] = ACTIONS(5528), + [aux_sym_contains_statement_token1] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [1932] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6002), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_end_function_statement_token1] = ACTIONS(5566), + [aux_sym_contains_statement_token1] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [1933] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [sym_preproc_comment] = ACTIONS(6004), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_program_statement_token2] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), [aux_sym_procedure_attributes_token3] = ACTIONS(4571), @@ -351282,7 +337098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -351317,12 +337133,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -351334,3470 +337150,2505 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [2076] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_program_statement_token2] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [2077] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_program_statement_token2] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), - }, - [2078] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_end_program_statement_token2] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), - }, - [2079] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_end_program_statement_token2] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_contains_statement_token1] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2080] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_program_statement_token2] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [1934] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6006), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_end_function_statement_token1] = ACTIONS(5512), + [aux_sym_contains_statement_token1] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), }, - [2081] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6256), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [1935] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym_end_where_statement_token1] = ACTIONS(4391), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2082] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1936] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym_end_where_statement_token1] = ACTIONS(4395), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2083] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6260), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [1937] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_end_forall_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym_end_where_statement_token1] = ACTIONS(4399), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), - }, - [2084] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_end_function_statement_token1] = ACTIONS(5770), - [aux_sym_contains_statement_token1] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [2085] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2086] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6264), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1938] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym_end_where_statement_token1] = ACTIONS(4403), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [2087] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_end_function_statement_token1] = ACTIONS(5710), - [aux_sym_contains_statement_token1] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2088] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6266), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1939] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym_end_where_statement_token1] = ACTIONS(4407), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2089] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6268), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2090] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_end_function_statement_token1] = ACTIONS(5750), - [aux_sym_contains_statement_token1] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2091] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1940] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_end_forall_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym_end_where_statement_token1] = ACTIONS(4411), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [2092] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6272), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2093] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6274), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [1941] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6008), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token2] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_end_select_statement_token1] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), }, - [2094] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6276), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1942] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym_end_where_statement_token1] = ACTIONS(4415), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2095] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_end_function_statement_token1] = ACTIONS(5636), - [aux_sym_contains_statement_token1] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [1943] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6010), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token2] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_end_select_statement_token1] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), }, - [2096] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6278), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [1944] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6012), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token2] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_end_select_statement_token1] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), }, - [2097] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_end_function_statement_token1] = ACTIONS(5660), - [aux_sym_contains_statement_token1] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [1945] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6014), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token2] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_end_select_statement_token1] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), }, - [2098] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6280), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), + [1946] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6016), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token2] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_end_select_statement_token1] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2099] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token2] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_contains_statement_token1] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [1947] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6018), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token2] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_end_select_statement_token1] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), }, - [2100] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6282), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [1948] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6020), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token2] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_end_select_statement_token1] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), }, - [2101] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6284), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [1949] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6022), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token2] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_end_select_statement_token1] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), }, - [2102] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token2] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_contains_statement_token1] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [1950] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6024), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_end_select_statement_token1] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), }, - [2103] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token2] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_contains_statement_token1] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [1951] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6026), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_end_select_statement_token1] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), }, - [2104] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_end_function_statement_token1] = ACTIONS(5590), - [aux_sym_contains_statement_token1] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [1952] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6028), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_end_select_statement_token1] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), }, - [2105] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6286), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [1953] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6030), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_end_select_statement_token1] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), }, - [2106] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6288), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [1954] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6032), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_end_select_statement_token1] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2107] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token2] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_contains_statement_token1] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [1955] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6034), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_end_select_statement_token1] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), }, - [2108] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token2] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_contains_statement_token1] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [1956] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6036), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_end_select_statement_token1] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), }, - [2109] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_end_function_statement_token1] = ACTIONS(5620), - [aux_sym_contains_statement_token1] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), + [1957] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6038), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_end_select_statement_token1] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), }, - [2110] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6290), + [1958] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6040), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -354805,304 +339656,1407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [2111] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6292), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [1959] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6042), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_end_function_statement_token1] = ACTIONS(5522), + [aux_sym_contains_statement_token1] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2112] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token2] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_contains_statement_token1] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [1960] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6044), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_end_program_statement_token2] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2113] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_end_function_statement_token1] = ACTIONS(5640), - [aux_sym_contains_statement_token1] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [1961] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token2] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6046), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_contains_statement_token1] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), }, - [2114] = { + [1962] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token2] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6048), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_contains_statement_token1] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [1963] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token2] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6050), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_contains_statement_token1] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [1964] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token2] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6052), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_contains_statement_token1] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [1965] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token2] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6054), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_contains_statement_token1] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [1966] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token2] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6056), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_contains_statement_token1] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [1967] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token2] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6058), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_contains_statement_token1] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [1968] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token2] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6060), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_contains_statement_token1] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [1969] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6062), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_end_program_statement_token2] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_contains_statement_token1] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [1970] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_end_program_statement_token2] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [1971] = { + [aux_sym_preproc_include_token1] = ACTIONS(6064), + [aux_sym_preproc_def_token1] = ACTIONS(6064), + [aux_sym_preproc_if_token1] = ACTIONS(6064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6064), + [sym_preproc_directive] = ACTIONS(6064), + [anon_sym_LPAREN2] = ACTIONS(6064), + [sym_preproc_comment] = ACTIONS(6066), + [anon_sym_PLUS] = ACTIONS(6068), + [anon_sym_DASH] = ACTIONS(6068), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6064), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6064), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6064), + [aux_sym_procedure_attributes_token3] = ACTIONS(6064), + [aux_sym_end_function_statement_token1] = ACTIONS(6064), + [aux_sym_contains_statement_token1] = ACTIONS(6064), + [aux_sym_use_statement_token2] = ACTIONS(6064), + [aux_sym_implicit_statement_token4] = ACTIONS(6064), + [aux_sym_save_statement_token1] = ACTIONS(6064), + [aux_sym_private_statement_token1] = ACTIONS(6064), + [aux_sym_public_statement_token1] = ACTIONS(6064), + [aux_sym_derived_type_definition_token1] = ACTIONS(6064), + [aux_sym_procedure_attribute_token6] = ACTIONS(6064), + [aux_sym_variable_attributes_token2] = ACTIONS(6064), + [aux_sym_variable_attributes_token3] = ACTIONS(6064), + [aux_sym_variable_attributes_token5] = ACTIONS(6064), + [aux_sym__intrinsic_type_token1] = ACTIONS(6064), + [aux_sym__intrinsic_type_token3] = ACTIONS(6064), + [aux_sym__intrinsic_type_token4] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6064), + [aux_sym_type_qualifier_token1] = ACTIONS(6064), + [aux_sym_type_qualifier_token2] = ACTIONS(6064), + [anon_sym_SEMI] = ACTIONS(6068), + [aux_sym_stop_statement_token1] = ACTIONS(6064), + [aux_sym_stop_statement_token2] = ACTIONS(6064), + [aux_sym_subroutine_call_token1] = ACTIONS(6064), + [aux_sym_keyword_statement_token1] = ACTIONS(6064), + [aux_sym_keyword_statement_token2] = ACTIONS(6064), + [aux_sym_keyword_statement_token3] = ACTIONS(6064), + [aux_sym_keyword_statement_token4] = ACTIONS(6064), + [aux_sym_keyword_statement_token6] = ACTIONS(6064), + [aux_sym_keyword_statement_token7] = ACTIONS(6064), + [aux_sym_include_statement_token1] = ACTIONS(6064), + [aux_sym_data_statement_token1] = ACTIONS(6064), + [aux_sym_do_loop_statement_token1] = ACTIONS(6064), + [aux_sym__inline_if_statement_token1] = ACTIONS(6064), + [aux_sym_end_if_statement_token1] = ACTIONS(6064), + [aux_sym_elseif_clause_token2] = ACTIONS(6064), + [aux_sym__inline_where_statement_token1] = ACTIONS(6064), + [aux_sym__forall_control_expression_token1] = ACTIONS(6064), + [aux_sym_select_case_statement_token1] = ACTIONS(6064), + [aux_sym_select_case_statement_token3] = ACTIONS(6064), + [aux_sym_select_type_statement_token1] = ACTIONS(6064), + [aux_sym_select_rank_statement_token2] = ACTIONS(6064), + [aux_sym_block_construct_token1] = ACTIONS(6064), + [aux_sym_associate_statement_token1] = ACTIONS(6064), + [aux_sym_format_statement_token1] = ACTIONS(6064), + [aux_sym_print_statement_token1] = ACTIONS(6064), + [aux_sym_open_statement_token1] = ACTIONS(6064), + [aux_sym_close_statement_token1] = ACTIONS(6064), + [aux_sym_inquire_statement_token1] = ACTIONS(6064), + [aux_sym_file_position_statement_token1] = ACTIONS(6064), + [aux_sym_file_position_statement_token2] = ACTIONS(6064), + [aux_sym_file_position_statement_token3] = ACTIONS(6064), + [aux_sym_file_position_statement_token4] = ACTIONS(6064), + [aux_sym_allocate_statement_token1] = ACTIONS(6064), + [aux_sym_entry_statement_token1] = ACTIONS(6064), + [aux_sym_logical_expression_token5] = ACTIONS(6068), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_LPAREN_SLASH] = ACTIONS(6068), + [anon_sym_LBRACK] = ACTIONS(6068), + [aux_sym_boolean_literal_token1] = ACTIONS(6068), + [aux_sym_boolean_literal_token2] = ACTIONS(6068), + [aux_sym_null_literal_token1] = ACTIONS(6064), + [aux_sym_coarray_statement_token1] = ACTIONS(6064), + [aux_sym_coarray_statement_token2] = ACTIONS(6064), + [aux_sym_coarray_statement_token6] = ACTIONS(6064), + [aux_sym_coarray_statement_token8] = ACTIONS(6064), + [aux_sym_coarray_statement_token11] = ACTIONS(6064), + [aux_sym_coarray_statement_token12] = ACTIONS(6064), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6064), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6064), + [aux_sym_identifier_token1] = ACTIONS(6064), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6068), + [sym__float_literal] = ACTIONS(6068), + [sym__boz_literal] = ACTIONS(6068), + [sym__string_literal] = ACTIONS(6068), + [sym__string_literal_kind] = ACTIONS(6068), + }, + [1972] = { + [aux_sym_preproc_include_token1] = ACTIONS(6070), + [aux_sym_preproc_def_token1] = ACTIONS(6070), + [aux_sym_preproc_if_token1] = ACTIONS(6070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6070), + [sym_preproc_directive] = ACTIONS(6070), + [anon_sym_LPAREN2] = ACTIONS(6070), + [sym_preproc_comment] = ACTIONS(6072), + [anon_sym_PLUS] = ACTIONS(6074), + [anon_sym_DASH] = ACTIONS(6074), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6070), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6070), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6070), + [aux_sym_procedure_attributes_token3] = ACTIONS(6070), + [aux_sym_end_function_statement_token1] = ACTIONS(6070), + [aux_sym_contains_statement_token1] = ACTIONS(6070), + [aux_sym_use_statement_token2] = ACTIONS(6070), + [aux_sym_implicit_statement_token4] = ACTIONS(6070), + [aux_sym_save_statement_token1] = ACTIONS(6070), + [aux_sym_private_statement_token1] = ACTIONS(6070), + [aux_sym_public_statement_token1] = ACTIONS(6070), + [aux_sym_derived_type_definition_token1] = ACTIONS(6070), + [aux_sym_procedure_attribute_token6] = ACTIONS(6070), + [aux_sym_variable_attributes_token2] = ACTIONS(6070), + [aux_sym_variable_attributes_token3] = ACTIONS(6070), + [aux_sym_variable_attributes_token5] = ACTIONS(6070), + [aux_sym__intrinsic_type_token1] = ACTIONS(6070), + [aux_sym__intrinsic_type_token3] = ACTIONS(6070), + [aux_sym__intrinsic_type_token4] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6070), + [aux_sym_type_qualifier_token1] = ACTIONS(6070), + [aux_sym_type_qualifier_token2] = ACTIONS(6070), + [anon_sym_SEMI] = ACTIONS(6074), + [aux_sym_stop_statement_token1] = ACTIONS(6070), + [aux_sym_stop_statement_token2] = ACTIONS(6070), + [aux_sym_subroutine_call_token1] = ACTIONS(6070), + [aux_sym_keyword_statement_token1] = ACTIONS(6070), + [aux_sym_keyword_statement_token2] = ACTIONS(6070), + [aux_sym_keyword_statement_token3] = ACTIONS(6070), + [aux_sym_keyword_statement_token4] = ACTIONS(6070), + [aux_sym_keyword_statement_token6] = ACTIONS(6070), + [aux_sym_keyword_statement_token7] = ACTIONS(6070), + [aux_sym_include_statement_token1] = ACTIONS(6070), + [aux_sym_data_statement_token1] = ACTIONS(6070), + [aux_sym_do_loop_statement_token1] = ACTIONS(6070), + [aux_sym__inline_if_statement_token1] = ACTIONS(6070), + [aux_sym_end_if_statement_token1] = ACTIONS(6070), + [aux_sym_elseif_clause_token2] = ACTIONS(6070), + [aux_sym__inline_where_statement_token1] = ACTIONS(6070), + [aux_sym__forall_control_expression_token1] = ACTIONS(6070), + [aux_sym_select_case_statement_token1] = ACTIONS(6070), + [aux_sym_select_case_statement_token3] = ACTIONS(6070), + [aux_sym_select_type_statement_token1] = ACTIONS(6070), + [aux_sym_select_rank_statement_token2] = ACTIONS(6070), + [aux_sym_block_construct_token1] = ACTIONS(6070), + [aux_sym_associate_statement_token1] = ACTIONS(6070), + [aux_sym_format_statement_token1] = ACTIONS(6070), + [aux_sym_print_statement_token1] = ACTIONS(6070), + [aux_sym_open_statement_token1] = ACTIONS(6070), + [aux_sym_close_statement_token1] = ACTIONS(6070), + [aux_sym_inquire_statement_token1] = ACTIONS(6070), + [aux_sym_file_position_statement_token1] = ACTIONS(6070), + [aux_sym_file_position_statement_token2] = ACTIONS(6070), + [aux_sym_file_position_statement_token3] = ACTIONS(6070), + [aux_sym_file_position_statement_token4] = ACTIONS(6070), + [aux_sym_allocate_statement_token1] = ACTIONS(6070), + [aux_sym_entry_statement_token1] = ACTIONS(6070), + [aux_sym_logical_expression_token5] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6070), + [anon_sym_LPAREN_SLASH] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6074), + [aux_sym_boolean_literal_token1] = ACTIONS(6074), + [aux_sym_boolean_literal_token2] = ACTIONS(6074), + [aux_sym_null_literal_token1] = ACTIONS(6070), + [aux_sym_coarray_statement_token1] = ACTIONS(6070), + [aux_sym_coarray_statement_token2] = ACTIONS(6070), + [aux_sym_coarray_statement_token6] = ACTIONS(6070), + [aux_sym_coarray_statement_token8] = ACTIONS(6070), + [aux_sym_coarray_statement_token11] = ACTIONS(6070), + [aux_sym_coarray_statement_token12] = ACTIONS(6070), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6070), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6070), + [aux_sym_identifier_token1] = ACTIONS(6070), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6074), + [sym__float_literal] = ACTIONS(6074), + [sym__boz_literal] = ACTIONS(6074), + [sym__string_literal] = ACTIONS(6074), + [sym__string_literal_kind] = ACTIONS(6074), + }, + [1973] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), @@ -355115,6 +341069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(5622), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token2] = ACTIONS(5620), [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), [aux_sym_procedure_attributes_token3] = ACTIONS(5620), @@ -355201,3981 +341156,2324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [2115] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6294), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [1974] = { + [aux_sym_preproc_include_token1] = ACTIONS(5890), + [aux_sym_preproc_def_token1] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5890), + [sym_preproc_directive] = ACTIONS(5890), + [anon_sym_LPAREN2] = ACTIONS(5890), + [sym_preproc_comment] = ACTIONS(6076), + [anon_sym_PLUS] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5890), + [aux_sym_procedure_attributes_token3] = ACTIONS(5890), + [aux_sym_end_function_statement_token1] = ACTIONS(5890), + [aux_sym_contains_statement_token1] = ACTIONS(5890), + [aux_sym_use_statement_token2] = ACTIONS(5890), + [aux_sym_implicit_statement_token4] = ACTIONS(5890), + [aux_sym_save_statement_token1] = ACTIONS(5890), + [aux_sym_private_statement_token1] = ACTIONS(5890), + [aux_sym_public_statement_token1] = ACTIONS(5890), + [aux_sym_derived_type_definition_token1] = ACTIONS(5890), + [aux_sym_procedure_attribute_token6] = ACTIONS(5890), + [aux_sym_variable_attributes_token2] = ACTIONS(5890), + [aux_sym_variable_attributes_token3] = ACTIONS(5890), + [aux_sym_variable_attributes_token5] = ACTIONS(5890), + [aux_sym__intrinsic_type_token1] = ACTIONS(5890), + [aux_sym__intrinsic_type_token3] = ACTIONS(5890), + [aux_sym__intrinsic_type_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5890), + [aux_sym_type_qualifier_token1] = ACTIONS(5890), + [aux_sym_type_qualifier_token2] = ACTIONS(5890), + [anon_sym_SEMI] = ACTIONS(5894), + [aux_sym_stop_statement_token1] = ACTIONS(5890), + [aux_sym_stop_statement_token2] = ACTIONS(5890), + [aux_sym_subroutine_call_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token2] = ACTIONS(5890), + [aux_sym_keyword_statement_token3] = ACTIONS(5890), + [aux_sym_keyword_statement_token4] = ACTIONS(5890), + [aux_sym_keyword_statement_token6] = ACTIONS(5890), + [aux_sym_keyword_statement_token7] = ACTIONS(5890), + [aux_sym_include_statement_token1] = ACTIONS(5890), + [aux_sym_data_statement_token1] = ACTIONS(5890), + [aux_sym_do_loop_statement_token1] = ACTIONS(5890), + [aux_sym__inline_if_statement_token1] = ACTIONS(5890), + [aux_sym_end_if_statement_token1] = ACTIONS(5890), + [aux_sym_elseif_clause_token2] = ACTIONS(5890), + [aux_sym__inline_where_statement_token1] = ACTIONS(5890), + [aux_sym__forall_control_expression_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token3] = ACTIONS(5890), + [aux_sym_select_type_statement_token1] = ACTIONS(5890), + [aux_sym_select_rank_statement_token2] = ACTIONS(5890), + [aux_sym_block_construct_token1] = ACTIONS(5890), + [aux_sym_associate_statement_token1] = ACTIONS(5890), + [aux_sym_format_statement_token1] = ACTIONS(5890), + [aux_sym_print_statement_token1] = ACTIONS(5890), + [aux_sym_open_statement_token1] = ACTIONS(5890), + [aux_sym_close_statement_token1] = ACTIONS(5890), + [aux_sym_inquire_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token2] = ACTIONS(5890), + [aux_sym_file_position_statement_token3] = ACTIONS(5890), + [aux_sym_file_position_statement_token4] = ACTIONS(5890), + [aux_sym_allocate_statement_token1] = ACTIONS(5890), + [aux_sym_entry_statement_token1] = ACTIONS(5890), + [aux_sym_logical_expression_token5] = ACTIONS(5894), + [anon_sym_DOT] = ACTIONS(5890), + [anon_sym_LPAREN_SLASH] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(5894), + [aux_sym_boolean_literal_token1] = ACTIONS(5894), + [aux_sym_boolean_literal_token2] = ACTIONS(5894), + [aux_sym_null_literal_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token2] = ACTIONS(5890), + [aux_sym_coarray_statement_token6] = ACTIONS(5890), + [aux_sym_coarray_statement_token8] = ACTIONS(5890), + [aux_sym_coarray_statement_token11] = ACTIONS(5890), + [aux_sym_coarray_statement_token12] = ACTIONS(5890), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5890), + [aux_sym_identifier_token1] = ACTIONS(5890), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5894), + [sym__float_literal] = ACTIONS(5894), + [sym__boz_literal] = ACTIONS(5894), + [sym__string_literal] = ACTIONS(5894), + [sym__string_literal_kind] = ACTIONS(5894), }, - [2116] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token2] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [1975] = { + [aux_sym_preproc_include_token1] = ACTIONS(6078), + [aux_sym_preproc_def_token1] = ACTIONS(6078), + [aux_sym_preproc_if_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6078), + [sym_preproc_directive] = ACTIONS(6078), + [anon_sym_LPAREN2] = ACTIONS(6078), + [sym_preproc_comment] = ACTIONS(6080), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_DASH] = ACTIONS(6082), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_contains_statement_token1] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6078), + [aux_sym_procedure_attributes_token3] = ACTIONS(6078), + [aux_sym_end_function_statement_token1] = ACTIONS(6078), + [aux_sym_contains_statement_token1] = ACTIONS(6078), + [aux_sym_use_statement_token2] = ACTIONS(6078), + [aux_sym_implicit_statement_token4] = ACTIONS(6078), + [aux_sym_save_statement_token1] = ACTIONS(6078), + [aux_sym_private_statement_token1] = ACTIONS(6078), + [aux_sym_public_statement_token1] = ACTIONS(6078), + [aux_sym_derived_type_definition_token1] = ACTIONS(6078), + [aux_sym_procedure_attribute_token6] = ACTIONS(6078), + [aux_sym_variable_attributes_token2] = ACTIONS(6078), + [aux_sym_variable_attributes_token3] = ACTIONS(6078), + [aux_sym_variable_attributes_token5] = ACTIONS(6078), + [aux_sym__intrinsic_type_token1] = ACTIONS(6078), + [aux_sym__intrinsic_type_token3] = ACTIONS(6078), + [aux_sym__intrinsic_type_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6078), + [aux_sym_type_qualifier_token1] = ACTIONS(6078), + [aux_sym_type_qualifier_token2] = ACTIONS(6078), + [anon_sym_SEMI] = ACTIONS(6082), + [aux_sym_stop_statement_token1] = ACTIONS(6078), + [aux_sym_stop_statement_token2] = ACTIONS(6078), + [aux_sym_subroutine_call_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token2] = ACTIONS(6078), + [aux_sym_keyword_statement_token3] = ACTIONS(6078), + [aux_sym_keyword_statement_token4] = ACTIONS(6078), + [aux_sym_keyword_statement_token6] = ACTIONS(6078), + [aux_sym_keyword_statement_token7] = ACTIONS(6078), + [aux_sym_include_statement_token1] = ACTIONS(6078), + [aux_sym_data_statement_token1] = ACTIONS(6078), + [aux_sym_do_loop_statement_token1] = ACTIONS(6078), + [aux_sym__inline_if_statement_token1] = ACTIONS(6078), + [aux_sym_end_if_statement_token1] = ACTIONS(6078), + [aux_sym_elseif_clause_token2] = ACTIONS(6078), + [aux_sym__inline_where_statement_token1] = ACTIONS(6078), + [aux_sym__forall_control_expression_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token3] = ACTIONS(6078), + [aux_sym_select_type_statement_token1] = ACTIONS(6078), + [aux_sym_select_rank_statement_token2] = ACTIONS(6078), + [aux_sym_block_construct_token1] = ACTIONS(6078), + [aux_sym_associate_statement_token1] = ACTIONS(6078), + [aux_sym_format_statement_token1] = ACTIONS(6078), + [aux_sym_print_statement_token1] = ACTIONS(6078), + [aux_sym_open_statement_token1] = ACTIONS(6078), + [aux_sym_close_statement_token1] = ACTIONS(6078), + [aux_sym_inquire_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token2] = ACTIONS(6078), + [aux_sym_file_position_statement_token3] = ACTIONS(6078), + [aux_sym_file_position_statement_token4] = ACTIONS(6078), + [aux_sym_allocate_statement_token1] = ACTIONS(6078), + [aux_sym_entry_statement_token1] = ACTIONS(6078), + [aux_sym_logical_expression_token5] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_LPAREN_SLASH] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6082), + [aux_sym_boolean_literal_token1] = ACTIONS(6082), + [aux_sym_boolean_literal_token2] = ACTIONS(6082), + [aux_sym_null_literal_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token2] = ACTIONS(6078), + [aux_sym_coarray_statement_token6] = ACTIONS(6078), + [aux_sym_coarray_statement_token8] = ACTIONS(6078), + [aux_sym_coarray_statement_token11] = ACTIONS(6078), + [aux_sym_coarray_statement_token12] = ACTIONS(6078), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6078), + [aux_sym_identifier_token1] = ACTIONS(6078), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [sym__integer_literal] = ACTIONS(6082), + [sym__float_literal] = ACTIONS(6082), + [sym__boz_literal] = ACTIONS(6082), + [sym__string_literal] = ACTIONS(6082), + [sym__string_literal_kind] = ACTIONS(6082), }, - [2117] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6296), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), + [1976] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6084), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_contains_statement_token1] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), }, - [2118] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6298), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [1977] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6086), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_end_program_statement_token2] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_contains_statement_token1] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), }, - [2119] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6300), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), + [1978] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6088), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_contains_statement_token1] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2120] = { - [aux_sym_preproc_include_token1] = ACTIONS(6302), - [aux_sym_preproc_def_token1] = ACTIONS(6302), - [aux_sym_preproc_if_token1] = ACTIONS(6302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6302), - [sym_preproc_directive] = ACTIONS(6302), - [anon_sym_LPAREN2] = ACTIONS(6302), - [anon_sym_PLUS] = ACTIONS(6304), - [anon_sym_DASH] = ACTIONS(6304), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6302), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6302), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6302), - [aux_sym_procedure_attributes_token3] = ACTIONS(6302), - [aux_sym_end_function_statement_token1] = ACTIONS(6302), - [aux_sym_contains_statement_token1] = ACTIONS(6302), - [aux_sym_use_statement_token2] = ACTIONS(6302), - [aux_sym_implicit_statement_token4] = ACTIONS(6302), - [aux_sym_save_statement_token1] = ACTIONS(6302), - [aux_sym_private_statement_token1] = ACTIONS(6302), - [aux_sym_public_statement_token1] = ACTIONS(6302), - [aux_sym_derived_type_definition_token1] = ACTIONS(6302), - [aux_sym_procedure_attribute_token6] = ACTIONS(6302), - [aux_sym_variable_attributes_token2] = ACTIONS(6302), - [aux_sym_variable_attributes_token3] = ACTIONS(6302), - [aux_sym_variable_attributes_token5] = ACTIONS(6302), - [aux_sym__intrinsic_type_token1] = ACTIONS(6302), - [aux_sym__intrinsic_type_token3] = ACTIONS(6302), - [aux_sym__intrinsic_type_token4] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6302), - [aux_sym_type_qualifier_token1] = ACTIONS(6302), - [aux_sym_type_qualifier_token2] = ACTIONS(6302), - [anon_sym_SEMI] = ACTIONS(6304), - [aux_sym_stop_statement_token1] = ACTIONS(6302), - [aux_sym_stop_statement_token2] = ACTIONS(6302), - [aux_sym_subroutine_call_token1] = ACTIONS(6302), - [aux_sym_keyword_statement_token1] = ACTIONS(6302), - [aux_sym_keyword_statement_token2] = ACTIONS(6302), - [aux_sym_keyword_statement_token3] = ACTIONS(6302), - [aux_sym_keyword_statement_token4] = ACTIONS(6302), - [aux_sym_keyword_statement_token6] = ACTIONS(6302), - [aux_sym_keyword_statement_token7] = ACTIONS(6302), - [aux_sym_include_statement_token1] = ACTIONS(6302), - [aux_sym_data_statement_token1] = ACTIONS(6302), - [aux_sym_do_loop_statement_token1] = ACTIONS(6302), - [aux_sym__inline_if_statement_token1] = ACTIONS(6302), - [aux_sym_end_if_statement_token1] = ACTIONS(6302), - [aux_sym_elseif_clause_token2] = ACTIONS(6302), - [aux_sym__inline_where_statement_token1] = ACTIONS(6302), - [aux_sym__forall_control_expression_token1] = ACTIONS(6302), - [aux_sym_select_case_statement_token1] = ACTIONS(6302), - [aux_sym_select_case_statement_token3] = ACTIONS(6302), - [aux_sym_select_type_statement_token1] = ACTIONS(6302), - [aux_sym_select_rank_statement_token2] = ACTIONS(6302), - [aux_sym_block_construct_token1] = ACTIONS(6302), - [aux_sym_associate_statement_token1] = ACTIONS(6302), - [aux_sym_format_statement_token1] = ACTIONS(6302), - [aux_sym_print_statement_token1] = ACTIONS(6302), - [aux_sym_open_statement_token1] = ACTIONS(6302), - [aux_sym_close_statement_token1] = ACTIONS(6302), - [aux_sym_inquire_statement_token1] = ACTIONS(6302), - [aux_sym_file_position_statement_token1] = ACTIONS(6302), - [aux_sym_file_position_statement_token2] = ACTIONS(6302), - [aux_sym_file_position_statement_token3] = ACTIONS(6302), - [aux_sym_file_position_statement_token4] = ACTIONS(6302), - [aux_sym_allocate_statement_token1] = ACTIONS(6302), - [aux_sym_entry_statement_token1] = ACTIONS(6302), - [aux_sym_logical_expression_token5] = ACTIONS(6304), - [anon_sym_DOT] = ACTIONS(6302), - [anon_sym_LPAREN_SLASH] = ACTIONS(6304), - [anon_sym_LBRACK] = ACTIONS(6304), - [aux_sym_boolean_literal_token1] = ACTIONS(6304), - [aux_sym_boolean_literal_token2] = ACTIONS(6304), - [aux_sym_null_literal_token1] = ACTIONS(6302), - [aux_sym_coarray_statement_token1] = ACTIONS(6302), - [aux_sym_coarray_statement_token2] = ACTIONS(6302), - [aux_sym_coarray_statement_token6] = ACTIONS(6302), - [aux_sym_coarray_statement_token8] = ACTIONS(6302), - [aux_sym_coarray_statement_token11] = ACTIONS(6302), - [aux_sym_coarray_statement_token12] = ACTIONS(6302), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6302), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6302), - [aux_sym_identifier_token1] = ACTIONS(6302), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6304), - [sym__float_literal] = ACTIONS(6304), - [sym__boz_literal] = ACTIONS(6304), - [sym__string_literal] = ACTIONS(6304), - [sym__string_literal_kind] = ACTIONS(6304), + [1979] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6090), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_end_function_statement_token1] = ACTIONS(5538), + [aux_sym_contains_statement_token1] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), }, - [2121] = { - [aux_sym_preproc_include_token1] = ACTIONS(6016), - [aux_sym_preproc_def_token1] = ACTIONS(6016), - [aux_sym_preproc_if_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6016), - [sym_preproc_directive] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [anon_sym_PLUS] = ACTIONS(6020), - [anon_sym_DASH] = ACTIONS(6020), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6016), - [aux_sym_procedure_attributes_token3] = ACTIONS(6016), - [aux_sym_end_function_statement_token1] = ACTIONS(6016), - [aux_sym_contains_statement_token1] = ACTIONS(6016), - [aux_sym_use_statement_token2] = ACTIONS(6016), - [aux_sym_implicit_statement_token4] = ACTIONS(6016), - [aux_sym_save_statement_token1] = ACTIONS(6016), - [aux_sym_private_statement_token1] = ACTIONS(6016), - [aux_sym_public_statement_token1] = ACTIONS(6016), - [aux_sym_derived_type_definition_token1] = ACTIONS(6016), - [aux_sym_procedure_attribute_token6] = ACTIONS(6016), - [aux_sym_variable_attributes_token2] = ACTIONS(6016), - [aux_sym_variable_attributes_token3] = ACTIONS(6016), - [aux_sym_variable_attributes_token5] = ACTIONS(6016), - [aux_sym__intrinsic_type_token1] = ACTIONS(6016), - [aux_sym__intrinsic_type_token3] = ACTIONS(6016), - [aux_sym__intrinsic_type_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6016), - [aux_sym_type_qualifier_token1] = ACTIONS(6016), - [aux_sym_type_qualifier_token2] = ACTIONS(6016), - [anon_sym_SEMI] = ACTIONS(6020), - [aux_sym_stop_statement_token1] = ACTIONS(6016), - [aux_sym_stop_statement_token2] = ACTIONS(6016), - [aux_sym_subroutine_call_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token2] = ACTIONS(6016), - [aux_sym_keyword_statement_token3] = ACTIONS(6016), - [aux_sym_keyword_statement_token4] = ACTIONS(6016), - [aux_sym_keyword_statement_token6] = ACTIONS(6016), - [aux_sym_keyword_statement_token7] = ACTIONS(6016), - [aux_sym_include_statement_token1] = ACTIONS(6016), - [aux_sym_data_statement_token1] = ACTIONS(6016), - [aux_sym_do_loop_statement_token1] = ACTIONS(6016), - [aux_sym__inline_if_statement_token1] = ACTIONS(6016), - [aux_sym_end_if_statement_token1] = ACTIONS(6016), - [aux_sym_elseif_clause_token2] = ACTIONS(6016), - [aux_sym__inline_where_statement_token1] = ACTIONS(6016), - [aux_sym__forall_control_expression_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token3] = ACTIONS(6016), - [aux_sym_select_type_statement_token1] = ACTIONS(6016), - [aux_sym_select_rank_statement_token2] = ACTIONS(6016), - [aux_sym_block_construct_token1] = ACTIONS(6016), - [aux_sym_associate_statement_token1] = ACTIONS(6016), - [aux_sym_format_statement_token1] = ACTIONS(6016), - [aux_sym_print_statement_token1] = ACTIONS(6016), - [aux_sym_open_statement_token1] = ACTIONS(6016), - [aux_sym_close_statement_token1] = ACTIONS(6016), - [aux_sym_inquire_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token2] = ACTIONS(6016), - [aux_sym_file_position_statement_token3] = ACTIONS(6016), - [aux_sym_file_position_statement_token4] = ACTIONS(6016), - [aux_sym_allocate_statement_token1] = ACTIONS(6016), - [aux_sym_entry_statement_token1] = ACTIONS(6016), - [aux_sym_logical_expression_token5] = ACTIONS(6020), - [anon_sym_DOT] = ACTIONS(6016), - [anon_sym_LPAREN_SLASH] = ACTIONS(6020), - [anon_sym_LBRACK] = ACTIONS(6020), - [aux_sym_boolean_literal_token1] = ACTIONS(6020), - [aux_sym_boolean_literal_token2] = ACTIONS(6020), - [aux_sym_null_literal_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token2] = ACTIONS(6016), - [aux_sym_coarray_statement_token6] = ACTIONS(6016), - [aux_sym_coarray_statement_token8] = ACTIONS(6016), - [aux_sym_coarray_statement_token11] = ACTIONS(6016), - [aux_sym_coarray_statement_token12] = ACTIONS(6016), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6016), - [aux_sym_identifier_token1] = ACTIONS(6016), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6020), - [sym__float_literal] = ACTIONS(6020), - [sym__boz_literal] = ACTIONS(6020), - [sym__string_literal] = ACTIONS(6020), - [sym__string_literal_kind] = ACTIONS(6020), + [1980] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_end_program_statement_token2] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2122] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6306), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), + [1981] = { + [aux_sym_preproc_include_token1] = ACTIONS(6092), + [aux_sym_preproc_def_token1] = ACTIONS(6092), + [aux_sym_preproc_if_token1] = ACTIONS(6092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6092), + [sym_preproc_directive] = ACTIONS(6092), + [anon_sym_LPAREN2] = ACTIONS(6092), + [sym_preproc_comment] = ACTIONS(6094), + [anon_sym_PLUS] = ACTIONS(6096), + [anon_sym_DASH] = ACTIONS(6096), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6092), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6092), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6092), + [aux_sym_procedure_attributes_token3] = ACTIONS(6092), + [aux_sym_end_function_statement_token1] = ACTIONS(6092), + [aux_sym_contains_statement_token1] = ACTIONS(6092), + [aux_sym_use_statement_token2] = ACTIONS(6092), + [aux_sym_implicit_statement_token4] = ACTIONS(6092), + [aux_sym_save_statement_token1] = ACTIONS(6092), + [aux_sym_private_statement_token1] = ACTIONS(6092), + [aux_sym_public_statement_token1] = ACTIONS(6092), + [aux_sym_derived_type_definition_token1] = ACTIONS(6092), + [aux_sym_procedure_attribute_token6] = ACTIONS(6092), + [aux_sym_variable_attributes_token2] = ACTIONS(6092), + [aux_sym_variable_attributes_token3] = ACTIONS(6092), + [aux_sym_variable_attributes_token5] = ACTIONS(6092), + [aux_sym__intrinsic_type_token1] = ACTIONS(6092), + [aux_sym__intrinsic_type_token3] = ACTIONS(6092), + [aux_sym__intrinsic_type_token4] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6092), + [aux_sym_type_qualifier_token1] = ACTIONS(6092), + [aux_sym_type_qualifier_token2] = ACTIONS(6092), + [anon_sym_SEMI] = ACTIONS(6096), + [aux_sym_stop_statement_token1] = ACTIONS(6092), + [aux_sym_stop_statement_token2] = ACTIONS(6092), + [aux_sym_subroutine_call_token1] = ACTIONS(6092), + [aux_sym_keyword_statement_token1] = ACTIONS(6092), + [aux_sym_keyword_statement_token2] = ACTIONS(6092), + [aux_sym_keyword_statement_token3] = ACTIONS(6092), + [aux_sym_keyword_statement_token4] = ACTIONS(6092), + [aux_sym_keyword_statement_token6] = ACTIONS(6092), + [aux_sym_keyword_statement_token7] = ACTIONS(6092), + [aux_sym_include_statement_token1] = ACTIONS(6092), + [aux_sym_data_statement_token1] = ACTIONS(6092), + [aux_sym_do_loop_statement_token1] = ACTIONS(6092), + [aux_sym__inline_if_statement_token1] = ACTIONS(6092), + [aux_sym_end_if_statement_token1] = ACTIONS(6092), + [aux_sym_elseif_clause_token2] = ACTIONS(6092), + [aux_sym__inline_where_statement_token1] = ACTIONS(6092), + [aux_sym__forall_control_expression_token1] = ACTIONS(6092), + [aux_sym_select_case_statement_token1] = ACTIONS(6092), + [aux_sym_select_case_statement_token3] = ACTIONS(6092), + [aux_sym_select_type_statement_token1] = ACTIONS(6092), + [aux_sym_select_rank_statement_token2] = ACTIONS(6092), + [aux_sym_block_construct_token1] = ACTIONS(6092), + [aux_sym_associate_statement_token1] = ACTIONS(6092), + [aux_sym_format_statement_token1] = ACTIONS(6092), + [aux_sym_print_statement_token1] = ACTIONS(6092), + [aux_sym_open_statement_token1] = ACTIONS(6092), + [aux_sym_close_statement_token1] = ACTIONS(6092), + [aux_sym_inquire_statement_token1] = ACTIONS(6092), + [aux_sym_file_position_statement_token1] = ACTIONS(6092), + [aux_sym_file_position_statement_token2] = ACTIONS(6092), + [aux_sym_file_position_statement_token3] = ACTIONS(6092), + [aux_sym_file_position_statement_token4] = ACTIONS(6092), + [aux_sym_allocate_statement_token1] = ACTIONS(6092), + [aux_sym_entry_statement_token1] = ACTIONS(6092), + [aux_sym_logical_expression_token5] = ACTIONS(6096), + [anon_sym_DOT] = ACTIONS(6092), + [anon_sym_LPAREN_SLASH] = ACTIONS(6096), + [anon_sym_LBRACK] = ACTIONS(6096), + [aux_sym_boolean_literal_token1] = ACTIONS(6096), + [aux_sym_boolean_literal_token2] = ACTIONS(6096), + [aux_sym_null_literal_token1] = ACTIONS(6092), + [aux_sym_coarray_statement_token1] = ACTIONS(6092), + [aux_sym_coarray_statement_token2] = ACTIONS(6092), + [aux_sym_coarray_statement_token6] = ACTIONS(6092), + [aux_sym_coarray_statement_token8] = ACTIONS(6092), + [aux_sym_coarray_statement_token11] = ACTIONS(6092), + [aux_sym_coarray_statement_token12] = ACTIONS(6092), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6092), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6092), + [aux_sym_identifier_token1] = ACTIONS(6092), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6096), + [sym__float_literal] = ACTIONS(6096), + [sym__boz_literal] = ACTIONS(6096), + [sym__string_literal] = ACTIONS(6096), + [sym__string_literal_kind] = ACTIONS(6096), }, - [2123] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6308), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), + [1982] = { + [aux_sym_preproc_include_token1] = ACTIONS(6098), + [aux_sym_preproc_def_token1] = ACTIONS(6098), + [aux_sym_preproc_if_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6098), + [sym_preproc_directive] = ACTIONS(6098), + [anon_sym_LPAREN2] = ACTIONS(6098), + [sym_preproc_comment] = ACTIONS(6100), + [anon_sym_PLUS] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6102), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6098), + [aux_sym_procedure_attributes_token3] = ACTIONS(6098), + [aux_sym_end_function_statement_token1] = ACTIONS(6098), + [aux_sym_contains_statement_token1] = ACTIONS(6098), + [aux_sym_use_statement_token2] = ACTIONS(6098), + [aux_sym_implicit_statement_token4] = ACTIONS(6098), + [aux_sym_save_statement_token1] = ACTIONS(6098), + [aux_sym_private_statement_token1] = ACTIONS(6098), + [aux_sym_public_statement_token1] = ACTIONS(6098), + [aux_sym_derived_type_definition_token1] = ACTIONS(6098), + [aux_sym_procedure_attribute_token6] = ACTIONS(6098), + [aux_sym_variable_attributes_token2] = ACTIONS(6098), + [aux_sym_variable_attributes_token3] = ACTIONS(6098), + [aux_sym_variable_attributes_token5] = ACTIONS(6098), + [aux_sym__intrinsic_type_token1] = ACTIONS(6098), + [aux_sym__intrinsic_type_token3] = ACTIONS(6098), + [aux_sym__intrinsic_type_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6098), + [aux_sym_type_qualifier_token1] = ACTIONS(6098), + [aux_sym_type_qualifier_token2] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6102), + [aux_sym_stop_statement_token1] = ACTIONS(6098), + [aux_sym_stop_statement_token2] = ACTIONS(6098), + [aux_sym_subroutine_call_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token2] = ACTIONS(6098), + [aux_sym_keyword_statement_token3] = ACTIONS(6098), + [aux_sym_keyword_statement_token4] = ACTIONS(6098), + [aux_sym_keyword_statement_token6] = ACTIONS(6098), + [aux_sym_keyword_statement_token7] = ACTIONS(6098), + [aux_sym_include_statement_token1] = ACTIONS(6098), + [aux_sym_data_statement_token1] = ACTIONS(6098), + [aux_sym_do_loop_statement_token1] = ACTIONS(6098), + [aux_sym__inline_if_statement_token1] = ACTIONS(6098), + [aux_sym_end_if_statement_token1] = ACTIONS(6098), + [aux_sym_elseif_clause_token2] = ACTIONS(6098), + [aux_sym__inline_where_statement_token1] = ACTIONS(6098), + [aux_sym__forall_control_expression_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token3] = ACTIONS(6098), + [aux_sym_select_type_statement_token1] = ACTIONS(6098), + [aux_sym_select_rank_statement_token2] = ACTIONS(6098), + [aux_sym_block_construct_token1] = ACTIONS(6098), + [aux_sym_associate_statement_token1] = ACTIONS(6098), + [aux_sym_format_statement_token1] = ACTIONS(6098), + [aux_sym_print_statement_token1] = ACTIONS(6098), + [aux_sym_open_statement_token1] = ACTIONS(6098), + [aux_sym_close_statement_token1] = ACTIONS(6098), + [aux_sym_inquire_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token2] = ACTIONS(6098), + [aux_sym_file_position_statement_token3] = ACTIONS(6098), + [aux_sym_file_position_statement_token4] = ACTIONS(6098), + [aux_sym_allocate_statement_token1] = ACTIONS(6098), + [aux_sym_entry_statement_token1] = ACTIONS(6098), + [aux_sym_logical_expression_token5] = ACTIONS(6102), + [anon_sym_DOT] = ACTIONS(6098), + [anon_sym_LPAREN_SLASH] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(6102), + [aux_sym_boolean_literal_token1] = ACTIONS(6102), + [aux_sym_boolean_literal_token2] = ACTIONS(6102), + [aux_sym_null_literal_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token2] = ACTIONS(6098), + [aux_sym_coarray_statement_token6] = ACTIONS(6098), + [aux_sym_coarray_statement_token8] = ACTIONS(6098), + [aux_sym_coarray_statement_token11] = ACTIONS(6098), + [aux_sym_coarray_statement_token12] = ACTIONS(6098), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6098), + [aux_sym_identifier_token1] = ACTIONS(6098), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6102), + [sym__float_literal] = ACTIONS(6102), + [sym__boz_literal] = ACTIONS(6102), + [sym__string_literal] = ACTIONS(6102), + [sym__string_literal_kind] = ACTIONS(6102), }, - [2124] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6310), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1983] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token2] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2125] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6312), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), + [1984] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_program_statement_token2] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [2126] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6314), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [2127] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6316), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2128] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6318), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [2129] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6320), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [2130] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6322), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_end_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), - }, - [2131] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6324), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2132] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6326), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), + [1985] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token2] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2133] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6328), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [1986] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_end_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_program_statement_token2] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2134] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6330), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [1987] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_end_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_program_statement_token2] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [2135] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6332), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [2136] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6334), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [2137] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6336), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_end_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2138] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6338), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [1988] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_end_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_program_statement_token2] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2139] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6340), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), + [1989] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_end_program_statement_token2] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2140] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6342), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), + [1990] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6104), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_end_function_statement_token1] = ACTIONS(5544), + [aux_sym_contains_statement_token1] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), }, - [2141] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6344), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [1991] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token2] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_end_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_end_program_statement_token2] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_contains_statement_token1] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2142] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6346), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_end_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2143] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6348), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [2144] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6350), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_end_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [2145] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_contains_statement_token1] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [2146] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_contains_statement_token1] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [2147] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_contains_statement_token1] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [2148] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_contains_statement_token1] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [2149] = { - [aux_sym_preproc_include_token1] = ACTIONS(6352), - [aux_sym_preproc_def_token1] = ACTIONS(6352), - [aux_sym_preproc_if_token1] = ACTIONS(6352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6352), - [sym_preproc_directive] = ACTIONS(6352), - [anon_sym_LPAREN2] = ACTIONS(6352), - [anon_sym_PLUS] = ACTIONS(6354), - [anon_sym_DASH] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6352), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6352), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6352), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6352), - [aux_sym_procedure_attributes_token3] = ACTIONS(6352), - [aux_sym_contains_statement_token1] = ACTIONS(6352), - [aux_sym_use_statement_token2] = ACTIONS(6352), - [aux_sym_implicit_statement_token4] = ACTIONS(6352), - [aux_sym_save_statement_token1] = ACTIONS(6352), - [aux_sym_private_statement_token1] = ACTIONS(6352), - [aux_sym_public_statement_token1] = ACTIONS(6352), - [aux_sym_derived_type_definition_token1] = ACTIONS(6352), - [aux_sym_procedure_attribute_token6] = ACTIONS(6352), - [aux_sym_variable_attributes_token2] = ACTIONS(6352), - [aux_sym_variable_attributes_token3] = ACTIONS(6352), - [aux_sym_variable_attributes_token5] = ACTIONS(6352), - [aux_sym__intrinsic_type_token1] = ACTIONS(6352), - [aux_sym__intrinsic_type_token3] = ACTIONS(6352), - [aux_sym__intrinsic_type_token4] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6352), - [aux_sym_type_qualifier_token1] = ACTIONS(6352), - [aux_sym_type_qualifier_token2] = ACTIONS(6352), - [anon_sym_SEMI] = ACTIONS(6354), - [aux_sym_stop_statement_token1] = ACTIONS(6352), - [aux_sym_stop_statement_token2] = ACTIONS(6352), - [aux_sym_subroutine_call_token1] = ACTIONS(6352), - [aux_sym_keyword_statement_token1] = ACTIONS(6352), - [aux_sym_keyword_statement_token2] = ACTIONS(6352), - [aux_sym_keyword_statement_token3] = ACTIONS(6352), - [aux_sym_keyword_statement_token4] = ACTIONS(6352), - [aux_sym_keyword_statement_token6] = ACTIONS(6352), - [aux_sym_keyword_statement_token7] = ACTIONS(6352), - [aux_sym_include_statement_token1] = ACTIONS(6352), - [aux_sym_data_statement_token1] = ACTIONS(6352), - [aux_sym_do_loop_statement_token1] = ACTIONS(6352), - [aux_sym__inline_if_statement_token1] = ACTIONS(6352), - [aux_sym_end_if_statement_token1] = ACTIONS(6352), - [aux_sym_elseif_clause_token2] = ACTIONS(6352), - [aux_sym__inline_where_statement_token1] = ACTIONS(6352), - [aux_sym__forall_control_expression_token1] = ACTIONS(6352), - [aux_sym_select_case_statement_token1] = ACTIONS(6352), - [aux_sym_select_case_statement_token3] = ACTIONS(6352), - [aux_sym_select_type_statement_token1] = ACTIONS(6352), - [aux_sym_select_rank_statement_token2] = ACTIONS(6352), - [aux_sym_block_construct_token1] = ACTIONS(6352), - [aux_sym_associate_statement_token1] = ACTIONS(6352), - [aux_sym_format_statement_token1] = ACTIONS(6352), - [aux_sym_print_statement_token1] = ACTIONS(6352), - [aux_sym_open_statement_token1] = ACTIONS(6352), - [aux_sym_close_statement_token1] = ACTIONS(6352), - [aux_sym_inquire_statement_token1] = ACTIONS(6352), - [aux_sym_file_position_statement_token1] = ACTIONS(6352), - [aux_sym_file_position_statement_token2] = ACTIONS(6352), - [aux_sym_file_position_statement_token3] = ACTIONS(6352), - [aux_sym_file_position_statement_token4] = ACTIONS(6352), - [aux_sym_allocate_statement_token1] = ACTIONS(6352), - [aux_sym_entry_statement_token1] = ACTIONS(6352), - [aux_sym_logical_expression_token5] = ACTIONS(6354), - [anon_sym_DOT] = ACTIONS(6352), - [anon_sym_LPAREN_SLASH] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(6354), - [aux_sym_boolean_literal_token1] = ACTIONS(6354), - [aux_sym_boolean_literal_token2] = ACTIONS(6354), - [aux_sym_null_literal_token1] = ACTIONS(6352), - [aux_sym_coarray_statement_token1] = ACTIONS(6352), - [aux_sym_coarray_statement_token2] = ACTIONS(6352), - [aux_sym_coarray_statement_token6] = ACTIONS(6352), - [aux_sym_coarray_statement_token8] = ACTIONS(6352), - [aux_sym_coarray_statement_token11] = ACTIONS(6352), - [aux_sym_coarray_statement_token12] = ACTIONS(6352), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6352), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6352), - [aux_sym_identifier_token1] = ACTIONS(6352), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6354), - [sym__float_literal] = ACTIONS(6354), - [sym__boz_literal] = ACTIONS(6354), - [sym__string_literal] = ACTIONS(6354), - [sym__string_literal_kind] = ACTIONS(6354), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2150] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_contains_statement_token1] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [1992] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token2] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_end_program_statement_token2] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_contains_statement_token1] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), }, - [2151] = { - [aux_sym_preproc_include_token1] = ACTIONS(2848), - [aux_sym_preproc_def_token1] = ACTIONS(2848), - [aux_sym_preproc_if_token1] = ACTIONS(2848), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), - [sym_preproc_directive] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(6356), - [anon_sym_DASH] = ACTIONS(6356), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2848), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2848), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2848), - [aux_sym_procedure_attributes_token3] = ACTIONS(2848), - [aux_sym_end_function_statement_token1] = ACTIONS(2848), - [aux_sym_contains_statement_token1] = ACTIONS(2848), - [aux_sym_use_statement_token2] = ACTIONS(2848), - [aux_sym_implicit_statement_token4] = ACTIONS(2848), - [aux_sym_save_statement_token1] = ACTIONS(2848), - [aux_sym_private_statement_token1] = ACTIONS(2848), - [aux_sym_public_statement_token1] = ACTIONS(2848), - [aux_sym_derived_type_definition_token1] = ACTIONS(2848), - [aux_sym_procedure_attribute_token6] = ACTIONS(2848), - [aux_sym_variable_attributes_token2] = ACTIONS(2848), - [aux_sym_variable_attributes_token3] = ACTIONS(2848), - [aux_sym_variable_attributes_token5] = ACTIONS(2848), - [aux_sym__intrinsic_type_token1] = ACTIONS(2848), - [aux_sym__intrinsic_type_token3] = ACTIONS(2848), - [aux_sym__intrinsic_type_token4] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2848), - [aux_sym_type_qualifier_token1] = ACTIONS(2848), - [aux_sym_type_qualifier_token2] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(6356), - [aux_sym_stop_statement_token1] = ACTIONS(2848), - [aux_sym_stop_statement_token2] = ACTIONS(2848), - [aux_sym_subroutine_call_token1] = ACTIONS(2848), - [aux_sym_keyword_statement_token1] = ACTIONS(2848), - [aux_sym_keyword_statement_token2] = ACTIONS(2848), - [aux_sym_keyword_statement_token3] = ACTIONS(2848), - [aux_sym_keyword_statement_token4] = ACTIONS(2848), - [aux_sym_keyword_statement_token6] = ACTIONS(2848), - [aux_sym_keyword_statement_token7] = ACTIONS(2848), - [aux_sym_include_statement_token1] = ACTIONS(2848), - [aux_sym_data_statement_token1] = ACTIONS(2848), - [aux_sym_do_loop_statement_token1] = ACTIONS(2848), - [aux_sym__inline_if_statement_token1] = ACTIONS(2848), - [aux_sym_end_if_statement_token1] = ACTIONS(2848), - [aux_sym_elseif_clause_token2] = ACTIONS(2848), - [aux_sym__inline_where_statement_token1] = ACTIONS(2848), - [aux_sym__forall_control_expression_token1] = ACTIONS(2848), - [aux_sym_select_case_statement_token1] = ACTIONS(2848), - [aux_sym_select_case_statement_token3] = ACTIONS(2848), - [aux_sym_select_type_statement_token1] = ACTIONS(2848), - [aux_sym_select_rank_statement_token2] = ACTIONS(2848), - [aux_sym_block_construct_token1] = ACTIONS(2848), - [aux_sym_associate_statement_token1] = ACTIONS(2848), - [aux_sym_format_statement_token1] = ACTIONS(2848), - [aux_sym_print_statement_token1] = ACTIONS(2848), - [aux_sym_open_statement_token1] = ACTIONS(2848), - [aux_sym_close_statement_token1] = ACTIONS(2848), - [aux_sym_inquire_statement_token1] = ACTIONS(2848), - [aux_sym_file_position_statement_token1] = ACTIONS(2848), - [aux_sym_file_position_statement_token2] = ACTIONS(2848), - [aux_sym_file_position_statement_token3] = ACTIONS(2848), - [aux_sym_file_position_statement_token4] = ACTIONS(2848), - [aux_sym_allocate_statement_token1] = ACTIONS(2848), - [aux_sym_entry_statement_token1] = ACTIONS(2848), - [aux_sym_logical_expression_token5] = ACTIONS(6356), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_LPAREN_SLASH] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(6356), - [aux_sym_boolean_literal_token1] = ACTIONS(6356), - [aux_sym_boolean_literal_token2] = ACTIONS(6356), - [aux_sym_null_literal_token1] = ACTIONS(2848), - [aux_sym_coarray_statement_token1] = ACTIONS(2848), - [aux_sym_coarray_statement_token2] = ACTIONS(2848), - [aux_sym_coarray_statement_token6] = ACTIONS(2848), - [aux_sym_coarray_statement_token8] = ACTIONS(2848), - [aux_sym_coarray_statement_token11] = ACTIONS(2848), - [aux_sym_coarray_statement_token12] = ACTIONS(2848), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2848), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2848), - [aux_sym_identifier_token1] = ACTIONS(2848), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6356), - [sym__float_literal] = ACTIONS(6356), - [sym__boz_literal] = ACTIONS(6356), - [sym__string_literal] = ACTIONS(6356), - [sym__string_literal_kind] = ACTIONS(6356), + [1993] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6106), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_end_program_statement_token2] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_contains_statement_token1] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), }, - [2152] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_contains_statement_token1] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [1994] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6108), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_end_program_statement_token2] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_contains_statement_token1] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2153] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_contains_statement_token1] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), + [1995] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6110), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2154] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_contains_statement_token1] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [1996] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6112), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_end_function_statement_token1] = ACTIONS(5560), + [aux_sym_contains_statement_token1] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), }, - [2155] = { + [1997] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token2] = ACTIONS(2059), [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_end_program_statement_token2] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_contains_statement_token1] = ACTIONS(2059), [aux_sym_use_statement_token2] = ACTIONS(2059), [aux_sym_implicit_statement_token4] = ACTIONS(2059), [aux_sym_save_statement_token1] = ACTIONS(2059), @@ -359200,7 +343498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -359219,11 +343517,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(2059), [aux_sym__forall_control_expression_token1] = ACTIONS(2059), [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token2] = ACTIONS(2059), [aux_sym_select_case_statement_token3] = ACTIONS(2059), [aux_sym_select_type_statement_token1] = ACTIONS(2059), [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_end_select_statement_token1] = ACTIONS(2059), [aux_sym_block_construct_token1] = ACTIONS(2059), [aux_sym_associate_statement_token1] = ACTIONS(2059), [aux_sym_format_statement_token1] = ACTIONS(2059), @@ -359237,12 +343533,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(2059), [aux_sym_allocate_statement_token1] = ACTIONS(2059), [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), + [aux_sym_logical_expression_token5] = ACTIONS(5698), [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), [aux_sym_null_literal_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token2] = ACTIONS(2059), @@ -359254,1094 +343550,1205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2156] = { - [aux_sym_preproc_include_token1] = ACTIONS(6358), - [aux_sym_preproc_def_token1] = ACTIONS(6358), - [aux_sym_preproc_if_token1] = ACTIONS(6358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6358), - [sym_preproc_directive] = ACTIONS(6358), - [anon_sym_LPAREN2] = ACTIONS(6358), - [anon_sym_PLUS] = ACTIONS(6360), - [anon_sym_DASH] = ACTIONS(6360), + [1998] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6358), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6358), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6358), - [aux_sym_procedure_attributes_token3] = ACTIONS(6358), - [aux_sym_end_function_statement_token1] = ACTIONS(6358), - [aux_sym_contains_statement_token1] = ACTIONS(6358), - [aux_sym_use_statement_token2] = ACTIONS(6358), - [aux_sym_implicit_statement_token4] = ACTIONS(6358), - [aux_sym_save_statement_token1] = ACTIONS(6358), - [aux_sym_private_statement_token1] = ACTIONS(6358), - [aux_sym_public_statement_token1] = ACTIONS(6358), - [aux_sym_derived_type_definition_token1] = ACTIONS(6358), - [aux_sym_procedure_attribute_token6] = ACTIONS(6358), - [aux_sym_variable_attributes_token2] = ACTIONS(6358), - [aux_sym_variable_attributes_token3] = ACTIONS(6358), - [aux_sym_variable_attributes_token5] = ACTIONS(6358), - [aux_sym__intrinsic_type_token1] = ACTIONS(6358), - [aux_sym__intrinsic_type_token3] = ACTIONS(6358), - [aux_sym__intrinsic_type_token4] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6358), - [aux_sym_type_qualifier_token1] = ACTIONS(6358), - [aux_sym_type_qualifier_token2] = ACTIONS(6358), - [anon_sym_SEMI] = ACTIONS(6360), - [aux_sym_stop_statement_token1] = ACTIONS(6358), - [aux_sym_stop_statement_token2] = ACTIONS(6358), - [aux_sym_subroutine_call_token1] = ACTIONS(6358), - [aux_sym_keyword_statement_token1] = ACTIONS(6358), - [aux_sym_keyword_statement_token2] = ACTIONS(6358), - [aux_sym_keyword_statement_token3] = ACTIONS(6358), - [aux_sym_keyword_statement_token4] = ACTIONS(6358), - [aux_sym_keyword_statement_token6] = ACTIONS(6358), - [aux_sym_keyword_statement_token7] = ACTIONS(6358), - [aux_sym_include_statement_token1] = ACTIONS(6358), - [aux_sym_data_statement_token1] = ACTIONS(6358), - [aux_sym_do_loop_statement_token1] = ACTIONS(6358), - [aux_sym__inline_if_statement_token1] = ACTIONS(6358), - [aux_sym_end_if_statement_token1] = ACTIONS(6358), - [aux_sym_elseif_clause_token2] = ACTIONS(6358), - [aux_sym__inline_where_statement_token1] = ACTIONS(6358), - [aux_sym__forall_control_expression_token1] = ACTIONS(6358), - [aux_sym_select_case_statement_token1] = ACTIONS(6358), - [aux_sym_select_case_statement_token3] = ACTIONS(6358), - [aux_sym_select_type_statement_token1] = ACTIONS(6358), - [aux_sym_select_rank_statement_token2] = ACTIONS(6358), - [aux_sym_block_construct_token1] = ACTIONS(6358), - [aux_sym_associate_statement_token1] = ACTIONS(6358), - [aux_sym_format_statement_token1] = ACTIONS(6358), - [aux_sym_print_statement_token1] = ACTIONS(6358), - [aux_sym_open_statement_token1] = ACTIONS(6358), - [aux_sym_close_statement_token1] = ACTIONS(6358), - [aux_sym_inquire_statement_token1] = ACTIONS(6358), - [aux_sym_file_position_statement_token1] = ACTIONS(6358), - [aux_sym_file_position_statement_token2] = ACTIONS(6358), - [aux_sym_file_position_statement_token3] = ACTIONS(6358), - [aux_sym_file_position_statement_token4] = ACTIONS(6358), - [aux_sym_allocate_statement_token1] = ACTIONS(6358), - [aux_sym_entry_statement_token1] = ACTIONS(6358), - [aux_sym_logical_expression_token5] = ACTIONS(6360), - [anon_sym_DOT] = ACTIONS(6358), - [anon_sym_LPAREN_SLASH] = ACTIONS(6360), - [anon_sym_LBRACK] = ACTIONS(6360), - [aux_sym_boolean_literal_token1] = ACTIONS(6360), - [aux_sym_boolean_literal_token2] = ACTIONS(6360), - [aux_sym_null_literal_token1] = ACTIONS(6358), - [aux_sym_coarray_statement_token1] = ACTIONS(6358), - [aux_sym_coarray_statement_token2] = ACTIONS(6358), - [aux_sym_coarray_statement_token6] = ACTIONS(6358), - [aux_sym_coarray_statement_token8] = ACTIONS(6358), - [aux_sym_coarray_statement_token11] = ACTIONS(6358), - [aux_sym_coarray_statement_token12] = ACTIONS(6358), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6358), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6358), - [aux_sym_identifier_token1] = ACTIONS(6358), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token2] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_contains_statement_token1] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6360), - [sym__float_literal] = ACTIONS(6360), - [sym__boz_literal] = ACTIONS(6360), - [sym__string_literal] = ACTIONS(6360), - [sym__string_literal_kind] = ACTIONS(6360), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2157] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token2] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_end_select_statement_token1] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [1999] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token2] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_end_program_statement_token2] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_contains_statement_token1] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), }, - [2158] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6362), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_end_forall_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), + [2000] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6114), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_contains_statement_token1] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), }, - [2159] = { - [aux_sym_preproc_include_token1] = ACTIONS(6364), - [aux_sym_preproc_def_token1] = ACTIONS(6364), - [aux_sym_preproc_if_token1] = ACTIONS(6364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6364), - [sym_preproc_directive] = ACTIONS(6364), - [anon_sym_LPAREN2] = ACTIONS(6364), - [anon_sym_PLUS] = ACTIONS(6366), - [anon_sym_DASH] = ACTIONS(6366), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6364), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6364), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6364), - [aux_sym_procedure_attributes_token3] = ACTIONS(6364), - [aux_sym_end_function_statement_token1] = ACTIONS(6364), - [aux_sym_contains_statement_token1] = ACTIONS(6364), - [aux_sym_use_statement_token2] = ACTIONS(6364), - [aux_sym_implicit_statement_token4] = ACTIONS(6364), - [aux_sym_save_statement_token1] = ACTIONS(6364), - [aux_sym_private_statement_token1] = ACTIONS(6364), - [aux_sym_public_statement_token1] = ACTIONS(6364), - [aux_sym_derived_type_definition_token1] = ACTIONS(6364), - [aux_sym_procedure_attribute_token6] = ACTIONS(6364), - [aux_sym_variable_attributes_token2] = ACTIONS(6364), - [aux_sym_variable_attributes_token3] = ACTIONS(6364), - [aux_sym_variable_attributes_token5] = ACTIONS(6364), - [aux_sym__intrinsic_type_token1] = ACTIONS(6364), - [aux_sym__intrinsic_type_token3] = ACTIONS(6364), - [aux_sym__intrinsic_type_token4] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6364), - [aux_sym_type_qualifier_token1] = ACTIONS(6364), - [aux_sym_type_qualifier_token2] = ACTIONS(6364), - [anon_sym_SEMI] = ACTIONS(6366), - [aux_sym_stop_statement_token1] = ACTIONS(6364), - [aux_sym_stop_statement_token2] = ACTIONS(6364), - [aux_sym_subroutine_call_token1] = ACTIONS(6364), - [aux_sym_keyword_statement_token1] = ACTIONS(6364), - [aux_sym_keyword_statement_token2] = ACTIONS(6364), - [aux_sym_keyword_statement_token3] = ACTIONS(6364), - [aux_sym_keyword_statement_token4] = ACTIONS(6364), - [aux_sym_keyword_statement_token6] = ACTIONS(6364), - [aux_sym_keyword_statement_token7] = ACTIONS(6364), - [aux_sym_include_statement_token1] = ACTIONS(6364), - [aux_sym_data_statement_token1] = ACTIONS(6364), - [aux_sym_do_loop_statement_token1] = ACTIONS(6364), - [aux_sym__inline_if_statement_token1] = ACTIONS(6364), - [aux_sym_end_if_statement_token1] = ACTIONS(6364), - [aux_sym_elseif_clause_token2] = ACTIONS(6364), - [aux_sym__inline_where_statement_token1] = ACTIONS(6364), - [aux_sym__forall_control_expression_token1] = ACTIONS(6364), - [aux_sym_select_case_statement_token1] = ACTIONS(6364), - [aux_sym_select_case_statement_token3] = ACTIONS(6364), - [aux_sym_select_type_statement_token1] = ACTIONS(6364), - [aux_sym_select_rank_statement_token2] = ACTIONS(6364), - [aux_sym_block_construct_token1] = ACTIONS(6364), - [aux_sym_associate_statement_token1] = ACTIONS(6364), - [aux_sym_format_statement_token1] = ACTIONS(6364), - [aux_sym_print_statement_token1] = ACTIONS(6364), - [aux_sym_open_statement_token1] = ACTIONS(6364), - [aux_sym_close_statement_token1] = ACTIONS(6364), - [aux_sym_inquire_statement_token1] = ACTIONS(6364), - [aux_sym_file_position_statement_token1] = ACTIONS(6364), - [aux_sym_file_position_statement_token2] = ACTIONS(6364), - [aux_sym_file_position_statement_token3] = ACTIONS(6364), - [aux_sym_file_position_statement_token4] = ACTIONS(6364), - [aux_sym_allocate_statement_token1] = ACTIONS(6364), - [aux_sym_entry_statement_token1] = ACTIONS(6364), - [aux_sym_logical_expression_token5] = ACTIONS(6366), - [anon_sym_DOT] = ACTIONS(6364), - [anon_sym_LPAREN_SLASH] = ACTIONS(6366), - [anon_sym_LBRACK] = ACTIONS(6366), - [aux_sym_boolean_literal_token1] = ACTIONS(6366), - [aux_sym_boolean_literal_token2] = ACTIONS(6366), - [aux_sym_null_literal_token1] = ACTIONS(6364), - [aux_sym_coarray_statement_token1] = ACTIONS(6364), - [aux_sym_coarray_statement_token2] = ACTIONS(6364), - [aux_sym_coarray_statement_token6] = ACTIONS(6364), - [aux_sym_coarray_statement_token8] = ACTIONS(6364), - [aux_sym_coarray_statement_token11] = ACTIONS(6364), - [aux_sym_coarray_statement_token12] = ACTIONS(6364), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6364), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6364), - [aux_sym_identifier_token1] = ACTIONS(6364), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6366), - [sym__float_literal] = ACTIONS(6366), - [sym__boz_literal] = ACTIONS(6366), - [sym__string_literal] = ACTIONS(6366), - [sym__string_literal_kind] = ACTIONS(6366), + [2001] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6116), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_contains_statement_token1] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), }, - [2160] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2002] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token2] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_end_select_statement_token1] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_end_program_statement_token2] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2161] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6368), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [2003] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6118), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_end_program_statement_token2] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_contains_statement_token1] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [2162] = { - [aux_sym_preproc_include_token1] = ACTIONS(6060), - [aux_sym_preproc_def_token1] = ACTIONS(6060), - [aux_sym_preproc_if_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6060), - [sym_preproc_directive] = ACTIONS(6060), - [anon_sym_LPAREN2] = ACTIONS(6060), - [anon_sym_PLUS] = ACTIONS(6064), - [anon_sym_DASH] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6060), - [aux_sym_procedure_attributes_token3] = ACTIONS(6060), - [aux_sym_end_function_statement_token1] = ACTIONS(6060), - [aux_sym_contains_statement_token1] = ACTIONS(6060), - [aux_sym_use_statement_token2] = ACTIONS(6060), - [aux_sym_implicit_statement_token4] = ACTIONS(6060), - [aux_sym_save_statement_token1] = ACTIONS(6060), - [aux_sym_private_statement_token1] = ACTIONS(6060), - [aux_sym_public_statement_token1] = ACTIONS(6060), - [aux_sym_derived_type_definition_token1] = ACTIONS(6060), - [aux_sym_procedure_attribute_token6] = ACTIONS(6060), - [aux_sym_variable_attributes_token2] = ACTIONS(6060), - [aux_sym_variable_attributes_token3] = ACTIONS(6060), - [aux_sym_variable_attributes_token5] = ACTIONS(6060), - [aux_sym__intrinsic_type_token1] = ACTIONS(6060), - [aux_sym__intrinsic_type_token3] = ACTIONS(6060), - [aux_sym__intrinsic_type_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6060), - [aux_sym_type_qualifier_token1] = ACTIONS(6060), - [aux_sym_type_qualifier_token2] = ACTIONS(6060), - [anon_sym_SEMI] = ACTIONS(6064), - [aux_sym_stop_statement_token1] = ACTIONS(6060), - [aux_sym_stop_statement_token2] = ACTIONS(6060), - [aux_sym_subroutine_call_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token2] = ACTIONS(6060), - [aux_sym_keyword_statement_token3] = ACTIONS(6060), - [aux_sym_keyword_statement_token4] = ACTIONS(6060), - [aux_sym_keyword_statement_token6] = ACTIONS(6060), - [aux_sym_keyword_statement_token7] = ACTIONS(6060), - [aux_sym_include_statement_token1] = ACTIONS(6060), - [aux_sym_data_statement_token1] = ACTIONS(6060), - [aux_sym_do_loop_statement_token1] = ACTIONS(6060), - [aux_sym__inline_if_statement_token1] = ACTIONS(6060), - [aux_sym_end_if_statement_token1] = ACTIONS(6060), - [aux_sym_elseif_clause_token2] = ACTIONS(6060), - [aux_sym__inline_where_statement_token1] = ACTIONS(6060), - [aux_sym__forall_control_expression_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token3] = ACTIONS(6060), - [aux_sym_select_type_statement_token1] = ACTIONS(6060), - [aux_sym_select_rank_statement_token2] = ACTIONS(6060), - [aux_sym_block_construct_token1] = ACTIONS(6060), - [aux_sym_associate_statement_token1] = ACTIONS(6060), - [aux_sym_format_statement_token1] = ACTIONS(6060), - [aux_sym_print_statement_token1] = ACTIONS(6060), - [aux_sym_open_statement_token1] = ACTIONS(6060), - [aux_sym_close_statement_token1] = ACTIONS(6060), - [aux_sym_inquire_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token2] = ACTIONS(6060), - [aux_sym_file_position_statement_token3] = ACTIONS(6060), - [aux_sym_file_position_statement_token4] = ACTIONS(6060), - [aux_sym_allocate_statement_token1] = ACTIONS(6060), - [aux_sym_entry_statement_token1] = ACTIONS(6060), - [aux_sym_logical_expression_token5] = ACTIONS(6064), - [anon_sym_DOT] = ACTIONS(6060), - [anon_sym_LPAREN_SLASH] = ACTIONS(6064), - [anon_sym_LBRACK] = ACTIONS(6064), - [aux_sym_boolean_literal_token1] = ACTIONS(6064), - [aux_sym_boolean_literal_token2] = ACTIONS(6064), - [aux_sym_null_literal_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token2] = ACTIONS(6060), - [aux_sym_coarray_statement_token6] = ACTIONS(6060), - [aux_sym_coarray_statement_token8] = ACTIONS(6060), - [aux_sym_coarray_statement_token11] = ACTIONS(6060), - [aux_sym_coarray_statement_token12] = ACTIONS(6060), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6060), - [aux_sym_identifier_token1] = ACTIONS(6060), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6064), - [sym__float_literal] = ACTIONS(6064), - [sym__boz_literal] = ACTIONS(6064), - [sym__string_literal] = ACTIONS(6064), - [sym__string_literal_kind] = ACTIONS(6064), + [2004] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6120), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_end_program_statement_token2] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_contains_statement_token1] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), }, - [2163] = { - [aux_sym_preproc_include_token1] = ACTIONS(6066), - [aux_sym_preproc_def_token1] = ACTIONS(6066), - [aux_sym_preproc_if_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6066), - [sym_preproc_directive] = ACTIONS(6066), - [anon_sym_LPAREN2] = ACTIONS(6066), - [anon_sym_PLUS] = ACTIONS(6070), - [anon_sym_DASH] = ACTIONS(6070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6066), - [aux_sym_procedure_attributes_token3] = ACTIONS(6066), - [aux_sym_end_function_statement_token1] = ACTIONS(6066), - [aux_sym_contains_statement_token1] = ACTIONS(6066), - [aux_sym_use_statement_token2] = ACTIONS(6066), - [aux_sym_implicit_statement_token4] = ACTIONS(6066), - [aux_sym_save_statement_token1] = ACTIONS(6066), - [aux_sym_private_statement_token1] = ACTIONS(6066), - [aux_sym_public_statement_token1] = ACTIONS(6066), - [aux_sym_derived_type_definition_token1] = ACTIONS(6066), - [aux_sym_procedure_attribute_token6] = ACTIONS(6066), - [aux_sym_variable_attributes_token2] = ACTIONS(6066), - [aux_sym_variable_attributes_token3] = ACTIONS(6066), - [aux_sym_variable_attributes_token5] = ACTIONS(6066), - [aux_sym__intrinsic_type_token1] = ACTIONS(6066), - [aux_sym__intrinsic_type_token3] = ACTIONS(6066), - [aux_sym__intrinsic_type_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6066), - [aux_sym_type_qualifier_token1] = ACTIONS(6066), - [aux_sym_type_qualifier_token2] = ACTIONS(6066), - [anon_sym_SEMI] = ACTIONS(6070), - [aux_sym_stop_statement_token1] = ACTIONS(6066), - [aux_sym_stop_statement_token2] = ACTIONS(6066), - [aux_sym_subroutine_call_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token2] = ACTIONS(6066), - [aux_sym_keyword_statement_token3] = ACTIONS(6066), - [aux_sym_keyword_statement_token4] = ACTIONS(6066), - [aux_sym_keyword_statement_token6] = ACTIONS(6066), - [aux_sym_keyword_statement_token7] = ACTIONS(6066), - [aux_sym_include_statement_token1] = ACTIONS(6066), - [aux_sym_data_statement_token1] = ACTIONS(6066), - [aux_sym_do_loop_statement_token1] = ACTIONS(6066), - [aux_sym__inline_if_statement_token1] = ACTIONS(6066), - [aux_sym_end_if_statement_token1] = ACTIONS(6066), - [aux_sym_elseif_clause_token2] = ACTIONS(6066), - [aux_sym__inline_where_statement_token1] = ACTIONS(6066), - [aux_sym__forall_control_expression_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token3] = ACTIONS(6066), - [aux_sym_select_type_statement_token1] = ACTIONS(6066), - [aux_sym_select_rank_statement_token2] = ACTIONS(6066), - [aux_sym_block_construct_token1] = ACTIONS(6066), - [aux_sym_associate_statement_token1] = ACTIONS(6066), - [aux_sym_format_statement_token1] = ACTIONS(6066), - [aux_sym_print_statement_token1] = ACTIONS(6066), - [aux_sym_open_statement_token1] = ACTIONS(6066), - [aux_sym_close_statement_token1] = ACTIONS(6066), - [aux_sym_inquire_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token2] = ACTIONS(6066), - [aux_sym_file_position_statement_token3] = ACTIONS(6066), - [aux_sym_file_position_statement_token4] = ACTIONS(6066), - [aux_sym_allocate_statement_token1] = ACTIONS(6066), - [aux_sym_entry_statement_token1] = ACTIONS(6066), - [aux_sym_logical_expression_token5] = ACTIONS(6070), - [anon_sym_DOT] = ACTIONS(6066), - [anon_sym_LPAREN_SLASH] = ACTIONS(6070), - [anon_sym_LBRACK] = ACTIONS(6070), - [aux_sym_boolean_literal_token1] = ACTIONS(6070), - [aux_sym_boolean_literal_token2] = ACTIONS(6070), - [aux_sym_null_literal_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token2] = ACTIONS(6066), - [aux_sym_coarray_statement_token6] = ACTIONS(6066), - [aux_sym_coarray_statement_token8] = ACTIONS(6066), - [aux_sym_coarray_statement_token11] = ACTIONS(6066), - [aux_sym_coarray_statement_token12] = ACTIONS(6066), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6066), - [aux_sym_identifier_token1] = ACTIONS(6066), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6070), - [sym__float_literal] = ACTIONS(6070), - [sym__boz_literal] = ACTIONS(6070), - [sym__string_literal] = ACTIONS(6070), - [sym__string_literal_kind] = ACTIONS(6070), + [2005] = { + [aux_sym_preproc_include_token1] = ACTIONS(5938), + [aux_sym_preproc_def_token1] = ACTIONS(5938), + [aux_sym_preproc_if_token1] = ACTIONS(5938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), + [sym_preproc_directive] = ACTIONS(5938), + [anon_sym_LPAREN2] = ACTIONS(5938), + [sym_preproc_comment] = ACTIONS(6122), + [anon_sym_PLUS] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5942), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5938), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5938), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5938), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5938), + [aux_sym_procedure_attributes_token3] = ACTIONS(5938), + [aux_sym_contains_statement_token1] = ACTIONS(5938), + [aux_sym_use_statement_token2] = ACTIONS(5938), + [aux_sym_implicit_statement_token4] = ACTIONS(5938), + [aux_sym_save_statement_token1] = ACTIONS(5938), + [aux_sym_private_statement_token1] = ACTIONS(5938), + [aux_sym_public_statement_token1] = ACTIONS(5938), + [aux_sym_derived_type_definition_token1] = ACTIONS(5938), + [aux_sym_procedure_attribute_token6] = ACTIONS(5938), + [aux_sym_variable_attributes_token2] = ACTIONS(5938), + [aux_sym_variable_attributes_token3] = ACTIONS(5938), + [aux_sym_variable_attributes_token5] = ACTIONS(5938), + [aux_sym__intrinsic_type_token1] = ACTIONS(5938), + [aux_sym__intrinsic_type_token3] = ACTIONS(5938), + [aux_sym__intrinsic_type_token4] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5938), + [aux_sym_type_qualifier_token1] = ACTIONS(5938), + [aux_sym_type_qualifier_token2] = ACTIONS(5938), + [anon_sym_SEMI] = ACTIONS(5942), + [aux_sym_stop_statement_token1] = ACTIONS(5938), + [aux_sym_stop_statement_token2] = ACTIONS(5938), + [aux_sym_subroutine_call_token1] = ACTIONS(5938), + [aux_sym_keyword_statement_token1] = ACTIONS(5938), + [aux_sym_keyword_statement_token2] = ACTIONS(5938), + [aux_sym_keyword_statement_token3] = ACTIONS(5938), + [aux_sym_keyword_statement_token4] = ACTIONS(5938), + [aux_sym_keyword_statement_token6] = ACTIONS(5938), + [aux_sym_keyword_statement_token7] = ACTIONS(5938), + [aux_sym_include_statement_token1] = ACTIONS(5938), + [aux_sym_data_statement_token1] = ACTIONS(5938), + [aux_sym_do_loop_statement_token1] = ACTIONS(5938), + [aux_sym__inline_if_statement_token1] = ACTIONS(5938), + [aux_sym_end_if_statement_token1] = ACTIONS(5938), + [aux_sym_elseif_clause_token2] = ACTIONS(5938), + [aux_sym__inline_where_statement_token1] = ACTIONS(5938), + [aux_sym__forall_control_expression_token1] = ACTIONS(5938), + [aux_sym_select_case_statement_token1] = ACTIONS(5938), + [aux_sym_select_case_statement_token3] = ACTIONS(5938), + [aux_sym_select_type_statement_token1] = ACTIONS(5938), + [aux_sym_select_rank_statement_token2] = ACTIONS(5938), + [aux_sym_block_construct_token1] = ACTIONS(5938), + [aux_sym_associate_statement_token1] = ACTIONS(5938), + [aux_sym_format_statement_token1] = ACTIONS(5938), + [aux_sym_print_statement_token1] = ACTIONS(5938), + [aux_sym_open_statement_token1] = ACTIONS(5938), + [aux_sym_close_statement_token1] = ACTIONS(5938), + [aux_sym_inquire_statement_token1] = ACTIONS(5938), + [aux_sym_file_position_statement_token1] = ACTIONS(5938), + [aux_sym_file_position_statement_token2] = ACTIONS(5938), + [aux_sym_file_position_statement_token3] = ACTIONS(5938), + [aux_sym_file_position_statement_token4] = ACTIONS(5938), + [aux_sym_allocate_statement_token1] = ACTIONS(5938), + [aux_sym_entry_statement_token1] = ACTIONS(5938), + [aux_sym_logical_expression_token5] = ACTIONS(5942), + [anon_sym_DOT] = ACTIONS(5938), + [anon_sym_LPAREN_SLASH] = ACTIONS(5942), + [anon_sym_LBRACK] = ACTIONS(5942), + [aux_sym_boolean_literal_token1] = ACTIONS(5942), + [aux_sym_boolean_literal_token2] = ACTIONS(5942), + [aux_sym_null_literal_token1] = ACTIONS(5938), + [aux_sym_coarray_statement_token1] = ACTIONS(5938), + [aux_sym_coarray_statement_token2] = ACTIONS(5938), + [aux_sym_coarray_statement_token6] = ACTIONS(5938), + [aux_sym_coarray_statement_token8] = ACTIONS(5938), + [aux_sym_coarray_statement_token11] = ACTIONS(5938), + [aux_sym_coarray_statement_token12] = ACTIONS(5938), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5938), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5938), + [aux_sym_identifier_token1] = ACTIONS(5938), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5942), + [sym__float_literal] = ACTIONS(5942), + [sym__boz_literal] = ACTIONS(5942), + [sym__string_literal] = ACTIONS(5942), + [sym__string_literal_kind] = ACTIONS(5942), }, - [2164] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6370), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_end_forall_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [2006] = { + [aux_sym_preproc_include_token1] = ACTIONS(5948), + [aux_sym_preproc_def_token1] = ACTIONS(5948), + [aux_sym_preproc_if_token1] = ACTIONS(5948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5948), + [sym_preproc_directive] = ACTIONS(5948), + [anon_sym_LPAREN2] = ACTIONS(5948), + [sym_preproc_comment] = ACTIONS(6124), + [anon_sym_PLUS] = ACTIONS(5952), + [anon_sym_DASH] = ACTIONS(5952), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5948), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5948), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5948), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5948), + [aux_sym_procedure_attributes_token3] = ACTIONS(5948), + [aux_sym_contains_statement_token1] = ACTIONS(5948), + [aux_sym_use_statement_token2] = ACTIONS(5948), + [aux_sym_implicit_statement_token4] = ACTIONS(5948), + [aux_sym_save_statement_token1] = ACTIONS(5948), + [aux_sym_private_statement_token1] = ACTIONS(5948), + [aux_sym_public_statement_token1] = ACTIONS(5948), + [aux_sym_derived_type_definition_token1] = ACTIONS(5948), + [aux_sym_procedure_attribute_token6] = ACTIONS(5948), + [aux_sym_variable_attributes_token2] = ACTIONS(5948), + [aux_sym_variable_attributes_token3] = ACTIONS(5948), + [aux_sym_variable_attributes_token5] = ACTIONS(5948), + [aux_sym__intrinsic_type_token1] = ACTIONS(5948), + [aux_sym__intrinsic_type_token3] = ACTIONS(5948), + [aux_sym__intrinsic_type_token4] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5948), + [aux_sym_type_qualifier_token1] = ACTIONS(5948), + [aux_sym_type_qualifier_token2] = ACTIONS(5948), + [anon_sym_SEMI] = ACTIONS(5952), + [aux_sym_stop_statement_token1] = ACTIONS(5948), + [aux_sym_stop_statement_token2] = ACTIONS(5948), + [aux_sym_subroutine_call_token1] = ACTIONS(5948), + [aux_sym_keyword_statement_token1] = ACTIONS(5948), + [aux_sym_keyword_statement_token2] = ACTIONS(5948), + [aux_sym_keyword_statement_token3] = ACTIONS(5948), + [aux_sym_keyword_statement_token4] = ACTIONS(5948), + [aux_sym_keyword_statement_token6] = ACTIONS(5948), + [aux_sym_keyword_statement_token7] = ACTIONS(5948), + [aux_sym_include_statement_token1] = ACTIONS(5948), + [aux_sym_data_statement_token1] = ACTIONS(5948), + [aux_sym_do_loop_statement_token1] = ACTIONS(5948), + [aux_sym__inline_if_statement_token1] = ACTIONS(5948), + [aux_sym_end_if_statement_token1] = ACTIONS(5948), + [aux_sym_elseif_clause_token2] = ACTIONS(5948), + [aux_sym__inline_where_statement_token1] = ACTIONS(5948), + [aux_sym__forall_control_expression_token1] = ACTIONS(5948), + [aux_sym_select_case_statement_token1] = ACTIONS(5948), + [aux_sym_select_case_statement_token3] = ACTIONS(5948), + [aux_sym_select_type_statement_token1] = ACTIONS(5948), + [aux_sym_select_rank_statement_token2] = ACTIONS(5948), + [aux_sym_block_construct_token1] = ACTIONS(5948), + [aux_sym_associate_statement_token1] = ACTIONS(5948), + [aux_sym_format_statement_token1] = ACTIONS(5948), + [aux_sym_print_statement_token1] = ACTIONS(5948), + [aux_sym_open_statement_token1] = ACTIONS(5948), + [aux_sym_close_statement_token1] = ACTIONS(5948), + [aux_sym_inquire_statement_token1] = ACTIONS(5948), + [aux_sym_file_position_statement_token1] = ACTIONS(5948), + [aux_sym_file_position_statement_token2] = ACTIONS(5948), + [aux_sym_file_position_statement_token3] = ACTIONS(5948), + [aux_sym_file_position_statement_token4] = ACTIONS(5948), + [aux_sym_allocate_statement_token1] = ACTIONS(5948), + [aux_sym_entry_statement_token1] = ACTIONS(5948), + [aux_sym_logical_expression_token5] = ACTIONS(5952), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_LPAREN_SLASH] = ACTIONS(5952), + [anon_sym_LBRACK] = ACTIONS(5952), + [aux_sym_boolean_literal_token1] = ACTIONS(5952), + [aux_sym_boolean_literal_token2] = ACTIONS(5952), + [aux_sym_null_literal_token1] = ACTIONS(5948), + [aux_sym_coarray_statement_token1] = ACTIONS(5948), + [aux_sym_coarray_statement_token2] = ACTIONS(5948), + [aux_sym_coarray_statement_token6] = ACTIONS(5948), + [aux_sym_coarray_statement_token8] = ACTIONS(5948), + [aux_sym_coarray_statement_token11] = ACTIONS(5948), + [aux_sym_coarray_statement_token12] = ACTIONS(5948), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5948), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5948), + [aux_sym_identifier_token1] = ACTIONS(5948), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5952), + [sym__float_literal] = ACTIONS(5952), + [sym__boz_literal] = ACTIONS(5952), + [sym__string_literal] = ACTIONS(5952), + [sym__string_literal_kind] = ACTIONS(5952), }, - [2165] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token2] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_end_select_statement_token1] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2007] = { + [aux_sym_preproc_include_token1] = ACTIONS(5954), + [aux_sym_preproc_def_token1] = ACTIONS(5954), + [aux_sym_preproc_if_token1] = ACTIONS(5954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5954), + [sym_preproc_directive] = ACTIONS(5954), + [anon_sym_LPAREN2] = ACTIONS(5954), + [sym_preproc_comment] = ACTIONS(6126), + [anon_sym_PLUS] = ACTIONS(5958), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5954), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5954), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5954), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5954), + [aux_sym_procedure_attributes_token3] = ACTIONS(5954), + [aux_sym_contains_statement_token1] = ACTIONS(5954), + [aux_sym_use_statement_token2] = ACTIONS(5954), + [aux_sym_implicit_statement_token4] = ACTIONS(5954), + [aux_sym_save_statement_token1] = ACTIONS(5954), + [aux_sym_private_statement_token1] = ACTIONS(5954), + [aux_sym_public_statement_token1] = ACTIONS(5954), + [aux_sym_derived_type_definition_token1] = ACTIONS(5954), + [aux_sym_procedure_attribute_token6] = ACTIONS(5954), + [aux_sym_variable_attributes_token2] = ACTIONS(5954), + [aux_sym_variable_attributes_token3] = ACTIONS(5954), + [aux_sym_variable_attributes_token5] = ACTIONS(5954), + [aux_sym__intrinsic_type_token1] = ACTIONS(5954), + [aux_sym__intrinsic_type_token3] = ACTIONS(5954), + [aux_sym__intrinsic_type_token4] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5954), + [aux_sym_type_qualifier_token1] = ACTIONS(5954), + [aux_sym_type_qualifier_token2] = ACTIONS(5954), + [anon_sym_SEMI] = ACTIONS(5958), + [aux_sym_stop_statement_token1] = ACTIONS(5954), + [aux_sym_stop_statement_token2] = ACTIONS(5954), + [aux_sym_subroutine_call_token1] = ACTIONS(5954), + [aux_sym_keyword_statement_token1] = ACTIONS(5954), + [aux_sym_keyword_statement_token2] = ACTIONS(5954), + [aux_sym_keyword_statement_token3] = ACTIONS(5954), + [aux_sym_keyword_statement_token4] = ACTIONS(5954), + [aux_sym_keyword_statement_token6] = ACTIONS(5954), + [aux_sym_keyword_statement_token7] = ACTIONS(5954), + [aux_sym_include_statement_token1] = ACTIONS(5954), + [aux_sym_data_statement_token1] = ACTIONS(5954), + [aux_sym_do_loop_statement_token1] = ACTIONS(5954), + [aux_sym__inline_if_statement_token1] = ACTIONS(5954), + [aux_sym_end_if_statement_token1] = ACTIONS(5954), + [aux_sym_elseif_clause_token2] = ACTIONS(5954), + [aux_sym__inline_where_statement_token1] = ACTIONS(5954), + [aux_sym__forall_control_expression_token1] = ACTIONS(5954), + [aux_sym_select_case_statement_token1] = ACTIONS(5954), + [aux_sym_select_case_statement_token3] = ACTIONS(5954), + [aux_sym_select_type_statement_token1] = ACTIONS(5954), + [aux_sym_select_rank_statement_token2] = ACTIONS(5954), + [aux_sym_block_construct_token1] = ACTIONS(5954), + [aux_sym_associate_statement_token1] = ACTIONS(5954), + [aux_sym_format_statement_token1] = ACTIONS(5954), + [aux_sym_print_statement_token1] = ACTIONS(5954), + [aux_sym_open_statement_token1] = ACTIONS(5954), + [aux_sym_close_statement_token1] = ACTIONS(5954), + [aux_sym_inquire_statement_token1] = ACTIONS(5954), + [aux_sym_file_position_statement_token1] = ACTIONS(5954), + [aux_sym_file_position_statement_token2] = ACTIONS(5954), + [aux_sym_file_position_statement_token3] = ACTIONS(5954), + [aux_sym_file_position_statement_token4] = ACTIONS(5954), + [aux_sym_allocate_statement_token1] = ACTIONS(5954), + [aux_sym_entry_statement_token1] = ACTIONS(5954), + [aux_sym_logical_expression_token5] = ACTIONS(5958), + [anon_sym_DOT] = ACTIONS(5954), + [anon_sym_LPAREN_SLASH] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5958), + [aux_sym_boolean_literal_token1] = ACTIONS(5958), + [aux_sym_boolean_literal_token2] = ACTIONS(5958), + [aux_sym_null_literal_token1] = ACTIONS(5954), + [aux_sym_coarray_statement_token1] = ACTIONS(5954), + [aux_sym_coarray_statement_token2] = ACTIONS(5954), + [aux_sym_coarray_statement_token6] = ACTIONS(5954), + [aux_sym_coarray_statement_token8] = ACTIONS(5954), + [aux_sym_coarray_statement_token11] = ACTIONS(5954), + [aux_sym_coarray_statement_token12] = ACTIONS(5954), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5954), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5954), + [aux_sym_identifier_token1] = ACTIONS(5954), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5958), + [sym__float_literal] = ACTIONS(5958), + [sym__boz_literal] = ACTIONS(5958), + [sym__string_literal] = ACTIONS(5958), + [sym__string_literal_kind] = ACTIONS(5958), }, - [2166] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6372), + [2008] = { + [aux_sym_preproc_include_token1] = ACTIONS(5960), + [aux_sym_preproc_def_token1] = ACTIONS(5960), + [aux_sym_preproc_if_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5960), + [sym_preproc_directive] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [sym_preproc_comment] = ACTIONS(6128), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5960), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5960), + [aux_sym_procedure_attributes_token3] = ACTIONS(5960), + [aux_sym_contains_statement_token1] = ACTIONS(5960), + [aux_sym_use_statement_token2] = ACTIONS(5960), + [aux_sym_implicit_statement_token4] = ACTIONS(5960), + [aux_sym_save_statement_token1] = ACTIONS(5960), + [aux_sym_private_statement_token1] = ACTIONS(5960), + [aux_sym_public_statement_token1] = ACTIONS(5960), + [aux_sym_derived_type_definition_token1] = ACTIONS(5960), + [aux_sym_procedure_attribute_token6] = ACTIONS(5960), + [aux_sym_variable_attributes_token2] = ACTIONS(5960), + [aux_sym_variable_attributes_token3] = ACTIONS(5960), + [aux_sym_variable_attributes_token5] = ACTIONS(5960), + [aux_sym__intrinsic_type_token1] = ACTIONS(5960), + [aux_sym__intrinsic_type_token3] = ACTIONS(5960), + [aux_sym__intrinsic_type_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5960), + [aux_sym_type_qualifier_token1] = ACTIONS(5960), + [aux_sym_type_qualifier_token2] = ACTIONS(5960), + [anon_sym_SEMI] = ACTIONS(5964), + [aux_sym_stop_statement_token1] = ACTIONS(5960), + [aux_sym_stop_statement_token2] = ACTIONS(5960), + [aux_sym_subroutine_call_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token2] = ACTIONS(5960), + [aux_sym_keyword_statement_token3] = ACTIONS(5960), + [aux_sym_keyword_statement_token4] = ACTIONS(5960), + [aux_sym_keyword_statement_token6] = ACTIONS(5960), + [aux_sym_keyword_statement_token7] = ACTIONS(5960), + [aux_sym_include_statement_token1] = ACTIONS(5960), + [aux_sym_data_statement_token1] = ACTIONS(5960), + [aux_sym_do_loop_statement_token1] = ACTIONS(5960), + [aux_sym__inline_if_statement_token1] = ACTIONS(5960), + [aux_sym_end_if_statement_token1] = ACTIONS(5960), + [aux_sym_elseif_clause_token2] = ACTIONS(5960), + [aux_sym__inline_where_statement_token1] = ACTIONS(5960), + [aux_sym__forall_control_expression_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token3] = ACTIONS(5960), + [aux_sym_select_type_statement_token1] = ACTIONS(5960), + [aux_sym_select_rank_statement_token2] = ACTIONS(5960), + [aux_sym_block_construct_token1] = ACTIONS(5960), + [aux_sym_associate_statement_token1] = ACTIONS(5960), + [aux_sym_format_statement_token1] = ACTIONS(5960), + [aux_sym_print_statement_token1] = ACTIONS(5960), + [aux_sym_open_statement_token1] = ACTIONS(5960), + [aux_sym_close_statement_token1] = ACTIONS(5960), + [aux_sym_inquire_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token2] = ACTIONS(5960), + [aux_sym_file_position_statement_token3] = ACTIONS(5960), + [aux_sym_file_position_statement_token4] = ACTIONS(5960), + [aux_sym_allocate_statement_token1] = ACTIONS(5960), + [aux_sym_entry_statement_token1] = ACTIONS(5960), + [aux_sym_logical_expression_token5] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5960), + [anon_sym_LPAREN_SLASH] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5964), + [aux_sym_boolean_literal_token1] = ACTIONS(5964), + [aux_sym_boolean_literal_token2] = ACTIONS(5964), + [aux_sym_null_literal_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token2] = ACTIONS(5960), + [aux_sym_coarray_statement_token6] = ACTIONS(5960), + [aux_sym_coarray_statement_token8] = ACTIONS(5960), + [aux_sym_coarray_statement_token11] = ACTIONS(5960), + [aux_sym_coarray_statement_token12] = ACTIONS(5960), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5960), + [aux_sym_identifier_token1] = ACTIONS(5960), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5964), + [sym__float_literal] = ACTIONS(5964), + [sym__boz_literal] = ACTIONS(5964), + [sym__string_literal] = ACTIONS(5964), + [sym__string_literal_kind] = ACTIONS(5964), + }, + [2009] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(6130), [anon_sym_PLUS] = ACTIONS(5582), [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token2] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_contains_statement_token1] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_end_forall_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4571), [anon_sym_LPAREN_SLASH] = ACTIONS(5582), [anon_sym_LBRACK] = ACTIONS(5582), [aux_sym_boolean_literal_token1] = ACTIONS(5582), [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5582), [sym__float_literal] = ACTIONS(5582), @@ -360349,898 +344756,2107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5582), [sym__string_literal_kind] = ACTIONS(5582), }, - [2167] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token2] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_end_select_statement_token1] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [2168] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6374), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [2169] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), + [2010] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6132), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_end_program_statement_token2] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token2] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_end_select_statement_token1] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [2011] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6134), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_end_program_statement_token2] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_contains_statement_token1] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2012] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6136), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_contains_statement_token1] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [2013] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym_end_where_statement_token1] = ACTIONS(4945), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2014] = { + [aux_sym_preproc_include_token1] = ACTIONS(5914), + [aux_sym_preproc_def_token1] = ACTIONS(5914), + [aux_sym_preproc_if_token1] = ACTIONS(5914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5914), + [sym_preproc_directive] = ACTIONS(5914), + [anon_sym_LPAREN2] = ACTIONS(5914), + [sym_preproc_comment] = ACTIONS(6138), + [anon_sym_PLUS] = ACTIONS(5918), + [anon_sym_DASH] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5914), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5914), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5914), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5914), + [aux_sym_procedure_attributes_token3] = ACTIONS(5914), + [aux_sym_contains_statement_token1] = ACTIONS(5914), + [aux_sym_use_statement_token2] = ACTIONS(5914), + [aux_sym_implicit_statement_token4] = ACTIONS(5914), + [aux_sym_save_statement_token1] = ACTIONS(5914), + [aux_sym_private_statement_token1] = ACTIONS(5914), + [aux_sym_public_statement_token1] = ACTIONS(5914), + [aux_sym_derived_type_definition_token1] = ACTIONS(5914), + [aux_sym_procedure_attribute_token6] = ACTIONS(5914), + [aux_sym_variable_attributes_token2] = ACTIONS(5914), + [aux_sym_variable_attributes_token3] = ACTIONS(5914), + [aux_sym_variable_attributes_token5] = ACTIONS(5914), + [aux_sym__intrinsic_type_token1] = ACTIONS(5914), + [aux_sym__intrinsic_type_token3] = ACTIONS(5914), + [aux_sym__intrinsic_type_token4] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5914), + [aux_sym_type_qualifier_token1] = ACTIONS(5914), + [aux_sym_type_qualifier_token2] = ACTIONS(5914), + [anon_sym_SEMI] = ACTIONS(5918), + [aux_sym_stop_statement_token1] = ACTIONS(5914), + [aux_sym_stop_statement_token2] = ACTIONS(5914), + [aux_sym_subroutine_call_token1] = ACTIONS(5914), + [aux_sym_keyword_statement_token1] = ACTIONS(5914), + [aux_sym_keyword_statement_token2] = ACTIONS(5914), + [aux_sym_keyword_statement_token3] = ACTIONS(5914), + [aux_sym_keyword_statement_token4] = ACTIONS(5914), + [aux_sym_keyword_statement_token6] = ACTIONS(5914), + [aux_sym_keyword_statement_token7] = ACTIONS(5914), + [aux_sym_include_statement_token1] = ACTIONS(5914), + [aux_sym_data_statement_token1] = ACTIONS(5914), + [aux_sym_do_loop_statement_token1] = ACTIONS(5914), + [aux_sym__inline_if_statement_token1] = ACTIONS(5914), + [aux_sym_end_if_statement_token1] = ACTIONS(5914), + [aux_sym_elseif_clause_token2] = ACTIONS(5914), + [aux_sym__inline_where_statement_token1] = ACTIONS(5914), + [aux_sym__forall_control_expression_token1] = ACTIONS(5914), + [aux_sym_select_case_statement_token1] = ACTIONS(5914), + [aux_sym_select_case_statement_token3] = ACTIONS(5914), + [aux_sym_select_type_statement_token1] = ACTIONS(5914), + [aux_sym_select_rank_statement_token2] = ACTIONS(5914), + [aux_sym_block_construct_token1] = ACTIONS(5914), + [aux_sym_associate_statement_token1] = ACTIONS(5914), + [aux_sym_format_statement_token1] = ACTIONS(5914), + [aux_sym_print_statement_token1] = ACTIONS(5914), + [aux_sym_open_statement_token1] = ACTIONS(5914), + [aux_sym_close_statement_token1] = ACTIONS(5914), + [aux_sym_inquire_statement_token1] = ACTIONS(5914), + [aux_sym_file_position_statement_token1] = ACTIONS(5914), + [aux_sym_file_position_statement_token2] = ACTIONS(5914), + [aux_sym_file_position_statement_token3] = ACTIONS(5914), + [aux_sym_file_position_statement_token4] = ACTIONS(5914), + [aux_sym_allocate_statement_token1] = ACTIONS(5914), + [aux_sym_entry_statement_token1] = ACTIONS(5914), + [aux_sym_logical_expression_token5] = ACTIONS(5918), + [anon_sym_DOT] = ACTIONS(5914), + [anon_sym_LPAREN_SLASH] = ACTIONS(5918), + [anon_sym_LBRACK] = ACTIONS(5918), + [aux_sym_boolean_literal_token1] = ACTIONS(5918), + [aux_sym_boolean_literal_token2] = ACTIONS(5918), + [aux_sym_null_literal_token1] = ACTIONS(5914), + [aux_sym_coarray_statement_token1] = ACTIONS(5914), + [aux_sym_coarray_statement_token2] = ACTIONS(5914), + [aux_sym_coarray_statement_token6] = ACTIONS(5914), + [aux_sym_coarray_statement_token8] = ACTIONS(5914), + [aux_sym_coarray_statement_token11] = ACTIONS(5914), + [aux_sym_coarray_statement_token12] = ACTIONS(5914), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5914), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5914), + [aux_sym_identifier_token1] = ACTIONS(5914), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5918), + [sym__float_literal] = ACTIONS(5918), + [sym__boz_literal] = ACTIONS(5918), + [sym__string_literal] = ACTIONS(5918), + [sym__string_literal_kind] = ACTIONS(5918), + }, + [2015] = { + [aux_sym_preproc_include_token1] = ACTIONS(5924), + [aux_sym_preproc_def_token1] = ACTIONS(5924), + [aux_sym_preproc_if_token1] = ACTIONS(5924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5924), + [sym_preproc_directive] = ACTIONS(5924), + [anon_sym_LPAREN2] = ACTIONS(5924), + [sym_preproc_comment] = ACTIONS(6140), + [anon_sym_PLUS] = ACTIONS(5928), + [anon_sym_DASH] = ACTIONS(5928), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5924), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5924), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5924), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5924), + [aux_sym_procedure_attributes_token3] = ACTIONS(5924), + [aux_sym_contains_statement_token1] = ACTIONS(5924), + [aux_sym_use_statement_token2] = ACTIONS(5924), + [aux_sym_implicit_statement_token4] = ACTIONS(5924), + [aux_sym_save_statement_token1] = ACTIONS(5924), + [aux_sym_private_statement_token1] = ACTIONS(5924), + [aux_sym_public_statement_token1] = ACTIONS(5924), + [aux_sym_derived_type_definition_token1] = ACTIONS(5924), + [aux_sym_procedure_attribute_token6] = ACTIONS(5924), + [aux_sym_variable_attributes_token2] = ACTIONS(5924), + [aux_sym_variable_attributes_token3] = ACTIONS(5924), + [aux_sym_variable_attributes_token5] = ACTIONS(5924), + [aux_sym__intrinsic_type_token1] = ACTIONS(5924), + [aux_sym__intrinsic_type_token3] = ACTIONS(5924), + [aux_sym__intrinsic_type_token4] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5924), + [aux_sym_type_qualifier_token1] = ACTIONS(5924), + [aux_sym_type_qualifier_token2] = ACTIONS(5924), + [anon_sym_SEMI] = ACTIONS(5928), + [aux_sym_stop_statement_token1] = ACTIONS(5924), + [aux_sym_stop_statement_token2] = ACTIONS(5924), + [aux_sym_subroutine_call_token1] = ACTIONS(5924), + [aux_sym_keyword_statement_token1] = ACTIONS(5924), + [aux_sym_keyword_statement_token2] = ACTIONS(5924), + [aux_sym_keyword_statement_token3] = ACTIONS(5924), + [aux_sym_keyword_statement_token4] = ACTIONS(5924), + [aux_sym_keyword_statement_token6] = ACTIONS(5924), + [aux_sym_keyword_statement_token7] = ACTIONS(5924), + [aux_sym_include_statement_token1] = ACTIONS(5924), + [aux_sym_data_statement_token1] = ACTIONS(5924), + [aux_sym_do_loop_statement_token1] = ACTIONS(5924), + [aux_sym__inline_if_statement_token1] = ACTIONS(5924), + [aux_sym_end_if_statement_token1] = ACTIONS(5924), + [aux_sym_elseif_clause_token2] = ACTIONS(5924), + [aux_sym__inline_where_statement_token1] = ACTIONS(5924), + [aux_sym__forall_control_expression_token1] = ACTIONS(5924), + [aux_sym_select_case_statement_token1] = ACTIONS(5924), + [aux_sym_select_case_statement_token3] = ACTIONS(5924), + [aux_sym_select_type_statement_token1] = ACTIONS(5924), + [aux_sym_select_rank_statement_token2] = ACTIONS(5924), + [aux_sym_block_construct_token1] = ACTIONS(5924), + [aux_sym_associate_statement_token1] = ACTIONS(5924), + [aux_sym_format_statement_token1] = ACTIONS(5924), + [aux_sym_print_statement_token1] = ACTIONS(5924), + [aux_sym_open_statement_token1] = ACTIONS(5924), + [aux_sym_close_statement_token1] = ACTIONS(5924), + [aux_sym_inquire_statement_token1] = ACTIONS(5924), + [aux_sym_file_position_statement_token1] = ACTIONS(5924), + [aux_sym_file_position_statement_token2] = ACTIONS(5924), + [aux_sym_file_position_statement_token3] = ACTIONS(5924), + [aux_sym_file_position_statement_token4] = ACTIONS(5924), + [aux_sym_allocate_statement_token1] = ACTIONS(5924), + [aux_sym_entry_statement_token1] = ACTIONS(5924), + [aux_sym_logical_expression_token5] = ACTIONS(5928), + [anon_sym_DOT] = ACTIONS(5924), + [anon_sym_LPAREN_SLASH] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5928), + [aux_sym_boolean_literal_token1] = ACTIONS(5928), + [aux_sym_boolean_literal_token2] = ACTIONS(5928), + [aux_sym_null_literal_token1] = ACTIONS(5924), + [aux_sym_coarray_statement_token1] = ACTIONS(5924), + [aux_sym_coarray_statement_token2] = ACTIONS(5924), + [aux_sym_coarray_statement_token6] = ACTIONS(5924), + [aux_sym_coarray_statement_token8] = ACTIONS(5924), + [aux_sym_coarray_statement_token11] = ACTIONS(5924), + [aux_sym_coarray_statement_token12] = ACTIONS(5924), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5924), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5924), + [aux_sym_identifier_token1] = ACTIONS(5924), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5928), + [sym__float_literal] = ACTIONS(5928), + [sym__boz_literal] = ACTIONS(5928), + [sym__string_literal] = ACTIONS(5928), + [sym__string_literal_kind] = ACTIONS(5928), + }, + [2016] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6142), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_contains_statement_token1] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [2017] = { + [aux_sym_preproc_include_token1] = ACTIONS(6064), + [aux_sym_preproc_def_token1] = ACTIONS(6064), + [aux_sym_preproc_if_token1] = ACTIONS(6064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6064), + [sym_preproc_directive] = ACTIONS(6064), + [anon_sym_LPAREN2] = ACTIONS(6064), + [sym_preproc_comment] = ACTIONS(6144), + [anon_sym_PLUS] = ACTIONS(6068), + [anon_sym_DASH] = ACTIONS(6068), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6064), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6064), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6064), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6064), + [aux_sym_procedure_attributes_token3] = ACTIONS(6064), + [aux_sym_contains_statement_token1] = ACTIONS(6064), + [aux_sym_use_statement_token2] = ACTIONS(6064), + [aux_sym_implicit_statement_token4] = ACTIONS(6064), + [aux_sym_save_statement_token1] = ACTIONS(6064), + [aux_sym_private_statement_token1] = ACTIONS(6064), + [aux_sym_public_statement_token1] = ACTIONS(6064), + [aux_sym_derived_type_definition_token1] = ACTIONS(6064), + [aux_sym_procedure_attribute_token6] = ACTIONS(6064), + [aux_sym_variable_attributes_token2] = ACTIONS(6064), + [aux_sym_variable_attributes_token3] = ACTIONS(6064), + [aux_sym_variable_attributes_token5] = ACTIONS(6064), + [aux_sym__intrinsic_type_token1] = ACTIONS(6064), + [aux_sym__intrinsic_type_token3] = ACTIONS(6064), + [aux_sym__intrinsic_type_token4] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6064), + [aux_sym_type_qualifier_token1] = ACTIONS(6064), + [aux_sym_type_qualifier_token2] = ACTIONS(6064), + [anon_sym_SEMI] = ACTIONS(6068), + [aux_sym_stop_statement_token1] = ACTIONS(6064), + [aux_sym_stop_statement_token2] = ACTIONS(6064), + [aux_sym_subroutine_call_token1] = ACTIONS(6064), + [aux_sym_keyword_statement_token1] = ACTIONS(6064), + [aux_sym_keyword_statement_token2] = ACTIONS(6064), + [aux_sym_keyword_statement_token3] = ACTIONS(6064), + [aux_sym_keyword_statement_token4] = ACTIONS(6064), + [aux_sym_keyword_statement_token6] = ACTIONS(6064), + [aux_sym_keyword_statement_token7] = ACTIONS(6064), + [aux_sym_include_statement_token1] = ACTIONS(6064), + [aux_sym_data_statement_token1] = ACTIONS(6064), + [aux_sym_do_loop_statement_token1] = ACTIONS(6064), + [aux_sym__inline_if_statement_token1] = ACTIONS(6064), + [aux_sym_end_if_statement_token1] = ACTIONS(6064), + [aux_sym_elseif_clause_token2] = ACTIONS(6064), + [aux_sym__inline_where_statement_token1] = ACTIONS(6064), + [aux_sym__forall_control_expression_token1] = ACTIONS(6064), + [aux_sym_select_case_statement_token1] = ACTIONS(6064), + [aux_sym_select_case_statement_token3] = ACTIONS(6064), + [aux_sym_select_type_statement_token1] = ACTIONS(6064), + [aux_sym_select_rank_statement_token2] = ACTIONS(6064), + [aux_sym_block_construct_token1] = ACTIONS(6064), + [aux_sym_associate_statement_token1] = ACTIONS(6064), + [aux_sym_format_statement_token1] = ACTIONS(6064), + [aux_sym_print_statement_token1] = ACTIONS(6064), + [aux_sym_open_statement_token1] = ACTIONS(6064), + [aux_sym_close_statement_token1] = ACTIONS(6064), + [aux_sym_inquire_statement_token1] = ACTIONS(6064), + [aux_sym_file_position_statement_token1] = ACTIONS(6064), + [aux_sym_file_position_statement_token2] = ACTIONS(6064), + [aux_sym_file_position_statement_token3] = ACTIONS(6064), + [aux_sym_file_position_statement_token4] = ACTIONS(6064), + [aux_sym_allocate_statement_token1] = ACTIONS(6064), + [aux_sym_entry_statement_token1] = ACTIONS(6064), + [aux_sym_logical_expression_token5] = ACTIONS(6068), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_LPAREN_SLASH] = ACTIONS(6068), + [anon_sym_LBRACK] = ACTIONS(6068), + [aux_sym_boolean_literal_token1] = ACTIONS(6068), + [aux_sym_boolean_literal_token2] = ACTIONS(6068), + [aux_sym_null_literal_token1] = ACTIONS(6064), + [aux_sym_coarray_statement_token1] = ACTIONS(6064), + [aux_sym_coarray_statement_token2] = ACTIONS(6064), + [aux_sym_coarray_statement_token6] = ACTIONS(6064), + [aux_sym_coarray_statement_token8] = ACTIONS(6064), + [aux_sym_coarray_statement_token11] = ACTIONS(6064), + [aux_sym_coarray_statement_token12] = ACTIONS(6064), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6064), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6064), + [aux_sym_identifier_token1] = ACTIONS(6064), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6068), + [sym__float_literal] = ACTIONS(6068), + [sym__boz_literal] = ACTIONS(6068), + [sym__string_literal] = ACTIONS(6068), + [sym__string_literal_kind] = ACTIONS(6068), + }, + [2018] = { + [aux_sym_preproc_include_token1] = ACTIONS(6070), + [aux_sym_preproc_def_token1] = ACTIONS(6070), + [aux_sym_preproc_if_token1] = ACTIONS(6070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6070), + [sym_preproc_directive] = ACTIONS(6070), + [anon_sym_LPAREN2] = ACTIONS(6070), + [sym_preproc_comment] = ACTIONS(6146), + [anon_sym_PLUS] = ACTIONS(6074), + [anon_sym_DASH] = ACTIONS(6074), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6070), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6070), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6070), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6070), + [aux_sym_procedure_attributes_token3] = ACTIONS(6070), + [aux_sym_contains_statement_token1] = ACTIONS(6070), + [aux_sym_use_statement_token2] = ACTIONS(6070), + [aux_sym_implicit_statement_token4] = ACTIONS(6070), + [aux_sym_save_statement_token1] = ACTIONS(6070), + [aux_sym_private_statement_token1] = ACTIONS(6070), + [aux_sym_public_statement_token1] = ACTIONS(6070), + [aux_sym_derived_type_definition_token1] = ACTIONS(6070), + [aux_sym_procedure_attribute_token6] = ACTIONS(6070), + [aux_sym_variable_attributes_token2] = ACTIONS(6070), + [aux_sym_variable_attributes_token3] = ACTIONS(6070), + [aux_sym_variable_attributes_token5] = ACTIONS(6070), + [aux_sym__intrinsic_type_token1] = ACTIONS(6070), + [aux_sym__intrinsic_type_token3] = ACTIONS(6070), + [aux_sym__intrinsic_type_token4] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6070), + [aux_sym_type_qualifier_token1] = ACTIONS(6070), + [aux_sym_type_qualifier_token2] = ACTIONS(6070), + [anon_sym_SEMI] = ACTIONS(6074), + [aux_sym_stop_statement_token1] = ACTIONS(6070), + [aux_sym_stop_statement_token2] = ACTIONS(6070), + [aux_sym_subroutine_call_token1] = ACTIONS(6070), + [aux_sym_keyword_statement_token1] = ACTIONS(6070), + [aux_sym_keyword_statement_token2] = ACTIONS(6070), + [aux_sym_keyword_statement_token3] = ACTIONS(6070), + [aux_sym_keyword_statement_token4] = ACTIONS(6070), + [aux_sym_keyword_statement_token6] = ACTIONS(6070), + [aux_sym_keyword_statement_token7] = ACTIONS(6070), + [aux_sym_include_statement_token1] = ACTIONS(6070), + [aux_sym_data_statement_token1] = ACTIONS(6070), + [aux_sym_do_loop_statement_token1] = ACTIONS(6070), + [aux_sym__inline_if_statement_token1] = ACTIONS(6070), + [aux_sym_end_if_statement_token1] = ACTIONS(6070), + [aux_sym_elseif_clause_token2] = ACTIONS(6070), + [aux_sym__inline_where_statement_token1] = ACTIONS(6070), + [aux_sym__forall_control_expression_token1] = ACTIONS(6070), + [aux_sym_select_case_statement_token1] = ACTIONS(6070), + [aux_sym_select_case_statement_token3] = ACTIONS(6070), + [aux_sym_select_type_statement_token1] = ACTIONS(6070), + [aux_sym_select_rank_statement_token2] = ACTIONS(6070), + [aux_sym_block_construct_token1] = ACTIONS(6070), + [aux_sym_associate_statement_token1] = ACTIONS(6070), + [aux_sym_format_statement_token1] = ACTIONS(6070), + [aux_sym_print_statement_token1] = ACTIONS(6070), + [aux_sym_open_statement_token1] = ACTIONS(6070), + [aux_sym_close_statement_token1] = ACTIONS(6070), + [aux_sym_inquire_statement_token1] = ACTIONS(6070), + [aux_sym_file_position_statement_token1] = ACTIONS(6070), + [aux_sym_file_position_statement_token2] = ACTIONS(6070), + [aux_sym_file_position_statement_token3] = ACTIONS(6070), + [aux_sym_file_position_statement_token4] = ACTIONS(6070), + [aux_sym_allocate_statement_token1] = ACTIONS(6070), + [aux_sym_entry_statement_token1] = ACTIONS(6070), + [aux_sym_logical_expression_token5] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6070), + [anon_sym_LPAREN_SLASH] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6074), + [aux_sym_boolean_literal_token1] = ACTIONS(6074), + [aux_sym_boolean_literal_token2] = ACTIONS(6074), + [aux_sym_null_literal_token1] = ACTIONS(6070), + [aux_sym_coarray_statement_token1] = ACTIONS(6070), + [aux_sym_coarray_statement_token2] = ACTIONS(6070), + [aux_sym_coarray_statement_token6] = ACTIONS(6070), + [aux_sym_coarray_statement_token8] = ACTIONS(6070), + [aux_sym_coarray_statement_token11] = ACTIONS(6070), + [aux_sym_coarray_statement_token12] = ACTIONS(6070), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6070), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6070), + [aux_sym_identifier_token1] = ACTIONS(6070), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6074), + [sym__float_literal] = ACTIONS(6074), + [sym__boz_literal] = ACTIONS(6074), + [sym__string_literal] = ACTIONS(6074), + [sym__string_literal_kind] = ACTIONS(6074), + }, + [2019] = { + [aux_sym_preproc_include_token1] = ACTIONS(5890), + [aux_sym_preproc_def_token1] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5890), + [sym_preproc_directive] = ACTIONS(5890), + [anon_sym_LPAREN2] = ACTIONS(5890), + [sym_preproc_comment] = ACTIONS(6148), + [anon_sym_PLUS] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5890), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5890), + [aux_sym_procedure_attributes_token3] = ACTIONS(5890), + [aux_sym_contains_statement_token1] = ACTIONS(5890), + [aux_sym_use_statement_token2] = ACTIONS(5890), + [aux_sym_implicit_statement_token4] = ACTIONS(5890), + [aux_sym_save_statement_token1] = ACTIONS(5890), + [aux_sym_private_statement_token1] = ACTIONS(5890), + [aux_sym_public_statement_token1] = ACTIONS(5890), + [aux_sym_derived_type_definition_token1] = ACTIONS(5890), + [aux_sym_procedure_attribute_token6] = ACTIONS(5890), + [aux_sym_variable_attributes_token2] = ACTIONS(5890), + [aux_sym_variable_attributes_token3] = ACTIONS(5890), + [aux_sym_variable_attributes_token5] = ACTIONS(5890), + [aux_sym__intrinsic_type_token1] = ACTIONS(5890), + [aux_sym__intrinsic_type_token3] = ACTIONS(5890), + [aux_sym__intrinsic_type_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5890), + [aux_sym_type_qualifier_token1] = ACTIONS(5890), + [aux_sym_type_qualifier_token2] = ACTIONS(5890), + [anon_sym_SEMI] = ACTIONS(5894), + [aux_sym_stop_statement_token1] = ACTIONS(5890), + [aux_sym_stop_statement_token2] = ACTIONS(5890), + [aux_sym_subroutine_call_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token2] = ACTIONS(5890), + [aux_sym_keyword_statement_token3] = ACTIONS(5890), + [aux_sym_keyword_statement_token4] = ACTIONS(5890), + [aux_sym_keyword_statement_token6] = ACTIONS(5890), + [aux_sym_keyword_statement_token7] = ACTIONS(5890), + [aux_sym_include_statement_token1] = ACTIONS(5890), + [aux_sym_data_statement_token1] = ACTIONS(5890), + [aux_sym_do_loop_statement_token1] = ACTIONS(5890), + [aux_sym__inline_if_statement_token1] = ACTIONS(5890), + [aux_sym_end_if_statement_token1] = ACTIONS(5890), + [aux_sym_elseif_clause_token2] = ACTIONS(5890), + [aux_sym__inline_where_statement_token1] = ACTIONS(5890), + [aux_sym__forall_control_expression_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token3] = ACTIONS(5890), + [aux_sym_select_type_statement_token1] = ACTIONS(5890), + [aux_sym_select_rank_statement_token2] = ACTIONS(5890), + [aux_sym_block_construct_token1] = ACTIONS(5890), + [aux_sym_associate_statement_token1] = ACTIONS(5890), + [aux_sym_format_statement_token1] = ACTIONS(5890), + [aux_sym_print_statement_token1] = ACTIONS(5890), + [aux_sym_open_statement_token1] = ACTIONS(5890), + [aux_sym_close_statement_token1] = ACTIONS(5890), + [aux_sym_inquire_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token2] = ACTIONS(5890), + [aux_sym_file_position_statement_token3] = ACTIONS(5890), + [aux_sym_file_position_statement_token4] = ACTIONS(5890), + [aux_sym_allocate_statement_token1] = ACTIONS(5890), + [aux_sym_entry_statement_token1] = ACTIONS(5890), + [aux_sym_logical_expression_token5] = ACTIONS(5894), + [anon_sym_DOT] = ACTIONS(5890), + [anon_sym_LPAREN_SLASH] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(5894), + [aux_sym_boolean_literal_token1] = ACTIONS(5894), + [aux_sym_boolean_literal_token2] = ACTIONS(5894), + [aux_sym_null_literal_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token2] = ACTIONS(5890), + [aux_sym_coarray_statement_token6] = ACTIONS(5890), + [aux_sym_coarray_statement_token8] = ACTIONS(5890), + [aux_sym_coarray_statement_token11] = ACTIONS(5890), + [aux_sym_coarray_statement_token12] = ACTIONS(5890), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5890), + [aux_sym_identifier_token1] = ACTIONS(5890), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5894), + [sym__float_literal] = ACTIONS(5894), + [sym__boz_literal] = ACTIONS(5894), + [sym__string_literal] = ACTIONS(5894), + [sym__string_literal_kind] = ACTIONS(5894), + }, + [2020] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym_end_where_statement_token1] = ACTIONS(4978), + [aux_sym_elsewhere_clause_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2021] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym_end_where_statement_token1] = ACTIONS(5032), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2022] = { + [aux_sym_preproc_include_token1] = ACTIONS(5938), + [aux_sym_preproc_def_token1] = ACTIONS(5938), + [aux_sym_preproc_if_token1] = ACTIONS(5938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), + [sym_preproc_directive] = ACTIONS(5938), + [anon_sym_LPAREN2] = ACTIONS(5938), + [sym_preproc_comment] = ACTIONS(6150), + [anon_sym_PLUS] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5942), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5938), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5938), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5938), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5938), + [aux_sym_procedure_attributes_token3] = ACTIONS(5938), + [aux_sym_contains_statement_token1] = ACTIONS(5938), + [aux_sym_use_statement_token2] = ACTIONS(5938), + [aux_sym_implicit_statement_token4] = ACTIONS(5938), + [aux_sym_save_statement_token1] = ACTIONS(5938), + [aux_sym_private_statement_token1] = ACTIONS(5938), + [aux_sym_public_statement_token1] = ACTIONS(5938), + [aux_sym_derived_type_definition_token1] = ACTIONS(5938), + [aux_sym_procedure_attribute_token6] = ACTIONS(5938), + [aux_sym_variable_attributes_token2] = ACTIONS(5938), + [aux_sym_variable_attributes_token3] = ACTIONS(5938), + [aux_sym_variable_attributes_token5] = ACTIONS(5938), + [aux_sym__intrinsic_type_token1] = ACTIONS(5938), + [aux_sym__intrinsic_type_token3] = ACTIONS(5938), + [aux_sym__intrinsic_type_token4] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5938), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5938), + [aux_sym_type_qualifier_token1] = ACTIONS(5938), + [aux_sym_type_qualifier_token2] = ACTIONS(5938), + [anon_sym_SEMI] = ACTIONS(5942), + [aux_sym_stop_statement_token1] = ACTIONS(5938), + [aux_sym_stop_statement_token2] = ACTIONS(5938), + [aux_sym_subroutine_call_token1] = ACTIONS(5938), + [aux_sym_keyword_statement_token1] = ACTIONS(5938), + [aux_sym_keyword_statement_token2] = ACTIONS(5938), + [aux_sym_keyword_statement_token3] = ACTIONS(5938), + [aux_sym_keyword_statement_token4] = ACTIONS(5938), + [aux_sym_keyword_statement_token6] = ACTIONS(5938), + [aux_sym_keyword_statement_token7] = ACTIONS(5938), + [aux_sym_include_statement_token1] = ACTIONS(5938), + [aux_sym_data_statement_token1] = ACTIONS(5938), + [aux_sym_do_loop_statement_token1] = ACTIONS(5938), + [aux_sym__inline_if_statement_token1] = ACTIONS(5938), + [aux_sym_end_if_statement_token1] = ACTIONS(5938), + [aux_sym_elseif_clause_token2] = ACTIONS(5938), + [aux_sym__inline_where_statement_token1] = ACTIONS(5938), + [aux_sym__forall_control_expression_token1] = ACTIONS(5938), + [aux_sym_select_case_statement_token1] = ACTIONS(5938), + [aux_sym_select_case_statement_token3] = ACTIONS(5938), + [aux_sym_select_type_statement_token1] = ACTIONS(5938), + [aux_sym_select_rank_statement_token2] = ACTIONS(5938), + [aux_sym_block_construct_token1] = ACTIONS(5938), + [aux_sym_associate_statement_token1] = ACTIONS(5938), + [aux_sym_format_statement_token1] = ACTIONS(5938), + [aux_sym_print_statement_token1] = ACTIONS(5938), + [aux_sym_open_statement_token1] = ACTIONS(5938), + [aux_sym_close_statement_token1] = ACTIONS(5938), + [aux_sym_inquire_statement_token1] = ACTIONS(5938), + [aux_sym_file_position_statement_token1] = ACTIONS(5938), + [aux_sym_file_position_statement_token2] = ACTIONS(5938), + [aux_sym_file_position_statement_token3] = ACTIONS(5938), + [aux_sym_file_position_statement_token4] = ACTIONS(5938), + [aux_sym_allocate_statement_token1] = ACTIONS(5938), + [aux_sym_entry_statement_token1] = ACTIONS(5938), + [aux_sym_logical_expression_token5] = ACTIONS(5942), + [anon_sym_DOT] = ACTIONS(5938), + [anon_sym_LPAREN_SLASH] = ACTIONS(5942), + [anon_sym_LBRACK] = ACTIONS(5942), + [aux_sym_boolean_literal_token1] = ACTIONS(5942), + [aux_sym_boolean_literal_token2] = ACTIONS(5942), + [aux_sym_null_literal_token1] = ACTIONS(5938), + [aux_sym_coarray_statement_token1] = ACTIONS(5938), + [aux_sym_coarray_statement_token2] = ACTIONS(5938), + [aux_sym_coarray_statement_token6] = ACTIONS(5938), + [aux_sym_coarray_statement_token8] = ACTIONS(5938), + [aux_sym_coarray_statement_token11] = ACTIONS(5938), + [aux_sym_coarray_statement_token12] = ACTIONS(5938), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5938), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5938), + [aux_sym_identifier_token1] = ACTIONS(5938), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5942), + [sym__float_literal] = ACTIONS(5942), + [sym__boz_literal] = ACTIONS(5942), + [sym__string_literal] = ACTIONS(5942), + [sym__string_literal_kind] = ACTIONS(5942), + }, + [2023] = { + [aux_sym_preproc_include_token1] = ACTIONS(6078), + [aux_sym_preproc_def_token1] = ACTIONS(6078), + [aux_sym_preproc_if_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6078), + [sym_preproc_directive] = ACTIONS(6078), + [anon_sym_LPAREN2] = ACTIONS(6078), + [sym_preproc_comment] = ACTIONS(6152), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_DASH] = ACTIONS(6082), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6078), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6078), + [aux_sym_procedure_attributes_token3] = ACTIONS(6078), + [aux_sym_contains_statement_token1] = ACTIONS(6078), + [aux_sym_use_statement_token2] = ACTIONS(6078), + [aux_sym_implicit_statement_token4] = ACTIONS(6078), + [aux_sym_save_statement_token1] = ACTIONS(6078), + [aux_sym_private_statement_token1] = ACTIONS(6078), + [aux_sym_public_statement_token1] = ACTIONS(6078), + [aux_sym_derived_type_definition_token1] = ACTIONS(6078), + [aux_sym_procedure_attribute_token6] = ACTIONS(6078), + [aux_sym_variable_attributes_token2] = ACTIONS(6078), + [aux_sym_variable_attributes_token3] = ACTIONS(6078), + [aux_sym_variable_attributes_token5] = ACTIONS(6078), + [aux_sym__intrinsic_type_token1] = ACTIONS(6078), + [aux_sym__intrinsic_type_token3] = ACTIONS(6078), + [aux_sym__intrinsic_type_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6078), + [aux_sym_type_qualifier_token1] = ACTIONS(6078), + [aux_sym_type_qualifier_token2] = ACTIONS(6078), + [anon_sym_SEMI] = ACTIONS(6082), + [aux_sym_stop_statement_token1] = ACTIONS(6078), + [aux_sym_stop_statement_token2] = ACTIONS(6078), + [aux_sym_subroutine_call_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token2] = ACTIONS(6078), + [aux_sym_keyword_statement_token3] = ACTIONS(6078), + [aux_sym_keyword_statement_token4] = ACTIONS(6078), + [aux_sym_keyword_statement_token6] = ACTIONS(6078), + [aux_sym_keyword_statement_token7] = ACTIONS(6078), + [aux_sym_include_statement_token1] = ACTIONS(6078), + [aux_sym_data_statement_token1] = ACTIONS(6078), + [aux_sym_do_loop_statement_token1] = ACTIONS(6078), + [aux_sym__inline_if_statement_token1] = ACTIONS(6078), + [aux_sym_end_if_statement_token1] = ACTIONS(6078), + [aux_sym_elseif_clause_token2] = ACTIONS(6078), + [aux_sym__inline_where_statement_token1] = ACTIONS(6078), + [aux_sym__forall_control_expression_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token3] = ACTIONS(6078), + [aux_sym_select_type_statement_token1] = ACTIONS(6078), + [aux_sym_select_rank_statement_token2] = ACTIONS(6078), + [aux_sym_block_construct_token1] = ACTIONS(6078), + [aux_sym_associate_statement_token1] = ACTIONS(6078), + [aux_sym_format_statement_token1] = ACTIONS(6078), + [aux_sym_print_statement_token1] = ACTIONS(6078), + [aux_sym_open_statement_token1] = ACTIONS(6078), + [aux_sym_close_statement_token1] = ACTIONS(6078), + [aux_sym_inquire_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token2] = ACTIONS(6078), + [aux_sym_file_position_statement_token3] = ACTIONS(6078), + [aux_sym_file_position_statement_token4] = ACTIONS(6078), + [aux_sym_allocate_statement_token1] = ACTIONS(6078), + [aux_sym_entry_statement_token1] = ACTIONS(6078), + [aux_sym_logical_expression_token5] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_LPAREN_SLASH] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6082), + [aux_sym_boolean_literal_token1] = ACTIONS(6082), + [aux_sym_boolean_literal_token2] = ACTIONS(6082), + [aux_sym_null_literal_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token2] = ACTIONS(6078), + [aux_sym_coarray_statement_token6] = ACTIONS(6078), + [aux_sym_coarray_statement_token8] = ACTIONS(6078), + [aux_sym_coarray_statement_token11] = ACTIONS(6078), + [aux_sym_coarray_statement_token12] = ACTIONS(6078), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6078), + [aux_sym_identifier_token1] = ACTIONS(6078), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6082), + [sym__float_literal] = ACTIONS(6082), + [sym__boz_literal] = ACTIONS(6082), + [sym__string_literal] = ACTIONS(6082), + [sym__string_literal_kind] = ACTIONS(6082), + }, + [2024] = { + [aux_sym_preproc_include_token1] = ACTIONS(5948), + [aux_sym_preproc_def_token1] = ACTIONS(5948), + [aux_sym_preproc_if_token1] = ACTIONS(5948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5948), + [sym_preproc_directive] = ACTIONS(5948), + [anon_sym_LPAREN2] = ACTIONS(5948), + [sym_preproc_comment] = ACTIONS(6154), + [anon_sym_PLUS] = ACTIONS(5952), + [anon_sym_DASH] = ACTIONS(5952), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5948), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5948), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5948), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5948), + [aux_sym_procedure_attributes_token3] = ACTIONS(5948), + [aux_sym_contains_statement_token1] = ACTIONS(5948), + [aux_sym_use_statement_token2] = ACTIONS(5948), + [aux_sym_implicit_statement_token4] = ACTIONS(5948), + [aux_sym_save_statement_token1] = ACTIONS(5948), + [aux_sym_private_statement_token1] = ACTIONS(5948), + [aux_sym_public_statement_token1] = ACTIONS(5948), + [aux_sym_derived_type_definition_token1] = ACTIONS(5948), + [aux_sym_procedure_attribute_token6] = ACTIONS(5948), + [aux_sym_variable_attributes_token2] = ACTIONS(5948), + [aux_sym_variable_attributes_token3] = ACTIONS(5948), + [aux_sym_variable_attributes_token5] = ACTIONS(5948), + [aux_sym__intrinsic_type_token1] = ACTIONS(5948), + [aux_sym__intrinsic_type_token3] = ACTIONS(5948), + [aux_sym__intrinsic_type_token4] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5948), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5948), + [aux_sym_type_qualifier_token1] = ACTIONS(5948), + [aux_sym_type_qualifier_token2] = ACTIONS(5948), + [anon_sym_SEMI] = ACTIONS(5952), + [aux_sym_stop_statement_token1] = ACTIONS(5948), + [aux_sym_stop_statement_token2] = ACTIONS(5948), + [aux_sym_subroutine_call_token1] = ACTIONS(5948), + [aux_sym_keyword_statement_token1] = ACTIONS(5948), + [aux_sym_keyword_statement_token2] = ACTIONS(5948), + [aux_sym_keyword_statement_token3] = ACTIONS(5948), + [aux_sym_keyword_statement_token4] = ACTIONS(5948), + [aux_sym_keyword_statement_token6] = ACTIONS(5948), + [aux_sym_keyword_statement_token7] = ACTIONS(5948), + [aux_sym_include_statement_token1] = ACTIONS(5948), + [aux_sym_data_statement_token1] = ACTIONS(5948), + [aux_sym_do_loop_statement_token1] = ACTIONS(5948), + [aux_sym__inline_if_statement_token1] = ACTIONS(5948), + [aux_sym_end_if_statement_token1] = ACTIONS(5948), + [aux_sym_elseif_clause_token2] = ACTIONS(5948), + [aux_sym__inline_where_statement_token1] = ACTIONS(5948), + [aux_sym__forall_control_expression_token1] = ACTIONS(5948), + [aux_sym_select_case_statement_token1] = ACTIONS(5948), + [aux_sym_select_case_statement_token3] = ACTIONS(5948), + [aux_sym_select_type_statement_token1] = ACTIONS(5948), + [aux_sym_select_rank_statement_token2] = ACTIONS(5948), + [aux_sym_block_construct_token1] = ACTIONS(5948), + [aux_sym_associate_statement_token1] = ACTIONS(5948), + [aux_sym_format_statement_token1] = ACTIONS(5948), + [aux_sym_print_statement_token1] = ACTIONS(5948), + [aux_sym_open_statement_token1] = ACTIONS(5948), + [aux_sym_close_statement_token1] = ACTIONS(5948), + [aux_sym_inquire_statement_token1] = ACTIONS(5948), + [aux_sym_file_position_statement_token1] = ACTIONS(5948), + [aux_sym_file_position_statement_token2] = ACTIONS(5948), + [aux_sym_file_position_statement_token3] = ACTIONS(5948), + [aux_sym_file_position_statement_token4] = ACTIONS(5948), + [aux_sym_allocate_statement_token1] = ACTIONS(5948), + [aux_sym_entry_statement_token1] = ACTIONS(5948), + [aux_sym_logical_expression_token5] = ACTIONS(5952), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_LPAREN_SLASH] = ACTIONS(5952), + [anon_sym_LBRACK] = ACTIONS(5952), + [aux_sym_boolean_literal_token1] = ACTIONS(5952), + [aux_sym_boolean_literal_token2] = ACTIONS(5952), + [aux_sym_null_literal_token1] = ACTIONS(5948), + [aux_sym_coarray_statement_token1] = ACTIONS(5948), + [aux_sym_coarray_statement_token2] = ACTIONS(5948), + [aux_sym_coarray_statement_token6] = ACTIONS(5948), + [aux_sym_coarray_statement_token8] = ACTIONS(5948), + [aux_sym_coarray_statement_token11] = ACTIONS(5948), + [aux_sym_coarray_statement_token12] = ACTIONS(5948), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5948), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5948), + [aux_sym_identifier_token1] = ACTIONS(5948), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), + [sym__integer_literal] = ACTIONS(5952), + [sym__float_literal] = ACTIONS(5952), + [sym__boz_literal] = ACTIONS(5952), + [sym__string_literal] = ACTIONS(5952), + [sym__string_literal_kind] = ACTIONS(5952), }, - [2170] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6376), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), + [2025] = { + [aux_sym_preproc_include_token1] = ACTIONS(5954), + [aux_sym_preproc_def_token1] = ACTIONS(5954), + [aux_sym_preproc_if_token1] = ACTIONS(5954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5954), + [sym_preproc_directive] = ACTIONS(5954), + [anon_sym_LPAREN2] = ACTIONS(5954), + [sym_preproc_comment] = ACTIONS(6156), + [anon_sym_PLUS] = ACTIONS(5958), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5954), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5954), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5954), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5954), + [aux_sym_procedure_attributes_token3] = ACTIONS(5954), + [aux_sym_contains_statement_token1] = ACTIONS(5954), + [aux_sym_use_statement_token2] = ACTIONS(5954), + [aux_sym_implicit_statement_token4] = ACTIONS(5954), + [aux_sym_save_statement_token1] = ACTIONS(5954), + [aux_sym_private_statement_token1] = ACTIONS(5954), + [aux_sym_public_statement_token1] = ACTIONS(5954), + [aux_sym_derived_type_definition_token1] = ACTIONS(5954), + [aux_sym_procedure_attribute_token6] = ACTIONS(5954), + [aux_sym_variable_attributes_token2] = ACTIONS(5954), + [aux_sym_variable_attributes_token3] = ACTIONS(5954), + [aux_sym_variable_attributes_token5] = ACTIONS(5954), + [aux_sym__intrinsic_type_token1] = ACTIONS(5954), + [aux_sym__intrinsic_type_token3] = ACTIONS(5954), + [aux_sym__intrinsic_type_token4] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5954), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5954), + [aux_sym_type_qualifier_token1] = ACTIONS(5954), + [aux_sym_type_qualifier_token2] = ACTIONS(5954), + [anon_sym_SEMI] = ACTIONS(5958), + [aux_sym_stop_statement_token1] = ACTIONS(5954), + [aux_sym_stop_statement_token2] = ACTIONS(5954), + [aux_sym_subroutine_call_token1] = ACTIONS(5954), + [aux_sym_keyword_statement_token1] = ACTIONS(5954), + [aux_sym_keyword_statement_token2] = ACTIONS(5954), + [aux_sym_keyword_statement_token3] = ACTIONS(5954), + [aux_sym_keyword_statement_token4] = ACTIONS(5954), + [aux_sym_keyword_statement_token6] = ACTIONS(5954), + [aux_sym_keyword_statement_token7] = ACTIONS(5954), + [aux_sym_include_statement_token1] = ACTIONS(5954), + [aux_sym_data_statement_token1] = ACTIONS(5954), + [aux_sym_do_loop_statement_token1] = ACTIONS(5954), + [aux_sym__inline_if_statement_token1] = ACTIONS(5954), + [aux_sym_end_if_statement_token1] = ACTIONS(5954), + [aux_sym_elseif_clause_token2] = ACTIONS(5954), + [aux_sym__inline_where_statement_token1] = ACTIONS(5954), + [aux_sym__forall_control_expression_token1] = ACTIONS(5954), + [aux_sym_select_case_statement_token1] = ACTIONS(5954), + [aux_sym_select_case_statement_token3] = ACTIONS(5954), + [aux_sym_select_type_statement_token1] = ACTIONS(5954), + [aux_sym_select_rank_statement_token2] = ACTIONS(5954), + [aux_sym_block_construct_token1] = ACTIONS(5954), + [aux_sym_associate_statement_token1] = ACTIONS(5954), + [aux_sym_format_statement_token1] = ACTIONS(5954), + [aux_sym_print_statement_token1] = ACTIONS(5954), + [aux_sym_open_statement_token1] = ACTIONS(5954), + [aux_sym_close_statement_token1] = ACTIONS(5954), + [aux_sym_inquire_statement_token1] = ACTIONS(5954), + [aux_sym_file_position_statement_token1] = ACTIONS(5954), + [aux_sym_file_position_statement_token2] = ACTIONS(5954), + [aux_sym_file_position_statement_token3] = ACTIONS(5954), + [aux_sym_file_position_statement_token4] = ACTIONS(5954), + [aux_sym_allocate_statement_token1] = ACTIONS(5954), + [aux_sym_entry_statement_token1] = ACTIONS(5954), + [aux_sym_logical_expression_token5] = ACTIONS(5958), + [anon_sym_DOT] = ACTIONS(5954), + [anon_sym_LPAREN_SLASH] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(5958), + [aux_sym_boolean_literal_token1] = ACTIONS(5958), + [aux_sym_boolean_literal_token2] = ACTIONS(5958), + [aux_sym_null_literal_token1] = ACTIONS(5954), + [aux_sym_coarray_statement_token1] = ACTIONS(5954), + [aux_sym_coarray_statement_token2] = ACTIONS(5954), + [aux_sym_coarray_statement_token6] = ACTIONS(5954), + [aux_sym_coarray_statement_token8] = ACTIONS(5954), + [aux_sym_coarray_statement_token11] = ACTIONS(5954), + [aux_sym_coarray_statement_token12] = ACTIONS(5954), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5954), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5954), + [aux_sym_identifier_token1] = ACTIONS(5954), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5958), + [sym__float_literal] = ACTIONS(5958), + [sym__boz_literal] = ACTIONS(5958), + [sym__string_literal] = ACTIONS(5958), + [sym__string_literal_kind] = ACTIONS(5958), }, - [2171] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token2] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_end_select_statement_token1] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2026] = { + [aux_sym_preproc_include_token1] = ACTIONS(5960), + [aux_sym_preproc_def_token1] = ACTIONS(5960), + [aux_sym_preproc_if_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5960), + [sym_preproc_directive] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [sym_preproc_comment] = ACTIONS(6158), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5960), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5960), + [aux_sym_procedure_attributes_token3] = ACTIONS(5960), + [aux_sym_contains_statement_token1] = ACTIONS(5960), + [aux_sym_use_statement_token2] = ACTIONS(5960), + [aux_sym_implicit_statement_token4] = ACTIONS(5960), + [aux_sym_save_statement_token1] = ACTIONS(5960), + [aux_sym_private_statement_token1] = ACTIONS(5960), + [aux_sym_public_statement_token1] = ACTIONS(5960), + [aux_sym_derived_type_definition_token1] = ACTIONS(5960), + [aux_sym_procedure_attribute_token6] = ACTIONS(5960), + [aux_sym_variable_attributes_token2] = ACTIONS(5960), + [aux_sym_variable_attributes_token3] = ACTIONS(5960), + [aux_sym_variable_attributes_token5] = ACTIONS(5960), + [aux_sym__intrinsic_type_token1] = ACTIONS(5960), + [aux_sym__intrinsic_type_token3] = ACTIONS(5960), + [aux_sym__intrinsic_type_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5960), + [aux_sym_type_qualifier_token1] = ACTIONS(5960), + [aux_sym_type_qualifier_token2] = ACTIONS(5960), + [anon_sym_SEMI] = ACTIONS(5964), + [aux_sym_stop_statement_token1] = ACTIONS(5960), + [aux_sym_stop_statement_token2] = ACTIONS(5960), + [aux_sym_subroutine_call_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token2] = ACTIONS(5960), + [aux_sym_keyword_statement_token3] = ACTIONS(5960), + [aux_sym_keyword_statement_token4] = ACTIONS(5960), + [aux_sym_keyword_statement_token6] = ACTIONS(5960), + [aux_sym_keyword_statement_token7] = ACTIONS(5960), + [aux_sym_include_statement_token1] = ACTIONS(5960), + [aux_sym_data_statement_token1] = ACTIONS(5960), + [aux_sym_do_loop_statement_token1] = ACTIONS(5960), + [aux_sym__inline_if_statement_token1] = ACTIONS(5960), + [aux_sym_end_if_statement_token1] = ACTIONS(5960), + [aux_sym_elseif_clause_token2] = ACTIONS(5960), + [aux_sym__inline_where_statement_token1] = ACTIONS(5960), + [aux_sym__forall_control_expression_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token3] = ACTIONS(5960), + [aux_sym_select_type_statement_token1] = ACTIONS(5960), + [aux_sym_select_rank_statement_token2] = ACTIONS(5960), + [aux_sym_block_construct_token1] = ACTIONS(5960), + [aux_sym_associate_statement_token1] = ACTIONS(5960), + [aux_sym_format_statement_token1] = ACTIONS(5960), + [aux_sym_print_statement_token1] = ACTIONS(5960), + [aux_sym_open_statement_token1] = ACTIONS(5960), + [aux_sym_close_statement_token1] = ACTIONS(5960), + [aux_sym_inquire_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token2] = ACTIONS(5960), + [aux_sym_file_position_statement_token3] = ACTIONS(5960), + [aux_sym_file_position_statement_token4] = ACTIONS(5960), + [aux_sym_allocate_statement_token1] = ACTIONS(5960), + [aux_sym_entry_statement_token1] = ACTIONS(5960), + [aux_sym_logical_expression_token5] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5960), + [anon_sym_LPAREN_SLASH] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5964), + [aux_sym_boolean_literal_token1] = ACTIONS(5964), + [aux_sym_boolean_literal_token2] = ACTIONS(5964), + [aux_sym_null_literal_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token2] = ACTIONS(5960), + [aux_sym_coarray_statement_token6] = ACTIONS(5960), + [aux_sym_coarray_statement_token8] = ACTIONS(5960), + [aux_sym_coarray_statement_token11] = ACTIONS(5960), + [aux_sym_coarray_statement_token12] = ACTIONS(5960), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5960), + [aux_sym_identifier_token1] = ACTIONS(5960), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5964), + [sym__float_literal] = ACTIONS(5964), + [sym__boz_literal] = ACTIONS(5964), + [sym__string_literal] = ACTIONS(5964), + [sym__string_literal_kind] = ACTIONS(5964), }, - [2172] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token2] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_end_select_statement_token1] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [2027] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6160), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_end_program_statement_token2] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2173] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6378), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_end_forall_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2028] = { + [aux_sym_preproc_include_token1] = ACTIONS(5914), + [aux_sym_preproc_def_token1] = ACTIONS(5914), + [aux_sym_preproc_if_token1] = ACTIONS(5914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5914), + [sym_preproc_directive] = ACTIONS(5914), + [anon_sym_LPAREN2] = ACTIONS(5914), + [sym_preproc_comment] = ACTIONS(6162), + [anon_sym_PLUS] = ACTIONS(5918), + [anon_sym_DASH] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5914), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5914), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5914), + [aux_sym_procedure_attributes_token3] = ACTIONS(5914), + [aux_sym_end_function_statement_token1] = ACTIONS(5914), + [aux_sym_contains_statement_token1] = ACTIONS(5914), + [aux_sym_use_statement_token2] = ACTIONS(5914), + [aux_sym_implicit_statement_token4] = ACTIONS(5914), + [aux_sym_save_statement_token1] = ACTIONS(5914), + [aux_sym_private_statement_token1] = ACTIONS(5914), + [aux_sym_public_statement_token1] = ACTIONS(5914), + [aux_sym_derived_type_definition_token1] = ACTIONS(5914), + [aux_sym_procedure_attribute_token6] = ACTIONS(5914), + [aux_sym_variable_attributes_token2] = ACTIONS(5914), + [aux_sym_variable_attributes_token3] = ACTIONS(5914), + [aux_sym_variable_attributes_token5] = ACTIONS(5914), + [aux_sym__intrinsic_type_token1] = ACTIONS(5914), + [aux_sym__intrinsic_type_token3] = ACTIONS(5914), + [aux_sym__intrinsic_type_token4] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5914), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5914), + [aux_sym_type_qualifier_token1] = ACTIONS(5914), + [aux_sym_type_qualifier_token2] = ACTIONS(5914), + [anon_sym_SEMI] = ACTIONS(5918), + [aux_sym_stop_statement_token1] = ACTIONS(5914), + [aux_sym_stop_statement_token2] = ACTIONS(5914), + [aux_sym_subroutine_call_token1] = ACTIONS(5914), + [aux_sym_keyword_statement_token1] = ACTIONS(5914), + [aux_sym_keyword_statement_token2] = ACTIONS(5914), + [aux_sym_keyword_statement_token3] = ACTIONS(5914), + [aux_sym_keyword_statement_token4] = ACTIONS(5914), + [aux_sym_keyword_statement_token6] = ACTIONS(5914), + [aux_sym_keyword_statement_token7] = ACTIONS(5914), + [aux_sym_include_statement_token1] = ACTIONS(5914), + [aux_sym_data_statement_token1] = ACTIONS(5914), + [aux_sym_do_loop_statement_token1] = ACTIONS(5914), + [aux_sym__inline_if_statement_token1] = ACTIONS(5914), + [aux_sym_end_if_statement_token1] = ACTIONS(5914), + [aux_sym_elseif_clause_token2] = ACTIONS(5914), + [aux_sym__inline_where_statement_token1] = ACTIONS(5914), + [aux_sym__forall_control_expression_token1] = ACTIONS(5914), + [aux_sym_select_case_statement_token1] = ACTIONS(5914), + [aux_sym_select_case_statement_token3] = ACTIONS(5914), + [aux_sym_select_type_statement_token1] = ACTIONS(5914), + [aux_sym_select_rank_statement_token2] = ACTIONS(5914), + [aux_sym_block_construct_token1] = ACTIONS(5914), + [aux_sym_associate_statement_token1] = ACTIONS(5914), + [aux_sym_format_statement_token1] = ACTIONS(5914), + [aux_sym_print_statement_token1] = ACTIONS(5914), + [aux_sym_open_statement_token1] = ACTIONS(5914), + [aux_sym_close_statement_token1] = ACTIONS(5914), + [aux_sym_inquire_statement_token1] = ACTIONS(5914), + [aux_sym_file_position_statement_token1] = ACTIONS(5914), + [aux_sym_file_position_statement_token2] = ACTIONS(5914), + [aux_sym_file_position_statement_token3] = ACTIONS(5914), + [aux_sym_file_position_statement_token4] = ACTIONS(5914), + [aux_sym_allocate_statement_token1] = ACTIONS(5914), + [aux_sym_entry_statement_token1] = ACTIONS(5914), + [aux_sym_logical_expression_token5] = ACTIONS(5918), + [anon_sym_DOT] = ACTIONS(5914), + [anon_sym_LPAREN_SLASH] = ACTIONS(5918), + [anon_sym_LBRACK] = ACTIONS(5918), + [aux_sym_boolean_literal_token1] = ACTIONS(5918), + [aux_sym_boolean_literal_token2] = ACTIONS(5918), + [aux_sym_null_literal_token1] = ACTIONS(5914), + [aux_sym_coarray_statement_token1] = ACTIONS(5914), + [aux_sym_coarray_statement_token2] = ACTIONS(5914), + [aux_sym_coarray_statement_token6] = ACTIONS(5914), + [aux_sym_coarray_statement_token8] = ACTIONS(5914), + [aux_sym_coarray_statement_token11] = ACTIONS(5914), + [aux_sym_coarray_statement_token12] = ACTIONS(5914), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5914), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5914), + [aux_sym_identifier_token1] = ACTIONS(5914), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5918), + [sym__float_literal] = ACTIONS(5918), + [sym__boz_literal] = ACTIONS(5918), + [sym__string_literal] = ACTIONS(5918), + [sym__string_literal_kind] = ACTIONS(5918), }, - [2174] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token2] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_end_select_statement_token1] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [2029] = { + [aux_sym_preproc_include_token1] = ACTIONS(5924), + [aux_sym_preproc_def_token1] = ACTIONS(5924), + [aux_sym_preproc_if_token1] = ACTIONS(5924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5924), + [sym_preproc_directive] = ACTIONS(5924), + [anon_sym_LPAREN2] = ACTIONS(5924), + [sym_preproc_comment] = ACTIONS(6164), + [anon_sym_PLUS] = ACTIONS(5928), + [anon_sym_DASH] = ACTIONS(5928), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5924), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5924), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5924), + [aux_sym_procedure_attributes_token3] = ACTIONS(5924), + [aux_sym_end_function_statement_token1] = ACTIONS(5924), + [aux_sym_contains_statement_token1] = ACTIONS(5924), + [aux_sym_use_statement_token2] = ACTIONS(5924), + [aux_sym_implicit_statement_token4] = ACTIONS(5924), + [aux_sym_save_statement_token1] = ACTIONS(5924), + [aux_sym_private_statement_token1] = ACTIONS(5924), + [aux_sym_public_statement_token1] = ACTIONS(5924), + [aux_sym_derived_type_definition_token1] = ACTIONS(5924), + [aux_sym_procedure_attribute_token6] = ACTIONS(5924), + [aux_sym_variable_attributes_token2] = ACTIONS(5924), + [aux_sym_variable_attributes_token3] = ACTIONS(5924), + [aux_sym_variable_attributes_token5] = ACTIONS(5924), + [aux_sym__intrinsic_type_token1] = ACTIONS(5924), + [aux_sym__intrinsic_type_token3] = ACTIONS(5924), + [aux_sym__intrinsic_type_token4] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5924), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5924), + [aux_sym_type_qualifier_token1] = ACTIONS(5924), + [aux_sym_type_qualifier_token2] = ACTIONS(5924), + [anon_sym_SEMI] = ACTIONS(5928), + [aux_sym_stop_statement_token1] = ACTIONS(5924), + [aux_sym_stop_statement_token2] = ACTIONS(5924), + [aux_sym_subroutine_call_token1] = ACTIONS(5924), + [aux_sym_keyword_statement_token1] = ACTIONS(5924), + [aux_sym_keyword_statement_token2] = ACTIONS(5924), + [aux_sym_keyword_statement_token3] = ACTIONS(5924), + [aux_sym_keyword_statement_token4] = ACTIONS(5924), + [aux_sym_keyword_statement_token6] = ACTIONS(5924), + [aux_sym_keyword_statement_token7] = ACTIONS(5924), + [aux_sym_include_statement_token1] = ACTIONS(5924), + [aux_sym_data_statement_token1] = ACTIONS(5924), + [aux_sym_do_loop_statement_token1] = ACTIONS(5924), + [aux_sym__inline_if_statement_token1] = ACTIONS(5924), + [aux_sym_end_if_statement_token1] = ACTIONS(5924), + [aux_sym_elseif_clause_token2] = ACTIONS(5924), + [aux_sym__inline_where_statement_token1] = ACTIONS(5924), + [aux_sym__forall_control_expression_token1] = ACTIONS(5924), + [aux_sym_select_case_statement_token1] = ACTIONS(5924), + [aux_sym_select_case_statement_token3] = ACTIONS(5924), + [aux_sym_select_type_statement_token1] = ACTIONS(5924), + [aux_sym_select_rank_statement_token2] = ACTIONS(5924), + [aux_sym_block_construct_token1] = ACTIONS(5924), + [aux_sym_associate_statement_token1] = ACTIONS(5924), + [aux_sym_format_statement_token1] = ACTIONS(5924), + [aux_sym_print_statement_token1] = ACTIONS(5924), + [aux_sym_open_statement_token1] = ACTIONS(5924), + [aux_sym_close_statement_token1] = ACTIONS(5924), + [aux_sym_inquire_statement_token1] = ACTIONS(5924), + [aux_sym_file_position_statement_token1] = ACTIONS(5924), + [aux_sym_file_position_statement_token2] = ACTIONS(5924), + [aux_sym_file_position_statement_token3] = ACTIONS(5924), + [aux_sym_file_position_statement_token4] = ACTIONS(5924), + [aux_sym_allocate_statement_token1] = ACTIONS(5924), + [aux_sym_entry_statement_token1] = ACTIONS(5924), + [aux_sym_logical_expression_token5] = ACTIONS(5928), + [anon_sym_DOT] = ACTIONS(5924), + [anon_sym_LPAREN_SLASH] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5928), + [aux_sym_boolean_literal_token1] = ACTIONS(5928), + [aux_sym_boolean_literal_token2] = ACTIONS(5928), + [aux_sym_null_literal_token1] = ACTIONS(5924), + [aux_sym_coarray_statement_token1] = ACTIONS(5924), + [aux_sym_coarray_statement_token2] = ACTIONS(5924), + [aux_sym_coarray_statement_token6] = ACTIONS(5924), + [aux_sym_coarray_statement_token8] = ACTIONS(5924), + [aux_sym_coarray_statement_token11] = ACTIONS(5924), + [aux_sym_coarray_statement_token12] = ACTIONS(5924), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5924), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5924), + [aux_sym_identifier_token1] = ACTIONS(5924), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5928), + [sym__float_literal] = ACTIONS(5928), + [sym__boz_literal] = ACTIONS(5928), + [sym__string_literal] = ACTIONS(5928), + [sym__string_literal_kind] = ACTIONS(5928), }, - [2175] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token2] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_end_select_statement_token1] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [2030] = { + [aux_sym_preproc_include_token1] = ACTIONS(6064), + [aux_sym_preproc_def_token1] = ACTIONS(6064), + [aux_sym_preproc_if_token1] = ACTIONS(6064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6064), + [sym_preproc_directive] = ACTIONS(6064), + [anon_sym_LPAREN2] = ACTIONS(6064), + [sym_preproc_comment] = ACTIONS(6166), + [anon_sym_PLUS] = ACTIONS(6068), + [anon_sym_DASH] = ACTIONS(6068), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6064), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6064), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6064), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6064), + [aux_sym_procedure_attributes_token3] = ACTIONS(6064), + [aux_sym_contains_statement_token1] = ACTIONS(6064), + [aux_sym_use_statement_token2] = ACTIONS(6064), + [aux_sym_implicit_statement_token4] = ACTIONS(6064), + [aux_sym_save_statement_token1] = ACTIONS(6064), + [aux_sym_private_statement_token1] = ACTIONS(6064), + [aux_sym_public_statement_token1] = ACTIONS(6064), + [aux_sym_derived_type_definition_token1] = ACTIONS(6064), + [aux_sym_procedure_attribute_token6] = ACTIONS(6064), + [aux_sym_variable_attributes_token2] = ACTIONS(6064), + [aux_sym_variable_attributes_token3] = ACTIONS(6064), + [aux_sym_variable_attributes_token5] = ACTIONS(6064), + [aux_sym__intrinsic_type_token1] = ACTIONS(6064), + [aux_sym__intrinsic_type_token3] = ACTIONS(6064), + [aux_sym__intrinsic_type_token4] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6064), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6064), + [aux_sym_type_qualifier_token1] = ACTIONS(6064), + [aux_sym_type_qualifier_token2] = ACTIONS(6064), + [anon_sym_SEMI] = ACTIONS(6068), + [aux_sym_stop_statement_token1] = ACTIONS(6064), + [aux_sym_stop_statement_token2] = ACTIONS(6064), + [aux_sym_subroutine_call_token1] = ACTIONS(6064), + [aux_sym_keyword_statement_token1] = ACTIONS(6064), + [aux_sym_keyword_statement_token2] = ACTIONS(6064), + [aux_sym_keyword_statement_token3] = ACTIONS(6064), + [aux_sym_keyword_statement_token4] = ACTIONS(6064), + [aux_sym_keyword_statement_token6] = ACTIONS(6064), + [aux_sym_keyword_statement_token7] = ACTIONS(6064), + [aux_sym_include_statement_token1] = ACTIONS(6064), + [aux_sym_data_statement_token1] = ACTIONS(6064), + [aux_sym_do_loop_statement_token1] = ACTIONS(6064), + [aux_sym__inline_if_statement_token1] = ACTIONS(6064), + [aux_sym_end_if_statement_token1] = ACTIONS(6064), + [aux_sym_elseif_clause_token2] = ACTIONS(6064), + [aux_sym__inline_where_statement_token1] = ACTIONS(6064), + [aux_sym__forall_control_expression_token1] = ACTIONS(6064), + [aux_sym_select_case_statement_token1] = ACTIONS(6064), + [aux_sym_select_case_statement_token3] = ACTIONS(6064), + [aux_sym_select_type_statement_token1] = ACTIONS(6064), + [aux_sym_select_rank_statement_token2] = ACTIONS(6064), + [aux_sym_block_construct_token1] = ACTIONS(6064), + [aux_sym_associate_statement_token1] = ACTIONS(6064), + [aux_sym_format_statement_token1] = ACTIONS(6064), + [aux_sym_print_statement_token1] = ACTIONS(6064), + [aux_sym_open_statement_token1] = ACTIONS(6064), + [aux_sym_close_statement_token1] = ACTIONS(6064), + [aux_sym_inquire_statement_token1] = ACTIONS(6064), + [aux_sym_file_position_statement_token1] = ACTIONS(6064), + [aux_sym_file_position_statement_token2] = ACTIONS(6064), + [aux_sym_file_position_statement_token3] = ACTIONS(6064), + [aux_sym_file_position_statement_token4] = ACTIONS(6064), + [aux_sym_allocate_statement_token1] = ACTIONS(6064), + [aux_sym_entry_statement_token1] = ACTIONS(6064), + [aux_sym_logical_expression_token5] = ACTIONS(6068), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_LPAREN_SLASH] = ACTIONS(6068), + [anon_sym_LBRACK] = ACTIONS(6068), + [aux_sym_boolean_literal_token1] = ACTIONS(6068), + [aux_sym_boolean_literal_token2] = ACTIONS(6068), + [aux_sym_null_literal_token1] = ACTIONS(6064), + [aux_sym_coarray_statement_token1] = ACTIONS(6064), + [aux_sym_coarray_statement_token2] = ACTIONS(6064), + [aux_sym_coarray_statement_token6] = ACTIONS(6064), + [aux_sym_coarray_statement_token8] = ACTIONS(6064), + [aux_sym_coarray_statement_token11] = ACTIONS(6064), + [aux_sym_coarray_statement_token12] = ACTIONS(6064), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6064), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6064), + [aux_sym_identifier_token1] = ACTIONS(6064), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6068), + [sym__float_literal] = ACTIONS(6068), + [sym__boz_literal] = ACTIONS(6068), + [sym__string_literal] = ACTIONS(6068), + [sym__string_literal_kind] = ACTIONS(6068), }, - [2176] = { + [2031] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), @@ -361248,8 +346864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), @@ -361279,7 +346895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -361294,15 +346910,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(2059), [aux_sym__inline_if_statement_token1] = ACTIONS(2059), [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token1] = ACTIONS(2059), [aux_sym_elseif_clause_token2] = ACTIONS(2059), [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym_end_where_statement_token1] = ACTIONS(2059), + [aux_sym_elsewhere_clause_token1] = ACTIONS(2059), [aux_sym__forall_control_expression_token1] = ACTIONS(2059), [aux_sym_select_case_statement_token1] = ACTIONS(2059), [aux_sym_select_case_statement_token3] = ACTIONS(2059), [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token1] = ACTIONS(2059), [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_end_select_statement_token1] = ACTIONS(2059), [aux_sym_block_construct_token1] = ACTIONS(2059), [aux_sym_associate_statement_token1] = ACTIONS(2059), [aux_sym_format_statement_token1] = ACTIONS(2059), @@ -361316,12 +346933,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(2059), [aux_sym_allocate_statement_token1] = ACTIONS(2059), [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), + [aux_sym_logical_expression_token5] = ACTIONS(5698), [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), [aux_sym_null_literal_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token2] = ACTIONS(2059), @@ -361333,1094 +346950,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), - }, - [2177] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_end_select_statement_token1] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), - }, - [2178] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6380), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_end_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [2179] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6382), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_end_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [2180] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6384), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_end_forall_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2181] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2032] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_end_select_statement_token1] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym_end_where_statement_token1] = ACTIONS(5600), + [aux_sym_elsewhere_clause_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [2182] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6386), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_end_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [2183] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_end_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [2184] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_end_select_statement_token1] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), - }, - [2185] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6390), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_end_forall_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2186] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_end_select_statement_token1] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [2033] = { + [aux_sym_preproc_include_token1] = ACTIONS(6070), + [aux_sym_preproc_def_token1] = ACTIONS(6070), + [aux_sym_preproc_if_token1] = ACTIONS(6070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6070), + [sym_preproc_directive] = ACTIONS(6070), + [anon_sym_LPAREN2] = ACTIONS(6070), + [sym_preproc_comment] = ACTIONS(6168), + [anon_sym_PLUS] = ACTIONS(6074), + [anon_sym_DASH] = ACTIONS(6074), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6070), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6070), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6070), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6070), + [aux_sym_procedure_attributes_token3] = ACTIONS(6070), + [aux_sym_contains_statement_token1] = ACTIONS(6070), + [aux_sym_use_statement_token2] = ACTIONS(6070), + [aux_sym_implicit_statement_token4] = ACTIONS(6070), + [aux_sym_save_statement_token1] = ACTIONS(6070), + [aux_sym_private_statement_token1] = ACTIONS(6070), + [aux_sym_public_statement_token1] = ACTIONS(6070), + [aux_sym_derived_type_definition_token1] = ACTIONS(6070), + [aux_sym_procedure_attribute_token6] = ACTIONS(6070), + [aux_sym_variable_attributes_token2] = ACTIONS(6070), + [aux_sym_variable_attributes_token3] = ACTIONS(6070), + [aux_sym_variable_attributes_token5] = ACTIONS(6070), + [aux_sym__intrinsic_type_token1] = ACTIONS(6070), + [aux_sym__intrinsic_type_token3] = ACTIONS(6070), + [aux_sym__intrinsic_type_token4] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6070), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6070), + [aux_sym_type_qualifier_token1] = ACTIONS(6070), + [aux_sym_type_qualifier_token2] = ACTIONS(6070), + [anon_sym_SEMI] = ACTIONS(6074), + [aux_sym_stop_statement_token1] = ACTIONS(6070), + [aux_sym_stop_statement_token2] = ACTIONS(6070), + [aux_sym_subroutine_call_token1] = ACTIONS(6070), + [aux_sym_keyword_statement_token1] = ACTIONS(6070), + [aux_sym_keyword_statement_token2] = ACTIONS(6070), + [aux_sym_keyword_statement_token3] = ACTIONS(6070), + [aux_sym_keyword_statement_token4] = ACTIONS(6070), + [aux_sym_keyword_statement_token6] = ACTIONS(6070), + [aux_sym_keyword_statement_token7] = ACTIONS(6070), + [aux_sym_include_statement_token1] = ACTIONS(6070), + [aux_sym_data_statement_token1] = ACTIONS(6070), + [aux_sym_do_loop_statement_token1] = ACTIONS(6070), + [aux_sym__inline_if_statement_token1] = ACTIONS(6070), + [aux_sym_end_if_statement_token1] = ACTIONS(6070), + [aux_sym_elseif_clause_token2] = ACTIONS(6070), + [aux_sym__inline_where_statement_token1] = ACTIONS(6070), + [aux_sym__forall_control_expression_token1] = ACTIONS(6070), + [aux_sym_select_case_statement_token1] = ACTIONS(6070), + [aux_sym_select_case_statement_token3] = ACTIONS(6070), + [aux_sym_select_type_statement_token1] = ACTIONS(6070), + [aux_sym_select_rank_statement_token2] = ACTIONS(6070), + [aux_sym_block_construct_token1] = ACTIONS(6070), + [aux_sym_associate_statement_token1] = ACTIONS(6070), + [aux_sym_format_statement_token1] = ACTIONS(6070), + [aux_sym_print_statement_token1] = ACTIONS(6070), + [aux_sym_open_statement_token1] = ACTIONS(6070), + [aux_sym_close_statement_token1] = ACTIONS(6070), + [aux_sym_inquire_statement_token1] = ACTIONS(6070), + [aux_sym_file_position_statement_token1] = ACTIONS(6070), + [aux_sym_file_position_statement_token2] = ACTIONS(6070), + [aux_sym_file_position_statement_token3] = ACTIONS(6070), + [aux_sym_file_position_statement_token4] = ACTIONS(6070), + [aux_sym_allocate_statement_token1] = ACTIONS(6070), + [aux_sym_entry_statement_token1] = ACTIONS(6070), + [aux_sym_logical_expression_token5] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6070), + [anon_sym_LPAREN_SLASH] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(6074), + [aux_sym_boolean_literal_token1] = ACTIONS(6074), + [aux_sym_boolean_literal_token2] = ACTIONS(6074), + [aux_sym_null_literal_token1] = ACTIONS(6070), + [aux_sym_coarray_statement_token1] = ACTIONS(6070), + [aux_sym_coarray_statement_token2] = ACTIONS(6070), + [aux_sym_coarray_statement_token6] = ACTIONS(6070), + [aux_sym_coarray_statement_token8] = ACTIONS(6070), + [aux_sym_coarray_statement_token11] = ACTIONS(6070), + [aux_sym_coarray_statement_token12] = ACTIONS(6070), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6070), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6070), + [aux_sym_identifier_token1] = ACTIONS(6070), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6074), + [sym__float_literal] = ACTIONS(6074), + [sym__boz_literal] = ACTIONS(6074), + [sym__string_literal] = ACTIONS(6074), + [sym__string_literal_kind] = ACTIONS(6074), }, - [2187] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6392), + [2034] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6170), [anon_sym_PLUS] = ACTIONS(5558), [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_end_program_statement_token2] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_contains_statement_token1] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_end_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(4357), [anon_sym_LPAREN_SLASH] = ACTIONS(5558), [anon_sym_LBRACK] = ACTIONS(5558), [aux_sym_boolean_literal_token1] = ACTIONS(5558), [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5558), [sym__float_literal] = ACTIONS(5558), @@ -362428,296 +347256,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5558), [sym__string_literal_kind] = ACTIONS(5558), }, - [2188] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6394), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_end_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), + [2035] = { + [aux_sym_preproc_include_token1] = ACTIONS(6078), + [aux_sym_preproc_def_token1] = ACTIONS(6078), + [aux_sym_preproc_if_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6078), + [sym_preproc_directive] = ACTIONS(6078), + [anon_sym_LPAREN2] = ACTIONS(6078), + [sym_preproc_comment] = ACTIONS(6172), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_DASH] = ACTIONS(6082), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6078), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6078), + [aux_sym_procedure_attributes_token3] = ACTIONS(6078), + [aux_sym_contains_statement_token1] = ACTIONS(6078), + [aux_sym_use_statement_token2] = ACTIONS(6078), + [aux_sym_implicit_statement_token4] = ACTIONS(6078), + [aux_sym_save_statement_token1] = ACTIONS(6078), + [aux_sym_private_statement_token1] = ACTIONS(6078), + [aux_sym_public_statement_token1] = ACTIONS(6078), + [aux_sym_derived_type_definition_token1] = ACTIONS(6078), + [aux_sym_procedure_attribute_token6] = ACTIONS(6078), + [aux_sym_variable_attributes_token2] = ACTIONS(6078), + [aux_sym_variable_attributes_token3] = ACTIONS(6078), + [aux_sym_variable_attributes_token5] = ACTIONS(6078), + [aux_sym__intrinsic_type_token1] = ACTIONS(6078), + [aux_sym__intrinsic_type_token3] = ACTIONS(6078), + [aux_sym__intrinsic_type_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6078), + [aux_sym_type_qualifier_token1] = ACTIONS(6078), + [aux_sym_type_qualifier_token2] = ACTIONS(6078), + [anon_sym_SEMI] = ACTIONS(6082), + [aux_sym_stop_statement_token1] = ACTIONS(6078), + [aux_sym_stop_statement_token2] = ACTIONS(6078), + [aux_sym_subroutine_call_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token2] = ACTIONS(6078), + [aux_sym_keyword_statement_token3] = ACTIONS(6078), + [aux_sym_keyword_statement_token4] = ACTIONS(6078), + [aux_sym_keyword_statement_token6] = ACTIONS(6078), + [aux_sym_keyword_statement_token7] = ACTIONS(6078), + [aux_sym_include_statement_token1] = ACTIONS(6078), + [aux_sym_data_statement_token1] = ACTIONS(6078), + [aux_sym_do_loop_statement_token1] = ACTIONS(6078), + [aux_sym__inline_if_statement_token1] = ACTIONS(6078), + [aux_sym_end_if_statement_token1] = ACTIONS(6078), + [aux_sym_elseif_clause_token2] = ACTIONS(6078), + [aux_sym__inline_where_statement_token1] = ACTIONS(6078), + [aux_sym__forall_control_expression_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token3] = ACTIONS(6078), + [aux_sym_select_type_statement_token1] = ACTIONS(6078), + [aux_sym_select_rank_statement_token2] = ACTIONS(6078), + [aux_sym_block_construct_token1] = ACTIONS(6078), + [aux_sym_associate_statement_token1] = ACTIONS(6078), + [aux_sym_format_statement_token1] = ACTIONS(6078), + [aux_sym_print_statement_token1] = ACTIONS(6078), + [aux_sym_open_statement_token1] = ACTIONS(6078), + [aux_sym_close_statement_token1] = ACTIONS(6078), + [aux_sym_inquire_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token2] = ACTIONS(6078), + [aux_sym_file_position_statement_token3] = ACTIONS(6078), + [aux_sym_file_position_statement_token4] = ACTIONS(6078), + [aux_sym_allocate_statement_token1] = ACTIONS(6078), + [aux_sym_entry_statement_token1] = ACTIONS(6078), + [aux_sym_logical_expression_token5] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_LPAREN_SLASH] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6082), + [aux_sym_boolean_literal_token1] = ACTIONS(6082), + [aux_sym_boolean_literal_token2] = ACTIONS(6082), + [aux_sym_null_literal_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token2] = ACTIONS(6078), + [aux_sym_coarray_statement_token6] = ACTIONS(6078), + [aux_sym_coarray_statement_token8] = ACTIONS(6078), + [aux_sym_coarray_statement_token11] = ACTIONS(6078), + [aux_sym_coarray_statement_token12] = ACTIONS(6078), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6078), + [aux_sym_identifier_token1] = ACTIONS(6078), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6082), + [sym__float_literal] = ACTIONS(6082), + [sym__boz_literal] = ACTIONS(6082), + [sym__string_literal] = ACTIONS(6082), + [sym__string_literal_kind] = ACTIONS(6082), }, - [2189] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2036] = { + [sym__intrinsic_type] = STATE(5877), + [sym_intrinsic_type] = STATE(8131), + [sym_sized_allocation] = STATE(6086), + [sym_coarray_allocation] = STATE(6932), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(4668), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4585), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_end_select_statement_token1] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(6174), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6176), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6176), + [aux_sym_procedure_attributes_token3] = ACTIONS(6176), + [aux_sym_use_statement_token2] = ACTIONS(6176), + [aux_sym_implicit_statement_token4] = ACTIONS(6176), + [aux_sym_save_statement_token1] = ACTIONS(6176), + [aux_sym_private_statement_token1] = ACTIONS(6176), + [aux_sym_public_statement_token1] = ACTIONS(6176), + [aux_sym_derived_type_definition_token1] = ACTIONS(6176), + [aux_sym_procedure_attribute_token6] = ACTIONS(6176), + [aux_sym_variable_attributes_token2] = ACTIONS(6176), + [aux_sym_variable_attributes_token3] = ACTIONS(6176), + [aux_sym_variable_attributes_token5] = ACTIONS(6176), + [aux_sym__intrinsic_type_token1] = ACTIONS(6178), + [aux_sym__intrinsic_type_token2] = ACTIONS(77), + [aux_sym__intrinsic_type_token3] = ACTIONS(6178), + [aux_sym__intrinsic_type_token4] = ACTIONS(6180), + [aux_sym__intrinsic_type_token6] = ACTIONS(77), + [aux_sym__intrinsic_type_token7] = ACTIONS(77), + [aux_sym__intrinsic_type_token8] = ACTIONS(81), + [aux_sym__intrinsic_type_token9] = ACTIONS(77), + [aux_sym__intrinsic_type_token10] = ACTIONS(77), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6182), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6176), + [aux_sym_type_qualifier_token1] = ACTIONS(6176), + [aux_sym_type_qualifier_token2] = ACTIONS(6176), + [aux_sym_stop_statement_token1] = ACTIONS(6176), + [aux_sym_stop_statement_token2] = ACTIONS(6176), + [aux_sym_keyword_statement_token2] = ACTIONS(6176), + [aux_sym_keyword_statement_token3] = ACTIONS(6176), + [aux_sym_data_statement_token1] = ACTIONS(6176), + [aux_sym__inline_if_statement_token1] = ACTIONS(6176), + [aux_sym_end_if_statement_token1] = ACTIONS(6176), + [aux_sym_elseif_clause_token2] = ACTIONS(6176), + [aux_sym_select_case_statement_token1] = ACTIONS(6184), + [aux_sym_block_construct_token1] = ACTIONS(6176), + [aux_sym_format_statement_token1] = ACTIONS(6176), + [aux_sym_inquire_statement_token1] = ACTIONS(6176), + [aux_sym_entry_statement_token1] = ACTIONS(6176), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(6186), + [aux_sym_coarray_statement_token1] = ACTIONS(6176), + [aux_sym_coarray_statement_token2] = ACTIONS(6176), + [aux_sym_coarray_statement_token6] = ACTIONS(6176), + [aux_sym_coarray_statement_token8] = ACTIONS(6176), + [aux_sym_coarray_statement_token11] = ACTIONS(6176), + [aux_sym_coarray_statement_token12] = ACTIONS(6176), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6176), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6176), + [aux_sym_identifier_token1] = ACTIONS(6176), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2190] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6396), + [2037] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6188), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_contains_statement_token1] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [2038] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6190), [anon_sym_PLUS] = ACTIONS(5586), [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_end_program_statement_token2] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_end_forall_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4361), [anon_sym_LPAREN_SLASH] = ACTIONS(5586), [anon_sym_LBRACK] = ACTIONS(5586), [aux_sym_boolean_literal_token1] = ACTIONS(5586), [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5586), [sym__float_literal] = ACTIONS(5586), @@ -362725,1385 +347656,2396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5586), [sym__string_literal_kind] = ACTIONS(5586), }, - [2191] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_end_select_statement_token1] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2039] = { + [aux_sym_preproc_include_token1] = ACTIONS(6192), + [aux_sym_preproc_def_token1] = ACTIONS(6192), + [aux_sym_preproc_if_token1] = ACTIONS(6192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6192), + [sym_preproc_directive] = ACTIONS(6192), + [anon_sym_LPAREN2] = ACTIONS(6192), + [sym_preproc_comment] = ACTIONS(6194), + [anon_sym_PLUS] = ACTIONS(6196), + [anon_sym_DASH] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6192), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6192), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6192), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6192), + [aux_sym_procedure_attributes_token3] = ACTIONS(6192), + [aux_sym_contains_statement_token1] = ACTIONS(6192), + [aux_sym_use_statement_token2] = ACTIONS(6192), + [aux_sym_implicit_statement_token4] = ACTIONS(6192), + [aux_sym_save_statement_token1] = ACTIONS(6192), + [aux_sym_private_statement_token1] = ACTIONS(6192), + [aux_sym_public_statement_token1] = ACTIONS(6192), + [aux_sym_derived_type_definition_token1] = ACTIONS(6192), + [aux_sym_procedure_attribute_token6] = ACTIONS(6192), + [aux_sym_variable_attributes_token2] = ACTIONS(6192), + [aux_sym_variable_attributes_token3] = ACTIONS(6192), + [aux_sym_variable_attributes_token5] = ACTIONS(6192), + [aux_sym__intrinsic_type_token1] = ACTIONS(6192), + [aux_sym__intrinsic_type_token3] = ACTIONS(6192), + [aux_sym__intrinsic_type_token4] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6192), + [aux_sym_type_qualifier_token1] = ACTIONS(6192), + [aux_sym_type_qualifier_token2] = ACTIONS(6192), + [anon_sym_SEMI] = ACTIONS(6196), + [aux_sym_stop_statement_token1] = ACTIONS(6192), + [aux_sym_stop_statement_token2] = ACTIONS(6192), + [aux_sym_subroutine_call_token1] = ACTIONS(6192), + [aux_sym_keyword_statement_token1] = ACTIONS(6192), + [aux_sym_keyword_statement_token2] = ACTIONS(6192), + [aux_sym_keyword_statement_token3] = ACTIONS(6192), + [aux_sym_keyword_statement_token4] = ACTIONS(6192), + [aux_sym_keyword_statement_token6] = ACTIONS(6192), + [aux_sym_keyword_statement_token7] = ACTIONS(6192), + [aux_sym_include_statement_token1] = ACTIONS(6192), + [aux_sym_data_statement_token1] = ACTIONS(6192), + [aux_sym_do_loop_statement_token1] = ACTIONS(6192), + [aux_sym__inline_if_statement_token1] = ACTIONS(6192), + [aux_sym_end_if_statement_token1] = ACTIONS(6192), + [aux_sym_elseif_clause_token2] = ACTIONS(6192), + [aux_sym__inline_where_statement_token1] = ACTIONS(6192), + [aux_sym__forall_control_expression_token1] = ACTIONS(6192), + [aux_sym_select_case_statement_token1] = ACTIONS(6192), + [aux_sym_select_case_statement_token3] = ACTIONS(6192), + [aux_sym_select_type_statement_token1] = ACTIONS(6192), + [aux_sym_select_rank_statement_token2] = ACTIONS(6192), + [aux_sym_block_construct_token1] = ACTIONS(6192), + [aux_sym_associate_statement_token1] = ACTIONS(6192), + [aux_sym_format_statement_token1] = ACTIONS(6192), + [aux_sym_print_statement_token1] = ACTIONS(6192), + [aux_sym_open_statement_token1] = ACTIONS(6192), + [aux_sym_close_statement_token1] = ACTIONS(6192), + [aux_sym_inquire_statement_token1] = ACTIONS(6192), + [aux_sym_file_position_statement_token1] = ACTIONS(6192), + [aux_sym_file_position_statement_token2] = ACTIONS(6192), + [aux_sym_file_position_statement_token3] = ACTIONS(6192), + [aux_sym_file_position_statement_token4] = ACTIONS(6192), + [aux_sym_allocate_statement_token1] = ACTIONS(6192), + [aux_sym_entry_statement_token1] = ACTIONS(6192), + [aux_sym_logical_expression_token5] = ACTIONS(6196), + [anon_sym_DOT] = ACTIONS(6192), + [anon_sym_LPAREN_SLASH] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(6196), + [aux_sym_boolean_literal_token1] = ACTIONS(6196), + [aux_sym_boolean_literal_token2] = ACTIONS(6196), + [aux_sym_null_literal_token1] = ACTIONS(6192), + [aux_sym_coarray_statement_token1] = ACTIONS(6192), + [aux_sym_coarray_statement_token2] = ACTIONS(6192), + [aux_sym_coarray_statement_token6] = ACTIONS(6192), + [aux_sym_coarray_statement_token8] = ACTIONS(6192), + [aux_sym_coarray_statement_token11] = ACTIONS(6192), + [aux_sym_coarray_statement_token12] = ACTIONS(6192), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6192), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6192), + [aux_sym_identifier_token1] = ACTIONS(6192), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6196), + [sym__float_literal] = ACTIONS(6196), + [sym__boz_literal] = ACTIONS(6196), + [sym__string_literal] = ACTIONS(6196), + [sym__string_literal_kind] = ACTIONS(6196), }, - [2192] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6398), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_end_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), + [2040] = { + [aux_sym_preproc_include_token1] = ACTIONS(6192), + [aux_sym_preproc_def_token1] = ACTIONS(6192), + [aux_sym_preproc_if_token1] = ACTIONS(6192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6192), + [sym_preproc_directive] = ACTIONS(6192), + [anon_sym_LPAREN2] = ACTIONS(6192), + [sym_preproc_comment] = ACTIONS(6198), + [anon_sym_PLUS] = ACTIONS(6196), + [anon_sym_DASH] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6192), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6192), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6192), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6192), + [aux_sym_procedure_attributes_token3] = ACTIONS(6192), + [aux_sym_contains_statement_token1] = ACTIONS(6192), + [aux_sym_use_statement_token2] = ACTIONS(6192), + [aux_sym_implicit_statement_token4] = ACTIONS(6192), + [aux_sym_save_statement_token1] = ACTIONS(6192), + [aux_sym_private_statement_token1] = ACTIONS(6192), + [aux_sym_public_statement_token1] = ACTIONS(6192), + [aux_sym_derived_type_definition_token1] = ACTIONS(6192), + [aux_sym_procedure_attribute_token6] = ACTIONS(6192), + [aux_sym_variable_attributes_token2] = ACTIONS(6192), + [aux_sym_variable_attributes_token3] = ACTIONS(6192), + [aux_sym_variable_attributes_token5] = ACTIONS(6192), + [aux_sym__intrinsic_type_token1] = ACTIONS(6192), + [aux_sym__intrinsic_type_token3] = ACTIONS(6192), + [aux_sym__intrinsic_type_token4] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6192), + [aux_sym_type_qualifier_token1] = ACTIONS(6192), + [aux_sym_type_qualifier_token2] = ACTIONS(6192), + [anon_sym_SEMI] = ACTIONS(6196), + [aux_sym_stop_statement_token1] = ACTIONS(6192), + [aux_sym_stop_statement_token2] = ACTIONS(6192), + [aux_sym_subroutine_call_token1] = ACTIONS(6192), + [aux_sym_keyword_statement_token1] = ACTIONS(6192), + [aux_sym_keyword_statement_token2] = ACTIONS(6192), + [aux_sym_keyword_statement_token3] = ACTIONS(6192), + [aux_sym_keyword_statement_token4] = ACTIONS(6192), + [aux_sym_keyword_statement_token6] = ACTIONS(6192), + [aux_sym_keyword_statement_token7] = ACTIONS(6192), + [aux_sym_include_statement_token1] = ACTIONS(6192), + [aux_sym_data_statement_token1] = ACTIONS(6192), + [aux_sym_do_loop_statement_token1] = ACTIONS(6192), + [aux_sym__inline_if_statement_token1] = ACTIONS(6192), + [aux_sym_end_if_statement_token1] = ACTIONS(6192), + [aux_sym_elseif_clause_token2] = ACTIONS(6192), + [aux_sym__inline_where_statement_token1] = ACTIONS(6192), + [aux_sym__forall_control_expression_token1] = ACTIONS(6192), + [aux_sym_select_case_statement_token1] = ACTIONS(6192), + [aux_sym_select_case_statement_token3] = ACTIONS(6192), + [aux_sym_select_type_statement_token1] = ACTIONS(6192), + [aux_sym_select_rank_statement_token2] = ACTIONS(6192), + [aux_sym_block_construct_token1] = ACTIONS(6192), + [aux_sym_associate_statement_token1] = ACTIONS(6192), + [aux_sym_format_statement_token1] = ACTIONS(6192), + [aux_sym_print_statement_token1] = ACTIONS(6192), + [aux_sym_open_statement_token1] = ACTIONS(6192), + [aux_sym_close_statement_token1] = ACTIONS(6192), + [aux_sym_inquire_statement_token1] = ACTIONS(6192), + [aux_sym_file_position_statement_token1] = ACTIONS(6192), + [aux_sym_file_position_statement_token2] = ACTIONS(6192), + [aux_sym_file_position_statement_token3] = ACTIONS(6192), + [aux_sym_file_position_statement_token4] = ACTIONS(6192), + [aux_sym_allocate_statement_token1] = ACTIONS(6192), + [aux_sym_entry_statement_token1] = ACTIONS(6192), + [aux_sym_logical_expression_token5] = ACTIONS(6196), + [anon_sym_DOT] = ACTIONS(6192), + [anon_sym_LPAREN_SLASH] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(6196), + [aux_sym_boolean_literal_token1] = ACTIONS(6196), + [aux_sym_boolean_literal_token2] = ACTIONS(6196), + [aux_sym_null_literal_token1] = ACTIONS(6192), + [aux_sym_coarray_statement_token1] = ACTIONS(6192), + [aux_sym_coarray_statement_token2] = ACTIONS(6192), + [aux_sym_coarray_statement_token6] = ACTIONS(6192), + [aux_sym_coarray_statement_token8] = ACTIONS(6192), + [aux_sym_coarray_statement_token11] = ACTIONS(6192), + [aux_sym_coarray_statement_token12] = ACTIONS(6192), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6192), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6192), + [aux_sym_identifier_token1] = ACTIONS(6192), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6196), + [sym__float_literal] = ACTIONS(6196), + [sym__boz_literal] = ACTIONS(6196), + [sym__string_literal] = ACTIONS(6196), + [sym__string_literal_kind] = ACTIONS(6196), }, - [2193] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_end_select_statement_token1] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [2041] = { + [aux_sym_preproc_include_token1] = ACTIONS(6200), + [aux_sym_preproc_def_token1] = ACTIONS(6200), + [aux_sym_preproc_if_token1] = ACTIONS(6200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6200), + [sym_preproc_directive] = ACTIONS(6200), + [anon_sym_LPAREN2] = ACTIONS(6200), + [sym_preproc_comment] = ACTIONS(6202), + [anon_sym_PLUS] = ACTIONS(6204), + [anon_sym_DASH] = ACTIONS(6204), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6200), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6200), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6200), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6200), + [aux_sym_procedure_attributes_token3] = ACTIONS(6200), + [aux_sym_contains_statement_token1] = ACTIONS(6200), + [aux_sym_use_statement_token2] = ACTIONS(6200), + [aux_sym_implicit_statement_token4] = ACTIONS(6200), + [aux_sym_save_statement_token1] = ACTIONS(6200), + [aux_sym_private_statement_token1] = ACTIONS(6200), + [aux_sym_public_statement_token1] = ACTIONS(6200), + [aux_sym_derived_type_definition_token1] = ACTIONS(6200), + [aux_sym_procedure_attribute_token6] = ACTIONS(6200), + [aux_sym_variable_attributes_token2] = ACTIONS(6200), + [aux_sym_variable_attributes_token3] = ACTIONS(6200), + [aux_sym_variable_attributes_token5] = ACTIONS(6200), + [aux_sym__intrinsic_type_token1] = ACTIONS(6200), + [aux_sym__intrinsic_type_token3] = ACTIONS(6200), + [aux_sym__intrinsic_type_token4] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6200), + [aux_sym_type_qualifier_token1] = ACTIONS(6200), + [aux_sym_type_qualifier_token2] = ACTIONS(6200), + [anon_sym_SEMI] = ACTIONS(6204), + [aux_sym_stop_statement_token1] = ACTIONS(6200), + [aux_sym_stop_statement_token2] = ACTIONS(6200), + [aux_sym_subroutine_call_token1] = ACTIONS(6200), + [aux_sym_keyword_statement_token1] = ACTIONS(6200), + [aux_sym_keyword_statement_token2] = ACTIONS(6200), + [aux_sym_keyword_statement_token3] = ACTIONS(6200), + [aux_sym_keyword_statement_token4] = ACTIONS(6200), + [aux_sym_keyword_statement_token6] = ACTIONS(6200), + [aux_sym_keyword_statement_token7] = ACTIONS(6200), + [aux_sym_include_statement_token1] = ACTIONS(6200), + [aux_sym_data_statement_token1] = ACTIONS(6200), + [aux_sym_do_loop_statement_token1] = ACTIONS(6200), + [aux_sym__inline_if_statement_token1] = ACTIONS(6200), + [aux_sym_end_if_statement_token1] = ACTIONS(6200), + [aux_sym_elseif_clause_token2] = ACTIONS(6200), + [aux_sym__inline_where_statement_token1] = ACTIONS(6200), + [aux_sym__forall_control_expression_token1] = ACTIONS(6200), + [aux_sym_select_case_statement_token1] = ACTIONS(6200), + [aux_sym_select_case_statement_token3] = ACTIONS(6200), + [aux_sym_select_type_statement_token1] = ACTIONS(6200), + [aux_sym_select_rank_statement_token2] = ACTIONS(6200), + [aux_sym_block_construct_token1] = ACTIONS(6200), + [aux_sym_associate_statement_token1] = ACTIONS(6200), + [aux_sym_format_statement_token1] = ACTIONS(6200), + [aux_sym_print_statement_token1] = ACTIONS(6200), + [aux_sym_open_statement_token1] = ACTIONS(6200), + [aux_sym_close_statement_token1] = ACTIONS(6200), + [aux_sym_inquire_statement_token1] = ACTIONS(6200), + [aux_sym_file_position_statement_token1] = ACTIONS(6200), + [aux_sym_file_position_statement_token2] = ACTIONS(6200), + [aux_sym_file_position_statement_token3] = ACTIONS(6200), + [aux_sym_file_position_statement_token4] = ACTIONS(6200), + [aux_sym_allocate_statement_token1] = ACTIONS(6200), + [aux_sym_entry_statement_token1] = ACTIONS(6200), + [aux_sym_logical_expression_token5] = ACTIONS(6204), + [anon_sym_DOT] = ACTIONS(6200), + [anon_sym_LPAREN_SLASH] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(6204), + [aux_sym_boolean_literal_token1] = ACTIONS(6204), + [aux_sym_boolean_literal_token2] = ACTIONS(6204), + [aux_sym_null_literal_token1] = ACTIONS(6200), + [aux_sym_coarray_statement_token1] = ACTIONS(6200), + [aux_sym_coarray_statement_token2] = ACTIONS(6200), + [aux_sym_coarray_statement_token6] = ACTIONS(6200), + [aux_sym_coarray_statement_token8] = ACTIONS(6200), + [aux_sym_coarray_statement_token11] = ACTIONS(6200), + [aux_sym_coarray_statement_token12] = ACTIONS(6200), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6200), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6200), + [aux_sym_identifier_token1] = ACTIONS(6200), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6204), + [sym__float_literal] = ACTIONS(6204), + [sym__boz_literal] = ACTIONS(6204), + [sym__string_literal] = ACTIONS(6204), + [sym__string_literal_kind] = ACTIONS(6204), }, - [2194] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6400), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), + [2042] = { + [aux_sym_preproc_include_token1] = ACTIONS(5896), + [aux_sym_preproc_def_token1] = ACTIONS(5896), + [aux_sym_preproc_if_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5896), + [sym_preproc_directive] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(5896), + [sym_preproc_comment] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(5900), + [anon_sym_DASH] = ACTIONS(5900), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5896), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5896), + [aux_sym_procedure_attributes_token3] = ACTIONS(5896), + [aux_sym_contains_statement_token1] = ACTIONS(5896), + [aux_sym_use_statement_token2] = ACTIONS(5896), + [aux_sym_implicit_statement_token4] = ACTIONS(5896), + [aux_sym_save_statement_token1] = ACTIONS(5896), + [aux_sym_private_statement_token1] = ACTIONS(5896), + [aux_sym_public_statement_token1] = ACTIONS(5896), + [aux_sym_derived_type_definition_token1] = ACTIONS(5896), + [aux_sym_procedure_attribute_token6] = ACTIONS(5896), + [aux_sym_variable_attributes_token2] = ACTIONS(5896), + [aux_sym_variable_attributes_token3] = ACTIONS(5896), + [aux_sym_variable_attributes_token5] = ACTIONS(5896), + [aux_sym__intrinsic_type_token1] = ACTIONS(5896), + [aux_sym__intrinsic_type_token3] = ACTIONS(5896), + [aux_sym__intrinsic_type_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5896), + [aux_sym_type_qualifier_token1] = ACTIONS(5896), + [aux_sym_type_qualifier_token2] = ACTIONS(5896), + [anon_sym_SEMI] = ACTIONS(5900), + [aux_sym_stop_statement_token1] = ACTIONS(5896), + [aux_sym_stop_statement_token2] = ACTIONS(5896), + [aux_sym_subroutine_call_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token2] = ACTIONS(5896), + [aux_sym_keyword_statement_token3] = ACTIONS(5896), + [aux_sym_keyword_statement_token4] = ACTIONS(5896), + [aux_sym_keyword_statement_token6] = ACTIONS(5896), + [aux_sym_keyword_statement_token7] = ACTIONS(5896), + [aux_sym_include_statement_token1] = ACTIONS(5896), + [aux_sym_data_statement_token1] = ACTIONS(5896), + [aux_sym_do_loop_statement_token1] = ACTIONS(5896), + [aux_sym__inline_if_statement_token1] = ACTIONS(5896), + [aux_sym_end_if_statement_token1] = ACTIONS(5896), + [aux_sym_elseif_clause_token2] = ACTIONS(5896), + [aux_sym__inline_where_statement_token1] = ACTIONS(5896), + [aux_sym__forall_control_expression_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token3] = ACTIONS(5896), + [aux_sym_select_type_statement_token1] = ACTIONS(5896), + [aux_sym_select_rank_statement_token2] = ACTIONS(5896), + [aux_sym_block_construct_token1] = ACTIONS(5896), + [aux_sym_associate_statement_token1] = ACTIONS(5896), + [aux_sym_format_statement_token1] = ACTIONS(5896), + [aux_sym_print_statement_token1] = ACTIONS(5896), + [aux_sym_open_statement_token1] = ACTIONS(5896), + [aux_sym_close_statement_token1] = ACTIONS(5896), + [aux_sym_inquire_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token2] = ACTIONS(5896), + [aux_sym_file_position_statement_token3] = ACTIONS(5896), + [aux_sym_file_position_statement_token4] = ACTIONS(5896), + [aux_sym_allocate_statement_token1] = ACTIONS(5896), + [aux_sym_entry_statement_token1] = ACTIONS(5896), + [aux_sym_logical_expression_token5] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_LPAREN_SLASH] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [aux_sym_boolean_literal_token1] = ACTIONS(5900), + [aux_sym_boolean_literal_token2] = ACTIONS(5900), + [aux_sym_null_literal_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token2] = ACTIONS(5896), + [aux_sym_coarray_statement_token6] = ACTIONS(5896), + [aux_sym_coarray_statement_token8] = ACTIONS(5896), + [aux_sym_coarray_statement_token11] = ACTIONS(5896), + [aux_sym_coarray_statement_token12] = ACTIONS(5896), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5896), + [aux_sym_identifier_token1] = ACTIONS(5896), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5900), + [sym__float_literal] = ACTIONS(5900), + [sym__boz_literal] = ACTIONS(5900), + [sym__string_literal] = ACTIONS(5900), + [sym__string_literal_kind] = ACTIONS(5900), }, - [2195] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_end_select_statement_token1] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [2043] = { + [aux_sym_preproc_include_token1] = ACTIONS(5906), + [aux_sym_preproc_def_token1] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), + [sym_preproc_directive] = ACTIONS(5906), + [anon_sym_LPAREN2] = ACTIONS(5906), + [sym_preproc_comment] = ACTIONS(6208), + [anon_sym_PLUS] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5906), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5906), + [aux_sym_procedure_attributes_token3] = ACTIONS(5906), + [aux_sym_contains_statement_token1] = ACTIONS(5906), + [aux_sym_use_statement_token2] = ACTIONS(5906), + [aux_sym_implicit_statement_token4] = ACTIONS(5906), + [aux_sym_save_statement_token1] = ACTIONS(5906), + [aux_sym_private_statement_token1] = ACTIONS(5906), + [aux_sym_public_statement_token1] = ACTIONS(5906), + [aux_sym_derived_type_definition_token1] = ACTIONS(5906), + [aux_sym_procedure_attribute_token6] = ACTIONS(5906), + [aux_sym_variable_attributes_token2] = ACTIONS(5906), + [aux_sym_variable_attributes_token3] = ACTIONS(5906), + [aux_sym_variable_attributes_token5] = ACTIONS(5906), + [aux_sym__intrinsic_type_token1] = ACTIONS(5906), + [aux_sym__intrinsic_type_token3] = ACTIONS(5906), + [aux_sym__intrinsic_type_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5906), + [aux_sym_type_qualifier_token1] = ACTIONS(5906), + [aux_sym_type_qualifier_token2] = ACTIONS(5906), + [anon_sym_SEMI] = ACTIONS(5910), + [aux_sym_stop_statement_token1] = ACTIONS(5906), + [aux_sym_stop_statement_token2] = ACTIONS(5906), + [aux_sym_subroutine_call_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token2] = ACTIONS(5906), + [aux_sym_keyword_statement_token3] = ACTIONS(5906), + [aux_sym_keyword_statement_token4] = ACTIONS(5906), + [aux_sym_keyword_statement_token6] = ACTIONS(5906), + [aux_sym_keyword_statement_token7] = ACTIONS(5906), + [aux_sym_include_statement_token1] = ACTIONS(5906), + [aux_sym_data_statement_token1] = ACTIONS(5906), + [aux_sym_do_loop_statement_token1] = ACTIONS(5906), + [aux_sym__inline_if_statement_token1] = ACTIONS(5906), + [aux_sym_end_if_statement_token1] = ACTIONS(5906), + [aux_sym_elseif_clause_token2] = ACTIONS(5906), + [aux_sym__inline_where_statement_token1] = ACTIONS(5906), + [aux_sym__forall_control_expression_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token3] = ACTIONS(5906), + [aux_sym_select_type_statement_token1] = ACTIONS(5906), + [aux_sym_select_rank_statement_token2] = ACTIONS(5906), + [aux_sym_block_construct_token1] = ACTIONS(5906), + [aux_sym_associate_statement_token1] = ACTIONS(5906), + [aux_sym_format_statement_token1] = ACTIONS(5906), + [aux_sym_print_statement_token1] = ACTIONS(5906), + [aux_sym_open_statement_token1] = ACTIONS(5906), + [aux_sym_close_statement_token1] = ACTIONS(5906), + [aux_sym_inquire_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token2] = ACTIONS(5906), + [aux_sym_file_position_statement_token3] = ACTIONS(5906), + [aux_sym_file_position_statement_token4] = ACTIONS(5906), + [aux_sym_allocate_statement_token1] = ACTIONS(5906), + [aux_sym_entry_statement_token1] = ACTIONS(5906), + [aux_sym_logical_expression_token5] = ACTIONS(5910), + [anon_sym_DOT] = ACTIONS(5906), + [anon_sym_LPAREN_SLASH] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5910), + [aux_sym_boolean_literal_token1] = ACTIONS(5910), + [aux_sym_boolean_literal_token2] = ACTIONS(5910), + [aux_sym_null_literal_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token2] = ACTIONS(5906), + [aux_sym_coarray_statement_token6] = ACTIONS(5906), + [aux_sym_coarray_statement_token8] = ACTIONS(5906), + [aux_sym_coarray_statement_token11] = ACTIONS(5906), + [aux_sym_coarray_statement_token12] = ACTIONS(5906), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5906), + [aux_sym_identifier_token1] = ACTIONS(5906), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5910), + [sym__float_literal] = ACTIONS(5910), + [sym__boz_literal] = ACTIONS(5910), + [sym__string_literal] = ACTIONS(5910), + [sym__string_literal_kind] = ACTIONS(5910), }, - [2196] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_end_select_statement_token1] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [2044] = { + [aux_sym_preproc_include_token1] = ACTIONS(6200), + [aux_sym_preproc_def_token1] = ACTIONS(6200), + [aux_sym_preproc_if_token1] = ACTIONS(6200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6200), + [sym_preproc_directive] = ACTIONS(6200), + [anon_sym_LPAREN2] = ACTIONS(6200), + [sym_preproc_comment] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6204), + [anon_sym_DASH] = ACTIONS(6204), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6200), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6200), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6200), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6200), + [aux_sym_procedure_attributes_token3] = ACTIONS(6200), + [aux_sym_contains_statement_token1] = ACTIONS(6200), + [aux_sym_use_statement_token2] = ACTIONS(6200), + [aux_sym_implicit_statement_token4] = ACTIONS(6200), + [aux_sym_save_statement_token1] = ACTIONS(6200), + [aux_sym_private_statement_token1] = ACTIONS(6200), + [aux_sym_public_statement_token1] = ACTIONS(6200), + [aux_sym_derived_type_definition_token1] = ACTIONS(6200), + [aux_sym_procedure_attribute_token6] = ACTIONS(6200), + [aux_sym_variable_attributes_token2] = ACTIONS(6200), + [aux_sym_variable_attributes_token3] = ACTIONS(6200), + [aux_sym_variable_attributes_token5] = ACTIONS(6200), + [aux_sym__intrinsic_type_token1] = ACTIONS(6200), + [aux_sym__intrinsic_type_token3] = ACTIONS(6200), + [aux_sym__intrinsic_type_token4] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6200), + [aux_sym_type_qualifier_token1] = ACTIONS(6200), + [aux_sym_type_qualifier_token2] = ACTIONS(6200), + [anon_sym_SEMI] = ACTIONS(6204), + [aux_sym_stop_statement_token1] = ACTIONS(6200), + [aux_sym_stop_statement_token2] = ACTIONS(6200), + [aux_sym_subroutine_call_token1] = ACTIONS(6200), + [aux_sym_keyword_statement_token1] = ACTIONS(6200), + [aux_sym_keyword_statement_token2] = ACTIONS(6200), + [aux_sym_keyword_statement_token3] = ACTIONS(6200), + [aux_sym_keyword_statement_token4] = ACTIONS(6200), + [aux_sym_keyword_statement_token6] = ACTIONS(6200), + [aux_sym_keyword_statement_token7] = ACTIONS(6200), + [aux_sym_include_statement_token1] = ACTIONS(6200), + [aux_sym_data_statement_token1] = ACTIONS(6200), + [aux_sym_do_loop_statement_token1] = ACTIONS(6200), + [aux_sym__inline_if_statement_token1] = ACTIONS(6200), + [aux_sym_end_if_statement_token1] = ACTIONS(6200), + [aux_sym_elseif_clause_token2] = ACTIONS(6200), + [aux_sym__inline_where_statement_token1] = ACTIONS(6200), + [aux_sym__forall_control_expression_token1] = ACTIONS(6200), + [aux_sym_select_case_statement_token1] = ACTIONS(6200), + [aux_sym_select_case_statement_token3] = ACTIONS(6200), + [aux_sym_select_type_statement_token1] = ACTIONS(6200), + [aux_sym_select_rank_statement_token2] = ACTIONS(6200), + [aux_sym_block_construct_token1] = ACTIONS(6200), + [aux_sym_associate_statement_token1] = ACTIONS(6200), + [aux_sym_format_statement_token1] = ACTIONS(6200), + [aux_sym_print_statement_token1] = ACTIONS(6200), + [aux_sym_open_statement_token1] = ACTIONS(6200), + [aux_sym_close_statement_token1] = ACTIONS(6200), + [aux_sym_inquire_statement_token1] = ACTIONS(6200), + [aux_sym_file_position_statement_token1] = ACTIONS(6200), + [aux_sym_file_position_statement_token2] = ACTIONS(6200), + [aux_sym_file_position_statement_token3] = ACTIONS(6200), + [aux_sym_file_position_statement_token4] = ACTIONS(6200), + [aux_sym_allocate_statement_token1] = ACTIONS(6200), + [aux_sym_entry_statement_token1] = ACTIONS(6200), + [aux_sym_logical_expression_token5] = ACTIONS(6204), + [anon_sym_DOT] = ACTIONS(6200), + [anon_sym_LPAREN_SLASH] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(6204), + [aux_sym_boolean_literal_token1] = ACTIONS(6204), + [aux_sym_boolean_literal_token2] = ACTIONS(6204), + [aux_sym_null_literal_token1] = ACTIONS(6200), + [aux_sym_coarray_statement_token1] = ACTIONS(6200), + [aux_sym_coarray_statement_token2] = ACTIONS(6200), + [aux_sym_coarray_statement_token6] = ACTIONS(6200), + [aux_sym_coarray_statement_token8] = ACTIONS(6200), + [aux_sym_coarray_statement_token11] = ACTIONS(6200), + [aux_sym_coarray_statement_token12] = ACTIONS(6200), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6200), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6200), + [aux_sym_identifier_token1] = ACTIONS(6200), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6204), + [sym__float_literal] = ACTIONS(6204), + [sym__boz_literal] = ACTIONS(6204), + [sym__string_literal] = ACTIONS(6204), + [sym__string_literal_kind] = ACTIONS(6204), }, - [2197] = { - [aux_sym_preproc_include_token1] = ACTIONS(6402), - [aux_sym_preproc_def_token1] = ACTIONS(6402), - [aux_sym_preproc_if_token1] = ACTIONS(6402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6402), - [sym_preproc_directive] = ACTIONS(6402), - [anon_sym_LPAREN2] = ACTIONS(6402), - [anon_sym_PLUS] = ACTIONS(6404), - [anon_sym_DASH] = ACTIONS(6404), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6402), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6402), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6402), - [aux_sym_procedure_attributes_token3] = ACTIONS(6402), - [aux_sym_end_function_statement_token1] = ACTIONS(6402), - [aux_sym_contains_statement_token1] = ACTIONS(6402), - [aux_sym_use_statement_token2] = ACTIONS(6402), - [aux_sym_implicit_statement_token4] = ACTIONS(6402), - [aux_sym_save_statement_token1] = ACTIONS(6402), - [aux_sym_private_statement_token1] = ACTIONS(6402), - [aux_sym_public_statement_token1] = ACTIONS(6402), - [aux_sym_derived_type_definition_token1] = ACTIONS(6402), - [aux_sym_procedure_attribute_token6] = ACTIONS(6402), - [aux_sym_variable_attributes_token2] = ACTIONS(6402), - [aux_sym_variable_attributes_token3] = ACTIONS(6402), - [aux_sym_variable_attributes_token5] = ACTIONS(6402), - [aux_sym__intrinsic_type_token1] = ACTIONS(6402), - [aux_sym__intrinsic_type_token3] = ACTIONS(6402), - [aux_sym__intrinsic_type_token4] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6402), - [aux_sym_type_qualifier_token1] = ACTIONS(6402), - [aux_sym_type_qualifier_token2] = ACTIONS(6402), - [anon_sym_SEMI] = ACTIONS(6404), - [aux_sym_stop_statement_token1] = ACTIONS(6402), - [aux_sym_stop_statement_token2] = ACTIONS(6402), - [aux_sym_subroutine_call_token1] = ACTIONS(6402), - [aux_sym_keyword_statement_token1] = ACTIONS(6402), - [aux_sym_keyword_statement_token2] = ACTIONS(6402), - [aux_sym_keyword_statement_token3] = ACTIONS(6402), - [aux_sym_keyword_statement_token4] = ACTIONS(6402), - [aux_sym_keyword_statement_token6] = ACTIONS(6402), - [aux_sym_keyword_statement_token7] = ACTIONS(6402), - [aux_sym_include_statement_token1] = ACTIONS(6402), - [aux_sym_data_statement_token1] = ACTIONS(6402), - [aux_sym_do_loop_statement_token1] = ACTIONS(6402), - [aux_sym__inline_if_statement_token1] = ACTIONS(6402), - [aux_sym_end_if_statement_token1] = ACTIONS(6402), - [aux_sym_elseif_clause_token2] = ACTIONS(6402), - [aux_sym__inline_where_statement_token1] = ACTIONS(6402), - [aux_sym__forall_control_expression_token1] = ACTIONS(6402), - [aux_sym_select_case_statement_token1] = ACTIONS(6402), - [aux_sym_select_case_statement_token3] = ACTIONS(6402), - [aux_sym_select_type_statement_token1] = ACTIONS(6402), - [aux_sym_select_rank_statement_token2] = ACTIONS(6402), - [aux_sym_block_construct_token1] = ACTIONS(6402), - [aux_sym_associate_statement_token1] = ACTIONS(6402), - [aux_sym_format_statement_token1] = ACTIONS(6402), - [aux_sym_print_statement_token1] = ACTIONS(6402), - [aux_sym_open_statement_token1] = ACTIONS(6402), - [aux_sym_close_statement_token1] = ACTIONS(6402), - [aux_sym_inquire_statement_token1] = ACTIONS(6402), - [aux_sym_file_position_statement_token1] = ACTIONS(6402), - [aux_sym_file_position_statement_token2] = ACTIONS(6402), - [aux_sym_file_position_statement_token3] = ACTIONS(6402), - [aux_sym_file_position_statement_token4] = ACTIONS(6402), - [aux_sym_allocate_statement_token1] = ACTIONS(6402), - [aux_sym_entry_statement_token1] = ACTIONS(6402), - [aux_sym_logical_expression_token5] = ACTIONS(6404), - [anon_sym_DOT] = ACTIONS(6402), - [anon_sym_LPAREN_SLASH] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(6404), - [aux_sym_boolean_literal_token1] = ACTIONS(6404), - [aux_sym_boolean_literal_token2] = ACTIONS(6404), - [aux_sym_null_literal_token1] = ACTIONS(6402), - [aux_sym_coarray_statement_token1] = ACTIONS(6402), - [aux_sym_coarray_statement_token2] = ACTIONS(6402), - [aux_sym_coarray_statement_token6] = ACTIONS(6402), - [aux_sym_coarray_statement_token8] = ACTIONS(6402), - [aux_sym_coarray_statement_token11] = ACTIONS(6402), - [aux_sym_coarray_statement_token12] = ACTIONS(6402), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6402), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6402), - [aux_sym_identifier_token1] = ACTIONS(6402), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6404), - [sym__float_literal] = ACTIONS(6404), - [sym__boz_literal] = ACTIONS(6404), - [sym__string_literal] = ACTIONS(6404), - [sym__string_literal_kind] = ACTIONS(6404), + [2045] = { + [aux_sym_preproc_include_token1] = ACTIONS(5896), + [aux_sym_preproc_def_token1] = ACTIONS(5896), + [aux_sym_preproc_if_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5896), + [sym_preproc_directive] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(5896), + [sym_preproc_comment] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(5900), + [anon_sym_DASH] = ACTIONS(5900), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5896), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5896), + [aux_sym_procedure_attributes_token3] = ACTIONS(5896), + [aux_sym_contains_statement_token1] = ACTIONS(5896), + [aux_sym_use_statement_token2] = ACTIONS(5896), + [aux_sym_implicit_statement_token4] = ACTIONS(5896), + [aux_sym_save_statement_token1] = ACTIONS(5896), + [aux_sym_private_statement_token1] = ACTIONS(5896), + [aux_sym_public_statement_token1] = ACTIONS(5896), + [aux_sym_derived_type_definition_token1] = ACTIONS(5896), + [aux_sym_procedure_attribute_token6] = ACTIONS(5896), + [aux_sym_variable_attributes_token2] = ACTIONS(5896), + [aux_sym_variable_attributes_token3] = ACTIONS(5896), + [aux_sym_variable_attributes_token5] = ACTIONS(5896), + [aux_sym__intrinsic_type_token1] = ACTIONS(5896), + [aux_sym__intrinsic_type_token3] = ACTIONS(5896), + [aux_sym__intrinsic_type_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5896), + [aux_sym_type_qualifier_token1] = ACTIONS(5896), + [aux_sym_type_qualifier_token2] = ACTIONS(5896), + [anon_sym_SEMI] = ACTIONS(5900), + [aux_sym_stop_statement_token1] = ACTIONS(5896), + [aux_sym_stop_statement_token2] = ACTIONS(5896), + [aux_sym_subroutine_call_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token2] = ACTIONS(5896), + [aux_sym_keyword_statement_token3] = ACTIONS(5896), + [aux_sym_keyword_statement_token4] = ACTIONS(5896), + [aux_sym_keyword_statement_token6] = ACTIONS(5896), + [aux_sym_keyword_statement_token7] = ACTIONS(5896), + [aux_sym_include_statement_token1] = ACTIONS(5896), + [aux_sym_data_statement_token1] = ACTIONS(5896), + [aux_sym_do_loop_statement_token1] = ACTIONS(5896), + [aux_sym__inline_if_statement_token1] = ACTIONS(5896), + [aux_sym_end_if_statement_token1] = ACTIONS(5896), + [aux_sym_elseif_clause_token2] = ACTIONS(5896), + [aux_sym__inline_where_statement_token1] = ACTIONS(5896), + [aux_sym__forall_control_expression_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token3] = ACTIONS(5896), + [aux_sym_select_type_statement_token1] = ACTIONS(5896), + [aux_sym_select_rank_statement_token2] = ACTIONS(5896), + [aux_sym_block_construct_token1] = ACTIONS(5896), + [aux_sym_associate_statement_token1] = ACTIONS(5896), + [aux_sym_format_statement_token1] = ACTIONS(5896), + [aux_sym_print_statement_token1] = ACTIONS(5896), + [aux_sym_open_statement_token1] = ACTIONS(5896), + [aux_sym_close_statement_token1] = ACTIONS(5896), + [aux_sym_inquire_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token2] = ACTIONS(5896), + [aux_sym_file_position_statement_token3] = ACTIONS(5896), + [aux_sym_file_position_statement_token4] = ACTIONS(5896), + [aux_sym_allocate_statement_token1] = ACTIONS(5896), + [aux_sym_entry_statement_token1] = ACTIONS(5896), + [aux_sym_logical_expression_token5] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_LPAREN_SLASH] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [aux_sym_boolean_literal_token1] = ACTIONS(5900), + [aux_sym_boolean_literal_token2] = ACTIONS(5900), + [aux_sym_null_literal_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token2] = ACTIONS(5896), + [aux_sym_coarray_statement_token6] = ACTIONS(5896), + [aux_sym_coarray_statement_token8] = ACTIONS(5896), + [aux_sym_coarray_statement_token11] = ACTIONS(5896), + [aux_sym_coarray_statement_token12] = ACTIONS(5896), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5896), + [aux_sym_identifier_token1] = ACTIONS(5896), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5900), + [sym__float_literal] = ACTIONS(5900), + [sym__boz_literal] = ACTIONS(5900), + [sym__string_literal] = ACTIONS(5900), + [sym__string_literal_kind] = ACTIONS(5900), }, - [2198] = { - [aux_sym_preproc_include_token1] = ACTIONS(6406), - [aux_sym_preproc_def_token1] = ACTIONS(6406), - [aux_sym_preproc_if_token1] = ACTIONS(6406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6406), - [sym_preproc_directive] = ACTIONS(6406), - [anon_sym_LPAREN2] = ACTIONS(6406), - [anon_sym_PLUS] = ACTIONS(6408), - [anon_sym_DASH] = ACTIONS(6408), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6406), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6406), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6406), - [aux_sym_procedure_attributes_token3] = ACTIONS(6406), - [aux_sym_end_function_statement_token1] = ACTIONS(6406), - [aux_sym_contains_statement_token1] = ACTIONS(6406), - [aux_sym_use_statement_token2] = ACTIONS(6406), - [aux_sym_implicit_statement_token4] = ACTIONS(6406), - [aux_sym_save_statement_token1] = ACTIONS(6406), - [aux_sym_private_statement_token1] = ACTIONS(6406), - [aux_sym_public_statement_token1] = ACTIONS(6406), - [aux_sym_derived_type_definition_token1] = ACTIONS(6406), - [aux_sym_procedure_attribute_token6] = ACTIONS(6406), - [aux_sym_variable_attributes_token2] = ACTIONS(6406), - [aux_sym_variable_attributes_token3] = ACTIONS(6406), - [aux_sym_variable_attributes_token5] = ACTIONS(6406), - [aux_sym__intrinsic_type_token1] = ACTIONS(6406), - [aux_sym__intrinsic_type_token3] = ACTIONS(6406), - [aux_sym__intrinsic_type_token4] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6406), - [aux_sym_type_qualifier_token1] = ACTIONS(6406), - [aux_sym_type_qualifier_token2] = ACTIONS(6406), - [anon_sym_SEMI] = ACTIONS(6408), - [aux_sym_stop_statement_token1] = ACTIONS(6406), - [aux_sym_stop_statement_token2] = ACTIONS(6406), - [aux_sym_subroutine_call_token1] = ACTIONS(6406), - [aux_sym_keyword_statement_token1] = ACTIONS(6406), - [aux_sym_keyword_statement_token2] = ACTIONS(6406), - [aux_sym_keyword_statement_token3] = ACTIONS(6406), - [aux_sym_keyword_statement_token4] = ACTIONS(6406), - [aux_sym_keyword_statement_token6] = ACTIONS(6406), - [aux_sym_keyword_statement_token7] = ACTIONS(6406), - [aux_sym_include_statement_token1] = ACTIONS(6406), - [aux_sym_data_statement_token1] = ACTIONS(6406), - [aux_sym_do_loop_statement_token1] = ACTIONS(6406), - [aux_sym__inline_if_statement_token1] = ACTIONS(6406), - [aux_sym_end_if_statement_token1] = ACTIONS(6406), - [aux_sym_elseif_clause_token2] = ACTIONS(6406), - [aux_sym__inline_where_statement_token1] = ACTIONS(6406), - [aux_sym__forall_control_expression_token1] = ACTIONS(6406), - [aux_sym_select_case_statement_token1] = ACTIONS(6406), - [aux_sym_select_case_statement_token3] = ACTIONS(6406), - [aux_sym_select_type_statement_token1] = ACTIONS(6406), - [aux_sym_select_rank_statement_token2] = ACTIONS(6406), - [aux_sym_block_construct_token1] = ACTIONS(6406), - [aux_sym_associate_statement_token1] = ACTIONS(6406), - [aux_sym_format_statement_token1] = ACTIONS(6406), - [aux_sym_print_statement_token1] = ACTIONS(6406), - [aux_sym_open_statement_token1] = ACTIONS(6406), - [aux_sym_close_statement_token1] = ACTIONS(6406), - [aux_sym_inquire_statement_token1] = ACTIONS(6406), - [aux_sym_file_position_statement_token1] = ACTIONS(6406), - [aux_sym_file_position_statement_token2] = ACTIONS(6406), - [aux_sym_file_position_statement_token3] = ACTIONS(6406), - [aux_sym_file_position_statement_token4] = ACTIONS(6406), - [aux_sym_allocate_statement_token1] = ACTIONS(6406), - [aux_sym_entry_statement_token1] = ACTIONS(6406), - [aux_sym_logical_expression_token5] = ACTIONS(6408), - [anon_sym_DOT] = ACTIONS(6406), - [anon_sym_LPAREN_SLASH] = ACTIONS(6408), - [anon_sym_LBRACK] = ACTIONS(6408), - [aux_sym_boolean_literal_token1] = ACTIONS(6408), - [aux_sym_boolean_literal_token2] = ACTIONS(6408), - [aux_sym_null_literal_token1] = ACTIONS(6406), - [aux_sym_coarray_statement_token1] = ACTIONS(6406), - [aux_sym_coarray_statement_token2] = ACTIONS(6406), - [aux_sym_coarray_statement_token6] = ACTIONS(6406), - [aux_sym_coarray_statement_token8] = ACTIONS(6406), - [aux_sym_coarray_statement_token11] = ACTIONS(6406), - [aux_sym_coarray_statement_token12] = ACTIONS(6406), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6406), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6406), - [aux_sym_identifier_token1] = ACTIONS(6406), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6408), - [sym__float_literal] = ACTIONS(6408), - [sym__boz_literal] = ACTIONS(6408), - [sym__string_literal] = ACTIONS(6408), - [sym__string_literal_kind] = ACTIONS(6408), + [2046] = { + [aux_sym_preproc_include_token1] = ACTIONS(5906), + [aux_sym_preproc_def_token1] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), + [sym_preproc_directive] = ACTIONS(5906), + [anon_sym_LPAREN2] = ACTIONS(5906), + [sym_preproc_comment] = ACTIONS(6214), + [anon_sym_PLUS] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5906), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5906), + [aux_sym_procedure_attributes_token3] = ACTIONS(5906), + [aux_sym_contains_statement_token1] = ACTIONS(5906), + [aux_sym_use_statement_token2] = ACTIONS(5906), + [aux_sym_implicit_statement_token4] = ACTIONS(5906), + [aux_sym_save_statement_token1] = ACTIONS(5906), + [aux_sym_private_statement_token1] = ACTIONS(5906), + [aux_sym_public_statement_token1] = ACTIONS(5906), + [aux_sym_derived_type_definition_token1] = ACTIONS(5906), + [aux_sym_procedure_attribute_token6] = ACTIONS(5906), + [aux_sym_variable_attributes_token2] = ACTIONS(5906), + [aux_sym_variable_attributes_token3] = ACTIONS(5906), + [aux_sym_variable_attributes_token5] = ACTIONS(5906), + [aux_sym__intrinsic_type_token1] = ACTIONS(5906), + [aux_sym__intrinsic_type_token3] = ACTIONS(5906), + [aux_sym__intrinsic_type_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5906), + [aux_sym_type_qualifier_token1] = ACTIONS(5906), + [aux_sym_type_qualifier_token2] = ACTIONS(5906), + [anon_sym_SEMI] = ACTIONS(5910), + [aux_sym_stop_statement_token1] = ACTIONS(5906), + [aux_sym_stop_statement_token2] = ACTIONS(5906), + [aux_sym_subroutine_call_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token2] = ACTIONS(5906), + [aux_sym_keyword_statement_token3] = ACTIONS(5906), + [aux_sym_keyword_statement_token4] = ACTIONS(5906), + [aux_sym_keyword_statement_token6] = ACTIONS(5906), + [aux_sym_keyword_statement_token7] = ACTIONS(5906), + [aux_sym_include_statement_token1] = ACTIONS(5906), + [aux_sym_data_statement_token1] = ACTIONS(5906), + [aux_sym_do_loop_statement_token1] = ACTIONS(5906), + [aux_sym__inline_if_statement_token1] = ACTIONS(5906), + [aux_sym_end_if_statement_token1] = ACTIONS(5906), + [aux_sym_elseif_clause_token2] = ACTIONS(5906), + [aux_sym__inline_where_statement_token1] = ACTIONS(5906), + [aux_sym__forall_control_expression_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token3] = ACTIONS(5906), + [aux_sym_select_type_statement_token1] = ACTIONS(5906), + [aux_sym_select_rank_statement_token2] = ACTIONS(5906), + [aux_sym_block_construct_token1] = ACTIONS(5906), + [aux_sym_associate_statement_token1] = ACTIONS(5906), + [aux_sym_format_statement_token1] = ACTIONS(5906), + [aux_sym_print_statement_token1] = ACTIONS(5906), + [aux_sym_open_statement_token1] = ACTIONS(5906), + [aux_sym_close_statement_token1] = ACTIONS(5906), + [aux_sym_inquire_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token2] = ACTIONS(5906), + [aux_sym_file_position_statement_token3] = ACTIONS(5906), + [aux_sym_file_position_statement_token4] = ACTIONS(5906), + [aux_sym_allocate_statement_token1] = ACTIONS(5906), + [aux_sym_entry_statement_token1] = ACTIONS(5906), + [aux_sym_logical_expression_token5] = ACTIONS(5910), + [anon_sym_DOT] = ACTIONS(5906), + [anon_sym_LPAREN_SLASH] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5910), + [aux_sym_boolean_literal_token1] = ACTIONS(5910), + [aux_sym_boolean_literal_token2] = ACTIONS(5910), + [aux_sym_null_literal_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token2] = ACTIONS(5906), + [aux_sym_coarray_statement_token6] = ACTIONS(5906), + [aux_sym_coarray_statement_token8] = ACTIONS(5906), + [aux_sym_coarray_statement_token11] = ACTIONS(5906), + [aux_sym_coarray_statement_token12] = ACTIONS(5906), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5906), + [aux_sym_identifier_token1] = ACTIONS(5906), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5910), + [sym__float_literal] = ACTIONS(5910), + [sym__boz_literal] = ACTIONS(5910), + [sym__string_literal] = ACTIONS(5910), + [sym__string_literal_kind] = ACTIONS(5910), }, - [2199] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6410), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_end_forall_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), + [2047] = { + [aux_sym_preproc_include_token1] = ACTIONS(6092), + [aux_sym_preproc_def_token1] = ACTIONS(6092), + [aux_sym_preproc_if_token1] = ACTIONS(6092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6092), + [sym_preproc_directive] = ACTIONS(6092), + [anon_sym_LPAREN2] = ACTIONS(6092), + [sym_preproc_comment] = ACTIONS(6216), + [anon_sym_PLUS] = ACTIONS(6096), + [anon_sym_DASH] = ACTIONS(6096), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6092), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6092), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6092), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6092), + [aux_sym_procedure_attributes_token3] = ACTIONS(6092), + [aux_sym_contains_statement_token1] = ACTIONS(6092), + [aux_sym_use_statement_token2] = ACTIONS(6092), + [aux_sym_implicit_statement_token4] = ACTIONS(6092), + [aux_sym_save_statement_token1] = ACTIONS(6092), + [aux_sym_private_statement_token1] = ACTIONS(6092), + [aux_sym_public_statement_token1] = ACTIONS(6092), + [aux_sym_derived_type_definition_token1] = ACTIONS(6092), + [aux_sym_procedure_attribute_token6] = ACTIONS(6092), + [aux_sym_variable_attributes_token2] = ACTIONS(6092), + [aux_sym_variable_attributes_token3] = ACTIONS(6092), + [aux_sym_variable_attributes_token5] = ACTIONS(6092), + [aux_sym__intrinsic_type_token1] = ACTIONS(6092), + [aux_sym__intrinsic_type_token3] = ACTIONS(6092), + [aux_sym__intrinsic_type_token4] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6092), + [aux_sym_type_qualifier_token1] = ACTIONS(6092), + [aux_sym_type_qualifier_token2] = ACTIONS(6092), + [anon_sym_SEMI] = ACTIONS(6096), + [aux_sym_stop_statement_token1] = ACTIONS(6092), + [aux_sym_stop_statement_token2] = ACTIONS(6092), + [aux_sym_subroutine_call_token1] = ACTIONS(6092), + [aux_sym_keyword_statement_token1] = ACTIONS(6092), + [aux_sym_keyword_statement_token2] = ACTIONS(6092), + [aux_sym_keyword_statement_token3] = ACTIONS(6092), + [aux_sym_keyword_statement_token4] = ACTIONS(6092), + [aux_sym_keyword_statement_token6] = ACTIONS(6092), + [aux_sym_keyword_statement_token7] = ACTIONS(6092), + [aux_sym_include_statement_token1] = ACTIONS(6092), + [aux_sym_data_statement_token1] = ACTIONS(6092), + [aux_sym_do_loop_statement_token1] = ACTIONS(6092), + [aux_sym__inline_if_statement_token1] = ACTIONS(6092), + [aux_sym_end_if_statement_token1] = ACTIONS(6092), + [aux_sym_elseif_clause_token2] = ACTIONS(6092), + [aux_sym__inline_where_statement_token1] = ACTIONS(6092), + [aux_sym__forall_control_expression_token1] = ACTIONS(6092), + [aux_sym_select_case_statement_token1] = ACTIONS(6092), + [aux_sym_select_case_statement_token3] = ACTIONS(6092), + [aux_sym_select_type_statement_token1] = ACTIONS(6092), + [aux_sym_select_rank_statement_token2] = ACTIONS(6092), + [aux_sym_block_construct_token1] = ACTIONS(6092), + [aux_sym_associate_statement_token1] = ACTIONS(6092), + [aux_sym_format_statement_token1] = ACTIONS(6092), + [aux_sym_print_statement_token1] = ACTIONS(6092), + [aux_sym_open_statement_token1] = ACTIONS(6092), + [aux_sym_close_statement_token1] = ACTIONS(6092), + [aux_sym_inquire_statement_token1] = ACTIONS(6092), + [aux_sym_file_position_statement_token1] = ACTIONS(6092), + [aux_sym_file_position_statement_token2] = ACTIONS(6092), + [aux_sym_file_position_statement_token3] = ACTIONS(6092), + [aux_sym_file_position_statement_token4] = ACTIONS(6092), + [aux_sym_allocate_statement_token1] = ACTIONS(6092), + [aux_sym_entry_statement_token1] = ACTIONS(6092), + [aux_sym_logical_expression_token5] = ACTIONS(6096), + [anon_sym_DOT] = ACTIONS(6092), + [anon_sym_LPAREN_SLASH] = ACTIONS(6096), + [anon_sym_LBRACK] = ACTIONS(6096), + [aux_sym_boolean_literal_token1] = ACTIONS(6096), + [aux_sym_boolean_literal_token2] = ACTIONS(6096), + [aux_sym_null_literal_token1] = ACTIONS(6092), + [aux_sym_coarray_statement_token1] = ACTIONS(6092), + [aux_sym_coarray_statement_token2] = ACTIONS(6092), + [aux_sym_coarray_statement_token6] = ACTIONS(6092), + [aux_sym_coarray_statement_token8] = ACTIONS(6092), + [aux_sym_coarray_statement_token11] = ACTIONS(6092), + [aux_sym_coarray_statement_token12] = ACTIONS(6092), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6092), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6092), + [aux_sym_identifier_token1] = ACTIONS(6092), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6096), + [sym__float_literal] = ACTIONS(6096), + [sym__boz_literal] = ACTIONS(6096), + [sym__string_literal] = ACTIONS(6096), + [sym__string_literal_kind] = ACTIONS(6096), }, - [2200] = { - [aux_sym_preproc_include_token1] = ACTIONS(6114), - [aux_sym_preproc_def_token1] = ACTIONS(6114), - [aux_sym_preproc_if_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6114), - [sym_preproc_directive] = ACTIONS(6114), - [anon_sym_LPAREN2] = ACTIONS(6114), - [anon_sym_PLUS] = ACTIONS(6118), - [anon_sym_DASH] = ACTIONS(6118), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6114), - [aux_sym_procedure_attributes_token3] = ACTIONS(6114), - [aux_sym_end_function_statement_token1] = ACTIONS(6114), - [aux_sym_contains_statement_token1] = ACTIONS(6114), - [aux_sym_use_statement_token2] = ACTIONS(6114), - [aux_sym_implicit_statement_token4] = ACTIONS(6114), - [aux_sym_save_statement_token1] = ACTIONS(6114), - [aux_sym_private_statement_token1] = ACTIONS(6114), - [aux_sym_public_statement_token1] = ACTIONS(6114), - [aux_sym_derived_type_definition_token1] = ACTIONS(6114), - [aux_sym_procedure_attribute_token6] = ACTIONS(6114), - [aux_sym_variable_attributes_token2] = ACTIONS(6114), - [aux_sym_variable_attributes_token3] = ACTIONS(6114), - [aux_sym_variable_attributes_token5] = ACTIONS(6114), - [aux_sym__intrinsic_type_token1] = ACTIONS(6114), - [aux_sym__intrinsic_type_token3] = ACTIONS(6114), - [aux_sym__intrinsic_type_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6114), - [aux_sym_type_qualifier_token1] = ACTIONS(6114), - [aux_sym_type_qualifier_token2] = ACTIONS(6114), - [anon_sym_SEMI] = ACTIONS(6118), - [aux_sym_stop_statement_token1] = ACTIONS(6114), - [aux_sym_stop_statement_token2] = ACTIONS(6114), - [aux_sym_subroutine_call_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token2] = ACTIONS(6114), - [aux_sym_keyword_statement_token3] = ACTIONS(6114), - [aux_sym_keyword_statement_token4] = ACTIONS(6114), - [aux_sym_keyword_statement_token6] = ACTIONS(6114), - [aux_sym_keyword_statement_token7] = ACTIONS(6114), - [aux_sym_include_statement_token1] = ACTIONS(6114), - [aux_sym_data_statement_token1] = ACTIONS(6114), - [aux_sym_do_loop_statement_token1] = ACTIONS(6114), - [aux_sym__inline_if_statement_token1] = ACTIONS(6114), - [aux_sym_end_if_statement_token1] = ACTIONS(6114), - [aux_sym_elseif_clause_token2] = ACTIONS(6114), - [aux_sym__inline_where_statement_token1] = ACTIONS(6114), - [aux_sym__forall_control_expression_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token3] = ACTIONS(6114), - [aux_sym_select_type_statement_token1] = ACTIONS(6114), - [aux_sym_select_rank_statement_token2] = ACTIONS(6114), - [aux_sym_block_construct_token1] = ACTIONS(6114), - [aux_sym_associate_statement_token1] = ACTIONS(6114), - [aux_sym_format_statement_token1] = ACTIONS(6114), - [aux_sym_print_statement_token1] = ACTIONS(6114), - [aux_sym_open_statement_token1] = ACTIONS(6114), - [aux_sym_close_statement_token1] = ACTIONS(6114), - [aux_sym_inquire_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token2] = ACTIONS(6114), - [aux_sym_file_position_statement_token3] = ACTIONS(6114), - [aux_sym_file_position_statement_token4] = ACTIONS(6114), - [aux_sym_allocate_statement_token1] = ACTIONS(6114), - [aux_sym_entry_statement_token1] = ACTIONS(6114), - [aux_sym_logical_expression_token5] = ACTIONS(6118), - [anon_sym_DOT] = ACTIONS(6114), - [anon_sym_LPAREN_SLASH] = ACTIONS(6118), - [anon_sym_LBRACK] = ACTIONS(6118), - [aux_sym_boolean_literal_token1] = ACTIONS(6118), - [aux_sym_boolean_literal_token2] = ACTIONS(6118), - [aux_sym_null_literal_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token2] = ACTIONS(6114), - [aux_sym_coarray_statement_token6] = ACTIONS(6114), - [aux_sym_coarray_statement_token8] = ACTIONS(6114), - [aux_sym_coarray_statement_token11] = ACTIONS(6114), - [aux_sym_coarray_statement_token12] = ACTIONS(6114), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6114), - [aux_sym_identifier_token1] = ACTIONS(6114), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6118), - [sym__float_literal] = ACTIONS(6118), - [sym__boz_literal] = ACTIONS(6118), - [sym__string_literal] = ACTIONS(6118), - [sym__string_literal_kind] = ACTIONS(6118), + [2048] = { + [aux_sym_preproc_include_token1] = ACTIONS(6192), + [aux_sym_preproc_def_token1] = ACTIONS(6192), + [aux_sym_preproc_if_token1] = ACTIONS(6192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6192), + [sym_preproc_directive] = ACTIONS(6192), + [anon_sym_LPAREN2] = ACTIONS(6192), + [sym_preproc_comment] = ACTIONS(6218), + [anon_sym_PLUS] = ACTIONS(6196), + [anon_sym_DASH] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6192), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6192), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6192), + [aux_sym_procedure_attributes_token3] = ACTIONS(6192), + [aux_sym_end_function_statement_token1] = ACTIONS(6192), + [aux_sym_contains_statement_token1] = ACTIONS(6192), + [aux_sym_use_statement_token2] = ACTIONS(6192), + [aux_sym_implicit_statement_token4] = ACTIONS(6192), + [aux_sym_save_statement_token1] = ACTIONS(6192), + [aux_sym_private_statement_token1] = ACTIONS(6192), + [aux_sym_public_statement_token1] = ACTIONS(6192), + [aux_sym_derived_type_definition_token1] = ACTIONS(6192), + [aux_sym_procedure_attribute_token6] = ACTIONS(6192), + [aux_sym_variable_attributes_token2] = ACTIONS(6192), + [aux_sym_variable_attributes_token3] = ACTIONS(6192), + [aux_sym_variable_attributes_token5] = ACTIONS(6192), + [aux_sym__intrinsic_type_token1] = ACTIONS(6192), + [aux_sym__intrinsic_type_token3] = ACTIONS(6192), + [aux_sym__intrinsic_type_token4] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6192), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6192), + [aux_sym_type_qualifier_token1] = ACTIONS(6192), + [aux_sym_type_qualifier_token2] = ACTIONS(6192), + [anon_sym_SEMI] = ACTIONS(6196), + [aux_sym_stop_statement_token1] = ACTIONS(6192), + [aux_sym_stop_statement_token2] = ACTIONS(6192), + [aux_sym_subroutine_call_token1] = ACTIONS(6192), + [aux_sym_keyword_statement_token1] = ACTIONS(6192), + [aux_sym_keyword_statement_token2] = ACTIONS(6192), + [aux_sym_keyword_statement_token3] = ACTIONS(6192), + [aux_sym_keyword_statement_token4] = ACTIONS(6192), + [aux_sym_keyword_statement_token6] = ACTIONS(6192), + [aux_sym_keyword_statement_token7] = ACTIONS(6192), + [aux_sym_include_statement_token1] = ACTIONS(6192), + [aux_sym_data_statement_token1] = ACTIONS(6192), + [aux_sym_do_loop_statement_token1] = ACTIONS(6192), + [aux_sym__inline_if_statement_token1] = ACTIONS(6192), + [aux_sym_end_if_statement_token1] = ACTIONS(6192), + [aux_sym_elseif_clause_token2] = ACTIONS(6192), + [aux_sym__inline_where_statement_token1] = ACTIONS(6192), + [aux_sym__forall_control_expression_token1] = ACTIONS(6192), + [aux_sym_select_case_statement_token1] = ACTIONS(6192), + [aux_sym_select_case_statement_token3] = ACTIONS(6192), + [aux_sym_select_type_statement_token1] = ACTIONS(6192), + [aux_sym_select_rank_statement_token2] = ACTIONS(6192), + [aux_sym_block_construct_token1] = ACTIONS(6192), + [aux_sym_associate_statement_token1] = ACTIONS(6192), + [aux_sym_format_statement_token1] = ACTIONS(6192), + [aux_sym_print_statement_token1] = ACTIONS(6192), + [aux_sym_open_statement_token1] = ACTIONS(6192), + [aux_sym_close_statement_token1] = ACTIONS(6192), + [aux_sym_inquire_statement_token1] = ACTIONS(6192), + [aux_sym_file_position_statement_token1] = ACTIONS(6192), + [aux_sym_file_position_statement_token2] = ACTIONS(6192), + [aux_sym_file_position_statement_token3] = ACTIONS(6192), + [aux_sym_file_position_statement_token4] = ACTIONS(6192), + [aux_sym_allocate_statement_token1] = ACTIONS(6192), + [aux_sym_entry_statement_token1] = ACTIONS(6192), + [aux_sym_logical_expression_token5] = ACTIONS(6196), + [anon_sym_DOT] = ACTIONS(6192), + [anon_sym_LPAREN_SLASH] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(6196), + [aux_sym_boolean_literal_token1] = ACTIONS(6196), + [aux_sym_boolean_literal_token2] = ACTIONS(6196), + [aux_sym_null_literal_token1] = ACTIONS(6192), + [aux_sym_coarray_statement_token1] = ACTIONS(6192), + [aux_sym_coarray_statement_token2] = ACTIONS(6192), + [aux_sym_coarray_statement_token6] = ACTIONS(6192), + [aux_sym_coarray_statement_token8] = ACTIONS(6192), + [aux_sym_coarray_statement_token11] = ACTIONS(6192), + [aux_sym_coarray_statement_token12] = ACTIONS(6192), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6192), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6192), + [aux_sym_identifier_token1] = ACTIONS(6192), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6196), + [sym__float_literal] = ACTIONS(6196), + [sym__boz_literal] = ACTIONS(6196), + [sym__string_literal] = ACTIONS(6196), + [sym__string_literal_kind] = ACTIONS(6196), }, - [2201] = { - [aux_sym_preproc_include_token1] = ACTIONS(6034), - [aux_sym_preproc_def_token1] = ACTIONS(6034), - [aux_sym_preproc_if_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6034), - [sym_preproc_directive] = ACTIONS(6034), - [anon_sym_LPAREN2] = ACTIONS(6034), - [anon_sym_PLUS] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6038), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6034), - [aux_sym_procedure_attributes_token3] = ACTIONS(6034), - [aux_sym_end_function_statement_token1] = ACTIONS(6034), - [aux_sym_contains_statement_token1] = ACTIONS(6034), - [aux_sym_use_statement_token2] = ACTIONS(6034), - [aux_sym_implicit_statement_token4] = ACTIONS(6034), - [aux_sym_save_statement_token1] = ACTIONS(6034), - [aux_sym_private_statement_token1] = ACTIONS(6034), - [aux_sym_public_statement_token1] = ACTIONS(6034), - [aux_sym_derived_type_definition_token1] = ACTIONS(6034), - [aux_sym_procedure_attribute_token6] = ACTIONS(6034), - [aux_sym_variable_attributes_token2] = ACTIONS(6034), - [aux_sym_variable_attributes_token3] = ACTIONS(6034), - [aux_sym_variable_attributes_token5] = ACTIONS(6034), - [aux_sym__intrinsic_type_token1] = ACTIONS(6034), - [aux_sym__intrinsic_type_token3] = ACTIONS(6034), - [aux_sym__intrinsic_type_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6034), - [aux_sym_type_qualifier_token1] = ACTIONS(6034), - [aux_sym_type_qualifier_token2] = ACTIONS(6034), - [anon_sym_SEMI] = ACTIONS(6038), - [aux_sym_stop_statement_token1] = ACTIONS(6034), - [aux_sym_stop_statement_token2] = ACTIONS(6034), - [aux_sym_subroutine_call_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token2] = ACTIONS(6034), - [aux_sym_keyword_statement_token3] = ACTIONS(6034), - [aux_sym_keyword_statement_token4] = ACTIONS(6034), - [aux_sym_keyword_statement_token6] = ACTIONS(6034), - [aux_sym_keyword_statement_token7] = ACTIONS(6034), - [aux_sym_include_statement_token1] = ACTIONS(6034), - [aux_sym_data_statement_token1] = ACTIONS(6034), - [aux_sym_do_loop_statement_token1] = ACTIONS(6034), - [aux_sym__inline_if_statement_token1] = ACTIONS(6034), - [aux_sym_end_if_statement_token1] = ACTIONS(6034), - [aux_sym_elseif_clause_token2] = ACTIONS(6034), - [aux_sym__inline_where_statement_token1] = ACTIONS(6034), - [aux_sym__forall_control_expression_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token3] = ACTIONS(6034), - [aux_sym_select_type_statement_token1] = ACTIONS(6034), - [aux_sym_select_rank_statement_token2] = ACTIONS(6034), - [aux_sym_block_construct_token1] = ACTIONS(6034), - [aux_sym_associate_statement_token1] = ACTIONS(6034), - [aux_sym_format_statement_token1] = ACTIONS(6034), - [aux_sym_print_statement_token1] = ACTIONS(6034), - [aux_sym_open_statement_token1] = ACTIONS(6034), - [aux_sym_close_statement_token1] = ACTIONS(6034), - [aux_sym_inquire_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token2] = ACTIONS(6034), - [aux_sym_file_position_statement_token3] = ACTIONS(6034), - [aux_sym_file_position_statement_token4] = ACTIONS(6034), - [aux_sym_allocate_statement_token1] = ACTIONS(6034), - [aux_sym_entry_statement_token1] = ACTIONS(6034), - [aux_sym_logical_expression_token5] = ACTIONS(6038), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_LPAREN_SLASH] = ACTIONS(6038), - [anon_sym_LBRACK] = ACTIONS(6038), - [aux_sym_boolean_literal_token1] = ACTIONS(6038), - [aux_sym_boolean_literal_token2] = ACTIONS(6038), - [aux_sym_null_literal_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token2] = ACTIONS(6034), - [aux_sym_coarray_statement_token6] = ACTIONS(6034), - [aux_sym_coarray_statement_token8] = ACTIONS(6034), - [aux_sym_coarray_statement_token11] = ACTIONS(6034), - [aux_sym_coarray_statement_token12] = ACTIONS(6034), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6034), - [aux_sym_identifier_token1] = ACTIONS(6034), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6038), - [sym__float_literal] = ACTIONS(6038), - [sym__boz_literal] = ACTIONS(6038), - [sym__string_literal] = ACTIONS(6038), - [sym__string_literal_kind] = ACTIONS(6038), + [2049] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token2] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6220), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_contains_statement_token1] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [2202] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6412), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_end_forall_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), + [2050] = { + [aux_sym_preproc_include_token1] = ACTIONS(6098), + [aux_sym_preproc_def_token1] = ACTIONS(6098), + [aux_sym_preproc_if_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6098), + [sym_preproc_directive] = ACTIONS(6098), + [anon_sym_LPAREN2] = ACTIONS(6098), + [sym_preproc_comment] = ACTIONS(6222), + [anon_sym_PLUS] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6102), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6098), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6098), + [aux_sym_procedure_attributes_token3] = ACTIONS(6098), + [aux_sym_contains_statement_token1] = ACTIONS(6098), + [aux_sym_use_statement_token2] = ACTIONS(6098), + [aux_sym_implicit_statement_token4] = ACTIONS(6098), + [aux_sym_save_statement_token1] = ACTIONS(6098), + [aux_sym_private_statement_token1] = ACTIONS(6098), + [aux_sym_public_statement_token1] = ACTIONS(6098), + [aux_sym_derived_type_definition_token1] = ACTIONS(6098), + [aux_sym_procedure_attribute_token6] = ACTIONS(6098), + [aux_sym_variable_attributes_token2] = ACTIONS(6098), + [aux_sym_variable_attributes_token3] = ACTIONS(6098), + [aux_sym_variable_attributes_token5] = ACTIONS(6098), + [aux_sym__intrinsic_type_token1] = ACTIONS(6098), + [aux_sym__intrinsic_type_token3] = ACTIONS(6098), + [aux_sym__intrinsic_type_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6098), + [aux_sym_type_qualifier_token1] = ACTIONS(6098), + [aux_sym_type_qualifier_token2] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6102), + [aux_sym_stop_statement_token1] = ACTIONS(6098), + [aux_sym_stop_statement_token2] = ACTIONS(6098), + [aux_sym_subroutine_call_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token2] = ACTIONS(6098), + [aux_sym_keyword_statement_token3] = ACTIONS(6098), + [aux_sym_keyword_statement_token4] = ACTIONS(6098), + [aux_sym_keyword_statement_token6] = ACTIONS(6098), + [aux_sym_keyword_statement_token7] = ACTIONS(6098), + [aux_sym_include_statement_token1] = ACTIONS(6098), + [aux_sym_data_statement_token1] = ACTIONS(6098), + [aux_sym_do_loop_statement_token1] = ACTIONS(6098), + [aux_sym__inline_if_statement_token1] = ACTIONS(6098), + [aux_sym_end_if_statement_token1] = ACTIONS(6098), + [aux_sym_elseif_clause_token2] = ACTIONS(6098), + [aux_sym__inline_where_statement_token1] = ACTIONS(6098), + [aux_sym__forall_control_expression_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token3] = ACTIONS(6098), + [aux_sym_select_type_statement_token1] = ACTIONS(6098), + [aux_sym_select_rank_statement_token2] = ACTIONS(6098), + [aux_sym_block_construct_token1] = ACTIONS(6098), + [aux_sym_associate_statement_token1] = ACTIONS(6098), + [aux_sym_format_statement_token1] = ACTIONS(6098), + [aux_sym_print_statement_token1] = ACTIONS(6098), + [aux_sym_open_statement_token1] = ACTIONS(6098), + [aux_sym_close_statement_token1] = ACTIONS(6098), + [aux_sym_inquire_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token2] = ACTIONS(6098), + [aux_sym_file_position_statement_token3] = ACTIONS(6098), + [aux_sym_file_position_statement_token4] = ACTIONS(6098), + [aux_sym_allocate_statement_token1] = ACTIONS(6098), + [aux_sym_entry_statement_token1] = ACTIONS(6098), + [aux_sym_logical_expression_token5] = ACTIONS(6102), + [anon_sym_DOT] = ACTIONS(6098), + [anon_sym_LPAREN_SLASH] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(6102), + [aux_sym_boolean_literal_token1] = ACTIONS(6102), + [aux_sym_boolean_literal_token2] = ACTIONS(6102), + [aux_sym_null_literal_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token2] = ACTIONS(6098), + [aux_sym_coarray_statement_token6] = ACTIONS(6098), + [aux_sym_coarray_statement_token8] = ACTIONS(6098), + [aux_sym_coarray_statement_token11] = ACTIONS(6098), + [aux_sym_coarray_statement_token12] = ACTIONS(6098), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6098), + [aux_sym_identifier_token1] = ACTIONS(6098), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6102), + [sym__float_literal] = ACTIONS(6102), + [sym__boz_literal] = ACTIONS(6102), + [sym__string_literal] = ACTIONS(6102), + [sym__string_literal_kind] = ACTIONS(6102), }, - [2203] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6414), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), + [2051] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6224), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_contains_statement_token1] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), }, - [2204] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6416), + [2052] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6226), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_contains_statement_token1] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [2053] = { + [aux_sym_preproc_include_token1] = ACTIONS(6092), + [aux_sym_preproc_def_token1] = ACTIONS(6092), + [aux_sym_preproc_if_token1] = ACTIONS(6092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6092), + [sym_preproc_directive] = ACTIONS(6092), + [anon_sym_LPAREN2] = ACTIONS(6092), + [sym_preproc_comment] = ACTIONS(6228), + [anon_sym_PLUS] = ACTIONS(6096), + [anon_sym_DASH] = ACTIONS(6096), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6092), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6092), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6092), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6092), + [aux_sym_procedure_attributes_token3] = ACTIONS(6092), + [aux_sym_contains_statement_token1] = ACTIONS(6092), + [aux_sym_use_statement_token2] = ACTIONS(6092), + [aux_sym_implicit_statement_token4] = ACTIONS(6092), + [aux_sym_save_statement_token1] = ACTIONS(6092), + [aux_sym_private_statement_token1] = ACTIONS(6092), + [aux_sym_public_statement_token1] = ACTIONS(6092), + [aux_sym_derived_type_definition_token1] = ACTIONS(6092), + [aux_sym_procedure_attribute_token6] = ACTIONS(6092), + [aux_sym_variable_attributes_token2] = ACTIONS(6092), + [aux_sym_variable_attributes_token3] = ACTIONS(6092), + [aux_sym_variable_attributes_token5] = ACTIONS(6092), + [aux_sym__intrinsic_type_token1] = ACTIONS(6092), + [aux_sym__intrinsic_type_token3] = ACTIONS(6092), + [aux_sym__intrinsic_type_token4] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6092), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6092), + [aux_sym_type_qualifier_token1] = ACTIONS(6092), + [aux_sym_type_qualifier_token2] = ACTIONS(6092), + [anon_sym_SEMI] = ACTIONS(6096), + [aux_sym_stop_statement_token1] = ACTIONS(6092), + [aux_sym_stop_statement_token2] = ACTIONS(6092), + [aux_sym_subroutine_call_token1] = ACTIONS(6092), + [aux_sym_keyword_statement_token1] = ACTIONS(6092), + [aux_sym_keyword_statement_token2] = ACTIONS(6092), + [aux_sym_keyword_statement_token3] = ACTIONS(6092), + [aux_sym_keyword_statement_token4] = ACTIONS(6092), + [aux_sym_keyword_statement_token6] = ACTIONS(6092), + [aux_sym_keyword_statement_token7] = ACTIONS(6092), + [aux_sym_include_statement_token1] = ACTIONS(6092), + [aux_sym_data_statement_token1] = ACTIONS(6092), + [aux_sym_do_loop_statement_token1] = ACTIONS(6092), + [aux_sym__inline_if_statement_token1] = ACTIONS(6092), + [aux_sym_end_if_statement_token1] = ACTIONS(6092), + [aux_sym_elseif_clause_token2] = ACTIONS(6092), + [aux_sym__inline_where_statement_token1] = ACTIONS(6092), + [aux_sym__forall_control_expression_token1] = ACTIONS(6092), + [aux_sym_select_case_statement_token1] = ACTIONS(6092), + [aux_sym_select_case_statement_token3] = ACTIONS(6092), + [aux_sym_select_type_statement_token1] = ACTIONS(6092), + [aux_sym_select_rank_statement_token2] = ACTIONS(6092), + [aux_sym_block_construct_token1] = ACTIONS(6092), + [aux_sym_associate_statement_token1] = ACTIONS(6092), + [aux_sym_format_statement_token1] = ACTIONS(6092), + [aux_sym_print_statement_token1] = ACTIONS(6092), + [aux_sym_open_statement_token1] = ACTIONS(6092), + [aux_sym_close_statement_token1] = ACTIONS(6092), + [aux_sym_inquire_statement_token1] = ACTIONS(6092), + [aux_sym_file_position_statement_token1] = ACTIONS(6092), + [aux_sym_file_position_statement_token2] = ACTIONS(6092), + [aux_sym_file_position_statement_token3] = ACTIONS(6092), + [aux_sym_file_position_statement_token4] = ACTIONS(6092), + [aux_sym_allocate_statement_token1] = ACTIONS(6092), + [aux_sym_entry_statement_token1] = ACTIONS(6092), + [aux_sym_logical_expression_token5] = ACTIONS(6096), + [anon_sym_DOT] = ACTIONS(6092), + [anon_sym_LPAREN_SLASH] = ACTIONS(6096), + [anon_sym_LBRACK] = ACTIONS(6096), + [aux_sym_boolean_literal_token1] = ACTIONS(6096), + [aux_sym_boolean_literal_token2] = ACTIONS(6096), + [aux_sym_null_literal_token1] = ACTIONS(6092), + [aux_sym_coarray_statement_token1] = ACTIONS(6092), + [aux_sym_coarray_statement_token2] = ACTIONS(6092), + [aux_sym_coarray_statement_token6] = ACTIONS(6092), + [aux_sym_coarray_statement_token8] = ACTIONS(6092), + [aux_sym_coarray_statement_token11] = ACTIONS(6092), + [aux_sym_coarray_statement_token12] = ACTIONS(6092), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6092), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6092), + [aux_sym_identifier_token1] = ACTIONS(6092), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6096), + [sym__float_literal] = ACTIONS(6096), + [sym__boz_literal] = ACTIONS(6096), + [sym__string_literal] = ACTIONS(6096), + [sym__string_literal_kind] = ACTIONS(6096), + }, + [2054] = { + [aux_sym_preproc_include_token1] = ACTIONS(6098), + [aux_sym_preproc_def_token1] = ACTIONS(6098), + [aux_sym_preproc_if_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6098), + [sym_preproc_directive] = ACTIONS(6098), + [anon_sym_LPAREN2] = ACTIONS(6098), + [sym_preproc_comment] = ACTIONS(6230), + [anon_sym_PLUS] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6102), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6098), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6098), + [aux_sym_procedure_attributes_token3] = ACTIONS(6098), + [aux_sym_contains_statement_token1] = ACTIONS(6098), + [aux_sym_use_statement_token2] = ACTIONS(6098), + [aux_sym_implicit_statement_token4] = ACTIONS(6098), + [aux_sym_save_statement_token1] = ACTIONS(6098), + [aux_sym_private_statement_token1] = ACTIONS(6098), + [aux_sym_public_statement_token1] = ACTIONS(6098), + [aux_sym_derived_type_definition_token1] = ACTIONS(6098), + [aux_sym_procedure_attribute_token6] = ACTIONS(6098), + [aux_sym_variable_attributes_token2] = ACTIONS(6098), + [aux_sym_variable_attributes_token3] = ACTIONS(6098), + [aux_sym_variable_attributes_token5] = ACTIONS(6098), + [aux_sym__intrinsic_type_token1] = ACTIONS(6098), + [aux_sym__intrinsic_type_token3] = ACTIONS(6098), + [aux_sym__intrinsic_type_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6098), + [aux_sym_type_qualifier_token1] = ACTIONS(6098), + [aux_sym_type_qualifier_token2] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6102), + [aux_sym_stop_statement_token1] = ACTIONS(6098), + [aux_sym_stop_statement_token2] = ACTIONS(6098), + [aux_sym_subroutine_call_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token2] = ACTIONS(6098), + [aux_sym_keyword_statement_token3] = ACTIONS(6098), + [aux_sym_keyword_statement_token4] = ACTIONS(6098), + [aux_sym_keyword_statement_token6] = ACTIONS(6098), + [aux_sym_keyword_statement_token7] = ACTIONS(6098), + [aux_sym_include_statement_token1] = ACTIONS(6098), + [aux_sym_data_statement_token1] = ACTIONS(6098), + [aux_sym_do_loop_statement_token1] = ACTIONS(6098), + [aux_sym__inline_if_statement_token1] = ACTIONS(6098), + [aux_sym_end_if_statement_token1] = ACTIONS(6098), + [aux_sym_elseif_clause_token2] = ACTIONS(6098), + [aux_sym__inline_where_statement_token1] = ACTIONS(6098), + [aux_sym__forall_control_expression_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token3] = ACTIONS(6098), + [aux_sym_select_type_statement_token1] = ACTIONS(6098), + [aux_sym_select_rank_statement_token2] = ACTIONS(6098), + [aux_sym_block_construct_token1] = ACTIONS(6098), + [aux_sym_associate_statement_token1] = ACTIONS(6098), + [aux_sym_format_statement_token1] = ACTIONS(6098), + [aux_sym_print_statement_token1] = ACTIONS(6098), + [aux_sym_open_statement_token1] = ACTIONS(6098), + [aux_sym_close_statement_token1] = ACTIONS(6098), + [aux_sym_inquire_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token2] = ACTIONS(6098), + [aux_sym_file_position_statement_token3] = ACTIONS(6098), + [aux_sym_file_position_statement_token4] = ACTIONS(6098), + [aux_sym_allocate_statement_token1] = ACTIONS(6098), + [aux_sym_entry_statement_token1] = ACTIONS(6098), + [aux_sym_logical_expression_token5] = ACTIONS(6102), + [anon_sym_DOT] = ACTIONS(6098), + [anon_sym_LPAREN_SLASH] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(6102), + [aux_sym_boolean_literal_token1] = ACTIONS(6102), + [aux_sym_boolean_literal_token2] = ACTIONS(6102), + [aux_sym_null_literal_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token2] = ACTIONS(6098), + [aux_sym_coarray_statement_token6] = ACTIONS(6098), + [aux_sym_coarray_statement_token8] = ACTIONS(6098), + [aux_sym_coarray_statement_token11] = ACTIONS(6098), + [aux_sym_coarray_statement_token12] = ACTIONS(6098), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6098), + [aux_sym_identifier_token1] = ACTIONS(6098), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6102), + [sym__float_literal] = ACTIONS(6102), + [sym__boz_literal] = ACTIONS(6102), + [sym__string_literal] = ACTIONS(6102), + [sym__string_literal_kind] = ACTIONS(6102), + }, + [2055] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6232), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_contains_statement_token1] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2056] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6234), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_contains_statement_token1] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2057] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6236), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_contains_statement_token1] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2058] = { + [aux_sym_preproc_include_token1] = ACTIONS(6200), + [aux_sym_preproc_def_token1] = ACTIONS(6200), + [aux_sym_preproc_if_token1] = ACTIONS(6200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6200), + [sym_preproc_directive] = ACTIONS(6200), + [anon_sym_LPAREN2] = ACTIONS(6200), + [sym_preproc_comment] = ACTIONS(6238), + [anon_sym_PLUS] = ACTIONS(6204), + [anon_sym_DASH] = ACTIONS(6204), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6200), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6200), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6200), + [aux_sym_procedure_attributes_token3] = ACTIONS(6200), + [aux_sym_end_function_statement_token1] = ACTIONS(6200), + [aux_sym_contains_statement_token1] = ACTIONS(6200), + [aux_sym_use_statement_token2] = ACTIONS(6200), + [aux_sym_implicit_statement_token4] = ACTIONS(6200), + [aux_sym_save_statement_token1] = ACTIONS(6200), + [aux_sym_private_statement_token1] = ACTIONS(6200), + [aux_sym_public_statement_token1] = ACTIONS(6200), + [aux_sym_derived_type_definition_token1] = ACTIONS(6200), + [aux_sym_procedure_attribute_token6] = ACTIONS(6200), + [aux_sym_variable_attributes_token2] = ACTIONS(6200), + [aux_sym_variable_attributes_token3] = ACTIONS(6200), + [aux_sym_variable_attributes_token5] = ACTIONS(6200), + [aux_sym__intrinsic_type_token1] = ACTIONS(6200), + [aux_sym__intrinsic_type_token3] = ACTIONS(6200), + [aux_sym__intrinsic_type_token4] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6200), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6200), + [aux_sym_type_qualifier_token1] = ACTIONS(6200), + [aux_sym_type_qualifier_token2] = ACTIONS(6200), + [anon_sym_SEMI] = ACTIONS(6204), + [aux_sym_stop_statement_token1] = ACTIONS(6200), + [aux_sym_stop_statement_token2] = ACTIONS(6200), + [aux_sym_subroutine_call_token1] = ACTIONS(6200), + [aux_sym_keyword_statement_token1] = ACTIONS(6200), + [aux_sym_keyword_statement_token2] = ACTIONS(6200), + [aux_sym_keyword_statement_token3] = ACTIONS(6200), + [aux_sym_keyword_statement_token4] = ACTIONS(6200), + [aux_sym_keyword_statement_token6] = ACTIONS(6200), + [aux_sym_keyword_statement_token7] = ACTIONS(6200), + [aux_sym_include_statement_token1] = ACTIONS(6200), + [aux_sym_data_statement_token1] = ACTIONS(6200), + [aux_sym_do_loop_statement_token1] = ACTIONS(6200), + [aux_sym__inline_if_statement_token1] = ACTIONS(6200), + [aux_sym_end_if_statement_token1] = ACTIONS(6200), + [aux_sym_elseif_clause_token2] = ACTIONS(6200), + [aux_sym__inline_where_statement_token1] = ACTIONS(6200), + [aux_sym__forall_control_expression_token1] = ACTIONS(6200), + [aux_sym_select_case_statement_token1] = ACTIONS(6200), + [aux_sym_select_case_statement_token3] = ACTIONS(6200), + [aux_sym_select_type_statement_token1] = ACTIONS(6200), + [aux_sym_select_rank_statement_token2] = ACTIONS(6200), + [aux_sym_block_construct_token1] = ACTIONS(6200), + [aux_sym_associate_statement_token1] = ACTIONS(6200), + [aux_sym_format_statement_token1] = ACTIONS(6200), + [aux_sym_print_statement_token1] = ACTIONS(6200), + [aux_sym_open_statement_token1] = ACTIONS(6200), + [aux_sym_close_statement_token1] = ACTIONS(6200), + [aux_sym_inquire_statement_token1] = ACTIONS(6200), + [aux_sym_file_position_statement_token1] = ACTIONS(6200), + [aux_sym_file_position_statement_token2] = ACTIONS(6200), + [aux_sym_file_position_statement_token3] = ACTIONS(6200), + [aux_sym_file_position_statement_token4] = ACTIONS(6200), + [aux_sym_allocate_statement_token1] = ACTIONS(6200), + [aux_sym_entry_statement_token1] = ACTIONS(6200), + [aux_sym_logical_expression_token5] = ACTIONS(6204), + [anon_sym_DOT] = ACTIONS(6200), + [anon_sym_LPAREN_SLASH] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(6204), + [aux_sym_boolean_literal_token1] = ACTIONS(6204), + [aux_sym_boolean_literal_token2] = ACTIONS(6204), + [aux_sym_null_literal_token1] = ACTIONS(6200), + [aux_sym_coarray_statement_token1] = ACTIONS(6200), + [aux_sym_coarray_statement_token2] = ACTIONS(6200), + [aux_sym_coarray_statement_token6] = ACTIONS(6200), + [aux_sym_coarray_statement_token8] = ACTIONS(6200), + [aux_sym_coarray_statement_token11] = ACTIONS(6200), + [aux_sym_coarray_statement_token12] = ACTIONS(6200), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6200), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6200), + [aux_sym_identifier_token1] = ACTIONS(6200), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6204), + [sym__float_literal] = ACTIONS(6204), + [sym__boz_literal] = ACTIONS(6204), + [sym__string_literal] = ACTIONS(6204), + [sym__string_literal_kind] = ACTIONS(6204), + }, + [2059] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token2] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_end_program_statement_token2] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_contains_statement_token1] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2060] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2061] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token2] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_contains_statement_token1] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), + }, + [2062] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6242), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_end_forall_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_end_forall_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -364111,1385 +350053,890 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [2205] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6418), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_end_forall_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [2206] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token2] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6420), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), - }, - [2207] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6422), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_end_forall_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2208] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token2] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_end_select_statement_token1] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [2209] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token2] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6424), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), - }, - [2210] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6426), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [2063] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_end_forall_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2064] = { + [aux_sym_preproc_include_token1] = ACTIONS(2842), + [aux_sym_preproc_def_token1] = ACTIONS(2842), + [aux_sym_preproc_if_token1] = ACTIONS(2842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2842), + [sym_preproc_directive] = ACTIONS(2842), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2842), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2842), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2842), + [aux_sym_procedure_attributes_token3] = ACTIONS(2842), + [aux_sym_end_function_statement_token1] = ACTIONS(2842), + [aux_sym_contains_statement_token1] = ACTIONS(2842), + [aux_sym_use_statement_token2] = ACTIONS(2842), + [aux_sym_implicit_statement_token4] = ACTIONS(2842), + [aux_sym_save_statement_token1] = ACTIONS(2842), + [aux_sym_private_statement_token1] = ACTIONS(2842), + [aux_sym_public_statement_token1] = ACTIONS(2842), + [aux_sym_derived_type_definition_token1] = ACTIONS(2842), + [aux_sym_procedure_attribute_token6] = ACTIONS(2842), + [aux_sym_variable_attributes_token2] = ACTIONS(2842), + [aux_sym_variable_attributes_token3] = ACTIONS(2842), + [aux_sym_variable_attributes_token5] = ACTIONS(2842), + [aux_sym__intrinsic_type_token1] = ACTIONS(2842), + [aux_sym__intrinsic_type_token3] = ACTIONS(2842), + [aux_sym__intrinsic_type_token4] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2842), + [aux_sym_type_qualifier_token1] = ACTIONS(2842), + [aux_sym_type_qualifier_token2] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(6246), + [aux_sym_stop_statement_token1] = ACTIONS(2842), + [aux_sym_stop_statement_token2] = ACTIONS(2842), + [aux_sym_subroutine_call_token1] = ACTIONS(2842), + [aux_sym_keyword_statement_token1] = ACTIONS(2842), + [aux_sym_keyword_statement_token2] = ACTIONS(2842), + [aux_sym_keyword_statement_token3] = ACTIONS(2842), + [aux_sym_keyword_statement_token4] = ACTIONS(2842), + [aux_sym_keyword_statement_token6] = ACTIONS(2842), + [aux_sym_keyword_statement_token7] = ACTIONS(2842), + [aux_sym_include_statement_token1] = ACTIONS(2842), + [aux_sym_data_statement_token1] = ACTIONS(2842), + [aux_sym_do_loop_statement_token1] = ACTIONS(2842), + [aux_sym__inline_if_statement_token1] = ACTIONS(2842), + [aux_sym_end_if_statement_token1] = ACTIONS(2842), + [aux_sym_elseif_clause_token2] = ACTIONS(2842), + [aux_sym__inline_where_statement_token1] = ACTIONS(2842), + [aux_sym__forall_control_expression_token1] = ACTIONS(2842), + [aux_sym_select_case_statement_token1] = ACTIONS(2842), + [aux_sym_select_case_statement_token3] = ACTIONS(2842), + [aux_sym_select_type_statement_token1] = ACTIONS(2842), + [aux_sym_select_rank_statement_token2] = ACTIONS(2842), + [aux_sym_block_construct_token1] = ACTIONS(2842), + [aux_sym_associate_statement_token1] = ACTIONS(2842), + [aux_sym_format_statement_token1] = ACTIONS(2842), + [aux_sym_print_statement_token1] = ACTIONS(2842), + [aux_sym_open_statement_token1] = ACTIONS(2842), + [aux_sym_close_statement_token1] = ACTIONS(2842), + [aux_sym_inquire_statement_token1] = ACTIONS(2842), + [aux_sym_file_position_statement_token1] = ACTIONS(2842), + [aux_sym_file_position_statement_token2] = ACTIONS(2842), + [aux_sym_file_position_statement_token3] = ACTIONS(2842), + [aux_sym_file_position_statement_token4] = ACTIONS(2842), + [aux_sym_allocate_statement_token1] = ACTIONS(2842), + [aux_sym_entry_statement_token1] = ACTIONS(2842), + [aux_sym_logical_expression_token5] = ACTIONS(6246), + [anon_sym_DOT] = ACTIONS(2842), + [anon_sym_LPAREN_SLASH] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(6246), + [aux_sym_boolean_literal_token1] = ACTIONS(6246), + [aux_sym_boolean_literal_token2] = ACTIONS(6246), + [aux_sym_null_literal_token1] = ACTIONS(2842), + [aux_sym_coarray_statement_token1] = ACTIONS(2842), + [aux_sym_coarray_statement_token2] = ACTIONS(2842), + [aux_sym_coarray_statement_token6] = ACTIONS(2842), + [aux_sym_coarray_statement_token8] = ACTIONS(2842), + [aux_sym_coarray_statement_token11] = ACTIONS(2842), + [aux_sym_coarray_statement_token12] = ACTIONS(2842), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2842), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2842), + [aux_sym_identifier_token1] = ACTIONS(2842), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6246), + [sym__float_literal] = ACTIONS(6246), + [sym__boz_literal] = ACTIONS(6246), + [sym__string_literal] = ACTIONS(6246), + [sym__string_literal_kind] = ACTIONS(6246), + }, + [2065] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_end_program_statement_token2] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_contains_statement_token1] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2211] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token2] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_end_select_statement_token1] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [2066] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [2212] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6428), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), + [2067] = { + [aux_sym_preproc_include_token1] = ACTIONS(2842), + [aux_sym_preproc_def_token1] = ACTIONS(2842), + [aux_sym_preproc_if_token1] = ACTIONS(2842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2842), + [sym_preproc_directive] = ACTIONS(2842), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2842), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2842), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2842), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(2842), + [aux_sym_procedure_attributes_token3] = ACTIONS(2842), + [aux_sym_contains_statement_token1] = ACTIONS(2842), + [aux_sym_use_statement_token2] = ACTIONS(2842), + [aux_sym_implicit_statement_token4] = ACTIONS(2842), + [aux_sym_save_statement_token1] = ACTIONS(2842), + [aux_sym_private_statement_token1] = ACTIONS(2842), + [aux_sym_public_statement_token1] = ACTIONS(2842), + [aux_sym_derived_type_definition_token1] = ACTIONS(2842), + [aux_sym_procedure_attribute_token6] = ACTIONS(2842), + [aux_sym_variable_attributes_token2] = ACTIONS(2842), + [aux_sym_variable_attributes_token3] = ACTIONS(2842), + [aux_sym_variable_attributes_token5] = ACTIONS(2842), + [aux_sym__intrinsic_type_token1] = ACTIONS(2842), + [aux_sym__intrinsic_type_token3] = ACTIONS(2842), + [aux_sym__intrinsic_type_token4] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2842), + [aux_sym_type_qualifier_token1] = ACTIONS(2842), + [aux_sym_type_qualifier_token2] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(6246), + [aux_sym_stop_statement_token1] = ACTIONS(2842), + [aux_sym_stop_statement_token2] = ACTIONS(2842), + [aux_sym_subroutine_call_token1] = ACTIONS(2842), + [aux_sym_keyword_statement_token1] = ACTIONS(2842), + [aux_sym_keyword_statement_token2] = ACTIONS(2842), + [aux_sym_keyword_statement_token3] = ACTIONS(2842), + [aux_sym_keyword_statement_token4] = ACTIONS(2842), + [aux_sym_keyword_statement_token6] = ACTIONS(2842), + [aux_sym_keyword_statement_token7] = ACTIONS(2842), + [aux_sym_include_statement_token1] = ACTIONS(2842), + [aux_sym_data_statement_token1] = ACTIONS(2842), + [aux_sym_do_loop_statement_token1] = ACTIONS(2842), + [aux_sym__inline_if_statement_token1] = ACTIONS(2842), + [aux_sym_end_if_statement_token1] = ACTIONS(2842), + [aux_sym_elseif_clause_token2] = ACTIONS(2842), + [aux_sym__inline_where_statement_token1] = ACTIONS(2842), + [aux_sym__forall_control_expression_token1] = ACTIONS(2842), + [aux_sym_select_case_statement_token1] = ACTIONS(2842), + [aux_sym_select_case_statement_token3] = ACTIONS(2842), + [aux_sym_select_type_statement_token1] = ACTIONS(2842), + [aux_sym_select_rank_statement_token2] = ACTIONS(2842), + [aux_sym_block_construct_token1] = ACTIONS(2842), + [aux_sym_associate_statement_token1] = ACTIONS(2842), + [aux_sym_format_statement_token1] = ACTIONS(2842), + [aux_sym_print_statement_token1] = ACTIONS(2842), + [aux_sym_open_statement_token1] = ACTIONS(2842), + [aux_sym_close_statement_token1] = ACTIONS(2842), + [aux_sym_inquire_statement_token1] = ACTIONS(2842), + [aux_sym_file_position_statement_token1] = ACTIONS(2842), + [aux_sym_file_position_statement_token2] = ACTIONS(2842), + [aux_sym_file_position_statement_token3] = ACTIONS(2842), + [aux_sym_file_position_statement_token4] = ACTIONS(2842), + [aux_sym_allocate_statement_token1] = ACTIONS(2842), + [aux_sym_entry_statement_token1] = ACTIONS(2842), + [aux_sym_logical_expression_token5] = ACTIONS(6246), + [anon_sym_DOT] = ACTIONS(2842), + [anon_sym_LPAREN_SLASH] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(6246), + [aux_sym_boolean_literal_token1] = ACTIONS(6246), + [aux_sym_boolean_literal_token2] = ACTIONS(6246), + [aux_sym_null_literal_token1] = ACTIONS(2842), + [aux_sym_coarray_statement_token1] = ACTIONS(2842), + [aux_sym_coarray_statement_token2] = ACTIONS(2842), + [aux_sym_coarray_statement_token6] = ACTIONS(2842), + [aux_sym_coarray_statement_token8] = ACTIONS(2842), + [aux_sym_coarray_statement_token11] = ACTIONS(2842), + [aux_sym_coarray_statement_token12] = ACTIONS(2842), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2842), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2842), + [aux_sym_identifier_token1] = ACTIONS(2842), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6246), + [sym__float_literal] = ACTIONS(6246), + [sym__boz_literal] = ACTIONS(6246), + [sym__string_literal] = ACTIONS(6246), + [sym__string_literal_kind] = ACTIONS(6246), }, - [2213] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token2] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_end_select_statement_token1] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [2068] = { + [aux_sym_preproc_include_token1] = ACTIONS(6250), + [aux_sym_preproc_def_token1] = ACTIONS(6250), + [aux_sym_preproc_if_token1] = ACTIONS(6250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6250), + [sym_preproc_directive] = ACTIONS(6250), + [anon_sym_LPAREN2] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6250), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6250), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6250), + [aux_sym_procedure_attributes_token3] = ACTIONS(6250), + [aux_sym_end_function_statement_token1] = ACTIONS(6250), + [aux_sym_contains_statement_token1] = ACTIONS(6250), + [aux_sym_use_statement_token2] = ACTIONS(6250), + [aux_sym_implicit_statement_token4] = ACTIONS(6250), + [aux_sym_save_statement_token1] = ACTIONS(6250), + [aux_sym_private_statement_token1] = ACTIONS(6250), + [aux_sym_public_statement_token1] = ACTIONS(6250), + [aux_sym_derived_type_definition_token1] = ACTIONS(6250), + [aux_sym_procedure_attribute_token6] = ACTIONS(6250), + [aux_sym_variable_attributes_token2] = ACTIONS(6250), + [aux_sym_variable_attributes_token3] = ACTIONS(6250), + [aux_sym_variable_attributes_token5] = ACTIONS(6250), + [aux_sym__intrinsic_type_token1] = ACTIONS(6250), + [aux_sym__intrinsic_type_token3] = ACTIONS(6250), + [aux_sym__intrinsic_type_token4] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6250), + [aux_sym_type_qualifier_token1] = ACTIONS(6250), + [aux_sym_type_qualifier_token2] = ACTIONS(6250), + [anon_sym_SEMI] = ACTIONS(6252), + [aux_sym_stop_statement_token1] = ACTIONS(6250), + [aux_sym_stop_statement_token2] = ACTIONS(6250), + [aux_sym_subroutine_call_token1] = ACTIONS(6250), + [aux_sym_keyword_statement_token1] = ACTIONS(6250), + [aux_sym_keyword_statement_token2] = ACTIONS(6250), + [aux_sym_keyword_statement_token3] = ACTIONS(6250), + [aux_sym_keyword_statement_token4] = ACTIONS(6250), + [aux_sym_keyword_statement_token6] = ACTIONS(6250), + [aux_sym_keyword_statement_token7] = ACTIONS(6250), + [aux_sym_include_statement_token1] = ACTIONS(6250), + [aux_sym_data_statement_token1] = ACTIONS(6250), + [aux_sym_do_loop_statement_token1] = ACTIONS(6250), + [aux_sym__inline_if_statement_token1] = ACTIONS(6250), + [aux_sym_end_if_statement_token1] = ACTIONS(6250), + [aux_sym_elseif_clause_token2] = ACTIONS(6250), + [aux_sym__inline_where_statement_token1] = ACTIONS(6250), + [aux_sym__forall_control_expression_token1] = ACTIONS(6250), + [aux_sym_select_case_statement_token1] = ACTIONS(6250), + [aux_sym_select_case_statement_token3] = ACTIONS(6250), + [aux_sym_select_type_statement_token1] = ACTIONS(6250), + [aux_sym_select_rank_statement_token2] = ACTIONS(6250), + [aux_sym_block_construct_token1] = ACTIONS(6250), + [aux_sym_associate_statement_token1] = ACTIONS(6250), + [aux_sym_format_statement_token1] = ACTIONS(6250), + [aux_sym_print_statement_token1] = ACTIONS(6250), + [aux_sym_open_statement_token1] = ACTIONS(6250), + [aux_sym_close_statement_token1] = ACTIONS(6250), + [aux_sym_inquire_statement_token1] = ACTIONS(6250), + [aux_sym_file_position_statement_token1] = ACTIONS(6250), + [aux_sym_file_position_statement_token2] = ACTIONS(6250), + [aux_sym_file_position_statement_token3] = ACTIONS(6250), + [aux_sym_file_position_statement_token4] = ACTIONS(6250), + [aux_sym_allocate_statement_token1] = ACTIONS(6250), + [aux_sym_entry_statement_token1] = ACTIONS(6250), + [aux_sym_logical_expression_token5] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_LPAREN_SLASH] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6252), + [aux_sym_boolean_literal_token1] = ACTIONS(6252), + [aux_sym_boolean_literal_token2] = ACTIONS(6252), + [aux_sym_null_literal_token1] = ACTIONS(6250), + [aux_sym_coarray_statement_token1] = ACTIONS(6250), + [aux_sym_coarray_statement_token2] = ACTIONS(6250), + [aux_sym_coarray_statement_token6] = ACTIONS(6250), + [aux_sym_coarray_statement_token8] = ACTIONS(6250), + [aux_sym_coarray_statement_token11] = ACTIONS(6250), + [aux_sym_coarray_statement_token12] = ACTIONS(6250), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6250), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6250), + [aux_sym_identifier_token1] = ACTIONS(6250), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6252), + [sym__float_literal] = ACTIONS(6252), + [sym__boz_literal] = ACTIONS(6252), + [sym__string_literal] = ACTIONS(6252), + [sym__string_literal_kind] = ACTIONS(6252), }, - [2214] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6430), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2069] = { + [aux_sym_preproc_include_token1] = ACTIONS(5960), + [aux_sym_preproc_def_token1] = ACTIONS(5960), + [aux_sym_preproc_if_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5960), + [sym_preproc_directive] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5960), + [aux_sym_procedure_attributes_token3] = ACTIONS(5960), + [aux_sym_end_function_statement_token1] = ACTIONS(5960), + [aux_sym_contains_statement_token1] = ACTIONS(5960), + [aux_sym_use_statement_token2] = ACTIONS(5960), + [aux_sym_implicit_statement_token4] = ACTIONS(5960), + [aux_sym_save_statement_token1] = ACTIONS(5960), + [aux_sym_private_statement_token1] = ACTIONS(5960), + [aux_sym_public_statement_token1] = ACTIONS(5960), + [aux_sym_derived_type_definition_token1] = ACTIONS(5960), + [aux_sym_procedure_attribute_token6] = ACTIONS(5960), + [aux_sym_variable_attributes_token2] = ACTIONS(5960), + [aux_sym_variable_attributes_token3] = ACTIONS(5960), + [aux_sym_variable_attributes_token5] = ACTIONS(5960), + [aux_sym__intrinsic_type_token1] = ACTIONS(5960), + [aux_sym__intrinsic_type_token3] = ACTIONS(5960), + [aux_sym__intrinsic_type_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5960), + [aux_sym_type_qualifier_token1] = ACTIONS(5960), + [aux_sym_type_qualifier_token2] = ACTIONS(5960), + [anon_sym_SEMI] = ACTIONS(5964), + [aux_sym_stop_statement_token1] = ACTIONS(5960), + [aux_sym_stop_statement_token2] = ACTIONS(5960), + [aux_sym_subroutine_call_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token2] = ACTIONS(5960), + [aux_sym_keyword_statement_token3] = ACTIONS(5960), + [aux_sym_keyword_statement_token4] = ACTIONS(5960), + [aux_sym_keyword_statement_token6] = ACTIONS(5960), + [aux_sym_keyword_statement_token7] = ACTIONS(5960), + [aux_sym_include_statement_token1] = ACTIONS(5960), + [aux_sym_data_statement_token1] = ACTIONS(5960), + [aux_sym_do_loop_statement_token1] = ACTIONS(5960), + [aux_sym__inline_if_statement_token1] = ACTIONS(5960), + [aux_sym_end_if_statement_token1] = ACTIONS(5960), + [aux_sym_elseif_clause_token2] = ACTIONS(5960), + [aux_sym__inline_where_statement_token1] = ACTIONS(5960), + [aux_sym__forall_control_expression_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token3] = ACTIONS(5960), + [aux_sym_select_type_statement_token1] = ACTIONS(5960), + [aux_sym_select_rank_statement_token2] = ACTIONS(5960), + [aux_sym_block_construct_token1] = ACTIONS(5960), + [aux_sym_associate_statement_token1] = ACTIONS(5960), + [aux_sym_format_statement_token1] = ACTIONS(5960), + [aux_sym_print_statement_token1] = ACTIONS(5960), + [aux_sym_open_statement_token1] = ACTIONS(5960), + [aux_sym_close_statement_token1] = ACTIONS(5960), + [aux_sym_inquire_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token2] = ACTIONS(5960), + [aux_sym_file_position_statement_token3] = ACTIONS(5960), + [aux_sym_file_position_statement_token4] = ACTIONS(5960), + [aux_sym_allocate_statement_token1] = ACTIONS(5960), + [aux_sym_entry_statement_token1] = ACTIONS(5960), + [aux_sym_logical_expression_token5] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5960), + [anon_sym_LPAREN_SLASH] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5964), + [aux_sym_boolean_literal_token1] = ACTIONS(5964), + [aux_sym_boolean_literal_token2] = ACTIONS(5964), + [aux_sym_null_literal_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token2] = ACTIONS(5960), + [aux_sym_coarray_statement_token6] = ACTIONS(5960), + [aux_sym_coarray_statement_token8] = ACTIONS(5960), + [aux_sym_coarray_statement_token11] = ACTIONS(5960), + [aux_sym_coarray_statement_token12] = ACTIONS(5960), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5960), + [aux_sym_identifier_token1] = ACTIONS(5960), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5964), + [sym__float_literal] = ACTIONS(5964), + [sym__boz_literal] = ACTIONS(5964), + [sym__string_literal] = ACTIONS(5964), + [sym__string_literal_kind] = ACTIONS(5964), }, - [2215] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6432), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [2070] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [2216] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token2] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_end_select_statement_token1] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [2217] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token2] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_end_select_statement_token1] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2218] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6434), + [2071] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6256), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -365497,205 +350944,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [2219] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6436), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2072] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_end_program_statement_token2] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2220] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token2] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_end_select_statement_token1] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [2073] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [2221] = { + [2074] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6260), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), + }, + [2075] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [2076] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2077] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), @@ -365709,7 +351453,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_end_program_statement_token1] = ACTIONS(5620), [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5620), [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_contains_statement_token1] = ACTIONS(5620), [aux_sym_use_statement_token2] = ACTIONS(5620), [aux_sym_implicit_statement_token4] = ACTIONS(5620), [aux_sym_save_statement_token1] = ACTIONS(5620), @@ -365753,11 +351499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(5620), [aux_sym__forall_control_expression_token1] = ACTIONS(5620), [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token2] = ACTIONS(5620), [aux_sym_select_case_statement_token3] = ACTIONS(5620), [aux_sym_select_type_statement_token1] = ACTIONS(5620), [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_end_select_statement_token1] = ACTIONS(5620), [aux_sym_block_construct_token1] = ACTIONS(5620), [aux_sym_associate_statement_token1] = ACTIONS(5620), [aux_sym_format_statement_token1] = ACTIONS(5620), @@ -365794,106 +351538,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [2222] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6438), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [2078] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(6266), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2223] = { + [2079] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2080] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), + }, + [2081] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6272), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [2082] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_contains_statement_token1] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2083] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6274), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2084] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_contains_statement_token1] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), + }, + [2085] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_end_program_statement_token2] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2086] = { [aux_sym_preproc_include_token1] = ACTIONS(5640), [aux_sym_preproc_def_token1] = ACTIONS(5640), [aux_sym_preproc_if_token1] = ACTIONS(5640), @@ -365907,7 +352344,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_end_program_statement_token1] = ACTIONS(5640), [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5640), [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_contains_statement_token1] = ACTIONS(5640), [aux_sym_use_statement_token2] = ACTIONS(5640), [aux_sym_implicit_statement_token4] = ACTIONS(5640), [aux_sym_save_statement_token1] = ACTIONS(5640), @@ -365951,11 +352390,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(5640), [aux_sym__forall_control_expression_token1] = ACTIONS(5640), [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token2] = ACTIONS(5640), [aux_sym_select_case_statement_token3] = ACTIONS(5640), [aux_sym_select_type_statement_token1] = ACTIONS(5640), [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_end_select_statement_token1] = ACTIONS(5640), [aux_sym_block_construct_token1] = ACTIONS(5640), [aux_sym_associate_statement_token1] = ACTIONS(5640), [aux_sym_format_statement_token1] = ACTIONS(5640), @@ -365992,802 +352429,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5642), [sym__string_literal_kind] = ACTIONS(5642), }, - [2224] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_end_select_statement_token1] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [2225] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_end_select_statement_token1] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [2226] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_end_select_statement_token1] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [2227] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_end_select_statement_token1] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [2228] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6440), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_end_forall_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [2229] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_end_select_statement_token1] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), - }, - [2230] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_end_select_statement_token1] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [2087] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_contains_statement_token1] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [2231] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_end_program_statement_token2] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_contains_statement_token1] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [2088] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6276), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [2232] = { + [2089] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token2] = ACTIONS(5620), [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), [sym_preproc_directive] = ACTIONS(5620), @@ -366799,6 +352643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_contains_statement_token1] = ACTIONS(5620), [aux_sym_use_statement_token2] = ACTIONS(5620), [aux_sym_implicit_statement_token4] = ACTIONS(5620), [aux_sym_save_statement_token1] = ACTIONS(5620), @@ -366844,9 +352689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(5620), [aux_sym_select_case_statement_token3] = ACTIONS(5620), [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token1] = ACTIONS(5620), [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_end_select_statement_token1] = ACTIONS(5620), [aux_sym_block_construct_token1] = ACTIONS(5620), [aux_sym_associate_statement_token1] = ACTIONS(5620), [aux_sym_format_statement_token1] = ACTIONS(5620), @@ -366883,10 +352726,605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [2233] = { + [2090] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6278), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), + }, + [2091] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [2092] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token2] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_contains_statement_token1] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2093] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token2] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_contains_statement_token1] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), + }, + [2094] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(6282), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2095] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6284), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2096] = { [aux_sym_preproc_include_token1] = ACTIONS(5640), [aux_sym_preproc_def_token1] = ACTIONS(5640), [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token2] = ACTIONS(5640), [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), [sym_preproc_directive] = ACTIONS(5640), @@ -366898,6 +353336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_contains_statement_token1] = ACTIONS(5640), [aux_sym_use_statement_token2] = ACTIONS(5640), [aux_sym_implicit_statement_token4] = ACTIONS(5640), [aux_sym_save_statement_token1] = ACTIONS(5640), @@ -366908,1665 +353347,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token2] = ACTIONS(5640), [aux_sym_variable_attributes_token3] = ACTIONS(5640), [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_end_select_statement_token1] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), - }, - [2234] = { - [aux_sym_preproc_include_token1] = ACTIONS(6442), - [aux_sym_preproc_def_token1] = ACTIONS(6442), - [aux_sym_preproc_if_token1] = ACTIONS(6442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6442), - [sym_preproc_directive] = ACTIONS(6442), - [anon_sym_LPAREN2] = ACTIONS(6442), - [anon_sym_PLUS] = ACTIONS(6444), - [anon_sym_DASH] = ACTIONS(6444), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6442), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6442), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6442), - [aux_sym_procedure_attributes_token3] = ACTIONS(6442), - [aux_sym_end_function_statement_token1] = ACTIONS(6442), - [aux_sym_contains_statement_token1] = ACTIONS(6442), - [aux_sym_use_statement_token2] = ACTIONS(6442), - [aux_sym_implicit_statement_token4] = ACTIONS(6442), - [aux_sym_save_statement_token1] = ACTIONS(6442), - [aux_sym_private_statement_token1] = ACTIONS(6442), - [aux_sym_public_statement_token1] = ACTIONS(6442), - [aux_sym_derived_type_definition_token1] = ACTIONS(6442), - [aux_sym_procedure_attribute_token6] = ACTIONS(6442), - [aux_sym_variable_attributes_token2] = ACTIONS(6442), - [aux_sym_variable_attributes_token3] = ACTIONS(6442), - [aux_sym_variable_attributes_token5] = ACTIONS(6442), - [aux_sym__intrinsic_type_token1] = ACTIONS(6442), - [aux_sym__intrinsic_type_token3] = ACTIONS(6442), - [aux_sym__intrinsic_type_token4] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6442), - [aux_sym_type_qualifier_token1] = ACTIONS(6442), - [aux_sym_type_qualifier_token2] = ACTIONS(6442), - [anon_sym_SEMI] = ACTIONS(6444), - [aux_sym_stop_statement_token1] = ACTIONS(6442), - [aux_sym_stop_statement_token2] = ACTIONS(6442), - [aux_sym_subroutine_call_token1] = ACTIONS(6442), - [aux_sym_keyword_statement_token1] = ACTIONS(6442), - [aux_sym_keyword_statement_token2] = ACTIONS(6442), - [aux_sym_keyword_statement_token3] = ACTIONS(6442), - [aux_sym_keyword_statement_token4] = ACTIONS(6442), - [aux_sym_keyword_statement_token6] = ACTIONS(6442), - [aux_sym_keyword_statement_token7] = ACTIONS(6442), - [aux_sym_include_statement_token1] = ACTIONS(6442), - [aux_sym_data_statement_token1] = ACTIONS(6442), - [aux_sym_do_loop_statement_token1] = ACTIONS(6442), - [aux_sym__inline_if_statement_token1] = ACTIONS(6442), - [aux_sym_end_if_statement_token1] = ACTIONS(6442), - [aux_sym_elseif_clause_token2] = ACTIONS(6442), - [aux_sym__inline_where_statement_token1] = ACTIONS(6442), - [aux_sym__forall_control_expression_token1] = ACTIONS(6442), - [aux_sym_select_case_statement_token1] = ACTIONS(6442), - [aux_sym_select_case_statement_token3] = ACTIONS(6442), - [aux_sym_select_type_statement_token1] = ACTIONS(6442), - [aux_sym_select_rank_statement_token2] = ACTIONS(6442), - [aux_sym_block_construct_token1] = ACTIONS(6442), - [aux_sym_associate_statement_token1] = ACTIONS(6442), - [aux_sym_format_statement_token1] = ACTIONS(6442), - [aux_sym_print_statement_token1] = ACTIONS(6442), - [aux_sym_open_statement_token1] = ACTIONS(6442), - [aux_sym_close_statement_token1] = ACTIONS(6442), - [aux_sym_inquire_statement_token1] = ACTIONS(6442), - [aux_sym_file_position_statement_token1] = ACTIONS(6442), - [aux_sym_file_position_statement_token2] = ACTIONS(6442), - [aux_sym_file_position_statement_token3] = ACTIONS(6442), - [aux_sym_file_position_statement_token4] = ACTIONS(6442), - [aux_sym_allocate_statement_token1] = ACTIONS(6442), - [aux_sym_entry_statement_token1] = ACTIONS(6442), - [aux_sym_logical_expression_token5] = ACTIONS(6444), - [anon_sym_DOT] = ACTIONS(6442), - [anon_sym_LPAREN_SLASH] = ACTIONS(6444), - [anon_sym_LBRACK] = ACTIONS(6444), - [aux_sym_boolean_literal_token1] = ACTIONS(6444), - [aux_sym_boolean_literal_token2] = ACTIONS(6444), - [aux_sym_null_literal_token1] = ACTIONS(6442), - [aux_sym_coarray_statement_token1] = ACTIONS(6442), - [aux_sym_coarray_statement_token2] = ACTIONS(6442), - [aux_sym_coarray_statement_token6] = ACTIONS(6442), - [aux_sym_coarray_statement_token8] = ACTIONS(6442), - [aux_sym_coarray_statement_token11] = ACTIONS(6442), - [aux_sym_coarray_statement_token12] = ACTIONS(6442), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6442), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6442), - [aux_sym_identifier_token1] = ACTIONS(6442), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6444), - [sym__float_literal] = ACTIONS(6444), - [sym__boz_literal] = ACTIONS(6444), - [sym__string_literal] = ACTIONS(6444), - [sym__string_literal_kind] = ACTIONS(6444), - }, - [2235] = { - [aux_sym_preproc_include_token1] = ACTIONS(6446), - [aux_sym_preproc_def_token1] = ACTIONS(6446), - [aux_sym_preproc_if_token1] = ACTIONS(6446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6446), - [sym_preproc_directive] = ACTIONS(6446), - [anon_sym_LPAREN2] = ACTIONS(6446), - [anon_sym_PLUS] = ACTIONS(6448), - [anon_sym_DASH] = ACTIONS(6448), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6446), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6446), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6446), - [aux_sym_procedure_attributes_token3] = ACTIONS(6446), - [aux_sym_end_function_statement_token1] = ACTIONS(6446), - [aux_sym_contains_statement_token1] = ACTIONS(6446), - [aux_sym_use_statement_token2] = ACTIONS(6446), - [aux_sym_implicit_statement_token4] = ACTIONS(6446), - [aux_sym_save_statement_token1] = ACTIONS(6446), - [aux_sym_private_statement_token1] = ACTIONS(6446), - [aux_sym_public_statement_token1] = ACTIONS(6446), - [aux_sym_derived_type_definition_token1] = ACTIONS(6446), - [aux_sym_procedure_attribute_token6] = ACTIONS(6446), - [aux_sym_variable_attributes_token2] = ACTIONS(6446), - [aux_sym_variable_attributes_token3] = ACTIONS(6446), - [aux_sym_variable_attributes_token5] = ACTIONS(6446), - [aux_sym__intrinsic_type_token1] = ACTIONS(6446), - [aux_sym__intrinsic_type_token3] = ACTIONS(6446), - [aux_sym__intrinsic_type_token4] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6446), - [aux_sym_type_qualifier_token1] = ACTIONS(6446), - [aux_sym_type_qualifier_token2] = ACTIONS(6446), - [anon_sym_SEMI] = ACTIONS(6448), - [aux_sym_stop_statement_token1] = ACTIONS(6446), - [aux_sym_stop_statement_token2] = ACTIONS(6446), - [aux_sym_subroutine_call_token1] = ACTIONS(6446), - [aux_sym_keyword_statement_token1] = ACTIONS(6446), - [aux_sym_keyword_statement_token2] = ACTIONS(6446), - [aux_sym_keyword_statement_token3] = ACTIONS(6446), - [aux_sym_keyword_statement_token4] = ACTIONS(6446), - [aux_sym_keyword_statement_token6] = ACTIONS(6446), - [aux_sym_keyword_statement_token7] = ACTIONS(6446), - [aux_sym_include_statement_token1] = ACTIONS(6446), - [aux_sym_data_statement_token1] = ACTIONS(6446), - [aux_sym_do_loop_statement_token1] = ACTIONS(6446), - [aux_sym__inline_if_statement_token1] = ACTIONS(6446), - [aux_sym_end_if_statement_token1] = ACTIONS(6446), - [aux_sym_elseif_clause_token2] = ACTIONS(6446), - [aux_sym__inline_where_statement_token1] = ACTIONS(6446), - [aux_sym__forall_control_expression_token1] = ACTIONS(6446), - [aux_sym_select_case_statement_token1] = ACTIONS(6446), - [aux_sym_select_case_statement_token3] = ACTIONS(6446), - [aux_sym_select_type_statement_token1] = ACTIONS(6446), - [aux_sym_select_rank_statement_token2] = ACTIONS(6446), - [aux_sym_block_construct_token1] = ACTIONS(6446), - [aux_sym_associate_statement_token1] = ACTIONS(6446), - [aux_sym_format_statement_token1] = ACTIONS(6446), - [aux_sym_print_statement_token1] = ACTIONS(6446), - [aux_sym_open_statement_token1] = ACTIONS(6446), - [aux_sym_close_statement_token1] = ACTIONS(6446), - [aux_sym_inquire_statement_token1] = ACTIONS(6446), - [aux_sym_file_position_statement_token1] = ACTIONS(6446), - [aux_sym_file_position_statement_token2] = ACTIONS(6446), - [aux_sym_file_position_statement_token3] = ACTIONS(6446), - [aux_sym_file_position_statement_token4] = ACTIONS(6446), - [aux_sym_allocate_statement_token1] = ACTIONS(6446), - [aux_sym_entry_statement_token1] = ACTIONS(6446), - [aux_sym_logical_expression_token5] = ACTIONS(6448), - [anon_sym_DOT] = ACTIONS(6446), - [anon_sym_LPAREN_SLASH] = ACTIONS(6448), - [anon_sym_LBRACK] = ACTIONS(6448), - [aux_sym_boolean_literal_token1] = ACTIONS(6448), - [aux_sym_boolean_literal_token2] = ACTIONS(6448), - [aux_sym_null_literal_token1] = ACTIONS(6446), - [aux_sym_coarray_statement_token1] = ACTIONS(6446), - [aux_sym_coarray_statement_token2] = ACTIONS(6446), - [aux_sym_coarray_statement_token6] = ACTIONS(6446), - [aux_sym_coarray_statement_token8] = ACTIONS(6446), - [aux_sym_coarray_statement_token11] = ACTIONS(6446), - [aux_sym_coarray_statement_token12] = ACTIONS(6446), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6446), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6446), - [aux_sym_identifier_token1] = ACTIONS(6446), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6448), - [sym__float_literal] = ACTIONS(6448), - [sym__boz_literal] = ACTIONS(6448), - [sym__string_literal] = ACTIONS(6448), - [sym__string_literal_kind] = ACTIONS(6448), - }, - [2236] = { - [aux_sym_preproc_include_token1] = ACTIONS(5948), - [aux_sym_preproc_def_token1] = ACTIONS(5948), - [aux_sym_preproc_if_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5948), - [sym_preproc_directive] = ACTIONS(5948), - [anon_sym_LPAREN2] = ACTIONS(5948), - [anon_sym_PLUS] = ACTIONS(5952), - [anon_sym_DASH] = ACTIONS(5952), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5948), - [aux_sym_procedure_attributes_token3] = ACTIONS(5948), - [aux_sym_end_function_statement_token1] = ACTIONS(5948), - [aux_sym_contains_statement_token1] = ACTIONS(5948), - [aux_sym_use_statement_token2] = ACTIONS(5948), - [aux_sym_implicit_statement_token4] = ACTIONS(5948), - [aux_sym_save_statement_token1] = ACTIONS(5948), - [aux_sym_private_statement_token1] = ACTIONS(5948), - [aux_sym_public_statement_token1] = ACTIONS(5948), - [aux_sym_derived_type_definition_token1] = ACTIONS(5948), - [aux_sym_procedure_attribute_token6] = ACTIONS(5948), - [aux_sym_variable_attributes_token2] = ACTIONS(5948), - [aux_sym_variable_attributes_token3] = ACTIONS(5948), - [aux_sym_variable_attributes_token5] = ACTIONS(5948), - [aux_sym__intrinsic_type_token1] = ACTIONS(5948), - [aux_sym__intrinsic_type_token3] = ACTIONS(5948), - [aux_sym__intrinsic_type_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5948), - [aux_sym_type_qualifier_token1] = ACTIONS(5948), - [aux_sym_type_qualifier_token2] = ACTIONS(5948), - [anon_sym_SEMI] = ACTIONS(5952), - [aux_sym_stop_statement_token1] = ACTIONS(5948), - [aux_sym_stop_statement_token2] = ACTIONS(5948), - [aux_sym_subroutine_call_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token2] = ACTIONS(5948), - [aux_sym_keyword_statement_token3] = ACTIONS(5948), - [aux_sym_keyword_statement_token4] = ACTIONS(5948), - [aux_sym_keyword_statement_token6] = ACTIONS(5948), - [aux_sym_keyword_statement_token7] = ACTIONS(5948), - [aux_sym_include_statement_token1] = ACTIONS(5948), - [aux_sym_data_statement_token1] = ACTIONS(5948), - [aux_sym_do_loop_statement_token1] = ACTIONS(5948), - [aux_sym__inline_if_statement_token1] = ACTIONS(5948), - [aux_sym_end_if_statement_token1] = ACTIONS(5948), - [aux_sym_elseif_clause_token2] = ACTIONS(5948), - [aux_sym__inline_where_statement_token1] = ACTIONS(5948), - [aux_sym__forall_control_expression_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token3] = ACTIONS(5948), - [aux_sym_select_type_statement_token1] = ACTIONS(5948), - [aux_sym_select_rank_statement_token2] = ACTIONS(5948), - [aux_sym_block_construct_token1] = ACTIONS(5948), - [aux_sym_associate_statement_token1] = ACTIONS(5948), - [aux_sym_format_statement_token1] = ACTIONS(5948), - [aux_sym_print_statement_token1] = ACTIONS(5948), - [aux_sym_open_statement_token1] = ACTIONS(5948), - [aux_sym_close_statement_token1] = ACTIONS(5948), - [aux_sym_inquire_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token2] = ACTIONS(5948), - [aux_sym_file_position_statement_token3] = ACTIONS(5948), - [aux_sym_file_position_statement_token4] = ACTIONS(5948), - [aux_sym_allocate_statement_token1] = ACTIONS(5948), - [aux_sym_entry_statement_token1] = ACTIONS(5948), - [aux_sym_logical_expression_token5] = ACTIONS(5952), - [anon_sym_DOT] = ACTIONS(5948), - [anon_sym_LPAREN_SLASH] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5952), - [aux_sym_boolean_literal_token1] = ACTIONS(5952), - [aux_sym_boolean_literal_token2] = ACTIONS(5952), - [aux_sym_null_literal_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token2] = ACTIONS(5948), - [aux_sym_coarray_statement_token6] = ACTIONS(5948), - [aux_sym_coarray_statement_token8] = ACTIONS(5948), - [aux_sym_coarray_statement_token11] = ACTIONS(5948), - [aux_sym_coarray_statement_token12] = ACTIONS(5948), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5948), - [aux_sym_identifier_token1] = ACTIONS(5948), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5952), - [sym__float_literal] = ACTIONS(5952), - [sym__boz_literal] = ACTIONS(5952), - [sym__string_literal] = ACTIONS(5952), - [sym__string_literal_kind] = ACTIONS(5952), - }, - [2237] = { - [aux_sym_preproc_include_token1] = ACTIONS(6450), - [aux_sym_preproc_def_token1] = ACTIONS(6450), - [aux_sym_preproc_if_token1] = ACTIONS(6450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6450), - [sym_preproc_directive] = ACTIONS(6450), - [anon_sym_LPAREN2] = ACTIONS(6450), - [anon_sym_PLUS] = ACTIONS(6452), - [anon_sym_DASH] = ACTIONS(6452), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6450), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6450), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6450), - [aux_sym_procedure_attributes_token3] = ACTIONS(6450), - [aux_sym_end_function_statement_token1] = ACTIONS(6450), - [aux_sym_contains_statement_token1] = ACTIONS(6450), - [aux_sym_use_statement_token2] = ACTIONS(6450), - [aux_sym_implicit_statement_token4] = ACTIONS(6450), - [aux_sym_save_statement_token1] = ACTIONS(6450), - [aux_sym_private_statement_token1] = ACTIONS(6450), - [aux_sym_public_statement_token1] = ACTIONS(6450), - [aux_sym_derived_type_definition_token1] = ACTIONS(6450), - [aux_sym_procedure_attribute_token6] = ACTIONS(6450), - [aux_sym_variable_attributes_token2] = ACTIONS(6450), - [aux_sym_variable_attributes_token3] = ACTIONS(6450), - [aux_sym_variable_attributes_token5] = ACTIONS(6450), - [aux_sym__intrinsic_type_token1] = ACTIONS(6450), - [aux_sym__intrinsic_type_token3] = ACTIONS(6450), - [aux_sym__intrinsic_type_token4] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6450), - [aux_sym_type_qualifier_token1] = ACTIONS(6450), - [aux_sym_type_qualifier_token2] = ACTIONS(6450), - [anon_sym_SEMI] = ACTIONS(6452), - [aux_sym_stop_statement_token1] = ACTIONS(6450), - [aux_sym_stop_statement_token2] = ACTIONS(6450), - [aux_sym_subroutine_call_token1] = ACTIONS(6450), - [aux_sym_keyword_statement_token1] = ACTIONS(6450), - [aux_sym_keyword_statement_token2] = ACTIONS(6450), - [aux_sym_keyword_statement_token3] = ACTIONS(6450), - [aux_sym_keyword_statement_token4] = ACTIONS(6450), - [aux_sym_keyword_statement_token6] = ACTIONS(6450), - [aux_sym_keyword_statement_token7] = ACTIONS(6450), - [aux_sym_include_statement_token1] = ACTIONS(6450), - [aux_sym_data_statement_token1] = ACTIONS(6450), - [aux_sym_do_loop_statement_token1] = ACTIONS(6450), - [aux_sym__inline_if_statement_token1] = ACTIONS(6450), - [aux_sym_end_if_statement_token1] = ACTIONS(6450), - [aux_sym_elseif_clause_token2] = ACTIONS(6450), - [aux_sym__inline_where_statement_token1] = ACTIONS(6450), - [aux_sym__forall_control_expression_token1] = ACTIONS(6450), - [aux_sym_select_case_statement_token1] = ACTIONS(6450), - [aux_sym_select_case_statement_token3] = ACTIONS(6450), - [aux_sym_select_type_statement_token1] = ACTIONS(6450), - [aux_sym_select_rank_statement_token2] = ACTIONS(6450), - [aux_sym_block_construct_token1] = ACTIONS(6450), - [aux_sym_associate_statement_token1] = ACTIONS(6450), - [aux_sym_format_statement_token1] = ACTIONS(6450), - [aux_sym_print_statement_token1] = ACTIONS(6450), - [aux_sym_open_statement_token1] = ACTIONS(6450), - [aux_sym_close_statement_token1] = ACTIONS(6450), - [aux_sym_inquire_statement_token1] = ACTIONS(6450), - [aux_sym_file_position_statement_token1] = ACTIONS(6450), - [aux_sym_file_position_statement_token2] = ACTIONS(6450), - [aux_sym_file_position_statement_token3] = ACTIONS(6450), - [aux_sym_file_position_statement_token4] = ACTIONS(6450), - [aux_sym_allocate_statement_token1] = ACTIONS(6450), - [aux_sym_entry_statement_token1] = ACTIONS(6450), - [aux_sym_logical_expression_token5] = ACTIONS(6452), - [anon_sym_DOT] = ACTIONS(6450), - [anon_sym_LPAREN_SLASH] = ACTIONS(6452), - [anon_sym_LBRACK] = ACTIONS(6452), - [aux_sym_boolean_literal_token1] = ACTIONS(6452), - [aux_sym_boolean_literal_token2] = ACTIONS(6452), - [aux_sym_null_literal_token1] = ACTIONS(6450), - [aux_sym_coarray_statement_token1] = ACTIONS(6450), - [aux_sym_coarray_statement_token2] = ACTIONS(6450), - [aux_sym_coarray_statement_token6] = ACTIONS(6450), - [aux_sym_coarray_statement_token8] = ACTIONS(6450), - [aux_sym_coarray_statement_token11] = ACTIONS(6450), - [aux_sym_coarray_statement_token12] = ACTIONS(6450), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6450), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6450), - [aux_sym_identifier_token1] = ACTIONS(6450), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6452), - [sym__float_literal] = ACTIONS(6452), - [sym__boz_literal] = ACTIONS(6452), - [sym__string_literal] = ACTIONS(6452), - [sym__string_literal_kind] = ACTIONS(6452), - }, - [2238] = { - [aux_sym_preproc_include_token1] = ACTIONS(6454), - [aux_sym_preproc_def_token1] = ACTIONS(6454), - [aux_sym_preproc_if_token1] = ACTIONS(6454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6454), - [sym_preproc_directive] = ACTIONS(6454), - [anon_sym_LPAREN2] = ACTIONS(6454), - [anon_sym_PLUS] = ACTIONS(6456), - [anon_sym_DASH] = ACTIONS(6456), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6454), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6454), - [aux_sym_procedure_attributes_token3] = ACTIONS(6454), - [aux_sym_end_function_statement_token1] = ACTIONS(6454), - [aux_sym_contains_statement_token1] = ACTIONS(6454), - [aux_sym_use_statement_token2] = ACTIONS(6454), - [aux_sym_implicit_statement_token4] = ACTIONS(6454), - [aux_sym_save_statement_token1] = ACTIONS(6454), - [aux_sym_private_statement_token1] = ACTIONS(6454), - [aux_sym_public_statement_token1] = ACTIONS(6454), - [aux_sym_derived_type_definition_token1] = ACTIONS(6454), - [aux_sym_procedure_attribute_token6] = ACTIONS(6454), - [aux_sym_variable_attributes_token2] = ACTIONS(6454), - [aux_sym_variable_attributes_token3] = ACTIONS(6454), - [aux_sym_variable_attributes_token5] = ACTIONS(6454), - [aux_sym__intrinsic_type_token1] = ACTIONS(6454), - [aux_sym__intrinsic_type_token3] = ACTIONS(6454), - [aux_sym__intrinsic_type_token4] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6454), - [aux_sym_type_qualifier_token1] = ACTIONS(6454), - [aux_sym_type_qualifier_token2] = ACTIONS(6454), - [anon_sym_SEMI] = ACTIONS(6456), - [aux_sym_stop_statement_token1] = ACTIONS(6454), - [aux_sym_stop_statement_token2] = ACTIONS(6454), - [aux_sym_subroutine_call_token1] = ACTIONS(6454), - [aux_sym_keyword_statement_token1] = ACTIONS(6454), - [aux_sym_keyword_statement_token2] = ACTIONS(6454), - [aux_sym_keyword_statement_token3] = ACTIONS(6454), - [aux_sym_keyword_statement_token4] = ACTIONS(6454), - [aux_sym_keyword_statement_token6] = ACTIONS(6454), - [aux_sym_keyword_statement_token7] = ACTIONS(6454), - [aux_sym_include_statement_token1] = ACTIONS(6454), - [aux_sym_data_statement_token1] = ACTIONS(6454), - [aux_sym_do_loop_statement_token1] = ACTIONS(6454), - [aux_sym__inline_if_statement_token1] = ACTIONS(6454), - [aux_sym_end_if_statement_token1] = ACTIONS(6454), - [aux_sym_elseif_clause_token2] = ACTIONS(6454), - [aux_sym__inline_where_statement_token1] = ACTIONS(6454), - [aux_sym__forall_control_expression_token1] = ACTIONS(6454), - [aux_sym_select_case_statement_token1] = ACTIONS(6454), - [aux_sym_select_case_statement_token3] = ACTIONS(6454), - [aux_sym_select_type_statement_token1] = ACTIONS(6454), - [aux_sym_select_rank_statement_token2] = ACTIONS(6454), - [aux_sym_block_construct_token1] = ACTIONS(6454), - [aux_sym_associate_statement_token1] = ACTIONS(6454), - [aux_sym_format_statement_token1] = ACTIONS(6454), - [aux_sym_print_statement_token1] = ACTIONS(6454), - [aux_sym_open_statement_token1] = ACTIONS(6454), - [aux_sym_close_statement_token1] = ACTIONS(6454), - [aux_sym_inquire_statement_token1] = ACTIONS(6454), - [aux_sym_file_position_statement_token1] = ACTIONS(6454), - [aux_sym_file_position_statement_token2] = ACTIONS(6454), - [aux_sym_file_position_statement_token3] = ACTIONS(6454), - [aux_sym_file_position_statement_token4] = ACTIONS(6454), - [aux_sym_allocate_statement_token1] = ACTIONS(6454), - [aux_sym_entry_statement_token1] = ACTIONS(6454), - [aux_sym_logical_expression_token5] = ACTIONS(6456), - [anon_sym_DOT] = ACTIONS(6454), - [anon_sym_LPAREN_SLASH] = ACTIONS(6456), - [anon_sym_LBRACK] = ACTIONS(6456), - [aux_sym_boolean_literal_token1] = ACTIONS(6456), - [aux_sym_boolean_literal_token2] = ACTIONS(6456), - [aux_sym_null_literal_token1] = ACTIONS(6454), - [aux_sym_coarray_statement_token1] = ACTIONS(6454), - [aux_sym_coarray_statement_token2] = ACTIONS(6454), - [aux_sym_coarray_statement_token6] = ACTIONS(6454), - [aux_sym_coarray_statement_token8] = ACTIONS(6454), - [aux_sym_coarray_statement_token11] = ACTIONS(6454), - [aux_sym_coarray_statement_token12] = ACTIONS(6454), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6454), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6454), - [aux_sym_identifier_token1] = ACTIONS(6454), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6456), - [sym__float_literal] = ACTIONS(6456), - [sym__boz_literal] = ACTIONS(6456), - [sym__string_literal] = ACTIONS(6456), - [sym__string_literal_kind] = ACTIONS(6456), - }, - [2239] = { - [aux_sym_preproc_include_token1] = ACTIONS(6246), - [aux_sym_preproc_def_token1] = ACTIONS(6246), - [aux_sym_preproc_if_token1] = ACTIONS(6246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6246), - [sym_preproc_directive] = ACTIONS(6246), - [anon_sym_LPAREN2] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6248), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6246), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6246), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6246), - [aux_sym_procedure_attributes_token3] = ACTIONS(6246), - [aux_sym_end_function_statement_token1] = ACTIONS(6246), - [aux_sym_contains_statement_token1] = ACTIONS(6246), - [aux_sym_use_statement_token2] = ACTIONS(6246), - [aux_sym_implicit_statement_token4] = ACTIONS(6246), - [aux_sym_save_statement_token1] = ACTIONS(6246), - [aux_sym_private_statement_token1] = ACTIONS(6246), - [aux_sym_public_statement_token1] = ACTIONS(6246), - [aux_sym_derived_type_definition_token1] = ACTIONS(6246), - [aux_sym_procedure_attribute_token6] = ACTIONS(6246), - [aux_sym_variable_attributes_token2] = ACTIONS(6246), - [aux_sym_variable_attributes_token3] = ACTIONS(6246), - [aux_sym_variable_attributes_token5] = ACTIONS(6246), - [aux_sym__intrinsic_type_token1] = ACTIONS(6246), - [aux_sym__intrinsic_type_token3] = ACTIONS(6246), - [aux_sym__intrinsic_type_token4] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6246), - [aux_sym_type_qualifier_token1] = ACTIONS(6246), - [aux_sym_type_qualifier_token2] = ACTIONS(6246), - [anon_sym_SEMI] = ACTIONS(6248), - [aux_sym_stop_statement_token1] = ACTIONS(6246), - [aux_sym_stop_statement_token2] = ACTIONS(6246), - [aux_sym_subroutine_call_token1] = ACTIONS(6246), - [aux_sym_keyword_statement_token1] = ACTIONS(6246), - [aux_sym_keyword_statement_token2] = ACTIONS(6246), - [aux_sym_keyword_statement_token3] = ACTIONS(6246), - [aux_sym_keyword_statement_token4] = ACTIONS(6246), - [aux_sym_keyword_statement_token6] = ACTIONS(6246), - [aux_sym_keyword_statement_token7] = ACTIONS(6246), - [aux_sym_include_statement_token1] = ACTIONS(6246), - [aux_sym_data_statement_token1] = ACTIONS(6246), - [aux_sym_do_loop_statement_token1] = ACTIONS(6246), - [aux_sym__inline_if_statement_token1] = ACTIONS(6246), - [aux_sym_end_if_statement_token1] = ACTIONS(6246), - [aux_sym_elseif_clause_token2] = ACTIONS(6246), - [aux_sym__inline_where_statement_token1] = ACTIONS(6246), - [aux_sym__forall_control_expression_token1] = ACTIONS(6246), - [aux_sym_select_case_statement_token1] = ACTIONS(6246), - [aux_sym_select_case_statement_token3] = ACTIONS(6246), - [aux_sym_select_type_statement_token1] = ACTIONS(6246), - [aux_sym_select_rank_statement_token2] = ACTIONS(6246), - [aux_sym_block_construct_token1] = ACTIONS(6246), - [aux_sym_associate_statement_token1] = ACTIONS(6246), - [aux_sym_format_statement_token1] = ACTIONS(6246), - [aux_sym_print_statement_token1] = ACTIONS(6246), - [aux_sym_open_statement_token1] = ACTIONS(6246), - [aux_sym_close_statement_token1] = ACTIONS(6246), - [aux_sym_inquire_statement_token1] = ACTIONS(6246), - [aux_sym_file_position_statement_token1] = ACTIONS(6246), - [aux_sym_file_position_statement_token2] = ACTIONS(6246), - [aux_sym_file_position_statement_token3] = ACTIONS(6246), - [aux_sym_file_position_statement_token4] = ACTIONS(6246), - [aux_sym_allocate_statement_token1] = ACTIONS(6246), - [aux_sym_entry_statement_token1] = ACTIONS(6246), - [aux_sym_logical_expression_token5] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_LPAREN_SLASH] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6248), - [aux_sym_boolean_literal_token1] = ACTIONS(6248), - [aux_sym_boolean_literal_token2] = ACTIONS(6248), - [aux_sym_null_literal_token1] = ACTIONS(6246), - [aux_sym_coarray_statement_token1] = ACTIONS(6246), - [aux_sym_coarray_statement_token2] = ACTIONS(6246), - [aux_sym_coarray_statement_token6] = ACTIONS(6246), - [aux_sym_coarray_statement_token8] = ACTIONS(6246), - [aux_sym_coarray_statement_token11] = ACTIONS(6246), - [aux_sym_coarray_statement_token12] = ACTIONS(6246), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6246), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6246), - [aux_sym_identifier_token1] = ACTIONS(6246), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6248), - [sym__float_literal] = ACTIONS(6248), - [sym__boz_literal] = ACTIONS(6248), - [sym__string_literal] = ACTIONS(6248), - [sym__string_literal_kind] = ACTIONS(6248), - }, - [2240] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token2] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6458), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [2241] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token2] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6460), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [2242] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token2] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6462), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [2243] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token2] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6464), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [2244] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token2] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6466), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [2245] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6468), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [2246] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token2] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6470), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), - }, - [2247] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token2] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6472), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [2248] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2097] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token2] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_contains_statement_token1] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [2249] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2098] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_contains_statement_token1] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), }, - [2250] = { + [2099] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -368574,15 +353625,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [sym_preproc_comment] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4571), [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), [aux_sym_use_statement_token2] = ACTIONS(4571), [aux_sym_implicit_statement_token4] = ACTIONS(4571), [aux_sym_save_statement_token1] = ACTIONS(4571), @@ -368607,7 +353657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -368642,12 +353692,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -368656,610 +353706,3779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(4571), [aux_sym_coarray_statement_token12] = ACTIONS(4571), [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4571), [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2251] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2100] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6288), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2252] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2101] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token2] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_contains_statement_token1] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2102] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token2] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_contains_statement_token1] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2103] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6290), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2104] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token2] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_contains_statement_token1] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2105] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_contains_statement_token1] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2106] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_end_program_statement_token2] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [2107] = { + [aux_sym_preproc_include_token1] = ACTIONS(6292), + [aux_sym_preproc_def_token1] = ACTIONS(6292), + [aux_sym_preproc_if_token1] = ACTIONS(6292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6292), + [sym_preproc_directive] = ACTIONS(6292), + [anon_sym_LPAREN2] = ACTIONS(6292), + [anon_sym_PLUS] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6292), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6292), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6292), + [aux_sym_procedure_attributes_token3] = ACTIONS(6292), + [aux_sym_end_function_statement_token1] = ACTIONS(6292), + [aux_sym_contains_statement_token1] = ACTIONS(6292), + [aux_sym_use_statement_token2] = ACTIONS(6292), + [aux_sym_implicit_statement_token4] = ACTIONS(6292), + [aux_sym_save_statement_token1] = ACTIONS(6292), + [aux_sym_private_statement_token1] = ACTIONS(6292), + [aux_sym_public_statement_token1] = ACTIONS(6292), + [aux_sym_derived_type_definition_token1] = ACTIONS(6292), + [aux_sym_procedure_attribute_token6] = ACTIONS(6292), + [aux_sym_variable_attributes_token2] = ACTIONS(6292), + [aux_sym_variable_attributes_token3] = ACTIONS(6292), + [aux_sym_variable_attributes_token5] = ACTIONS(6292), + [aux_sym__intrinsic_type_token1] = ACTIONS(6292), + [aux_sym__intrinsic_type_token3] = ACTIONS(6292), + [aux_sym__intrinsic_type_token4] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6292), + [aux_sym_type_qualifier_token1] = ACTIONS(6292), + [aux_sym_type_qualifier_token2] = ACTIONS(6292), + [anon_sym_SEMI] = ACTIONS(6294), + [aux_sym_stop_statement_token1] = ACTIONS(6292), + [aux_sym_stop_statement_token2] = ACTIONS(6292), + [aux_sym_subroutine_call_token1] = ACTIONS(6292), + [aux_sym_keyword_statement_token1] = ACTIONS(6292), + [aux_sym_keyword_statement_token2] = ACTIONS(6292), + [aux_sym_keyword_statement_token3] = ACTIONS(6292), + [aux_sym_keyword_statement_token4] = ACTIONS(6292), + [aux_sym_keyword_statement_token6] = ACTIONS(6292), + [aux_sym_keyword_statement_token7] = ACTIONS(6292), + [aux_sym_include_statement_token1] = ACTIONS(6292), + [aux_sym_data_statement_token1] = ACTIONS(6292), + [aux_sym_do_loop_statement_token1] = ACTIONS(6292), + [aux_sym__inline_if_statement_token1] = ACTIONS(6292), + [aux_sym_end_if_statement_token1] = ACTIONS(6292), + [aux_sym_elseif_clause_token2] = ACTIONS(6292), + [aux_sym__inline_where_statement_token1] = ACTIONS(6292), + [aux_sym__forall_control_expression_token1] = ACTIONS(6292), + [aux_sym_select_case_statement_token1] = ACTIONS(6292), + [aux_sym_select_case_statement_token3] = ACTIONS(6292), + [aux_sym_select_type_statement_token1] = ACTIONS(6292), + [aux_sym_select_rank_statement_token2] = ACTIONS(6292), + [aux_sym_block_construct_token1] = ACTIONS(6292), + [aux_sym_associate_statement_token1] = ACTIONS(6292), + [aux_sym_format_statement_token1] = ACTIONS(6292), + [aux_sym_print_statement_token1] = ACTIONS(6292), + [aux_sym_open_statement_token1] = ACTIONS(6292), + [aux_sym_close_statement_token1] = ACTIONS(6292), + [aux_sym_inquire_statement_token1] = ACTIONS(6292), + [aux_sym_file_position_statement_token1] = ACTIONS(6292), + [aux_sym_file_position_statement_token2] = ACTIONS(6292), + [aux_sym_file_position_statement_token3] = ACTIONS(6292), + [aux_sym_file_position_statement_token4] = ACTIONS(6292), + [aux_sym_allocate_statement_token1] = ACTIONS(6292), + [aux_sym_entry_statement_token1] = ACTIONS(6292), + [aux_sym_logical_expression_token5] = ACTIONS(6294), + [anon_sym_DOT] = ACTIONS(6292), + [anon_sym_LPAREN_SLASH] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [aux_sym_boolean_literal_token1] = ACTIONS(6294), + [aux_sym_boolean_literal_token2] = ACTIONS(6294), + [aux_sym_null_literal_token1] = ACTIONS(6292), + [aux_sym_coarray_statement_token1] = ACTIONS(6292), + [aux_sym_coarray_statement_token2] = ACTIONS(6292), + [aux_sym_coarray_statement_token6] = ACTIONS(6292), + [aux_sym_coarray_statement_token8] = ACTIONS(6292), + [aux_sym_coarray_statement_token11] = ACTIONS(6292), + [aux_sym_coarray_statement_token12] = ACTIONS(6292), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6292), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6292), + [aux_sym_identifier_token1] = ACTIONS(6292), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6294), + [sym__float_literal] = ACTIONS(6294), + [sym__boz_literal] = ACTIONS(6294), + [sym__string_literal] = ACTIONS(6294), + [sym__string_literal_kind] = ACTIONS(6294), + }, + [2108] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token2] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_contains_statement_token1] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), + }, + [2109] = { + [aux_sym_preproc_include_token1] = ACTIONS(6296), + [aux_sym_preproc_def_token1] = ACTIONS(6296), + [aux_sym_preproc_if_token1] = ACTIONS(6296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6296), + [sym_preproc_directive] = ACTIONS(6296), + [anon_sym_LPAREN2] = ACTIONS(6296), + [anon_sym_PLUS] = ACTIONS(6298), + [anon_sym_DASH] = ACTIONS(6298), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6296), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6296), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6296), + [aux_sym_procedure_attributes_token3] = ACTIONS(6296), + [aux_sym_end_function_statement_token1] = ACTIONS(6296), + [aux_sym_contains_statement_token1] = ACTIONS(6296), + [aux_sym_use_statement_token2] = ACTIONS(6296), + [aux_sym_implicit_statement_token4] = ACTIONS(6296), + [aux_sym_save_statement_token1] = ACTIONS(6296), + [aux_sym_private_statement_token1] = ACTIONS(6296), + [aux_sym_public_statement_token1] = ACTIONS(6296), + [aux_sym_derived_type_definition_token1] = ACTIONS(6296), + [aux_sym_procedure_attribute_token6] = ACTIONS(6296), + [aux_sym_variable_attributes_token2] = ACTIONS(6296), + [aux_sym_variable_attributes_token3] = ACTIONS(6296), + [aux_sym_variable_attributes_token5] = ACTIONS(6296), + [aux_sym__intrinsic_type_token1] = ACTIONS(6296), + [aux_sym__intrinsic_type_token3] = ACTIONS(6296), + [aux_sym__intrinsic_type_token4] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6296), + [aux_sym_type_qualifier_token1] = ACTIONS(6296), + [aux_sym_type_qualifier_token2] = ACTIONS(6296), + [anon_sym_SEMI] = ACTIONS(6298), + [aux_sym_stop_statement_token1] = ACTIONS(6296), + [aux_sym_stop_statement_token2] = ACTIONS(6296), + [aux_sym_subroutine_call_token1] = ACTIONS(6296), + [aux_sym_keyword_statement_token1] = ACTIONS(6296), + [aux_sym_keyword_statement_token2] = ACTIONS(6296), + [aux_sym_keyword_statement_token3] = ACTIONS(6296), + [aux_sym_keyword_statement_token4] = ACTIONS(6296), + [aux_sym_keyword_statement_token6] = ACTIONS(6296), + [aux_sym_keyword_statement_token7] = ACTIONS(6296), + [aux_sym_include_statement_token1] = ACTIONS(6296), + [aux_sym_data_statement_token1] = ACTIONS(6296), + [aux_sym_do_loop_statement_token1] = ACTIONS(6296), + [aux_sym__inline_if_statement_token1] = ACTIONS(6296), + [aux_sym_end_if_statement_token1] = ACTIONS(6296), + [aux_sym_elseif_clause_token2] = ACTIONS(6296), + [aux_sym__inline_where_statement_token1] = ACTIONS(6296), + [aux_sym__forall_control_expression_token1] = ACTIONS(6296), + [aux_sym_select_case_statement_token1] = ACTIONS(6296), + [aux_sym_select_case_statement_token3] = ACTIONS(6296), + [aux_sym_select_type_statement_token1] = ACTIONS(6296), + [aux_sym_select_rank_statement_token2] = ACTIONS(6296), + [aux_sym_block_construct_token1] = ACTIONS(6296), + [aux_sym_associate_statement_token1] = ACTIONS(6296), + [aux_sym_format_statement_token1] = ACTIONS(6296), + [aux_sym_print_statement_token1] = ACTIONS(6296), + [aux_sym_open_statement_token1] = ACTIONS(6296), + [aux_sym_close_statement_token1] = ACTIONS(6296), + [aux_sym_inquire_statement_token1] = ACTIONS(6296), + [aux_sym_file_position_statement_token1] = ACTIONS(6296), + [aux_sym_file_position_statement_token2] = ACTIONS(6296), + [aux_sym_file_position_statement_token3] = ACTIONS(6296), + [aux_sym_file_position_statement_token4] = ACTIONS(6296), + [aux_sym_allocate_statement_token1] = ACTIONS(6296), + [aux_sym_entry_statement_token1] = ACTIONS(6296), + [aux_sym_logical_expression_token5] = ACTIONS(6298), + [anon_sym_DOT] = ACTIONS(6296), + [anon_sym_LPAREN_SLASH] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(6298), + [aux_sym_boolean_literal_token1] = ACTIONS(6298), + [aux_sym_boolean_literal_token2] = ACTIONS(6298), + [aux_sym_null_literal_token1] = ACTIONS(6296), + [aux_sym_coarray_statement_token1] = ACTIONS(6296), + [aux_sym_coarray_statement_token2] = ACTIONS(6296), + [aux_sym_coarray_statement_token6] = ACTIONS(6296), + [aux_sym_coarray_statement_token8] = ACTIONS(6296), + [aux_sym_coarray_statement_token11] = ACTIONS(6296), + [aux_sym_coarray_statement_token12] = ACTIONS(6296), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6296), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6296), + [aux_sym_identifier_token1] = ACTIONS(6296), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6298), + [sym__float_literal] = ACTIONS(6298), + [sym__boz_literal] = ACTIONS(6298), + [sym__string_literal] = ACTIONS(6298), + [sym__string_literal_kind] = ACTIONS(6298), + }, + [2110] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_contains_statement_token1] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2111] = { + [aux_sym_preproc_include_token1] = ACTIONS(5890), + [aux_sym_preproc_def_token1] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5890), + [sym_preproc_directive] = ACTIONS(5890), + [anon_sym_LPAREN2] = ACTIONS(5890), + [anon_sym_PLUS] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5890), + [aux_sym_procedure_attributes_token3] = ACTIONS(5890), + [aux_sym_end_function_statement_token1] = ACTIONS(5890), + [aux_sym_contains_statement_token1] = ACTIONS(5890), + [aux_sym_use_statement_token2] = ACTIONS(5890), + [aux_sym_implicit_statement_token4] = ACTIONS(5890), + [aux_sym_save_statement_token1] = ACTIONS(5890), + [aux_sym_private_statement_token1] = ACTIONS(5890), + [aux_sym_public_statement_token1] = ACTIONS(5890), + [aux_sym_derived_type_definition_token1] = ACTIONS(5890), + [aux_sym_procedure_attribute_token6] = ACTIONS(5890), + [aux_sym_variable_attributes_token2] = ACTIONS(5890), + [aux_sym_variable_attributes_token3] = ACTIONS(5890), + [aux_sym_variable_attributes_token5] = ACTIONS(5890), + [aux_sym__intrinsic_type_token1] = ACTIONS(5890), + [aux_sym__intrinsic_type_token3] = ACTIONS(5890), + [aux_sym__intrinsic_type_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5890), + [aux_sym_type_qualifier_token1] = ACTIONS(5890), + [aux_sym_type_qualifier_token2] = ACTIONS(5890), + [anon_sym_SEMI] = ACTIONS(5894), + [aux_sym_stop_statement_token1] = ACTIONS(5890), + [aux_sym_stop_statement_token2] = ACTIONS(5890), + [aux_sym_subroutine_call_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token2] = ACTIONS(5890), + [aux_sym_keyword_statement_token3] = ACTIONS(5890), + [aux_sym_keyword_statement_token4] = ACTIONS(5890), + [aux_sym_keyword_statement_token6] = ACTIONS(5890), + [aux_sym_keyword_statement_token7] = ACTIONS(5890), + [aux_sym_include_statement_token1] = ACTIONS(5890), + [aux_sym_data_statement_token1] = ACTIONS(5890), + [aux_sym_do_loop_statement_token1] = ACTIONS(5890), + [aux_sym__inline_if_statement_token1] = ACTIONS(5890), + [aux_sym_end_if_statement_token1] = ACTIONS(5890), + [aux_sym_elseif_clause_token2] = ACTIONS(5890), + [aux_sym__inline_where_statement_token1] = ACTIONS(5890), + [aux_sym__forall_control_expression_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token3] = ACTIONS(5890), + [aux_sym_select_type_statement_token1] = ACTIONS(5890), + [aux_sym_select_rank_statement_token2] = ACTIONS(5890), + [aux_sym_block_construct_token1] = ACTIONS(5890), + [aux_sym_associate_statement_token1] = ACTIONS(5890), + [aux_sym_format_statement_token1] = ACTIONS(5890), + [aux_sym_print_statement_token1] = ACTIONS(5890), + [aux_sym_open_statement_token1] = ACTIONS(5890), + [aux_sym_close_statement_token1] = ACTIONS(5890), + [aux_sym_inquire_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token2] = ACTIONS(5890), + [aux_sym_file_position_statement_token3] = ACTIONS(5890), + [aux_sym_file_position_statement_token4] = ACTIONS(5890), + [aux_sym_allocate_statement_token1] = ACTIONS(5890), + [aux_sym_entry_statement_token1] = ACTIONS(5890), + [aux_sym_logical_expression_token5] = ACTIONS(5894), + [anon_sym_DOT] = ACTIONS(5890), + [anon_sym_LPAREN_SLASH] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(5894), + [aux_sym_boolean_literal_token1] = ACTIONS(5894), + [aux_sym_boolean_literal_token2] = ACTIONS(5894), + [aux_sym_null_literal_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token2] = ACTIONS(5890), + [aux_sym_coarray_statement_token6] = ACTIONS(5890), + [aux_sym_coarray_statement_token8] = ACTIONS(5890), + [aux_sym_coarray_statement_token11] = ACTIONS(5890), + [aux_sym_coarray_statement_token12] = ACTIONS(5890), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5890), + [aux_sym_identifier_token1] = ACTIONS(5890), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5894), + [sym__float_literal] = ACTIONS(5894), + [sym__boz_literal] = ACTIONS(5894), + [sym__string_literal] = ACTIONS(5894), + [sym__string_literal_kind] = ACTIONS(5894), + }, + [2112] = { + [aux_sym_preproc_include_token1] = ACTIONS(6078), + [aux_sym_preproc_def_token1] = ACTIONS(6078), + [aux_sym_preproc_if_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6078), + [sym_preproc_directive] = ACTIONS(6078), + [anon_sym_LPAREN2] = ACTIONS(6078), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_DASH] = ACTIONS(6082), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6078), + [aux_sym_procedure_attributes_token3] = ACTIONS(6078), + [aux_sym_end_function_statement_token1] = ACTIONS(6078), + [aux_sym_contains_statement_token1] = ACTIONS(6078), + [aux_sym_use_statement_token2] = ACTIONS(6078), + [aux_sym_implicit_statement_token4] = ACTIONS(6078), + [aux_sym_save_statement_token1] = ACTIONS(6078), + [aux_sym_private_statement_token1] = ACTIONS(6078), + [aux_sym_public_statement_token1] = ACTIONS(6078), + [aux_sym_derived_type_definition_token1] = ACTIONS(6078), + [aux_sym_procedure_attribute_token6] = ACTIONS(6078), + [aux_sym_variable_attributes_token2] = ACTIONS(6078), + [aux_sym_variable_attributes_token3] = ACTIONS(6078), + [aux_sym_variable_attributes_token5] = ACTIONS(6078), + [aux_sym__intrinsic_type_token1] = ACTIONS(6078), + [aux_sym__intrinsic_type_token3] = ACTIONS(6078), + [aux_sym__intrinsic_type_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6078), + [aux_sym_type_qualifier_token1] = ACTIONS(6078), + [aux_sym_type_qualifier_token2] = ACTIONS(6078), + [anon_sym_SEMI] = ACTIONS(6082), + [aux_sym_stop_statement_token1] = ACTIONS(6078), + [aux_sym_stop_statement_token2] = ACTIONS(6078), + [aux_sym_subroutine_call_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token2] = ACTIONS(6078), + [aux_sym_keyword_statement_token3] = ACTIONS(6078), + [aux_sym_keyword_statement_token4] = ACTIONS(6078), + [aux_sym_keyword_statement_token6] = ACTIONS(6078), + [aux_sym_keyword_statement_token7] = ACTIONS(6078), + [aux_sym_include_statement_token1] = ACTIONS(6078), + [aux_sym_data_statement_token1] = ACTIONS(6078), + [aux_sym_do_loop_statement_token1] = ACTIONS(6078), + [aux_sym__inline_if_statement_token1] = ACTIONS(6078), + [aux_sym_end_if_statement_token1] = ACTIONS(6078), + [aux_sym_elseif_clause_token2] = ACTIONS(6078), + [aux_sym__inline_where_statement_token1] = ACTIONS(6078), + [aux_sym__forall_control_expression_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token3] = ACTIONS(6078), + [aux_sym_select_type_statement_token1] = ACTIONS(6078), + [aux_sym_select_rank_statement_token2] = ACTIONS(6078), + [aux_sym_block_construct_token1] = ACTIONS(6078), + [aux_sym_associate_statement_token1] = ACTIONS(6078), + [aux_sym_format_statement_token1] = ACTIONS(6078), + [aux_sym_print_statement_token1] = ACTIONS(6078), + [aux_sym_open_statement_token1] = ACTIONS(6078), + [aux_sym_close_statement_token1] = ACTIONS(6078), + [aux_sym_inquire_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token2] = ACTIONS(6078), + [aux_sym_file_position_statement_token3] = ACTIONS(6078), + [aux_sym_file_position_statement_token4] = ACTIONS(6078), + [aux_sym_allocate_statement_token1] = ACTIONS(6078), + [aux_sym_entry_statement_token1] = ACTIONS(6078), + [aux_sym_logical_expression_token5] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_LPAREN_SLASH] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6082), + [aux_sym_boolean_literal_token1] = ACTIONS(6082), + [aux_sym_boolean_literal_token2] = ACTIONS(6082), + [aux_sym_null_literal_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token2] = ACTIONS(6078), + [aux_sym_coarray_statement_token6] = ACTIONS(6078), + [aux_sym_coarray_statement_token8] = ACTIONS(6078), + [aux_sym_coarray_statement_token11] = ACTIONS(6078), + [aux_sym_coarray_statement_token12] = ACTIONS(6078), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6078), + [aux_sym_identifier_token1] = ACTIONS(6078), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6082), + [sym__float_literal] = ACTIONS(6082), + [sym__boz_literal] = ACTIONS(6082), + [sym__string_literal] = ACTIONS(6082), + [sym__string_literal_kind] = ACTIONS(6082), + }, + [2113] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [2114] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_program_statement_token2] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), + }, + [2115] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6302), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2116] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6304), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [2117] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6306), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [2118] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6308), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [2119] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6310), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [2120] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_program_statement_token2] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), + }, + [2121] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_program_statement_token2] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), + }, + [2122] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_program_statement_token2] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2253] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2123] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6312), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2124] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6314), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2125] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6316), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2126] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [2127] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6320), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_end_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), + }, + [2128] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6322), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [2129] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6324), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [2130] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6326), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_end_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [2254] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2131] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6328), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_end_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2255] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_end_function_statement_token1] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2132] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6330), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), }, - [2256] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_end_function_statement_token1] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2133] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6332), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2257] = { + [2134] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(6334), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_end_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2135] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6336), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_end_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2136] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6338), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2137] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6340), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2138] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -369267,15 +357486,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [sym_preproc_comment] = ACTIONS(6342), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_end_function_statement_token1] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), [aux_sym_use_statement_token2] = ACTIONS(4571), [aux_sym_implicit_statement_token4] = ACTIONS(4571), [aux_sym_save_statement_token1] = ACTIONS(4571), @@ -369300,7 +357518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -369324,6 +357542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(4571), [aux_sym_block_construct_token1] = ACTIONS(4571), [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_end_associate_statement_token1] = ACTIONS(4571), [aux_sym_format_statement_token1] = ACTIONS(4571), [aux_sym_print_statement_token1] = ACTIONS(4571), [aux_sym_open_statement_token1] = ACTIONS(4571), @@ -369335,12 +357554,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -369352,1399 +357571,3082 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2258] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2139] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6344), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_end_function_statement_token1] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_end_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2259] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2140] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6346), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2141] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6348), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_end_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2142] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_end_program_statement_token2] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_contains_statement_token1] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [2143] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_end_function_statement_token1] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_program_statement_token2] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), + }, + [2144] = { + [aux_sym_preproc_include_token1] = ACTIONS(6350), + [aux_sym_preproc_def_token1] = ACTIONS(6350), + [aux_sym_preproc_if_token1] = ACTIONS(6350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6350), + [sym_preproc_directive] = ACTIONS(6350), + [anon_sym_LPAREN2] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6352), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6350), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6350), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6350), + [aux_sym_procedure_attributes_token3] = ACTIONS(6350), + [aux_sym_end_function_statement_token1] = ACTIONS(6350), + [aux_sym_contains_statement_token1] = ACTIONS(6350), + [aux_sym_use_statement_token2] = ACTIONS(6350), + [aux_sym_implicit_statement_token4] = ACTIONS(6350), + [aux_sym_save_statement_token1] = ACTIONS(6350), + [aux_sym_private_statement_token1] = ACTIONS(6350), + [aux_sym_public_statement_token1] = ACTIONS(6350), + [aux_sym_derived_type_definition_token1] = ACTIONS(6350), + [aux_sym_procedure_attribute_token6] = ACTIONS(6350), + [aux_sym_variable_attributes_token2] = ACTIONS(6350), + [aux_sym_variable_attributes_token3] = ACTIONS(6350), + [aux_sym_variable_attributes_token5] = ACTIONS(6350), + [aux_sym__intrinsic_type_token1] = ACTIONS(6350), + [aux_sym__intrinsic_type_token3] = ACTIONS(6350), + [aux_sym__intrinsic_type_token4] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6350), + [aux_sym_type_qualifier_token1] = ACTIONS(6350), + [aux_sym_type_qualifier_token2] = ACTIONS(6350), + [anon_sym_SEMI] = ACTIONS(6352), + [aux_sym_stop_statement_token1] = ACTIONS(6350), + [aux_sym_stop_statement_token2] = ACTIONS(6350), + [aux_sym_subroutine_call_token1] = ACTIONS(6350), + [aux_sym_keyword_statement_token1] = ACTIONS(6350), + [aux_sym_keyword_statement_token2] = ACTIONS(6350), + [aux_sym_keyword_statement_token3] = ACTIONS(6350), + [aux_sym_keyword_statement_token4] = ACTIONS(6350), + [aux_sym_keyword_statement_token6] = ACTIONS(6350), + [aux_sym_keyword_statement_token7] = ACTIONS(6350), + [aux_sym_include_statement_token1] = ACTIONS(6350), + [aux_sym_data_statement_token1] = ACTIONS(6350), + [aux_sym_do_loop_statement_token1] = ACTIONS(6350), + [aux_sym__inline_if_statement_token1] = ACTIONS(6350), + [aux_sym_end_if_statement_token1] = ACTIONS(6350), + [aux_sym_elseif_clause_token2] = ACTIONS(6350), + [aux_sym__inline_where_statement_token1] = ACTIONS(6350), + [aux_sym__forall_control_expression_token1] = ACTIONS(6350), + [aux_sym_select_case_statement_token1] = ACTIONS(6350), + [aux_sym_select_case_statement_token3] = ACTIONS(6350), + [aux_sym_select_type_statement_token1] = ACTIONS(6350), + [aux_sym_select_rank_statement_token2] = ACTIONS(6350), + [aux_sym_block_construct_token1] = ACTIONS(6350), + [aux_sym_associate_statement_token1] = ACTIONS(6350), + [aux_sym_format_statement_token1] = ACTIONS(6350), + [aux_sym_print_statement_token1] = ACTIONS(6350), + [aux_sym_open_statement_token1] = ACTIONS(6350), + [aux_sym_close_statement_token1] = ACTIONS(6350), + [aux_sym_inquire_statement_token1] = ACTIONS(6350), + [aux_sym_file_position_statement_token1] = ACTIONS(6350), + [aux_sym_file_position_statement_token2] = ACTIONS(6350), + [aux_sym_file_position_statement_token3] = ACTIONS(6350), + [aux_sym_file_position_statement_token4] = ACTIONS(6350), + [aux_sym_allocate_statement_token1] = ACTIONS(6350), + [aux_sym_entry_statement_token1] = ACTIONS(6350), + [aux_sym_logical_expression_token5] = ACTIONS(6352), + [anon_sym_DOT] = ACTIONS(6350), + [anon_sym_LPAREN_SLASH] = ACTIONS(6352), + [anon_sym_LBRACK] = ACTIONS(6352), + [aux_sym_boolean_literal_token1] = ACTIONS(6352), + [aux_sym_boolean_literal_token2] = ACTIONS(6352), + [aux_sym_null_literal_token1] = ACTIONS(6350), + [aux_sym_coarray_statement_token1] = ACTIONS(6350), + [aux_sym_coarray_statement_token2] = ACTIONS(6350), + [aux_sym_coarray_statement_token6] = ACTIONS(6350), + [aux_sym_coarray_statement_token8] = ACTIONS(6350), + [aux_sym_coarray_statement_token11] = ACTIONS(6350), + [aux_sym_coarray_statement_token12] = ACTIONS(6350), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6350), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6350), + [aux_sym_identifier_token1] = ACTIONS(6350), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6352), + [sym__float_literal] = ACTIONS(6352), + [sym__boz_literal] = ACTIONS(6352), + [sym__string_literal] = ACTIONS(6352), + [sym__string_literal_kind] = ACTIONS(6352), + }, + [2145] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_program_statement_token2] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), + }, + [2146] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_contains_statement_token1] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), + }, + [2147] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_contains_statement_token1] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2148] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_contains_statement_token1] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), + }, + [2149] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_contains_statement_token1] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), + }, + [2150] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_contains_statement_token1] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [2151] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_contains_statement_token1] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2152] = { + [aux_sym_preproc_include_token1] = ACTIONS(6354), + [aux_sym_preproc_def_token1] = ACTIONS(6354), + [aux_sym_preproc_if_token1] = ACTIONS(6354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6354), + [sym_preproc_directive] = ACTIONS(6354), + [anon_sym_LPAREN2] = ACTIONS(6354), + [anon_sym_PLUS] = ACTIONS(6356), + [anon_sym_DASH] = ACTIONS(6356), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6354), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6354), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6354), + [aux_sym_procedure_attributes_token3] = ACTIONS(6354), + [aux_sym_end_function_statement_token1] = ACTIONS(6354), + [aux_sym_contains_statement_token1] = ACTIONS(6354), + [aux_sym_use_statement_token2] = ACTIONS(6354), + [aux_sym_implicit_statement_token4] = ACTIONS(6354), + [aux_sym_save_statement_token1] = ACTIONS(6354), + [aux_sym_private_statement_token1] = ACTIONS(6354), + [aux_sym_public_statement_token1] = ACTIONS(6354), + [aux_sym_derived_type_definition_token1] = ACTIONS(6354), + [aux_sym_procedure_attribute_token6] = ACTIONS(6354), + [aux_sym_variable_attributes_token2] = ACTIONS(6354), + [aux_sym_variable_attributes_token3] = ACTIONS(6354), + [aux_sym_variable_attributes_token5] = ACTIONS(6354), + [aux_sym__intrinsic_type_token1] = ACTIONS(6354), + [aux_sym__intrinsic_type_token3] = ACTIONS(6354), + [aux_sym__intrinsic_type_token4] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6354), + [aux_sym_type_qualifier_token1] = ACTIONS(6354), + [aux_sym_type_qualifier_token2] = ACTIONS(6354), + [anon_sym_SEMI] = ACTIONS(6356), + [aux_sym_stop_statement_token1] = ACTIONS(6354), + [aux_sym_stop_statement_token2] = ACTIONS(6354), + [aux_sym_subroutine_call_token1] = ACTIONS(6354), + [aux_sym_keyword_statement_token1] = ACTIONS(6354), + [aux_sym_keyword_statement_token2] = ACTIONS(6354), + [aux_sym_keyword_statement_token3] = ACTIONS(6354), + [aux_sym_keyword_statement_token4] = ACTIONS(6354), + [aux_sym_keyword_statement_token6] = ACTIONS(6354), + [aux_sym_keyword_statement_token7] = ACTIONS(6354), + [aux_sym_include_statement_token1] = ACTIONS(6354), + [aux_sym_data_statement_token1] = ACTIONS(6354), + [aux_sym_do_loop_statement_token1] = ACTIONS(6354), + [aux_sym__inline_if_statement_token1] = ACTIONS(6354), + [aux_sym_end_if_statement_token1] = ACTIONS(6354), + [aux_sym_elseif_clause_token2] = ACTIONS(6354), + [aux_sym__inline_where_statement_token1] = ACTIONS(6354), + [aux_sym__forall_control_expression_token1] = ACTIONS(6354), + [aux_sym_select_case_statement_token1] = ACTIONS(6354), + [aux_sym_select_case_statement_token3] = ACTIONS(6354), + [aux_sym_select_type_statement_token1] = ACTIONS(6354), + [aux_sym_select_rank_statement_token2] = ACTIONS(6354), + [aux_sym_block_construct_token1] = ACTIONS(6354), + [aux_sym_associate_statement_token1] = ACTIONS(6354), + [aux_sym_format_statement_token1] = ACTIONS(6354), + [aux_sym_print_statement_token1] = ACTIONS(6354), + [aux_sym_open_statement_token1] = ACTIONS(6354), + [aux_sym_close_statement_token1] = ACTIONS(6354), + [aux_sym_inquire_statement_token1] = ACTIONS(6354), + [aux_sym_file_position_statement_token1] = ACTIONS(6354), + [aux_sym_file_position_statement_token2] = ACTIONS(6354), + [aux_sym_file_position_statement_token3] = ACTIONS(6354), + [aux_sym_file_position_statement_token4] = ACTIONS(6354), + [aux_sym_allocate_statement_token1] = ACTIONS(6354), + [aux_sym_entry_statement_token1] = ACTIONS(6354), + [aux_sym_logical_expression_token5] = ACTIONS(6356), + [anon_sym_DOT] = ACTIONS(6354), + [anon_sym_LPAREN_SLASH] = ACTIONS(6356), + [anon_sym_LBRACK] = ACTIONS(6356), + [aux_sym_boolean_literal_token1] = ACTIONS(6356), + [aux_sym_boolean_literal_token2] = ACTIONS(6356), + [aux_sym_null_literal_token1] = ACTIONS(6354), + [aux_sym_coarray_statement_token1] = ACTIONS(6354), + [aux_sym_coarray_statement_token2] = ACTIONS(6354), + [aux_sym_coarray_statement_token6] = ACTIONS(6354), + [aux_sym_coarray_statement_token8] = ACTIONS(6354), + [aux_sym_coarray_statement_token11] = ACTIONS(6354), + [aux_sym_coarray_statement_token12] = ACTIONS(6354), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6354), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6354), + [aux_sym_identifier_token1] = ACTIONS(6354), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(6356), + [sym__float_literal] = ACTIONS(6356), + [sym__boz_literal] = ACTIONS(6356), + [sym__string_literal] = ACTIONS(6356), + [sym__string_literal_kind] = ACTIONS(6356), }, - [2260] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2153] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_contains_statement_token1] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2154] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_contains_statement_token1] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2155] = { + [aux_sym_preproc_include_token1] = ACTIONS(2059), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_end_function_statement_token1] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), + [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2059), + [aux_sym_save_statement_token1] = ACTIONS(2059), + [aux_sym_private_statement_token1] = ACTIONS(2059), + [aux_sym_public_statement_token1] = ACTIONS(2059), + [aux_sym_derived_type_definition_token1] = ACTIONS(2059), + [aux_sym_procedure_attribute_token6] = ACTIONS(2059), + [aux_sym_variable_attributes_token2] = ACTIONS(2059), + [aux_sym_variable_attributes_token3] = ACTIONS(2059), + [aux_sym_variable_attributes_token5] = ACTIONS(2059), + [aux_sym__intrinsic_type_token1] = ACTIONS(2059), + [aux_sym__intrinsic_type_token3] = ACTIONS(2059), + [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), + [aux_sym_type_qualifier_token1] = ACTIONS(2059), + [aux_sym_type_qualifier_token2] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(5698), + [aux_sym_stop_statement_token1] = ACTIONS(2059), + [aux_sym_stop_statement_token2] = ACTIONS(2059), + [aux_sym_subroutine_call_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token2] = ACTIONS(2059), + [aux_sym_keyword_statement_token3] = ACTIONS(2059), + [aux_sym_keyword_statement_token4] = ACTIONS(2059), + [aux_sym_keyword_statement_token6] = ACTIONS(2059), + [aux_sym_keyword_statement_token7] = ACTIONS(2059), + [aux_sym_include_statement_token1] = ACTIONS(2059), + [aux_sym_data_statement_token1] = ACTIONS(2059), + [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2059), + [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2059), + [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token2] = ACTIONS(2059), + [aux_sym_select_case_statement_token3] = ACTIONS(2059), + [aux_sym_select_type_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_end_select_statement_token1] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2261] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2156] = { + [aux_sym_preproc_include_token1] = ACTIONS(6358), + [aux_sym_preproc_def_token1] = ACTIONS(6358), + [aux_sym_preproc_if_token1] = ACTIONS(6358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6358), + [sym_preproc_directive] = ACTIONS(6358), + [anon_sym_LPAREN2] = ACTIONS(6358), + [anon_sym_PLUS] = ACTIONS(6360), + [anon_sym_DASH] = ACTIONS(6360), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_end_function_statement_token1] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(6358), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6358), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6358), + [aux_sym_procedure_attributes_token3] = ACTIONS(6358), + [aux_sym_end_function_statement_token1] = ACTIONS(6358), + [aux_sym_contains_statement_token1] = ACTIONS(6358), + [aux_sym_use_statement_token2] = ACTIONS(6358), + [aux_sym_implicit_statement_token4] = ACTIONS(6358), + [aux_sym_save_statement_token1] = ACTIONS(6358), + [aux_sym_private_statement_token1] = ACTIONS(6358), + [aux_sym_public_statement_token1] = ACTIONS(6358), + [aux_sym_derived_type_definition_token1] = ACTIONS(6358), + [aux_sym_procedure_attribute_token6] = ACTIONS(6358), + [aux_sym_variable_attributes_token2] = ACTIONS(6358), + [aux_sym_variable_attributes_token3] = ACTIONS(6358), + [aux_sym_variable_attributes_token5] = ACTIONS(6358), + [aux_sym__intrinsic_type_token1] = ACTIONS(6358), + [aux_sym__intrinsic_type_token3] = ACTIONS(6358), + [aux_sym__intrinsic_type_token4] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6358), + [aux_sym_type_qualifier_token1] = ACTIONS(6358), + [aux_sym_type_qualifier_token2] = ACTIONS(6358), + [anon_sym_SEMI] = ACTIONS(6360), + [aux_sym_stop_statement_token1] = ACTIONS(6358), + [aux_sym_stop_statement_token2] = ACTIONS(6358), + [aux_sym_subroutine_call_token1] = ACTIONS(6358), + [aux_sym_keyword_statement_token1] = ACTIONS(6358), + [aux_sym_keyword_statement_token2] = ACTIONS(6358), + [aux_sym_keyword_statement_token3] = ACTIONS(6358), + [aux_sym_keyword_statement_token4] = ACTIONS(6358), + [aux_sym_keyword_statement_token6] = ACTIONS(6358), + [aux_sym_keyword_statement_token7] = ACTIONS(6358), + [aux_sym_include_statement_token1] = ACTIONS(6358), + [aux_sym_data_statement_token1] = ACTIONS(6358), + [aux_sym_do_loop_statement_token1] = ACTIONS(6358), + [aux_sym__inline_if_statement_token1] = ACTIONS(6358), + [aux_sym_end_if_statement_token1] = ACTIONS(6358), + [aux_sym_elseif_clause_token2] = ACTIONS(6358), + [aux_sym__inline_where_statement_token1] = ACTIONS(6358), + [aux_sym__forall_control_expression_token1] = ACTIONS(6358), + [aux_sym_select_case_statement_token1] = ACTIONS(6358), + [aux_sym_select_case_statement_token3] = ACTIONS(6358), + [aux_sym_select_type_statement_token1] = ACTIONS(6358), + [aux_sym_select_rank_statement_token2] = ACTIONS(6358), + [aux_sym_block_construct_token1] = ACTIONS(6358), + [aux_sym_associate_statement_token1] = ACTIONS(6358), + [aux_sym_format_statement_token1] = ACTIONS(6358), + [aux_sym_print_statement_token1] = ACTIONS(6358), + [aux_sym_open_statement_token1] = ACTIONS(6358), + [aux_sym_close_statement_token1] = ACTIONS(6358), + [aux_sym_inquire_statement_token1] = ACTIONS(6358), + [aux_sym_file_position_statement_token1] = ACTIONS(6358), + [aux_sym_file_position_statement_token2] = ACTIONS(6358), + [aux_sym_file_position_statement_token3] = ACTIONS(6358), + [aux_sym_file_position_statement_token4] = ACTIONS(6358), + [aux_sym_allocate_statement_token1] = ACTIONS(6358), + [aux_sym_entry_statement_token1] = ACTIONS(6358), + [aux_sym_logical_expression_token5] = ACTIONS(6360), + [anon_sym_DOT] = ACTIONS(6358), + [anon_sym_LPAREN_SLASH] = ACTIONS(6360), + [anon_sym_LBRACK] = ACTIONS(6360), + [aux_sym_boolean_literal_token1] = ACTIONS(6360), + [aux_sym_boolean_literal_token2] = ACTIONS(6360), + [aux_sym_null_literal_token1] = ACTIONS(6358), + [aux_sym_coarray_statement_token1] = ACTIONS(6358), + [aux_sym_coarray_statement_token2] = ACTIONS(6358), + [aux_sym_coarray_statement_token6] = ACTIONS(6358), + [aux_sym_coarray_statement_token8] = ACTIONS(6358), + [aux_sym_coarray_statement_token11] = ACTIONS(6358), + [aux_sym_coarray_statement_token12] = ACTIONS(6358), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6358), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6358), + [aux_sym_identifier_token1] = ACTIONS(6358), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(6360), + [sym__float_literal] = ACTIONS(6360), + [sym__boz_literal] = ACTIONS(6360), + [sym__string_literal] = ACTIONS(6360), + [sym__string_literal_kind] = ACTIONS(6360), }, - [2262] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2157] = { + [aux_sym_preproc_include_token1] = ACTIONS(5896), + [aux_sym_preproc_def_token1] = ACTIONS(5896), + [aux_sym_preproc_if_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5896), + [sym_preproc_directive] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5900), + [anon_sym_DASH] = ACTIONS(5900), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5896), + [aux_sym_procedure_attributes_token3] = ACTIONS(5896), + [aux_sym_end_function_statement_token1] = ACTIONS(5896), + [aux_sym_contains_statement_token1] = ACTIONS(5896), + [aux_sym_use_statement_token2] = ACTIONS(5896), + [aux_sym_implicit_statement_token4] = ACTIONS(5896), + [aux_sym_save_statement_token1] = ACTIONS(5896), + [aux_sym_private_statement_token1] = ACTIONS(5896), + [aux_sym_public_statement_token1] = ACTIONS(5896), + [aux_sym_derived_type_definition_token1] = ACTIONS(5896), + [aux_sym_procedure_attribute_token6] = ACTIONS(5896), + [aux_sym_variable_attributes_token2] = ACTIONS(5896), + [aux_sym_variable_attributes_token3] = ACTIONS(5896), + [aux_sym_variable_attributes_token5] = ACTIONS(5896), + [aux_sym__intrinsic_type_token1] = ACTIONS(5896), + [aux_sym__intrinsic_type_token3] = ACTIONS(5896), + [aux_sym__intrinsic_type_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5896), + [aux_sym_type_qualifier_token1] = ACTIONS(5896), + [aux_sym_type_qualifier_token2] = ACTIONS(5896), + [anon_sym_SEMI] = ACTIONS(5900), + [aux_sym_stop_statement_token1] = ACTIONS(5896), + [aux_sym_stop_statement_token2] = ACTIONS(5896), + [aux_sym_subroutine_call_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token2] = ACTIONS(5896), + [aux_sym_keyword_statement_token3] = ACTIONS(5896), + [aux_sym_keyword_statement_token4] = ACTIONS(5896), + [aux_sym_keyword_statement_token6] = ACTIONS(5896), + [aux_sym_keyword_statement_token7] = ACTIONS(5896), + [aux_sym_include_statement_token1] = ACTIONS(5896), + [aux_sym_data_statement_token1] = ACTIONS(5896), + [aux_sym_do_loop_statement_token1] = ACTIONS(5896), + [aux_sym__inline_if_statement_token1] = ACTIONS(5896), + [aux_sym_end_if_statement_token1] = ACTIONS(5896), + [aux_sym_elseif_clause_token2] = ACTIONS(5896), + [aux_sym__inline_where_statement_token1] = ACTIONS(5896), + [aux_sym__forall_control_expression_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token3] = ACTIONS(5896), + [aux_sym_select_type_statement_token1] = ACTIONS(5896), + [aux_sym_select_rank_statement_token2] = ACTIONS(5896), + [aux_sym_block_construct_token1] = ACTIONS(5896), + [aux_sym_associate_statement_token1] = ACTIONS(5896), + [aux_sym_format_statement_token1] = ACTIONS(5896), + [aux_sym_print_statement_token1] = ACTIONS(5896), + [aux_sym_open_statement_token1] = ACTIONS(5896), + [aux_sym_close_statement_token1] = ACTIONS(5896), + [aux_sym_inquire_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token2] = ACTIONS(5896), + [aux_sym_file_position_statement_token3] = ACTIONS(5896), + [aux_sym_file_position_statement_token4] = ACTIONS(5896), + [aux_sym_allocate_statement_token1] = ACTIONS(5896), + [aux_sym_entry_statement_token1] = ACTIONS(5896), + [aux_sym_logical_expression_token5] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_LPAREN_SLASH] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [aux_sym_boolean_literal_token1] = ACTIONS(5900), + [aux_sym_boolean_literal_token2] = ACTIONS(5900), + [aux_sym_null_literal_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token2] = ACTIONS(5896), + [aux_sym_coarray_statement_token6] = ACTIONS(5896), + [aux_sym_coarray_statement_token8] = ACTIONS(5896), + [aux_sym_coarray_statement_token11] = ACTIONS(5896), + [aux_sym_coarray_statement_token12] = ACTIONS(5896), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5896), + [aux_sym_identifier_token1] = ACTIONS(5896), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5900), + [sym__float_literal] = ACTIONS(5900), + [sym__boz_literal] = ACTIONS(5900), + [sym__string_literal] = ACTIONS(5900), + [sym__string_literal_kind] = ACTIONS(5900), + }, + [2158] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token2] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_end_select_statement_token1] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2263] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2159] = { + [aux_sym_preproc_include_token1] = ACTIONS(5906), + [aux_sym_preproc_def_token1] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), + [sym_preproc_directive] = ACTIONS(5906), + [anon_sym_LPAREN2] = ACTIONS(5906), + [anon_sym_PLUS] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5906), + [aux_sym_procedure_attributes_token3] = ACTIONS(5906), + [aux_sym_end_function_statement_token1] = ACTIONS(5906), + [aux_sym_contains_statement_token1] = ACTIONS(5906), + [aux_sym_use_statement_token2] = ACTIONS(5906), + [aux_sym_implicit_statement_token4] = ACTIONS(5906), + [aux_sym_save_statement_token1] = ACTIONS(5906), + [aux_sym_private_statement_token1] = ACTIONS(5906), + [aux_sym_public_statement_token1] = ACTIONS(5906), + [aux_sym_derived_type_definition_token1] = ACTIONS(5906), + [aux_sym_procedure_attribute_token6] = ACTIONS(5906), + [aux_sym_variable_attributes_token2] = ACTIONS(5906), + [aux_sym_variable_attributes_token3] = ACTIONS(5906), + [aux_sym_variable_attributes_token5] = ACTIONS(5906), + [aux_sym__intrinsic_type_token1] = ACTIONS(5906), + [aux_sym__intrinsic_type_token3] = ACTIONS(5906), + [aux_sym__intrinsic_type_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5906), + [aux_sym_type_qualifier_token1] = ACTIONS(5906), + [aux_sym_type_qualifier_token2] = ACTIONS(5906), + [anon_sym_SEMI] = ACTIONS(5910), + [aux_sym_stop_statement_token1] = ACTIONS(5906), + [aux_sym_stop_statement_token2] = ACTIONS(5906), + [aux_sym_subroutine_call_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token2] = ACTIONS(5906), + [aux_sym_keyword_statement_token3] = ACTIONS(5906), + [aux_sym_keyword_statement_token4] = ACTIONS(5906), + [aux_sym_keyword_statement_token6] = ACTIONS(5906), + [aux_sym_keyword_statement_token7] = ACTIONS(5906), + [aux_sym_include_statement_token1] = ACTIONS(5906), + [aux_sym_data_statement_token1] = ACTIONS(5906), + [aux_sym_do_loop_statement_token1] = ACTIONS(5906), + [aux_sym__inline_if_statement_token1] = ACTIONS(5906), + [aux_sym_end_if_statement_token1] = ACTIONS(5906), + [aux_sym_elseif_clause_token2] = ACTIONS(5906), + [aux_sym__inline_where_statement_token1] = ACTIONS(5906), + [aux_sym__forall_control_expression_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token3] = ACTIONS(5906), + [aux_sym_select_type_statement_token1] = ACTIONS(5906), + [aux_sym_select_rank_statement_token2] = ACTIONS(5906), + [aux_sym_block_construct_token1] = ACTIONS(5906), + [aux_sym_associate_statement_token1] = ACTIONS(5906), + [aux_sym_format_statement_token1] = ACTIONS(5906), + [aux_sym_print_statement_token1] = ACTIONS(5906), + [aux_sym_open_statement_token1] = ACTIONS(5906), + [aux_sym_close_statement_token1] = ACTIONS(5906), + [aux_sym_inquire_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token2] = ACTIONS(5906), + [aux_sym_file_position_statement_token3] = ACTIONS(5906), + [aux_sym_file_position_statement_token4] = ACTIONS(5906), + [aux_sym_allocate_statement_token1] = ACTIONS(5906), + [aux_sym_entry_statement_token1] = ACTIONS(5906), + [aux_sym_logical_expression_token5] = ACTIONS(5910), + [anon_sym_DOT] = ACTIONS(5906), + [anon_sym_LPAREN_SLASH] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5910), + [aux_sym_boolean_literal_token1] = ACTIONS(5910), + [aux_sym_boolean_literal_token2] = ACTIONS(5910), + [aux_sym_null_literal_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token2] = ACTIONS(5906), + [aux_sym_coarray_statement_token6] = ACTIONS(5906), + [aux_sym_coarray_statement_token8] = ACTIONS(5906), + [aux_sym_coarray_statement_token11] = ACTIONS(5906), + [aux_sym_coarray_statement_token12] = ACTIONS(5906), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5906), + [aux_sym_identifier_token1] = ACTIONS(5906), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5910), + [sym__float_literal] = ACTIONS(5910), + [sym__boz_literal] = ACTIONS(5910), + [sym__string_literal] = ACTIONS(5910), + [sym__string_literal_kind] = ACTIONS(5910), }, - [2264] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2160] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6362), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [2265] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [2161] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_end_program_statement_token2] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2266] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2162] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_end_function_statement_token1] = ACTIONS(5620), + [aux_sym_contains_statement_token1] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), + }, + [2163] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6364), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2267] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2164] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token2] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_end_select_statement_token1] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2268] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2165] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token2] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_end_select_statement_token1] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2166] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_end_function_statement_token1] = ACTIONS(5624), + [aux_sym_contains_statement_token1] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2167] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token2] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_end_select_statement_token1] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2168] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_end_function_statement_token1] = ACTIONS(5632), + [aux_sym_contains_statement_token1] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2269] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2169] = { + [aux_sym_preproc_include_token1] = ACTIONS(2059), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_end_program_statement_token2] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), + [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_contains_statement_token1] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2059), + [aux_sym_save_statement_token1] = ACTIONS(2059), + [aux_sym_private_statement_token1] = ACTIONS(2059), + [aux_sym_public_statement_token1] = ACTIONS(2059), + [aux_sym_derived_type_definition_token1] = ACTIONS(2059), + [aux_sym_procedure_attribute_token6] = ACTIONS(2059), + [aux_sym_variable_attributes_token2] = ACTIONS(2059), + [aux_sym_variable_attributes_token3] = ACTIONS(2059), + [aux_sym_variable_attributes_token5] = ACTIONS(2059), + [aux_sym__intrinsic_type_token1] = ACTIONS(2059), + [aux_sym__intrinsic_type_token3] = ACTIONS(2059), + [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), + [aux_sym_type_qualifier_token1] = ACTIONS(2059), + [aux_sym_type_qualifier_token2] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(5698), + [aux_sym_stop_statement_token1] = ACTIONS(2059), + [aux_sym_stop_statement_token2] = ACTIONS(2059), + [aux_sym_subroutine_call_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token2] = ACTIONS(2059), + [aux_sym_keyword_statement_token3] = ACTIONS(2059), + [aux_sym_keyword_statement_token4] = ACTIONS(2059), + [aux_sym_keyword_statement_token6] = ACTIONS(2059), + [aux_sym_keyword_statement_token7] = ACTIONS(2059), + [aux_sym_include_statement_token1] = ACTIONS(2059), + [aux_sym_data_statement_token1] = ACTIONS(2059), + [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2059), + [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2059), + [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token3] = ACTIONS(2059), + [aux_sym_select_type_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [2270] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), - }, - [2271] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2272] = { + [2170] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -370752,15 +360654,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4571), [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), [aux_sym_use_statement_token2] = ACTIONS(4571), [aux_sym_implicit_statement_token4] = ACTIONS(4571), [aux_sym_save_statement_token1] = ACTIONS(4571), @@ -370785,7 +360685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -370804,9 +360704,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(4571), [aux_sym__forall_control_expression_token1] = ACTIONS(4571), [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token2] = ACTIONS(4571), [aux_sym_select_case_statement_token3] = ACTIONS(4571), [aux_sym_select_type_statement_token1] = ACTIONS(4571), [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_end_select_statement_token1] = ACTIONS(4571), [aux_sym_block_construct_token1] = ACTIONS(4571), [aux_sym_associate_statement_token1] = ACTIONS(4571), [aux_sym_format_statement_token1] = ACTIONS(4571), @@ -370820,12 +360722,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -370837,607 +360739,1993 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2273] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2171] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token2] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_end_select_statement_token1] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2274] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2172] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_end_function_statement_token1] = ACTIONS(5640), + [aux_sym_contains_statement_token1] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [2275] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2173] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_end_function_statement_token1] = ACTIONS(5648), + [aux_sym_contains_statement_token1] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [2174] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token2] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_end_select_statement_token1] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2175] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token2] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_end_select_statement_token1] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2176] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token2] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_end_select_statement_token1] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2177] = { + [aux_sym_preproc_include_token1] = ACTIONS(2059), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), + [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2059), + [aux_sym_save_statement_token1] = ACTIONS(2059), + [aux_sym_private_statement_token1] = ACTIONS(2059), + [aux_sym_public_statement_token1] = ACTIONS(2059), + [aux_sym_derived_type_definition_token1] = ACTIONS(2059), + [aux_sym_procedure_attribute_token6] = ACTIONS(2059), + [aux_sym_variable_attributes_token2] = ACTIONS(2059), + [aux_sym_variable_attributes_token3] = ACTIONS(2059), + [aux_sym_variable_attributes_token5] = ACTIONS(2059), + [aux_sym__intrinsic_type_token1] = ACTIONS(2059), + [aux_sym__intrinsic_type_token3] = ACTIONS(2059), + [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), + [aux_sym_type_qualifier_token1] = ACTIONS(2059), + [aux_sym_type_qualifier_token2] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(5698), + [aux_sym_stop_statement_token1] = ACTIONS(2059), + [aux_sym_stop_statement_token2] = ACTIONS(2059), + [aux_sym_subroutine_call_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token2] = ACTIONS(2059), + [aux_sym_keyword_statement_token3] = ACTIONS(2059), + [aux_sym_keyword_statement_token4] = ACTIONS(2059), + [aux_sym_keyword_statement_token6] = ACTIONS(2059), + [aux_sym_keyword_statement_token7] = ACTIONS(2059), + [aux_sym_include_statement_token1] = ACTIONS(2059), + [aux_sym_data_statement_token1] = ACTIONS(2059), + [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2059), + [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2059), + [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token3] = ACTIONS(2059), + [aux_sym_select_type_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_end_select_statement_token1] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), + }, + [2178] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_end_select_statement_token1] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2276] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2179] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6366), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_end_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [2180] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6368), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_end_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [2181] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6370), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_end_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [2182] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_end_function_statement_token1] = ACTIONS(5668), + [aux_sym_contains_statement_token1] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2183] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_end_select_statement_token1] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2277] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token2] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_end_select_statement_token1] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2184] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6372), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_end_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), }, - [2278] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token2] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_end_select_statement_token1] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2185] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_end_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2279] = { + [2186] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_end_select_statement_token1] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2187] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_end_function_statement_token1] = ACTIONS(5672), + [aux_sym_contains_statement_token1] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2188] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_end_select_statement_token1] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2189] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6376), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_end_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2190] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6378), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_end_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2191] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -371445,8 +362733,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), @@ -371476,7 +362764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -371495,9 +362783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_where_statement_token1] = ACTIONS(4571), [aux_sym__forall_control_expression_token1] = ACTIONS(4571), [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token2] = ACTIONS(4571), [aux_sym_select_case_statement_token3] = ACTIONS(4571), [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token1] = ACTIONS(4571), [aux_sym_select_rank_statement_token2] = ACTIONS(4571), [aux_sym_end_select_statement_token1] = ACTIONS(4571), [aux_sym_block_construct_token1] = ACTIONS(4571), @@ -371513,12 +362801,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -371530,616 +362818,1905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2280] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2192] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token2] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_end_select_statement_token1] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_end_select_statement_token1] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2281] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2193] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6380), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [2194] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6382), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_end_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2195] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_end_select_statement_token1] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2196] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_end_function_statement_token1] = ACTIONS(5680), + [aux_sym_contains_statement_token1] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2197] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_end_select_statement_token1] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2198] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_end_select_statement_token1] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2199] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6384), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_end_forall_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [2200] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6386), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2201] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token2] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), + }, + [2202] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token2] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_end_select_statement_token1] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token2] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_end_select_statement_token1] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), }, - [2282] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2203] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token2] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6390), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token2] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_end_select_statement_token1] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [2283] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2204] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token2] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_end_select_statement_token1] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [2205] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token2] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_end_select_statement_token1] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2206] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token2] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_end_select_statement_token1] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), + }, + [2207] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(6394), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2208] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6396), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2209] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token2] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_end_select_statement_token1] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [2284] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_end_select_statement_token1] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [2285] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_end_select_statement_token1] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2210] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token2] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_end_select_statement_token1] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [2286] = { + [2211] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [sym_preproc_comment] = ACTIONS(6398), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), @@ -372169,7 +364746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -372190,9 +364767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_case_statement_token1] = ACTIONS(4571), [aux_sym_select_case_statement_token3] = ACTIONS(4571), [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token1] = ACTIONS(4571), [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_end_select_statement_token1] = ACTIONS(4571), [aux_sym_block_construct_token1] = ACTIONS(4571), [aux_sym_associate_statement_token1] = ACTIONS(4571), [aux_sym_format_statement_token1] = ACTIONS(4571), @@ -372206,12 +364781,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -372223,10011 +364798,8923 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), + }, + [2212] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6400), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [2213] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token2] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_end_select_statement_token1] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2214] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6402), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_end_forall_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [2215] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token2] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_end_select_statement_token1] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2216] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6404), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2217] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token2] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_end_select_statement_token1] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2218] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6406), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_end_forall_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [2219] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_end_select_statement_token1] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), + }, + [2220] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_end_select_statement_token1] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2221] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_end_select_statement_token1] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), + }, + [2222] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_end_select_statement_token1] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), + }, + [2223] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_end_select_statement_token1] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [2224] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_end_select_statement_token1] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2225] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_end_select_statement_token1] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2226] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_end_select_statement_token1] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2227] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_end_program_statement_token2] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_contains_statement_token1] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2228] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6408), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_end_forall_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [2229] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6410), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_end_forall_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [2230] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_end_forall_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2231] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6414), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_end_forall_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2232] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6416), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_end_forall_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), + }, + [2233] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token2] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6418), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [2234] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token2] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6420), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [2235] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token2] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6422), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [2236] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token2] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6424), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [2237] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token2] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6426), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [2238] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token2] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6428), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2239] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token2] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6430), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2240] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6432), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [2241] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), + }, + [2242] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), + }, + [2243] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), + }, + [2244] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), + }, + [2245] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), + }, + [2246] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), + }, + [2247] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2287] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2248] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_end_select_statement_token1] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_end_function_statement_token1] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2288] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2249] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_end_select_statement_token1] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_end_function_statement_token1] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2289] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2250] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_end_select_statement_token1] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_end_function_statement_token1] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2290] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2251] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_end_select_statement_token1] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_end_function_statement_token1] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2291] = { - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [2252] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_end_program_statement_token2] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), - [aux_sym_procedure_attributes_token3] = ACTIONS(2059), - [aux_sym_contains_statement_token1] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2059), - [aux_sym_save_statement_token1] = ACTIONS(2059), - [aux_sym_private_statement_token1] = ACTIONS(2059), - [aux_sym_public_statement_token1] = ACTIONS(2059), - [aux_sym_derived_type_definition_token1] = ACTIONS(2059), - [aux_sym_procedure_attribute_token6] = ACTIONS(2059), - [aux_sym_variable_attributes_token2] = ACTIONS(2059), - [aux_sym_variable_attributes_token3] = ACTIONS(2059), - [aux_sym_variable_attributes_token5] = ACTIONS(2059), - [aux_sym__intrinsic_type_token1] = ACTIONS(2059), - [aux_sym__intrinsic_type_token3] = ACTIONS(2059), - [aux_sym__intrinsic_type_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), - [aux_sym_type_qualifier_token1] = ACTIONS(2059), - [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), - [aux_sym_stop_statement_token1] = ACTIONS(2059), - [aux_sym_stop_statement_token2] = ACTIONS(2059), - [aux_sym_subroutine_call_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token2] = ACTIONS(2059), - [aux_sym_keyword_statement_token3] = ACTIONS(2059), - [aux_sym_keyword_statement_token4] = ACTIONS(2059), - [aux_sym_keyword_statement_token6] = ACTIONS(2059), - [aux_sym_keyword_statement_token7] = ACTIONS(2059), - [aux_sym_include_statement_token1] = ACTIONS(2059), - [aux_sym_data_statement_token1] = ACTIONS(2059), - [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2059), - [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2059), - [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token3] = ACTIONS(2059), - [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_end_function_statement_token1] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), + }, + [2253] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_end_function_statement_token1] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), - }, - [2292] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_end_program_statement_token2] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2293] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [2254] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_end_program_statement_token2] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_end_function_statement_token1] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [2294] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6474), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2295] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_end_program_statement_token2] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_contains_statement_token1] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [2255] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6434), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), }, - [2296] = { - [aux_sym_preproc_include_token1] = ACTIONS(6446), - [aux_sym_preproc_def_token1] = ACTIONS(6446), - [aux_sym_preproc_if_token1] = ACTIONS(6446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6446), - [sym_preproc_directive] = ACTIONS(6446), - [anon_sym_LPAREN2] = ACTIONS(6446), - [anon_sym_PLUS] = ACTIONS(6448), - [anon_sym_DASH] = ACTIONS(6448), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6446), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6446), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6446), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6446), - [aux_sym_procedure_attributes_token3] = ACTIONS(6446), - [aux_sym_contains_statement_token1] = ACTIONS(6446), - [aux_sym_use_statement_token2] = ACTIONS(6446), - [aux_sym_implicit_statement_token4] = ACTIONS(6446), - [aux_sym_save_statement_token1] = ACTIONS(6446), - [aux_sym_private_statement_token1] = ACTIONS(6446), - [aux_sym_public_statement_token1] = ACTIONS(6446), - [aux_sym_derived_type_definition_token1] = ACTIONS(6446), - [aux_sym_procedure_attribute_token6] = ACTIONS(6446), - [aux_sym_variable_attributes_token2] = ACTIONS(6446), - [aux_sym_variable_attributes_token3] = ACTIONS(6446), - [aux_sym_variable_attributes_token5] = ACTIONS(6446), - [aux_sym__intrinsic_type_token1] = ACTIONS(6446), - [aux_sym__intrinsic_type_token3] = ACTIONS(6446), - [aux_sym__intrinsic_type_token4] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6446), - [aux_sym_type_qualifier_token1] = ACTIONS(6446), - [aux_sym_type_qualifier_token2] = ACTIONS(6446), - [anon_sym_SEMI] = ACTIONS(6448), - [aux_sym_stop_statement_token1] = ACTIONS(6446), - [aux_sym_stop_statement_token2] = ACTIONS(6446), - [aux_sym_subroutine_call_token1] = ACTIONS(6446), - [aux_sym_keyword_statement_token1] = ACTIONS(6446), - [aux_sym_keyword_statement_token2] = ACTIONS(6446), - [aux_sym_keyword_statement_token3] = ACTIONS(6446), - [aux_sym_keyword_statement_token4] = ACTIONS(6446), - [aux_sym_keyword_statement_token6] = ACTIONS(6446), - [aux_sym_keyword_statement_token7] = ACTIONS(6446), - [aux_sym_include_statement_token1] = ACTIONS(6446), - [aux_sym_data_statement_token1] = ACTIONS(6446), - [aux_sym_do_loop_statement_token1] = ACTIONS(6446), - [aux_sym__inline_if_statement_token1] = ACTIONS(6446), - [aux_sym_end_if_statement_token1] = ACTIONS(6446), - [aux_sym_elseif_clause_token2] = ACTIONS(6446), - [aux_sym__inline_where_statement_token1] = ACTIONS(6446), - [aux_sym__forall_control_expression_token1] = ACTIONS(6446), - [aux_sym_select_case_statement_token1] = ACTIONS(6446), - [aux_sym_select_case_statement_token3] = ACTIONS(6446), - [aux_sym_select_type_statement_token1] = ACTIONS(6446), - [aux_sym_select_rank_statement_token2] = ACTIONS(6446), - [aux_sym_block_construct_token1] = ACTIONS(6446), - [aux_sym_associate_statement_token1] = ACTIONS(6446), - [aux_sym_format_statement_token1] = ACTIONS(6446), - [aux_sym_print_statement_token1] = ACTIONS(6446), - [aux_sym_open_statement_token1] = ACTIONS(6446), - [aux_sym_close_statement_token1] = ACTIONS(6446), - [aux_sym_inquire_statement_token1] = ACTIONS(6446), - [aux_sym_file_position_statement_token1] = ACTIONS(6446), - [aux_sym_file_position_statement_token2] = ACTIONS(6446), - [aux_sym_file_position_statement_token3] = ACTIONS(6446), - [aux_sym_file_position_statement_token4] = ACTIONS(6446), - [aux_sym_allocate_statement_token1] = ACTIONS(6446), - [aux_sym_entry_statement_token1] = ACTIONS(6446), - [aux_sym_logical_expression_token5] = ACTIONS(6448), - [anon_sym_DOT] = ACTIONS(6446), - [anon_sym_LPAREN_SLASH] = ACTIONS(6448), - [anon_sym_LBRACK] = ACTIONS(6448), - [aux_sym_boolean_literal_token1] = ACTIONS(6448), - [aux_sym_boolean_literal_token2] = ACTIONS(6448), - [aux_sym_null_literal_token1] = ACTIONS(6446), - [aux_sym_coarray_statement_token1] = ACTIONS(6446), - [aux_sym_coarray_statement_token2] = ACTIONS(6446), - [aux_sym_coarray_statement_token6] = ACTIONS(6446), - [aux_sym_coarray_statement_token8] = ACTIONS(6446), - [aux_sym_coarray_statement_token11] = ACTIONS(6446), - [aux_sym_coarray_statement_token12] = ACTIONS(6446), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6446), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6446), - [aux_sym_identifier_token1] = ACTIONS(6446), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6448), - [sym__float_literal] = ACTIONS(6448), - [sym__boz_literal] = ACTIONS(6448), - [sym__string_literal] = ACTIONS(6448), - [sym__string_literal_kind] = ACTIONS(6448), + [2256] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6436), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_end_forall_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), }, - [2297] = { - [aux_sym_preproc_include_token1] = ACTIONS(2848), - [aux_sym_preproc_def_token1] = ACTIONS(2848), - [aux_sym_preproc_if_token1] = ACTIONS(2848), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), - [sym_preproc_directive] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(6356), - [anon_sym_DASH] = ACTIONS(6356), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2848), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2848), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2848), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(2848), - [aux_sym_procedure_attributes_token3] = ACTIONS(2848), - [aux_sym_contains_statement_token1] = ACTIONS(2848), - [aux_sym_use_statement_token2] = ACTIONS(2848), - [aux_sym_implicit_statement_token4] = ACTIONS(2848), - [aux_sym_save_statement_token1] = ACTIONS(2848), - [aux_sym_private_statement_token1] = ACTIONS(2848), - [aux_sym_public_statement_token1] = ACTIONS(2848), - [aux_sym_derived_type_definition_token1] = ACTIONS(2848), - [aux_sym_procedure_attribute_token6] = ACTIONS(2848), - [aux_sym_variable_attributes_token2] = ACTIONS(2848), - [aux_sym_variable_attributes_token3] = ACTIONS(2848), - [aux_sym_variable_attributes_token5] = ACTIONS(2848), - [aux_sym__intrinsic_type_token1] = ACTIONS(2848), - [aux_sym__intrinsic_type_token3] = ACTIONS(2848), - [aux_sym__intrinsic_type_token4] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2848), - [aux_sym_type_qualifier_token1] = ACTIONS(2848), - [aux_sym_type_qualifier_token2] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(6356), - [aux_sym_stop_statement_token1] = ACTIONS(2848), - [aux_sym_stop_statement_token2] = ACTIONS(2848), - [aux_sym_subroutine_call_token1] = ACTIONS(2848), - [aux_sym_keyword_statement_token1] = ACTIONS(2848), - [aux_sym_keyword_statement_token2] = ACTIONS(2848), - [aux_sym_keyword_statement_token3] = ACTIONS(2848), - [aux_sym_keyword_statement_token4] = ACTIONS(2848), - [aux_sym_keyword_statement_token6] = ACTIONS(2848), - [aux_sym_keyword_statement_token7] = ACTIONS(2848), - [aux_sym_include_statement_token1] = ACTIONS(2848), - [aux_sym_data_statement_token1] = ACTIONS(2848), - [aux_sym_do_loop_statement_token1] = ACTIONS(2848), - [aux_sym__inline_if_statement_token1] = ACTIONS(2848), - [aux_sym_end_if_statement_token1] = ACTIONS(2848), - [aux_sym_elseif_clause_token2] = ACTIONS(2848), - [aux_sym__inline_where_statement_token1] = ACTIONS(2848), - [aux_sym__forall_control_expression_token1] = ACTIONS(2848), - [aux_sym_select_case_statement_token1] = ACTIONS(2848), - [aux_sym_select_case_statement_token3] = ACTIONS(2848), - [aux_sym_select_type_statement_token1] = ACTIONS(2848), - [aux_sym_select_rank_statement_token2] = ACTIONS(2848), - [aux_sym_block_construct_token1] = ACTIONS(2848), - [aux_sym_associate_statement_token1] = ACTIONS(2848), - [aux_sym_format_statement_token1] = ACTIONS(2848), - [aux_sym_print_statement_token1] = ACTIONS(2848), - [aux_sym_open_statement_token1] = ACTIONS(2848), - [aux_sym_close_statement_token1] = ACTIONS(2848), - [aux_sym_inquire_statement_token1] = ACTIONS(2848), - [aux_sym_file_position_statement_token1] = ACTIONS(2848), - [aux_sym_file_position_statement_token2] = ACTIONS(2848), - [aux_sym_file_position_statement_token3] = ACTIONS(2848), - [aux_sym_file_position_statement_token4] = ACTIONS(2848), - [aux_sym_allocate_statement_token1] = ACTIONS(2848), - [aux_sym_entry_statement_token1] = ACTIONS(2848), - [aux_sym_logical_expression_token5] = ACTIONS(6356), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_LPAREN_SLASH] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(6356), - [aux_sym_boolean_literal_token1] = ACTIONS(6356), - [aux_sym_boolean_literal_token2] = ACTIONS(6356), - [aux_sym_null_literal_token1] = ACTIONS(2848), - [aux_sym_coarray_statement_token1] = ACTIONS(2848), - [aux_sym_coarray_statement_token2] = ACTIONS(2848), - [aux_sym_coarray_statement_token6] = ACTIONS(2848), - [aux_sym_coarray_statement_token8] = ACTIONS(2848), - [aux_sym_coarray_statement_token11] = ACTIONS(2848), - [aux_sym_coarray_statement_token12] = ACTIONS(2848), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2848), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2848), - [aux_sym_identifier_token1] = ACTIONS(2848), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6356), - [sym__float_literal] = ACTIONS(6356), - [sym__boz_literal] = ACTIONS(6356), - [sym__string_literal] = ACTIONS(6356), - [sym__string_literal_kind] = ACTIONS(6356), + [2257] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6438), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), }, - [2298] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6476), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [2258] = { + [aux_sym_preproc_include_token1] = ACTIONS(6440), + [aux_sym_preproc_def_token1] = ACTIONS(6440), + [aux_sym_preproc_if_token1] = ACTIONS(6440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6440), + [sym_preproc_directive] = ACTIONS(6440), + [anon_sym_LPAREN2] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(6442), + [anon_sym_DASH] = ACTIONS(6442), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6440), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6440), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6440), + [aux_sym_procedure_attributes_token3] = ACTIONS(6440), + [aux_sym_end_function_statement_token1] = ACTIONS(6440), + [aux_sym_contains_statement_token1] = ACTIONS(6440), + [aux_sym_use_statement_token2] = ACTIONS(6440), + [aux_sym_implicit_statement_token4] = ACTIONS(6440), + [aux_sym_save_statement_token1] = ACTIONS(6440), + [aux_sym_private_statement_token1] = ACTIONS(6440), + [aux_sym_public_statement_token1] = ACTIONS(6440), + [aux_sym_derived_type_definition_token1] = ACTIONS(6440), + [aux_sym_procedure_attribute_token6] = ACTIONS(6440), + [aux_sym_variable_attributes_token2] = ACTIONS(6440), + [aux_sym_variable_attributes_token3] = ACTIONS(6440), + [aux_sym_variable_attributes_token5] = ACTIONS(6440), + [aux_sym__intrinsic_type_token1] = ACTIONS(6440), + [aux_sym__intrinsic_type_token3] = ACTIONS(6440), + [aux_sym__intrinsic_type_token4] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6440), + [aux_sym_type_qualifier_token1] = ACTIONS(6440), + [aux_sym_type_qualifier_token2] = ACTIONS(6440), + [anon_sym_SEMI] = ACTIONS(6442), + [aux_sym_stop_statement_token1] = ACTIONS(6440), + [aux_sym_stop_statement_token2] = ACTIONS(6440), + [aux_sym_subroutine_call_token1] = ACTIONS(6440), + [aux_sym_keyword_statement_token1] = ACTIONS(6440), + [aux_sym_keyword_statement_token2] = ACTIONS(6440), + [aux_sym_keyword_statement_token3] = ACTIONS(6440), + [aux_sym_keyword_statement_token4] = ACTIONS(6440), + [aux_sym_keyword_statement_token6] = ACTIONS(6440), + [aux_sym_keyword_statement_token7] = ACTIONS(6440), + [aux_sym_include_statement_token1] = ACTIONS(6440), + [aux_sym_data_statement_token1] = ACTIONS(6440), + [aux_sym_do_loop_statement_token1] = ACTIONS(6440), + [aux_sym__inline_if_statement_token1] = ACTIONS(6440), + [aux_sym_end_if_statement_token1] = ACTIONS(6440), + [aux_sym_elseif_clause_token2] = ACTIONS(6440), + [aux_sym__inline_where_statement_token1] = ACTIONS(6440), + [aux_sym__forall_control_expression_token1] = ACTIONS(6440), + [aux_sym_select_case_statement_token1] = ACTIONS(6440), + [aux_sym_select_case_statement_token3] = ACTIONS(6440), + [aux_sym_select_type_statement_token1] = ACTIONS(6440), + [aux_sym_select_rank_statement_token2] = ACTIONS(6440), + [aux_sym_block_construct_token1] = ACTIONS(6440), + [aux_sym_associate_statement_token1] = ACTIONS(6440), + [aux_sym_format_statement_token1] = ACTIONS(6440), + [aux_sym_print_statement_token1] = ACTIONS(6440), + [aux_sym_open_statement_token1] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6440), + [aux_sym_inquire_statement_token1] = ACTIONS(6440), + [aux_sym_file_position_statement_token1] = ACTIONS(6440), + [aux_sym_file_position_statement_token2] = ACTIONS(6440), + [aux_sym_file_position_statement_token3] = ACTIONS(6440), + [aux_sym_file_position_statement_token4] = ACTIONS(6440), + [aux_sym_allocate_statement_token1] = ACTIONS(6440), + [aux_sym_entry_statement_token1] = ACTIONS(6440), + [aux_sym_logical_expression_token5] = ACTIONS(6442), + [anon_sym_DOT] = ACTIONS(6440), + [anon_sym_LPAREN_SLASH] = ACTIONS(6442), + [anon_sym_LBRACK] = ACTIONS(6442), + [aux_sym_boolean_literal_token1] = ACTIONS(6442), + [aux_sym_boolean_literal_token2] = ACTIONS(6442), + [aux_sym_null_literal_token1] = ACTIONS(6440), + [aux_sym_coarray_statement_token1] = ACTIONS(6440), + [aux_sym_coarray_statement_token2] = ACTIONS(6440), + [aux_sym_coarray_statement_token6] = ACTIONS(6440), + [aux_sym_coarray_statement_token8] = ACTIONS(6440), + [aux_sym_coarray_statement_token11] = ACTIONS(6440), + [aux_sym_coarray_statement_token12] = ACTIONS(6440), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6440), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6440), + [aux_sym_identifier_token1] = ACTIONS(6440), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6442), + [sym__float_literal] = ACTIONS(6442), + [sym__boz_literal] = ACTIONS(6442), + [sym__string_literal] = ACTIONS(6442), + [sym__string_literal_kind] = ACTIONS(6442), }, - [2299] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_end_program_statement_token2] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_contains_statement_token1] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [2259] = { + [aux_sym_preproc_include_token1] = ACTIONS(6444), + [aux_sym_preproc_def_token1] = ACTIONS(6444), + [aux_sym_preproc_if_token1] = ACTIONS(6444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6444), + [sym_preproc_directive] = ACTIONS(6444), + [anon_sym_LPAREN2] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6444), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6444), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6444), + [aux_sym_procedure_attributes_token3] = ACTIONS(6444), + [aux_sym_end_function_statement_token1] = ACTIONS(6444), + [aux_sym_contains_statement_token1] = ACTIONS(6444), + [aux_sym_use_statement_token2] = ACTIONS(6444), + [aux_sym_implicit_statement_token4] = ACTIONS(6444), + [aux_sym_save_statement_token1] = ACTIONS(6444), + [aux_sym_private_statement_token1] = ACTIONS(6444), + [aux_sym_public_statement_token1] = ACTIONS(6444), + [aux_sym_derived_type_definition_token1] = ACTIONS(6444), + [aux_sym_procedure_attribute_token6] = ACTIONS(6444), + [aux_sym_variable_attributes_token2] = ACTIONS(6444), + [aux_sym_variable_attributes_token3] = ACTIONS(6444), + [aux_sym_variable_attributes_token5] = ACTIONS(6444), + [aux_sym__intrinsic_type_token1] = ACTIONS(6444), + [aux_sym__intrinsic_type_token3] = ACTIONS(6444), + [aux_sym__intrinsic_type_token4] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6444), + [aux_sym_type_qualifier_token1] = ACTIONS(6444), + [aux_sym_type_qualifier_token2] = ACTIONS(6444), + [anon_sym_SEMI] = ACTIONS(6446), + [aux_sym_stop_statement_token1] = ACTIONS(6444), + [aux_sym_stop_statement_token2] = ACTIONS(6444), + [aux_sym_subroutine_call_token1] = ACTIONS(6444), + [aux_sym_keyword_statement_token1] = ACTIONS(6444), + [aux_sym_keyword_statement_token2] = ACTIONS(6444), + [aux_sym_keyword_statement_token3] = ACTIONS(6444), + [aux_sym_keyword_statement_token4] = ACTIONS(6444), + [aux_sym_keyword_statement_token6] = ACTIONS(6444), + [aux_sym_keyword_statement_token7] = ACTIONS(6444), + [aux_sym_include_statement_token1] = ACTIONS(6444), + [aux_sym_data_statement_token1] = ACTIONS(6444), + [aux_sym_do_loop_statement_token1] = ACTIONS(6444), + [aux_sym__inline_if_statement_token1] = ACTIONS(6444), + [aux_sym_end_if_statement_token1] = ACTIONS(6444), + [aux_sym_elseif_clause_token2] = ACTIONS(6444), + [aux_sym__inline_where_statement_token1] = ACTIONS(6444), + [aux_sym__forall_control_expression_token1] = ACTIONS(6444), + [aux_sym_select_case_statement_token1] = ACTIONS(6444), + [aux_sym_select_case_statement_token3] = ACTIONS(6444), + [aux_sym_select_type_statement_token1] = ACTIONS(6444), + [aux_sym_select_rank_statement_token2] = ACTIONS(6444), + [aux_sym_block_construct_token1] = ACTIONS(6444), + [aux_sym_associate_statement_token1] = ACTIONS(6444), + [aux_sym_format_statement_token1] = ACTIONS(6444), + [aux_sym_print_statement_token1] = ACTIONS(6444), + [aux_sym_open_statement_token1] = ACTIONS(6444), + [aux_sym_close_statement_token1] = ACTIONS(6444), + [aux_sym_inquire_statement_token1] = ACTIONS(6444), + [aux_sym_file_position_statement_token1] = ACTIONS(6444), + [aux_sym_file_position_statement_token2] = ACTIONS(6444), + [aux_sym_file_position_statement_token3] = ACTIONS(6444), + [aux_sym_file_position_statement_token4] = ACTIONS(6444), + [aux_sym_allocate_statement_token1] = ACTIONS(6444), + [aux_sym_entry_statement_token1] = ACTIONS(6444), + [aux_sym_logical_expression_token5] = ACTIONS(6446), + [anon_sym_DOT] = ACTIONS(6444), + [anon_sym_LPAREN_SLASH] = ACTIONS(6446), + [anon_sym_LBRACK] = ACTIONS(6446), + [aux_sym_boolean_literal_token1] = ACTIONS(6446), + [aux_sym_boolean_literal_token2] = ACTIONS(6446), + [aux_sym_null_literal_token1] = ACTIONS(6444), + [aux_sym_coarray_statement_token1] = ACTIONS(6444), + [aux_sym_coarray_statement_token2] = ACTIONS(6444), + [aux_sym_coarray_statement_token6] = ACTIONS(6444), + [aux_sym_coarray_statement_token8] = ACTIONS(6444), + [aux_sym_coarray_statement_token11] = ACTIONS(6444), + [aux_sym_coarray_statement_token12] = ACTIONS(6444), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6444), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6444), + [aux_sym_identifier_token1] = ACTIONS(6444), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6446), + [sym__float_literal] = ACTIONS(6446), + [sym__boz_literal] = ACTIONS(6446), + [sym__string_literal] = ACTIONS(6446), + [sym__string_literal_kind] = ACTIONS(6446), }, - [2300] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6478), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [2260] = { + [aux_sym_preproc_include_token1] = ACTIONS(6098), + [aux_sym_preproc_def_token1] = ACTIONS(6098), + [aux_sym_preproc_if_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6098), + [sym_preproc_directive] = ACTIONS(6098), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_PLUS] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6102), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6098), + [aux_sym_procedure_attributes_token3] = ACTIONS(6098), + [aux_sym_end_function_statement_token1] = ACTIONS(6098), + [aux_sym_contains_statement_token1] = ACTIONS(6098), + [aux_sym_use_statement_token2] = ACTIONS(6098), + [aux_sym_implicit_statement_token4] = ACTIONS(6098), + [aux_sym_save_statement_token1] = ACTIONS(6098), + [aux_sym_private_statement_token1] = ACTIONS(6098), + [aux_sym_public_statement_token1] = ACTIONS(6098), + [aux_sym_derived_type_definition_token1] = ACTIONS(6098), + [aux_sym_procedure_attribute_token6] = ACTIONS(6098), + [aux_sym_variable_attributes_token2] = ACTIONS(6098), + [aux_sym_variable_attributes_token3] = ACTIONS(6098), + [aux_sym_variable_attributes_token5] = ACTIONS(6098), + [aux_sym__intrinsic_type_token1] = ACTIONS(6098), + [aux_sym__intrinsic_type_token3] = ACTIONS(6098), + [aux_sym__intrinsic_type_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6098), + [aux_sym_type_qualifier_token1] = ACTIONS(6098), + [aux_sym_type_qualifier_token2] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6102), + [aux_sym_stop_statement_token1] = ACTIONS(6098), + [aux_sym_stop_statement_token2] = ACTIONS(6098), + [aux_sym_subroutine_call_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token2] = ACTIONS(6098), + [aux_sym_keyword_statement_token3] = ACTIONS(6098), + [aux_sym_keyword_statement_token4] = ACTIONS(6098), + [aux_sym_keyword_statement_token6] = ACTIONS(6098), + [aux_sym_keyword_statement_token7] = ACTIONS(6098), + [aux_sym_include_statement_token1] = ACTIONS(6098), + [aux_sym_data_statement_token1] = ACTIONS(6098), + [aux_sym_do_loop_statement_token1] = ACTIONS(6098), + [aux_sym__inline_if_statement_token1] = ACTIONS(6098), + [aux_sym_end_if_statement_token1] = ACTIONS(6098), + [aux_sym_elseif_clause_token2] = ACTIONS(6098), + [aux_sym__inline_where_statement_token1] = ACTIONS(6098), + [aux_sym__forall_control_expression_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token3] = ACTIONS(6098), + [aux_sym_select_type_statement_token1] = ACTIONS(6098), + [aux_sym_select_rank_statement_token2] = ACTIONS(6098), + [aux_sym_block_construct_token1] = ACTIONS(6098), + [aux_sym_associate_statement_token1] = ACTIONS(6098), + [aux_sym_format_statement_token1] = ACTIONS(6098), + [aux_sym_print_statement_token1] = ACTIONS(6098), + [aux_sym_open_statement_token1] = ACTIONS(6098), + [aux_sym_close_statement_token1] = ACTIONS(6098), + [aux_sym_inquire_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token2] = ACTIONS(6098), + [aux_sym_file_position_statement_token3] = ACTIONS(6098), + [aux_sym_file_position_statement_token4] = ACTIONS(6098), + [aux_sym_allocate_statement_token1] = ACTIONS(6098), + [aux_sym_entry_statement_token1] = ACTIONS(6098), + [aux_sym_logical_expression_token5] = ACTIONS(6102), + [anon_sym_DOT] = ACTIONS(6098), + [anon_sym_LPAREN_SLASH] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(6102), + [aux_sym_boolean_literal_token1] = ACTIONS(6102), + [aux_sym_boolean_literal_token2] = ACTIONS(6102), + [aux_sym_null_literal_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token2] = ACTIONS(6098), + [aux_sym_coarray_statement_token6] = ACTIONS(6098), + [aux_sym_coarray_statement_token8] = ACTIONS(6098), + [aux_sym_coarray_statement_token11] = ACTIONS(6098), + [aux_sym_coarray_statement_token12] = ACTIONS(6098), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6098), + [aux_sym_identifier_token1] = ACTIONS(6098), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6102), + [sym__float_literal] = ACTIONS(6102), + [sym__boz_literal] = ACTIONS(6102), + [sym__string_literal] = ACTIONS(6102), + [sym__string_literal_kind] = ACTIONS(6102), }, - [2301] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_contains_statement_token1] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2261] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2302] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6480), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), + [2262] = { + [aux_sym_preproc_include_token1] = ACTIONS(6450), + [aux_sym_preproc_def_token1] = ACTIONS(6450), + [aux_sym_preproc_if_token1] = ACTIONS(6450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6450), + [sym_preproc_directive] = ACTIONS(6450), + [anon_sym_LPAREN2] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(6452), + [anon_sym_DASH] = ACTIONS(6452), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(6450), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6450), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6450), + [aux_sym_procedure_attributes_token3] = ACTIONS(6450), + [aux_sym_end_function_statement_token1] = ACTIONS(6450), + [aux_sym_contains_statement_token1] = ACTIONS(6450), + [aux_sym_use_statement_token2] = ACTIONS(6450), + [aux_sym_implicit_statement_token4] = ACTIONS(6450), + [aux_sym_save_statement_token1] = ACTIONS(6450), + [aux_sym_private_statement_token1] = ACTIONS(6450), + [aux_sym_public_statement_token1] = ACTIONS(6450), + [aux_sym_derived_type_definition_token1] = ACTIONS(6450), + [aux_sym_procedure_attribute_token6] = ACTIONS(6450), + [aux_sym_variable_attributes_token2] = ACTIONS(6450), + [aux_sym_variable_attributes_token3] = ACTIONS(6450), + [aux_sym_variable_attributes_token5] = ACTIONS(6450), + [aux_sym__intrinsic_type_token1] = ACTIONS(6450), + [aux_sym__intrinsic_type_token3] = ACTIONS(6450), + [aux_sym__intrinsic_type_token4] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6450), + [aux_sym_type_qualifier_token1] = ACTIONS(6450), + [aux_sym_type_qualifier_token2] = ACTIONS(6450), + [anon_sym_SEMI] = ACTIONS(6452), + [aux_sym_stop_statement_token1] = ACTIONS(6450), + [aux_sym_stop_statement_token2] = ACTIONS(6450), + [aux_sym_subroutine_call_token1] = ACTIONS(6450), + [aux_sym_keyword_statement_token1] = ACTIONS(6450), + [aux_sym_keyword_statement_token2] = ACTIONS(6450), + [aux_sym_keyword_statement_token3] = ACTIONS(6450), + [aux_sym_keyword_statement_token4] = ACTIONS(6450), + [aux_sym_keyword_statement_token6] = ACTIONS(6450), + [aux_sym_keyword_statement_token7] = ACTIONS(6450), + [aux_sym_include_statement_token1] = ACTIONS(6450), + [aux_sym_data_statement_token1] = ACTIONS(6450), + [aux_sym_do_loop_statement_token1] = ACTIONS(6450), + [aux_sym__inline_if_statement_token1] = ACTIONS(6450), + [aux_sym_end_if_statement_token1] = ACTIONS(6450), + [aux_sym_elseif_clause_token2] = ACTIONS(6450), + [aux_sym__inline_where_statement_token1] = ACTIONS(6450), + [aux_sym__forall_control_expression_token1] = ACTIONS(6450), + [aux_sym_select_case_statement_token1] = ACTIONS(6450), + [aux_sym_select_case_statement_token3] = ACTIONS(6450), + [aux_sym_select_type_statement_token1] = ACTIONS(6450), + [aux_sym_select_rank_statement_token2] = ACTIONS(6450), + [aux_sym_block_construct_token1] = ACTIONS(6450), + [aux_sym_associate_statement_token1] = ACTIONS(6450), + [aux_sym_format_statement_token1] = ACTIONS(6450), + [aux_sym_print_statement_token1] = ACTIONS(6450), + [aux_sym_open_statement_token1] = ACTIONS(6450), + [aux_sym_close_statement_token1] = ACTIONS(6450), + [aux_sym_inquire_statement_token1] = ACTIONS(6450), + [aux_sym_file_position_statement_token1] = ACTIONS(6450), + [aux_sym_file_position_statement_token2] = ACTIONS(6450), + [aux_sym_file_position_statement_token3] = ACTIONS(6450), + [aux_sym_file_position_statement_token4] = ACTIONS(6450), + [aux_sym_allocate_statement_token1] = ACTIONS(6450), + [aux_sym_entry_statement_token1] = ACTIONS(6450), + [aux_sym_logical_expression_token5] = ACTIONS(6452), + [anon_sym_DOT] = ACTIONS(6450), + [anon_sym_LPAREN_SLASH] = ACTIONS(6452), + [anon_sym_LBRACK] = ACTIONS(6452), + [aux_sym_boolean_literal_token1] = ACTIONS(6452), + [aux_sym_boolean_literal_token2] = ACTIONS(6452), + [aux_sym_null_literal_token1] = ACTIONS(6450), + [aux_sym_coarray_statement_token1] = ACTIONS(6450), + [aux_sym_coarray_statement_token2] = ACTIONS(6450), + [aux_sym_coarray_statement_token6] = ACTIONS(6450), + [aux_sym_coarray_statement_token8] = ACTIONS(6450), + [aux_sym_coarray_statement_token11] = ACTIONS(6450), + [aux_sym_coarray_statement_token12] = ACTIONS(6450), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6450), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6450), + [aux_sym_identifier_token1] = ACTIONS(6450), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [2303] = { - [aux_sym_preproc_include_token1] = ACTIONS(6352), - [aux_sym_preproc_def_token1] = ACTIONS(6352), - [aux_sym_preproc_if_token1] = ACTIONS(6352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6352), - [sym_preproc_directive] = ACTIONS(6352), - [anon_sym_LPAREN2] = ACTIONS(6352), - [anon_sym_PLUS] = ACTIONS(6354), - [anon_sym_DASH] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6352), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6352), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6352), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6352), - [aux_sym_procedure_attributes_token3] = ACTIONS(6352), - [aux_sym_contains_statement_token1] = ACTIONS(6352), - [aux_sym_use_statement_token2] = ACTIONS(6352), - [aux_sym_implicit_statement_token4] = ACTIONS(6352), - [aux_sym_save_statement_token1] = ACTIONS(6352), - [aux_sym_private_statement_token1] = ACTIONS(6352), - [aux_sym_public_statement_token1] = ACTIONS(6352), - [aux_sym_derived_type_definition_token1] = ACTIONS(6352), - [aux_sym_procedure_attribute_token6] = ACTIONS(6352), - [aux_sym_variable_attributes_token2] = ACTIONS(6352), - [aux_sym_variable_attributes_token3] = ACTIONS(6352), - [aux_sym_variable_attributes_token5] = ACTIONS(6352), - [aux_sym__intrinsic_type_token1] = ACTIONS(6352), - [aux_sym__intrinsic_type_token3] = ACTIONS(6352), - [aux_sym__intrinsic_type_token4] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6352), - [aux_sym_type_qualifier_token1] = ACTIONS(6352), - [aux_sym_type_qualifier_token2] = ACTIONS(6352), - [anon_sym_SEMI] = ACTIONS(6354), - [aux_sym_stop_statement_token1] = ACTIONS(6352), - [aux_sym_stop_statement_token2] = ACTIONS(6352), - [aux_sym_subroutine_call_token1] = ACTIONS(6352), - [aux_sym_keyword_statement_token1] = ACTIONS(6352), - [aux_sym_keyword_statement_token2] = ACTIONS(6352), - [aux_sym_keyword_statement_token3] = ACTIONS(6352), - [aux_sym_keyword_statement_token4] = ACTIONS(6352), - [aux_sym_keyword_statement_token6] = ACTIONS(6352), - [aux_sym_keyword_statement_token7] = ACTIONS(6352), - [aux_sym_include_statement_token1] = ACTIONS(6352), - [aux_sym_data_statement_token1] = ACTIONS(6352), - [aux_sym_do_loop_statement_token1] = ACTIONS(6352), - [aux_sym__inline_if_statement_token1] = ACTIONS(6352), - [aux_sym_end_if_statement_token1] = ACTIONS(6352), - [aux_sym_elseif_clause_token2] = ACTIONS(6352), - [aux_sym__inline_where_statement_token1] = ACTIONS(6352), - [aux_sym__forall_control_expression_token1] = ACTIONS(6352), - [aux_sym_select_case_statement_token1] = ACTIONS(6352), - [aux_sym_select_case_statement_token3] = ACTIONS(6352), - [aux_sym_select_type_statement_token1] = ACTIONS(6352), - [aux_sym_select_rank_statement_token2] = ACTIONS(6352), - [aux_sym_block_construct_token1] = ACTIONS(6352), - [aux_sym_associate_statement_token1] = ACTIONS(6352), - [aux_sym_format_statement_token1] = ACTIONS(6352), - [aux_sym_print_statement_token1] = ACTIONS(6352), - [aux_sym_open_statement_token1] = ACTIONS(6352), - [aux_sym_close_statement_token1] = ACTIONS(6352), - [aux_sym_inquire_statement_token1] = ACTIONS(6352), - [aux_sym_file_position_statement_token1] = ACTIONS(6352), - [aux_sym_file_position_statement_token2] = ACTIONS(6352), - [aux_sym_file_position_statement_token3] = ACTIONS(6352), - [aux_sym_file_position_statement_token4] = ACTIONS(6352), - [aux_sym_allocate_statement_token1] = ACTIONS(6352), - [aux_sym_entry_statement_token1] = ACTIONS(6352), - [aux_sym_logical_expression_token5] = ACTIONS(6354), - [anon_sym_DOT] = ACTIONS(6352), - [anon_sym_LPAREN_SLASH] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(6354), - [aux_sym_boolean_literal_token1] = ACTIONS(6354), - [aux_sym_boolean_literal_token2] = ACTIONS(6354), - [aux_sym_null_literal_token1] = ACTIONS(6352), - [aux_sym_coarray_statement_token1] = ACTIONS(6352), - [aux_sym_coarray_statement_token2] = ACTIONS(6352), - [aux_sym_coarray_statement_token6] = ACTIONS(6352), - [aux_sym_coarray_statement_token8] = ACTIONS(6352), - [aux_sym_coarray_statement_token11] = ACTIONS(6352), - [aux_sym_coarray_statement_token12] = ACTIONS(6352), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6352), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6352), - [aux_sym_identifier_token1] = ACTIONS(6352), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6354), - [sym__float_literal] = ACTIONS(6354), - [sym__boz_literal] = ACTIONS(6354), - [sym__string_literal] = ACTIONS(6354), - [sym__string_literal_kind] = ACTIONS(6354), + [sym__integer_literal] = ACTIONS(6452), + [sym__float_literal] = ACTIONS(6452), + [sym__boz_literal] = ACTIONS(6452), + [sym__string_literal] = ACTIONS(6452), + [sym__string_literal_kind] = ACTIONS(6452), }, - [2304] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6482), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [2263] = { + [aux_sym_preproc_include_token1] = ACTIONS(6454), + [aux_sym_preproc_def_token1] = ACTIONS(6454), + [aux_sym_preproc_if_token1] = ACTIONS(6454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6454), + [sym_preproc_directive] = ACTIONS(6454), + [anon_sym_LPAREN2] = ACTIONS(6454), + [anon_sym_PLUS] = ACTIONS(6456), + [anon_sym_DASH] = ACTIONS(6456), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(6454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6454), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6454), + [aux_sym_procedure_attributes_token3] = ACTIONS(6454), + [aux_sym_end_function_statement_token1] = ACTIONS(6454), + [aux_sym_contains_statement_token1] = ACTIONS(6454), + [aux_sym_use_statement_token2] = ACTIONS(6454), + [aux_sym_implicit_statement_token4] = ACTIONS(6454), + [aux_sym_save_statement_token1] = ACTIONS(6454), + [aux_sym_private_statement_token1] = ACTIONS(6454), + [aux_sym_public_statement_token1] = ACTIONS(6454), + [aux_sym_derived_type_definition_token1] = ACTIONS(6454), + [aux_sym_procedure_attribute_token6] = ACTIONS(6454), + [aux_sym_variable_attributes_token2] = ACTIONS(6454), + [aux_sym_variable_attributes_token3] = ACTIONS(6454), + [aux_sym_variable_attributes_token5] = ACTIONS(6454), + [aux_sym__intrinsic_type_token1] = ACTIONS(6454), + [aux_sym__intrinsic_type_token3] = ACTIONS(6454), + [aux_sym__intrinsic_type_token4] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6454), + [aux_sym_type_qualifier_token1] = ACTIONS(6454), + [aux_sym_type_qualifier_token2] = ACTIONS(6454), + [anon_sym_SEMI] = ACTIONS(6456), + [aux_sym_stop_statement_token1] = ACTIONS(6454), + [aux_sym_stop_statement_token2] = ACTIONS(6454), + [aux_sym_subroutine_call_token1] = ACTIONS(6454), + [aux_sym_keyword_statement_token1] = ACTIONS(6454), + [aux_sym_keyword_statement_token2] = ACTIONS(6454), + [aux_sym_keyword_statement_token3] = ACTIONS(6454), + [aux_sym_keyword_statement_token4] = ACTIONS(6454), + [aux_sym_keyword_statement_token6] = ACTIONS(6454), + [aux_sym_keyword_statement_token7] = ACTIONS(6454), + [aux_sym_include_statement_token1] = ACTIONS(6454), + [aux_sym_data_statement_token1] = ACTIONS(6454), + [aux_sym_do_loop_statement_token1] = ACTIONS(6454), + [aux_sym__inline_if_statement_token1] = ACTIONS(6454), + [aux_sym_end_if_statement_token1] = ACTIONS(6454), + [aux_sym_elseif_clause_token2] = ACTIONS(6454), + [aux_sym__inline_where_statement_token1] = ACTIONS(6454), + [aux_sym__forall_control_expression_token1] = ACTIONS(6454), + [aux_sym_select_case_statement_token1] = ACTIONS(6454), + [aux_sym_select_case_statement_token3] = ACTIONS(6454), + [aux_sym_select_type_statement_token1] = ACTIONS(6454), + [aux_sym_select_rank_statement_token2] = ACTIONS(6454), + [aux_sym_block_construct_token1] = ACTIONS(6454), + [aux_sym_associate_statement_token1] = ACTIONS(6454), + [aux_sym_format_statement_token1] = ACTIONS(6454), + [aux_sym_print_statement_token1] = ACTIONS(6454), + [aux_sym_open_statement_token1] = ACTIONS(6454), + [aux_sym_close_statement_token1] = ACTIONS(6454), + [aux_sym_inquire_statement_token1] = ACTIONS(6454), + [aux_sym_file_position_statement_token1] = ACTIONS(6454), + [aux_sym_file_position_statement_token2] = ACTIONS(6454), + [aux_sym_file_position_statement_token3] = ACTIONS(6454), + [aux_sym_file_position_statement_token4] = ACTIONS(6454), + [aux_sym_allocate_statement_token1] = ACTIONS(6454), + [aux_sym_entry_statement_token1] = ACTIONS(6454), + [aux_sym_logical_expression_token5] = ACTIONS(6456), + [anon_sym_DOT] = ACTIONS(6454), + [anon_sym_LPAREN_SLASH] = ACTIONS(6456), + [anon_sym_LBRACK] = ACTIONS(6456), + [aux_sym_boolean_literal_token1] = ACTIONS(6456), + [aux_sym_boolean_literal_token2] = ACTIONS(6456), + [aux_sym_null_literal_token1] = ACTIONS(6454), + [aux_sym_coarray_statement_token1] = ACTIONS(6454), + [aux_sym_coarray_statement_token2] = ACTIONS(6454), + [aux_sym_coarray_statement_token6] = ACTIONS(6454), + [aux_sym_coarray_statement_token8] = ACTIONS(6454), + [aux_sym_coarray_statement_token11] = ACTIONS(6454), + [aux_sym_coarray_statement_token12] = ACTIONS(6454), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6454), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6454), + [aux_sym_identifier_token1] = ACTIONS(6454), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(6456), + [sym__float_literal] = ACTIONS(6456), + [sym__boz_literal] = ACTIONS(6456), + [sym__string_literal] = ACTIONS(6456), + [sym__string_literal_kind] = ACTIONS(6456), }, - [2305] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6484), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2264] = { + [aux_sym_preproc_include_token1] = ACTIONS(6458), + [aux_sym_preproc_def_token1] = ACTIONS(6458), + [aux_sym_preproc_if_token1] = ACTIONS(6458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6458), + [sym_preproc_directive] = ACTIONS(6458), + [anon_sym_LPAREN2] = ACTIONS(6458), + [anon_sym_PLUS] = ACTIONS(6460), + [anon_sym_DASH] = ACTIONS(6460), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6458), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6458), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6458), + [aux_sym_procedure_attributes_token3] = ACTIONS(6458), + [aux_sym_end_function_statement_token1] = ACTIONS(6458), + [aux_sym_contains_statement_token1] = ACTIONS(6458), + [aux_sym_use_statement_token2] = ACTIONS(6458), + [aux_sym_implicit_statement_token4] = ACTIONS(6458), + [aux_sym_save_statement_token1] = ACTIONS(6458), + [aux_sym_private_statement_token1] = ACTIONS(6458), + [aux_sym_public_statement_token1] = ACTIONS(6458), + [aux_sym_derived_type_definition_token1] = ACTIONS(6458), + [aux_sym_procedure_attribute_token6] = ACTIONS(6458), + [aux_sym_variable_attributes_token2] = ACTIONS(6458), + [aux_sym_variable_attributes_token3] = ACTIONS(6458), + [aux_sym_variable_attributes_token5] = ACTIONS(6458), + [aux_sym__intrinsic_type_token1] = ACTIONS(6458), + [aux_sym__intrinsic_type_token3] = ACTIONS(6458), + [aux_sym__intrinsic_type_token4] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6458), + [aux_sym_type_qualifier_token1] = ACTIONS(6458), + [aux_sym_type_qualifier_token2] = ACTIONS(6458), + [anon_sym_SEMI] = ACTIONS(6460), + [aux_sym_stop_statement_token1] = ACTIONS(6458), + [aux_sym_stop_statement_token2] = ACTIONS(6458), + [aux_sym_subroutine_call_token1] = ACTIONS(6458), + [aux_sym_keyword_statement_token1] = ACTIONS(6458), + [aux_sym_keyword_statement_token2] = ACTIONS(6458), + [aux_sym_keyword_statement_token3] = ACTIONS(6458), + [aux_sym_keyword_statement_token4] = ACTIONS(6458), + [aux_sym_keyword_statement_token6] = ACTIONS(6458), + [aux_sym_keyword_statement_token7] = ACTIONS(6458), + [aux_sym_include_statement_token1] = ACTIONS(6458), + [aux_sym_data_statement_token1] = ACTIONS(6458), + [aux_sym_do_loop_statement_token1] = ACTIONS(6458), + [aux_sym__inline_if_statement_token1] = ACTIONS(6458), + [aux_sym_end_if_statement_token1] = ACTIONS(6458), + [aux_sym_elseif_clause_token2] = ACTIONS(6458), + [aux_sym__inline_where_statement_token1] = ACTIONS(6458), + [aux_sym__forall_control_expression_token1] = ACTIONS(6458), + [aux_sym_select_case_statement_token1] = ACTIONS(6458), + [aux_sym_select_case_statement_token3] = ACTIONS(6458), + [aux_sym_select_type_statement_token1] = ACTIONS(6458), + [aux_sym_select_rank_statement_token2] = ACTIONS(6458), + [aux_sym_block_construct_token1] = ACTIONS(6458), + [aux_sym_associate_statement_token1] = ACTIONS(6458), + [aux_sym_format_statement_token1] = ACTIONS(6458), + [aux_sym_print_statement_token1] = ACTIONS(6458), + [aux_sym_open_statement_token1] = ACTIONS(6458), + [aux_sym_close_statement_token1] = ACTIONS(6458), + [aux_sym_inquire_statement_token1] = ACTIONS(6458), + [aux_sym_file_position_statement_token1] = ACTIONS(6458), + [aux_sym_file_position_statement_token2] = ACTIONS(6458), + [aux_sym_file_position_statement_token3] = ACTIONS(6458), + [aux_sym_file_position_statement_token4] = ACTIONS(6458), + [aux_sym_allocate_statement_token1] = ACTIONS(6458), + [aux_sym_entry_statement_token1] = ACTIONS(6458), + [aux_sym_logical_expression_token5] = ACTIONS(6460), + [anon_sym_DOT] = ACTIONS(6458), + [anon_sym_LPAREN_SLASH] = ACTIONS(6460), + [anon_sym_LBRACK] = ACTIONS(6460), + [aux_sym_boolean_literal_token1] = ACTIONS(6460), + [aux_sym_boolean_literal_token2] = ACTIONS(6460), + [aux_sym_null_literal_token1] = ACTIONS(6458), + [aux_sym_coarray_statement_token1] = ACTIONS(6458), + [aux_sym_coarray_statement_token2] = ACTIONS(6458), + [aux_sym_coarray_statement_token6] = ACTIONS(6458), + [aux_sym_coarray_statement_token8] = ACTIONS(6458), + [aux_sym_coarray_statement_token11] = ACTIONS(6458), + [aux_sym_coarray_statement_token12] = ACTIONS(6458), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6458), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6458), + [aux_sym_identifier_token1] = ACTIONS(6458), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6460), + [sym__float_literal] = ACTIONS(6460), + [sym__boz_literal] = ACTIONS(6460), + [sym__string_literal] = ACTIONS(6460), + [sym__string_literal_kind] = ACTIONS(6460), + }, + [2265] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2306] = { - [aux_sym_preproc_include_token1] = ACTIONS(2848), - [aux_sym_preproc_def_token1] = ACTIONS(2848), - [aux_sym_preproc_if_token1] = ACTIONS(2848), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2848), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2848), - [sym_preproc_directive] = ACTIONS(2848), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(6356), - [anon_sym_DASH] = ACTIONS(6356), + [2266] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2848), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2848), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2848), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(2848), - [aux_sym_procedure_attributes_token3] = ACTIONS(2848), - [aux_sym_contains_statement_token1] = ACTIONS(2848), - [aux_sym_use_statement_token2] = ACTIONS(2848), - [aux_sym_implicit_statement_token4] = ACTIONS(2848), - [aux_sym_save_statement_token1] = ACTIONS(2848), - [aux_sym_private_statement_token1] = ACTIONS(2848), - [aux_sym_public_statement_token1] = ACTIONS(2848), - [aux_sym_derived_type_definition_token1] = ACTIONS(2848), - [aux_sym_procedure_attribute_token6] = ACTIONS(2848), - [aux_sym_variable_attributes_token2] = ACTIONS(2848), - [aux_sym_variable_attributes_token3] = ACTIONS(2848), - [aux_sym_variable_attributes_token5] = ACTIONS(2848), - [aux_sym__intrinsic_type_token1] = ACTIONS(2848), - [aux_sym__intrinsic_type_token3] = ACTIONS(2848), - [aux_sym__intrinsic_type_token4] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2848), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2848), - [aux_sym_type_qualifier_token1] = ACTIONS(2848), - [aux_sym_type_qualifier_token2] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(6356), - [aux_sym_stop_statement_token1] = ACTIONS(2848), - [aux_sym_stop_statement_token2] = ACTIONS(2848), - [aux_sym_subroutine_call_token1] = ACTIONS(2848), - [aux_sym_keyword_statement_token1] = ACTIONS(2848), - [aux_sym_keyword_statement_token2] = ACTIONS(2848), - [aux_sym_keyword_statement_token3] = ACTIONS(2848), - [aux_sym_keyword_statement_token4] = ACTIONS(2848), - [aux_sym_keyword_statement_token6] = ACTIONS(2848), - [aux_sym_keyword_statement_token7] = ACTIONS(2848), - [aux_sym_include_statement_token1] = ACTIONS(2848), - [aux_sym_data_statement_token1] = ACTIONS(2848), - [aux_sym_do_loop_statement_token1] = ACTIONS(2848), - [aux_sym__inline_if_statement_token1] = ACTIONS(2848), - [aux_sym_end_if_statement_token1] = ACTIONS(2848), - [aux_sym_elseif_clause_token2] = ACTIONS(2848), - [aux_sym__inline_where_statement_token1] = ACTIONS(2848), - [aux_sym__forall_control_expression_token1] = ACTIONS(2848), - [aux_sym_select_case_statement_token1] = ACTIONS(2848), - [aux_sym_select_case_statement_token3] = ACTIONS(2848), - [aux_sym_select_type_statement_token1] = ACTIONS(2848), - [aux_sym_select_rank_statement_token2] = ACTIONS(2848), - [aux_sym_block_construct_token1] = ACTIONS(2848), - [aux_sym_associate_statement_token1] = ACTIONS(2848), - [aux_sym_format_statement_token1] = ACTIONS(2848), - [aux_sym_print_statement_token1] = ACTIONS(2848), - [aux_sym_open_statement_token1] = ACTIONS(2848), - [aux_sym_close_statement_token1] = ACTIONS(2848), - [aux_sym_inquire_statement_token1] = ACTIONS(2848), - [aux_sym_file_position_statement_token1] = ACTIONS(2848), - [aux_sym_file_position_statement_token2] = ACTIONS(2848), - [aux_sym_file_position_statement_token3] = ACTIONS(2848), - [aux_sym_file_position_statement_token4] = ACTIONS(2848), - [aux_sym_allocate_statement_token1] = ACTIONS(2848), - [aux_sym_entry_statement_token1] = ACTIONS(2848), - [aux_sym_logical_expression_token5] = ACTIONS(6356), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_LPAREN_SLASH] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(6356), - [aux_sym_boolean_literal_token1] = ACTIONS(6356), - [aux_sym_boolean_literal_token2] = ACTIONS(6356), - [aux_sym_null_literal_token1] = ACTIONS(2848), - [aux_sym_coarray_statement_token1] = ACTIONS(2848), - [aux_sym_coarray_statement_token2] = ACTIONS(2848), - [aux_sym_coarray_statement_token6] = ACTIONS(2848), - [aux_sym_coarray_statement_token8] = ACTIONS(2848), - [aux_sym_coarray_statement_token11] = ACTIONS(2848), - [aux_sym_coarray_statement_token12] = ACTIONS(2848), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2848), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2848), - [aux_sym_identifier_token1] = ACTIONS(2848), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6356), - [sym__float_literal] = ACTIONS(6356), - [sym__boz_literal] = ACTIONS(6356), - [sym__string_literal] = ACTIONS(6356), - [sym__string_literal_kind] = ACTIONS(6356), - }, - [2307] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6486), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [2308] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6488), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2309] = { - [aux_sym_preproc_include_token1] = ACTIONS(5948), - [aux_sym_preproc_def_token1] = ACTIONS(5948), - [aux_sym_preproc_if_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5948), - [sym_preproc_directive] = ACTIONS(5948), - [anon_sym_LPAREN2] = ACTIONS(5948), - [anon_sym_PLUS] = ACTIONS(5952), - [anon_sym_DASH] = ACTIONS(5952), + [2267] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5948), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5948), - [aux_sym_procedure_attributes_token3] = ACTIONS(5948), - [aux_sym_contains_statement_token1] = ACTIONS(5948), - [aux_sym_use_statement_token2] = ACTIONS(5948), - [aux_sym_implicit_statement_token4] = ACTIONS(5948), - [aux_sym_save_statement_token1] = ACTIONS(5948), - [aux_sym_private_statement_token1] = ACTIONS(5948), - [aux_sym_public_statement_token1] = ACTIONS(5948), - [aux_sym_derived_type_definition_token1] = ACTIONS(5948), - [aux_sym_procedure_attribute_token6] = ACTIONS(5948), - [aux_sym_variable_attributes_token2] = ACTIONS(5948), - [aux_sym_variable_attributes_token3] = ACTIONS(5948), - [aux_sym_variable_attributes_token5] = ACTIONS(5948), - [aux_sym__intrinsic_type_token1] = ACTIONS(5948), - [aux_sym__intrinsic_type_token3] = ACTIONS(5948), - [aux_sym__intrinsic_type_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5948), - [aux_sym_type_qualifier_token1] = ACTIONS(5948), - [aux_sym_type_qualifier_token2] = ACTIONS(5948), - [anon_sym_SEMI] = ACTIONS(5952), - [aux_sym_stop_statement_token1] = ACTIONS(5948), - [aux_sym_stop_statement_token2] = ACTIONS(5948), - [aux_sym_subroutine_call_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token2] = ACTIONS(5948), - [aux_sym_keyword_statement_token3] = ACTIONS(5948), - [aux_sym_keyword_statement_token4] = ACTIONS(5948), - [aux_sym_keyword_statement_token6] = ACTIONS(5948), - [aux_sym_keyword_statement_token7] = ACTIONS(5948), - [aux_sym_include_statement_token1] = ACTIONS(5948), - [aux_sym_data_statement_token1] = ACTIONS(5948), - [aux_sym_do_loop_statement_token1] = ACTIONS(5948), - [aux_sym__inline_if_statement_token1] = ACTIONS(5948), - [aux_sym_end_if_statement_token1] = ACTIONS(5948), - [aux_sym_elseif_clause_token2] = ACTIONS(5948), - [aux_sym__inline_where_statement_token1] = ACTIONS(5948), - [aux_sym__forall_control_expression_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token3] = ACTIONS(5948), - [aux_sym_select_type_statement_token1] = ACTIONS(5948), - [aux_sym_select_rank_statement_token2] = ACTIONS(5948), - [aux_sym_block_construct_token1] = ACTIONS(5948), - [aux_sym_associate_statement_token1] = ACTIONS(5948), - [aux_sym_format_statement_token1] = ACTIONS(5948), - [aux_sym_print_statement_token1] = ACTIONS(5948), - [aux_sym_open_statement_token1] = ACTIONS(5948), - [aux_sym_close_statement_token1] = ACTIONS(5948), - [aux_sym_inquire_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token2] = ACTIONS(5948), - [aux_sym_file_position_statement_token3] = ACTIONS(5948), - [aux_sym_file_position_statement_token4] = ACTIONS(5948), - [aux_sym_allocate_statement_token1] = ACTIONS(5948), - [aux_sym_entry_statement_token1] = ACTIONS(5948), - [aux_sym_logical_expression_token5] = ACTIONS(5952), - [anon_sym_DOT] = ACTIONS(5948), - [anon_sym_LPAREN_SLASH] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5952), - [aux_sym_boolean_literal_token1] = ACTIONS(5952), - [aux_sym_boolean_literal_token2] = ACTIONS(5952), - [aux_sym_null_literal_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token2] = ACTIONS(5948), - [aux_sym_coarray_statement_token6] = ACTIONS(5948), - [aux_sym_coarray_statement_token8] = ACTIONS(5948), - [aux_sym_coarray_statement_token11] = ACTIONS(5948), - [aux_sym_coarray_statement_token12] = ACTIONS(5948), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5948), - [aux_sym_identifier_token1] = ACTIONS(5948), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5952), - [sym__float_literal] = ACTIONS(5952), - [sym__boz_literal] = ACTIONS(5952), - [sym__string_literal] = ACTIONS(5952), - [sym__string_literal_kind] = ACTIONS(5952), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2310] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [2268] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_contains_statement_token1] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [2311] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6490), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2312] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6492), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [2269] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [2313] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6494), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2314] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6496), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), + [2270] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [2315] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_contains_statement_token1] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [2316] = { - [aux_sym_preproc_include_token1] = ACTIONS(6302), - [aux_sym_preproc_def_token1] = ACTIONS(6302), - [aux_sym_preproc_if_token1] = ACTIONS(6302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6302), - [sym_preproc_directive] = ACTIONS(6302), - [anon_sym_LPAREN2] = ACTIONS(6302), - [anon_sym_PLUS] = ACTIONS(6304), - [anon_sym_DASH] = ACTIONS(6304), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6302), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6302), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6302), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6302), - [aux_sym_procedure_attributes_token3] = ACTIONS(6302), - [aux_sym_contains_statement_token1] = ACTIONS(6302), - [aux_sym_use_statement_token2] = ACTIONS(6302), - [aux_sym_implicit_statement_token4] = ACTIONS(6302), - [aux_sym_save_statement_token1] = ACTIONS(6302), - [aux_sym_private_statement_token1] = ACTIONS(6302), - [aux_sym_public_statement_token1] = ACTIONS(6302), - [aux_sym_derived_type_definition_token1] = ACTIONS(6302), - [aux_sym_procedure_attribute_token6] = ACTIONS(6302), - [aux_sym_variable_attributes_token2] = ACTIONS(6302), - [aux_sym_variable_attributes_token3] = ACTIONS(6302), - [aux_sym_variable_attributes_token5] = ACTIONS(6302), - [aux_sym__intrinsic_type_token1] = ACTIONS(6302), - [aux_sym__intrinsic_type_token3] = ACTIONS(6302), - [aux_sym__intrinsic_type_token4] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6302), - [aux_sym_type_qualifier_token1] = ACTIONS(6302), - [aux_sym_type_qualifier_token2] = ACTIONS(6302), - [anon_sym_SEMI] = ACTIONS(6304), - [aux_sym_stop_statement_token1] = ACTIONS(6302), - [aux_sym_stop_statement_token2] = ACTIONS(6302), - [aux_sym_subroutine_call_token1] = ACTIONS(6302), - [aux_sym_keyword_statement_token1] = ACTIONS(6302), - [aux_sym_keyword_statement_token2] = ACTIONS(6302), - [aux_sym_keyword_statement_token3] = ACTIONS(6302), - [aux_sym_keyword_statement_token4] = ACTIONS(6302), - [aux_sym_keyword_statement_token6] = ACTIONS(6302), - [aux_sym_keyword_statement_token7] = ACTIONS(6302), - [aux_sym_include_statement_token1] = ACTIONS(6302), - [aux_sym_data_statement_token1] = ACTIONS(6302), - [aux_sym_do_loop_statement_token1] = ACTIONS(6302), - [aux_sym__inline_if_statement_token1] = ACTIONS(6302), - [aux_sym_end_if_statement_token1] = ACTIONS(6302), - [aux_sym_elseif_clause_token2] = ACTIONS(6302), - [aux_sym__inline_where_statement_token1] = ACTIONS(6302), - [aux_sym__forall_control_expression_token1] = ACTIONS(6302), - [aux_sym_select_case_statement_token1] = ACTIONS(6302), - [aux_sym_select_case_statement_token3] = ACTIONS(6302), - [aux_sym_select_type_statement_token1] = ACTIONS(6302), - [aux_sym_select_rank_statement_token2] = ACTIONS(6302), - [aux_sym_block_construct_token1] = ACTIONS(6302), - [aux_sym_associate_statement_token1] = ACTIONS(6302), - [aux_sym_format_statement_token1] = ACTIONS(6302), - [aux_sym_print_statement_token1] = ACTIONS(6302), - [aux_sym_open_statement_token1] = ACTIONS(6302), - [aux_sym_close_statement_token1] = ACTIONS(6302), - [aux_sym_inquire_statement_token1] = ACTIONS(6302), - [aux_sym_file_position_statement_token1] = ACTIONS(6302), - [aux_sym_file_position_statement_token2] = ACTIONS(6302), - [aux_sym_file_position_statement_token3] = ACTIONS(6302), - [aux_sym_file_position_statement_token4] = ACTIONS(6302), - [aux_sym_allocate_statement_token1] = ACTIONS(6302), - [aux_sym_entry_statement_token1] = ACTIONS(6302), - [aux_sym_logical_expression_token5] = ACTIONS(6304), - [anon_sym_DOT] = ACTIONS(6302), - [anon_sym_LPAREN_SLASH] = ACTIONS(6304), - [anon_sym_LBRACK] = ACTIONS(6304), - [aux_sym_boolean_literal_token1] = ACTIONS(6304), - [aux_sym_boolean_literal_token2] = ACTIONS(6304), - [aux_sym_null_literal_token1] = ACTIONS(6302), - [aux_sym_coarray_statement_token1] = ACTIONS(6302), - [aux_sym_coarray_statement_token2] = ACTIONS(6302), - [aux_sym_coarray_statement_token6] = ACTIONS(6302), - [aux_sym_coarray_statement_token8] = ACTIONS(6302), - [aux_sym_coarray_statement_token11] = ACTIONS(6302), - [aux_sym_coarray_statement_token12] = ACTIONS(6302), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6302), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6302), - [aux_sym_identifier_token1] = ACTIONS(6302), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6304), - [sym__float_literal] = ACTIONS(6304), - [sym__boz_literal] = ACTIONS(6304), - [sym__string_literal] = ACTIONS(6304), - [sym__string_literal_kind] = ACTIONS(6304), - }, - [2317] = { - [aux_sym_preproc_include_token1] = ACTIONS(6016), - [aux_sym_preproc_def_token1] = ACTIONS(6016), - [aux_sym_preproc_if_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6016), - [sym_preproc_directive] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [anon_sym_PLUS] = ACTIONS(6020), - [anon_sym_DASH] = ACTIONS(6020), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6016), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6016), - [aux_sym_procedure_attributes_token3] = ACTIONS(6016), - [aux_sym_contains_statement_token1] = ACTIONS(6016), - [aux_sym_use_statement_token2] = ACTIONS(6016), - [aux_sym_implicit_statement_token4] = ACTIONS(6016), - [aux_sym_save_statement_token1] = ACTIONS(6016), - [aux_sym_private_statement_token1] = ACTIONS(6016), - [aux_sym_public_statement_token1] = ACTIONS(6016), - [aux_sym_derived_type_definition_token1] = ACTIONS(6016), - [aux_sym_procedure_attribute_token6] = ACTIONS(6016), - [aux_sym_variable_attributes_token2] = ACTIONS(6016), - [aux_sym_variable_attributes_token3] = ACTIONS(6016), - [aux_sym_variable_attributes_token5] = ACTIONS(6016), - [aux_sym__intrinsic_type_token1] = ACTIONS(6016), - [aux_sym__intrinsic_type_token3] = ACTIONS(6016), - [aux_sym__intrinsic_type_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6016), - [aux_sym_type_qualifier_token1] = ACTIONS(6016), - [aux_sym_type_qualifier_token2] = ACTIONS(6016), - [anon_sym_SEMI] = ACTIONS(6020), - [aux_sym_stop_statement_token1] = ACTIONS(6016), - [aux_sym_stop_statement_token2] = ACTIONS(6016), - [aux_sym_subroutine_call_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token2] = ACTIONS(6016), - [aux_sym_keyword_statement_token3] = ACTIONS(6016), - [aux_sym_keyword_statement_token4] = ACTIONS(6016), - [aux_sym_keyword_statement_token6] = ACTIONS(6016), - [aux_sym_keyword_statement_token7] = ACTIONS(6016), - [aux_sym_include_statement_token1] = ACTIONS(6016), - [aux_sym_data_statement_token1] = ACTIONS(6016), - [aux_sym_do_loop_statement_token1] = ACTIONS(6016), - [aux_sym__inline_if_statement_token1] = ACTIONS(6016), - [aux_sym_end_if_statement_token1] = ACTIONS(6016), - [aux_sym_elseif_clause_token2] = ACTIONS(6016), - [aux_sym__inline_where_statement_token1] = ACTIONS(6016), - [aux_sym__forall_control_expression_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token3] = ACTIONS(6016), - [aux_sym_select_type_statement_token1] = ACTIONS(6016), - [aux_sym_select_rank_statement_token2] = ACTIONS(6016), - [aux_sym_block_construct_token1] = ACTIONS(6016), - [aux_sym_associate_statement_token1] = ACTIONS(6016), - [aux_sym_format_statement_token1] = ACTIONS(6016), - [aux_sym_print_statement_token1] = ACTIONS(6016), - [aux_sym_open_statement_token1] = ACTIONS(6016), - [aux_sym_close_statement_token1] = ACTIONS(6016), - [aux_sym_inquire_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token2] = ACTIONS(6016), - [aux_sym_file_position_statement_token3] = ACTIONS(6016), - [aux_sym_file_position_statement_token4] = ACTIONS(6016), - [aux_sym_allocate_statement_token1] = ACTIONS(6016), - [aux_sym_entry_statement_token1] = ACTIONS(6016), - [aux_sym_logical_expression_token5] = ACTIONS(6020), - [anon_sym_DOT] = ACTIONS(6016), - [anon_sym_LPAREN_SLASH] = ACTIONS(6020), - [anon_sym_LBRACK] = ACTIONS(6020), - [aux_sym_boolean_literal_token1] = ACTIONS(6020), - [aux_sym_boolean_literal_token2] = ACTIONS(6020), - [aux_sym_null_literal_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token2] = ACTIONS(6016), - [aux_sym_coarray_statement_token6] = ACTIONS(6016), - [aux_sym_coarray_statement_token8] = ACTIONS(6016), - [aux_sym_coarray_statement_token11] = ACTIONS(6016), - [aux_sym_coarray_statement_token12] = ACTIONS(6016), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6016), - [aux_sym_identifier_token1] = ACTIONS(6016), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6020), - [sym__float_literal] = ACTIONS(6020), - [sym__boz_literal] = ACTIONS(6020), - [sym__string_literal] = ACTIONS(6020), - [sym__string_literal_kind] = ACTIONS(6020), - }, - [2318] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6498), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2319] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2271] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2320] = { - [aux_sym_preproc_include_token1] = ACTIONS(6302), - [aux_sym_preproc_def_token1] = ACTIONS(6302), - [aux_sym_preproc_if_token1] = ACTIONS(6302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6302), - [sym_preproc_directive] = ACTIONS(6302), - [anon_sym_LPAREN2] = ACTIONS(6302), - [anon_sym_PLUS] = ACTIONS(6304), - [anon_sym_DASH] = ACTIONS(6304), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6302), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6302), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6302), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6302), - [aux_sym_procedure_attributes_token3] = ACTIONS(6302), - [aux_sym_contains_statement_token1] = ACTIONS(6302), - [aux_sym_use_statement_token2] = ACTIONS(6302), - [aux_sym_implicit_statement_token4] = ACTIONS(6302), - [aux_sym_save_statement_token1] = ACTIONS(6302), - [aux_sym_private_statement_token1] = ACTIONS(6302), - [aux_sym_public_statement_token1] = ACTIONS(6302), - [aux_sym_derived_type_definition_token1] = ACTIONS(6302), - [aux_sym_procedure_attribute_token6] = ACTIONS(6302), - [aux_sym_variable_attributes_token2] = ACTIONS(6302), - [aux_sym_variable_attributes_token3] = ACTIONS(6302), - [aux_sym_variable_attributes_token5] = ACTIONS(6302), - [aux_sym__intrinsic_type_token1] = ACTIONS(6302), - [aux_sym__intrinsic_type_token3] = ACTIONS(6302), - [aux_sym__intrinsic_type_token4] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6302), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6302), - [aux_sym_type_qualifier_token1] = ACTIONS(6302), - [aux_sym_type_qualifier_token2] = ACTIONS(6302), - [anon_sym_SEMI] = ACTIONS(6304), - [aux_sym_stop_statement_token1] = ACTIONS(6302), - [aux_sym_stop_statement_token2] = ACTIONS(6302), - [aux_sym_subroutine_call_token1] = ACTIONS(6302), - [aux_sym_keyword_statement_token1] = ACTIONS(6302), - [aux_sym_keyword_statement_token2] = ACTIONS(6302), - [aux_sym_keyword_statement_token3] = ACTIONS(6302), - [aux_sym_keyword_statement_token4] = ACTIONS(6302), - [aux_sym_keyword_statement_token6] = ACTIONS(6302), - [aux_sym_keyword_statement_token7] = ACTIONS(6302), - [aux_sym_include_statement_token1] = ACTIONS(6302), - [aux_sym_data_statement_token1] = ACTIONS(6302), - [aux_sym_do_loop_statement_token1] = ACTIONS(6302), - [aux_sym__inline_if_statement_token1] = ACTIONS(6302), - [aux_sym_end_if_statement_token1] = ACTIONS(6302), - [aux_sym_elseif_clause_token2] = ACTIONS(6302), - [aux_sym__inline_where_statement_token1] = ACTIONS(6302), - [aux_sym__forall_control_expression_token1] = ACTIONS(6302), - [aux_sym_select_case_statement_token1] = ACTIONS(6302), - [aux_sym_select_case_statement_token3] = ACTIONS(6302), - [aux_sym_select_type_statement_token1] = ACTIONS(6302), - [aux_sym_select_rank_statement_token2] = ACTIONS(6302), - [aux_sym_block_construct_token1] = ACTIONS(6302), - [aux_sym_associate_statement_token1] = ACTIONS(6302), - [aux_sym_format_statement_token1] = ACTIONS(6302), - [aux_sym_print_statement_token1] = ACTIONS(6302), - [aux_sym_open_statement_token1] = ACTIONS(6302), - [aux_sym_close_statement_token1] = ACTIONS(6302), - [aux_sym_inquire_statement_token1] = ACTIONS(6302), - [aux_sym_file_position_statement_token1] = ACTIONS(6302), - [aux_sym_file_position_statement_token2] = ACTIONS(6302), - [aux_sym_file_position_statement_token3] = ACTIONS(6302), - [aux_sym_file_position_statement_token4] = ACTIONS(6302), - [aux_sym_allocate_statement_token1] = ACTIONS(6302), - [aux_sym_entry_statement_token1] = ACTIONS(6302), - [aux_sym_logical_expression_token5] = ACTIONS(6304), - [anon_sym_DOT] = ACTIONS(6302), - [anon_sym_LPAREN_SLASH] = ACTIONS(6304), - [anon_sym_LBRACK] = ACTIONS(6304), - [aux_sym_boolean_literal_token1] = ACTIONS(6304), - [aux_sym_boolean_literal_token2] = ACTIONS(6304), - [aux_sym_null_literal_token1] = ACTIONS(6302), - [aux_sym_coarray_statement_token1] = ACTIONS(6302), - [aux_sym_coarray_statement_token2] = ACTIONS(6302), - [aux_sym_coarray_statement_token6] = ACTIONS(6302), - [aux_sym_coarray_statement_token8] = ACTIONS(6302), - [aux_sym_coarray_statement_token11] = ACTIONS(6302), - [aux_sym_coarray_statement_token12] = ACTIONS(6302), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6302), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6302), - [aux_sym_identifier_token1] = ACTIONS(6302), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6304), - [sym__float_literal] = ACTIONS(6304), - [sym__boz_literal] = ACTIONS(6304), - [sym__string_literal] = ACTIONS(6304), - [sym__string_literal_kind] = ACTIONS(6304), - }, - [2321] = { - [aux_sym_preproc_include_token1] = ACTIONS(6016), - [aux_sym_preproc_def_token1] = ACTIONS(6016), - [aux_sym_preproc_if_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6016), - [sym_preproc_directive] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [anon_sym_PLUS] = ACTIONS(6020), - [anon_sym_DASH] = ACTIONS(6020), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6016), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6016), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6016), - [aux_sym_procedure_attributes_token3] = ACTIONS(6016), - [aux_sym_contains_statement_token1] = ACTIONS(6016), - [aux_sym_use_statement_token2] = ACTIONS(6016), - [aux_sym_implicit_statement_token4] = ACTIONS(6016), - [aux_sym_save_statement_token1] = ACTIONS(6016), - [aux_sym_private_statement_token1] = ACTIONS(6016), - [aux_sym_public_statement_token1] = ACTIONS(6016), - [aux_sym_derived_type_definition_token1] = ACTIONS(6016), - [aux_sym_procedure_attribute_token6] = ACTIONS(6016), - [aux_sym_variable_attributes_token2] = ACTIONS(6016), - [aux_sym_variable_attributes_token3] = ACTIONS(6016), - [aux_sym_variable_attributes_token5] = ACTIONS(6016), - [aux_sym__intrinsic_type_token1] = ACTIONS(6016), - [aux_sym__intrinsic_type_token3] = ACTIONS(6016), - [aux_sym__intrinsic_type_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6016), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6016), - [aux_sym_type_qualifier_token1] = ACTIONS(6016), - [aux_sym_type_qualifier_token2] = ACTIONS(6016), - [anon_sym_SEMI] = ACTIONS(6020), - [aux_sym_stop_statement_token1] = ACTIONS(6016), - [aux_sym_stop_statement_token2] = ACTIONS(6016), - [aux_sym_subroutine_call_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token1] = ACTIONS(6016), - [aux_sym_keyword_statement_token2] = ACTIONS(6016), - [aux_sym_keyword_statement_token3] = ACTIONS(6016), - [aux_sym_keyword_statement_token4] = ACTIONS(6016), - [aux_sym_keyword_statement_token6] = ACTIONS(6016), - [aux_sym_keyword_statement_token7] = ACTIONS(6016), - [aux_sym_include_statement_token1] = ACTIONS(6016), - [aux_sym_data_statement_token1] = ACTIONS(6016), - [aux_sym_do_loop_statement_token1] = ACTIONS(6016), - [aux_sym__inline_if_statement_token1] = ACTIONS(6016), - [aux_sym_end_if_statement_token1] = ACTIONS(6016), - [aux_sym_elseif_clause_token2] = ACTIONS(6016), - [aux_sym__inline_where_statement_token1] = ACTIONS(6016), - [aux_sym__forall_control_expression_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token1] = ACTIONS(6016), - [aux_sym_select_case_statement_token3] = ACTIONS(6016), - [aux_sym_select_type_statement_token1] = ACTIONS(6016), - [aux_sym_select_rank_statement_token2] = ACTIONS(6016), - [aux_sym_block_construct_token1] = ACTIONS(6016), - [aux_sym_associate_statement_token1] = ACTIONS(6016), - [aux_sym_format_statement_token1] = ACTIONS(6016), - [aux_sym_print_statement_token1] = ACTIONS(6016), - [aux_sym_open_statement_token1] = ACTIONS(6016), - [aux_sym_close_statement_token1] = ACTIONS(6016), - [aux_sym_inquire_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token1] = ACTIONS(6016), - [aux_sym_file_position_statement_token2] = ACTIONS(6016), - [aux_sym_file_position_statement_token3] = ACTIONS(6016), - [aux_sym_file_position_statement_token4] = ACTIONS(6016), - [aux_sym_allocate_statement_token1] = ACTIONS(6016), - [aux_sym_entry_statement_token1] = ACTIONS(6016), - [aux_sym_logical_expression_token5] = ACTIONS(6020), - [anon_sym_DOT] = ACTIONS(6016), - [anon_sym_LPAREN_SLASH] = ACTIONS(6020), - [anon_sym_LBRACK] = ACTIONS(6020), - [aux_sym_boolean_literal_token1] = ACTIONS(6020), - [aux_sym_boolean_literal_token2] = ACTIONS(6020), - [aux_sym_null_literal_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_statement_token2] = ACTIONS(6016), - [aux_sym_coarray_statement_token6] = ACTIONS(6016), - [aux_sym_coarray_statement_token8] = ACTIONS(6016), - [aux_sym_coarray_statement_token11] = ACTIONS(6016), - [aux_sym_coarray_statement_token12] = ACTIONS(6016), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6016), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6016), - [aux_sym_identifier_token1] = ACTIONS(6016), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6020), - [sym__float_literal] = ACTIONS(6020), - [sym__boz_literal] = ACTIONS(6020), - [sym__string_literal] = ACTIONS(6020), - [sym__string_literal_kind] = ACTIONS(6020), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2322] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2272] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6462), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2323] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6500), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2273] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2324] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6502), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2325] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2274] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_end_program_statement_token2] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_contains_statement_token1] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2326] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_contains_statement_token1] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [2327] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6504), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [2328] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_end_program_statement_token2] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_contains_statement_token1] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2329] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_end_program_statement_token2] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_contains_statement_token1] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2330] = { - [aux_sym_preproc_include_token1] = ACTIONS(6358), - [aux_sym_preproc_def_token1] = ACTIONS(6358), - [aux_sym_preproc_if_token1] = ACTIONS(6358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6358), - [sym_preproc_directive] = ACTIONS(6358), - [anon_sym_LPAREN2] = ACTIONS(6358), - [anon_sym_PLUS] = ACTIONS(6360), - [anon_sym_DASH] = ACTIONS(6360), + [2275] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6358), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6358), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6358), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6358), - [aux_sym_procedure_attributes_token3] = ACTIONS(6358), - [aux_sym_contains_statement_token1] = ACTIONS(6358), - [aux_sym_use_statement_token2] = ACTIONS(6358), - [aux_sym_implicit_statement_token4] = ACTIONS(6358), - [aux_sym_save_statement_token1] = ACTIONS(6358), - [aux_sym_private_statement_token1] = ACTIONS(6358), - [aux_sym_public_statement_token1] = ACTIONS(6358), - [aux_sym_derived_type_definition_token1] = ACTIONS(6358), - [aux_sym_procedure_attribute_token6] = ACTIONS(6358), - [aux_sym_variable_attributes_token2] = ACTIONS(6358), - [aux_sym_variable_attributes_token3] = ACTIONS(6358), - [aux_sym_variable_attributes_token5] = ACTIONS(6358), - [aux_sym__intrinsic_type_token1] = ACTIONS(6358), - [aux_sym__intrinsic_type_token3] = ACTIONS(6358), - [aux_sym__intrinsic_type_token4] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6358), - [aux_sym_type_qualifier_token1] = ACTIONS(6358), - [aux_sym_type_qualifier_token2] = ACTIONS(6358), - [anon_sym_SEMI] = ACTIONS(6360), - [aux_sym_stop_statement_token1] = ACTIONS(6358), - [aux_sym_stop_statement_token2] = ACTIONS(6358), - [aux_sym_subroutine_call_token1] = ACTIONS(6358), - [aux_sym_keyword_statement_token1] = ACTIONS(6358), - [aux_sym_keyword_statement_token2] = ACTIONS(6358), - [aux_sym_keyword_statement_token3] = ACTIONS(6358), - [aux_sym_keyword_statement_token4] = ACTIONS(6358), - [aux_sym_keyword_statement_token6] = ACTIONS(6358), - [aux_sym_keyword_statement_token7] = ACTIONS(6358), - [aux_sym_include_statement_token1] = ACTIONS(6358), - [aux_sym_data_statement_token1] = ACTIONS(6358), - [aux_sym_do_loop_statement_token1] = ACTIONS(6358), - [aux_sym__inline_if_statement_token1] = ACTIONS(6358), - [aux_sym_end_if_statement_token1] = ACTIONS(6358), - [aux_sym_elseif_clause_token2] = ACTIONS(6358), - [aux_sym__inline_where_statement_token1] = ACTIONS(6358), - [aux_sym__forall_control_expression_token1] = ACTIONS(6358), - [aux_sym_select_case_statement_token1] = ACTIONS(6358), - [aux_sym_select_case_statement_token3] = ACTIONS(6358), - [aux_sym_select_type_statement_token1] = ACTIONS(6358), - [aux_sym_select_rank_statement_token2] = ACTIONS(6358), - [aux_sym_block_construct_token1] = ACTIONS(6358), - [aux_sym_associate_statement_token1] = ACTIONS(6358), - [aux_sym_format_statement_token1] = ACTIONS(6358), - [aux_sym_print_statement_token1] = ACTIONS(6358), - [aux_sym_open_statement_token1] = ACTIONS(6358), - [aux_sym_close_statement_token1] = ACTIONS(6358), - [aux_sym_inquire_statement_token1] = ACTIONS(6358), - [aux_sym_file_position_statement_token1] = ACTIONS(6358), - [aux_sym_file_position_statement_token2] = ACTIONS(6358), - [aux_sym_file_position_statement_token3] = ACTIONS(6358), - [aux_sym_file_position_statement_token4] = ACTIONS(6358), - [aux_sym_allocate_statement_token1] = ACTIONS(6358), - [aux_sym_entry_statement_token1] = ACTIONS(6358), - [aux_sym_logical_expression_token5] = ACTIONS(6360), - [anon_sym_DOT] = ACTIONS(6358), - [anon_sym_LPAREN_SLASH] = ACTIONS(6360), - [anon_sym_LBRACK] = ACTIONS(6360), - [aux_sym_boolean_literal_token1] = ACTIONS(6360), - [aux_sym_boolean_literal_token2] = ACTIONS(6360), - [aux_sym_null_literal_token1] = ACTIONS(6358), - [aux_sym_coarray_statement_token1] = ACTIONS(6358), - [aux_sym_coarray_statement_token2] = ACTIONS(6358), - [aux_sym_coarray_statement_token6] = ACTIONS(6358), - [aux_sym_coarray_statement_token8] = ACTIONS(6358), - [aux_sym_coarray_statement_token11] = ACTIONS(6358), - [aux_sym_coarray_statement_token12] = ACTIONS(6358), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6358), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6358), - [aux_sym_identifier_token1] = ACTIONS(6358), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6360), - [sym__float_literal] = ACTIONS(6360), - [sym__boz_literal] = ACTIONS(6360), - [sym__string_literal] = ACTIONS(6360), - [sym__string_literal_kind] = ACTIONS(6360), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2331] = { - [aux_sym_preproc_include_token1] = ACTIONS(6450), - [aux_sym_preproc_def_token1] = ACTIONS(6450), - [aux_sym_preproc_if_token1] = ACTIONS(6450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6450), - [sym_preproc_directive] = ACTIONS(6450), - [anon_sym_LPAREN2] = ACTIONS(6450), - [anon_sym_PLUS] = ACTIONS(6452), - [anon_sym_DASH] = ACTIONS(6452), + [2276] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6450), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6450), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6450), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6450), - [aux_sym_procedure_attributes_token3] = ACTIONS(6450), - [aux_sym_contains_statement_token1] = ACTIONS(6450), - [aux_sym_use_statement_token2] = ACTIONS(6450), - [aux_sym_implicit_statement_token4] = ACTIONS(6450), - [aux_sym_save_statement_token1] = ACTIONS(6450), - [aux_sym_private_statement_token1] = ACTIONS(6450), - [aux_sym_public_statement_token1] = ACTIONS(6450), - [aux_sym_derived_type_definition_token1] = ACTIONS(6450), - [aux_sym_procedure_attribute_token6] = ACTIONS(6450), - [aux_sym_variable_attributes_token2] = ACTIONS(6450), - [aux_sym_variable_attributes_token3] = ACTIONS(6450), - [aux_sym_variable_attributes_token5] = ACTIONS(6450), - [aux_sym__intrinsic_type_token1] = ACTIONS(6450), - [aux_sym__intrinsic_type_token3] = ACTIONS(6450), - [aux_sym__intrinsic_type_token4] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6450), - [aux_sym_type_qualifier_token1] = ACTIONS(6450), - [aux_sym_type_qualifier_token2] = ACTIONS(6450), - [anon_sym_SEMI] = ACTIONS(6452), - [aux_sym_stop_statement_token1] = ACTIONS(6450), - [aux_sym_stop_statement_token2] = ACTIONS(6450), - [aux_sym_subroutine_call_token1] = ACTIONS(6450), - [aux_sym_keyword_statement_token1] = ACTIONS(6450), - [aux_sym_keyword_statement_token2] = ACTIONS(6450), - [aux_sym_keyword_statement_token3] = ACTIONS(6450), - [aux_sym_keyword_statement_token4] = ACTIONS(6450), - [aux_sym_keyword_statement_token6] = ACTIONS(6450), - [aux_sym_keyword_statement_token7] = ACTIONS(6450), - [aux_sym_include_statement_token1] = ACTIONS(6450), - [aux_sym_data_statement_token1] = ACTIONS(6450), - [aux_sym_do_loop_statement_token1] = ACTIONS(6450), - [aux_sym__inline_if_statement_token1] = ACTIONS(6450), - [aux_sym_end_if_statement_token1] = ACTIONS(6450), - [aux_sym_elseif_clause_token2] = ACTIONS(6450), - [aux_sym__inline_where_statement_token1] = ACTIONS(6450), - [aux_sym__forall_control_expression_token1] = ACTIONS(6450), - [aux_sym_select_case_statement_token1] = ACTIONS(6450), - [aux_sym_select_case_statement_token3] = ACTIONS(6450), - [aux_sym_select_type_statement_token1] = ACTIONS(6450), - [aux_sym_select_rank_statement_token2] = ACTIONS(6450), - [aux_sym_block_construct_token1] = ACTIONS(6450), - [aux_sym_associate_statement_token1] = ACTIONS(6450), - [aux_sym_format_statement_token1] = ACTIONS(6450), - [aux_sym_print_statement_token1] = ACTIONS(6450), - [aux_sym_open_statement_token1] = ACTIONS(6450), - [aux_sym_close_statement_token1] = ACTIONS(6450), - [aux_sym_inquire_statement_token1] = ACTIONS(6450), - [aux_sym_file_position_statement_token1] = ACTIONS(6450), - [aux_sym_file_position_statement_token2] = ACTIONS(6450), - [aux_sym_file_position_statement_token3] = ACTIONS(6450), - [aux_sym_file_position_statement_token4] = ACTIONS(6450), - [aux_sym_allocate_statement_token1] = ACTIONS(6450), - [aux_sym_entry_statement_token1] = ACTIONS(6450), - [aux_sym_logical_expression_token5] = ACTIONS(6452), - [anon_sym_DOT] = ACTIONS(6450), - [anon_sym_LPAREN_SLASH] = ACTIONS(6452), - [anon_sym_LBRACK] = ACTIONS(6452), - [aux_sym_boolean_literal_token1] = ACTIONS(6452), - [aux_sym_boolean_literal_token2] = ACTIONS(6452), - [aux_sym_null_literal_token1] = ACTIONS(6450), - [aux_sym_coarray_statement_token1] = ACTIONS(6450), - [aux_sym_coarray_statement_token2] = ACTIONS(6450), - [aux_sym_coarray_statement_token6] = ACTIONS(6450), - [aux_sym_coarray_statement_token8] = ACTIONS(6450), - [aux_sym_coarray_statement_token11] = ACTIONS(6450), - [aux_sym_coarray_statement_token12] = ACTIONS(6450), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6450), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6450), - [aux_sym_identifier_token1] = ACTIONS(6450), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6452), - [sym__float_literal] = ACTIONS(6452), - [sym__boz_literal] = ACTIONS(6452), - [sym__string_literal] = ACTIONS(6452), - [sym__string_literal_kind] = ACTIONS(6452), - }, - [2332] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [2333] = { - [aux_sym_preproc_include_token1] = ACTIONS(6364), - [aux_sym_preproc_def_token1] = ACTIONS(6364), - [aux_sym_preproc_if_token1] = ACTIONS(6364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6364), - [sym_preproc_directive] = ACTIONS(6364), - [anon_sym_LPAREN2] = ACTIONS(6364), - [anon_sym_PLUS] = ACTIONS(6366), - [anon_sym_DASH] = ACTIONS(6366), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6364), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6364), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6364), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6364), - [aux_sym_procedure_attributes_token3] = ACTIONS(6364), - [aux_sym_contains_statement_token1] = ACTIONS(6364), - [aux_sym_use_statement_token2] = ACTIONS(6364), - [aux_sym_implicit_statement_token4] = ACTIONS(6364), - [aux_sym_save_statement_token1] = ACTIONS(6364), - [aux_sym_private_statement_token1] = ACTIONS(6364), - [aux_sym_public_statement_token1] = ACTIONS(6364), - [aux_sym_derived_type_definition_token1] = ACTIONS(6364), - [aux_sym_procedure_attribute_token6] = ACTIONS(6364), - [aux_sym_variable_attributes_token2] = ACTIONS(6364), - [aux_sym_variable_attributes_token3] = ACTIONS(6364), - [aux_sym_variable_attributes_token5] = ACTIONS(6364), - [aux_sym__intrinsic_type_token1] = ACTIONS(6364), - [aux_sym__intrinsic_type_token3] = ACTIONS(6364), - [aux_sym__intrinsic_type_token4] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6364), - [aux_sym_type_qualifier_token1] = ACTIONS(6364), - [aux_sym_type_qualifier_token2] = ACTIONS(6364), - [anon_sym_SEMI] = ACTIONS(6366), - [aux_sym_stop_statement_token1] = ACTIONS(6364), - [aux_sym_stop_statement_token2] = ACTIONS(6364), - [aux_sym_subroutine_call_token1] = ACTIONS(6364), - [aux_sym_keyword_statement_token1] = ACTIONS(6364), - [aux_sym_keyword_statement_token2] = ACTIONS(6364), - [aux_sym_keyword_statement_token3] = ACTIONS(6364), - [aux_sym_keyword_statement_token4] = ACTIONS(6364), - [aux_sym_keyword_statement_token6] = ACTIONS(6364), - [aux_sym_keyword_statement_token7] = ACTIONS(6364), - [aux_sym_include_statement_token1] = ACTIONS(6364), - [aux_sym_data_statement_token1] = ACTIONS(6364), - [aux_sym_do_loop_statement_token1] = ACTIONS(6364), - [aux_sym__inline_if_statement_token1] = ACTIONS(6364), - [aux_sym_end_if_statement_token1] = ACTIONS(6364), - [aux_sym_elseif_clause_token2] = ACTIONS(6364), - [aux_sym__inline_where_statement_token1] = ACTIONS(6364), - [aux_sym__forall_control_expression_token1] = ACTIONS(6364), - [aux_sym_select_case_statement_token1] = ACTIONS(6364), - [aux_sym_select_case_statement_token3] = ACTIONS(6364), - [aux_sym_select_type_statement_token1] = ACTIONS(6364), - [aux_sym_select_rank_statement_token2] = ACTIONS(6364), - [aux_sym_block_construct_token1] = ACTIONS(6364), - [aux_sym_associate_statement_token1] = ACTIONS(6364), - [aux_sym_format_statement_token1] = ACTIONS(6364), - [aux_sym_print_statement_token1] = ACTIONS(6364), - [aux_sym_open_statement_token1] = ACTIONS(6364), - [aux_sym_close_statement_token1] = ACTIONS(6364), - [aux_sym_inquire_statement_token1] = ACTIONS(6364), - [aux_sym_file_position_statement_token1] = ACTIONS(6364), - [aux_sym_file_position_statement_token2] = ACTIONS(6364), - [aux_sym_file_position_statement_token3] = ACTIONS(6364), - [aux_sym_file_position_statement_token4] = ACTIONS(6364), - [aux_sym_allocate_statement_token1] = ACTIONS(6364), - [aux_sym_entry_statement_token1] = ACTIONS(6364), - [aux_sym_logical_expression_token5] = ACTIONS(6366), - [anon_sym_DOT] = ACTIONS(6364), - [anon_sym_LPAREN_SLASH] = ACTIONS(6366), - [anon_sym_LBRACK] = ACTIONS(6366), - [aux_sym_boolean_literal_token1] = ACTIONS(6366), - [aux_sym_boolean_literal_token2] = ACTIONS(6366), - [aux_sym_null_literal_token1] = ACTIONS(6364), - [aux_sym_coarray_statement_token1] = ACTIONS(6364), - [aux_sym_coarray_statement_token2] = ACTIONS(6364), - [aux_sym_coarray_statement_token6] = ACTIONS(6364), - [aux_sym_coarray_statement_token8] = ACTIONS(6364), - [aux_sym_coarray_statement_token11] = ACTIONS(6364), - [aux_sym_coarray_statement_token12] = ACTIONS(6364), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6364), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6364), - [aux_sym_identifier_token1] = ACTIONS(6364), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6366), - [sym__float_literal] = ACTIONS(6366), - [sym__boz_literal] = ACTIONS(6366), - [sym__string_literal] = ACTIONS(6366), - [sym__string_literal_kind] = ACTIONS(6366), - }, - [2334] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_contains_statement_token1] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [2335] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token2] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_contains_statement_token1] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), - }, - [2336] = { - [aux_sym_preproc_include_token1] = ACTIONS(6060), - [aux_sym_preproc_def_token1] = ACTIONS(6060), - [aux_sym_preproc_if_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6060), - [sym_preproc_directive] = ACTIONS(6060), - [anon_sym_LPAREN2] = ACTIONS(6060), - [anon_sym_PLUS] = ACTIONS(6064), - [anon_sym_DASH] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6060), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6060), - [aux_sym_procedure_attributes_token3] = ACTIONS(6060), - [aux_sym_contains_statement_token1] = ACTIONS(6060), - [aux_sym_use_statement_token2] = ACTIONS(6060), - [aux_sym_implicit_statement_token4] = ACTIONS(6060), - [aux_sym_save_statement_token1] = ACTIONS(6060), - [aux_sym_private_statement_token1] = ACTIONS(6060), - [aux_sym_public_statement_token1] = ACTIONS(6060), - [aux_sym_derived_type_definition_token1] = ACTIONS(6060), - [aux_sym_procedure_attribute_token6] = ACTIONS(6060), - [aux_sym_variable_attributes_token2] = ACTIONS(6060), - [aux_sym_variable_attributes_token3] = ACTIONS(6060), - [aux_sym_variable_attributes_token5] = ACTIONS(6060), - [aux_sym__intrinsic_type_token1] = ACTIONS(6060), - [aux_sym__intrinsic_type_token3] = ACTIONS(6060), - [aux_sym__intrinsic_type_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6060), - [aux_sym_type_qualifier_token1] = ACTIONS(6060), - [aux_sym_type_qualifier_token2] = ACTIONS(6060), - [anon_sym_SEMI] = ACTIONS(6064), - [aux_sym_stop_statement_token1] = ACTIONS(6060), - [aux_sym_stop_statement_token2] = ACTIONS(6060), - [aux_sym_subroutine_call_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token2] = ACTIONS(6060), - [aux_sym_keyword_statement_token3] = ACTIONS(6060), - [aux_sym_keyword_statement_token4] = ACTIONS(6060), - [aux_sym_keyword_statement_token6] = ACTIONS(6060), - [aux_sym_keyword_statement_token7] = ACTIONS(6060), - [aux_sym_include_statement_token1] = ACTIONS(6060), - [aux_sym_data_statement_token1] = ACTIONS(6060), - [aux_sym_do_loop_statement_token1] = ACTIONS(6060), - [aux_sym__inline_if_statement_token1] = ACTIONS(6060), - [aux_sym_end_if_statement_token1] = ACTIONS(6060), - [aux_sym_elseif_clause_token2] = ACTIONS(6060), - [aux_sym__inline_where_statement_token1] = ACTIONS(6060), - [aux_sym__forall_control_expression_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token3] = ACTIONS(6060), - [aux_sym_select_type_statement_token1] = ACTIONS(6060), - [aux_sym_select_rank_statement_token2] = ACTIONS(6060), - [aux_sym_block_construct_token1] = ACTIONS(6060), - [aux_sym_associate_statement_token1] = ACTIONS(6060), - [aux_sym_format_statement_token1] = ACTIONS(6060), - [aux_sym_print_statement_token1] = ACTIONS(6060), - [aux_sym_open_statement_token1] = ACTIONS(6060), - [aux_sym_close_statement_token1] = ACTIONS(6060), - [aux_sym_inquire_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token2] = ACTIONS(6060), - [aux_sym_file_position_statement_token3] = ACTIONS(6060), - [aux_sym_file_position_statement_token4] = ACTIONS(6060), - [aux_sym_allocate_statement_token1] = ACTIONS(6060), - [aux_sym_entry_statement_token1] = ACTIONS(6060), - [aux_sym_logical_expression_token5] = ACTIONS(6064), - [anon_sym_DOT] = ACTIONS(6060), - [anon_sym_LPAREN_SLASH] = ACTIONS(6064), - [anon_sym_LBRACK] = ACTIONS(6064), - [aux_sym_boolean_literal_token1] = ACTIONS(6064), - [aux_sym_boolean_literal_token2] = ACTIONS(6064), - [aux_sym_null_literal_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token2] = ACTIONS(6060), - [aux_sym_coarray_statement_token6] = ACTIONS(6060), - [aux_sym_coarray_statement_token8] = ACTIONS(6060), - [aux_sym_coarray_statement_token11] = ACTIONS(6060), - [aux_sym_coarray_statement_token12] = ACTIONS(6060), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6060), - [aux_sym_identifier_token1] = ACTIONS(6060), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6064), - [sym__float_literal] = ACTIONS(6064), - [sym__boz_literal] = ACTIONS(6064), - [sym__string_literal] = ACTIONS(6064), - [sym__string_literal_kind] = ACTIONS(6064), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2337] = { - [aux_sym_preproc_include_token1] = ACTIONS(6454), - [aux_sym_preproc_def_token1] = ACTIONS(6454), - [aux_sym_preproc_if_token1] = ACTIONS(6454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6454), - [sym_preproc_directive] = ACTIONS(6454), - [anon_sym_LPAREN2] = ACTIONS(6454), - [anon_sym_PLUS] = ACTIONS(6456), - [anon_sym_DASH] = ACTIONS(6456), + [2277] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6454), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6454), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6454), - [aux_sym_procedure_attributes_token3] = ACTIONS(6454), - [aux_sym_contains_statement_token1] = ACTIONS(6454), - [aux_sym_use_statement_token2] = ACTIONS(6454), - [aux_sym_implicit_statement_token4] = ACTIONS(6454), - [aux_sym_save_statement_token1] = ACTIONS(6454), - [aux_sym_private_statement_token1] = ACTIONS(6454), - [aux_sym_public_statement_token1] = ACTIONS(6454), - [aux_sym_derived_type_definition_token1] = ACTIONS(6454), - [aux_sym_procedure_attribute_token6] = ACTIONS(6454), - [aux_sym_variable_attributes_token2] = ACTIONS(6454), - [aux_sym_variable_attributes_token3] = ACTIONS(6454), - [aux_sym_variable_attributes_token5] = ACTIONS(6454), - [aux_sym__intrinsic_type_token1] = ACTIONS(6454), - [aux_sym__intrinsic_type_token3] = ACTIONS(6454), - [aux_sym__intrinsic_type_token4] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6454), - [aux_sym_type_qualifier_token1] = ACTIONS(6454), - [aux_sym_type_qualifier_token2] = ACTIONS(6454), - [anon_sym_SEMI] = ACTIONS(6456), - [aux_sym_stop_statement_token1] = ACTIONS(6454), - [aux_sym_stop_statement_token2] = ACTIONS(6454), - [aux_sym_subroutine_call_token1] = ACTIONS(6454), - [aux_sym_keyword_statement_token1] = ACTIONS(6454), - [aux_sym_keyword_statement_token2] = ACTIONS(6454), - [aux_sym_keyword_statement_token3] = ACTIONS(6454), - [aux_sym_keyword_statement_token4] = ACTIONS(6454), - [aux_sym_keyword_statement_token6] = ACTIONS(6454), - [aux_sym_keyword_statement_token7] = ACTIONS(6454), - [aux_sym_include_statement_token1] = ACTIONS(6454), - [aux_sym_data_statement_token1] = ACTIONS(6454), - [aux_sym_do_loop_statement_token1] = ACTIONS(6454), - [aux_sym__inline_if_statement_token1] = ACTIONS(6454), - [aux_sym_end_if_statement_token1] = ACTIONS(6454), - [aux_sym_elseif_clause_token2] = ACTIONS(6454), - [aux_sym__inline_where_statement_token1] = ACTIONS(6454), - [aux_sym__forall_control_expression_token1] = ACTIONS(6454), - [aux_sym_select_case_statement_token1] = ACTIONS(6454), - [aux_sym_select_case_statement_token3] = ACTIONS(6454), - [aux_sym_select_type_statement_token1] = ACTIONS(6454), - [aux_sym_select_rank_statement_token2] = ACTIONS(6454), - [aux_sym_block_construct_token1] = ACTIONS(6454), - [aux_sym_associate_statement_token1] = ACTIONS(6454), - [aux_sym_format_statement_token1] = ACTIONS(6454), - [aux_sym_print_statement_token1] = ACTIONS(6454), - [aux_sym_open_statement_token1] = ACTIONS(6454), - [aux_sym_close_statement_token1] = ACTIONS(6454), - [aux_sym_inquire_statement_token1] = ACTIONS(6454), - [aux_sym_file_position_statement_token1] = ACTIONS(6454), - [aux_sym_file_position_statement_token2] = ACTIONS(6454), - [aux_sym_file_position_statement_token3] = ACTIONS(6454), - [aux_sym_file_position_statement_token4] = ACTIONS(6454), - [aux_sym_allocate_statement_token1] = ACTIONS(6454), - [aux_sym_entry_statement_token1] = ACTIONS(6454), - [aux_sym_logical_expression_token5] = ACTIONS(6456), - [anon_sym_DOT] = ACTIONS(6454), - [anon_sym_LPAREN_SLASH] = ACTIONS(6456), - [anon_sym_LBRACK] = ACTIONS(6456), - [aux_sym_boolean_literal_token1] = ACTIONS(6456), - [aux_sym_boolean_literal_token2] = ACTIONS(6456), - [aux_sym_null_literal_token1] = ACTIONS(6454), - [aux_sym_coarray_statement_token1] = ACTIONS(6454), - [aux_sym_coarray_statement_token2] = ACTIONS(6454), - [aux_sym_coarray_statement_token6] = ACTIONS(6454), - [aux_sym_coarray_statement_token8] = ACTIONS(6454), - [aux_sym_coarray_statement_token11] = ACTIONS(6454), - [aux_sym_coarray_statement_token12] = ACTIONS(6454), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6454), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6454), - [aux_sym_identifier_token1] = ACTIONS(6454), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6456), - [sym__float_literal] = ACTIONS(6456), - [sym__boz_literal] = ACTIONS(6456), - [sym__string_literal] = ACTIONS(6456), - [sym__string_literal_kind] = ACTIONS(6456), - }, - [2338] = { - [aux_sym_preproc_include_token1] = ACTIONS(6066), - [aux_sym_preproc_def_token1] = ACTIONS(6066), - [aux_sym_preproc_if_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6066), - [sym_preproc_directive] = ACTIONS(6066), - [anon_sym_LPAREN2] = ACTIONS(6066), - [anon_sym_PLUS] = ACTIONS(6070), - [anon_sym_DASH] = ACTIONS(6070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6066), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6066), - [aux_sym_procedure_attributes_token3] = ACTIONS(6066), - [aux_sym_contains_statement_token1] = ACTIONS(6066), - [aux_sym_use_statement_token2] = ACTIONS(6066), - [aux_sym_implicit_statement_token4] = ACTIONS(6066), - [aux_sym_save_statement_token1] = ACTIONS(6066), - [aux_sym_private_statement_token1] = ACTIONS(6066), - [aux_sym_public_statement_token1] = ACTIONS(6066), - [aux_sym_derived_type_definition_token1] = ACTIONS(6066), - [aux_sym_procedure_attribute_token6] = ACTIONS(6066), - [aux_sym_variable_attributes_token2] = ACTIONS(6066), - [aux_sym_variable_attributes_token3] = ACTIONS(6066), - [aux_sym_variable_attributes_token5] = ACTIONS(6066), - [aux_sym__intrinsic_type_token1] = ACTIONS(6066), - [aux_sym__intrinsic_type_token3] = ACTIONS(6066), - [aux_sym__intrinsic_type_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6066), - [aux_sym_type_qualifier_token1] = ACTIONS(6066), - [aux_sym_type_qualifier_token2] = ACTIONS(6066), - [anon_sym_SEMI] = ACTIONS(6070), - [aux_sym_stop_statement_token1] = ACTIONS(6066), - [aux_sym_stop_statement_token2] = ACTIONS(6066), - [aux_sym_subroutine_call_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token2] = ACTIONS(6066), - [aux_sym_keyword_statement_token3] = ACTIONS(6066), - [aux_sym_keyword_statement_token4] = ACTIONS(6066), - [aux_sym_keyword_statement_token6] = ACTIONS(6066), - [aux_sym_keyword_statement_token7] = ACTIONS(6066), - [aux_sym_include_statement_token1] = ACTIONS(6066), - [aux_sym_data_statement_token1] = ACTIONS(6066), - [aux_sym_do_loop_statement_token1] = ACTIONS(6066), - [aux_sym__inline_if_statement_token1] = ACTIONS(6066), - [aux_sym_end_if_statement_token1] = ACTIONS(6066), - [aux_sym_elseif_clause_token2] = ACTIONS(6066), - [aux_sym__inline_where_statement_token1] = ACTIONS(6066), - [aux_sym__forall_control_expression_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token3] = ACTIONS(6066), - [aux_sym_select_type_statement_token1] = ACTIONS(6066), - [aux_sym_select_rank_statement_token2] = ACTIONS(6066), - [aux_sym_block_construct_token1] = ACTIONS(6066), - [aux_sym_associate_statement_token1] = ACTIONS(6066), - [aux_sym_format_statement_token1] = ACTIONS(6066), - [aux_sym_print_statement_token1] = ACTIONS(6066), - [aux_sym_open_statement_token1] = ACTIONS(6066), - [aux_sym_close_statement_token1] = ACTIONS(6066), - [aux_sym_inquire_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token2] = ACTIONS(6066), - [aux_sym_file_position_statement_token3] = ACTIONS(6066), - [aux_sym_file_position_statement_token4] = ACTIONS(6066), - [aux_sym_allocate_statement_token1] = ACTIONS(6066), - [aux_sym_entry_statement_token1] = ACTIONS(6066), - [aux_sym_logical_expression_token5] = ACTIONS(6070), - [anon_sym_DOT] = ACTIONS(6066), - [anon_sym_LPAREN_SLASH] = ACTIONS(6070), - [anon_sym_LBRACK] = ACTIONS(6070), - [aux_sym_boolean_literal_token1] = ACTIONS(6070), - [aux_sym_boolean_literal_token2] = ACTIONS(6070), - [aux_sym_null_literal_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token2] = ACTIONS(6066), - [aux_sym_coarray_statement_token6] = ACTIONS(6066), - [aux_sym_coarray_statement_token8] = ACTIONS(6066), - [aux_sym_coarray_statement_token11] = ACTIONS(6066), - [aux_sym_coarray_statement_token12] = ACTIONS(6066), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6066), - [aux_sym_identifier_token1] = ACTIONS(6066), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6070), - [sym__float_literal] = ACTIONS(6070), - [sym__boz_literal] = ACTIONS(6070), - [sym__string_literal] = ACTIONS(6070), - [sym__string_literal_kind] = ACTIONS(6070), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2339] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token2] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [2278] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_contains_statement_token1] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), - }, - [2340] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6506), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2341] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), + [2279] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_end_program_statement_token2] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_contains_statement_token1] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), - }, - [2342] = { - [aux_sym_preproc_include_token1] = ACTIONS(6402), - [aux_sym_preproc_def_token1] = ACTIONS(6402), - [aux_sym_preproc_if_token1] = ACTIONS(6402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6402), - [sym_preproc_directive] = ACTIONS(6402), - [anon_sym_LPAREN2] = ACTIONS(6402), - [anon_sym_PLUS] = ACTIONS(6404), - [anon_sym_DASH] = ACTIONS(6404), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6402), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6402), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6402), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6402), - [aux_sym_procedure_attributes_token3] = ACTIONS(6402), - [aux_sym_contains_statement_token1] = ACTIONS(6402), - [aux_sym_use_statement_token2] = ACTIONS(6402), - [aux_sym_implicit_statement_token4] = ACTIONS(6402), - [aux_sym_save_statement_token1] = ACTIONS(6402), - [aux_sym_private_statement_token1] = ACTIONS(6402), - [aux_sym_public_statement_token1] = ACTIONS(6402), - [aux_sym_derived_type_definition_token1] = ACTIONS(6402), - [aux_sym_procedure_attribute_token6] = ACTIONS(6402), - [aux_sym_variable_attributes_token2] = ACTIONS(6402), - [aux_sym_variable_attributes_token3] = ACTIONS(6402), - [aux_sym_variable_attributes_token5] = ACTIONS(6402), - [aux_sym__intrinsic_type_token1] = ACTIONS(6402), - [aux_sym__intrinsic_type_token3] = ACTIONS(6402), - [aux_sym__intrinsic_type_token4] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6402), - [aux_sym_type_qualifier_token1] = ACTIONS(6402), - [aux_sym_type_qualifier_token2] = ACTIONS(6402), - [anon_sym_SEMI] = ACTIONS(6404), - [aux_sym_stop_statement_token1] = ACTIONS(6402), - [aux_sym_stop_statement_token2] = ACTIONS(6402), - [aux_sym_subroutine_call_token1] = ACTIONS(6402), - [aux_sym_keyword_statement_token1] = ACTIONS(6402), - [aux_sym_keyword_statement_token2] = ACTIONS(6402), - [aux_sym_keyword_statement_token3] = ACTIONS(6402), - [aux_sym_keyword_statement_token4] = ACTIONS(6402), - [aux_sym_keyword_statement_token6] = ACTIONS(6402), - [aux_sym_keyword_statement_token7] = ACTIONS(6402), - [aux_sym_include_statement_token1] = ACTIONS(6402), - [aux_sym_data_statement_token1] = ACTIONS(6402), - [aux_sym_do_loop_statement_token1] = ACTIONS(6402), - [aux_sym__inline_if_statement_token1] = ACTIONS(6402), - [aux_sym_end_if_statement_token1] = ACTIONS(6402), - [aux_sym_elseif_clause_token2] = ACTIONS(6402), - [aux_sym__inline_where_statement_token1] = ACTIONS(6402), - [aux_sym__forall_control_expression_token1] = ACTIONS(6402), - [aux_sym_select_case_statement_token1] = ACTIONS(6402), - [aux_sym_select_case_statement_token3] = ACTIONS(6402), - [aux_sym_select_type_statement_token1] = ACTIONS(6402), - [aux_sym_select_rank_statement_token2] = ACTIONS(6402), - [aux_sym_block_construct_token1] = ACTIONS(6402), - [aux_sym_associate_statement_token1] = ACTIONS(6402), - [aux_sym_format_statement_token1] = ACTIONS(6402), - [aux_sym_print_statement_token1] = ACTIONS(6402), - [aux_sym_open_statement_token1] = ACTIONS(6402), - [aux_sym_close_statement_token1] = ACTIONS(6402), - [aux_sym_inquire_statement_token1] = ACTIONS(6402), - [aux_sym_file_position_statement_token1] = ACTIONS(6402), - [aux_sym_file_position_statement_token2] = ACTIONS(6402), - [aux_sym_file_position_statement_token3] = ACTIONS(6402), - [aux_sym_file_position_statement_token4] = ACTIONS(6402), - [aux_sym_allocate_statement_token1] = ACTIONS(6402), - [aux_sym_entry_statement_token1] = ACTIONS(6402), - [aux_sym_logical_expression_token5] = ACTIONS(6404), - [anon_sym_DOT] = ACTIONS(6402), - [anon_sym_LPAREN_SLASH] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(6404), - [aux_sym_boolean_literal_token1] = ACTIONS(6404), - [aux_sym_boolean_literal_token2] = ACTIONS(6404), - [aux_sym_null_literal_token1] = ACTIONS(6402), - [aux_sym_coarray_statement_token1] = ACTIONS(6402), - [aux_sym_coarray_statement_token2] = ACTIONS(6402), - [aux_sym_coarray_statement_token6] = ACTIONS(6402), - [aux_sym_coarray_statement_token8] = ACTIONS(6402), - [aux_sym_coarray_statement_token11] = ACTIONS(6402), - [aux_sym_coarray_statement_token12] = ACTIONS(6402), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6402), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6402), - [aux_sym_identifier_token1] = ACTIONS(6402), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6404), - [sym__float_literal] = ACTIONS(6404), - [sym__boz_literal] = ACTIONS(6404), - [sym__string_literal] = ACTIONS(6404), - [sym__string_literal_kind] = ACTIONS(6404), - }, - [2343] = { - [aux_sym_preproc_include_token1] = ACTIONS(6406), - [aux_sym_preproc_def_token1] = ACTIONS(6406), - [aux_sym_preproc_if_token1] = ACTIONS(6406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6406), - [sym_preproc_directive] = ACTIONS(6406), - [anon_sym_LPAREN2] = ACTIONS(6406), - [anon_sym_PLUS] = ACTIONS(6408), - [anon_sym_DASH] = ACTIONS(6408), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6406), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6406), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6406), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6406), - [aux_sym_procedure_attributes_token3] = ACTIONS(6406), - [aux_sym_contains_statement_token1] = ACTIONS(6406), - [aux_sym_use_statement_token2] = ACTIONS(6406), - [aux_sym_implicit_statement_token4] = ACTIONS(6406), - [aux_sym_save_statement_token1] = ACTIONS(6406), - [aux_sym_private_statement_token1] = ACTIONS(6406), - [aux_sym_public_statement_token1] = ACTIONS(6406), - [aux_sym_derived_type_definition_token1] = ACTIONS(6406), - [aux_sym_procedure_attribute_token6] = ACTIONS(6406), - [aux_sym_variable_attributes_token2] = ACTIONS(6406), - [aux_sym_variable_attributes_token3] = ACTIONS(6406), - [aux_sym_variable_attributes_token5] = ACTIONS(6406), - [aux_sym__intrinsic_type_token1] = ACTIONS(6406), - [aux_sym__intrinsic_type_token3] = ACTIONS(6406), - [aux_sym__intrinsic_type_token4] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6406), - [aux_sym_type_qualifier_token1] = ACTIONS(6406), - [aux_sym_type_qualifier_token2] = ACTIONS(6406), - [anon_sym_SEMI] = ACTIONS(6408), - [aux_sym_stop_statement_token1] = ACTIONS(6406), - [aux_sym_stop_statement_token2] = ACTIONS(6406), - [aux_sym_subroutine_call_token1] = ACTIONS(6406), - [aux_sym_keyword_statement_token1] = ACTIONS(6406), - [aux_sym_keyword_statement_token2] = ACTIONS(6406), - [aux_sym_keyword_statement_token3] = ACTIONS(6406), - [aux_sym_keyword_statement_token4] = ACTIONS(6406), - [aux_sym_keyword_statement_token6] = ACTIONS(6406), - [aux_sym_keyword_statement_token7] = ACTIONS(6406), - [aux_sym_include_statement_token1] = ACTIONS(6406), - [aux_sym_data_statement_token1] = ACTIONS(6406), - [aux_sym_do_loop_statement_token1] = ACTIONS(6406), - [aux_sym__inline_if_statement_token1] = ACTIONS(6406), - [aux_sym_end_if_statement_token1] = ACTIONS(6406), - [aux_sym_elseif_clause_token2] = ACTIONS(6406), - [aux_sym__inline_where_statement_token1] = ACTIONS(6406), - [aux_sym__forall_control_expression_token1] = ACTIONS(6406), - [aux_sym_select_case_statement_token1] = ACTIONS(6406), - [aux_sym_select_case_statement_token3] = ACTIONS(6406), - [aux_sym_select_type_statement_token1] = ACTIONS(6406), - [aux_sym_select_rank_statement_token2] = ACTIONS(6406), - [aux_sym_block_construct_token1] = ACTIONS(6406), - [aux_sym_associate_statement_token1] = ACTIONS(6406), - [aux_sym_format_statement_token1] = ACTIONS(6406), - [aux_sym_print_statement_token1] = ACTIONS(6406), - [aux_sym_open_statement_token1] = ACTIONS(6406), - [aux_sym_close_statement_token1] = ACTIONS(6406), - [aux_sym_inquire_statement_token1] = ACTIONS(6406), - [aux_sym_file_position_statement_token1] = ACTIONS(6406), - [aux_sym_file_position_statement_token2] = ACTIONS(6406), - [aux_sym_file_position_statement_token3] = ACTIONS(6406), - [aux_sym_file_position_statement_token4] = ACTIONS(6406), - [aux_sym_allocate_statement_token1] = ACTIONS(6406), - [aux_sym_entry_statement_token1] = ACTIONS(6406), - [aux_sym_logical_expression_token5] = ACTIONS(6408), - [anon_sym_DOT] = ACTIONS(6406), - [anon_sym_LPAREN_SLASH] = ACTIONS(6408), - [anon_sym_LBRACK] = ACTIONS(6408), - [aux_sym_boolean_literal_token1] = ACTIONS(6408), - [aux_sym_boolean_literal_token2] = ACTIONS(6408), - [aux_sym_null_literal_token1] = ACTIONS(6406), - [aux_sym_coarray_statement_token1] = ACTIONS(6406), - [aux_sym_coarray_statement_token2] = ACTIONS(6406), - [aux_sym_coarray_statement_token6] = ACTIONS(6406), - [aux_sym_coarray_statement_token8] = ACTIONS(6406), - [aux_sym_coarray_statement_token11] = ACTIONS(6406), - [aux_sym_coarray_statement_token12] = ACTIONS(6406), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6406), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6406), - [aux_sym_identifier_token1] = ACTIONS(6406), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6408), - [sym__float_literal] = ACTIONS(6408), - [sym__boz_literal] = ACTIONS(6408), - [sym__string_literal] = ACTIONS(6408), - [sym__string_literal_kind] = ACTIONS(6408), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2344] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2280] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_end_program_statement_token2] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_contains_statement_token1] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token2] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_end_select_statement_token1] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [2345] = { - [aux_sym_preproc_include_token1] = ACTIONS(6114), - [aux_sym_preproc_def_token1] = ACTIONS(6114), - [aux_sym_preproc_if_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6114), - [sym_preproc_directive] = ACTIONS(6114), - [anon_sym_LPAREN2] = ACTIONS(6114), - [anon_sym_PLUS] = ACTIONS(6118), - [anon_sym_DASH] = ACTIONS(6118), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6114), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6114), - [aux_sym_procedure_attributes_token3] = ACTIONS(6114), - [aux_sym_contains_statement_token1] = ACTIONS(6114), - [aux_sym_use_statement_token2] = ACTIONS(6114), - [aux_sym_implicit_statement_token4] = ACTIONS(6114), - [aux_sym_save_statement_token1] = ACTIONS(6114), - [aux_sym_private_statement_token1] = ACTIONS(6114), - [aux_sym_public_statement_token1] = ACTIONS(6114), - [aux_sym_derived_type_definition_token1] = ACTIONS(6114), - [aux_sym_procedure_attribute_token6] = ACTIONS(6114), - [aux_sym_variable_attributes_token2] = ACTIONS(6114), - [aux_sym_variable_attributes_token3] = ACTIONS(6114), - [aux_sym_variable_attributes_token5] = ACTIONS(6114), - [aux_sym__intrinsic_type_token1] = ACTIONS(6114), - [aux_sym__intrinsic_type_token3] = ACTIONS(6114), - [aux_sym__intrinsic_type_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6114), - [aux_sym_type_qualifier_token1] = ACTIONS(6114), - [aux_sym_type_qualifier_token2] = ACTIONS(6114), - [anon_sym_SEMI] = ACTIONS(6118), - [aux_sym_stop_statement_token1] = ACTIONS(6114), - [aux_sym_stop_statement_token2] = ACTIONS(6114), - [aux_sym_subroutine_call_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token2] = ACTIONS(6114), - [aux_sym_keyword_statement_token3] = ACTIONS(6114), - [aux_sym_keyword_statement_token4] = ACTIONS(6114), - [aux_sym_keyword_statement_token6] = ACTIONS(6114), - [aux_sym_keyword_statement_token7] = ACTIONS(6114), - [aux_sym_include_statement_token1] = ACTIONS(6114), - [aux_sym_data_statement_token1] = ACTIONS(6114), - [aux_sym_do_loop_statement_token1] = ACTIONS(6114), - [aux_sym__inline_if_statement_token1] = ACTIONS(6114), - [aux_sym_end_if_statement_token1] = ACTIONS(6114), - [aux_sym_elseif_clause_token2] = ACTIONS(6114), - [aux_sym__inline_where_statement_token1] = ACTIONS(6114), - [aux_sym__forall_control_expression_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token3] = ACTIONS(6114), - [aux_sym_select_type_statement_token1] = ACTIONS(6114), - [aux_sym_select_rank_statement_token2] = ACTIONS(6114), - [aux_sym_block_construct_token1] = ACTIONS(6114), - [aux_sym_associate_statement_token1] = ACTIONS(6114), - [aux_sym_format_statement_token1] = ACTIONS(6114), - [aux_sym_print_statement_token1] = ACTIONS(6114), - [aux_sym_open_statement_token1] = ACTIONS(6114), - [aux_sym_close_statement_token1] = ACTIONS(6114), - [aux_sym_inquire_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token2] = ACTIONS(6114), - [aux_sym_file_position_statement_token3] = ACTIONS(6114), - [aux_sym_file_position_statement_token4] = ACTIONS(6114), - [aux_sym_allocate_statement_token1] = ACTIONS(6114), - [aux_sym_entry_statement_token1] = ACTIONS(6114), - [aux_sym_logical_expression_token5] = ACTIONS(6118), - [anon_sym_DOT] = ACTIONS(6114), - [anon_sym_LPAREN_SLASH] = ACTIONS(6118), - [anon_sym_LBRACK] = ACTIONS(6118), - [aux_sym_boolean_literal_token1] = ACTIONS(6118), - [aux_sym_boolean_literal_token2] = ACTIONS(6118), - [aux_sym_null_literal_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token2] = ACTIONS(6114), - [aux_sym_coarray_statement_token6] = ACTIONS(6114), - [aux_sym_coarray_statement_token8] = ACTIONS(6114), - [aux_sym_coarray_statement_token11] = ACTIONS(6114), - [aux_sym_coarray_statement_token12] = ACTIONS(6114), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6114), - [aux_sym_identifier_token1] = ACTIONS(6114), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6118), - [sym__float_literal] = ACTIONS(6118), - [sym__boz_literal] = ACTIONS(6118), - [sym__string_literal] = ACTIONS(6118), - [sym__string_literal_kind] = ACTIONS(6118), - }, - [2346] = { - [aux_sym_preproc_include_token1] = ACTIONS(6034), - [aux_sym_preproc_def_token1] = ACTIONS(6034), - [aux_sym_preproc_if_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6034), - [sym_preproc_directive] = ACTIONS(6034), - [anon_sym_LPAREN2] = ACTIONS(6034), - [anon_sym_PLUS] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6038), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6034), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6034), - [aux_sym_procedure_attributes_token3] = ACTIONS(6034), - [aux_sym_contains_statement_token1] = ACTIONS(6034), - [aux_sym_use_statement_token2] = ACTIONS(6034), - [aux_sym_implicit_statement_token4] = ACTIONS(6034), - [aux_sym_save_statement_token1] = ACTIONS(6034), - [aux_sym_private_statement_token1] = ACTIONS(6034), - [aux_sym_public_statement_token1] = ACTIONS(6034), - [aux_sym_derived_type_definition_token1] = ACTIONS(6034), - [aux_sym_procedure_attribute_token6] = ACTIONS(6034), - [aux_sym_variable_attributes_token2] = ACTIONS(6034), - [aux_sym_variable_attributes_token3] = ACTIONS(6034), - [aux_sym_variable_attributes_token5] = ACTIONS(6034), - [aux_sym__intrinsic_type_token1] = ACTIONS(6034), - [aux_sym__intrinsic_type_token3] = ACTIONS(6034), - [aux_sym__intrinsic_type_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6034), - [aux_sym_type_qualifier_token1] = ACTIONS(6034), - [aux_sym_type_qualifier_token2] = ACTIONS(6034), - [anon_sym_SEMI] = ACTIONS(6038), - [aux_sym_stop_statement_token1] = ACTIONS(6034), - [aux_sym_stop_statement_token2] = ACTIONS(6034), - [aux_sym_subroutine_call_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token2] = ACTIONS(6034), - [aux_sym_keyword_statement_token3] = ACTIONS(6034), - [aux_sym_keyword_statement_token4] = ACTIONS(6034), - [aux_sym_keyword_statement_token6] = ACTIONS(6034), - [aux_sym_keyword_statement_token7] = ACTIONS(6034), - [aux_sym_include_statement_token1] = ACTIONS(6034), - [aux_sym_data_statement_token1] = ACTIONS(6034), - [aux_sym_do_loop_statement_token1] = ACTIONS(6034), - [aux_sym__inline_if_statement_token1] = ACTIONS(6034), - [aux_sym_end_if_statement_token1] = ACTIONS(6034), - [aux_sym_elseif_clause_token2] = ACTIONS(6034), - [aux_sym__inline_where_statement_token1] = ACTIONS(6034), - [aux_sym__forall_control_expression_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token3] = ACTIONS(6034), - [aux_sym_select_type_statement_token1] = ACTIONS(6034), - [aux_sym_select_rank_statement_token2] = ACTIONS(6034), - [aux_sym_block_construct_token1] = ACTIONS(6034), - [aux_sym_associate_statement_token1] = ACTIONS(6034), - [aux_sym_format_statement_token1] = ACTIONS(6034), - [aux_sym_print_statement_token1] = ACTIONS(6034), - [aux_sym_open_statement_token1] = ACTIONS(6034), - [aux_sym_close_statement_token1] = ACTIONS(6034), - [aux_sym_inquire_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token2] = ACTIONS(6034), - [aux_sym_file_position_statement_token3] = ACTIONS(6034), - [aux_sym_file_position_statement_token4] = ACTIONS(6034), - [aux_sym_allocate_statement_token1] = ACTIONS(6034), - [aux_sym_entry_statement_token1] = ACTIONS(6034), - [aux_sym_logical_expression_token5] = ACTIONS(6038), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_LPAREN_SLASH] = ACTIONS(6038), - [anon_sym_LBRACK] = ACTIONS(6038), - [aux_sym_boolean_literal_token1] = ACTIONS(6038), - [aux_sym_boolean_literal_token2] = ACTIONS(6038), - [aux_sym_null_literal_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token2] = ACTIONS(6034), - [aux_sym_coarray_statement_token6] = ACTIONS(6034), - [aux_sym_coarray_statement_token8] = ACTIONS(6034), - [aux_sym_coarray_statement_token11] = ACTIONS(6034), - [aux_sym_coarray_statement_token12] = ACTIONS(6034), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6034), - [aux_sym_identifier_token1] = ACTIONS(6034), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6038), - [sym__float_literal] = ACTIONS(6038), - [sym__boz_literal] = ACTIONS(6038), - [sym__string_literal] = ACTIONS(6038), - [sym__string_literal_kind] = ACTIONS(6038), - }, - [2347] = { - [aux_sym_preproc_include_token1] = ACTIONS(6442), - [aux_sym_preproc_def_token1] = ACTIONS(6442), - [aux_sym_preproc_if_token1] = ACTIONS(6442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6442), - [sym_preproc_directive] = ACTIONS(6442), - [anon_sym_LPAREN2] = ACTIONS(6442), - [anon_sym_PLUS] = ACTIONS(6444), - [anon_sym_DASH] = ACTIONS(6444), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6442), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6442), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6442), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6442), - [aux_sym_procedure_attributes_token3] = ACTIONS(6442), - [aux_sym_contains_statement_token1] = ACTIONS(6442), - [aux_sym_use_statement_token2] = ACTIONS(6442), - [aux_sym_implicit_statement_token4] = ACTIONS(6442), - [aux_sym_save_statement_token1] = ACTIONS(6442), - [aux_sym_private_statement_token1] = ACTIONS(6442), - [aux_sym_public_statement_token1] = ACTIONS(6442), - [aux_sym_derived_type_definition_token1] = ACTIONS(6442), - [aux_sym_procedure_attribute_token6] = ACTIONS(6442), - [aux_sym_variable_attributes_token2] = ACTIONS(6442), - [aux_sym_variable_attributes_token3] = ACTIONS(6442), - [aux_sym_variable_attributes_token5] = ACTIONS(6442), - [aux_sym__intrinsic_type_token1] = ACTIONS(6442), - [aux_sym__intrinsic_type_token3] = ACTIONS(6442), - [aux_sym__intrinsic_type_token4] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6442), - [aux_sym_type_qualifier_token1] = ACTIONS(6442), - [aux_sym_type_qualifier_token2] = ACTIONS(6442), - [anon_sym_SEMI] = ACTIONS(6444), - [aux_sym_stop_statement_token1] = ACTIONS(6442), - [aux_sym_stop_statement_token2] = ACTIONS(6442), - [aux_sym_subroutine_call_token1] = ACTIONS(6442), - [aux_sym_keyword_statement_token1] = ACTIONS(6442), - [aux_sym_keyword_statement_token2] = ACTIONS(6442), - [aux_sym_keyword_statement_token3] = ACTIONS(6442), - [aux_sym_keyword_statement_token4] = ACTIONS(6442), - [aux_sym_keyword_statement_token6] = ACTIONS(6442), - [aux_sym_keyword_statement_token7] = ACTIONS(6442), - [aux_sym_include_statement_token1] = ACTIONS(6442), - [aux_sym_data_statement_token1] = ACTIONS(6442), - [aux_sym_do_loop_statement_token1] = ACTIONS(6442), - [aux_sym__inline_if_statement_token1] = ACTIONS(6442), - [aux_sym_end_if_statement_token1] = ACTIONS(6442), - [aux_sym_elseif_clause_token2] = ACTIONS(6442), - [aux_sym__inline_where_statement_token1] = ACTIONS(6442), - [aux_sym__forall_control_expression_token1] = ACTIONS(6442), - [aux_sym_select_case_statement_token1] = ACTIONS(6442), - [aux_sym_select_case_statement_token3] = ACTIONS(6442), - [aux_sym_select_type_statement_token1] = ACTIONS(6442), - [aux_sym_select_rank_statement_token2] = ACTIONS(6442), - [aux_sym_block_construct_token1] = ACTIONS(6442), - [aux_sym_associate_statement_token1] = ACTIONS(6442), - [aux_sym_format_statement_token1] = ACTIONS(6442), - [aux_sym_print_statement_token1] = ACTIONS(6442), - [aux_sym_open_statement_token1] = ACTIONS(6442), - [aux_sym_close_statement_token1] = ACTIONS(6442), - [aux_sym_inquire_statement_token1] = ACTIONS(6442), - [aux_sym_file_position_statement_token1] = ACTIONS(6442), - [aux_sym_file_position_statement_token2] = ACTIONS(6442), - [aux_sym_file_position_statement_token3] = ACTIONS(6442), - [aux_sym_file_position_statement_token4] = ACTIONS(6442), - [aux_sym_allocate_statement_token1] = ACTIONS(6442), - [aux_sym_entry_statement_token1] = ACTIONS(6442), - [aux_sym_logical_expression_token5] = ACTIONS(6444), - [anon_sym_DOT] = ACTIONS(6442), - [anon_sym_LPAREN_SLASH] = ACTIONS(6444), - [anon_sym_LBRACK] = ACTIONS(6444), - [aux_sym_boolean_literal_token1] = ACTIONS(6444), - [aux_sym_boolean_literal_token2] = ACTIONS(6444), - [aux_sym_null_literal_token1] = ACTIONS(6442), - [aux_sym_coarray_statement_token1] = ACTIONS(6442), - [aux_sym_coarray_statement_token2] = ACTIONS(6442), - [aux_sym_coarray_statement_token6] = ACTIONS(6442), - [aux_sym_coarray_statement_token8] = ACTIONS(6442), - [aux_sym_coarray_statement_token11] = ACTIONS(6442), - [aux_sym_coarray_statement_token12] = ACTIONS(6442), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6442), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6442), - [aux_sym_identifier_token1] = ACTIONS(6442), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6444), - [sym__float_literal] = ACTIONS(6444), - [sym__boz_literal] = ACTIONS(6444), - [sym__string_literal] = ACTIONS(6444), - [sym__string_literal_kind] = ACTIONS(6444), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2348] = { - [aux_sym_preproc_include_token1] = ACTIONS(6446), - [aux_sym_preproc_def_token1] = ACTIONS(6446), - [aux_sym_preproc_if_token1] = ACTIONS(6446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6446), - [sym_preproc_directive] = ACTIONS(6446), - [anon_sym_LPAREN2] = ACTIONS(6446), - [anon_sym_PLUS] = ACTIONS(6448), - [anon_sym_DASH] = ACTIONS(6448), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6446), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6446), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6446), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6446), - [aux_sym_procedure_attributes_token3] = ACTIONS(6446), - [aux_sym_contains_statement_token1] = ACTIONS(6446), - [aux_sym_use_statement_token2] = ACTIONS(6446), - [aux_sym_implicit_statement_token4] = ACTIONS(6446), - [aux_sym_save_statement_token1] = ACTIONS(6446), - [aux_sym_private_statement_token1] = ACTIONS(6446), - [aux_sym_public_statement_token1] = ACTIONS(6446), - [aux_sym_derived_type_definition_token1] = ACTIONS(6446), - [aux_sym_procedure_attribute_token6] = ACTIONS(6446), - [aux_sym_variable_attributes_token2] = ACTIONS(6446), - [aux_sym_variable_attributes_token3] = ACTIONS(6446), - [aux_sym_variable_attributes_token5] = ACTIONS(6446), - [aux_sym__intrinsic_type_token1] = ACTIONS(6446), - [aux_sym__intrinsic_type_token3] = ACTIONS(6446), - [aux_sym__intrinsic_type_token4] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6446), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6446), - [aux_sym_type_qualifier_token1] = ACTIONS(6446), - [aux_sym_type_qualifier_token2] = ACTIONS(6446), - [anon_sym_SEMI] = ACTIONS(6448), - [aux_sym_stop_statement_token1] = ACTIONS(6446), - [aux_sym_stop_statement_token2] = ACTIONS(6446), - [aux_sym_subroutine_call_token1] = ACTIONS(6446), - [aux_sym_keyword_statement_token1] = ACTIONS(6446), - [aux_sym_keyword_statement_token2] = ACTIONS(6446), - [aux_sym_keyword_statement_token3] = ACTIONS(6446), - [aux_sym_keyword_statement_token4] = ACTIONS(6446), - [aux_sym_keyword_statement_token6] = ACTIONS(6446), - [aux_sym_keyword_statement_token7] = ACTIONS(6446), - [aux_sym_include_statement_token1] = ACTIONS(6446), - [aux_sym_data_statement_token1] = ACTIONS(6446), - [aux_sym_do_loop_statement_token1] = ACTIONS(6446), - [aux_sym__inline_if_statement_token1] = ACTIONS(6446), - [aux_sym_end_if_statement_token1] = ACTIONS(6446), - [aux_sym_elseif_clause_token2] = ACTIONS(6446), - [aux_sym__inline_where_statement_token1] = ACTIONS(6446), - [aux_sym__forall_control_expression_token1] = ACTIONS(6446), - [aux_sym_select_case_statement_token1] = ACTIONS(6446), - [aux_sym_select_case_statement_token3] = ACTIONS(6446), - [aux_sym_select_type_statement_token1] = ACTIONS(6446), - [aux_sym_select_rank_statement_token2] = ACTIONS(6446), - [aux_sym_block_construct_token1] = ACTIONS(6446), - [aux_sym_associate_statement_token1] = ACTIONS(6446), - [aux_sym_format_statement_token1] = ACTIONS(6446), - [aux_sym_print_statement_token1] = ACTIONS(6446), - [aux_sym_open_statement_token1] = ACTIONS(6446), - [aux_sym_close_statement_token1] = ACTIONS(6446), - [aux_sym_inquire_statement_token1] = ACTIONS(6446), - [aux_sym_file_position_statement_token1] = ACTIONS(6446), - [aux_sym_file_position_statement_token2] = ACTIONS(6446), - [aux_sym_file_position_statement_token3] = ACTIONS(6446), - [aux_sym_file_position_statement_token4] = ACTIONS(6446), - [aux_sym_allocate_statement_token1] = ACTIONS(6446), - [aux_sym_entry_statement_token1] = ACTIONS(6446), - [aux_sym_logical_expression_token5] = ACTIONS(6448), - [anon_sym_DOT] = ACTIONS(6446), - [anon_sym_LPAREN_SLASH] = ACTIONS(6448), - [anon_sym_LBRACK] = ACTIONS(6448), - [aux_sym_boolean_literal_token1] = ACTIONS(6448), - [aux_sym_boolean_literal_token2] = ACTIONS(6448), - [aux_sym_null_literal_token1] = ACTIONS(6446), - [aux_sym_coarray_statement_token1] = ACTIONS(6446), - [aux_sym_coarray_statement_token2] = ACTIONS(6446), - [aux_sym_coarray_statement_token6] = ACTIONS(6446), - [aux_sym_coarray_statement_token8] = ACTIONS(6446), - [aux_sym_coarray_statement_token11] = ACTIONS(6446), - [aux_sym_coarray_statement_token12] = ACTIONS(6446), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6446), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6446), - [aux_sym_identifier_token1] = ACTIONS(6446), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6448), - [sym__float_literal] = ACTIONS(6448), - [sym__boz_literal] = ACTIONS(6448), - [sym__string_literal] = ACTIONS(6448), - [sym__string_literal_kind] = ACTIONS(6448), + [2281] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token2] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_end_select_statement_token1] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2349] = { - [aux_sym_preproc_include_token1] = ACTIONS(5948), - [aux_sym_preproc_def_token1] = ACTIONS(5948), - [aux_sym_preproc_if_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5948), - [sym_preproc_directive] = ACTIONS(5948), - [anon_sym_LPAREN2] = ACTIONS(5948), - [anon_sym_PLUS] = ACTIONS(5952), - [anon_sym_DASH] = ACTIONS(5952), + [2282] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5948), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5948), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5948), - [aux_sym_procedure_attributes_token3] = ACTIONS(5948), - [aux_sym_contains_statement_token1] = ACTIONS(5948), - [aux_sym_use_statement_token2] = ACTIONS(5948), - [aux_sym_implicit_statement_token4] = ACTIONS(5948), - [aux_sym_save_statement_token1] = ACTIONS(5948), - [aux_sym_private_statement_token1] = ACTIONS(5948), - [aux_sym_public_statement_token1] = ACTIONS(5948), - [aux_sym_derived_type_definition_token1] = ACTIONS(5948), - [aux_sym_procedure_attribute_token6] = ACTIONS(5948), - [aux_sym_variable_attributes_token2] = ACTIONS(5948), - [aux_sym_variable_attributes_token3] = ACTIONS(5948), - [aux_sym_variable_attributes_token5] = ACTIONS(5948), - [aux_sym__intrinsic_type_token1] = ACTIONS(5948), - [aux_sym__intrinsic_type_token3] = ACTIONS(5948), - [aux_sym__intrinsic_type_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5948), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5948), - [aux_sym_type_qualifier_token1] = ACTIONS(5948), - [aux_sym_type_qualifier_token2] = ACTIONS(5948), - [anon_sym_SEMI] = ACTIONS(5952), - [aux_sym_stop_statement_token1] = ACTIONS(5948), - [aux_sym_stop_statement_token2] = ACTIONS(5948), - [aux_sym_subroutine_call_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token1] = ACTIONS(5948), - [aux_sym_keyword_statement_token2] = ACTIONS(5948), - [aux_sym_keyword_statement_token3] = ACTIONS(5948), - [aux_sym_keyword_statement_token4] = ACTIONS(5948), - [aux_sym_keyword_statement_token6] = ACTIONS(5948), - [aux_sym_keyword_statement_token7] = ACTIONS(5948), - [aux_sym_include_statement_token1] = ACTIONS(5948), - [aux_sym_data_statement_token1] = ACTIONS(5948), - [aux_sym_do_loop_statement_token1] = ACTIONS(5948), - [aux_sym__inline_if_statement_token1] = ACTIONS(5948), - [aux_sym_end_if_statement_token1] = ACTIONS(5948), - [aux_sym_elseif_clause_token2] = ACTIONS(5948), - [aux_sym__inline_where_statement_token1] = ACTIONS(5948), - [aux_sym__forall_control_expression_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token1] = ACTIONS(5948), - [aux_sym_select_case_statement_token3] = ACTIONS(5948), - [aux_sym_select_type_statement_token1] = ACTIONS(5948), - [aux_sym_select_rank_statement_token2] = ACTIONS(5948), - [aux_sym_block_construct_token1] = ACTIONS(5948), - [aux_sym_associate_statement_token1] = ACTIONS(5948), - [aux_sym_format_statement_token1] = ACTIONS(5948), - [aux_sym_print_statement_token1] = ACTIONS(5948), - [aux_sym_open_statement_token1] = ACTIONS(5948), - [aux_sym_close_statement_token1] = ACTIONS(5948), - [aux_sym_inquire_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token1] = ACTIONS(5948), - [aux_sym_file_position_statement_token2] = ACTIONS(5948), - [aux_sym_file_position_statement_token3] = ACTIONS(5948), - [aux_sym_file_position_statement_token4] = ACTIONS(5948), - [aux_sym_allocate_statement_token1] = ACTIONS(5948), - [aux_sym_entry_statement_token1] = ACTIONS(5948), - [aux_sym_logical_expression_token5] = ACTIONS(5952), - [anon_sym_DOT] = ACTIONS(5948), - [anon_sym_LPAREN_SLASH] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5952), - [aux_sym_boolean_literal_token1] = ACTIONS(5952), - [aux_sym_boolean_literal_token2] = ACTIONS(5952), - [aux_sym_null_literal_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_statement_token2] = ACTIONS(5948), - [aux_sym_coarray_statement_token6] = ACTIONS(5948), - [aux_sym_coarray_statement_token8] = ACTIONS(5948), - [aux_sym_coarray_statement_token11] = ACTIONS(5948), - [aux_sym_coarray_statement_token12] = ACTIONS(5948), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5948), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5948), - [aux_sym_identifier_token1] = ACTIONS(5948), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token2] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_end_select_statement_token1] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5952), - [sym__float_literal] = ACTIONS(5952), - [sym__boz_literal] = ACTIONS(5952), - [sym__string_literal] = ACTIONS(5952), - [sym__string_literal_kind] = ACTIONS(5952), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2350] = { - [aux_sym_preproc_include_token1] = ACTIONS(6450), - [aux_sym_preproc_def_token1] = ACTIONS(6450), - [aux_sym_preproc_if_token1] = ACTIONS(6450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6450), - [sym_preproc_directive] = ACTIONS(6450), - [anon_sym_LPAREN2] = ACTIONS(6450), - [anon_sym_PLUS] = ACTIONS(6452), - [anon_sym_DASH] = ACTIONS(6452), + [2283] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6450), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6450), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6450), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6450), - [aux_sym_procedure_attributes_token3] = ACTIONS(6450), - [aux_sym_contains_statement_token1] = ACTIONS(6450), - [aux_sym_use_statement_token2] = ACTIONS(6450), - [aux_sym_implicit_statement_token4] = ACTIONS(6450), - [aux_sym_save_statement_token1] = ACTIONS(6450), - [aux_sym_private_statement_token1] = ACTIONS(6450), - [aux_sym_public_statement_token1] = ACTIONS(6450), - [aux_sym_derived_type_definition_token1] = ACTIONS(6450), - [aux_sym_procedure_attribute_token6] = ACTIONS(6450), - [aux_sym_variable_attributes_token2] = ACTIONS(6450), - [aux_sym_variable_attributes_token3] = ACTIONS(6450), - [aux_sym_variable_attributes_token5] = ACTIONS(6450), - [aux_sym__intrinsic_type_token1] = ACTIONS(6450), - [aux_sym__intrinsic_type_token3] = ACTIONS(6450), - [aux_sym__intrinsic_type_token4] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6450), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6450), - [aux_sym_type_qualifier_token1] = ACTIONS(6450), - [aux_sym_type_qualifier_token2] = ACTIONS(6450), - [anon_sym_SEMI] = ACTIONS(6452), - [aux_sym_stop_statement_token1] = ACTIONS(6450), - [aux_sym_stop_statement_token2] = ACTIONS(6450), - [aux_sym_subroutine_call_token1] = ACTIONS(6450), - [aux_sym_keyword_statement_token1] = ACTIONS(6450), - [aux_sym_keyword_statement_token2] = ACTIONS(6450), - [aux_sym_keyword_statement_token3] = ACTIONS(6450), - [aux_sym_keyword_statement_token4] = ACTIONS(6450), - [aux_sym_keyword_statement_token6] = ACTIONS(6450), - [aux_sym_keyword_statement_token7] = ACTIONS(6450), - [aux_sym_include_statement_token1] = ACTIONS(6450), - [aux_sym_data_statement_token1] = ACTIONS(6450), - [aux_sym_do_loop_statement_token1] = ACTIONS(6450), - [aux_sym__inline_if_statement_token1] = ACTIONS(6450), - [aux_sym_end_if_statement_token1] = ACTIONS(6450), - [aux_sym_elseif_clause_token2] = ACTIONS(6450), - [aux_sym__inline_where_statement_token1] = ACTIONS(6450), - [aux_sym__forall_control_expression_token1] = ACTIONS(6450), - [aux_sym_select_case_statement_token1] = ACTIONS(6450), - [aux_sym_select_case_statement_token3] = ACTIONS(6450), - [aux_sym_select_type_statement_token1] = ACTIONS(6450), - [aux_sym_select_rank_statement_token2] = ACTIONS(6450), - [aux_sym_block_construct_token1] = ACTIONS(6450), - [aux_sym_associate_statement_token1] = ACTIONS(6450), - [aux_sym_format_statement_token1] = ACTIONS(6450), - [aux_sym_print_statement_token1] = ACTIONS(6450), - [aux_sym_open_statement_token1] = ACTIONS(6450), - [aux_sym_close_statement_token1] = ACTIONS(6450), - [aux_sym_inquire_statement_token1] = ACTIONS(6450), - [aux_sym_file_position_statement_token1] = ACTIONS(6450), - [aux_sym_file_position_statement_token2] = ACTIONS(6450), - [aux_sym_file_position_statement_token3] = ACTIONS(6450), - [aux_sym_file_position_statement_token4] = ACTIONS(6450), - [aux_sym_allocate_statement_token1] = ACTIONS(6450), - [aux_sym_entry_statement_token1] = ACTIONS(6450), - [aux_sym_logical_expression_token5] = ACTIONS(6452), - [anon_sym_DOT] = ACTIONS(6450), - [anon_sym_LPAREN_SLASH] = ACTIONS(6452), - [anon_sym_LBRACK] = ACTIONS(6452), - [aux_sym_boolean_literal_token1] = ACTIONS(6452), - [aux_sym_boolean_literal_token2] = ACTIONS(6452), - [aux_sym_null_literal_token1] = ACTIONS(6450), - [aux_sym_coarray_statement_token1] = ACTIONS(6450), - [aux_sym_coarray_statement_token2] = ACTIONS(6450), - [aux_sym_coarray_statement_token6] = ACTIONS(6450), - [aux_sym_coarray_statement_token8] = ACTIONS(6450), - [aux_sym_coarray_statement_token11] = ACTIONS(6450), - [aux_sym_coarray_statement_token12] = ACTIONS(6450), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6450), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6450), - [aux_sym_identifier_token1] = ACTIONS(6450), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token2] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_end_select_statement_token1] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6452), - [sym__float_literal] = ACTIONS(6452), - [sym__boz_literal] = ACTIONS(6452), - [sym__string_literal] = ACTIONS(6452), - [sym__string_literal_kind] = ACTIONS(6452), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2351] = { - [aux_sym_preproc_include_token1] = ACTIONS(6454), - [aux_sym_preproc_def_token1] = ACTIONS(6454), - [aux_sym_preproc_if_token1] = ACTIONS(6454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6454), - [sym_preproc_directive] = ACTIONS(6454), - [anon_sym_LPAREN2] = ACTIONS(6454), - [anon_sym_PLUS] = ACTIONS(6456), - [anon_sym_DASH] = ACTIONS(6456), + [2284] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6454), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6454), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6454), - [aux_sym_procedure_attributes_token3] = ACTIONS(6454), - [aux_sym_contains_statement_token1] = ACTIONS(6454), - [aux_sym_use_statement_token2] = ACTIONS(6454), - [aux_sym_implicit_statement_token4] = ACTIONS(6454), - [aux_sym_save_statement_token1] = ACTIONS(6454), - [aux_sym_private_statement_token1] = ACTIONS(6454), - [aux_sym_public_statement_token1] = ACTIONS(6454), - [aux_sym_derived_type_definition_token1] = ACTIONS(6454), - [aux_sym_procedure_attribute_token6] = ACTIONS(6454), - [aux_sym_variable_attributes_token2] = ACTIONS(6454), - [aux_sym_variable_attributes_token3] = ACTIONS(6454), - [aux_sym_variable_attributes_token5] = ACTIONS(6454), - [aux_sym__intrinsic_type_token1] = ACTIONS(6454), - [aux_sym__intrinsic_type_token3] = ACTIONS(6454), - [aux_sym__intrinsic_type_token4] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6454), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6454), - [aux_sym_type_qualifier_token1] = ACTIONS(6454), - [aux_sym_type_qualifier_token2] = ACTIONS(6454), - [anon_sym_SEMI] = ACTIONS(6456), - [aux_sym_stop_statement_token1] = ACTIONS(6454), - [aux_sym_stop_statement_token2] = ACTIONS(6454), - [aux_sym_subroutine_call_token1] = ACTIONS(6454), - [aux_sym_keyword_statement_token1] = ACTIONS(6454), - [aux_sym_keyword_statement_token2] = ACTIONS(6454), - [aux_sym_keyword_statement_token3] = ACTIONS(6454), - [aux_sym_keyword_statement_token4] = ACTIONS(6454), - [aux_sym_keyword_statement_token6] = ACTIONS(6454), - [aux_sym_keyword_statement_token7] = ACTIONS(6454), - [aux_sym_include_statement_token1] = ACTIONS(6454), - [aux_sym_data_statement_token1] = ACTIONS(6454), - [aux_sym_do_loop_statement_token1] = ACTIONS(6454), - [aux_sym__inline_if_statement_token1] = ACTIONS(6454), - [aux_sym_end_if_statement_token1] = ACTIONS(6454), - [aux_sym_elseif_clause_token2] = ACTIONS(6454), - [aux_sym__inline_where_statement_token1] = ACTIONS(6454), - [aux_sym__forall_control_expression_token1] = ACTIONS(6454), - [aux_sym_select_case_statement_token1] = ACTIONS(6454), - [aux_sym_select_case_statement_token3] = ACTIONS(6454), - [aux_sym_select_type_statement_token1] = ACTIONS(6454), - [aux_sym_select_rank_statement_token2] = ACTIONS(6454), - [aux_sym_block_construct_token1] = ACTIONS(6454), - [aux_sym_associate_statement_token1] = ACTIONS(6454), - [aux_sym_format_statement_token1] = ACTIONS(6454), - [aux_sym_print_statement_token1] = ACTIONS(6454), - [aux_sym_open_statement_token1] = ACTIONS(6454), - [aux_sym_close_statement_token1] = ACTIONS(6454), - [aux_sym_inquire_statement_token1] = ACTIONS(6454), - [aux_sym_file_position_statement_token1] = ACTIONS(6454), - [aux_sym_file_position_statement_token2] = ACTIONS(6454), - [aux_sym_file_position_statement_token3] = ACTIONS(6454), - [aux_sym_file_position_statement_token4] = ACTIONS(6454), - [aux_sym_allocate_statement_token1] = ACTIONS(6454), - [aux_sym_entry_statement_token1] = ACTIONS(6454), - [aux_sym_logical_expression_token5] = ACTIONS(6456), - [anon_sym_DOT] = ACTIONS(6454), - [anon_sym_LPAREN_SLASH] = ACTIONS(6456), - [anon_sym_LBRACK] = ACTIONS(6456), - [aux_sym_boolean_literal_token1] = ACTIONS(6456), - [aux_sym_boolean_literal_token2] = ACTIONS(6456), - [aux_sym_null_literal_token1] = ACTIONS(6454), - [aux_sym_coarray_statement_token1] = ACTIONS(6454), - [aux_sym_coarray_statement_token2] = ACTIONS(6454), - [aux_sym_coarray_statement_token6] = ACTIONS(6454), - [aux_sym_coarray_statement_token8] = ACTIONS(6454), - [aux_sym_coarray_statement_token11] = ACTIONS(6454), - [aux_sym_coarray_statement_token12] = ACTIONS(6454), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6454), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6454), - [aux_sym_identifier_token1] = ACTIONS(6454), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token2] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_end_select_statement_token1] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6456), - [sym__float_literal] = ACTIONS(6456), - [sym__boz_literal] = ACTIONS(6456), - [sym__string_literal] = ACTIONS(6456), - [sym__string_literal_kind] = ACTIONS(6456), - }, - [2352] = { - [aux_sym_preproc_include_token1] = ACTIONS(6246), - [aux_sym_preproc_def_token1] = ACTIONS(6246), - [aux_sym_preproc_if_token1] = ACTIONS(6246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6246), - [sym_preproc_directive] = ACTIONS(6246), - [anon_sym_LPAREN2] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6248), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6246), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6246), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6246), - [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6246), - [aux_sym_procedure_attributes_token3] = ACTIONS(6246), - [aux_sym_contains_statement_token1] = ACTIONS(6246), - [aux_sym_use_statement_token2] = ACTIONS(6246), - [aux_sym_implicit_statement_token4] = ACTIONS(6246), - [aux_sym_save_statement_token1] = ACTIONS(6246), - [aux_sym_private_statement_token1] = ACTIONS(6246), - [aux_sym_public_statement_token1] = ACTIONS(6246), - [aux_sym_derived_type_definition_token1] = ACTIONS(6246), - [aux_sym_procedure_attribute_token6] = ACTIONS(6246), - [aux_sym_variable_attributes_token2] = ACTIONS(6246), - [aux_sym_variable_attributes_token3] = ACTIONS(6246), - [aux_sym_variable_attributes_token5] = ACTIONS(6246), - [aux_sym__intrinsic_type_token1] = ACTIONS(6246), - [aux_sym__intrinsic_type_token3] = ACTIONS(6246), - [aux_sym__intrinsic_type_token4] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6246), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6246), - [aux_sym_type_qualifier_token1] = ACTIONS(6246), - [aux_sym_type_qualifier_token2] = ACTIONS(6246), - [anon_sym_SEMI] = ACTIONS(6248), - [aux_sym_stop_statement_token1] = ACTIONS(6246), - [aux_sym_stop_statement_token2] = ACTIONS(6246), - [aux_sym_subroutine_call_token1] = ACTIONS(6246), - [aux_sym_keyword_statement_token1] = ACTIONS(6246), - [aux_sym_keyword_statement_token2] = ACTIONS(6246), - [aux_sym_keyword_statement_token3] = ACTIONS(6246), - [aux_sym_keyword_statement_token4] = ACTIONS(6246), - [aux_sym_keyword_statement_token6] = ACTIONS(6246), - [aux_sym_keyword_statement_token7] = ACTIONS(6246), - [aux_sym_include_statement_token1] = ACTIONS(6246), - [aux_sym_data_statement_token1] = ACTIONS(6246), - [aux_sym_do_loop_statement_token1] = ACTIONS(6246), - [aux_sym__inline_if_statement_token1] = ACTIONS(6246), - [aux_sym_end_if_statement_token1] = ACTIONS(6246), - [aux_sym_elseif_clause_token2] = ACTIONS(6246), - [aux_sym__inline_where_statement_token1] = ACTIONS(6246), - [aux_sym__forall_control_expression_token1] = ACTIONS(6246), - [aux_sym_select_case_statement_token1] = ACTIONS(6246), - [aux_sym_select_case_statement_token3] = ACTIONS(6246), - [aux_sym_select_type_statement_token1] = ACTIONS(6246), - [aux_sym_select_rank_statement_token2] = ACTIONS(6246), - [aux_sym_block_construct_token1] = ACTIONS(6246), - [aux_sym_associate_statement_token1] = ACTIONS(6246), - [aux_sym_format_statement_token1] = ACTIONS(6246), - [aux_sym_print_statement_token1] = ACTIONS(6246), - [aux_sym_open_statement_token1] = ACTIONS(6246), - [aux_sym_close_statement_token1] = ACTIONS(6246), - [aux_sym_inquire_statement_token1] = ACTIONS(6246), - [aux_sym_file_position_statement_token1] = ACTIONS(6246), - [aux_sym_file_position_statement_token2] = ACTIONS(6246), - [aux_sym_file_position_statement_token3] = ACTIONS(6246), - [aux_sym_file_position_statement_token4] = ACTIONS(6246), - [aux_sym_allocate_statement_token1] = ACTIONS(6246), - [aux_sym_entry_statement_token1] = ACTIONS(6246), - [aux_sym_logical_expression_token5] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_LPAREN_SLASH] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6248), - [aux_sym_boolean_literal_token1] = ACTIONS(6248), - [aux_sym_boolean_literal_token2] = ACTIONS(6248), - [aux_sym_null_literal_token1] = ACTIONS(6246), - [aux_sym_coarray_statement_token1] = ACTIONS(6246), - [aux_sym_coarray_statement_token2] = ACTIONS(6246), - [aux_sym_coarray_statement_token6] = ACTIONS(6246), - [aux_sym_coarray_statement_token8] = ACTIONS(6246), - [aux_sym_coarray_statement_token11] = ACTIONS(6246), - [aux_sym_coarray_statement_token12] = ACTIONS(6246), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6246), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6246), - [aux_sym_identifier_token1] = ACTIONS(6246), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6248), - [sym__float_literal] = ACTIONS(6248), - [sym__boz_literal] = ACTIONS(6248), - [sym__string_literal] = ACTIONS(6248), - [sym__string_literal_kind] = ACTIONS(6248), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2353] = { - [aux_sym_preproc_include_token1] = ACTIONS(6358), - [aux_sym_preproc_def_token1] = ACTIONS(6358), - [aux_sym_preproc_if_token1] = ACTIONS(6358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6358), - [sym_preproc_directive] = ACTIONS(6358), - [anon_sym_LPAREN2] = ACTIONS(6358), - [anon_sym_PLUS] = ACTIONS(6360), - [anon_sym_DASH] = ACTIONS(6360), + [2285] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6358), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6358), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6358), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6358), - [aux_sym_procedure_attributes_token3] = ACTIONS(6358), - [aux_sym_contains_statement_token1] = ACTIONS(6358), - [aux_sym_use_statement_token2] = ACTIONS(6358), - [aux_sym_implicit_statement_token4] = ACTIONS(6358), - [aux_sym_save_statement_token1] = ACTIONS(6358), - [aux_sym_private_statement_token1] = ACTIONS(6358), - [aux_sym_public_statement_token1] = ACTIONS(6358), - [aux_sym_derived_type_definition_token1] = ACTIONS(6358), - [aux_sym_procedure_attribute_token6] = ACTIONS(6358), - [aux_sym_variable_attributes_token2] = ACTIONS(6358), - [aux_sym_variable_attributes_token3] = ACTIONS(6358), - [aux_sym_variable_attributes_token5] = ACTIONS(6358), - [aux_sym__intrinsic_type_token1] = ACTIONS(6358), - [aux_sym__intrinsic_type_token3] = ACTIONS(6358), - [aux_sym__intrinsic_type_token4] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6358), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6358), - [aux_sym_type_qualifier_token1] = ACTIONS(6358), - [aux_sym_type_qualifier_token2] = ACTIONS(6358), - [anon_sym_SEMI] = ACTIONS(6360), - [aux_sym_stop_statement_token1] = ACTIONS(6358), - [aux_sym_stop_statement_token2] = ACTIONS(6358), - [aux_sym_subroutine_call_token1] = ACTIONS(6358), - [aux_sym_keyword_statement_token1] = ACTIONS(6358), - [aux_sym_keyword_statement_token2] = ACTIONS(6358), - [aux_sym_keyword_statement_token3] = ACTIONS(6358), - [aux_sym_keyword_statement_token4] = ACTIONS(6358), - [aux_sym_keyword_statement_token6] = ACTIONS(6358), - [aux_sym_keyword_statement_token7] = ACTIONS(6358), - [aux_sym_include_statement_token1] = ACTIONS(6358), - [aux_sym_data_statement_token1] = ACTIONS(6358), - [aux_sym_do_loop_statement_token1] = ACTIONS(6358), - [aux_sym__inline_if_statement_token1] = ACTIONS(6358), - [aux_sym_end_if_statement_token1] = ACTIONS(6358), - [aux_sym_elseif_clause_token2] = ACTIONS(6358), - [aux_sym__inline_where_statement_token1] = ACTIONS(6358), - [aux_sym__forall_control_expression_token1] = ACTIONS(6358), - [aux_sym_select_case_statement_token1] = ACTIONS(6358), - [aux_sym_select_case_statement_token3] = ACTIONS(6358), - [aux_sym_select_type_statement_token1] = ACTIONS(6358), - [aux_sym_select_rank_statement_token2] = ACTIONS(6358), - [aux_sym_block_construct_token1] = ACTIONS(6358), - [aux_sym_associate_statement_token1] = ACTIONS(6358), - [aux_sym_format_statement_token1] = ACTIONS(6358), - [aux_sym_print_statement_token1] = ACTIONS(6358), - [aux_sym_open_statement_token1] = ACTIONS(6358), - [aux_sym_close_statement_token1] = ACTIONS(6358), - [aux_sym_inquire_statement_token1] = ACTIONS(6358), - [aux_sym_file_position_statement_token1] = ACTIONS(6358), - [aux_sym_file_position_statement_token2] = ACTIONS(6358), - [aux_sym_file_position_statement_token3] = ACTIONS(6358), - [aux_sym_file_position_statement_token4] = ACTIONS(6358), - [aux_sym_allocate_statement_token1] = ACTIONS(6358), - [aux_sym_entry_statement_token1] = ACTIONS(6358), - [aux_sym_logical_expression_token5] = ACTIONS(6360), - [anon_sym_DOT] = ACTIONS(6358), - [anon_sym_LPAREN_SLASH] = ACTIONS(6360), - [anon_sym_LBRACK] = ACTIONS(6360), - [aux_sym_boolean_literal_token1] = ACTIONS(6360), - [aux_sym_boolean_literal_token2] = ACTIONS(6360), - [aux_sym_null_literal_token1] = ACTIONS(6358), - [aux_sym_coarray_statement_token1] = ACTIONS(6358), - [aux_sym_coarray_statement_token2] = ACTIONS(6358), - [aux_sym_coarray_statement_token6] = ACTIONS(6358), - [aux_sym_coarray_statement_token8] = ACTIONS(6358), - [aux_sym_coarray_statement_token11] = ACTIONS(6358), - [aux_sym_coarray_statement_token12] = ACTIONS(6358), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6358), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6358), - [aux_sym_identifier_token1] = ACTIONS(6358), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token2] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_end_select_statement_token1] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6360), - [sym__float_literal] = ACTIONS(6360), - [sym__boz_literal] = ACTIONS(6360), - [sym__string_literal] = ACTIONS(6360), - [sym__string_literal_kind] = ACTIONS(6360), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2354] = { - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [2286] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), - [aux_sym_procedure_attributes_token3] = ACTIONS(2059), - [aux_sym_contains_statement_token1] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2059), - [aux_sym_save_statement_token1] = ACTIONS(2059), - [aux_sym_private_statement_token1] = ACTIONS(2059), - [aux_sym_public_statement_token1] = ACTIONS(2059), - [aux_sym_derived_type_definition_token1] = ACTIONS(2059), - [aux_sym_procedure_attribute_token6] = ACTIONS(2059), - [aux_sym_variable_attributes_token2] = ACTIONS(2059), - [aux_sym_variable_attributes_token3] = ACTIONS(2059), - [aux_sym_variable_attributes_token5] = ACTIONS(2059), - [aux_sym__intrinsic_type_token1] = ACTIONS(2059), - [aux_sym__intrinsic_type_token3] = ACTIONS(2059), - [aux_sym__intrinsic_type_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), - [aux_sym_type_qualifier_token1] = ACTIONS(2059), - [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), - [aux_sym_stop_statement_token1] = ACTIONS(2059), - [aux_sym_stop_statement_token2] = ACTIONS(2059), - [aux_sym_subroutine_call_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token2] = ACTIONS(2059), - [aux_sym_keyword_statement_token3] = ACTIONS(2059), - [aux_sym_keyword_statement_token4] = ACTIONS(2059), - [aux_sym_keyword_statement_token6] = ACTIONS(2059), - [aux_sym_keyword_statement_token7] = ACTIONS(2059), - [aux_sym_include_statement_token1] = ACTIONS(2059), - [aux_sym_data_statement_token1] = ACTIONS(2059), - [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2059), - [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2059), - [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token3] = ACTIONS(2059), - [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token2] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_end_select_statement_token1] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), - }, - [2355] = { - [aux_sym_preproc_include_token1] = ACTIONS(6364), - [aux_sym_preproc_def_token1] = ACTIONS(6364), - [aux_sym_preproc_if_token1] = ACTIONS(6364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6364), - [sym_preproc_directive] = ACTIONS(6364), - [anon_sym_LPAREN2] = ACTIONS(6364), - [anon_sym_PLUS] = ACTIONS(6366), - [anon_sym_DASH] = ACTIONS(6366), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6364), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6364), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6364), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6364), - [aux_sym_procedure_attributes_token3] = ACTIONS(6364), - [aux_sym_contains_statement_token1] = ACTIONS(6364), - [aux_sym_use_statement_token2] = ACTIONS(6364), - [aux_sym_implicit_statement_token4] = ACTIONS(6364), - [aux_sym_save_statement_token1] = ACTIONS(6364), - [aux_sym_private_statement_token1] = ACTIONS(6364), - [aux_sym_public_statement_token1] = ACTIONS(6364), - [aux_sym_derived_type_definition_token1] = ACTIONS(6364), - [aux_sym_procedure_attribute_token6] = ACTIONS(6364), - [aux_sym_variable_attributes_token2] = ACTIONS(6364), - [aux_sym_variable_attributes_token3] = ACTIONS(6364), - [aux_sym_variable_attributes_token5] = ACTIONS(6364), - [aux_sym__intrinsic_type_token1] = ACTIONS(6364), - [aux_sym__intrinsic_type_token3] = ACTIONS(6364), - [aux_sym__intrinsic_type_token4] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6364), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6364), - [aux_sym_type_qualifier_token1] = ACTIONS(6364), - [aux_sym_type_qualifier_token2] = ACTIONS(6364), - [anon_sym_SEMI] = ACTIONS(6366), - [aux_sym_stop_statement_token1] = ACTIONS(6364), - [aux_sym_stop_statement_token2] = ACTIONS(6364), - [aux_sym_subroutine_call_token1] = ACTIONS(6364), - [aux_sym_keyword_statement_token1] = ACTIONS(6364), - [aux_sym_keyword_statement_token2] = ACTIONS(6364), - [aux_sym_keyword_statement_token3] = ACTIONS(6364), - [aux_sym_keyword_statement_token4] = ACTIONS(6364), - [aux_sym_keyword_statement_token6] = ACTIONS(6364), - [aux_sym_keyword_statement_token7] = ACTIONS(6364), - [aux_sym_include_statement_token1] = ACTIONS(6364), - [aux_sym_data_statement_token1] = ACTIONS(6364), - [aux_sym_do_loop_statement_token1] = ACTIONS(6364), - [aux_sym__inline_if_statement_token1] = ACTIONS(6364), - [aux_sym_end_if_statement_token1] = ACTIONS(6364), - [aux_sym_elseif_clause_token2] = ACTIONS(6364), - [aux_sym__inline_where_statement_token1] = ACTIONS(6364), - [aux_sym__forall_control_expression_token1] = ACTIONS(6364), - [aux_sym_select_case_statement_token1] = ACTIONS(6364), - [aux_sym_select_case_statement_token3] = ACTIONS(6364), - [aux_sym_select_type_statement_token1] = ACTIONS(6364), - [aux_sym_select_rank_statement_token2] = ACTIONS(6364), - [aux_sym_block_construct_token1] = ACTIONS(6364), - [aux_sym_associate_statement_token1] = ACTIONS(6364), - [aux_sym_format_statement_token1] = ACTIONS(6364), - [aux_sym_print_statement_token1] = ACTIONS(6364), - [aux_sym_open_statement_token1] = ACTIONS(6364), - [aux_sym_close_statement_token1] = ACTIONS(6364), - [aux_sym_inquire_statement_token1] = ACTIONS(6364), - [aux_sym_file_position_statement_token1] = ACTIONS(6364), - [aux_sym_file_position_statement_token2] = ACTIONS(6364), - [aux_sym_file_position_statement_token3] = ACTIONS(6364), - [aux_sym_file_position_statement_token4] = ACTIONS(6364), - [aux_sym_allocate_statement_token1] = ACTIONS(6364), - [aux_sym_entry_statement_token1] = ACTIONS(6364), - [aux_sym_logical_expression_token5] = ACTIONS(6366), - [anon_sym_DOT] = ACTIONS(6364), - [anon_sym_LPAREN_SLASH] = ACTIONS(6366), - [anon_sym_LBRACK] = ACTIONS(6366), - [aux_sym_boolean_literal_token1] = ACTIONS(6366), - [aux_sym_boolean_literal_token2] = ACTIONS(6366), - [aux_sym_null_literal_token1] = ACTIONS(6364), - [aux_sym_coarray_statement_token1] = ACTIONS(6364), - [aux_sym_coarray_statement_token2] = ACTIONS(6364), - [aux_sym_coarray_statement_token6] = ACTIONS(6364), - [aux_sym_coarray_statement_token8] = ACTIONS(6364), - [aux_sym_coarray_statement_token11] = ACTIONS(6364), - [aux_sym_coarray_statement_token12] = ACTIONS(6364), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6364), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6364), - [aux_sym_identifier_token1] = ACTIONS(6364), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6366), - [sym__float_literal] = ACTIONS(6366), - [sym__boz_literal] = ACTIONS(6366), - [sym__string_literal] = ACTIONS(6366), - [sym__string_literal_kind] = ACTIONS(6366), - }, - [2356] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6508), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), - }, - [2357] = { - [aux_sym_preproc_include_token1] = ACTIONS(6060), - [aux_sym_preproc_def_token1] = ACTIONS(6060), - [aux_sym_preproc_if_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6060), - [sym_preproc_directive] = ACTIONS(6060), - [anon_sym_LPAREN2] = ACTIONS(6060), - [anon_sym_PLUS] = ACTIONS(6064), - [anon_sym_DASH] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6060), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6060), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6060), - [aux_sym_procedure_attributes_token3] = ACTIONS(6060), - [aux_sym_contains_statement_token1] = ACTIONS(6060), - [aux_sym_use_statement_token2] = ACTIONS(6060), - [aux_sym_implicit_statement_token4] = ACTIONS(6060), - [aux_sym_save_statement_token1] = ACTIONS(6060), - [aux_sym_private_statement_token1] = ACTIONS(6060), - [aux_sym_public_statement_token1] = ACTIONS(6060), - [aux_sym_derived_type_definition_token1] = ACTIONS(6060), - [aux_sym_procedure_attribute_token6] = ACTIONS(6060), - [aux_sym_variable_attributes_token2] = ACTIONS(6060), - [aux_sym_variable_attributes_token3] = ACTIONS(6060), - [aux_sym_variable_attributes_token5] = ACTIONS(6060), - [aux_sym__intrinsic_type_token1] = ACTIONS(6060), - [aux_sym__intrinsic_type_token3] = ACTIONS(6060), - [aux_sym__intrinsic_type_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6060), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6060), - [aux_sym_type_qualifier_token1] = ACTIONS(6060), - [aux_sym_type_qualifier_token2] = ACTIONS(6060), - [anon_sym_SEMI] = ACTIONS(6064), - [aux_sym_stop_statement_token1] = ACTIONS(6060), - [aux_sym_stop_statement_token2] = ACTIONS(6060), - [aux_sym_subroutine_call_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token1] = ACTIONS(6060), - [aux_sym_keyword_statement_token2] = ACTIONS(6060), - [aux_sym_keyword_statement_token3] = ACTIONS(6060), - [aux_sym_keyword_statement_token4] = ACTIONS(6060), - [aux_sym_keyword_statement_token6] = ACTIONS(6060), - [aux_sym_keyword_statement_token7] = ACTIONS(6060), - [aux_sym_include_statement_token1] = ACTIONS(6060), - [aux_sym_data_statement_token1] = ACTIONS(6060), - [aux_sym_do_loop_statement_token1] = ACTIONS(6060), - [aux_sym__inline_if_statement_token1] = ACTIONS(6060), - [aux_sym_end_if_statement_token1] = ACTIONS(6060), - [aux_sym_elseif_clause_token2] = ACTIONS(6060), - [aux_sym__inline_where_statement_token1] = ACTIONS(6060), - [aux_sym__forall_control_expression_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token1] = ACTIONS(6060), - [aux_sym_select_case_statement_token3] = ACTIONS(6060), - [aux_sym_select_type_statement_token1] = ACTIONS(6060), - [aux_sym_select_rank_statement_token2] = ACTIONS(6060), - [aux_sym_block_construct_token1] = ACTIONS(6060), - [aux_sym_associate_statement_token1] = ACTIONS(6060), - [aux_sym_format_statement_token1] = ACTIONS(6060), - [aux_sym_print_statement_token1] = ACTIONS(6060), - [aux_sym_open_statement_token1] = ACTIONS(6060), - [aux_sym_close_statement_token1] = ACTIONS(6060), - [aux_sym_inquire_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token1] = ACTIONS(6060), - [aux_sym_file_position_statement_token2] = ACTIONS(6060), - [aux_sym_file_position_statement_token3] = ACTIONS(6060), - [aux_sym_file_position_statement_token4] = ACTIONS(6060), - [aux_sym_allocate_statement_token1] = ACTIONS(6060), - [aux_sym_entry_statement_token1] = ACTIONS(6060), - [aux_sym_logical_expression_token5] = ACTIONS(6064), - [anon_sym_DOT] = ACTIONS(6060), - [anon_sym_LPAREN_SLASH] = ACTIONS(6064), - [anon_sym_LBRACK] = ACTIONS(6064), - [aux_sym_boolean_literal_token1] = ACTIONS(6064), - [aux_sym_boolean_literal_token2] = ACTIONS(6064), - [aux_sym_null_literal_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_statement_token2] = ACTIONS(6060), - [aux_sym_coarray_statement_token6] = ACTIONS(6060), - [aux_sym_coarray_statement_token8] = ACTIONS(6060), - [aux_sym_coarray_statement_token11] = ACTIONS(6060), - [aux_sym_coarray_statement_token12] = ACTIONS(6060), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6060), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6060), - [aux_sym_identifier_token1] = ACTIONS(6060), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6064), - [sym__float_literal] = ACTIONS(6064), - [sym__boz_literal] = ACTIONS(6064), - [sym__string_literal] = ACTIONS(6064), - [sym__string_literal_kind] = ACTIONS(6064), - }, - [2358] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), - }, - [2359] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_end_program_statement_token2] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_contains_statement_token1] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [2360] = { - [aux_sym_preproc_include_token1] = ACTIONS(6066), - [aux_sym_preproc_def_token1] = ACTIONS(6066), - [aux_sym_preproc_if_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6066), - [sym_preproc_directive] = ACTIONS(6066), - [anon_sym_LPAREN2] = ACTIONS(6066), - [anon_sym_PLUS] = ACTIONS(6070), - [anon_sym_DASH] = ACTIONS(6070), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6066), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6066), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6066), - [aux_sym_procedure_attributes_token3] = ACTIONS(6066), - [aux_sym_contains_statement_token1] = ACTIONS(6066), - [aux_sym_use_statement_token2] = ACTIONS(6066), - [aux_sym_implicit_statement_token4] = ACTIONS(6066), - [aux_sym_save_statement_token1] = ACTIONS(6066), - [aux_sym_private_statement_token1] = ACTIONS(6066), - [aux_sym_public_statement_token1] = ACTIONS(6066), - [aux_sym_derived_type_definition_token1] = ACTIONS(6066), - [aux_sym_procedure_attribute_token6] = ACTIONS(6066), - [aux_sym_variable_attributes_token2] = ACTIONS(6066), - [aux_sym_variable_attributes_token3] = ACTIONS(6066), - [aux_sym_variable_attributes_token5] = ACTIONS(6066), - [aux_sym__intrinsic_type_token1] = ACTIONS(6066), - [aux_sym__intrinsic_type_token3] = ACTIONS(6066), - [aux_sym__intrinsic_type_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6066), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6066), - [aux_sym_type_qualifier_token1] = ACTIONS(6066), - [aux_sym_type_qualifier_token2] = ACTIONS(6066), - [anon_sym_SEMI] = ACTIONS(6070), - [aux_sym_stop_statement_token1] = ACTIONS(6066), - [aux_sym_stop_statement_token2] = ACTIONS(6066), - [aux_sym_subroutine_call_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token1] = ACTIONS(6066), - [aux_sym_keyword_statement_token2] = ACTIONS(6066), - [aux_sym_keyword_statement_token3] = ACTIONS(6066), - [aux_sym_keyword_statement_token4] = ACTIONS(6066), - [aux_sym_keyword_statement_token6] = ACTIONS(6066), - [aux_sym_keyword_statement_token7] = ACTIONS(6066), - [aux_sym_include_statement_token1] = ACTIONS(6066), - [aux_sym_data_statement_token1] = ACTIONS(6066), - [aux_sym_do_loop_statement_token1] = ACTIONS(6066), - [aux_sym__inline_if_statement_token1] = ACTIONS(6066), - [aux_sym_end_if_statement_token1] = ACTIONS(6066), - [aux_sym_elseif_clause_token2] = ACTIONS(6066), - [aux_sym__inline_where_statement_token1] = ACTIONS(6066), - [aux_sym__forall_control_expression_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token1] = ACTIONS(6066), - [aux_sym_select_case_statement_token3] = ACTIONS(6066), - [aux_sym_select_type_statement_token1] = ACTIONS(6066), - [aux_sym_select_rank_statement_token2] = ACTIONS(6066), - [aux_sym_block_construct_token1] = ACTIONS(6066), - [aux_sym_associate_statement_token1] = ACTIONS(6066), - [aux_sym_format_statement_token1] = ACTIONS(6066), - [aux_sym_print_statement_token1] = ACTIONS(6066), - [aux_sym_open_statement_token1] = ACTIONS(6066), - [aux_sym_close_statement_token1] = ACTIONS(6066), - [aux_sym_inquire_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token1] = ACTIONS(6066), - [aux_sym_file_position_statement_token2] = ACTIONS(6066), - [aux_sym_file_position_statement_token3] = ACTIONS(6066), - [aux_sym_file_position_statement_token4] = ACTIONS(6066), - [aux_sym_allocate_statement_token1] = ACTIONS(6066), - [aux_sym_entry_statement_token1] = ACTIONS(6066), - [aux_sym_logical_expression_token5] = ACTIONS(6070), - [anon_sym_DOT] = ACTIONS(6066), - [anon_sym_LPAREN_SLASH] = ACTIONS(6070), - [anon_sym_LBRACK] = ACTIONS(6070), - [aux_sym_boolean_literal_token1] = ACTIONS(6070), - [aux_sym_boolean_literal_token2] = ACTIONS(6070), - [aux_sym_null_literal_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_statement_token2] = ACTIONS(6066), - [aux_sym_coarray_statement_token6] = ACTIONS(6066), - [aux_sym_coarray_statement_token8] = ACTIONS(6066), - [aux_sym_coarray_statement_token11] = ACTIONS(6066), - [aux_sym_coarray_statement_token12] = ACTIONS(6066), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6066), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6066), - [aux_sym_identifier_token1] = ACTIONS(6066), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6070), - [sym__float_literal] = ACTIONS(6070), - [sym__boz_literal] = ACTIONS(6070), - [sym__string_literal] = ACTIONS(6070), - [sym__string_literal_kind] = ACTIONS(6070), - }, - [2361] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6512), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), - }, - [2362] = { - [aux_sym_preproc_include_token1] = ACTIONS(6352), - [aux_sym_preproc_def_token1] = ACTIONS(6352), - [aux_sym_preproc_if_token1] = ACTIONS(6352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6352), - [sym_preproc_directive] = ACTIONS(6352), - [anon_sym_LPAREN2] = ACTIONS(6352), - [anon_sym_PLUS] = ACTIONS(6354), - [anon_sym_DASH] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6352), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6352), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6352), - [aux_sym_procedure_attributes_token3] = ACTIONS(6352), - [aux_sym_end_function_statement_token1] = ACTIONS(6352), - [aux_sym_contains_statement_token1] = ACTIONS(6352), - [aux_sym_use_statement_token2] = ACTIONS(6352), - [aux_sym_implicit_statement_token4] = ACTIONS(6352), - [aux_sym_save_statement_token1] = ACTIONS(6352), - [aux_sym_private_statement_token1] = ACTIONS(6352), - [aux_sym_public_statement_token1] = ACTIONS(6352), - [aux_sym_derived_type_definition_token1] = ACTIONS(6352), - [aux_sym_procedure_attribute_token6] = ACTIONS(6352), - [aux_sym_variable_attributes_token2] = ACTIONS(6352), - [aux_sym_variable_attributes_token3] = ACTIONS(6352), - [aux_sym_variable_attributes_token5] = ACTIONS(6352), - [aux_sym__intrinsic_type_token1] = ACTIONS(6352), - [aux_sym__intrinsic_type_token3] = ACTIONS(6352), - [aux_sym__intrinsic_type_token4] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6352), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6352), - [aux_sym_type_qualifier_token1] = ACTIONS(6352), - [aux_sym_type_qualifier_token2] = ACTIONS(6352), - [anon_sym_SEMI] = ACTIONS(6354), - [aux_sym_stop_statement_token1] = ACTIONS(6352), - [aux_sym_stop_statement_token2] = ACTIONS(6352), - [aux_sym_subroutine_call_token1] = ACTIONS(6352), - [aux_sym_keyword_statement_token1] = ACTIONS(6352), - [aux_sym_keyword_statement_token2] = ACTIONS(6352), - [aux_sym_keyword_statement_token3] = ACTIONS(6352), - [aux_sym_keyword_statement_token4] = ACTIONS(6352), - [aux_sym_keyword_statement_token6] = ACTIONS(6352), - [aux_sym_keyword_statement_token7] = ACTIONS(6352), - [aux_sym_include_statement_token1] = ACTIONS(6352), - [aux_sym_data_statement_token1] = ACTIONS(6352), - [aux_sym_do_loop_statement_token1] = ACTIONS(6352), - [aux_sym__inline_if_statement_token1] = ACTIONS(6352), - [aux_sym_end_if_statement_token1] = ACTIONS(6352), - [aux_sym_elseif_clause_token2] = ACTIONS(6352), - [aux_sym__inline_where_statement_token1] = ACTIONS(6352), - [aux_sym__forall_control_expression_token1] = ACTIONS(6352), - [aux_sym_select_case_statement_token1] = ACTIONS(6352), - [aux_sym_select_case_statement_token3] = ACTIONS(6352), - [aux_sym_select_type_statement_token1] = ACTIONS(6352), - [aux_sym_select_rank_statement_token2] = ACTIONS(6352), - [aux_sym_block_construct_token1] = ACTIONS(6352), - [aux_sym_associate_statement_token1] = ACTIONS(6352), - [aux_sym_format_statement_token1] = ACTIONS(6352), - [aux_sym_print_statement_token1] = ACTIONS(6352), - [aux_sym_open_statement_token1] = ACTIONS(6352), - [aux_sym_close_statement_token1] = ACTIONS(6352), - [aux_sym_inquire_statement_token1] = ACTIONS(6352), - [aux_sym_file_position_statement_token1] = ACTIONS(6352), - [aux_sym_file_position_statement_token2] = ACTIONS(6352), - [aux_sym_file_position_statement_token3] = ACTIONS(6352), - [aux_sym_file_position_statement_token4] = ACTIONS(6352), - [aux_sym_allocate_statement_token1] = ACTIONS(6352), - [aux_sym_entry_statement_token1] = ACTIONS(6352), - [aux_sym_logical_expression_token5] = ACTIONS(6354), - [anon_sym_DOT] = ACTIONS(6352), - [anon_sym_LPAREN_SLASH] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(6354), - [aux_sym_boolean_literal_token1] = ACTIONS(6354), - [aux_sym_boolean_literal_token2] = ACTIONS(6354), - [aux_sym_null_literal_token1] = ACTIONS(6352), - [aux_sym_coarray_statement_token1] = ACTIONS(6352), - [aux_sym_coarray_statement_token2] = ACTIONS(6352), - [aux_sym_coarray_statement_token6] = ACTIONS(6352), - [aux_sym_coarray_statement_token8] = ACTIONS(6352), - [aux_sym_coarray_statement_token11] = ACTIONS(6352), - [aux_sym_coarray_statement_token12] = ACTIONS(6352), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6352), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6352), - [aux_sym_identifier_token1] = ACTIONS(6352), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6354), - [sym__float_literal] = ACTIONS(6354), - [sym__boz_literal] = ACTIONS(6354), - [sym__string_literal] = ACTIONS(6354), - [sym__string_literal_kind] = ACTIONS(6354), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2363] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6514), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), + [2287] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_end_select_statement_token1] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), - }, - [2364] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_end_program_statement_token2] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_contains_statement_token1] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2365] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6516), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [2288] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_end_select_statement_token1] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2366] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6518), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2289] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_end_select_statement_token1] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [2367] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_end_program_statement_token2] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_contains_statement_token1] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), - }, - [2368] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6520), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2369] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [2290] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_end_program_statement_token2] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_contains_statement_token1] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_end_select_statement_token1] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), - }, - [2370] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6522), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [2371] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6524), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2372] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6526), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [2291] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_end_select_statement_token1] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2373] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6528), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), + [2292] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_end_select_statement_token1] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), - }, - [2374] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6530), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2375] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6532), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2293] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_end_select_statement_token1] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2376] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6534), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2377] = { - [aux_sym_preproc_include_token1] = ACTIONS(6402), - [aux_sym_preproc_def_token1] = ACTIONS(6402), - [aux_sym_preproc_if_token1] = ACTIONS(6402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6402), - [sym_preproc_directive] = ACTIONS(6402), - [anon_sym_LPAREN2] = ACTIONS(6402), - [anon_sym_PLUS] = ACTIONS(6404), - [anon_sym_DASH] = ACTIONS(6404), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6402), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6402), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6402), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6402), - [aux_sym_procedure_attributes_token3] = ACTIONS(6402), - [aux_sym_contains_statement_token1] = ACTIONS(6402), - [aux_sym_use_statement_token2] = ACTIONS(6402), - [aux_sym_implicit_statement_token4] = ACTIONS(6402), - [aux_sym_save_statement_token1] = ACTIONS(6402), - [aux_sym_private_statement_token1] = ACTIONS(6402), - [aux_sym_public_statement_token1] = ACTIONS(6402), - [aux_sym_derived_type_definition_token1] = ACTIONS(6402), - [aux_sym_procedure_attribute_token6] = ACTIONS(6402), - [aux_sym_variable_attributes_token2] = ACTIONS(6402), - [aux_sym_variable_attributes_token3] = ACTIONS(6402), - [aux_sym_variable_attributes_token5] = ACTIONS(6402), - [aux_sym__intrinsic_type_token1] = ACTIONS(6402), - [aux_sym__intrinsic_type_token3] = ACTIONS(6402), - [aux_sym__intrinsic_type_token4] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6402), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6402), - [aux_sym_type_qualifier_token1] = ACTIONS(6402), - [aux_sym_type_qualifier_token2] = ACTIONS(6402), - [anon_sym_SEMI] = ACTIONS(6404), - [aux_sym_stop_statement_token1] = ACTIONS(6402), - [aux_sym_stop_statement_token2] = ACTIONS(6402), - [aux_sym_subroutine_call_token1] = ACTIONS(6402), - [aux_sym_keyword_statement_token1] = ACTIONS(6402), - [aux_sym_keyword_statement_token2] = ACTIONS(6402), - [aux_sym_keyword_statement_token3] = ACTIONS(6402), - [aux_sym_keyword_statement_token4] = ACTIONS(6402), - [aux_sym_keyword_statement_token6] = ACTIONS(6402), - [aux_sym_keyword_statement_token7] = ACTIONS(6402), - [aux_sym_include_statement_token1] = ACTIONS(6402), - [aux_sym_data_statement_token1] = ACTIONS(6402), - [aux_sym_do_loop_statement_token1] = ACTIONS(6402), - [aux_sym__inline_if_statement_token1] = ACTIONS(6402), - [aux_sym_end_if_statement_token1] = ACTIONS(6402), - [aux_sym_elseif_clause_token2] = ACTIONS(6402), - [aux_sym__inline_where_statement_token1] = ACTIONS(6402), - [aux_sym__forall_control_expression_token1] = ACTIONS(6402), - [aux_sym_select_case_statement_token1] = ACTIONS(6402), - [aux_sym_select_case_statement_token3] = ACTIONS(6402), - [aux_sym_select_type_statement_token1] = ACTIONS(6402), - [aux_sym_select_rank_statement_token2] = ACTIONS(6402), - [aux_sym_block_construct_token1] = ACTIONS(6402), - [aux_sym_associate_statement_token1] = ACTIONS(6402), - [aux_sym_format_statement_token1] = ACTIONS(6402), - [aux_sym_print_statement_token1] = ACTIONS(6402), - [aux_sym_open_statement_token1] = ACTIONS(6402), - [aux_sym_close_statement_token1] = ACTIONS(6402), - [aux_sym_inquire_statement_token1] = ACTIONS(6402), - [aux_sym_file_position_statement_token1] = ACTIONS(6402), - [aux_sym_file_position_statement_token2] = ACTIONS(6402), - [aux_sym_file_position_statement_token3] = ACTIONS(6402), - [aux_sym_file_position_statement_token4] = ACTIONS(6402), - [aux_sym_allocate_statement_token1] = ACTIONS(6402), - [aux_sym_entry_statement_token1] = ACTIONS(6402), - [aux_sym_logical_expression_token5] = ACTIONS(6404), - [anon_sym_DOT] = ACTIONS(6402), - [anon_sym_LPAREN_SLASH] = ACTIONS(6404), - [anon_sym_LBRACK] = ACTIONS(6404), - [aux_sym_boolean_literal_token1] = ACTIONS(6404), - [aux_sym_boolean_literal_token2] = ACTIONS(6404), - [aux_sym_null_literal_token1] = ACTIONS(6402), - [aux_sym_coarray_statement_token1] = ACTIONS(6402), - [aux_sym_coarray_statement_token2] = ACTIONS(6402), - [aux_sym_coarray_statement_token6] = ACTIONS(6402), - [aux_sym_coarray_statement_token8] = ACTIONS(6402), - [aux_sym_coarray_statement_token11] = ACTIONS(6402), - [aux_sym_coarray_statement_token12] = ACTIONS(6402), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6402), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6402), - [aux_sym_identifier_token1] = ACTIONS(6402), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6404), - [sym__float_literal] = ACTIONS(6404), - [sym__boz_literal] = ACTIONS(6404), - [sym__string_literal] = ACTIONS(6404), - [sym__string_literal_kind] = ACTIONS(6404), - }, - [2378] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6536), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), - }, - [2379] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6538), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [2380] = { - [aux_sym_preproc_include_token1] = ACTIONS(6406), - [aux_sym_preproc_def_token1] = ACTIONS(6406), - [aux_sym_preproc_if_token1] = ACTIONS(6406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6406), - [sym_preproc_directive] = ACTIONS(6406), - [anon_sym_LPAREN2] = ACTIONS(6406), - [anon_sym_PLUS] = ACTIONS(6408), - [anon_sym_DASH] = ACTIONS(6408), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6406), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6406), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6406), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6406), - [aux_sym_procedure_attributes_token3] = ACTIONS(6406), - [aux_sym_contains_statement_token1] = ACTIONS(6406), - [aux_sym_use_statement_token2] = ACTIONS(6406), - [aux_sym_implicit_statement_token4] = ACTIONS(6406), - [aux_sym_save_statement_token1] = ACTIONS(6406), - [aux_sym_private_statement_token1] = ACTIONS(6406), - [aux_sym_public_statement_token1] = ACTIONS(6406), - [aux_sym_derived_type_definition_token1] = ACTIONS(6406), - [aux_sym_procedure_attribute_token6] = ACTIONS(6406), - [aux_sym_variable_attributes_token2] = ACTIONS(6406), - [aux_sym_variable_attributes_token3] = ACTIONS(6406), - [aux_sym_variable_attributes_token5] = ACTIONS(6406), - [aux_sym__intrinsic_type_token1] = ACTIONS(6406), - [aux_sym__intrinsic_type_token3] = ACTIONS(6406), - [aux_sym__intrinsic_type_token4] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6406), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6406), - [aux_sym_type_qualifier_token1] = ACTIONS(6406), - [aux_sym_type_qualifier_token2] = ACTIONS(6406), - [anon_sym_SEMI] = ACTIONS(6408), - [aux_sym_stop_statement_token1] = ACTIONS(6406), - [aux_sym_stop_statement_token2] = ACTIONS(6406), - [aux_sym_subroutine_call_token1] = ACTIONS(6406), - [aux_sym_keyword_statement_token1] = ACTIONS(6406), - [aux_sym_keyword_statement_token2] = ACTIONS(6406), - [aux_sym_keyword_statement_token3] = ACTIONS(6406), - [aux_sym_keyword_statement_token4] = ACTIONS(6406), - [aux_sym_keyword_statement_token6] = ACTIONS(6406), - [aux_sym_keyword_statement_token7] = ACTIONS(6406), - [aux_sym_include_statement_token1] = ACTIONS(6406), - [aux_sym_data_statement_token1] = ACTIONS(6406), - [aux_sym_do_loop_statement_token1] = ACTIONS(6406), - [aux_sym__inline_if_statement_token1] = ACTIONS(6406), - [aux_sym_end_if_statement_token1] = ACTIONS(6406), - [aux_sym_elseif_clause_token2] = ACTIONS(6406), - [aux_sym__inline_where_statement_token1] = ACTIONS(6406), - [aux_sym__forall_control_expression_token1] = ACTIONS(6406), - [aux_sym_select_case_statement_token1] = ACTIONS(6406), - [aux_sym_select_case_statement_token3] = ACTIONS(6406), - [aux_sym_select_type_statement_token1] = ACTIONS(6406), - [aux_sym_select_rank_statement_token2] = ACTIONS(6406), - [aux_sym_block_construct_token1] = ACTIONS(6406), - [aux_sym_associate_statement_token1] = ACTIONS(6406), - [aux_sym_format_statement_token1] = ACTIONS(6406), - [aux_sym_print_statement_token1] = ACTIONS(6406), - [aux_sym_open_statement_token1] = ACTIONS(6406), - [aux_sym_close_statement_token1] = ACTIONS(6406), - [aux_sym_inquire_statement_token1] = ACTIONS(6406), - [aux_sym_file_position_statement_token1] = ACTIONS(6406), - [aux_sym_file_position_statement_token2] = ACTIONS(6406), - [aux_sym_file_position_statement_token3] = ACTIONS(6406), - [aux_sym_file_position_statement_token4] = ACTIONS(6406), - [aux_sym_allocate_statement_token1] = ACTIONS(6406), - [aux_sym_entry_statement_token1] = ACTIONS(6406), - [aux_sym_logical_expression_token5] = ACTIONS(6408), - [anon_sym_DOT] = ACTIONS(6406), - [anon_sym_LPAREN_SLASH] = ACTIONS(6408), - [anon_sym_LBRACK] = ACTIONS(6408), - [aux_sym_boolean_literal_token1] = ACTIONS(6408), - [aux_sym_boolean_literal_token2] = ACTIONS(6408), - [aux_sym_null_literal_token1] = ACTIONS(6406), - [aux_sym_coarray_statement_token1] = ACTIONS(6406), - [aux_sym_coarray_statement_token2] = ACTIONS(6406), - [aux_sym_coarray_statement_token6] = ACTIONS(6406), - [aux_sym_coarray_statement_token8] = ACTIONS(6406), - [aux_sym_coarray_statement_token11] = ACTIONS(6406), - [aux_sym_coarray_statement_token12] = ACTIONS(6406), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6406), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6406), - [aux_sym_identifier_token1] = ACTIONS(6406), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6408), - [sym__float_literal] = ACTIONS(6408), - [sym__boz_literal] = ACTIONS(6408), - [sym__string_literal] = ACTIONS(6408), - [sym__string_literal_kind] = ACTIONS(6408), - }, - [2381] = { - [aux_sym_preproc_include_token1] = ACTIONS(6114), - [aux_sym_preproc_def_token1] = ACTIONS(6114), - [aux_sym_preproc_if_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6114), - [sym_preproc_directive] = ACTIONS(6114), - [anon_sym_LPAREN2] = ACTIONS(6114), - [anon_sym_PLUS] = ACTIONS(6118), - [anon_sym_DASH] = ACTIONS(6118), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6114), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6114), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6114), - [aux_sym_procedure_attributes_token3] = ACTIONS(6114), - [aux_sym_contains_statement_token1] = ACTIONS(6114), - [aux_sym_use_statement_token2] = ACTIONS(6114), - [aux_sym_implicit_statement_token4] = ACTIONS(6114), - [aux_sym_save_statement_token1] = ACTIONS(6114), - [aux_sym_private_statement_token1] = ACTIONS(6114), - [aux_sym_public_statement_token1] = ACTIONS(6114), - [aux_sym_derived_type_definition_token1] = ACTIONS(6114), - [aux_sym_procedure_attribute_token6] = ACTIONS(6114), - [aux_sym_variable_attributes_token2] = ACTIONS(6114), - [aux_sym_variable_attributes_token3] = ACTIONS(6114), - [aux_sym_variable_attributes_token5] = ACTIONS(6114), - [aux_sym__intrinsic_type_token1] = ACTIONS(6114), - [aux_sym__intrinsic_type_token3] = ACTIONS(6114), - [aux_sym__intrinsic_type_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6114), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6114), - [aux_sym_type_qualifier_token1] = ACTIONS(6114), - [aux_sym_type_qualifier_token2] = ACTIONS(6114), - [anon_sym_SEMI] = ACTIONS(6118), - [aux_sym_stop_statement_token1] = ACTIONS(6114), - [aux_sym_stop_statement_token2] = ACTIONS(6114), - [aux_sym_subroutine_call_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token1] = ACTIONS(6114), - [aux_sym_keyword_statement_token2] = ACTIONS(6114), - [aux_sym_keyword_statement_token3] = ACTIONS(6114), - [aux_sym_keyword_statement_token4] = ACTIONS(6114), - [aux_sym_keyword_statement_token6] = ACTIONS(6114), - [aux_sym_keyword_statement_token7] = ACTIONS(6114), - [aux_sym_include_statement_token1] = ACTIONS(6114), - [aux_sym_data_statement_token1] = ACTIONS(6114), - [aux_sym_do_loop_statement_token1] = ACTIONS(6114), - [aux_sym__inline_if_statement_token1] = ACTIONS(6114), - [aux_sym_end_if_statement_token1] = ACTIONS(6114), - [aux_sym_elseif_clause_token2] = ACTIONS(6114), - [aux_sym__inline_where_statement_token1] = ACTIONS(6114), - [aux_sym__forall_control_expression_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token1] = ACTIONS(6114), - [aux_sym_select_case_statement_token3] = ACTIONS(6114), - [aux_sym_select_type_statement_token1] = ACTIONS(6114), - [aux_sym_select_rank_statement_token2] = ACTIONS(6114), - [aux_sym_block_construct_token1] = ACTIONS(6114), - [aux_sym_associate_statement_token1] = ACTIONS(6114), - [aux_sym_format_statement_token1] = ACTIONS(6114), - [aux_sym_print_statement_token1] = ACTIONS(6114), - [aux_sym_open_statement_token1] = ACTIONS(6114), - [aux_sym_close_statement_token1] = ACTIONS(6114), - [aux_sym_inquire_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token1] = ACTIONS(6114), - [aux_sym_file_position_statement_token2] = ACTIONS(6114), - [aux_sym_file_position_statement_token3] = ACTIONS(6114), - [aux_sym_file_position_statement_token4] = ACTIONS(6114), - [aux_sym_allocate_statement_token1] = ACTIONS(6114), - [aux_sym_entry_statement_token1] = ACTIONS(6114), - [aux_sym_logical_expression_token5] = ACTIONS(6118), - [anon_sym_DOT] = ACTIONS(6114), - [anon_sym_LPAREN_SLASH] = ACTIONS(6118), - [anon_sym_LBRACK] = ACTIONS(6118), - [aux_sym_boolean_literal_token1] = ACTIONS(6118), - [aux_sym_boolean_literal_token2] = ACTIONS(6118), - [aux_sym_null_literal_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_statement_token2] = ACTIONS(6114), - [aux_sym_coarray_statement_token6] = ACTIONS(6114), - [aux_sym_coarray_statement_token8] = ACTIONS(6114), - [aux_sym_coarray_statement_token11] = ACTIONS(6114), - [aux_sym_coarray_statement_token12] = ACTIONS(6114), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6114), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6114), - [aux_sym_identifier_token1] = ACTIONS(6114), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6118), - [sym__float_literal] = ACTIONS(6118), - [sym__boz_literal] = ACTIONS(6118), - [sym__string_literal] = ACTIONS(6118), - [sym__string_literal_kind] = ACTIONS(6118), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2382] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token2] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_contains_statement_token1] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [2294] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6464), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), }, - [2383] = { - [aux_sym_preproc_include_token1] = ACTIONS(6034), - [aux_sym_preproc_def_token1] = ACTIONS(6034), - [aux_sym_preproc_if_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6034), - [sym_preproc_directive] = ACTIONS(6034), - [anon_sym_LPAREN2] = ACTIONS(6034), - [anon_sym_PLUS] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6038), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6034), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6034), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6034), - [aux_sym_procedure_attributes_token3] = ACTIONS(6034), - [aux_sym_contains_statement_token1] = ACTIONS(6034), - [aux_sym_use_statement_token2] = ACTIONS(6034), - [aux_sym_implicit_statement_token4] = ACTIONS(6034), - [aux_sym_save_statement_token1] = ACTIONS(6034), - [aux_sym_private_statement_token1] = ACTIONS(6034), - [aux_sym_public_statement_token1] = ACTIONS(6034), - [aux_sym_derived_type_definition_token1] = ACTIONS(6034), - [aux_sym_procedure_attribute_token6] = ACTIONS(6034), - [aux_sym_variable_attributes_token2] = ACTIONS(6034), - [aux_sym_variable_attributes_token3] = ACTIONS(6034), - [aux_sym_variable_attributes_token5] = ACTIONS(6034), - [aux_sym__intrinsic_type_token1] = ACTIONS(6034), - [aux_sym__intrinsic_type_token3] = ACTIONS(6034), - [aux_sym__intrinsic_type_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6034), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6034), - [aux_sym_type_qualifier_token1] = ACTIONS(6034), - [aux_sym_type_qualifier_token2] = ACTIONS(6034), - [anon_sym_SEMI] = ACTIONS(6038), - [aux_sym_stop_statement_token1] = ACTIONS(6034), - [aux_sym_stop_statement_token2] = ACTIONS(6034), - [aux_sym_subroutine_call_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token1] = ACTIONS(6034), - [aux_sym_keyword_statement_token2] = ACTIONS(6034), - [aux_sym_keyword_statement_token3] = ACTIONS(6034), - [aux_sym_keyword_statement_token4] = ACTIONS(6034), - [aux_sym_keyword_statement_token6] = ACTIONS(6034), - [aux_sym_keyword_statement_token7] = ACTIONS(6034), - [aux_sym_include_statement_token1] = ACTIONS(6034), - [aux_sym_data_statement_token1] = ACTIONS(6034), - [aux_sym_do_loop_statement_token1] = ACTIONS(6034), - [aux_sym__inline_if_statement_token1] = ACTIONS(6034), - [aux_sym_end_if_statement_token1] = ACTIONS(6034), - [aux_sym_elseif_clause_token2] = ACTIONS(6034), - [aux_sym__inline_where_statement_token1] = ACTIONS(6034), - [aux_sym__forall_control_expression_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token1] = ACTIONS(6034), - [aux_sym_select_case_statement_token3] = ACTIONS(6034), - [aux_sym_select_type_statement_token1] = ACTIONS(6034), - [aux_sym_select_rank_statement_token2] = ACTIONS(6034), - [aux_sym_block_construct_token1] = ACTIONS(6034), - [aux_sym_associate_statement_token1] = ACTIONS(6034), - [aux_sym_format_statement_token1] = ACTIONS(6034), - [aux_sym_print_statement_token1] = ACTIONS(6034), - [aux_sym_open_statement_token1] = ACTIONS(6034), - [aux_sym_close_statement_token1] = ACTIONS(6034), - [aux_sym_inquire_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token1] = ACTIONS(6034), - [aux_sym_file_position_statement_token2] = ACTIONS(6034), - [aux_sym_file_position_statement_token3] = ACTIONS(6034), - [aux_sym_file_position_statement_token4] = ACTIONS(6034), - [aux_sym_allocate_statement_token1] = ACTIONS(6034), - [aux_sym_entry_statement_token1] = ACTIONS(6034), - [aux_sym_logical_expression_token5] = ACTIONS(6038), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_LPAREN_SLASH] = ACTIONS(6038), - [anon_sym_LBRACK] = ACTIONS(6038), - [aux_sym_boolean_literal_token1] = ACTIONS(6038), - [aux_sym_boolean_literal_token2] = ACTIONS(6038), - [aux_sym_null_literal_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_statement_token2] = ACTIONS(6034), - [aux_sym_coarray_statement_token6] = ACTIONS(6034), - [aux_sym_coarray_statement_token8] = ACTIONS(6034), - [aux_sym_coarray_statement_token11] = ACTIONS(6034), - [aux_sym_coarray_statement_token12] = ACTIONS(6034), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6034), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6034), - [aux_sym_identifier_token1] = ACTIONS(6034), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6038), - [sym__float_literal] = ACTIONS(6038), - [sym__boz_literal] = ACTIONS(6038), - [sym__string_literal] = ACTIONS(6038), - [sym__string_literal_kind] = ACTIONS(6038), + [2295] = { + [aux_sym_preproc_include_token1] = ACTIONS(2842), + [aux_sym_preproc_def_token1] = ACTIONS(2842), + [aux_sym_preproc_if_token1] = ACTIONS(2842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2842), + [sym_preproc_directive] = ACTIONS(2842), + [anon_sym_LPAREN2] = ACTIONS(2842), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2842), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2842), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2842), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(2842), + [aux_sym_procedure_attributes_token3] = ACTIONS(2842), + [aux_sym_contains_statement_token1] = ACTIONS(2842), + [aux_sym_use_statement_token2] = ACTIONS(2842), + [aux_sym_implicit_statement_token4] = ACTIONS(2842), + [aux_sym_save_statement_token1] = ACTIONS(2842), + [aux_sym_private_statement_token1] = ACTIONS(2842), + [aux_sym_public_statement_token1] = ACTIONS(2842), + [aux_sym_derived_type_definition_token1] = ACTIONS(2842), + [aux_sym_procedure_attribute_token6] = ACTIONS(2842), + [aux_sym_variable_attributes_token2] = ACTIONS(2842), + [aux_sym_variable_attributes_token3] = ACTIONS(2842), + [aux_sym_variable_attributes_token5] = ACTIONS(2842), + [aux_sym__intrinsic_type_token1] = ACTIONS(2842), + [aux_sym__intrinsic_type_token3] = ACTIONS(2842), + [aux_sym__intrinsic_type_token4] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2842), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2842), + [aux_sym_type_qualifier_token1] = ACTIONS(2842), + [aux_sym_type_qualifier_token2] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(6246), + [aux_sym_stop_statement_token1] = ACTIONS(2842), + [aux_sym_stop_statement_token2] = ACTIONS(2842), + [aux_sym_subroutine_call_token1] = ACTIONS(2842), + [aux_sym_keyword_statement_token1] = ACTIONS(2842), + [aux_sym_keyword_statement_token2] = ACTIONS(2842), + [aux_sym_keyword_statement_token3] = ACTIONS(2842), + [aux_sym_keyword_statement_token4] = ACTIONS(2842), + [aux_sym_keyword_statement_token6] = ACTIONS(2842), + [aux_sym_keyword_statement_token7] = ACTIONS(2842), + [aux_sym_include_statement_token1] = ACTIONS(2842), + [aux_sym_data_statement_token1] = ACTIONS(2842), + [aux_sym_do_loop_statement_token1] = ACTIONS(2842), + [aux_sym__inline_if_statement_token1] = ACTIONS(2842), + [aux_sym_end_if_statement_token1] = ACTIONS(2842), + [aux_sym_elseif_clause_token2] = ACTIONS(2842), + [aux_sym__inline_where_statement_token1] = ACTIONS(2842), + [aux_sym__forall_control_expression_token1] = ACTIONS(2842), + [aux_sym_select_case_statement_token1] = ACTIONS(2842), + [aux_sym_select_case_statement_token3] = ACTIONS(2842), + [aux_sym_select_type_statement_token1] = ACTIONS(2842), + [aux_sym_select_rank_statement_token2] = ACTIONS(2842), + [aux_sym_block_construct_token1] = ACTIONS(2842), + [aux_sym_associate_statement_token1] = ACTIONS(2842), + [aux_sym_format_statement_token1] = ACTIONS(2842), + [aux_sym_print_statement_token1] = ACTIONS(2842), + [aux_sym_open_statement_token1] = ACTIONS(2842), + [aux_sym_close_statement_token1] = ACTIONS(2842), + [aux_sym_inquire_statement_token1] = ACTIONS(2842), + [aux_sym_file_position_statement_token1] = ACTIONS(2842), + [aux_sym_file_position_statement_token2] = ACTIONS(2842), + [aux_sym_file_position_statement_token3] = ACTIONS(2842), + [aux_sym_file_position_statement_token4] = ACTIONS(2842), + [aux_sym_allocate_statement_token1] = ACTIONS(2842), + [aux_sym_entry_statement_token1] = ACTIONS(2842), + [aux_sym_logical_expression_token5] = ACTIONS(6246), + [anon_sym_DOT] = ACTIONS(2842), + [anon_sym_LPAREN_SLASH] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(6246), + [aux_sym_boolean_literal_token1] = ACTIONS(6246), + [aux_sym_boolean_literal_token2] = ACTIONS(6246), + [aux_sym_null_literal_token1] = ACTIONS(2842), + [aux_sym_coarray_statement_token1] = ACTIONS(2842), + [aux_sym_coarray_statement_token2] = ACTIONS(2842), + [aux_sym_coarray_statement_token6] = ACTIONS(2842), + [aux_sym_coarray_statement_token8] = ACTIONS(2842), + [aux_sym_coarray_statement_token11] = ACTIONS(2842), + [aux_sym_coarray_statement_token12] = ACTIONS(2842), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2842), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2842), + [aux_sym_identifier_token1] = ACTIONS(2842), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6246), + [sym__float_literal] = ACTIONS(6246), + [sym__boz_literal] = ACTIONS(6246), + [sym__string_literal] = ACTIONS(6246), + [sym__string_literal_kind] = ACTIONS(6246), }, - [2384] = { - [aux_sym_preproc_include_token1] = ACTIONS(6442), - [aux_sym_preproc_def_token1] = ACTIONS(6442), - [aux_sym_preproc_if_token1] = ACTIONS(6442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6442), - [sym_preproc_directive] = ACTIONS(6442), - [anon_sym_LPAREN2] = ACTIONS(6442), - [anon_sym_PLUS] = ACTIONS(6444), - [anon_sym_DASH] = ACTIONS(6444), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6442), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6442), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6442), - [aux_sym_end_subroutine_statement_token1] = ACTIONS(6442), - [aux_sym_procedure_attributes_token3] = ACTIONS(6442), - [aux_sym_contains_statement_token1] = ACTIONS(6442), - [aux_sym_use_statement_token2] = ACTIONS(6442), - [aux_sym_implicit_statement_token4] = ACTIONS(6442), - [aux_sym_save_statement_token1] = ACTIONS(6442), - [aux_sym_private_statement_token1] = ACTIONS(6442), - [aux_sym_public_statement_token1] = ACTIONS(6442), - [aux_sym_derived_type_definition_token1] = ACTIONS(6442), - [aux_sym_procedure_attribute_token6] = ACTIONS(6442), - [aux_sym_variable_attributes_token2] = ACTIONS(6442), - [aux_sym_variable_attributes_token3] = ACTIONS(6442), - [aux_sym_variable_attributes_token5] = ACTIONS(6442), - [aux_sym__intrinsic_type_token1] = ACTIONS(6442), - [aux_sym__intrinsic_type_token3] = ACTIONS(6442), - [aux_sym__intrinsic_type_token4] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6442), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6442), - [aux_sym_type_qualifier_token1] = ACTIONS(6442), - [aux_sym_type_qualifier_token2] = ACTIONS(6442), - [anon_sym_SEMI] = ACTIONS(6444), - [aux_sym_stop_statement_token1] = ACTIONS(6442), - [aux_sym_stop_statement_token2] = ACTIONS(6442), - [aux_sym_subroutine_call_token1] = ACTIONS(6442), - [aux_sym_keyword_statement_token1] = ACTIONS(6442), - [aux_sym_keyword_statement_token2] = ACTIONS(6442), - [aux_sym_keyword_statement_token3] = ACTIONS(6442), - [aux_sym_keyword_statement_token4] = ACTIONS(6442), - [aux_sym_keyword_statement_token6] = ACTIONS(6442), - [aux_sym_keyword_statement_token7] = ACTIONS(6442), - [aux_sym_include_statement_token1] = ACTIONS(6442), - [aux_sym_data_statement_token1] = ACTIONS(6442), - [aux_sym_do_loop_statement_token1] = ACTIONS(6442), - [aux_sym__inline_if_statement_token1] = ACTIONS(6442), - [aux_sym_end_if_statement_token1] = ACTIONS(6442), - [aux_sym_elseif_clause_token2] = ACTIONS(6442), - [aux_sym__inline_where_statement_token1] = ACTIONS(6442), - [aux_sym__forall_control_expression_token1] = ACTIONS(6442), - [aux_sym_select_case_statement_token1] = ACTIONS(6442), - [aux_sym_select_case_statement_token3] = ACTIONS(6442), - [aux_sym_select_type_statement_token1] = ACTIONS(6442), - [aux_sym_select_rank_statement_token2] = ACTIONS(6442), - [aux_sym_block_construct_token1] = ACTIONS(6442), - [aux_sym_associate_statement_token1] = ACTIONS(6442), - [aux_sym_format_statement_token1] = ACTIONS(6442), - [aux_sym_print_statement_token1] = ACTIONS(6442), - [aux_sym_open_statement_token1] = ACTIONS(6442), - [aux_sym_close_statement_token1] = ACTIONS(6442), - [aux_sym_inquire_statement_token1] = ACTIONS(6442), - [aux_sym_file_position_statement_token1] = ACTIONS(6442), - [aux_sym_file_position_statement_token2] = ACTIONS(6442), - [aux_sym_file_position_statement_token3] = ACTIONS(6442), - [aux_sym_file_position_statement_token4] = ACTIONS(6442), - [aux_sym_allocate_statement_token1] = ACTIONS(6442), - [aux_sym_entry_statement_token1] = ACTIONS(6442), - [aux_sym_logical_expression_token5] = ACTIONS(6444), - [anon_sym_DOT] = ACTIONS(6442), - [anon_sym_LPAREN_SLASH] = ACTIONS(6444), - [anon_sym_LBRACK] = ACTIONS(6444), - [aux_sym_boolean_literal_token1] = ACTIONS(6444), - [aux_sym_boolean_literal_token2] = ACTIONS(6444), - [aux_sym_null_literal_token1] = ACTIONS(6442), - [aux_sym_coarray_statement_token1] = ACTIONS(6442), - [aux_sym_coarray_statement_token2] = ACTIONS(6442), - [aux_sym_coarray_statement_token6] = ACTIONS(6442), - [aux_sym_coarray_statement_token8] = ACTIONS(6442), - [aux_sym_coarray_statement_token11] = ACTIONS(6442), - [aux_sym_coarray_statement_token12] = ACTIONS(6442), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6442), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6442), - [aux_sym_identifier_token1] = ACTIONS(6442), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6444), - [sym__float_literal] = ACTIONS(6444), - [sym__boz_literal] = ACTIONS(6444), - [sym__string_literal] = ACTIONS(6444), - [sym__string_literal_kind] = ACTIONS(6444), + [2296] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6466), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [2385] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [2297] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_end_program_statement_token2] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_contains_statement_token1] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token2] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_contains_statement_token1] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), }, - [2386] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6540), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [2298] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6468), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), }, - [2387] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [2299] = { + [aux_sym_preproc_include_token1] = ACTIONS(6250), + [aux_sym_preproc_def_token1] = ACTIONS(6250), + [aux_sym_preproc_if_token1] = ACTIONS(6250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6250), + [sym_preproc_directive] = ACTIONS(6250), + [anon_sym_LPAREN2] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6250), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6250), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6250), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6250), + [aux_sym_procedure_attributes_token3] = ACTIONS(6250), + [aux_sym_contains_statement_token1] = ACTIONS(6250), + [aux_sym_use_statement_token2] = ACTIONS(6250), + [aux_sym_implicit_statement_token4] = ACTIONS(6250), + [aux_sym_save_statement_token1] = ACTIONS(6250), + [aux_sym_private_statement_token1] = ACTIONS(6250), + [aux_sym_public_statement_token1] = ACTIONS(6250), + [aux_sym_derived_type_definition_token1] = ACTIONS(6250), + [aux_sym_procedure_attribute_token6] = ACTIONS(6250), + [aux_sym_variable_attributes_token2] = ACTIONS(6250), + [aux_sym_variable_attributes_token3] = ACTIONS(6250), + [aux_sym_variable_attributes_token5] = ACTIONS(6250), + [aux_sym__intrinsic_type_token1] = ACTIONS(6250), + [aux_sym__intrinsic_type_token3] = ACTIONS(6250), + [aux_sym__intrinsic_type_token4] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6250), + [aux_sym_type_qualifier_token1] = ACTIONS(6250), + [aux_sym_type_qualifier_token2] = ACTIONS(6250), + [anon_sym_SEMI] = ACTIONS(6252), + [aux_sym_stop_statement_token1] = ACTIONS(6250), + [aux_sym_stop_statement_token2] = ACTIONS(6250), + [aux_sym_subroutine_call_token1] = ACTIONS(6250), + [aux_sym_keyword_statement_token1] = ACTIONS(6250), + [aux_sym_keyword_statement_token2] = ACTIONS(6250), + [aux_sym_keyword_statement_token3] = ACTIONS(6250), + [aux_sym_keyword_statement_token4] = ACTIONS(6250), + [aux_sym_keyword_statement_token6] = ACTIONS(6250), + [aux_sym_keyword_statement_token7] = ACTIONS(6250), + [aux_sym_include_statement_token1] = ACTIONS(6250), + [aux_sym_data_statement_token1] = ACTIONS(6250), + [aux_sym_do_loop_statement_token1] = ACTIONS(6250), + [aux_sym__inline_if_statement_token1] = ACTIONS(6250), + [aux_sym_end_if_statement_token1] = ACTIONS(6250), + [aux_sym_elseif_clause_token2] = ACTIONS(6250), + [aux_sym__inline_where_statement_token1] = ACTIONS(6250), + [aux_sym__forall_control_expression_token1] = ACTIONS(6250), + [aux_sym_select_case_statement_token1] = ACTIONS(6250), + [aux_sym_select_case_statement_token3] = ACTIONS(6250), + [aux_sym_select_type_statement_token1] = ACTIONS(6250), + [aux_sym_select_rank_statement_token2] = ACTIONS(6250), + [aux_sym_block_construct_token1] = ACTIONS(6250), + [aux_sym_associate_statement_token1] = ACTIONS(6250), + [aux_sym_format_statement_token1] = ACTIONS(6250), + [aux_sym_print_statement_token1] = ACTIONS(6250), + [aux_sym_open_statement_token1] = ACTIONS(6250), + [aux_sym_close_statement_token1] = ACTIONS(6250), + [aux_sym_inquire_statement_token1] = ACTIONS(6250), + [aux_sym_file_position_statement_token1] = ACTIONS(6250), + [aux_sym_file_position_statement_token2] = ACTIONS(6250), + [aux_sym_file_position_statement_token3] = ACTIONS(6250), + [aux_sym_file_position_statement_token4] = ACTIONS(6250), + [aux_sym_allocate_statement_token1] = ACTIONS(6250), + [aux_sym_entry_statement_token1] = ACTIONS(6250), + [aux_sym_logical_expression_token5] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_LPAREN_SLASH] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6252), + [aux_sym_boolean_literal_token1] = ACTIONS(6252), + [aux_sym_boolean_literal_token2] = ACTIONS(6252), + [aux_sym_null_literal_token1] = ACTIONS(6250), + [aux_sym_coarray_statement_token1] = ACTIONS(6250), + [aux_sym_coarray_statement_token2] = ACTIONS(6250), + [aux_sym_coarray_statement_token6] = ACTIONS(6250), + [aux_sym_coarray_statement_token8] = ACTIONS(6250), + [aux_sym_coarray_statement_token11] = ACTIONS(6250), + [aux_sym_coarray_statement_token12] = ACTIONS(6250), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6250), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6250), + [aux_sym_identifier_token1] = ACTIONS(6250), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6252), + [sym__float_literal] = ACTIONS(6252), + [sym__boz_literal] = ACTIONS(6252), + [sym__string_literal] = ACTIONS(6252), + [sym__string_literal_kind] = ACTIONS(6252), }, - [2388] = { + [2300] = { + [aux_sym_preproc_include_token1] = ACTIONS(5960), + [aux_sym_preproc_def_token1] = ACTIONS(5960), + [aux_sym_preproc_if_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5960), + [sym_preproc_directive] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5960), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5960), + [aux_sym_procedure_attributes_token3] = ACTIONS(5960), + [aux_sym_contains_statement_token1] = ACTIONS(5960), + [aux_sym_use_statement_token2] = ACTIONS(5960), + [aux_sym_implicit_statement_token4] = ACTIONS(5960), + [aux_sym_save_statement_token1] = ACTIONS(5960), + [aux_sym_private_statement_token1] = ACTIONS(5960), + [aux_sym_public_statement_token1] = ACTIONS(5960), + [aux_sym_derived_type_definition_token1] = ACTIONS(5960), + [aux_sym_procedure_attribute_token6] = ACTIONS(5960), + [aux_sym_variable_attributes_token2] = ACTIONS(5960), + [aux_sym_variable_attributes_token3] = ACTIONS(5960), + [aux_sym_variable_attributes_token5] = ACTIONS(5960), + [aux_sym__intrinsic_type_token1] = ACTIONS(5960), + [aux_sym__intrinsic_type_token3] = ACTIONS(5960), + [aux_sym__intrinsic_type_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5960), + [aux_sym_type_qualifier_token1] = ACTIONS(5960), + [aux_sym_type_qualifier_token2] = ACTIONS(5960), + [anon_sym_SEMI] = ACTIONS(5964), + [aux_sym_stop_statement_token1] = ACTIONS(5960), + [aux_sym_stop_statement_token2] = ACTIONS(5960), + [aux_sym_subroutine_call_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token2] = ACTIONS(5960), + [aux_sym_keyword_statement_token3] = ACTIONS(5960), + [aux_sym_keyword_statement_token4] = ACTIONS(5960), + [aux_sym_keyword_statement_token6] = ACTIONS(5960), + [aux_sym_keyword_statement_token7] = ACTIONS(5960), + [aux_sym_include_statement_token1] = ACTIONS(5960), + [aux_sym_data_statement_token1] = ACTIONS(5960), + [aux_sym_do_loop_statement_token1] = ACTIONS(5960), + [aux_sym__inline_if_statement_token1] = ACTIONS(5960), + [aux_sym_end_if_statement_token1] = ACTIONS(5960), + [aux_sym_elseif_clause_token2] = ACTIONS(5960), + [aux_sym__inline_where_statement_token1] = ACTIONS(5960), + [aux_sym__forall_control_expression_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token3] = ACTIONS(5960), + [aux_sym_select_type_statement_token1] = ACTIONS(5960), + [aux_sym_select_rank_statement_token2] = ACTIONS(5960), + [aux_sym_block_construct_token1] = ACTIONS(5960), + [aux_sym_associate_statement_token1] = ACTIONS(5960), + [aux_sym_format_statement_token1] = ACTIONS(5960), + [aux_sym_print_statement_token1] = ACTIONS(5960), + [aux_sym_open_statement_token1] = ACTIONS(5960), + [aux_sym_close_statement_token1] = ACTIONS(5960), + [aux_sym_inquire_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token2] = ACTIONS(5960), + [aux_sym_file_position_statement_token3] = ACTIONS(5960), + [aux_sym_file_position_statement_token4] = ACTIONS(5960), + [aux_sym_allocate_statement_token1] = ACTIONS(5960), + [aux_sym_entry_statement_token1] = ACTIONS(5960), + [aux_sym_logical_expression_token5] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5960), + [anon_sym_LPAREN_SLASH] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5964), + [aux_sym_boolean_literal_token1] = ACTIONS(5964), + [aux_sym_boolean_literal_token2] = ACTIONS(5964), + [aux_sym_null_literal_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token2] = ACTIONS(5960), + [aux_sym_coarray_statement_token6] = ACTIONS(5960), + [aux_sym_coarray_statement_token8] = ACTIONS(5960), + [aux_sym_coarray_statement_token11] = ACTIONS(5960), + [aux_sym_coarray_statement_token12] = ACTIONS(5960), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5960), + [aux_sym_identifier_token1] = ACTIONS(5960), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5964), + [sym__float_literal] = ACTIONS(5964), + [sym__boz_literal] = ACTIONS(5964), + [sym__string_literal] = ACTIONS(5964), + [sym__string_literal_kind] = ACTIONS(5964), + }, + [2301] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6470), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [2302] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -382235,13 +373722,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token2] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_contains_statement_token1] = ACTIONS(4571), [aux_sym_use_statement_token2] = ACTIONS(4571), [aux_sym_implicit_statement_token4] = ACTIONS(4571), [aux_sym_save_statement_token1] = ACTIONS(4571), @@ -382266,7 +373755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -382279,7 +373768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(4571), [aux_sym_data_statement_token1] = ACTIONS(4571), [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4571), [aux_sym__inline_if_statement_token1] = ACTIONS(4571), [aux_sym_end_if_statement_token1] = ACTIONS(4571), [aux_sym_elseif_clause_token2] = ACTIONS(4571), @@ -382302,12 +373790,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -382319,1385 +373807,2389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [2389] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_end_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [2390] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token2] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2391] = { - [anon_sym_COMMA] = ACTIONS(6542), - [anon_sym_RPAREN] = ACTIONS(6542), - [anon_sym_LPAREN2] = ACTIONS(6542), - [anon_sym_PLUS] = ACTIONS(6542), - [anon_sym_DASH] = ACTIONS(6542), - [anon_sym_STAR] = ACTIONS(6544), - [anon_sym_SLASH] = ACTIONS(6544), - [anon_sym_PERCENT] = ACTIONS(6542), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6542), - [anon_sym_GT] = ACTIONS(6544), - [anon_sym_GT_EQ] = ACTIONS(6542), - [anon_sym_LT_EQ] = ACTIONS(6542), - [anon_sym_LT] = ACTIONS(6544), - [aux_sym_end_program_statement_token1] = ACTIONS(6544), - [anon_sym_EQ] = ACTIONS(6544), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6544), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6544), - [aux_sym_language_binding_token1] = ACTIONS(6544), - [aux_sym_procedure_attributes_token1] = ACTIONS(6544), - [aux_sym_procedure_attributes_token3] = ACTIONS(6544), - [aux_sym_use_statement_token2] = ACTIONS(6544), - [anon_sym_COLON_COLON] = ACTIONS(6542), - [anon_sym_EQ_GT] = ACTIONS(6542), - [aux_sym_implicit_statement_token4] = ACTIONS(6544), - [aux_sym_save_statement_token1] = ACTIONS(6544), - [aux_sym_private_statement_token1] = ACTIONS(6544), - [aux_sym_public_statement_token1] = ACTIONS(6544), - [aux_sym_derived_type_definition_token1] = ACTIONS(6544), - [aux_sym_abstract_specifier_token1] = ACTIONS(6544), - [aux_sym_procedure_attribute_token6] = ACTIONS(6544), - [aux_sym_variable_attributes_token1] = ACTIONS(6544), - [aux_sym_variable_attributes_token2] = ACTIONS(6544), - [aux_sym_variable_attributes_token3] = ACTIONS(6544), - [aux_sym_variable_attributes_token4] = ACTIONS(6544), - [aux_sym_variable_attributes_token5] = ACTIONS(6544), - [aux_sym__intrinsic_type_token1] = ACTIONS(6544), - [aux_sym__intrinsic_type_token3] = ACTIONS(6544), - [aux_sym__intrinsic_type_token4] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6544), - [aux_sym_type_qualifier_token1] = ACTIONS(6544), - [aux_sym_type_qualifier_token2] = ACTIONS(6544), - [aux_sym_stop_statement_token1] = ACTIONS(6544), - [aux_sym_stop_statement_token2] = ACTIONS(6544), - [anon_sym_GT_GT_GT] = ACTIONS(6542), - [aux_sym_keyword_statement_token2] = ACTIONS(6544), - [aux_sym_keyword_statement_token3] = ACTIONS(6544), - [aux_sym_data_statement_token1] = ACTIONS(6544), - [aux_sym__inline_if_statement_token1] = ACTIONS(6544), - [aux_sym_end_if_statement_token1] = ACTIONS(6544), - [aux_sym_elseif_clause_token2] = ACTIONS(6544), - [aux_sym_select_case_statement_token1] = ACTIONS(6544), - [aux_sym_block_construct_token1] = ACTIONS(6544), - [aux_sym_format_statement_token1] = ACTIONS(6544), - [aux_sym_inquire_statement_token1] = ACTIONS(6544), - [aux_sym_entry_statement_token1] = ACTIONS(6544), - [aux_sym_logical_expression_token1] = ACTIONS(6542), - [aux_sym_logical_expression_token2] = ACTIONS(6542), - [aux_sym_logical_expression_token3] = ACTIONS(6542), - [aux_sym_logical_expression_token4] = ACTIONS(6542), - [aux_sym_relational_expression_token1] = ACTIONS(6542), - [aux_sym_relational_expression_token2] = ACTIONS(6542), - [aux_sym_relational_expression_token3] = ACTIONS(6542), - [aux_sym_relational_expression_token4] = ACTIONS(6542), - [aux_sym_relational_expression_token5] = ACTIONS(6542), - [anon_sym_SLASH_EQ] = ACTIONS(6542), - [aux_sym_relational_expression_token6] = ACTIONS(6542), - [anon_sym_SLASH_SLASH] = ACTIONS(6542), - [anon_sym_STAR_STAR] = ACTIONS(6542), - [anon_sym_DOT] = ACTIONS(6544), - [anon_sym_SLASH_RPAREN] = ACTIONS(6542), - [anon_sym_LBRACK] = ACTIONS(6542), - [anon_sym_RBRACK] = ACTIONS(6542), - [aux_sym_null_literal_token1] = ACTIONS(6544), - [aux_sym_coarray_statement_token1] = ACTIONS(6544), - [aux_sym_coarray_statement_token2] = ACTIONS(6544), - [aux_sym_coarray_statement_token6] = ACTIONS(6544), - [aux_sym_coarray_statement_token8] = ACTIONS(6544), - [aux_sym_coarray_statement_token11] = ACTIONS(6544), - [aux_sym_coarray_statement_token12] = ACTIONS(6544), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6544), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6544), - [aux_sym_identifier_token1] = ACTIONS(6544), + [2303] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_end_program_statement_token2] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2392] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token2] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), - }, - [2393] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_end_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [2304] = { + [aux_sym_preproc_include_token1] = ACTIONS(6354), + [aux_sym_preproc_def_token1] = ACTIONS(6354), + [aux_sym_preproc_if_token1] = ACTIONS(6354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6354), + [sym_preproc_directive] = ACTIONS(6354), + [anon_sym_LPAREN2] = ACTIONS(6354), + [anon_sym_PLUS] = ACTIONS(6356), + [anon_sym_DASH] = ACTIONS(6356), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6354), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6354), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6354), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6354), + [aux_sym_procedure_attributes_token3] = ACTIONS(6354), + [aux_sym_contains_statement_token1] = ACTIONS(6354), + [aux_sym_use_statement_token2] = ACTIONS(6354), + [aux_sym_implicit_statement_token4] = ACTIONS(6354), + [aux_sym_save_statement_token1] = ACTIONS(6354), + [aux_sym_private_statement_token1] = ACTIONS(6354), + [aux_sym_public_statement_token1] = ACTIONS(6354), + [aux_sym_derived_type_definition_token1] = ACTIONS(6354), + [aux_sym_procedure_attribute_token6] = ACTIONS(6354), + [aux_sym_variable_attributes_token2] = ACTIONS(6354), + [aux_sym_variable_attributes_token3] = ACTIONS(6354), + [aux_sym_variable_attributes_token5] = ACTIONS(6354), + [aux_sym__intrinsic_type_token1] = ACTIONS(6354), + [aux_sym__intrinsic_type_token3] = ACTIONS(6354), + [aux_sym__intrinsic_type_token4] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6354), + [aux_sym_type_qualifier_token1] = ACTIONS(6354), + [aux_sym_type_qualifier_token2] = ACTIONS(6354), + [anon_sym_SEMI] = ACTIONS(6356), + [aux_sym_stop_statement_token1] = ACTIONS(6354), + [aux_sym_stop_statement_token2] = ACTIONS(6354), + [aux_sym_subroutine_call_token1] = ACTIONS(6354), + [aux_sym_keyword_statement_token1] = ACTIONS(6354), + [aux_sym_keyword_statement_token2] = ACTIONS(6354), + [aux_sym_keyword_statement_token3] = ACTIONS(6354), + [aux_sym_keyword_statement_token4] = ACTIONS(6354), + [aux_sym_keyword_statement_token6] = ACTIONS(6354), + [aux_sym_keyword_statement_token7] = ACTIONS(6354), + [aux_sym_include_statement_token1] = ACTIONS(6354), + [aux_sym_data_statement_token1] = ACTIONS(6354), + [aux_sym_do_loop_statement_token1] = ACTIONS(6354), + [aux_sym__inline_if_statement_token1] = ACTIONS(6354), + [aux_sym_end_if_statement_token1] = ACTIONS(6354), + [aux_sym_elseif_clause_token2] = ACTIONS(6354), + [aux_sym__inline_where_statement_token1] = ACTIONS(6354), + [aux_sym__forall_control_expression_token1] = ACTIONS(6354), + [aux_sym_select_case_statement_token1] = ACTIONS(6354), + [aux_sym_select_case_statement_token3] = ACTIONS(6354), + [aux_sym_select_type_statement_token1] = ACTIONS(6354), + [aux_sym_select_rank_statement_token2] = ACTIONS(6354), + [aux_sym_block_construct_token1] = ACTIONS(6354), + [aux_sym_associate_statement_token1] = ACTIONS(6354), + [aux_sym_format_statement_token1] = ACTIONS(6354), + [aux_sym_print_statement_token1] = ACTIONS(6354), + [aux_sym_open_statement_token1] = ACTIONS(6354), + [aux_sym_close_statement_token1] = ACTIONS(6354), + [aux_sym_inquire_statement_token1] = ACTIONS(6354), + [aux_sym_file_position_statement_token1] = ACTIONS(6354), + [aux_sym_file_position_statement_token2] = ACTIONS(6354), + [aux_sym_file_position_statement_token3] = ACTIONS(6354), + [aux_sym_file_position_statement_token4] = ACTIONS(6354), + [aux_sym_allocate_statement_token1] = ACTIONS(6354), + [aux_sym_entry_statement_token1] = ACTIONS(6354), + [aux_sym_logical_expression_token5] = ACTIONS(6356), + [anon_sym_DOT] = ACTIONS(6354), + [anon_sym_LPAREN_SLASH] = ACTIONS(6356), + [anon_sym_LBRACK] = ACTIONS(6356), + [aux_sym_boolean_literal_token1] = ACTIONS(6356), + [aux_sym_boolean_literal_token2] = ACTIONS(6356), + [aux_sym_null_literal_token1] = ACTIONS(6354), + [aux_sym_coarray_statement_token1] = ACTIONS(6354), + [aux_sym_coarray_statement_token2] = ACTIONS(6354), + [aux_sym_coarray_statement_token6] = ACTIONS(6354), + [aux_sym_coarray_statement_token8] = ACTIONS(6354), + [aux_sym_coarray_statement_token11] = ACTIONS(6354), + [aux_sym_coarray_statement_token12] = ACTIONS(6354), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6354), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6354), + [aux_sym_identifier_token1] = ACTIONS(6354), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6356), + [sym__float_literal] = ACTIONS(6356), + [sym__boz_literal] = ACTIONS(6356), + [sym__string_literal] = ACTIONS(6356), + [sym__string_literal_kind] = ACTIONS(6356), }, - [2394] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token2] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [2305] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6472), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [2395] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2306] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6474), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2396] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_end_forall_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [2307] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_end_program_statement_token2] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_contains_statement_token1] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), }, - [2397] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [2308] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [2309] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_end_program_statement_token2] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_contains_statement_token1] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2310] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6478), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [2311] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(6480), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2312] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6482), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2313] = { + [aux_sym_preproc_include_token1] = ACTIONS(6292), + [aux_sym_preproc_def_token1] = ACTIONS(6292), + [aux_sym_preproc_if_token1] = ACTIONS(6292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6292), + [sym_preproc_directive] = ACTIONS(6292), + [anon_sym_LPAREN2] = ACTIONS(6292), + [anon_sym_PLUS] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6292), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6292), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6292), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6292), + [aux_sym_procedure_attributes_token3] = ACTIONS(6292), + [aux_sym_contains_statement_token1] = ACTIONS(6292), + [aux_sym_use_statement_token2] = ACTIONS(6292), + [aux_sym_implicit_statement_token4] = ACTIONS(6292), + [aux_sym_save_statement_token1] = ACTIONS(6292), + [aux_sym_private_statement_token1] = ACTIONS(6292), + [aux_sym_public_statement_token1] = ACTIONS(6292), + [aux_sym_derived_type_definition_token1] = ACTIONS(6292), + [aux_sym_procedure_attribute_token6] = ACTIONS(6292), + [aux_sym_variable_attributes_token2] = ACTIONS(6292), + [aux_sym_variable_attributes_token3] = ACTIONS(6292), + [aux_sym_variable_attributes_token5] = ACTIONS(6292), + [aux_sym__intrinsic_type_token1] = ACTIONS(6292), + [aux_sym__intrinsic_type_token3] = ACTIONS(6292), + [aux_sym__intrinsic_type_token4] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6292), + [aux_sym_type_qualifier_token1] = ACTIONS(6292), + [aux_sym_type_qualifier_token2] = ACTIONS(6292), + [anon_sym_SEMI] = ACTIONS(6294), + [aux_sym_stop_statement_token1] = ACTIONS(6292), + [aux_sym_stop_statement_token2] = ACTIONS(6292), + [aux_sym_subroutine_call_token1] = ACTIONS(6292), + [aux_sym_keyword_statement_token1] = ACTIONS(6292), + [aux_sym_keyword_statement_token2] = ACTIONS(6292), + [aux_sym_keyword_statement_token3] = ACTIONS(6292), + [aux_sym_keyword_statement_token4] = ACTIONS(6292), + [aux_sym_keyword_statement_token6] = ACTIONS(6292), + [aux_sym_keyword_statement_token7] = ACTIONS(6292), + [aux_sym_include_statement_token1] = ACTIONS(6292), + [aux_sym_data_statement_token1] = ACTIONS(6292), + [aux_sym_do_loop_statement_token1] = ACTIONS(6292), + [aux_sym__inline_if_statement_token1] = ACTIONS(6292), + [aux_sym_end_if_statement_token1] = ACTIONS(6292), + [aux_sym_elseif_clause_token2] = ACTIONS(6292), + [aux_sym__inline_where_statement_token1] = ACTIONS(6292), + [aux_sym__forall_control_expression_token1] = ACTIONS(6292), + [aux_sym_select_case_statement_token1] = ACTIONS(6292), + [aux_sym_select_case_statement_token3] = ACTIONS(6292), + [aux_sym_select_type_statement_token1] = ACTIONS(6292), + [aux_sym_select_rank_statement_token2] = ACTIONS(6292), + [aux_sym_block_construct_token1] = ACTIONS(6292), + [aux_sym_associate_statement_token1] = ACTIONS(6292), + [aux_sym_format_statement_token1] = ACTIONS(6292), + [aux_sym_print_statement_token1] = ACTIONS(6292), + [aux_sym_open_statement_token1] = ACTIONS(6292), + [aux_sym_close_statement_token1] = ACTIONS(6292), + [aux_sym_inquire_statement_token1] = ACTIONS(6292), + [aux_sym_file_position_statement_token1] = ACTIONS(6292), + [aux_sym_file_position_statement_token2] = ACTIONS(6292), + [aux_sym_file_position_statement_token3] = ACTIONS(6292), + [aux_sym_file_position_statement_token4] = ACTIONS(6292), + [aux_sym_allocate_statement_token1] = ACTIONS(6292), + [aux_sym_entry_statement_token1] = ACTIONS(6292), + [aux_sym_logical_expression_token5] = ACTIONS(6294), + [anon_sym_DOT] = ACTIONS(6292), + [anon_sym_LPAREN_SLASH] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [aux_sym_boolean_literal_token1] = ACTIONS(6294), + [aux_sym_boolean_literal_token2] = ACTIONS(6294), + [aux_sym_null_literal_token1] = ACTIONS(6292), + [aux_sym_coarray_statement_token1] = ACTIONS(6292), + [aux_sym_coarray_statement_token2] = ACTIONS(6292), + [aux_sym_coarray_statement_token6] = ACTIONS(6292), + [aux_sym_coarray_statement_token8] = ACTIONS(6292), + [aux_sym_coarray_statement_token11] = ACTIONS(6292), + [aux_sym_coarray_statement_token12] = ACTIONS(6292), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6292), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6292), + [aux_sym_identifier_token1] = ACTIONS(6292), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6294), + [sym__float_literal] = ACTIONS(6294), + [sym__boz_literal] = ACTIONS(6294), + [sym__string_literal] = ACTIONS(6294), + [sym__string_literal_kind] = ACTIONS(6294), + }, + [2314] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6484), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_end_forall_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [2398] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [2315] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6486), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2316] = { + [aux_sym_preproc_include_token1] = ACTIONS(6296), + [aux_sym_preproc_def_token1] = ACTIONS(6296), + [aux_sym_preproc_if_token1] = ACTIONS(6296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6296), + [sym_preproc_directive] = ACTIONS(6296), + [anon_sym_LPAREN2] = ACTIONS(6296), + [anon_sym_PLUS] = ACTIONS(6298), + [anon_sym_DASH] = ACTIONS(6298), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6296), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6296), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6296), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6296), + [aux_sym_procedure_attributes_token3] = ACTIONS(6296), + [aux_sym_contains_statement_token1] = ACTIONS(6296), + [aux_sym_use_statement_token2] = ACTIONS(6296), + [aux_sym_implicit_statement_token4] = ACTIONS(6296), + [aux_sym_save_statement_token1] = ACTIONS(6296), + [aux_sym_private_statement_token1] = ACTIONS(6296), + [aux_sym_public_statement_token1] = ACTIONS(6296), + [aux_sym_derived_type_definition_token1] = ACTIONS(6296), + [aux_sym_procedure_attribute_token6] = ACTIONS(6296), + [aux_sym_variable_attributes_token2] = ACTIONS(6296), + [aux_sym_variable_attributes_token3] = ACTIONS(6296), + [aux_sym_variable_attributes_token5] = ACTIONS(6296), + [aux_sym__intrinsic_type_token1] = ACTIONS(6296), + [aux_sym__intrinsic_type_token3] = ACTIONS(6296), + [aux_sym__intrinsic_type_token4] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6296), + [aux_sym_type_qualifier_token1] = ACTIONS(6296), + [aux_sym_type_qualifier_token2] = ACTIONS(6296), + [anon_sym_SEMI] = ACTIONS(6298), + [aux_sym_stop_statement_token1] = ACTIONS(6296), + [aux_sym_stop_statement_token2] = ACTIONS(6296), + [aux_sym_subroutine_call_token1] = ACTIONS(6296), + [aux_sym_keyword_statement_token1] = ACTIONS(6296), + [aux_sym_keyword_statement_token2] = ACTIONS(6296), + [aux_sym_keyword_statement_token3] = ACTIONS(6296), + [aux_sym_keyword_statement_token4] = ACTIONS(6296), + [aux_sym_keyword_statement_token6] = ACTIONS(6296), + [aux_sym_keyword_statement_token7] = ACTIONS(6296), + [aux_sym_include_statement_token1] = ACTIONS(6296), + [aux_sym_data_statement_token1] = ACTIONS(6296), + [aux_sym_do_loop_statement_token1] = ACTIONS(6296), + [aux_sym__inline_if_statement_token1] = ACTIONS(6296), + [aux_sym_end_if_statement_token1] = ACTIONS(6296), + [aux_sym_elseif_clause_token2] = ACTIONS(6296), + [aux_sym__inline_where_statement_token1] = ACTIONS(6296), + [aux_sym__forall_control_expression_token1] = ACTIONS(6296), + [aux_sym_select_case_statement_token1] = ACTIONS(6296), + [aux_sym_select_case_statement_token3] = ACTIONS(6296), + [aux_sym_select_type_statement_token1] = ACTIONS(6296), + [aux_sym_select_rank_statement_token2] = ACTIONS(6296), + [aux_sym_block_construct_token1] = ACTIONS(6296), + [aux_sym_associate_statement_token1] = ACTIONS(6296), + [aux_sym_format_statement_token1] = ACTIONS(6296), + [aux_sym_print_statement_token1] = ACTIONS(6296), + [aux_sym_open_statement_token1] = ACTIONS(6296), + [aux_sym_close_statement_token1] = ACTIONS(6296), + [aux_sym_inquire_statement_token1] = ACTIONS(6296), + [aux_sym_file_position_statement_token1] = ACTIONS(6296), + [aux_sym_file_position_statement_token2] = ACTIONS(6296), + [aux_sym_file_position_statement_token3] = ACTIONS(6296), + [aux_sym_file_position_statement_token4] = ACTIONS(6296), + [aux_sym_allocate_statement_token1] = ACTIONS(6296), + [aux_sym_entry_statement_token1] = ACTIONS(6296), + [aux_sym_logical_expression_token5] = ACTIONS(6298), + [anon_sym_DOT] = ACTIONS(6296), + [anon_sym_LPAREN_SLASH] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(6298), + [aux_sym_boolean_literal_token1] = ACTIONS(6298), + [aux_sym_boolean_literal_token2] = ACTIONS(6298), + [aux_sym_null_literal_token1] = ACTIONS(6296), + [aux_sym_coarray_statement_token1] = ACTIONS(6296), + [aux_sym_coarray_statement_token2] = ACTIONS(6296), + [aux_sym_coarray_statement_token6] = ACTIONS(6296), + [aux_sym_coarray_statement_token8] = ACTIONS(6296), + [aux_sym_coarray_statement_token11] = ACTIONS(6296), + [aux_sym_coarray_statement_token12] = ACTIONS(6296), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6296), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6296), + [aux_sym_identifier_token1] = ACTIONS(6296), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6298), + [sym__float_literal] = ACTIONS(6298), + [sym__boz_literal] = ACTIONS(6298), + [sym__string_literal] = ACTIONS(6298), + [sym__string_literal_kind] = ACTIONS(6298), + }, + [2317] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_end_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_contains_statement_token1] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2399] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2318] = { + [aux_sym_preproc_include_token1] = ACTIONS(5890), + [aux_sym_preproc_def_token1] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5890), + [sym_preproc_directive] = ACTIONS(5890), + [anon_sym_LPAREN2] = ACTIONS(5890), + [anon_sym_PLUS] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5890), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5890), + [aux_sym_procedure_attributes_token3] = ACTIONS(5890), + [aux_sym_contains_statement_token1] = ACTIONS(5890), + [aux_sym_use_statement_token2] = ACTIONS(5890), + [aux_sym_implicit_statement_token4] = ACTIONS(5890), + [aux_sym_save_statement_token1] = ACTIONS(5890), + [aux_sym_private_statement_token1] = ACTIONS(5890), + [aux_sym_public_statement_token1] = ACTIONS(5890), + [aux_sym_derived_type_definition_token1] = ACTIONS(5890), + [aux_sym_procedure_attribute_token6] = ACTIONS(5890), + [aux_sym_variable_attributes_token2] = ACTIONS(5890), + [aux_sym_variable_attributes_token3] = ACTIONS(5890), + [aux_sym_variable_attributes_token5] = ACTIONS(5890), + [aux_sym__intrinsic_type_token1] = ACTIONS(5890), + [aux_sym__intrinsic_type_token3] = ACTIONS(5890), + [aux_sym__intrinsic_type_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5890), + [aux_sym_type_qualifier_token1] = ACTIONS(5890), + [aux_sym_type_qualifier_token2] = ACTIONS(5890), + [anon_sym_SEMI] = ACTIONS(5894), + [aux_sym_stop_statement_token1] = ACTIONS(5890), + [aux_sym_stop_statement_token2] = ACTIONS(5890), + [aux_sym_subroutine_call_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token2] = ACTIONS(5890), + [aux_sym_keyword_statement_token3] = ACTIONS(5890), + [aux_sym_keyword_statement_token4] = ACTIONS(5890), + [aux_sym_keyword_statement_token6] = ACTIONS(5890), + [aux_sym_keyword_statement_token7] = ACTIONS(5890), + [aux_sym_include_statement_token1] = ACTIONS(5890), + [aux_sym_data_statement_token1] = ACTIONS(5890), + [aux_sym_do_loop_statement_token1] = ACTIONS(5890), + [aux_sym__inline_if_statement_token1] = ACTIONS(5890), + [aux_sym_end_if_statement_token1] = ACTIONS(5890), + [aux_sym_elseif_clause_token2] = ACTIONS(5890), + [aux_sym__inline_where_statement_token1] = ACTIONS(5890), + [aux_sym__forall_control_expression_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token3] = ACTIONS(5890), + [aux_sym_select_type_statement_token1] = ACTIONS(5890), + [aux_sym_select_rank_statement_token2] = ACTIONS(5890), + [aux_sym_block_construct_token1] = ACTIONS(5890), + [aux_sym_associate_statement_token1] = ACTIONS(5890), + [aux_sym_format_statement_token1] = ACTIONS(5890), + [aux_sym_print_statement_token1] = ACTIONS(5890), + [aux_sym_open_statement_token1] = ACTIONS(5890), + [aux_sym_close_statement_token1] = ACTIONS(5890), + [aux_sym_inquire_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token2] = ACTIONS(5890), + [aux_sym_file_position_statement_token3] = ACTIONS(5890), + [aux_sym_file_position_statement_token4] = ACTIONS(5890), + [aux_sym_allocate_statement_token1] = ACTIONS(5890), + [aux_sym_entry_statement_token1] = ACTIONS(5890), + [aux_sym_logical_expression_token5] = ACTIONS(5894), + [anon_sym_DOT] = ACTIONS(5890), + [anon_sym_LPAREN_SLASH] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(5894), + [aux_sym_boolean_literal_token1] = ACTIONS(5894), + [aux_sym_boolean_literal_token2] = ACTIONS(5894), + [aux_sym_null_literal_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token2] = ACTIONS(5890), + [aux_sym_coarray_statement_token6] = ACTIONS(5890), + [aux_sym_coarray_statement_token8] = ACTIONS(5890), + [aux_sym_coarray_statement_token11] = ACTIONS(5890), + [aux_sym_coarray_statement_token12] = ACTIONS(5890), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5890), + [aux_sym_identifier_token1] = ACTIONS(5890), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5894), + [sym__float_literal] = ACTIONS(5894), + [sym__boz_literal] = ACTIONS(5894), + [sym__string_literal] = ACTIONS(5894), + [sym__string_literal_kind] = ACTIONS(5894), + }, + [2319] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6488), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2320] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6490), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_end_forall_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), - }, - [2400] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_end_forall_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2401] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2321] = { + [aux_sym_preproc_include_token1] = ACTIONS(6078), + [aux_sym_preproc_def_token1] = ACTIONS(6078), + [aux_sym_preproc_if_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6078), + [sym_preproc_directive] = ACTIONS(6078), + [anon_sym_LPAREN2] = ACTIONS(6078), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_DASH] = ACTIONS(6082), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6078), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6078), + [aux_sym_procedure_attributes_token3] = ACTIONS(6078), + [aux_sym_contains_statement_token1] = ACTIONS(6078), + [aux_sym_use_statement_token2] = ACTIONS(6078), + [aux_sym_implicit_statement_token4] = ACTIONS(6078), + [aux_sym_save_statement_token1] = ACTIONS(6078), + [aux_sym_private_statement_token1] = ACTIONS(6078), + [aux_sym_public_statement_token1] = ACTIONS(6078), + [aux_sym_derived_type_definition_token1] = ACTIONS(6078), + [aux_sym_procedure_attribute_token6] = ACTIONS(6078), + [aux_sym_variable_attributes_token2] = ACTIONS(6078), + [aux_sym_variable_attributes_token3] = ACTIONS(6078), + [aux_sym_variable_attributes_token5] = ACTIONS(6078), + [aux_sym__intrinsic_type_token1] = ACTIONS(6078), + [aux_sym__intrinsic_type_token3] = ACTIONS(6078), + [aux_sym__intrinsic_type_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6078), + [aux_sym_type_qualifier_token1] = ACTIONS(6078), + [aux_sym_type_qualifier_token2] = ACTIONS(6078), + [anon_sym_SEMI] = ACTIONS(6082), + [aux_sym_stop_statement_token1] = ACTIONS(6078), + [aux_sym_stop_statement_token2] = ACTIONS(6078), + [aux_sym_subroutine_call_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token2] = ACTIONS(6078), + [aux_sym_keyword_statement_token3] = ACTIONS(6078), + [aux_sym_keyword_statement_token4] = ACTIONS(6078), + [aux_sym_keyword_statement_token6] = ACTIONS(6078), + [aux_sym_keyword_statement_token7] = ACTIONS(6078), + [aux_sym_include_statement_token1] = ACTIONS(6078), + [aux_sym_data_statement_token1] = ACTIONS(6078), + [aux_sym_do_loop_statement_token1] = ACTIONS(6078), + [aux_sym__inline_if_statement_token1] = ACTIONS(6078), + [aux_sym_end_if_statement_token1] = ACTIONS(6078), + [aux_sym_elseif_clause_token2] = ACTIONS(6078), + [aux_sym__inline_where_statement_token1] = ACTIONS(6078), + [aux_sym__forall_control_expression_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token3] = ACTIONS(6078), + [aux_sym_select_type_statement_token1] = ACTIONS(6078), + [aux_sym_select_rank_statement_token2] = ACTIONS(6078), + [aux_sym_block_construct_token1] = ACTIONS(6078), + [aux_sym_associate_statement_token1] = ACTIONS(6078), + [aux_sym_format_statement_token1] = ACTIONS(6078), + [aux_sym_print_statement_token1] = ACTIONS(6078), + [aux_sym_open_statement_token1] = ACTIONS(6078), + [aux_sym_close_statement_token1] = ACTIONS(6078), + [aux_sym_inquire_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token2] = ACTIONS(6078), + [aux_sym_file_position_statement_token3] = ACTIONS(6078), + [aux_sym_file_position_statement_token4] = ACTIONS(6078), + [aux_sym_allocate_statement_token1] = ACTIONS(6078), + [aux_sym_entry_statement_token1] = ACTIONS(6078), + [aux_sym_logical_expression_token5] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_LPAREN_SLASH] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6082), + [aux_sym_boolean_literal_token1] = ACTIONS(6082), + [aux_sym_boolean_literal_token2] = ACTIONS(6082), + [aux_sym_null_literal_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token2] = ACTIONS(6078), + [aux_sym_coarray_statement_token6] = ACTIONS(6078), + [aux_sym_coarray_statement_token8] = ACTIONS(6078), + [aux_sym_coarray_statement_token11] = ACTIONS(6078), + [aux_sym_coarray_statement_token12] = ACTIONS(6078), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6078), + [aux_sym_identifier_token1] = ACTIONS(6078), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(6082), + [sym__float_literal] = ACTIONS(6082), + [sym__boz_literal] = ACTIONS(6082), + [sym__string_literal] = ACTIONS(6082), + [sym__string_literal_kind] = ACTIONS(6082), }, - [2402] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_end_forall_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2322] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6492), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), }, - [2403] = { + [2323] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_contains_statement_token1] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2324] = { + [aux_sym_preproc_include_token1] = ACTIONS(6250), + [aux_sym_preproc_def_token1] = ACTIONS(6250), + [aux_sym_preproc_if_token1] = ACTIONS(6250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6250), + [sym_preproc_directive] = ACTIONS(6250), + [anon_sym_LPAREN2] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6250), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6250), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6250), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6250), + [aux_sym_procedure_attributes_token3] = ACTIONS(6250), + [aux_sym_contains_statement_token1] = ACTIONS(6250), + [aux_sym_use_statement_token2] = ACTIONS(6250), + [aux_sym_implicit_statement_token4] = ACTIONS(6250), + [aux_sym_save_statement_token1] = ACTIONS(6250), + [aux_sym_private_statement_token1] = ACTIONS(6250), + [aux_sym_public_statement_token1] = ACTIONS(6250), + [aux_sym_derived_type_definition_token1] = ACTIONS(6250), + [aux_sym_procedure_attribute_token6] = ACTIONS(6250), + [aux_sym_variable_attributes_token2] = ACTIONS(6250), + [aux_sym_variable_attributes_token3] = ACTIONS(6250), + [aux_sym_variable_attributes_token5] = ACTIONS(6250), + [aux_sym__intrinsic_type_token1] = ACTIONS(6250), + [aux_sym__intrinsic_type_token3] = ACTIONS(6250), + [aux_sym__intrinsic_type_token4] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6250), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6250), + [aux_sym_type_qualifier_token1] = ACTIONS(6250), + [aux_sym_type_qualifier_token2] = ACTIONS(6250), + [anon_sym_SEMI] = ACTIONS(6252), + [aux_sym_stop_statement_token1] = ACTIONS(6250), + [aux_sym_stop_statement_token2] = ACTIONS(6250), + [aux_sym_subroutine_call_token1] = ACTIONS(6250), + [aux_sym_keyword_statement_token1] = ACTIONS(6250), + [aux_sym_keyword_statement_token2] = ACTIONS(6250), + [aux_sym_keyword_statement_token3] = ACTIONS(6250), + [aux_sym_keyword_statement_token4] = ACTIONS(6250), + [aux_sym_keyword_statement_token6] = ACTIONS(6250), + [aux_sym_keyword_statement_token7] = ACTIONS(6250), + [aux_sym_include_statement_token1] = ACTIONS(6250), + [aux_sym_data_statement_token1] = ACTIONS(6250), + [aux_sym_do_loop_statement_token1] = ACTIONS(6250), + [aux_sym__inline_if_statement_token1] = ACTIONS(6250), + [aux_sym_end_if_statement_token1] = ACTIONS(6250), + [aux_sym_elseif_clause_token2] = ACTIONS(6250), + [aux_sym__inline_where_statement_token1] = ACTIONS(6250), + [aux_sym__forall_control_expression_token1] = ACTIONS(6250), + [aux_sym_select_case_statement_token1] = ACTIONS(6250), + [aux_sym_select_case_statement_token3] = ACTIONS(6250), + [aux_sym_select_type_statement_token1] = ACTIONS(6250), + [aux_sym_select_rank_statement_token2] = ACTIONS(6250), + [aux_sym_block_construct_token1] = ACTIONS(6250), + [aux_sym_associate_statement_token1] = ACTIONS(6250), + [aux_sym_format_statement_token1] = ACTIONS(6250), + [aux_sym_print_statement_token1] = ACTIONS(6250), + [aux_sym_open_statement_token1] = ACTIONS(6250), + [aux_sym_close_statement_token1] = ACTIONS(6250), + [aux_sym_inquire_statement_token1] = ACTIONS(6250), + [aux_sym_file_position_statement_token1] = ACTIONS(6250), + [aux_sym_file_position_statement_token2] = ACTIONS(6250), + [aux_sym_file_position_statement_token3] = ACTIONS(6250), + [aux_sym_file_position_statement_token4] = ACTIONS(6250), + [aux_sym_allocate_statement_token1] = ACTIONS(6250), + [aux_sym_entry_statement_token1] = ACTIONS(6250), + [aux_sym_logical_expression_token5] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_LPAREN_SLASH] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6252), + [aux_sym_boolean_literal_token1] = ACTIONS(6252), + [aux_sym_boolean_literal_token2] = ACTIONS(6252), + [aux_sym_null_literal_token1] = ACTIONS(6250), + [aux_sym_coarray_statement_token1] = ACTIONS(6250), + [aux_sym_coarray_statement_token2] = ACTIONS(6250), + [aux_sym_coarray_statement_token6] = ACTIONS(6250), + [aux_sym_coarray_statement_token8] = ACTIONS(6250), + [aux_sym_coarray_statement_token11] = ACTIONS(6250), + [aux_sym_coarray_statement_token12] = ACTIONS(6250), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6250), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6250), + [aux_sym_identifier_token1] = ACTIONS(6250), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6252), + [sym__float_literal] = ACTIONS(6252), + [sym__boz_literal] = ACTIONS(6252), + [sym__string_literal] = ACTIONS(6252), + [sym__string_literal_kind] = ACTIONS(6252), + }, + [2325] = { + [aux_sym_preproc_include_token1] = ACTIONS(5960), + [aux_sym_preproc_def_token1] = ACTIONS(5960), + [aux_sym_preproc_if_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5960), + [sym_preproc_directive] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5960), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5960), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5960), + [aux_sym_procedure_attributes_token3] = ACTIONS(5960), + [aux_sym_contains_statement_token1] = ACTIONS(5960), + [aux_sym_use_statement_token2] = ACTIONS(5960), + [aux_sym_implicit_statement_token4] = ACTIONS(5960), + [aux_sym_save_statement_token1] = ACTIONS(5960), + [aux_sym_private_statement_token1] = ACTIONS(5960), + [aux_sym_public_statement_token1] = ACTIONS(5960), + [aux_sym_derived_type_definition_token1] = ACTIONS(5960), + [aux_sym_procedure_attribute_token6] = ACTIONS(5960), + [aux_sym_variable_attributes_token2] = ACTIONS(5960), + [aux_sym_variable_attributes_token3] = ACTIONS(5960), + [aux_sym_variable_attributes_token5] = ACTIONS(5960), + [aux_sym__intrinsic_type_token1] = ACTIONS(5960), + [aux_sym__intrinsic_type_token3] = ACTIONS(5960), + [aux_sym__intrinsic_type_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5960), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5960), + [aux_sym_type_qualifier_token1] = ACTIONS(5960), + [aux_sym_type_qualifier_token2] = ACTIONS(5960), + [anon_sym_SEMI] = ACTIONS(5964), + [aux_sym_stop_statement_token1] = ACTIONS(5960), + [aux_sym_stop_statement_token2] = ACTIONS(5960), + [aux_sym_subroutine_call_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token1] = ACTIONS(5960), + [aux_sym_keyword_statement_token2] = ACTIONS(5960), + [aux_sym_keyword_statement_token3] = ACTIONS(5960), + [aux_sym_keyword_statement_token4] = ACTIONS(5960), + [aux_sym_keyword_statement_token6] = ACTIONS(5960), + [aux_sym_keyword_statement_token7] = ACTIONS(5960), + [aux_sym_include_statement_token1] = ACTIONS(5960), + [aux_sym_data_statement_token1] = ACTIONS(5960), + [aux_sym_do_loop_statement_token1] = ACTIONS(5960), + [aux_sym__inline_if_statement_token1] = ACTIONS(5960), + [aux_sym_end_if_statement_token1] = ACTIONS(5960), + [aux_sym_elseif_clause_token2] = ACTIONS(5960), + [aux_sym__inline_where_statement_token1] = ACTIONS(5960), + [aux_sym__forall_control_expression_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token1] = ACTIONS(5960), + [aux_sym_select_case_statement_token3] = ACTIONS(5960), + [aux_sym_select_type_statement_token1] = ACTIONS(5960), + [aux_sym_select_rank_statement_token2] = ACTIONS(5960), + [aux_sym_block_construct_token1] = ACTIONS(5960), + [aux_sym_associate_statement_token1] = ACTIONS(5960), + [aux_sym_format_statement_token1] = ACTIONS(5960), + [aux_sym_print_statement_token1] = ACTIONS(5960), + [aux_sym_open_statement_token1] = ACTIONS(5960), + [aux_sym_close_statement_token1] = ACTIONS(5960), + [aux_sym_inquire_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token1] = ACTIONS(5960), + [aux_sym_file_position_statement_token2] = ACTIONS(5960), + [aux_sym_file_position_statement_token3] = ACTIONS(5960), + [aux_sym_file_position_statement_token4] = ACTIONS(5960), + [aux_sym_allocate_statement_token1] = ACTIONS(5960), + [aux_sym_entry_statement_token1] = ACTIONS(5960), + [aux_sym_logical_expression_token5] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5960), + [anon_sym_LPAREN_SLASH] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(5964), + [aux_sym_boolean_literal_token1] = ACTIONS(5964), + [aux_sym_boolean_literal_token2] = ACTIONS(5964), + [aux_sym_null_literal_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_statement_token2] = ACTIONS(5960), + [aux_sym_coarray_statement_token6] = ACTIONS(5960), + [aux_sym_coarray_statement_token8] = ACTIONS(5960), + [aux_sym_coarray_statement_token11] = ACTIONS(5960), + [aux_sym_coarray_statement_token12] = ACTIONS(5960), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5960), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5960), + [aux_sym_identifier_token1] = ACTIONS(5960), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5964), + [sym__float_literal] = ACTIONS(5964), + [sym__boz_literal] = ACTIONS(5964), + [sym__string_literal] = ACTIONS(5964), + [sym__string_literal_kind] = ACTIONS(5964), + }, + [2326] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_contains_statement_token1] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2327] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -383705,8 +376197,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [sym_preproc_comment] = ACTIONS(6494), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), @@ -383736,7 +376229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -383754,12 +376247,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_elseif_clause_token2] = ACTIONS(4571), [aux_sym__inline_where_statement_token1] = ACTIONS(4571), [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_end_forall_statement_token1] = ACTIONS(4571), [aux_sym_select_case_statement_token1] = ACTIONS(4571), [aux_sym_select_case_statement_token3] = ACTIONS(4571), [aux_sym_select_type_statement_token1] = ACTIONS(4571), [aux_sym_select_rank_statement_token2] = ACTIONS(4571), [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4571), [aux_sym_associate_statement_token1] = ACTIONS(4571), [aux_sym_format_statement_token1] = ACTIONS(4571), [aux_sym_print_statement_token1] = ACTIONS(4571), @@ -383772,12 +376265,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -383789,517 +376282,722 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [2404] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_end_forall_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2405] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2328] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6496), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_end_forall_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2406] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_end_forall_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [2329] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_end_program_statement_token2] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2407] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2330] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6498), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2408] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2331] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_end_program_statement_token2] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_contains_statement_token1] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), }, - [2409] = { + [2332] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6500), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2333] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_end_program_statement_token2] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_contains_statement_token1] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2334] = { + [aux_sym_preproc_include_token1] = ACTIONS(6292), + [aux_sym_preproc_def_token1] = ACTIONS(6292), + [aux_sym_preproc_if_token1] = ACTIONS(6292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6292), + [sym_preproc_directive] = ACTIONS(6292), + [anon_sym_LPAREN2] = ACTIONS(6292), + [anon_sym_PLUS] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6292), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6292), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6292), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6292), + [aux_sym_procedure_attributes_token3] = ACTIONS(6292), + [aux_sym_contains_statement_token1] = ACTIONS(6292), + [aux_sym_use_statement_token2] = ACTIONS(6292), + [aux_sym_implicit_statement_token4] = ACTIONS(6292), + [aux_sym_save_statement_token1] = ACTIONS(6292), + [aux_sym_private_statement_token1] = ACTIONS(6292), + [aux_sym_public_statement_token1] = ACTIONS(6292), + [aux_sym_derived_type_definition_token1] = ACTIONS(6292), + [aux_sym_procedure_attribute_token6] = ACTIONS(6292), + [aux_sym_variable_attributes_token2] = ACTIONS(6292), + [aux_sym_variable_attributes_token3] = ACTIONS(6292), + [aux_sym_variable_attributes_token5] = ACTIONS(6292), + [aux_sym__intrinsic_type_token1] = ACTIONS(6292), + [aux_sym__intrinsic_type_token3] = ACTIONS(6292), + [aux_sym__intrinsic_type_token4] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6292), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6292), + [aux_sym_type_qualifier_token1] = ACTIONS(6292), + [aux_sym_type_qualifier_token2] = ACTIONS(6292), + [anon_sym_SEMI] = ACTIONS(6294), + [aux_sym_stop_statement_token1] = ACTIONS(6292), + [aux_sym_stop_statement_token2] = ACTIONS(6292), + [aux_sym_subroutine_call_token1] = ACTIONS(6292), + [aux_sym_keyword_statement_token1] = ACTIONS(6292), + [aux_sym_keyword_statement_token2] = ACTIONS(6292), + [aux_sym_keyword_statement_token3] = ACTIONS(6292), + [aux_sym_keyword_statement_token4] = ACTIONS(6292), + [aux_sym_keyword_statement_token6] = ACTIONS(6292), + [aux_sym_keyword_statement_token7] = ACTIONS(6292), + [aux_sym_include_statement_token1] = ACTIONS(6292), + [aux_sym_data_statement_token1] = ACTIONS(6292), + [aux_sym_do_loop_statement_token1] = ACTIONS(6292), + [aux_sym__inline_if_statement_token1] = ACTIONS(6292), + [aux_sym_end_if_statement_token1] = ACTIONS(6292), + [aux_sym_elseif_clause_token2] = ACTIONS(6292), + [aux_sym__inline_where_statement_token1] = ACTIONS(6292), + [aux_sym__forall_control_expression_token1] = ACTIONS(6292), + [aux_sym_select_case_statement_token1] = ACTIONS(6292), + [aux_sym_select_case_statement_token3] = ACTIONS(6292), + [aux_sym_select_type_statement_token1] = ACTIONS(6292), + [aux_sym_select_rank_statement_token2] = ACTIONS(6292), + [aux_sym_block_construct_token1] = ACTIONS(6292), + [aux_sym_associate_statement_token1] = ACTIONS(6292), + [aux_sym_format_statement_token1] = ACTIONS(6292), + [aux_sym_print_statement_token1] = ACTIONS(6292), + [aux_sym_open_statement_token1] = ACTIONS(6292), + [aux_sym_close_statement_token1] = ACTIONS(6292), + [aux_sym_inquire_statement_token1] = ACTIONS(6292), + [aux_sym_file_position_statement_token1] = ACTIONS(6292), + [aux_sym_file_position_statement_token2] = ACTIONS(6292), + [aux_sym_file_position_statement_token3] = ACTIONS(6292), + [aux_sym_file_position_statement_token4] = ACTIONS(6292), + [aux_sym_allocate_statement_token1] = ACTIONS(6292), + [aux_sym_entry_statement_token1] = ACTIONS(6292), + [aux_sym_logical_expression_token5] = ACTIONS(6294), + [anon_sym_DOT] = ACTIONS(6292), + [anon_sym_LPAREN_SLASH] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [aux_sym_boolean_literal_token1] = ACTIONS(6294), + [aux_sym_boolean_literal_token2] = ACTIONS(6294), + [aux_sym_null_literal_token1] = ACTIONS(6292), + [aux_sym_coarray_statement_token1] = ACTIONS(6292), + [aux_sym_coarray_statement_token2] = ACTIONS(6292), + [aux_sym_coarray_statement_token6] = ACTIONS(6292), + [aux_sym_coarray_statement_token8] = ACTIONS(6292), + [aux_sym_coarray_statement_token11] = ACTIONS(6292), + [aux_sym_coarray_statement_token12] = ACTIONS(6292), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6292), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6292), + [aux_sym_identifier_token1] = ACTIONS(6292), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6294), + [sym__float_literal] = ACTIONS(6294), + [sym__boz_literal] = ACTIONS(6294), + [sym__string_literal] = ACTIONS(6294), + [sym__string_literal_kind] = ACTIONS(6294), + }, + [2335] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_contains_statement_token1] = ACTIONS(4571), [aux_sym_use_statement_token2] = ACTIONS(4571), [aux_sym_implicit_statement_token4] = ACTIONS(4571), [aux_sym_save_statement_token1] = ACTIONS(4571), @@ -384324,7 +377022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -384347,7 +377045,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(4571), [aux_sym_select_rank_statement_token2] = ACTIONS(4571), [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4571), [aux_sym_associate_statement_token1] = ACTIONS(4571), [aux_sym_format_statement_token1] = ACTIONS(4571), [aux_sym_print_statement_token1] = ACTIONS(4571), @@ -384360,12 +377057,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -384377,2259 +377074,4163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [2410] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2411] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2336] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_end_program_statement_token2] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_contains_statement_token1] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2412] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [2337] = { + [aux_sym_preproc_include_token1] = ACTIONS(6296), + [aux_sym_preproc_def_token1] = ACTIONS(6296), + [aux_sym_preproc_if_token1] = ACTIONS(6296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6296), + [sym_preproc_directive] = ACTIONS(6296), + [anon_sym_LPAREN2] = ACTIONS(6296), + [anon_sym_PLUS] = ACTIONS(6298), + [anon_sym_DASH] = ACTIONS(6298), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6296), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6296), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6296), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6296), + [aux_sym_procedure_attributes_token3] = ACTIONS(6296), + [aux_sym_contains_statement_token1] = ACTIONS(6296), + [aux_sym_use_statement_token2] = ACTIONS(6296), + [aux_sym_implicit_statement_token4] = ACTIONS(6296), + [aux_sym_save_statement_token1] = ACTIONS(6296), + [aux_sym_private_statement_token1] = ACTIONS(6296), + [aux_sym_public_statement_token1] = ACTIONS(6296), + [aux_sym_derived_type_definition_token1] = ACTIONS(6296), + [aux_sym_procedure_attribute_token6] = ACTIONS(6296), + [aux_sym_variable_attributes_token2] = ACTIONS(6296), + [aux_sym_variable_attributes_token3] = ACTIONS(6296), + [aux_sym_variable_attributes_token5] = ACTIONS(6296), + [aux_sym__intrinsic_type_token1] = ACTIONS(6296), + [aux_sym__intrinsic_type_token3] = ACTIONS(6296), + [aux_sym__intrinsic_type_token4] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6296), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6296), + [aux_sym_type_qualifier_token1] = ACTIONS(6296), + [aux_sym_type_qualifier_token2] = ACTIONS(6296), + [anon_sym_SEMI] = ACTIONS(6298), + [aux_sym_stop_statement_token1] = ACTIONS(6296), + [aux_sym_stop_statement_token2] = ACTIONS(6296), + [aux_sym_subroutine_call_token1] = ACTIONS(6296), + [aux_sym_keyword_statement_token1] = ACTIONS(6296), + [aux_sym_keyword_statement_token2] = ACTIONS(6296), + [aux_sym_keyword_statement_token3] = ACTIONS(6296), + [aux_sym_keyword_statement_token4] = ACTIONS(6296), + [aux_sym_keyword_statement_token6] = ACTIONS(6296), + [aux_sym_keyword_statement_token7] = ACTIONS(6296), + [aux_sym_include_statement_token1] = ACTIONS(6296), + [aux_sym_data_statement_token1] = ACTIONS(6296), + [aux_sym_do_loop_statement_token1] = ACTIONS(6296), + [aux_sym__inline_if_statement_token1] = ACTIONS(6296), + [aux_sym_end_if_statement_token1] = ACTIONS(6296), + [aux_sym_elseif_clause_token2] = ACTIONS(6296), + [aux_sym__inline_where_statement_token1] = ACTIONS(6296), + [aux_sym__forall_control_expression_token1] = ACTIONS(6296), + [aux_sym_select_case_statement_token1] = ACTIONS(6296), + [aux_sym_select_case_statement_token3] = ACTIONS(6296), + [aux_sym_select_type_statement_token1] = ACTIONS(6296), + [aux_sym_select_rank_statement_token2] = ACTIONS(6296), + [aux_sym_block_construct_token1] = ACTIONS(6296), + [aux_sym_associate_statement_token1] = ACTIONS(6296), + [aux_sym_format_statement_token1] = ACTIONS(6296), + [aux_sym_print_statement_token1] = ACTIONS(6296), + [aux_sym_open_statement_token1] = ACTIONS(6296), + [aux_sym_close_statement_token1] = ACTIONS(6296), + [aux_sym_inquire_statement_token1] = ACTIONS(6296), + [aux_sym_file_position_statement_token1] = ACTIONS(6296), + [aux_sym_file_position_statement_token2] = ACTIONS(6296), + [aux_sym_file_position_statement_token3] = ACTIONS(6296), + [aux_sym_file_position_statement_token4] = ACTIONS(6296), + [aux_sym_allocate_statement_token1] = ACTIONS(6296), + [aux_sym_entry_statement_token1] = ACTIONS(6296), + [aux_sym_logical_expression_token5] = ACTIONS(6298), + [anon_sym_DOT] = ACTIONS(6296), + [anon_sym_LPAREN_SLASH] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(6298), + [aux_sym_boolean_literal_token1] = ACTIONS(6298), + [aux_sym_boolean_literal_token2] = ACTIONS(6298), + [aux_sym_null_literal_token1] = ACTIONS(6296), + [aux_sym_coarray_statement_token1] = ACTIONS(6296), + [aux_sym_coarray_statement_token2] = ACTIONS(6296), + [aux_sym_coarray_statement_token6] = ACTIONS(6296), + [aux_sym_coarray_statement_token8] = ACTIONS(6296), + [aux_sym_coarray_statement_token11] = ACTIONS(6296), + [aux_sym_coarray_statement_token12] = ACTIONS(6296), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6296), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6296), + [aux_sym_identifier_token1] = ACTIONS(6296), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6298), + [sym__float_literal] = ACTIONS(6298), + [sym__boz_literal] = ACTIONS(6298), + [sym__string_literal] = ACTIONS(6298), + [sym__string_literal_kind] = ACTIONS(6298), }, - [2413] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [2338] = { + [aux_sym_preproc_include_token1] = ACTIONS(5890), + [aux_sym_preproc_def_token1] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5890), + [sym_preproc_directive] = ACTIONS(5890), + [anon_sym_LPAREN2] = ACTIONS(5890), + [anon_sym_PLUS] = ACTIONS(5894), + [anon_sym_DASH] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5890), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5890), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5890), + [aux_sym_procedure_attributes_token3] = ACTIONS(5890), + [aux_sym_contains_statement_token1] = ACTIONS(5890), + [aux_sym_use_statement_token2] = ACTIONS(5890), + [aux_sym_implicit_statement_token4] = ACTIONS(5890), + [aux_sym_save_statement_token1] = ACTIONS(5890), + [aux_sym_private_statement_token1] = ACTIONS(5890), + [aux_sym_public_statement_token1] = ACTIONS(5890), + [aux_sym_derived_type_definition_token1] = ACTIONS(5890), + [aux_sym_procedure_attribute_token6] = ACTIONS(5890), + [aux_sym_variable_attributes_token2] = ACTIONS(5890), + [aux_sym_variable_attributes_token3] = ACTIONS(5890), + [aux_sym_variable_attributes_token5] = ACTIONS(5890), + [aux_sym__intrinsic_type_token1] = ACTIONS(5890), + [aux_sym__intrinsic_type_token3] = ACTIONS(5890), + [aux_sym__intrinsic_type_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5890), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5890), + [aux_sym_type_qualifier_token1] = ACTIONS(5890), + [aux_sym_type_qualifier_token2] = ACTIONS(5890), + [anon_sym_SEMI] = ACTIONS(5894), + [aux_sym_stop_statement_token1] = ACTIONS(5890), + [aux_sym_stop_statement_token2] = ACTIONS(5890), + [aux_sym_subroutine_call_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token1] = ACTIONS(5890), + [aux_sym_keyword_statement_token2] = ACTIONS(5890), + [aux_sym_keyword_statement_token3] = ACTIONS(5890), + [aux_sym_keyword_statement_token4] = ACTIONS(5890), + [aux_sym_keyword_statement_token6] = ACTIONS(5890), + [aux_sym_keyword_statement_token7] = ACTIONS(5890), + [aux_sym_include_statement_token1] = ACTIONS(5890), + [aux_sym_data_statement_token1] = ACTIONS(5890), + [aux_sym_do_loop_statement_token1] = ACTIONS(5890), + [aux_sym__inline_if_statement_token1] = ACTIONS(5890), + [aux_sym_end_if_statement_token1] = ACTIONS(5890), + [aux_sym_elseif_clause_token2] = ACTIONS(5890), + [aux_sym__inline_where_statement_token1] = ACTIONS(5890), + [aux_sym__forall_control_expression_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token1] = ACTIONS(5890), + [aux_sym_select_case_statement_token3] = ACTIONS(5890), + [aux_sym_select_type_statement_token1] = ACTIONS(5890), + [aux_sym_select_rank_statement_token2] = ACTIONS(5890), + [aux_sym_block_construct_token1] = ACTIONS(5890), + [aux_sym_associate_statement_token1] = ACTIONS(5890), + [aux_sym_format_statement_token1] = ACTIONS(5890), + [aux_sym_print_statement_token1] = ACTIONS(5890), + [aux_sym_open_statement_token1] = ACTIONS(5890), + [aux_sym_close_statement_token1] = ACTIONS(5890), + [aux_sym_inquire_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token1] = ACTIONS(5890), + [aux_sym_file_position_statement_token2] = ACTIONS(5890), + [aux_sym_file_position_statement_token3] = ACTIONS(5890), + [aux_sym_file_position_statement_token4] = ACTIONS(5890), + [aux_sym_allocate_statement_token1] = ACTIONS(5890), + [aux_sym_entry_statement_token1] = ACTIONS(5890), + [aux_sym_logical_expression_token5] = ACTIONS(5894), + [anon_sym_DOT] = ACTIONS(5890), + [anon_sym_LPAREN_SLASH] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(5894), + [aux_sym_boolean_literal_token1] = ACTIONS(5894), + [aux_sym_boolean_literal_token2] = ACTIONS(5894), + [aux_sym_null_literal_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_statement_token2] = ACTIONS(5890), + [aux_sym_coarray_statement_token6] = ACTIONS(5890), + [aux_sym_coarray_statement_token8] = ACTIONS(5890), + [aux_sym_coarray_statement_token11] = ACTIONS(5890), + [aux_sym_coarray_statement_token12] = ACTIONS(5890), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5890), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5890), + [aux_sym_identifier_token1] = ACTIONS(5890), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5894), + [sym__float_literal] = ACTIONS(5894), + [sym__boz_literal] = ACTIONS(5894), + [sym__string_literal] = ACTIONS(5894), + [sym__string_literal_kind] = ACTIONS(5894), }, - [2414] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2339] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_end_forall_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_contains_statement_token1] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2415] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [2340] = { + [aux_sym_preproc_include_token1] = ACTIONS(6078), + [aux_sym_preproc_def_token1] = ACTIONS(6078), + [aux_sym_preproc_if_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6078), + [sym_preproc_directive] = ACTIONS(6078), + [anon_sym_LPAREN2] = ACTIONS(6078), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_DASH] = ACTIONS(6082), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6078), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6078), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6078), + [aux_sym_procedure_attributes_token3] = ACTIONS(6078), + [aux_sym_contains_statement_token1] = ACTIONS(6078), + [aux_sym_use_statement_token2] = ACTIONS(6078), + [aux_sym_implicit_statement_token4] = ACTIONS(6078), + [aux_sym_save_statement_token1] = ACTIONS(6078), + [aux_sym_private_statement_token1] = ACTIONS(6078), + [aux_sym_public_statement_token1] = ACTIONS(6078), + [aux_sym_derived_type_definition_token1] = ACTIONS(6078), + [aux_sym_procedure_attribute_token6] = ACTIONS(6078), + [aux_sym_variable_attributes_token2] = ACTIONS(6078), + [aux_sym_variable_attributes_token3] = ACTIONS(6078), + [aux_sym_variable_attributes_token5] = ACTIONS(6078), + [aux_sym__intrinsic_type_token1] = ACTIONS(6078), + [aux_sym__intrinsic_type_token3] = ACTIONS(6078), + [aux_sym__intrinsic_type_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6078), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6078), + [aux_sym_type_qualifier_token1] = ACTIONS(6078), + [aux_sym_type_qualifier_token2] = ACTIONS(6078), + [anon_sym_SEMI] = ACTIONS(6082), + [aux_sym_stop_statement_token1] = ACTIONS(6078), + [aux_sym_stop_statement_token2] = ACTIONS(6078), + [aux_sym_subroutine_call_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token1] = ACTIONS(6078), + [aux_sym_keyword_statement_token2] = ACTIONS(6078), + [aux_sym_keyword_statement_token3] = ACTIONS(6078), + [aux_sym_keyword_statement_token4] = ACTIONS(6078), + [aux_sym_keyword_statement_token6] = ACTIONS(6078), + [aux_sym_keyword_statement_token7] = ACTIONS(6078), + [aux_sym_include_statement_token1] = ACTIONS(6078), + [aux_sym_data_statement_token1] = ACTIONS(6078), + [aux_sym_do_loop_statement_token1] = ACTIONS(6078), + [aux_sym__inline_if_statement_token1] = ACTIONS(6078), + [aux_sym_end_if_statement_token1] = ACTIONS(6078), + [aux_sym_elseif_clause_token2] = ACTIONS(6078), + [aux_sym__inline_where_statement_token1] = ACTIONS(6078), + [aux_sym__forall_control_expression_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token1] = ACTIONS(6078), + [aux_sym_select_case_statement_token3] = ACTIONS(6078), + [aux_sym_select_type_statement_token1] = ACTIONS(6078), + [aux_sym_select_rank_statement_token2] = ACTIONS(6078), + [aux_sym_block_construct_token1] = ACTIONS(6078), + [aux_sym_associate_statement_token1] = ACTIONS(6078), + [aux_sym_format_statement_token1] = ACTIONS(6078), + [aux_sym_print_statement_token1] = ACTIONS(6078), + [aux_sym_open_statement_token1] = ACTIONS(6078), + [aux_sym_close_statement_token1] = ACTIONS(6078), + [aux_sym_inquire_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token1] = ACTIONS(6078), + [aux_sym_file_position_statement_token2] = ACTIONS(6078), + [aux_sym_file_position_statement_token3] = ACTIONS(6078), + [aux_sym_file_position_statement_token4] = ACTIONS(6078), + [aux_sym_allocate_statement_token1] = ACTIONS(6078), + [aux_sym_entry_statement_token1] = ACTIONS(6078), + [aux_sym_logical_expression_token5] = ACTIONS(6082), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_LPAREN_SLASH] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(6082), + [aux_sym_boolean_literal_token1] = ACTIONS(6082), + [aux_sym_boolean_literal_token2] = ACTIONS(6082), + [aux_sym_null_literal_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_statement_token2] = ACTIONS(6078), + [aux_sym_coarray_statement_token6] = ACTIONS(6078), + [aux_sym_coarray_statement_token8] = ACTIONS(6078), + [aux_sym_coarray_statement_token11] = ACTIONS(6078), + [aux_sym_coarray_statement_token12] = ACTIONS(6078), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6078), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6078), + [aux_sym_identifier_token1] = ACTIONS(6078), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [sym__integer_literal] = ACTIONS(6082), + [sym__float_literal] = ACTIONS(6082), + [sym__boz_literal] = ACTIONS(6082), + [sym__string_literal] = ACTIONS(6082), + [sym__string_literal_kind] = ACTIONS(6082), }, - [2416] = { - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4269), - [sym_preproc_comment] = ACTIONS(6546), - [anon_sym_PLUS] = ACTIONS(5576), - [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4269), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4269), - [aux_sym_procedure_attributes_token3] = ACTIONS(4269), - [aux_sym_use_statement_token2] = ACTIONS(4269), - [aux_sym_implicit_statement_token4] = ACTIONS(4269), - [aux_sym_save_statement_token1] = ACTIONS(4269), - [aux_sym_private_statement_token1] = ACTIONS(4269), - [aux_sym_public_statement_token1] = ACTIONS(4269), - [aux_sym_derived_type_definition_token1] = ACTIONS(4269), - [aux_sym_procedure_attribute_token6] = ACTIONS(4269), - [aux_sym_variable_attributes_token2] = ACTIONS(4269), - [aux_sym_variable_attributes_token3] = ACTIONS(4269), - [aux_sym_variable_attributes_token5] = ACTIONS(4269), - [aux_sym__intrinsic_type_token1] = ACTIONS(4269), - [aux_sym__intrinsic_type_token3] = ACTIONS(4269), - [aux_sym__intrinsic_type_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4269), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4269), - [aux_sym_type_qualifier_token1] = ACTIONS(4269), - [aux_sym_type_qualifier_token2] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(5576), - [aux_sym_stop_statement_token1] = ACTIONS(4269), - [aux_sym_stop_statement_token2] = ACTIONS(4269), - [aux_sym_subroutine_call_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token1] = ACTIONS(4269), - [aux_sym_keyword_statement_token2] = ACTIONS(4269), - [aux_sym_keyword_statement_token3] = ACTIONS(4269), - [aux_sym_keyword_statement_token4] = ACTIONS(4269), - [aux_sym_keyword_statement_token6] = ACTIONS(4269), - [aux_sym_keyword_statement_token7] = ACTIONS(4269), - [aux_sym_include_statement_token1] = ACTIONS(4269), - [aux_sym_data_statement_token1] = ACTIONS(4269), - [aux_sym_do_loop_statement_token1] = ACTIONS(4269), - [aux_sym__inline_if_statement_token1] = ACTIONS(4269), - [aux_sym_end_if_statement_token1] = ACTIONS(4269), - [aux_sym_elseif_clause_token2] = ACTIONS(4269), - [aux_sym__inline_where_statement_token1] = ACTIONS(4269), - [aux_sym__forall_control_expression_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token1] = ACTIONS(4269), - [aux_sym_select_case_statement_token3] = ACTIONS(4269), - [aux_sym_select_type_statement_token1] = ACTIONS(4269), - [aux_sym_select_rank_statement_token2] = ACTIONS(4269), - [aux_sym_block_construct_token1] = ACTIONS(4269), - [aux_sym_associate_statement_token1] = ACTIONS(4269), - [aux_sym_format_statement_token1] = ACTIONS(4269), - [aux_sym_print_statement_token1] = ACTIONS(4269), - [aux_sym_open_statement_token1] = ACTIONS(4269), - [aux_sym_close_statement_token1] = ACTIONS(4269), - [aux_sym_inquire_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token1] = ACTIONS(4269), - [aux_sym_file_position_statement_token2] = ACTIONS(4269), - [aux_sym_file_position_statement_token3] = ACTIONS(4269), - [aux_sym_file_position_statement_token4] = ACTIONS(4269), - [aux_sym_allocate_statement_token1] = ACTIONS(4269), - [aux_sym_entry_statement_token1] = ACTIONS(4269), - [aux_sym_logical_expression_token5] = ACTIONS(5576), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_LPAREN_SLASH] = ACTIONS(5576), - [anon_sym_LBRACK] = ACTIONS(5576), - [aux_sym_boolean_literal_token1] = ACTIONS(5576), - [aux_sym_boolean_literal_token2] = ACTIONS(5576), - [aux_sym_null_literal_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_statement_token2] = ACTIONS(4269), - [aux_sym_coarray_statement_token6] = ACTIONS(4269), - [aux_sym_coarray_statement_token8] = ACTIONS(4269), - [aux_sym_coarray_statement_token11] = ACTIONS(4269), - [aux_sym_coarray_statement_token12] = ACTIONS(4269), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4269), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4269), - [aux_sym_identifier_token1] = ACTIONS(4269), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5576), - [sym__float_literal] = ACTIONS(5576), - [sym__boz_literal] = ACTIONS(5576), - [sym__string_literal] = ACTIONS(5576), - [sym__string_literal_kind] = ACTIONS(5576), + [2341] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(6502), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_end_forall_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2417] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2342] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6504), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2343] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_end_forall_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2344] = { + [aux_sym_preproc_include_token1] = ACTIONS(6350), + [aux_sym_preproc_def_token1] = ACTIONS(6350), + [aux_sym_preproc_if_token1] = ACTIONS(6350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6350), + [sym_preproc_directive] = ACTIONS(6350), + [anon_sym_LPAREN2] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6352), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6350), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6350), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6350), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6350), + [aux_sym_procedure_attributes_token3] = ACTIONS(6350), + [aux_sym_contains_statement_token1] = ACTIONS(6350), + [aux_sym_use_statement_token2] = ACTIONS(6350), + [aux_sym_implicit_statement_token4] = ACTIONS(6350), + [aux_sym_save_statement_token1] = ACTIONS(6350), + [aux_sym_private_statement_token1] = ACTIONS(6350), + [aux_sym_public_statement_token1] = ACTIONS(6350), + [aux_sym_derived_type_definition_token1] = ACTIONS(6350), + [aux_sym_procedure_attribute_token6] = ACTIONS(6350), + [aux_sym_variable_attributes_token2] = ACTIONS(6350), + [aux_sym_variable_attributes_token3] = ACTIONS(6350), + [aux_sym_variable_attributes_token5] = ACTIONS(6350), + [aux_sym__intrinsic_type_token1] = ACTIONS(6350), + [aux_sym__intrinsic_type_token3] = ACTIONS(6350), + [aux_sym__intrinsic_type_token4] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6350), + [aux_sym_type_qualifier_token1] = ACTIONS(6350), + [aux_sym_type_qualifier_token2] = ACTIONS(6350), + [anon_sym_SEMI] = ACTIONS(6352), + [aux_sym_stop_statement_token1] = ACTIONS(6350), + [aux_sym_stop_statement_token2] = ACTIONS(6350), + [aux_sym_subroutine_call_token1] = ACTIONS(6350), + [aux_sym_keyword_statement_token1] = ACTIONS(6350), + [aux_sym_keyword_statement_token2] = ACTIONS(6350), + [aux_sym_keyword_statement_token3] = ACTIONS(6350), + [aux_sym_keyword_statement_token4] = ACTIONS(6350), + [aux_sym_keyword_statement_token6] = ACTIONS(6350), + [aux_sym_keyword_statement_token7] = ACTIONS(6350), + [aux_sym_include_statement_token1] = ACTIONS(6350), + [aux_sym_data_statement_token1] = ACTIONS(6350), + [aux_sym_do_loop_statement_token1] = ACTIONS(6350), + [aux_sym__inline_if_statement_token1] = ACTIONS(6350), + [aux_sym_end_if_statement_token1] = ACTIONS(6350), + [aux_sym_elseif_clause_token2] = ACTIONS(6350), + [aux_sym__inline_where_statement_token1] = ACTIONS(6350), + [aux_sym__forall_control_expression_token1] = ACTIONS(6350), + [aux_sym_select_case_statement_token1] = ACTIONS(6350), + [aux_sym_select_case_statement_token3] = ACTIONS(6350), + [aux_sym_select_type_statement_token1] = ACTIONS(6350), + [aux_sym_select_rank_statement_token2] = ACTIONS(6350), + [aux_sym_block_construct_token1] = ACTIONS(6350), + [aux_sym_associate_statement_token1] = ACTIONS(6350), + [aux_sym_format_statement_token1] = ACTIONS(6350), + [aux_sym_print_statement_token1] = ACTIONS(6350), + [aux_sym_open_statement_token1] = ACTIONS(6350), + [aux_sym_close_statement_token1] = ACTIONS(6350), + [aux_sym_inquire_statement_token1] = ACTIONS(6350), + [aux_sym_file_position_statement_token1] = ACTIONS(6350), + [aux_sym_file_position_statement_token2] = ACTIONS(6350), + [aux_sym_file_position_statement_token3] = ACTIONS(6350), + [aux_sym_file_position_statement_token4] = ACTIONS(6350), + [aux_sym_allocate_statement_token1] = ACTIONS(6350), + [aux_sym_entry_statement_token1] = ACTIONS(6350), + [aux_sym_logical_expression_token5] = ACTIONS(6352), + [anon_sym_DOT] = ACTIONS(6350), + [anon_sym_LPAREN_SLASH] = ACTIONS(6352), + [anon_sym_LBRACK] = ACTIONS(6352), + [aux_sym_boolean_literal_token1] = ACTIONS(6352), + [aux_sym_boolean_literal_token2] = ACTIONS(6352), + [aux_sym_null_literal_token1] = ACTIONS(6350), + [aux_sym_coarray_statement_token1] = ACTIONS(6350), + [aux_sym_coarray_statement_token2] = ACTIONS(6350), + [aux_sym_coarray_statement_token6] = ACTIONS(6350), + [aux_sym_coarray_statement_token8] = ACTIONS(6350), + [aux_sym_coarray_statement_token11] = ACTIONS(6350), + [aux_sym_coarray_statement_token12] = ACTIONS(6350), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6350), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6350), + [aux_sym_identifier_token1] = ACTIONS(6350), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6352), + [sym__float_literal] = ACTIONS(6352), + [sym__boz_literal] = ACTIONS(6352), + [sym__string_literal] = ACTIONS(6352), + [sym__string_literal_kind] = ACTIONS(6352), + }, + [2345] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_contains_statement_token1] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2346] = { + [aux_sym_preproc_include_token1] = ACTIONS(6350), + [aux_sym_preproc_def_token1] = ACTIONS(6350), + [aux_sym_preproc_if_token1] = ACTIONS(6350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6350), + [sym_preproc_directive] = ACTIONS(6350), + [anon_sym_LPAREN2] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6352), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6350), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6350), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6350), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6350), + [aux_sym_procedure_attributes_token3] = ACTIONS(6350), + [aux_sym_contains_statement_token1] = ACTIONS(6350), + [aux_sym_use_statement_token2] = ACTIONS(6350), + [aux_sym_implicit_statement_token4] = ACTIONS(6350), + [aux_sym_save_statement_token1] = ACTIONS(6350), + [aux_sym_private_statement_token1] = ACTIONS(6350), + [aux_sym_public_statement_token1] = ACTIONS(6350), + [aux_sym_derived_type_definition_token1] = ACTIONS(6350), + [aux_sym_procedure_attribute_token6] = ACTIONS(6350), + [aux_sym_variable_attributes_token2] = ACTIONS(6350), + [aux_sym_variable_attributes_token3] = ACTIONS(6350), + [aux_sym_variable_attributes_token5] = ACTIONS(6350), + [aux_sym__intrinsic_type_token1] = ACTIONS(6350), + [aux_sym__intrinsic_type_token3] = ACTIONS(6350), + [aux_sym__intrinsic_type_token4] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6350), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6350), + [aux_sym_type_qualifier_token1] = ACTIONS(6350), + [aux_sym_type_qualifier_token2] = ACTIONS(6350), + [anon_sym_SEMI] = ACTIONS(6352), + [aux_sym_stop_statement_token1] = ACTIONS(6350), + [aux_sym_stop_statement_token2] = ACTIONS(6350), + [aux_sym_subroutine_call_token1] = ACTIONS(6350), + [aux_sym_keyword_statement_token1] = ACTIONS(6350), + [aux_sym_keyword_statement_token2] = ACTIONS(6350), + [aux_sym_keyword_statement_token3] = ACTIONS(6350), + [aux_sym_keyword_statement_token4] = ACTIONS(6350), + [aux_sym_keyword_statement_token6] = ACTIONS(6350), + [aux_sym_keyword_statement_token7] = ACTIONS(6350), + [aux_sym_include_statement_token1] = ACTIONS(6350), + [aux_sym_data_statement_token1] = ACTIONS(6350), + [aux_sym_do_loop_statement_token1] = ACTIONS(6350), + [aux_sym__inline_if_statement_token1] = ACTIONS(6350), + [aux_sym_end_if_statement_token1] = ACTIONS(6350), + [aux_sym_elseif_clause_token2] = ACTIONS(6350), + [aux_sym__inline_where_statement_token1] = ACTIONS(6350), + [aux_sym__forall_control_expression_token1] = ACTIONS(6350), + [aux_sym_select_case_statement_token1] = ACTIONS(6350), + [aux_sym_select_case_statement_token3] = ACTIONS(6350), + [aux_sym_select_type_statement_token1] = ACTIONS(6350), + [aux_sym_select_rank_statement_token2] = ACTIONS(6350), + [aux_sym_block_construct_token1] = ACTIONS(6350), + [aux_sym_associate_statement_token1] = ACTIONS(6350), + [aux_sym_format_statement_token1] = ACTIONS(6350), + [aux_sym_print_statement_token1] = ACTIONS(6350), + [aux_sym_open_statement_token1] = ACTIONS(6350), + [aux_sym_close_statement_token1] = ACTIONS(6350), + [aux_sym_inquire_statement_token1] = ACTIONS(6350), + [aux_sym_file_position_statement_token1] = ACTIONS(6350), + [aux_sym_file_position_statement_token2] = ACTIONS(6350), + [aux_sym_file_position_statement_token3] = ACTIONS(6350), + [aux_sym_file_position_statement_token4] = ACTIONS(6350), + [aux_sym_allocate_statement_token1] = ACTIONS(6350), + [aux_sym_entry_statement_token1] = ACTIONS(6350), + [aux_sym_logical_expression_token5] = ACTIONS(6352), + [anon_sym_DOT] = ACTIONS(6350), + [anon_sym_LPAREN_SLASH] = ACTIONS(6352), + [anon_sym_LBRACK] = ACTIONS(6352), + [aux_sym_boolean_literal_token1] = ACTIONS(6352), + [aux_sym_boolean_literal_token2] = ACTIONS(6352), + [aux_sym_null_literal_token1] = ACTIONS(6350), + [aux_sym_coarray_statement_token1] = ACTIONS(6350), + [aux_sym_coarray_statement_token2] = ACTIONS(6350), + [aux_sym_coarray_statement_token6] = ACTIONS(6350), + [aux_sym_coarray_statement_token8] = ACTIONS(6350), + [aux_sym_coarray_statement_token11] = ACTIONS(6350), + [aux_sym_coarray_statement_token12] = ACTIONS(6350), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6350), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6350), + [aux_sym_identifier_token1] = ACTIONS(6350), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6352), + [sym__float_literal] = ACTIONS(6352), + [sym__boz_literal] = ACTIONS(6352), + [sym__string_literal] = ACTIONS(6352), + [sym__string_literal_kind] = ACTIONS(6352), + }, + [2347] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2348] = { + [aux_sym_preproc_include_token1] = ACTIONS(6358), + [aux_sym_preproc_def_token1] = ACTIONS(6358), + [aux_sym_preproc_if_token1] = ACTIONS(6358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6358), + [sym_preproc_directive] = ACTIONS(6358), + [anon_sym_LPAREN2] = ACTIONS(6358), + [anon_sym_PLUS] = ACTIONS(6360), + [anon_sym_DASH] = ACTIONS(6360), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_end_forall_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(6358), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6358), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6358), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6358), + [aux_sym_procedure_attributes_token3] = ACTIONS(6358), + [aux_sym_contains_statement_token1] = ACTIONS(6358), + [aux_sym_use_statement_token2] = ACTIONS(6358), + [aux_sym_implicit_statement_token4] = ACTIONS(6358), + [aux_sym_save_statement_token1] = ACTIONS(6358), + [aux_sym_private_statement_token1] = ACTIONS(6358), + [aux_sym_public_statement_token1] = ACTIONS(6358), + [aux_sym_derived_type_definition_token1] = ACTIONS(6358), + [aux_sym_procedure_attribute_token6] = ACTIONS(6358), + [aux_sym_variable_attributes_token2] = ACTIONS(6358), + [aux_sym_variable_attributes_token3] = ACTIONS(6358), + [aux_sym_variable_attributes_token5] = ACTIONS(6358), + [aux_sym__intrinsic_type_token1] = ACTIONS(6358), + [aux_sym__intrinsic_type_token3] = ACTIONS(6358), + [aux_sym__intrinsic_type_token4] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6358), + [aux_sym_type_qualifier_token1] = ACTIONS(6358), + [aux_sym_type_qualifier_token2] = ACTIONS(6358), + [anon_sym_SEMI] = ACTIONS(6360), + [aux_sym_stop_statement_token1] = ACTIONS(6358), + [aux_sym_stop_statement_token2] = ACTIONS(6358), + [aux_sym_subroutine_call_token1] = ACTIONS(6358), + [aux_sym_keyword_statement_token1] = ACTIONS(6358), + [aux_sym_keyword_statement_token2] = ACTIONS(6358), + [aux_sym_keyword_statement_token3] = ACTIONS(6358), + [aux_sym_keyword_statement_token4] = ACTIONS(6358), + [aux_sym_keyword_statement_token6] = ACTIONS(6358), + [aux_sym_keyword_statement_token7] = ACTIONS(6358), + [aux_sym_include_statement_token1] = ACTIONS(6358), + [aux_sym_data_statement_token1] = ACTIONS(6358), + [aux_sym_do_loop_statement_token1] = ACTIONS(6358), + [aux_sym__inline_if_statement_token1] = ACTIONS(6358), + [aux_sym_end_if_statement_token1] = ACTIONS(6358), + [aux_sym_elseif_clause_token2] = ACTIONS(6358), + [aux_sym__inline_where_statement_token1] = ACTIONS(6358), + [aux_sym__forall_control_expression_token1] = ACTIONS(6358), + [aux_sym_select_case_statement_token1] = ACTIONS(6358), + [aux_sym_select_case_statement_token3] = ACTIONS(6358), + [aux_sym_select_type_statement_token1] = ACTIONS(6358), + [aux_sym_select_rank_statement_token2] = ACTIONS(6358), + [aux_sym_block_construct_token1] = ACTIONS(6358), + [aux_sym_associate_statement_token1] = ACTIONS(6358), + [aux_sym_format_statement_token1] = ACTIONS(6358), + [aux_sym_print_statement_token1] = ACTIONS(6358), + [aux_sym_open_statement_token1] = ACTIONS(6358), + [aux_sym_close_statement_token1] = ACTIONS(6358), + [aux_sym_inquire_statement_token1] = ACTIONS(6358), + [aux_sym_file_position_statement_token1] = ACTIONS(6358), + [aux_sym_file_position_statement_token2] = ACTIONS(6358), + [aux_sym_file_position_statement_token3] = ACTIONS(6358), + [aux_sym_file_position_statement_token4] = ACTIONS(6358), + [aux_sym_allocate_statement_token1] = ACTIONS(6358), + [aux_sym_entry_statement_token1] = ACTIONS(6358), + [aux_sym_logical_expression_token5] = ACTIONS(6360), + [anon_sym_DOT] = ACTIONS(6358), + [anon_sym_LPAREN_SLASH] = ACTIONS(6360), + [anon_sym_LBRACK] = ACTIONS(6360), + [aux_sym_boolean_literal_token1] = ACTIONS(6360), + [aux_sym_boolean_literal_token2] = ACTIONS(6360), + [aux_sym_null_literal_token1] = ACTIONS(6358), + [aux_sym_coarray_statement_token1] = ACTIONS(6358), + [aux_sym_coarray_statement_token2] = ACTIONS(6358), + [aux_sym_coarray_statement_token6] = ACTIONS(6358), + [aux_sym_coarray_statement_token8] = ACTIONS(6358), + [aux_sym_coarray_statement_token11] = ACTIONS(6358), + [aux_sym_coarray_statement_token12] = ACTIONS(6358), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6358), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6358), + [aux_sym_identifier_token1] = ACTIONS(6358), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(6360), + [sym__float_literal] = ACTIONS(6360), + [sym__boz_literal] = ACTIONS(6360), + [sym__string_literal] = ACTIONS(6360), + [sym__string_literal_kind] = ACTIONS(6360), }, - [2418] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2349] = { + [aux_sym_preproc_include_token1] = ACTIONS(6358), + [aux_sym_preproc_def_token1] = ACTIONS(6358), + [aux_sym_preproc_if_token1] = ACTIONS(6358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6358), + [sym_preproc_directive] = ACTIONS(6358), + [anon_sym_LPAREN2] = ACTIONS(6358), + [anon_sym_PLUS] = ACTIONS(6360), + [anon_sym_DASH] = ACTIONS(6360), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(6358), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6358), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6358), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6358), + [aux_sym_procedure_attributes_token3] = ACTIONS(6358), + [aux_sym_contains_statement_token1] = ACTIONS(6358), + [aux_sym_use_statement_token2] = ACTIONS(6358), + [aux_sym_implicit_statement_token4] = ACTIONS(6358), + [aux_sym_save_statement_token1] = ACTIONS(6358), + [aux_sym_private_statement_token1] = ACTIONS(6358), + [aux_sym_public_statement_token1] = ACTIONS(6358), + [aux_sym_derived_type_definition_token1] = ACTIONS(6358), + [aux_sym_procedure_attribute_token6] = ACTIONS(6358), + [aux_sym_variable_attributes_token2] = ACTIONS(6358), + [aux_sym_variable_attributes_token3] = ACTIONS(6358), + [aux_sym_variable_attributes_token5] = ACTIONS(6358), + [aux_sym__intrinsic_type_token1] = ACTIONS(6358), + [aux_sym__intrinsic_type_token3] = ACTIONS(6358), + [aux_sym__intrinsic_type_token4] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6358), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6358), + [aux_sym_type_qualifier_token1] = ACTIONS(6358), + [aux_sym_type_qualifier_token2] = ACTIONS(6358), + [anon_sym_SEMI] = ACTIONS(6360), + [aux_sym_stop_statement_token1] = ACTIONS(6358), + [aux_sym_stop_statement_token2] = ACTIONS(6358), + [aux_sym_subroutine_call_token1] = ACTIONS(6358), + [aux_sym_keyword_statement_token1] = ACTIONS(6358), + [aux_sym_keyword_statement_token2] = ACTIONS(6358), + [aux_sym_keyword_statement_token3] = ACTIONS(6358), + [aux_sym_keyword_statement_token4] = ACTIONS(6358), + [aux_sym_keyword_statement_token6] = ACTIONS(6358), + [aux_sym_keyword_statement_token7] = ACTIONS(6358), + [aux_sym_include_statement_token1] = ACTIONS(6358), + [aux_sym_data_statement_token1] = ACTIONS(6358), + [aux_sym_do_loop_statement_token1] = ACTIONS(6358), + [aux_sym__inline_if_statement_token1] = ACTIONS(6358), + [aux_sym_end_if_statement_token1] = ACTIONS(6358), + [aux_sym_elseif_clause_token2] = ACTIONS(6358), + [aux_sym__inline_where_statement_token1] = ACTIONS(6358), + [aux_sym__forall_control_expression_token1] = ACTIONS(6358), + [aux_sym_select_case_statement_token1] = ACTIONS(6358), + [aux_sym_select_case_statement_token3] = ACTIONS(6358), + [aux_sym_select_type_statement_token1] = ACTIONS(6358), + [aux_sym_select_rank_statement_token2] = ACTIONS(6358), + [aux_sym_block_construct_token1] = ACTIONS(6358), + [aux_sym_associate_statement_token1] = ACTIONS(6358), + [aux_sym_format_statement_token1] = ACTIONS(6358), + [aux_sym_print_statement_token1] = ACTIONS(6358), + [aux_sym_open_statement_token1] = ACTIONS(6358), + [aux_sym_close_statement_token1] = ACTIONS(6358), + [aux_sym_inquire_statement_token1] = ACTIONS(6358), + [aux_sym_file_position_statement_token1] = ACTIONS(6358), + [aux_sym_file_position_statement_token2] = ACTIONS(6358), + [aux_sym_file_position_statement_token3] = ACTIONS(6358), + [aux_sym_file_position_statement_token4] = ACTIONS(6358), + [aux_sym_allocate_statement_token1] = ACTIONS(6358), + [aux_sym_entry_statement_token1] = ACTIONS(6358), + [aux_sym_logical_expression_token5] = ACTIONS(6360), + [anon_sym_DOT] = ACTIONS(6358), + [anon_sym_LPAREN_SLASH] = ACTIONS(6360), + [anon_sym_LBRACK] = ACTIONS(6360), + [aux_sym_boolean_literal_token1] = ACTIONS(6360), + [aux_sym_boolean_literal_token2] = ACTIONS(6360), + [aux_sym_null_literal_token1] = ACTIONS(6358), + [aux_sym_coarray_statement_token1] = ACTIONS(6358), + [aux_sym_coarray_statement_token2] = ACTIONS(6358), + [aux_sym_coarray_statement_token6] = ACTIONS(6358), + [aux_sym_coarray_statement_token8] = ACTIONS(6358), + [aux_sym_coarray_statement_token11] = ACTIONS(6358), + [aux_sym_coarray_statement_token12] = ACTIONS(6358), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6358), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6358), + [aux_sym_identifier_token1] = ACTIONS(6358), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(6360), + [sym__float_literal] = ACTIONS(6360), + [sym__boz_literal] = ACTIONS(6360), + [sym__string_literal] = ACTIONS(6360), + [sym__string_literal_kind] = ACTIONS(6360), }, - [2419] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2350] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token2] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_contains_statement_token1] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2351] = { + [aux_sym_preproc_include_token1] = ACTIONS(5896), + [aux_sym_preproc_def_token1] = ACTIONS(5896), + [aux_sym_preproc_if_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5896), + [sym_preproc_directive] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5900), + [anon_sym_DASH] = ACTIONS(5900), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5896), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5896), + [aux_sym_procedure_attributes_token3] = ACTIONS(5896), + [aux_sym_contains_statement_token1] = ACTIONS(5896), + [aux_sym_use_statement_token2] = ACTIONS(5896), + [aux_sym_implicit_statement_token4] = ACTIONS(5896), + [aux_sym_save_statement_token1] = ACTIONS(5896), + [aux_sym_private_statement_token1] = ACTIONS(5896), + [aux_sym_public_statement_token1] = ACTIONS(5896), + [aux_sym_derived_type_definition_token1] = ACTIONS(5896), + [aux_sym_procedure_attribute_token6] = ACTIONS(5896), + [aux_sym_variable_attributes_token2] = ACTIONS(5896), + [aux_sym_variable_attributes_token3] = ACTIONS(5896), + [aux_sym_variable_attributes_token5] = ACTIONS(5896), + [aux_sym__intrinsic_type_token1] = ACTIONS(5896), + [aux_sym__intrinsic_type_token3] = ACTIONS(5896), + [aux_sym__intrinsic_type_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5896), + [aux_sym_type_qualifier_token1] = ACTIONS(5896), + [aux_sym_type_qualifier_token2] = ACTIONS(5896), + [anon_sym_SEMI] = ACTIONS(5900), + [aux_sym_stop_statement_token1] = ACTIONS(5896), + [aux_sym_stop_statement_token2] = ACTIONS(5896), + [aux_sym_subroutine_call_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token2] = ACTIONS(5896), + [aux_sym_keyword_statement_token3] = ACTIONS(5896), + [aux_sym_keyword_statement_token4] = ACTIONS(5896), + [aux_sym_keyword_statement_token6] = ACTIONS(5896), + [aux_sym_keyword_statement_token7] = ACTIONS(5896), + [aux_sym_include_statement_token1] = ACTIONS(5896), + [aux_sym_data_statement_token1] = ACTIONS(5896), + [aux_sym_do_loop_statement_token1] = ACTIONS(5896), + [aux_sym__inline_if_statement_token1] = ACTIONS(5896), + [aux_sym_end_if_statement_token1] = ACTIONS(5896), + [aux_sym_elseif_clause_token2] = ACTIONS(5896), + [aux_sym__inline_where_statement_token1] = ACTIONS(5896), + [aux_sym__forall_control_expression_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token3] = ACTIONS(5896), + [aux_sym_select_type_statement_token1] = ACTIONS(5896), + [aux_sym_select_rank_statement_token2] = ACTIONS(5896), + [aux_sym_block_construct_token1] = ACTIONS(5896), + [aux_sym_associate_statement_token1] = ACTIONS(5896), + [aux_sym_format_statement_token1] = ACTIONS(5896), + [aux_sym_print_statement_token1] = ACTIONS(5896), + [aux_sym_open_statement_token1] = ACTIONS(5896), + [aux_sym_close_statement_token1] = ACTIONS(5896), + [aux_sym_inquire_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token2] = ACTIONS(5896), + [aux_sym_file_position_statement_token3] = ACTIONS(5896), + [aux_sym_file_position_statement_token4] = ACTIONS(5896), + [aux_sym_allocate_statement_token1] = ACTIONS(5896), + [aux_sym_entry_statement_token1] = ACTIONS(5896), + [aux_sym_logical_expression_token5] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_LPAREN_SLASH] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [aux_sym_boolean_literal_token1] = ACTIONS(5900), + [aux_sym_boolean_literal_token2] = ACTIONS(5900), + [aux_sym_null_literal_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token2] = ACTIONS(5896), + [aux_sym_coarray_statement_token6] = ACTIONS(5896), + [aux_sym_coarray_statement_token8] = ACTIONS(5896), + [aux_sym_coarray_statement_token11] = ACTIONS(5896), + [aux_sym_coarray_statement_token12] = ACTIONS(5896), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5896), + [aux_sym_identifier_token1] = ACTIONS(5896), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5900), + [sym__float_literal] = ACTIONS(5900), + [sym__boz_literal] = ACTIONS(5900), + [sym__string_literal] = ACTIONS(5900), + [sym__string_literal_kind] = ACTIONS(5900), + }, + [2352] = { + [aux_sym_preproc_include_token1] = ACTIONS(5906), + [aux_sym_preproc_def_token1] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), + [sym_preproc_directive] = ACTIONS(5906), + [anon_sym_LPAREN2] = ACTIONS(5906), + [anon_sym_PLUS] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5906), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(5906), + [aux_sym_procedure_attributes_token3] = ACTIONS(5906), + [aux_sym_contains_statement_token1] = ACTIONS(5906), + [aux_sym_use_statement_token2] = ACTIONS(5906), + [aux_sym_implicit_statement_token4] = ACTIONS(5906), + [aux_sym_save_statement_token1] = ACTIONS(5906), + [aux_sym_private_statement_token1] = ACTIONS(5906), + [aux_sym_public_statement_token1] = ACTIONS(5906), + [aux_sym_derived_type_definition_token1] = ACTIONS(5906), + [aux_sym_procedure_attribute_token6] = ACTIONS(5906), + [aux_sym_variable_attributes_token2] = ACTIONS(5906), + [aux_sym_variable_attributes_token3] = ACTIONS(5906), + [aux_sym_variable_attributes_token5] = ACTIONS(5906), + [aux_sym__intrinsic_type_token1] = ACTIONS(5906), + [aux_sym__intrinsic_type_token3] = ACTIONS(5906), + [aux_sym__intrinsic_type_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5906), + [aux_sym_type_qualifier_token1] = ACTIONS(5906), + [aux_sym_type_qualifier_token2] = ACTIONS(5906), + [anon_sym_SEMI] = ACTIONS(5910), + [aux_sym_stop_statement_token1] = ACTIONS(5906), + [aux_sym_stop_statement_token2] = ACTIONS(5906), + [aux_sym_subroutine_call_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token2] = ACTIONS(5906), + [aux_sym_keyword_statement_token3] = ACTIONS(5906), + [aux_sym_keyword_statement_token4] = ACTIONS(5906), + [aux_sym_keyword_statement_token6] = ACTIONS(5906), + [aux_sym_keyword_statement_token7] = ACTIONS(5906), + [aux_sym_include_statement_token1] = ACTIONS(5906), + [aux_sym_data_statement_token1] = ACTIONS(5906), + [aux_sym_do_loop_statement_token1] = ACTIONS(5906), + [aux_sym__inline_if_statement_token1] = ACTIONS(5906), + [aux_sym_end_if_statement_token1] = ACTIONS(5906), + [aux_sym_elseif_clause_token2] = ACTIONS(5906), + [aux_sym__inline_where_statement_token1] = ACTIONS(5906), + [aux_sym__forall_control_expression_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token3] = ACTIONS(5906), + [aux_sym_select_type_statement_token1] = ACTIONS(5906), + [aux_sym_select_rank_statement_token2] = ACTIONS(5906), + [aux_sym_block_construct_token1] = ACTIONS(5906), + [aux_sym_associate_statement_token1] = ACTIONS(5906), + [aux_sym_format_statement_token1] = ACTIONS(5906), + [aux_sym_print_statement_token1] = ACTIONS(5906), + [aux_sym_open_statement_token1] = ACTIONS(5906), + [aux_sym_close_statement_token1] = ACTIONS(5906), + [aux_sym_inquire_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token2] = ACTIONS(5906), + [aux_sym_file_position_statement_token3] = ACTIONS(5906), + [aux_sym_file_position_statement_token4] = ACTIONS(5906), + [aux_sym_allocate_statement_token1] = ACTIONS(5906), + [aux_sym_entry_statement_token1] = ACTIONS(5906), + [aux_sym_logical_expression_token5] = ACTIONS(5910), + [anon_sym_DOT] = ACTIONS(5906), + [anon_sym_LPAREN_SLASH] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5910), + [aux_sym_boolean_literal_token1] = ACTIONS(5910), + [aux_sym_boolean_literal_token2] = ACTIONS(5910), + [aux_sym_null_literal_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token2] = ACTIONS(5906), + [aux_sym_coarray_statement_token6] = ACTIONS(5906), + [aux_sym_coarray_statement_token8] = ACTIONS(5906), + [aux_sym_coarray_statement_token11] = ACTIONS(5906), + [aux_sym_coarray_statement_token12] = ACTIONS(5906), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5906), + [aux_sym_identifier_token1] = ACTIONS(5906), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5910), + [sym__float_literal] = ACTIONS(5910), + [sym__boz_literal] = ACTIONS(5910), + [sym__string_literal] = ACTIONS(5910), + [sym__string_literal_kind] = ACTIONS(5910), + }, + [2353] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token2] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_contains_statement_token1] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2354] = { + [aux_sym_preproc_include_token1] = ACTIONS(5896), + [aux_sym_preproc_def_token1] = ACTIONS(5896), + [aux_sym_preproc_if_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5896), + [sym_preproc_directive] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5900), + [anon_sym_DASH] = ACTIONS(5900), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5896), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5896), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5896), + [aux_sym_procedure_attributes_token3] = ACTIONS(5896), + [aux_sym_contains_statement_token1] = ACTIONS(5896), + [aux_sym_use_statement_token2] = ACTIONS(5896), + [aux_sym_implicit_statement_token4] = ACTIONS(5896), + [aux_sym_save_statement_token1] = ACTIONS(5896), + [aux_sym_private_statement_token1] = ACTIONS(5896), + [aux_sym_public_statement_token1] = ACTIONS(5896), + [aux_sym_derived_type_definition_token1] = ACTIONS(5896), + [aux_sym_procedure_attribute_token6] = ACTIONS(5896), + [aux_sym_variable_attributes_token2] = ACTIONS(5896), + [aux_sym_variable_attributes_token3] = ACTIONS(5896), + [aux_sym_variable_attributes_token5] = ACTIONS(5896), + [aux_sym__intrinsic_type_token1] = ACTIONS(5896), + [aux_sym__intrinsic_type_token3] = ACTIONS(5896), + [aux_sym__intrinsic_type_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5896), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5896), + [aux_sym_type_qualifier_token1] = ACTIONS(5896), + [aux_sym_type_qualifier_token2] = ACTIONS(5896), + [anon_sym_SEMI] = ACTIONS(5900), + [aux_sym_stop_statement_token1] = ACTIONS(5896), + [aux_sym_stop_statement_token2] = ACTIONS(5896), + [aux_sym_subroutine_call_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token1] = ACTIONS(5896), + [aux_sym_keyword_statement_token2] = ACTIONS(5896), + [aux_sym_keyword_statement_token3] = ACTIONS(5896), + [aux_sym_keyword_statement_token4] = ACTIONS(5896), + [aux_sym_keyword_statement_token6] = ACTIONS(5896), + [aux_sym_keyword_statement_token7] = ACTIONS(5896), + [aux_sym_include_statement_token1] = ACTIONS(5896), + [aux_sym_data_statement_token1] = ACTIONS(5896), + [aux_sym_do_loop_statement_token1] = ACTIONS(5896), + [aux_sym__inline_if_statement_token1] = ACTIONS(5896), + [aux_sym_end_if_statement_token1] = ACTIONS(5896), + [aux_sym_elseif_clause_token2] = ACTIONS(5896), + [aux_sym__inline_where_statement_token1] = ACTIONS(5896), + [aux_sym__forall_control_expression_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token1] = ACTIONS(5896), + [aux_sym_select_case_statement_token3] = ACTIONS(5896), + [aux_sym_select_type_statement_token1] = ACTIONS(5896), + [aux_sym_select_rank_statement_token2] = ACTIONS(5896), + [aux_sym_block_construct_token1] = ACTIONS(5896), + [aux_sym_associate_statement_token1] = ACTIONS(5896), + [aux_sym_format_statement_token1] = ACTIONS(5896), + [aux_sym_print_statement_token1] = ACTIONS(5896), + [aux_sym_open_statement_token1] = ACTIONS(5896), + [aux_sym_close_statement_token1] = ACTIONS(5896), + [aux_sym_inquire_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token1] = ACTIONS(5896), + [aux_sym_file_position_statement_token2] = ACTIONS(5896), + [aux_sym_file_position_statement_token3] = ACTIONS(5896), + [aux_sym_file_position_statement_token4] = ACTIONS(5896), + [aux_sym_allocate_statement_token1] = ACTIONS(5896), + [aux_sym_entry_statement_token1] = ACTIONS(5896), + [aux_sym_logical_expression_token5] = ACTIONS(5900), + [anon_sym_DOT] = ACTIONS(5896), + [anon_sym_LPAREN_SLASH] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [aux_sym_boolean_literal_token1] = ACTIONS(5900), + [aux_sym_boolean_literal_token2] = ACTIONS(5900), + [aux_sym_null_literal_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_statement_token2] = ACTIONS(5896), + [aux_sym_coarray_statement_token6] = ACTIONS(5896), + [aux_sym_coarray_statement_token8] = ACTIONS(5896), + [aux_sym_coarray_statement_token11] = ACTIONS(5896), + [aux_sym_coarray_statement_token12] = ACTIONS(5896), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5896), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5896), + [aux_sym_identifier_token1] = ACTIONS(5896), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5900), + [sym__float_literal] = ACTIONS(5900), + [sym__boz_literal] = ACTIONS(5900), + [sym__string_literal] = ACTIONS(5900), + [sym__string_literal_kind] = ACTIONS(5900), + }, + [2355] = { + [aux_sym_preproc_include_token1] = ACTIONS(5906), + [aux_sym_preproc_def_token1] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5906), + [sym_preproc_directive] = ACTIONS(5906), + [anon_sym_LPAREN2] = ACTIONS(5906), + [anon_sym_PLUS] = ACTIONS(5910), + [anon_sym_DASH] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5906), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5906), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(5906), + [aux_sym_procedure_attributes_token3] = ACTIONS(5906), + [aux_sym_contains_statement_token1] = ACTIONS(5906), + [aux_sym_use_statement_token2] = ACTIONS(5906), + [aux_sym_implicit_statement_token4] = ACTIONS(5906), + [aux_sym_save_statement_token1] = ACTIONS(5906), + [aux_sym_private_statement_token1] = ACTIONS(5906), + [aux_sym_public_statement_token1] = ACTIONS(5906), + [aux_sym_derived_type_definition_token1] = ACTIONS(5906), + [aux_sym_procedure_attribute_token6] = ACTIONS(5906), + [aux_sym_variable_attributes_token2] = ACTIONS(5906), + [aux_sym_variable_attributes_token3] = ACTIONS(5906), + [aux_sym_variable_attributes_token5] = ACTIONS(5906), + [aux_sym__intrinsic_type_token1] = ACTIONS(5906), + [aux_sym__intrinsic_type_token3] = ACTIONS(5906), + [aux_sym__intrinsic_type_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5906), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5906), + [aux_sym_type_qualifier_token1] = ACTIONS(5906), + [aux_sym_type_qualifier_token2] = ACTIONS(5906), + [anon_sym_SEMI] = ACTIONS(5910), + [aux_sym_stop_statement_token1] = ACTIONS(5906), + [aux_sym_stop_statement_token2] = ACTIONS(5906), + [aux_sym_subroutine_call_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token1] = ACTIONS(5906), + [aux_sym_keyword_statement_token2] = ACTIONS(5906), + [aux_sym_keyword_statement_token3] = ACTIONS(5906), + [aux_sym_keyword_statement_token4] = ACTIONS(5906), + [aux_sym_keyword_statement_token6] = ACTIONS(5906), + [aux_sym_keyword_statement_token7] = ACTIONS(5906), + [aux_sym_include_statement_token1] = ACTIONS(5906), + [aux_sym_data_statement_token1] = ACTIONS(5906), + [aux_sym_do_loop_statement_token1] = ACTIONS(5906), + [aux_sym__inline_if_statement_token1] = ACTIONS(5906), + [aux_sym_end_if_statement_token1] = ACTIONS(5906), + [aux_sym_elseif_clause_token2] = ACTIONS(5906), + [aux_sym__inline_where_statement_token1] = ACTIONS(5906), + [aux_sym__forall_control_expression_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token1] = ACTIONS(5906), + [aux_sym_select_case_statement_token3] = ACTIONS(5906), + [aux_sym_select_type_statement_token1] = ACTIONS(5906), + [aux_sym_select_rank_statement_token2] = ACTIONS(5906), + [aux_sym_block_construct_token1] = ACTIONS(5906), + [aux_sym_associate_statement_token1] = ACTIONS(5906), + [aux_sym_format_statement_token1] = ACTIONS(5906), + [aux_sym_print_statement_token1] = ACTIONS(5906), + [aux_sym_open_statement_token1] = ACTIONS(5906), + [aux_sym_close_statement_token1] = ACTIONS(5906), + [aux_sym_inquire_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token1] = ACTIONS(5906), + [aux_sym_file_position_statement_token2] = ACTIONS(5906), + [aux_sym_file_position_statement_token3] = ACTIONS(5906), + [aux_sym_file_position_statement_token4] = ACTIONS(5906), + [aux_sym_allocate_statement_token1] = ACTIONS(5906), + [aux_sym_entry_statement_token1] = ACTIONS(5906), + [aux_sym_logical_expression_token5] = ACTIONS(5910), + [anon_sym_DOT] = ACTIONS(5906), + [anon_sym_LPAREN_SLASH] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5910), + [aux_sym_boolean_literal_token1] = ACTIONS(5910), + [aux_sym_boolean_literal_token2] = ACTIONS(5910), + [aux_sym_null_literal_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_statement_token2] = ACTIONS(5906), + [aux_sym_coarray_statement_token6] = ACTIONS(5906), + [aux_sym_coarray_statement_token8] = ACTIONS(5906), + [aux_sym_coarray_statement_token11] = ACTIONS(5906), + [aux_sym_coarray_statement_token12] = ACTIONS(5906), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5906), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5906), + [aux_sym_identifier_token1] = ACTIONS(5906), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5910), + [sym__float_literal] = ACTIONS(5910), + [sym__boz_literal] = ACTIONS(5910), + [sym__string_literal] = ACTIONS(5910), + [sym__string_literal_kind] = ACTIONS(5910), + }, + [2356] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_end_program_statement_token2] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_contains_statement_token1] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2357] = { + [aux_sym_preproc_include_token1] = ACTIONS(6440), + [aux_sym_preproc_def_token1] = ACTIONS(6440), + [aux_sym_preproc_if_token1] = ACTIONS(6440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6440), + [sym_preproc_directive] = ACTIONS(6440), + [anon_sym_LPAREN2] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(6442), + [anon_sym_DASH] = ACTIONS(6442), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6440), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6440), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6440), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6440), + [aux_sym_procedure_attributes_token3] = ACTIONS(6440), + [aux_sym_contains_statement_token1] = ACTIONS(6440), + [aux_sym_use_statement_token2] = ACTIONS(6440), + [aux_sym_implicit_statement_token4] = ACTIONS(6440), + [aux_sym_save_statement_token1] = ACTIONS(6440), + [aux_sym_private_statement_token1] = ACTIONS(6440), + [aux_sym_public_statement_token1] = ACTIONS(6440), + [aux_sym_derived_type_definition_token1] = ACTIONS(6440), + [aux_sym_procedure_attribute_token6] = ACTIONS(6440), + [aux_sym_variable_attributes_token2] = ACTIONS(6440), + [aux_sym_variable_attributes_token3] = ACTIONS(6440), + [aux_sym_variable_attributes_token5] = ACTIONS(6440), + [aux_sym__intrinsic_type_token1] = ACTIONS(6440), + [aux_sym__intrinsic_type_token3] = ACTIONS(6440), + [aux_sym__intrinsic_type_token4] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6440), + [aux_sym_type_qualifier_token1] = ACTIONS(6440), + [aux_sym_type_qualifier_token2] = ACTIONS(6440), + [anon_sym_SEMI] = ACTIONS(6442), + [aux_sym_stop_statement_token1] = ACTIONS(6440), + [aux_sym_stop_statement_token2] = ACTIONS(6440), + [aux_sym_subroutine_call_token1] = ACTIONS(6440), + [aux_sym_keyword_statement_token1] = ACTIONS(6440), + [aux_sym_keyword_statement_token2] = ACTIONS(6440), + [aux_sym_keyword_statement_token3] = ACTIONS(6440), + [aux_sym_keyword_statement_token4] = ACTIONS(6440), + [aux_sym_keyword_statement_token6] = ACTIONS(6440), + [aux_sym_keyword_statement_token7] = ACTIONS(6440), + [aux_sym_include_statement_token1] = ACTIONS(6440), + [aux_sym_data_statement_token1] = ACTIONS(6440), + [aux_sym_do_loop_statement_token1] = ACTIONS(6440), + [aux_sym__inline_if_statement_token1] = ACTIONS(6440), + [aux_sym_end_if_statement_token1] = ACTIONS(6440), + [aux_sym_elseif_clause_token2] = ACTIONS(6440), + [aux_sym__inline_where_statement_token1] = ACTIONS(6440), + [aux_sym__forall_control_expression_token1] = ACTIONS(6440), + [aux_sym_select_case_statement_token1] = ACTIONS(6440), + [aux_sym_select_case_statement_token3] = ACTIONS(6440), + [aux_sym_select_type_statement_token1] = ACTIONS(6440), + [aux_sym_select_rank_statement_token2] = ACTIONS(6440), + [aux_sym_block_construct_token1] = ACTIONS(6440), + [aux_sym_associate_statement_token1] = ACTIONS(6440), + [aux_sym_format_statement_token1] = ACTIONS(6440), + [aux_sym_print_statement_token1] = ACTIONS(6440), + [aux_sym_open_statement_token1] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6440), + [aux_sym_inquire_statement_token1] = ACTIONS(6440), + [aux_sym_file_position_statement_token1] = ACTIONS(6440), + [aux_sym_file_position_statement_token2] = ACTIONS(6440), + [aux_sym_file_position_statement_token3] = ACTIONS(6440), + [aux_sym_file_position_statement_token4] = ACTIONS(6440), + [aux_sym_allocate_statement_token1] = ACTIONS(6440), + [aux_sym_entry_statement_token1] = ACTIONS(6440), + [aux_sym_logical_expression_token5] = ACTIONS(6442), + [anon_sym_DOT] = ACTIONS(6440), + [anon_sym_LPAREN_SLASH] = ACTIONS(6442), + [anon_sym_LBRACK] = ACTIONS(6442), + [aux_sym_boolean_literal_token1] = ACTIONS(6442), + [aux_sym_boolean_literal_token2] = ACTIONS(6442), + [aux_sym_null_literal_token1] = ACTIONS(6440), + [aux_sym_coarray_statement_token1] = ACTIONS(6440), + [aux_sym_coarray_statement_token2] = ACTIONS(6440), + [aux_sym_coarray_statement_token6] = ACTIONS(6440), + [aux_sym_coarray_statement_token8] = ACTIONS(6440), + [aux_sym_coarray_statement_token11] = ACTIONS(6440), + [aux_sym_coarray_statement_token12] = ACTIONS(6440), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6440), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6440), + [aux_sym_identifier_token1] = ACTIONS(6440), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6442), + [sym__float_literal] = ACTIONS(6442), + [sym__boz_literal] = ACTIONS(6442), + [sym__string_literal] = ACTIONS(6442), + [sym__string_literal_kind] = ACTIONS(6442), + }, + [2358] = { + [aux_sym_preproc_include_token1] = ACTIONS(6444), + [aux_sym_preproc_def_token1] = ACTIONS(6444), + [aux_sym_preproc_if_token1] = ACTIONS(6444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6444), + [sym_preproc_directive] = ACTIONS(6444), + [anon_sym_LPAREN2] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6444), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6444), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6444), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6444), + [aux_sym_procedure_attributes_token3] = ACTIONS(6444), + [aux_sym_contains_statement_token1] = ACTIONS(6444), + [aux_sym_use_statement_token2] = ACTIONS(6444), + [aux_sym_implicit_statement_token4] = ACTIONS(6444), + [aux_sym_save_statement_token1] = ACTIONS(6444), + [aux_sym_private_statement_token1] = ACTIONS(6444), + [aux_sym_public_statement_token1] = ACTIONS(6444), + [aux_sym_derived_type_definition_token1] = ACTIONS(6444), + [aux_sym_procedure_attribute_token6] = ACTIONS(6444), + [aux_sym_variable_attributes_token2] = ACTIONS(6444), + [aux_sym_variable_attributes_token3] = ACTIONS(6444), + [aux_sym_variable_attributes_token5] = ACTIONS(6444), + [aux_sym__intrinsic_type_token1] = ACTIONS(6444), + [aux_sym__intrinsic_type_token3] = ACTIONS(6444), + [aux_sym__intrinsic_type_token4] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6444), + [aux_sym_type_qualifier_token1] = ACTIONS(6444), + [aux_sym_type_qualifier_token2] = ACTIONS(6444), + [anon_sym_SEMI] = ACTIONS(6446), + [aux_sym_stop_statement_token1] = ACTIONS(6444), + [aux_sym_stop_statement_token2] = ACTIONS(6444), + [aux_sym_subroutine_call_token1] = ACTIONS(6444), + [aux_sym_keyword_statement_token1] = ACTIONS(6444), + [aux_sym_keyword_statement_token2] = ACTIONS(6444), + [aux_sym_keyword_statement_token3] = ACTIONS(6444), + [aux_sym_keyword_statement_token4] = ACTIONS(6444), + [aux_sym_keyword_statement_token6] = ACTIONS(6444), + [aux_sym_keyword_statement_token7] = ACTIONS(6444), + [aux_sym_include_statement_token1] = ACTIONS(6444), + [aux_sym_data_statement_token1] = ACTIONS(6444), + [aux_sym_do_loop_statement_token1] = ACTIONS(6444), + [aux_sym__inline_if_statement_token1] = ACTIONS(6444), + [aux_sym_end_if_statement_token1] = ACTIONS(6444), + [aux_sym_elseif_clause_token2] = ACTIONS(6444), + [aux_sym__inline_where_statement_token1] = ACTIONS(6444), + [aux_sym__forall_control_expression_token1] = ACTIONS(6444), + [aux_sym_select_case_statement_token1] = ACTIONS(6444), + [aux_sym_select_case_statement_token3] = ACTIONS(6444), + [aux_sym_select_type_statement_token1] = ACTIONS(6444), + [aux_sym_select_rank_statement_token2] = ACTIONS(6444), + [aux_sym_block_construct_token1] = ACTIONS(6444), + [aux_sym_associate_statement_token1] = ACTIONS(6444), + [aux_sym_format_statement_token1] = ACTIONS(6444), + [aux_sym_print_statement_token1] = ACTIONS(6444), + [aux_sym_open_statement_token1] = ACTIONS(6444), + [aux_sym_close_statement_token1] = ACTIONS(6444), + [aux_sym_inquire_statement_token1] = ACTIONS(6444), + [aux_sym_file_position_statement_token1] = ACTIONS(6444), + [aux_sym_file_position_statement_token2] = ACTIONS(6444), + [aux_sym_file_position_statement_token3] = ACTIONS(6444), + [aux_sym_file_position_statement_token4] = ACTIONS(6444), + [aux_sym_allocate_statement_token1] = ACTIONS(6444), + [aux_sym_entry_statement_token1] = ACTIONS(6444), + [aux_sym_logical_expression_token5] = ACTIONS(6446), + [anon_sym_DOT] = ACTIONS(6444), + [anon_sym_LPAREN_SLASH] = ACTIONS(6446), + [anon_sym_LBRACK] = ACTIONS(6446), + [aux_sym_boolean_literal_token1] = ACTIONS(6446), + [aux_sym_boolean_literal_token2] = ACTIONS(6446), + [aux_sym_null_literal_token1] = ACTIONS(6444), + [aux_sym_coarray_statement_token1] = ACTIONS(6444), + [aux_sym_coarray_statement_token2] = ACTIONS(6444), + [aux_sym_coarray_statement_token6] = ACTIONS(6444), + [aux_sym_coarray_statement_token8] = ACTIONS(6444), + [aux_sym_coarray_statement_token11] = ACTIONS(6444), + [aux_sym_coarray_statement_token12] = ACTIONS(6444), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6444), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6444), + [aux_sym_identifier_token1] = ACTIONS(6444), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6446), + [sym__float_literal] = ACTIONS(6446), + [sym__boz_literal] = ACTIONS(6446), + [sym__string_literal] = ACTIONS(6446), + [sym__string_literal_kind] = ACTIONS(6446), + }, + [2359] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6510), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2360] = { + [aux_sym_preproc_include_token1] = ACTIONS(6098), + [aux_sym_preproc_def_token1] = ACTIONS(6098), + [aux_sym_preproc_if_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6098), + [sym_preproc_directive] = ACTIONS(6098), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_PLUS] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6102), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6098), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6098), + [aux_sym_procedure_attributes_token3] = ACTIONS(6098), + [aux_sym_contains_statement_token1] = ACTIONS(6098), + [aux_sym_use_statement_token2] = ACTIONS(6098), + [aux_sym_implicit_statement_token4] = ACTIONS(6098), + [aux_sym_save_statement_token1] = ACTIONS(6098), + [aux_sym_private_statement_token1] = ACTIONS(6098), + [aux_sym_public_statement_token1] = ACTIONS(6098), + [aux_sym_derived_type_definition_token1] = ACTIONS(6098), + [aux_sym_procedure_attribute_token6] = ACTIONS(6098), + [aux_sym_variable_attributes_token2] = ACTIONS(6098), + [aux_sym_variable_attributes_token3] = ACTIONS(6098), + [aux_sym_variable_attributes_token5] = ACTIONS(6098), + [aux_sym__intrinsic_type_token1] = ACTIONS(6098), + [aux_sym__intrinsic_type_token3] = ACTIONS(6098), + [aux_sym__intrinsic_type_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6098), + [aux_sym_type_qualifier_token1] = ACTIONS(6098), + [aux_sym_type_qualifier_token2] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6102), + [aux_sym_stop_statement_token1] = ACTIONS(6098), + [aux_sym_stop_statement_token2] = ACTIONS(6098), + [aux_sym_subroutine_call_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token2] = ACTIONS(6098), + [aux_sym_keyword_statement_token3] = ACTIONS(6098), + [aux_sym_keyword_statement_token4] = ACTIONS(6098), + [aux_sym_keyword_statement_token6] = ACTIONS(6098), + [aux_sym_keyword_statement_token7] = ACTIONS(6098), + [aux_sym_include_statement_token1] = ACTIONS(6098), + [aux_sym_data_statement_token1] = ACTIONS(6098), + [aux_sym_do_loop_statement_token1] = ACTIONS(6098), + [aux_sym__inline_if_statement_token1] = ACTIONS(6098), + [aux_sym_end_if_statement_token1] = ACTIONS(6098), + [aux_sym_elseif_clause_token2] = ACTIONS(6098), + [aux_sym__inline_where_statement_token1] = ACTIONS(6098), + [aux_sym__forall_control_expression_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token3] = ACTIONS(6098), + [aux_sym_select_type_statement_token1] = ACTIONS(6098), + [aux_sym_select_rank_statement_token2] = ACTIONS(6098), + [aux_sym_block_construct_token1] = ACTIONS(6098), + [aux_sym_associate_statement_token1] = ACTIONS(6098), + [aux_sym_format_statement_token1] = ACTIONS(6098), + [aux_sym_print_statement_token1] = ACTIONS(6098), + [aux_sym_open_statement_token1] = ACTIONS(6098), + [aux_sym_close_statement_token1] = ACTIONS(6098), + [aux_sym_inquire_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token2] = ACTIONS(6098), + [aux_sym_file_position_statement_token3] = ACTIONS(6098), + [aux_sym_file_position_statement_token4] = ACTIONS(6098), + [aux_sym_allocate_statement_token1] = ACTIONS(6098), + [aux_sym_entry_statement_token1] = ACTIONS(6098), + [aux_sym_logical_expression_token5] = ACTIONS(6102), + [anon_sym_DOT] = ACTIONS(6098), + [anon_sym_LPAREN_SLASH] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(6102), + [aux_sym_boolean_literal_token1] = ACTIONS(6102), + [aux_sym_boolean_literal_token2] = ACTIONS(6102), + [aux_sym_null_literal_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token2] = ACTIONS(6098), + [aux_sym_coarray_statement_token6] = ACTIONS(6098), + [aux_sym_coarray_statement_token8] = ACTIONS(6098), + [aux_sym_coarray_statement_token11] = ACTIONS(6098), + [aux_sym_coarray_statement_token12] = ACTIONS(6098), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6098), + [aux_sym_identifier_token1] = ACTIONS(6098), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6102), + [sym__float_literal] = ACTIONS(6102), + [sym__boz_literal] = ACTIONS(6102), + [sym__string_literal] = ACTIONS(6102), + [sym__string_literal_kind] = ACTIONS(6102), + }, + [2361] = { + [aux_sym_preproc_include_token1] = ACTIONS(6450), + [aux_sym_preproc_def_token1] = ACTIONS(6450), + [aux_sym_preproc_if_token1] = ACTIONS(6450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6450), + [sym_preproc_directive] = ACTIONS(6450), + [anon_sym_LPAREN2] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(6452), + [anon_sym_DASH] = ACTIONS(6452), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(6450), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6450), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6450), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6450), + [aux_sym_procedure_attributes_token3] = ACTIONS(6450), + [aux_sym_contains_statement_token1] = ACTIONS(6450), + [aux_sym_use_statement_token2] = ACTIONS(6450), + [aux_sym_implicit_statement_token4] = ACTIONS(6450), + [aux_sym_save_statement_token1] = ACTIONS(6450), + [aux_sym_private_statement_token1] = ACTIONS(6450), + [aux_sym_public_statement_token1] = ACTIONS(6450), + [aux_sym_derived_type_definition_token1] = ACTIONS(6450), + [aux_sym_procedure_attribute_token6] = ACTIONS(6450), + [aux_sym_variable_attributes_token2] = ACTIONS(6450), + [aux_sym_variable_attributes_token3] = ACTIONS(6450), + [aux_sym_variable_attributes_token5] = ACTIONS(6450), + [aux_sym__intrinsic_type_token1] = ACTIONS(6450), + [aux_sym__intrinsic_type_token3] = ACTIONS(6450), + [aux_sym__intrinsic_type_token4] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6450), + [aux_sym_type_qualifier_token1] = ACTIONS(6450), + [aux_sym_type_qualifier_token2] = ACTIONS(6450), + [anon_sym_SEMI] = ACTIONS(6452), + [aux_sym_stop_statement_token1] = ACTIONS(6450), + [aux_sym_stop_statement_token2] = ACTIONS(6450), + [aux_sym_subroutine_call_token1] = ACTIONS(6450), + [aux_sym_keyword_statement_token1] = ACTIONS(6450), + [aux_sym_keyword_statement_token2] = ACTIONS(6450), + [aux_sym_keyword_statement_token3] = ACTIONS(6450), + [aux_sym_keyword_statement_token4] = ACTIONS(6450), + [aux_sym_keyword_statement_token6] = ACTIONS(6450), + [aux_sym_keyword_statement_token7] = ACTIONS(6450), + [aux_sym_include_statement_token1] = ACTIONS(6450), + [aux_sym_data_statement_token1] = ACTIONS(6450), + [aux_sym_do_loop_statement_token1] = ACTIONS(6450), + [aux_sym__inline_if_statement_token1] = ACTIONS(6450), + [aux_sym_end_if_statement_token1] = ACTIONS(6450), + [aux_sym_elseif_clause_token2] = ACTIONS(6450), + [aux_sym__inline_where_statement_token1] = ACTIONS(6450), + [aux_sym__forall_control_expression_token1] = ACTIONS(6450), + [aux_sym_select_case_statement_token1] = ACTIONS(6450), + [aux_sym_select_case_statement_token3] = ACTIONS(6450), + [aux_sym_select_type_statement_token1] = ACTIONS(6450), + [aux_sym_select_rank_statement_token2] = ACTIONS(6450), + [aux_sym_block_construct_token1] = ACTIONS(6450), + [aux_sym_associate_statement_token1] = ACTIONS(6450), + [aux_sym_format_statement_token1] = ACTIONS(6450), + [aux_sym_print_statement_token1] = ACTIONS(6450), + [aux_sym_open_statement_token1] = ACTIONS(6450), + [aux_sym_close_statement_token1] = ACTIONS(6450), + [aux_sym_inquire_statement_token1] = ACTIONS(6450), + [aux_sym_file_position_statement_token1] = ACTIONS(6450), + [aux_sym_file_position_statement_token2] = ACTIONS(6450), + [aux_sym_file_position_statement_token3] = ACTIONS(6450), + [aux_sym_file_position_statement_token4] = ACTIONS(6450), + [aux_sym_allocate_statement_token1] = ACTIONS(6450), + [aux_sym_entry_statement_token1] = ACTIONS(6450), + [aux_sym_logical_expression_token5] = ACTIONS(6452), + [anon_sym_DOT] = ACTIONS(6450), + [anon_sym_LPAREN_SLASH] = ACTIONS(6452), + [anon_sym_LBRACK] = ACTIONS(6452), + [aux_sym_boolean_literal_token1] = ACTIONS(6452), + [aux_sym_boolean_literal_token2] = ACTIONS(6452), + [aux_sym_null_literal_token1] = ACTIONS(6450), + [aux_sym_coarray_statement_token1] = ACTIONS(6450), + [aux_sym_coarray_statement_token2] = ACTIONS(6450), + [aux_sym_coarray_statement_token6] = ACTIONS(6450), + [aux_sym_coarray_statement_token8] = ACTIONS(6450), + [aux_sym_coarray_statement_token11] = ACTIONS(6450), + [aux_sym_coarray_statement_token12] = ACTIONS(6450), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6450), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6450), + [aux_sym_identifier_token1] = ACTIONS(6450), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(6452), + [sym__float_literal] = ACTIONS(6452), + [sym__boz_literal] = ACTIONS(6452), + [sym__string_literal] = ACTIONS(6452), + [sym__string_literal_kind] = ACTIONS(6452), }, - [2420] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [2362] = { + [aux_sym_preproc_include_token1] = ACTIONS(6454), + [aux_sym_preproc_def_token1] = ACTIONS(6454), + [aux_sym_preproc_if_token1] = ACTIONS(6454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6454), + [sym_preproc_directive] = ACTIONS(6454), + [anon_sym_LPAREN2] = ACTIONS(6454), + [anon_sym_PLUS] = ACTIONS(6456), + [anon_sym_DASH] = ACTIONS(6456), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_end_forall_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(6454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6454), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6454), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6454), + [aux_sym_procedure_attributes_token3] = ACTIONS(6454), + [aux_sym_contains_statement_token1] = ACTIONS(6454), + [aux_sym_use_statement_token2] = ACTIONS(6454), + [aux_sym_implicit_statement_token4] = ACTIONS(6454), + [aux_sym_save_statement_token1] = ACTIONS(6454), + [aux_sym_private_statement_token1] = ACTIONS(6454), + [aux_sym_public_statement_token1] = ACTIONS(6454), + [aux_sym_derived_type_definition_token1] = ACTIONS(6454), + [aux_sym_procedure_attribute_token6] = ACTIONS(6454), + [aux_sym_variable_attributes_token2] = ACTIONS(6454), + [aux_sym_variable_attributes_token3] = ACTIONS(6454), + [aux_sym_variable_attributes_token5] = ACTIONS(6454), + [aux_sym__intrinsic_type_token1] = ACTIONS(6454), + [aux_sym__intrinsic_type_token3] = ACTIONS(6454), + [aux_sym__intrinsic_type_token4] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6454), + [aux_sym_type_qualifier_token1] = ACTIONS(6454), + [aux_sym_type_qualifier_token2] = ACTIONS(6454), + [anon_sym_SEMI] = ACTIONS(6456), + [aux_sym_stop_statement_token1] = ACTIONS(6454), + [aux_sym_stop_statement_token2] = ACTIONS(6454), + [aux_sym_subroutine_call_token1] = ACTIONS(6454), + [aux_sym_keyword_statement_token1] = ACTIONS(6454), + [aux_sym_keyword_statement_token2] = ACTIONS(6454), + [aux_sym_keyword_statement_token3] = ACTIONS(6454), + [aux_sym_keyword_statement_token4] = ACTIONS(6454), + [aux_sym_keyword_statement_token6] = ACTIONS(6454), + [aux_sym_keyword_statement_token7] = ACTIONS(6454), + [aux_sym_include_statement_token1] = ACTIONS(6454), + [aux_sym_data_statement_token1] = ACTIONS(6454), + [aux_sym_do_loop_statement_token1] = ACTIONS(6454), + [aux_sym__inline_if_statement_token1] = ACTIONS(6454), + [aux_sym_end_if_statement_token1] = ACTIONS(6454), + [aux_sym_elseif_clause_token2] = ACTIONS(6454), + [aux_sym__inline_where_statement_token1] = ACTIONS(6454), + [aux_sym__forall_control_expression_token1] = ACTIONS(6454), + [aux_sym_select_case_statement_token1] = ACTIONS(6454), + [aux_sym_select_case_statement_token3] = ACTIONS(6454), + [aux_sym_select_type_statement_token1] = ACTIONS(6454), + [aux_sym_select_rank_statement_token2] = ACTIONS(6454), + [aux_sym_block_construct_token1] = ACTIONS(6454), + [aux_sym_associate_statement_token1] = ACTIONS(6454), + [aux_sym_format_statement_token1] = ACTIONS(6454), + [aux_sym_print_statement_token1] = ACTIONS(6454), + [aux_sym_open_statement_token1] = ACTIONS(6454), + [aux_sym_close_statement_token1] = ACTIONS(6454), + [aux_sym_inquire_statement_token1] = ACTIONS(6454), + [aux_sym_file_position_statement_token1] = ACTIONS(6454), + [aux_sym_file_position_statement_token2] = ACTIONS(6454), + [aux_sym_file_position_statement_token3] = ACTIONS(6454), + [aux_sym_file_position_statement_token4] = ACTIONS(6454), + [aux_sym_allocate_statement_token1] = ACTIONS(6454), + [aux_sym_entry_statement_token1] = ACTIONS(6454), + [aux_sym_logical_expression_token5] = ACTIONS(6456), + [anon_sym_DOT] = ACTIONS(6454), + [anon_sym_LPAREN_SLASH] = ACTIONS(6456), + [anon_sym_LBRACK] = ACTIONS(6456), + [aux_sym_boolean_literal_token1] = ACTIONS(6456), + [aux_sym_boolean_literal_token2] = ACTIONS(6456), + [aux_sym_null_literal_token1] = ACTIONS(6454), + [aux_sym_coarray_statement_token1] = ACTIONS(6454), + [aux_sym_coarray_statement_token2] = ACTIONS(6454), + [aux_sym_coarray_statement_token6] = ACTIONS(6454), + [aux_sym_coarray_statement_token8] = ACTIONS(6454), + [aux_sym_coarray_statement_token11] = ACTIONS(6454), + [aux_sym_coarray_statement_token12] = ACTIONS(6454), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6454), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6454), + [aux_sym_identifier_token1] = ACTIONS(6454), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [sym__integer_literal] = ACTIONS(6456), + [sym__float_literal] = ACTIONS(6456), + [sym__boz_literal] = ACTIONS(6456), + [sym__string_literal] = ACTIONS(6456), + [sym__string_literal_kind] = ACTIONS(6456), }, - [2421] = { - [aux_sym_preproc_include_token1] = ACTIONS(4315), - [aux_sym_preproc_def_token1] = ACTIONS(4315), - [aux_sym_preproc_if_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), - [sym_preproc_directive] = ACTIONS(4315), - [anon_sym_LPAREN2] = ACTIONS(4315), - [sym_preproc_comment] = ACTIONS(6548), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), + [2363] = { + [aux_sym_preproc_include_token1] = ACTIONS(6458), + [aux_sym_preproc_def_token1] = ACTIONS(6458), + [aux_sym_preproc_if_token1] = ACTIONS(6458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6458), + [sym_preproc_directive] = ACTIONS(6458), + [anon_sym_LPAREN2] = ACTIONS(6458), + [anon_sym_PLUS] = ACTIONS(6460), + [anon_sym_DASH] = ACTIONS(6460), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6458), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6458), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6458), + [aux_sym_end_module_procedure_statement_token1] = ACTIONS(6458), + [aux_sym_procedure_attributes_token3] = ACTIONS(6458), + [aux_sym_contains_statement_token1] = ACTIONS(6458), + [aux_sym_use_statement_token2] = ACTIONS(6458), + [aux_sym_implicit_statement_token4] = ACTIONS(6458), + [aux_sym_save_statement_token1] = ACTIONS(6458), + [aux_sym_private_statement_token1] = ACTIONS(6458), + [aux_sym_public_statement_token1] = ACTIONS(6458), + [aux_sym_derived_type_definition_token1] = ACTIONS(6458), + [aux_sym_procedure_attribute_token6] = ACTIONS(6458), + [aux_sym_variable_attributes_token2] = ACTIONS(6458), + [aux_sym_variable_attributes_token3] = ACTIONS(6458), + [aux_sym_variable_attributes_token5] = ACTIONS(6458), + [aux_sym__intrinsic_type_token1] = ACTIONS(6458), + [aux_sym__intrinsic_type_token3] = ACTIONS(6458), + [aux_sym__intrinsic_type_token4] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6458), + [aux_sym_type_qualifier_token1] = ACTIONS(6458), + [aux_sym_type_qualifier_token2] = ACTIONS(6458), + [anon_sym_SEMI] = ACTIONS(6460), + [aux_sym_stop_statement_token1] = ACTIONS(6458), + [aux_sym_stop_statement_token2] = ACTIONS(6458), + [aux_sym_subroutine_call_token1] = ACTIONS(6458), + [aux_sym_keyword_statement_token1] = ACTIONS(6458), + [aux_sym_keyword_statement_token2] = ACTIONS(6458), + [aux_sym_keyword_statement_token3] = ACTIONS(6458), + [aux_sym_keyword_statement_token4] = ACTIONS(6458), + [aux_sym_keyword_statement_token6] = ACTIONS(6458), + [aux_sym_keyword_statement_token7] = ACTIONS(6458), + [aux_sym_include_statement_token1] = ACTIONS(6458), + [aux_sym_data_statement_token1] = ACTIONS(6458), + [aux_sym_do_loop_statement_token1] = ACTIONS(6458), + [aux_sym__inline_if_statement_token1] = ACTIONS(6458), + [aux_sym_end_if_statement_token1] = ACTIONS(6458), + [aux_sym_elseif_clause_token2] = ACTIONS(6458), + [aux_sym__inline_where_statement_token1] = ACTIONS(6458), + [aux_sym__forall_control_expression_token1] = ACTIONS(6458), + [aux_sym_select_case_statement_token1] = ACTIONS(6458), + [aux_sym_select_case_statement_token3] = ACTIONS(6458), + [aux_sym_select_type_statement_token1] = ACTIONS(6458), + [aux_sym_select_rank_statement_token2] = ACTIONS(6458), + [aux_sym_block_construct_token1] = ACTIONS(6458), + [aux_sym_associate_statement_token1] = ACTIONS(6458), + [aux_sym_format_statement_token1] = ACTIONS(6458), + [aux_sym_print_statement_token1] = ACTIONS(6458), + [aux_sym_open_statement_token1] = ACTIONS(6458), + [aux_sym_close_statement_token1] = ACTIONS(6458), + [aux_sym_inquire_statement_token1] = ACTIONS(6458), + [aux_sym_file_position_statement_token1] = ACTIONS(6458), + [aux_sym_file_position_statement_token2] = ACTIONS(6458), + [aux_sym_file_position_statement_token3] = ACTIONS(6458), + [aux_sym_file_position_statement_token4] = ACTIONS(6458), + [aux_sym_allocate_statement_token1] = ACTIONS(6458), + [aux_sym_entry_statement_token1] = ACTIONS(6458), + [aux_sym_logical_expression_token5] = ACTIONS(6460), + [anon_sym_DOT] = ACTIONS(6458), + [anon_sym_LPAREN_SLASH] = ACTIONS(6460), + [anon_sym_LBRACK] = ACTIONS(6460), + [aux_sym_boolean_literal_token1] = ACTIONS(6460), + [aux_sym_boolean_literal_token2] = ACTIONS(6460), + [aux_sym_null_literal_token1] = ACTIONS(6458), + [aux_sym_coarray_statement_token1] = ACTIONS(6458), + [aux_sym_coarray_statement_token2] = ACTIONS(6458), + [aux_sym_coarray_statement_token6] = ACTIONS(6458), + [aux_sym_coarray_statement_token8] = ACTIONS(6458), + [aux_sym_coarray_statement_token11] = ACTIONS(6458), + [aux_sym_coarray_statement_token12] = ACTIONS(6458), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6458), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6458), + [aux_sym_identifier_token1] = ACTIONS(6458), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6460), + [sym__float_literal] = ACTIONS(6460), + [sym__boz_literal] = ACTIONS(6460), + [sym__string_literal] = ACTIONS(6460), + [sym__string_literal_kind] = ACTIONS(6460), + }, + [2364] = { + [aux_sym_preproc_include_token1] = ACTIONS(6440), + [aux_sym_preproc_def_token1] = ACTIONS(6440), + [aux_sym_preproc_if_token1] = ACTIONS(6440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6440), + [sym_preproc_directive] = ACTIONS(6440), + [anon_sym_LPAREN2] = ACTIONS(6440), + [anon_sym_PLUS] = ACTIONS(6442), + [anon_sym_DASH] = ACTIONS(6442), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6440), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6440), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6440), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6440), + [aux_sym_procedure_attributes_token3] = ACTIONS(6440), + [aux_sym_contains_statement_token1] = ACTIONS(6440), + [aux_sym_use_statement_token2] = ACTIONS(6440), + [aux_sym_implicit_statement_token4] = ACTIONS(6440), + [aux_sym_save_statement_token1] = ACTIONS(6440), + [aux_sym_private_statement_token1] = ACTIONS(6440), + [aux_sym_public_statement_token1] = ACTIONS(6440), + [aux_sym_derived_type_definition_token1] = ACTIONS(6440), + [aux_sym_procedure_attribute_token6] = ACTIONS(6440), + [aux_sym_variable_attributes_token2] = ACTIONS(6440), + [aux_sym_variable_attributes_token3] = ACTIONS(6440), + [aux_sym_variable_attributes_token5] = ACTIONS(6440), + [aux_sym__intrinsic_type_token1] = ACTIONS(6440), + [aux_sym__intrinsic_type_token3] = ACTIONS(6440), + [aux_sym__intrinsic_type_token4] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6440), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6440), + [aux_sym_type_qualifier_token1] = ACTIONS(6440), + [aux_sym_type_qualifier_token2] = ACTIONS(6440), + [anon_sym_SEMI] = ACTIONS(6442), + [aux_sym_stop_statement_token1] = ACTIONS(6440), + [aux_sym_stop_statement_token2] = ACTIONS(6440), + [aux_sym_subroutine_call_token1] = ACTIONS(6440), + [aux_sym_keyword_statement_token1] = ACTIONS(6440), + [aux_sym_keyword_statement_token2] = ACTIONS(6440), + [aux_sym_keyword_statement_token3] = ACTIONS(6440), + [aux_sym_keyword_statement_token4] = ACTIONS(6440), + [aux_sym_keyword_statement_token6] = ACTIONS(6440), + [aux_sym_keyword_statement_token7] = ACTIONS(6440), + [aux_sym_include_statement_token1] = ACTIONS(6440), + [aux_sym_data_statement_token1] = ACTIONS(6440), + [aux_sym_do_loop_statement_token1] = ACTIONS(6440), + [aux_sym__inline_if_statement_token1] = ACTIONS(6440), + [aux_sym_end_if_statement_token1] = ACTIONS(6440), + [aux_sym_elseif_clause_token2] = ACTIONS(6440), + [aux_sym__inline_where_statement_token1] = ACTIONS(6440), + [aux_sym__forall_control_expression_token1] = ACTIONS(6440), + [aux_sym_select_case_statement_token1] = ACTIONS(6440), + [aux_sym_select_case_statement_token3] = ACTIONS(6440), + [aux_sym_select_type_statement_token1] = ACTIONS(6440), + [aux_sym_select_rank_statement_token2] = ACTIONS(6440), + [aux_sym_block_construct_token1] = ACTIONS(6440), + [aux_sym_associate_statement_token1] = ACTIONS(6440), + [aux_sym_format_statement_token1] = ACTIONS(6440), + [aux_sym_print_statement_token1] = ACTIONS(6440), + [aux_sym_open_statement_token1] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6440), + [aux_sym_inquire_statement_token1] = ACTIONS(6440), + [aux_sym_file_position_statement_token1] = ACTIONS(6440), + [aux_sym_file_position_statement_token2] = ACTIONS(6440), + [aux_sym_file_position_statement_token3] = ACTIONS(6440), + [aux_sym_file_position_statement_token4] = ACTIONS(6440), + [aux_sym_allocate_statement_token1] = ACTIONS(6440), + [aux_sym_entry_statement_token1] = ACTIONS(6440), + [aux_sym_logical_expression_token5] = ACTIONS(6442), + [anon_sym_DOT] = ACTIONS(6440), + [anon_sym_LPAREN_SLASH] = ACTIONS(6442), + [anon_sym_LBRACK] = ACTIONS(6442), + [aux_sym_boolean_literal_token1] = ACTIONS(6442), + [aux_sym_boolean_literal_token2] = ACTIONS(6442), + [aux_sym_null_literal_token1] = ACTIONS(6440), + [aux_sym_coarray_statement_token1] = ACTIONS(6440), + [aux_sym_coarray_statement_token2] = ACTIONS(6440), + [aux_sym_coarray_statement_token6] = ACTIONS(6440), + [aux_sym_coarray_statement_token8] = ACTIONS(6440), + [aux_sym_coarray_statement_token11] = ACTIONS(6440), + [aux_sym_coarray_statement_token12] = ACTIONS(6440), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6440), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6440), + [aux_sym_identifier_token1] = ACTIONS(6440), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6442), + [sym__float_literal] = ACTIONS(6442), + [sym__boz_literal] = ACTIONS(6442), + [sym__string_literal] = ACTIONS(6442), + [sym__string_literal_kind] = ACTIONS(6442), + }, + [2365] = { + [aux_sym_preproc_include_token1] = ACTIONS(6354), + [aux_sym_preproc_def_token1] = ACTIONS(6354), + [aux_sym_preproc_if_token1] = ACTIONS(6354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6354), + [sym_preproc_directive] = ACTIONS(6354), + [anon_sym_LPAREN2] = ACTIONS(6354), + [anon_sym_PLUS] = ACTIONS(6356), + [anon_sym_DASH] = ACTIONS(6356), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), - [aux_sym_procedure_attributes_token3] = ACTIONS(4315), - [aux_sym_use_statement_token2] = ACTIONS(4315), - [aux_sym_implicit_statement_token4] = ACTIONS(4315), - [aux_sym_save_statement_token1] = ACTIONS(4315), - [aux_sym_private_statement_token1] = ACTIONS(4315), - [aux_sym_public_statement_token1] = ACTIONS(4315), - [aux_sym_derived_type_definition_token1] = ACTIONS(4315), - [aux_sym_procedure_attribute_token6] = ACTIONS(4315), - [aux_sym_variable_attributes_token2] = ACTIONS(4315), - [aux_sym_variable_attributes_token3] = ACTIONS(4315), - [aux_sym_variable_attributes_token5] = ACTIONS(4315), - [aux_sym__intrinsic_type_token1] = ACTIONS(4315), - [aux_sym__intrinsic_type_token3] = ACTIONS(4315), - [aux_sym__intrinsic_type_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), - [aux_sym_type_qualifier_token1] = ACTIONS(4315), - [aux_sym_type_qualifier_token2] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(5534), - [aux_sym_stop_statement_token1] = ACTIONS(4315), - [aux_sym_stop_statement_token2] = ACTIONS(4315), - [aux_sym_subroutine_call_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token1] = ACTIONS(4315), - [aux_sym_keyword_statement_token2] = ACTIONS(4315), - [aux_sym_keyword_statement_token3] = ACTIONS(4315), - [aux_sym_keyword_statement_token4] = ACTIONS(4315), - [aux_sym_keyword_statement_token6] = ACTIONS(4315), - [aux_sym_keyword_statement_token7] = ACTIONS(4315), - [aux_sym_include_statement_token1] = ACTIONS(4315), - [aux_sym_data_statement_token1] = ACTIONS(4315), - [aux_sym_do_loop_statement_token1] = ACTIONS(4315), - [aux_sym__inline_if_statement_token1] = ACTIONS(4315), - [aux_sym_end_if_statement_token1] = ACTIONS(4315), - [aux_sym_elseif_clause_token2] = ACTIONS(4315), - [aux_sym__inline_where_statement_token1] = ACTIONS(4315), - [aux_sym__forall_control_expression_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token1] = ACTIONS(4315), - [aux_sym_select_case_statement_token3] = ACTIONS(4315), - [aux_sym_select_type_statement_token1] = ACTIONS(4315), - [aux_sym_select_rank_statement_token2] = ACTIONS(4315), - [aux_sym_block_construct_token1] = ACTIONS(4315), - [aux_sym_associate_statement_token1] = ACTIONS(4315), - [aux_sym_format_statement_token1] = ACTIONS(4315), - [aux_sym_print_statement_token1] = ACTIONS(4315), - [aux_sym_open_statement_token1] = ACTIONS(4315), - [aux_sym_close_statement_token1] = ACTIONS(4315), - [aux_sym_inquire_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token1] = ACTIONS(4315), - [aux_sym_file_position_statement_token2] = ACTIONS(4315), - [aux_sym_file_position_statement_token3] = ACTIONS(4315), - [aux_sym_file_position_statement_token4] = ACTIONS(4315), - [aux_sym_allocate_statement_token1] = ACTIONS(4315), - [aux_sym_entry_statement_token1] = ACTIONS(4315), - [aux_sym_logical_expression_token5] = ACTIONS(5534), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LPAREN_SLASH] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [aux_sym_boolean_literal_token1] = ACTIONS(5534), - [aux_sym_boolean_literal_token2] = ACTIONS(5534), - [aux_sym_null_literal_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_statement_token2] = ACTIONS(4315), - [aux_sym_coarray_statement_token6] = ACTIONS(4315), - [aux_sym_coarray_statement_token8] = ACTIONS(4315), - [aux_sym_coarray_statement_token11] = ACTIONS(4315), - [aux_sym_coarray_statement_token12] = ACTIONS(4315), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), - [aux_sym_identifier_token1] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(6354), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6354), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6354), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6354), + [aux_sym_procedure_attributes_token3] = ACTIONS(6354), + [aux_sym_contains_statement_token1] = ACTIONS(6354), + [aux_sym_use_statement_token2] = ACTIONS(6354), + [aux_sym_implicit_statement_token4] = ACTIONS(6354), + [aux_sym_save_statement_token1] = ACTIONS(6354), + [aux_sym_private_statement_token1] = ACTIONS(6354), + [aux_sym_public_statement_token1] = ACTIONS(6354), + [aux_sym_derived_type_definition_token1] = ACTIONS(6354), + [aux_sym_procedure_attribute_token6] = ACTIONS(6354), + [aux_sym_variable_attributes_token2] = ACTIONS(6354), + [aux_sym_variable_attributes_token3] = ACTIONS(6354), + [aux_sym_variable_attributes_token5] = ACTIONS(6354), + [aux_sym__intrinsic_type_token1] = ACTIONS(6354), + [aux_sym__intrinsic_type_token3] = ACTIONS(6354), + [aux_sym__intrinsic_type_token4] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6354), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6354), + [aux_sym_type_qualifier_token1] = ACTIONS(6354), + [aux_sym_type_qualifier_token2] = ACTIONS(6354), + [anon_sym_SEMI] = ACTIONS(6356), + [aux_sym_stop_statement_token1] = ACTIONS(6354), + [aux_sym_stop_statement_token2] = ACTIONS(6354), + [aux_sym_subroutine_call_token1] = ACTIONS(6354), + [aux_sym_keyword_statement_token1] = ACTIONS(6354), + [aux_sym_keyword_statement_token2] = ACTIONS(6354), + [aux_sym_keyword_statement_token3] = ACTIONS(6354), + [aux_sym_keyword_statement_token4] = ACTIONS(6354), + [aux_sym_keyword_statement_token6] = ACTIONS(6354), + [aux_sym_keyword_statement_token7] = ACTIONS(6354), + [aux_sym_include_statement_token1] = ACTIONS(6354), + [aux_sym_data_statement_token1] = ACTIONS(6354), + [aux_sym_do_loop_statement_token1] = ACTIONS(6354), + [aux_sym__inline_if_statement_token1] = ACTIONS(6354), + [aux_sym_end_if_statement_token1] = ACTIONS(6354), + [aux_sym_elseif_clause_token2] = ACTIONS(6354), + [aux_sym__inline_where_statement_token1] = ACTIONS(6354), + [aux_sym__forall_control_expression_token1] = ACTIONS(6354), + [aux_sym_select_case_statement_token1] = ACTIONS(6354), + [aux_sym_select_case_statement_token3] = ACTIONS(6354), + [aux_sym_select_type_statement_token1] = ACTIONS(6354), + [aux_sym_select_rank_statement_token2] = ACTIONS(6354), + [aux_sym_block_construct_token1] = ACTIONS(6354), + [aux_sym_associate_statement_token1] = ACTIONS(6354), + [aux_sym_format_statement_token1] = ACTIONS(6354), + [aux_sym_print_statement_token1] = ACTIONS(6354), + [aux_sym_open_statement_token1] = ACTIONS(6354), + [aux_sym_close_statement_token1] = ACTIONS(6354), + [aux_sym_inquire_statement_token1] = ACTIONS(6354), + [aux_sym_file_position_statement_token1] = ACTIONS(6354), + [aux_sym_file_position_statement_token2] = ACTIONS(6354), + [aux_sym_file_position_statement_token3] = ACTIONS(6354), + [aux_sym_file_position_statement_token4] = ACTIONS(6354), + [aux_sym_allocate_statement_token1] = ACTIONS(6354), + [aux_sym_entry_statement_token1] = ACTIONS(6354), + [aux_sym_logical_expression_token5] = ACTIONS(6356), + [anon_sym_DOT] = ACTIONS(6354), + [anon_sym_LPAREN_SLASH] = ACTIONS(6356), + [anon_sym_LBRACK] = ACTIONS(6356), + [aux_sym_boolean_literal_token1] = ACTIONS(6356), + [aux_sym_boolean_literal_token2] = ACTIONS(6356), + [aux_sym_null_literal_token1] = ACTIONS(6354), + [aux_sym_coarray_statement_token1] = ACTIONS(6354), + [aux_sym_coarray_statement_token2] = ACTIONS(6354), + [aux_sym_coarray_statement_token6] = ACTIONS(6354), + [aux_sym_coarray_statement_token8] = ACTIONS(6354), + [aux_sym_coarray_statement_token11] = ACTIONS(6354), + [aux_sym_coarray_statement_token12] = ACTIONS(6354), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6354), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6354), + [aux_sym_identifier_token1] = ACTIONS(6354), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5534), - [sym__float_literal] = ACTIONS(5534), - [sym__boz_literal] = ACTIONS(5534), - [sym__string_literal] = ACTIONS(5534), - [sym__string_literal_kind] = ACTIONS(5534), + [sym__integer_literal] = ACTIONS(6356), + [sym__float_literal] = ACTIONS(6356), + [sym__boz_literal] = ACTIONS(6356), + [sym__string_literal] = ACTIONS(6356), + [sym__string_literal_kind] = ACTIONS(6356), }, - [2422] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [sym_preproc_comment] = ACTIONS(6550), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2366] = { + [aux_sym_preproc_include_token1] = ACTIONS(6444), + [aux_sym_preproc_def_token1] = ACTIONS(6444), + [aux_sym_preproc_if_token1] = ACTIONS(6444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6444), + [sym_preproc_directive] = ACTIONS(6444), + [anon_sym_LPAREN2] = ACTIONS(6444), + [anon_sym_PLUS] = ACTIONS(6446), + [anon_sym_DASH] = ACTIONS(6446), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6444), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6444), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6444), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6444), + [aux_sym_procedure_attributes_token3] = ACTIONS(6444), + [aux_sym_contains_statement_token1] = ACTIONS(6444), + [aux_sym_use_statement_token2] = ACTIONS(6444), + [aux_sym_implicit_statement_token4] = ACTIONS(6444), + [aux_sym_save_statement_token1] = ACTIONS(6444), + [aux_sym_private_statement_token1] = ACTIONS(6444), + [aux_sym_public_statement_token1] = ACTIONS(6444), + [aux_sym_derived_type_definition_token1] = ACTIONS(6444), + [aux_sym_procedure_attribute_token6] = ACTIONS(6444), + [aux_sym_variable_attributes_token2] = ACTIONS(6444), + [aux_sym_variable_attributes_token3] = ACTIONS(6444), + [aux_sym_variable_attributes_token5] = ACTIONS(6444), + [aux_sym__intrinsic_type_token1] = ACTIONS(6444), + [aux_sym__intrinsic_type_token3] = ACTIONS(6444), + [aux_sym__intrinsic_type_token4] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6444), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6444), + [aux_sym_type_qualifier_token1] = ACTIONS(6444), + [aux_sym_type_qualifier_token2] = ACTIONS(6444), + [anon_sym_SEMI] = ACTIONS(6446), + [aux_sym_stop_statement_token1] = ACTIONS(6444), + [aux_sym_stop_statement_token2] = ACTIONS(6444), + [aux_sym_subroutine_call_token1] = ACTIONS(6444), + [aux_sym_keyword_statement_token1] = ACTIONS(6444), + [aux_sym_keyword_statement_token2] = ACTIONS(6444), + [aux_sym_keyword_statement_token3] = ACTIONS(6444), + [aux_sym_keyword_statement_token4] = ACTIONS(6444), + [aux_sym_keyword_statement_token6] = ACTIONS(6444), + [aux_sym_keyword_statement_token7] = ACTIONS(6444), + [aux_sym_include_statement_token1] = ACTIONS(6444), + [aux_sym_data_statement_token1] = ACTIONS(6444), + [aux_sym_do_loop_statement_token1] = ACTIONS(6444), + [aux_sym__inline_if_statement_token1] = ACTIONS(6444), + [aux_sym_end_if_statement_token1] = ACTIONS(6444), + [aux_sym_elseif_clause_token2] = ACTIONS(6444), + [aux_sym__inline_where_statement_token1] = ACTIONS(6444), + [aux_sym__forall_control_expression_token1] = ACTIONS(6444), + [aux_sym_select_case_statement_token1] = ACTIONS(6444), + [aux_sym_select_case_statement_token3] = ACTIONS(6444), + [aux_sym_select_type_statement_token1] = ACTIONS(6444), + [aux_sym_select_rank_statement_token2] = ACTIONS(6444), + [aux_sym_block_construct_token1] = ACTIONS(6444), + [aux_sym_associate_statement_token1] = ACTIONS(6444), + [aux_sym_format_statement_token1] = ACTIONS(6444), + [aux_sym_print_statement_token1] = ACTIONS(6444), + [aux_sym_open_statement_token1] = ACTIONS(6444), + [aux_sym_close_statement_token1] = ACTIONS(6444), + [aux_sym_inquire_statement_token1] = ACTIONS(6444), + [aux_sym_file_position_statement_token1] = ACTIONS(6444), + [aux_sym_file_position_statement_token2] = ACTIONS(6444), + [aux_sym_file_position_statement_token3] = ACTIONS(6444), + [aux_sym_file_position_statement_token4] = ACTIONS(6444), + [aux_sym_allocate_statement_token1] = ACTIONS(6444), + [aux_sym_entry_statement_token1] = ACTIONS(6444), + [aux_sym_logical_expression_token5] = ACTIONS(6446), + [anon_sym_DOT] = ACTIONS(6444), + [anon_sym_LPAREN_SLASH] = ACTIONS(6446), + [anon_sym_LBRACK] = ACTIONS(6446), + [aux_sym_boolean_literal_token1] = ACTIONS(6446), + [aux_sym_boolean_literal_token2] = ACTIONS(6446), + [aux_sym_null_literal_token1] = ACTIONS(6444), + [aux_sym_coarray_statement_token1] = ACTIONS(6444), + [aux_sym_coarray_statement_token2] = ACTIONS(6444), + [aux_sym_coarray_statement_token6] = ACTIONS(6444), + [aux_sym_coarray_statement_token8] = ACTIONS(6444), + [aux_sym_coarray_statement_token11] = ACTIONS(6444), + [aux_sym_coarray_statement_token12] = ACTIONS(6444), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6444), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6444), + [aux_sym_identifier_token1] = ACTIONS(6444), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6446), + [sym__float_literal] = ACTIONS(6446), + [sym__boz_literal] = ACTIONS(6446), + [sym__string_literal] = ACTIONS(6446), + [sym__string_literal_kind] = ACTIONS(6446), + }, + [2367] = { + [aux_sym_preproc_include_token1] = ACTIONS(6098), + [aux_sym_preproc_def_token1] = ACTIONS(6098), + [aux_sym_preproc_if_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6098), + [sym_preproc_directive] = ACTIONS(6098), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_PLUS] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6102), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6098), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6098), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6098), + [aux_sym_procedure_attributes_token3] = ACTIONS(6098), + [aux_sym_contains_statement_token1] = ACTIONS(6098), + [aux_sym_use_statement_token2] = ACTIONS(6098), + [aux_sym_implicit_statement_token4] = ACTIONS(6098), + [aux_sym_save_statement_token1] = ACTIONS(6098), + [aux_sym_private_statement_token1] = ACTIONS(6098), + [aux_sym_public_statement_token1] = ACTIONS(6098), + [aux_sym_derived_type_definition_token1] = ACTIONS(6098), + [aux_sym_procedure_attribute_token6] = ACTIONS(6098), + [aux_sym_variable_attributes_token2] = ACTIONS(6098), + [aux_sym_variable_attributes_token3] = ACTIONS(6098), + [aux_sym_variable_attributes_token5] = ACTIONS(6098), + [aux_sym__intrinsic_type_token1] = ACTIONS(6098), + [aux_sym__intrinsic_type_token3] = ACTIONS(6098), + [aux_sym__intrinsic_type_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6098), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6098), + [aux_sym_type_qualifier_token1] = ACTIONS(6098), + [aux_sym_type_qualifier_token2] = ACTIONS(6098), + [anon_sym_SEMI] = ACTIONS(6102), + [aux_sym_stop_statement_token1] = ACTIONS(6098), + [aux_sym_stop_statement_token2] = ACTIONS(6098), + [aux_sym_subroutine_call_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token1] = ACTIONS(6098), + [aux_sym_keyword_statement_token2] = ACTIONS(6098), + [aux_sym_keyword_statement_token3] = ACTIONS(6098), + [aux_sym_keyword_statement_token4] = ACTIONS(6098), + [aux_sym_keyword_statement_token6] = ACTIONS(6098), + [aux_sym_keyword_statement_token7] = ACTIONS(6098), + [aux_sym_include_statement_token1] = ACTIONS(6098), + [aux_sym_data_statement_token1] = ACTIONS(6098), + [aux_sym_do_loop_statement_token1] = ACTIONS(6098), + [aux_sym__inline_if_statement_token1] = ACTIONS(6098), + [aux_sym_end_if_statement_token1] = ACTIONS(6098), + [aux_sym_elseif_clause_token2] = ACTIONS(6098), + [aux_sym__inline_where_statement_token1] = ACTIONS(6098), + [aux_sym__forall_control_expression_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token1] = ACTIONS(6098), + [aux_sym_select_case_statement_token3] = ACTIONS(6098), + [aux_sym_select_type_statement_token1] = ACTIONS(6098), + [aux_sym_select_rank_statement_token2] = ACTIONS(6098), + [aux_sym_block_construct_token1] = ACTIONS(6098), + [aux_sym_associate_statement_token1] = ACTIONS(6098), + [aux_sym_format_statement_token1] = ACTIONS(6098), + [aux_sym_print_statement_token1] = ACTIONS(6098), + [aux_sym_open_statement_token1] = ACTIONS(6098), + [aux_sym_close_statement_token1] = ACTIONS(6098), + [aux_sym_inquire_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token1] = ACTIONS(6098), + [aux_sym_file_position_statement_token2] = ACTIONS(6098), + [aux_sym_file_position_statement_token3] = ACTIONS(6098), + [aux_sym_file_position_statement_token4] = ACTIONS(6098), + [aux_sym_allocate_statement_token1] = ACTIONS(6098), + [aux_sym_entry_statement_token1] = ACTIONS(6098), + [aux_sym_logical_expression_token5] = ACTIONS(6102), + [anon_sym_DOT] = ACTIONS(6098), + [anon_sym_LPAREN_SLASH] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(6102), + [aux_sym_boolean_literal_token1] = ACTIONS(6102), + [aux_sym_boolean_literal_token2] = ACTIONS(6102), + [aux_sym_null_literal_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_statement_token2] = ACTIONS(6098), + [aux_sym_coarray_statement_token6] = ACTIONS(6098), + [aux_sym_coarray_statement_token8] = ACTIONS(6098), + [aux_sym_coarray_statement_token11] = ACTIONS(6098), + [aux_sym_coarray_statement_token12] = ACTIONS(6098), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6098), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6098), + [aux_sym_identifier_token1] = ACTIONS(6098), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6102), + [sym__float_literal] = ACTIONS(6102), + [sym__boz_literal] = ACTIONS(6102), + [sym__string_literal] = ACTIONS(6102), + [sym__string_literal_kind] = ACTIONS(6102), + }, + [2368] = { + [aux_sym_preproc_include_token1] = ACTIONS(2059), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), + [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_contains_statement_token1] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2059), + [aux_sym_save_statement_token1] = ACTIONS(2059), + [aux_sym_private_statement_token1] = ACTIONS(2059), + [aux_sym_public_statement_token1] = ACTIONS(2059), + [aux_sym_derived_type_definition_token1] = ACTIONS(2059), + [aux_sym_procedure_attribute_token6] = ACTIONS(2059), + [aux_sym_variable_attributes_token2] = ACTIONS(2059), + [aux_sym_variable_attributes_token3] = ACTIONS(2059), + [aux_sym_variable_attributes_token5] = ACTIONS(2059), + [aux_sym__intrinsic_type_token1] = ACTIONS(2059), + [aux_sym__intrinsic_type_token3] = ACTIONS(2059), + [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), + [aux_sym_type_qualifier_token1] = ACTIONS(2059), + [aux_sym_type_qualifier_token2] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(5698), + [aux_sym_stop_statement_token1] = ACTIONS(2059), + [aux_sym_stop_statement_token2] = ACTIONS(2059), + [aux_sym_subroutine_call_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token2] = ACTIONS(2059), + [aux_sym_keyword_statement_token3] = ACTIONS(2059), + [aux_sym_keyword_statement_token4] = ACTIONS(2059), + [aux_sym_keyword_statement_token6] = ACTIONS(2059), + [aux_sym_keyword_statement_token7] = ACTIONS(2059), + [aux_sym_include_statement_token1] = ACTIONS(2059), + [aux_sym_data_statement_token1] = ACTIONS(2059), + [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2059), + [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2059), + [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token3] = ACTIONS(2059), + [aux_sym_select_type_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2423] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2369] = { + [aux_sym_preproc_include_token1] = ACTIONS(6450), + [aux_sym_preproc_def_token1] = ACTIONS(6450), + [aux_sym_preproc_if_token1] = ACTIONS(6450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6450), + [sym_preproc_directive] = ACTIONS(6450), + [anon_sym_LPAREN2] = ACTIONS(6450), + [anon_sym_PLUS] = ACTIONS(6452), + [anon_sym_DASH] = ACTIONS(6452), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(6450), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6450), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6450), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6450), + [aux_sym_procedure_attributes_token3] = ACTIONS(6450), + [aux_sym_contains_statement_token1] = ACTIONS(6450), + [aux_sym_use_statement_token2] = ACTIONS(6450), + [aux_sym_implicit_statement_token4] = ACTIONS(6450), + [aux_sym_save_statement_token1] = ACTIONS(6450), + [aux_sym_private_statement_token1] = ACTIONS(6450), + [aux_sym_public_statement_token1] = ACTIONS(6450), + [aux_sym_derived_type_definition_token1] = ACTIONS(6450), + [aux_sym_procedure_attribute_token6] = ACTIONS(6450), + [aux_sym_variable_attributes_token2] = ACTIONS(6450), + [aux_sym_variable_attributes_token3] = ACTIONS(6450), + [aux_sym_variable_attributes_token5] = ACTIONS(6450), + [aux_sym__intrinsic_type_token1] = ACTIONS(6450), + [aux_sym__intrinsic_type_token3] = ACTIONS(6450), + [aux_sym__intrinsic_type_token4] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6450), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6450), + [aux_sym_type_qualifier_token1] = ACTIONS(6450), + [aux_sym_type_qualifier_token2] = ACTIONS(6450), + [anon_sym_SEMI] = ACTIONS(6452), + [aux_sym_stop_statement_token1] = ACTIONS(6450), + [aux_sym_stop_statement_token2] = ACTIONS(6450), + [aux_sym_subroutine_call_token1] = ACTIONS(6450), + [aux_sym_keyword_statement_token1] = ACTIONS(6450), + [aux_sym_keyword_statement_token2] = ACTIONS(6450), + [aux_sym_keyword_statement_token3] = ACTIONS(6450), + [aux_sym_keyword_statement_token4] = ACTIONS(6450), + [aux_sym_keyword_statement_token6] = ACTIONS(6450), + [aux_sym_keyword_statement_token7] = ACTIONS(6450), + [aux_sym_include_statement_token1] = ACTIONS(6450), + [aux_sym_data_statement_token1] = ACTIONS(6450), + [aux_sym_do_loop_statement_token1] = ACTIONS(6450), + [aux_sym__inline_if_statement_token1] = ACTIONS(6450), + [aux_sym_end_if_statement_token1] = ACTIONS(6450), + [aux_sym_elseif_clause_token2] = ACTIONS(6450), + [aux_sym__inline_where_statement_token1] = ACTIONS(6450), + [aux_sym__forall_control_expression_token1] = ACTIONS(6450), + [aux_sym_select_case_statement_token1] = ACTIONS(6450), + [aux_sym_select_case_statement_token3] = ACTIONS(6450), + [aux_sym_select_type_statement_token1] = ACTIONS(6450), + [aux_sym_select_rank_statement_token2] = ACTIONS(6450), + [aux_sym_block_construct_token1] = ACTIONS(6450), + [aux_sym_associate_statement_token1] = ACTIONS(6450), + [aux_sym_format_statement_token1] = ACTIONS(6450), + [aux_sym_print_statement_token1] = ACTIONS(6450), + [aux_sym_open_statement_token1] = ACTIONS(6450), + [aux_sym_close_statement_token1] = ACTIONS(6450), + [aux_sym_inquire_statement_token1] = ACTIONS(6450), + [aux_sym_file_position_statement_token1] = ACTIONS(6450), + [aux_sym_file_position_statement_token2] = ACTIONS(6450), + [aux_sym_file_position_statement_token3] = ACTIONS(6450), + [aux_sym_file_position_statement_token4] = ACTIONS(6450), + [aux_sym_allocate_statement_token1] = ACTIONS(6450), + [aux_sym_entry_statement_token1] = ACTIONS(6450), + [aux_sym_logical_expression_token5] = ACTIONS(6452), + [anon_sym_DOT] = ACTIONS(6450), + [anon_sym_LPAREN_SLASH] = ACTIONS(6452), + [anon_sym_LBRACK] = ACTIONS(6452), + [aux_sym_boolean_literal_token1] = ACTIONS(6452), + [aux_sym_boolean_literal_token2] = ACTIONS(6452), + [aux_sym_null_literal_token1] = ACTIONS(6450), + [aux_sym_coarray_statement_token1] = ACTIONS(6450), + [aux_sym_coarray_statement_token2] = ACTIONS(6450), + [aux_sym_coarray_statement_token6] = ACTIONS(6450), + [aux_sym_coarray_statement_token8] = ACTIONS(6450), + [aux_sym_coarray_statement_token11] = ACTIONS(6450), + [aux_sym_coarray_statement_token12] = ACTIONS(6450), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6450), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6450), + [aux_sym_identifier_token1] = ACTIONS(6450), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [2424] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token2] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [sym__integer_literal] = ACTIONS(6452), + [sym__float_literal] = ACTIONS(6452), + [sym__boz_literal] = ACTIONS(6452), + [sym__string_literal] = ACTIONS(6452), + [sym__string_literal_kind] = ACTIONS(6452), }, - [2425] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token2] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [2370] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6512), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), }, - [2426] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2371] = { + [aux_sym_preproc_include_token1] = ACTIONS(6454), + [aux_sym_preproc_def_token1] = ACTIONS(6454), + [aux_sym_preproc_if_token1] = ACTIONS(6454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6454), + [sym_preproc_directive] = ACTIONS(6454), + [anon_sym_LPAREN2] = ACTIONS(6454), + [anon_sym_PLUS] = ACTIONS(6456), + [anon_sym_DASH] = ACTIONS(6456), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6454), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6454), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6454), + [aux_sym_procedure_attributes_token3] = ACTIONS(6454), + [aux_sym_contains_statement_token1] = ACTIONS(6454), + [aux_sym_use_statement_token2] = ACTIONS(6454), + [aux_sym_implicit_statement_token4] = ACTIONS(6454), + [aux_sym_save_statement_token1] = ACTIONS(6454), + [aux_sym_private_statement_token1] = ACTIONS(6454), + [aux_sym_public_statement_token1] = ACTIONS(6454), + [aux_sym_derived_type_definition_token1] = ACTIONS(6454), + [aux_sym_procedure_attribute_token6] = ACTIONS(6454), + [aux_sym_variable_attributes_token2] = ACTIONS(6454), + [aux_sym_variable_attributes_token3] = ACTIONS(6454), + [aux_sym_variable_attributes_token5] = ACTIONS(6454), + [aux_sym__intrinsic_type_token1] = ACTIONS(6454), + [aux_sym__intrinsic_type_token3] = ACTIONS(6454), + [aux_sym__intrinsic_type_token4] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6454), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6454), + [aux_sym_type_qualifier_token1] = ACTIONS(6454), + [aux_sym_type_qualifier_token2] = ACTIONS(6454), + [anon_sym_SEMI] = ACTIONS(6456), + [aux_sym_stop_statement_token1] = ACTIONS(6454), + [aux_sym_stop_statement_token2] = ACTIONS(6454), + [aux_sym_subroutine_call_token1] = ACTIONS(6454), + [aux_sym_keyword_statement_token1] = ACTIONS(6454), + [aux_sym_keyword_statement_token2] = ACTIONS(6454), + [aux_sym_keyword_statement_token3] = ACTIONS(6454), + [aux_sym_keyword_statement_token4] = ACTIONS(6454), + [aux_sym_keyword_statement_token6] = ACTIONS(6454), + [aux_sym_keyword_statement_token7] = ACTIONS(6454), + [aux_sym_include_statement_token1] = ACTIONS(6454), + [aux_sym_data_statement_token1] = ACTIONS(6454), + [aux_sym_do_loop_statement_token1] = ACTIONS(6454), + [aux_sym__inline_if_statement_token1] = ACTIONS(6454), + [aux_sym_end_if_statement_token1] = ACTIONS(6454), + [aux_sym_elseif_clause_token2] = ACTIONS(6454), + [aux_sym__inline_where_statement_token1] = ACTIONS(6454), + [aux_sym__forall_control_expression_token1] = ACTIONS(6454), + [aux_sym_select_case_statement_token1] = ACTIONS(6454), + [aux_sym_select_case_statement_token3] = ACTIONS(6454), + [aux_sym_select_type_statement_token1] = ACTIONS(6454), + [aux_sym_select_rank_statement_token2] = ACTIONS(6454), + [aux_sym_block_construct_token1] = ACTIONS(6454), + [aux_sym_associate_statement_token1] = ACTIONS(6454), + [aux_sym_format_statement_token1] = ACTIONS(6454), + [aux_sym_print_statement_token1] = ACTIONS(6454), + [aux_sym_open_statement_token1] = ACTIONS(6454), + [aux_sym_close_statement_token1] = ACTIONS(6454), + [aux_sym_inquire_statement_token1] = ACTIONS(6454), + [aux_sym_file_position_statement_token1] = ACTIONS(6454), + [aux_sym_file_position_statement_token2] = ACTIONS(6454), + [aux_sym_file_position_statement_token3] = ACTIONS(6454), + [aux_sym_file_position_statement_token4] = ACTIONS(6454), + [aux_sym_allocate_statement_token1] = ACTIONS(6454), + [aux_sym_entry_statement_token1] = ACTIONS(6454), + [aux_sym_logical_expression_token5] = ACTIONS(6456), + [anon_sym_DOT] = ACTIONS(6454), + [anon_sym_LPAREN_SLASH] = ACTIONS(6456), + [anon_sym_LBRACK] = ACTIONS(6456), + [aux_sym_boolean_literal_token1] = ACTIONS(6456), + [aux_sym_boolean_literal_token2] = ACTIONS(6456), + [aux_sym_null_literal_token1] = ACTIONS(6454), + [aux_sym_coarray_statement_token1] = ACTIONS(6454), + [aux_sym_coarray_statement_token2] = ACTIONS(6454), + [aux_sym_coarray_statement_token6] = ACTIONS(6454), + [aux_sym_coarray_statement_token8] = ACTIONS(6454), + [aux_sym_coarray_statement_token11] = ACTIONS(6454), + [aux_sym_coarray_statement_token12] = ACTIONS(6454), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6454), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6454), + [aux_sym_identifier_token1] = ACTIONS(6454), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6456), + [sym__float_literal] = ACTIONS(6456), + [sym__boz_literal] = ACTIONS(6456), + [sym__string_literal] = ACTIONS(6456), + [sym__string_literal_kind] = ACTIONS(6456), }, - [2427] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token2] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [2372] = { + [aux_sym_preproc_include_token1] = ACTIONS(6458), + [aux_sym_preproc_def_token1] = ACTIONS(6458), + [aux_sym_preproc_if_token1] = ACTIONS(6458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6458), + [sym_preproc_directive] = ACTIONS(6458), + [anon_sym_LPAREN2] = ACTIONS(6458), + [anon_sym_PLUS] = ACTIONS(6460), + [anon_sym_DASH] = ACTIONS(6460), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6458), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6458), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6458), + [aux_sym_end_subroutine_statement_token1] = ACTIONS(6458), + [aux_sym_procedure_attributes_token3] = ACTIONS(6458), + [aux_sym_contains_statement_token1] = ACTIONS(6458), + [aux_sym_use_statement_token2] = ACTIONS(6458), + [aux_sym_implicit_statement_token4] = ACTIONS(6458), + [aux_sym_save_statement_token1] = ACTIONS(6458), + [aux_sym_private_statement_token1] = ACTIONS(6458), + [aux_sym_public_statement_token1] = ACTIONS(6458), + [aux_sym_derived_type_definition_token1] = ACTIONS(6458), + [aux_sym_procedure_attribute_token6] = ACTIONS(6458), + [aux_sym_variable_attributes_token2] = ACTIONS(6458), + [aux_sym_variable_attributes_token3] = ACTIONS(6458), + [aux_sym_variable_attributes_token5] = ACTIONS(6458), + [aux_sym__intrinsic_type_token1] = ACTIONS(6458), + [aux_sym__intrinsic_type_token3] = ACTIONS(6458), + [aux_sym__intrinsic_type_token4] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6458), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6458), + [aux_sym_type_qualifier_token1] = ACTIONS(6458), + [aux_sym_type_qualifier_token2] = ACTIONS(6458), + [anon_sym_SEMI] = ACTIONS(6460), + [aux_sym_stop_statement_token1] = ACTIONS(6458), + [aux_sym_stop_statement_token2] = ACTIONS(6458), + [aux_sym_subroutine_call_token1] = ACTIONS(6458), + [aux_sym_keyword_statement_token1] = ACTIONS(6458), + [aux_sym_keyword_statement_token2] = ACTIONS(6458), + [aux_sym_keyword_statement_token3] = ACTIONS(6458), + [aux_sym_keyword_statement_token4] = ACTIONS(6458), + [aux_sym_keyword_statement_token6] = ACTIONS(6458), + [aux_sym_keyword_statement_token7] = ACTIONS(6458), + [aux_sym_include_statement_token1] = ACTIONS(6458), + [aux_sym_data_statement_token1] = ACTIONS(6458), + [aux_sym_do_loop_statement_token1] = ACTIONS(6458), + [aux_sym__inline_if_statement_token1] = ACTIONS(6458), + [aux_sym_end_if_statement_token1] = ACTIONS(6458), + [aux_sym_elseif_clause_token2] = ACTIONS(6458), + [aux_sym__inline_where_statement_token1] = ACTIONS(6458), + [aux_sym__forall_control_expression_token1] = ACTIONS(6458), + [aux_sym_select_case_statement_token1] = ACTIONS(6458), + [aux_sym_select_case_statement_token3] = ACTIONS(6458), + [aux_sym_select_type_statement_token1] = ACTIONS(6458), + [aux_sym_select_rank_statement_token2] = ACTIONS(6458), + [aux_sym_block_construct_token1] = ACTIONS(6458), + [aux_sym_associate_statement_token1] = ACTIONS(6458), + [aux_sym_format_statement_token1] = ACTIONS(6458), + [aux_sym_print_statement_token1] = ACTIONS(6458), + [aux_sym_open_statement_token1] = ACTIONS(6458), + [aux_sym_close_statement_token1] = ACTIONS(6458), + [aux_sym_inquire_statement_token1] = ACTIONS(6458), + [aux_sym_file_position_statement_token1] = ACTIONS(6458), + [aux_sym_file_position_statement_token2] = ACTIONS(6458), + [aux_sym_file_position_statement_token3] = ACTIONS(6458), + [aux_sym_file_position_statement_token4] = ACTIONS(6458), + [aux_sym_allocate_statement_token1] = ACTIONS(6458), + [aux_sym_entry_statement_token1] = ACTIONS(6458), + [aux_sym_logical_expression_token5] = ACTIONS(6460), + [anon_sym_DOT] = ACTIONS(6458), + [anon_sym_LPAREN_SLASH] = ACTIONS(6460), + [anon_sym_LBRACK] = ACTIONS(6460), + [aux_sym_boolean_literal_token1] = ACTIONS(6460), + [aux_sym_boolean_literal_token2] = ACTIONS(6460), + [aux_sym_null_literal_token1] = ACTIONS(6458), + [aux_sym_coarray_statement_token1] = ACTIONS(6458), + [aux_sym_coarray_statement_token2] = ACTIONS(6458), + [aux_sym_coarray_statement_token6] = ACTIONS(6458), + [aux_sym_coarray_statement_token8] = ACTIONS(6458), + [aux_sym_coarray_statement_token11] = ACTIONS(6458), + [aux_sym_coarray_statement_token12] = ACTIONS(6458), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6458), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6458), + [aux_sym_identifier_token1] = ACTIONS(6458), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6460), + [sym__float_literal] = ACTIONS(6460), + [sym__boz_literal] = ACTIONS(6460), + [sym__string_literal] = ACTIONS(6460), + [sym__string_literal_kind] = ACTIONS(6460), }, - [2428] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token2] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [2373] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6514), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [2429] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [sym_preproc_comment] = ACTIONS(6552), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2374] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6516), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), }, - [2430] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token2] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [2375] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6518), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), }, - [2431] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token2] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [2376] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6520), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), }, - [2432] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [sym_preproc_comment] = ACTIONS(6554), + [2377] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6522), [anon_sym_PLUS] = ACTIONS(5586), [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4361), [anon_sym_LPAREN_SLASH] = ACTIONS(5586), [anon_sym_LBRACK] = ACTIONS(5586), [aux_sym_boolean_literal_token1] = ACTIONS(5586), [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5586), [sym__float_literal] = ACTIONS(5586), @@ -386637,293 +381238,2850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5586), [sym__string_literal_kind] = ACTIONS(5586), }, - [2433] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token2] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), + [2378] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6524), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [2379] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6526), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), + }, + [2380] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(6528), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2381] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(6530), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_end_forall_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2434] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token2] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [2382] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2383] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6534), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2384] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6536), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2385] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(6538), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), + }, + [2386] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token2] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6540), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2387] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2388] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [2389] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_end_forall_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), + }, + [2390] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_end_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2391] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_end_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2392] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2393] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2394] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_end_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2395] = { + [aux_sym_preproc_include_token1] = ACTIONS(5550), + [aux_sym_preproc_def_token1] = ACTIONS(5550), + [aux_sym_preproc_if_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), + [sym_preproc_directive] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [sym_preproc_comment] = ACTIONS(6542), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5550), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5550), + [aux_sym_procedure_attributes_token3] = ACTIONS(5550), + [aux_sym_use_statement_token2] = ACTIONS(5550), + [aux_sym_implicit_statement_token4] = ACTIONS(5550), + [aux_sym_save_statement_token1] = ACTIONS(5550), + [aux_sym_private_statement_token1] = ACTIONS(5550), + [aux_sym_public_statement_token1] = ACTIONS(5550), + [aux_sym_derived_type_definition_token1] = ACTIONS(5550), + [aux_sym_procedure_attribute_token6] = ACTIONS(5550), + [aux_sym_variable_attributes_token2] = ACTIONS(5550), + [aux_sym_variable_attributes_token3] = ACTIONS(5550), + [aux_sym_variable_attributes_token5] = ACTIONS(5550), + [aux_sym__intrinsic_type_token1] = ACTIONS(5550), + [aux_sym__intrinsic_type_token3] = ACTIONS(5550), + [aux_sym__intrinsic_type_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5550), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5550), + [aux_sym_type_qualifier_token1] = ACTIONS(5550), + [aux_sym_type_qualifier_token2] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5554), + [aux_sym_stop_statement_token1] = ACTIONS(5550), + [aux_sym_stop_statement_token2] = ACTIONS(5550), + [aux_sym_subroutine_call_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token1] = ACTIONS(5550), + [aux_sym_keyword_statement_token2] = ACTIONS(5550), + [aux_sym_keyword_statement_token3] = ACTIONS(5550), + [aux_sym_keyword_statement_token4] = ACTIONS(5550), + [aux_sym_keyword_statement_token6] = ACTIONS(5550), + [aux_sym_keyword_statement_token7] = ACTIONS(5550), + [aux_sym_include_statement_token1] = ACTIONS(5550), + [aux_sym_data_statement_token1] = ACTIONS(5550), + [aux_sym_do_loop_statement_token1] = ACTIONS(5550), + [aux_sym__inline_if_statement_token1] = ACTIONS(5550), + [aux_sym_end_if_statement_token1] = ACTIONS(5550), + [aux_sym_elseif_clause_token2] = ACTIONS(5550), + [aux_sym__inline_where_statement_token1] = ACTIONS(5550), + [aux_sym__forall_control_expression_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token1] = ACTIONS(5550), + [aux_sym_select_case_statement_token3] = ACTIONS(5550), + [aux_sym_select_type_statement_token1] = ACTIONS(5550), + [aux_sym_select_rank_statement_token2] = ACTIONS(5550), + [aux_sym_block_construct_token1] = ACTIONS(5550), + [aux_sym_associate_statement_token1] = ACTIONS(5550), + [aux_sym_format_statement_token1] = ACTIONS(5550), + [aux_sym_print_statement_token1] = ACTIONS(5550), + [aux_sym_open_statement_token1] = ACTIONS(5550), + [aux_sym_close_statement_token1] = ACTIONS(5550), + [aux_sym_inquire_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token1] = ACTIONS(5550), + [aux_sym_file_position_statement_token2] = ACTIONS(5550), + [aux_sym_file_position_statement_token3] = ACTIONS(5550), + [aux_sym_file_position_statement_token4] = ACTIONS(5550), + [aux_sym_allocate_statement_token1] = ACTIONS(5550), + [aux_sym_entry_statement_token1] = ACTIONS(5550), + [aux_sym_logical_expression_token5] = ACTIONS(5554), + [anon_sym_DOT] = ACTIONS(5550), + [anon_sym_LPAREN_SLASH] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5554), + [aux_sym_boolean_literal_token1] = ACTIONS(5554), + [aux_sym_boolean_literal_token2] = ACTIONS(5554), + [aux_sym_null_literal_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_statement_token2] = ACTIONS(5550), + [aux_sym_coarray_statement_token6] = ACTIONS(5550), + [aux_sym_coarray_statement_token8] = ACTIONS(5550), + [aux_sym_coarray_statement_token11] = ACTIONS(5550), + [aux_sym_coarray_statement_token12] = ACTIONS(5550), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5550), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5550), + [aux_sym_identifier_token1] = ACTIONS(5550), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5554), + [sym__float_literal] = ACTIONS(5554), + [sym__boz_literal] = ACTIONS(5554), + [sym__string_literal] = ACTIONS(5554), + [sym__string_literal_kind] = ACTIONS(5554), + }, + [2396] = { + [aux_sym_preproc_include_token1] = ACTIONS(5528), + [aux_sym_preproc_def_token1] = ACTIONS(5528), + [aux_sym_preproc_if_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5528), + [sym_preproc_directive] = ACTIONS(5528), + [anon_sym_LPAREN2] = ACTIONS(5528), + [sym_preproc_comment] = ACTIONS(6544), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5528), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5528), + [aux_sym_procedure_attributes_token3] = ACTIONS(5528), + [aux_sym_use_statement_token2] = ACTIONS(5528), + [aux_sym_implicit_statement_token4] = ACTIONS(5528), + [aux_sym_save_statement_token1] = ACTIONS(5528), + [aux_sym_private_statement_token1] = ACTIONS(5528), + [aux_sym_public_statement_token1] = ACTIONS(5528), + [aux_sym_derived_type_definition_token1] = ACTIONS(5528), + [aux_sym_procedure_attribute_token6] = ACTIONS(5528), + [aux_sym_variable_attributes_token2] = ACTIONS(5528), + [aux_sym_variable_attributes_token3] = ACTIONS(5528), + [aux_sym_variable_attributes_token5] = ACTIONS(5528), + [aux_sym__intrinsic_type_token1] = ACTIONS(5528), + [aux_sym__intrinsic_type_token3] = ACTIONS(5528), + [aux_sym__intrinsic_type_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5528), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5528), + [aux_sym_type_qualifier_token1] = ACTIONS(5528), + [aux_sym_type_qualifier_token2] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5532), + [aux_sym_stop_statement_token1] = ACTIONS(5528), + [aux_sym_stop_statement_token2] = ACTIONS(5528), + [aux_sym_subroutine_call_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token1] = ACTIONS(5528), + [aux_sym_keyword_statement_token2] = ACTIONS(5528), + [aux_sym_keyword_statement_token3] = ACTIONS(5528), + [aux_sym_keyword_statement_token4] = ACTIONS(5528), + [aux_sym_keyword_statement_token6] = ACTIONS(5528), + [aux_sym_keyword_statement_token7] = ACTIONS(5528), + [aux_sym_include_statement_token1] = ACTIONS(5528), + [aux_sym_data_statement_token1] = ACTIONS(5528), + [aux_sym_do_loop_statement_token1] = ACTIONS(5528), + [aux_sym__inline_if_statement_token1] = ACTIONS(5528), + [aux_sym_end_if_statement_token1] = ACTIONS(5528), + [aux_sym_elseif_clause_token2] = ACTIONS(5528), + [aux_sym__inline_where_statement_token1] = ACTIONS(5528), + [aux_sym__forall_control_expression_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token1] = ACTIONS(5528), + [aux_sym_select_case_statement_token3] = ACTIONS(5528), + [aux_sym_select_type_statement_token1] = ACTIONS(5528), + [aux_sym_select_rank_statement_token2] = ACTIONS(5528), + [aux_sym_block_construct_token1] = ACTIONS(5528), + [aux_sym_associate_statement_token1] = ACTIONS(5528), + [aux_sym_format_statement_token1] = ACTIONS(5528), + [aux_sym_print_statement_token1] = ACTIONS(5528), + [aux_sym_open_statement_token1] = ACTIONS(5528), + [aux_sym_close_statement_token1] = ACTIONS(5528), + [aux_sym_inquire_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token1] = ACTIONS(5528), + [aux_sym_file_position_statement_token2] = ACTIONS(5528), + [aux_sym_file_position_statement_token3] = ACTIONS(5528), + [aux_sym_file_position_statement_token4] = ACTIONS(5528), + [aux_sym_allocate_statement_token1] = ACTIONS(5528), + [aux_sym_entry_statement_token1] = ACTIONS(5528), + [aux_sym_logical_expression_token5] = ACTIONS(5532), + [anon_sym_DOT] = ACTIONS(5528), + [anon_sym_LPAREN_SLASH] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(5532), + [aux_sym_boolean_literal_token1] = ACTIONS(5532), + [aux_sym_boolean_literal_token2] = ACTIONS(5532), + [aux_sym_null_literal_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_statement_token2] = ACTIONS(5528), + [aux_sym_coarray_statement_token6] = ACTIONS(5528), + [aux_sym_coarray_statement_token8] = ACTIONS(5528), + [aux_sym_coarray_statement_token11] = ACTIONS(5528), + [aux_sym_coarray_statement_token12] = ACTIONS(5528), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5528), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5528), + [aux_sym_identifier_token1] = ACTIONS(5528), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5532), + [sym__float_literal] = ACTIONS(5532), + [sym__boz_literal] = ACTIONS(5532), + [sym__string_literal] = ACTIONS(5532), + [sym__string_literal_kind] = ACTIONS(5532), + }, + [2397] = { + [aux_sym_preproc_include_token1] = ACTIONS(5566), + [aux_sym_preproc_def_token1] = ACTIONS(5566), + [aux_sym_preproc_if_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5566), + [sym_preproc_directive] = ACTIONS(5566), + [anon_sym_LPAREN2] = ACTIONS(5566), + [sym_preproc_comment] = ACTIONS(6546), + [anon_sym_PLUS] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5566), + [aux_sym_procedure_attributes_token3] = ACTIONS(5566), + [aux_sym_use_statement_token2] = ACTIONS(5566), + [aux_sym_implicit_statement_token4] = ACTIONS(5566), + [aux_sym_save_statement_token1] = ACTIONS(5566), + [aux_sym_private_statement_token1] = ACTIONS(5566), + [aux_sym_public_statement_token1] = ACTIONS(5566), + [aux_sym_derived_type_definition_token1] = ACTIONS(5566), + [aux_sym_procedure_attribute_token6] = ACTIONS(5566), + [aux_sym_variable_attributes_token2] = ACTIONS(5566), + [aux_sym_variable_attributes_token3] = ACTIONS(5566), + [aux_sym_variable_attributes_token5] = ACTIONS(5566), + [aux_sym__intrinsic_type_token1] = ACTIONS(5566), + [aux_sym__intrinsic_type_token3] = ACTIONS(5566), + [aux_sym__intrinsic_type_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5566), + [aux_sym_type_qualifier_token1] = ACTIONS(5566), + [aux_sym_type_qualifier_token2] = ACTIONS(5566), + [anon_sym_SEMI] = ACTIONS(5570), + [aux_sym_stop_statement_token1] = ACTIONS(5566), + [aux_sym_stop_statement_token2] = ACTIONS(5566), + [aux_sym_subroutine_call_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token1] = ACTIONS(5566), + [aux_sym_keyword_statement_token2] = ACTIONS(5566), + [aux_sym_keyword_statement_token3] = ACTIONS(5566), + [aux_sym_keyword_statement_token4] = ACTIONS(5566), + [aux_sym_keyword_statement_token6] = ACTIONS(5566), + [aux_sym_keyword_statement_token7] = ACTIONS(5566), + [aux_sym_include_statement_token1] = ACTIONS(5566), + [aux_sym_data_statement_token1] = ACTIONS(5566), + [aux_sym_do_loop_statement_token1] = ACTIONS(5566), + [aux_sym__inline_if_statement_token1] = ACTIONS(5566), + [aux_sym_end_if_statement_token1] = ACTIONS(5566), + [aux_sym_elseif_clause_token2] = ACTIONS(5566), + [aux_sym__inline_where_statement_token1] = ACTIONS(5566), + [aux_sym__forall_control_expression_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token1] = ACTIONS(5566), + [aux_sym_select_case_statement_token3] = ACTIONS(5566), + [aux_sym_select_type_statement_token1] = ACTIONS(5566), + [aux_sym_select_rank_statement_token2] = ACTIONS(5566), + [aux_sym_block_construct_token1] = ACTIONS(5566), + [aux_sym_associate_statement_token1] = ACTIONS(5566), + [aux_sym_format_statement_token1] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_inquire_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token1] = ACTIONS(5566), + [aux_sym_file_position_statement_token2] = ACTIONS(5566), + [aux_sym_file_position_statement_token3] = ACTIONS(5566), + [aux_sym_file_position_statement_token4] = ACTIONS(5566), + [aux_sym_allocate_statement_token1] = ACTIONS(5566), + [aux_sym_entry_statement_token1] = ACTIONS(5566), + [aux_sym_logical_expression_token5] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_LPAREN_SLASH] = ACTIONS(5570), + [anon_sym_LBRACK] = ACTIONS(5570), + [aux_sym_boolean_literal_token1] = ACTIONS(5570), + [aux_sym_boolean_literal_token2] = ACTIONS(5570), + [aux_sym_null_literal_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_statement_token2] = ACTIONS(5566), + [aux_sym_coarray_statement_token6] = ACTIONS(5566), + [aux_sym_coarray_statement_token8] = ACTIONS(5566), + [aux_sym_coarray_statement_token11] = ACTIONS(5566), + [aux_sym_coarray_statement_token12] = ACTIONS(5566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5566), + [aux_sym_identifier_token1] = ACTIONS(5566), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5570), + [sym__float_literal] = ACTIONS(5570), + [sym__boz_literal] = ACTIONS(5570), + [sym__string_literal] = ACTIONS(5570), + [sym__string_literal_kind] = ACTIONS(5570), + }, + [2398] = { + [aux_sym_preproc_include_token1] = ACTIONS(5512), + [aux_sym_preproc_def_token1] = ACTIONS(5512), + [aux_sym_preproc_if_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5512), + [sym_preproc_directive] = ACTIONS(5512), + [anon_sym_LPAREN2] = ACTIONS(5512), + [sym_preproc_comment] = ACTIONS(6548), + [anon_sym_PLUS] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5512), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5512), + [aux_sym_procedure_attributes_token3] = ACTIONS(5512), + [aux_sym_use_statement_token2] = ACTIONS(5512), + [aux_sym_implicit_statement_token4] = ACTIONS(5512), + [aux_sym_save_statement_token1] = ACTIONS(5512), + [aux_sym_private_statement_token1] = ACTIONS(5512), + [aux_sym_public_statement_token1] = ACTIONS(5512), + [aux_sym_derived_type_definition_token1] = ACTIONS(5512), + [aux_sym_procedure_attribute_token6] = ACTIONS(5512), + [aux_sym_variable_attributes_token2] = ACTIONS(5512), + [aux_sym_variable_attributes_token3] = ACTIONS(5512), + [aux_sym_variable_attributes_token5] = ACTIONS(5512), + [aux_sym__intrinsic_type_token1] = ACTIONS(5512), + [aux_sym__intrinsic_type_token3] = ACTIONS(5512), + [aux_sym__intrinsic_type_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5512), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5512), + [aux_sym_type_qualifier_token1] = ACTIONS(5512), + [aux_sym_type_qualifier_token2] = ACTIONS(5512), + [anon_sym_SEMI] = ACTIONS(5516), + [aux_sym_stop_statement_token1] = ACTIONS(5512), + [aux_sym_stop_statement_token2] = ACTIONS(5512), + [aux_sym_subroutine_call_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token1] = ACTIONS(5512), + [aux_sym_keyword_statement_token2] = ACTIONS(5512), + [aux_sym_keyword_statement_token3] = ACTIONS(5512), + [aux_sym_keyword_statement_token4] = ACTIONS(5512), + [aux_sym_keyword_statement_token6] = ACTIONS(5512), + [aux_sym_keyword_statement_token7] = ACTIONS(5512), + [aux_sym_include_statement_token1] = ACTIONS(5512), + [aux_sym_data_statement_token1] = ACTIONS(5512), + [aux_sym_do_loop_statement_token1] = ACTIONS(5512), + [aux_sym__inline_if_statement_token1] = ACTIONS(5512), + [aux_sym_end_if_statement_token1] = ACTIONS(5512), + [aux_sym_elseif_clause_token2] = ACTIONS(5512), + [aux_sym__inline_where_statement_token1] = ACTIONS(5512), + [aux_sym__forall_control_expression_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token1] = ACTIONS(5512), + [aux_sym_select_case_statement_token3] = ACTIONS(5512), + [aux_sym_select_type_statement_token1] = ACTIONS(5512), + [aux_sym_select_rank_statement_token2] = ACTIONS(5512), + [aux_sym_block_construct_token1] = ACTIONS(5512), + [aux_sym_associate_statement_token1] = ACTIONS(5512), + [aux_sym_format_statement_token1] = ACTIONS(5512), + [aux_sym_print_statement_token1] = ACTIONS(5512), + [aux_sym_open_statement_token1] = ACTIONS(5512), + [aux_sym_close_statement_token1] = ACTIONS(5512), + [aux_sym_inquire_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token1] = ACTIONS(5512), + [aux_sym_file_position_statement_token2] = ACTIONS(5512), + [aux_sym_file_position_statement_token3] = ACTIONS(5512), + [aux_sym_file_position_statement_token4] = ACTIONS(5512), + [aux_sym_allocate_statement_token1] = ACTIONS(5512), + [aux_sym_entry_statement_token1] = ACTIONS(5512), + [aux_sym_logical_expression_token5] = ACTIONS(5516), + [anon_sym_DOT] = ACTIONS(5512), + [anon_sym_LPAREN_SLASH] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [aux_sym_boolean_literal_token1] = ACTIONS(5516), + [aux_sym_boolean_literal_token2] = ACTIONS(5516), + [aux_sym_null_literal_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_statement_token2] = ACTIONS(5512), + [aux_sym_coarray_statement_token6] = ACTIONS(5512), + [aux_sym_coarray_statement_token8] = ACTIONS(5512), + [aux_sym_coarray_statement_token11] = ACTIONS(5512), + [aux_sym_coarray_statement_token12] = ACTIONS(5512), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5512), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5512), + [aux_sym_identifier_token1] = ACTIONS(5512), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5516), + [sym__float_literal] = ACTIONS(5516), + [sym__boz_literal] = ACTIONS(5516), + [sym__string_literal] = ACTIONS(5516), + [sym__string_literal_kind] = ACTIONS(5516), + }, + [2399] = { + [anon_sym_COMMA] = ACTIONS(6550), + [anon_sym_RPAREN] = ACTIONS(6550), + [anon_sym_LPAREN2] = ACTIONS(6550), + [anon_sym_PLUS] = ACTIONS(6550), + [anon_sym_DASH] = ACTIONS(6550), + [anon_sym_STAR] = ACTIONS(6552), + [anon_sym_SLASH] = ACTIONS(6552), + [anon_sym_PERCENT] = ACTIONS(6550), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6550), + [anon_sym_GT] = ACTIONS(6552), + [anon_sym_GT_EQ] = ACTIONS(6550), + [anon_sym_LT_EQ] = ACTIONS(6550), + [anon_sym_LT] = ACTIONS(6552), + [aux_sym_end_program_statement_token1] = ACTIONS(6552), + [anon_sym_EQ] = ACTIONS(6552), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6552), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6552), + [aux_sym_language_binding_token1] = ACTIONS(6552), + [aux_sym_procedure_attributes_token1] = ACTIONS(6552), + [aux_sym_procedure_attributes_token3] = ACTIONS(6552), + [aux_sym_use_statement_token2] = ACTIONS(6552), + [anon_sym_COLON_COLON] = ACTIONS(6550), + [anon_sym_EQ_GT] = ACTIONS(6550), + [aux_sym_implicit_statement_token4] = ACTIONS(6552), + [aux_sym_save_statement_token1] = ACTIONS(6552), + [aux_sym_private_statement_token1] = ACTIONS(6552), + [aux_sym_public_statement_token1] = ACTIONS(6552), + [aux_sym_derived_type_definition_token1] = ACTIONS(6552), + [aux_sym_abstract_specifier_token1] = ACTIONS(6552), + [aux_sym_procedure_attribute_token6] = ACTIONS(6552), + [aux_sym_variable_attributes_token1] = ACTIONS(6552), + [aux_sym_variable_attributes_token2] = ACTIONS(6552), + [aux_sym_variable_attributes_token3] = ACTIONS(6552), + [aux_sym_variable_attributes_token4] = ACTIONS(6552), + [aux_sym_variable_attributes_token5] = ACTIONS(6552), + [aux_sym__intrinsic_type_token1] = ACTIONS(6552), + [aux_sym__intrinsic_type_token3] = ACTIONS(6552), + [aux_sym__intrinsic_type_token4] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6552), + [aux_sym_type_qualifier_token1] = ACTIONS(6552), + [aux_sym_type_qualifier_token2] = ACTIONS(6552), + [aux_sym_stop_statement_token1] = ACTIONS(6552), + [aux_sym_stop_statement_token2] = ACTIONS(6552), + [anon_sym_GT_GT_GT] = ACTIONS(6550), + [aux_sym_keyword_statement_token2] = ACTIONS(6552), + [aux_sym_keyword_statement_token3] = ACTIONS(6552), + [aux_sym_data_statement_token1] = ACTIONS(6552), + [aux_sym__inline_if_statement_token1] = ACTIONS(6552), + [aux_sym_end_if_statement_token1] = ACTIONS(6552), + [aux_sym_elseif_clause_token2] = ACTIONS(6552), + [aux_sym_select_case_statement_token1] = ACTIONS(6552), + [aux_sym_block_construct_token1] = ACTIONS(6552), + [aux_sym_format_statement_token1] = ACTIONS(6552), + [aux_sym_inquire_statement_token1] = ACTIONS(6552), + [aux_sym_entry_statement_token1] = ACTIONS(6552), + [aux_sym_logical_expression_token1] = ACTIONS(6550), + [aux_sym_logical_expression_token2] = ACTIONS(6550), + [aux_sym_logical_expression_token3] = ACTIONS(6550), + [aux_sym_logical_expression_token4] = ACTIONS(6550), + [aux_sym_relational_expression_token1] = ACTIONS(6550), + [aux_sym_relational_expression_token2] = ACTIONS(6550), + [aux_sym_relational_expression_token3] = ACTIONS(6550), + [aux_sym_relational_expression_token4] = ACTIONS(6550), + [aux_sym_relational_expression_token5] = ACTIONS(6550), + [anon_sym_SLASH_EQ] = ACTIONS(6550), + [aux_sym_relational_expression_token6] = ACTIONS(6550), + [anon_sym_SLASH_SLASH] = ACTIONS(6550), + [anon_sym_STAR_STAR] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6552), + [anon_sym_SLASH_RPAREN] = ACTIONS(6550), + [anon_sym_LBRACK] = ACTIONS(6550), + [anon_sym_RBRACK] = ACTIONS(6550), + [aux_sym_null_literal_token1] = ACTIONS(6552), + [aux_sym_coarray_statement_token1] = ACTIONS(6552), + [aux_sym_coarray_statement_token2] = ACTIONS(6552), + [aux_sym_coarray_statement_token6] = ACTIONS(6552), + [aux_sym_coarray_statement_token8] = ACTIONS(6552), + [aux_sym_coarray_statement_token11] = ACTIONS(6552), + [aux_sym_coarray_statement_token12] = ACTIONS(6552), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6552), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6552), + [aux_sym_identifier_token1] = ACTIONS(6552), + [sym_comment] = ACTIONS(21), + }, + [2400] = { + [aux_sym_preproc_include_token1] = ACTIONS(5538), + [aux_sym_preproc_def_token1] = ACTIONS(5538), + [aux_sym_preproc_if_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5538), + [sym_preproc_directive] = ACTIONS(5538), + [anon_sym_LPAREN2] = ACTIONS(5538), + [sym_preproc_comment] = ACTIONS(6554), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5538), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5538), + [aux_sym_procedure_attributes_token3] = ACTIONS(5538), + [aux_sym_use_statement_token2] = ACTIONS(5538), + [aux_sym_implicit_statement_token4] = ACTIONS(5538), + [aux_sym_save_statement_token1] = ACTIONS(5538), + [aux_sym_private_statement_token1] = ACTIONS(5538), + [aux_sym_public_statement_token1] = ACTIONS(5538), + [aux_sym_derived_type_definition_token1] = ACTIONS(5538), + [aux_sym_procedure_attribute_token6] = ACTIONS(5538), + [aux_sym_variable_attributes_token2] = ACTIONS(5538), + [aux_sym_variable_attributes_token3] = ACTIONS(5538), + [aux_sym_variable_attributes_token5] = ACTIONS(5538), + [aux_sym__intrinsic_type_token1] = ACTIONS(5538), + [aux_sym__intrinsic_type_token3] = ACTIONS(5538), + [aux_sym__intrinsic_type_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5538), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5538), + [aux_sym_type_qualifier_token1] = ACTIONS(5538), + [aux_sym_type_qualifier_token2] = ACTIONS(5538), + [anon_sym_SEMI] = ACTIONS(5542), + [aux_sym_stop_statement_token1] = ACTIONS(5538), + [aux_sym_stop_statement_token2] = ACTIONS(5538), + [aux_sym_subroutine_call_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token1] = ACTIONS(5538), + [aux_sym_keyword_statement_token2] = ACTIONS(5538), + [aux_sym_keyword_statement_token3] = ACTIONS(5538), + [aux_sym_keyword_statement_token4] = ACTIONS(5538), + [aux_sym_keyword_statement_token6] = ACTIONS(5538), + [aux_sym_keyword_statement_token7] = ACTIONS(5538), + [aux_sym_include_statement_token1] = ACTIONS(5538), + [aux_sym_data_statement_token1] = ACTIONS(5538), + [aux_sym_do_loop_statement_token1] = ACTIONS(5538), + [aux_sym__inline_if_statement_token1] = ACTIONS(5538), + [aux_sym_end_if_statement_token1] = ACTIONS(5538), + [aux_sym_elseif_clause_token2] = ACTIONS(5538), + [aux_sym__inline_where_statement_token1] = ACTIONS(5538), + [aux_sym__forall_control_expression_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token1] = ACTIONS(5538), + [aux_sym_select_case_statement_token3] = ACTIONS(5538), + [aux_sym_select_type_statement_token1] = ACTIONS(5538), + [aux_sym_select_rank_statement_token2] = ACTIONS(5538), + [aux_sym_block_construct_token1] = ACTIONS(5538), + [aux_sym_associate_statement_token1] = ACTIONS(5538), + [aux_sym_format_statement_token1] = ACTIONS(5538), + [aux_sym_print_statement_token1] = ACTIONS(5538), + [aux_sym_open_statement_token1] = ACTIONS(5538), + [aux_sym_close_statement_token1] = ACTIONS(5538), + [aux_sym_inquire_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token1] = ACTIONS(5538), + [aux_sym_file_position_statement_token2] = ACTIONS(5538), + [aux_sym_file_position_statement_token3] = ACTIONS(5538), + [aux_sym_file_position_statement_token4] = ACTIONS(5538), + [aux_sym_allocate_statement_token1] = ACTIONS(5538), + [aux_sym_entry_statement_token1] = ACTIONS(5538), + [aux_sym_logical_expression_token5] = ACTIONS(5542), + [anon_sym_DOT] = ACTIONS(5538), + [anon_sym_LPAREN_SLASH] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [aux_sym_boolean_literal_token1] = ACTIONS(5542), + [aux_sym_boolean_literal_token2] = ACTIONS(5542), + [aux_sym_null_literal_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_statement_token2] = ACTIONS(5538), + [aux_sym_coarray_statement_token6] = ACTIONS(5538), + [aux_sym_coarray_statement_token8] = ACTIONS(5538), + [aux_sym_coarray_statement_token11] = ACTIONS(5538), + [aux_sym_coarray_statement_token12] = ACTIONS(5538), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5538), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5538), + [aux_sym_identifier_token1] = ACTIONS(5538), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5542), + [sym__float_literal] = ACTIONS(5542), + [sym__boz_literal] = ACTIONS(5542), + [sym__string_literal] = ACTIONS(5542), + [sym__string_literal_kind] = ACTIONS(5542), + }, + [2401] = { + [aux_sym_preproc_include_token1] = ACTIONS(5544), + [aux_sym_preproc_def_token1] = ACTIONS(5544), + [aux_sym_preproc_if_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5544), + [sym_preproc_directive] = ACTIONS(5544), + [anon_sym_LPAREN2] = ACTIONS(5544), + [sym_preproc_comment] = ACTIONS(6556), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5544), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5544), + [aux_sym_procedure_attributes_token3] = ACTIONS(5544), + [aux_sym_use_statement_token2] = ACTIONS(5544), + [aux_sym_implicit_statement_token4] = ACTIONS(5544), + [aux_sym_save_statement_token1] = ACTIONS(5544), + [aux_sym_private_statement_token1] = ACTIONS(5544), + [aux_sym_public_statement_token1] = ACTIONS(5544), + [aux_sym_derived_type_definition_token1] = ACTIONS(5544), + [aux_sym_procedure_attribute_token6] = ACTIONS(5544), + [aux_sym_variable_attributes_token2] = ACTIONS(5544), + [aux_sym_variable_attributes_token3] = ACTIONS(5544), + [aux_sym_variable_attributes_token5] = ACTIONS(5544), + [aux_sym__intrinsic_type_token1] = ACTIONS(5544), + [aux_sym__intrinsic_type_token3] = ACTIONS(5544), + [aux_sym__intrinsic_type_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5544), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5544), + [aux_sym_type_qualifier_token1] = ACTIONS(5544), + [aux_sym_type_qualifier_token2] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5548), + [aux_sym_stop_statement_token1] = ACTIONS(5544), + [aux_sym_stop_statement_token2] = ACTIONS(5544), + [aux_sym_subroutine_call_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token1] = ACTIONS(5544), + [aux_sym_keyword_statement_token2] = ACTIONS(5544), + [aux_sym_keyword_statement_token3] = ACTIONS(5544), + [aux_sym_keyword_statement_token4] = ACTIONS(5544), + [aux_sym_keyword_statement_token6] = ACTIONS(5544), + [aux_sym_keyword_statement_token7] = ACTIONS(5544), + [aux_sym_include_statement_token1] = ACTIONS(5544), + [aux_sym_data_statement_token1] = ACTIONS(5544), + [aux_sym_do_loop_statement_token1] = ACTIONS(5544), + [aux_sym__inline_if_statement_token1] = ACTIONS(5544), + [aux_sym_end_if_statement_token1] = ACTIONS(5544), + [aux_sym_elseif_clause_token2] = ACTIONS(5544), + [aux_sym__inline_where_statement_token1] = ACTIONS(5544), + [aux_sym__forall_control_expression_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token1] = ACTIONS(5544), + [aux_sym_select_case_statement_token3] = ACTIONS(5544), + [aux_sym_select_type_statement_token1] = ACTIONS(5544), + [aux_sym_select_rank_statement_token2] = ACTIONS(5544), + [aux_sym_block_construct_token1] = ACTIONS(5544), + [aux_sym_associate_statement_token1] = ACTIONS(5544), + [aux_sym_format_statement_token1] = ACTIONS(5544), + [aux_sym_print_statement_token1] = ACTIONS(5544), + [aux_sym_open_statement_token1] = ACTIONS(5544), + [aux_sym_close_statement_token1] = ACTIONS(5544), + [aux_sym_inquire_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token1] = ACTIONS(5544), + [aux_sym_file_position_statement_token2] = ACTIONS(5544), + [aux_sym_file_position_statement_token3] = ACTIONS(5544), + [aux_sym_file_position_statement_token4] = ACTIONS(5544), + [aux_sym_allocate_statement_token1] = ACTIONS(5544), + [aux_sym_entry_statement_token1] = ACTIONS(5544), + [aux_sym_logical_expression_token5] = ACTIONS(5548), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_LPAREN_SLASH] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5548), + [aux_sym_boolean_literal_token1] = ACTIONS(5548), + [aux_sym_boolean_literal_token2] = ACTIONS(5548), + [aux_sym_null_literal_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_statement_token2] = ACTIONS(5544), + [aux_sym_coarray_statement_token6] = ACTIONS(5544), + [aux_sym_coarray_statement_token8] = ACTIONS(5544), + [aux_sym_coarray_statement_token11] = ACTIONS(5544), + [aux_sym_coarray_statement_token12] = ACTIONS(5544), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5544), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5544), + [aux_sym_identifier_token1] = ACTIONS(5544), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5548), + [sym__float_literal] = ACTIONS(5548), + [sym__boz_literal] = ACTIONS(5548), + [sym__string_literal] = ACTIONS(5548), + [sym__string_literal_kind] = ACTIONS(5548), + }, + [2402] = { + [aux_sym_preproc_include_token1] = ACTIONS(5560), + [aux_sym_preproc_def_token1] = ACTIONS(5560), + [aux_sym_preproc_if_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5560), + [sym_preproc_directive] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5560), + [sym_preproc_comment] = ACTIONS(6558), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5560), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5560), + [aux_sym_procedure_attributes_token3] = ACTIONS(5560), + [aux_sym_use_statement_token2] = ACTIONS(5560), + [aux_sym_implicit_statement_token4] = ACTIONS(5560), + [aux_sym_save_statement_token1] = ACTIONS(5560), + [aux_sym_private_statement_token1] = ACTIONS(5560), + [aux_sym_public_statement_token1] = ACTIONS(5560), + [aux_sym_derived_type_definition_token1] = ACTIONS(5560), + [aux_sym_procedure_attribute_token6] = ACTIONS(5560), + [aux_sym_variable_attributes_token2] = ACTIONS(5560), + [aux_sym_variable_attributes_token3] = ACTIONS(5560), + [aux_sym_variable_attributes_token5] = ACTIONS(5560), + [aux_sym__intrinsic_type_token1] = ACTIONS(5560), + [aux_sym__intrinsic_type_token3] = ACTIONS(5560), + [aux_sym__intrinsic_type_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5560), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5560), + [aux_sym_type_qualifier_token1] = ACTIONS(5560), + [aux_sym_type_qualifier_token2] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5564), + [aux_sym_stop_statement_token1] = ACTIONS(5560), + [aux_sym_stop_statement_token2] = ACTIONS(5560), + [aux_sym_subroutine_call_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token1] = ACTIONS(5560), + [aux_sym_keyword_statement_token2] = ACTIONS(5560), + [aux_sym_keyword_statement_token3] = ACTIONS(5560), + [aux_sym_keyword_statement_token4] = ACTIONS(5560), + [aux_sym_keyword_statement_token6] = ACTIONS(5560), + [aux_sym_keyword_statement_token7] = ACTIONS(5560), + [aux_sym_include_statement_token1] = ACTIONS(5560), + [aux_sym_data_statement_token1] = ACTIONS(5560), + [aux_sym_do_loop_statement_token1] = ACTIONS(5560), + [aux_sym__inline_if_statement_token1] = ACTIONS(5560), + [aux_sym_end_if_statement_token1] = ACTIONS(5560), + [aux_sym_elseif_clause_token2] = ACTIONS(5560), + [aux_sym__inline_where_statement_token1] = ACTIONS(5560), + [aux_sym__forall_control_expression_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token1] = ACTIONS(5560), + [aux_sym_select_case_statement_token3] = ACTIONS(5560), + [aux_sym_select_type_statement_token1] = ACTIONS(5560), + [aux_sym_select_rank_statement_token2] = ACTIONS(5560), + [aux_sym_block_construct_token1] = ACTIONS(5560), + [aux_sym_associate_statement_token1] = ACTIONS(5560), + [aux_sym_format_statement_token1] = ACTIONS(5560), + [aux_sym_print_statement_token1] = ACTIONS(5560), + [aux_sym_open_statement_token1] = ACTIONS(5560), + [aux_sym_close_statement_token1] = ACTIONS(5560), + [aux_sym_inquire_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token1] = ACTIONS(5560), + [aux_sym_file_position_statement_token2] = ACTIONS(5560), + [aux_sym_file_position_statement_token3] = ACTIONS(5560), + [aux_sym_file_position_statement_token4] = ACTIONS(5560), + [aux_sym_allocate_statement_token1] = ACTIONS(5560), + [aux_sym_entry_statement_token1] = ACTIONS(5560), + [aux_sym_logical_expression_token5] = ACTIONS(5564), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_LPAREN_SLASH] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [aux_sym_boolean_literal_token1] = ACTIONS(5564), + [aux_sym_boolean_literal_token2] = ACTIONS(5564), + [aux_sym_null_literal_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_statement_token2] = ACTIONS(5560), + [aux_sym_coarray_statement_token6] = ACTIONS(5560), + [aux_sym_coarray_statement_token8] = ACTIONS(5560), + [aux_sym_coarray_statement_token11] = ACTIONS(5560), + [aux_sym_coarray_statement_token12] = ACTIONS(5560), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5560), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5560), + [aux_sym_identifier_token1] = ACTIONS(5560), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5564), + [sym__float_literal] = ACTIONS(5564), + [sym__boz_literal] = ACTIONS(5564), + [sym__string_literal] = ACTIONS(5564), + [sym__string_literal_kind] = ACTIONS(5564), + }, + [2403] = { + [aux_sym_preproc_include_token1] = ACTIONS(2059), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), + [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2059), + [aux_sym_save_statement_token1] = ACTIONS(2059), + [aux_sym_private_statement_token1] = ACTIONS(2059), + [aux_sym_public_statement_token1] = ACTIONS(2059), + [aux_sym_derived_type_definition_token1] = ACTIONS(2059), + [aux_sym_procedure_attribute_token6] = ACTIONS(2059), + [aux_sym_variable_attributes_token2] = ACTIONS(2059), + [aux_sym_variable_attributes_token3] = ACTIONS(2059), + [aux_sym_variable_attributes_token5] = ACTIONS(2059), + [aux_sym__intrinsic_type_token1] = ACTIONS(2059), + [aux_sym__intrinsic_type_token3] = ACTIONS(2059), + [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), + [aux_sym_type_qualifier_token1] = ACTIONS(2059), + [aux_sym_type_qualifier_token2] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(5698), + [aux_sym_stop_statement_token1] = ACTIONS(2059), + [aux_sym_stop_statement_token2] = ACTIONS(2059), + [aux_sym_subroutine_call_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token2] = ACTIONS(2059), + [aux_sym_keyword_statement_token3] = ACTIONS(2059), + [aux_sym_keyword_statement_token4] = ACTIONS(2059), + [aux_sym_keyword_statement_token6] = ACTIONS(2059), + [aux_sym_keyword_statement_token7] = ACTIONS(2059), + [aux_sym_include_statement_token1] = ACTIONS(2059), + [aux_sym_data_statement_token1] = ACTIONS(2059), + [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2059), + [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2059), + [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token3] = ACTIONS(2059), + [aux_sym_select_type_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2435] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), + [2404] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2405] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token2] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), + }, + [2406] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token2] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), [anon_sym_PLUS] = ACTIONS(5586), [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4361), [anon_sym_LPAREN_SLASH] = ACTIONS(5586), [anon_sym_LBRACK] = ACTIONS(5586), [aux_sym_boolean_literal_token1] = ACTIONS(5586), [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5586), [sym__float_literal] = ACTIONS(5586), @@ -386931,587 +384089,489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5586), [sym__string_literal_kind] = ACTIONS(5586), }, - [2436] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [2407] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token2] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2437] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [sym_preproc_comment] = ACTIONS(6556), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2408] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token2] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2409] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2438] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [sym_preproc_comment] = ACTIONS(6558), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2439] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2440] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [sym_preproc_comment] = ACTIONS(6560), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [2410] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token2] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2441] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), + [2411] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token2] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -387519,7 +384579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [2442] = { + [2412] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), @@ -387527,8 +384587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), @@ -387558,7 +384618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -387571,9 +384631,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(2059), [aux_sym_data_statement_token1] = ACTIONS(2059), [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(2059), [aux_sym__inline_if_statement_token1] = ACTIONS(2059), [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token1] = ACTIONS(2059), [aux_sym_elseif_clause_token2] = ACTIONS(2059), [aux_sym__inline_where_statement_token1] = ACTIONS(2059), [aux_sym__forall_control_expression_token1] = ACTIONS(2059), @@ -387594,12 +384654,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(2059), [aux_sym_allocate_statement_token1] = ACTIONS(2059), [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), + [aux_sym_logical_expression_token5] = ACTIONS(5698), [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), [aux_sym_null_literal_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token2] = ACTIONS(2059), @@ -387611,13 +384671,895 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2443] = { + [2413] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token2] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2414] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), + }, + [2415] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token2] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2416] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), + }, + [2417] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token2] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2418] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), + }, + [2419] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_end_forall_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), + }, + [2420] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2421] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2422] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), @@ -387625,8 +385567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), @@ -387656,7 +385598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -387674,1910 +385616,1518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_elseif_clause_token2] = ACTIONS(2059), [aux_sym__inline_where_statement_token1] = ACTIONS(2059), [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_end_forall_statement_token1] = ACTIONS(2059), [aux_sym_select_case_statement_token1] = ACTIONS(2059), [aux_sym_select_case_statement_token3] = ACTIONS(2059), [aux_sym_select_type_statement_token1] = ACTIONS(2059), [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), - }, - [2444] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), - }, - [2445] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), - }, - [2446] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [2447] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2448] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2423] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2449] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2424] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2450] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2425] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [2451] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2452] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2426] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2453] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [2427] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2454] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2428] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2455] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2429] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2456] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2430] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_end_forall_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2431] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2457] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2432] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_end_forall_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2458] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2433] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), }, - [2459] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [2434] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_end_forall_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [2460] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [2435] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_end_forall_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [2461] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_end_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2436] = { + [anon_sym_COMMA] = ACTIONS(6560), + [anon_sym_RPAREN] = ACTIONS(6560), + [anon_sym_LPAREN2] = ACTIONS(6560), + [anon_sym_PLUS] = ACTIONS(6560), + [anon_sym_DASH] = ACTIONS(6560), + [anon_sym_STAR] = ACTIONS(6562), + [anon_sym_SLASH] = ACTIONS(6562), + [anon_sym_PERCENT] = ACTIONS(6560), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6560), + [anon_sym_GT] = ACTIONS(6562), + [anon_sym_GT_EQ] = ACTIONS(6560), + [anon_sym_LT_EQ] = ACTIONS(6560), + [anon_sym_LT] = ACTIONS(6562), + [aux_sym_end_program_statement_token1] = ACTIONS(6562), + [anon_sym_EQ] = ACTIONS(6562), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6562), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6562), + [aux_sym_language_binding_token1] = ACTIONS(6562), + [aux_sym_procedure_attributes_token1] = ACTIONS(6562), + [aux_sym_procedure_attributes_token3] = ACTIONS(6562), + [aux_sym_use_statement_token2] = ACTIONS(6562), + [anon_sym_COLON_COLON] = ACTIONS(6560), + [anon_sym_EQ_GT] = ACTIONS(6560), + [aux_sym_implicit_statement_token4] = ACTIONS(6562), + [aux_sym_save_statement_token1] = ACTIONS(6562), + [aux_sym_private_statement_token1] = ACTIONS(6562), + [aux_sym_public_statement_token1] = ACTIONS(6562), + [aux_sym_derived_type_definition_token1] = ACTIONS(6562), + [aux_sym_abstract_specifier_token1] = ACTIONS(6562), + [aux_sym_procedure_attribute_token6] = ACTIONS(6562), + [aux_sym_variable_attributes_token1] = ACTIONS(6562), + [aux_sym_variable_attributes_token2] = ACTIONS(6562), + [aux_sym_variable_attributes_token3] = ACTIONS(6562), + [aux_sym_variable_attributes_token4] = ACTIONS(6562), + [aux_sym_variable_attributes_token5] = ACTIONS(6562), + [aux_sym__intrinsic_type_token1] = ACTIONS(6562), + [aux_sym__intrinsic_type_token3] = ACTIONS(6562), + [aux_sym__intrinsic_type_token4] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6562), + [aux_sym_type_qualifier_token1] = ACTIONS(6562), + [aux_sym_type_qualifier_token2] = ACTIONS(6562), + [aux_sym_stop_statement_token1] = ACTIONS(6562), + [aux_sym_stop_statement_token2] = ACTIONS(6562), + [anon_sym_GT_GT_GT] = ACTIONS(6560), + [aux_sym_keyword_statement_token2] = ACTIONS(6562), + [aux_sym_keyword_statement_token3] = ACTIONS(6562), + [aux_sym_data_statement_token1] = ACTIONS(6562), + [aux_sym__inline_if_statement_token1] = ACTIONS(6562), + [aux_sym_end_if_statement_token1] = ACTIONS(6562), + [aux_sym_elseif_clause_token2] = ACTIONS(6562), + [aux_sym_select_case_statement_token1] = ACTIONS(6562), + [aux_sym_block_construct_token1] = ACTIONS(6562), + [aux_sym_format_statement_token1] = ACTIONS(6562), + [aux_sym_inquire_statement_token1] = ACTIONS(6562), + [aux_sym_entry_statement_token1] = ACTIONS(6562), + [aux_sym_logical_expression_token1] = ACTIONS(6560), + [aux_sym_logical_expression_token2] = ACTIONS(6560), + [aux_sym_logical_expression_token3] = ACTIONS(6560), + [aux_sym_logical_expression_token4] = ACTIONS(6560), + [aux_sym_relational_expression_token1] = ACTIONS(6560), + [aux_sym_relational_expression_token2] = ACTIONS(6560), + [aux_sym_relational_expression_token3] = ACTIONS(6560), + [aux_sym_relational_expression_token4] = ACTIONS(6560), + [aux_sym_relational_expression_token5] = ACTIONS(6560), + [anon_sym_SLASH_EQ] = ACTIONS(6560), + [aux_sym_relational_expression_token6] = ACTIONS(6560), + [anon_sym_SLASH_SLASH] = ACTIONS(6560), + [anon_sym_STAR_STAR] = ACTIONS(6560), + [anon_sym_DOT] = ACTIONS(6562), + [anon_sym_SLASH_RPAREN] = ACTIONS(6560), + [anon_sym_LBRACK] = ACTIONS(6560), + [anon_sym_RBRACK] = ACTIONS(6560), + [aux_sym_null_literal_token1] = ACTIONS(6562), + [aux_sym_coarray_statement_token1] = ACTIONS(6562), + [aux_sym_coarray_statement_token2] = ACTIONS(6562), + [aux_sym_coarray_statement_token6] = ACTIONS(6562), + [aux_sym_coarray_statement_token8] = ACTIONS(6562), + [aux_sym_coarray_statement_token11] = ACTIONS(6562), + [aux_sym_coarray_statement_token12] = ACTIONS(6562), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6562), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6562), + [aux_sym_identifier_token1] = ACTIONS(6562), + [sym_comment] = ACTIONS(21), }, - [2462] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_end_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2437] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), }, - [2463] = { + [2438] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -389585,8 +387135,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), @@ -389616,7 +387166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -389629,6 +387179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(4571), [aux_sym_data_statement_token1] = ACTIONS(4571), [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4571), [aux_sym__inline_if_statement_token1] = ACTIONS(4571), [aux_sym_end_if_statement_token1] = ACTIONS(4571), [aux_sym_elseif_clause_token2] = ACTIONS(4571), @@ -389640,7 +387191,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(4571), [aux_sym_block_construct_token1] = ACTIONS(4571), [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_end_associate_statement_token1] = ACTIONS(4571), [aux_sym_format_statement_token1] = ACTIONS(4571), [aux_sym_print_statement_token1] = ACTIONS(4571), [aux_sym_open_statement_token1] = ACTIONS(4571), @@ -389652,12 +387202,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -389669,789 +387219,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [2464] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_end_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [2465] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_end_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), - }, - [2466] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_end_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2467] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2439] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_end_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2468] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2440] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token2] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2469] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), }, - [2470] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [2441] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token2] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), }, - [2471] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), + [2442] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token2] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), [anon_sym_PLUS] = ACTIONS(5634), [anon_sym_DASH] = ACTIONS(5634), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5632), [anon_sym_LPAREN_SLASH] = ACTIONS(5634), [anon_sym_LBRACK] = ACTIONS(5634), [aux_sym_boolean_literal_token1] = ACTIONS(5634), [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5634), [sym__float_literal] = ACTIONS(5634), @@ -390459,889 +387617,1281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5634), [sym__string_literal_kind] = ACTIONS(5634), }, - [2472] = { - [anon_sym_COMMA] = ACTIONS(6562), - [anon_sym_RPAREN] = ACTIONS(6562), - [anon_sym_LPAREN2] = ACTIONS(6562), - [anon_sym_PLUS] = ACTIONS(6562), - [anon_sym_DASH] = ACTIONS(6562), - [anon_sym_STAR] = ACTIONS(6564), - [anon_sym_SLASH] = ACTIONS(6564), - [anon_sym_PERCENT] = ACTIONS(6562), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6562), - [anon_sym_GT] = ACTIONS(6564), - [anon_sym_GT_EQ] = ACTIONS(6562), - [anon_sym_LT_EQ] = ACTIONS(6562), - [anon_sym_LT] = ACTIONS(6564), - [aux_sym_end_program_statement_token1] = ACTIONS(6564), - [anon_sym_EQ] = ACTIONS(6564), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6564), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6564), - [aux_sym_language_binding_token1] = ACTIONS(6564), - [aux_sym_procedure_attributes_token1] = ACTIONS(6564), - [aux_sym_procedure_attributes_token3] = ACTIONS(6564), - [aux_sym_use_statement_token2] = ACTIONS(6564), - [anon_sym_COLON_COLON] = ACTIONS(6562), - [anon_sym_EQ_GT] = ACTIONS(6562), - [aux_sym_implicit_statement_token4] = ACTIONS(6564), - [aux_sym_save_statement_token1] = ACTIONS(6564), - [aux_sym_private_statement_token1] = ACTIONS(6564), - [aux_sym_public_statement_token1] = ACTIONS(6564), - [aux_sym_derived_type_definition_token1] = ACTIONS(6564), - [aux_sym_abstract_specifier_token1] = ACTIONS(6564), - [aux_sym_procedure_attribute_token6] = ACTIONS(6564), - [aux_sym_variable_attributes_token1] = ACTIONS(6564), - [aux_sym_variable_attributes_token2] = ACTIONS(6564), - [aux_sym_variable_attributes_token3] = ACTIONS(6564), - [aux_sym_variable_attributes_token4] = ACTIONS(6564), - [aux_sym_variable_attributes_token5] = ACTIONS(6564), - [aux_sym__intrinsic_type_token1] = ACTIONS(6564), - [aux_sym__intrinsic_type_token3] = ACTIONS(6564), - [aux_sym__intrinsic_type_token4] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6564), - [aux_sym_type_qualifier_token1] = ACTIONS(6564), - [aux_sym_type_qualifier_token2] = ACTIONS(6564), - [aux_sym_stop_statement_token1] = ACTIONS(6564), - [aux_sym_stop_statement_token2] = ACTIONS(6564), - [anon_sym_GT_GT_GT] = ACTIONS(6562), - [aux_sym_keyword_statement_token2] = ACTIONS(6564), - [aux_sym_keyword_statement_token3] = ACTIONS(6564), - [aux_sym_data_statement_token1] = ACTIONS(6564), - [aux_sym__inline_if_statement_token1] = ACTIONS(6564), - [aux_sym_end_if_statement_token1] = ACTIONS(6564), - [aux_sym_elseif_clause_token2] = ACTIONS(6564), - [aux_sym_select_case_statement_token1] = ACTIONS(6564), - [aux_sym_block_construct_token1] = ACTIONS(6564), - [aux_sym_format_statement_token1] = ACTIONS(6564), - [aux_sym_inquire_statement_token1] = ACTIONS(6564), - [aux_sym_entry_statement_token1] = ACTIONS(6564), - [aux_sym_logical_expression_token1] = ACTIONS(6562), - [aux_sym_logical_expression_token2] = ACTIONS(6562), - [aux_sym_logical_expression_token3] = ACTIONS(6562), - [aux_sym_logical_expression_token4] = ACTIONS(6562), - [aux_sym_relational_expression_token1] = ACTIONS(6562), - [aux_sym_relational_expression_token2] = ACTIONS(6562), - [aux_sym_relational_expression_token3] = ACTIONS(6562), - [aux_sym_relational_expression_token4] = ACTIONS(6562), - [aux_sym_relational_expression_token5] = ACTIONS(6562), - [anon_sym_SLASH_EQ] = ACTIONS(6562), - [aux_sym_relational_expression_token6] = ACTIONS(6562), - [anon_sym_SLASH_SLASH] = ACTIONS(6562), - [anon_sym_STAR_STAR] = ACTIONS(6562), - [anon_sym_DOT] = ACTIONS(6564), - [anon_sym_SLASH_RPAREN] = ACTIONS(6562), - [anon_sym_LBRACK] = ACTIONS(6562), - [anon_sym_RBRACK] = ACTIONS(6562), - [aux_sym_null_literal_token1] = ACTIONS(6564), - [aux_sym_coarray_statement_token1] = ACTIONS(6564), - [aux_sym_coarray_statement_token2] = ACTIONS(6564), - [aux_sym_coarray_statement_token6] = ACTIONS(6564), - [aux_sym_coarray_statement_token8] = ACTIONS(6564), - [aux_sym_coarray_statement_token11] = ACTIONS(6564), - [aux_sym_coarray_statement_token12] = ACTIONS(6564), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6564), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6564), - [aux_sym_identifier_token1] = ACTIONS(6564), + [2443] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token2] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [2473] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_end_forall_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [2444] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2474] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [2445] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token2] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [2475] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [2446] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2476] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2447] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token2] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), }, - [2477] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_end_forall_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2448] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token2] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), }, - [2478] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2449] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token2] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2450] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_end_forall_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [2479] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [2451] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2480] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2452] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [2481] = { + [2453] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2454] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2455] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2456] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), @@ -391349,8 +388899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), @@ -391380,7 +388930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -391395,7 +388945,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(2059), [aux_sym__inline_if_statement_token1] = ACTIONS(2059), [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token1] = ACTIONS(2059), [aux_sym_elseif_clause_token2] = ACTIONS(2059), [aux_sym__inline_where_statement_token1] = ACTIONS(2059), [aux_sym__forall_control_expression_token1] = ACTIONS(2059), @@ -391405,6 +388954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(2059), [aux_sym_block_construct_token1] = ACTIONS(2059), [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_end_associate_statement_token1] = ACTIONS(2059), [aux_sym_format_statement_token1] = ACTIONS(2059), [aux_sym_print_statement_token1] = ACTIONS(2059), [aux_sym_open_statement_token1] = ACTIONS(2059), @@ -391416,12 +388966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(2059), [aux_sym_allocate_statement_token1] = ACTIONS(2059), [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), + [aux_sym_logical_expression_token5] = ACTIONS(5698), [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), [aux_sym_null_literal_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token2] = ACTIONS(2059), @@ -391433,3639 +388983,2169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), - }, - [2482] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), + }, + [2457] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_end_forall_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2458] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_end_forall_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2459] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_end_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), + }, + [2460] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_end_forall_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2461] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), + }, + [2462] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2483] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2463] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2484] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2464] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2485] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [2465] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2486] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2466] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2487] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2467] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2488] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2468] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2489] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2469] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2490] = { - [anon_sym_COMMA] = ACTIONS(6566), - [anon_sym_RPAREN] = ACTIONS(6566), - [anon_sym_LPAREN2] = ACTIONS(6566), - [anon_sym_PLUS] = ACTIONS(6566), - [anon_sym_DASH] = ACTIONS(6566), - [anon_sym_STAR] = ACTIONS(6568), - [anon_sym_SLASH] = ACTIONS(6568), - [anon_sym_PERCENT] = ACTIONS(6566), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6566), - [anon_sym_GT] = ACTIONS(6568), - [anon_sym_GT_EQ] = ACTIONS(6566), - [anon_sym_LT_EQ] = ACTIONS(6566), - [anon_sym_LT] = ACTIONS(6568), - [aux_sym_end_program_statement_token1] = ACTIONS(6568), - [anon_sym_EQ] = ACTIONS(6568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6568), - [aux_sym_language_binding_token1] = ACTIONS(6568), - [aux_sym_procedure_attributes_token1] = ACTIONS(6568), - [aux_sym_procedure_attributes_token3] = ACTIONS(6568), - [aux_sym_use_statement_token2] = ACTIONS(6568), - [anon_sym_COLON_COLON] = ACTIONS(6566), - [anon_sym_EQ_GT] = ACTIONS(6566), - [aux_sym_implicit_statement_token4] = ACTIONS(6568), - [aux_sym_save_statement_token1] = ACTIONS(6568), - [aux_sym_private_statement_token1] = ACTIONS(6568), - [aux_sym_public_statement_token1] = ACTIONS(6568), - [aux_sym_derived_type_definition_token1] = ACTIONS(6568), - [aux_sym_abstract_specifier_token1] = ACTIONS(6568), - [aux_sym_procedure_attribute_token6] = ACTIONS(6568), - [aux_sym_variable_attributes_token1] = ACTIONS(6568), - [aux_sym_variable_attributes_token2] = ACTIONS(6568), - [aux_sym_variable_attributes_token3] = ACTIONS(6568), - [aux_sym_variable_attributes_token4] = ACTIONS(6568), - [aux_sym_variable_attributes_token5] = ACTIONS(6568), - [aux_sym__intrinsic_type_token1] = ACTIONS(6568), - [aux_sym__intrinsic_type_token3] = ACTIONS(6568), - [aux_sym__intrinsic_type_token4] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6568), - [aux_sym_type_qualifier_token1] = ACTIONS(6568), - [aux_sym_type_qualifier_token2] = ACTIONS(6568), - [aux_sym_stop_statement_token1] = ACTIONS(6568), - [aux_sym_stop_statement_token2] = ACTIONS(6568), - [anon_sym_GT_GT_GT] = ACTIONS(6566), - [aux_sym_keyword_statement_token2] = ACTIONS(6568), - [aux_sym_keyword_statement_token3] = ACTIONS(6568), - [aux_sym_data_statement_token1] = ACTIONS(6568), - [aux_sym__inline_if_statement_token1] = ACTIONS(6568), - [aux_sym_end_if_statement_token1] = ACTIONS(6568), - [aux_sym_elseif_clause_token2] = ACTIONS(6568), - [aux_sym_select_case_statement_token1] = ACTIONS(6568), - [aux_sym_block_construct_token1] = ACTIONS(6568), - [aux_sym_format_statement_token1] = ACTIONS(6568), - [aux_sym_inquire_statement_token1] = ACTIONS(6568), - [aux_sym_entry_statement_token1] = ACTIONS(6568), - [aux_sym_logical_expression_token1] = ACTIONS(6566), - [aux_sym_logical_expression_token2] = ACTIONS(6566), - [aux_sym_logical_expression_token3] = ACTIONS(6566), - [aux_sym_logical_expression_token4] = ACTIONS(6566), - [aux_sym_relational_expression_token1] = ACTIONS(6566), - [aux_sym_relational_expression_token2] = ACTIONS(6566), - [aux_sym_relational_expression_token3] = ACTIONS(6566), - [aux_sym_relational_expression_token4] = ACTIONS(6566), - [aux_sym_relational_expression_token5] = ACTIONS(6566), - [anon_sym_SLASH_EQ] = ACTIONS(6566), - [aux_sym_relational_expression_token6] = ACTIONS(6566), - [anon_sym_SLASH_SLASH] = ACTIONS(6566), - [anon_sym_STAR_STAR] = ACTIONS(6566), - [anon_sym_DOT] = ACTIONS(6568), - [anon_sym_SLASH_RPAREN] = ACTIONS(6566), - [anon_sym_LBRACK] = ACTIONS(6566), - [anon_sym_RBRACK] = ACTIONS(6566), - [aux_sym_null_literal_token1] = ACTIONS(6568), - [aux_sym_coarray_statement_token1] = ACTIONS(6568), - [aux_sym_coarray_statement_token2] = ACTIONS(6568), - [aux_sym_coarray_statement_token6] = ACTIONS(6568), - [aux_sym_coarray_statement_token8] = ACTIONS(6568), - [aux_sym_coarray_statement_token11] = ACTIONS(6568), - [aux_sym_coarray_statement_token12] = ACTIONS(6568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6568), - [aux_sym_identifier_token1] = ACTIONS(6568), + [2470] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2491] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [2492] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), - }, - [2493] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [2494] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_end_forall_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), - }, - [2495] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_end_forall_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [2496] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), - }, - [2497] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_end_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), - }, - [2498] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2471] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2499] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), - }, - [2500] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_end_forall_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [2501] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_end_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [2502] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2503] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_end_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2504] = { - [anon_sym_COMMA] = ACTIONS(6570), - [anon_sym_RPAREN] = ACTIONS(6570), - [anon_sym_LPAREN2] = ACTIONS(6570), - [anon_sym_PLUS] = ACTIONS(6570), - [anon_sym_DASH] = ACTIONS(6570), - [anon_sym_STAR] = ACTIONS(6572), - [anon_sym_SLASH] = ACTIONS(6572), - [anon_sym_PERCENT] = ACTIONS(6570), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6570), - [anon_sym_GT] = ACTIONS(6572), - [anon_sym_GT_EQ] = ACTIONS(6570), - [anon_sym_LT_EQ] = ACTIONS(6570), - [anon_sym_LT] = ACTIONS(6572), - [aux_sym_end_program_statement_token1] = ACTIONS(6572), - [anon_sym_EQ] = ACTIONS(6572), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6572), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6572), - [aux_sym_language_binding_token1] = ACTIONS(6572), - [aux_sym_procedure_attributes_token1] = ACTIONS(6572), - [aux_sym_procedure_attributes_token3] = ACTIONS(6572), - [aux_sym_use_statement_token2] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(6570), - [anon_sym_EQ_GT] = ACTIONS(6570), - [aux_sym_implicit_statement_token4] = ACTIONS(6572), - [aux_sym_save_statement_token1] = ACTIONS(6572), - [aux_sym_private_statement_token1] = ACTIONS(6572), - [aux_sym_public_statement_token1] = ACTIONS(6572), - [aux_sym_derived_type_definition_token1] = ACTIONS(6572), - [aux_sym_abstract_specifier_token1] = ACTIONS(6572), - [aux_sym_procedure_attribute_token6] = ACTIONS(6572), - [aux_sym_variable_attributes_token1] = ACTIONS(6572), - [aux_sym_variable_attributes_token2] = ACTIONS(6572), - [aux_sym_variable_attributes_token3] = ACTIONS(6572), - [aux_sym_variable_attributes_token4] = ACTIONS(6572), - [aux_sym_variable_attributes_token5] = ACTIONS(6572), - [aux_sym__intrinsic_type_token1] = ACTIONS(6572), - [aux_sym__intrinsic_type_token3] = ACTIONS(6572), - [aux_sym__intrinsic_type_token4] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6572), - [aux_sym_type_qualifier_token1] = ACTIONS(6572), - [aux_sym_type_qualifier_token2] = ACTIONS(6572), - [aux_sym_stop_statement_token1] = ACTIONS(6572), - [aux_sym_stop_statement_token2] = ACTIONS(6572), - [anon_sym_GT_GT_GT] = ACTIONS(6570), - [aux_sym_keyword_statement_token2] = ACTIONS(6572), - [aux_sym_keyword_statement_token3] = ACTIONS(6572), - [aux_sym_data_statement_token1] = ACTIONS(6572), - [aux_sym__inline_if_statement_token1] = ACTIONS(6572), - [aux_sym_end_if_statement_token1] = ACTIONS(6572), - [aux_sym_elseif_clause_token2] = ACTIONS(6572), - [aux_sym_select_case_statement_token1] = ACTIONS(6572), - [aux_sym_block_construct_token1] = ACTIONS(6572), - [aux_sym_format_statement_token1] = ACTIONS(6572), - [aux_sym_inquire_statement_token1] = ACTIONS(6572), - [aux_sym_entry_statement_token1] = ACTIONS(6572), - [aux_sym_logical_expression_token1] = ACTIONS(6570), - [aux_sym_logical_expression_token2] = ACTIONS(6570), - [aux_sym_logical_expression_token3] = ACTIONS(6570), - [aux_sym_logical_expression_token4] = ACTIONS(6570), - [aux_sym_relational_expression_token1] = ACTIONS(6570), - [aux_sym_relational_expression_token2] = ACTIONS(6570), - [aux_sym_relational_expression_token3] = ACTIONS(6570), - [aux_sym_relational_expression_token4] = ACTIONS(6570), - [aux_sym_relational_expression_token5] = ACTIONS(6570), - [anon_sym_SLASH_EQ] = ACTIONS(6570), - [aux_sym_relational_expression_token6] = ACTIONS(6570), - [anon_sym_SLASH_SLASH] = ACTIONS(6570), - [anon_sym_STAR_STAR] = ACTIONS(6570), - [anon_sym_DOT] = ACTIONS(6572), - [anon_sym_SLASH_RPAREN] = ACTIONS(6570), - [anon_sym_LBRACK] = ACTIONS(6570), - [anon_sym_RBRACK] = ACTIONS(6570), - [aux_sym_null_literal_token1] = ACTIONS(6572), - [aux_sym_coarray_statement_token1] = ACTIONS(6572), - [aux_sym_coarray_statement_token2] = ACTIONS(6572), - [aux_sym_coarray_statement_token6] = ACTIONS(6572), - [aux_sym_coarray_statement_token8] = ACTIONS(6572), - [aux_sym_coarray_statement_token11] = ACTIONS(6572), - [aux_sym_coarray_statement_token12] = ACTIONS(6572), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6572), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6572), - [aux_sym_identifier_token1] = ACTIONS(6572), + [2472] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2505] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [2506] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [2473] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2507] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2474] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [2508] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), - }, - [2509] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2510] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [2475] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_end_forall_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [2511] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), - }, - [2512] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_end_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [2513] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), - }, - [2514] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_end_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), - }, - [2515] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2516] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [2476] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2517] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), + [2477] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2518] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [2478] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_subroutine_call_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token1] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_keyword_statement_token4] = ACTIONS(4571), - [aux_sym_keyword_statement_token6] = ACTIONS(4571), - [aux_sym_keyword_statement_token7] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym_do_loop_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym__inline_where_statement_token1] = ACTIONS(4571), - [aux_sym__forall_control_expression_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_select_case_statement_token3] = ACTIONS(4571), - [aux_sym_select_type_statement_token1] = ACTIONS(4571), - [aux_sym_select_rank_statement_token2] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_associate_statement_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_print_statement_token1] = ACTIONS(4571), - [aux_sym_open_statement_token1] = ACTIONS(4571), - [aux_sym_close_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token1] = ACTIONS(4571), - [aux_sym_file_position_statement_token2] = ACTIONS(4571), - [aux_sym_file_position_statement_token3] = ACTIONS(4571), - [aux_sym_file_position_statement_token4] = ACTIONS(4571), - [aux_sym_allocate_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2519] = { + [2479] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), @@ -395119,7 +391199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_do_loop_statement_token1] = ACTIONS(5620), [aux_sym__inline_if_statement_token1] = ACTIONS(5620), [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token1] = ACTIONS(5620), [aux_sym_elseif_clause_token2] = ACTIONS(5620), [aux_sym__inline_where_statement_token1] = ACTIONS(5620), [aux_sym__forall_control_expression_token1] = ACTIONS(5620), @@ -395154,6 +391233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(5620), [aux_sym_coarray_statement_token12] = ACTIONS(5620), [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5620), [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), [aux_sym_identifier_token1] = ACTIONS(5620), [sym_comment] = ACTIONS(21), @@ -395163,881 +391243,685 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [2520] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [2480] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), }, - [2521] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [2481] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_end_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), - }, - [2522] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [2523] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_end_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2524] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [2482] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2525] = { - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), - [aux_sym_procedure_attributes_token3] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2059), - [aux_sym_save_statement_token1] = ACTIONS(2059), - [aux_sym_private_statement_token1] = ACTIONS(2059), - [aux_sym_public_statement_token1] = ACTIONS(2059), - [aux_sym_derived_type_definition_token1] = ACTIONS(2059), - [aux_sym_procedure_attribute_token6] = ACTIONS(2059), - [aux_sym_variable_attributes_token2] = ACTIONS(2059), - [aux_sym_variable_attributes_token3] = ACTIONS(2059), - [aux_sym_variable_attributes_token5] = ACTIONS(2059), - [aux_sym__intrinsic_type_token1] = ACTIONS(2059), - [aux_sym__intrinsic_type_token3] = ACTIONS(2059), - [aux_sym__intrinsic_type_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), - [aux_sym_type_qualifier_token1] = ACTIONS(2059), - [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), - [aux_sym_stop_statement_token1] = ACTIONS(2059), - [aux_sym_stop_statement_token2] = ACTIONS(2059), - [aux_sym_subroutine_call_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token2] = ACTIONS(2059), - [aux_sym_keyword_statement_token3] = ACTIONS(2059), - [aux_sym_keyword_statement_token4] = ACTIONS(2059), - [aux_sym_keyword_statement_token6] = ACTIONS(2059), - [aux_sym_keyword_statement_token7] = ACTIONS(2059), - [aux_sym_include_statement_token1] = ACTIONS(2059), - [aux_sym_data_statement_token1] = ACTIONS(2059), - [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2059), - [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2059), - [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token3] = ACTIONS(2059), - [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_end_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [2483] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), }, - [2526] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), + [2484] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_end_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2527] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_end_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [2485] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_end_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2528] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), + [2486] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), [anon_sym_PLUS] = ACTIONS(5586), [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4361), [anon_sym_LPAREN_SLASH] = ACTIONS(5586), [anon_sym_LBRACK] = ACTIONS(5586), [aux_sym_boolean_literal_token1] = ACTIONS(5586), [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5586), [sym__float_literal] = ACTIONS(5586), @@ -396045,2065 +391929,1183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5586), [sym__string_literal_kind] = ACTIONS(5586), }, - [2529] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), + [2487] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2530] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_end_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [2488] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2531] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2489] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2532] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [2490] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2533] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2491] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_end_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2534] = { - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [2492] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), - [aux_sym_procedure_attributes_token3] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2059), - [aux_sym_save_statement_token1] = ACTIONS(2059), - [aux_sym_private_statement_token1] = ACTIONS(2059), - [aux_sym_public_statement_token1] = ACTIONS(2059), - [aux_sym_derived_type_definition_token1] = ACTIONS(2059), - [aux_sym_procedure_attribute_token6] = ACTIONS(2059), - [aux_sym_variable_attributes_token2] = ACTIONS(2059), - [aux_sym_variable_attributes_token3] = ACTIONS(2059), - [aux_sym_variable_attributes_token5] = ACTIONS(2059), - [aux_sym__intrinsic_type_token1] = ACTIONS(2059), - [aux_sym__intrinsic_type_token3] = ACTIONS(2059), - [aux_sym__intrinsic_type_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), - [aux_sym_type_qualifier_token1] = ACTIONS(2059), - [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), - [aux_sym_stop_statement_token1] = ACTIONS(2059), - [aux_sym_stop_statement_token2] = ACTIONS(2059), - [aux_sym_subroutine_call_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token2] = ACTIONS(2059), - [aux_sym_keyword_statement_token3] = ACTIONS(2059), - [aux_sym_keyword_statement_token4] = ACTIONS(2059), - [aux_sym_keyword_statement_token6] = ACTIONS(2059), - [aux_sym_keyword_statement_token7] = ACTIONS(2059), - [aux_sym_include_statement_token1] = ACTIONS(2059), - [aux_sym_data_statement_token1] = ACTIONS(2059), - [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2059), - [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2059), - [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token3] = ACTIONS(2059), - [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_end_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), - }, - [2535] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), - }, - [2536] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_end_forall_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [2537] = { - [aux_sym_preproc_include_token1] = ACTIONS(5536), - [aux_sym_preproc_def_token1] = ACTIONS(5536), - [aux_sym_preproc_if_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5536), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5536), - [sym_preproc_directive] = ACTIONS(5536), - [anon_sym_LPAREN2] = ACTIONS(5536), - [sym_preproc_comment] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(5540), - [anon_sym_DASH] = ACTIONS(5540), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5536), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5536), - [aux_sym_procedure_attributes_token3] = ACTIONS(5536), - [aux_sym_use_statement_token2] = ACTIONS(5536), - [aux_sym_implicit_statement_token4] = ACTIONS(5536), - [aux_sym_save_statement_token1] = ACTIONS(5536), - [aux_sym_private_statement_token1] = ACTIONS(5536), - [aux_sym_public_statement_token1] = ACTIONS(5536), - [aux_sym_derived_type_definition_token1] = ACTIONS(5536), - [aux_sym_procedure_attribute_token6] = ACTIONS(5536), - [aux_sym_variable_attributes_token2] = ACTIONS(5536), - [aux_sym_variable_attributes_token3] = ACTIONS(5536), - [aux_sym_variable_attributes_token5] = ACTIONS(5536), - [aux_sym__intrinsic_type_token1] = ACTIONS(5536), - [aux_sym__intrinsic_type_token3] = ACTIONS(5536), - [aux_sym__intrinsic_type_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5536), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5536), - [aux_sym_type_qualifier_token1] = ACTIONS(5536), - [aux_sym_type_qualifier_token2] = ACTIONS(5536), - [anon_sym_SEMI] = ACTIONS(5540), - [aux_sym_stop_statement_token1] = ACTIONS(5536), - [aux_sym_stop_statement_token2] = ACTIONS(5536), - [aux_sym_subroutine_call_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token1] = ACTIONS(5536), - [aux_sym_keyword_statement_token2] = ACTIONS(5536), - [aux_sym_keyword_statement_token3] = ACTIONS(5536), - [aux_sym_keyword_statement_token4] = ACTIONS(5536), - [aux_sym_keyword_statement_token6] = ACTIONS(5536), - [aux_sym_keyword_statement_token7] = ACTIONS(5536), - [aux_sym_include_statement_token1] = ACTIONS(5536), - [aux_sym_data_statement_token1] = ACTIONS(5536), - [aux_sym_do_loop_statement_token1] = ACTIONS(5536), - [aux_sym__inline_if_statement_token1] = ACTIONS(5536), - [aux_sym_end_if_statement_token1] = ACTIONS(5536), - [aux_sym_elseif_clause_token2] = ACTIONS(5536), - [aux_sym__inline_where_statement_token1] = ACTIONS(5536), - [aux_sym__forall_control_expression_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token1] = ACTIONS(5536), - [aux_sym_select_case_statement_token3] = ACTIONS(5536), - [aux_sym_select_type_statement_token1] = ACTIONS(5536), - [aux_sym_select_rank_statement_token2] = ACTIONS(5536), - [aux_sym_block_construct_token1] = ACTIONS(5536), - [aux_sym_associate_statement_token1] = ACTIONS(5536), - [aux_sym_format_statement_token1] = ACTIONS(5536), - [aux_sym_print_statement_token1] = ACTIONS(5536), - [aux_sym_open_statement_token1] = ACTIONS(5536), - [aux_sym_close_statement_token1] = ACTIONS(5536), - [aux_sym_inquire_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token1] = ACTIONS(5536), - [aux_sym_file_position_statement_token2] = ACTIONS(5536), - [aux_sym_file_position_statement_token3] = ACTIONS(5536), - [aux_sym_file_position_statement_token4] = ACTIONS(5536), - [aux_sym_allocate_statement_token1] = ACTIONS(5536), - [aux_sym_entry_statement_token1] = ACTIONS(5536), - [aux_sym_logical_expression_token5] = ACTIONS(5540), - [anon_sym_DOT] = ACTIONS(5536), - [anon_sym_LPAREN_SLASH] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(5540), - [aux_sym_boolean_literal_token1] = ACTIONS(5540), - [aux_sym_boolean_literal_token2] = ACTIONS(5540), - [aux_sym_null_literal_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_statement_token2] = ACTIONS(5536), - [aux_sym_coarray_statement_token6] = ACTIONS(5536), - [aux_sym_coarray_statement_token8] = ACTIONS(5536), - [aux_sym_coarray_statement_token11] = ACTIONS(5536), - [aux_sym_coarray_statement_token12] = ACTIONS(5536), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5536), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5536), - [aux_sym_identifier_token1] = ACTIONS(5536), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5540), - [sym__float_literal] = ACTIONS(5540), - [sym__boz_literal] = ACTIONS(5540), - [sym__string_literal] = ACTIONS(5540), - [sym__string_literal_kind] = ACTIONS(5540), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), }, - [2538] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), + [2493] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_end_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), - }, - [2539] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2540] = { - [aux_sym_preproc_include_token1] = ACTIONS(5526), - [aux_sym_preproc_def_token1] = ACTIONS(5526), - [aux_sym_preproc_if_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5526), - [sym_preproc_directive] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [sym_preproc_comment] = ACTIONS(6576), - [anon_sym_PLUS] = ACTIONS(5530), - [anon_sym_DASH] = ACTIONS(5530), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5526), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5526), - [aux_sym_procedure_attributes_token3] = ACTIONS(5526), - [aux_sym_use_statement_token2] = ACTIONS(5526), - [aux_sym_implicit_statement_token4] = ACTIONS(5526), - [aux_sym_save_statement_token1] = ACTIONS(5526), - [aux_sym_private_statement_token1] = ACTIONS(5526), - [aux_sym_public_statement_token1] = ACTIONS(5526), - [aux_sym_derived_type_definition_token1] = ACTIONS(5526), - [aux_sym_procedure_attribute_token6] = ACTIONS(5526), - [aux_sym_variable_attributes_token2] = ACTIONS(5526), - [aux_sym_variable_attributes_token3] = ACTIONS(5526), - [aux_sym_variable_attributes_token5] = ACTIONS(5526), - [aux_sym__intrinsic_type_token1] = ACTIONS(5526), - [aux_sym__intrinsic_type_token3] = ACTIONS(5526), - [aux_sym__intrinsic_type_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5526), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5526), - [aux_sym_type_qualifier_token1] = ACTIONS(5526), - [aux_sym_type_qualifier_token2] = ACTIONS(5526), - [anon_sym_SEMI] = ACTIONS(5530), - [aux_sym_stop_statement_token1] = ACTIONS(5526), - [aux_sym_stop_statement_token2] = ACTIONS(5526), - [aux_sym_subroutine_call_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token1] = ACTIONS(5526), - [aux_sym_keyword_statement_token2] = ACTIONS(5526), - [aux_sym_keyword_statement_token3] = ACTIONS(5526), - [aux_sym_keyword_statement_token4] = ACTIONS(5526), - [aux_sym_keyword_statement_token6] = ACTIONS(5526), - [aux_sym_keyword_statement_token7] = ACTIONS(5526), - [aux_sym_include_statement_token1] = ACTIONS(5526), - [aux_sym_data_statement_token1] = ACTIONS(5526), - [aux_sym_do_loop_statement_token1] = ACTIONS(5526), - [aux_sym__inline_if_statement_token1] = ACTIONS(5526), - [aux_sym_end_if_statement_token1] = ACTIONS(5526), - [aux_sym_elseif_clause_token2] = ACTIONS(5526), - [aux_sym__inline_where_statement_token1] = ACTIONS(5526), - [aux_sym__forall_control_expression_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token1] = ACTIONS(5526), - [aux_sym_select_case_statement_token3] = ACTIONS(5526), - [aux_sym_select_type_statement_token1] = ACTIONS(5526), - [aux_sym_select_rank_statement_token2] = ACTIONS(5526), - [aux_sym_block_construct_token1] = ACTIONS(5526), - [aux_sym_associate_statement_token1] = ACTIONS(5526), - [aux_sym_format_statement_token1] = ACTIONS(5526), - [aux_sym_print_statement_token1] = ACTIONS(5526), - [aux_sym_open_statement_token1] = ACTIONS(5526), - [aux_sym_close_statement_token1] = ACTIONS(5526), - [aux_sym_inquire_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token1] = ACTIONS(5526), - [aux_sym_file_position_statement_token2] = ACTIONS(5526), - [aux_sym_file_position_statement_token3] = ACTIONS(5526), - [aux_sym_file_position_statement_token4] = ACTIONS(5526), - [aux_sym_allocate_statement_token1] = ACTIONS(5526), - [aux_sym_entry_statement_token1] = ACTIONS(5526), - [aux_sym_logical_expression_token5] = ACTIONS(5530), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_LPAREN_SLASH] = ACTIONS(5530), - [anon_sym_LBRACK] = ACTIONS(5530), - [aux_sym_boolean_literal_token1] = ACTIONS(5530), - [aux_sym_boolean_literal_token2] = ACTIONS(5530), - [aux_sym_null_literal_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_statement_token2] = ACTIONS(5526), - [aux_sym_coarray_statement_token6] = ACTIONS(5526), - [aux_sym_coarray_statement_token8] = ACTIONS(5526), - [aux_sym_coarray_statement_token11] = ACTIONS(5526), - [aux_sym_coarray_statement_token12] = ACTIONS(5526), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5526), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5526), - [aux_sym_identifier_token1] = ACTIONS(5526), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5530), - [sym__float_literal] = ACTIONS(5530), - [sym__boz_literal] = ACTIONS(5530), - [sym__string_literal] = ACTIONS(5530), - [sym__string_literal_kind] = ACTIONS(5530), + [2494] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_end_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2541] = { - [aux_sym_preproc_include_token1] = ACTIONS(5578), - [aux_sym_preproc_def_token1] = ACTIONS(5578), - [aux_sym_preproc_if_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5578), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5578), - [sym_preproc_directive] = ACTIONS(5578), - [anon_sym_LPAREN2] = ACTIONS(5578), - [sym_preproc_comment] = ACTIONS(6578), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), + [2495] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5578), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5578), - [aux_sym_procedure_attributes_token3] = ACTIONS(5578), - [aux_sym_use_statement_token2] = ACTIONS(5578), - [aux_sym_implicit_statement_token4] = ACTIONS(5578), - [aux_sym_save_statement_token1] = ACTIONS(5578), - [aux_sym_private_statement_token1] = ACTIONS(5578), - [aux_sym_public_statement_token1] = ACTIONS(5578), - [aux_sym_derived_type_definition_token1] = ACTIONS(5578), - [aux_sym_procedure_attribute_token6] = ACTIONS(5578), - [aux_sym_variable_attributes_token2] = ACTIONS(5578), - [aux_sym_variable_attributes_token3] = ACTIONS(5578), - [aux_sym_variable_attributes_token5] = ACTIONS(5578), - [aux_sym__intrinsic_type_token1] = ACTIONS(5578), - [aux_sym__intrinsic_type_token3] = ACTIONS(5578), - [aux_sym__intrinsic_type_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5578), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5578), - [aux_sym_type_qualifier_token1] = ACTIONS(5578), - [aux_sym_type_qualifier_token2] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5582), - [aux_sym_stop_statement_token1] = ACTIONS(5578), - [aux_sym_stop_statement_token2] = ACTIONS(5578), - [aux_sym_subroutine_call_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token1] = ACTIONS(5578), - [aux_sym_keyword_statement_token2] = ACTIONS(5578), - [aux_sym_keyword_statement_token3] = ACTIONS(5578), - [aux_sym_keyword_statement_token4] = ACTIONS(5578), - [aux_sym_keyword_statement_token6] = ACTIONS(5578), - [aux_sym_keyword_statement_token7] = ACTIONS(5578), - [aux_sym_include_statement_token1] = ACTIONS(5578), - [aux_sym_data_statement_token1] = ACTIONS(5578), - [aux_sym_do_loop_statement_token1] = ACTIONS(5578), - [aux_sym__inline_if_statement_token1] = ACTIONS(5578), - [aux_sym_end_if_statement_token1] = ACTIONS(5578), - [aux_sym_elseif_clause_token2] = ACTIONS(5578), - [aux_sym__inline_where_statement_token1] = ACTIONS(5578), - [aux_sym__forall_control_expression_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token1] = ACTIONS(5578), - [aux_sym_select_case_statement_token3] = ACTIONS(5578), - [aux_sym_select_type_statement_token1] = ACTIONS(5578), - [aux_sym_select_rank_statement_token2] = ACTIONS(5578), - [aux_sym_block_construct_token1] = ACTIONS(5578), - [aux_sym_associate_statement_token1] = ACTIONS(5578), - [aux_sym_format_statement_token1] = ACTIONS(5578), - [aux_sym_print_statement_token1] = ACTIONS(5578), - [aux_sym_open_statement_token1] = ACTIONS(5578), - [aux_sym_close_statement_token1] = ACTIONS(5578), - [aux_sym_inquire_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token1] = ACTIONS(5578), - [aux_sym_file_position_statement_token2] = ACTIONS(5578), - [aux_sym_file_position_statement_token3] = ACTIONS(5578), - [aux_sym_file_position_statement_token4] = ACTIONS(5578), - [aux_sym_allocate_statement_token1] = ACTIONS(5578), - [aux_sym_entry_statement_token1] = ACTIONS(5578), - [aux_sym_logical_expression_token5] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_LPAREN_SLASH] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5582), - [aux_sym_boolean_literal_token1] = ACTIONS(5582), - [aux_sym_boolean_literal_token2] = ACTIONS(5582), - [aux_sym_null_literal_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_statement_token2] = ACTIONS(5578), - [aux_sym_coarray_statement_token6] = ACTIONS(5578), - [aux_sym_coarray_statement_token8] = ACTIONS(5578), - [aux_sym_coarray_statement_token11] = ACTIONS(5578), - [aux_sym_coarray_statement_token12] = ACTIONS(5578), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5578), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5578), - [aux_sym_identifier_token1] = ACTIONS(5578), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_end_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5582), - [sym__float_literal] = ACTIONS(5582), - [sym__boz_literal] = ACTIONS(5582), - [sym__string_literal] = ACTIONS(5582), - [sym__string_literal_kind] = ACTIONS(5582), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2542] = { - [anon_sym_COMMA] = ACTIONS(6580), - [anon_sym_RPAREN] = ACTIONS(6580), - [anon_sym_LPAREN2] = ACTIONS(6580), - [anon_sym_PLUS] = ACTIONS(6580), - [anon_sym_DASH] = ACTIONS(6580), - [anon_sym_STAR] = ACTIONS(6582), - [anon_sym_SLASH] = ACTIONS(6582), - [anon_sym_PERCENT] = ACTIONS(6580), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6580), - [anon_sym_GT] = ACTIONS(6582), - [anon_sym_GT_EQ] = ACTIONS(6580), - [anon_sym_LT_EQ] = ACTIONS(6580), - [anon_sym_LT] = ACTIONS(6582), - [aux_sym_end_program_statement_token1] = ACTIONS(6582), - [anon_sym_EQ] = ACTIONS(6582), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6582), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6582), - [aux_sym_language_binding_token1] = ACTIONS(6582), - [aux_sym_procedure_attributes_token1] = ACTIONS(6582), - [aux_sym_procedure_attributes_token3] = ACTIONS(6582), - [aux_sym_use_statement_token2] = ACTIONS(6582), - [anon_sym_COLON_COLON] = ACTIONS(6580), - [anon_sym_EQ_GT] = ACTIONS(6580), - [aux_sym_implicit_statement_token4] = ACTIONS(6582), - [aux_sym_save_statement_token1] = ACTIONS(6582), - [aux_sym_private_statement_token1] = ACTIONS(6582), - [aux_sym_public_statement_token1] = ACTIONS(6582), - [aux_sym_derived_type_definition_token1] = ACTIONS(6582), - [aux_sym_abstract_specifier_token1] = ACTIONS(6582), - [aux_sym_procedure_attribute_token6] = ACTIONS(6582), - [aux_sym_variable_attributes_token1] = ACTIONS(6582), - [aux_sym_variable_attributes_token2] = ACTIONS(6582), - [aux_sym_variable_attributes_token3] = ACTIONS(6582), - [aux_sym_variable_attributes_token4] = ACTIONS(6582), - [aux_sym_variable_attributes_token5] = ACTIONS(6582), - [aux_sym__intrinsic_type_token1] = ACTIONS(6582), - [aux_sym__intrinsic_type_token3] = ACTIONS(6582), - [aux_sym__intrinsic_type_token4] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6582), - [aux_sym_type_qualifier_token1] = ACTIONS(6582), - [aux_sym_type_qualifier_token2] = ACTIONS(6582), - [aux_sym_stop_statement_token1] = ACTIONS(6582), - [aux_sym_stop_statement_token2] = ACTIONS(6582), - [anon_sym_GT_GT_GT] = ACTIONS(6580), - [aux_sym_keyword_statement_token2] = ACTIONS(6582), - [aux_sym_keyword_statement_token3] = ACTIONS(6582), - [aux_sym_data_statement_token1] = ACTIONS(6582), - [aux_sym__inline_if_statement_token1] = ACTIONS(6582), - [aux_sym_end_if_statement_token1] = ACTIONS(6582), - [aux_sym_elseif_clause_token2] = ACTIONS(6582), - [aux_sym_select_case_statement_token1] = ACTIONS(6582), - [aux_sym_block_construct_token1] = ACTIONS(6582), - [aux_sym_format_statement_token1] = ACTIONS(6582), - [aux_sym_inquire_statement_token1] = ACTIONS(6582), - [aux_sym_entry_statement_token1] = ACTIONS(6582), - [aux_sym_logical_expression_token1] = ACTIONS(6580), - [aux_sym_logical_expression_token2] = ACTIONS(6580), - [aux_sym_logical_expression_token3] = ACTIONS(6580), - [aux_sym_logical_expression_token4] = ACTIONS(6580), - [aux_sym_relational_expression_token1] = ACTIONS(6580), - [aux_sym_relational_expression_token2] = ACTIONS(6580), - [aux_sym_relational_expression_token3] = ACTIONS(6580), - [aux_sym_relational_expression_token4] = ACTIONS(6580), - [aux_sym_relational_expression_token5] = ACTIONS(6580), - [anon_sym_SLASH_EQ] = ACTIONS(6580), - [aux_sym_relational_expression_token6] = ACTIONS(6580), - [anon_sym_SLASH_SLASH] = ACTIONS(6580), - [anon_sym_STAR_STAR] = ACTIONS(6580), - [anon_sym_DOT] = ACTIONS(6582), - [anon_sym_SLASH_RPAREN] = ACTIONS(6580), - [anon_sym_LBRACK] = ACTIONS(6580), - [anon_sym_RBRACK] = ACTIONS(6580), - [aux_sym_null_literal_token1] = ACTIONS(6582), - [aux_sym_coarray_statement_token1] = ACTIONS(6582), - [aux_sym_coarray_statement_token2] = ACTIONS(6582), - [aux_sym_coarray_statement_token6] = ACTIONS(6582), - [aux_sym_coarray_statement_token8] = ACTIONS(6582), - [aux_sym_coarray_statement_token11] = ACTIONS(6582), - [aux_sym_coarray_statement_token12] = ACTIONS(6582), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6582), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6582), - [aux_sym_identifier_token1] = ACTIONS(6582), + [2496] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_end_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2543] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2497] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_end_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_end_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), - }, - [2544] = { - [aux_sym_preproc_include_token1] = ACTIONS(5548), - [aux_sym_preproc_def_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5548), - [sym_preproc_directive] = ACTIONS(5548), - [anon_sym_LPAREN2] = ACTIONS(5548), - [sym_preproc_comment] = ACTIONS(6584), - [anon_sym_PLUS] = ACTIONS(5552), - [anon_sym_DASH] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5548), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5548), - [aux_sym_procedure_attributes_token3] = ACTIONS(5548), - [aux_sym_use_statement_token2] = ACTIONS(5548), - [aux_sym_implicit_statement_token4] = ACTIONS(5548), - [aux_sym_save_statement_token1] = ACTIONS(5548), - [aux_sym_private_statement_token1] = ACTIONS(5548), - [aux_sym_public_statement_token1] = ACTIONS(5548), - [aux_sym_derived_type_definition_token1] = ACTIONS(5548), - [aux_sym_procedure_attribute_token6] = ACTIONS(5548), - [aux_sym_variable_attributes_token2] = ACTIONS(5548), - [aux_sym_variable_attributes_token3] = ACTIONS(5548), - [aux_sym_variable_attributes_token5] = ACTIONS(5548), - [aux_sym__intrinsic_type_token1] = ACTIONS(5548), - [aux_sym__intrinsic_type_token3] = ACTIONS(5548), - [aux_sym__intrinsic_type_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5548), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5548), - [aux_sym_type_qualifier_token1] = ACTIONS(5548), - [aux_sym_type_qualifier_token2] = ACTIONS(5548), - [anon_sym_SEMI] = ACTIONS(5552), - [aux_sym_stop_statement_token1] = ACTIONS(5548), - [aux_sym_stop_statement_token2] = ACTIONS(5548), - [aux_sym_subroutine_call_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token1] = ACTIONS(5548), - [aux_sym_keyword_statement_token2] = ACTIONS(5548), - [aux_sym_keyword_statement_token3] = ACTIONS(5548), - [aux_sym_keyword_statement_token4] = ACTIONS(5548), - [aux_sym_keyword_statement_token6] = ACTIONS(5548), - [aux_sym_keyword_statement_token7] = ACTIONS(5548), - [aux_sym_include_statement_token1] = ACTIONS(5548), - [aux_sym_data_statement_token1] = ACTIONS(5548), - [aux_sym_do_loop_statement_token1] = ACTIONS(5548), - [aux_sym__inline_if_statement_token1] = ACTIONS(5548), - [aux_sym_end_if_statement_token1] = ACTIONS(5548), - [aux_sym_elseif_clause_token2] = ACTIONS(5548), - [aux_sym__inline_where_statement_token1] = ACTIONS(5548), - [aux_sym__forall_control_expression_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token1] = ACTIONS(5548), - [aux_sym_select_case_statement_token3] = ACTIONS(5548), - [aux_sym_select_type_statement_token1] = ACTIONS(5548), - [aux_sym_select_rank_statement_token2] = ACTIONS(5548), - [aux_sym_block_construct_token1] = ACTIONS(5548), - [aux_sym_associate_statement_token1] = ACTIONS(5548), - [aux_sym_format_statement_token1] = ACTIONS(5548), - [aux_sym_print_statement_token1] = ACTIONS(5548), - [aux_sym_open_statement_token1] = ACTIONS(5548), - [aux_sym_close_statement_token1] = ACTIONS(5548), - [aux_sym_inquire_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token1] = ACTIONS(5548), - [aux_sym_file_position_statement_token2] = ACTIONS(5548), - [aux_sym_file_position_statement_token3] = ACTIONS(5548), - [aux_sym_file_position_statement_token4] = ACTIONS(5548), - [aux_sym_allocate_statement_token1] = ACTIONS(5548), - [aux_sym_entry_statement_token1] = ACTIONS(5548), - [aux_sym_logical_expression_token5] = ACTIONS(5552), - [anon_sym_DOT] = ACTIONS(5548), - [anon_sym_LPAREN_SLASH] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5552), - [aux_sym_boolean_literal_token1] = ACTIONS(5552), - [aux_sym_boolean_literal_token2] = ACTIONS(5552), - [aux_sym_null_literal_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_statement_token2] = ACTIONS(5548), - [aux_sym_coarray_statement_token6] = ACTIONS(5548), - [aux_sym_coarray_statement_token8] = ACTIONS(5548), - [aux_sym_coarray_statement_token11] = ACTIONS(5548), - [aux_sym_coarray_statement_token12] = ACTIONS(5548), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5548), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5548), - [aux_sym_identifier_token1] = ACTIONS(5548), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5552), - [sym__float_literal] = ACTIONS(5552), - [sym__boz_literal] = ACTIONS(5552), - [sym__string_literal] = ACTIONS(5552), - [sym__string_literal_kind] = ACTIONS(5552), - }, - [2545] = { - [aux_sym_preproc_include_token1] = ACTIONS(5520), - [aux_sym_preproc_def_token1] = ACTIONS(5520), - [aux_sym_preproc_if_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5520), - [sym_preproc_directive] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5520), - [sym_preproc_comment] = ACTIONS(6586), - [anon_sym_PLUS] = ACTIONS(5524), - [anon_sym_DASH] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5520), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5520), - [aux_sym_procedure_attributes_token3] = ACTIONS(5520), - [aux_sym_use_statement_token2] = ACTIONS(5520), - [aux_sym_implicit_statement_token4] = ACTIONS(5520), - [aux_sym_save_statement_token1] = ACTIONS(5520), - [aux_sym_private_statement_token1] = ACTIONS(5520), - [aux_sym_public_statement_token1] = ACTIONS(5520), - [aux_sym_derived_type_definition_token1] = ACTIONS(5520), - [aux_sym_procedure_attribute_token6] = ACTIONS(5520), - [aux_sym_variable_attributes_token2] = ACTIONS(5520), - [aux_sym_variable_attributes_token3] = ACTIONS(5520), - [aux_sym_variable_attributes_token5] = ACTIONS(5520), - [aux_sym__intrinsic_type_token1] = ACTIONS(5520), - [aux_sym__intrinsic_type_token3] = ACTIONS(5520), - [aux_sym__intrinsic_type_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5520), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5520), - [aux_sym_type_qualifier_token1] = ACTIONS(5520), - [aux_sym_type_qualifier_token2] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5524), - [aux_sym_stop_statement_token1] = ACTIONS(5520), - [aux_sym_stop_statement_token2] = ACTIONS(5520), - [aux_sym_subroutine_call_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token1] = ACTIONS(5520), - [aux_sym_keyword_statement_token2] = ACTIONS(5520), - [aux_sym_keyword_statement_token3] = ACTIONS(5520), - [aux_sym_keyword_statement_token4] = ACTIONS(5520), - [aux_sym_keyword_statement_token6] = ACTIONS(5520), - [aux_sym_keyword_statement_token7] = ACTIONS(5520), - [aux_sym_include_statement_token1] = ACTIONS(5520), - [aux_sym_data_statement_token1] = ACTIONS(5520), - [aux_sym_do_loop_statement_token1] = ACTIONS(5520), - [aux_sym__inline_if_statement_token1] = ACTIONS(5520), - [aux_sym_end_if_statement_token1] = ACTIONS(5520), - [aux_sym_elseif_clause_token2] = ACTIONS(5520), - [aux_sym__inline_where_statement_token1] = ACTIONS(5520), - [aux_sym__forall_control_expression_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token1] = ACTIONS(5520), - [aux_sym_select_case_statement_token3] = ACTIONS(5520), - [aux_sym_select_type_statement_token1] = ACTIONS(5520), - [aux_sym_select_rank_statement_token2] = ACTIONS(5520), - [aux_sym_block_construct_token1] = ACTIONS(5520), - [aux_sym_associate_statement_token1] = ACTIONS(5520), - [aux_sym_format_statement_token1] = ACTIONS(5520), - [aux_sym_print_statement_token1] = ACTIONS(5520), - [aux_sym_open_statement_token1] = ACTIONS(5520), - [aux_sym_close_statement_token1] = ACTIONS(5520), - [aux_sym_inquire_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token1] = ACTIONS(5520), - [aux_sym_file_position_statement_token2] = ACTIONS(5520), - [aux_sym_file_position_statement_token3] = ACTIONS(5520), - [aux_sym_file_position_statement_token4] = ACTIONS(5520), - [aux_sym_allocate_statement_token1] = ACTIONS(5520), - [aux_sym_entry_statement_token1] = ACTIONS(5520), - [aux_sym_logical_expression_token5] = ACTIONS(5524), - [anon_sym_DOT] = ACTIONS(5520), - [anon_sym_LPAREN_SLASH] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(5524), - [aux_sym_boolean_literal_token1] = ACTIONS(5524), - [aux_sym_boolean_literal_token2] = ACTIONS(5524), - [aux_sym_null_literal_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_statement_token2] = ACTIONS(5520), - [aux_sym_coarray_statement_token6] = ACTIONS(5520), - [aux_sym_coarray_statement_token8] = ACTIONS(5520), - [aux_sym_coarray_statement_token11] = ACTIONS(5520), - [aux_sym_coarray_statement_token12] = ACTIONS(5520), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5520), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5520), - [aux_sym_identifier_token1] = ACTIONS(5520), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5524), - [sym__float_literal] = ACTIONS(5524), - [sym__boz_literal] = ACTIONS(5524), - [sym__string_literal] = ACTIONS(5524), - [sym__string_literal_kind] = ACTIONS(5524), - }, - [2546] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [2547] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_end_forall_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), - }, - [2548] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2549] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [2498] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_end_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2550] = { + [2499] = { [aux_sym_preproc_include_token1] = ACTIONS(5640), [aux_sym_preproc_def_token1] = ACTIONS(5640), [aux_sym_preproc_if_token1] = ACTIONS(5640), @@ -398155,7 +393157,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(5640), [aux_sym_data_statement_token1] = ACTIONS(5640), [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5640), [aux_sym__inline_if_statement_token1] = ACTIONS(5640), [aux_sym_end_if_statement_token1] = ACTIONS(5640), [aux_sym_elseif_clause_token2] = ACTIONS(5640), @@ -398192,6 +393193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(5640), [aux_sym_coarray_statement_token12] = ACTIONS(5640), [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5640), [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), @@ -398201,791 +393203,2457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5642), [sym__string_literal_kind] = ACTIONS(5642), }, - [2551] = { - [anon_sym_COMMA] = ACTIONS(6588), - [anon_sym_RPAREN] = ACTIONS(6588), - [anon_sym_LPAREN2] = ACTIONS(6588), - [anon_sym_PLUS] = ACTIONS(6588), - [anon_sym_DASH] = ACTIONS(6588), - [anon_sym_STAR] = ACTIONS(6590), - [anon_sym_SLASH] = ACTIONS(6590), - [anon_sym_PERCENT] = ACTIONS(6588), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6588), - [anon_sym_GT] = ACTIONS(6590), - [anon_sym_GT_EQ] = ACTIONS(6588), - [anon_sym_LT_EQ] = ACTIONS(6588), - [anon_sym_LT] = ACTIONS(6590), - [aux_sym_end_program_statement_token1] = ACTIONS(6590), - [anon_sym_EQ] = ACTIONS(6590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6590), - [aux_sym_language_binding_token1] = ACTIONS(6590), - [aux_sym_procedure_attributes_token1] = ACTIONS(6590), - [aux_sym_procedure_attributes_token3] = ACTIONS(6590), - [aux_sym_use_statement_token2] = ACTIONS(6590), - [anon_sym_COLON_COLON] = ACTIONS(6588), - [anon_sym_EQ_GT] = ACTIONS(6588), - [aux_sym_implicit_statement_token4] = ACTIONS(6590), - [aux_sym_save_statement_token1] = ACTIONS(6590), - [aux_sym_private_statement_token1] = ACTIONS(6590), - [aux_sym_public_statement_token1] = ACTIONS(6590), - [aux_sym_derived_type_definition_token1] = ACTIONS(6590), - [aux_sym_abstract_specifier_token1] = ACTIONS(6590), - [aux_sym_procedure_attribute_token6] = ACTIONS(6590), - [aux_sym_variable_attributes_token1] = ACTIONS(6590), - [aux_sym_variable_attributes_token2] = ACTIONS(6590), - [aux_sym_variable_attributes_token3] = ACTIONS(6590), - [aux_sym_variable_attributes_token4] = ACTIONS(6590), - [aux_sym_variable_attributes_token5] = ACTIONS(6590), - [aux_sym__intrinsic_type_token1] = ACTIONS(6590), - [aux_sym__intrinsic_type_token3] = ACTIONS(6590), - [aux_sym__intrinsic_type_token4] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6590), - [aux_sym_type_qualifier_token1] = ACTIONS(6590), - [aux_sym_type_qualifier_token2] = ACTIONS(6590), - [aux_sym_stop_statement_token1] = ACTIONS(6590), - [aux_sym_stop_statement_token2] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6588), - [aux_sym_keyword_statement_token2] = ACTIONS(6590), - [aux_sym_keyword_statement_token3] = ACTIONS(6590), - [aux_sym_data_statement_token1] = ACTIONS(6590), - [aux_sym__inline_if_statement_token1] = ACTIONS(6590), - [aux_sym_end_if_statement_token1] = ACTIONS(6590), - [aux_sym_elseif_clause_token2] = ACTIONS(6590), - [aux_sym_select_case_statement_token1] = ACTIONS(6590), - [aux_sym_block_construct_token1] = ACTIONS(6590), - [aux_sym_format_statement_token1] = ACTIONS(6590), - [aux_sym_inquire_statement_token1] = ACTIONS(6590), - [aux_sym_entry_statement_token1] = ACTIONS(6590), - [aux_sym_logical_expression_token1] = ACTIONS(6588), - [aux_sym_logical_expression_token2] = ACTIONS(6588), - [aux_sym_logical_expression_token3] = ACTIONS(6588), - [aux_sym_logical_expression_token4] = ACTIONS(6588), - [aux_sym_relational_expression_token1] = ACTIONS(6588), - [aux_sym_relational_expression_token2] = ACTIONS(6588), - [aux_sym_relational_expression_token3] = ACTIONS(6588), - [aux_sym_relational_expression_token4] = ACTIONS(6588), - [aux_sym_relational_expression_token5] = ACTIONS(6588), - [anon_sym_SLASH_EQ] = ACTIONS(6588), - [aux_sym_relational_expression_token6] = ACTIONS(6588), - [anon_sym_SLASH_SLASH] = ACTIONS(6588), - [anon_sym_STAR_STAR] = ACTIONS(6588), - [anon_sym_DOT] = ACTIONS(6590), - [anon_sym_SLASH_RPAREN] = ACTIONS(6588), - [anon_sym_LBRACK] = ACTIONS(6588), - [anon_sym_RBRACK] = ACTIONS(6588), - [aux_sym_null_literal_token1] = ACTIONS(6590), - [aux_sym_coarray_statement_token1] = ACTIONS(6590), - [aux_sym_coarray_statement_token2] = ACTIONS(6590), - [aux_sym_coarray_statement_token6] = ACTIONS(6590), - [aux_sym_coarray_statement_token8] = ACTIONS(6590), - [aux_sym_coarray_statement_token11] = ACTIONS(6590), - [aux_sym_coarray_statement_token12] = ACTIONS(6590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6590), - [aux_sym_identifier_token1] = ACTIONS(6590), + [2500] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2501] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [2502] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2503] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_end_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2552] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [2504] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2553] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [2505] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_end_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [2506] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2507] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2508] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2509] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_end_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2510] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_end_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2511] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2512] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_end_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2513] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_end_forall_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), + }, + [2514] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2515] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), + }, + [2516] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), + }, + [2517] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), + }, + [2518] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), + }, + [2519] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), + }, + [2520] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2554] = { - [aux_sym_preproc_include_token1] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5554), - [sym_preproc_comment] = ACTIONS(6592), - [anon_sym_PLUS] = ACTIONS(5558), - [anon_sym_DASH] = ACTIONS(5558), + [2521] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5554), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5554), - [aux_sym_procedure_attributes_token3] = ACTIONS(5554), - [aux_sym_use_statement_token2] = ACTIONS(5554), - [aux_sym_implicit_statement_token4] = ACTIONS(5554), - [aux_sym_save_statement_token1] = ACTIONS(5554), - [aux_sym_private_statement_token1] = ACTIONS(5554), - [aux_sym_public_statement_token1] = ACTIONS(5554), - [aux_sym_derived_type_definition_token1] = ACTIONS(5554), - [aux_sym_procedure_attribute_token6] = ACTIONS(5554), - [aux_sym_variable_attributes_token2] = ACTIONS(5554), - [aux_sym_variable_attributes_token3] = ACTIONS(5554), - [aux_sym_variable_attributes_token5] = ACTIONS(5554), - [aux_sym__intrinsic_type_token1] = ACTIONS(5554), - [aux_sym__intrinsic_type_token3] = ACTIONS(5554), - [aux_sym__intrinsic_type_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5554), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5554), - [aux_sym_type_qualifier_token1] = ACTIONS(5554), - [aux_sym_type_qualifier_token2] = ACTIONS(5554), - [anon_sym_SEMI] = ACTIONS(5558), - [aux_sym_stop_statement_token1] = ACTIONS(5554), - [aux_sym_stop_statement_token2] = ACTIONS(5554), - [aux_sym_subroutine_call_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token1] = ACTIONS(5554), - [aux_sym_keyword_statement_token2] = ACTIONS(5554), - [aux_sym_keyword_statement_token3] = ACTIONS(5554), - [aux_sym_keyword_statement_token4] = ACTIONS(5554), - [aux_sym_keyword_statement_token6] = ACTIONS(5554), - [aux_sym_keyword_statement_token7] = ACTIONS(5554), - [aux_sym_include_statement_token1] = ACTIONS(5554), - [aux_sym_data_statement_token1] = ACTIONS(5554), - [aux_sym_do_loop_statement_token1] = ACTIONS(5554), - [aux_sym__inline_if_statement_token1] = ACTIONS(5554), - [aux_sym_end_if_statement_token1] = ACTIONS(5554), - [aux_sym_elseif_clause_token2] = ACTIONS(5554), - [aux_sym__inline_where_statement_token1] = ACTIONS(5554), - [aux_sym__forall_control_expression_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token1] = ACTIONS(5554), - [aux_sym_select_case_statement_token3] = ACTIONS(5554), - [aux_sym_select_type_statement_token1] = ACTIONS(5554), - [aux_sym_select_rank_statement_token2] = ACTIONS(5554), - [aux_sym_block_construct_token1] = ACTIONS(5554), - [aux_sym_associate_statement_token1] = ACTIONS(5554), - [aux_sym_format_statement_token1] = ACTIONS(5554), - [aux_sym_print_statement_token1] = ACTIONS(5554), - [aux_sym_open_statement_token1] = ACTIONS(5554), - [aux_sym_close_statement_token1] = ACTIONS(5554), - [aux_sym_inquire_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token1] = ACTIONS(5554), - [aux_sym_file_position_statement_token2] = ACTIONS(5554), - [aux_sym_file_position_statement_token3] = ACTIONS(5554), - [aux_sym_file_position_statement_token4] = ACTIONS(5554), - [aux_sym_allocate_statement_token1] = ACTIONS(5554), - [aux_sym_entry_statement_token1] = ACTIONS(5554), - [aux_sym_logical_expression_token5] = ACTIONS(5558), - [anon_sym_DOT] = ACTIONS(5554), - [anon_sym_LPAREN_SLASH] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [aux_sym_boolean_literal_token1] = ACTIONS(5558), - [aux_sym_boolean_literal_token2] = ACTIONS(5558), - [aux_sym_null_literal_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_statement_token2] = ACTIONS(5554), - [aux_sym_coarray_statement_token6] = ACTIONS(5554), - [aux_sym_coarray_statement_token8] = ACTIONS(5554), - [aux_sym_coarray_statement_token11] = ACTIONS(5554), - [aux_sym_coarray_statement_token12] = ACTIONS(5554), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5554), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5554), - [aux_sym_identifier_token1] = ACTIONS(5554), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5558), - [sym__float_literal] = ACTIONS(5558), - [sym__boz_literal] = ACTIONS(5558), - [sym__string_literal] = ACTIONS(5558), - [sym__string_literal_kind] = ACTIONS(5558), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2555] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [2522] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), - }, - [2556] = { - [aux_sym_preproc_include_token1] = ACTIONS(5568), - [aux_sym_preproc_def_token1] = ACTIONS(5568), - [aux_sym_preproc_if_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), - [sym_preproc_directive] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [sym_preproc_comment] = ACTIONS(6594), - [anon_sym_PLUS] = ACTIONS(5572), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5568), - [aux_sym_procedure_attributes_token3] = ACTIONS(5568), - [aux_sym_use_statement_token2] = ACTIONS(5568), - [aux_sym_implicit_statement_token4] = ACTIONS(5568), - [aux_sym_save_statement_token1] = ACTIONS(5568), - [aux_sym_private_statement_token1] = ACTIONS(5568), - [aux_sym_public_statement_token1] = ACTIONS(5568), - [aux_sym_derived_type_definition_token1] = ACTIONS(5568), - [aux_sym_procedure_attribute_token6] = ACTIONS(5568), - [aux_sym_variable_attributes_token2] = ACTIONS(5568), - [aux_sym_variable_attributes_token3] = ACTIONS(5568), - [aux_sym_variable_attributes_token5] = ACTIONS(5568), - [aux_sym__intrinsic_type_token1] = ACTIONS(5568), - [aux_sym__intrinsic_type_token3] = ACTIONS(5568), - [aux_sym__intrinsic_type_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5568), - [aux_sym_type_qualifier_token1] = ACTIONS(5568), - [aux_sym_type_qualifier_token2] = ACTIONS(5568), - [anon_sym_SEMI] = ACTIONS(5572), - [aux_sym_stop_statement_token1] = ACTIONS(5568), - [aux_sym_stop_statement_token2] = ACTIONS(5568), - [aux_sym_subroutine_call_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token1] = ACTIONS(5568), - [aux_sym_keyword_statement_token2] = ACTIONS(5568), - [aux_sym_keyword_statement_token3] = ACTIONS(5568), - [aux_sym_keyword_statement_token4] = ACTIONS(5568), - [aux_sym_keyword_statement_token6] = ACTIONS(5568), - [aux_sym_keyword_statement_token7] = ACTIONS(5568), - [aux_sym_include_statement_token1] = ACTIONS(5568), - [aux_sym_data_statement_token1] = ACTIONS(5568), - [aux_sym_do_loop_statement_token1] = ACTIONS(5568), - [aux_sym__inline_if_statement_token1] = ACTIONS(5568), - [aux_sym_end_if_statement_token1] = ACTIONS(5568), - [aux_sym_elseif_clause_token2] = ACTIONS(5568), - [aux_sym__inline_where_statement_token1] = ACTIONS(5568), - [aux_sym__forall_control_expression_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token1] = ACTIONS(5568), - [aux_sym_select_case_statement_token3] = ACTIONS(5568), - [aux_sym_select_type_statement_token1] = ACTIONS(5568), - [aux_sym_select_rank_statement_token2] = ACTIONS(5568), - [aux_sym_block_construct_token1] = ACTIONS(5568), - [aux_sym_associate_statement_token1] = ACTIONS(5568), - [aux_sym_format_statement_token1] = ACTIONS(5568), - [aux_sym_print_statement_token1] = ACTIONS(5568), - [aux_sym_open_statement_token1] = ACTIONS(5568), - [aux_sym_close_statement_token1] = ACTIONS(5568), - [aux_sym_inquire_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token1] = ACTIONS(5568), - [aux_sym_file_position_statement_token2] = ACTIONS(5568), - [aux_sym_file_position_statement_token3] = ACTIONS(5568), - [aux_sym_file_position_statement_token4] = ACTIONS(5568), - [aux_sym_allocate_statement_token1] = ACTIONS(5568), - [aux_sym_entry_statement_token1] = ACTIONS(5568), - [aux_sym_logical_expression_token5] = ACTIONS(5572), - [anon_sym_DOT] = ACTIONS(5568), - [anon_sym_LPAREN_SLASH] = ACTIONS(5572), - [anon_sym_LBRACK] = ACTIONS(5572), - [aux_sym_boolean_literal_token1] = ACTIONS(5572), - [aux_sym_boolean_literal_token2] = ACTIONS(5572), - [aux_sym_null_literal_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_statement_token2] = ACTIONS(5568), - [aux_sym_coarray_statement_token6] = ACTIONS(5568), - [aux_sym_coarray_statement_token8] = ACTIONS(5568), - [aux_sym_coarray_statement_token11] = ACTIONS(5568), - [aux_sym_coarray_statement_token12] = ACTIONS(5568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5568), - [aux_sym_identifier_token1] = ACTIONS(5568), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5572), - [sym__float_literal] = ACTIONS(5572), - [sym__boz_literal] = ACTIONS(5572), - [sym__string_literal] = ACTIONS(5572), - [sym__string_literal_kind] = ACTIONS(5572), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), }, - [2557] = { - [aux_sym_preproc_include_token1] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5542), - [sym_preproc_comment] = ACTIONS(6596), - [anon_sym_PLUS] = ACTIONS(5546), - [anon_sym_DASH] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5542), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5542), - [aux_sym_procedure_attributes_token3] = ACTIONS(5542), - [aux_sym_use_statement_token2] = ACTIONS(5542), - [aux_sym_implicit_statement_token4] = ACTIONS(5542), - [aux_sym_save_statement_token1] = ACTIONS(5542), - [aux_sym_private_statement_token1] = ACTIONS(5542), - [aux_sym_public_statement_token1] = ACTIONS(5542), - [aux_sym_derived_type_definition_token1] = ACTIONS(5542), - [aux_sym_procedure_attribute_token6] = ACTIONS(5542), - [aux_sym_variable_attributes_token2] = ACTIONS(5542), - [aux_sym_variable_attributes_token3] = ACTIONS(5542), - [aux_sym_variable_attributes_token5] = ACTIONS(5542), - [aux_sym__intrinsic_type_token1] = ACTIONS(5542), - [aux_sym__intrinsic_type_token3] = ACTIONS(5542), - [aux_sym__intrinsic_type_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5542), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5542), - [aux_sym_type_qualifier_token1] = ACTIONS(5542), - [aux_sym_type_qualifier_token2] = ACTIONS(5542), - [anon_sym_SEMI] = ACTIONS(5546), - [aux_sym_stop_statement_token1] = ACTIONS(5542), - [aux_sym_stop_statement_token2] = ACTIONS(5542), - [aux_sym_subroutine_call_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token1] = ACTIONS(5542), - [aux_sym_keyword_statement_token2] = ACTIONS(5542), - [aux_sym_keyword_statement_token3] = ACTIONS(5542), - [aux_sym_keyword_statement_token4] = ACTIONS(5542), - [aux_sym_keyword_statement_token6] = ACTIONS(5542), - [aux_sym_keyword_statement_token7] = ACTIONS(5542), - [aux_sym_include_statement_token1] = ACTIONS(5542), - [aux_sym_data_statement_token1] = ACTIONS(5542), - [aux_sym_do_loop_statement_token1] = ACTIONS(5542), - [aux_sym__inline_if_statement_token1] = ACTIONS(5542), - [aux_sym_end_if_statement_token1] = ACTIONS(5542), - [aux_sym_elseif_clause_token2] = ACTIONS(5542), - [aux_sym__inline_where_statement_token1] = ACTIONS(5542), - [aux_sym__forall_control_expression_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token1] = ACTIONS(5542), - [aux_sym_select_case_statement_token3] = ACTIONS(5542), - [aux_sym_select_type_statement_token1] = ACTIONS(5542), - [aux_sym_select_rank_statement_token2] = ACTIONS(5542), - [aux_sym_block_construct_token1] = ACTIONS(5542), - [aux_sym_associate_statement_token1] = ACTIONS(5542), - [aux_sym_format_statement_token1] = ACTIONS(5542), - [aux_sym_print_statement_token1] = ACTIONS(5542), - [aux_sym_open_statement_token1] = ACTIONS(5542), - [aux_sym_close_statement_token1] = ACTIONS(5542), - [aux_sym_inquire_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token1] = ACTIONS(5542), - [aux_sym_file_position_statement_token2] = ACTIONS(5542), - [aux_sym_file_position_statement_token3] = ACTIONS(5542), - [aux_sym_file_position_statement_token4] = ACTIONS(5542), - [aux_sym_allocate_statement_token1] = ACTIONS(5542), - [aux_sym_entry_statement_token1] = ACTIONS(5542), - [aux_sym_logical_expression_token5] = ACTIONS(5546), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_LPAREN_SLASH] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [aux_sym_boolean_literal_token1] = ACTIONS(5546), - [aux_sym_boolean_literal_token2] = ACTIONS(5546), - [aux_sym_null_literal_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_statement_token2] = ACTIONS(5542), - [aux_sym_coarray_statement_token6] = ACTIONS(5542), - [aux_sym_coarray_statement_token8] = ACTIONS(5542), - [aux_sym_coarray_statement_token11] = ACTIONS(5542), - [aux_sym_coarray_statement_token12] = ACTIONS(5542), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5542), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5542), - [aux_sym_identifier_token1] = ACTIONS(5542), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5546), - [sym__float_literal] = ACTIONS(5546), - [sym__boz_literal] = ACTIONS(5546), - [sym__string_literal] = ACTIONS(5546), - [sym__string_literal_kind] = ACTIONS(5546), + [2523] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2558] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [2524] = { + [anon_sym_COMMA] = ACTIONS(6564), + [anon_sym_RPAREN] = ACTIONS(6564), + [anon_sym_LPAREN2] = ACTIONS(6564), + [anon_sym_PLUS] = ACTIONS(6564), + [anon_sym_DASH] = ACTIONS(6564), + [anon_sym_STAR] = ACTIONS(6566), + [anon_sym_SLASH] = ACTIONS(6566), + [anon_sym_PERCENT] = ACTIONS(6564), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6564), + [anon_sym_GT] = ACTIONS(6566), + [anon_sym_GT_EQ] = ACTIONS(6564), + [anon_sym_LT_EQ] = ACTIONS(6564), + [anon_sym_LT] = ACTIONS(6566), + [aux_sym_end_program_statement_token1] = ACTIONS(6566), + [anon_sym_EQ] = ACTIONS(6566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6566), + [aux_sym_language_binding_token1] = ACTIONS(6566), + [aux_sym_procedure_attributes_token1] = ACTIONS(6566), + [aux_sym_procedure_attributes_token3] = ACTIONS(6566), + [aux_sym_use_statement_token2] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(6564), + [anon_sym_EQ_GT] = ACTIONS(6564), + [aux_sym_implicit_statement_token4] = ACTIONS(6566), + [aux_sym_save_statement_token1] = ACTIONS(6566), + [aux_sym_private_statement_token1] = ACTIONS(6566), + [aux_sym_public_statement_token1] = ACTIONS(6566), + [aux_sym_derived_type_definition_token1] = ACTIONS(6566), + [aux_sym_abstract_specifier_token1] = ACTIONS(6566), + [aux_sym_procedure_attribute_token6] = ACTIONS(6566), + [aux_sym_variable_attributes_token1] = ACTIONS(6566), + [aux_sym_variable_attributes_token2] = ACTIONS(6566), + [aux_sym_variable_attributes_token3] = ACTIONS(6566), + [aux_sym_variable_attributes_token4] = ACTIONS(6566), + [aux_sym_variable_attributes_token5] = ACTIONS(6566), + [aux_sym__intrinsic_type_token1] = ACTIONS(6566), + [aux_sym__intrinsic_type_token3] = ACTIONS(6566), + [aux_sym__intrinsic_type_token4] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6566), + [aux_sym_type_qualifier_token1] = ACTIONS(6566), + [aux_sym_type_qualifier_token2] = ACTIONS(6566), + [aux_sym_stop_statement_token1] = ACTIONS(6566), + [aux_sym_stop_statement_token2] = ACTIONS(6566), + [anon_sym_GT_GT_GT] = ACTIONS(6564), + [aux_sym_keyword_statement_token2] = ACTIONS(6566), + [aux_sym_keyword_statement_token3] = ACTIONS(6566), + [aux_sym_data_statement_token1] = ACTIONS(6566), + [aux_sym__inline_if_statement_token1] = ACTIONS(6566), + [aux_sym_end_if_statement_token1] = ACTIONS(6566), + [aux_sym_elseif_clause_token2] = ACTIONS(6566), + [aux_sym_select_case_statement_token1] = ACTIONS(6566), + [aux_sym_block_construct_token1] = ACTIONS(6566), + [aux_sym_format_statement_token1] = ACTIONS(6566), + [aux_sym_inquire_statement_token1] = ACTIONS(6566), + [aux_sym_entry_statement_token1] = ACTIONS(6566), + [aux_sym_logical_expression_token1] = ACTIONS(6564), + [aux_sym_logical_expression_token2] = ACTIONS(6564), + [aux_sym_logical_expression_token3] = ACTIONS(6564), + [aux_sym_logical_expression_token4] = ACTIONS(6564), + [aux_sym_relational_expression_token1] = ACTIONS(6564), + [aux_sym_relational_expression_token2] = ACTIONS(6564), + [aux_sym_relational_expression_token3] = ACTIONS(6564), + [aux_sym_relational_expression_token4] = ACTIONS(6564), + [aux_sym_relational_expression_token5] = ACTIONS(6564), + [anon_sym_SLASH_EQ] = ACTIONS(6564), + [aux_sym_relational_expression_token6] = ACTIONS(6564), + [anon_sym_SLASH_SLASH] = ACTIONS(6564), + [anon_sym_STAR_STAR] = ACTIONS(6564), + [anon_sym_DOT] = ACTIONS(6566), + [anon_sym_SLASH_RPAREN] = ACTIONS(6564), + [anon_sym_LBRACK] = ACTIONS(6564), + [anon_sym_RBRACK] = ACTIONS(6564), + [aux_sym_null_literal_token1] = ACTIONS(6566), + [aux_sym_coarray_statement_token1] = ACTIONS(6566), + [aux_sym_coarray_statement_token2] = ACTIONS(6566), + [aux_sym_coarray_statement_token6] = ACTIONS(6566), + [aux_sym_coarray_statement_token8] = ACTIONS(6566), + [aux_sym_coarray_statement_token11] = ACTIONS(6566), + [aux_sym_coarray_statement_token12] = ACTIONS(6566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6566), + [aux_sym_identifier_token1] = ACTIONS(6566), + [sym_comment] = ACTIONS(21), }, - [2559] = { + [2525] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), @@ -398993,8 +395661,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), @@ -399024,7 +395692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -399037,6 +395705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(2059), [aux_sym_data_statement_token1] = ACTIONS(2059), [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(2059), [aux_sym__inline_if_statement_token1] = ACTIONS(2059), [aux_sym_end_if_statement_token1] = ACTIONS(2059), [aux_sym_elseif_clause_token2] = ACTIONS(2059), @@ -399047,7 +395716,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(2059), [aux_sym_select_rank_statement_token2] = ACTIONS(2059), [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(2059), [aux_sym_associate_statement_token1] = ACTIONS(2059), [aux_sym_format_statement_token1] = ACTIONS(2059), [aux_sym_print_statement_token1] = ACTIONS(2059), @@ -399060,12 +395728,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(2059), [aux_sym_allocate_statement_token1] = ACTIONS(2059), [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), + [aux_sym_logical_expression_token5] = ACTIONS(5698), [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), [aux_sym_null_literal_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token2] = ACTIONS(2059), @@ -399077,895 +395745,699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2560] = { - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_RPAREN] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6598), - [anon_sym_STAR] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6600), - [anon_sym_PERCENT] = ACTIONS(6598), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6600), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6598), - [anon_sym_LT] = ACTIONS(6600), - [aux_sym_end_program_statement_token1] = ACTIONS(6600), - [anon_sym_EQ] = ACTIONS(6600), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6600), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6600), - [aux_sym_language_binding_token1] = ACTIONS(6600), - [aux_sym_procedure_attributes_token1] = ACTIONS(6600), - [aux_sym_procedure_attributes_token3] = ACTIONS(6600), - [aux_sym_use_statement_token2] = ACTIONS(6600), - [anon_sym_COLON_COLON] = ACTIONS(6598), - [anon_sym_EQ_GT] = ACTIONS(6598), - [aux_sym_implicit_statement_token4] = ACTIONS(6600), - [aux_sym_save_statement_token1] = ACTIONS(6600), - [aux_sym_private_statement_token1] = ACTIONS(6600), - [aux_sym_public_statement_token1] = ACTIONS(6600), - [aux_sym_derived_type_definition_token1] = ACTIONS(6600), - [aux_sym_abstract_specifier_token1] = ACTIONS(6600), - [aux_sym_procedure_attribute_token6] = ACTIONS(6600), - [aux_sym_variable_attributes_token1] = ACTIONS(6600), - [aux_sym_variable_attributes_token2] = ACTIONS(6600), - [aux_sym_variable_attributes_token3] = ACTIONS(6600), - [aux_sym_variable_attributes_token4] = ACTIONS(6600), - [aux_sym_variable_attributes_token5] = ACTIONS(6600), - [aux_sym__intrinsic_type_token1] = ACTIONS(6600), - [aux_sym__intrinsic_type_token3] = ACTIONS(6600), - [aux_sym__intrinsic_type_token4] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6600), - [aux_sym_type_qualifier_token1] = ACTIONS(6600), - [aux_sym_type_qualifier_token2] = ACTIONS(6600), - [aux_sym_stop_statement_token1] = ACTIONS(6600), - [aux_sym_stop_statement_token2] = ACTIONS(6600), - [anon_sym_GT_GT_GT] = ACTIONS(6598), - [aux_sym_keyword_statement_token2] = ACTIONS(6600), - [aux_sym_keyword_statement_token3] = ACTIONS(6600), - [aux_sym_data_statement_token1] = ACTIONS(6600), - [aux_sym__inline_if_statement_token1] = ACTIONS(6600), - [aux_sym_end_if_statement_token1] = ACTIONS(6600), - [aux_sym_elseif_clause_token2] = ACTIONS(6600), - [aux_sym_select_case_statement_token1] = ACTIONS(6600), - [aux_sym_block_construct_token1] = ACTIONS(6600), - [aux_sym_format_statement_token1] = ACTIONS(6600), - [aux_sym_inquire_statement_token1] = ACTIONS(6600), - [aux_sym_entry_statement_token1] = ACTIONS(6600), - [aux_sym_logical_expression_token1] = ACTIONS(6598), - [aux_sym_logical_expression_token2] = ACTIONS(6598), - [aux_sym_logical_expression_token3] = ACTIONS(6598), - [aux_sym_logical_expression_token4] = ACTIONS(6598), - [aux_sym_relational_expression_token1] = ACTIONS(6598), - [aux_sym_relational_expression_token2] = ACTIONS(6598), - [aux_sym_relational_expression_token3] = ACTIONS(6598), - [aux_sym_relational_expression_token4] = ACTIONS(6598), - [aux_sym_relational_expression_token5] = ACTIONS(6598), - [anon_sym_SLASH_EQ] = ACTIONS(6598), - [aux_sym_relational_expression_token6] = ACTIONS(6598), - [anon_sym_SLASH_SLASH] = ACTIONS(6598), - [anon_sym_STAR_STAR] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6600), - [anon_sym_SLASH_RPAREN] = ACTIONS(6598), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_RBRACK] = ACTIONS(6598), - [aux_sym_null_literal_token1] = ACTIONS(6600), - [aux_sym_coarray_statement_token1] = ACTIONS(6600), - [aux_sym_coarray_statement_token2] = ACTIONS(6600), - [aux_sym_coarray_statement_token6] = ACTIONS(6600), - [aux_sym_coarray_statement_token8] = ACTIONS(6600), - [aux_sym_coarray_statement_token11] = ACTIONS(6600), - [aux_sym_coarray_statement_token12] = ACTIONS(6600), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6600), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6600), - [aux_sym_identifier_token1] = ACTIONS(6600), + [2526] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2561] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), - }, - [2562] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), - }, - [2563] = { - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token2] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), - [sym_preproc_directive] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [2527] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), - [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), - [aux_sym_procedure_attributes_token3] = ACTIONS(2059), - [aux_sym_use_statement_token2] = ACTIONS(2059), - [aux_sym_implicit_statement_token4] = ACTIONS(2059), - [aux_sym_save_statement_token1] = ACTIONS(2059), - [aux_sym_private_statement_token1] = ACTIONS(2059), - [aux_sym_public_statement_token1] = ACTIONS(2059), - [aux_sym_derived_type_definition_token1] = ACTIONS(2059), - [aux_sym_procedure_attribute_token6] = ACTIONS(2059), - [aux_sym_variable_attributes_token2] = ACTIONS(2059), - [aux_sym_variable_attributes_token3] = ACTIONS(2059), - [aux_sym_variable_attributes_token5] = ACTIONS(2059), - [aux_sym__intrinsic_type_token1] = ACTIONS(2059), - [aux_sym__intrinsic_type_token3] = ACTIONS(2059), - [aux_sym__intrinsic_type_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), - [aux_sym_type_qualifier_token1] = ACTIONS(2059), - [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), - [aux_sym_stop_statement_token1] = ACTIONS(2059), - [aux_sym_stop_statement_token2] = ACTIONS(2059), - [aux_sym_subroutine_call_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token1] = ACTIONS(2059), - [aux_sym_keyword_statement_token2] = ACTIONS(2059), - [aux_sym_keyword_statement_token3] = ACTIONS(2059), - [aux_sym_keyword_statement_token4] = ACTIONS(2059), - [aux_sym_keyword_statement_token6] = ACTIONS(2059), - [aux_sym_keyword_statement_token7] = ACTIONS(2059), - [aux_sym_include_statement_token1] = ACTIONS(2059), - [aux_sym_data_statement_token1] = ACTIONS(2059), - [aux_sym_do_loop_statement_token1] = ACTIONS(2059), - [aux_sym__inline_if_statement_token1] = ACTIONS(2059), - [aux_sym_end_if_statement_token1] = ACTIONS(2059), - [aux_sym_elseif_clause_token2] = ACTIONS(2059), - [aux_sym__inline_where_statement_token1] = ACTIONS(2059), - [aux_sym__forall_control_expression_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token1] = ACTIONS(2059), - [aux_sym_select_case_statement_token3] = ACTIONS(2059), - [aux_sym_select_type_statement_token1] = ACTIONS(2059), - [aux_sym_select_rank_statement_token2] = ACTIONS(2059), - [aux_sym_block_construct_token1] = ACTIONS(2059), - [aux_sym_associate_statement_token1] = ACTIONS(2059), - [aux_sym_format_statement_token1] = ACTIONS(2059), - [aux_sym_print_statement_token1] = ACTIONS(2059), - [aux_sym_open_statement_token1] = ACTIONS(2059), - [aux_sym_close_statement_token1] = ACTIONS(2059), - [aux_sym_inquire_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token1] = ACTIONS(2059), - [aux_sym_file_position_statement_token2] = ACTIONS(2059), - [aux_sym_file_position_statement_token3] = ACTIONS(2059), - [aux_sym_file_position_statement_token4] = ACTIONS(2059), - [aux_sym_allocate_statement_token1] = ACTIONS(2059), - [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), - [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), - [aux_sym_null_literal_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_end_forall_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), }, - [2564] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2528] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_end_forall_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_end_forall_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2565] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), }, - [2566] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_end_forall_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [2529] = { + [anon_sym_COMMA] = ACTIONS(6568), + [anon_sym_RPAREN] = ACTIONS(6568), + [anon_sym_LPAREN2] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6568), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6568), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(6570), + [aux_sym_end_program_statement_token1] = ACTIONS(6570), + [anon_sym_EQ] = ACTIONS(6570), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6570), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6570), + [aux_sym_language_binding_token1] = ACTIONS(6570), + [aux_sym_procedure_attributes_token1] = ACTIONS(6570), + [aux_sym_procedure_attributes_token3] = ACTIONS(6570), + [aux_sym_use_statement_token2] = ACTIONS(6570), + [anon_sym_COLON_COLON] = ACTIONS(6568), + [anon_sym_EQ_GT] = ACTIONS(6568), + [aux_sym_implicit_statement_token4] = ACTIONS(6570), + [aux_sym_save_statement_token1] = ACTIONS(6570), + [aux_sym_private_statement_token1] = ACTIONS(6570), + [aux_sym_public_statement_token1] = ACTIONS(6570), + [aux_sym_derived_type_definition_token1] = ACTIONS(6570), + [aux_sym_abstract_specifier_token1] = ACTIONS(6570), + [aux_sym_procedure_attribute_token6] = ACTIONS(6570), + [aux_sym_variable_attributes_token1] = ACTIONS(6570), + [aux_sym_variable_attributes_token2] = ACTIONS(6570), + [aux_sym_variable_attributes_token3] = ACTIONS(6570), + [aux_sym_variable_attributes_token4] = ACTIONS(6570), + [aux_sym_variable_attributes_token5] = ACTIONS(6570), + [aux_sym__intrinsic_type_token1] = ACTIONS(6570), + [aux_sym__intrinsic_type_token3] = ACTIONS(6570), + [aux_sym__intrinsic_type_token4] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6570), + [aux_sym_type_qualifier_token1] = ACTIONS(6570), + [aux_sym_type_qualifier_token2] = ACTIONS(6570), + [aux_sym_stop_statement_token1] = ACTIONS(6570), + [aux_sym_stop_statement_token2] = ACTIONS(6570), + [anon_sym_GT_GT_GT] = ACTIONS(6568), + [aux_sym_keyword_statement_token2] = ACTIONS(6570), + [aux_sym_keyword_statement_token3] = ACTIONS(6570), + [aux_sym_data_statement_token1] = ACTIONS(6570), + [aux_sym__inline_if_statement_token1] = ACTIONS(6570), + [aux_sym_end_if_statement_token1] = ACTIONS(6570), + [aux_sym_elseif_clause_token2] = ACTIONS(6570), + [aux_sym_select_case_statement_token1] = ACTIONS(6570), + [aux_sym_block_construct_token1] = ACTIONS(6570), + [aux_sym_format_statement_token1] = ACTIONS(6570), + [aux_sym_inquire_statement_token1] = ACTIONS(6570), + [aux_sym_entry_statement_token1] = ACTIONS(6570), + [aux_sym_logical_expression_token1] = ACTIONS(6568), + [aux_sym_logical_expression_token2] = ACTIONS(6568), + [aux_sym_logical_expression_token3] = ACTIONS(6568), + [aux_sym_logical_expression_token4] = ACTIONS(6568), + [aux_sym_relational_expression_token1] = ACTIONS(6568), + [aux_sym_relational_expression_token2] = ACTIONS(6568), + [aux_sym_relational_expression_token3] = ACTIONS(6568), + [aux_sym_relational_expression_token4] = ACTIONS(6568), + [aux_sym_relational_expression_token5] = ACTIONS(6568), + [anon_sym_SLASH_EQ] = ACTIONS(6568), + [aux_sym_relational_expression_token6] = ACTIONS(6568), + [anon_sym_SLASH_SLASH] = ACTIONS(6568), + [anon_sym_STAR_STAR] = ACTIONS(6568), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_SLASH_RPAREN] = ACTIONS(6568), + [anon_sym_LBRACK] = ACTIONS(6568), + [anon_sym_RBRACK] = ACTIONS(6568), + [aux_sym_null_literal_token1] = ACTIONS(6570), + [aux_sym_coarray_statement_token1] = ACTIONS(6570), + [aux_sym_coarray_statement_token2] = ACTIONS(6570), + [aux_sym_coarray_statement_token6] = ACTIONS(6570), + [aux_sym_coarray_statement_token8] = ACTIONS(6570), + [aux_sym_coarray_statement_token11] = ACTIONS(6570), + [aux_sym_coarray_statement_token12] = ACTIONS(6570), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6570), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6570), + [aux_sym_identifier_token1] = ACTIONS(6570), + [sym_comment] = ACTIONS(21), }, - [2567] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token2] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [2530] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_end_forall_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), }, - [2568] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), + [2531] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_end_forall_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), }, - [2569] = { + [2532] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_end_forall_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), + }, + [2533] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), @@ -400017,12 +396489,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(5620), [aux_sym_data_statement_token1] = ACTIONS(5620), [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5620), [aux_sym__inline_if_statement_token1] = ACTIONS(5620), [aux_sym_end_if_statement_token1] = ACTIONS(5620), [aux_sym_elseif_clause_token2] = ACTIONS(5620), [aux_sym__inline_where_statement_token1] = ACTIONS(5620), [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_end_forall_statement_token1] = ACTIONS(5620), [aux_sym_select_case_statement_token1] = ACTIONS(5620), [aux_sym_select_case_statement_token3] = ACTIONS(5620), [aux_sym_select_type_statement_token1] = ACTIONS(5620), @@ -400063,595 +396535,1477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [2570] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_end_forall_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2534] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2571] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_end_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2535] = { + [aux_sym_preproc_include_token1] = ACTIONS(4353), + [aux_sym_preproc_def_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4353), + [sym_preproc_directive] = ACTIONS(4353), + [anon_sym_LPAREN2] = ACTIONS(4353), + [sym_preproc_comment] = ACTIONS(6572), + [anon_sym_PLUS] = ACTIONS(5578), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4353), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4353), + [aux_sym_procedure_attributes_token3] = ACTIONS(4353), + [aux_sym_use_statement_token2] = ACTIONS(4353), + [aux_sym_implicit_statement_token4] = ACTIONS(4353), + [aux_sym_save_statement_token1] = ACTIONS(4353), + [aux_sym_private_statement_token1] = ACTIONS(4353), + [aux_sym_public_statement_token1] = ACTIONS(4353), + [aux_sym_derived_type_definition_token1] = ACTIONS(4353), + [aux_sym_procedure_attribute_token6] = ACTIONS(4353), + [aux_sym_variable_attributes_token2] = ACTIONS(4353), + [aux_sym_variable_attributes_token3] = ACTIONS(4353), + [aux_sym_variable_attributes_token5] = ACTIONS(4353), + [aux_sym__intrinsic_type_token1] = ACTIONS(4353), + [aux_sym__intrinsic_type_token3] = ACTIONS(4353), + [aux_sym__intrinsic_type_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4353), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4353), + [aux_sym_type_qualifier_token1] = ACTIONS(4353), + [aux_sym_type_qualifier_token2] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5578), + [aux_sym_stop_statement_token1] = ACTIONS(4353), + [aux_sym_stop_statement_token2] = ACTIONS(4353), + [aux_sym_subroutine_call_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token1] = ACTIONS(4353), + [aux_sym_keyword_statement_token2] = ACTIONS(4353), + [aux_sym_keyword_statement_token3] = ACTIONS(4353), + [aux_sym_keyword_statement_token4] = ACTIONS(4353), + [aux_sym_keyword_statement_token6] = ACTIONS(4353), + [aux_sym_keyword_statement_token7] = ACTIONS(4353), + [aux_sym_include_statement_token1] = ACTIONS(4353), + [aux_sym_data_statement_token1] = ACTIONS(4353), + [aux_sym_do_loop_statement_token1] = ACTIONS(4353), + [aux_sym__inline_if_statement_token1] = ACTIONS(4353), + [aux_sym_end_if_statement_token1] = ACTIONS(4353), + [aux_sym_elseif_clause_token2] = ACTIONS(4353), + [aux_sym__inline_where_statement_token1] = ACTIONS(4353), + [aux_sym__forall_control_expression_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token1] = ACTIONS(4353), + [aux_sym_select_case_statement_token3] = ACTIONS(4353), + [aux_sym_select_type_statement_token1] = ACTIONS(4353), + [aux_sym_select_rank_statement_token2] = ACTIONS(4353), + [aux_sym_block_construct_token1] = ACTIONS(4353), + [aux_sym_associate_statement_token1] = ACTIONS(4353), + [aux_sym_format_statement_token1] = ACTIONS(4353), + [aux_sym_print_statement_token1] = ACTIONS(4353), + [aux_sym_open_statement_token1] = ACTIONS(4353), + [aux_sym_close_statement_token1] = ACTIONS(4353), + [aux_sym_inquire_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token1] = ACTIONS(4353), + [aux_sym_file_position_statement_token2] = ACTIONS(4353), + [aux_sym_file_position_statement_token3] = ACTIONS(4353), + [aux_sym_file_position_statement_token4] = ACTIONS(4353), + [aux_sym_allocate_statement_token1] = ACTIONS(4353), + [aux_sym_entry_statement_token1] = ACTIONS(4353), + [aux_sym_logical_expression_token5] = ACTIONS(5578), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LPAREN_SLASH] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(5578), + [aux_sym_boolean_literal_token1] = ACTIONS(5578), + [aux_sym_boolean_literal_token2] = ACTIONS(5578), + [aux_sym_null_literal_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_statement_token2] = ACTIONS(4353), + [aux_sym_coarray_statement_token6] = ACTIONS(4353), + [aux_sym_coarray_statement_token8] = ACTIONS(4353), + [aux_sym_coarray_statement_token11] = ACTIONS(4353), + [aux_sym_coarray_statement_token12] = ACTIONS(4353), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4353), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4353), + [aux_sym_identifier_token1] = ACTIONS(4353), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5578), + [sym__float_literal] = ACTIONS(5578), + [sym__boz_literal] = ACTIONS(5578), + [sym__string_literal] = ACTIONS(5578), + [sym__string_literal_kind] = ACTIONS(5578), }, - [2572] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [2536] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2573] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), + [2537] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_end_forall_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), }, - [2574] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [2538] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2575] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2539] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), + }, + [2540] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2541] = { + [anon_sym_COMMA] = ACTIONS(6574), + [anon_sym_RPAREN] = ACTIONS(6574), + [anon_sym_LPAREN2] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6574), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6574), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(6576), + [aux_sym_end_program_statement_token1] = ACTIONS(6576), + [anon_sym_EQ] = ACTIONS(6576), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6576), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6576), + [aux_sym_language_binding_token1] = ACTIONS(6576), + [aux_sym_procedure_attributes_token1] = ACTIONS(6576), + [aux_sym_procedure_attributes_token3] = ACTIONS(6576), + [aux_sym_use_statement_token2] = ACTIONS(6576), + [anon_sym_COLON_COLON] = ACTIONS(6574), + [anon_sym_EQ_GT] = ACTIONS(6574), + [aux_sym_implicit_statement_token4] = ACTIONS(6576), + [aux_sym_save_statement_token1] = ACTIONS(6576), + [aux_sym_private_statement_token1] = ACTIONS(6576), + [aux_sym_public_statement_token1] = ACTIONS(6576), + [aux_sym_derived_type_definition_token1] = ACTIONS(6576), + [aux_sym_abstract_specifier_token1] = ACTIONS(6576), + [aux_sym_procedure_attribute_token6] = ACTIONS(6576), + [aux_sym_variable_attributes_token1] = ACTIONS(6576), + [aux_sym_variable_attributes_token2] = ACTIONS(6576), + [aux_sym_variable_attributes_token3] = ACTIONS(6576), + [aux_sym_variable_attributes_token4] = ACTIONS(6576), + [aux_sym_variable_attributes_token5] = ACTIONS(6576), + [aux_sym__intrinsic_type_token1] = ACTIONS(6576), + [aux_sym__intrinsic_type_token3] = ACTIONS(6576), + [aux_sym__intrinsic_type_token4] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6576), + [aux_sym_type_qualifier_token1] = ACTIONS(6576), + [aux_sym_type_qualifier_token2] = ACTIONS(6576), + [aux_sym_stop_statement_token1] = ACTIONS(6576), + [aux_sym_stop_statement_token2] = ACTIONS(6576), + [anon_sym_GT_GT_GT] = ACTIONS(6574), + [aux_sym_keyword_statement_token2] = ACTIONS(6576), + [aux_sym_keyword_statement_token3] = ACTIONS(6576), + [aux_sym_data_statement_token1] = ACTIONS(6576), + [aux_sym__inline_if_statement_token1] = ACTIONS(6576), + [aux_sym_end_if_statement_token1] = ACTIONS(6576), + [aux_sym_elseif_clause_token2] = ACTIONS(6576), + [aux_sym_select_case_statement_token1] = ACTIONS(6576), + [aux_sym_block_construct_token1] = ACTIONS(6576), + [aux_sym_format_statement_token1] = ACTIONS(6576), + [aux_sym_inquire_statement_token1] = ACTIONS(6576), + [aux_sym_entry_statement_token1] = ACTIONS(6576), + [aux_sym_logical_expression_token1] = ACTIONS(6574), + [aux_sym_logical_expression_token2] = ACTIONS(6574), + [aux_sym_logical_expression_token3] = ACTIONS(6574), + [aux_sym_logical_expression_token4] = ACTIONS(6574), + [aux_sym_relational_expression_token1] = ACTIONS(6574), + [aux_sym_relational_expression_token2] = ACTIONS(6574), + [aux_sym_relational_expression_token3] = ACTIONS(6574), + [aux_sym_relational_expression_token4] = ACTIONS(6574), + [aux_sym_relational_expression_token5] = ACTIONS(6574), + [anon_sym_SLASH_EQ] = ACTIONS(6574), + [aux_sym_relational_expression_token6] = ACTIONS(6574), + [anon_sym_SLASH_SLASH] = ACTIONS(6574), + [anon_sym_STAR_STAR] = ACTIONS(6574), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_SLASH_RPAREN] = ACTIONS(6574), + [anon_sym_LBRACK] = ACTIONS(6574), + [anon_sym_RBRACK] = ACTIONS(6574), + [aux_sym_null_literal_token1] = ACTIONS(6576), + [aux_sym_coarray_statement_token1] = ACTIONS(6576), + [aux_sym_coarray_statement_token2] = ACTIONS(6576), + [aux_sym_coarray_statement_token6] = ACTIONS(6576), + [aux_sym_coarray_statement_token8] = ACTIONS(6576), + [aux_sym_coarray_statement_token11] = ACTIONS(6576), + [aux_sym_coarray_statement_token12] = ACTIONS(6576), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6576), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6576), + [aux_sym_identifier_token1] = ACTIONS(6576), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), }, - [2576] = { + [2542] = { + [anon_sym_COMMA] = ACTIONS(6578), + [anon_sym_RPAREN] = ACTIONS(6578), + [anon_sym_LPAREN2] = ACTIONS(6578), + [anon_sym_PLUS] = ACTIONS(6578), + [anon_sym_DASH] = ACTIONS(6578), + [anon_sym_STAR] = ACTIONS(6580), + [anon_sym_SLASH] = ACTIONS(6580), + [anon_sym_PERCENT] = ACTIONS(6578), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6578), + [anon_sym_GT] = ACTIONS(6580), + [anon_sym_GT_EQ] = ACTIONS(6578), + [anon_sym_LT_EQ] = ACTIONS(6578), + [anon_sym_LT] = ACTIONS(6580), + [aux_sym_end_program_statement_token1] = ACTIONS(6580), + [anon_sym_EQ] = ACTIONS(6580), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6580), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6580), + [aux_sym_language_binding_token1] = ACTIONS(6580), + [aux_sym_procedure_attributes_token1] = ACTIONS(6580), + [aux_sym_procedure_attributes_token3] = ACTIONS(6580), + [aux_sym_use_statement_token2] = ACTIONS(6580), + [anon_sym_COLON_COLON] = ACTIONS(6578), + [anon_sym_EQ_GT] = ACTIONS(6578), + [aux_sym_implicit_statement_token4] = ACTIONS(6580), + [aux_sym_save_statement_token1] = ACTIONS(6580), + [aux_sym_private_statement_token1] = ACTIONS(6580), + [aux_sym_public_statement_token1] = ACTIONS(6580), + [aux_sym_derived_type_definition_token1] = ACTIONS(6580), + [aux_sym_abstract_specifier_token1] = ACTIONS(6580), + [aux_sym_procedure_attribute_token6] = ACTIONS(6580), + [aux_sym_variable_attributes_token1] = ACTIONS(6580), + [aux_sym_variable_attributes_token2] = ACTIONS(6580), + [aux_sym_variable_attributes_token3] = ACTIONS(6580), + [aux_sym_variable_attributes_token4] = ACTIONS(6580), + [aux_sym_variable_attributes_token5] = ACTIONS(6580), + [aux_sym__intrinsic_type_token1] = ACTIONS(6580), + [aux_sym__intrinsic_type_token3] = ACTIONS(6580), + [aux_sym__intrinsic_type_token4] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6580), + [aux_sym_type_qualifier_token1] = ACTIONS(6580), + [aux_sym_type_qualifier_token2] = ACTIONS(6580), + [aux_sym_stop_statement_token1] = ACTIONS(6580), + [aux_sym_stop_statement_token2] = ACTIONS(6580), + [anon_sym_GT_GT_GT] = ACTIONS(6578), + [aux_sym_keyword_statement_token2] = ACTIONS(6580), + [aux_sym_keyword_statement_token3] = ACTIONS(6580), + [aux_sym_data_statement_token1] = ACTIONS(6580), + [aux_sym__inline_if_statement_token1] = ACTIONS(6580), + [aux_sym_end_if_statement_token1] = ACTIONS(6580), + [aux_sym_elseif_clause_token2] = ACTIONS(6580), + [aux_sym_select_case_statement_token1] = ACTIONS(6580), + [aux_sym_block_construct_token1] = ACTIONS(6580), + [aux_sym_format_statement_token1] = ACTIONS(6580), + [aux_sym_inquire_statement_token1] = ACTIONS(6580), + [aux_sym_entry_statement_token1] = ACTIONS(6580), + [aux_sym_logical_expression_token1] = ACTIONS(6578), + [aux_sym_logical_expression_token2] = ACTIONS(6578), + [aux_sym_logical_expression_token3] = ACTIONS(6578), + [aux_sym_logical_expression_token4] = ACTIONS(6578), + [aux_sym_relational_expression_token1] = ACTIONS(6578), + [aux_sym_relational_expression_token2] = ACTIONS(6578), + [aux_sym_relational_expression_token3] = ACTIONS(6578), + [aux_sym_relational_expression_token4] = ACTIONS(6578), + [aux_sym_relational_expression_token5] = ACTIONS(6578), + [anon_sym_SLASH_EQ] = ACTIONS(6578), + [aux_sym_relational_expression_token6] = ACTIONS(6578), + [anon_sym_SLASH_SLASH] = ACTIONS(6578), + [anon_sym_STAR_STAR] = ACTIONS(6578), + [anon_sym_DOT] = ACTIONS(6580), + [anon_sym_SLASH_RPAREN] = ACTIONS(6578), + [anon_sym_LBRACK] = ACTIONS(6578), + [anon_sym_RBRACK] = ACTIONS(6578), + [aux_sym_null_literal_token1] = ACTIONS(6580), + [aux_sym_coarray_statement_token1] = ACTIONS(6580), + [aux_sym_coarray_statement_token2] = ACTIONS(6580), + [aux_sym_coarray_statement_token6] = ACTIONS(6580), + [aux_sym_coarray_statement_token8] = ACTIONS(6580), + [aux_sym_coarray_statement_token11] = ACTIONS(6580), + [aux_sym_coarray_statement_token12] = ACTIONS(6580), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6580), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6580), + [aux_sym_identifier_token1] = ACTIONS(6580), + [sym_comment] = ACTIONS(21), + }, + [2543] = { + [anon_sym_COMMA] = ACTIONS(6582), + [anon_sym_RPAREN] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(6582), + [anon_sym_PLUS] = ACTIONS(6582), + [anon_sym_DASH] = ACTIONS(6582), + [anon_sym_STAR] = ACTIONS(6584), + [anon_sym_SLASH] = ACTIONS(6584), + [anon_sym_PERCENT] = ACTIONS(6582), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6582), + [anon_sym_GT] = ACTIONS(6584), + [anon_sym_GT_EQ] = ACTIONS(6582), + [anon_sym_LT_EQ] = ACTIONS(6582), + [anon_sym_LT] = ACTIONS(6584), + [aux_sym_end_program_statement_token1] = ACTIONS(6584), + [anon_sym_EQ] = ACTIONS(6584), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6584), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6584), + [aux_sym_language_binding_token1] = ACTIONS(6584), + [aux_sym_procedure_attributes_token1] = ACTIONS(6584), + [aux_sym_procedure_attributes_token3] = ACTIONS(6584), + [aux_sym_use_statement_token2] = ACTIONS(6584), + [anon_sym_COLON_COLON] = ACTIONS(6582), + [anon_sym_EQ_GT] = ACTIONS(6582), + [aux_sym_implicit_statement_token4] = ACTIONS(6584), + [aux_sym_save_statement_token1] = ACTIONS(6584), + [aux_sym_private_statement_token1] = ACTIONS(6584), + [aux_sym_public_statement_token1] = ACTIONS(6584), + [aux_sym_derived_type_definition_token1] = ACTIONS(6584), + [aux_sym_abstract_specifier_token1] = ACTIONS(6584), + [aux_sym_procedure_attribute_token6] = ACTIONS(6584), + [aux_sym_variable_attributes_token1] = ACTIONS(6584), + [aux_sym_variable_attributes_token2] = ACTIONS(6584), + [aux_sym_variable_attributes_token3] = ACTIONS(6584), + [aux_sym_variable_attributes_token4] = ACTIONS(6584), + [aux_sym_variable_attributes_token5] = ACTIONS(6584), + [aux_sym__intrinsic_type_token1] = ACTIONS(6584), + [aux_sym__intrinsic_type_token3] = ACTIONS(6584), + [aux_sym__intrinsic_type_token4] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6584), + [aux_sym_type_qualifier_token1] = ACTIONS(6584), + [aux_sym_type_qualifier_token2] = ACTIONS(6584), + [aux_sym_stop_statement_token1] = ACTIONS(6584), + [aux_sym_stop_statement_token2] = ACTIONS(6584), + [anon_sym_GT_GT_GT] = ACTIONS(6582), + [aux_sym_keyword_statement_token2] = ACTIONS(6584), + [aux_sym_keyword_statement_token3] = ACTIONS(6584), + [aux_sym_data_statement_token1] = ACTIONS(6584), + [aux_sym__inline_if_statement_token1] = ACTIONS(6584), + [aux_sym_end_if_statement_token1] = ACTIONS(6584), + [aux_sym_elseif_clause_token2] = ACTIONS(6584), + [aux_sym_select_case_statement_token1] = ACTIONS(6584), + [aux_sym_block_construct_token1] = ACTIONS(6584), + [aux_sym_format_statement_token1] = ACTIONS(6584), + [aux_sym_inquire_statement_token1] = ACTIONS(6584), + [aux_sym_entry_statement_token1] = ACTIONS(6584), + [aux_sym_logical_expression_token1] = ACTIONS(6582), + [aux_sym_logical_expression_token2] = ACTIONS(6582), + [aux_sym_logical_expression_token3] = ACTIONS(6582), + [aux_sym_logical_expression_token4] = ACTIONS(6582), + [aux_sym_relational_expression_token1] = ACTIONS(6582), + [aux_sym_relational_expression_token2] = ACTIONS(6582), + [aux_sym_relational_expression_token3] = ACTIONS(6582), + [aux_sym_relational_expression_token4] = ACTIONS(6582), + [aux_sym_relational_expression_token5] = ACTIONS(6582), + [anon_sym_SLASH_EQ] = ACTIONS(6582), + [aux_sym_relational_expression_token6] = ACTIONS(6582), + [anon_sym_SLASH_SLASH] = ACTIONS(6582), + [anon_sym_STAR_STAR] = ACTIONS(6582), + [anon_sym_DOT] = ACTIONS(6584), + [anon_sym_SLASH_RPAREN] = ACTIONS(6582), + [anon_sym_LBRACK] = ACTIONS(6582), + [anon_sym_RBRACK] = ACTIONS(6582), + [aux_sym_null_literal_token1] = ACTIONS(6584), + [aux_sym_coarray_statement_token1] = ACTIONS(6584), + [aux_sym_coarray_statement_token2] = ACTIONS(6584), + [aux_sym_coarray_statement_token6] = ACTIONS(6584), + [aux_sym_coarray_statement_token8] = ACTIONS(6584), + [aux_sym_coarray_statement_token11] = ACTIONS(6584), + [aux_sym_coarray_statement_token12] = ACTIONS(6584), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6584), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6584), + [aux_sym_identifier_token1] = ACTIONS(6584), + [sym_comment] = ACTIONS(21), + }, + [2544] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), + }, + [2545] = { + [aux_sym_preproc_include_token1] = ACTIONS(4357), + [aux_sym_preproc_def_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4357), + [sym_preproc_directive] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(4357), + [sym_preproc_comment] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4357), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4357), + [aux_sym_procedure_attributes_token3] = ACTIONS(4357), + [aux_sym_use_statement_token2] = ACTIONS(4357), + [aux_sym_implicit_statement_token4] = ACTIONS(4357), + [aux_sym_save_statement_token1] = ACTIONS(4357), + [aux_sym_private_statement_token1] = ACTIONS(4357), + [aux_sym_public_statement_token1] = ACTIONS(4357), + [aux_sym_derived_type_definition_token1] = ACTIONS(4357), + [aux_sym_procedure_attribute_token6] = ACTIONS(4357), + [aux_sym_variable_attributes_token2] = ACTIONS(4357), + [aux_sym_variable_attributes_token3] = ACTIONS(4357), + [aux_sym_variable_attributes_token5] = ACTIONS(4357), + [aux_sym__intrinsic_type_token1] = ACTIONS(4357), + [aux_sym__intrinsic_type_token3] = ACTIONS(4357), + [aux_sym__intrinsic_type_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4357), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4357), + [aux_sym_type_qualifier_token1] = ACTIONS(4357), + [aux_sym_type_qualifier_token2] = ACTIONS(4357), + [anon_sym_SEMI] = ACTIONS(5558), + [aux_sym_stop_statement_token1] = ACTIONS(4357), + [aux_sym_stop_statement_token2] = ACTIONS(4357), + [aux_sym_subroutine_call_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token1] = ACTIONS(4357), + [aux_sym_keyword_statement_token2] = ACTIONS(4357), + [aux_sym_keyword_statement_token3] = ACTIONS(4357), + [aux_sym_keyword_statement_token4] = ACTIONS(4357), + [aux_sym_keyword_statement_token6] = ACTIONS(4357), + [aux_sym_keyword_statement_token7] = ACTIONS(4357), + [aux_sym_include_statement_token1] = ACTIONS(4357), + [aux_sym_data_statement_token1] = ACTIONS(4357), + [aux_sym_do_loop_statement_token1] = ACTIONS(4357), + [aux_sym__inline_if_statement_token1] = ACTIONS(4357), + [aux_sym_end_if_statement_token1] = ACTIONS(4357), + [aux_sym_elseif_clause_token2] = ACTIONS(4357), + [aux_sym__inline_where_statement_token1] = ACTIONS(4357), + [aux_sym__forall_control_expression_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token1] = ACTIONS(4357), + [aux_sym_select_case_statement_token3] = ACTIONS(4357), + [aux_sym_select_type_statement_token1] = ACTIONS(4357), + [aux_sym_select_rank_statement_token2] = ACTIONS(4357), + [aux_sym_block_construct_token1] = ACTIONS(4357), + [aux_sym_associate_statement_token1] = ACTIONS(4357), + [aux_sym_format_statement_token1] = ACTIONS(4357), + [aux_sym_print_statement_token1] = ACTIONS(4357), + [aux_sym_open_statement_token1] = ACTIONS(4357), + [aux_sym_close_statement_token1] = ACTIONS(4357), + [aux_sym_inquire_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token1] = ACTIONS(4357), + [aux_sym_file_position_statement_token2] = ACTIONS(4357), + [aux_sym_file_position_statement_token3] = ACTIONS(4357), + [aux_sym_file_position_statement_token4] = ACTIONS(4357), + [aux_sym_allocate_statement_token1] = ACTIONS(4357), + [aux_sym_entry_statement_token1] = ACTIONS(4357), + [aux_sym_logical_expression_token5] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LPAREN_SLASH] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5558), + [aux_sym_boolean_literal_token2] = ACTIONS(5558), + [aux_sym_null_literal_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_statement_token2] = ACTIONS(4357), + [aux_sym_coarray_statement_token6] = ACTIONS(4357), + [aux_sym_coarray_statement_token8] = ACTIONS(4357), + [aux_sym_coarray_statement_token11] = ACTIONS(4357), + [aux_sym_coarray_statement_token12] = ACTIONS(4357), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4357), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4357), + [aux_sym_identifier_token1] = ACTIONS(4357), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5558), + [sym__float_literal] = ACTIONS(5558), + [sym__boz_literal] = ACTIONS(5558), + [sym__string_literal] = ACTIONS(5558), + [sym__string_literal_kind] = ACTIONS(5558), + }, + [2546] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2547] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2548] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [sym_preproc_comment] = ACTIONS(6588), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [2549] = { [aux_sym_preproc_include_token1] = ACTIONS(5640), [aux_sym_preproc_def_token1] = ACTIONS(5640), [aux_sym_preproc_if_token1] = ACTIONS(5640), @@ -400703,12 +398057,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_statement_token1] = ACTIONS(5640), [aux_sym_data_statement_token1] = ACTIONS(5640), [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5640), [aux_sym__inline_if_statement_token1] = ACTIONS(5640), [aux_sym_end_if_statement_token1] = ACTIONS(5640), [aux_sym_elseif_clause_token2] = ACTIONS(5640), [aux_sym__inline_where_statement_token1] = ACTIONS(5640), [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_end_forall_statement_token1] = ACTIONS(5640), [aux_sym_select_case_statement_token1] = ACTIONS(5640), [aux_sym_select_case_statement_token3] = ACTIONS(5640), [aux_sym_select_type_statement_token1] = ACTIONS(5640), @@ -400749,685 +398103,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5642), [sym__string_literal_kind] = ACTIONS(5642), }, - [2577] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_end_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [2578] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [2550] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), }, - [2579] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token2] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [2551] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_end_forall_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2580] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [2552] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [sym_preproc_comment] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2581] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [2553] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [2582] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2554] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [sym_preproc_comment] = ACTIONS(6592), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2583] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), + [2555] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), [anon_sym_PLUS] = ACTIONS(5586), [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_end_forall_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4361), [anon_sym_LPAREN_SLASH] = ACTIONS(5586), [anon_sym_LBRACK] = ACTIONS(5586), [aux_sym_boolean_literal_token1] = ACTIONS(5586), [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5586), [sym__float_literal] = ACTIONS(5586), @@ -401435,489 +398691,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5586), [sym__string_literal_kind] = ACTIONS(5586), }, - [2584] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), - }, - [2585] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), + [2556] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2586] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), + [2557] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), }, - [2587] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2558] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [sym_preproc_comment] = ACTIONS(6594), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2588] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), + [2559] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [sym_preproc_comment] = ACTIONS(6596), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -401925,293 +399083,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [2589] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token2] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2560] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2590] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2561] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), }, - [2591] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), + [2562] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_end_forall_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2563] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), + }, + [2564] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2565] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), [anon_sym_PLUS] = ACTIONS(5510), [anon_sym_DASH] = ACTIONS(5510), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_end_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4935), [anon_sym_LPAREN_SLASH] = ACTIONS(5510), [anon_sym_LBRACK] = ACTIONS(5510), [aux_sym_boolean_literal_token1] = ACTIONS(5510), [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5510), [sym__float_literal] = ACTIONS(5510), @@ -402219,889 +399671,1183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5510), [sym__string_literal_kind] = ACTIONS(5510), }, - [2592] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [2566] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [sym_preproc_comment] = ACTIONS(6598), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2593] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token2] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), + [2567] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), }, - [2594] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [2568] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), }, - [2595] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), + [2569] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), }, - [2596] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), + [2570] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), }, - [2597] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_end_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2571] = { + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6600), + [anon_sym_PLUS] = ACTIONS(6600), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6600), + [anon_sym_LT] = ACTIONS(6602), + [aux_sym_end_program_statement_token1] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6602), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6602), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6602), + [aux_sym_language_binding_token1] = ACTIONS(6602), + [aux_sym_procedure_attributes_token1] = ACTIONS(6602), + [aux_sym_procedure_attributes_token3] = ACTIONS(6602), + [aux_sym_use_statement_token2] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6600), + [anon_sym_EQ_GT] = ACTIONS(6600), + [aux_sym_implicit_statement_token4] = ACTIONS(6602), + [aux_sym_save_statement_token1] = ACTIONS(6602), + [aux_sym_private_statement_token1] = ACTIONS(6602), + [aux_sym_public_statement_token1] = ACTIONS(6602), + [aux_sym_derived_type_definition_token1] = ACTIONS(6602), + [aux_sym_abstract_specifier_token1] = ACTIONS(6602), + [aux_sym_procedure_attribute_token6] = ACTIONS(6602), + [aux_sym_variable_attributes_token1] = ACTIONS(6602), + [aux_sym_variable_attributes_token2] = ACTIONS(6602), + [aux_sym_variable_attributes_token3] = ACTIONS(6602), + [aux_sym_variable_attributes_token4] = ACTIONS(6602), + [aux_sym_variable_attributes_token5] = ACTIONS(6602), + [aux_sym__intrinsic_type_token1] = ACTIONS(6602), + [aux_sym__intrinsic_type_token3] = ACTIONS(6602), + [aux_sym__intrinsic_type_token4] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6602), + [aux_sym_type_qualifier_token1] = ACTIONS(6602), + [aux_sym_type_qualifier_token2] = ACTIONS(6602), + [aux_sym_stop_statement_token1] = ACTIONS(6602), + [aux_sym_stop_statement_token2] = ACTIONS(6602), + [anon_sym_GT_GT_GT] = ACTIONS(6600), + [aux_sym_keyword_statement_token2] = ACTIONS(6602), + [aux_sym_keyword_statement_token3] = ACTIONS(6602), + [aux_sym_data_statement_token1] = ACTIONS(6602), + [aux_sym__inline_if_statement_token1] = ACTIONS(6602), + [aux_sym_end_if_statement_token1] = ACTIONS(6602), + [aux_sym_elseif_clause_token2] = ACTIONS(6602), + [aux_sym_select_case_statement_token1] = ACTIONS(6602), + [aux_sym_block_construct_token1] = ACTIONS(6602), + [aux_sym_format_statement_token1] = ACTIONS(6602), + [aux_sym_inquire_statement_token1] = ACTIONS(6602), + [aux_sym_entry_statement_token1] = ACTIONS(6602), + [aux_sym_logical_expression_token1] = ACTIONS(6600), + [aux_sym_logical_expression_token2] = ACTIONS(6600), + [aux_sym_logical_expression_token3] = ACTIONS(6600), + [aux_sym_logical_expression_token4] = ACTIONS(6600), + [aux_sym_relational_expression_token1] = ACTIONS(6600), + [aux_sym_relational_expression_token2] = ACTIONS(6600), + [aux_sym_relational_expression_token3] = ACTIONS(6600), + [aux_sym_relational_expression_token4] = ACTIONS(6600), + [aux_sym_relational_expression_token5] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [aux_sym_relational_expression_token6] = ACTIONS(6600), + [anon_sym_SLASH_SLASH] = ACTIONS(6600), + [anon_sym_STAR_STAR] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_SLASH_RPAREN] = ACTIONS(6600), + [anon_sym_LBRACK] = ACTIONS(6600), + [anon_sym_RBRACK] = ACTIONS(6600), + [aux_sym_null_literal_token1] = ACTIONS(6602), + [aux_sym_coarray_statement_token1] = ACTIONS(6602), + [aux_sym_coarray_statement_token2] = ACTIONS(6602), + [aux_sym_coarray_statement_token6] = ACTIONS(6602), + [aux_sym_coarray_statement_token8] = ACTIONS(6602), + [aux_sym_coarray_statement_token11] = ACTIONS(6602), + [aux_sym_coarray_statement_token12] = ACTIONS(6602), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6602), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6602), + [aux_sym_identifier_token1] = ACTIONS(6602), + [sym_comment] = ACTIONS(21), }, - [2598] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [2572] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_end_forall_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2599] = { - [aux_sym_preproc_include_token1] = ACTIONS(5620), - [aux_sym_preproc_def_token1] = ACTIONS(5620), - [aux_sym_preproc_if_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), - [sym_preproc_directive] = ACTIONS(5620), - [anon_sym_LPAREN2] = ACTIONS(5620), - [anon_sym_PLUS] = ACTIONS(5622), - [anon_sym_DASH] = ACTIONS(5622), + [2573] = { + [aux_sym_preproc_include_token1] = ACTIONS(2059), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), - [aux_sym_procedure_attributes_token3] = ACTIONS(5620), - [aux_sym_use_statement_token2] = ACTIONS(5620), - [aux_sym_implicit_statement_token4] = ACTIONS(5620), - [aux_sym_save_statement_token1] = ACTIONS(5620), - [aux_sym_private_statement_token1] = ACTIONS(5620), - [aux_sym_public_statement_token1] = ACTIONS(5620), - [aux_sym_derived_type_definition_token1] = ACTIONS(5620), - [aux_sym_procedure_attribute_token6] = ACTIONS(5620), - [aux_sym_variable_attributes_token2] = ACTIONS(5620), - [aux_sym_variable_attributes_token3] = ACTIONS(5620), - [aux_sym_variable_attributes_token5] = ACTIONS(5620), - [aux_sym__intrinsic_type_token1] = ACTIONS(5620), - [aux_sym__intrinsic_type_token3] = ACTIONS(5620), - [aux_sym__intrinsic_type_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), - [aux_sym_type_qualifier_token1] = ACTIONS(5620), - [aux_sym_type_qualifier_token2] = ACTIONS(5620), - [anon_sym_SEMI] = ACTIONS(5622), - [aux_sym_stop_statement_token1] = ACTIONS(5620), - [aux_sym_stop_statement_token2] = ACTIONS(5620), - [aux_sym_subroutine_call_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token1] = ACTIONS(5620), - [aux_sym_keyword_statement_token2] = ACTIONS(5620), - [aux_sym_keyword_statement_token3] = ACTIONS(5620), - [aux_sym_keyword_statement_token4] = ACTIONS(5620), - [aux_sym_keyword_statement_token6] = ACTIONS(5620), - [aux_sym_keyword_statement_token7] = ACTIONS(5620), - [aux_sym_include_statement_token1] = ACTIONS(5620), - [aux_sym_data_statement_token1] = ACTIONS(5620), - [aux_sym_do_loop_statement_token1] = ACTIONS(5620), - [aux_sym__inline_if_statement_token1] = ACTIONS(5620), - [aux_sym_end_if_statement_token1] = ACTIONS(5620), - [aux_sym_elseif_clause_token2] = ACTIONS(5620), - [aux_sym__inline_where_statement_token1] = ACTIONS(5620), - [aux_sym__forall_control_expression_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token1] = ACTIONS(5620), - [aux_sym_select_case_statement_token3] = ACTIONS(5620), - [aux_sym_select_type_statement_token1] = ACTIONS(5620), - [aux_sym_select_rank_statement_token2] = ACTIONS(5620), - [aux_sym_block_construct_token1] = ACTIONS(5620), - [aux_sym_associate_statement_token1] = ACTIONS(5620), - [aux_sym_format_statement_token1] = ACTIONS(5620), - [aux_sym_print_statement_token1] = ACTIONS(5620), - [aux_sym_open_statement_token1] = ACTIONS(5620), - [aux_sym_close_statement_token1] = ACTIONS(5620), - [aux_sym_inquire_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token1] = ACTIONS(5620), - [aux_sym_file_position_statement_token2] = ACTIONS(5620), - [aux_sym_file_position_statement_token3] = ACTIONS(5620), - [aux_sym_file_position_statement_token4] = ACTIONS(5620), - [aux_sym_allocate_statement_token1] = ACTIONS(5620), - [aux_sym_entry_statement_token1] = ACTIONS(5620), - [aux_sym_logical_expression_token5] = ACTIONS(5622), - [anon_sym_DOT] = ACTIONS(5620), - [anon_sym_LPAREN_SLASH] = ACTIONS(5622), - [anon_sym_LBRACK] = ACTIONS(5622), - [aux_sym_boolean_literal_token1] = ACTIONS(5622), - [aux_sym_boolean_literal_token2] = ACTIONS(5622), - [aux_sym_null_literal_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_statement_token2] = ACTIONS(5620), - [aux_sym_coarray_statement_token6] = ACTIONS(5620), - [aux_sym_coarray_statement_token8] = ACTIONS(5620), - [aux_sym_coarray_statement_token11] = ACTIONS(5620), - [aux_sym_coarray_statement_token12] = ACTIONS(5620), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5620), - [aux_sym_identifier_token1] = ACTIONS(5620), + [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), + [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2059), + [aux_sym_save_statement_token1] = ACTIONS(2059), + [aux_sym_private_statement_token1] = ACTIONS(2059), + [aux_sym_public_statement_token1] = ACTIONS(2059), + [aux_sym_derived_type_definition_token1] = ACTIONS(2059), + [aux_sym_procedure_attribute_token6] = ACTIONS(2059), + [aux_sym_variable_attributes_token2] = ACTIONS(2059), + [aux_sym_variable_attributes_token3] = ACTIONS(2059), + [aux_sym_variable_attributes_token5] = ACTIONS(2059), + [aux_sym__intrinsic_type_token1] = ACTIONS(2059), + [aux_sym__intrinsic_type_token3] = ACTIONS(2059), + [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), + [aux_sym_type_qualifier_token1] = ACTIONS(2059), + [aux_sym_type_qualifier_token2] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(5698), + [aux_sym_stop_statement_token1] = ACTIONS(2059), + [aux_sym_stop_statement_token2] = ACTIONS(2059), + [aux_sym_subroutine_call_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token2] = ACTIONS(2059), + [aux_sym_keyword_statement_token3] = ACTIONS(2059), + [aux_sym_keyword_statement_token4] = ACTIONS(2059), + [aux_sym_keyword_statement_token6] = ACTIONS(2059), + [aux_sym_keyword_statement_token7] = ACTIONS(2059), + [aux_sym_include_statement_token1] = ACTIONS(2059), + [aux_sym_data_statement_token1] = ACTIONS(2059), + [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2059), + [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2059), + [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token3] = ACTIONS(2059), + [aux_sym_select_type_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5622), - [sym__float_literal] = ACTIONS(5622), - [sym__boz_literal] = ACTIONS(5622), - [sym__string_literal] = ACTIONS(5622), - [sym__string_literal_kind] = ACTIONS(5622), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2600] = { - [anon_sym_COMMA] = ACTIONS(6602), - [anon_sym_RPAREN] = ACTIONS(6602), - [anon_sym_LPAREN2] = ACTIONS(6602), - [anon_sym_PLUS] = ACTIONS(6602), - [anon_sym_DASH] = ACTIONS(6602), - [anon_sym_STAR] = ACTIONS(6604), - [anon_sym_SLASH] = ACTIONS(6604), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6602), - [anon_sym_GT] = ACTIONS(6604), - [anon_sym_GT_EQ] = ACTIONS(6602), - [anon_sym_LT_EQ] = ACTIONS(6602), - [anon_sym_LT] = ACTIONS(6604), - [aux_sym_end_program_statement_token1] = ACTIONS(6604), - [anon_sym_EQ] = ACTIONS(6604), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6604), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6604), - [aux_sym_language_binding_token1] = ACTIONS(6604), - [aux_sym_procedure_attributes_token1] = ACTIONS(6604), - [aux_sym_procedure_attributes_token3] = ACTIONS(6604), - [aux_sym_use_statement_token2] = ACTIONS(6604), - [anon_sym_COLON_COLON] = ACTIONS(6602), - [anon_sym_EQ_GT] = ACTIONS(6602), - [aux_sym_implicit_statement_token4] = ACTIONS(6604), - [aux_sym_save_statement_token1] = ACTIONS(6604), - [aux_sym_private_statement_token1] = ACTIONS(6604), - [aux_sym_public_statement_token1] = ACTIONS(6604), - [aux_sym_derived_type_definition_token1] = ACTIONS(6604), - [aux_sym_abstract_specifier_token1] = ACTIONS(6604), - [aux_sym_procedure_attribute_token6] = ACTIONS(6604), - [aux_sym_variable_attributes_token1] = ACTIONS(6604), - [aux_sym_variable_attributes_token2] = ACTIONS(6604), - [aux_sym_variable_attributes_token3] = ACTIONS(6604), - [aux_sym_variable_attributes_token4] = ACTIONS(6604), - [aux_sym_variable_attributes_token5] = ACTIONS(6604), - [aux_sym__intrinsic_type_token1] = ACTIONS(6604), - [aux_sym__intrinsic_type_token3] = ACTIONS(6604), - [aux_sym__intrinsic_type_token4] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6604), - [aux_sym_type_qualifier_token1] = ACTIONS(6604), - [aux_sym_type_qualifier_token2] = ACTIONS(6604), - [aux_sym_stop_statement_token1] = ACTIONS(6604), - [aux_sym_stop_statement_token2] = ACTIONS(6604), - [anon_sym_GT_GT_GT] = ACTIONS(6602), - [aux_sym_keyword_statement_token2] = ACTIONS(6604), - [aux_sym_keyword_statement_token3] = ACTIONS(6604), - [aux_sym_data_statement_token1] = ACTIONS(6604), - [aux_sym__inline_if_statement_token1] = ACTIONS(6604), - [aux_sym_end_if_statement_token1] = ACTIONS(6604), - [aux_sym_elseif_clause_token2] = ACTIONS(6604), - [aux_sym_select_case_statement_token1] = ACTIONS(6604), - [aux_sym_block_construct_token1] = ACTIONS(6604), - [aux_sym_format_statement_token1] = ACTIONS(6604), - [aux_sym_inquire_statement_token1] = ACTIONS(6604), - [aux_sym_entry_statement_token1] = ACTIONS(6604), - [aux_sym_logical_expression_token1] = ACTIONS(6602), - [aux_sym_logical_expression_token2] = ACTIONS(6602), - [aux_sym_logical_expression_token3] = ACTIONS(6602), - [aux_sym_logical_expression_token4] = ACTIONS(6602), - [aux_sym_relational_expression_token1] = ACTIONS(6602), - [aux_sym_relational_expression_token2] = ACTIONS(6602), - [aux_sym_relational_expression_token3] = ACTIONS(6602), - [aux_sym_relational_expression_token4] = ACTIONS(6602), - [aux_sym_relational_expression_token5] = ACTIONS(6602), - [anon_sym_SLASH_EQ] = ACTIONS(6602), - [aux_sym_relational_expression_token6] = ACTIONS(6602), - [anon_sym_SLASH_SLASH] = ACTIONS(6602), - [anon_sym_STAR_STAR] = ACTIONS(6602), - [anon_sym_DOT] = ACTIONS(6604), - [anon_sym_SLASH_RPAREN] = ACTIONS(6602), - [anon_sym_LBRACK] = ACTIONS(6602), - [anon_sym_RBRACK] = ACTIONS(6602), - [aux_sym_null_literal_token1] = ACTIONS(6604), - [aux_sym_coarray_statement_token1] = ACTIONS(6604), - [aux_sym_coarray_statement_token2] = ACTIONS(6604), - [aux_sym_coarray_statement_token6] = ACTIONS(6604), - [aux_sym_coarray_statement_token8] = ACTIONS(6604), - [aux_sym_coarray_statement_token11] = ACTIONS(6604), - [aux_sym_coarray_statement_token12] = ACTIONS(6604), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6604), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6604), - [aux_sym_identifier_token1] = ACTIONS(6604), - [sym_comment] = ACTIONS(21), + [2574] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), }, - [2601] = { + [2575] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2576] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_end_forall_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2577] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2578] = { [aux_sym_preproc_include_token1] = ACTIONS(5640), [aux_sym_preproc_def_token1] = ACTIONS(5640), [aux_sym_preproc_if_token1] = ACTIONS(5640), @@ -403163,7 +400909,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(5640), [aux_sym_select_rank_statement_token2] = ACTIONS(5640), [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_end_block_construct_statement_token1] = ACTIONS(5640), [aux_sym_associate_statement_token1] = ACTIONS(5640), [aux_sym_format_statement_token1] = ACTIONS(5640), [aux_sym_print_statement_token1] = ACTIONS(5640), @@ -403191,6 +400936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(5640), [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5640), [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5642), @@ -403199,595 +400945,693 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5642), [sym__string_literal_kind] = ACTIONS(5642), }, - [2602] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), + [2579] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), - [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), - [anon_sym_LPAREN_SLASH] = ACTIONS(5634), - [anon_sym_LBRACK] = ACTIONS(5634), - [aux_sym_boolean_literal_token1] = ACTIONS(5634), - [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5634), - [sym__float_literal] = ACTIONS(5634), - [sym__boz_literal] = ACTIONS(5634), - [sym__string_literal] = ACTIONS(5634), - [sym__string_literal_kind] = ACTIONS(5634), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2603] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), + [2580] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_end_forall_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2581] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [2582] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2604] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym_end_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2583] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), }, - [2605] = { - [anon_sym_COMMA] = ACTIONS(6606), - [anon_sym_RPAREN] = ACTIONS(6606), - [anon_sym_LPAREN2] = ACTIONS(6606), - [anon_sym_PLUS] = ACTIONS(6606), - [anon_sym_DASH] = ACTIONS(6606), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6606), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_LT] = ACTIONS(6608), - [aux_sym_end_program_statement_token1] = ACTIONS(6608), - [anon_sym_EQ] = ACTIONS(6608), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6608), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6608), - [aux_sym_language_binding_token1] = ACTIONS(6608), - [aux_sym_procedure_attributes_token1] = ACTIONS(6608), - [aux_sym_procedure_attributes_token3] = ACTIONS(6608), - [aux_sym_use_statement_token2] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6606), - [anon_sym_EQ_GT] = ACTIONS(6606), - [aux_sym_implicit_statement_token4] = ACTIONS(6608), - [aux_sym_save_statement_token1] = ACTIONS(6608), - [aux_sym_private_statement_token1] = ACTIONS(6608), - [aux_sym_public_statement_token1] = ACTIONS(6608), - [aux_sym_derived_type_definition_token1] = ACTIONS(6608), - [aux_sym_abstract_specifier_token1] = ACTIONS(6608), - [aux_sym_procedure_attribute_token6] = ACTIONS(6608), - [aux_sym_variable_attributes_token1] = ACTIONS(6608), - [aux_sym_variable_attributes_token2] = ACTIONS(6608), - [aux_sym_variable_attributes_token3] = ACTIONS(6608), - [aux_sym_variable_attributes_token4] = ACTIONS(6608), - [aux_sym_variable_attributes_token5] = ACTIONS(6608), - [aux_sym__intrinsic_type_token1] = ACTIONS(6608), - [aux_sym__intrinsic_type_token3] = ACTIONS(6608), - [aux_sym__intrinsic_type_token4] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6608), - [aux_sym_type_qualifier_token1] = ACTIONS(6608), - [aux_sym_type_qualifier_token2] = ACTIONS(6608), - [aux_sym_stop_statement_token1] = ACTIONS(6608), - [aux_sym_stop_statement_token2] = ACTIONS(6608), - [anon_sym_GT_GT_GT] = ACTIONS(6606), - [aux_sym_keyword_statement_token2] = ACTIONS(6608), - [aux_sym_keyword_statement_token3] = ACTIONS(6608), - [aux_sym_data_statement_token1] = ACTIONS(6608), - [aux_sym__inline_if_statement_token1] = ACTIONS(6608), - [aux_sym_end_if_statement_token1] = ACTIONS(6608), - [aux_sym_elseif_clause_token2] = ACTIONS(6608), - [aux_sym_select_case_statement_token1] = ACTIONS(6608), - [aux_sym_block_construct_token1] = ACTIONS(6608), - [aux_sym_format_statement_token1] = ACTIONS(6608), - [aux_sym_inquire_statement_token1] = ACTIONS(6608), - [aux_sym_entry_statement_token1] = ACTIONS(6608), - [aux_sym_logical_expression_token1] = ACTIONS(6606), - [aux_sym_logical_expression_token2] = ACTIONS(6606), - [aux_sym_logical_expression_token3] = ACTIONS(6606), - [aux_sym_logical_expression_token4] = ACTIONS(6606), - [aux_sym_relational_expression_token1] = ACTIONS(6606), - [aux_sym_relational_expression_token2] = ACTIONS(6606), - [aux_sym_relational_expression_token3] = ACTIONS(6606), - [aux_sym_relational_expression_token4] = ACTIONS(6606), - [aux_sym_relational_expression_token5] = ACTIONS(6606), - [anon_sym_SLASH_EQ] = ACTIONS(6606), - [aux_sym_relational_expression_token6] = ACTIONS(6606), - [anon_sym_SLASH_SLASH] = ACTIONS(6606), - [anon_sym_STAR_STAR] = ACTIONS(6606), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_SLASH_RPAREN] = ACTIONS(6606), - [anon_sym_LBRACK] = ACTIONS(6606), - [anon_sym_RBRACK] = ACTIONS(6606), - [aux_sym_null_literal_token1] = ACTIONS(6608), - [aux_sym_coarray_statement_token1] = ACTIONS(6608), - [aux_sym_coarray_statement_token2] = ACTIONS(6608), - [aux_sym_coarray_statement_token6] = ACTIONS(6608), - [aux_sym_coarray_statement_token8] = ACTIONS(6608), - [aux_sym_coarray_statement_token11] = ACTIONS(6608), - [aux_sym_coarray_statement_token12] = ACTIONS(6608), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6608), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6608), - [aux_sym_identifier_token1] = ACTIONS(6608), + [2584] = { + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_PLUS] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6604), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6604), + [anon_sym_LT] = ACTIONS(6606), + [aux_sym_end_program_statement_token1] = ACTIONS(6606), + [anon_sym_EQ] = ACTIONS(6606), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6606), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6606), + [aux_sym_language_binding_token1] = ACTIONS(6606), + [aux_sym_procedure_attributes_token1] = ACTIONS(6606), + [aux_sym_procedure_attributes_token3] = ACTIONS(6606), + [aux_sym_use_statement_token2] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_EQ_GT] = ACTIONS(6604), + [aux_sym_implicit_statement_token4] = ACTIONS(6606), + [aux_sym_save_statement_token1] = ACTIONS(6606), + [aux_sym_private_statement_token1] = ACTIONS(6606), + [aux_sym_public_statement_token1] = ACTIONS(6606), + [aux_sym_derived_type_definition_token1] = ACTIONS(6606), + [aux_sym_abstract_specifier_token1] = ACTIONS(6606), + [aux_sym_procedure_attribute_token6] = ACTIONS(6606), + [aux_sym_variable_attributes_token1] = ACTIONS(6606), + [aux_sym_variable_attributes_token2] = ACTIONS(6606), + [aux_sym_variable_attributes_token3] = ACTIONS(6606), + [aux_sym_variable_attributes_token4] = ACTIONS(6606), + [aux_sym_variable_attributes_token5] = ACTIONS(6606), + [aux_sym__intrinsic_type_token1] = ACTIONS(6606), + [aux_sym__intrinsic_type_token3] = ACTIONS(6606), + [aux_sym__intrinsic_type_token4] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6606), + [aux_sym_type_qualifier_token1] = ACTIONS(6606), + [aux_sym_type_qualifier_token2] = ACTIONS(6606), + [aux_sym_stop_statement_token1] = ACTIONS(6606), + [aux_sym_stop_statement_token2] = ACTIONS(6606), + [anon_sym_GT_GT_GT] = ACTIONS(6604), + [aux_sym_keyword_statement_token2] = ACTIONS(6606), + [aux_sym_keyword_statement_token3] = ACTIONS(6606), + [aux_sym_data_statement_token1] = ACTIONS(6606), + [aux_sym__inline_if_statement_token1] = ACTIONS(6606), + [aux_sym_end_if_statement_token1] = ACTIONS(6606), + [aux_sym_elseif_clause_token2] = ACTIONS(6606), + [aux_sym_select_case_statement_token1] = ACTIONS(6606), + [aux_sym_block_construct_token1] = ACTIONS(6606), + [aux_sym_format_statement_token1] = ACTIONS(6606), + [aux_sym_inquire_statement_token1] = ACTIONS(6606), + [aux_sym_entry_statement_token1] = ACTIONS(6606), + [aux_sym_logical_expression_token1] = ACTIONS(6604), + [aux_sym_logical_expression_token2] = ACTIONS(6604), + [aux_sym_logical_expression_token3] = ACTIONS(6604), + [aux_sym_logical_expression_token4] = ACTIONS(6604), + [aux_sym_relational_expression_token1] = ACTIONS(6604), + [aux_sym_relational_expression_token2] = ACTIONS(6604), + [aux_sym_relational_expression_token3] = ACTIONS(6604), + [aux_sym_relational_expression_token4] = ACTIONS(6604), + [aux_sym_relational_expression_token5] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [aux_sym_relational_expression_token6] = ACTIONS(6604), + [anon_sym_SLASH_SLASH] = ACTIONS(6604), + [anon_sym_STAR_STAR] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_SLASH_RPAREN] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6604), + [anon_sym_RBRACK] = ACTIONS(6604), + [aux_sym_null_literal_token1] = ACTIONS(6606), + [aux_sym_coarray_statement_token1] = ACTIONS(6606), + [aux_sym_coarray_statement_token2] = ACTIONS(6606), + [aux_sym_coarray_statement_token6] = ACTIONS(6606), + [aux_sym_coarray_statement_token8] = ACTIONS(6606), + [aux_sym_coarray_statement_token11] = ACTIONS(6606), + [aux_sym_coarray_statement_token12] = ACTIONS(6606), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6606), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6606), + [aux_sym_identifier_token1] = ACTIONS(6606), [sym_comment] = ACTIONS(21), }, - [2606] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token2] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), + [2585] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2607] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2608] = { + [2586] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), @@ -403795,8 +401639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), @@ -403826,7 +401670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -403849,6 +401693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(2059), [aux_sym_select_rank_statement_token2] = ACTIONS(2059), [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(2059), [aux_sym_associate_statement_token1] = ACTIONS(2059), [aux_sym_format_statement_token1] = ACTIONS(2059), [aux_sym_print_statement_token1] = ACTIONS(2059), @@ -403861,12 +401706,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(2059), [aux_sym_allocate_statement_token1] = ACTIONS(2059), [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), + [aux_sym_logical_expression_token5] = ACTIONS(5698), [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), [aux_sym_null_literal_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token2] = ACTIONS(2059), @@ -403876,212 +401721,603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(2059), [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(2059), [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2609] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token2] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), + [2587] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_end_forall_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2610] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), + [2588] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym_end_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), }, - [2611] = { + [2589] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), + [aux_sym_procedure_attributes_token3] = ACTIONS(5600), + [aux_sym_use_statement_token2] = ACTIONS(5600), + [aux_sym_implicit_statement_token4] = ACTIONS(5600), + [aux_sym_save_statement_token1] = ACTIONS(5600), + [aux_sym_private_statement_token1] = ACTIONS(5600), + [aux_sym_public_statement_token1] = ACTIONS(5600), + [aux_sym_derived_type_definition_token1] = ACTIONS(5600), + [aux_sym_procedure_attribute_token6] = ACTIONS(5600), + [aux_sym_variable_attributes_token2] = ACTIONS(5600), + [aux_sym_variable_attributes_token3] = ACTIONS(5600), + [aux_sym_variable_attributes_token5] = ACTIONS(5600), + [aux_sym__intrinsic_type_token1] = ACTIONS(5600), + [aux_sym__intrinsic_type_token3] = ACTIONS(5600), + [aux_sym__intrinsic_type_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), + [aux_sym_type_qualifier_token1] = ACTIONS(5600), + [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), + [aux_sym_stop_statement_token1] = ACTIONS(5600), + [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token2] = ACTIONS(5600), + [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), + [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), + [aux_sym__inline_if_statement_token1] = ACTIONS(5600), + [aux_sym_end_if_statement_token1] = ACTIONS(5600), + [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), + [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), + [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), + [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), + [aux_sym_entry_statement_token1] = ACTIONS(5600), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), + [aux_sym_null_literal_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_statement_token2] = ACTIONS(5600), + [aux_sym_coarray_statement_token6] = ACTIONS(5600), + [aux_sym_coarray_statement_token8] = ACTIONS(5600), + [aux_sym_coarray_statement_token11] = ACTIONS(5600), + [aux_sym_coarray_statement_token12] = ACTIONS(5600), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), + [aux_sym_identifier_token1] = ACTIONS(5600), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), + }, + [2590] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [2591] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_end_forall_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), + }, + [2592] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), + }, + [2593] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), @@ -404144,6 +402380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_rank_statement_token2] = ACTIONS(5620), [aux_sym_block_construct_token1] = ACTIONS(5620), [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_end_associate_statement_token1] = ACTIONS(5620), [aux_sym_format_statement_token1] = ACTIONS(5620), [aux_sym_print_statement_token1] = ACTIONS(5620), [aux_sym_open_statement_token1] = ACTIONS(5620), @@ -404169,7 +402406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token11] = ACTIONS(5620), [aux_sym_coarray_statement_token12] = ACTIONS(5620), [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), - [aux_sym_end_coarray_team_statement_token1] = ACTIONS(5620), [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), [aux_sym_identifier_token1] = ACTIONS(5620), [sym_comment] = ACTIONS(21), @@ -404179,395 +402415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [2612] = { - [sym__expression] = STATE(4280), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6908), - [sym_extent_specifier] = STATE(6908), - [sym_assumed_size] = STATE(6908), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6620), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2613] = { - [sym__expression] = STATE(4307), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6882), - [sym_extent_specifier] = STATE(6882), - [sym_assumed_size] = STATE(6882), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6624), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2614] = { - [aux_sym_preproc_include_token1] = ACTIONS(5660), - [aux_sym_preproc_def_token1] = ACTIONS(5660), - [aux_sym_preproc_if_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5660), - [sym_preproc_directive] = ACTIONS(5660), - [anon_sym_LPAREN2] = ACTIONS(5660), - [anon_sym_PLUS] = ACTIONS(5662), - [anon_sym_DASH] = ACTIONS(5662), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5660), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5660), - [aux_sym_procedure_attributes_token3] = ACTIONS(5660), - [aux_sym_use_statement_token2] = ACTIONS(5660), - [aux_sym_implicit_statement_token4] = ACTIONS(5660), - [aux_sym_save_statement_token1] = ACTIONS(5660), - [aux_sym_private_statement_token1] = ACTIONS(5660), - [aux_sym_public_statement_token1] = ACTIONS(5660), - [aux_sym_derived_type_definition_token1] = ACTIONS(5660), - [aux_sym_procedure_attribute_token6] = ACTIONS(5660), - [aux_sym_variable_attributes_token2] = ACTIONS(5660), - [aux_sym_variable_attributes_token3] = ACTIONS(5660), - [aux_sym_variable_attributes_token5] = ACTIONS(5660), - [aux_sym__intrinsic_type_token1] = ACTIONS(5660), - [aux_sym__intrinsic_type_token3] = ACTIONS(5660), - [aux_sym__intrinsic_type_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5660), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5660), - [aux_sym_type_qualifier_token1] = ACTIONS(5660), - [aux_sym_type_qualifier_token2] = ACTIONS(5660), - [anon_sym_SEMI] = ACTIONS(5662), - [aux_sym_stop_statement_token1] = ACTIONS(5660), - [aux_sym_stop_statement_token2] = ACTIONS(5660), - [aux_sym_subroutine_call_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token1] = ACTIONS(5660), - [aux_sym_keyword_statement_token2] = ACTIONS(5660), - [aux_sym_keyword_statement_token3] = ACTIONS(5660), - [aux_sym_keyword_statement_token4] = ACTIONS(5660), - [aux_sym_keyword_statement_token6] = ACTIONS(5660), - [aux_sym_keyword_statement_token7] = ACTIONS(5660), - [aux_sym_include_statement_token1] = ACTIONS(5660), - [aux_sym_data_statement_token1] = ACTIONS(5660), - [aux_sym_do_loop_statement_token1] = ACTIONS(5660), - [aux_sym__inline_if_statement_token1] = ACTIONS(5660), - [aux_sym_end_if_statement_token1] = ACTIONS(5660), - [aux_sym_elseif_clause_token2] = ACTIONS(5660), - [aux_sym__inline_where_statement_token1] = ACTIONS(5660), - [aux_sym__forall_control_expression_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token1] = ACTIONS(5660), - [aux_sym_select_case_statement_token3] = ACTIONS(5660), - [aux_sym_select_type_statement_token1] = ACTIONS(5660), - [aux_sym_select_rank_statement_token2] = ACTIONS(5660), - [aux_sym_block_construct_token1] = ACTIONS(5660), - [aux_sym_associate_statement_token1] = ACTIONS(5660), - [aux_sym_format_statement_token1] = ACTIONS(5660), - [aux_sym_print_statement_token1] = ACTIONS(5660), - [aux_sym_open_statement_token1] = ACTIONS(5660), - [aux_sym_close_statement_token1] = ACTIONS(5660), - [aux_sym_inquire_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token1] = ACTIONS(5660), - [aux_sym_file_position_statement_token2] = ACTIONS(5660), - [aux_sym_file_position_statement_token3] = ACTIONS(5660), - [aux_sym_file_position_statement_token4] = ACTIONS(5660), - [aux_sym_allocate_statement_token1] = ACTIONS(5660), - [aux_sym_entry_statement_token1] = ACTIONS(5660), - [aux_sym_logical_expression_token5] = ACTIONS(5662), - [anon_sym_DOT] = ACTIONS(5660), - [anon_sym_LPAREN_SLASH] = ACTIONS(5662), - [anon_sym_LBRACK] = ACTIONS(5662), - [aux_sym_boolean_literal_token1] = ACTIONS(5662), - [aux_sym_boolean_literal_token2] = ACTIONS(5662), - [aux_sym_null_literal_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_statement_token2] = ACTIONS(5660), - [aux_sym_coarray_statement_token6] = ACTIONS(5660), - [aux_sym_coarray_statement_token8] = ACTIONS(5660), - [aux_sym_coarray_statement_token11] = ACTIONS(5660), - [aux_sym_coarray_statement_token12] = ACTIONS(5660), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5660), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5660), - [aux_sym_identifier_token1] = ACTIONS(5660), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5662), - [sym__float_literal] = ACTIONS(5662), - [sym__boz_literal] = ACTIONS(5662), - [sym__string_literal] = ACTIONS(5662), - [sym__string_literal_kind] = ACTIONS(5662), - }, - [2615] = { - [aux_sym_preproc_include_token1] = ACTIONS(5590), - [aux_sym_preproc_def_token1] = ACTIONS(5590), - [aux_sym_preproc_if_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5590), - [sym_preproc_directive] = ACTIONS(5590), - [anon_sym_LPAREN2] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5590), - [aux_sym_procedure_attributes_token3] = ACTIONS(5590), - [aux_sym_use_statement_token2] = ACTIONS(5590), - [aux_sym_implicit_statement_token4] = ACTIONS(5590), - [aux_sym_save_statement_token1] = ACTIONS(5590), - [aux_sym_private_statement_token1] = ACTIONS(5590), - [aux_sym_public_statement_token1] = ACTIONS(5590), - [aux_sym_derived_type_definition_token1] = ACTIONS(5590), - [aux_sym_procedure_attribute_token6] = ACTIONS(5590), - [aux_sym_variable_attributes_token2] = ACTIONS(5590), - [aux_sym_variable_attributes_token3] = ACTIONS(5590), - [aux_sym_variable_attributes_token5] = ACTIONS(5590), - [aux_sym__intrinsic_type_token1] = ACTIONS(5590), - [aux_sym__intrinsic_type_token3] = ACTIONS(5590), - [aux_sym__intrinsic_type_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5590), - [aux_sym_type_qualifier_token1] = ACTIONS(5590), - [aux_sym_type_qualifier_token2] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [aux_sym_stop_statement_token1] = ACTIONS(5590), - [aux_sym_stop_statement_token2] = ACTIONS(5590), - [aux_sym_subroutine_call_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token1] = ACTIONS(5590), - [aux_sym_keyword_statement_token2] = ACTIONS(5590), - [aux_sym_keyword_statement_token3] = ACTIONS(5590), - [aux_sym_keyword_statement_token4] = ACTIONS(5590), - [aux_sym_keyword_statement_token6] = ACTIONS(5590), - [aux_sym_keyword_statement_token7] = ACTIONS(5590), - [aux_sym_include_statement_token1] = ACTIONS(5590), - [aux_sym_data_statement_token1] = ACTIONS(5590), - [aux_sym_do_loop_statement_token1] = ACTIONS(5590), - [aux_sym__inline_if_statement_token1] = ACTIONS(5590), - [aux_sym_end_if_statement_token1] = ACTIONS(5590), - [aux_sym_elseif_clause_token2] = ACTIONS(5590), - [aux_sym__inline_where_statement_token1] = ACTIONS(5590), - [aux_sym__forall_control_expression_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token1] = ACTIONS(5590), - [aux_sym_select_case_statement_token3] = ACTIONS(5590), - [aux_sym_select_type_statement_token1] = ACTIONS(5590), - [aux_sym_select_rank_statement_token2] = ACTIONS(5590), - [aux_sym_block_construct_token1] = ACTIONS(5590), - [aux_sym_associate_statement_token1] = ACTIONS(5590), - [aux_sym_format_statement_token1] = ACTIONS(5590), - [aux_sym_print_statement_token1] = ACTIONS(5590), - [aux_sym_open_statement_token1] = ACTIONS(5590), - [aux_sym_close_statement_token1] = ACTIONS(5590), - [aux_sym_inquire_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token1] = ACTIONS(5590), - [aux_sym_file_position_statement_token2] = ACTIONS(5590), - [aux_sym_file_position_statement_token3] = ACTIONS(5590), - [aux_sym_file_position_statement_token4] = ACTIONS(5590), - [aux_sym_allocate_statement_token1] = ACTIONS(5590), - [aux_sym_entry_statement_token1] = ACTIONS(5590), - [aux_sym_logical_expression_token5] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_LPAREN_SLASH] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [aux_sym_boolean_literal_token1] = ACTIONS(5592), - [aux_sym_boolean_literal_token2] = ACTIONS(5592), - [aux_sym_null_literal_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_statement_token2] = ACTIONS(5590), - [aux_sym_coarray_statement_token6] = ACTIONS(5590), - [aux_sym_coarray_statement_token8] = ACTIONS(5590), - [aux_sym_coarray_statement_token11] = ACTIONS(5590), - [aux_sym_coarray_statement_token12] = ACTIONS(5590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5590), - [aux_sym_identifier_token1] = ACTIONS(5590), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5592), - [sym__float_literal] = ACTIONS(5592), - [sym__boz_literal] = ACTIONS(5592), - [sym__string_literal] = ACTIONS(5592), - [sym__string_literal_kind] = ACTIONS(5592), - }, - [2616] = { + [2594] = { [aux_sym_preproc_include_token1] = ACTIONS(5620), [aux_sym_preproc_def_token1] = ACTIONS(5620), [aux_sym_preproc_if_token1] = ACTIONS(5620), @@ -404629,6 +402477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_type_statement_token1] = ACTIONS(5620), [aux_sym_select_rank_statement_token2] = ACTIONS(5620), [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5620), [aux_sym_associate_statement_token1] = ACTIONS(5620), [aux_sym_format_statement_token1] = ACTIONS(5620), [aux_sym_print_statement_token1] = ACTIONS(5620), @@ -404664,104 +402513,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5622), [sym__string_literal_kind] = ACTIONS(5622), }, - [2617] = { - [aux_sym_preproc_include_token1] = ACTIONS(5640), - [aux_sym_preproc_def_token1] = ACTIONS(5640), - [aux_sym_preproc_if_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), - [sym_preproc_directive] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_PLUS] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), + [2595] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), + }, + [2596] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), - [aux_sym_procedure_attributes_token3] = ACTIONS(5640), - [aux_sym_use_statement_token2] = ACTIONS(5640), - [aux_sym_implicit_statement_token4] = ACTIONS(5640), - [aux_sym_save_statement_token1] = ACTIONS(5640), - [aux_sym_private_statement_token1] = ACTIONS(5640), - [aux_sym_public_statement_token1] = ACTIONS(5640), - [aux_sym_derived_type_definition_token1] = ACTIONS(5640), - [aux_sym_procedure_attribute_token6] = ACTIONS(5640), - [aux_sym_variable_attributes_token2] = ACTIONS(5640), - [aux_sym_variable_attributes_token3] = ACTIONS(5640), - [aux_sym_variable_attributes_token5] = ACTIONS(5640), - [aux_sym__intrinsic_type_token1] = ACTIONS(5640), - [aux_sym__intrinsic_type_token3] = ACTIONS(5640), - [aux_sym__intrinsic_type_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), - [aux_sym_type_qualifier_token1] = ACTIONS(5640), - [aux_sym_type_qualifier_token2] = ACTIONS(5640), - [anon_sym_SEMI] = ACTIONS(5642), - [aux_sym_stop_statement_token1] = ACTIONS(5640), - [aux_sym_stop_statement_token2] = ACTIONS(5640), - [aux_sym_subroutine_call_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token1] = ACTIONS(5640), - [aux_sym_keyword_statement_token2] = ACTIONS(5640), - [aux_sym_keyword_statement_token3] = ACTIONS(5640), - [aux_sym_keyword_statement_token4] = ACTIONS(5640), - [aux_sym_keyword_statement_token6] = ACTIONS(5640), - [aux_sym_keyword_statement_token7] = ACTIONS(5640), - [aux_sym_include_statement_token1] = ACTIONS(5640), - [aux_sym_data_statement_token1] = ACTIONS(5640), - [aux_sym_do_loop_statement_token1] = ACTIONS(5640), - [aux_sym__inline_if_statement_token1] = ACTIONS(5640), - [aux_sym_end_if_statement_token1] = ACTIONS(5640), - [aux_sym_elseif_clause_token2] = ACTIONS(5640), - [aux_sym__inline_where_statement_token1] = ACTIONS(5640), - [aux_sym__forall_control_expression_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token1] = ACTIONS(5640), - [aux_sym_select_case_statement_token3] = ACTIONS(5640), - [aux_sym_select_type_statement_token1] = ACTIONS(5640), - [aux_sym_select_rank_statement_token2] = ACTIONS(5640), - [aux_sym_block_construct_token1] = ACTIONS(5640), - [aux_sym_associate_statement_token1] = ACTIONS(5640), - [aux_sym_format_statement_token1] = ACTIONS(5640), - [aux_sym_print_statement_token1] = ACTIONS(5640), - [aux_sym_open_statement_token1] = ACTIONS(5640), - [aux_sym_close_statement_token1] = ACTIONS(5640), - [aux_sym_inquire_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token1] = ACTIONS(5640), - [aux_sym_file_position_statement_token2] = ACTIONS(5640), - [aux_sym_file_position_statement_token3] = ACTIONS(5640), - [aux_sym_file_position_statement_token4] = ACTIONS(5640), - [aux_sym_allocate_statement_token1] = ACTIONS(5640), - [aux_sym_entry_statement_token1] = ACTIONS(5640), - [aux_sym_logical_expression_token5] = ACTIONS(5642), - [anon_sym_DOT] = ACTIONS(5640), - [anon_sym_LPAREN_SLASH] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(5642), - [aux_sym_boolean_literal_token1] = ACTIONS(5642), - [aux_sym_boolean_literal_token2] = ACTIONS(5642), - [aux_sym_null_literal_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_statement_token2] = ACTIONS(5640), - [aux_sym_coarray_statement_token6] = ACTIONS(5640), - [aux_sym_coarray_statement_token8] = ACTIONS(5640), - [aux_sym_coarray_statement_token11] = ACTIONS(5640), - [aux_sym_coarray_statement_token12] = ACTIONS(5640), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), - [aux_sym_identifier_token1] = ACTIONS(5640), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5642), - [sym__float_literal] = ACTIONS(5642), - [sym__boz_literal] = ACTIONS(5642), - [sym__string_literal] = ACTIONS(5642), - [sym__string_literal_kind] = ACTIONS(5642), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), }, - [2618] = { + [2597] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_end_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2598] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), + }, + [2599] = { [aux_sym_preproc_include_token1] = ACTIONS(2059), [aux_sym_preproc_def_token1] = ACTIONS(2059), [aux_sym_preproc_if_token1] = ACTIONS(2059), @@ -404769,8 +402913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), [sym_preproc_directive] = ACTIONS(2059), [anon_sym_LPAREN2] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(5676), - [anon_sym_DASH] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(2059), [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), @@ -404800,7 +402944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), [aux_sym_type_qualifier_token1] = ACTIONS(2059), [aux_sym_type_qualifier_token2] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5698), [aux_sym_stop_statement_token1] = ACTIONS(2059), [aux_sym_stop_statement_token2] = ACTIONS(2059), [aux_sym_subroutine_call_token1] = ACTIONS(2059), @@ -404818,6 +402962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_elseif_clause_token2] = ACTIONS(2059), [aux_sym__inline_where_statement_token1] = ACTIONS(2059), [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_end_forall_statement_token1] = ACTIONS(2059), [aux_sym_select_case_statement_token1] = ACTIONS(2059), [aux_sym_select_case_statement_token3] = ACTIONS(2059), [aux_sym_select_type_statement_token1] = ACTIONS(2059), @@ -404835,895 +402980,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(2059), [aux_sym_allocate_statement_token1] = ACTIONS(2059), [aux_sym_entry_statement_token1] = ACTIONS(2059), - [aux_sym_logical_expression_token5] = ACTIONS(5676), + [aux_sym_logical_expression_token5] = ACTIONS(5698), [anon_sym_DOT] = ACTIONS(2059), - [anon_sym_LPAREN_SLASH] = ACTIONS(5676), - [anon_sym_LBRACK] = ACTIONS(5676), - [aux_sym_boolean_literal_token1] = ACTIONS(5676), - [aux_sym_boolean_literal_token2] = ACTIONS(5676), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), [aux_sym_null_literal_token1] = ACTIONS(2059), [aux_sym_coarray_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_statement_token2] = ACTIONS(2059), - [aux_sym_coarray_statement_token6] = ACTIONS(2059), - [aux_sym_coarray_statement_token8] = ACTIONS(2059), - [aux_sym_coarray_statement_token11] = ACTIONS(2059), - [aux_sym_coarray_statement_token12] = ACTIONS(2059), - [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), - [aux_sym_identifier_token1] = ACTIONS(2059), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5676), - [sym__float_literal] = ACTIONS(5676), - [sym__boz_literal] = ACTIONS(5676), - [sym__string_literal] = ACTIONS(5676), - [sym__string_literal_kind] = ACTIONS(5676), - }, - [2619] = { - [sym__expression] = STATE(4302), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6908), - [sym_extent_specifier] = STATE(6908), - [sym_assumed_size] = STATE(6908), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6620), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2620] = { - [aux_sym_preproc_include_token1] = ACTIONS(4485), - [aux_sym_preproc_def_token1] = ACTIONS(4485), - [aux_sym_preproc_if_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4485), - [sym_preproc_directive] = ACTIONS(4485), - [anon_sym_LPAREN2] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(5510), - [anon_sym_DASH] = ACTIONS(5510), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4485), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4485), - [aux_sym_procedure_attributes_token3] = ACTIONS(4485), - [aux_sym_use_statement_token2] = ACTIONS(4485), - [aux_sym_implicit_statement_token4] = ACTIONS(4485), - [aux_sym_save_statement_token1] = ACTIONS(4485), - [aux_sym_private_statement_token1] = ACTIONS(4485), - [aux_sym_public_statement_token1] = ACTIONS(4485), - [aux_sym_derived_type_definition_token1] = ACTIONS(4485), - [aux_sym_procedure_attribute_token6] = ACTIONS(4485), - [aux_sym_variable_attributes_token2] = ACTIONS(4485), - [aux_sym_variable_attributes_token3] = ACTIONS(4485), - [aux_sym_variable_attributes_token5] = ACTIONS(4485), - [aux_sym__intrinsic_type_token1] = ACTIONS(4485), - [aux_sym__intrinsic_type_token3] = ACTIONS(4485), - [aux_sym__intrinsic_type_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4485), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4485), - [aux_sym_type_qualifier_token1] = ACTIONS(4485), - [aux_sym_type_qualifier_token2] = ACTIONS(4485), - [anon_sym_SEMI] = ACTIONS(5510), - [aux_sym_stop_statement_token1] = ACTIONS(4485), - [aux_sym_stop_statement_token2] = ACTIONS(4485), - [aux_sym_subroutine_call_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token1] = ACTIONS(4485), - [aux_sym_keyword_statement_token2] = ACTIONS(4485), - [aux_sym_keyword_statement_token3] = ACTIONS(4485), - [aux_sym_keyword_statement_token4] = ACTIONS(4485), - [aux_sym_keyword_statement_token6] = ACTIONS(4485), - [aux_sym_keyword_statement_token7] = ACTIONS(4485), - [aux_sym_include_statement_token1] = ACTIONS(4485), - [aux_sym_data_statement_token1] = ACTIONS(4485), - [aux_sym_do_loop_statement_token1] = ACTIONS(4485), - [aux_sym__inline_if_statement_token1] = ACTIONS(4485), - [aux_sym_end_if_statement_token1] = ACTIONS(4485), - [aux_sym_elseif_clause_token2] = ACTIONS(4485), - [aux_sym__inline_where_statement_token1] = ACTIONS(4485), - [aux_sym__forall_control_expression_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token1] = ACTIONS(4485), - [aux_sym_select_case_statement_token3] = ACTIONS(4485), - [aux_sym_select_type_statement_token1] = ACTIONS(4485), - [aux_sym_select_rank_statement_token2] = ACTIONS(4485), - [aux_sym_block_construct_token1] = ACTIONS(4485), - [aux_sym_associate_statement_token1] = ACTIONS(4485), - [aux_sym_format_statement_token1] = ACTIONS(4485), - [aux_sym_print_statement_token1] = ACTIONS(4485), - [aux_sym_open_statement_token1] = ACTIONS(4485), - [aux_sym_close_statement_token1] = ACTIONS(4485), - [aux_sym_inquire_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token1] = ACTIONS(4485), - [aux_sym_file_position_statement_token2] = ACTIONS(4485), - [aux_sym_file_position_statement_token3] = ACTIONS(4485), - [aux_sym_file_position_statement_token4] = ACTIONS(4485), - [aux_sym_allocate_statement_token1] = ACTIONS(4485), - [aux_sym_entry_statement_token1] = ACTIONS(4485), - [aux_sym_logical_expression_token5] = ACTIONS(5510), - [anon_sym_DOT] = ACTIONS(4485), - [anon_sym_LPAREN_SLASH] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5510), - [aux_sym_boolean_literal_token1] = ACTIONS(5510), - [aux_sym_boolean_literal_token2] = ACTIONS(5510), - [aux_sym_null_literal_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_statement_token2] = ACTIONS(4485), - [aux_sym_coarray_statement_token6] = ACTIONS(4485), - [aux_sym_coarray_statement_token8] = ACTIONS(4485), - [aux_sym_coarray_statement_token11] = ACTIONS(4485), - [aux_sym_coarray_statement_token12] = ACTIONS(4485), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4485), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4485), - [aux_sym_identifier_token1] = ACTIONS(4485), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5510), - [sym__float_literal] = ACTIONS(5510), - [sym__boz_literal] = ACTIONS(5510), - [sym__string_literal] = ACTIONS(5510), - [sym__string_literal_kind] = ACTIONS(5510), - }, - [2621] = { - [aux_sym_preproc_include_token1] = ACTIONS(4817), - [aux_sym_preproc_def_token1] = ACTIONS(4817), - [aux_sym_preproc_if_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4817), - [sym_preproc_directive] = ACTIONS(4817), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_PLUS] = ACTIONS(5514), - [anon_sym_DASH] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4817), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4817), - [aux_sym_procedure_attributes_token3] = ACTIONS(4817), - [aux_sym_use_statement_token2] = ACTIONS(4817), - [aux_sym_implicit_statement_token4] = ACTIONS(4817), - [aux_sym_save_statement_token1] = ACTIONS(4817), - [aux_sym_private_statement_token1] = ACTIONS(4817), - [aux_sym_public_statement_token1] = ACTIONS(4817), - [aux_sym_derived_type_definition_token1] = ACTIONS(4817), - [aux_sym_procedure_attribute_token6] = ACTIONS(4817), - [aux_sym_variable_attributes_token2] = ACTIONS(4817), - [aux_sym_variable_attributes_token3] = ACTIONS(4817), - [aux_sym_variable_attributes_token5] = ACTIONS(4817), - [aux_sym__intrinsic_type_token1] = ACTIONS(4817), - [aux_sym__intrinsic_type_token3] = ACTIONS(4817), - [aux_sym__intrinsic_type_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4817), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4817), - [aux_sym_type_qualifier_token1] = ACTIONS(4817), - [aux_sym_type_qualifier_token2] = ACTIONS(4817), - [anon_sym_SEMI] = ACTIONS(5514), - [aux_sym_stop_statement_token1] = ACTIONS(4817), - [aux_sym_stop_statement_token2] = ACTIONS(4817), - [aux_sym_subroutine_call_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token1] = ACTIONS(4817), - [aux_sym_keyword_statement_token2] = ACTIONS(4817), - [aux_sym_keyword_statement_token3] = ACTIONS(4817), - [aux_sym_keyword_statement_token4] = ACTIONS(4817), - [aux_sym_keyword_statement_token6] = ACTIONS(4817), - [aux_sym_keyword_statement_token7] = ACTIONS(4817), - [aux_sym_include_statement_token1] = ACTIONS(4817), - [aux_sym_data_statement_token1] = ACTIONS(4817), - [aux_sym_do_loop_statement_token1] = ACTIONS(4817), - [aux_sym__inline_if_statement_token1] = ACTIONS(4817), - [aux_sym_end_if_statement_token1] = ACTIONS(4817), - [aux_sym_elseif_clause_token2] = ACTIONS(4817), - [aux_sym__inline_where_statement_token1] = ACTIONS(4817), - [aux_sym__forall_control_expression_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token1] = ACTIONS(4817), - [aux_sym_select_case_statement_token3] = ACTIONS(4817), - [aux_sym_select_type_statement_token1] = ACTIONS(4817), - [aux_sym_select_rank_statement_token2] = ACTIONS(4817), - [aux_sym_block_construct_token1] = ACTIONS(4817), - [aux_sym_associate_statement_token1] = ACTIONS(4817), - [aux_sym_format_statement_token1] = ACTIONS(4817), - [aux_sym_print_statement_token1] = ACTIONS(4817), - [aux_sym_open_statement_token1] = ACTIONS(4817), - [aux_sym_close_statement_token1] = ACTIONS(4817), - [aux_sym_inquire_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token1] = ACTIONS(4817), - [aux_sym_file_position_statement_token2] = ACTIONS(4817), - [aux_sym_file_position_statement_token3] = ACTIONS(4817), - [aux_sym_file_position_statement_token4] = ACTIONS(4817), - [aux_sym_allocate_statement_token1] = ACTIONS(4817), - [aux_sym_entry_statement_token1] = ACTIONS(4817), - [aux_sym_logical_expression_token5] = ACTIONS(5514), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_LPAREN_SLASH] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(5514), - [aux_sym_boolean_literal_token1] = ACTIONS(5514), - [aux_sym_boolean_literal_token2] = ACTIONS(5514), - [aux_sym_null_literal_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_statement_token2] = ACTIONS(4817), - [aux_sym_coarray_statement_token6] = ACTIONS(4817), - [aux_sym_coarray_statement_token8] = ACTIONS(4817), - [aux_sym_coarray_statement_token11] = ACTIONS(4817), - [aux_sym_coarray_statement_token12] = ACTIONS(4817), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4817), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4817), - [aux_sym_identifier_token1] = ACTIONS(4817), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5514), - [sym__float_literal] = ACTIONS(5514), - [sym__boz_literal] = ACTIONS(5514), - [sym__string_literal] = ACTIONS(5514), - [sym__string_literal_kind] = ACTIONS(5514), - }, - [2622] = { - [aux_sym_preproc_include_token1] = ACTIONS(4445), - [aux_sym_preproc_def_token1] = ACTIONS(4445), - [aux_sym_preproc_if_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), - [sym_preproc_directive] = ACTIONS(4445), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4445), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4445), - [aux_sym_procedure_attributes_token3] = ACTIONS(4445), - [aux_sym_use_statement_token2] = ACTIONS(4445), - [aux_sym_implicit_statement_token4] = ACTIONS(4445), - [aux_sym_save_statement_token1] = ACTIONS(4445), - [aux_sym_private_statement_token1] = ACTIONS(4445), - [aux_sym_public_statement_token1] = ACTIONS(4445), - [aux_sym_derived_type_definition_token1] = ACTIONS(4445), - [aux_sym_procedure_attribute_token6] = ACTIONS(4445), - [aux_sym_variable_attributes_token2] = ACTIONS(4445), - [aux_sym_variable_attributes_token3] = ACTIONS(4445), - [aux_sym_variable_attributes_token5] = ACTIONS(4445), - [aux_sym__intrinsic_type_token1] = ACTIONS(4445), - [aux_sym__intrinsic_type_token3] = ACTIONS(4445), - [aux_sym__intrinsic_type_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4445), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4445), - [aux_sym_type_qualifier_token1] = ACTIONS(4445), - [aux_sym_type_qualifier_token2] = ACTIONS(4445), - [anon_sym_SEMI] = ACTIONS(5586), - [aux_sym_stop_statement_token1] = ACTIONS(4445), - [aux_sym_stop_statement_token2] = ACTIONS(4445), - [aux_sym_subroutine_call_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token1] = ACTIONS(4445), - [aux_sym_keyword_statement_token2] = ACTIONS(4445), - [aux_sym_keyword_statement_token3] = ACTIONS(4445), - [aux_sym_keyword_statement_token4] = ACTIONS(4445), - [aux_sym_keyword_statement_token6] = ACTIONS(4445), - [aux_sym_keyword_statement_token7] = ACTIONS(4445), - [aux_sym_include_statement_token1] = ACTIONS(4445), - [aux_sym_data_statement_token1] = ACTIONS(4445), - [aux_sym_do_loop_statement_token1] = ACTIONS(4445), - [aux_sym__inline_if_statement_token1] = ACTIONS(4445), - [aux_sym_end_if_statement_token1] = ACTIONS(4445), - [aux_sym_elseif_clause_token2] = ACTIONS(4445), - [aux_sym__inline_where_statement_token1] = ACTIONS(4445), - [aux_sym__forall_control_expression_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token1] = ACTIONS(4445), - [aux_sym_select_case_statement_token3] = ACTIONS(4445), - [aux_sym_select_type_statement_token1] = ACTIONS(4445), - [aux_sym_select_rank_statement_token2] = ACTIONS(4445), - [aux_sym_block_construct_token1] = ACTIONS(4445), - [aux_sym_associate_statement_token1] = ACTIONS(4445), - [aux_sym_format_statement_token1] = ACTIONS(4445), - [aux_sym_print_statement_token1] = ACTIONS(4445), - [aux_sym_open_statement_token1] = ACTIONS(4445), - [aux_sym_close_statement_token1] = ACTIONS(4445), - [aux_sym_inquire_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token1] = ACTIONS(4445), - [aux_sym_file_position_statement_token2] = ACTIONS(4445), - [aux_sym_file_position_statement_token3] = ACTIONS(4445), - [aux_sym_file_position_statement_token4] = ACTIONS(4445), - [aux_sym_allocate_statement_token1] = ACTIONS(4445), - [aux_sym_entry_statement_token1] = ACTIONS(4445), - [aux_sym_logical_expression_token5] = ACTIONS(5586), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_LPAREN_SLASH] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5586), - [aux_sym_boolean_literal_token1] = ACTIONS(5586), - [aux_sym_boolean_literal_token2] = ACTIONS(5586), - [aux_sym_null_literal_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_statement_token2] = ACTIONS(4445), - [aux_sym_coarray_statement_token6] = ACTIONS(4445), - [aux_sym_coarray_statement_token8] = ACTIONS(4445), - [aux_sym_coarray_statement_token11] = ACTIONS(4445), - [aux_sym_coarray_statement_token12] = ACTIONS(4445), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4445), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4445), - [aux_sym_identifier_token1] = ACTIONS(4445), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5586), - [sym__float_literal] = ACTIONS(5586), - [sym__boz_literal] = ACTIONS(5586), - [sym__string_literal] = ACTIONS(5586), - [sym__string_literal_kind] = ACTIONS(5586), - }, - [2623] = { - [sym__expression] = STATE(4282), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6882), - [sym_extent_specifier] = STATE(6882), - [sym_assumed_size] = STATE(6882), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6624), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2624] = { - [aux_sym_preproc_include_token1] = ACTIONS(5738), - [aux_sym_preproc_def_token1] = ACTIONS(5738), - [aux_sym_preproc_if_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5738), - [sym_preproc_directive] = ACTIONS(5738), - [anon_sym_LPAREN2] = ACTIONS(5738), - [anon_sym_PLUS] = ACTIONS(5740), - [anon_sym_DASH] = ACTIONS(5740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5738), - [aux_sym_procedure_attributes_token3] = ACTIONS(5738), - [aux_sym_use_statement_token2] = ACTIONS(5738), - [aux_sym_implicit_statement_token4] = ACTIONS(5738), - [aux_sym_save_statement_token1] = ACTIONS(5738), - [aux_sym_private_statement_token1] = ACTIONS(5738), - [aux_sym_public_statement_token1] = ACTIONS(5738), - [aux_sym_derived_type_definition_token1] = ACTIONS(5738), - [aux_sym_procedure_attribute_token6] = ACTIONS(5738), - [aux_sym_variable_attributes_token2] = ACTIONS(5738), - [aux_sym_variable_attributes_token3] = ACTIONS(5738), - [aux_sym_variable_attributes_token5] = ACTIONS(5738), - [aux_sym__intrinsic_type_token1] = ACTIONS(5738), - [aux_sym__intrinsic_type_token3] = ACTIONS(5738), - [aux_sym__intrinsic_type_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5738), - [aux_sym_type_qualifier_token1] = ACTIONS(5738), - [aux_sym_type_qualifier_token2] = ACTIONS(5738), - [anon_sym_SEMI] = ACTIONS(5740), - [aux_sym_stop_statement_token1] = ACTIONS(5738), - [aux_sym_stop_statement_token2] = ACTIONS(5738), - [aux_sym_subroutine_call_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token1] = ACTIONS(5738), - [aux_sym_keyword_statement_token2] = ACTIONS(5738), - [aux_sym_keyword_statement_token3] = ACTIONS(5738), - [aux_sym_keyword_statement_token4] = ACTIONS(5738), - [aux_sym_keyword_statement_token6] = ACTIONS(5738), - [aux_sym_keyword_statement_token7] = ACTIONS(5738), - [aux_sym_include_statement_token1] = ACTIONS(5738), - [aux_sym_data_statement_token1] = ACTIONS(5738), - [aux_sym_do_loop_statement_token1] = ACTIONS(5738), - [aux_sym__inline_if_statement_token1] = ACTIONS(5738), - [aux_sym_end_if_statement_token1] = ACTIONS(5738), - [aux_sym_elseif_clause_token2] = ACTIONS(5738), - [aux_sym__inline_where_statement_token1] = ACTIONS(5738), - [aux_sym__forall_control_expression_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token1] = ACTIONS(5738), - [aux_sym_select_case_statement_token3] = ACTIONS(5738), - [aux_sym_select_type_statement_token1] = ACTIONS(5738), - [aux_sym_select_rank_statement_token2] = ACTIONS(5738), - [aux_sym_block_construct_token1] = ACTIONS(5738), - [aux_sym_associate_statement_token1] = ACTIONS(5738), - [aux_sym_format_statement_token1] = ACTIONS(5738), - [aux_sym_print_statement_token1] = ACTIONS(5738), - [aux_sym_open_statement_token1] = ACTIONS(5738), - [aux_sym_close_statement_token1] = ACTIONS(5738), - [aux_sym_inquire_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token1] = ACTIONS(5738), - [aux_sym_file_position_statement_token2] = ACTIONS(5738), - [aux_sym_file_position_statement_token3] = ACTIONS(5738), - [aux_sym_file_position_statement_token4] = ACTIONS(5738), - [aux_sym_allocate_statement_token1] = ACTIONS(5738), - [aux_sym_entry_statement_token1] = ACTIONS(5738), - [aux_sym_logical_expression_token5] = ACTIONS(5740), - [anon_sym_DOT] = ACTIONS(5738), - [anon_sym_LPAREN_SLASH] = ACTIONS(5740), - [anon_sym_LBRACK] = ACTIONS(5740), - [aux_sym_boolean_literal_token1] = ACTIONS(5740), - [aux_sym_boolean_literal_token2] = ACTIONS(5740), - [aux_sym_null_literal_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_statement_token2] = ACTIONS(5738), - [aux_sym_coarray_statement_token6] = ACTIONS(5738), - [aux_sym_coarray_statement_token8] = ACTIONS(5738), - [aux_sym_coarray_statement_token11] = ACTIONS(5738), - [aux_sym_coarray_statement_token12] = ACTIONS(5738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5738), - [aux_sym_identifier_token1] = ACTIONS(5738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5740), - [sym__float_literal] = ACTIONS(5740), - [sym__boz_literal] = ACTIONS(5740), - [sym__string_literal] = ACTIONS(5740), - [sym__string_literal_kind] = ACTIONS(5740), - }, - [2625] = { - [sym__expression] = STATE(4327), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6976), - [sym_extent_specifier] = STATE(6976), - [sym_assumed_size] = STATE(6976), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_RPAREN] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6628), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2626] = { - [aux_sym_preproc_include_token1] = ACTIONS(4827), - [aux_sym_preproc_def_token1] = ACTIONS(4827), - [aux_sym_preproc_if_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4827), - [sym_preproc_directive] = ACTIONS(4827), - [anon_sym_LPAREN2] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(5518), - [anon_sym_DASH] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4827), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4827), - [aux_sym_procedure_attributes_token3] = ACTIONS(4827), - [aux_sym_use_statement_token2] = ACTIONS(4827), - [aux_sym_implicit_statement_token4] = ACTIONS(4827), - [aux_sym_save_statement_token1] = ACTIONS(4827), - [aux_sym_private_statement_token1] = ACTIONS(4827), - [aux_sym_public_statement_token1] = ACTIONS(4827), - [aux_sym_derived_type_definition_token1] = ACTIONS(4827), - [aux_sym_procedure_attribute_token6] = ACTIONS(4827), - [aux_sym_variable_attributes_token2] = ACTIONS(4827), - [aux_sym_variable_attributes_token3] = ACTIONS(4827), - [aux_sym_variable_attributes_token5] = ACTIONS(4827), - [aux_sym__intrinsic_type_token1] = ACTIONS(4827), - [aux_sym__intrinsic_type_token3] = ACTIONS(4827), - [aux_sym__intrinsic_type_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4827), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4827), - [aux_sym_type_qualifier_token1] = ACTIONS(4827), - [aux_sym_type_qualifier_token2] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(5518), - [aux_sym_stop_statement_token1] = ACTIONS(4827), - [aux_sym_stop_statement_token2] = ACTIONS(4827), - [aux_sym_subroutine_call_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token1] = ACTIONS(4827), - [aux_sym_keyword_statement_token2] = ACTIONS(4827), - [aux_sym_keyword_statement_token3] = ACTIONS(4827), - [aux_sym_keyword_statement_token4] = ACTIONS(4827), - [aux_sym_keyword_statement_token6] = ACTIONS(4827), - [aux_sym_keyword_statement_token7] = ACTIONS(4827), - [aux_sym_include_statement_token1] = ACTIONS(4827), - [aux_sym_data_statement_token1] = ACTIONS(4827), - [aux_sym_do_loop_statement_token1] = ACTIONS(4827), - [aux_sym__inline_if_statement_token1] = ACTIONS(4827), - [aux_sym_end_if_statement_token1] = ACTIONS(4827), - [aux_sym_elseif_clause_token2] = ACTIONS(4827), - [aux_sym__inline_where_statement_token1] = ACTIONS(4827), - [aux_sym__forall_control_expression_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token1] = ACTIONS(4827), - [aux_sym_select_case_statement_token3] = ACTIONS(4827), - [aux_sym_select_type_statement_token1] = ACTIONS(4827), - [aux_sym_select_rank_statement_token2] = ACTIONS(4827), - [aux_sym_block_construct_token1] = ACTIONS(4827), - [aux_sym_associate_statement_token1] = ACTIONS(4827), - [aux_sym_format_statement_token1] = ACTIONS(4827), - [aux_sym_print_statement_token1] = ACTIONS(4827), - [aux_sym_open_statement_token1] = ACTIONS(4827), - [aux_sym_close_statement_token1] = ACTIONS(4827), - [aux_sym_inquire_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token1] = ACTIONS(4827), - [aux_sym_file_position_statement_token2] = ACTIONS(4827), - [aux_sym_file_position_statement_token3] = ACTIONS(4827), - [aux_sym_file_position_statement_token4] = ACTIONS(4827), - [aux_sym_allocate_statement_token1] = ACTIONS(4827), - [aux_sym_entry_statement_token1] = ACTIONS(4827), - [aux_sym_logical_expression_token5] = ACTIONS(5518), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_LPAREN_SLASH] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(5518), - [aux_sym_boolean_literal_token1] = ACTIONS(5518), - [aux_sym_boolean_literal_token2] = ACTIONS(5518), - [aux_sym_null_literal_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_statement_token2] = ACTIONS(4827), - [aux_sym_coarray_statement_token6] = ACTIONS(4827), - [aux_sym_coarray_statement_token8] = ACTIONS(4827), - [aux_sym_coarray_statement_token11] = ACTIONS(4827), - [aux_sym_coarray_statement_token12] = ACTIONS(4827), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4827), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4827), - [aux_sym_identifier_token1] = ACTIONS(4827), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5518), - [sym__float_literal] = ACTIONS(5518), - [sym__boz_literal] = ACTIONS(5518), - [sym__string_literal] = ACTIONS(5518), - [sym__string_literal_kind] = ACTIONS(5518), - }, - [2627] = { - [aux_sym_preproc_include_token1] = ACTIONS(5002), - [aux_sym_preproc_def_token1] = ACTIONS(5002), - [aux_sym_preproc_if_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), - [sym_preproc_directive] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5634), - [anon_sym_DASH] = ACTIONS(5634), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), - [aux_sym_procedure_attributes_token3] = ACTIONS(5002), - [aux_sym_use_statement_token2] = ACTIONS(5002), - [aux_sym_implicit_statement_token4] = ACTIONS(5002), - [aux_sym_save_statement_token1] = ACTIONS(5002), - [aux_sym_private_statement_token1] = ACTIONS(5002), - [aux_sym_public_statement_token1] = ACTIONS(5002), - [aux_sym_derived_type_definition_token1] = ACTIONS(5002), - [aux_sym_procedure_attribute_token6] = ACTIONS(5002), - [aux_sym_variable_attributes_token2] = ACTIONS(5002), - [aux_sym_variable_attributes_token3] = ACTIONS(5002), - [aux_sym_variable_attributes_token5] = ACTIONS(5002), - [aux_sym__intrinsic_type_token1] = ACTIONS(5002), - [aux_sym__intrinsic_type_token3] = ACTIONS(5002), - [aux_sym__intrinsic_type_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), - [aux_sym_type_qualifier_token1] = ACTIONS(5002), - [aux_sym_type_qualifier_token2] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5634), - [aux_sym_stop_statement_token1] = ACTIONS(5002), - [aux_sym_stop_statement_token2] = ACTIONS(5002), - [aux_sym_subroutine_call_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token1] = ACTIONS(5002), - [aux_sym_keyword_statement_token2] = ACTIONS(5002), - [aux_sym_keyword_statement_token3] = ACTIONS(5002), - [aux_sym_keyword_statement_token4] = ACTIONS(5002), - [aux_sym_keyword_statement_token6] = ACTIONS(5002), - [aux_sym_keyword_statement_token7] = ACTIONS(5002), - [aux_sym_include_statement_token1] = ACTIONS(5002), - [aux_sym_data_statement_token1] = ACTIONS(5002), - [aux_sym_do_loop_statement_token1] = ACTIONS(5002), - [aux_sym__inline_if_statement_token1] = ACTIONS(5002), - [aux_sym_end_if_statement_token1] = ACTIONS(5002), - [aux_sym_elseif_clause_token2] = ACTIONS(5002), - [aux_sym__inline_where_statement_token1] = ACTIONS(5002), - [aux_sym__forall_control_expression_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token1] = ACTIONS(5002), - [aux_sym_select_case_statement_token3] = ACTIONS(5002), - [aux_sym_select_type_statement_token1] = ACTIONS(5002), - [aux_sym_select_rank_statement_token2] = ACTIONS(5002), - [aux_sym_block_construct_token1] = ACTIONS(5002), - [aux_sym_associate_statement_token1] = ACTIONS(5002), - [aux_sym_format_statement_token1] = ACTIONS(5002), - [aux_sym_print_statement_token1] = ACTIONS(5002), - [aux_sym_open_statement_token1] = ACTIONS(5002), - [aux_sym_close_statement_token1] = ACTIONS(5002), - [aux_sym_inquire_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token1] = ACTIONS(5002), - [aux_sym_file_position_statement_token2] = ACTIONS(5002), - [aux_sym_file_position_statement_token3] = ACTIONS(5002), - [aux_sym_file_position_statement_token4] = ACTIONS(5002), - [aux_sym_allocate_statement_token1] = ACTIONS(5002), - [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), + }, + [2600] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), [aux_sym_logical_expression_token5] = ACTIONS(5634), - [anon_sym_DOT] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5632), [anon_sym_LPAREN_SLASH] = ACTIONS(5634), [anon_sym_LBRACK] = ACTIONS(5634), [aux_sym_boolean_literal_token1] = ACTIONS(5634), [aux_sym_boolean_literal_token2] = ACTIONS(5634), - [aux_sym_null_literal_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_statement_token2] = ACTIONS(5002), - [aux_sym_coarray_statement_token6] = ACTIONS(5002), - [aux_sym_coarray_statement_token8] = ACTIONS(5002), - [aux_sym_coarray_statement_token11] = ACTIONS(5002), - [aux_sym_coarray_statement_token12] = ACTIONS(5002), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), - [aux_sym_identifier_token1] = ACTIONS(5002), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5634), [sym__float_literal] = ACTIONS(5634), @@ -405731,492 +403101,595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(5634), [sym__string_literal_kind] = ACTIONS(5634), }, - [2628] = { - [aux_sym_preproc_include_token1] = ACTIONS(5636), - [aux_sym_preproc_def_token1] = ACTIONS(5636), - [aux_sym_preproc_if_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5636), - [sym_preproc_directive] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5636), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5636), - [aux_sym_procedure_attributes_token3] = ACTIONS(5636), - [aux_sym_use_statement_token2] = ACTIONS(5636), - [aux_sym_implicit_statement_token4] = ACTIONS(5636), - [aux_sym_save_statement_token1] = ACTIONS(5636), - [aux_sym_private_statement_token1] = ACTIONS(5636), - [aux_sym_public_statement_token1] = ACTIONS(5636), - [aux_sym_derived_type_definition_token1] = ACTIONS(5636), - [aux_sym_procedure_attribute_token6] = ACTIONS(5636), - [aux_sym_variable_attributes_token2] = ACTIONS(5636), - [aux_sym_variable_attributes_token3] = ACTIONS(5636), - [aux_sym_variable_attributes_token5] = ACTIONS(5636), - [aux_sym__intrinsic_type_token1] = ACTIONS(5636), - [aux_sym__intrinsic_type_token3] = ACTIONS(5636), - [aux_sym__intrinsic_type_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5636), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5636), - [aux_sym_type_qualifier_token1] = ACTIONS(5636), - [aux_sym_type_qualifier_token2] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5638), - [aux_sym_stop_statement_token1] = ACTIONS(5636), - [aux_sym_stop_statement_token2] = ACTIONS(5636), - [aux_sym_subroutine_call_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token1] = ACTIONS(5636), - [aux_sym_keyword_statement_token2] = ACTIONS(5636), - [aux_sym_keyword_statement_token3] = ACTIONS(5636), - [aux_sym_keyword_statement_token4] = ACTIONS(5636), - [aux_sym_keyword_statement_token6] = ACTIONS(5636), - [aux_sym_keyword_statement_token7] = ACTIONS(5636), - [aux_sym_include_statement_token1] = ACTIONS(5636), - [aux_sym_data_statement_token1] = ACTIONS(5636), - [aux_sym_do_loop_statement_token1] = ACTIONS(5636), - [aux_sym__inline_if_statement_token1] = ACTIONS(5636), - [aux_sym_end_if_statement_token1] = ACTIONS(5636), - [aux_sym_elseif_clause_token2] = ACTIONS(5636), - [aux_sym__inline_where_statement_token1] = ACTIONS(5636), - [aux_sym__forall_control_expression_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token1] = ACTIONS(5636), - [aux_sym_select_case_statement_token3] = ACTIONS(5636), - [aux_sym_select_type_statement_token1] = ACTIONS(5636), - [aux_sym_select_rank_statement_token2] = ACTIONS(5636), - [aux_sym_block_construct_token1] = ACTIONS(5636), - [aux_sym_associate_statement_token1] = ACTIONS(5636), - [aux_sym_format_statement_token1] = ACTIONS(5636), - [aux_sym_print_statement_token1] = ACTIONS(5636), - [aux_sym_open_statement_token1] = ACTIONS(5636), - [aux_sym_close_statement_token1] = ACTIONS(5636), - [aux_sym_inquire_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token1] = ACTIONS(5636), - [aux_sym_file_position_statement_token2] = ACTIONS(5636), - [aux_sym_file_position_statement_token3] = ACTIONS(5636), - [aux_sym_file_position_statement_token4] = ACTIONS(5636), - [aux_sym_allocate_statement_token1] = ACTIONS(5636), - [aux_sym_entry_statement_token1] = ACTIONS(5636), - [aux_sym_logical_expression_token5] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_LPAREN_SLASH] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [aux_sym_boolean_literal_token1] = ACTIONS(5638), - [aux_sym_boolean_literal_token2] = ACTIONS(5638), - [aux_sym_null_literal_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_statement_token2] = ACTIONS(5636), - [aux_sym_coarray_statement_token6] = ACTIONS(5636), - [aux_sym_coarray_statement_token8] = ACTIONS(5636), - [aux_sym_coarray_statement_token11] = ACTIONS(5636), - [aux_sym_coarray_statement_token12] = ACTIONS(5636), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5636), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5636), - [aux_sym_identifier_token1] = ACTIONS(5636), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5638), - [sym__float_literal] = ACTIONS(5638), - [sym__boz_literal] = ACTIONS(5638), - [sym__string_literal] = ACTIONS(5638), - [sym__string_literal_kind] = ACTIONS(5638), - }, - [2629] = { - [aux_sym_preproc_include_token1] = ACTIONS(4327), - [aux_sym_preproc_def_token1] = ACTIONS(4327), - [aux_sym_preproc_if_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), - [sym_preproc_directive] = ACTIONS(4327), - [anon_sym_LPAREN2] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_DASH] = ACTIONS(5562), + [2601] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4327), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4327), - [aux_sym_procedure_attributes_token3] = ACTIONS(4327), - [aux_sym_use_statement_token2] = ACTIONS(4327), - [aux_sym_implicit_statement_token4] = ACTIONS(4327), - [aux_sym_save_statement_token1] = ACTIONS(4327), - [aux_sym_private_statement_token1] = ACTIONS(4327), - [aux_sym_public_statement_token1] = ACTIONS(4327), - [aux_sym_derived_type_definition_token1] = ACTIONS(4327), - [aux_sym_procedure_attribute_token6] = ACTIONS(4327), - [aux_sym_variable_attributes_token2] = ACTIONS(4327), - [aux_sym_variable_attributes_token3] = ACTIONS(4327), - [aux_sym_variable_attributes_token5] = ACTIONS(4327), - [aux_sym__intrinsic_type_token1] = ACTIONS(4327), - [aux_sym__intrinsic_type_token3] = ACTIONS(4327), - [aux_sym__intrinsic_type_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4327), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4327), - [aux_sym_type_qualifier_token1] = ACTIONS(4327), - [aux_sym_type_qualifier_token2] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(5562), - [aux_sym_stop_statement_token1] = ACTIONS(4327), - [aux_sym_stop_statement_token2] = ACTIONS(4327), - [aux_sym_subroutine_call_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token1] = ACTIONS(4327), - [aux_sym_keyword_statement_token2] = ACTIONS(4327), - [aux_sym_keyword_statement_token3] = ACTIONS(4327), - [aux_sym_keyword_statement_token4] = ACTIONS(4327), - [aux_sym_keyword_statement_token6] = ACTIONS(4327), - [aux_sym_keyword_statement_token7] = ACTIONS(4327), - [aux_sym_include_statement_token1] = ACTIONS(4327), - [aux_sym_data_statement_token1] = ACTIONS(4327), - [aux_sym_do_loop_statement_token1] = ACTIONS(4327), - [aux_sym__inline_if_statement_token1] = ACTIONS(4327), - [aux_sym_end_if_statement_token1] = ACTIONS(4327), - [aux_sym_elseif_clause_token2] = ACTIONS(4327), - [aux_sym__inline_where_statement_token1] = ACTIONS(4327), - [aux_sym__forall_control_expression_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token1] = ACTIONS(4327), - [aux_sym_select_case_statement_token3] = ACTIONS(4327), - [aux_sym_select_type_statement_token1] = ACTIONS(4327), - [aux_sym_select_rank_statement_token2] = ACTIONS(4327), - [aux_sym_block_construct_token1] = ACTIONS(4327), - [aux_sym_associate_statement_token1] = ACTIONS(4327), - [aux_sym_format_statement_token1] = ACTIONS(4327), - [aux_sym_print_statement_token1] = ACTIONS(4327), - [aux_sym_open_statement_token1] = ACTIONS(4327), - [aux_sym_close_statement_token1] = ACTIONS(4327), - [aux_sym_inquire_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token1] = ACTIONS(4327), - [aux_sym_file_position_statement_token2] = ACTIONS(4327), - [aux_sym_file_position_statement_token3] = ACTIONS(4327), - [aux_sym_file_position_statement_token4] = ACTIONS(4327), - [aux_sym_allocate_statement_token1] = ACTIONS(4327), - [aux_sym_entry_statement_token1] = ACTIONS(4327), - [aux_sym_logical_expression_token5] = ACTIONS(5562), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LPAREN_SLASH] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5562), - [aux_sym_boolean_literal_token1] = ACTIONS(5562), - [aux_sym_boolean_literal_token2] = ACTIONS(5562), - [aux_sym_null_literal_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_statement_token2] = ACTIONS(4327), - [aux_sym_coarray_statement_token6] = ACTIONS(4327), - [aux_sym_coarray_statement_token8] = ACTIONS(4327), - [aux_sym_coarray_statement_token11] = ACTIONS(4327), - [aux_sym_coarray_statement_token12] = ACTIONS(4327), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4327), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4327), - [aux_sym_identifier_token1] = ACTIONS(4327), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_end_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5562), - [sym__float_literal] = ACTIONS(5562), - [sym__boz_literal] = ACTIONS(5562), - [sym__string_literal] = ACTIONS(5562), - [sym__string_literal_kind] = ACTIONS(5562), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2630] = { - [aux_sym_preproc_include_token1] = ACTIONS(4996), - [aux_sym_preproc_def_token1] = ACTIONS(4996), - [aux_sym_preproc_if_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4996), - [sym_preproc_directive] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5632), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4996), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4996), - [aux_sym_procedure_attributes_token3] = ACTIONS(4996), - [aux_sym_use_statement_token2] = ACTIONS(4996), - [aux_sym_implicit_statement_token4] = ACTIONS(4996), - [aux_sym_save_statement_token1] = ACTIONS(4996), - [aux_sym_private_statement_token1] = ACTIONS(4996), - [aux_sym_public_statement_token1] = ACTIONS(4996), - [aux_sym_derived_type_definition_token1] = ACTIONS(4996), - [aux_sym_procedure_attribute_token6] = ACTIONS(4996), - [aux_sym_variable_attributes_token2] = ACTIONS(4996), - [aux_sym_variable_attributes_token3] = ACTIONS(4996), - [aux_sym_variable_attributes_token5] = ACTIONS(4996), - [aux_sym__intrinsic_type_token1] = ACTIONS(4996), - [aux_sym__intrinsic_type_token3] = ACTIONS(4996), - [aux_sym__intrinsic_type_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4996), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4996), - [aux_sym_type_qualifier_token1] = ACTIONS(4996), - [aux_sym_type_qualifier_token2] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(5632), - [aux_sym_stop_statement_token1] = ACTIONS(4996), - [aux_sym_stop_statement_token2] = ACTIONS(4996), - [aux_sym_subroutine_call_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token1] = ACTIONS(4996), - [aux_sym_keyword_statement_token2] = ACTIONS(4996), - [aux_sym_keyword_statement_token3] = ACTIONS(4996), - [aux_sym_keyword_statement_token4] = ACTIONS(4996), - [aux_sym_keyword_statement_token6] = ACTIONS(4996), - [aux_sym_keyword_statement_token7] = ACTIONS(4996), - [aux_sym_include_statement_token1] = ACTIONS(4996), - [aux_sym_data_statement_token1] = ACTIONS(4996), - [aux_sym_do_loop_statement_token1] = ACTIONS(4996), - [aux_sym__inline_if_statement_token1] = ACTIONS(4996), - [aux_sym_end_if_statement_token1] = ACTIONS(4996), - [aux_sym_elseif_clause_token2] = ACTIONS(4996), - [aux_sym__inline_where_statement_token1] = ACTIONS(4996), - [aux_sym__forall_control_expression_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token1] = ACTIONS(4996), - [aux_sym_select_case_statement_token3] = ACTIONS(4996), - [aux_sym_select_type_statement_token1] = ACTIONS(4996), - [aux_sym_select_rank_statement_token2] = ACTIONS(4996), - [aux_sym_block_construct_token1] = ACTIONS(4996), - [aux_sym_associate_statement_token1] = ACTIONS(4996), - [aux_sym_format_statement_token1] = ACTIONS(4996), - [aux_sym_print_statement_token1] = ACTIONS(4996), - [aux_sym_open_statement_token1] = ACTIONS(4996), - [aux_sym_close_statement_token1] = ACTIONS(4996), - [aux_sym_inquire_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token1] = ACTIONS(4996), - [aux_sym_file_position_statement_token2] = ACTIONS(4996), - [aux_sym_file_position_statement_token3] = ACTIONS(4996), - [aux_sym_file_position_statement_token4] = ACTIONS(4996), - [aux_sym_allocate_statement_token1] = ACTIONS(4996), - [aux_sym_entry_statement_token1] = ACTIONS(4996), - [aux_sym_logical_expression_token5] = ACTIONS(5632), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_LPAREN_SLASH] = ACTIONS(5632), - [anon_sym_LBRACK] = ACTIONS(5632), - [aux_sym_boolean_literal_token1] = ACTIONS(5632), - [aux_sym_boolean_literal_token2] = ACTIONS(5632), - [aux_sym_null_literal_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_statement_token2] = ACTIONS(4996), - [aux_sym_coarray_statement_token6] = ACTIONS(4996), - [aux_sym_coarray_statement_token8] = ACTIONS(4996), - [aux_sym_coarray_statement_token11] = ACTIONS(4996), - [aux_sym_coarray_statement_token12] = ACTIONS(4996), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4996), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4996), - [aux_sym_identifier_token1] = ACTIONS(4996), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5632), - [sym__float_literal] = ACTIONS(5632), - [sym__boz_literal] = ACTIONS(5632), - [sym__string_literal] = ACTIONS(5632), - [sym__string_literal_kind] = ACTIONS(5632), + [2602] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2631] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_subroutine_call_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token1] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_keyword_statement_token4] = ACTIONS(4559), - [aux_sym_keyword_statement_token6] = ACTIONS(4559), - [aux_sym_keyword_statement_token7] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym_do_loop_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym__inline_where_statement_token1] = ACTIONS(4559), - [aux_sym__forall_control_expression_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_select_case_statement_token3] = ACTIONS(4559), - [aux_sym_select_type_statement_token1] = ACTIONS(4559), - [aux_sym_select_rank_statement_token2] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_associate_statement_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_print_statement_token1] = ACTIONS(4559), - [aux_sym_open_statement_token1] = ACTIONS(4559), - [aux_sym_close_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token1] = ACTIONS(4559), - [aux_sym_file_position_statement_token2] = ACTIONS(4559), - [aux_sym_file_position_statement_token3] = ACTIONS(4559), - [aux_sym_file_position_statement_token4] = ACTIONS(4559), - [aux_sym_allocate_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_logical_expression_token5] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LPAREN_SLASH] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [aux_sym_boolean_literal_token1] = ACTIONS(4561), - [aux_sym_boolean_literal_token2] = ACTIONS(4561), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - [sym__float_literal] = ACTIONS(4561), - [sym__boz_literal] = ACTIONS(4561), - [sym__string_literal] = ACTIONS(4561), - [sym__string_literal_kind] = ACTIONS(4561), + [2603] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2632] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_LPAREN2] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4569), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_subroutine_call_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token1] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_keyword_statement_token4] = ACTIONS(4567), - [aux_sym_keyword_statement_token6] = ACTIONS(4567), - [aux_sym_keyword_statement_token7] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym_do_loop_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym__inline_where_statement_token1] = ACTIONS(4567), - [aux_sym__forall_control_expression_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_select_case_statement_token3] = ACTIONS(4567), - [aux_sym_select_type_statement_token1] = ACTIONS(4567), - [aux_sym_select_rank_statement_token2] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_associate_statement_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_print_statement_token1] = ACTIONS(4567), - [aux_sym_open_statement_token1] = ACTIONS(4567), - [aux_sym_close_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token1] = ACTIONS(4567), - [aux_sym_file_position_statement_token2] = ACTIONS(4567), - [aux_sym_file_position_statement_token3] = ACTIONS(4567), - [aux_sym_file_position_statement_token4] = ACTIONS(4567), - [aux_sym_allocate_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_logical_expression_token5] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LPAREN_SLASH] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4569), - [aux_sym_boolean_literal_token1] = ACTIONS(4569), - [aux_sym_boolean_literal_token2] = ACTIONS(4569), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - [sym__float_literal] = ACTIONS(4569), - [sym__boz_literal] = ACTIONS(4569), - [sym__string_literal] = ACTIONS(4569), - [sym__string_literal_kind] = ACTIONS(4569), + [2604] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [2633] = { + [2605] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_end_block_construct_statement_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [2606] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_end_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), + }, + [2607] = { [aux_sym_preproc_include_token1] = ACTIONS(4571), [aux_sym_preproc_def_token1] = ACTIONS(4571), [aux_sym_preproc_if_token1] = ACTIONS(4571), @@ -406224,8 +403697,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), [sym_preproc_directive] = ACTIONS(4571), [anon_sym_LPAREN2] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4571), [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), @@ -406255,7 +403728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), [aux_sym_type_qualifier_token1] = ACTIONS(4571), [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(5582), [aux_sym_stop_statement_token1] = ACTIONS(4571), [aux_sym_stop_statement_token2] = ACTIONS(4571), [aux_sym_subroutine_call_token1] = ACTIONS(4571), @@ -406290,12 +403763,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_file_position_statement_token4] = ACTIONS(4571), [aux_sym_allocate_statement_token1] = ACTIONS(4571), [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_logical_expression_token5] = ACTIONS(4573), + [aux_sym_logical_expression_token5] = ACTIONS(5582), [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LPAREN_SLASH] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4573), - [aux_sym_boolean_literal_token1] = ACTIONS(4573), - [aux_sym_boolean_literal_token2] = ACTIONS(4573), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), [aux_sym_null_literal_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token1] = ACTIONS(4571), [aux_sym_coarray_statement_token2] = ACTIONS(4571), @@ -406305,1107 +403778,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(4571), [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4571), [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - [sym__float_literal] = ACTIONS(4573), - [sym__boz_literal] = ACTIONS(4573), - [sym__string_literal] = ACTIONS(4573), - [sym__string_literal_kind] = ACTIONS(4573), - }, - [2634] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_LPAREN2] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4577), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_subroutine_call_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token1] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_keyword_statement_token4] = ACTIONS(4575), - [aux_sym_keyword_statement_token6] = ACTIONS(4575), - [aux_sym_keyword_statement_token7] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym_do_loop_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym__inline_where_statement_token1] = ACTIONS(4575), - [aux_sym__forall_control_expression_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_select_case_statement_token3] = ACTIONS(4575), - [aux_sym_select_type_statement_token1] = ACTIONS(4575), - [aux_sym_select_rank_statement_token2] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_associate_statement_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_print_statement_token1] = ACTIONS(4575), - [aux_sym_open_statement_token1] = ACTIONS(4575), - [aux_sym_close_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token1] = ACTIONS(4575), - [aux_sym_file_position_statement_token2] = ACTIONS(4575), - [aux_sym_file_position_statement_token3] = ACTIONS(4575), - [aux_sym_file_position_statement_token4] = ACTIONS(4575), - [aux_sym_allocate_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_logical_expression_token5] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LPAREN_SLASH] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4577), - [aux_sym_boolean_literal_token1] = ACTIONS(4577), - [aux_sym_boolean_literal_token2] = ACTIONS(4577), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - [sym__float_literal] = ACTIONS(4577), - [sym__boz_literal] = ACTIONS(4577), - [sym__string_literal] = ACTIONS(4577), - [sym__string_literal_kind] = ACTIONS(4577), - }, - [2635] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4581), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_subroutine_call_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token1] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_keyword_statement_token4] = ACTIONS(4579), - [aux_sym_keyword_statement_token6] = ACTIONS(4579), - [aux_sym_keyword_statement_token7] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym_do_loop_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym__inline_where_statement_token1] = ACTIONS(4579), - [aux_sym__forall_control_expression_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_select_case_statement_token3] = ACTIONS(4579), - [aux_sym_select_type_statement_token1] = ACTIONS(4579), - [aux_sym_select_rank_statement_token2] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_associate_statement_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_print_statement_token1] = ACTIONS(4579), - [aux_sym_open_statement_token1] = ACTIONS(4579), - [aux_sym_close_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token1] = ACTIONS(4579), - [aux_sym_file_position_statement_token2] = ACTIONS(4579), - [aux_sym_file_position_statement_token3] = ACTIONS(4579), - [aux_sym_file_position_statement_token4] = ACTIONS(4579), - [aux_sym_allocate_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_logical_expression_token5] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4579), - [anon_sym_LPAREN_SLASH] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4581), - [aux_sym_boolean_literal_token1] = ACTIONS(4581), - [aux_sym_boolean_literal_token2] = ACTIONS(4581), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - [sym__float_literal] = ACTIONS(4581), - [sym__boz_literal] = ACTIONS(4581), - [sym__string_literal] = ACTIONS(4581), - [sym__string_literal_kind] = ACTIONS(4581), - }, - [2636] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4585), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4585), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_subroutine_call_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token1] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_keyword_statement_token4] = ACTIONS(4583), - [aux_sym_keyword_statement_token6] = ACTIONS(4583), - [aux_sym_keyword_statement_token7] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym_do_loop_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym__inline_where_statement_token1] = ACTIONS(4583), - [aux_sym__forall_control_expression_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_select_case_statement_token3] = ACTIONS(4583), - [aux_sym_select_type_statement_token1] = ACTIONS(4583), - [aux_sym_select_rank_statement_token2] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_associate_statement_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_print_statement_token1] = ACTIONS(4583), - [aux_sym_open_statement_token1] = ACTIONS(4583), - [aux_sym_close_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token1] = ACTIONS(4583), - [aux_sym_file_position_statement_token2] = ACTIONS(4583), - [aux_sym_file_position_statement_token3] = ACTIONS(4583), - [aux_sym_file_position_statement_token4] = ACTIONS(4583), - [aux_sym_allocate_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_logical_expression_token5] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LPAREN_SLASH] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4585), - [aux_sym_boolean_literal_token1] = ACTIONS(4585), - [aux_sym_boolean_literal_token2] = ACTIONS(4585), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - [sym__float_literal] = ACTIONS(4585), - [sym__boz_literal] = ACTIONS(4585), - [sym__string_literal] = ACTIONS(4585), - [sym__string_literal_kind] = ACTIONS(4585), - }, - [2637] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4589), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_subroutine_call_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token1] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_keyword_statement_token4] = ACTIONS(4587), - [aux_sym_keyword_statement_token6] = ACTIONS(4587), - [aux_sym_keyword_statement_token7] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym_do_loop_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym__inline_where_statement_token1] = ACTIONS(4587), - [aux_sym__forall_control_expression_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_select_case_statement_token3] = ACTIONS(4587), - [aux_sym_select_type_statement_token1] = ACTIONS(4587), - [aux_sym_select_rank_statement_token2] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_associate_statement_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_print_statement_token1] = ACTIONS(4587), - [aux_sym_open_statement_token1] = ACTIONS(4587), - [aux_sym_close_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token1] = ACTIONS(4587), - [aux_sym_file_position_statement_token2] = ACTIONS(4587), - [aux_sym_file_position_statement_token3] = ACTIONS(4587), - [aux_sym_file_position_statement_token4] = ACTIONS(4587), - [aux_sym_allocate_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_logical_expression_token5] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_LPAREN_SLASH] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4589), - [aux_sym_boolean_literal_token1] = ACTIONS(4589), - [aux_sym_boolean_literal_token2] = ACTIONS(4589), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - [sym__float_literal] = ACTIONS(4589), - [sym__boz_literal] = ACTIONS(4589), - [sym__string_literal] = ACTIONS(4589), - [sym__string_literal_kind] = ACTIONS(4589), - }, - [2638] = { - [sym__expression] = STATE(4287), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6544), - [sym_extent_specifier] = STATE(6544), - [sym_assumed_size] = STATE(6544), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6632), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2639] = { - [sym_identifier] = STATE(6216), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(6634), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(6636), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6638), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6638), - }, - [2640] = { - [aux_sym_preproc_include_token1] = ACTIONS(5770), - [aux_sym_preproc_def_token1] = ACTIONS(5770), - [aux_sym_preproc_if_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5770), - [sym_preproc_directive] = ACTIONS(5770), - [anon_sym_LPAREN2] = ACTIONS(5770), - [anon_sym_PLUS] = ACTIONS(5772), - [anon_sym_DASH] = ACTIONS(5772), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5770), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5770), - [aux_sym_procedure_attributes_token3] = ACTIONS(5770), - [aux_sym_use_statement_token2] = ACTIONS(5770), - [aux_sym_implicit_statement_token4] = ACTIONS(5770), - [aux_sym_save_statement_token1] = ACTIONS(5770), - [aux_sym_private_statement_token1] = ACTIONS(5770), - [aux_sym_public_statement_token1] = ACTIONS(5770), - [aux_sym_derived_type_definition_token1] = ACTIONS(5770), - [aux_sym_procedure_attribute_token6] = ACTIONS(5770), - [aux_sym_variable_attributes_token2] = ACTIONS(5770), - [aux_sym_variable_attributes_token3] = ACTIONS(5770), - [aux_sym_variable_attributes_token5] = ACTIONS(5770), - [aux_sym__intrinsic_type_token1] = ACTIONS(5770), - [aux_sym__intrinsic_type_token3] = ACTIONS(5770), - [aux_sym__intrinsic_type_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5770), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5770), - [aux_sym_type_qualifier_token1] = ACTIONS(5770), - [aux_sym_type_qualifier_token2] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(5772), - [aux_sym_stop_statement_token1] = ACTIONS(5770), - [aux_sym_stop_statement_token2] = ACTIONS(5770), - [aux_sym_subroutine_call_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token1] = ACTIONS(5770), - [aux_sym_keyword_statement_token2] = ACTIONS(5770), - [aux_sym_keyword_statement_token3] = ACTIONS(5770), - [aux_sym_keyword_statement_token4] = ACTIONS(5770), - [aux_sym_keyword_statement_token6] = ACTIONS(5770), - [aux_sym_keyword_statement_token7] = ACTIONS(5770), - [aux_sym_include_statement_token1] = ACTIONS(5770), - [aux_sym_data_statement_token1] = ACTIONS(5770), - [aux_sym_do_loop_statement_token1] = ACTIONS(5770), - [aux_sym__inline_if_statement_token1] = ACTIONS(5770), - [aux_sym_end_if_statement_token1] = ACTIONS(5770), - [aux_sym_elseif_clause_token2] = ACTIONS(5770), - [aux_sym__inline_where_statement_token1] = ACTIONS(5770), - [aux_sym__forall_control_expression_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token1] = ACTIONS(5770), - [aux_sym_select_case_statement_token3] = ACTIONS(5770), - [aux_sym_select_type_statement_token1] = ACTIONS(5770), - [aux_sym_select_rank_statement_token2] = ACTIONS(5770), - [aux_sym_block_construct_token1] = ACTIONS(5770), - [aux_sym_associate_statement_token1] = ACTIONS(5770), - [aux_sym_format_statement_token1] = ACTIONS(5770), - [aux_sym_print_statement_token1] = ACTIONS(5770), - [aux_sym_open_statement_token1] = ACTIONS(5770), - [aux_sym_close_statement_token1] = ACTIONS(5770), - [aux_sym_inquire_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token1] = ACTIONS(5770), - [aux_sym_file_position_statement_token2] = ACTIONS(5770), - [aux_sym_file_position_statement_token3] = ACTIONS(5770), - [aux_sym_file_position_statement_token4] = ACTIONS(5770), - [aux_sym_allocate_statement_token1] = ACTIONS(5770), - [aux_sym_entry_statement_token1] = ACTIONS(5770), - [aux_sym_logical_expression_token5] = ACTIONS(5772), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_SLASH] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(5772), - [aux_sym_boolean_literal_token1] = ACTIONS(5772), - [aux_sym_boolean_literal_token2] = ACTIONS(5772), - [aux_sym_null_literal_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_statement_token2] = ACTIONS(5770), - [aux_sym_coarray_statement_token6] = ACTIONS(5770), - [aux_sym_coarray_statement_token8] = ACTIONS(5770), - [aux_sym_coarray_statement_token11] = ACTIONS(5770), - [aux_sym_coarray_statement_token12] = ACTIONS(5770), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5770), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5770), - [aux_sym_identifier_token1] = ACTIONS(5770), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5772), - [sym__float_literal] = ACTIONS(5772), - [sym__boz_literal] = ACTIONS(5772), - [sym__string_literal] = ACTIONS(5772), - [sym__string_literal_kind] = ACTIONS(5772), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2641] = { - [sym__expression] = STATE(4268), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6544), - [sym_extent_specifier] = STATE(6544), - [sym_assumed_size] = STATE(6544), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), + [2608] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6632), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_end_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2642] = { - [aux_sym_preproc_include_token1] = ACTIONS(5710), - [aux_sym_preproc_def_token1] = ACTIONS(5710), - [aux_sym_preproc_if_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5710), - [sym_preproc_directive] = ACTIONS(5710), - [anon_sym_LPAREN2] = ACTIONS(5710), - [anon_sym_PLUS] = ACTIONS(5712), - [anon_sym_DASH] = ACTIONS(5712), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5710), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5710), - [aux_sym_procedure_attributes_token3] = ACTIONS(5710), - [aux_sym_use_statement_token2] = ACTIONS(5710), - [aux_sym_implicit_statement_token4] = ACTIONS(5710), - [aux_sym_save_statement_token1] = ACTIONS(5710), - [aux_sym_private_statement_token1] = ACTIONS(5710), - [aux_sym_public_statement_token1] = ACTIONS(5710), - [aux_sym_derived_type_definition_token1] = ACTIONS(5710), - [aux_sym_procedure_attribute_token6] = ACTIONS(5710), - [aux_sym_variable_attributes_token2] = ACTIONS(5710), - [aux_sym_variable_attributes_token3] = ACTIONS(5710), - [aux_sym_variable_attributes_token5] = ACTIONS(5710), - [aux_sym__intrinsic_type_token1] = ACTIONS(5710), - [aux_sym__intrinsic_type_token3] = ACTIONS(5710), - [aux_sym__intrinsic_type_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5710), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5710), - [aux_sym_type_qualifier_token1] = ACTIONS(5710), - [aux_sym_type_qualifier_token2] = ACTIONS(5710), - [anon_sym_SEMI] = ACTIONS(5712), - [aux_sym_stop_statement_token1] = ACTIONS(5710), - [aux_sym_stop_statement_token2] = ACTIONS(5710), - [aux_sym_subroutine_call_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token1] = ACTIONS(5710), - [aux_sym_keyword_statement_token2] = ACTIONS(5710), - [aux_sym_keyword_statement_token3] = ACTIONS(5710), - [aux_sym_keyword_statement_token4] = ACTIONS(5710), - [aux_sym_keyword_statement_token6] = ACTIONS(5710), - [aux_sym_keyword_statement_token7] = ACTIONS(5710), - [aux_sym_include_statement_token1] = ACTIONS(5710), - [aux_sym_data_statement_token1] = ACTIONS(5710), - [aux_sym_do_loop_statement_token1] = ACTIONS(5710), - [aux_sym__inline_if_statement_token1] = ACTIONS(5710), - [aux_sym_end_if_statement_token1] = ACTIONS(5710), - [aux_sym_elseif_clause_token2] = ACTIONS(5710), - [aux_sym__inline_where_statement_token1] = ACTIONS(5710), - [aux_sym__forall_control_expression_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token1] = ACTIONS(5710), - [aux_sym_select_case_statement_token3] = ACTIONS(5710), - [aux_sym_select_type_statement_token1] = ACTIONS(5710), - [aux_sym_select_rank_statement_token2] = ACTIONS(5710), - [aux_sym_block_construct_token1] = ACTIONS(5710), - [aux_sym_associate_statement_token1] = ACTIONS(5710), - [aux_sym_format_statement_token1] = ACTIONS(5710), - [aux_sym_print_statement_token1] = ACTIONS(5710), - [aux_sym_open_statement_token1] = ACTIONS(5710), - [aux_sym_close_statement_token1] = ACTIONS(5710), - [aux_sym_inquire_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token1] = ACTIONS(5710), - [aux_sym_file_position_statement_token2] = ACTIONS(5710), - [aux_sym_file_position_statement_token3] = ACTIONS(5710), - [aux_sym_file_position_statement_token4] = ACTIONS(5710), - [aux_sym_allocate_statement_token1] = ACTIONS(5710), - [aux_sym_entry_statement_token1] = ACTIONS(5710), - [aux_sym_logical_expression_token5] = ACTIONS(5712), - [anon_sym_DOT] = ACTIONS(5710), - [anon_sym_LPAREN_SLASH] = ACTIONS(5712), - [anon_sym_LBRACK] = ACTIONS(5712), - [aux_sym_boolean_literal_token1] = ACTIONS(5712), - [aux_sym_boolean_literal_token2] = ACTIONS(5712), - [aux_sym_null_literal_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_statement_token2] = ACTIONS(5710), - [aux_sym_coarray_statement_token6] = ACTIONS(5710), - [aux_sym_coarray_statement_token8] = ACTIONS(5710), - [aux_sym_coarray_statement_token11] = ACTIONS(5710), - [aux_sym_coarray_statement_token12] = ACTIONS(5710), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5710), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5710), - [aux_sym_identifier_token1] = ACTIONS(5710), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5712), - [sym__float_literal] = ACTIONS(5712), - [sym__boz_literal] = ACTIONS(5712), - [sym__string_literal] = ACTIONS(5712), - [sym__string_literal_kind] = ACTIONS(5712), + [2609] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_end_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2643] = { - [aux_sym_preproc_include_token1] = ACTIONS(4295), - [aux_sym_preproc_def_token1] = ACTIONS(4295), - [aux_sym_preproc_if_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4295), - [sym_preproc_directive] = ACTIONS(4295), - [anon_sym_LPAREN2] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4295), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4295), - [aux_sym_procedure_attributes_token3] = ACTIONS(4295), - [aux_sym_use_statement_token2] = ACTIONS(4295), - [aux_sym_implicit_statement_token4] = ACTIONS(4295), - [aux_sym_save_statement_token1] = ACTIONS(4295), - [aux_sym_private_statement_token1] = ACTIONS(4295), - [aux_sym_public_statement_token1] = ACTIONS(4295), - [aux_sym_derived_type_definition_token1] = ACTIONS(4295), - [aux_sym_procedure_attribute_token6] = ACTIONS(4295), - [aux_sym_variable_attributes_token2] = ACTIONS(4295), - [aux_sym_variable_attributes_token3] = ACTIONS(4295), - [aux_sym_variable_attributes_token5] = ACTIONS(4295), - [aux_sym__intrinsic_type_token1] = ACTIONS(4295), - [aux_sym__intrinsic_type_token3] = ACTIONS(4295), - [aux_sym__intrinsic_type_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4295), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4295), - [aux_sym_type_qualifier_token1] = ACTIONS(4295), - [aux_sym_type_qualifier_token2] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(5566), - [aux_sym_stop_statement_token1] = ACTIONS(4295), - [aux_sym_stop_statement_token2] = ACTIONS(4295), - [aux_sym_subroutine_call_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token1] = ACTIONS(4295), - [aux_sym_keyword_statement_token2] = ACTIONS(4295), - [aux_sym_keyword_statement_token3] = ACTIONS(4295), - [aux_sym_keyword_statement_token4] = ACTIONS(4295), - [aux_sym_keyword_statement_token6] = ACTIONS(4295), - [aux_sym_keyword_statement_token7] = ACTIONS(4295), - [aux_sym_include_statement_token1] = ACTIONS(4295), - [aux_sym_data_statement_token1] = ACTIONS(4295), - [aux_sym_do_loop_statement_token1] = ACTIONS(4295), - [aux_sym__inline_if_statement_token1] = ACTIONS(4295), - [aux_sym_end_if_statement_token1] = ACTIONS(4295), - [aux_sym_elseif_clause_token2] = ACTIONS(4295), - [aux_sym__inline_where_statement_token1] = ACTIONS(4295), - [aux_sym__forall_control_expression_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token1] = ACTIONS(4295), - [aux_sym_select_case_statement_token3] = ACTIONS(4295), - [aux_sym_select_type_statement_token1] = ACTIONS(4295), - [aux_sym_select_rank_statement_token2] = ACTIONS(4295), - [aux_sym_block_construct_token1] = ACTIONS(4295), - [aux_sym_associate_statement_token1] = ACTIONS(4295), - [aux_sym_format_statement_token1] = ACTIONS(4295), - [aux_sym_print_statement_token1] = ACTIONS(4295), - [aux_sym_open_statement_token1] = ACTIONS(4295), - [aux_sym_close_statement_token1] = ACTIONS(4295), - [aux_sym_inquire_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token1] = ACTIONS(4295), - [aux_sym_file_position_statement_token2] = ACTIONS(4295), - [aux_sym_file_position_statement_token3] = ACTIONS(4295), - [aux_sym_file_position_statement_token4] = ACTIONS(4295), - [aux_sym_allocate_statement_token1] = ACTIONS(4295), - [aux_sym_entry_statement_token1] = ACTIONS(4295), - [aux_sym_logical_expression_token5] = ACTIONS(5566), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LPAREN_SLASH] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5566), - [aux_sym_boolean_literal_token1] = ACTIONS(5566), - [aux_sym_boolean_literal_token2] = ACTIONS(5566), - [aux_sym_null_literal_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_statement_token2] = ACTIONS(4295), - [aux_sym_coarray_statement_token6] = ACTIONS(4295), - [aux_sym_coarray_statement_token8] = ACTIONS(4295), - [aux_sym_coarray_statement_token11] = ACTIONS(4295), - [aux_sym_coarray_statement_token12] = ACTIONS(4295), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4295), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4295), - [aux_sym_identifier_token1] = ACTIONS(4295), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5566), - [sym__float_literal] = ACTIONS(5566), - [sym__boz_literal] = ACTIONS(5566), - [sym__string_literal] = ACTIONS(5566), - [sym__string_literal_kind] = ACTIONS(5566), + [2610] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_end_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), }, - [2644] = { - [aux_sym_preproc_include_token1] = ACTIONS(5750), - [aux_sym_preproc_def_token1] = ACTIONS(5750), - [aux_sym_preproc_if_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5750), - [sym_preproc_directive] = ACTIONS(5750), - [anon_sym_LPAREN2] = ACTIONS(5750), - [anon_sym_PLUS] = ACTIONS(5752), - [anon_sym_DASH] = ACTIONS(5752), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5750), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5750), - [aux_sym_procedure_attributes_token3] = ACTIONS(5750), - [aux_sym_use_statement_token2] = ACTIONS(5750), - [aux_sym_implicit_statement_token4] = ACTIONS(5750), - [aux_sym_save_statement_token1] = ACTIONS(5750), - [aux_sym_private_statement_token1] = ACTIONS(5750), - [aux_sym_public_statement_token1] = ACTIONS(5750), - [aux_sym_derived_type_definition_token1] = ACTIONS(5750), - [aux_sym_procedure_attribute_token6] = ACTIONS(5750), - [aux_sym_variable_attributes_token2] = ACTIONS(5750), - [aux_sym_variable_attributes_token3] = ACTIONS(5750), - [aux_sym_variable_attributes_token5] = ACTIONS(5750), - [aux_sym__intrinsic_type_token1] = ACTIONS(5750), - [aux_sym__intrinsic_type_token3] = ACTIONS(5750), - [aux_sym__intrinsic_type_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5750), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5750), - [aux_sym_type_qualifier_token1] = ACTIONS(5750), - [aux_sym_type_qualifier_token2] = ACTIONS(5750), - [anon_sym_SEMI] = ACTIONS(5752), - [aux_sym_stop_statement_token1] = ACTIONS(5750), - [aux_sym_stop_statement_token2] = ACTIONS(5750), - [aux_sym_subroutine_call_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token1] = ACTIONS(5750), - [aux_sym_keyword_statement_token2] = ACTIONS(5750), - [aux_sym_keyword_statement_token3] = ACTIONS(5750), - [aux_sym_keyword_statement_token4] = ACTIONS(5750), - [aux_sym_keyword_statement_token6] = ACTIONS(5750), - [aux_sym_keyword_statement_token7] = ACTIONS(5750), - [aux_sym_include_statement_token1] = ACTIONS(5750), - [aux_sym_data_statement_token1] = ACTIONS(5750), - [aux_sym_do_loop_statement_token1] = ACTIONS(5750), - [aux_sym__inline_if_statement_token1] = ACTIONS(5750), - [aux_sym_end_if_statement_token1] = ACTIONS(5750), - [aux_sym_elseif_clause_token2] = ACTIONS(5750), - [aux_sym__inline_where_statement_token1] = ACTIONS(5750), - [aux_sym__forall_control_expression_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token1] = ACTIONS(5750), - [aux_sym_select_case_statement_token3] = ACTIONS(5750), - [aux_sym_select_type_statement_token1] = ACTIONS(5750), - [aux_sym_select_rank_statement_token2] = ACTIONS(5750), - [aux_sym_block_construct_token1] = ACTIONS(5750), - [aux_sym_associate_statement_token1] = ACTIONS(5750), - [aux_sym_format_statement_token1] = ACTIONS(5750), - [aux_sym_print_statement_token1] = ACTIONS(5750), - [aux_sym_open_statement_token1] = ACTIONS(5750), - [aux_sym_close_statement_token1] = ACTIONS(5750), - [aux_sym_inquire_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token1] = ACTIONS(5750), - [aux_sym_file_position_statement_token2] = ACTIONS(5750), - [aux_sym_file_position_statement_token3] = ACTIONS(5750), - [aux_sym_file_position_statement_token4] = ACTIONS(5750), - [aux_sym_allocate_statement_token1] = ACTIONS(5750), - [aux_sym_entry_statement_token1] = ACTIONS(5750), - [aux_sym_logical_expression_token5] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5750), - [anon_sym_LPAREN_SLASH] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [aux_sym_boolean_literal_token1] = ACTIONS(5752), - [aux_sym_boolean_literal_token2] = ACTIONS(5752), - [aux_sym_null_literal_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_statement_token2] = ACTIONS(5750), - [aux_sym_coarray_statement_token6] = ACTIONS(5750), - [aux_sym_coarray_statement_token8] = ACTIONS(5750), - [aux_sym_coarray_statement_token11] = ACTIONS(5750), - [aux_sym_coarray_statement_token12] = ACTIONS(5750), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5750), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5750), - [aux_sym_identifier_token1] = ACTIONS(5750), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5752), - [sym__float_literal] = ACTIONS(5752), - [sym__boz_literal] = ACTIONS(5752), - [sym__string_literal] = ACTIONS(5752), - [sym__string_literal_kind] = ACTIONS(5752), + [2611] = { + [aux_sym_preproc_include_token1] = ACTIONS(5522), + [aux_sym_preproc_def_token1] = ACTIONS(5522), + [aux_sym_preproc_if_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), + [sym_preproc_directive] = ACTIONS(5522), + [anon_sym_LPAREN2] = ACTIONS(5522), + [sym_preproc_comment] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5522), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5522), + [aux_sym_procedure_attributes_token3] = ACTIONS(5522), + [aux_sym_use_statement_token2] = ACTIONS(5522), + [aux_sym_implicit_statement_token4] = ACTIONS(5522), + [aux_sym_save_statement_token1] = ACTIONS(5522), + [aux_sym_private_statement_token1] = ACTIONS(5522), + [aux_sym_public_statement_token1] = ACTIONS(5522), + [aux_sym_derived_type_definition_token1] = ACTIONS(5522), + [aux_sym_procedure_attribute_token6] = ACTIONS(5522), + [aux_sym_variable_attributes_token2] = ACTIONS(5522), + [aux_sym_variable_attributes_token3] = ACTIONS(5522), + [aux_sym_variable_attributes_token5] = ACTIONS(5522), + [aux_sym__intrinsic_type_token1] = ACTIONS(5522), + [aux_sym__intrinsic_type_token3] = ACTIONS(5522), + [aux_sym__intrinsic_type_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5522), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5522), + [aux_sym_type_qualifier_token1] = ACTIONS(5522), + [aux_sym_type_qualifier_token2] = ACTIONS(5522), + [anon_sym_SEMI] = ACTIONS(5526), + [aux_sym_stop_statement_token1] = ACTIONS(5522), + [aux_sym_stop_statement_token2] = ACTIONS(5522), + [aux_sym_subroutine_call_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token1] = ACTIONS(5522), + [aux_sym_keyword_statement_token2] = ACTIONS(5522), + [aux_sym_keyword_statement_token3] = ACTIONS(5522), + [aux_sym_keyword_statement_token4] = ACTIONS(5522), + [aux_sym_keyword_statement_token6] = ACTIONS(5522), + [aux_sym_keyword_statement_token7] = ACTIONS(5522), + [aux_sym_include_statement_token1] = ACTIONS(5522), + [aux_sym_data_statement_token1] = ACTIONS(5522), + [aux_sym_do_loop_statement_token1] = ACTIONS(5522), + [aux_sym__inline_if_statement_token1] = ACTIONS(5522), + [aux_sym_end_if_statement_token1] = ACTIONS(5522), + [aux_sym_elseif_clause_token2] = ACTIONS(5522), + [aux_sym__inline_where_statement_token1] = ACTIONS(5522), + [aux_sym__forall_control_expression_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token1] = ACTIONS(5522), + [aux_sym_select_case_statement_token3] = ACTIONS(5522), + [aux_sym_select_type_statement_token1] = ACTIONS(5522), + [aux_sym_select_rank_statement_token2] = ACTIONS(5522), + [aux_sym_block_construct_token1] = ACTIONS(5522), + [aux_sym_associate_statement_token1] = ACTIONS(5522), + [aux_sym_format_statement_token1] = ACTIONS(5522), + [aux_sym_print_statement_token1] = ACTIONS(5522), + [aux_sym_open_statement_token1] = ACTIONS(5522), + [aux_sym_close_statement_token1] = ACTIONS(5522), + [aux_sym_inquire_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token1] = ACTIONS(5522), + [aux_sym_file_position_statement_token2] = ACTIONS(5522), + [aux_sym_file_position_statement_token3] = ACTIONS(5522), + [aux_sym_file_position_statement_token4] = ACTIONS(5522), + [aux_sym_allocate_statement_token1] = ACTIONS(5522), + [aux_sym_entry_statement_token1] = ACTIONS(5522), + [aux_sym_logical_expression_token5] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(5522), + [anon_sym_LPAREN_SLASH] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(5526), + [aux_sym_boolean_literal_token1] = ACTIONS(5526), + [aux_sym_boolean_literal_token2] = ACTIONS(5526), + [aux_sym_null_literal_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_statement_token2] = ACTIONS(5522), + [aux_sym_coarray_statement_token6] = ACTIONS(5522), + [aux_sym_coarray_statement_token8] = ACTIONS(5522), + [aux_sym_coarray_statement_token11] = ACTIONS(5522), + [aux_sym_coarray_statement_token12] = ACTIONS(5522), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5522), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5522), + [aux_sym_identifier_token1] = ACTIONS(5522), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5526), + [sym__float_literal] = ACTIONS(5526), + [sym__boz_literal] = ACTIONS(5526), + [sym__string_literal] = ACTIONS(5526), + [sym__string_literal_kind] = ACTIONS(5526), }, - [2645] = { - [sym__expression] = STATE(4304), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6290), - [sym_extent_specifier] = STATE(6290), - [sym_assumed_size] = STATE(6290), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_RPAREN] = ACTIONS(6640), + [2612] = { + [aux_sym_preproc_include_token1] = ACTIONS(5648), + [aux_sym_preproc_def_token1] = ACTIONS(5648), + [aux_sym_preproc_if_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5648), + [sym_preproc_directive] = ACTIONS(5648), + [anon_sym_LPAREN2] = ACTIONS(5648), + [anon_sym_PLUS] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5648), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5648), + [aux_sym_procedure_attributes_token3] = ACTIONS(5648), + [aux_sym_use_statement_token2] = ACTIONS(5648), + [aux_sym_implicit_statement_token4] = ACTIONS(5648), + [aux_sym_save_statement_token1] = ACTIONS(5648), + [aux_sym_private_statement_token1] = ACTIONS(5648), + [aux_sym_public_statement_token1] = ACTIONS(5648), + [aux_sym_derived_type_definition_token1] = ACTIONS(5648), + [aux_sym_procedure_attribute_token6] = ACTIONS(5648), + [aux_sym_variable_attributes_token2] = ACTIONS(5648), + [aux_sym_variable_attributes_token3] = ACTIONS(5648), + [aux_sym_variable_attributes_token5] = ACTIONS(5648), + [aux_sym__intrinsic_type_token1] = ACTIONS(5648), + [aux_sym__intrinsic_type_token3] = ACTIONS(5648), + [aux_sym__intrinsic_type_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5648), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5648), + [aux_sym_type_qualifier_token1] = ACTIONS(5648), + [aux_sym_type_qualifier_token2] = ACTIONS(5648), + [anon_sym_SEMI] = ACTIONS(5650), + [aux_sym_stop_statement_token1] = ACTIONS(5648), + [aux_sym_stop_statement_token2] = ACTIONS(5648), + [aux_sym_subroutine_call_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token1] = ACTIONS(5648), + [aux_sym_keyword_statement_token2] = ACTIONS(5648), + [aux_sym_keyword_statement_token3] = ACTIONS(5648), + [aux_sym_keyword_statement_token4] = ACTIONS(5648), + [aux_sym_keyword_statement_token6] = ACTIONS(5648), + [aux_sym_keyword_statement_token7] = ACTIONS(5648), + [aux_sym_include_statement_token1] = ACTIONS(5648), + [aux_sym_data_statement_token1] = ACTIONS(5648), + [aux_sym_do_loop_statement_token1] = ACTIONS(5648), + [aux_sym__inline_if_statement_token1] = ACTIONS(5648), + [aux_sym_end_if_statement_token1] = ACTIONS(5648), + [aux_sym_elseif_clause_token2] = ACTIONS(5648), + [aux_sym__inline_where_statement_token1] = ACTIONS(5648), + [aux_sym__forall_control_expression_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token1] = ACTIONS(5648), + [aux_sym_select_case_statement_token3] = ACTIONS(5648), + [aux_sym_select_type_statement_token1] = ACTIONS(5648), + [aux_sym_select_rank_statement_token2] = ACTIONS(5648), + [aux_sym_block_construct_token1] = ACTIONS(5648), + [aux_sym_associate_statement_token1] = ACTIONS(5648), + [aux_sym_format_statement_token1] = ACTIONS(5648), + [aux_sym_print_statement_token1] = ACTIONS(5648), + [aux_sym_open_statement_token1] = ACTIONS(5648), + [aux_sym_close_statement_token1] = ACTIONS(5648), + [aux_sym_inquire_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token1] = ACTIONS(5648), + [aux_sym_file_position_statement_token2] = ACTIONS(5648), + [aux_sym_file_position_statement_token3] = ACTIONS(5648), + [aux_sym_file_position_statement_token4] = ACTIONS(5648), + [aux_sym_allocate_statement_token1] = ACTIONS(5648), + [aux_sym_entry_statement_token1] = ACTIONS(5648), + [aux_sym_logical_expression_token5] = ACTIONS(5650), + [anon_sym_DOT] = ACTIONS(5648), + [anon_sym_LPAREN_SLASH] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(5650), + [aux_sym_boolean_literal_token1] = ACTIONS(5650), + [aux_sym_boolean_literal_token2] = ACTIONS(5650), + [aux_sym_null_literal_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_statement_token2] = ACTIONS(5648), + [aux_sym_coarray_statement_token6] = ACTIONS(5648), + [aux_sym_coarray_statement_token8] = ACTIONS(5648), + [aux_sym_coarray_statement_token11] = ACTIONS(5648), + [aux_sym_coarray_statement_token12] = ACTIONS(5648), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5648), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5648), + [aux_sym_identifier_token1] = ACTIONS(5648), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5650), + [sym__float_literal] = ACTIONS(5650), + [sym__boz_literal] = ACTIONS(5650), + [sym__string_literal] = ACTIONS(5650), + [sym__string_literal_kind] = ACTIONS(5650), + }, + [2613] = { + [aux_sym_preproc_include_token1] = ACTIONS(4361), + [aux_sym_preproc_def_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4361), + [sym_preproc_directive] = ACTIONS(4361), + [anon_sym_LPAREN2] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4361), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4361), + [aux_sym_procedure_attributes_token3] = ACTIONS(4361), + [aux_sym_use_statement_token2] = ACTIONS(4361), + [aux_sym_implicit_statement_token4] = ACTIONS(4361), + [aux_sym_save_statement_token1] = ACTIONS(4361), + [aux_sym_private_statement_token1] = ACTIONS(4361), + [aux_sym_public_statement_token1] = ACTIONS(4361), + [aux_sym_derived_type_definition_token1] = ACTIONS(4361), + [aux_sym_procedure_attribute_token6] = ACTIONS(4361), + [aux_sym_variable_attributes_token2] = ACTIONS(4361), + [aux_sym_variable_attributes_token3] = ACTIONS(4361), + [aux_sym_variable_attributes_token5] = ACTIONS(4361), + [aux_sym__intrinsic_type_token1] = ACTIONS(4361), + [aux_sym__intrinsic_type_token3] = ACTIONS(4361), + [aux_sym__intrinsic_type_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4361), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4361), + [aux_sym_type_qualifier_token1] = ACTIONS(4361), + [aux_sym_type_qualifier_token2] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(5586), + [aux_sym_stop_statement_token1] = ACTIONS(4361), + [aux_sym_stop_statement_token2] = ACTIONS(4361), + [aux_sym_subroutine_call_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token1] = ACTIONS(4361), + [aux_sym_keyword_statement_token2] = ACTIONS(4361), + [aux_sym_keyword_statement_token3] = ACTIONS(4361), + [aux_sym_keyword_statement_token4] = ACTIONS(4361), + [aux_sym_keyword_statement_token6] = ACTIONS(4361), + [aux_sym_keyword_statement_token7] = ACTIONS(4361), + [aux_sym_include_statement_token1] = ACTIONS(4361), + [aux_sym_data_statement_token1] = ACTIONS(4361), + [aux_sym_do_loop_statement_token1] = ACTIONS(4361), + [aux_sym__inline_if_statement_token1] = ACTIONS(4361), + [aux_sym_end_if_statement_token1] = ACTIONS(4361), + [aux_sym_elseif_clause_token2] = ACTIONS(4361), + [aux_sym__inline_where_statement_token1] = ACTIONS(4361), + [aux_sym__forall_control_expression_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token1] = ACTIONS(4361), + [aux_sym_select_case_statement_token3] = ACTIONS(4361), + [aux_sym_select_type_statement_token1] = ACTIONS(4361), + [aux_sym_select_rank_statement_token2] = ACTIONS(4361), + [aux_sym_block_construct_token1] = ACTIONS(4361), + [aux_sym_associate_statement_token1] = ACTIONS(4361), + [aux_sym_format_statement_token1] = ACTIONS(4361), + [aux_sym_print_statement_token1] = ACTIONS(4361), + [aux_sym_open_statement_token1] = ACTIONS(4361), + [aux_sym_close_statement_token1] = ACTIONS(4361), + [aux_sym_inquire_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token1] = ACTIONS(4361), + [aux_sym_file_position_statement_token2] = ACTIONS(4361), + [aux_sym_file_position_statement_token3] = ACTIONS(4361), + [aux_sym_file_position_statement_token4] = ACTIONS(4361), + [aux_sym_allocate_statement_token1] = ACTIONS(4361), + [aux_sym_entry_statement_token1] = ACTIONS(4361), + [aux_sym_logical_expression_token5] = ACTIONS(5586), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LPAREN_SLASH] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(5586), + [aux_sym_boolean_literal_token1] = ACTIONS(5586), + [aux_sym_boolean_literal_token2] = ACTIONS(5586), + [aux_sym_null_literal_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_statement_token2] = ACTIONS(4361), + [aux_sym_coarray_statement_token6] = ACTIONS(4361), + [aux_sym_coarray_statement_token8] = ACTIONS(4361), + [aux_sym_coarray_statement_token11] = ACTIONS(4361), + [aux_sym_coarray_statement_token12] = ACTIONS(4361), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4361), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4361), + [aux_sym_identifier_token1] = ACTIONS(4361), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5586), + [sym__float_literal] = ACTIONS(5586), + [sym__boz_literal] = ACTIONS(5586), + [sym__string_literal] = ACTIONS(5586), + [sym__string_literal_kind] = ACTIONS(5586), + }, + [2614] = { + [sym__expression] = STATE(4285), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6695), + [sym_extent_specifier] = STATE(6695), + [sym_assumed_size] = STATE(6695), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), + [anon_sym_RPAREN] = ACTIONS(6610), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -407428,10 +404421,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -407448,14 +404441,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6642), + [sym_assumed_rank] = ACTIONS(6620), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [aux_sym_boolean_literal_token1] = ACTIONS(167), @@ -407471,38 +404464,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2646] = { - [sym__expression] = STATE(4315), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6290), - [sym_extent_specifier] = STATE(6290), - [sym_assumed_size] = STATE(6290), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_RPAREN] = ACTIONS(6640), + [2615] = { + [sym__expression] = STATE(4303), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6856), + [sym_extent_specifier] = STATE(6856), + [sym_assumed_size] = STATE(6856), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), + [anon_sym_RPAREN] = ACTIONS(6622), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -407525,10 +404518,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -407545,14 +404538,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6642), + [sym_assumed_rank] = ACTIONS(6624), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [aux_sym_boolean_literal_token1] = ACTIONS(167), @@ -407568,229 +404561,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2647] = { - [sym__argument_list] = STATE(2391), - [sym_argument_list] = STATE(3346), - [anon_sym_LPAREN2] = ACTIONS(6644), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5600), - [anon_sym_COLON] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5600), - [aux_sym_use_statement_token2] = ACTIONS(5600), - [anon_sym_COLON_COLON] = ACTIONS(6646), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5600), - [aux_sym_save_statement_token1] = ACTIONS(5600), - [aux_sym_private_statement_token1] = ACTIONS(5600), - [aux_sym_public_statement_token1] = ACTIONS(5600), - [aux_sym_derived_type_definition_token1] = ACTIONS(5600), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5600), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5600), - [aux_sym_variable_attributes_token3] = ACTIONS(5600), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5600), - [aux_sym__intrinsic_type_token1] = ACTIONS(5600), - [aux_sym__intrinsic_type_token3] = ACTIONS(5600), - [aux_sym__intrinsic_type_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5600), - [aux_sym_type_qualifier_token2] = ACTIONS(5600), - [aux_sym_stop_statement_token1] = ACTIONS(5600), - [aux_sym_stop_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token3] = ACTIONS(5600), - [aux_sym_data_statement_token1] = ACTIONS(5600), - [aux_sym__inline_if_statement_token1] = ACTIONS(5600), - [aux_sym_end_if_statement_token1] = ACTIONS(5600), - [aux_sym_elseif_clause_token2] = ACTIONS(5600), - [aux_sym_select_case_statement_token1] = ACTIONS(5600), - [aux_sym_block_construct_token1] = ACTIONS(5600), - [aux_sym_format_statement_token1] = ACTIONS(5600), - [aux_sym_inquire_statement_token1] = ACTIONS(5600), - [aux_sym_entry_statement_token1] = ACTIONS(5600), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token2] = ACTIONS(5600), - [aux_sym_coarray_statement_token6] = ACTIONS(5600), - [aux_sym_coarray_statement_token8] = ACTIONS(5600), - [aux_sym_coarray_statement_token11] = ACTIONS(5600), - [aux_sym_coarray_statement_token12] = ACTIONS(5600), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), - [aux_sym_identifier_token1] = ACTIONS(5600), - [sym_comment] = ACTIONS(21), - }, - [2648] = { - [sym_statement_label] = STATE(3920), - [sym_statement_label_reference] = STATE(7330), - [sym_format_identifier] = STATE(7275), - [sym__io_expressions] = STATE(7330), - [sym__expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(5047), - [sym_derived_type_member_expression] = STATE(5047), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(5047), - [sym_math_expression] = STATE(5047), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(5047), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6407), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(5047), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4701), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(6648), + [2616] = { + [aux_sym_preproc_include_token1] = ACTIONS(5620), + [aux_sym_preproc_def_token1] = ACTIONS(5620), + [aux_sym_preproc_if_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5620), + [sym_preproc_directive] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5620), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5620), + [aux_sym_procedure_attributes_token3] = ACTIONS(5620), + [aux_sym_use_statement_token2] = ACTIONS(5620), + [aux_sym_implicit_statement_token4] = ACTIONS(5620), + [aux_sym_save_statement_token1] = ACTIONS(5620), + [aux_sym_private_statement_token1] = ACTIONS(5620), + [aux_sym_public_statement_token1] = ACTIONS(5620), + [aux_sym_derived_type_definition_token1] = ACTIONS(5620), + [aux_sym_procedure_attribute_token6] = ACTIONS(5620), + [aux_sym_variable_attributes_token2] = ACTIONS(5620), + [aux_sym_variable_attributes_token3] = ACTIONS(5620), + [aux_sym_variable_attributes_token5] = ACTIONS(5620), + [aux_sym__intrinsic_type_token1] = ACTIONS(5620), + [aux_sym__intrinsic_type_token3] = ACTIONS(5620), + [aux_sym__intrinsic_type_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5620), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5620), + [aux_sym_type_qualifier_token1] = ACTIONS(5620), + [aux_sym_type_qualifier_token2] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5622), + [aux_sym_stop_statement_token1] = ACTIONS(5620), + [aux_sym_stop_statement_token2] = ACTIONS(5620), + [aux_sym_subroutine_call_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token1] = ACTIONS(5620), + [aux_sym_keyword_statement_token2] = ACTIONS(5620), + [aux_sym_keyword_statement_token3] = ACTIONS(5620), + [aux_sym_keyword_statement_token4] = ACTIONS(5620), + [aux_sym_keyword_statement_token6] = ACTIONS(5620), + [aux_sym_keyword_statement_token7] = ACTIONS(5620), + [aux_sym_include_statement_token1] = ACTIONS(5620), + [aux_sym_data_statement_token1] = ACTIONS(5620), + [aux_sym_do_loop_statement_token1] = ACTIONS(5620), + [aux_sym__inline_if_statement_token1] = ACTIONS(5620), + [aux_sym_end_if_statement_token1] = ACTIONS(5620), + [aux_sym_elseif_clause_token2] = ACTIONS(5620), + [aux_sym__inline_where_statement_token1] = ACTIONS(5620), + [aux_sym__forall_control_expression_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token1] = ACTIONS(5620), + [aux_sym_select_case_statement_token3] = ACTIONS(5620), + [aux_sym_select_type_statement_token1] = ACTIONS(5620), + [aux_sym_select_rank_statement_token2] = ACTIONS(5620), + [aux_sym_block_construct_token1] = ACTIONS(5620), + [aux_sym_associate_statement_token1] = ACTIONS(5620), + [aux_sym_format_statement_token1] = ACTIONS(5620), + [aux_sym_print_statement_token1] = ACTIONS(5620), + [aux_sym_open_statement_token1] = ACTIONS(5620), + [aux_sym_close_statement_token1] = ACTIONS(5620), + [aux_sym_inquire_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token1] = ACTIONS(5620), + [aux_sym_file_position_statement_token2] = ACTIONS(5620), + [aux_sym_file_position_statement_token3] = ACTIONS(5620), + [aux_sym_file_position_statement_token4] = ACTIONS(5620), + [aux_sym_allocate_statement_token1] = ACTIONS(5620), + [aux_sym_entry_statement_token1] = ACTIONS(5620), + [aux_sym_logical_expression_token5] = ACTIONS(5622), + [anon_sym_DOT] = ACTIONS(5620), + [anon_sym_LPAREN_SLASH] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5622), + [aux_sym_boolean_literal_token1] = ACTIONS(5622), + [aux_sym_boolean_literal_token2] = ACTIONS(5622), + [aux_sym_null_literal_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_statement_token2] = ACTIONS(5620), + [aux_sym_coarray_statement_token6] = ACTIONS(5620), + [aux_sym_coarray_statement_token8] = ACTIONS(5620), + [aux_sym_coarray_statement_token11] = ACTIONS(5620), + [aux_sym_coarray_statement_token12] = ACTIONS(5620), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5620), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5620), + [aux_sym_identifier_token1] = ACTIONS(5620), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4235), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5622), + [sym__float_literal] = ACTIONS(5622), + [sym__boz_literal] = ACTIONS(5622), + [sym__string_literal] = ACTIONS(5622), + [sym__string_literal_kind] = ACTIONS(5622), }, - [2649] = { - [sym__expression] = STATE(4342), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(7424), - [sym_extent_specifier] = STATE(7424), - [sym_assumed_size] = STATE(7424), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), + [2617] = { + [sym__expression] = STATE(4329), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6411), + [sym_extent_specifier] = STATE(6411), + [sym_assumed_size] = STATE(6411), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), + [anon_sym_RPAREN] = ACTIONS(6626), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -407813,10 +404712,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -407833,14 +404732,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), - [sym_assumed_rank] = ACTIONS(6650), + [sym_assumed_rank] = ACTIONS(6628), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [aux_sym_boolean_literal_token1] = ACTIONS(167), @@ -407856,44 +404755,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2650] = { - [sym__expression] = STATE(4378), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_assumed_size] = STATE(7022), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_COMMA] = ACTIONS(6652), - [anon_sym_RPAREN] = ACTIONS(6652), + [2618] = { + [sym__expression] = STATE(4302), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6398), + [sym_extent_specifier] = STATE(6398), + [sym_assumed_size] = STATE(6398), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), + [anon_sym_RPAREN] = ACTIONS(6630), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6654), + [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -407909,10 +404809,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -407929,13 +404829,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), + [sym_assumed_rank] = ACTIONS(6632), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [aux_sym_boolean_literal_token1] = ACTIONS(167), @@ -407951,232 +404852,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2651] = { - [sym__expression] = STATE(4343), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_assumed_size] = STATE(6510), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_COMMA] = ACTIONS(6656), - [anon_sym_RPAREN] = ACTIONS(6656), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6658), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [2619] = { + [aux_sym_preproc_include_token1] = ACTIONS(4273), + [aux_sym_preproc_def_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4273), + [sym_preproc_directive] = ACTIONS(4273), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_PLUS] = ACTIONS(5536), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4273), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4273), + [aux_sym_procedure_attributes_token3] = ACTIONS(4273), + [aux_sym_use_statement_token2] = ACTIONS(4273), + [aux_sym_implicit_statement_token4] = ACTIONS(4273), + [aux_sym_save_statement_token1] = ACTIONS(4273), + [aux_sym_private_statement_token1] = ACTIONS(4273), + [aux_sym_public_statement_token1] = ACTIONS(4273), + [aux_sym_derived_type_definition_token1] = ACTIONS(4273), + [aux_sym_procedure_attribute_token6] = ACTIONS(4273), + [aux_sym_variable_attributes_token2] = ACTIONS(4273), + [aux_sym_variable_attributes_token3] = ACTIONS(4273), + [aux_sym_variable_attributes_token5] = ACTIONS(4273), + [aux_sym__intrinsic_type_token1] = ACTIONS(4273), + [aux_sym__intrinsic_type_token3] = ACTIONS(4273), + [aux_sym__intrinsic_type_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4273), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4273), + [aux_sym_type_qualifier_token1] = ACTIONS(4273), + [aux_sym_type_qualifier_token2] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5536), + [aux_sym_stop_statement_token1] = ACTIONS(4273), + [aux_sym_stop_statement_token2] = ACTIONS(4273), + [aux_sym_subroutine_call_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token1] = ACTIONS(4273), + [aux_sym_keyword_statement_token2] = ACTIONS(4273), + [aux_sym_keyword_statement_token3] = ACTIONS(4273), + [aux_sym_keyword_statement_token4] = ACTIONS(4273), + [aux_sym_keyword_statement_token6] = ACTIONS(4273), + [aux_sym_keyword_statement_token7] = ACTIONS(4273), + [aux_sym_include_statement_token1] = ACTIONS(4273), + [aux_sym_data_statement_token1] = ACTIONS(4273), + [aux_sym_do_loop_statement_token1] = ACTIONS(4273), + [aux_sym__inline_if_statement_token1] = ACTIONS(4273), + [aux_sym_end_if_statement_token1] = ACTIONS(4273), + [aux_sym_elseif_clause_token2] = ACTIONS(4273), + [aux_sym__inline_where_statement_token1] = ACTIONS(4273), + [aux_sym__forall_control_expression_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token1] = ACTIONS(4273), + [aux_sym_select_case_statement_token3] = ACTIONS(4273), + [aux_sym_select_type_statement_token1] = ACTIONS(4273), + [aux_sym_select_rank_statement_token2] = ACTIONS(4273), + [aux_sym_block_construct_token1] = ACTIONS(4273), + [aux_sym_associate_statement_token1] = ACTIONS(4273), + [aux_sym_format_statement_token1] = ACTIONS(4273), + [aux_sym_print_statement_token1] = ACTIONS(4273), + [aux_sym_open_statement_token1] = ACTIONS(4273), + [aux_sym_close_statement_token1] = ACTIONS(4273), + [aux_sym_inquire_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token1] = ACTIONS(4273), + [aux_sym_file_position_statement_token2] = ACTIONS(4273), + [aux_sym_file_position_statement_token3] = ACTIONS(4273), + [aux_sym_file_position_statement_token4] = ACTIONS(4273), + [aux_sym_allocate_statement_token1] = ACTIONS(4273), + [aux_sym_entry_statement_token1] = ACTIONS(4273), + [aux_sym_logical_expression_token5] = ACTIONS(5536), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_LPAREN_SLASH] = ACTIONS(5536), + [anon_sym_LBRACK] = ACTIONS(5536), + [aux_sym_boolean_literal_token1] = ACTIONS(5536), + [aux_sym_boolean_literal_token2] = ACTIONS(5536), + [aux_sym_null_literal_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_statement_token2] = ACTIONS(4273), + [aux_sym_coarray_statement_token6] = ACTIONS(4273), + [aux_sym_coarray_statement_token8] = ACTIONS(4273), + [aux_sym_coarray_statement_token11] = ACTIONS(4273), + [aux_sym_coarray_statement_token12] = ACTIONS(4273), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4273), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4273), + [aux_sym_identifier_token1] = ACTIONS(4273), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5536), + [sym__float_literal] = ACTIONS(5536), + [sym__boz_literal] = ACTIONS(5536), + [sym__string_literal] = ACTIONS(5536), + [sym__string_literal_kind] = ACTIONS(5536), }, - [2652] = { - [sym_statement_label] = STATE(6739), - [sym_statement_label_reference] = STATE(6768), - [sym_format_identifier] = STATE(6702), - [sym__io_expressions] = STATE(6768), - [sym__expression] = STATE(4565), - [sym_parenthesized_expression] = STATE(4681), - [sym_derived_type_member_expression] = STATE(4681), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(4681), - [sym_math_expression] = STATE(4681), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4681), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(4681), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4681), - [anon_sym_LPAREN2] = ACTIONS(6660), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(6662), + [2620] = { + [aux_sym_preproc_include_token1] = ACTIONS(5640), + [aux_sym_preproc_def_token1] = ACTIONS(5640), + [aux_sym_preproc_if_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5640), + [sym_preproc_directive] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_PLUS] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(5464), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5640), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5640), + [aux_sym_procedure_attributes_token3] = ACTIONS(5640), + [aux_sym_use_statement_token2] = ACTIONS(5640), + [aux_sym_implicit_statement_token4] = ACTIONS(5640), + [aux_sym_save_statement_token1] = ACTIONS(5640), + [aux_sym_private_statement_token1] = ACTIONS(5640), + [aux_sym_public_statement_token1] = ACTIONS(5640), + [aux_sym_derived_type_definition_token1] = ACTIONS(5640), + [aux_sym_procedure_attribute_token6] = ACTIONS(5640), + [aux_sym_variable_attributes_token2] = ACTIONS(5640), + [aux_sym_variable_attributes_token3] = ACTIONS(5640), + [aux_sym_variable_attributes_token5] = ACTIONS(5640), + [aux_sym__intrinsic_type_token1] = ACTIONS(5640), + [aux_sym__intrinsic_type_token3] = ACTIONS(5640), + [aux_sym__intrinsic_type_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5640), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5640), + [aux_sym_type_qualifier_token1] = ACTIONS(5640), + [aux_sym_type_qualifier_token2] = ACTIONS(5640), + [anon_sym_SEMI] = ACTIONS(5642), + [aux_sym_stop_statement_token1] = ACTIONS(5640), + [aux_sym_stop_statement_token2] = ACTIONS(5640), + [aux_sym_subroutine_call_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token1] = ACTIONS(5640), + [aux_sym_keyword_statement_token2] = ACTIONS(5640), + [aux_sym_keyword_statement_token3] = ACTIONS(5640), + [aux_sym_keyword_statement_token4] = ACTIONS(5640), + [aux_sym_keyword_statement_token6] = ACTIONS(5640), + [aux_sym_keyword_statement_token7] = ACTIONS(5640), + [aux_sym_include_statement_token1] = ACTIONS(5640), + [aux_sym_data_statement_token1] = ACTIONS(5640), + [aux_sym_do_loop_statement_token1] = ACTIONS(5640), + [aux_sym__inline_if_statement_token1] = ACTIONS(5640), + [aux_sym_end_if_statement_token1] = ACTIONS(5640), + [aux_sym_elseif_clause_token2] = ACTIONS(5640), + [aux_sym__inline_where_statement_token1] = ACTIONS(5640), + [aux_sym__forall_control_expression_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token1] = ACTIONS(5640), + [aux_sym_select_case_statement_token3] = ACTIONS(5640), + [aux_sym_select_type_statement_token1] = ACTIONS(5640), + [aux_sym_select_rank_statement_token2] = ACTIONS(5640), + [aux_sym_block_construct_token1] = ACTIONS(5640), + [aux_sym_associate_statement_token1] = ACTIONS(5640), + [aux_sym_format_statement_token1] = ACTIONS(5640), + [aux_sym_print_statement_token1] = ACTIONS(5640), + [aux_sym_open_statement_token1] = ACTIONS(5640), + [aux_sym_close_statement_token1] = ACTIONS(5640), + [aux_sym_inquire_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token1] = ACTIONS(5640), + [aux_sym_file_position_statement_token2] = ACTIONS(5640), + [aux_sym_file_position_statement_token3] = ACTIONS(5640), + [aux_sym_file_position_statement_token4] = ACTIONS(5640), + [aux_sym_allocate_statement_token1] = ACTIONS(5640), + [aux_sym_entry_statement_token1] = ACTIONS(5640), + [aux_sym_logical_expression_token5] = ACTIONS(5642), + [anon_sym_DOT] = ACTIONS(5640), + [anon_sym_LPAREN_SLASH] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(5642), + [aux_sym_boolean_literal_token1] = ACTIONS(5642), + [aux_sym_boolean_literal_token2] = ACTIONS(5642), + [aux_sym_null_literal_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_statement_token2] = ACTIONS(5640), + [aux_sym_coarray_statement_token6] = ACTIONS(5640), + [aux_sym_coarray_statement_token8] = ACTIONS(5640), + [aux_sym_coarray_statement_token11] = ACTIONS(5640), + [aux_sym_coarray_statement_token12] = ACTIONS(5640), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5640), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5640), + [aux_sym_identifier_token1] = ACTIONS(5640), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5466), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__integer_literal] = ACTIONS(5642), + [sym__float_literal] = ACTIONS(5642), + [sym__boz_literal] = ACTIONS(5642), + [sym__string_literal] = ACTIONS(5642), + [sym__string_literal_kind] = ACTIONS(5642), }, - [2653] = { - [sym__expression] = STATE(4377), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_COMMA] = ACTIONS(6664), + [2621] = { + [sym__expression] = STATE(4282), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6411), + [sym_extent_specifier] = STATE(6411), + [sym_assumed_size] = STATE(6411), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), + [anon_sym_RPAREN] = ACTIONS(6626), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6666), + [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6668), + [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -408192,10 +405100,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -408212,16 +405120,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), + [sym_assumed_rank] = ACTIONS(6628), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_RBRACK] = ACTIONS(6664), [aux_sym_boolean_literal_token1] = ACTIONS(167), [aux_sym_boolean_literal_token2] = ACTIONS(167), [aux_sym_null_literal_token1] = ACTIONS(169), @@ -408235,163 +405143,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2654] = { - [sym__expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(7029), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(7397), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6670), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [2622] = { + [aux_sym_preproc_include_token1] = ACTIONS(4537), + [aux_sym_preproc_def_token1] = ACTIONS(4537), + [aux_sym_preproc_if_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4537), + [sym_preproc_directive] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(5574), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4537), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4537), + [aux_sym_procedure_attributes_token3] = ACTIONS(4537), + [aux_sym_use_statement_token2] = ACTIONS(4537), + [aux_sym_implicit_statement_token4] = ACTIONS(4537), + [aux_sym_save_statement_token1] = ACTIONS(4537), + [aux_sym_private_statement_token1] = ACTIONS(4537), + [aux_sym_public_statement_token1] = ACTIONS(4537), + [aux_sym_derived_type_definition_token1] = ACTIONS(4537), + [aux_sym_procedure_attribute_token6] = ACTIONS(4537), + [aux_sym_variable_attributes_token2] = ACTIONS(4537), + [aux_sym_variable_attributes_token3] = ACTIONS(4537), + [aux_sym_variable_attributes_token5] = ACTIONS(4537), + [aux_sym__intrinsic_type_token1] = ACTIONS(4537), + [aux_sym__intrinsic_type_token3] = ACTIONS(4537), + [aux_sym__intrinsic_type_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4537), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4537), + [aux_sym_type_qualifier_token1] = ACTIONS(4537), + [aux_sym_type_qualifier_token2] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(5574), + [aux_sym_stop_statement_token1] = ACTIONS(4537), + [aux_sym_stop_statement_token2] = ACTIONS(4537), + [aux_sym_subroutine_call_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token1] = ACTIONS(4537), + [aux_sym_keyword_statement_token2] = ACTIONS(4537), + [aux_sym_keyword_statement_token3] = ACTIONS(4537), + [aux_sym_keyword_statement_token4] = ACTIONS(4537), + [aux_sym_keyword_statement_token6] = ACTIONS(4537), + [aux_sym_keyword_statement_token7] = ACTIONS(4537), + [aux_sym_include_statement_token1] = ACTIONS(4537), + [aux_sym_data_statement_token1] = ACTIONS(4537), + [aux_sym_do_loop_statement_token1] = ACTIONS(4537), + [aux_sym__inline_if_statement_token1] = ACTIONS(4537), + [aux_sym_end_if_statement_token1] = ACTIONS(4537), + [aux_sym_elseif_clause_token2] = ACTIONS(4537), + [aux_sym__inline_where_statement_token1] = ACTIONS(4537), + [aux_sym__forall_control_expression_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token1] = ACTIONS(4537), + [aux_sym_select_case_statement_token3] = ACTIONS(4537), + [aux_sym_select_type_statement_token1] = ACTIONS(4537), + [aux_sym_select_rank_statement_token2] = ACTIONS(4537), + [aux_sym_block_construct_token1] = ACTIONS(4537), + [aux_sym_associate_statement_token1] = ACTIONS(4537), + [aux_sym_format_statement_token1] = ACTIONS(4537), + [aux_sym_print_statement_token1] = ACTIONS(4537), + [aux_sym_open_statement_token1] = ACTIONS(4537), + [aux_sym_close_statement_token1] = ACTIONS(4537), + [aux_sym_inquire_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token1] = ACTIONS(4537), + [aux_sym_file_position_statement_token2] = ACTIONS(4537), + [aux_sym_file_position_statement_token3] = ACTIONS(4537), + [aux_sym_file_position_statement_token4] = ACTIONS(4537), + [aux_sym_allocate_statement_token1] = ACTIONS(4537), + [aux_sym_entry_statement_token1] = ACTIONS(4537), + [aux_sym_logical_expression_token5] = ACTIONS(5574), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LPAREN_SLASH] = ACTIONS(5574), + [anon_sym_LBRACK] = ACTIONS(5574), + [aux_sym_boolean_literal_token1] = ACTIONS(5574), + [aux_sym_boolean_literal_token2] = ACTIONS(5574), + [aux_sym_null_literal_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_statement_token2] = ACTIONS(4537), + [aux_sym_coarray_statement_token6] = ACTIONS(4537), + [aux_sym_coarray_statement_token8] = ACTIONS(4537), + [aux_sym_coarray_statement_token11] = ACTIONS(4537), + [aux_sym_coarray_statement_token12] = ACTIONS(4537), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4537), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4537), + [aux_sym_identifier_token1] = ACTIONS(4537), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5574), + [sym__float_literal] = ACTIONS(5574), + [sym__boz_literal] = ACTIONS(5574), + [sym__string_literal] = ACTIONS(5574), + [sym__string_literal_kind] = ACTIONS(5574), }, - [2655] = { - [sym_output_item_list] = STATE(7159), - [sym__expression] = STATE(4323), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_COMMA] = ACTIONS(6674), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2623] = { + [sym_identifier] = STATE(6170), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(6634), + [anon_sym_PERCENT] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(6636), + [anon_sym_EQ_GT] = ACTIONS(4257), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), [aux_sym_public_statement_token1] = ACTIONS(5456), [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), [aux_sym_variable_attributes_token2] = ACTIONS(5456), [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), [aux_sym_variable_attributes_token5] = ACTIONS(5456), [aux_sym__intrinsic_type_token1] = ACTIONS(5456), [aux_sym__intrinsic_type_token3] = ACTIONS(5456), [aux_sym__intrinsic_type_token4] = ACTIONS(5458), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6680), + [anon_sym_SEMI] = ACTIONS(6638), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -408405,13 +405315,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -408422,231 +405341,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - [sym__external_end_of_statement] = ACTIONS(6680), - }, - [2656] = { - [sym_unit_identifier] = STATE(8111), - [sym__io_expressions] = STATE(7356), - [sym__expression] = STATE(4338), - [sym_parenthesized_expression] = STATE(4959), - [sym_derived_type_member_expression] = STATE(4959), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(4959), - [sym_math_expression] = STATE(4959), - [sym_unary_expression] = STATE(4807), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(4959), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6498), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(4808), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(4959), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4749), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_STAR] = ACTIONS(6684), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__external_end_of_statement] = ACTIONS(6638), }, - [2657] = { - [sym_unit_identifier] = STATE(7441), - [sym__io_expressions] = STATE(7356), - [sym__expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(5047), - [sym_derived_type_member_expression] = STATE(5047), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(5047), - [sym_math_expression] = STATE(5047), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(5047), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6420), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(4782), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(5047), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4701), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(6684), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [2624] = { + [aux_sym_preproc_include_token1] = ACTIONS(5624), + [aux_sym_preproc_def_token1] = ACTIONS(5624), + [aux_sym_preproc_if_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5624), + [sym_preproc_directive] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_PLUS] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5626), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5624), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5624), + [aux_sym_procedure_attributes_token3] = ACTIONS(5624), + [aux_sym_use_statement_token2] = ACTIONS(5624), + [aux_sym_implicit_statement_token4] = ACTIONS(5624), + [aux_sym_save_statement_token1] = ACTIONS(5624), + [aux_sym_private_statement_token1] = ACTIONS(5624), + [aux_sym_public_statement_token1] = ACTIONS(5624), + [aux_sym_derived_type_definition_token1] = ACTIONS(5624), + [aux_sym_procedure_attribute_token6] = ACTIONS(5624), + [aux_sym_variable_attributes_token2] = ACTIONS(5624), + [aux_sym_variable_attributes_token3] = ACTIONS(5624), + [aux_sym_variable_attributes_token5] = ACTIONS(5624), + [aux_sym__intrinsic_type_token1] = ACTIONS(5624), + [aux_sym__intrinsic_type_token3] = ACTIONS(5624), + [aux_sym__intrinsic_type_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5624), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5624), + [aux_sym_type_qualifier_token1] = ACTIONS(5624), + [aux_sym_type_qualifier_token2] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5626), + [aux_sym_stop_statement_token1] = ACTIONS(5624), + [aux_sym_stop_statement_token2] = ACTIONS(5624), + [aux_sym_subroutine_call_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token1] = ACTIONS(5624), + [aux_sym_keyword_statement_token2] = ACTIONS(5624), + [aux_sym_keyword_statement_token3] = ACTIONS(5624), + [aux_sym_keyword_statement_token4] = ACTIONS(5624), + [aux_sym_keyword_statement_token6] = ACTIONS(5624), + [aux_sym_keyword_statement_token7] = ACTIONS(5624), + [aux_sym_include_statement_token1] = ACTIONS(5624), + [aux_sym_data_statement_token1] = ACTIONS(5624), + [aux_sym_do_loop_statement_token1] = ACTIONS(5624), + [aux_sym__inline_if_statement_token1] = ACTIONS(5624), + [aux_sym_end_if_statement_token1] = ACTIONS(5624), + [aux_sym_elseif_clause_token2] = ACTIONS(5624), + [aux_sym__inline_where_statement_token1] = ACTIONS(5624), + [aux_sym__forall_control_expression_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token1] = ACTIONS(5624), + [aux_sym_select_case_statement_token3] = ACTIONS(5624), + [aux_sym_select_type_statement_token1] = ACTIONS(5624), + [aux_sym_select_rank_statement_token2] = ACTIONS(5624), + [aux_sym_block_construct_token1] = ACTIONS(5624), + [aux_sym_associate_statement_token1] = ACTIONS(5624), + [aux_sym_format_statement_token1] = ACTIONS(5624), + [aux_sym_print_statement_token1] = ACTIONS(5624), + [aux_sym_open_statement_token1] = ACTIONS(5624), + [aux_sym_close_statement_token1] = ACTIONS(5624), + [aux_sym_inquire_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token1] = ACTIONS(5624), + [aux_sym_file_position_statement_token2] = ACTIONS(5624), + [aux_sym_file_position_statement_token3] = ACTIONS(5624), + [aux_sym_file_position_statement_token4] = ACTIONS(5624), + [aux_sym_allocate_statement_token1] = ACTIONS(5624), + [aux_sym_entry_statement_token1] = ACTIONS(5624), + [aux_sym_logical_expression_token5] = ACTIONS(5626), + [anon_sym_DOT] = ACTIONS(5624), + [anon_sym_LPAREN_SLASH] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5626), + [aux_sym_boolean_literal_token1] = ACTIONS(5626), + [aux_sym_boolean_literal_token2] = ACTIONS(5626), + [aux_sym_null_literal_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_statement_token2] = ACTIONS(5624), + [aux_sym_coarray_statement_token6] = ACTIONS(5624), + [aux_sym_coarray_statement_token8] = ACTIONS(5624), + [aux_sym_coarray_statement_token11] = ACTIONS(5624), + [aux_sym_coarray_statement_token12] = ACTIONS(5624), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5624), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5624), + [aux_sym_identifier_token1] = ACTIONS(5624), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5626), + [sym__float_literal] = ACTIONS(5626), + [sym__boz_literal] = ACTIONS(5626), + [sym__string_literal] = ACTIONS(5626), + [sym__string_literal_kind] = ACTIONS(5626), }, - [2658] = { - [sym__expression] = STATE(4341), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_COMMA] = ACTIONS(6686), + [2625] = { + [sym__expression] = STATE(4323), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6856), + [sym_extent_specifier] = STATE(6856), + [sym_assumed_size] = STATE(6856), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), + [anon_sym_RPAREN] = ACTIONS(6622), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6688), + [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6690), + [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -408662,10 +405488,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -408682,16 +405508,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), + [sym_assumed_rank] = ACTIONS(6624), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_RBRACK] = ACTIONS(6686), [aux_sym_boolean_literal_token1] = ACTIONS(167), [aux_sym_boolean_literal_token2] = ACTIONS(167), [aux_sym_null_literal_token1] = ACTIONS(169), @@ -408705,94 +405531,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2659] = { - [anon_sym_LPAREN2] = ACTIONS(6692), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), + [2626] = { + [aux_sym_preproc_include_token1] = ACTIONS(5600), + [aux_sym_preproc_def_token1] = ACTIONS(5600), + [aux_sym_preproc_if_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5600), + [sym_preproc_directive] = ACTIONS(5600), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_PLUS] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5600), - [anon_sym_COLON] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), [aux_sym_procedure_attributes_token3] = ACTIONS(5600), [aux_sym_use_statement_token2] = ACTIONS(5600), - [anon_sym_COLON_COLON] = ACTIONS(6646), - [anon_sym_EQ_GT] = ACTIONS(4325), [aux_sym_implicit_statement_token4] = ACTIONS(5600), [aux_sym_save_statement_token1] = ACTIONS(5600), [aux_sym_private_statement_token1] = ACTIONS(5600), [aux_sym_public_statement_token1] = ACTIONS(5600), [aux_sym_derived_type_definition_token1] = ACTIONS(5600), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), [aux_sym_procedure_attribute_token6] = ACTIONS(5600), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), [aux_sym_variable_attributes_token2] = ACTIONS(5600), [aux_sym_variable_attributes_token3] = ACTIONS(5600), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), [aux_sym_variable_attributes_token5] = ACTIONS(5600), [aux_sym__intrinsic_type_token1] = ACTIONS(5600), [aux_sym__intrinsic_type_token3] = ACTIONS(5600), [aux_sym__intrinsic_type_token4] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), [aux_sym_type_qualifier_token1] = ACTIONS(5600), [aux_sym_type_qualifier_token2] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(5602), [aux_sym_stop_statement_token1] = ACTIONS(5600), [aux_sym_stop_statement_token2] = ACTIONS(5600), + [aux_sym_subroutine_call_token1] = ACTIONS(5600), + [aux_sym_keyword_statement_token1] = ACTIONS(5600), [aux_sym_keyword_statement_token2] = ACTIONS(5600), [aux_sym_keyword_statement_token3] = ACTIONS(5600), + [aux_sym_keyword_statement_token4] = ACTIONS(5600), + [aux_sym_keyword_statement_token6] = ACTIONS(5600), + [aux_sym_keyword_statement_token7] = ACTIONS(5600), + [aux_sym_include_statement_token1] = ACTIONS(5600), [aux_sym_data_statement_token1] = ACTIONS(5600), + [aux_sym_do_loop_statement_token1] = ACTIONS(5600), [aux_sym__inline_if_statement_token1] = ACTIONS(5600), [aux_sym_end_if_statement_token1] = ACTIONS(5600), [aux_sym_elseif_clause_token2] = ACTIONS(5600), + [aux_sym__inline_where_statement_token1] = ACTIONS(5600), + [aux_sym__forall_control_expression_token1] = ACTIONS(5600), [aux_sym_select_case_statement_token1] = ACTIONS(5600), + [aux_sym_select_case_statement_token3] = ACTIONS(5600), + [aux_sym_select_type_statement_token1] = ACTIONS(5600), + [aux_sym_select_rank_statement_token2] = ACTIONS(5600), [aux_sym_block_construct_token1] = ACTIONS(5600), + [aux_sym_associate_statement_token1] = ACTIONS(5600), [aux_sym_format_statement_token1] = ACTIONS(5600), + [aux_sym_print_statement_token1] = ACTIONS(5600), + [aux_sym_open_statement_token1] = ACTIONS(5600), + [aux_sym_close_statement_token1] = ACTIONS(5600), [aux_sym_inquire_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token1] = ACTIONS(5600), + [aux_sym_file_position_statement_token2] = ACTIONS(5600), + [aux_sym_file_position_statement_token3] = ACTIONS(5600), + [aux_sym_file_position_statement_token4] = ACTIONS(5600), + [aux_sym_allocate_statement_token1] = ACTIONS(5600), [aux_sym_entry_statement_token1] = ACTIONS(5600), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_logical_expression_token5] = ACTIONS(5602), + [anon_sym_DOT] = ACTIONS(5600), + [anon_sym_LPAREN_SLASH] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(5602), + [aux_sym_boolean_literal_token1] = ACTIONS(5602), + [aux_sym_boolean_literal_token2] = ACTIONS(5602), [aux_sym_null_literal_token1] = ACTIONS(5600), [aux_sym_coarray_statement_token1] = ACTIONS(5600), [aux_sym_coarray_statement_token2] = ACTIONS(5600), @@ -408804,226 +405628,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), [aux_sym_identifier_token1] = ACTIONS(5600), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5602), + [sym__float_literal] = ACTIONS(5602), + [sym__boz_literal] = ACTIONS(5602), + [sym__string_literal] = ACTIONS(5602), + [sym__string_literal_kind] = ACTIONS(5602), }, - [2660] = { - [sym_unit_identifier] = STATE(7146), - [sym__io_expressions] = STATE(7356), - [sym__expression] = STATE(4338), - [sym_parenthesized_expression] = STATE(5047), - [sym_derived_type_member_expression] = STATE(5047), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(5047), - [sym_math_expression] = STATE(5047), - [sym_unary_expression] = STATE(4807), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(5047), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6320), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(4889), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(5047), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4700), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_STAR] = ACTIONS(6684), + [2627] = { + [aux_sym_preproc_include_token1] = ACTIONS(4571), + [aux_sym_preproc_def_token1] = ACTIONS(4571), + [aux_sym_preproc_if_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), + [sym_preproc_directive] = ACTIONS(4571), + [anon_sym_LPAREN2] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(5582), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2661] = { - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5600), - [anon_sym_COLON] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5600), - [aux_sym_use_statement_token2] = ACTIONS(5600), - [anon_sym_COLON_COLON] = ACTIONS(6646), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5600), - [aux_sym_save_statement_token1] = ACTIONS(5600), - [aux_sym_private_statement_token1] = ACTIONS(5600), - [aux_sym_public_statement_token1] = ACTIONS(5600), - [aux_sym_derived_type_definition_token1] = ACTIONS(5600), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5600), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5600), - [aux_sym_variable_attributes_token3] = ACTIONS(5600), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5600), - [aux_sym__intrinsic_type_token1] = ACTIONS(5600), - [aux_sym__intrinsic_type_token3] = ACTIONS(5600), - [aux_sym__intrinsic_type_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5600), - [aux_sym_type_qualifier_token2] = ACTIONS(5600), - [aux_sym_stop_statement_token1] = ACTIONS(5600), - [aux_sym_stop_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token3] = ACTIONS(5600), - [aux_sym_data_statement_token1] = ACTIONS(5600), - [aux_sym__inline_if_statement_token1] = ACTIONS(5600), - [aux_sym_end_if_statement_token1] = ACTIONS(5600), - [aux_sym_elseif_clause_token2] = ACTIONS(5600), - [aux_sym_select_case_statement_token1] = ACTIONS(5600), - [aux_sym_block_construct_token1] = ACTIONS(5600), - [aux_sym_format_statement_token1] = ACTIONS(5600), - [aux_sym_inquire_statement_token1] = ACTIONS(5600), - [aux_sym_entry_statement_token1] = ACTIONS(5600), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token2] = ACTIONS(5600), - [aux_sym_coarray_statement_token6] = ACTIONS(5600), - [aux_sym_coarray_statement_token8] = ACTIONS(5600), - [aux_sym_coarray_statement_token11] = ACTIONS(5600), - [aux_sym_coarray_statement_token12] = ACTIONS(5600), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), - [aux_sym_identifier_token1] = ACTIONS(5600), + [aux_sym_end_program_statement_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), + [aux_sym_procedure_attributes_token3] = ACTIONS(4571), + [aux_sym_use_statement_token2] = ACTIONS(4571), + [aux_sym_implicit_statement_token4] = ACTIONS(4571), + [aux_sym_save_statement_token1] = ACTIONS(4571), + [aux_sym_private_statement_token1] = ACTIONS(4571), + [aux_sym_public_statement_token1] = ACTIONS(4571), + [aux_sym_derived_type_definition_token1] = ACTIONS(4571), + [aux_sym_procedure_attribute_token6] = ACTIONS(4571), + [aux_sym_variable_attributes_token2] = ACTIONS(4571), + [aux_sym_variable_attributes_token3] = ACTIONS(4571), + [aux_sym_variable_attributes_token5] = ACTIONS(4571), + [aux_sym__intrinsic_type_token1] = ACTIONS(4571), + [aux_sym__intrinsic_type_token3] = ACTIONS(4571), + [aux_sym__intrinsic_type_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), + [aux_sym_type_qualifier_token1] = ACTIONS(4571), + [aux_sym_type_qualifier_token2] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(5582), + [aux_sym_stop_statement_token1] = ACTIONS(4571), + [aux_sym_stop_statement_token2] = ACTIONS(4571), + [aux_sym_subroutine_call_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token1] = ACTIONS(4571), + [aux_sym_keyword_statement_token2] = ACTIONS(4571), + [aux_sym_keyword_statement_token3] = ACTIONS(4571), + [aux_sym_keyword_statement_token4] = ACTIONS(4571), + [aux_sym_keyword_statement_token6] = ACTIONS(4571), + [aux_sym_keyword_statement_token7] = ACTIONS(4571), + [aux_sym_include_statement_token1] = ACTIONS(4571), + [aux_sym_data_statement_token1] = ACTIONS(4571), + [aux_sym_do_loop_statement_token1] = ACTIONS(4571), + [aux_sym__inline_if_statement_token1] = ACTIONS(4571), + [aux_sym_end_if_statement_token1] = ACTIONS(4571), + [aux_sym_elseif_clause_token2] = ACTIONS(4571), + [aux_sym__inline_where_statement_token1] = ACTIONS(4571), + [aux_sym__forall_control_expression_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token1] = ACTIONS(4571), + [aux_sym_select_case_statement_token3] = ACTIONS(4571), + [aux_sym_select_type_statement_token1] = ACTIONS(4571), + [aux_sym_select_rank_statement_token2] = ACTIONS(4571), + [aux_sym_block_construct_token1] = ACTIONS(4571), + [aux_sym_associate_statement_token1] = ACTIONS(4571), + [aux_sym_format_statement_token1] = ACTIONS(4571), + [aux_sym_print_statement_token1] = ACTIONS(4571), + [aux_sym_open_statement_token1] = ACTIONS(4571), + [aux_sym_close_statement_token1] = ACTIONS(4571), + [aux_sym_inquire_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token1] = ACTIONS(4571), + [aux_sym_file_position_statement_token2] = ACTIONS(4571), + [aux_sym_file_position_statement_token3] = ACTIONS(4571), + [aux_sym_file_position_statement_token4] = ACTIONS(4571), + [aux_sym_allocate_statement_token1] = ACTIONS(4571), + [aux_sym_entry_statement_token1] = ACTIONS(4571), + [aux_sym_logical_expression_token5] = ACTIONS(5582), + [anon_sym_DOT] = ACTIONS(4571), + [anon_sym_LPAREN_SLASH] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(5582), + [aux_sym_boolean_literal_token1] = ACTIONS(5582), + [aux_sym_boolean_literal_token2] = ACTIONS(5582), + [aux_sym_null_literal_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_statement_token2] = ACTIONS(4571), + [aux_sym_coarray_statement_token6] = ACTIONS(4571), + [aux_sym_coarray_statement_token8] = ACTIONS(4571), + [aux_sym_coarray_statement_token11] = ACTIONS(4571), + [aux_sym_coarray_statement_token12] = ACTIONS(4571), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), + [aux_sym_identifier_token1] = ACTIONS(4571), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5582), + [sym__float_literal] = ACTIONS(5582), + [sym__boz_literal] = ACTIONS(5582), + [sym__string_literal] = ACTIONS(5582), + [sym__string_literal_kind] = ACTIONS(5582), }, - [2662] = { - [sym__expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6301), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(7397), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), + [2628] = { + [sym__expression] = STATE(4316), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6739), + [sym_extent_specifier] = STATE(6739), + [sym_assumed_size] = STATE(6739), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), + [anon_sym_RPAREN] = ACTIONS(6640), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6670), + [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -409039,10 +405779,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -409059,13 +405799,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), + [sym_assumed_rank] = ACTIONS(6642), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [aux_sym_boolean_literal_token1] = ACTIONS(167), @@ -409081,231 +405822,1209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2663] = { - [sym_unit_identifier] = STATE(7146), - [sym__io_expressions] = STATE(7356), - [sym__expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(5047), - [sym_derived_type_member_expression] = STATE(5047), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(5047), - [sym_math_expression] = STATE(5047), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(5047), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6320), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(4782), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(5047), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4701), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(6684), + [2629] = { + [aux_sym_preproc_include_token1] = ACTIONS(5680), + [aux_sym_preproc_def_token1] = ACTIONS(5680), + [aux_sym_preproc_if_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5680), + [sym_preproc_directive] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5680), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5680), + [aux_sym_procedure_attributes_token3] = ACTIONS(5680), + [aux_sym_use_statement_token2] = ACTIONS(5680), + [aux_sym_implicit_statement_token4] = ACTIONS(5680), + [aux_sym_save_statement_token1] = ACTIONS(5680), + [aux_sym_private_statement_token1] = ACTIONS(5680), + [aux_sym_public_statement_token1] = ACTIONS(5680), + [aux_sym_derived_type_definition_token1] = ACTIONS(5680), + [aux_sym_procedure_attribute_token6] = ACTIONS(5680), + [aux_sym_variable_attributes_token2] = ACTIONS(5680), + [aux_sym_variable_attributes_token3] = ACTIONS(5680), + [aux_sym_variable_attributes_token5] = ACTIONS(5680), + [aux_sym__intrinsic_type_token1] = ACTIONS(5680), + [aux_sym__intrinsic_type_token3] = ACTIONS(5680), + [aux_sym__intrinsic_type_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5680), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5680), + [aux_sym_type_qualifier_token1] = ACTIONS(5680), + [aux_sym_type_qualifier_token2] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5682), + [aux_sym_stop_statement_token1] = ACTIONS(5680), + [aux_sym_stop_statement_token2] = ACTIONS(5680), + [aux_sym_subroutine_call_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token1] = ACTIONS(5680), + [aux_sym_keyword_statement_token2] = ACTIONS(5680), + [aux_sym_keyword_statement_token3] = ACTIONS(5680), + [aux_sym_keyword_statement_token4] = ACTIONS(5680), + [aux_sym_keyword_statement_token6] = ACTIONS(5680), + [aux_sym_keyword_statement_token7] = ACTIONS(5680), + [aux_sym_include_statement_token1] = ACTIONS(5680), + [aux_sym_data_statement_token1] = ACTIONS(5680), + [aux_sym_do_loop_statement_token1] = ACTIONS(5680), + [aux_sym__inline_if_statement_token1] = ACTIONS(5680), + [aux_sym_end_if_statement_token1] = ACTIONS(5680), + [aux_sym_elseif_clause_token2] = ACTIONS(5680), + [aux_sym__inline_where_statement_token1] = ACTIONS(5680), + [aux_sym__forall_control_expression_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token1] = ACTIONS(5680), + [aux_sym_select_case_statement_token3] = ACTIONS(5680), + [aux_sym_select_type_statement_token1] = ACTIONS(5680), + [aux_sym_select_rank_statement_token2] = ACTIONS(5680), + [aux_sym_block_construct_token1] = ACTIONS(5680), + [aux_sym_associate_statement_token1] = ACTIONS(5680), + [aux_sym_format_statement_token1] = ACTIONS(5680), + [aux_sym_print_statement_token1] = ACTIONS(5680), + [aux_sym_open_statement_token1] = ACTIONS(5680), + [aux_sym_close_statement_token1] = ACTIONS(5680), + [aux_sym_inquire_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token1] = ACTIONS(5680), + [aux_sym_file_position_statement_token2] = ACTIONS(5680), + [aux_sym_file_position_statement_token3] = ACTIONS(5680), + [aux_sym_file_position_statement_token4] = ACTIONS(5680), + [aux_sym_allocate_statement_token1] = ACTIONS(5680), + [aux_sym_entry_statement_token1] = ACTIONS(5680), + [aux_sym_logical_expression_token5] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(5680), + [anon_sym_LPAREN_SLASH] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [aux_sym_boolean_literal_token1] = ACTIONS(5682), + [aux_sym_boolean_literal_token2] = ACTIONS(5682), + [aux_sym_null_literal_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_statement_token2] = ACTIONS(5680), + [aux_sym_coarray_statement_token6] = ACTIONS(5680), + [aux_sym_coarray_statement_token8] = ACTIONS(5680), + [aux_sym_coarray_statement_token11] = ACTIONS(5680), + [aux_sym_coarray_statement_token12] = ACTIONS(5680), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5680), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5680), + [aux_sym_identifier_token1] = ACTIONS(5680), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5682), + [sym__float_literal] = ACTIONS(5682), + [sym__boz_literal] = ACTIONS(5682), + [sym__string_literal] = ACTIONS(5682), + [sym__string_literal_kind] = ACTIONS(5682), + }, + [2630] = { + [aux_sym_preproc_include_token1] = ACTIONS(5668), + [aux_sym_preproc_def_token1] = ACTIONS(5668), + [aux_sym_preproc_if_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5668), + [sym_preproc_directive] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5668), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5668), + [aux_sym_procedure_attributes_token3] = ACTIONS(5668), + [aux_sym_use_statement_token2] = ACTIONS(5668), + [aux_sym_implicit_statement_token4] = ACTIONS(5668), + [aux_sym_save_statement_token1] = ACTIONS(5668), + [aux_sym_private_statement_token1] = ACTIONS(5668), + [aux_sym_public_statement_token1] = ACTIONS(5668), + [aux_sym_derived_type_definition_token1] = ACTIONS(5668), + [aux_sym_procedure_attribute_token6] = ACTIONS(5668), + [aux_sym_variable_attributes_token2] = ACTIONS(5668), + [aux_sym_variable_attributes_token3] = ACTIONS(5668), + [aux_sym_variable_attributes_token5] = ACTIONS(5668), + [aux_sym__intrinsic_type_token1] = ACTIONS(5668), + [aux_sym__intrinsic_type_token3] = ACTIONS(5668), + [aux_sym__intrinsic_type_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5668), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5668), + [aux_sym_type_qualifier_token1] = ACTIONS(5668), + [aux_sym_type_qualifier_token2] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5670), + [aux_sym_stop_statement_token1] = ACTIONS(5668), + [aux_sym_stop_statement_token2] = ACTIONS(5668), + [aux_sym_subroutine_call_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token1] = ACTIONS(5668), + [aux_sym_keyword_statement_token2] = ACTIONS(5668), + [aux_sym_keyword_statement_token3] = ACTIONS(5668), + [aux_sym_keyword_statement_token4] = ACTIONS(5668), + [aux_sym_keyword_statement_token6] = ACTIONS(5668), + [aux_sym_keyword_statement_token7] = ACTIONS(5668), + [aux_sym_include_statement_token1] = ACTIONS(5668), + [aux_sym_data_statement_token1] = ACTIONS(5668), + [aux_sym_do_loop_statement_token1] = ACTIONS(5668), + [aux_sym__inline_if_statement_token1] = ACTIONS(5668), + [aux_sym_end_if_statement_token1] = ACTIONS(5668), + [aux_sym_elseif_clause_token2] = ACTIONS(5668), + [aux_sym__inline_where_statement_token1] = ACTIONS(5668), + [aux_sym__forall_control_expression_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token1] = ACTIONS(5668), + [aux_sym_select_case_statement_token3] = ACTIONS(5668), + [aux_sym_select_type_statement_token1] = ACTIONS(5668), + [aux_sym_select_rank_statement_token2] = ACTIONS(5668), + [aux_sym_block_construct_token1] = ACTIONS(5668), + [aux_sym_associate_statement_token1] = ACTIONS(5668), + [aux_sym_format_statement_token1] = ACTIONS(5668), + [aux_sym_print_statement_token1] = ACTIONS(5668), + [aux_sym_open_statement_token1] = ACTIONS(5668), + [aux_sym_close_statement_token1] = ACTIONS(5668), + [aux_sym_inquire_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token1] = ACTIONS(5668), + [aux_sym_file_position_statement_token2] = ACTIONS(5668), + [aux_sym_file_position_statement_token3] = ACTIONS(5668), + [aux_sym_file_position_statement_token4] = ACTIONS(5668), + [aux_sym_allocate_statement_token1] = ACTIONS(5668), + [aux_sym_entry_statement_token1] = ACTIONS(5668), + [aux_sym_logical_expression_token5] = ACTIONS(5670), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_LPAREN_SLASH] = ACTIONS(5670), + [anon_sym_LBRACK] = ACTIONS(5670), + [aux_sym_boolean_literal_token1] = ACTIONS(5670), + [aux_sym_boolean_literal_token2] = ACTIONS(5670), + [aux_sym_null_literal_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_statement_token2] = ACTIONS(5668), + [aux_sym_coarray_statement_token6] = ACTIONS(5668), + [aux_sym_coarray_statement_token8] = ACTIONS(5668), + [aux_sym_coarray_statement_token11] = ACTIONS(5668), + [aux_sym_coarray_statement_token12] = ACTIONS(5668), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5668), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5668), + [aux_sym_identifier_token1] = ACTIONS(5668), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5670), + [sym__float_literal] = ACTIONS(5670), + [sym__boz_literal] = ACTIONS(5670), + [sym__string_literal] = ACTIONS(5670), + [sym__string_literal_kind] = ACTIONS(5670), + }, + [2631] = { + [aux_sym_preproc_include_token1] = ACTIONS(2059), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2059), + [sym_preproc_directive] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_DASH] = ACTIONS(5698), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(2059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(2059), + [aux_sym_procedure_attributes_token3] = ACTIONS(2059), + [aux_sym_use_statement_token2] = ACTIONS(2059), + [aux_sym_implicit_statement_token4] = ACTIONS(2059), + [aux_sym_save_statement_token1] = ACTIONS(2059), + [aux_sym_private_statement_token1] = ACTIONS(2059), + [aux_sym_public_statement_token1] = ACTIONS(2059), + [aux_sym_derived_type_definition_token1] = ACTIONS(2059), + [aux_sym_procedure_attribute_token6] = ACTIONS(2059), + [aux_sym_variable_attributes_token2] = ACTIONS(2059), + [aux_sym_variable_attributes_token3] = ACTIONS(2059), + [aux_sym_variable_attributes_token5] = ACTIONS(2059), + [aux_sym__intrinsic_type_token1] = ACTIONS(2059), + [aux_sym__intrinsic_type_token3] = ACTIONS(2059), + [aux_sym__intrinsic_type_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(2059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(2059), + [aux_sym_type_qualifier_token1] = ACTIONS(2059), + [aux_sym_type_qualifier_token2] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(5698), + [aux_sym_stop_statement_token1] = ACTIONS(2059), + [aux_sym_stop_statement_token2] = ACTIONS(2059), + [aux_sym_subroutine_call_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token1] = ACTIONS(2059), + [aux_sym_keyword_statement_token2] = ACTIONS(2059), + [aux_sym_keyword_statement_token3] = ACTIONS(2059), + [aux_sym_keyword_statement_token4] = ACTIONS(2059), + [aux_sym_keyword_statement_token6] = ACTIONS(2059), + [aux_sym_keyword_statement_token7] = ACTIONS(2059), + [aux_sym_include_statement_token1] = ACTIONS(2059), + [aux_sym_data_statement_token1] = ACTIONS(2059), + [aux_sym_do_loop_statement_token1] = ACTIONS(2059), + [aux_sym__inline_if_statement_token1] = ACTIONS(2059), + [aux_sym_end_if_statement_token1] = ACTIONS(2059), + [aux_sym_elseif_clause_token2] = ACTIONS(2059), + [aux_sym__inline_where_statement_token1] = ACTIONS(2059), + [aux_sym__forall_control_expression_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token1] = ACTIONS(2059), + [aux_sym_select_case_statement_token3] = ACTIONS(2059), + [aux_sym_select_type_statement_token1] = ACTIONS(2059), + [aux_sym_select_rank_statement_token2] = ACTIONS(2059), + [aux_sym_block_construct_token1] = ACTIONS(2059), + [aux_sym_associate_statement_token1] = ACTIONS(2059), + [aux_sym_format_statement_token1] = ACTIONS(2059), + [aux_sym_print_statement_token1] = ACTIONS(2059), + [aux_sym_open_statement_token1] = ACTIONS(2059), + [aux_sym_close_statement_token1] = ACTIONS(2059), + [aux_sym_inquire_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token1] = ACTIONS(2059), + [aux_sym_file_position_statement_token2] = ACTIONS(2059), + [aux_sym_file_position_statement_token3] = ACTIONS(2059), + [aux_sym_file_position_statement_token4] = ACTIONS(2059), + [aux_sym_allocate_statement_token1] = ACTIONS(2059), + [aux_sym_entry_statement_token1] = ACTIONS(2059), + [aux_sym_logical_expression_token5] = ACTIONS(5698), + [anon_sym_DOT] = ACTIONS(2059), + [anon_sym_LPAREN_SLASH] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5698), + [aux_sym_boolean_literal_token1] = ACTIONS(5698), + [aux_sym_boolean_literal_token2] = ACTIONS(5698), + [aux_sym_null_literal_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_statement_token2] = ACTIONS(2059), + [aux_sym_coarray_statement_token6] = ACTIONS(2059), + [aux_sym_coarray_statement_token8] = ACTIONS(2059), + [aux_sym_coarray_statement_token11] = ACTIONS(2059), + [aux_sym_coarray_statement_token12] = ACTIONS(2059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(2059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(2059), + [aux_sym_identifier_token1] = ACTIONS(2059), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5698), + [sym__float_literal] = ACTIONS(5698), + [sym__boz_literal] = ACTIONS(5698), + [sym__string_literal] = ACTIONS(5698), + [sym__string_literal_kind] = ACTIONS(5698), }, - [2664] = { - [sym__expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6492), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(7397), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6670), + [2632] = { + [aux_sym_preproc_include_token1] = ACTIONS(5632), + [aux_sym_preproc_def_token1] = ACTIONS(5632), + [aux_sym_preproc_if_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5632), + [sym_preproc_directive] = ACTIONS(5632), + [anon_sym_LPAREN2] = ACTIONS(5632), + [anon_sym_PLUS] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5634), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5632), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5632), + [aux_sym_procedure_attributes_token3] = ACTIONS(5632), + [aux_sym_use_statement_token2] = ACTIONS(5632), + [aux_sym_implicit_statement_token4] = ACTIONS(5632), + [aux_sym_save_statement_token1] = ACTIONS(5632), + [aux_sym_private_statement_token1] = ACTIONS(5632), + [aux_sym_public_statement_token1] = ACTIONS(5632), + [aux_sym_derived_type_definition_token1] = ACTIONS(5632), + [aux_sym_procedure_attribute_token6] = ACTIONS(5632), + [aux_sym_variable_attributes_token2] = ACTIONS(5632), + [aux_sym_variable_attributes_token3] = ACTIONS(5632), + [aux_sym_variable_attributes_token5] = ACTIONS(5632), + [aux_sym__intrinsic_type_token1] = ACTIONS(5632), + [aux_sym__intrinsic_type_token3] = ACTIONS(5632), + [aux_sym__intrinsic_type_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5632), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5632), + [aux_sym_type_qualifier_token1] = ACTIONS(5632), + [aux_sym_type_qualifier_token2] = ACTIONS(5632), + [anon_sym_SEMI] = ACTIONS(5634), + [aux_sym_stop_statement_token1] = ACTIONS(5632), + [aux_sym_stop_statement_token2] = ACTIONS(5632), + [aux_sym_subroutine_call_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token1] = ACTIONS(5632), + [aux_sym_keyword_statement_token2] = ACTIONS(5632), + [aux_sym_keyword_statement_token3] = ACTIONS(5632), + [aux_sym_keyword_statement_token4] = ACTIONS(5632), + [aux_sym_keyword_statement_token6] = ACTIONS(5632), + [aux_sym_keyword_statement_token7] = ACTIONS(5632), + [aux_sym_include_statement_token1] = ACTIONS(5632), + [aux_sym_data_statement_token1] = ACTIONS(5632), + [aux_sym_do_loop_statement_token1] = ACTIONS(5632), + [aux_sym__inline_if_statement_token1] = ACTIONS(5632), + [aux_sym_end_if_statement_token1] = ACTIONS(5632), + [aux_sym_elseif_clause_token2] = ACTIONS(5632), + [aux_sym__inline_where_statement_token1] = ACTIONS(5632), + [aux_sym__forall_control_expression_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token1] = ACTIONS(5632), + [aux_sym_select_case_statement_token3] = ACTIONS(5632), + [aux_sym_select_type_statement_token1] = ACTIONS(5632), + [aux_sym_select_rank_statement_token2] = ACTIONS(5632), + [aux_sym_block_construct_token1] = ACTIONS(5632), + [aux_sym_associate_statement_token1] = ACTIONS(5632), + [aux_sym_format_statement_token1] = ACTIONS(5632), + [aux_sym_print_statement_token1] = ACTIONS(5632), + [aux_sym_open_statement_token1] = ACTIONS(5632), + [aux_sym_close_statement_token1] = ACTIONS(5632), + [aux_sym_inquire_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token1] = ACTIONS(5632), + [aux_sym_file_position_statement_token2] = ACTIONS(5632), + [aux_sym_file_position_statement_token3] = ACTIONS(5632), + [aux_sym_file_position_statement_token4] = ACTIONS(5632), + [aux_sym_allocate_statement_token1] = ACTIONS(5632), + [aux_sym_entry_statement_token1] = ACTIONS(5632), + [aux_sym_logical_expression_token5] = ACTIONS(5634), + [anon_sym_DOT] = ACTIONS(5632), + [anon_sym_LPAREN_SLASH] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(5634), + [aux_sym_boolean_literal_token1] = ACTIONS(5634), + [aux_sym_boolean_literal_token2] = ACTIONS(5634), + [aux_sym_null_literal_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_statement_token2] = ACTIONS(5632), + [aux_sym_coarray_statement_token6] = ACTIONS(5632), + [aux_sym_coarray_statement_token8] = ACTIONS(5632), + [aux_sym_coarray_statement_token11] = ACTIONS(5632), + [aux_sym_coarray_statement_token12] = ACTIONS(5632), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5632), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5632), + [aux_sym_identifier_token1] = ACTIONS(5632), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5634), + [sym__float_literal] = ACTIONS(5634), + [sym__boz_literal] = ACTIONS(5634), + [sym__string_literal] = ACTIONS(5634), + [sym__string_literal_kind] = ACTIONS(5634), }, - [2665] = { - [sym__expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(7049), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(7397), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), + [2633] = { + [aux_sym_preproc_include_token1] = ACTIONS(5672), + [aux_sym_preproc_def_token1] = ACTIONS(5672), + [aux_sym_preproc_if_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5672), + [sym_preproc_directive] = ACTIONS(5672), + [anon_sym_LPAREN2] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5672), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5672), + [aux_sym_procedure_attributes_token3] = ACTIONS(5672), + [aux_sym_use_statement_token2] = ACTIONS(5672), + [aux_sym_implicit_statement_token4] = ACTIONS(5672), + [aux_sym_save_statement_token1] = ACTIONS(5672), + [aux_sym_private_statement_token1] = ACTIONS(5672), + [aux_sym_public_statement_token1] = ACTIONS(5672), + [aux_sym_derived_type_definition_token1] = ACTIONS(5672), + [aux_sym_procedure_attribute_token6] = ACTIONS(5672), + [aux_sym_variable_attributes_token2] = ACTIONS(5672), + [aux_sym_variable_attributes_token3] = ACTIONS(5672), + [aux_sym_variable_attributes_token5] = ACTIONS(5672), + [aux_sym__intrinsic_type_token1] = ACTIONS(5672), + [aux_sym__intrinsic_type_token3] = ACTIONS(5672), + [aux_sym__intrinsic_type_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5672), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5672), + [aux_sym_type_qualifier_token1] = ACTIONS(5672), + [aux_sym_type_qualifier_token2] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(5674), + [aux_sym_stop_statement_token1] = ACTIONS(5672), + [aux_sym_stop_statement_token2] = ACTIONS(5672), + [aux_sym_subroutine_call_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token1] = ACTIONS(5672), + [aux_sym_keyword_statement_token2] = ACTIONS(5672), + [aux_sym_keyword_statement_token3] = ACTIONS(5672), + [aux_sym_keyword_statement_token4] = ACTIONS(5672), + [aux_sym_keyword_statement_token6] = ACTIONS(5672), + [aux_sym_keyword_statement_token7] = ACTIONS(5672), + [aux_sym_include_statement_token1] = ACTIONS(5672), + [aux_sym_data_statement_token1] = ACTIONS(5672), + [aux_sym_do_loop_statement_token1] = ACTIONS(5672), + [aux_sym__inline_if_statement_token1] = ACTIONS(5672), + [aux_sym_end_if_statement_token1] = ACTIONS(5672), + [aux_sym_elseif_clause_token2] = ACTIONS(5672), + [aux_sym__inline_where_statement_token1] = ACTIONS(5672), + [aux_sym__forall_control_expression_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token1] = ACTIONS(5672), + [aux_sym_select_case_statement_token3] = ACTIONS(5672), + [aux_sym_select_type_statement_token1] = ACTIONS(5672), + [aux_sym_select_rank_statement_token2] = ACTIONS(5672), + [aux_sym_block_construct_token1] = ACTIONS(5672), + [aux_sym_associate_statement_token1] = ACTIONS(5672), + [aux_sym_format_statement_token1] = ACTIONS(5672), + [aux_sym_print_statement_token1] = ACTIONS(5672), + [aux_sym_open_statement_token1] = ACTIONS(5672), + [aux_sym_close_statement_token1] = ACTIONS(5672), + [aux_sym_inquire_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token1] = ACTIONS(5672), + [aux_sym_file_position_statement_token2] = ACTIONS(5672), + [aux_sym_file_position_statement_token3] = ACTIONS(5672), + [aux_sym_file_position_statement_token4] = ACTIONS(5672), + [aux_sym_allocate_statement_token1] = ACTIONS(5672), + [aux_sym_entry_statement_token1] = ACTIONS(5672), + [aux_sym_logical_expression_token5] = ACTIONS(5674), + [anon_sym_DOT] = ACTIONS(5672), + [anon_sym_LPAREN_SLASH] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [aux_sym_boolean_literal_token1] = ACTIONS(5674), + [aux_sym_boolean_literal_token2] = ACTIONS(5674), + [aux_sym_null_literal_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_statement_token2] = ACTIONS(5672), + [aux_sym_coarray_statement_token6] = ACTIONS(5672), + [aux_sym_coarray_statement_token8] = ACTIONS(5672), + [aux_sym_coarray_statement_token11] = ACTIONS(5672), + [aux_sym_coarray_statement_token12] = ACTIONS(5672), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5672), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5672), + [aux_sym_identifier_token1] = ACTIONS(5672), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5674), + [sym__float_literal] = ACTIONS(5674), + [sym__boz_literal] = ACTIONS(5674), + [sym__string_literal] = ACTIONS(5674), + [sym__string_literal_kind] = ACTIONS(5674), + }, + [2634] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_subroutine_call_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token1] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_keyword_statement_token4] = ACTIONS(4391), + [aux_sym_keyword_statement_token6] = ACTIONS(4391), + [aux_sym_keyword_statement_token7] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym_do_loop_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym__inline_where_statement_token1] = ACTIONS(4391), + [aux_sym__forall_control_expression_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_select_case_statement_token3] = ACTIONS(4391), + [aux_sym_select_type_statement_token1] = ACTIONS(4391), + [aux_sym_select_rank_statement_token2] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_associate_statement_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_print_statement_token1] = ACTIONS(4391), + [aux_sym_open_statement_token1] = ACTIONS(4391), + [aux_sym_close_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token1] = ACTIONS(4391), + [aux_sym_file_position_statement_token2] = ACTIONS(4391), + [aux_sym_file_position_statement_token3] = ACTIONS(4391), + [aux_sym_file_position_statement_token4] = ACTIONS(4391), + [aux_sym_allocate_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_logical_expression_token5] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LPAREN_SLASH] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [aux_sym_boolean_literal_token1] = ACTIONS(4393), + [aux_sym_boolean_literal_token2] = ACTIONS(4393), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4393), + [sym__float_literal] = ACTIONS(4393), + [sym__boz_literal] = ACTIONS(4393), + [sym__string_literal] = ACTIONS(4393), + [sym__string_literal_kind] = ACTIONS(4393), + }, + [2635] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [anon_sym_SEMI] = ACTIONS(4397), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_subroutine_call_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token1] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_keyword_statement_token4] = ACTIONS(4395), + [aux_sym_keyword_statement_token6] = ACTIONS(4395), + [aux_sym_keyword_statement_token7] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym_do_loop_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym__inline_where_statement_token1] = ACTIONS(4395), + [aux_sym__forall_control_expression_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_select_case_statement_token3] = ACTIONS(4395), + [aux_sym_select_type_statement_token1] = ACTIONS(4395), + [aux_sym_select_rank_statement_token2] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_associate_statement_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_print_statement_token1] = ACTIONS(4395), + [aux_sym_open_statement_token1] = ACTIONS(4395), + [aux_sym_close_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token1] = ACTIONS(4395), + [aux_sym_file_position_statement_token2] = ACTIONS(4395), + [aux_sym_file_position_statement_token3] = ACTIONS(4395), + [aux_sym_file_position_statement_token4] = ACTIONS(4395), + [aux_sym_allocate_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_logical_expression_token5] = ACTIONS(4397), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LPAREN_SLASH] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [aux_sym_boolean_literal_token1] = ACTIONS(4397), + [aux_sym_boolean_literal_token2] = ACTIONS(4397), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + [sym__float_literal] = ACTIONS(4397), + [sym__boz_literal] = ACTIONS(4397), + [sym__string_literal] = ACTIONS(4397), + [sym__string_literal_kind] = ACTIONS(4397), + }, + [2636] = { + [aux_sym_preproc_include_token1] = ACTIONS(4945), + [aux_sym_preproc_def_token1] = ACTIONS(4945), + [aux_sym_preproc_if_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4945), + [sym_preproc_directive] = ACTIONS(4945), + [anon_sym_LPAREN2] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(5520), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4945), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4945), + [aux_sym_procedure_attributes_token3] = ACTIONS(4945), + [aux_sym_use_statement_token2] = ACTIONS(4945), + [aux_sym_implicit_statement_token4] = ACTIONS(4945), + [aux_sym_save_statement_token1] = ACTIONS(4945), + [aux_sym_private_statement_token1] = ACTIONS(4945), + [aux_sym_public_statement_token1] = ACTIONS(4945), + [aux_sym_derived_type_definition_token1] = ACTIONS(4945), + [aux_sym_procedure_attribute_token6] = ACTIONS(4945), + [aux_sym_variable_attributes_token2] = ACTIONS(4945), + [aux_sym_variable_attributes_token3] = ACTIONS(4945), + [aux_sym_variable_attributes_token5] = ACTIONS(4945), + [aux_sym__intrinsic_type_token1] = ACTIONS(4945), + [aux_sym__intrinsic_type_token3] = ACTIONS(4945), + [aux_sym__intrinsic_type_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4945), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4945), + [aux_sym_type_qualifier_token1] = ACTIONS(4945), + [aux_sym_type_qualifier_token2] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(5520), + [aux_sym_stop_statement_token1] = ACTIONS(4945), + [aux_sym_stop_statement_token2] = ACTIONS(4945), + [aux_sym_subroutine_call_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token1] = ACTIONS(4945), + [aux_sym_keyword_statement_token2] = ACTIONS(4945), + [aux_sym_keyword_statement_token3] = ACTIONS(4945), + [aux_sym_keyword_statement_token4] = ACTIONS(4945), + [aux_sym_keyword_statement_token6] = ACTIONS(4945), + [aux_sym_keyword_statement_token7] = ACTIONS(4945), + [aux_sym_include_statement_token1] = ACTIONS(4945), + [aux_sym_data_statement_token1] = ACTIONS(4945), + [aux_sym_do_loop_statement_token1] = ACTIONS(4945), + [aux_sym__inline_if_statement_token1] = ACTIONS(4945), + [aux_sym_end_if_statement_token1] = ACTIONS(4945), + [aux_sym_elseif_clause_token2] = ACTIONS(4945), + [aux_sym__inline_where_statement_token1] = ACTIONS(4945), + [aux_sym__forall_control_expression_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token1] = ACTIONS(4945), + [aux_sym_select_case_statement_token3] = ACTIONS(4945), + [aux_sym_select_type_statement_token1] = ACTIONS(4945), + [aux_sym_select_rank_statement_token2] = ACTIONS(4945), + [aux_sym_block_construct_token1] = ACTIONS(4945), + [aux_sym_associate_statement_token1] = ACTIONS(4945), + [aux_sym_format_statement_token1] = ACTIONS(4945), + [aux_sym_print_statement_token1] = ACTIONS(4945), + [aux_sym_open_statement_token1] = ACTIONS(4945), + [aux_sym_close_statement_token1] = ACTIONS(4945), + [aux_sym_inquire_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token1] = ACTIONS(4945), + [aux_sym_file_position_statement_token2] = ACTIONS(4945), + [aux_sym_file_position_statement_token3] = ACTIONS(4945), + [aux_sym_file_position_statement_token4] = ACTIONS(4945), + [aux_sym_allocate_statement_token1] = ACTIONS(4945), + [aux_sym_entry_statement_token1] = ACTIONS(4945), + [aux_sym_logical_expression_token5] = ACTIONS(5520), + [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_LPAREN_SLASH] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5520), + [aux_sym_boolean_literal_token1] = ACTIONS(5520), + [aux_sym_boolean_literal_token2] = ACTIONS(5520), + [aux_sym_null_literal_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_statement_token2] = ACTIONS(4945), + [aux_sym_coarray_statement_token6] = ACTIONS(4945), + [aux_sym_coarray_statement_token8] = ACTIONS(4945), + [aux_sym_coarray_statement_token11] = ACTIONS(4945), + [aux_sym_coarray_statement_token12] = ACTIONS(4945), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4945), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4945), + [aux_sym_identifier_token1] = ACTIONS(4945), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5520), + [sym__float_literal] = ACTIONS(5520), + [sym__boz_literal] = ACTIONS(5520), + [sym__string_literal] = ACTIONS(5520), + [sym__string_literal_kind] = ACTIONS(5520), + }, + [2637] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [anon_sym_SEMI] = ACTIONS(4401), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_subroutine_call_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token1] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_keyword_statement_token4] = ACTIONS(4399), + [aux_sym_keyword_statement_token6] = ACTIONS(4399), + [aux_sym_keyword_statement_token7] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym_do_loop_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym__inline_where_statement_token1] = ACTIONS(4399), + [aux_sym__forall_control_expression_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_select_case_statement_token3] = ACTIONS(4399), + [aux_sym_select_type_statement_token1] = ACTIONS(4399), + [aux_sym_select_rank_statement_token2] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_associate_statement_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_print_statement_token1] = ACTIONS(4399), + [aux_sym_open_statement_token1] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token1] = ACTIONS(4399), + [aux_sym_file_position_statement_token2] = ACTIONS(4399), + [aux_sym_file_position_statement_token3] = ACTIONS(4399), + [aux_sym_file_position_statement_token4] = ACTIONS(4399), + [aux_sym_allocate_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_logical_expression_token5] = ACTIONS(4401), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LPAREN_SLASH] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [aux_sym_boolean_literal_token1] = ACTIONS(4401), + [aux_sym_boolean_literal_token2] = ACTIONS(4401), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + [sym__float_literal] = ACTIONS(4401), + [sym__boz_literal] = ACTIONS(4401), + [sym__string_literal] = ACTIONS(4401), + [sym__string_literal_kind] = ACTIONS(4401), + }, + [2638] = { + [aux_sym_preproc_include_token1] = ACTIONS(4978), + [aux_sym_preproc_def_token1] = ACTIONS(4978), + [aux_sym_preproc_if_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4978), + [sym_preproc_directive] = ACTIONS(4978), + [anon_sym_LPAREN2] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4978), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4978), + [aux_sym_procedure_attributes_token3] = ACTIONS(4978), + [aux_sym_use_statement_token2] = ACTIONS(4978), + [aux_sym_implicit_statement_token4] = ACTIONS(4978), + [aux_sym_save_statement_token1] = ACTIONS(4978), + [aux_sym_private_statement_token1] = ACTIONS(4978), + [aux_sym_public_statement_token1] = ACTIONS(4978), + [aux_sym_derived_type_definition_token1] = ACTIONS(4978), + [aux_sym_procedure_attribute_token6] = ACTIONS(4978), + [aux_sym_variable_attributes_token2] = ACTIONS(4978), + [aux_sym_variable_attributes_token3] = ACTIONS(4978), + [aux_sym_variable_attributes_token5] = ACTIONS(4978), + [aux_sym__intrinsic_type_token1] = ACTIONS(4978), + [aux_sym__intrinsic_type_token3] = ACTIONS(4978), + [aux_sym__intrinsic_type_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4978), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4978), + [aux_sym_type_qualifier_token1] = ACTIONS(4978), + [aux_sym_type_qualifier_token2] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(5628), + [aux_sym_stop_statement_token1] = ACTIONS(4978), + [aux_sym_stop_statement_token2] = ACTIONS(4978), + [aux_sym_subroutine_call_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token1] = ACTIONS(4978), + [aux_sym_keyword_statement_token2] = ACTIONS(4978), + [aux_sym_keyword_statement_token3] = ACTIONS(4978), + [aux_sym_keyword_statement_token4] = ACTIONS(4978), + [aux_sym_keyword_statement_token6] = ACTIONS(4978), + [aux_sym_keyword_statement_token7] = ACTIONS(4978), + [aux_sym_include_statement_token1] = ACTIONS(4978), + [aux_sym_data_statement_token1] = ACTIONS(4978), + [aux_sym_do_loop_statement_token1] = ACTIONS(4978), + [aux_sym__inline_if_statement_token1] = ACTIONS(4978), + [aux_sym_end_if_statement_token1] = ACTIONS(4978), + [aux_sym_elseif_clause_token2] = ACTIONS(4978), + [aux_sym__inline_where_statement_token1] = ACTIONS(4978), + [aux_sym__forall_control_expression_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token1] = ACTIONS(4978), + [aux_sym_select_case_statement_token3] = ACTIONS(4978), + [aux_sym_select_type_statement_token1] = ACTIONS(4978), + [aux_sym_select_rank_statement_token2] = ACTIONS(4978), + [aux_sym_block_construct_token1] = ACTIONS(4978), + [aux_sym_associate_statement_token1] = ACTIONS(4978), + [aux_sym_format_statement_token1] = ACTIONS(4978), + [aux_sym_print_statement_token1] = ACTIONS(4978), + [aux_sym_open_statement_token1] = ACTIONS(4978), + [aux_sym_close_statement_token1] = ACTIONS(4978), + [aux_sym_inquire_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token1] = ACTIONS(4978), + [aux_sym_file_position_statement_token2] = ACTIONS(4978), + [aux_sym_file_position_statement_token3] = ACTIONS(4978), + [aux_sym_file_position_statement_token4] = ACTIONS(4978), + [aux_sym_allocate_statement_token1] = ACTIONS(4978), + [aux_sym_entry_statement_token1] = ACTIONS(4978), + [aux_sym_logical_expression_token5] = ACTIONS(5628), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_LPAREN_SLASH] = ACTIONS(5628), + [anon_sym_LBRACK] = ACTIONS(5628), + [aux_sym_boolean_literal_token1] = ACTIONS(5628), + [aux_sym_boolean_literal_token2] = ACTIONS(5628), + [aux_sym_null_literal_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_statement_token2] = ACTIONS(4978), + [aux_sym_coarray_statement_token6] = ACTIONS(4978), + [aux_sym_coarray_statement_token8] = ACTIONS(4978), + [aux_sym_coarray_statement_token11] = ACTIONS(4978), + [aux_sym_coarray_statement_token12] = ACTIONS(4978), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4978), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4978), + [aux_sym_identifier_token1] = ACTIONS(4978), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5628), + [sym__float_literal] = ACTIONS(5628), + [sym__boz_literal] = ACTIONS(5628), + [sym__string_literal] = ACTIONS(5628), + [sym__string_literal_kind] = ACTIONS(5628), + }, + [2639] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_subroutine_call_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token1] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_keyword_statement_token4] = ACTIONS(4403), + [aux_sym_keyword_statement_token6] = ACTIONS(4403), + [aux_sym_keyword_statement_token7] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym_do_loop_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym__inline_where_statement_token1] = ACTIONS(4403), + [aux_sym__forall_control_expression_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_select_case_statement_token3] = ACTIONS(4403), + [aux_sym_select_type_statement_token1] = ACTIONS(4403), + [aux_sym_select_rank_statement_token2] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_associate_statement_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_print_statement_token1] = ACTIONS(4403), + [aux_sym_open_statement_token1] = ACTIONS(4403), + [aux_sym_close_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token1] = ACTIONS(4403), + [aux_sym_file_position_statement_token2] = ACTIONS(4403), + [aux_sym_file_position_statement_token3] = ACTIONS(4403), + [aux_sym_file_position_statement_token4] = ACTIONS(4403), + [aux_sym_allocate_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_logical_expression_token5] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LPAREN_SLASH] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [aux_sym_boolean_literal_token1] = ACTIONS(4405), + [aux_sym_boolean_literal_token2] = ACTIONS(4405), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + [sym__float_literal] = ACTIONS(4405), + [sym__boz_literal] = ACTIONS(4405), + [sym__string_literal] = ACTIONS(4405), + [sym__string_literal_kind] = ACTIONS(4405), + }, + [2640] = { + [aux_sym_preproc_include_token1] = ACTIONS(5032), + [aux_sym_preproc_def_token1] = ACTIONS(5032), + [aux_sym_preproc_if_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5032), + [sym_preproc_directive] = ACTIONS(5032), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5032), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5032), + [aux_sym_procedure_attributes_token3] = ACTIONS(5032), + [aux_sym_use_statement_token2] = ACTIONS(5032), + [aux_sym_implicit_statement_token4] = ACTIONS(5032), + [aux_sym_save_statement_token1] = ACTIONS(5032), + [aux_sym_private_statement_token1] = ACTIONS(5032), + [aux_sym_public_statement_token1] = ACTIONS(5032), + [aux_sym_derived_type_definition_token1] = ACTIONS(5032), + [aux_sym_procedure_attribute_token6] = ACTIONS(5032), + [aux_sym_variable_attributes_token2] = ACTIONS(5032), + [aux_sym_variable_attributes_token3] = ACTIONS(5032), + [aux_sym_variable_attributes_token5] = ACTIONS(5032), + [aux_sym__intrinsic_type_token1] = ACTIONS(5032), + [aux_sym__intrinsic_type_token3] = ACTIONS(5032), + [aux_sym__intrinsic_type_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5032), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5032), + [aux_sym_type_qualifier_token1] = ACTIONS(5032), + [aux_sym_type_qualifier_token2] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5630), + [aux_sym_stop_statement_token1] = ACTIONS(5032), + [aux_sym_stop_statement_token2] = ACTIONS(5032), + [aux_sym_subroutine_call_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token1] = ACTIONS(5032), + [aux_sym_keyword_statement_token2] = ACTIONS(5032), + [aux_sym_keyword_statement_token3] = ACTIONS(5032), + [aux_sym_keyword_statement_token4] = ACTIONS(5032), + [aux_sym_keyword_statement_token6] = ACTIONS(5032), + [aux_sym_keyword_statement_token7] = ACTIONS(5032), + [aux_sym_include_statement_token1] = ACTIONS(5032), + [aux_sym_data_statement_token1] = ACTIONS(5032), + [aux_sym_do_loop_statement_token1] = ACTIONS(5032), + [aux_sym__inline_if_statement_token1] = ACTIONS(5032), + [aux_sym_end_if_statement_token1] = ACTIONS(5032), + [aux_sym_elseif_clause_token2] = ACTIONS(5032), + [aux_sym__inline_where_statement_token1] = ACTIONS(5032), + [aux_sym__forall_control_expression_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token1] = ACTIONS(5032), + [aux_sym_select_case_statement_token3] = ACTIONS(5032), + [aux_sym_select_type_statement_token1] = ACTIONS(5032), + [aux_sym_select_rank_statement_token2] = ACTIONS(5032), + [aux_sym_block_construct_token1] = ACTIONS(5032), + [aux_sym_associate_statement_token1] = ACTIONS(5032), + [aux_sym_format_statement_token1] = ACTIONS(5032), + [aux_sym_print_statement_token1] = ACTIONS(5032), + [aux_sym_open_statement_token1] = ACTIONS(5032), + [aux_sym_close_statement_token1] = ACTIONS(5032), + [aux_sym_inquire_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token1] = ACTIONS(5032), + [aux_sym_file_position_statement_token2] = ACTIONS(5032), + [aux_sym_file_position_statement_token3] = ACTIONS(5032), + [aux_sym_file_position_statement_token4] = ACTIONS(5032), + [aux_sym_allocate_statement_token1] = ACTIONS(5032), + [aux_sym_entry_statement_token1] = ACTIONS(5032), + [aux_sym_logical_expression_token5] = ACTIONS(5630), + [anon_sym_DOT] = ACTIONS(5032), + [anon_sym_LPAREN_SLASH] = ACTIONS(5630), + [anon_sym_LBRACK] = ACTIONS(5630), + [aux_sym_boolean_literal_token1] = ACTIONS(5630), + [aux_sym_boolean_literal_token2] = ACTIONS(5630), + [aux_sym_null_literal_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_statement_token2] = ACTIONS(5032), + [aux_sym_coarray_statement_token6] = ACTIONS(5032), + [aux_sym_coarray_statement_token8] = ACTIONS(5032), + [aux_sym_coarray_statement_token11] = ACTIONS(5032), + [aux_sym_coarray_statement_token12] = ACTIONS(5032), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5032), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5032), + [aux_sym_identifier_token1] = ACTIONS(5032), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5630), + [sym__float_literal] = ACTIONS(5630), + [sym__boz_literal] = ACTIONS(5630), + [sym__string_literal] = ACTIONS(5630), + [sym__string_literal_kind] = ACTIONS(5630), + }, + [2641] = { + [sym__expression] = STATE(4295), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6695), + [sym_extent_specifier] = STATE(6695), + [sym_assumed_size] = STATE(6695), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), + [anon_sym_RPAREN] = ACTIONS(6610), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6670), + [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -409321,10 +407040,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -409341,13 +407060,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), + [sym_assumed_rank] = ACTIONS(6620), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [aux_sym_boolean_literal_token1] = ACTIONS(167), @@ -409363,43 +407083,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2666] = { - [sym__expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6476), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(7397), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), + [2642] = { + [sym__expression] = STATE(4328), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6398), + [sym_extent_specifier] = STATE(6398), + [sym_assumed_size] = STATE(6398), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), + [anon_sym_RPAREN] = ACTIONS(6630), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6670), + [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -409415,10 +407137,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -409435,13 +407157,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), + [sym_assumed_rank] = ACTIONS(6632), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [aux_sym_boolean_literal_token1] = ACTIONS(167), @@ -409457,137 +407180,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2667] = { - [sym_unit_identifier] = STATE(7137), - [sym__file_position_spec] = STATE(7137), - [sym__io_expressions] = STATE(7270), - [sym__expression] = STATE(4565), - [sym_parenthesized_expression] = STATE(4681), - [sym_derived_type_member_expression] = STATE(4681), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(4681), - [sym_math_expression] = STATE(4681), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4681), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(4826), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(4681), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4681), - [anon_sym_LPAREN2] = ACTIONS(6694), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(6696), + [2643] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(5464), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_subroutine_call_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token1] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_keyword_statement_token4] = ACTIONS(4407), + [aux_sym_keyword_statement_token6] = ACTIONS(4407), + [aux_sym_keyword_statement_token7] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym_do_loop_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym__inline_where_statement_token1] = ACTIONS(4407), + [aux_sym__forall_control_expression_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_select_case_statement_token3] = ACTIONS(4407), + [aux_sym_select_type_statement_token1] = ACTIONS(4407), + [aux_sym_select_rank_statement_token2] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_associate_statement_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_print_statement_token1] = ACTIONS(4407), + [aux_sym_open_statement_token1] = ACTIONS(4407), + [aux_sym_close_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token1] = ACTIONS(4407), + [aux_sym_file_position_statement_token2] = ACTIONS(4407), + [aux_sym_file_position_statement_token3] = ACTIONS(4407), + [aux_sym_file_position_statement_token4] = ACTIONS(4407), + [aux_sym_allocate_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_logical_expression_token5] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LPAREN_SLASH] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [aux_sym_boolean_literal_token1] = ACTIONS(4409), + [aux_sym_boolean_literal_token2] = ACTIONS(4409), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + [sym__float_literal] = ACTIONS(4409), + [sym__boz_literal] = ACTIONS(4409), + [sym__string_literal] = ACTIONS(4409), + [sym__string_literal_kind] = ACTIONS(4409), + }, + [2644] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_LPAREN2] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_subroutine_call_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token1] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_keyword_statement_token4] = ACTIONS(4411), + [aux_sym_keyword_statement_token6] = ACTIONS(4411), + [aux_sym_keyword_statement_token7] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym_do_loop_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym__inline_where_statement_token1] = ACTIONS(4411), + [aux_sym__forall_control_expression_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_select_case_statement_token3] = ACTIONS(4411), + [aux_sym_select_type_statement_token1] = ACTIONS(4411), + [aux_sym_select_rank_statement_token2] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_associate_statement_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_print_statement_token1] = ACTIONS(4411), + [aux_sym_open_statement_token1] = ACTIONS(4411), + [aux_sym_close_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token1] = ACTIONS(4411), + [aux_sym_file_position_statement_token2] = ACTIONS(4411), + [aux_sym_file_position_statement_token3] = ACTIONS(4411), + [aux_sym_file_position_statement_token4] = ACTIONS(4411), + [aux_sym_allocate_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_logical_expression_token5] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_LPAREN_SLASH] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [aux_sym_boolean_literal_token1] = ACTIONS(4413), + [aux_sym_boolean_literal_token2] = ACTIONS(4413), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4413), + [sym__float_literal] = ACTIONS(4413), + [sym__boz_literal] = ACTIONS(4413), + [sym__string_literal] = ACTIONS(4413), + [sym__string_literal_kind] = ACTIONS(4413), + }, + [2645] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [anon_sym_SEMI] = ACTIONS(4417), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_subroutine_call_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token1] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_keyword_statement_token4] = ACTIONS(4415), + [aux_sym_keyword_statement_token6] = ACTIONS(4415), + [aux_sym_keyword_statement_token7] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym_do_loop_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym__inline_where_statement_token1] = ACTIONS(4415), + [aux_sym__forall_control_expression_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_select_case_statement_token3] = ACTIONS(4415), + [aux_sym_select_type_statement_token1] = ACTIONS(4415), + [aux_sym_select_rank_statement_token2] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_associate_statement_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_print_statement_token1] = ACTIONS(4415), + [aux_sym_open_statement_token1] = ACTIONS(4415), + [aux_sym_close_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token1] = ACTIONS(4415), + [aux_sym_file_position_statement_token2] = ACTIONS(4415), + [aux_sym_file_position_statement_token3] = ACTIONS(4415), + [aux_sym_file_position_statement_token4] = ACTIONS(4415), + [aux_sym_allocate_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_logical_expression_token5] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(4415), + [anon_sym_LPAREN_SLASH] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4417), + [aux_sym_boolean_literal_token1] = ACTIONS(4417), + [aux_sym_boolean_literal_token2] = ACTIONS(4417), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4417), + [sym__float_literal] = ACTIONS(4417), + [sym__boz_literal] = ACTIONS(4417), + [sym__string_literal] = ACTIONS(4417), + [sym__string_literal_kind] = ACTIONS(4417), + }, + [2646] = { + [aux_sym_preproc_include_token1] = ACTIONS(4935), + [aux_sym_preproc_def_token1] = ACTIONS(4935), + [aux_sym_preproc_if_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4935), + [sym_preproc_directive] = ACTIONS(4935), + [anon_sym_LPAREN2] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4935), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4935), + [aux_sym_procedure_attributes_token3] = ACTIONS(4935), + [aux_sym_use_statement_token2] = ACTIONS(4935), + [aux_sym_implicit_statement_token4] = ACTIONS(4935), + [aux_sym_save_statement_token1] = ACTIONS(4935), + [aux_sym_private_statement_token1] = ACTIONS(4935), + [aux_sym_public_statement_token1] = ACTIONS(4935), + [aux_sym_derived_type_definition_token1] = ACTIONS(4935), + [aux_sym_procedure_attribute_token6] = ACTIONS(4935), + [aux_sym_variable_attributes_token2] = ACTIONS(4935), + [aux_sym_variable_attributes_token3] = ACTIONS(4935), + [aux_sym_variable_attributes_token5] = ACTIONS(4935), + [aux_sym__intrinsic_type_token1] = ACTIONS(4935), + [aux_sym__intrinsic_type_token3] = ACTIONS(4935), + [aux_sym__intrinsic_type_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4935), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4935), + [aux_sym_type_qualifier_token1] = ACTIONS(4935), + [aux_sym_type_qualifier_token2] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(5510), + [aux_sym_stop_statement_token1] = ACTIONS(4935), + [aux_sym_stop_statement_token2] = ACTIONS(4935), + [aux_sym_subroutine_call_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token1] = ACTIONS(4935), + [aux_sym_keyword_statement_token2] = ACTIONS(4935), + [aux_sym_keyword_statement_token3] = ACTIONS(4935), + [aux_sym_keyword_statement_token4] = ACTIONS(4935), + [aux_sym_keyword_statement_token6] = ACTIONS(4935), + [aux_sym_keyword_statement_token7] = ACTIONS(4935), + [aux_sym_include_statement_token1] = ACTIONS(4935), + [aux_sym_data_statement_token1] = ACTIONS(4935), + [aux_sym_do_loop_statement_token1] = ACTIONS(4935), + [aux_sym__inline_if_statement_token1] = ACTIONS(4935), + [aux_sym_end_if_statement_token1] = ACTIONS(4935), + [aux_sym_elseif_clause_token2] = ACTIONS(4935), + [aux_sym__inline_where_statement_token1] = ACTIONS(4935), + [aux_sym__forall_control_expression_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token1] = ACTIONS(4935), + [aux_sym_select_case_statement_token3] = ACTIONS(4935), + [aux_sym_select_type_statement_token1] = ACTIONS(4935), + [aux_sym_select_rank_statement_token2] = ACTIONS(4935), + [aux_sym_block_construct_token1] = ACTIONS(4935), + [aux_sym_associate_statement_token1] = ACTIONS(4935), + [aux_sym_format_statement_token1] = ACTIONS(4935), + [aux_sym_print_statement_token1] = ACTIONS(4935), + [aux_sym_open_statement_token1] = ACTIONS(4935), + [aux_sym_close_statement_token1] = ACTIONS(4935), + [aux_sym_inquire_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token1] = ACTIONS(4935), + [aux_sym_file_position_statement_token2] = ACTIONS(4935), + [aux_sym_file_position_statement_token3] = ACTIONS(4935), + [aux_sym_file_position_statement_token4] = ACTIONS(4935), + [aux_sym_allocate_statement_token1] = ACTIONS(4935), + [aux_sym_entry_statement_token1] = ACTIONS(4935), + [aux_sym_logical_expression_token5] = ACTIONS(5510), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_LPAREN_SLASH] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5510), + [aux_sym_boolean_literal_token1] = ACTIONS(5510), + [aux_sym_boolean_literal_token2] = ACTIONS(5510), + [aux_sym_null_literal_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_statement_token2] = ACTIONS(4935), + [aux_sym_coarray_statement_token6] = ACTIONS(4935), + [aux_sym_coarray_statement_token8] = ACTIONS(4935), + [aux_sym_coarray_statement_token11] = ACTIONS(4935), + [aux_sym_coarray_statement_token12] = ACTIONS(4935), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4935), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4935), + [aux_sym_identifier_token1] = ACTIONS(4935), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__integer_literal] = ACTIONS(5510), + [sym__float_literal] = ACTIONS(5510), + [sym__boz_literal] = ACTIONS(5510), + [sym__string_literal] = ACTIONS(5510), + [sym__string_literal_kind] = ACTIONS(5510), }, - [2668] = { - [sym__expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6661), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(7397), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), + [2647] = { + [sym__argument_list] = STATE(2529), + [sym_argument_list] = STATE(3366), + [anon_sym_LPAREN2] = ACTIONS(6644), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5594), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5594), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5594), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5594), + [aux_sym_use_statement_token2] = ACTIONS(5594), + [anon_sym_COLON_COLON] = ACTIONS(6646), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5594), + [aux_sym_save_statement_token1] = ACTIONS(5594), + [aux_sym_private_statement_token1] = ACTIONS(5594), + [aux_sym_public_statement_token1] = ACTIONS(5594), + [aux_sym_derived_type_definition_token1] = ACTIONS(5594), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5594), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5594), + [aux_sym_variable_attributes_token3] = ACTIONS(5594), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5594), + [aux_sym__intrinsic_type_token1] = ACTIONS(5594), + [aux_sym__intrinsic_type_token3] = ACTIONS(5594), + [aux_sym__intrinsic_type_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5594), + [aux_sym_type_qualifier_token2] = ACTIONS(5594), + [aux_sym_stop_statement_token1] = ACTIONS(5594), + [aux_sym_stop_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token3] = ACTIONS(5594), + [aux_sym_data_statement_token1] = ACTIONS(5594), + [aux_sym__inline_if_statement_token1] = ACTIONS(5594), + [aux_sym_end_if_statement_token1] = ACTIONS(5594), + [aux_sym_elseif_clause_token2] = ACTIONS(5594), + [aux_sym_select_case_statement_token1] = ACTIONS(5594), + [aux_sym_block_construct_token1] = ACTIONS(5594), + [aux_sym_format_statement_token1] = ACTIONS(5594), + [aux_sym_inquire_statement_token1] = ACTIONS(5594), + [aux_sym_entry_statement_token1] = ACTIONS(5594), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token2] = ACTIONS(5594), + [aux_sym_coarray_statement_token6] = ACTIONS(5594), + [aux_sym_coarray_statement_token8] = ACTIONS(5594), + [aux_sym_coarray_statement_token11] = ACTIONS(5594), + [aux_sym_coarray_statement_token12] = ACTIONS(5594), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5594), + [aux_sym_identifier_token1] = ACTIONS(5594), + [sym_comment] = ACTIONS(21), + }, + [2648] = { + [sym__expression] = STATE(4349), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(7367), + [sym_extent_specifier] = STATE(7367), + [sym_assumed_size] = STATE(7367), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6670), + [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -409603,10 +407717,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -409623,13 +407737,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), + [sym_assumed_rank] = ACTIONS(6648), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), [aux_sym_boolean_literal_token1] = ACTIONS(167), @@ -409645,43 +407760,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2669] = { - [sym__expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6710), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(7397), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), + [2649] = { + [sym_statement_label] = STATE(3929), + [sym_statement_label_reference] = STATE(7372), + [sym_format_identifier] = STATE(7111), + [sym__io_expressions] = STATE(7372), + [sym__expression] = STATE(4561), + [sym_parenthesized_expression] = STATE(4965), + [sym_derived_type_member_expression] = STATE(4965), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(4965), + [sym_math_expression] = STATE(4965), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4965), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6310), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(4965), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4665), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6670), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(6650), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -409697,10 +407814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -409717,12 +407834,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -409739,43 +407856,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(4237), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2670] = { - [sym__expression] = STATE(4336), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_assumed_size] = STATE(6426), - [sym_assumed_shape] = STATE(6426), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2650] = { + [sym__expression] = STATE(4355), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_assumed_size] = STATE(6609), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_COMMA] = ACTIONS(6652), + [anon_sym_RPAREN] = ACTIONS(6652), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6698), + [anon_sym_COLON] = ACTIONS(6654), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -409791,10 +407909,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -409811,12 +407929,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -409833,43 +407951,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2671] = { - [sym__expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6989), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(7397), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4562), + [2651] = { + [sym__expression] = STATE(4372), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_assumed_size] = STATE(6560), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_COMMA] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(6656), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6670), + [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_COLON] = ACTIONS(6658), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -409885,10 +408004,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -409905,7 +408024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -409927,224 +408046,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2672] = { - [sym_input_item_list] = STATE(7153), - [sym__expression] = STATE(4320), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6700), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - [sym__external_end_of_statement] = ACTIONS(6700), - }, - [2673] = { - [aux_sym_preproc_include_token1] = ACTIONS(4277), - [aux_sym_preproc_def_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token2] = ACTIONS(4277), - [aux_sym_preproc_else_token1] = ACTIONS(4277), - [aux_sym_preproc_elif_token1] = ACTIONS(4277), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4277), - [sym_preproc_directive] = ACTIONS(4277), - [sym_preproc_comment] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4277), - [aux_sym_interface_statement_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4277), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4277), - [aux_sym_language_binding_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token3] = ACTIONS(4277), - [aux_sym_contains_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token2] = ACTIONS(4277), - [aux_sym_implicit_statement_token1] = ACTIONS(4277), - [aux_sym_implicit_statement_token3] = ACTIONS(4277), - [aux_sym_implicit_statement_token4] = ACTIONS(4277), - [aux_sym_save_statement_token1] = ACTIONS(4277), - [aux_sym_private_statement_token1] = ACTIONS(4277), - [aux_sym_public_statement_token1] = ACTIONS(4277), - [aux_sym_namelist_statement_token1] = ACTIONS(4277), - [aux_sym_common_statement_token1] = ACTIONS(4277), - [aux_sym_import_statement_token1] = ACTIONS(4277), - [aux_sym_derived_type_definition_token1] = ACTIONS(4277), - [aux_sym_abstract_specifier_token1] = ACTIONS(4277), - [aux_sym_procedure_attribute_token6] = ACTIONS(4277), - [aux_sym_variable_attributes_token1] = ACTIONS(4277), - [aux_sym_variable_attributes_token2] = ACTIONS(4277), - [aux_sym_variable_attributes_token3] = ACTIONS(4277), - [aux_sym_variable_attributes_token4] = ACTIONS(4277), - [aux_sym_variable_attributes_token5] = ACTIONS(4277), - [aux_sym__intrinsic_type_token1] = ACTIONS(4277), - [aux_sym__intrinsic_type_token2] = ACTIONS(4277), - [aux_sym__intrinsic_type_token3] = ACTIONS(4277), - [aux_sym__intrinsic_type_token4] = ACTIONS(4277), - [aux_sym__intrinsic_type_token6] = ACTIONS(4277), - [aux_sym__intrinsic_type_token7] = ACTIONS(4277), - [aux_sym__intrinsic_type_token8] = ACTIONS(4277), - [aux_sym__intrinsic_type_token9] = ACTIONS(4277), - [aux_sym__intrinsic_type_token10] = ACTIONS(4277), - [aux_sym_derived_type_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4277), - [aux_sym_type_qualifier_token1] = ACTIONS(4277), - [aux_sym_type_qualifier_token2] = ACTIONS(4277), - [aux_sym_equivalence_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token3] = ACTIONS(4277), - [aux_sym_include_statement_token1] = ACTIONS(4277), - [aux_sym_data_statement_token1] = ACTIONS(4277), - [aux_sym__inline_if_statement_token1] = ACTIONS(4277), - [aux_sym_end_if_statement_token1] = ACTIONS(4277), - [aux_sym_elseif_clause_token2] = ACTIONS(4277), - [aux_sym_select_case_statement_token1] = ACTIONS(4277), - [aux_sym_block_construct_token1] = ACTIONS(4277), - [aux_sym_format_statement_token1] = ACTIONS(4277), - [aux_sym_inquire_statement_token1] = ACTIONS(4277), - [aux_sym_enum_statement_token1] = ACTIONS(4277), - [aux_sym_entry_statement_token1] = ACTIONS(4277), - [aux_sym_null_literal_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token2] = ACTIONS(4277), - [aux_sym_coarray_statement_token6] = ACTIONS(4277), - [aux_sym_coarray_statement_token8] = ACTIONS(4277), - [aux_sym_coarray_statement_token11] = ACTIONS(4277), - [aux_sym_coarray_statement_token12] = ACTIONS(4277), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4277), - [aux_sym_identifier_token1] = ACTIONS(4277), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4279), - }, - [2674] = { - [sym_output_item_list] = STATE(7246), - [sym__expression] = STATE(4323), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2652] = { + [sym_statement_label] = STATE(6507), + [sym_statement_label_reference] = STATE(6508), + [sym_format_identifier] = STATE(6767), + [sym__io_expressions] = STATE(6508), + [sym__expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4653), + [sym_derived_type_member_expression] = STATE(4653), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(4653), + [sym_math_expression] = STATE(4653), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4653), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(4653), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4653), + [anon_sym_LPAREN2] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(6662), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), @@ -410174,7 +408111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6702), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -410188,13 +408124,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(5464), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -410205,43 +408141,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), + [sym__integer_literal] = ACTIONS(5466), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(5468), [sym__string_literal_kind] = ACTIONS(5470), - [sym__external_end_of_statement] = ACTIONS(6702), }, - [2675] = { - [sym__expression] = STATE(4265), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(6757), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2653] = { + [sym__expression] = STATE(4344), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6743), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(7322), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6704), + [anon_sym_STAR] = ACTIONS(6664), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_COLON] = ACTIONS(6666), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -410257,10 +408193,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -410277,7 +408213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -410299,133 +408235,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2676] = { - [sym_case_value_range_list] = STATE(8056), - [sym__expression] = STATE(4286), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_extent_specifier] = STATE(6415), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [2654] = { + [anon_sym_LPAREN2] = ACTIONS(6668), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5594), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5594), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5594), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5594), + [aux_sym_use_statement_token2] = ACTIONS(5594), + [anon_sym_COLON_COLON] = ACTIONS(6646), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5594), + [aux_sym_save_statement_token1] = ACTIONS(5594), + [aux_sym_private_statement_token1] = ACTIONS(5594), + [aux_sym_public_statement_token1] = ACTIONS(5594), + [aux_sym_derived_type_definition_token1] = ACTIONS(5594), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5594), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5594), + [aux_sym_variable_attributes_token3] = ACTIONS(5594), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5594), + [aux_sym__intrinsic_type_token1] = ACTIONS(5594), + [aux_sym__intrinsic_type_token3] = ACTIONS(5594), + [aux_sym__intrinsic_type_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5594), + [aux_sym_type_qualifier_token2] = ACTIONS(5594), + [aux_sym_stop_statement_token1] = ACTIONS(5594), + [aux_sym_stop_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token3] = ACTIONS(5594), + [aux_sym_data_statement_token1] = ACTIONS(5594), + [aux_sym__inline_if_statement_token1] = ACTIONS(5594), + [aux_sym_end_if_statement_token1] = ACTIONS(5594), + [aux_sym_elseif_clause_token2] = ACTIONS(5594), + [aux_sym_select_case_statement_token1] = ACTIONS(5594), + [aux_sym_block_construct_token1] = ACTIONS(5594), + [aux_sym_format_statement_token1] = ACTIONS(5594), + [aux_sym_inquire_statement_token1] = ACTIONS(5594), + [aux_sym_entry_statement_token1] = ACTIONS(5594), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token2] = ACTIONS(5594), + [aux_sym_coarray_statement_token6] = ACTIONS(5594), + [aux_sym_coarray_statement_token8] = ACTIONS(5594), + [aux_sym_coarray_statement_token11] = ACTIONS(5594), + [aux_sym_coarray_statement_token12] = ACTIONS(5594), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5594), + [aux_sym_identifier_token1] = ACTIONS(5594), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), }, - [2677] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6543), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4746), + [2655] = { + [sym_unit_identifier] = STATE(7079), + [sym__io_expressions] = STATE(7379), + [sym__expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(4965), + [sym_derived_type_member_expression] = STATE(4965), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(4965), + [sym_math_expression] = STATE(4965), + [sym_unary_expression] = STATE(5018), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(4965), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6947), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(4924), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(4965), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4767), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_STAR] = ACTIONS(6670), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -410443,10 +408381,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -410463,12 +408401,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -410485,42 +408423,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2678] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6325), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4746), + [2656] = { + [sym__expression] = STATE(4344), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6994), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(7322), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6664), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6666), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -410536,10 +408475,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -410556,12 +408495,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -410578,42 +408517,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2679] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6801), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4746), + [2657] = { + [sym__expression] = STATE(4338), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_assumed_size] = STATE(6341), + [sym_assumed_shape] = STATE(6341), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_STAR] = ACTIONS(6614), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6672), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -410629,10 +408569,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -410649,12 +408589,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -410671,40 +408611,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2680] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6491), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4746), + [2658] = { + [sym_unit_identifier] = STATE(7350), + [sym__io_expressions] = STATE(7379), + [sym__expression] = STATE(4561), + [sym_parenthesized_expression] = STATE(4965), + [sym_derived_type_member_expression] = STATE(4965), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(4965), + [sym_math_expression] = STATE(4965), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4965), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6892), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(5014), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(4965), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4665), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(6670), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -410722,10 +408663,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -410742,7 +408683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -410764,42 +408705,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2681] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6334), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4746), + [2659] = { + [sym__expression] = STATE(4336), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_COMMA] = ACTIONS(6674), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6676), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6678), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -410815,10 +408756,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -410835,15 +408776,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_RBRACK] = ACTIONS(6674), [aux_sym_boolean_literal_token1] = ACTIONS(167), [aux_sym_boolean_literal_token2] = ACTIONS(167), [aux_sym_null_literal_token1] = ACTIONS(169), @@ -410857,135 +408799,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2682] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6282), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4746), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [2660] = { + [sym_output_item_list] = STATE(7178), + [sym__expression] = STATE(4307), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_COMMA] = ACTIONS(6680), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6686), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6686), }, - [2683] = { - [sym__expression] = STATE(4340), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(7397), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2661] = { + [sym_unit_identifier] = STATE(8115), + [sym__io_expressions] = STATE(7379), + [sym__expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(4934), + [sym_derived_type_member_expression] = STATE(4934), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(4934), + [sym_math_expression] = STATE(4934), + [sym_unary_expression] = STATE(5018), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(4934), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6911), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(4817), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(4934), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4736), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_STAR] = ACTIONS(6670), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -411001,10 +408945,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -411021,12 +408965,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -411043,42 +408987,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2684] = { - [sym__expression] = STATE(4309), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(6970), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2662] = { + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5594), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5594), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5594), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5594), + [aux_sym_use_statement_token2] = ACTIONS(5594), + [anon_sym_COLON_COLON] = ACTIONS(6646), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5594), + [aux_sym_save_statement_token1] = ACTIONS(5594), + [aux_sym_private_statement_token1] = ACTIONS(5594), + [aux_sym_public_statement_token1] = ACTIONS(5594), + [aux_sym_derived_type_definition_token1] = ACTIONS(5594), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5594), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5594), + [aux_sym_variable_attributes_token3] = ACTIONS(5594), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5594), + [aux_sym__intrinsic_type_token1] = ACTIONS(5594), + [aux_sym__intrinsic_type_token3] = ACTIONS(5594), + [aux_sym__intrinsic_type_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5594), + [aux_sym_type_qualifier_token2] = ACTIONS(5594), + [aux_sym_stop_statement_token1] = ACTIONS(5594), + [aux_sym_stop_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token3] = ACTIONS(5594), + [aux_sym_data_statement_token1] = ACTIONS(5594), + [aux_sym__inline_if_statement_token1] = ACTIONS(5594), + [aux_sym_end_if_statement_token1] = ACTIONS(5594), + [aux_sym_elseif_clause_token2] = ACTIONS(5594), + [aux_sym_select_case_statement_token1] = ACTIONS(5594), + [aux_sym_block_construct_token1] = ACTIONS(5594), + [aux_sym_format_statement_token1] = ACTIONS(5594), + [aux_sym_inquire_statement_token1] = ACTIONS(5594), + [aux_sym_entry_statement_token1] = ACTIONS(5594), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token2] = ACTIONS(5594), + [aux_sym_coarray_statement_token6] = ACTIONS(5594), + [aux_sym_coarray_statement_token8] = ACTIONS(5594), + [aux_sym_coarray_statement_token11] = ACTIONS(5594), + [aux_sym_coarray_statement_token12] = ACTIONS(5594), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5594), + [aux_sym_identifier_token1] = ACTIONS(5594), + [sym_comment] = ACTIONS(21), + }, + [2663] = { + [sym__expression] = STATE(4344), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6528), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(7322), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6706), + [anon_sym_STAR] = ACTIONS(6664), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_COLON] = ACTIONS(6666), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -411094,10 +409133,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -411114,7 +409153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -411136,131 +409175,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2685] = { - [sym_output_item_list] = STATE(7324), - [sym__expression] = STATE(4323), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6708), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - [sym__external_end_of_statement] = ACTIONS(6708), - }, - [2686] = { - [sym__expression] = STATE(4349), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_COMMA] = ACTIONS(6710), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2664] = { + [sym_unit_identifier] = STATE(7369), + [sym__file_position_spec] = STATE(7369), + [sym__io_expressions] = STATE(7370), + [sym__expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4653), + [sym_derived_type_member_expression] = STATE(4653), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(4653), + [sym_math_expression] = STATE(4653), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4653), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(4997), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(4653), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4653), + [anon_sym_LPAREN2] = ACTIONS(6690), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(6692), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), @@ -411290,7 +409239,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6712), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -411304,13 +409252,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(5464), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -411321,43 +409269,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), [sym__string_literal] = ACTIONS(5468), [sym__string_literal_kind] = ACTIONS(5470), - [sym__external_end_of_statement] = ACTIONS(6712), }, - [2687] = { - [sym__expression] = STATE(4267), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(6537), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2665] = { + [sym__expression] = STATE(4334), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_COMMA] = ACTIONS(6694), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6714), + [anon_sym_STAR] = ACTIONS(6696), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_COLON] = ACTIONS(6698), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -411373,10 +409320,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -411393,7 +409340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -411402,6 +409349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_RBRACK] = ACTIONS(6694), [aux_sym_boolean_literal_token1] = ACTIONS(167), [aux_sym_boolean_literal_token2] = ACTIONS(167), [aux_sym_null_literal_token1] = ACTIONS(169), @@ -411415,40 +409363,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2688] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6430), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4746), + [2666] = { + [sym_unit_identifier] = STATE(7079), + [sym__io_expressions] = STATE(7379), + [sym__expression] = STATE(4561), + [sym_parenthesized_expression] = STATE(4965), + [sym_derived_type_member_expression] = STATE(4965), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(4965), + [sym_math_expression] = STATE(4965), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4965), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6947), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(5014), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(4965), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4665), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(6670), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -411466,10 +409415,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -411486,7 +409435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -411508,135 +409457,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2689] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token2] = ACTIONS(4323), - [aux_sym_preproc_else_token1] = ACTIONS(4323), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - }, - [2690] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6490), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4746), + [2667] = { + [sym__expression] = STATE(4344), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6451), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(7322), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6664), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6666), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -411652,10 +409509,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -411672,12 +409529,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -411694,42 +409551,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2691] = { - [sym_case_value_range_list] = STATE(7642), - [sym__expression] = STATE(4286), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_extent_specifier] = STATE(6415), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2668] = { + [sym__expression] = STATE(4344), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6554), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(7322), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6664), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6666), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -411745,10 +409603,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -411765,7 +409623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -411787,135 +409645,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2692] = { - [aux_sym_preproc_include_token1] = ACTIONS(4331), - [aux_sym_preproc_def_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token2] = ACTIONS(4331), - [aux_sym_preproc_else_token1] = ACTIONS(4331), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4331), - [sym_preproc_directive] = ACTIONS(4331), - [sym_preproc_comment] = ACTIONS(4333), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4331), - [aux_sym_interface_statement_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4331), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4331), - [aux_sym_language_binding_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token3] = ACTIONS(4331), - [aux_sym_contains_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token2] = ACTIONS(4331), - [aux_sym_implicit_statement_token1] = ACTIONS(4331), - [aux_sym_implicit_statement_token3] = ACTIONS(4331), - [aux_sym_implicit_statement_token4] = ACTIONS(4331), - [aux_sym_save_statement_token1] = ACTIONS(4331), - [aux_sym_private_statement_token1] = ACTIONS(4331), - [aux_sym_public_statement_token1] = ACTIONS(4331), - [aux_sym_namelist_statement_token1] = ACTIONS(4331), - [aux_sym_common_statement_token1] = ACTIONS(4331), - [aux_sym_import_statement_token1] = ACTIONS(4331), - [aux_sym_derived_type_definition_token1] = ACTIONS(4331), - [aux_sym_abstract_specifier_token1] = ACTIONS(4331), - [aux_sym_procedure_attribute_token6] = ACTIONS(4331), - [aux_sym_variable_attributes_token1] = ACTIONS(4331), - [aux_sym_variable_attributes_token2] = ACTIONS(4331), - [aux_sym_variable_attributes_token3] = ACTIONS(4331), - [aux_sym_variable_attributes_token4] = ACTIONS(4331), - [aux_sym_variable_attributes_token5] = ACTIONS(4331), - [aux_sym__intrinsic_type_token1] = ACTIONS(4331), - [aux_sym__intrinsic_type_token2] = ACTIONS(4331), - [aux_sym__intrinsic_type_token3] = ACTIONS(4331), - [aux_sym__intrinsic_type_token4] = ACTIONS(4331), - [aux_sym__intrinsic_type_token6] = ACTIONS(4331), - [aux_sym__intrinsic_type_token7] = ACTIONS(4331), - [aux_sym__intrinsic_type_token8] = ACTIONS(4331), - [aux_sym__intrinsic_type_token9] = ACTIONS(4331), - [aux_sym__intrinsic_type_token10] = ACTIONS(4331), - [aux_sym_derived_type_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4331), - [aux_sym_type_qualifier_token1] = ACTIONS(4331), - [aux_sym_type_qualifier_token2] = ACTIONS(4331), - [aux_sym_equivalence_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token3] = ACTIONS(4331), - [aux_sym_include_statement_token1] = ACTIONS(4331), - [aux_sym_data_statement_token1] = ACTIONS(4331), - [aux_sym__inline_if_statement_token1] = ACTIONS(4331), - [aux_sym_end_if_statement_token1] = ACTIONS(4331), - [aux_sym_elseif_clause_token2] = ACTIONS(4331), - [aux_sym_select_case_statement_token1] = ACTIONS(4331), - [aux_sym_block_construct_token1] = ACTIONS(4331), - [aux_sym_format_statement_token1] = ACTIONS(4331), - [aux_sym_inquire_statement_token1] = ACTIONS(4331), - [aux_sym_enum_statement_token1] = ACTIONS(4331), - [aux_sym_entry_statement_token1] = ACTIONS(4331), - [aux_sym_null_literal_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token2] = ACTIONS(4331), - [aux_sym_coarray_statement_token6] = ACTIONS(4331), - [aux_sym_coarray_statement_token8] = ACTIONS(4331), - [aux_sym_coarray_statement_token11] = ACTIONS(4331), - [aux_sym_coarray_statement_token12] = ACTIONS(4331), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4331), - [aux_sym_identifier_token1] = ACTIONS(4331), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4333), - }, - [2693] = { - [sym__expression] = STATE(4328), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym__coarray_extent_specifier] = STATE(6902), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2669] = { + [sym__expression] = STATE(4344), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6480), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(7322), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6664), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_COLON] = ACTIONS(6666), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -411931,10 +409697,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -411951,7 +409717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -411973,42 +409739,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2694] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_keyword_argument] = STATE(6313), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4746), + [2670] = { + [sym__expression] = STATE(4344), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6522), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(7322), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6664), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6666), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -412024,10 +409791,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -412044,12 +409811,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -412066,42 +409833,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2695] = { - [sym_case_value_range_list] = STATE(8340), - [sym__expression] = STATE(4286), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_extent_specifier] = STATE(6415), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2671] = { + [sym__expression] = STATE(4344), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6727), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(7322), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4564), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6664), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6666), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -412117,10 +409885,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -412137,7 +409905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -412159,321 +409927,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2696] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token2] = ACTIONS(4323), - [aux_sym_preproc_else_token1] = ACTIONS(4323), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - }, - [2697] = { - [aux_sym_preproc_include_token1] = ACTIONS(4335), - [aux_sym_preproc_def_token1] = ACTIONS(4335), - [aux_sym_preproc_if_token2] = ACTIONS(4335), - [aux_sym_preproc_else_token1] = ACTIONS(4335), - [aux_sym_preproc_elif_token1] = ACTIONS(4335), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4335), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4335), - [sym_preproc_directive] = ACTIONS(4335), - [sym_preproc_comment] = ACTIONS(4337), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4335), - [aux_sym_interface_statement_token1] = ACTIONS(4335), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), - [aux_sym_language_binding_token1] = ACTIONS(4335), - [aux_sym_procedure_attributes_token1] = ACTIONS(4335), - [aux_sym_procedure_attributes_token3] = ACTIONS(4335), - [aux_sym_contains_statement_token1] = ACTIONS(4335), - [aux_sym_use_statement_token1] = ACTIONS(4335), - [aux_sym_use_statement_token2] = ACTIONS(4335), - [aux_sym_implicit_statement_token1] = ACTIONS(4335), - [aux_sym_implicit_statement_token3] = ACTIONS(4335), - [aux_sym_implicit_statement_token4] = ACTIONS(4335), - [aux_sym_save_statement_token1] = ACTIONS(4335), - [aux_sym_private_statement_token1] = ACTIONS(4335), - [aux_sym_public_statement_token1] = ACTIONS(4335), - [aux_sym_namelist_statement_token1] = ACTIONS(4335), - [aux_sym_common_statement_token1] = ACTIONS(4335), - [aux_sym_import_statement_token1] = ACTIONS(4335), - [aux_sym_derived_type_definition_token1] = ACTIONS(4335), - [aux_sym_abstract_specifier_token1] = ACTIONS(4335), - [aux_sym_procedure_attribute_token6] = ACTIONS(4335), - [aux_sym_variable_attributes_token1] = ACTIONS(4335), - [aux_sym_variable_attributes_token2] = ACTIONS(4335), - [aux_sym_variable_attributes_token3] = ACTIONS(4335), - [aux_sym_variable_attributes_token4] = ACTIONS(4335), - [aux_sym_variable_attributes_token5] = ACTIONS(4335), - [aux_sym__intrinsic_type_token1] = ACTIONS(4335), - [aux_sym__intrinsic_type_token2] = ACTIONS(4335), - [aux_sym__intrinsic_type_token3] = ACTIONS(4335), - [aux_sym__intrinsic_type_token4] = ACTIONS(4335), - [aux_sym__intrinsic_type_token6] = ACTIONS(4335), - [aux_sym__intrinsic_type_token7] = ACTIONS(4335), - [aux_sym__intrinsic_type_token8] = ACTIONS(4335), - [aux_sym__intrinsic_type_token9] = ACTIONS(4335), - [aux_sym__intrinsic_type_token10] = ACTIONS(4335), - [aux_sym_derived_type_token1] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), - [aux_sym_type_qualifier_token1] = ACTIONS(4335), - [aux_sym_type_qualifier_token2] = ACTIONS(4335), - [aux_sym_equivalence_statement_token1] = ACTIONS(4335), - [aux_sym_stop_statement_token1] = ACTIONS(4335), - [aux_sym_stop_statement_token2] = ACTIONS(4335), - [aux_sym_keyword_statement_token2] = ACTIONS(4335), - [aux_sym_keyword_statement_token3] = ACTIONS(4335), - [aux_sym_include_statement_token1] = ACTIONS(4335), - [aux_sym_data_statement_token1] = ACTIONS(4335), - [aux_sym__inline_if_statement_token1] = ACTIONS(4335), - [aux_sym_end_if_statement_token1] = ACTIONS(4335), - [aux_sym_elseif_clause_token2] = ACTIONS(4335), - [aux_sym_select_case_statement_token1] = ACTIONS(4335), - [aux_sym_block_construct_token1] = ACTIONS(4335), - [aux_sym_format_statement_token1] = ACTIONS(4335), - [aux_sym_inquire_statement_token1] = ACTIONS(4335), - [aux_sym_enum_statement_token1] = ACTIONS(4335), - [aux_sym_entry_statement_token1] = ACTIONS(4335), - [aux_sym_null_literal_token1] = ACTIONS(4335), - [aux_sym_coarray_statement_token1] = ACTIONS(4335), - [aux_sym_coarray_statement_token2] = ACTIONS(4335), - [aux_sym_coarray_statement_token6] = ACTIONS(4335), - [aux_sym_coarray_statement_token8] = ACTIONS(4335), - [aux_sym_coarray_statement_token11] = ACTIONS(4335), - [aux_sym_coarray_statement_token12] = ACTIONS(4335), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), - [aux_sym_identifier_token1] = ACTIONS(4335), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4337), - }, - [2698] = { - [sym_output_item_list] = STATE(7418), - [sym__expression] = STATE(4323), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6718), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - [sym__external_end_of_statement] = ACTIONS(6718), - }, - [2699] = { - [sym_case_value_range_list] = STATE(8410), - [sym__expression] = STATE(4286), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_extent_specifier] = STATE(6415), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2672] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(7050), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4768), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -412489,10 +409978,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -412509,12 +409998,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -412531,42 +410020,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2700] = { - [sym_case_value_range_list] = STATE(7994), - [sym__expression] = STATE(4286), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_extent_specifier] = STATE(6415), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2673] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6332), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4768), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -412582,10 +410071,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -412602,12 +410091,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -412624,42 +410113,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2701] = { - [sym_case_value_range_list] = STATE(8053), - [sym__expression] = STATE(4286), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_extent_specifier] = STATE(6415), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2674] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6450), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4768), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), [aux_sym_procedure_attributes_token3] = ACTIONS(93), @@ -412675,10 +410164,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -412695,1163 +410184,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2702] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token2] = ACTIONS(5073), - [aux_sym_preproc_else_token1] = ACTIONS(5073), - [aux_sym_preproc_elif_token1] = ACTIONS(5073), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - }, - [2703] = { - [aux_sym_preproc_include_token1] = ACTIONS(6720), - [aux_sym_preproc_def_token1] = ACTIONS(6720), - [aux_sym_preproc_if_token1] = ACTIONS(6720), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6720), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6720), - [sym_preproc_directive] = ACTIONS(6720), - [sym_preproc_comment] = ACTIONS(6722), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6720), - [aux_sym_end_module_statement_token1] = ACTIONS(6720), - [aux_sym_interface_statement_token1] = ACTIONS(6720), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6720), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6720), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6720), - [aux_sym_language_binding_token1] = ACTIONS(6720), - [aux_sym_procedure_attributes_token1] = ACTIONS(6720), - [aux_sym_procedure_attributes_token3] = ACTIONS(6720), - [aux_sym_contains_statement_token1] = ACTIONS(6720), - [aux_sym_use_statement_token1] = ACTIONS(6720), - [aux_sym_use_statement_token2] = ACTIONS(6720), - [aux_sym_implicit_statement_token1] = ACTIONS(6720), - [aux_sym_implicit_statement_token3] = ACTIONS(6720), - [aux_sym_implicit_statement_token4] = ACTIONS(6720), - [aux_sym_save_statement_token1] = ACTIONS(6720), - [aux_sym_private_statement_token1] = ACTIONS(6720), - [aux_sym_public_statement_token1] = ACTIONS(6720), - [aux_sym_namelist_statement_token1] = ACTIONS(6720), - [aux_sym_common_statement_token1] = ACTIONS(6720), - [aux_sym_import_statement_token1] = ACTIONS(6720), - [aux_sym_derived_type_definition_token1] = ACTIONS(6720), - [aux_sym_abstract_specifier_token1] = ACTIONS(6720), - [aux_sym_procedure_attribute_token6] = ACTIONS(6720), - [aux_sym_variable_attributes_token1] = ACTIONS(6720), - [aux_sym_variable_attributes_token2] = ACTIONS(6720), - [aux_sym_variable_attributes_token3] = ACTIONS(6720), - [aux_sym_variable_attributes_token4] = ACTIONS(6720), - [aux_sym_variable_attributes_token5] = ACTIONS(6720), - [aux_sym__intrinsic_type_token1] = ACTIONS(6720), - [aux_sym__intrinsic_type_token2] = ACTIONS(6720), - [aux_sym__intrinsic_type_token3] = ACTIONS(6720), - [aux_sym__intrinsic_type_token4] = ACTIONS(6720), - [aux_sym__intrinsic_type_token6] = ACTIONS(6720), - [aux_sym__intrinsic_type_token7] = ACTIONS(6720), - [aux_sym__intrinsic_type_token8] = ACTIONS(6720), - [aux_sym__intrinsic_type_token9] = ACTIONS(6720), - [aux_sym__intrinsic_type_token10] = ACTIONS(6720), - [aux_sym_derived_type_token1] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6720), - [aux_sym_type_qualifier_token1] = ACTIONS(6720), - [aux_sym_type_qualifier_token2] = ACTIONS(6720), - [aux_sym_equivalence_statement_token1] = ACTIONS(6720), - [aux_sym_stop_statement_token1] = ACTIONS(6720), - [aux_sym_stop_statement_token2] = ACTIONS(6720), - [aux_sym_keyword_statement_token2] = ACTIONS(6720), - [aux_sym_keyword_statement_token3] = ACTIONS(6720), - [aux_sym_include_statement_token1] = ACTIONS(6720), - [aux_sym_data_statement_token1] = ACTIONS(6720), - [aux_sym__inline_if_statement_token1] = ACTIONS(6720), - [aux_sym_end_if_statement_token1] = ACTIONS(6720), - [aux_sym_elseif_clause_token2] = ACTIONS(6720), - [aux_sym_select_case_statement_token1] = ACTIONS(6720), - [aux_sym_block_construct_token1] = ACTIONS(6720), - [aux_sym_format_statement_token1] = ACTIONS(6720), - [aux_sym_inquire_statement_token1] = ACTIONS(6720), - [aux_sym_enum_statement_token1] = ACTIONS(6720), - [aux_sym_entry_statement_token1] = ACTIONS(6720), - [aux_sym_null_literal_token1] = ACTIONS(6720), - [aux_sym_coarray_statement_token1] = ACTIONS(6720), - [aux_sym_coarray_statement_token2] = ACTIONS(6720), - [aux_sym_coarray_statement_token6] = ACTIONS(6720), - [aux_sym_coarray_statement_token8] = ACTIONS(6720), - [aux_sym_coarray_statement_token11] = ACTIONS(6720), - [aux_sym_coarray_statement_token12] = ACTIONS(6720), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6720), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6720), - [aux_sym_identifier_token1] = ACTIONS(6720), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6724), - }, - [2704] = { - [aux_sym_preproc_include_token1] = ACTIONS(6726), - [aux_sym_preproc_def_token1] = ACTIONS(6726), - [aux_sym_preproc_if_token1] = ACTIONS(6726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6726), - [sym_preproc_directive] = ACTIONS(6726), - [sym_preproc_comment] = ACTIONS(6728), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6726), - [aux_sym_end_module_statement_token1] = ACTIONS(6726), - [aux_sym_interface_statement_token1] = ACTIONS(6726), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6726), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6726), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6726), - [aux_sym_language_binding_token1] = ACTIONS(6726), - [aux_sym_procedure_attributes_token1] = ACTIONS(6726), - [aux_sym_procedure_attributes_token3] = ACTIONS(6726), - [aux_sym_contains_statement_token1] = ACTIONS(6726), - [aux_sym_use_statement_token1] = ACTIONS(6726), - [aux_sym_use_statement_token2] = ACTIONS(6726), - [aux_sym_implicit_statement_token1] = ACTIONS(6726), - [aux_sym_implicit_statement_token3] = ACTIONS(6726), - [aux_sym_implicit_statement_token4] = ACTIONS(6726), - [aux_sym_save_statement_token1] = ACTIONS(6726), - [aux_sym_private_statement_token1] = ACTIONS(6726), - [aux_sym_public_statement_token1] = ACTIONS(6726), - [aux_sym_namelist_statement_token1] = ACTIONS(6726), - [aux_sym_common_statement_token1] = ACTIONS(6726), - [aux_sym_import_statement_token1] = ACTIONS(6726), - [aux_sym_derived_type_definition_token1] = ACTIONS(6726), - [aux_sym_abstract_specifier_token1] = ACTIONS(6726), - [aux_sym_procedure_attribute_token6] = ACTIONS(6726), - [aux_sym_variable_attributes_token1] = ACTIONS(6726), - [aux_sym_variable_attributes_token2] = ACTIONS(6726), - [aux_sym_variable_attributes_token3] = ACTIONS(6726), - [aux_sym_variable_attributes_token4] = ACTIONS(6726), - [aux_sym_variable_attributes_token5] = ACTIONS(6726), - [aux_sym__intrinsic_type_token1] = ACTIONS(6726), - [aux_sym__intrinsic_type_token2] = ACTIONS(6726), - [aux_sym__intrinsic_type_token3] = ACTIONS(6726), - [aux_sym__intrinsic_type_token4] = ACTIONS(6726), - [aux_sym__intrinsic_type_token6] = ACTIONS(6726), - [aux_sym__intrinsic_type_token7] = ACTIONS(6726), - [aux_sym__intrinsic_type_token8] = ACTIONS(6726), - [aux_sym__intrinsic_type_token9] = ACTIONS(6726), - [aux_sym__intrinsic_type_token10] = ACTIONS(6726), - [aux_sym_derived_type_token1] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6726), - [aux_sym_type_qualifier_token1] = ACTIONS(6726), - [aux_sym_type_qualifier_token2] = ACTIONS(6726), - [aux_sym_equivalence_statement_token1] = ACTIONS(6726), - [aux_sym_stop_statement_token1] = ACTIONS(6726), - [aux_sym_stop_statement_token2] = ACTIONS(6726), - [aux_sym_keyword_statement_token2] = ACTIONS(6726), - [aux_sym_keyword_statement_token3] = ACTIONS(6726), - [aux_sym_include_statement_token1] = ACTIONS(6726), - [aux_sym_data_statement_token1] = ACTIONS(6726), - [aux_sym__inline_if_statement_token1] = ACTIONS(6726), - [aux_sym_end_if_statement_token1] = ACTIONS(6726), - [aux_sym_elseif_clause_token2] = ACTIONS(6726), - [aux_sym_select_case_statement_token1] = ACTIONS(6726), - [aux_sym_block_construct_token1] = ACTIONS(6726), - [aux_sym_format_statement_token1] = ACTIONS(6726), - [aux_sym_inquire_statement_token1] = ACTIONS(6726), - [aux_sym_enum_statement_token1] = ACTIONS(6726), - [aux_sym_entry_statement_token1] = ACTIONS(6726), - [aux_sym_null_literal_token1] = ACTIONS(6726), - [aux_sym_coarray_statement_token1] = ACTIONS(6726), - [aux_sym_coarray_statement_token2] = ACTIONS(6726), - [aux_sym_coarray_statement_token6] = ACTIONS(6726), - [aux_sym_coarray_statement_token8] = ACTIONS(6726), - [aux_sym_coarray_statement_token11] = ACTIONS(6726), - [aux_sym_coarray_statement_token12] = ACTIONS(6726), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6726), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6726), - [aux_sym_identifier_token1] = ACTIONS(6726), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6730), - }, - [2705] = { - [aux_sym_preproc_include_token1] = ACTIONS(6732), - [aux_sym_preproc_def_token1] = ACTIONS(6732), - [aux_sym_preproc_if_token1] = ACTIONS(6732), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6732), - [sym_preproc_directive] = ACTIONS(6732), - [sym_preproc_comment] = ACTIONS(6734), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6732), - [aux_sym_end_module_statement_token1] = ACTIONS(6732), - [aux_sym_interface_statement_token1] = ACTIONS(6732), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6732), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6732), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6732), - [aux_sym_language_binding_token1] = ACTIONS(6732), - [aux_sym_procedure_attributes_token1] = ACTIONS(6732), - [aux_sym_procedure_attributes_token3] = ACTIONS(6732), - [aux_sym_contains_statement_token1] = ACTIONS(6732), - [aux_sym_use_statement_token1] = ACTIONS(6732), - [aux_sym_use_statement_token2] = ACTIONS(6732), - [aux_sym_implicit_statement_token1] = ACTIONS(6732), - [aux_sym_implicit_statement_token3] = ACTIONS(6732), - [aux_sym_implicit_statement_token4] = ACTIONS(6732), - [aux_sym_save_statement_token1] = ACTIONS(6732), - [aux_sym_private_statement_token1] = ACTIONS(6732), - [aux_sym_public_statement_token1] = ACTIONS(6732), - [aux_sym_namelist_statement_token1] = ACTIONS(6732), - [aux_sym_common_statement_token1] = ACTIONS(6732), - [aux_sym_import_statement_token1] = ACTIONS(6732), - [aux_sym_derived_type_definition_token1] = ACTIONS(6732), - [aux_sym_abstract_specifier_token1] = ACTIONS(6732), - [aux_sym_procedure_attribute_token6] = ACTIONS(6732), - [aux_sym_variable_attributes_token1] = ACTIONS(6732), - [aux_sym_variable_attributes_token2] = ACTIONS(6732), - [aux_sym_variable_attributes_token3] = ACTIONS(6732), - [aux_sym_variable_attributes_token4] = ACTIONS(6732), - [aux_sym_variable_attributes_token5] = ACTIONS(6732), - [aux_sym__intrinsic_type_token1] = ACTIONS(6732), - [aux_sym__intrinsic_type_token2] = ACTIONS(6732), - [aux_sym__intrinsic_type_token3] = ACTIONS(6732), - [aux_sym__intrinsic_type_token4] = ACTIONS(6732), - [aux_sym__intrinsic_type_token6] = ACTIONS(6732), - [aux_sym__intrinsic_type_token7] = ACTIONS(6732), - [aux_sym__intrinsic_type_token8] = ACTIONS(6732), - [aux_sym__intrinsic_type_token9] = ACTIONS(6732), - [aux_sym__intrinsic_type_token10] = ACTIONS(6732), - [aux_sym_derived_type_token1] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6732), - [aux_sym_type_qualifier_token1] = ACTIONS(6732), - [aux_sym_type_qualifier_token2] = ACTIONS(6732), - [aux_sym_equivalence_statement_token1] = ACTIONS(6732), - [aux_sym_stop_statement_token1] = ACTIONS(6732), - [aux_sym_stop_statement_token2] = ACTIONS(6732), - [aux_sym_keyword_statement_token2] = ACTIONS(6732), - [aux_sym_keyword_statement_token3] = ACTIONS(6732), - [aux_sym_include_statement_token1] = ACTIONS(6732), - [aux_sym_data_statement_token1] = ACTIONS(6732), - [aux_sym__inline_if_statement_token1] = ACTIONS(6732), - [aux_sym_end_if_statement_token1] = ACTIONS(6732), - [aux_sym_elseif_clause_token2] = ACTIONS(6732), - [aux_sym_select_case_statement_token1] = ACTIONS(6732), - [aux_sym_block_construct_token1] = ACTIONS(6732), - [aux_sym_format_statement_token1] = ACTIONS(6732), - [aux_sym_inquire_statement_token1] = ACTIONS(6732), - [aux_sym_enum_statement_token1] = ACTIONS(6732), - [aux_sym_entry_statement_token1] = ACTIONS(6732), - [aux_sym_null_literal_token1] = ACTIONS(6732), - [aux_sym_coarray_statement_token1] = ACTIONS(6732), - [aux_sym_coarray_statement_token2] = ACTIONS(6732), - [aux_sym_coarray_statement_token6] = ACTIONS(6732), - [aux_sym_coarray_statement_token8] = ACTIONS(6732), - [aux_sym_coarray_statement_token11] = ACTIONS(6732), - [aux_sym_coarray_statement_token12] = ACTIONS(6732), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6732), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6732), - [aux_sym_identifier_token1] = ACTIONS(6732), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6736), - }, - [2706] = { - [aux_sym_preproc_include_token1] = ACTIONS(6738), - [aux_sym_preproc_def_token1] = ACTIONS(6738), - [aux_sym_preproc_if_token1] = ACTIONS(6738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6738), - [sym_preproc_directive] = ACTIONS(6738), - [sym_preproc_comment] = ACTIONS(6740), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6738), - [aux_sym_end_module_statement_token1] = ACTIONS(6738), - [aux_sym_interface_statement_token1] = ACTIONS(6738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6738), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6738), - [aux_sym_language_binding_token1] = ACTIONS(6738), - [aux_sym_procedure_attributes_token1] = ACTIONS(6738), - [aux_sym_procedure_attributes_token3] = ACTIONS(6738), - [aux_sym_contains_statement_token1] = ACTIONS(6738), - [aux_sym_use_statement_token1] = ACTIONS(6738), - [aux_sym_use_statement_token2] = ACTIONS(6738), - [aux_sym_implicit_statement_token1] = ACTIONS(6738), - [aux_sym_implicit_statement_token3] = ACTIONS(6738), - [aux_sym_implicit_statement_token4] = ACTIONS(6738), - [aux_sym_save_statement_token1] = ACTIONS(6738), - [aux_sym_private_statement_token1] = ACTIONS(6738), - [aux_sym_public_statement_token1] = ACTIONS(6738), - [aux_sym_namelist_statement_token1] = ACTIONS(6738), - [aux_sym_common_statement_token1] = ACTIONS(6738), - [aux_sym_import_statement_token1] = ACTIONS(6738), - [aux_sym_derived_type_definition_token1] = ACTIONS(6738), - [aux_sym_abstract_specifier_token1] = ACTIONS(6738), - [aux_sym_procedure_attribute_token6] = ACTIONS(6738), - [aux_sym_variable_attributes_token1] = ACTIONS(6738), - [aux_sym_variable_attributes_token2] = ACTIONS(6738), - [aux_sym_variable_attributes_token3] = ACTIONS(6738), - [aux_sym_variable_attributes_token4] = ACTIONS(6738), - [aux_sym_variable_attributes_token5] = ACTIONS(6738), - [aux_sym__intrinsic_type_token1] = ACTIONS(6738), - [aux_sym__intrinsic_type_token2] = ACTIONS(6738), - [aux_sym__intrinsic_type_token3] = ACTIONS(6738), - [aux_sym__intrinsic_type_token4] = ACTIONS(6738), - [aux_sym__intrinsic_type_token6] = ACTIONS(6738), - [aux_sym__intrinsic_type_token7] = ACTIONS(6738), - [aux_sym__intrinsic_type_token8] = ACTIONS(6738), - [aux_sym__intrinsic_type_token9] = ACTIONS(6738), - [aux_sym__intrinsic_type_token10] = ACTIONS(6738), - [aux_sym_derived_type_token1] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6738), - [aux_sym_type_qualifier_token1] = ACTIONS(6738), - [aux_sym_type_qualifier_token2] = ACTIONS(6738), - [aux_sym_equivalence_statement_token1] = ACTIONS(6738), - [aux_sym_stop_statement_token1] = ACTIONS(6738), - [aux_sym_stop_statement_token2] = ACTIONS(6738), - [aux_sym_keyword_statement_token2] = ACTIONS(6738), - [aux_sym_keyword_statement_token3] = ACTIONS(6738), - [aux_sym_include_statement_token1] = ACTIONS(6738), - [aux_sym_data_statement_token1] = ACTIONS(6738), - [aux_sym__inline_if_statement_token1] = ACTIONS(6738), - [aux_sym_end_if_statement_token1] = ACTIONS(6738), - [aux_sym_elseif_clause_token2] = ACTIONS(6738), - [aux_sym_select_case_statement_token1] = ACTIONS(6738), - [aux_sym_block_construct_token1] = ACTIONS(6738), - [aux_sym_format_statement_token1] = ACTIONS(6738), - [aux_sym_inquire_statement_token1] = ACTIONS(6738), - [aux_sym_enum_statement_token1] = ACTIONS(6738), - [aux_sym_entry_statement_token1] = ACTIONS(6738), - [aux_sym_null_literal_token1] = ACTIONS(6738), - [aux_sym_coarray_statement_token1] = ACTIONS(6738), - [aux_sym_coarray_statement_token2] = ACTIONS(6738), - [aux_sym_coarray_statement_token6] = ACTIONS(6738), - [aux_sym_coarray_statement_token8] = ACTIONS(6738), - [aux_sym_coarray_statement_token11] = ACTIONS(6738), - [aux_sym_coarray_statement_token12] = ACTIONS(6738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6738), - [aux_sym_identifier_token1] = ACTIONS(6738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6742), - }, - [2707] = { - [anon_sym_LPAREN2] = ACTIONS(6744), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6744), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6744), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6744), - [aux_sym_procedure_attributes_token3] = ACTIONS(6744), - [aux_sym_use_statement_token2] = ACTIONS(6744), - [aux_sym_implicit_statement_token4] = ACTIONS(6744), - [aux_sym_save_statement_token1] = ACTIONS(6744), - [aux_sym_private_statement_token1] = ACTIONS(6744), - [aux_sym_public_statement_token1] = ACTIONS(6744), - [aux_sym_derived_type_definition_token1] = ACTIONS(6744), - [aux_sym_procedure_attribute_token6] = ACTIONS(6744), - [aux_sym_variable_attributes_token2] = ACTIONS(6744), - [aux_sym_variable_attributes_token3] = ACTIONS(6744), - [aux_sym_variable_attributes_token5] = ACTIONS(6744), - [aux_sym__intrinsic_type_token1] = ACTIONS(6744), - [aux_sym__intrinsic_type_token3] = ACTIONS(6744), - [aux_sym__intrinsic_type_token4] = ACTIONS(6744), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6744), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6744), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6744), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6744), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6744), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6744), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6744), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6744), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6744), - [aux_sym_type_qualifier_token1] = ACTIONS(6744), - [aux_sym_type_qualifier_token2] = ACTIONS(6744), - [anon_sym_SEMI] = ACTIONS(6746), - [aux_sym_stop_statement_token1] = ACTIONS(6744), - [aux_sym_stop_statement_token2] = ACTIONS(6744), - [aux_sym_subroutine_call_token1] = ACTIONS(6744), - [aux_sym_keyword_statement_token1] = ACTIONS(6744), - [aux_sym_keyword_statement_token2] = ACTIONS(6744), - [aux_sym_keyword_statement_token3] = ACTIONS(6744), - [aux_sym_keyword_statement_token4] = ACTIONS(6744), - [aux_sym_keyword_statement_token6] = ACTIONS(6744), - [aux_sym_keyword_statement_token7] = ACTIONS(6744), - [aux_sym_include_statement_token1] = ACTIONS(6744), - [aux_sym_data_statement_token1] = ACTIONS(6744), - [aux_sym_do_loop_statement_token1] = ACTIONS(6744), - [aux_sym__inline_if_statement_token1] = ACTIONS(6744), - [aux_sym_end_if_statement_token1] = ACTIONS(6744), - [aux_sym_elseif_clause_token2] = ACTIONS(6744), - [aux_sym__inline_where_statement_token1] = ACTIONS(6744), - [aux_sym__forall_control_expression_token1] = ACTIONS(6744), - [aux_sym_select_case_statement_token1] = ACTIONS(6744), - [aux_sym_select_case_statement_token3] = ACTIONS(6744), - [aux_sym_select_type_statement_token1] = ACTIONS(6744), - [aux_sym_select_rank_statement_token2] = ACTIONS(6744), - [aux_sym_block_construct_token1] = ACTIONS(6744), - [aux_sym_associate_statement_token1] = ACTIONS(6744), - [aux_sym_format_statement_token1] = ACTIONS(6744), - [aux_sym_print_statement_token1] = ACTIONS(6744), - [aux_sym_open_statement_token1] = ACTIONS(6744), - [aux_sym_close_statement_token1] = ACTIONS(6744), - [aux_sym_inquire_statement_token1] = ACTIONS(6744), - [aux_sym_file_position_statement_token1] = ACTIONS(6744), - [aux_sym_file_position_statement_token2] = ACTIONS(6744), - [aux_sym_file_position_statement_token3] = ACTIONS(6744), - [aux_sym_file_position_statement_token4] = ACTIONS(6744), - [aux_sym_allocate_statement_token1] = ACTIONS(6744), - [aux_sym_entry_statement_token1] = ACTIONS(6744), - [aux_sym_logical_expression_token5] = ACTIONS(6746), - [anon_sym_DOT] = ACTIONS(6744), - [anon_sym_LPAREN_SLASH] = ACTIONS(6746), - [anon_sym_LBRACK] = ACTIONS(6746), - [aux_sym_boolean_literal_token1] = ACTIONS(6746), - [aux_sym_boolean_literal_token2] = ACTIONS(6746), - [aux_sym_null_literal_token1] = ACTIONS(6744), - [aux_sym_coarray_statement_token1] = ACTIONS(6744), - [aux_sym_coarray_statement_token2] = ACTIONS(6744), - [aux_sym_coarray_statement_token6] = ACTIONS(6744), - [aux_sym_coarray_statement_token8] = ACTIONS(6744), - [aux_sym_coarray_statement_token11] = ACTIONS(6744), - [aux_sym_coarray_statement_token12] = ACTIONS(6744), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6744), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6744), - [aux_sym_identifier_token1] = ACTIONS(6744), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6746), - [sym__float_literal] = ACTIONS(6746), - [sym__boz_literal] = ACTIONS(6746), - [sym__string_literal] = ACTIONS(6746), - [sym__string_literal_kind] = ACTIONS(6746), - [sym__external_end_of_statement] = ACTIONS(6746), - }, - [2708] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token2] = ACTIONS(5053), - [aux_sym_preproc_else_token1] = ACTIONS(5053), - [aux_sym_preproc_elif_token1] = ACTIONS(5053), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - }, - [2709] = { - [aux_sym_preproc_include_token1] = ACTIONS(4972), - [aux_sym_preproc_def_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token2] = ACTIONS(4972), - [aux_sym_preproc_else_token1] = ACTIONS(4972), - [aux_sym_preproc_elif_token1] = ACTIONS(4972), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4972), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4972), - [sym_preproc_directive] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4972), - [aux_sym_interface_statement_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), - [aux_sym_language_binding_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token3] = ACTIONS(4972), - [aux_sym_contains_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token2] = ACTIONS(4972), - [aux_sym_implicit_statement_token1] = ACTIONS(4972), - [aux_sym_implicit_statement_token3] = ACTIONS(4972), - [aux_sym_implicit_statement_token4] = ACTIONS(4972), - [aux_sym_save_statement_token1] = ACTIONS(4972), - [aux_sym_private_statement_token1] = ACTIONS(4972), - [aux_sym_public_statement_token1] = ACTIONS(4972), - [aux_sym_namelist_statement_token1] = ACTIONS(4972), - [aux_sym_common_statement_token1] = ACTIONS(4972), - [aux_sym_import_statement_token1] = ACTIONS(4972), - [aux_sym_derived_type_definition_token1] = ACTIONS(4972), - [aux_sym_abstract_specifier_token1] = ACTIONS(4972), - [aux_sym_procedure_attribute_token6] = ACTIONS(4972), - [aux_sym_variable_attributes_token1] = ACTIONS(4972), - [aux_sym_variable_attributes_token2] = ACTIONS(4972), - [aux_sym_variable_attributes_token3] = ACTIONS(4972), - [aux_sym_variable_attributes_token4] = ACTIONS(4972), - [aux_sym_variable_attributes_token5] = ACTIONS(4972), - [aux_sym__intrinsic_type_token1] = ACTIONS(4972), - [aux_sym__intrinsic_type_token2] = ACTIONS(4972), - [aux_sym__intrinsic_type_token3] = ACTIONS(4972), - [aux_sym__intrinsic_type_token4] = ACTIONS(4972), - [aux_sym__intrinsic_type_token6] = ACTIONS(4972), - [aux_sym__intrinsic_type_token7] = ACTIONS(4972), - [aux_sym__intrinsic_type_token8] = ACTIONS(4972), - [aux_sym__intrinsic_type_token9] = ACTIONS(4972), - [aux_sym__intrinsic_type_token10] = ACTIONS(4972), - [aux_sym_derived_type_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), - [aux_sym_type_qualifier_token1] = ACTIONS(4972), - [aux_sym_type_qualifier_token2] = ACTIONS(4972), - [aux_sym_equivalence_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token3] = ACTIONS(4972), - [aux_sym_include_statement_token1] = ACTIONS(4972), - [aux_sym_data_statement_token1] = ACTIONS(4972), - [aux_sym__inline_if_statement_token1] = ACTIONS(4972), - [aux_sym_end_if_statement_token1] = ACTIONS(4972), - [aux_sym_elseif_clause_token2] = ACTIONS(4972), - [aux_sym_select_case_statement_token1] = ACTIONS(4972), - [aux_sym_block_construct_token1] = ACTIONS(4972), - [aux_sym_format_statement_token1] = ACTIONS(4972), - [aux_sym_inquire_statement_token1] = ACTIONS(4972), - [aux_sym_enum_statement_token1] = ACTIONS(4972), - [aux_sym_entry_statement_token1] = ACTIONS(4972), - [aux_sym_null_literal_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token2] = ACTIONS(4972), - [aux_sym_coarray_statement_token6] = ACTIONS(4972), - [aux_sym_coarray_statement_token8] = ACTIONS(4972), - [aux_sym_coarray_statement_token11] = ACTIONS(4972), - [aux_sym_coarray_statement_token12] = ACTIONS(4972), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), - [aux_sym_identifier_token1] = ACTIONS(4972), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4974), - }, - [2710] = { - [aux_sym_preproc_include_token1] = ACTIONS(6748), - [aux_sym_preproc_def_token1] = ACTIONS(6748), - [aux_sym_preproc_if_token1] = ACTIONS(6748), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6748), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6748), - [sym_preproc_directive] = ACTIONS(6748), - [sym_preproc_comment] = ACTIONS(6750), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6748), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6748), - [aux_sym_interface_statement_token1] = ACTIONS(6748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6748), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6748), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6748), - [aux_sym_language_binding_token1] = ACTIONS(6748), - [aux_sym_procedure_attributes_token1] = ACTIONS(6748), - [aux_sym_procedure_attributes_token3] = ACTIONS(6748), - [aux_sym_contains_statement_token1] = ACTIONS(6748), - [aux_sym_use_statement_token1] = ACTIONS(6748), - [aux_sym_use_statement_token2] = ACTIONS(6748), - [aux_sym_implicit_statement_token1] = ACTIONS(6748), - [aux_sym_implicit_statement_token3] = ACTIONS(6748), - [aux_sym_implicit_statement_token4] = ACTIONS(6748), - [aux_sym_save_statement_token1] = ACTIONS(6748), - [aux_sym_private_statement_token1] = ACTIONS(6748), - [aux_sym_public_statement_token1] = ACTIONS(6748), - [aux_sym_namelist_statement_token1] = ACTIONS(6748), - [aux_sym_common_statement_token1] = ACTIONS(6748), - [aux_sym_import_statement_token1] = ACTIONS(6748), - [aux_sym_derived_type_definition_token1] = ACTIONS(6748), - [aux_sym_abstract_specifier_token1] = ACTIONS(6748), - [aux_sym_procedure_attribute_token6] = ACTIONS(6748), - [aux_sym_variable_attributes_token1] = ACTIONS(6748), - [aux_sym_variable_attributes_token2] = ACTIONS(6748), - [aux_sym_variable_attributes_token3] = ACTIONS(6748), - [aux_sym_variable_attributes_token4] = ACTIONS(6748), - [aux_sym_variable_attributes_token5] = ACTIONS(6748), - [aux_sym__intrinsic_type_token1] = ACTIONS(6748), - [aux_sym__intrinsic_type_token2] = ACTIONS(6748), - [aux_sym__intrinsic_type_token3] = ACTIONS(6748), - [aux_sym__intrinsic_type_token4] = ACTIONS(6748), - [aux_sym__intrinsic_type_token6] = ACTIONS(6748), - [aux_sym__intrinsic_type_token7] = ACTIONS(6748), - [aux_sym__intrinsic_type_token8] = ACTIONS(6748), - [aux_sym__intrinsic_type_token9] = ACTIONS(6748), - [aux_sym__intrinsic_type_token10] = ACTIONS(6748), - [aux_sym_derived_type_token1] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6748), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6748), - [aux_sym_type_qualifier_token1] = ACTIONS(6748), - [aux_sym_type_qualifier_token2] = ACTIONS(6748), - [aux_sym_equivalence_statement_token1] = ACTIONS(6748), - [aux_sym_stop_statement_token1] = ACTIONS(6748), - [aux_sym_stop_statement_token2] = ACTIONS(6748), - [aux_sym_keyword_statement_token2] = ACTIONS(6748), - [aux_sym_keyword_statement_token3] = ACTIONS(6748), - [aux_sym_include_statement_token1] = ACTIONS(6748), - [aux_sym_data_statement_token1] = ACTIONS(6748), - [aux_sym__inline_if_statement_token1] = ACTIONS(6748), - [aux_sym_end_if_statement_token1] = ACTIONS(6748), - [aux_sym_elseif_clause_token2] = ACTIONS(6748), - [aux_sym_select_case_statement_token1] = ACTIONS(6748), - [aux_sym_block_construct_token1] = ACTIONS(6748), - [aux_sym_format_statement_token1] = ACTIONS(6748), - [aux_sym_inquire_statement_token1] = ACTIONS(6748), - [aux_sym_enum_statement_token1] = ACTIONS(6748), - [aux_sym_entry_statement_token1] = ACTIONS(6748), - [aux_sym_null_literal_token1] = ACTIONS(6748), - [aux_sym_coarray_statement_token1] = ACTIONS(6748), - [aux_sym_coarray_statement_token2] = ACTIONS(6748), - [aux_sym_coarray_statement_token6] = ACTIONS(6748), - [aux_sym_coarray_statement_token8] = ACTIONS(6748), - [aux_sym_coarray_statement_token11] = ACTIONS(6748), - [aux_sym_coarray_statement_token12] = ACTIONS(6748), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6748), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6748), - [aux_sym_identifier_token1] = ACTIONS(6748), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6752), - }, - [2711] = { - [aux_sym_preproc_include_token1] = ACTIONS(6754), - [aux_sym_preproc_def_token1] = ACTIONS(6754), - [aux_sym_preproc_if_token1] = ACTIONS(6754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6754), - [sym_preproc_directive] = ACTIONS(6754), - [sym_preproc_comment] = ACTIONS(6756), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6754), - [aux_sym_end_module_statement_token1] = ACTIONS(6754), - [aux_sym_interface_statement_token1] = ACTIONS(6754), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6754), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6754), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6754), - [aux_sym_language_binding_token1] = ACTIONS(6754), - [aux_sym_procedure_attributes_token1] = ACTIONS(6754), - [aux_sym_procedure_attributes_token3] = ACTIONS(6754), - [aux_sym_contains_statement_token1] = ACTIONS(6754), - [aux_sym_use_statement_token1] = ACTIONS(6754), - [aux_sym_use_statement_token2] = ACTIONS(6754), - [aux_sym_implicit_statement_token1] = ACTIONS(6754), - [aux_sym_implicit_statement_token3] = ACTIONS(6754), - [aux_sym_implicit_statement_token4] = ACTIONS(6754), - [aux_sym_save_statement_token1] = ACTIONS(6754), - [aux_sym_private_statement_token1] = ACTIONS(6754), - [aux_sym_public_statement_token1] = ACTIONS(6754), - [aux_sym_namelist_statement_token1] = ACTIONS(6754), - [aux_sym_common_statement_token1] = ACTIONS(6754), - [aux_sym_import_statement_token1] = ACTIONS(6754), - [aux_sym_derived_type_definition_token1] = ACTIONS(6754), - [aux_sym_abstract_specifier_token1] = ACTIONS(6754), - [aux_sym_procedure_attribute_token6] = ACTIONS(6754), - [aux_sym_variable_attributes_token1] = ACTIONS(6754), - [aux_sym_variable_attributes_token2] = ACTIONS(6754), - [aux_sym_variable_attributes_token3] = ACTIONS(6754), - [aux_sym_variable_attributes_token4] = ACTIONS(6754), - [aux_sym_variable_attributes_token5] = ACTIONS(6754), - [aux_sym__intrinsic_type_token1] = ACTIONS(6754), - [aux_sym__intrinsic_type_token2] = ACTIONS(6754), - [aux_sym__intrinsic_type_token3] = ACTIONS(6754), - [aux_sym__intrinsic_type_token4] = ACTIONS(6754), - [aux_sym__intrinsic_type_token6] = ACTIONS(6754), - [aux_sym__intrinsic_type_token7] = ACTIONS(6754), - [aux_sym__intrinsic_type_token8] = ACTIONS(6754), - [aux_sym__intrinsic_type_token9] = ACTIONS(6754), - [aux_sym__intrinsic_type_token10] = ACTIONS(6754), - [aux_sym_derived_type_token1] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6754), - [aux_sym_type_qualifier_token1] = ACTIONS(6754), - [aux_sym_type_qualifier_token2] = ACTIONS(6754), - [aux_sym_equivalence_statement_token1] = ACTIONS(6754), - [aux_sym_stop_statement_token1] = ACTIONS(6754), - [aux_sym_stop_statement_token2] = ACTIONS(6754), - [aux_sym_keyword_statement_token2] = ACTIONS(6754), - [aux_sym_keyword_statement_token3] = ACTIONS(6754), - [aux_sym_include_statement_token1] = ACTIONS(6754), - [aux_sym_data_statement_token1] = ACTIONS(6754), - [aux_sym__inline_if_statement_token1] = ACTIONS(6754), - [aux_sym_end_if_statement_token1] = ACTIONS(6754), - [aux_sym_elseif_clause_token2] = ACTIONS(6754), - [aux_sym_select_case_statement_token1] = ACTIONS(6754), - [aux_sym_block_construct_token1] = ACTIONS(6754), - [aux_sym_format_statement_token1] = ACTIONS(6754), - [aux_sym_inquire_statement_token1] = ACTIONS(6754), - [aux_sym_enum_statement_token1] = ACTIONS(6754), - [aux_sym_entry_statement_token1] = ACTIONS(6754), - [aux_sym_null_literal_token1] = ACTIONS(6754), - [aux_sym_coarray_statement_token1] = ACTIONS(6754), - [aux_sym_coarray_statement_token2] = ACTIONS(6754), - [aux_sym_coarray_statement_token6] = ACTIONS(6754), - [aux_sym_coarray_statement_token8] = ACTIONS(6754), - [aux_sym_coarray_statement_token11] = ACTIONS(6754), - [aux_sym_coarray_statement_token12] = ACTIONS(6754), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6754), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6754), - [aux_sym_identifier_token1] = ACTIONS(6754), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6758), - }, - [2712] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token2] = ACTIONS(5037), - [aux_sym_preproc_else_token1] = ACTIONS(5037), - [aux_sym_preproc_elif_token1] = ACTIONS(5037), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - }, - [2713] = { - [aux_sym_preproc_include_token1] = ACTIONS(6760), - [aux_sym_preproc_def_token1] = ACTIONS(6760), - [aux_sym_preproc_if_token1] = ACTIONS(6760), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6760), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6760), - [sym_preproc_directive] = ACTIONS(6760), - [sym_preproc_comment] = ACTIONS(6762), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6760), - [aux_sym_end_module_statement_token1] = ACTIONS(6760), - [aux_sym_interface_statement_token1] = ACTIONS(6760), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6760), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6760), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6760), - [aux_sym_language_binding_token1] = ACTIONS(6760), - [aux_sym_procedure_attributes_token1] = ACTIONS(6760), - [aux_sym_procedure_attributes_token3] = ACTIONS(6760), - [aux_sym_contains_statement_token1] = ACTIONS(6760), - [aux_sym_use_statement_token1] = ACTIONS(6760), - [aux_sym_use_statement_token2] = ACTIONS(6760), - [aux_sym_implicit_statement_token1] = ACTIONS(6760), - [aux_sym_implicit_statement_token3] = ACTIONS(6760), - [aux_sym_implicit_statement_token4] = ACTIONS(6760), - [aux_sym_save_statement_token1] = ACTIONS(6760), - [aux_sym_private_statement_token1] = ACTIONS(6760), - [aux_sym_public_statement_token1] = ACTIONS(6760), - [aux_sym_namelist_statement_token1] = ACTIONS(6760), - [aux_sym_common_statement_token1] = ACTIONS(6760), - [aux_sym_import_statement_token1] = ACTIONS(6760), - [aux_sym_derived_type_definition_token1] = ACTIONS(6760), - [aux_sym_abstract_specifier_token1] = ACTIONS(6760), - [aux_sym_procedure_attribute_token6] = ACTIONS(6760), - [aux_sym_variable_attributes_token1] = ACTIONS(6760), - [aux_sym_variable_attributes_token2] = ACTIONS(6760), - [aux_sym_variable_attributes_token3] = ACTIONS(6760), - [aux_sym_variable_attributes_token4] = ACTIONS(6760), - [aux_sym_variable_attributes_token5] = ACTIONS(6760), - [aux_sym__intrinsic_type_token1] = ACTIONS(6760), - [aux_sym__intrinsic_type_token2] = ACTIONS(6760), - [aux_sym__intrinsic_type_token3] = ACTIONS(6760), - [aux_sym__intrinsic_type_token4] = ACTIONS(6760), - [aux_sym__intrinsic_type_token6] = ACTIONS(6760), - [aux_sym__intrinsic_type_token7] = ACTIONS(6760), - [aux_sym__intrinsic_type_token8] = ACTIONS(6760), - [aux_sym__intrinsic_type_token9] = ACTIONS(6760), - [aux_sym__intrinsic_type_token10] = ACTIONS(6760), - [aux_sym_derived_type_token1] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6760), - [aux_sym_type_qualifier_token1] = ACTIONS(6760), - [aux_sym_type_qualifier_token2] = ACTIONS(6760), - [aux_sym_equivalence_statement_token1] = ACTIONS(6760), - [aux_sym_stop_statement_token1] = ACTIONS(6760), - [aux_sym_stop_statement_token2] = ACTIONS(6760), - [aux_sym_keyword_statement_token2] = ACTIONS(6760), - [aux_sym_keyword_statement_token3] = ACTIONS(6760), - [aux_sym_include_statement_token1] = ACTIONS(6760), - [aux_sym_data_statement_token1] = ACTIONS(6760), - [aux_sym__inline_if_statement_token1] = ACTIONS(6760), - [aux_sym_end_if_statement_token1] = ACTIONS(6760), - [aux_sym_elseif_clause_token2] = ACTIONS(6760), - [aux_sym_select_case_statement_token1] = ACTIONS(6760), - [aux_sym_block_construct_token1] = ACTIONS(6760), - [aux_sym_format_statement_token1] = ACTIONS(6760), - [aux_sym_inquire_statement_token1] = ACTIONS(6760), - [aux_sym_enum_statement_token1] = ACTIONS(6760), - [aux_sym_entry_statement_token1] = ACTIONS(6760), - [aux_sym_null_literal_token1] = ACTIONS(6760), - [aux_sym_coarray_statement_token1] = ACTIONS(6760), - [aux_sym_coarray_statement_token2] = ACTIONS(6760), - [aux_sym_coarray_statement_token6] = ACTIONS(6760), - [aux_sym_coarray_statement_token8] = ACTIONS(6760), - [aux_sym_coarray_statement_token11] = ACTIONS(6760), - [aux_sym_coarray_statement_token12] = ACTIONS(6760), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6760), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6760), - [aux_sym_identifier_token1] = ACTIONS(6760), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6764), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2714] = { - [sym__expression] = STATE(4306), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2675] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(7072), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4768), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -413869,10 +410257,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -413889,17 +410277,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_SLASH_RPAREN] = ACTIONS(6766), [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_RBRACK] = ACTIONS(6766), [aux_sym_boolean_literal_token1] = ACTIONS(167), [aux_sym_boolean_literal_token2] = ACTIONS(167), [aux_sym_null_literal_token1] = ACTIONS(169), @@ -413913,128 +410299,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2715] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token2] = ACTIONS(5049), - [aux_sym_preproc_else_token1] = ACTIONS(5049), - [aux_sym_preproc_elif_token1] = ACTIONS(5049), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), + [2676] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token2] = ACTIONS(4255), + [aux_sym_preproc_else_token1] = ACTIONS(4255), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4257), }, - [2716] = { - [sym_sized_allocation] = STATE(6161), - [sym_coarray_allocation] = STATE(7224), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4974), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4974), + [2677] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(7073), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4768), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -414055,10 +410443,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -414075,7 +410463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -414103,3894 +410491,1147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2717] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token2] = ACTIONS(5065), - [aux_sym_preproc_else_token1] = ACTIONS(5065), - [aux_sym_preproc_elif_token1] = ACTIONS(5065), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - }, - [2718] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token2] = ACTIONS(5069), - [aux_sym_preproc_else_token1] = ACTIONS(5069), - [aux_sym_preproc_elif_token1] = ACTIONS(5069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - }, - [2719] = { - [aux_sym_preproc_include_token1] = ACTIONS(6768), - [aux_sym_preproc_def_token1] = ACTIONS(6768), - [aux_sym_preproc_if_token1] = ACTIONS(6768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6768), - [sym_preproc_directive] = ACTIONS(6768), - [sym_preproc_comment] = ACTIONS(6770), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6768), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6768), - [aux_sym_interface_statement_token1] = ACTIONS(6768), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6768), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6768), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6768), - [aux_sym_language_binding_token1] = ACTIONS(6768), - [aux_sym_procedure_attributes_token1] = ACTIONS(6768), - [aux_sym_procedure_attributes_token3] = ACTIONS(6768), - [aux_sym_contains_statement_token1] = ACTIONS(6768), - [aux_sym_use_statement_token1] = ACTIONS(6768), - [aux_sym_use_statement_token2] = ACTIONS(6768), - [aux_sym_implicit_statement_token1] = ACTIONS(6768), - [aux_sym_implicit_statement_token3] = ACTIONS(6768), - [aux_sym_implicit_statement_token4] = ACTIONS(6768), - [aux_sym_save_statement_token1] = ACTIONS(6768), - [aux_sym_private_statement_token1] = ACTIONS(6768), - [aux_sym_public_statement_token1] = ACTIONS(6768), - [aux_sym_namelist_statement_token1] = ACTIONS(6768), - [aux_sym_common_statement_token1] = ACTIONS(6768), - [aux_sym_import_statement_token1] = ACTIONS(6768), - [aux_sym_derived_type_definition_token1] = ACTIONS(6768), - [aux_sym_abstract_specifier_token1] = ACTIONS(6768), - [aux_sym_procedure_attribute_token6] = ACTIONS(6768), - [aux_sym_variable_attributes_token1] = ACTIONS(6768), - [aux_sym_variable_attributes_token2] = ACTIONS(6768), - [aux_sym_variable_attributes_token3] = ACTIONS(6768), - [aux_sym_variable_attributes_token4] = ACTIONS(6768), - [aux_sym_variable_attributes_token5] = ACTIONS(6768), - [aux_sym__intrinsic_type_token1] = ACTIONS(6768), - [aux_sym__intrinsic_type_token2] = ACTIONS(6768), - [aux_sym__intrinsic_type_token3] = ACTIONS(6768), - [aux_sym__intrinsic_type_token4] = ACTIONS(6768), - [aux_sym__intrinsic_type_token6] = ACTIONS(6768), - [aux_sym__intrinsic_type_token7] = ACTIONS(6768), - [aux_sym__intrinsic_type_token8] = ACTIONS(6768), - [aux_sym__intrinsic_type_token9] = ACTIONS(6768), - [aux_sym__intrinsic_type_token10] = ACTIONS(6768), - [aux_sym_derived_type_token1] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6768), - [aux_sym_type_qualifier_token1] = ACTIONS(6768), - [aux_sym_type_qualifier_token2] = ACTIONS(6768), - [aux_sym_equivalence_statement_token1] = ACTIONS(6768), - [aux_sym_stop_statement_token1] = ACTIONS(6768), - [aux_sym_stop_statement_token2] = ACTIONS(6768), - [aux_sym_keyword_statement_token2] = ACTIONS(6768), - [aux_sym_keyword_statement_token3] = ACTIONS(6768), - [aux_sym_include_statement_token1] = ACTIONS(6768), - [aux_sym_data_statement_token1] = ACTIONS(6768), - [aux_sym__inline_if_statement_token1] = ACTIONS(6768), - [aux_sym_end_if_statement_token1] = ACTIONS(6768), - [aux_sym_elseif_clause_token2] = ACTIONS(6768), - [aux_sym_select_case_statement_token1] = ACTIONS(6768), - [aux_sym_block_construct_token1] = ACTIONS(6768), - [aux_sym_format_statement_token1] = ACTIONS(6768), - [aux_sym_inquire_statement_token1] = ACTIONS(6768), - [aux_sym_enum_statement_token1] = ACTIONS(6768), - [aux_sym_entry_statement_token1] = ACTIONS(6768), - [aux_sym_null_literal_token1] = ACTIONS(6768), - [aux_sym_coarray_statement_token1] = ACTIONS(6768), - [aux_sym_coarray_statement_token2] = ACTIONS(6768), - [aux_sym_coarray_statement_token6] = ACTIONS(6768), - [aux_sym_coarray_statement_token8] = ACTIONS(6768), - [aux_sym_coarray_statement_token11] = ACTIONS(6768), - [aux_sym_coarray_statement_token12] = ACTIONS(6768), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6768), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6768), - [aux_sym_identifier_token1] = ACTIONS(6768), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6772), - }, - [2720] = { - [aux_sym_preproc_include_token1] = ACTIONS(6774), - [aux_sym_preproc_def_token1] = ACTIONS(6774), - [aux_sym_preproc_if_token1] = ACTIONS(6774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6774), - [sym_preproc_directive] = ACTIONS(6774), - [sym_preproc_comment] = ACTIONS(6776), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6774), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6774), - [aux_sym_interface_statement_token1] = ACTIONS(6774), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6774), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6774), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6774), - [aux_sym_language_binding_token1] = ACTIONS(6774), - [aux_sym_procedure_attributes_token1] = ACTIONS(6774), - [aux_sym_procedure_attributes_token3] = ACTIONS(6774), - [aux_sym_contains_statement_token1] = ACTIONS(6774), - [aux_sym_use_statement_token1] = ACTIONS(6774), - [aux_sym_use_statement_token2] = ACTIONS(6774), - [aux_sym_implicit_statement_token1] = ACTIONS(6774), - [aux_sym_implicit_statement_token3] = ACTIONS(6774), - [aux_sym_implicit_statement_token4] = ACTIONS(6774), - [aux_sym_save_statement_token1] = ACTIONS(6774), - [aux_sym_private_statement_token1] = ACTIONS(6774), - [aux_sym_public_statement_token1] = ACTIONS(6774), - [aux_sym_namelist_statement_token1] = ACTIONS(6774), - [aux_sym_common_statement_token1] = ACTIONS(6774), - [aux_sym_import_statement_token1] = ACTIONS(6774), - [aux_sym_derived_type_definition_token1] = ACTIONS(6774), - [aux_sym_abstract_specifier_token1] = ACTIONS(6774), - [aux_sym_procedure_attribute_token6] = ACTIONS(6774), - [aux_sym_variable_attributes_token1] = ACTIONS(6774), - [aux_sym_variable_attributes_token2] = ACTIONS(6774), - [aux_sym_variable_attributes_token3] = ACTIONS(6774), - [aux_sym_variable_attributes_token4] = ACTIONS(6774), - [aux_sym_variable_attributes_token5] = ACTIONS(6774), - [aux_sym__intrinsic_type_token1] = ACTIONS(6774), - [aux_sym__intrinsic_type_token2] = ACTIONS(6774), - [aux_sym__intrinsic_type_token3] = ACTIONS(6774), - [aux_sym__intrinsic_type_token4] = ACTIONS(6774), - [aux_sym__intrinsic_type_token6] = ACTIONS(6774), - [aux_sym__intrinsic_type_token7] = ACTIONS(6774), - [aux_sym__intrinsic_type_token8] = ACTIONS(6774), - [aux_sym__intrinsic_type_token9] = ACTIONS(6774), - [aux_sym__intrinsic_type_token10] = ACTIONS(6774), - [aux_sym_derived_type_token1] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6774), - [aux_sym_type_qualifier_token1] = ACTIONS(6774), - [aux_sym_type_qualifier_token2] = ACTIONS(6774), - [aux_sym_equivalence_statement_token1] = ACTIONS(6774), - [aux_sym_stop_statement_token1] = ACTIONS(6774), - [aux_sym_stop_statement_token2] = ACTIONS(6774), - [aux_sym_keyword_statement_token2] = ACTIONS(6774), - [aux_sym_keyword_statement_token3] = ACTIONS(6774), - [aux_sym_include_statement_token1] = ACTIONS(6774), - [aux_sym_data_statement_token1] = ACTIONS(6774), - [aux_sym__inline_if_statement_token1] = ACTIONS(6774), - [aux_sym_end_if_statement_token1] = ACTIONS(6774), - [aux_sym_elseif_clause_token2] = ACTIONS(6774), - [aux_sym_select_case_statement_token1] = ACTIONS(6774), - [aux_sym_block_construct_token1] = ACTIONS(6774), - [aux_sym_format_statement_token1] = ACTIONS(6774), - [aux_sym_inquire_statement_token1] = ACTIONS(6774), - [aux_sym_enum_statement_token1] = ACTIONS(6774), - [aux_sym_entry_statement_token1] = ACTIONS(6774), - [aux_sym_null_literal_token1] = ACTIONS(6774), - [aux_sym_coarray_statement_token1] = ACTIONS(6774), - [aux_sym_coarray_statement_token2] = ACTIONS(6774), - [aux_sym_coarray_statement_token6] = ACTIONS(6774), - [aux_sym_coarray_statement_token8] = ACTIONS(6774), - [aux_sym_coarray_statement_token11] = ACTIONS(6774), - [aux_sym_coarray_statement_token12] = ACTIONS(6774), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6774), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6774), - [aux_sym_identifier_token1] = ACTIONS(6774), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6778), - }, - [2721] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token2] = ACTIONS(4619), - [aux_sym_preproc_else_token1] = ACTIONS(4619), - [aux_sym_preproc_elif_token1] = ACTIONS(4619), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), - }, - [2722] = { - [aux_sym_preproc_include_token1] = ACTIONS(6780), - [aux_sym_preproc_def_token1] = ACTIONS(6780), - [aux_sym_preproc_if_token1] = ACTIONS(6780), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6780), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6780), - [sym_preproc_directive] = ACTIONS(6780), - [sym_preproc_comment] = ACTIONS(6782), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6780), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6780), - [aux_sym_interface_statement_token1] = ACTIONS(6780), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6780), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6780), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6780), - [aux_sym_language_binding_token1] = ACTIONS(6780), - [aux_sym_procedure_attributes_token1] = ACTIONS(6780), - [aux_sym_procedure_attributes_token3] = ACTIONS(6780), - [aux_sym_contains_statement_token1] = ACTIONS(6780), - [aux_sym_use_statement_token1] = ACTIONS(6780), - [aux_sym_use_statement_token2] = ACTIONS(6780), - [aux_sym_implicit_statement_token1] = ACTIONS(6780), - [aux_sym_implicit_statement_token3] = ACTIONS(6780), - [aux_sym_implicit_statement_token4] = ACTIONS(6780), - [aux_sym_save_statement_token1] = ACTIONS(6780), - [aux_sym_private_statement_token1] = ACTIONS(6780), - [aux_sym_public_statement_token1] = ACTIONS(6780), - [aux_sym_namelist_statement_token1] = ACTIONS(6780), - [aux_sym_common_statement_token1] = ACTIONS(6780), - [aux_sym_import_statement_token1] = ACTIONS(6780), - [aux_sym_derived_type_definition_token1] = ACTIONS(6780), - [aux_sym_abstract_specifier_token1] = ACTIONS(6780), - [aux_sym_procedure_attribute_token6] = ACTIONS(6780), - [aux_sym_variable_attributes_token1] = ACTIONS(6780), - [aux_sym_variable_attributes_token2] = ACTIONS(6780), - [aux_sym_variable_attributes_token3] = ACTIONS(6780), - [aux_sym_variable_attributes_token4] = ACTIONS(6780), - [aux_sym_variable_attributes_token5] = ACTIONS(6780), - [aux_sym__intrinsic_type_token1] = ACTIONS(6780), - [aux_sym__intrinsic_type_token2] = ACTIONS(6780), - [aux_sym__intrinsic_type_token3] = ACTIONS(6780), - [aux_sym__intrinsic_type_token4] = ACTIONS(6780), - [aux_sym__intrinsic_type_token6] = ACTIONS(6780), - [aux_sym__intrinsic_type_token7] = ACTIONS(6780), - [aux_sym__intrinsic_type_token8] = ACTIONS(6780), - [aux_sym__intrinsic_type_token9] = ACTIONS(6780), - [aux_sym__intrinsic_type_token10] = ACTIONS(6780), - [aux_sym_derived_type_token1] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6780), - [aux_sym_type_qualifier_token1] = ACTIONS(6780), - [aux_sym_type_qualifier_token2] = ACTIONS(6780), - [aux_sym_equivalence_statement_token1] = ACTIONS(6780), - [aux_sym_stop_statement_token1] = ACTIONS(6780), - [aux_sym_stop_statement_token2] = ACTIONS(6780), - [aux_sym_keyword_statement_token2] = ACTIONS(6780), - [aux_sym_keyword_statement_token3] = ACTIONS(6780), - [aux_sym_include_statement_token1] = ACTIONS(6780), - [aux_sym_data_statement_token1] = ACTIONS(6780), - [aux_sym__inline_if_statement_token1] = ACTIONS(6780), - [aux_sym_end_if_statement_token1] = ACTIONS(6780), - [aux_sym_elseif_clause_token2] = ACTIONS(6780), - [aux_sym_select_case_statement_token1] = ACTIONS(6780), - [aux_sym_block_construct_token1] = ACTIONS(6780), - [aux_sym_format_statement_token1] = ACTIONS(6780), - [aux_sym_inquire_statement_token1] = ACTIONS(6780), - [aux_sym_enum_statement_token1] = ACTIONS(6780), - [aux_sym_entry_statement_token1] = ACTIONS(6780), - [aux_sym_null_literal_token1] = ACTIONS(6780), - [aux_sym_coarray_statement_token1] = ACTIONS(6780), - [aux_sym_coarray_statement_token2] = ACTIONS(6780), - [aux_sym_coarray_statement_token6] = ACTIONS(6780), - [aux_sym_coarray_statement_token8] = ACTIONS(6780), - [aux_sym_coarray_statement_token11] = ACTIONS(6780), - [aux_sym_coarray_statement_token12] = ACTIONS(6780), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6780), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6780), - [aux_sym_identifier_token1] = ACTIONS(6780), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6784), - }, - [2723] = { - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token2] = ACTIONS(4511), - [aux_sym_preproc_else_token1] = ACTIONS(4511), - [aux_sym_preproc_elif_token1] = ACTIONS(4511), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_contains_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), - }, - [2724] = { - [aux_sym_preproc_include_token1] = ACTIONS(6754), - [aux_sym_preproc_def_token1] = ACTIONS(6754), - [aux_sym_preproc_if_token1] = ACTIONS(6754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6754), - [sym_preproc_directive] = ACTIONS(6754), - [sym_preproc_comment] = ACTIONS(6786), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6754), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6754), - [aux_sym_interface_statement_token1] = ACTIONS(6754), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6754), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6754), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6754), - [aux_sym_language_binding_token1] = ACTIONS(6754), - [aux_sym_procedure_attributes_token1] = ACTIONS(6754), - [aux_sym_procedure_attributes_token3] = ACTIONS(6754), - [aux_sym_contains_statement_token1] = ACTIONS(6754), - [aux_sym_use_statement_token1] = ACTIONS(6754), - [aux_sym_use_statement_token2] = ACTIONS(6754), - [aux_sym_implicit_statement_token1] = ACTIONS(6754), - [aux_sym_implicit_statement_token3] = ACTIONS(6754), - [aux_sym_implicit_statement_token4] = ACTIONS(6754), - [aux_sym_save_statement_token1] = ACTIONS(6754), - [aux_sym_private_statement_token1] = ACTIONS(6754), - [aux_sym_public_statement_token1] = ACTIONS(6754), - [aux_sym_namelist_statement_token1] = ACTIONS(6754), - [aux_sym_common_statement_token1] = ACTIONS(6754), - [aux_sym_import_statement_token1] = ACTIONS(6754), - [aux_sym_derived_type_definition_token1] = ACTIONS(6754), - [aux_sym_abstract_specifier_token1] = ACTIONS(6754), - [aux_sym_procedure_attribute_token6] = ACTIONS(6754), - [aux_sym_variable_attributes_token1] = ACTIONS(6754), - [aux_sym_variable_attributes_token2] = ACTIONS(6754), - [aux_sym_variable_attributes_token3] = ACTIONS(6754), - [aux_sym_variable_attributes_token4] = ACTIONS(6754), - [aux_sym_variable_attributes_token5] = ACTIONS(6754), - [aux_sym__intrinsic_type_token1] = ACTIONS(6754), - [aux_sym__intrinsic_type_token2] = ACTIONS(6754), - [aux_sym__intrinsic_type_token3] = ACTIONS(6754), - [aux_sym__intrinsic_type_token4] = ACTIONS(6754), - [aux_sym__intrinsic_type_token6] = ACTIONS(6754), - [aux_sym__intrinsic_type_token7] = ACTIONS(6754), - [aux_sym__intrinsic_type_token8] = ACTIONS(6754), - [aux_sym__intrinsic_type_token9] = ACTIONS(6754), - [aux_sym__intrinsic_type_token10] = ACTIONS(6754), - [aux_sym_derived_type_token1] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6754), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6754), - [aux_sym_type_qualifier_token1] = ACTIONS(6754), - [aux_sym_type_qualifier_token2] = ACTIONS(6754), - [aux_sym_equivalence_statement_token1] = ACTIONS(6754), - [aux_sym_stop_statement_token1] = ACTIONS(6754), - [aux_sym_stop_statement_token2] = ACTIONS(6754), - [aux_sym_keyword_statement_token2] = ACTIONS(6754), - [aux_sym_keyword_statement_token3] = ACTIONS(6754), - [aux_sym_include_statement_token1] = ACTIONS(6754), - [aux_sym_data_statement_token1] = ACTIONS(6754), - [aux_sym__inline_if_statement_token1] = ACTIONS(6754), - [aux_sym_end_if_statement_token1] = ACTIONS(6754), - [aux_sym_elseif_clause_token2] = ACTIONS(6754), - [aux_sym_select_case_statement_token1] = ACTIONS(6754), - [aux_sym_block_construct_token1] = ACTIONS(6754), - [aux_sym_format_statement_token1] = ACTIONS(6754), - [aux_sym_inquire_statement_token1] = ACTIONS(6754), - [aux_sym_enum_statement_token1] = ACTIONS(6754), - [aux_sym_entry_statement_token1] = ACTIONS(6754), - [aux_sym_null_literal_token1] = ACTIONS(6754), - [aux_sym_coarray_statement_token1] = ACTIONS(6754), - [aux_sym_coarray_statement_token2] = ACTIONS(6754), - [aux_sym_coarray_statement_token6] = ACTIONS(6754), - [aux_sym_coarray_statement_token8] = ACTIONS(6754), - [aux_sym_coarray_statement_token11] = ACTIONS(6754), - [aux_sym_coarray_statement_token12] = ACTIONS(6754), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6754), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6754), - [aux_sym_identifier_token1] = ACTIONS(6754), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6758), - }, - [2725] = { - [aux_sym_preproc_include_token1] = ACTIONS(6760), - [aux_sym_preproc_def_token1] = ACTIONS(6760), - [aux_sym_preproc_if_token1] = ACTIONS(6760), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6760), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6760), - [sym_preproc_directive] = ACTIONS(6760), - [sym_preproc_comment] = ACTIONS(6788), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6760), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6760), - [aux_sym_interface_statement_token1] = ACTIONS(6760), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6760), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6760), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6760), - [aux_sym_language_binding_token1] = ACTIONS(6760), - [aux_sym_procedure_attributes_token1] = ACTIONS(6760), - [aux_sym_procedure_attributes_token3] = ACTIONS(6760), - [aux_sym_contains_statement_token1] = ACTIONS(6760), - [aux_sym_use_statement_token1] = ACTIONS(6760), - [aux_sym_use_statement_token2] = ACTIONS(6760), - [aux_sym_implicit_statement_token1] = ACTIONS(6760), - [aux_sym_implicit_statement_token3] = ACTIONS(6760), - [aux_sym_implicit_statement_token4] = ACTIONS(6760), - [aux_sym_save_statement_token1] = ACTIONS(6760), - [aux_sym_private_statement_token1] = ACTIONS(6760), - [aux_sym_public_statement_token1] = ACTIONS(6760), - [aux_sym_namelist_statement_token1] = ACTIONS(6760), - [aux_sym_common_statement_token1] = ACTIONS(6760), - [aux_sym_import_statement_token1] = ACTIONS(6760), - [aux_sym_derived_type_definition_token1] = ACTIONS(6760), - [aux_sym_abstract_specifier_token1] = ACTIONS(6760), - [aux_sym_procedure_attribute_token6] = ACTIONS(6760), - [aux_sym_variable_attributes_token1] = ACTIONS(6760), - [aux_sym_variable_attributes_token2] = ACTIONS(6760), - [aux_sym_variable_attributes_token3] = ACTIONS(6760), - [aux_sym_variable_attributes_token4] = ACTIONS(6760), - [aux_sym_variable_attributes_token5] = ACTIONS(6760), - [aux_sym__intrinsic_type_token1] = ACTIONS(6760), - [aux_sym__intrinsic_type_token2] = ACTIONS(6760), - [aux_sym__intrinsic_type_token3] = ACTIONS(6760), - [aux_sym__intrinsic_type_token4] = ACTIONS(6760), - [aux_sym__intrinsic_type_token6] = ACTIONS(6760), - [aux_sym__intrinsic_type_token7] = ACTIONS(6760), - [aux_sym__intrinsic_type_token8] = ACTIONS(6760), - [aux_sym__intrinsic_type_token9] = ACTIONS(6760), - [aux_sym__intrinsic_type_token10] = ACTIONS(6760), - [aux_sym_derived_type_token1] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6760), - [aux_sym_type_qualifier_token1] = ACTIONS(6760), - [aux_sym_type_qualifier_token2] = ACTIONS(6760), - [aux_sym_equivalence_statement_token1] = ACTIONS(6760), - [aux_sym_stop_statement_token1] = ACTIONS(6760), - [aux_sym_stop_statement_token2] = ACTIONS(6760), - [aux_sym_keyword_statement_token2] = ACTIONS(6760), - [aux_sym_keyword_statement_token3] = ACTIONS(6760), - [aux_sym_include_statement_token1] = ACTIONS(6760), - [aux_sym_data_statement_token1] = ACTIONS(6760), - [aux_sym__inline_if_statement_token1] = ACTIONS(6760), - [aux_sym_end_if_statement_token1] = ACTIONS(6760), - [aux_sym_elseif_clause_token2] = ACTIONS(6760), - [aux_sym_select_case_statement_token1] = ACTIONS(6760), - [aux_sym_block_construct_token1] = ACTIONS(6760), - [aux_sym_format_statement_token1] = ACTIONS(6760), - [aux_sym_inquire_statement_token1] = ACTIONS(6760), - [aux_sym_enum_statement_token1] = ACTIONS(6760), - [aux_sym_entry_statement_token1] = ACTIONS(6760), - [aux_sym_null_literal_token1] = ACTIONS(6760), - [aux_sym_coarray_statement_token1] = ACTIONS(6760), - [aux_sym_coarray_statement_token2] = ACTIONS(6760), - [aux_sym_coarray_statement_token6] = ACTIONS(6760), - [aux_sym_coarray_statement_token8] = ACTIONS(6760), - [aux_sym_coarray_statement_token11] = ACTIONS(6760), - [aux_sym_coarray_statement_token12] = ACTIONS(6760), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6760), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6760), - [aux_sym_identifier_token1] = ACTIONS(6760), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6764), - }, - [2726] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token2] = ACTIONS(5021), - [aux_sym_preproc_else_token1] = ACTIONS(5021), - [aux_sym_preproc_elif_token1] = ACTIONS(5021), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - }, - [2727] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token2] = ACTIONS(4461), - [aux_sym_preproc_else_token1] = ACTIONS(4461), - [aux_sym_preproc_elif_token1] = ACTIONS(4461), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - }, - [2728] = { - [anon_sym_LPAREN2] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6792), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6790), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6790), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6790), - [aux_sym_procedure_attributes_token3] = ACTIONS(6790), - [aux_sym_use_statement_token2] = ACTIONS(6790), - [aux_sym_implicit_statement_token4] = ACTIONS(6790), - [aux_sym_save_statement_token1] = ACTIONS(6790), - [aux_sym_private_statement_token1] = ACTIONS(6790), - [aux_sym_public_statement_token1] = ACTIONS(6790), - [aux_sym_derived_type_definition_token1] = ACTIONS(6790), - [aux_sym_procedure_attribute_token6] = ACTIONS(6790), - [aux_sym_variable_attributes_token2] = ACTIONS(6790), - [aux_sym_variable_attributes_token3] = ACTIONS(6790), - [aux_sym_variable_attributes_token5] = ACTIONS(6790), - [aux_sym__intrinsic_type_token1] = ACTIONS(6790), - [aux_sym__intrinsic_type_token3] = ACTIONS(6790), - [aux_sym__intrinsic_type_token4] = ACTIONS(6790), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6790), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6790), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6790), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6790), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6790), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6790), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6790), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6790), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6790), - [aux_sym_type_qualifier_token1] = ACTIONS(6790), - [aux_sym_type_qualifier_token2] = ACTIONS(6790), - [anon_sym_SEMI] = ACTIONS(6792), - [aux_sym_stop_statement_token1] = ACTIONS(6790), - [aux_sym_stop_statement_token2] = ACTIONS(6790), - [aux_sym_subroutine_call_token1] = ACTIONS(6790), - [aux_sym_keyword_statement_token1] = ACTIONS(6790), - [aux_sym_keyword_statement_token2] = ACTIONS(6790), - [aux_sym_keyword_statement_token3] = ACTIONS(6790), - [aux_sym_keyword_statement_token4] = ACTIONS(6790), - [aux_sym_keyword_statement_token6] = ACTIONS(6790), - [aux_sym_keyword_statement_token7] = ACTIONS(6790), - [aux_sym_include_statement_token1] = ACTIONS(6790), - [aux_sym_data_statement_token1] = ACTIONS(6790), - [aux_sym_do_loop_statement_token1] = ACTIONS(6790), - [aux_sym__inline_if_statement_token1] = ACTIONS(6790), - [aux_sym_end_if_statement_token1] = ACTIONS(6790), - [aux_sym_elseif_clause_token2] = ACTIONS(6790), - [aux_sym__inline_where_statement_token1] = ACTIONS(6790), - [aux_sym__forall_control_expression_token1] = ACTIONS(6790), - [aux_sym_select_case_statement_token1] = ACTIONS(6790), - [aux_sym_select_case_statement_token3] = ACTIONS(6790), - [aux_sym_select_type_statement_token1] = ACTIONS(6790), - [aux_sym_select_rank_statement_token2] = ACTIONS(6790), - [aux_sym_block_construct_token1] = ACTIONS(6790), - [aux_sym_associate_statement_token1] = ACTIONS(6790), - [aux_sym_format_statement_token1] = ACTIONS(6790), - [aux_sym_print_statement_token1] = ACTIONS(6790), - [aux_sym_open_statement_token1] = ACTIONS(6790), - [aux_sym_close_statement_token1] = ACTIONS(6790), - [aux_sym_inquire_statement_token1] = ACTIONS(6790), - [aux_sym_file_position_statement_token1] = ACTIONS(6790), - [aux_sym_file_position_statement_token2] = ACTIONS(6790), - [aux_sym_file_position_statement_token3] = ACTIONS(6790), - [aux_sym_file_position_statement_token4] = ACTIONS(6790), - [aux_sym_allocate_statement_token1] = ACTIONS(6790), - [aux_sym_entry_statement_token1] = ACTIONS(6790), - [aux_sym_logical_expression_token5] = ACTIONS(6792), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_LPAREN_SLASH] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6792), - [aux_sym_boolean_literal_token1] = ACTIONS(6792), - [aux_sym_boolean_literal_token2] = ACTIONS(6792), - [aux_sym_null_literal_token1] = ACTIONS(6790), - [aux_sym_coarray_statement_token1] = ACTIONS(6790), - [aux_sym_coarray_statement_token2] = ACTIONS(6790), - [aux_sym_coarray_statement_token6] = ACTIONS(6790), - [aux_sym_coarray_statement_token8] = ACTIONS(6790), - [aux_sym_coarray_statement_token11] = ACTIONS(6790), - [aux_sym_coarray_statement_token12] = ACTIONS(6790), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6790), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6790), - [aux_sym_identifier_token1] = ACTIONS(6790), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6792), - [sym__float_literal] = ACTIONS(6792), - [sym__boz_literal] = ACTIONS(6792), - [sym__string_literal] = ACTIONS(6792), - [sym__string_literal_kind] = ACTIONS(6792), - [sym__external_end_of_statement] = ACTIONS(6792), - }, - [2729] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token2] = ACTIONS(5061), - [aux_sym_preproc_else_token1] = ACTIONS(5061), - [aux_sym_preproc_elif_token1] = ACTIONS(5061), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - }, - [2730] = { - [aux_sym_preproc_include_token1] = ACTIONS(6794), - [aux_sym_preproc_def_token1] = ACTIONS(6794), - [aux_sym_preproc_if_token1] = ACTIONS(6794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6794), - [sym_preproc_directive] = ACTIONS(6794), - [sym_preproc_comment] = ACTIONS(6796), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6794), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6794), - [aux_sym_interface_statement_token1] = ACTIONS(6794), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6794), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6794), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6794), - [aux_sym_language_binding_token1] = ACTIONS(6794), - [aux_sym_procedure_attributes_token1] = ACTIONS(6794), - [aux_sym_procedure_attributes_token3] = ACTIONS(6794), - [aux_sym_contains_statement_token1] = ACTIONS(6794), - [aux_sym_use_statement_token1] = ACTIONS(6794), - [aux_sym_use_statement_token2] = ACTIONS(6794), - [aux_sym_implicit_statement_token1] = ACTIONS(6794), - [aux_sym_implicit_statement_token3] = ACTIONS(6794), - [aux_sym_implicit_statement_token4] = ACTIONS(6794), - [aux_sym_save_statement_token1] = ACTIONS(6794), - [aux_sym_private_statement_token1] = ACTIONS(6794), - [aux_sym_public_statement_token1] = ACTIONS(6794), - [aux_sym_namelist_statement_token1] = ACTIONS(6794), - [aux_sym_common_statement_token1] = ACTIONS(6794), - [aux_sym_import_statement_token1] = ACTIONS(6794), - [aux_sym_derived_type_definition_token1] = ACTIONS(6794), - [aux_sym_abstract_specifier_token1] = ACTIONS(6794), - [aux_sym_procedure_attribute_token6] = ACTIONS(6794), - [aux_sym_variable_attributes_token1] = ACTIONS(6794), - [aux_sym_variable_attributes_token2] = ACTIONS(6794), - [aux_sym_variable_attributes_token3] = ACTIONS(6794), - [aux_sym_variable_attributes_token4] = ACTIONS(6794), - [aux_sym_variable_attributes_token5] = ACTIONS(6794), - [aux_sym__intrinsic_type_token1] = ACTIONS(6794), - [aux_sym__intrinsic_type_token2] = ACTIONS(6794), - [aux_sym__intrinsic_type_token3] = ACTIONS(6794), - [aux_sym__intrinsic_type_token4] = ACTIONS(6794), - [aux_sym__intrinsic_type_token6] = ACTIONS(6794), - [aux_sym__intrinsic_type_token7] = ACTIONS(6794), - [aux_sym__intrinsic_type_token8] = ACTIONS(6794), - [aux_sym__intrinsic_type_token9] = ACTIONS(6794), - [aux_sym__intrinsic_type_token10] = ACTIONS(6794), - [aux_sym_derived_type_token1] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6794), - [aux_sym_type_qualifier_token1] = ACTIONS(6794), - [aux_sym_type_qualifier_token2] = ACTIONS(6794), - [aux_sym_equivalence_statement_token1] = ACTIONS(6794), - [aux_sym_stop_statement_token1] = ACTIONS(6794), - [aux_sym_stop_statement_token2] = ACTIONS(6794), - [aux_sym_keyword_statement_token2] = ACTIONS(6794), - [aux_sym_keyword_statement_token3] = ACTIONS(6794), - [aux_sym_include_statement_token1] = ACTIONS(6794), - [aux_sym_data_statement_token1] = ACTIONS(6794), - [aux_sym__inline_if_statement_token1] = ACTIONS(6794), - [aux_sym_end_if_statement_token1] = ACTIONS(6794), - [aux_sym_elseif_clause_token2] = ACTIONS(6794), - [aux_sym_select_case_statement_token1] = ACTIONS(6794), - [aux_sym_block_construct_token1] = ACTIONS(6794), - [aux_sym_format_statement_token1] = ACTIONS(6794), - [aux_sym_inquire_statement_token1] = ACTIONS(6794), - [aux_sym_enum_statement_token1] = ACTIONS(6794), - [aux_sym_entry_statement_token1] = ACTIONS(6794), - [aux_sym_null_literal_token1] = ACTIONS(6794), - [aux_sym_coarray_statement_token1] = ACTIONS(6794), - [aux_sym_coarray_statement_token2] = ACTIONS(6794), - [aux_sym_coarray_statement_token6] = ACTIONS(6794), - [aux_sym_coarray_statement_token8] = ACTIONS(6794), - [aux_sym_coarray_statement_token11] = ACTIONS(6794), - [aux_sym_coarray_statement_token12] = ACTIONS(6794), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6794), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6794), - [aux_sym_identifier_token1] = ACTIONS(6794), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6798), - }, - [2731] = { - [aux_sym_preproc_include_token1] = ACTIONS(6800), - [aux_sym_preproc_def_token1] = ACTIONS(6800), - [aux_sym_preproc_if_token1] = ACTIONS(6800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6800), - [sym_preproc_directive] = ACTIONS(6800), - [sym_preproc_comment] = ACTIONS(6802), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6800), - [aux_sym_end_module_statement_token1] = ACTIONS(6800), - [aux_sym_interface_statement_token1] = ACTIONS(6800), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6800), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6800), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6800), - [aux_sym_language_binding_token1] = ACTIONS(6800), - [aux_sym_procedure_attributes_token1] = ACTIONS(6800), - [aux_sym_procedure_attributes_token3] = ACTIONS(6800), - [aux_sym_contains_statement_token1] = ACTIONS(6800), - [aux_sym_use_statement_token1] = ACTIONS(6800), - [aux_sym_use_statement_token2] = ACTIONS(6800), - [aux_sym_implicit_statement_token1] = ACTIONS(6800), - [aux_sym_implicit_statement_token3] = ACTIONS(6800), - [aux_sym_implicit_statement_token4] = ACTIONS(6800), - [aux_sym_save_statement_token1] = ACTIONS(6800), - [aux_sym_private_statement_token1] = ACTIONS(6800), - [aux_sym_public_statement_token1] = ACTIONS(6800), - [aux_sym_namelist_statement_token1] = ACTIONS(6800), - [aux_sym_common_statement_token1] = ACTIONS(6800), - [aux_sym_import_statement_token1] = ACTIONS(6800), - [aux_sym_derived_type_definition_token1] = ACTIONS(6800), - [aux_sym_abstract_specifier_token1] = ACTIONS(6800), - [aux_sym_procedure_attribute_token6] = ACTIONS(6800), - [aux_sym_variable_attributes_token1] = ACTIONS(6800), - [aux_sym_variable_attributes_token2] = ACTIONS(6800), - [aux_sym_variable_attributes_token3] = ACTIONS(6800), - [aux_sym_variable_attributes_token4] = ACTIONS(6800), - [aux_sym_variable_attributes_token5] = ACTIONS(6800), - [aux_sym__intrinsic_type_token1] = ACTIONS(6800), - [aux_sym__intrinsic_type_token2] = ACTIONS(6800), - [aux_sym__intrinsic_type_token3] = ACTIONS(6800), - [aux_sym__intrinsic_type_token4] = ACTIONS(6800), - [aux_sym__intrinsic_type_token6] = ACTIONS(6800), - [aux_sym__intrinsic_type_token7] = ACTIONS(6800), - [aux_sym__intrinsic_type_token8] = ACTIONS(6800), - [aux_sym__intrinsic_type_token9] = ACTIONS(6800), - [aux_sym__intrinsic_type_token10] = ACTIONS(6800), - [aux_sym_derived_type_token1] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6800), - [aux_sym_type_qualifier_token1] = ACTIONS(6800), - [aux_sym_type_qualifier_token2] = ACTIONS(6800), - [aux_sym_equivalence_statement_token1] = ACTIONS(6800), - [aux_sym_stop_statement_token1] = ACTIONS(6800), - [aux_sym_stop_statement_token2] = ACTIONS(6800), - [aux_sym_keyword_statement_token2] = ACTIONS(6800), - [aux_sym_keyword_statement_token3] = ACTIONS(6800), - [aux_sym_include_statement_token1] = ACTIONS(6800), - [aux_sym_data_statement_token1] = ACTIONS(6800), - [aux_sym__inline_if_statement_token1] = ACTIONS(6800), - [aux_sym_end_if_statement_token1] = ACTIONS(6800), - [aux_sym_elseif_clause_token2] = ACTIONS(6800), - [aux_sym_select_case_statement_token1] = ACTIONS(6800), - [aux_sym_block_construct_token1] = ACTIONS(6800), - [aux_sym_format_statement_token1] = ACTIONS(6800), - [aux_sym_inquire_statement_token1] = ACTIONS(6800), - [aux_sym_enum_statement_token1] = ACTIONS(6800), - [aux_sym_entry_statement_token1] = ACTIONS(6800), - [aux_sym_null_literal_token1] = ACTIONS(6800), - [aux_sym_coarray_statement_token1] = ACTIONS(6800), - [aux_sym_coarray_statement_token2] = ACTIONS(6800), - [aux_sym_coarray_statement_token6] = ACTIONS(6800), - [aux_sym_coarray_statement_token8] = ACTIONS(6800), - [aux_sym_coarray_statement_token11] = ACTIONS(6800), - [aux_sym_coarray_statement_token12] = ACTIONS(6800), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6800), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6800), - [aux_sym_identifier_token1] = ACTIONS(6800), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6804), - }, - [2732] = { - [aux_sym_preproc_include_token1] = ACTIONS(6806), - [aux_sym_preproc_def_token1] = ACTIONS(6806), - [aux_sym_preproc_if_token1] = ACTIONS(6806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6806), - [sym_preproc_directive] = ACTIONS(6806), - [sym_preproc_comment] = ACTIONS(6808), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6806), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6806), - [aux_sym_interface_statement_token1] = ACTIONS(6806), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6806), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6806), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6806), - [aux_sym_language_binding_token1] = ACTIONS(6806), - [aux_sym_procedure_attributes_token1] = ACTIONS(6806), - [aux_sym_procedure_attributes_token3] = ACTIONS(6806), - [aux_sym_contains_statement_token1] = ACTIONS(6806), - [aux_sym_use_statement_token1] = ACTIONS(6806), - [aux_sym_use_statement_token2] = ACTIONS(6806), - [aux_sym_implicit_statement_token1] = ACTIONS(6806), - [aux_sym_implicit_statement_token3] = ACTIONS(6806), - [aux_sym_implicit_statement_token4] = ACTIONS(6806), - [aux_sym_save_statement_token1] = ACTIONS(6806), - [aux_sym_private_statement_token1] = ACTIONS(6806), - [aux_sym_public_statement_token1] = ACTIONS(6806), - [aux_sym_namelist_statement_token1] = ACTIONS(6806), - [aux_sym_common_statement_token1] = ACTIONS(6806), - [aux_sym_import_statement_token1] = ACTIONS(6806), - [aux_sym_derived_type_definition_token1] = ACTIONS(6806), - [aux_sym_abstract_specifier_token1] = ACTIONS(6806), - [aux_sym_procedure_attribute_token6] = ACTIONS(6806), - [aux_sym_variable_attributes_token1] = ACTIONS(6806), - [aux_sym_variable_attributes_token2] = ACTIONS(6806), - [aux_sym_variable_attributes_token3] = ACTIONS(6806), - [aux_sym_variable_attributes_token4] = ACTIONS(6806), - [aux_sym_variable_attributes_token5] = ACTIONS(6806), - [aux_sym__intrinsic_type_token1] = ACTIONS(6806), - [aux_sym__intrinsic_type_token2] = ACTIONS(6806), - [aux_sym__intrinsic_type_token3] = ACTIONS(6806), - [aux_sym__intrinsic_type_token4] = ACTIONS(6806), - [aux_sym__intrinsic_type_token6] = ACTIONS(6806), - [aux_sym__intrinsic_type_token7] = ACTIONS(6806), - [aux_sym__intrinsic_type_token8] = ACTIONS(6806), - [aux_sym__intrinsic_type_token9] = ACTIONS(6806), - [aux_sym__intrinsic_type_token10] = ACTIONS(6806), - [aux_sym_derived_type_token1] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6806), - [aux_sym_type_qualifier_token1] = ACTIONS(6806), - [aux_sym_type_qualifier_token2] = ACTIONS(6806), - [aux_sym_equivalence_statement_token1] = ACTIONS(6806), - [aux_sym_stop_statement_token1] = ACTIONS(6806), - [aux_sym_stop_statement_token2] = ACTIONS(6806), - [aux_sym_keyword_statement_token2] = ACTIONS(6806), - [aux_sym_keyword_statement_token3] = ACTIONS(6806), - [aux_sym_include_statement_token1] = ACTIONS(6806), - [aux_sym_data_statement_token1] = ACTIONS(6806), - [aux_sym__inline_if_statement_token1] = ACTIONS(6806), - [aux_sym_end_if_statement_token1] = ACTIONS(6806), - [aux_sym_elseif_clause_token2] = ACTIONS(6806), - [aux_sym_select_case_statement_token1] = ACTIONS(6806), - [aux_sym_block_construct_token1] = ACTIONS(6806), - [aux_sym_format_statement_token1] = ACTIONS(6806), - [aux_sym_inquire_statement_token1] = ACTIONS(6806), - [aux_sym_enum_statement_token1] = ACTIONS(6806), - [aux_sym_entry_statement_token1] = ACTIONS(6806), - [aux_sym_null_literal_token1] = ACTIONS(6806), - [aux_sym_coarray_statement_token1] = ACTIONS(6806), - [aux_sym_coarray_statement_token2] = ACTIONS(6806), - [aux_sym_coarray_statement_token6] = ACTIONS(6806), - [aux_sym_coarray_statement_token8] = ACTIONS(6806), - [aux_sym_coarray_statement_token11] = ACTIONS(6806), - [aux_sym_coarray_statement_token12] = ACTIONS(6806), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6806), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6806), - [aux_sym_identifier_token1] = ACTIONS(6806), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6810), - }, - [2733] = { - [aux_sym_preproc_include_token1] = ACTIONS(6800), - [aux_sym_preproc_def_token1] = ACTIONS(6800), - [aux_sym_preproc_if_token1] = ACTIONS(6800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6800), - [sym_preproc_directive] = ACTIONS(6800), - [sym_preproc_comment] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6800), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6800), - [aux_sym_interface_statement_token1] = ACTIONS(6800), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6800), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6800), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6800), - [aux_sym_language_binding_token1] = ACTIONS(6800), - [aux_sym_procedure_attributes_token1] = ACTIONS(6800), - [aux_sym_procedure_attributes_token3] = ACTIONS(6800), - [aux_sym_contains_statement_token1] = ACTIONS(6800), - [aux_sym_use_statement_token1] = ACTIONS(6800), - [aux_sym_use_statement_token2] = ACTIONS(6800), - [aux_sym_implicit_statement_token1] = ACTIONS(6800), - [aux_sym_implicit_statement_token3] = ACTIONS(6800), - [aux_sym_implicit_statement_token4] = ACTIONS(6800), - [aux_sym_save_statement_token1] = ACTIONS(6800), - [aux_sym_private_statement_token1] = ACTIONS(6800), - [aux_sym_public_statement_token1] = ACTIONS(6800), - [aux_sym_namelist_statement_token1] = ACTIONS(6800), - [aux_sym_common_statement_token1] = ACTIONS(6800), - [aux_sym_import_statement_token1] = ACTIONS(6800), - [aux_sym_derived_type_definition_token1] = ACTIONS(6800), - [aux_sym_abstract_specifier_token1] = ACTIONS(6800), - [aux_sym_procedure_attribute_token6] = ACTIONS(6800), - [aux_sym_variable_attributes_token1] = ACTIONS(6800), - [aux_sym_variable_attributes_token2] = ACTIONS(6800), - [aux_sym_variable_attributes_token3] = ACTIONS(6800), - [aux_sym_variable_attributes_token4] = ACTIONS(6800), - [aux_sym_variable_attributes_token5] = ACTIONS(6800), - [aux_sym__intrinsic_type_token1] = ACTIONS(6800), - [aux_sym__intrinsic_type_token2] = ACTIONS(6800), - [aux_sym__intrinsic_type_token3] = ACTIONS(6800), - [aux_sym__intrinsic_type_token4] = ACTIONS(6800), - [aux_sym__intrinsic_type_token6] = ACTIONS(6800), - [aux_sym__intrinsic_type_token7] = ACTIONS(6800), - [aux_sym__intrinsic_type_token8] = ACTIONS(6800), - [aux_sym__intrinsic_type_token9] = ACTIONS(6800), - [aux_sym__intrinsic_type_token10] = ACTIONS(6800), - [aux_sym_derived_type_token1] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6800), - [aux_sym_type_qualifier_token1] = ACTIONS(6800), - [aux_sym_type_qualifier_token2] = ACTIONS(6800), - [aux_sym_equivalence_statement_token1] = ACTIONS(6800), - [aux_sym_stop_statement_token1] = ACTIONS(6800), - [aux_sym_stop_statement_token2] = ACTIONS(6800), - [aux_sym_keyword_statement_token2] = ACTIONS(6800), - [aux_sym_keyword_statement_token3] = ACTIONS(6800), - [aux_sym_include_statement_token1] = ACTIONS(6800), - [aux_sym_data_statement_token1] = ACTIONS(6800), - [aux_sym__inline_if_statement_token1] = ACTIONS(6800), - [aux_sym_end_if_statement_token1] = ACTIONS(6800), - [aux_sym_elseif_clause_token2] = ACTIONS(6800), - [aux_sym_select_case_statement_token1] = ACTIONS(6800), - [aux_sym_block_construct_token1] = ACTIONS(6800), - [aux_sym_format_statement_token1] = ACTIONS(6800), - [aux_sym_inquire_statement_token1] = ACTIONS(6800), - [aux_sym_enum_statement_token1] = ACTIONS(6800), - [aux_sym_entry_statement_token1] = ACTIONS(6800), - [aux_sym_null_literal_token1] = ACTIONS(6800), - [aux_sym_coarray_statement_token1] = ACTIONS(6800), - [aux_sym_coarray_statement_token2] = ACTIONS(6800), - [aux_sym_coarray_statement_token6] = ACTIONS(6800), - [aux_sym_coarray_statement_token8] = ACTIONS(6800), - [aux_sym_coarray_statement_token11] = ACTIONS(6800), - [aux_sym_coarray_statement_token12] = ACTIONS(6800), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6800), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6800), - [aux_sym_identifier_token1] = ACTIONS(6800), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6804), - }, - [2734] = { - [aux_sym_preproc_include_token1] = ACTIONS(6814), - [aux_sym_preproc_def_token1] = ACTIONS(6814), - [aux_sym_preproc_if_token1] = ACTIONS(6814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6814), - [sym_preproc_directive] = ACTIONS(6814), - [sym_preproc_comment] = ACTIONS(6816), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6814), - [aux_sym_end_module_statement_token1] = ACTIONS(6814), - [aux_sym_interface_statement_token1] = ACTIONS(6814), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6814), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6814), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6814), - [aux_sym_language_binding_token1] = ACTIONS(6814), - [aux_sym_procedure_attributes_token1] = ACTIONS(6814), - [aux_sym_procedure_attributes_token3] = ACTIONS(6814), - [aux_sym_contains_statement_token1] = ACTIONS(6814), - [aux_sym_use_statement_token1] = ACTIONS(6814), - [aux_sym_use_statement_token2] = ACTIONS(6814), - [aux_sym_implicit_statement_token1] = ACTIONS(6814), - [aux_sym_implicit_statement_token3] = ACTIONS(6814), - [aux_sym_implicit_statement_token4] = ACTIONS(6814), - [aux_sym_save_statement_token1] = ACTIONS(6814), - [aux_sym_private_statement_token1] = ACTIONS(6814), - [aux_sym_public_statement_token1] = ACTIONS(6814), - [aux_sym_namelist_statement_token1] = ACTIONS(6814), - [aux_sym_common_statement_token1] = ACTIONS(6814), - [aux_sym_import_statement_token1] = ACTIONS(6814), - [aux_sym_derived_type_definition_token1] = ACTIONS(6814), - [aux_sym_abstract_specifier_token1] = ACTIONS(6814), - [aux_sym_procedure_attribute_token6] = ACTIONS(6814), - [aux_sym_variable_attributes_token1] = ACTIONS(6814), - [aux_sym_variable_attributes_token2] = ACTIONS(6814), - [aux_sym_variable_attributes_token3] = ACTIONS(6814), - [aux_sym_variable_attributes_token4] = ACTIONS(6814), - [aux_sym_variable_attributes_token5] = ACTIONS(6814), - [aux_sym__intrinsic_type_token1] = ACTIONS(6814), - [aux_sym__intrinsic_type_token2] = ACTIONS(6814), - [aux_sym__intrinsic_type_token3] = ACTIONS(6814), - [aux_sym__intrinsic_type_token4] = ACTIONS(6814), - [aux_sym__intrinsic_type_token6] = ACTIONS(6814), - [aux_sym__intrinsic_type_token7] = ACTIONS(6814), - [aux_sym__intrinsic_type_token8] = ACTIONS(6814), - [aux_sym__intrinsic_type_token9] = ACTIONS(6814), - [aux_sym__intrinsic_type_token10] = ACTIONS(6814), - [aux_sym_derived_type_token1] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6814), - [aux_sym_type_qualifier_token1] = ACTIONS(6814), - [aux_sym_type_qualifier_token2] = ACTIONS(6814), - [aux_sym_equivalence_statement_token1] = ACTIONS(6814), - [aux_sym_stop_statement_token1] = ACTIONS(6814), - [aux_sym_stop_statement_token2] = ACTIONS(6814), - [aux_sym_keyword_statement_token2] = ACTIONS(6814), - [aux_sym_keyword_statement_token3] = ACTIONS(6814), - [aux_sym_include_statement_token1] = ACTIONS(6814), - [aux_sym_data_statement_token1] = ACTIONS(6814), - [aux_sym__inline_if_statement_token1] = ACTIONS(6814), - [aux_sym_end_if_statement_token1] = ACTIONS(6814), - [aux_sym_elseif_clause_token2] = ACTIONS(6814), - [aux_sym_select_case_statement_token1] = ACTIONS(6814), - [aux_sym_block_construct_token1] = ACTIONS(6814), - [aux_sym_format_statement_token1] = ACTIONS(6814), - [aux_sym_inquire_statement_token1] = ACTIONS(6814), - [aux_sym_enum_statement_token1] = ACTIONS(6814), - [aux_sym_entry_statement_token1] = ACTIONS(6814), - [aux_sym_null_literal_token1] = ACTIONS(6814), - [aux_sym_coarray_statement_token1] = ACTIONS(6814), - [aux_sym_coarray_statement_token2] = ACTIONS(6814), - [aux_sym_coarray_statement_token6] = ACTIONS(6814), - [aux_sym_coarray_statement_token8] = ACTIONS(6814), - [aux_sym_coarray_statement_token11] = ACTIONS(6814), - [aux_sym_coarray_statement_token12] = ACTIONS(6814), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6814), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6814), - [aux_sym_identifier_token1] = ACTIONS(6814), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6818), - }, - [2735] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token2] = ACTIONS(4547), - [aux_sym_preproc_else_token1] = ACTIONS(4547), - [aux_sym_preproc_elif_token1] = ACTIONS(4547), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - }, - [2736] = { - [aux_sym_preproc_include_token1] = ACTIONS(5081), - [aux_sym_preproc_def_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token2] = ACTIONS(5081), - [aux_sym_preproc_else_token1] = ACTIONS(5081), - [aux_sym_preproc_elif_token1] = ACTIONS(5081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5081), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5081), - [sym_preproc_directive] = ACTIONS(5081), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5081), - [aux_sym_interface_statement_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), - [aux_sym_language_binding_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token3] = ACTIONS(5081), - [aux_sym_contains_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token2] = ACTIONS(5081), - [aux_sym_implicit_statement_token1] = ACTIONS(5081), - [aux_sym_implicit_statement_token3] = ACTIONS(5081), - [aux_sym_implicit_statement_token4] = ACTIONS(5081), - [aux_sym_save_statement_token1] = ACTIONS(5081), - [aux_sym_private_statement_token1] = ACTIONS(5081), - [aux_sym_public_statement_token1] = ACTIONS(5081), - [aux_sym_namelist_statement_token1] = ACTIONS(5081), - [aux_sym_common_statement_token1] = ACTIONS(5081), - [aux_sym_import_statement_token1] = ACTIONS(5081), - [aux_sym_derived_type_definition_token1] = ACTIONS(5081), - [aux_sym_abstract_specifier_token1] = ACTIONS(5081), - [aux_sym_procedure_attribute_token6] = ACTIONS(5081), - [aux_sym_variable_attributes_token1] = ACTIONS(5081), - [aux_sym_variable_attributes_token2] = ACTIONS(5081), - [aux_sym_variable_attributes_token3] = ACTIONS(5081), - [aux_sym_variable_attributes_token4] = ACTIONS(5081), - [aux_sym_variable_attributes_token5] = ACTIONS(5081), - [aux_sym__intrinsic_type_token1] = ACTIONS(5081), - [aux_sym__intrinsic_type_token2] = ACTIONS(5081), - [aux_sym__intrinsic_type_token3] = ACTIONS(5081), - [aux_sym__intrinsic_type_token4] = ACTIONS(5081), - [aux_sym__intrinsic_type_token6] = ACTIONS(5081), - [aux_sym__intrinsic_type_token7] = ACTIONS(5081), - [aux_sym__intrinsic_type_token8] = ACTIONS(5081), - [aux_sym__intrinsic_type_token9] = ACTIONS(5081), - [aux_sym__intrinsic_type_token10] = ACTIONS(5081), - [aux_sym_derived_type_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), - [aux_sym_type_qualifier_token1] = ACTIONS(5081), - [aux_sym_type_qualifier_token2] = ACTIONS(5081), - [aux_sym_equivalence_statement_token1] = ACTIONS(5081), - [aux_sym_stop_statement_token1] = ACTIONS(5081), - [aux_sym_stop_statement_token2] = ACTIONS(5081), - [aux_sym_keyword_statement_token2] = ACTIONS(5081), - [aux_sym_keyword_statement_token3] = ACTIONS(5081), - [aux_sym_include_statement_token1] = ACTIONS(5081), - [aux_sym_data_statement_token1] = ACTIONS(5081), - [aux_sym__inline_if_statement_token1] = ACTIONS(5081), - [aux_sym_end_if_statement_token1] = ACTIONS(5081), - [aux_sym_elseif_clause_token2] = ACTIONS(5081), - [aux_sym_select_case_statement_token1] = ACTIONS(5081), - [aux_sym_block_construct_token1] = ACTIONS(5081), - [aux_sym_format_statement_token1] = ACTIONS(5081), - [aux_sym_inquire_statement_token1] = ACTIONS(5081), - [aux_sym_enum_statement_token1] = ACTIONS(5081), - [aux_sym_entry_statement_token1] = ACTIONS(5081), - [aux_sym_null_literal_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token2] = ACTIONS(5081), - [aux_sym_coarray_statement_token6] = ACTIONS(5081), - [aux_sym_coarray_statement_token8] = ACTIONS(5081), - [aux_sym_coarray_statement_token11] = ACTIONS(5081), - [aux_sym_coarray_statement_token12] = ACTIONS(5081), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), - [aux_sym_identifier_token1] = ACTIONS(5081), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5083), - }, - [2737] = { - [aux_sym_preproc_include_token1] = ACTIONS(6806), - [aux_sym_preproc_def_token1] = ACTIONS(6806), - [aux_sym_preproc_if_token1] = ACTIONS(6806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6806), - [sym_preproc_directive] = ACTIONS(6806), - [sym_preproc_comment] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6806), - [aux_sym_end_module_statement_token1] = ACTIONS(6806), - [aux_sym_interface_statement_token1] = ACTIONS(6806), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6806), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6806), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6806), - [aux_sym_language_binding_token1] = ACTIONS(6806), - [aux_sym_procedure_attributes_token1] = ACTIONS(6806), - [aux_sym_procedure_attributes_token3] = ACTIONS(6806), - [aux_sym_contains_statement_token1] = ACTIONS(6806), - [aux_sym_use_statement_token1] = ACTIONS(6806), - [aux_sym_use_statement_token2] = ACTIONS(6806), - [aux_sym_implicit_statement_token1] = ACTIONS(6806), - [aux_sym_implicit_statement_token3] = ACTIONS(6806), - [aux_sym_implicit_statement_token4] = ACTIONS(6806), - [aux_sym_save_statement_token1] = ACTIONS(6806), - [aux_sym_private_statement_token1] = ACTIONS(6806), - [aux_sym_public_statement_token1] = ACTIONS(6806), - [aux_sym_namelist_statement_token1] = ACTIONS(6806), - [aux_sym_common_statement_token1] = ACTIONS(6806), - [aux_sym_import_statement_token1] = ACTIONS(6806), - [aux_sym_derived_type_definition_token1] = ACTIONS(6806), - [aux_sym_abstract_specifier_token1] = ACTIONS(6806), - [aux_sym_procedure_attribute_token6] = ACTIONS(6806), - [aux_sym_variable_attributes_token1] = ACTIONS(6806), - [aux_sym_variable_attributes_token2] = ACTIONS(6806), - [aux_sym_variable_attributes_token3] = ACTIONS(6806), - [aux_sym_variable_attributes_token4] = ACTIONS(6806), - [aux_sym_variable_attributes_token5] = ACTIONS(6806), - [aux_sym__intrinsic_type_token1] = ACTIONS(6806), - [aux_sym__intrinsic_type_token2] = ACTIONS(6806), - [aux_sym__intrinsic_type_token3] = ACTIONS(6806), - [aux_sym__intrinsic_type_token4] = ACTIONS(6806), - [aux_sym__intrinsic_type_token6] = ACTIONS(6806), - [aux_sym__intrinsic_type_token7] = ACTIONS(6806), - [aux_sym__intrinsic_type_token8] = ACTIONS(6806), - [aux_sym__intrinsic_type_token9] = ACTIONS(6806), - [aux_sym__intrinsic_type_token10] = ACTIONS(6806), - [aux_sym_derived_type_token1] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6806), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6806), - [aux_sym_type_qualifier_token1] = ACTIONS(6806), - [aux_sym_type_qualifier_token2] = ACTIONS(6806), - [aux_sym_equivalence_statement_token1] = ACTIONS(6806), - [aux_sym_stop_statement_token1] = ACTIONS(6806), - [aux_sym_stop_statement_token2] = ACTIONS(6806), - [aux_sym_keyword_statement_token2] = ACTIONS(6806), - [aux_sym_keyword_statement_token3] = ACTIONS(6806), - [aux_sym_include_statement_token1] = ACTIONS(6806), - [aux_sym_data_statement_token1] = ACTIONS(6806), - [aux_sym__inline_if_statement_token1] = ACTIONS(6806), - [aux_sym_end_if_statement_token1] = ACTIONS(6806), - [aux_sym_elseif_clause_token2] = ACTIONS(6806), - [aux_sym_select_case_statement_token1] = ACTIONS(6806), - [aux_sym_block_construct_token1] = ACTIONS(6806), - [aux_sym_format_statement_token1] = ACTIONS(6806), - [aux_sym_inquire_statement_token1] = ACTIONS(6806), - [aux_sym_enum_statement_token1] = ACTIONS(6806), - [aux_sym_entry_statement_token1] = ACTIONS(6806), - [aux_sym_null_literal_token1] = ACTIONS(6806), - [aux_sym_coarray_statement_token1] = ACTIONS(6806), - [aux_sym_coarray_statement_token2] = ACTIONS(6806), - [aux_sym_coarray_statement_token6] = ACTIONS(6806), - [aux_sym_coarray_statement_token8] = ACTIONS(6806), - [aux_sym_coarray_statement_token11] = ACTIONS(6806), - [aux_sym_coarray_statement_token12] = ACTIONS(6806), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6806), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6806), - [aux_sym_identifier_token1] = ACTIONS(6806), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6810), - }, - [2738] = { - [aux_sym_preproc_include_token1] = ACTIONS(6768), - [aux_sym_preproc_def_token1] = ACTIONS(6768), - [aux_sym_preproc_if_token1] = ACTIONS(6768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6768), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6768), - [sym_preproc_directive] = ACTIONS(6768), - [sym_preproc_comment] = ACTIONS(6822), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6768), - [aux_sym_end_module_statement_token1] = ACTIONS(6768), - [aux_sym_interface_statement_token1] = ACTIONS(6768), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6768), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6768), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6768), - [aux_sym_language_binding_token1] = ACTIONS(6768), - [aux_sym_procedure_attributes_token1] = ACTIONS(6768), - [aux_sym_procedure_attributes_token3] = ACTIONS(6768), - [aux_sym_contains_statement_token1] = ACTIONS(6768), - [aux_sym_use_statement_token1] = ACTIONS(6768), - [aux_sym_use_statement_token2] = ACTIONS(6768), - [aux_sym_implicit_statement_token1] = ACTIONS(6768), - [aux_sym_implicit_statement_token3] = ACTIONS(6768), - [aux_sym_implicit_statement_token4] = ACTIONS(6768), - [aux_sym_save_statement_token1] = ACTIONS(6768), - [aux_sym_private_statement_token1] = ACTIONS(6768), - [aux_sym_public_statement_token1] = ACTIONS(6768), - [aux_sym_namelist_statement_token1] = ACTIONS(6768), - [aux_sym_common_statement_token1] = ACTIONS(6768), - [aux_sym_import_statement_token1] = ACTIONS(6768), - [aux_sym_derived_type_definition_token1] = ACTIONS(6768), - [aux_sym_abstract_specifier_token1] = ACTIONS(6768), - [aux_sym_procedure_attribute_token6] = ACTIONS(6768), - [aux_sym_variable_attributes_token1] = ACTIONS(6768), - [aux_sym_variable_attributes_token2] = ACTIONS(6768), - [aux_sym_variable_attributes_token3] = ACTIONS(6768), - [aux_sym_variable_attributes_token4] = ACTIONS(6768), - [aux_sym_variable_attributes_token5] = ACTIONS(6768), - [aux_sym__intrinsic_type_token1] = ACTIONS(6768), - [aux_sym__intrinsic_type_token2] = ACTIONS(6768), - [aux_sym__intrinsic_type_token3] = ACTIONS(6768), - [aux_sym__intrinsic_type_token4] = ACTIONS(6768), - [aux_sym__intrinsic_type_token6] = ACTIONS(6768), - [aux_sym__intrinsic_type_token7] = ACTIONS(6768), - [aux_sym__intrinsic_type_token8] = ACTIONS(6768), - [aux_sym__intrinsic_type_token9] = ACTIONS(6768), - [aux_sym__intrinsic_type_token10] = ACTIONS(6768), - [aux_sym_derived_type_token1] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6768), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6768), - [aux_sym_type_qualifier_token1] = ACTIONS(6768), - [aux_sym_type_qualifier_token2] = ACTIONS(6768), - [aux_sym_equivalence_statement_token1] = ACTIONS(6768), - [aux_sym_stop_statement_token1] = ACTIONS(6768), - [aux_sym_stop_statement_token2] = ACTIONS(6768), - [aux_sym_keyword_statement_token2] = ACTIONS(6768), - [aux_sym_keyword_statement_token3] = ACTIONS(6768), - [aux_sym_include_statement_token1] = ACTIONS(6768), - [aux_sym_data_statement_token1] = ACTIONS(6768), - [aux_sym__inline_if_statement_token1] = ACTIONS(6768), - [aux_sym_end_if_statement_token1] = ACTIONS(6768), - [aux_sym_elseif_clause_token2] = ACTIONS(6768), - [aux_sym_select_case_statement_token1] = ACTIONS(6768), - [aux_sym_block_construct_token1] = ACTIONS(6768), - [aux_sym_format_statement_token1] = ACTIONS(6768), - [aux_sym_inquire_statement_token1] = ACTIONS(6768), - [aux_sym_enum_statement_token1] = ACTIONS(6768), - [aux_sym_entry_statement_token1] = ACTIONS(6768), - [aux_sym_null_literal_token1] = ACTIONS(6768), - [aux_sym_coarray_statement_token1] = ACTIONS(6768), - [aux_sym_coarray_statement_token2] = ACTIONS(6768), - [aux_sym_coarray_statement_token6] = ACTIONS(6768), - [aux_sym_coarray_statement_token8] = ACTIONS(6768), - [aux_sym_coarray_statement_token11] = ACTIONS(6768), - [aux_sym_coarray_statement_token12] = ACTIONS(6768), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6768), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6768), - [aux_sym_identifier_token1] = ACTIONS(6768), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6772), - }, - [2739] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token2] = ACTIONS(5025), - [aux_sym_preproc_else_token1] = ACTIONS(5025), - [aux_sym_preproc_elif_token1] = ACTIONS(5025), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - }, - [2740] = { - [aux_sym_preproc_include_token1] = ACTIONS(6824), - [aux_sym_preproc_def_token1] = ACTIONS(6824), - [aux_sym_preproc_if_token1] = ACTIONS(6824), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6824), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6824), - [sym_preproc_directive] = ACTIONS(6824), - [sym_preproc_comment] = ACTIONS(6826), + [2678] = { + [sym_case_value_range_list] = STATE(8054), + [sym__expression] = STATE(4304), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_extent_specifier] = STATE(6250), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6824), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6824), - [aux_sym_interface_statement_token1] = ACTIONS(6824), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6824), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6824), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6824), - [aux_sym_language_binding_token1] = ACTIONS(6824), - [aux_sym_procedure_attributes_token1] = ACTIONS(6824), - [aux_sym_procedure_attributes_token3] = ACTIONS(6824), - [aux_sym_contains_statement_token1] = ACTIONS(6824), - [aux_sym_use_statement_token1] = ACTIONS(6824), - [aux_sym_use_statement_token2] = ACTIONS(6824), - [aux_sym_implicit_statement_token1] = ACTIONS(6824), - [aux_sym_implicit_statement_token3] = ACTIONS(6824), - [aux_sym_implicit_statement_token4] = ACTIONS(6824), - [aux_sym_save_statement_token1] = ACTIONS(6824), - [aux_sym_private_statement_token1] = ACTIONS(6824), - [aux_sym_public_statement_token1] = ACTIONS(6824), - [aux_sym_namelist_statement_token1] = ACTIONS(6824), - [aux_sym_common_statement_token1] = ACTIONS(6824), - [aux_sym_import_statement_token1] = ACTIONS(6824), - [aux_sym_derived_type_definition_token1] = ACTIONS(6824), - [aux_sym_abstract_specifier_token1] = ACTIONS(6824), - [aux_sym_procedure_attribute_token6] = ACTIONS(6824), - [aux_sym_variable_attributes_token1] = ACTIONS(6824), - [aux_sym_variable_attributes_token2] = ACTIONS(6824), - [aux_sym_variable_attributes_token3] = ACTIONS(6824), - [aux_sym_variable_attributes_token4] = ACTIONS(6824), - [aux_sym_variable_attributes_token5] = ACTIONS(6824), - [aux_sym__intrinsic_type_token1] = ACTIONS(6824), - [aux_sym__intrinsic_type_token2] = ACTIONS(6824), - [aux_sym__intrinsic_type_token3] = ACTIONS(6824), - [aux_sym__intrinsic_type_token4] = ACTIONS(6824), - [aux_sym__intrinsic_type_token6] = ACTIONS(6824), - [aux_sym__intrinsic_type_token7] = ACTIONS(6824), - [aux_sym__intrinsic_type_token8] = ACTIONS(6824), - [aux_sym__intrinsic_type_token9] = ACTIONS(6824), - [aux_sym__intrinsic_type_token10] = ACTIONS(6824), - [aux_sym_derived_type_token1] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6824), - [aux_sym_type_qualifier_token1] = ACTIONS(6824), - [aux_sym_type_qualifier_token2] = ACTIONS(6824), - [aux_sym_equivalence_statement_token1] = ACTIONS(6824), - [aux_sym_stop_statement_token1] = ACTIONS(6824), - [aux_sym_stop_statement_token2] = ACTIONS(6824), - [aux_sym_keyword_statement_token2] = ACTIONS(6824), - [aux_sym_keyword_statement_token3] = ACTIONS(6824), - [aux_sym_include_statement_token1] = ACTIONS(6824), - [aux_sym_data_statement_token1] = ACTIONS(6824), - [aux_sym__inline_if_statement_token1] = ACTIONS(6824), - [aux_sym_end_if_statement_token1] = ACTIONS(6824), - [aux_sym_elseif_clause_token2] = ACTIONS(6824), - [aux_sym_select_case_statement_token1] = ACTIONS(6824), - [aux_sym_block_construct_token1] = ACTIONS(6824), - [aux_sym_format_statement_token1] = ACTIONS(6824), - [aux_sym_inquire_statement_token1] = ACTIONS(6824), - [aux_sym_enum_statement_token1] = ACTIONS(6824), - [aux_sym_entry_statement_token1] = ACTIONS(6824), - [aux_sym_null_literal_token1] = ACTIONS(6824), - [aux_sym_coarray_statement_token1] = ACTIONS(6824), - [aux_sym_coarray_statement_token2] = ACTIONS(6824), - [aux_sym_coarray_statement_token6] = ACTIONS(6824), - [aux_sym_coarray_statement_token8] = ACTIONS(6824), - [aux_sym_coarray_statement_token11] = ACTIONS(6824), - [aux_sym_coarray_statement_token12] = ACTIONS(6824), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6824), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6824), - [aux_sym_identifier_token1] = ACTIONS(6824), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6616), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6828), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2741] = { - [aux_sym_preproc_include_token1] = ACTIONS(6824), - [aux_sym_preproc_def_token1] = ACTIONS(6824), - [aux_sym_preproc_if_token1] = ACTIONS(6824), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6824), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6824), - [sym_preproc_directive] = ACTIONS(6824), - [sym_preproc_comment] = ACTIONS(6830), + [2679] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6996), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4768), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6824), - [aux_sym_end_module_statement_token1] = ACTIONS(6824), - [aux_sym_interface_statement_token1] = ACTIONS(6824), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6824), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6824), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6824), - [aux_sym_language_binding_token1] = ACTIONS(6824), - [aux_sym_procedure_attributes_token1] = ACTIONS(6824), - [aux_sym_procedure_attributes_token3] = ACTIONS(6824), - [aux_sym_contains_statement_token1] = ACTIONS(6824), - [aux_sym_use_statement_token1] = ACTIONS(6824), - [aux_sym_use_statement_token2] = ACTIONS(6824), - [aux_sym_implicit_statement_token1] = ACTIONS(6824), - [aux_sym_implicit_statement_token3] = ACTIONS(6824), - [aux_sym_implicit_statement_token4] = ACTIONS(6824), - [aux_sym_save_statement_token1] = ACTIONS(6824), - [aux_sym_private_statement_token1] = ACTIONS(6824), - [aux_sym_public_statement_token1] = ACTIONS(6824), - [aux_sym_namelist_statement_token1] = ACTIONS(6824), - [aux_sym_common_statement_token1] = ACTIONS(6824), - [aux_sym_import_statement_token1] = ACTIONS(6824), - [aux_sym_derived_type_definition_token1] = ACTIONS(6824), - [aux_sym_abstract_specifier_token1] = ACTIONS(6824), - [aux_sym_procedure_attribute_token6] = ACTIONS(6824), - [aux_sym_variable_attributes_token1] = ACTIONS(6824), - [aux_sym_variable_attributes_token2] = ACTIONS(6824), - [aux_sym_variable_attributes_token3] = ACTIONS(6824), - [aux_sym_variable_attributes_token4] = ACTIONS(6824), - [aux_sym_variable_attributes_token5] = ACTIONS(6824), - [aux_sym__intrinsic_type_token1] = ACTIONS(6824), - [aux_sym__intrinsic_type_token2] = ACTIONS(6824), - [aux_sym__intrinsic_type_token3] = ACTIONS(6824), - [aux_sym__intrinsic_type_token4] = ACTIONS(6824), - [aux_sym__intrinsic_type_token6] = ACTIONS(6824), - [aux_sym__intrinsic_type_token7] = ACTIONS(6824), - [aux_sym__intrinsic_type_token8] = ACTIONS(6824), - [aux_sym__intrinsic_type_token9] = ACTIONS(6824), - [aux_sym__intrinsic_type_token10] = ACTIONS(6824), - [aux_sym_derived_type_token1] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6824), - [aux_sym_type_qualifier_token1] = ACTIONS(6824), - [aux_sym_type_qualifier_token2] = ACTIONS(6824), - [aux_sym_equivalence_statement_token1] = ACTIONS(6824), - [aux_sym_stop_statement_token1] = ACTIONS(6824), - [aux_sym_stop_statement_token2] = ACTIONS(6824), - [aux_sym_keyword_statement_token2] = ACTIONS(6824), - [aux_sym_keyword_statement_token3] = ACTIONS(6824), - [aux_sym_include_statement_token1] = ACTIONS(6824), - [aux_sym_data_statement_token1] = ACTIONS(6824), - [aux_sym__inline_if_statement_token1] = ACTIONS(6824), - [aux_sym_end_if_statement_token1] = ACTIONS(6824), - [aux_sym_elseif_clause_token2] = ACTIONS(6824), - [aux_sym_select_case_statement_token1] = ACTIONS(6824), - [aux_sym_block_construct_token1] = ACTIONS(6824), - [aux_sym_format_statement_token1] = ACTIONS(6824), - [aux_sym_inquire_statement_token1] = ACTIONS(6824), - [aux_sym_enum_statement_token1] = ACTIONS(6824), - [aux_sym_entry_statement_token1] = ACTIONS(6824), - [aux_sym_null_literal_token1] = ACTIONS(6824), - [aux_sym_coarray_statement_token1] = ACTIONS(6824), - [aux_sym_coarray_statement_token2] = ACTIONS(6824), - [aux_sym_coarray_statement_token6] = ACTIONS(6824), - [aux_sym_coarray_statement_token8] = ACTIONS(6824), - [aux_sym_coarray_statement_token11] = ACTIONS(6824), - [aux_sym_coarray_statement_token12] = ACTIONS(6824), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6824), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6824), - [aux_sym_identifier_token1] = ACTIONS(6824), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6828), - }, - [2742] = { - [aux_sym_preproc_include_token1] = ACTIONS(6738), - [aux_sym_preproc_def_token1] = ACTIONS(6738), - [aux_sym_preproc_if_token1] = ACTIONS(6738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6738), - [sym_preproc_directive] = ACTIONS(6738), - [sym_preproc_comment] = ACTIONS(6832), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6738), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6738), - [aux_sym_interface_statement_token1] = ACTIONS(6738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6738), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6738), - [aux_sym_language_binding_token1] = ACTIONS(6738), - [aux_sym_procedure_attributes_token1] = ACTIONS(6738), - [aux_sym_procedure_attributes_token3] = ACTIONS(6738), - [aux_sym_contains_statement_token1] = ACTIONS(6738), - [aux_sym_use_statement_token1] = ACTIONS(6738), - [aux_sym_use_statement_token2] = ACTIONS(6738), - [aux_sym_implicit_statement_token1] = ACTIONS(6738), - [aux_sym_implicit_statement_token3] = ACTIONS(6738), - [aux_sym_implicit_statement_token4] = ACTIONS(6738), - [aux_sym_save_statement_token1] = ACTIONS(6738), - [aux_sym_private_statement_token1] = ACTIONS(6738), - [aux_sym_public_statement_token1] = ACTIONS(6738), - [aux_sym_namelist_statement_token1] = ACTIONS(6738), - [aux_sym_common_statement_token1] = ACTIONS(6738), - [aux_sym_import_statement_token1] = ACTIONS(6738), - [aux_sym_derived_type_definition_token1] = ACTIONS(6738), - [aux_sym_abstract_specifier_token1] = ACTIONS(6738), - [aux_sym_procedure_attribute_token6] = ACTIONS(6738), - [aux_sym_variable_attributes_token1] = ACTIONS(6738), - [aux_sym_variable_attributes_token2] = ACTIONS(6738), - [aux_sym_variable_attributes_token3] = ACTIONS(6738), - [aux_sym_variable_attributes_token4] = ACTIONS(6738), - [aux_sym_variable_attributes_token5] = ACTIONS(6738), - [aux_sym__intrinsic_type_token1] = ACTIONS(6738), - [aux_sym__intrinsic_type_token2] = ACTIONS(6738), - [aux_sym__intrinsic_type_token3] = ACTIONS(6738), - [aux_sym__intrinsic_type_token4] = ACTIONS(6738), - [aux_sym__intrinsic_type_token6] = ACTIONS(6738), - [aux_sym__intrinsic_type_token7] = ACTIONS(6738), - [aux_sym__intrinsic_type_token8] = ACTIONS(6738), - [aux_sym__intrinsic_type_token9] = ACTIONS(6738), - [aux_sym__intrinsic_type_token10] = ACTIONS(6738), - [aux_sym_derived_type_token1] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6738), - [aux_sym_type_qualifier_token1] = ACTIONS(6738), - [aux_sym_type_qualifier_token2] = ACTIONS(6738), - [aux_sym_equivalence_statement_token1] = ACTIONS(6738), - [aux_sym_stop_statement_token1] = ACTIONS(6738), - [aux_sym_stop_statement_token2] = ACTIONS(6738), - [aux_sym_keyword_statement_token2] = ACTIONS(6738), - [aux_sym_keyword_statement_token3] = ACTIONS(6738), - [aux_sym_include_statement_token1] = ACTIONS(6738), - [aux_sym_data_statement_token1] = ACTIONS(6738), - [aux_sym__inline_if_statement_token1] = ACTIONS(6738), - [aux_sym_end_if_statement_token1] = ACTIONS(6738), - [aux_sym_elseif_clause_token2] = ACTIONS(6738), - [aux_sym_select_case_statement_token1] = ACTIONS(6738), - [aux_sym_block_construct_token1] = ACTIONS(6738), - [aux_sym_format_statement_token1] = ACTIONS(6738), - [aux_sym_inquire_statement_token1] = ACTIONS(6738), - [aux_sym_enum_statement_token1] = ACTIONS(6738), - [aux_sym_entry_statement_token1] = ACTIONS(6738), - [aux_sym_null_literal_token1] = ACTIONS(6738), - [aux_sym_coarray_statement_token1] = ACTIONS(6738), - [aux_sym_coarray_statement_token2] = ACTIONS(6738), - [aux_sym_coarray_statement_token6] = ACTIONS(6738), - [aux_sym_coarray_statement_token8] = ACTIONS(6738), - [aux_sym_coarray_statement_token11] = ACTIONS(6738), - [aux_sym_coarray_statement_token12] = ACTIONS(6738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6738), - [aux_sym_identifier_token1] = ACTIONS(6738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6742), - }, - [2743] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token2] = ACTIONS(5057), - [aux_sym_preproc_else_token1] = ACTIONS(5057), - [aux_sym_preproc_elif_token1] = ACTIONS(5057), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2744] = { - [anon_sym_LPAREN2] = ACTIONS(6834), - [anon_sym_PLUS] = ACTIONS(6836), - [anon_sym_DASH] = ACTIONS(6836), + [2680] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6275), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4768), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6834), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6834), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6834), - [aux_sym_procedure_attributes_token3] = ACTIONS(6834), - [aux_sym_use_statement_token2] = ACTIONS(6834), - [aux_sym_implicit_statement_token4] = ACTIONS(6834), - [aux_sym_save_statement_token1] = ACTIONS(6834), - [aux_sym_private_statement_token1] = ACTIONS(6834), - [aux_sym_public_statement_token1] = ACTIONS(6834), - [aux_sym_derived_type_definition_token1] = ACTIONS(6834), - [aux_sym_procedure_attribute_token6] = ACTIONS(6834), - [aux_sym_variable_attributes_token2] = ACTIONS(6834), - [aux_sym_variable_attributes_token3] = ACTIONS(6834), - [aux_sym_variable_attributes_token5] = ACTIONS(6834), - [aux_sym__intrinsic_type_token1] = ACTIONS(6834), - [aux_sym__intrinsic_type_token3] = ACTIONS(6834), - [aux_sym__intrinsic_type_token4] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6834), - [aux_sym_type_qualifier_token1] = ACTIONS(6834), - [aux_sym_type_qualifier_token2] = ACTIONS(6834), - [anon_sym_SEMI] = ACTIONS(6836), - [aux_sym_stop_statement_token1] = ACTIONS(6834), - [aux_sym_stop_statement_token2] = ACTIONS(6834), - [aux_sym_subroutine_call_token1] = ACTIONS(6834), - [aux_sym_keyword_statement_token1] = ACTIONS(6834), - [aux_sym_keyword_statement_token2] = ACTIONS(6834), - [aux_sym_keyword_statement_token3] = ACTIONS(6834), - [aux_sym_keyword_statement_token4] = ACTIONS(6834), - [aux_sym_keyword_statement_token6] = ACTIONS(6834), - [aux_sym_keyword_statement_token7] = ACTIONS(6834), - [aux_sym_include_statement_token1] = ACTIONS(6834), - [aux_sym_data_statement_token1] = ACTIONS(6834), - [aux_sym_do_loop_statement_token1] = ACTIONS(6834), - [aux_sym__inline_if_statement_token1] = ACTIONS(6834), - [aux_sym_end_if_statement_token1] = ACTIONS(6834), - [aux_sym_elseif_clause_token2] = ACTIONS(6834), - [aux_sym__inline_where_statement_token1] = ACTIONS(6834), - [aux_sym__forall_control_expression_token1] = ACTIONS(6834), - [aux_sym_select_case_statement_token1] = ACTIONS(6834), - [aux_sym_select_case_statement_token3] = ACTIONS(6834), - [aux_sym_select_type_statement_token1] = ACTIONS(6834), - [aux_sym_select_rank_statement_token2] = ACTIONS(6834), - [aux_sym_block_construct_token1] = ACTIONS(6834), - [aux_sym_associate_statement_token1] = ACTIONS(6834), - [aux_sym_format_statement_token1] = ACTIONS(6834), - [aux_sym_print_statement_token1] = ACTIONS(6834), - [aux_sym_open_statement_token1] = ACTIONS(6834), - [aux_sym_close_statement_token1] = ACTIONS(6834), - [aux_sym_inquire_statement_token1] = ACTIONS(6834), - [aux_sym_file_position_statement_token1] = ACTIONS(6834), - [aux_sym_file_position_statement_token2] = ACTIONS(6834), - [aux_sym_file_position_statement_token3] = ACTIONS(6834), - [aux_sym_file_position_statement_token4] = ACTIONS(6834), - [aux_sym_allocate_statement_token1] = ACTIONS(6834), - [aux_sym_entry_statement_token1] = ACTIONS(6834), - [aux_sym_logical_expression_token5] = ACTIONS(6836), - [anon_sym_DOT] = ACTIONS(6834), - [anon_sym_LPAREN_SLASH] = ACTIONS(6836), - [anon_sym_LBRACK] = ACTIONS(6836), - [aux_sym_boolean_literal_token1] = ACTIONS(6836), - [aux_sym_boolean_literal_token2] = ACTIONS(6836), - [aux_sym_null_literal_token1] = ACTIONS(6834), - [aux_sym_coarray_statement_token1] = ACTIONS(6834), - [aux_sym_coarray_statement_token2] = ACTIONS(6834), - [aux_sym_coarray_statement_token6] = ACTIONS(6834), - [aux_sym_coarray_statement_token8] = ACTIONS(6834), - [aux_sym_coarray_statement_token11] = ACTIONS(6834), - [aux_sym_coarray_statement_token12] = ACTIONS(6834), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6834), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6834), - [aux_sym_identifier_token1] = ACTIONS(6834), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6836), - [sym__float_literal] = ACTIONS(6836), - [sym__boz_literal] = ACTIONS(6836), - [sym__string_literal] = ACTIONS(6836), - [sym__string_literal_kind] = ACTIONS(6836), - [sym__external_end_of_statement] = ACTIONS(6836), - }, - [2745] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token2] = ACTIONS(5077), - [aux_sym_preproc_else_token1] = ACTIONS(5077), - [aux_sym_preproc_elif_token1] = ACTIONS(5077), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2746] = { - [aux_sym_preproc_include_token1] = ACTIONS(6814), - [aux_sym_preproc_def_token1] = ACTIONS(6814), - [aux_sym_preproc_if_token1] = ACTIONS(6814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6814), - [sym_preproc_directive] = ACTIONS(6814), - [sym_preproc_comment] = ACTIONS(6838), + [2681] = { + [sym__expression] = STATE(4353), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_COMMA] = ACTIONS(6700), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6814), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6814), - [aux_sym_interface_statement_token1] = ACTIONS(6814), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6814), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6814), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6814), - [aux_sym_language_binding_token1] = ACTIONS(6814), - [aux_sym_procedure_attributes_token1] = ACTIONS(6814), - [aux_sym_procedure_attributes_token3] = ACTIONS(6814), - [aux_sym_contains_statement_token1] = ACTIONS(6814), - [aux_sym_use_statement_token1] = ACTIONS(6814), - [aux_sym_use_statement_token2] = ACTIONS(6814), - [aux_sym_implicit_statement_token1] = ACTIONS(6814), - [aux_sym_implicit_statement_token3] = ACTIONS(6814), - [aux_sym_implicit_statement_token4] = ACTIONS(6814), - [aux_sym_save_statement_token1] = ACTIONS(6814), - [aux_sym_private_statement_token1] = ACTIONS(6814), - [aux_sym_public_statement_token1] = ACTIONS(6814), - [aux_sym_namelist_statement_token1] = ACTIONS(6814), - [aux_sym_common_statement_token1] = ACTIONS(6814), - [aux_sym_import_statement_token1] = ACTIONS(6814), - [aux_sym_derived_type_definition_token1] = ACTIONS(6814), - [aux_sym_abstract_specifier_token1] = ACTIONS(6814), - [aux_sym_procedure_attribute_token6] = ACTIONS(6814), - [aux_sym_variable_attributes_token1] = ACTIONS(6814), - [aux_sym_variable_attributes_token2] = ACTIONS(6814), - [aux_sym_variable_attributes_token3] = ACTIONS(6814), - [aux_sym_variable_attributes_token4] = ACTIONS(6814), - [aux_sym_variable_attributes_token5] = ACTIONS(6814), - [aux_sym__intrinsic_type_token1] = ACTIONS(6814), - [aux_sym__intrinsic_type_token2] = ACTIONS(6814), - [aux_sym__intrinsic_type_token3] = ACTIONS(6814), - [aux_sym__intrinsic_type_token4] = ACTIONS(6814), - [aux_sym__intrinsic_type_token6] = ACTIONS(6814), - [aux_sym__intrinsic_type_token7] = ACTIONS(6814), - [aux_sym__intrinsic_type_token8] = ACTIONS(6814), - [aux_sym__intrinsic_type_token9] = ACTIONS(6814), - [aux_sym__intrinsic_type_token10] = ACTIONS(6814), - [aux_sym_derived_type_token1] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6814), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6814), - [aux_sym_type_qualifier_token1] = ACTIONS(6814), - [aux_sym_type_qualifier_token2] = ACTIONS(6814), - [aux_sym_equivalence_statement_token1] = ACTIONS(6814), - [aux_sym_stop_statement_token1] = ACTIONS(6814), - [aux_sym_stop_statement_token2] = ACTIONS(6814), - [aux_sym_keyword_statement_token2] = ACTIONS(6814), - [aux_sym_keyword_statement_token3] = ACTIONS(6814), - [aux_sym_include_statement_token1] = ACTIONS(6814), - [aux_sym_data_statement_token1] = ACTIONS(6814), - [aux_sym__inline_if_statement_token1] = ACTIONS(6814), - [aux_sym_end_if_statement_token1] = ACTIONS(6814), - [aux_sym_elseif_clause_token2] = ACTIONS(6814), - [aux_sym_select_case_statement_token1] = ACTIONS(6814), - [aux_sym_block_construct_token1] = ACTIONS(6814), - [aux_sym_format_statement_token1] = ACTIONS(6814), - [aux_sym_inquire_statement_token1] = ACTIONS(6814), - [aux_sym_enum_statement_token1] = ACTIONS(6814), - [aux_sym_entry_statement_token1] = ACTIONS(6814), - [aux_sym_null_literal_token1] = ACTIONS(6814), - [aux_sym_coarray_statement_token1] = ACTIONS(6814), - [aux_sym_coarray_statement_token2] = ACTIONS(6814), - [aux_sym_coarray_statement_token6] = ACTIONS(6814), - [aux_sym_coarray_statement_token8] = ACTIONS(6814), - [aux_sym_coarray_statement_token11] = ACTIONS(6814), - [aux_sym_coarray_statement_token12] = ACTIONS(6814), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6814), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6814), - [aux_sym_identifier_token1] = ACTIONS(6814), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6702), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6818), - }, - [2747] = { - [aux_sym_preproc_include_token1] = ACTIONS(6840), - [aux_sym_preproc_def_token1] = ACTIONS(6840), - [aux_sym_preproc_if_token1] = ACTIONS(6840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6840), - [sym_preproc_directive] = ACTIONS(6840), - [sym_preproc_comment] = ACTIONS(6842), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6840), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6840), - [aux_sym_interface_statement_token1] = ACTIONS(6840), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6840), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6840), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6840), - [aux_sym_language_binding_token1] = ACTIONS(6840), - [aux_sym_procedure_attributes_token1] = ACTIONS(6840), - [aux_sym_procedure_attributes_token3] = ACTIONS(6840), - [aux_sym_contains_statement_token1] = ACTIONS(6840), - [aux_sym_use_statement_token1] = ACTIONS(6840), - [aux_sym_use_statement_token2] = ACTIONS(6840), - [aux_sym_implicit_statement_token1] = ACTIONS(6840), - [aux_sym_implicit_statement_token3] = ACTIONS(6840), - [aux_sym_implicit_statement_token4] = ACTIONS(6840), - [aux_sym_save_statement_token1] = ACTIONS(6840), - [aux_sym_private_statement_token1] = ACTIONS(6840), - [aux_sym_public_statement_token1] = ACTIONS(6840), - [aux_sym_namelist_statement_token1] = ACTIONS(6840), - [aux_sym_common_statement_token1] = ACTIONS(6840), - [aux_sym_import_statement_token1] = ACTIONS(6840), - [aux_sym_derived_type_definition_token1] = ACTIONS(6840), - [aux_sym_abstract_specifier_token1] = ACTIONS(6840), - [aux_sym_procedure_attribute_token6] = ACTIONS(6840), - [aux_sym_variable_attributes_token1] = ACTIONS(6840), - [aux_sym_variable_attributes_token2] = ACTIONS(6840), - [aux_sym_variable_attributes_token3] = ACTIONS(6840), - [aux_sym_variable_attributes_token4] = ACTIONS(6840), - [aux_sym_variable_attributes_token5] = ACTIONS(6840), - [aux_sym__intrinsic_type_token1] = ACTIONS(6840), - [aux_sym__intrinsic_type_token2] = ACTIONS(6840), - [aux_sym__intrinsic_type_token3] = ACTIONS(6840), - [aux_sym__intrinsic_type_token4] = ACTIONS(6840), - [aux_sym__intrinsic_type_token6] = ACTIONS(6840), - [aux_sym__intrinsic_type_token7] = ACTIONS(6840), - [aux_sym__intrinsic_type_token8] = ACTIONS(6840), - [aux_sym__intrinsic_type_token9] = ACTIONS(6840), - [aux_sym__intrinsic_type_token10] = ACTIONS(6840), - [aux_sym_derived_type_token1] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6840), - [aux_sym_type_qualifier_token1] = ACTIONS(6840), - [aux_sym_type_qualifier_token2] = ACTIONS(6840), - [aux_sym_equivalence_statement_token1] = ACTIONS(6840), - [aux_sym_stop_statement_token1] = ACTIONS(6840), - [aux_sym_stop_statement_token2] = ACTIONS(6840), - [aux_sym_keyword_statement_token2] = ACTIONS(6840), - [aux_sym_keyword_statement_token3] = ACTIONS(6840), - [aux_sym_include_statement_token1] = ACTIONS(6840), - [aux_sym_data_statement_token1] = ACTIONS(6840), - [aux_sym__inline_if_statement_token1] = ACTIONS(6840), - [aux_sym_end_if_statement_token1] = ACTIONS(6840), - [aux_sym_elseif_clause_token2] = ACTIONS(6840), - [aux_sym_select_case_statement_token1] = ACTIONS(6840), - [aux_sym_block_construct_token1] = ACTIONS(6840), - [aux_sym_format_statement_token1] = ACTIONS(6840), - [aux_sym_inquire_statement_token1] = ACTIONS(6840), - [aux_sym_enum_statement_token1] = ACTIONS(6840), - [aux_sym_entry_statement_token1] = ACTIONS(6840), - [aux_sym_null_literal_token1] = ACTIONS(6840), - [aux_sym_coarray_statement_token1] = ACTIONS(6840), - [aux_sym_coarray_statement_token2] = ACTIONS(6840), - [aux_sym_coarray_statement_token6] = ACTIONS(6840), - [aux_sym_coarray_statement_token8] = ACTIONS(6840), - [aux_sym_coarray_statement_token11] = ACTIONS(6840), - [aux_sym_coarray_statement_token12] = ACTIONS(6840), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6840), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6840), - [aux_sym_identifier_token1] = ACTIONS(6840), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6844), - }, - [2748] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [aux_sym_preproc_else_token1] = ACTIONS(4559), - [aux_sym_preproc_elif_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - }, - [2749] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [aux_sym_preproc_else_token1] = ACTIONS(4567), - [aux_sym_preproc_elif_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6702), }, - [2750] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [aux_sym_preproc_else_token1] = ACTIONS(4571), - [aux_sym_preproc_elif_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), + [2682] = { + [aux_sym_preproc_include_token1] = ACTIONS(4315), + [aux_sym_preproc_def_token1] = ACTIONS(4315), + [aux_sym_preproc_if_token2] = ACTIONS(4315), + [aux_sym_preproc_else_token1] = ACTIONS(4315), + [aux_sym_preproc_elif_token1] = ACTIONS(4315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4315), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4315), + [sym_preproc_directive] = ACTIONS(4315), + [sym_preproc_comment] = ACTIONS(4317), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), + [aux_sym_end_program_statement_token1] = ACTIONS(4315), + [aux_sym_interface_statement_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4315), + [aux_sym_language_binding_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token3] = ACTIONS(4315), + [aux_sym_contains_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token2] = ACTIONS(4315), + [aux_sym_implicit_statement_token1] = ACTIONS(4315), + [aux_sym_implicit_statement_token3] = ACTIONS(4315), + [aux_sym_implicit_statement_token4] = ACTIONS(4315), + [aux_sym_save_statement_token1] = ACTIONS(4315), + [aux_sym_private_statement_token1] = ACTIONS(4315), + [aux_sym_public_statement_token1] = ACTIONS(4315), + [aux_sym_namelist_statement_token1] = ACTIONS(4315), + [aux_sym_common_statement_token1] = ACTIONS(4315), + [aux_sym_import_statement_token1] = ACTIONS(4315), + [aux_sym_derived_type_definition_token1] = ACTIONS(4315), + [aux_sym_abstract_specifier_token1] = ACTIONS(4315), + [aux_sym_procedure_attribute_token6] = ACTIONS(4315), + [aux_sym_variable_attributes_token1] = ACTIONS(4315), + [aux_sym_variable_attributes_token2] = ACTIONS(4315), + [aux_sym_variable_attributes_token3] = ACTIONS(4315), + [aux_sym_variable_attributes_token4] = ACTIONS(4315), + [aux_sym_variable_attributes_token5] = ACTIONS(4315), + [aux_sym__intrinsic_type_token1] = ACTIONS(4315), + [aux_sym__intrinsic_type_token2] = ACTIONS(4315), + [aux_sym__intrinsic_type_token3] = ACTIONS(4315), + [aux_sym__intrinsic_type_token4] = ACTIONS(4315), + [aux_sym__intrinsic_type_token6] = ACTIONS(4315), + [aux_sym__intrinsic_type_token7] = ACTIONS(4315), + [aux_sym__intrinsic_type_token8] = ACTIONS(4315), + [aux_sym__intrinsic_type_token9] = ACTIONS(4315), + [aux_sym__intrinsic_type_token10] = ACTIONS(4315), + [aux_sym_derived_type_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4315), + [aux_sym_type_qualifier_token1] = ACTIONS(4315), + [aux_sym_type_qualifier_token2] = ACTIONS(4315), + [aux_sym_equivalence_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token3] = ACTIONS(4315), + [aux_sym_include_statement_token1] = ACTIONS(4315), + [aux_sym_data_statement_token1] = ACTIONS(4315), + [aux_sym__inline_if_statement_token1] = ACTIONS(4315), + [aux_sym_end_if_statement_token1] = ACTIONS(4315), + [aux_sym_elseif_clause_token2] = ACTIONS(4315), + [aux_sym_select_case_statement_token1] = ACTIONS(4315), + [aux_sym_block_construct_token1] = ACTIONS(4315), + [aux_sym_format_statement_token1] = ACTIONS(4315), + [aux_sym_inquire_statement_token1] = ACTIONS(4315), + [aux_sym_enum_statement_token1] = ACTIONS(4315), + [aux_sym_entry_statement_token1] = ACTIONS(4315), + [aux_sym_null_literal_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token2] = ACTIONS(4315), + [aux_sym_coarray_statement_token6] = ACTIONS(4315), + [aux_sym_coarray_statement_token8] = ACTIONS(4315), + [aux_sym_coarray_statement_token11] = ACTIONS(4315), + [aux_sym_coarray_statement_token12] = ACTIONS(4315), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), + [aux_sym_identifier_token1] = ACTIONS(4315), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), + [sym__integer_literal] = ACTIONS(4317), }, - [2751] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [aux_sym_preproc_else_token1] = ACTIONS(4575), - [aux_sym_preproc_elif_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), + [2683] = { + [sym__expression] = STATE(4344), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(7322), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6664), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6666), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2752] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [aux_sym_preproc_else_token1] = ACTIONS(4579), - [aux_sym_preproc_elif_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), + [2684] = { + [sym_case_value_range_list] = STATE(8057), + [sym__expression] = STATE(4304), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_extent_specifier] = STATE(6250), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6616), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2753] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [aux_sym_preproc_else_token1] = ACTIONS(4583), - [aux_sym_preproc_elif_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), + [2685] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6336), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4768), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - }, - [2754] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token2] = ACTIONS(5029), - [aux_sym_preproc_else_token1] = ACTIONS(5029), - [aux_sym_preproc_elif_token1] = ACTIONS(5029), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2755] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [aux_sym_preproc_else_token1] = ACTIONS(4587), - [aux_sym_preproc_elif_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), + [2686] = { + [sym_output_item_list] = STATE(7306), + [sym__expression] = STATE(4307), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6704), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6704), }, - [2756] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token2] = ACTIONS(5033), - [aux_sym_preproc_else_token1] = ACTIONS(5033), - [aux_sym_preproc_elif_token1] = ACTIONS(5033), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), + [2687] = { + [sym_input_item_list] = STATE(7082), + [sym__expression] = STATE(4288), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6706), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6706), }, - [2757] = { - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_PLUS] = ACTIONS(6848), - [anon_sym_DASH] = ACTIONS(6848), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6846), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6846), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6846), - [aux_sym_procedure_attributes_token3] = ACTIONS(6846), - [aux_sym_use_statement_token2] = ACTIONS(6846), - [aux_sym_implicit_statement_token4] = ACTIONS(6846), - [aux_sym_save_statement_token1] = ACTIONS(6846), - [aux_sym_private_statement_token1] = ACTIONS(6846), - [aux_sym_public_statement_token1] = ACTIONS(6846), - [aux_sym_derived_type_definition_token1] = ACTIONS(6846), - [aux_sym_procedure_attribute_token6] = ACTIONS(6846), - [aux_sym_variable_attributes_token2] = ACTIONS(6846), - [aux_sym_variable_attributes_token3] = ACTIONS(6846), - [aux_sym_variable_attributes_token5] = ACTIONS(6846), - [aux_sym__intrinsic_type_token1] = ACTIONS(6846), - [aux_sym__intrinsic_type_token3] = ACTIONS(6846), - [aux_sym__intrinsic_type_token4] = ACTIONS(6846), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6846), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6846), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6846), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6846), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6846), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6846), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6846), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6846), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6846), - [aux_sym_type_qualifier_token1] = ACTIONS(6846), - [aux_sym_type_qualifier_token2] = ACTIONS(6846), - [anon_sym_SEMI] = ACTIONS(6848), - [aux_sym_stop_statement_token1] = ACTIONS(6846), - [aux_sym_stop_statement_token2] = ACTIONS(6846), - [aux_sym_subroutine_call_token1] = ACTIONS(6846), - [aux_sym_keyword_statement_token1] = ACTIONS(6846), - [aux_sym_keyword_statement_token2] = ACTIONS(6846), - [aux_sym_keyword_statement_token3] = ACTIONS(6846), - [aux_sym_keyword_statement_token4] = ACTIONS(6846), - [aux_sym_keyword_statement_token6] = ACTIONS(6846), - [aux_sym_keyword_statement_token7] = ACTIONS(6846), - [aux_sym_include_statement_token1] = ACTIONS(6846), - [aux_sym_data_statement_token1] = ACTIONS(6846), - [aux_sym_do_loop_statement_token1] = ACTIONS(6846), - [aux_sym__inline_if_statement_token1] = ACTIONS(6846), - [aux_sym_end_if_statement_token1] = ACTIONS(6846), - [aux_sym_elseif_clause_token2] = ACTIONS(6846), - [aux_sym__inline_where_statement_token1] = ACTIONS(6846), - [aux_sym__forall_control_expression_token1] = ACTIONS(6846), - [aux_sym_select_case_statement_token1] = ACTIONS(6846), - [aux_sym_select_case_statement_token3] = ACTIONS(6846), - [aux_sym_select_type_statement_token1] = ACTIONS(6846), - [aux_sym_select_rank_statement_token2] = ACTIONS(6846), - [aux_sym_block_construct_token1] = ACTIONS(6846), - [aux_sym_associate_statement_token1] = ACTIONS(6846), - [aux_sym_format_statement_token1] = ACTIONS(6846), - [aux_sym_print_statement_token1] = ACTIONS(6846), - [aux_sym_open_statement_token1] = ACTIONS(6846), - [aux_sym_close_statement_token1] = ACTIONS(6846), - [aux_sym_inquire_statement_token1] = ACTIONS(6846), - [aux_sym_file_position_statement_token1] = ACTIONS(6846), - [aux_sym_file_position_statement_token2] = ACTIONS(6846), - [aux_sym_file_position_statement_token3] = ACTIONS(6846), - [aux_sym_file_position_statement_token4] = ACTIONS(6846), - [aux_sym_allocate_statement_token1] = ACTIONS(6846), - [aux_sym_entry_statement_token1] = ACTIONS(6846), - [aux_sym_logical_expression_token5] = ACTIONS(6848), - [anon_sym_DOT] = ACTIONS(6846), - [anon_sym_LPAREN_SLASH] = ACTIONS(6848), - [anon_sym_LBRACK] = ACTIONS(6848), - [aux_sym_boolean_literal_token1] = ACTIONS(6848), - [aux_sym_boolean_literal_token2] = ACTIONS(6848), - [aux_sym_null_literal_token1] = ACTIONS(6846), - [aux_sym_coarray_statement_token1] = ACTIONS(6846), - [aux_sym_coarray_statement_token2] = ACTIONS(6846), - [aux_sym_coarray_statement_token6] = ACTIONS(6846), - [aux_sym_coarray_statement_token8] = ACTIONS(6846), - [aux_sym_coarray_statement_token11] = ACTIONS(6846), - [aux_sym_coarray_statement_token12] = ACTIONS(6846), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6846), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6846), - [aux_sym_identifier_token1] = ACTIONS(6846), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6848), - [sym__float_literal] = ACTIONS(6848), - [sym__boz_literal] = ACTIONS(6848), - [sym__string_literal] = ACTIONS(6848), - [sym__string_literal_kind] = ACTIONS(6848), - [sym__external_end_of_statement] = ACTIONS(6848), + [2688] = { + [sym__expression] = STATE(4265), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(6364), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6666), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2758] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token2] = ACTIONS(4481), - [aux_sym_preproc_else_token1] = ACTIONS(4481), - [aux_sym_preproc_elif_token1] = ACTIONS(4481), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), + [2689] = { + [sym_output_item_list] = STATE(7346), + [sym__expression] = STATE(4307), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6710), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6710), }, - [2759] = { - [sym_sized_allocation] = STATE(6079), - [sym_coarray_allocation] = STATE(6795), - [sym__expression] = STATE(4567), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4745), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4745), + [2690] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_keyword_argument] = STATE(6334), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4768), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -418011,10 +411652,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -418031,7 +411672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -418059,729 +411700,1195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2760] = { - [aux_sym_preproc_include_token1] = ACTIONS(6780), - [aux_sym_preproc_def_token1] = ACTIONS(6780), - [aux_sym_preproc_if_token1] = ACTIONS(6780), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6780), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6780), - [sym_preproc_directive] = ACTIONS(6780), - [sym_preproc_comment] = ACTIONS(6850), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6780), - [aux_sym_end_module_statement_token1] = ACTIONS(6780), - [aux_sym_interface_statement_token1] = ACTIONS(6780), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6780), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6780), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6780), - [aux_sym_language_binding_token1] = ACTIONS(6780), - [aux_sym_procedure_attributes_token1] = ACTIONS(6780), - [aux_sym_procedure_attributes_token3] = ACTIONS(6780), - [aux_sym_contains_statement_token1] = ACTIONS(6780), - [aux_sym_use_statement_token1] = ACTIONS(6780), - [aux_sym_use_statement_token2] = ACTIONS(6780), - [aux_sym_implicit_statement_token1] = ACTIONS(6780), - [aux_sym_implicit_statement_token3] = ACTIONS(6780), - [aux_sym_implicit_statement_token4] = ACTIONS(6780), - [aux_sym_save_statement_token1] = ACTIONS(6780), - [aux_sym_private_statement_token1] = ACTIONS(6780), - [aux_sym_public_statement_token1] = ACTIONS(6780), - [aux_sym_namelist_statement_token1] = ACTIONS(6780), - [aux_sym_common_statement_token1] = ACTIONS(6780), - [aux_sym_import_statement_token1] = ACTIONS(6780), - [aux_sym_derived_type_definition_token1] = ACTIONS(6780), - [aux_sym_abstract_specifier_token1] = ACTIONS(6780), - [aux_sym_procedure_attribute_token6] = ACTIONS(6780), - [aux_sym_variable_attributes_token1] = ACTIONS(6780), - [aux_sym_variable_attributes_token2] = ACTIONS(6780), - [aux_sym_variable_attributes_token3] = ACTIONS(6780), - [aux_sym_variable_attributes_token4] = ACTIONS(6780), - [aux_sym_variable_attributes_token5] = ACTIONS(6780), - [aux_sym__intrinsic_type_token1] = ACTIONS(6780), - [aux_sym__intrinsic_type_token2] = ACTIONS(6780), - [aux_sym__intrinsic_type_token3] = ACTIONS(6780), - [aux_sym__intrinsic_type_token4] = ACTIONS(6780), - [aux_sym__intrinsic_type_token6] = ACTIONS(6780), - [aux_sym__intrinsic_type_token7] = ACTIONS(6780), - [aux_sym__intrinsic_type_token8] = ACTIONS(6780), - [aux_sym__intrinsic_type_token9] = ACTIONS(6780), - [aux_sym__intrinsic_type_token10] = ACTIONS(6780), - [aux_sym_derived_type_token1] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6780), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6780), - [aux_sym_type_qualifier_token1] = ACTIONS(6780), - [aux_sym_type_qualifier_token2] = ACTIONS(6780), - [aux_sym_equivalence_statement_token1] = ACTIONS(6780), - [aux_sym_stop_statement_token1] = ACTIONS(6780), - [aux_sym_stop_statement_token2] = ACTIONS(6780), - [aux_sym_keyword_statement_token2] = ACTIONS(6780), - [aux_sym_keyword_statement_token3] = ACTIONS(6780), - [aux_sym_include_statement_token1] = ACTIONS(6780), - [aux_sym_data_statement_token1] = ACTIONS(6780), - [aux_sym__inline_if_statement_token1] = ACTIONS(6780), - [aux_sym_end_if_statement_token1] = ACTIONS(6780), - [aux_sym_elseif_clause_token2] = ACTIONS(6780), - [aux_sym_select_case_statement_token1] = ACTIONS(6780), - [aux_sym_block_construct_token1] = ACTIONS(6780), - [aux_sym_format_statement_token1] = ACTIONS(6780), - [aux_sym_inquire_statement_token1] = ACTIONS(6780), - [aux_sym_enum_statement_token1] = ACTIONS(6780), - [aux_sym_entry_statement_token1] = ACTIONS(6780), - [aux_sym_null_literal_token1] = ACTIONS(6780), - [aux_sym_coarray_statement_token1] = ACTIONS(6780), - [aux_sym_coarray_statement_token2] = ACTIONS(6780), - [aux_sym_coarray_statement_token6] = ACTIONS(6780), - [aux_sym_coarray_statement_token8] = ACTIONS(6780), - [aux_sym_coarray_statement_token11] = ACTIONS(6780), - [aux_sym_coarray_statement_token12] = ACTIONS(6780), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6780), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6780), - [aux_sym_identifier_token1] = ACTIONS(6780), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6784), + [2691] = { + [sym__expression] = STATE(4314), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(6720), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6712), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6666), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2761] = { - [aux_sym_preproc_include_token1] = ACTIONS(6794), - [aux_sym_preproc_def_token1] = ACTIONS(6794), - [aux_sym_preproc_if_token1] = ACTIONS(6794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6794), - [sym_preproc_directive] = ACTIONS(6794), - [sym_preproc_comment] = ACTIONS(6852), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6794), - [aux_sym_end_module_statement_token1] = ACTIONS(6794), - [aux_sym_interface_statement_token1] = ACTIONS(6794), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6794), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6794), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6794), - [aux_sym_language_binding_token1] = ACTIONS(6794), - [aux_sym_procedure_attributes_token1] = ACTIONS(6794), - [aux_sym_procedure_attributes_token3] = ACTIONS(6794), - [aux_sym_contains_statement_token1] = ACTIONS(6794), - [aux_sym_use_statement_token1] = ACTIONS(6794), - [aux_sym_use_statement_token2] = ACTIONS(6794), - [aux_sym_implicit_statement_token1] = ACTIONS(6794), - [aux_sym_implicit_statement_token3] = ACTIONS(6794), - [aux_sym_implicit_statement_token4] = ACTIONS(6794), - [aux_sym_save_statement_token1] = ACTIONS(6794), - [aux_sym_private_statement_token1] = ACTIONS(6794), - [aux_sym_public_statement_token1] = ACTIONS(6794), - [aux_sym_namelist_statement_token1] = ACTIONS(6794), - [aux_sym_common_statement_token1] = ACTIONS(6794), - [aux_sym_import_statement_token1] = ACTIONS(6794), - [aux_sym_derived_type_definition_token1] = ACTIONS(6794), - [aux_sym_abstract_specifier_token1] = ACTIONS(6794), - [aux_sym_procedure_attribute_token6] = ACTIONS(6794), - [aux_sym_variable_attributes_token1] = ACTIONS(6794), - [aux_sym_variable_attributes_token2] = ACTIONS(6794), - [aux_sym_variable_attributes_token3] = ACTIONS(6794), - [aux_sym_variable_attributes_token4] = ACTIONS(6794), - [aux_sym_variable_attributes_token5] = ACTIONS(6794), - [aux_sym__intrinsic_type_token1] = ACTIONS(6794), - [aux_sym__intrinsic_type_token2] = ACTIONS(6794), - [aux_sym__intrinsic_type_token3] = ACTIONS(6794), - [aux_sym__intrinsic_type_token4] = ACTIONS(6794), - [aux_sym__intrinsic_type_token6] = ACTIONS(6794), - [aux_sym__intrinsic_type_token7] = ACTIONS(6794), - [aux_sym__intrinsic_type_token8] = ACTIONS(6794), - [aux_sym__intrinsic_type_token9] = ACTIONS(6794), - [aux_sym__intrinsic_type_token10] = ACTIONS(6794), - [aux_sym_derived_type_token1] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6794), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6794), - [aux_sym_type_qualifier_token1] = ACTIONS(6794), - [aux_sym_type_qualifier_token2] = ACTIONS(6794), - [aux_sym_equivalence_statement_token1] = ACTIONS(6794), - [aux_sym_stop_statement_token1] = ACTIONS(6794), - [aux_sym_stop_statement_token2] = ACTIONS(6794), - [aux_sym_keyword_statement_token2] = ACTIONS(6794), - [aux_sym_keyword_statement_token3] = ACTIONS(6794), - [aux_sym_include_statement_token1] = ACTIONS(6794), - [aux_sym_data_statement_token1] = ACTIONS(6794), - [aux_sym__inline_if_statement_token1] = ACTIONS(6794), - [aux_sym_end_if_statement_token1] = ACTIONS(6794), - [aux_sym_elseif_clause_token2] = ACTIONS(6794), - [aux_sym_select_case_statement_token1] = ACTIONS(6794), - [aux_sym_block_construct_token1] = ACTIONS(6794), - [aux_sym_format_statement_token1] = ACTIONS(6794), - [aux_sym_inquire_statement_token1] = ACTIONS(6794), - [aux_sym_enum_statement_token1] = ACTIONS(6794), - [aux_sym_entry_statement_token1] = ACTIONS(6794), - [aux_sym_null_literal_token1] = ACTIONS(6794), - [aux_sym_coarray_statement_token1] = ACTIONS(6794), - [aux_sym_coarray_statement_token2] = ACTIONS(6794), - [aux_sym_coarray_statement_token6] = ACTIONS(6794), - [aux_sym_coarray_statement_token8] = ACTIONS(6794), - [aux_sym_coarray_statement_token11] = ACTIONS(6794), - [aux_sym_coarray_statement_token12] = ACTIONS(6794), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6794), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6794), - [aux_sym_identifier_token1] = ACTIONS(6794), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6798), + [2692] = { + [aux_sym_preproc_include_token1] = ACTIONS(4345), + [aux_sym_preproc_def_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token2] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4345), + [sym_preproc_directive] = ACTIONS(4345), + [sym_preproc_comment] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4345), + [aux_sym_interface_statement_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4345), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4345), + [aux_sym_language_binding_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token3] = ACTIONS(4345), + [aux_sym_contains_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token2] = ACTIONS(4345), + [aux_sym_implicit_statement_token1] = ACTIONS(4345), + [aux_sym_implicit_statement_token3] = ACTIONS(4345), + [aux_sym_implicit_statement_token4] = ACTIONS(4345), + [aux_sym_save_statement_token1] = ACTIONS(4345), + [aux_sym_private_statement_token1] = ACTIONS(4345), + [aux_sym_public_statement_token1] = ACTIONS(4345), + [aux_sym_namelist_statement_token1] = ACTIONS(4345), + [aux_sym_common_statement_token1] = ACTIONS(4345), + [aux_sym_import_statement_token1] = ACTIONS(4345), + [aux_sym_derived_type_definition_token1] = ACTIONS(4345), + [aux_sym_abstract_specifier_token1] = ACTIONS(4345), + [aux_sym_procedure_attribute_token6] = ACTIONS(4345), + [aux_sym_variable_attributes_token1] = ACTIONS(4345), + [aux_sym_variable_attributes_token2] = ACTIONS(4345), + [aux_sym_variable_attributes_token3] = ACTIONS(4345), + [aux_sym_variable_attributes_token4] = ACTIONS(4345), + [aux_sym_variable_attributes_token5] = ACTIONS(4345), + [aux_sym__intrinsic_type_token1] = ACTIONS(4345), + [aux_sym__intrinsic_type_token2] = ACTIONS(4345), + [aux_sym__intrinsic_type_token3] = ACTIONS(4345), + [aux_sym__intrinsic_type_token4] = ACTIONS(4345), + [aux_sym__intrinsic_type_token6] = ACTIONS(4345), + [aux_sym__intrinsic_type_token7] = ACTIONS(4345), + [aux_sym__intrinsic_type_token8] = ACTIONS(4345), + [aux_sym__intrinsic_type_token9] = ACTIONS(4345), + [aux_sym__intrinsic_type_token10] = ACTIONS(4345), + [aux_sym_derived_type_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4345), + [aux_sym_type_qualifier_token1] = ACTIONS(4345), + [aux_sym_type_qualifier_token2] = ACTIONS(4345), + [aux_sym_equivalence_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token3] = ACTIONS(4345), + [aux_sym_include_statement_token1] = ACTIONS(4345), + [aux_sym_data_statement_token1] = ACTIONS(4345), + [aux_sym__inline_if_statement_token1] = ACTIONS(4345), + [aux_sym_end_if_statement_token1] = ACTIONS(4345), + [aux_sym_elseif_clause_token2] = ACTIONS(4345), + [aux_sym_select_case_statement_token1] = ACTIONS(4345), + [aux_sym_block_construct_token1] = ACTIONS(4345), + [aux_sym_format_statement_token1] = ACTIONS(4345), + [aux_sym_inquire_statement_token1] = ACTIONS(4345), + [aux_sym_enum_statement_token1] = ACTIONS(4345), + [aux_sym_entry_statement_token1] = ACTIONS(4345), + [aux_sym_null_literal_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token2] = ACTIONS(4345), + [aux_sym_coarray_statement_token6] = ACTIONS(4345), + [aux_sym_coarray_statement_token8] = ACTIONS(4345), + [aux_sym_coarray_statement_token11] = ACTIONS(4345), + [aux_sym_coarray_statement_token12] = ACTIONS(4345), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4345), + [aux_sym_identifier_token1] = ACTIONS(4345), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4347), }, - [2762] = { - [aux_sym_preproc_include_token1] = ACTIONS(4976), - [aux_sym_preproc_def_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token2] = ACTIONS(4976), - [aux_sym_preproc_else_token1] = ACTIONS(4976), - [aux_sym_preproc_elif_token1] = ACTIONS(4976), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4976), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4976), - [sym_preproc_directive] = ACTIONS(4976), + [2693] = { + [sym_case_value_range_list] = STATE(8343), + [sym__expression] = STATE(4304), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_extent_specifier] = STATE(6250), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4976), - [aux_sym_interface_statement_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), - [aux_sym_language_binding_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token3] = ACTIONS(4976), - [aux_sym_contains_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token2] = ACTIONS(4976), - [aux_sym_implicit_statement_token1] = ACTIONS(4976), - [aux_sym_implicit_statement_token3] = ACTIONS(4976), - [aux_sym_implicit_statement_token4] = ACTIONS(4976), - [aux_sym_save_statement_token1] = ACTIONS(4976), - [aux_sym_private_statement_token1] = ACTIONS(4976), - [aux_sym_public_statement_token1] = ACTIONS(4976), - [aux_sym_namelist_statement_token1] = ACTIONS(4976), - [aux_sym_common_statement_token1] = ACTIONS(4976), - [aux_sym_import_statement_token1] = ACTIONS(4976), - [aux_sym_derived_type_definition_token1] = ACTIONS(4976), - [aux_sym_abstract_specifier_token1] = ACTIONS(4976), - [aux_sym_procedure_attribute_token6] = ACTIONS(4976), - [aux_sym_variable_attributes_token1] = ACTIONS(4976), - [aux_sym_variable_attributes_token2] = ACTIONS(4976), - [aux_sym_variable_attributes_token3] = ACTIONS(4976), - [aux_sym_variable_attributes_token4] = ACTIONS(4976), - [aux_sym_variable_attributes_token5] = ACTIONS(4976), - [aux_sym__intrinsic_type_token1] = ACTIONS(4976), - [aux_sym__intrinsic_type_token2] = ACTIONS(4976), - [aux_sym__intrinsic_type_token3] = ACTIONS(4976), - [aux_sym__intrinsic_type_token4] = ACTIONS(4976), - [aux_sym__intrinsic_type_token6] = ACTIONS(4976), - [aux_sym__intrinsic_type_token7] = ACTIONS(4976), - [aux_sym__intrinsic_type_token8] = ACTIONS(4976), - [aux_sym__intrinsic_type_token9] = ACTIONS(4976), - [aux_sym__intrinsic_type_token10] = ACTIONS(4976), - [aux_sym_derived_type_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), - [aux_sym_type_qualifier_token1] = ACTIONS(4976), - [aux_sym_type_qualifier_token2] = ACTIONS(4976), - [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token3] = ACTIONS(4976), - [aux_sym_include_statement_token1] = ACTIONS(4976), - [aux_sym_data_statement_token1] = ACTIONS(4976), - [aux_sym__inline_if_statement_token1] = ACTIONS(4976), - [aux_sym_end_if_statement_token1] = ACTIONS(4976), - [aux_sym_elseif_clause_token2] = ACTIONS(4976), - [aux_sym_select_case_statement_token1] = ACTIONS(4976), - [aux_sym_block_construct_token1] = ACTIONS(4976), - [aux_sym_format_statement_token1] = ACTIONS(4976), - [aux_sym_inquire_statement_token1] = ACTIONS(4976), - [aux_sym_enum_statement_token1] = ACTIONS(4976), - [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_null_literal_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token2] = ACTIONS(4976), - [aux_sym_coarray_statement_token6] = ACTIONS(4976), - [aux_sym_coarray_statement_token8] = ACTIONS(4976), - [aux_sym_coarray_statement_token11] = ACTIONS(4976), - [aux_sym_coarray_statement_token12] = ACTIONS(4976), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), - [aux_sym_identifier_token1] = ACTIONS(4976), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6616), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2763] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token2] = ACTIONS(4487), - [aux_sym_preproc_else_token1] = ACTIONS(4487), - [aux_sym_preproc_elif_token1] = ACTIONS(4487), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), + [2694] = { + [sym__expression] = STATE(4300), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(6397), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6714), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6666), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2764] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token2] = ACTIONS(5041), - [aux_sym_preproc_else_token1] = ACTIONS(5041), - [aux_sym_preproc_elif_token1] = ACTIONS(5041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), + [2695] = { + [sym_output_item_list] = STATE(7354), + [sym__expression] = STATE(4307), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6716), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6716), }, - [2765] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token2] = ACTIONS(5045), - [aux_sym_preproc_else_token1] = ACTIONS(5045), - [aux_sym_preproc_elif_token1] = ACTIONS(5045), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), + [2696] = { + [aux_sym_preproc_include_token1] = ACTIONS(4349), + [aux_sym_preproc_def_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token2] = ACTIONS(4349), + [aux_sym_preproc_else_token1] = ACTIONS(4349), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4349), + [sym_preproc_directive] = ACTIONS(4349), + [sym_preproc_comment] = ACTIONS(4351), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4349), + [aux_sym_interface_statement_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4349), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4349), + [aux_sym_language_binding_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token3] = ACTIONS(4349), + [aux_sym_contains_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token2] = ACTIONS(4349), + [aux_sym_implicit_statement_token1] = ACTIONS(4349), + [aux_sym_implicit_statement_token3] = ACTIONS(4349), + [aux_sym_implicit_statement_token4] = ACTIONS(4349), + [aux_sym_save_statement_token1] = ACTIONS(4349), + [aux_sym_private_statement_token1] = ACTIONS(4349), + [aux_sym_public_statement_token1] = ACTIONS(4349), + [aux_sym_namelist_statement_token1] = ACTIONS(4349), + [aux_sym_common_statement_token1] = ACTIONS(4349), + [aux_sym_import_statement_token1] = ACTIONS(4349), + [aux_sym_derived_type_definition_token1] = ACTIONS(4349), + [aux_sym_abstract_specifier_token1] = ACTIONS(4349), + [aux_sym_procedure_attribute_token6] = ACTIONS(4349), + [aux_sym_variable_attributes_token1] = ACTIONS(4349), + [aux_sym_variable_attributes_token2] = ACTIONS(4349), + [aux_sym_variable_attributes_token3] = ACTIONS(4349), + [aux_sym_variable_attributes_token4] = ACTIONS(4349), + [aux_sym_variable_attributes_token5] = ACTIONS(4349), + [aux_sym__intrinsic_type_token1] = ACTIONS(4349), + [aux_sym__intrinsic_type_token2] = ACTIONS(4349), + [aux_sym__intrinsic_type_token3] = ACTIONS(4349), + [aux_sym__intrinsic_type_token4] = ACTIONS(4349), + [aux_sym__intrinsic_type_token6] = ACTIONS(4349), + [aux_sym__intrinsic_type_token7] = ACTIONS(4349), + [aux_sym__intrinsic_type_token8] = ACTIONS(4349), + [aux_sym__intrinsic_type_token9] = ACTIONS(4349), + [aux_sym__intrinsic_type_token10] = ACTIONS(4349), + [aux_sym_derived_type_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4349), + [aux_sym_type_qualifier_token1] = ACTIONS(4349), + [aux_sym_type_qualifier_token2] = ACTIONS(4349), + [aux_sym_equivalence_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token3] = ACTIONS(4349), + [aux_sym_include_statement_token1] = ACTIONS(4349), + [aux_sym_data_statement_token1] = ACTIONS(4349), + [aux_sym__inline_if_statement_token1] = ACTIONS(4349), + [aux_sym_end_if_statement_token1] = ACTIONS(4349), + [aux_sym_elseif_clause_token2] = ACTIONS(4349), + [aux_sym_select_case_statement_token1] = ACTIONS(4349), + [aux_sym_block_construct_token1] = ACTIONS(4349), + [aux_sym_format_statement_token1] = ACTIONS(4349), + [aux_sym_inquire_statement_token1] = ACTIONS(4349), + [aux_sym_enum_statement_token1] = ACTIONS(4349), + [aux_sym_entry_statement_token1] = ACTIONS(4349), + [aux_sym_null_literal_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token2] = ACTIONS(4349), + [aux_sym_coarray_statement_token6] = ACTIONS(4349), + [aux_sym_coarray_statement_token8] = ACTIONS(4349), + [aux_sym_coarray_statement_token11] = ACTIONS(4349), + [aux_sym_coarray_statement_token12] = ACTIONS(4349), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4349), + [aux_sym_identifier_token1] = ACTIONS(4349), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4351), }, - [2766] = { - [aux_sym_preproc_include_token1] = ACTIONS(4990), - [aux_sym_preproc_def_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token2] = ACTIONS(4990), - [aux_sym_preproc_else_token1] = ACTIONS(4990), - [aux_sym_preproc_elif_token1] = ACTIONS(4990), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4990), - [sym_preproc_directive] = ACTIONS(4990), + [2697] = { + [sym__expression] = STATE(4294), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym__coarray_extent_specifier] = STATE(6694), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6718), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4990), - [aux_sym_interface_statement_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_language_binding_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token3] = ACTIONS(4990), - [aux_sym_contains_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token2] = ACTIONS(4990), - [aux_sym_implicit_statement_token1] = ACTIONS(4990), - [aux_sym_implicit_statement_token3] = ACTIONS(4990), - [aux_sym_implicit_statement_token4] = ACTIONS(4990), - [aux_sym_save_statement_token1] = ACTIONS(4990), - [aux_sym_private_statement_token1] = ACTIONS(4990), - [aux_sym_public_statement_token1] = ACTIONS(4990), - [aux_sym_namelist_statement_token1] = ACTIONS(4990), - [aux_sym_common_statement_token1] = ACTIONS(4990), - [aux_sym_import_statement_token1] = ACTIONS(4990), - [aux_sym_derived_type_definition_token1] = ACTIONS(4990), - [aux_sym_abstract_specifier_token1] = ACTIONS(4990), - [aux_sym_procedure_attribute_token6] = ACTIONS(4990), - [aux_sym_variable_attributes_token1] = ACTIONS(4990), - [aux_sym_variable_attributes_token2] = ACTIONS(4990), - [aux_sym_variable_attributes_token3] = ACTIONS(4990), - [aux_sym_variable_attributes_token4] = ACTIONS(4990), - [aux_sym_variable_attributes_token5] = ACTIONS(4990), - [aux_sym__intrinsic_type_token1] = ACTIONS(4990), - [aux_sym__intrinsic_type_token2] = ACTIONS(4990), - [aux_sym__intrinsic_type_token3] = ACTIONS(4990), - [aux_sym__intrinsic_type_token4] = ACTIONS(4990), - [aux_sym__intrinsic_type_token6] = ACTIONS(4990), - [aux_sym__intrinsic_type_token7] = ACTIONS(4990), - [aux_sym__intrinsic_type_token8] = ACTIONS(4990), - [aux_sym__intrinsic_type_token9] = ACTIONS(4990), - [aux_sym__intrinsic_type_token10] = ACTIONS(4990), - [aux_sym_derived_type_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), - [aux_sym_type_qualifier_token1] = ACTIONS(4990), - [aux_sym_type_qualifier_token2] = ACTIONS(4990), - [aux_sym_equivalence_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token3] = ACTIONS(4990), - [aux_sym_include_statement_token1] = ACTIONS(4990), - [aux_sym_data_statement_token1] = ACTIONS(4990), - [aux_sym__inline_if_statement_token1] = ACTIONS(4990), - [aux_sym_end_if_statement_token1] = ACTIONS(4990), - [aux_sym_elseif_clause_token2] = ACTIONS(4990), - [aux_sym_select_case_statement_token1] = ACTIONS(4990), - [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_format_statement_token1] = ACTIONS(4990), - [aux_sym_inquire_statement_token1] = ACTIONS(4990), - [aux_sym_enum_statement_token1] = ACTIONS(4990), - [aux_sym_entry_statement_token1] = ACTIONS(4990), - [aux_sym_null_literal_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token2] = ACTIONS(4990), - [aux_sym_coarray_statement_token6] = ACTIONS(4990), - [aux_sym_coarray_statement_token8] = ACTIONS(4990), - [aux_sym_coarray_statement_token11] = ACTIONS(4990), - [aux_sym_coarray_statement_token12] = ACTIONS(4990), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), - [aux_sym_identifier_token1] = ACTIONS(4990), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6666), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2698] = { + [sym_case_value_range_list] = STATE(8375), + [sym__expression] = STATE(4304), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_extent_specifier] = STATE(6250), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6616), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2699] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token2] = ACTIONS(4255), + [aux_sym_preproc_else_token1] = ACTIONS(4255), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4257), + }, + [2700] = { + [sym_case_value_range_list] = STATE(8411), + [sym__expression] = STATE(4304), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_extent_specifier] = STATE(6250), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6616), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2701] = { + [sym_case_value_range_list] = STATE(7995), + [sym__expression] = STATE(4304), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_extent_specifier] = STATE(6250), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6616), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4992), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2767] = { - [aux_sym_preproc_include_token1] = ACTIONS(6720), - [aux_sym_preproc_def_token1] = ACTIONS(6720), - [aux_sym_preproc_if_token1] = ACTIONS(6720), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6720), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6720), - [sym_preproc_directive] = ACTIONS(6720), - [sym_preproc_comment] = ACTIONS(6854), + [2702] = { + [sym__expression] = STATE(4330), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_extent_specifier] = STATE(7264), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [anon_sym_COLON] = ACTIONS(6616), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2703] = { + [anon_sym_LPAREN2] = ACTIONS(6720), + [anon_sym_PLUS] = ACTIONS(6722), + [anon_sym_DASH] = ACTIONS(6722), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(6720), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6720), - [aux_sym_interface_statement_token1] = ACTIONS(6720), [aux_sym_defined_io_procedure_token1] = ACTIONS(6720), [aux_sym_defined_io_procedure_token2] = ACTIONS(6720), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6720), - [aux_sym_language_binding_token1] = ACTIONS(6720), - [aux_sym_procedure_attributes_token1] = ACTIONS(6720), [aux_sym_procedure_attributes_token3] = ACTIONS(6720), - [aux_sym_contains_statement_token1] = ACTIONS(6720), - [aux_sym_use_statement_token1] = ACTIONS(6720), [aux_sym_use_statement_token2] = ACTIONS(6720), - [aux_sym_implicit_statement_token1] = ACTIONS(6720), - [aux_sym_implicit_statement_token3] = ACTIONS(6720), [aux_sym_implicit_statement_token4] = ACTIONS(6720), [aux_sym_save_statement_token1] = ACTIONS(6720), [aux_sym_private_statement_token1] = ACTIONS(6720), [aux_sym_public_statement_token1] = ACTIONS(6720), - [aux_sym_namelist_statement_token1] = ACTIONS(6720), - [aux_sym_common_statement_token1] = ACTIONS(6720), - [aux_sym_import_statement_token1] = ACTIONS(6720), [aux_sym_derived_type_definition_token1] = ACTIONS(6720), - [aux_sym_abstract_specifier_token1] = ACTIONS(6720), [aux_sym_procedure_attribute_token6] = ACTIONS(6720), - [aux_sym_variable_attributes_token1] = ACTIONS(6720), [aux_sym_variable_attributes_token2] = ACTIONS(6720), [aux_sym_variable_attributes_token3] = ACTIONS(6720), - [aux_sym_variable_attributes_token4] = ACTIONS(6720), [aux_sym_variable_attributes_token5] = ACTIONS(6720), [aux_sym__intrinsic_type_token1] = ACTIONS(6720), - [aux_sym__intrinsic_type_token2] = ACTIONS(6720), [aux_sym__intrinsic_type_token3] = ACTIONS(6720), [aux_sym__intrinsic_type_token4] = ACTIONS(6720), - [aux_sym__intrinsic_type_token6] = ACTIONS(6720), - [aux_sym__intrinsic_type_token7] = ACTIONS(6720), - [aux_sym__intrinsic_type_token8] = ACTIONS(6720), - [aux_sym__intrinsic_type_token9] = ACTIONS(6720), - [aux_sym__intrinsic_type_token10] = ACTIONS(6720), - [aux_sym_derived_type_token1] = ACTIONS(6720), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6720), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6720), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6720), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6720), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6720), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6720), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6720), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6720), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6720), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6720), [aux_sym_type_qualifier_token1] = ACTIONS(6720), [aux_sym_type_qualifier_token2] = ACTIONS(6720), - [aux_sym_equivalence_statement_token1] = ACTIONS(6720), + [anon_sym_SEMI] = ACTIONS(6722), [aux_sym_stop_statement_token1] = ACTIONS(6720), [aux_sym_stop_statement_token2] = ACTIONS(6720), + [aux_sym_subroutine_call_token1] = ACTIONS(6720), + [aux_sym_keyword_statement_token1] = ACTIONS(6720), [aux_sym_keyword_statement_token2] = ACTIONS(6720), [aux_sym_keyword_statement_token3] = ACTIONS(6720), + [aux_sym_keyword_statement_token4] = ACTIONS(6720), + [aux_sym_keyword_statement_token6] = ACTIONS(6720), + [aux_sym_keyword_statement_token7] = ACTIONS(6720), [aux_sym_include_statement_token1] = ACTIONS(6720), [aux_sym_data_statement_token1] = ACTIONS(6720), + [aux_sym_do_loop_statement_token1] = ACTIONS(6720), [aux_sym__inline_if_statement_token1] = ACTIONS(6720), [aux_sym_end_if_statement_token1] = ACTIONS(6720), [aux_sym_elseif_clause_token2] = ACTIONS(6720), + [aux_sym__inline_where_statement_token1] = ACTIONS(6720), + [aux_sym__forall_control_expression_token1] = ACTIONS(6720), [aux_sym_select_case_statement_token1] = ACTIONS(6720), + [aux_sym_select_case_statement_token3] = ACTIONS(6720), + [aux_sym_select_type_statement_token1] = ACTIONS(6720), + [aux_sym_select_rank_statement_token2] = ACTIONS(6720), [aux_sym_block_construct_token1] = ACTIONS(6720), + [aux_sym_associate_statement_token1] = ACTIONS(6720), [aux_sym_format_statement_token1] = ACTIONS(6720), + [aux_sym_print_statement_token1] = ACTIONS(6720), + [aux_sym_open_statement_token1] = ACTIONS(6720), + [aux_sym_close_statement_token1] = ACTIONS(6720), [aux_sym_inquire_statement_token1] = ACTIONS(6720), - [aux_sym_enum_statement_token1] = ACTIONS(6720), + [aux_sym_file_position_statement_token1] = ACTIONS(6720), + [aux_sym_file_position_statement_token2] = ACTIONS(6720), + [aux_sym_file_position_statement_token3] = ACTIONS(6720), + [aux_sym_file_position_statement_token4] = ACTIONS(6720), + [aux_sym_allocate_statement_token1] = ACTIONS(6720), [aux_sym_entry_statement_token1] = ACTIONS(6720), + [aux_sym_logical_expression_token5] = ACTIONS(6722), + [anon_sym_DOT] = ACTIONS(6720), + [anon_sym_LPAREN_SLASH] = ACTIONS(6722), + [anon_sym_LBRACK] = ACTIONS(6722), + [aux_sym_boolean_literal_token1] = ACTIONS(6722), + [aux_sym_boolean_literal_token2] = ACTIONS(6722), [aux_sym_null_literal_token1] = ACTIONS(6720), [aux_sym_coarray_statement_token1] = ACTIONS(6720), [aux_sym_coarray_statement_token2] = ACTIONS(6720), @@ -418793,295 +412900,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(6720), [aux_sym_identifier_token1] = ACTIONS(6720), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6724), + [sym__integer_literal] = ACTIONS(6722), + [sym__float_literal] = ACTIONS(6722), + [sym__boz_literal] = ACTIONS(6722), + [sym__string_literal] = ACTIONS(6722), + [sym__string_literal_kind] = ACTIONS(6722), + [sym__external_end_of_statement] = ACTIONS(6722), }, - [2768] = { - [aux_sym_preproc_include_token1] = ACTIONS(6726), - [aux_sym_preproc_def_token1] = ACTIONS(6726), - [aux_sym_preproc_if_token1] = ACTIONS(6726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6726), - [sym_preproc_directive] = ACTIONS(6726), - [sym_preproc_comment] = ACTIONS(6856), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6726), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6726), - [aux_sym_interface_statement_token1] = ACTIONS(6726), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6726), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6726), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6726), - [aux_sym_language_binding_token1] = ACTIONS(6726), - [aux_sym_procedure_attributes_token1] = ACTIONS(6726), - [aux_sym_procedure_attributes_token3] = ACTIONS(6726), - [aux_sym_contains_statement_token1] = ACTIONS(6726), - [aux_sym_use_statement_token1] = ACTIONS(6726), - [aux_sym_use_statement_token2] = ACTIONS(6726), - [aux_sym_implicit_statement_token1] = ACTIONS(6726), - [aux_sym_implicit_statement_token3] = ACTIONS(6726), - [aux_sym_implicit_statement_token4] = ACTIONS(6726), - [aux_sym_save_statement_token1] = ACTIONS(6726), - [aux_sym_private_statement_token1] = ACTIONS(6726), - [aux_sym_public_statement_token1] = ACTIONS(6726), - [aux_sym_namelist_statement_token1] = ACTIONS(6726), - [aux_sym_common_statement_token1] = ACTIONS(6726), - [aux_sym_import_statement_token1] = ACTIONS(6726), - [aux_sym_derived_type_definition_token1] = ACTIONS(6726), - [aux_sym_abstract_specifier_token1] = ACTIONS(6726), - [aux_sym_procedure_attribute_token6] = ACTIONS(6726), - [aux_sym_variable_attributes_token1] = ACTIONS(6726), - [aux_sym_variable_attributes_token2] = ACTIONS(6726), - [aux_sym_variable_attributes_token3] = ACTIONS(6726), - [aux_sym_variable_attributes_token4] = ACTIONS(6726), - [aux_sym_variable_attributes_token5] = ACTIONS(6726), - [aux_sym__intrinsic_type_token1] = ACTIONS(6726), - [aux_sym__intrinsic_type_token2] = ACTIONS(6726), - [aux_sym__intrinsic_type_token3] = ACTIONS(6726), - [aux_sym__intrinsic_type_token4] = ACTIONS(6726), - [aux_sym__intrinsic_type_token6] = ACTIONS(6726), - [aux_sym__intrinsic_type_token7] = ACTIONS(6726), - [aux_sym__intrinsic_type_token8] = ACTIONS(6726), - [aux_sym__intrinsic_type_token9] = ACTIONS(6726), - [aux_sym__intrinsic_type_token10] = ACTIONS(6726), - [aux_sym_derived_type_token1] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6726), - [aux_sym_type_qualifier_token1] = ACTIONS(6726), - [aux_sym_type_qualifier_token2] = ACTIONS(6726), - [aux_sym_equivalence_statement_token1] = ACTIONS(6726), - [aux_sym_stop_statement_token1] = ACTIONS(6726), - [aux_sym_stop_statement_token2] = ACTIONS(6726), - [aux_sym_keyword_statement_token2] = ACTIONS(6726), - [aux_sym_keyword_statement_token3] = ACTIONS(6726), - [aux_sym_include_statement_token1] = ACTIONS(6726), - [aux_sym_data_statement_token1] = ACTIONS(6726), - [aux_sym__inline_if_statement_token1] = ACTIONS(6726), - [aux_sym_end_if_statement_token1] = ACTIONS(6726), - [aux_sym_elseif_clause_token2] = ACTIONS(6726), - [aux_sym_select_case_statement_token1] = ACTIONS(6726), - [aux_sym_block_construct_token1] = ACTIONS(6726), - [aux_sym_format_statement_token1] = ACTIONS(6726), - [aux_sym_inquire_statement_token1] = ACTIONS(6726), - [aux_sym_enum_statement_token1] = ACTIONS(6726), - [aux_sym_entry_statement_token1] = ACTIONS(6726), - [aux_sym_null_literal_token1] = ACTIONS(6726), - [aux_sym_coarray_statement_token1] = ACTIONS(6726), - [aux_sym_coarray_statement_token2] = ACTIONS(6726), - [aux_sym_coarray_statement_token6] = ACTIONS(6726), - [aux_sym_coarray_statement_token8] = ACTIONS(6726), - [aux_sym_coarray_statement_token11] = ACTIONS(6726), - [aux_sym_coarray_statement_token12] = ACTIONS(6726), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6726), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6726), - [aux_sym_identifier_token1] = ACTIONS(6726), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6730), + [2704] = { + [aux_sym_preproc_include_token1] = ACTIONS(6724), + [aux_sym_preproc_def_token1] = ACTIONS(6724), + [aux_sym_preproc_if_token1] = ACTIONS(6724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6724), + [sym_preproc_directive] = ACTIONS(6724), + [sym_preproc_comment] = ACTIONS(6726), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6724), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6724), + [aux_sym_interface_statement_token1] = ACTIONS(6724), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6724), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6724), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6724), + [aux_sym_language_binding_token1] = ACTIONS(6724), + [aux_sym_procedure_attributes_token1] = ACTIONS(6724), + [aux_sym_procedure_attributes_token3] = ACTIONS(6724), + [aux_sym_contains_statement_token1] = ACTIONS(6724), + [aux_sym_use_statement_token1] = ACTIONS(6724), + [aux_sym_use_statement_token2] = ACTIONS(6724), + [aux_sym_implicit_statement_token1] = ACTIONS(6724), + [aux_sym_implicit_statement_token3] = ACTIONS(6724), + [aux_sym_implicit_statement_token4] = ACTIONS(6724), + [aux_sym_save_statement_token1] = ACTIONS(6724), + [aux_sym_private_statement_token1] = ACTIONS(6724), + [aux_sym_public_statement_token1] = ACTIONS(6724), + [aux_sym_namelist_statement_token1] = ACTIONS(6724), + [aux_sym_common_statement_token1] = ACTIONS(6724), + [aux_sym_import_statement_token1] = ACTIONS(6724), + [aux_sym_derived_type_definition_token1] = ACTIONS(6724), + [aux_sym_abstract_specifier_token1] = ACTIONS(6724), + [aux_sym_procedure_attribute_token6] = ACTIONS(6724), + [aux_sym_variable_attributes_token1] = ACTIONS(6724), + [aux_sym_variable_attributes_token2] = ACTIONS(6724), + [aux_sym_variable_attributes_token3] = ACTIONS(6724), + [aux_sym_variable_attributes_token4] = ACTIONS(6724), + [aux_sym_variable_attributes_token5] = ACTIONS(6724), + [aux_sym__intrinsic_type_token1] = ACTIONS(6724), + [aux_sym__intrinsic_type_token2] = ACTIONS(6724), + [aux_sym__intrinsic_type_token3] = ACTIONS(6724), + [aux_sym__intrinsic_type_token4] = ACTIONS(6724), + [aux_sym__intrinsic_type_token6] = ACTIONS(6724), + [aux_sym__intrinsic_type_token7] = ACTIONS(6724), + [aux_sym__intrinsic_type_token8] = ACTIONS(6724), + [aux_sym__intrinsic_type_token9] = ACTIONS(6724), + [aux_sym__intrinsic_type_token10] = ACTIONS(6724), + [aux_sym_derived_type_token1] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6724), + [aux_sym_type_qualifier_token1] = ACTIONS(6724), + [aux_sym_type_qualifier_token2] = ACTIONS(6724), + [aux_sym_equivalence_statement_token1] = ACTIONS(6724), + [aux_sym_stop_statement_token1] = ACTIONS(6724), + [aux_sym_stop_statement_token2] = ACTIONS(6724), + [aux_sym_keyword_statement_token2] = ACTIONS(6724), + [aux_sym_keyword_statement_token3] = ACTIONS(6724), + [aux_sym_include_statement_token1] = ACTIONS(6724), + [aux_sym_data_statement_token1] = ACTIONS(6724), + [aux_sym__inline_if_statement_token1] = ACTIONS(6724), + [aux_sym_end_if_statement_token1] = ACTIONS(6724), + [aux_sym_elseif_clause_token2] = ACTIONS(6724), + [aux_sym_select_case_statement_token1] = ACTIONS(6724), + [aux_sym_block_construct_token1] = ACTIONS(6724), + [aux_sym_format_statement_token1] = ACTIONS(6724), + [aux_sym_inquire_statement_token1] = ACTIONS(6724), + [aux_sym_enum_statement_token1] = ACTIONS(6724), + [aux_sym_entry_statement_token1] = ACTIONS(6724), + [aux_sym_null_literal_token1] = ACTIONS(6724), + [aux_sym_coarray_statement_token1] = ACTIONS(6724), + [aux_sym_coarray_statement_token2] = ACTIONS(6724), + [aux_sym_coarray_statement_token6] = ACTIONS(6724), + [aux_sym_coarray_statement_token8] = ACTIONS(6724), + [aux_sym_coarray_statement_token11] = ACTIONS(6724), + [aux_sym_coarray_statement_token12] = ACTIONS(6724), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6724), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6724), + [aux_sym_identifier_token1] = ACTIONS(6724), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6728), }, - [2769] = { - [aux_sym_preproc_include_token1] = ACTIONS(6732), - [aux_sym_preproc_def_token1] = ACTIONS(6732), - [aux_sym_preproc_if_token1] = ACTIONS(6732), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6732), - [sym_preproc_directive] = ACTIONS(6732), - [sym_preproc_comment] = ACTIONS(6858), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6732), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6732), - [aux_sym_interface_statement_token1] = ACTIONS(6732), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6732), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6732), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6732), - [aux_sym_language_binding_token1] = ACTIONS(6732), - [aux_sym_procedure_attributes_token1] = ACTIONS(6732), - [aux_sym_procedure_attributes_token3] = ACTIONS(6732), - [aux_sym_contains_statement_token1] = ACTIONS(6732), - [aux_sym_use_statement_token1] = ACTIONS(6732), - [aux_sym_use_statement_token2] = ACTIONS(6732), - [aux_sym_implicit_statement_token1] = ACTIONS(6732), - [aux_sym_implicit_statement_token3] = ACTIONS(6732), - [aux_sym_implicit_statement_token4] = ACTIONS(6732), - [aux_sym_save_statement_token1] = ACTIONS(6732), - [aux_sym_private_statement_token1] = ACTIONS(6732), - [aux_sym_public_statement_token1] = ACTIONS(6732), - [aux_sym_namelist_statement_token1] = ACTIONS(6732), - [aux_sym_common_statement_token1] = ACTIONS(6732), - [aux_sym_import_statement_token1] = ACTIONS(6732), - [aux_sym_derived_type_definition_token1] = ACTIONS(6732), - [aux_sym_abstract_specifier_token1] = ACTIONS(6732), - [aux_sym_procedure_attribute_token6] = ACTIONS(6732), - [aux_sym_variable_attributes_token1] = ACTIONS(6732), - [aux_sym_variable_attributes_token2] = ACTIONS(6732), - [aux_sym_variable_attributes_token3] = ACTIONS(6732), - [aux_sym_variable_attributes_token4] = ACTIONS(6732), - [aux_sym_variable_attributes_token5] = ACTIONS(6732), - [aux_sym__intrinsic_type_token1] = ACTIONS(6732), - [aux_sym__intrinsic_type_token2] = ACTIONS(6732), - [aux_sym__intrinsic_type_token3] = ACTIONS(6732), - [aux_sym__intrinsic_type_token4] = ACTIONS(6732), - [aux_sym__intrinsic_type_token6] = ACTIONS(6732), - [aux_sym__intrinsic_type_token7] = ACTIONS(6732), - [aux_sym__intrinsic_type_token8] = ACTIONS(6732), - [aux_sym__intrinsic_type_token9] = ACTIONS(6732), - [aux_sym__intrinsic_type_token10] = ACTIONS(6732), - [aux_sym_derived_type_token1] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6732), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6732), - [aux_sym_type_qualifier_token1] = ACTIONS(6732), - [aux_sym_type_qualifier_token2] = ACTIONS(6732), - [aux_sym_equivalence_statement_token1] = ACTIONS(6732), - [aux_sym_stop_statement_token1] = ACTIONS(6732), - [aux_sym_stop_statement_token2] = ACTIONS(6732), - [aux_sym_keyword_statement_token2] = ACTIONS(6732), - [aux_sym_keyword_statement_token3] = ACTIONS(6732), - [aux_sym_include_statement_token1] = ACTIONS(6732), - [aux_sym_data_statement_token1] = ACTIONS(6732), - [aux_sym__inline_if_statement_token1] = ACTIONS(6732), - [aux_sym_end_if_statement_token1] = ACTIONS(6732), - [aux_sym_elseif_clause_token2] = ACTIONS(6732), - [aux_sym_select_case_statement_token1] = ACTIONS(6732), - [aux_sym_block_construct_token1] = ACTIONS(6732), - [aux_sym_format_statement_token1] = ACTIONS(6732), - [aux_sym_inquire_statement_token1] = ACTIONS(6732), - [aux_sym_enum_statement_token1] = ACTIONS(6732), - [aux_sym_entry_statement_token1] = ACTIONS(6732), - [aux_sym_null_literal_token1] = ACTIONS(6732), - [aux_sym_coarray_statement_token1] = ACTIONS(6732), - [aux_sym_coarray_statement_token2] = ACTIONS(6732), - [aux_sym_coarray_statement_token6] = ACTIONS(6732), - [aux_sym_coarray_statement_token8] = ACTIONS(6732), - [aux_sym_coarray_statement_token11] = ACTIONS(6732), - [aux_sym_coarray_statement_token12] = ACTIONS(6732), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6732), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6732), - [aux_sym_identifier_token1] = ACTIONS(6732), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6736), + [2705] = { + [aux_sym_preproc_include_token1] = ACTIONS(6730), + [aux_sym_preproc_def_token1] = ACTIONS(6730), + [aux_sym_preproc_if_token1] = ACTIONS(6730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6730), + [sym_preproc_directive] = ACTIONS(6730), + [sym_preproc_comment] = ACTIONS(6732), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6730), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6730), + [aux_sym_interface_statement_token1] = ACTIONS(6730), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6730), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6730), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6730), + [aux_sym_language_binding_token1] = ACTIONS(6730), + [aux_sym_procedure_attributes_token1] = ACTIONS(6730), + [aux_sym_procedure_attributes_token3] = ACTIONS(6730), + [aux_sym_contains_statement_token1] = ACTIONS(6730), + [aux_sym_use_statement_token1] = ACTIONS(6730), + [aux_sym_use_statement_token2] = ACTIONS(6730), + [aux_sym_implicit_statement_token1] = ACTIONS(6730), + [aux_sym_implicit_statement_token3] = ACTIONS(6730), + [aux_sym_implicit_statement_token4] = ACTIONS(6730), + [aux_sym_save_statement_token1] = ACTIONS(6730), + [aux_sym_private_statement_token1] = ACTIONS(6730), + [aux_sym_public_statement_token1] = ACTIONS(6730), + [aux_sym_namelist_statement_token1] = ACTIONS(6730), + [aux_sym_common_statement_token1] = ACTIONS(6730), + [aux_sym_import_statement_token1] = ACTIONS(6730), + [aux_sym_derived_type_definition_token1] = ACTIONS(6730), + [aux_sym_abstract_specifier_token1] = ACTIONS(6730), + [aux_sym_procedure_attribute_token6] = ACTIONS(6730), + [aux_sym_variable_attributes_token1] = ACTIONS(6730), + [aux_sym_variable_attributes_token2] = ACTIONS(6730), + [aux_sym_variable_attributes_token3] = ACTIONS(6730), + [aux_sym_variable_attributes_token4] = ACTIONS(6730), + [aux_sym_variable_attributes_token5] = ACTIONS(6730), + [aux_sym__intrinsic_type_token1] = ACTIONS(6730), + [aux_sym__intrinsic_type_token2] = ACTIONS(6730), + [aux_sym__intrinsic_type_token3] = ACTIONS(6730), + [aux_sym__intrinsic_type_token4] = ACTIONS(6730), + [aux_sym__intrinsic_type_token6] = ACTIONS(6730), + [aux_sym__intrinsic_type_token7] = ACTIONS(6730), + [aux_sym__intrinsic_type_token8] = ACTIONS(6730), + [aux_sym__intrinsic_type_token9] = ACTIONS(6730), + [aux_sym__intrinsic_type_token10] = ACTIONS(6730), + [aux_sym_derived_type_token1] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6730), + [aux_sym_type_qualifier_token1] = ACTIONS(6730), + [aux_sym_type_qualifier_token2] = ACTIONS(6730), + [aux_sym_equivalence_statement_token1] = ACTIONS(6730), + [aux_sym_stop_statement_token1] = ACTIONS(6730), + [aux_sym_stop_statement_token2] = ACTIONS(6730), + [aux_sym_keyword_statement_token2] = ACTIONS(6730), + [aux_sym_keyword_statement_token3] = ACTIONS(6730), + [aux_sym_include_statement_token1] = ACTIONS(6730), + [aux_sym_data_statement_token1] = ACTIONS(6730), + [aux_sym__inline_if_statement_token1] = ACTIONS(6730), + [aux_sym_end_if_statement_token1] = ACTIONS(6730), + [aux_sym_elseif_clause_token2] = ACTIONS(6730), + [aux_sym_select_case_statement_token1] = ACTIONS(6730), + [aux_sym_block_construct_token1] = ACTIONS(6730), + [aux_sym_format_statement_token1] = ACTIONS(6730), + [aux_sym_inquire_statement_token1] = ACTIONS(6730), + [aux_sym_enum_statement_token1] = ACTIONS(6730), + [aux_sym_entry_statement_token1] = ACTIONS(6730), + [aux_sym_null_literal_token1] = ACTIONS(6730), + [aux_sym_coarray_statement_token1] = ACTIONS(6730), + [aux_sym_coarray_statement_token2] = ACTIONS(6730), + [aux_sym_coarray_statement_token6] = ACTIONS(6730), + [aux_sym_coarray_statement_token8] = ACTIONS(6730), + [aux_sym_coarray_statement_token11] = ACTIONS(6730), + [aux_sym_coarray_statement_token12] = ACTIONS(6730), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6730), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6730), + [aux_sym_identifier_token1] = ACTIONS(6730), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6734), }, - [2770] = { - [anon_sym_LPAREN2] = ACTIONS(6860), - [anon_sym_PLUS] = ACTIONS(6862), - [anon_sym_DASH] = ACTIONS(6862), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6860), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6860), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6860), - [aux_sym_procedure_attributes_token3] = ACTIONS(6860), - [aux_sym_use_statement_token2] = ACTIONS(6860), - [aux_sym_implicit_statement_token4] = ACTIONS(6860), - [aux_sym_save_statement_token1] = ACTIONS(6860), - [aux_sym_private_statement_token1] = ACTIONS(6860), - [aux_sym_public_statement_token1] = ACTIONS(6860), - [aux_sym_derived_type_definition_token1] = ACTIONS(6860), - [aux_sym_procedure_attribute_token6] = ACTIONS(6860), - [aux_sym_variable_attributes_token2] = ACTIONS(6860), - [aux_sym_variable_attributes_token3] = ACTIONS(6860), - [aux_sym_variable_attributes_token5] = ACTIONS(6860), - [aux_sym__intrinsic_type_token1] = ACTIONS(6860), - [aux_sym__intrinsic_type_token3] = ACTIONS(6860), - [aux_sym__intrinsic_type_token4] = ACTIONS(6860), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6860), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6860), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6860), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6860), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6860), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6860), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6860), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6860), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6860), - [aux_sym_type_qualifier_token1] = ACTIONS(6860), - [aux_sym_type_qualifier_token2] = ACTIONS(6860), - [anon_sym_SEMI] = ACTIONS(6862), - [aux_sym_stop_statement_token1] = ACTIONS(6860), - [aux_sym_stop_statement_token2] = ACTIONS(6860), - [aux_sym_subroutine_call_token1] = ACTIONS(6860), - [aux_sym_keyword_statement_token1] = ACTIONS(6860), - [aux_sym_keyword_statement_token2] = ACTIONS(6860), - [aux_sym_keyword_statement_token3] = ACTIONS(6860), - [aux_sym_keyword_statement_token4] = ACTIONS(6860), - [aux_sym_keyword_statement_token6] = ACTIONS(6860), - [aux_sym_keyword_statement_token7] = ACTIONS(6860), - [aux_sym_include_statement_token1] = ACTIONS(6860), - [aux_sym_data_statement_token1] = ACTIONS(6860), - [aux_sym_do_loop_statement_token1] = ACTIONS(6860), - [aux_sym__inline_if_statement_token1] = ACTIONS(6860), - [aux_sym_end_if_statement_token1] = ACTIONS(6860), - [aux_sym_elseif_clause_token2] = ACTIONS(6860), - [aux_sym__inline_where_statement_token1] = ACTIONS(6860), - [aux_sym__forall_control_expression_token1] = ACTIONS(6860), - [aux_sym_select_case_statement_token1] = ACTIONS(6860), - [aux_sym_select_case_statement_token3] = ACTIONS(6860), - [aux_sym_select_type_statement_token1] = ACTIONS(6860), - [aux_sym_select_rank_statement_token2] = ACTIONS(6860), - [aux_sym_block_construct_token1] = ACTIONS(6860), - [aux_sym_associate_statement_token1] = ACTIONS(6860), - [aux_sym_format_statement_token1] = ACTIONS(6860), - [aux_sym_print_statement_token1] = ACTIONS(6860), - [aux_sym_open_statement_token1] = ACTIONS(6860), - [aux_sym_close_statement_token1] = ACTIONS(6860), - [aux_sym_inquire_statement_token1] = ACTIONS(6860), - [aux_sym_file_position_statement_token1] = ACTIONS(6860), - [aux_sym_file_position_statement_token2] = ACTIONS(6860), - [aux_sym_file_position_statement_token3] = ACTIONS(6860), - [aux_sym_file_position_statement_token4] = ACTIONS(6860), - [aux_sym_allocate_statement_token1] = ACTIONS(6860), - [aux_sym_entry_statement_token1] = ACTIONS(6860), - [aux_sym_logical_expression_token5] = ACTIONS(6862), - [anon_sym_DOT] = ACTIONS(6860), - [anon_sym_LPAREN_SLASH] = ACTIONS(6862), - [anon_sym_LBRACK] = ACTIONS(6862), - [aux_sym_boolean_literal_token1] = ACTIONS(6862), - [aux_sym_boolean_literal_token2] = ACTIONS(6862), - [aux_sym_null_literal_token1] = ACTIONS(6860), - [aux_sym_coarray_statement_token1] = ACTIONS(6860), - [aux_sym_coarray_statement_token2] = ACTIONS(6860), - [aux_sym_coarray_statement_token6] = ACTIONS(6860), - [aux_sym_coarray_statement_token8] = ACTIONS(6860), - [aux_sym_coarray_statement_token11] = ACTIONS(6860), - [aux_sym_coarray_statement_token12] = ACTIONS(6860), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6860), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6860), - [aux_sym_identifier_token1] = ACTIONS(6860), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6862), - [sym__float_literal] = ACTIONS(6862), - [sym__boz_literal] = ACTIONS(6862), - [sym__string_literal] = ACTIONS(6862), - [sym__string_literal_kind] = ACTIONS(6862), - [sym__external_end_of_statement] = ACTIONS(6862), + [2706] = { + [aux_sym_preproc_include_token1] = ACTIONS(6736), + [aux_sym_preproc_def_token1] = ACTIONS(6736), + [aux_sym_preproc_if_token1] = ACTIONS(6736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6736), + [sym_preproc_directive] = ACTIONS(6736), + [sym_preproc_comment] = ACTIONS(6738), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6736), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6736), + [aux_sym_interface_statement_token1] = ACTIONS(6736), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6736), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6736), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6736), + [aux_sym_language_binding_token1] = ACTIONS(6736), + [aux_sym_procedure_attributes_token1] = ACTIONS(6736), + [aux_sym_procedure_attributes_token3] = ACTIONS(6736), + [aux_sym_contains_statement_token1] = ACTIONS(6736), + [aux_sym_use_statement_token1] = ACTIONS(6736), + [aux_sym_use_statement_token2] = ACTIONS(6736), + [aux_sym_implicit_statement_token1] = ACTIONS(6736), + [aux_sym_implicit_statement_token3] = ACTIONS(6736), + [aux_sym_implicit_statement_token4] = ACTIONS(6736), + [aux_sym_save_statement_token1] = ACTIONS(6736), + [aux_sym_private_statement_token1] = ACTIONS(6736), + [aux_sym_public_statement_token1] = ACTIONS(6736), + [aux_sym_namelist_statement_token1] = ACTIONS(6736), + [aux_sym_common_statement_token1] = ACTIONS(6736), + [aux_sym_import_statement_token1] = ACTIONS(6736), + [aux_sym_derived_type_definition_token1] = ACTIONS(6736), + [aux_sym_abstract_specifier_token1] = ACTIONS(6736), + [aux_sym_procedure_attribute_token6] = ACTIONS(6736), + [aux_sym_variable_attributes_token1] = ACTIONS(6736), + [aux_sym_variable_attributes_token2] = ACTIONS(6736), + [aux_sym_variable_attributes_token3] = ACTIONS(6736), + [aux_sym_variable_attributes_token4] = ACTIONS(6736), + [aux_sym_variable_attributes_token5] = ACTIONS(6736), + [aux_sym__intrinsic_type_token1] = ACTIONS(6736), + [aux_sym__intrinsic_type_token2] = ACTIONS(6736), + [aux_sym__intrinsic_type_token3] = ACTIONS(6736), + [aux_sym__intrinsic_type_token4] = ACTIONS(6736), + [aux_sym__intrinsic_type_token6] = ACTIONS(6736), + [aux_sym__intrinsic_type_token7] = ACTIONS(6736), + [aux_sym__intrinsic_type_token8] = ACTIONS(6736), + [aux_sym__intrinsic_type_token9] = ACTIONS(6736), + [aux_sym__intrinsic_type_token10] = ACTIONS(6736), + [aux_sym_derived_type_token1] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6736), + [aux_sym_type_qualifier_token1] = ACTIONS(6736), + [aux_sym_type_qualifier_token2] = ACTIONS(6736), + [aux_sym_equivalence_statement_token1] = ACTIONS(6736), + [aux_sym_stop_statement_token1] = ACTIONS(6736), + [aux_sym_stop_statement_token2] = ACTIONS(6736), + [aux_sym_keyword_statement_token2] = ACTIONS(6736), + [aux_sym_keyword_statement_token3] = ACTIONS(6736), + [aux_sym_include_statement_token1] = ACTIONS(6736), + [aux_sym_data_statement_token1] = ACTIONS(6736), + [aux_sym__inline_if_statement_token1] = ACTIONS(6736), + [aux_sym_end_if_statement_token1] = ACTIONS(6736), + [aux_sym_elseif_clause_token2] = ACTIONS(6736), + [aux_sym_select_case_statement_token1] = ACTIONS(6736), + [aux_sym_block_construct_token1] = ACTIONS(6736), + [aux_sym_format_statement_token1] = ACTIONS(6736), + [aux_sym_inquire_statement_token1] = ACTIONS(6736), + [aux_sym_enum_statement_token1] = ACTIONS(6736), + [aux_sym_entry_statement_token1] = ACTIONS(6736), + [aux_sym_null_literal_token1] = ACTIONS(6736), + [aux_sym_coarray_statement_token1] = ACTIONS(6736), + [aux_sym_coarray_statement_token2] = ACTIONS(6736), + [aux_sym_coarray_statement_token6] = ACTIONS(6736), + [aux_sym_coarray_statement_token8] = ACTIONS(6736), + [aux_sym_coarray_statement_token11] = ACTIONS(6736), + [aux_sym_coarray_statement_token12] = ACTIONS(6736), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6736), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6736), + [aux_sym_identifier_token1] = ACTIONS(6736), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6740), }, - [2771] = { + [2707] = { + [aux_sym_preproc_include_token1] = ACTIONS(6742), + [aux_sym_preproc_def_token1] = ACTIONS(6742), + [aux_sym_preproc_if_token1] = ACTIONS(6742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6742), + [sym_preproc_directive] = ACTIONS(6742), + [sym_preproc_comment] = ACTIONS(6744), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6742), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6742), + [aux_sym_interface_statement_token1] = ACTIONS(6742), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6742), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6742), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6742), + [aux_sym_language_binding_token1] = ACTIONS(6742), + [aux_sym_procedure_attributes_token1] = ACTIONS(6742), + [aux_sym_procedure_attributes_token3] = ACTIONS(6742), + [aux_sym_contains_statement_token1] = ACTIONS(6742), + [aux_sym_use_statement_token1] = ACTIONS(6742), + [aux_sym_use_statement_token2] = ACTIONS(6742), + [aux_sym_implicit_statement_token1] = ACTIONS(6742), + [aux_sym_implicit_statement_token3] = ACTIONS(6742), + [aux_sym_implicit_statement_token4] = ACTIONS(6742), + [aux_sym_save_statement_token1] = ACTIONS(6742), + [aux_sym_private_statement_token1] = ACTIONS(6742), + [aux_sym_public_statement_token1] = ACTIONS(6742), + [aux_sym_namelist_statement_token1] = ACTIONS(6742), + [aux_sym_common_statement_token1] = ACTIONS(6742), + [aux_sym_import_statement_token1] = ACTIONS(6742), + [aux_sym_derived_type_definition_token1] = ACTIONS(6742), + [aux_sym_abstract_specifier_token1] = ACTIONS(6742), + [aux_sym_procedure_attribute_token6] = ACTIONS(6742), + [aux_sym_variable_attributes_token1] = ACTIONS(6742), + [aux_sym_variable_attributes_token2] = ACTIONS(6742), + [aux_sym_variable_attributes_token3] = ACTIONS(6742), + [aux_sym_variable_attributes_token4] = ACTIONS(6742), + [aux_sym_variable_attributes_token5] = ACTIONS(6742), + [aux_sym__intrinsic_type_token1] = ACTIONS(6742), + [aux_sym__intrinsic_type_token2] = ACTIONS(6742), + [aux_sym__intrinsic_type_token3] = ACTIONS(6742), + [aux_sym__intrinsic_type_token4] = ACTIONS(6742), + [aux_sym__intrinsic_type_token6] = ACTIONS(6742), + [aux_sym__intrinsic_type_token7] = ACTIONS(6742), + [aux_sym__intrinsic_type_token8] = ACTIONS(6742), + [aux_sym__intrinsic_type_token9] = ACTIONS(6742), + [aux_sym__intrinsic_type_token10] = ACTIONS(6742), + [aux_sym_derived_type_token1] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6742), + [aux_sym_type_qualifier_token1] = ACTIONS(6742), + [aux_sym_type_qualifier_token2] = ACTIONS(6742), + [aux_sym_equivalence_statement_token1] = ACTIONS(6742), + [aux_sym_stop_statement_token1] = ACTIONS(6742), + [aux_sym_stop_statement_token2] = ACTIONS(6742), + [aux_sym_keyword_statement_token2] = ACTIONS(6742), + [aux_sym_keyword_statement_token3] = ACTIONS(6742), + [aux_sym_include_statement_token1] = ACTIONS(6742), + [aux_sym_data_statement_token1] = ACTIONS(6742), + [aux_sym__inline_if_statement_token1] = ACTIONS(6742), + [aux_sym_end_if_statement_token1] = ACTIONS(6742), + [aux_sym_elseif_clause_token2] = ACTIONS(6742), + [aux_sym_select_case_statement_token1] = ACTIONS(6742), + [aux_sym_block_construct_token1] = ACTIONS(6742), + [aux_sym_format_statement_token1] = ACTIONS(6742), + [aux_sym_inquire_statement_token1] = ACTIONS(6742), + [aux_sym_enum_statement_token1] = ACTIONS(6742), + [aux_sym_entry_statement_token1] = ACTIONS(6742), + [aux_sym_null_literal_token1] = ACTIONS(6742), + [aux_sym_coarray_statement_token1] = ACTIONS(6742), + [aux_sym_coarray_statement_token2] = ACTIONS(6742), + [aux_sym_coarray_statement_token6] = ACTIONS(6742), + [aux_sym_coarray_statement_token8] = ACTIONS(6742), + [aux_sym_coarray_statement_token11] = ACTIONS(6742), + [aux_sym_coarray_statement_token12] = ACTIONS(6742), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6742), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6742), + [aux_sym_identifier_token1] = ACTIONS(6742), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6746), + }, + [2708] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token2] = ACTIONS(5067), + [aux_sym_preproc_else_token1] = ACTIONS(5067), + [aux_sym_preproc_elif_token1] = ACTIONS(5067), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + }, + [2709] = { [aux_sym_preproc_include_token1] = ACTIONS(6748), [aux_sym_preproc_def_token1] = ACTIONS(6748), [aux_sym_preproc_if_token1] = ACTIONS(6748), [aux_sym_preproc_ifdef_token1] = ACTIONS(6748), [aux_sym_preproc_ifdef_token2] = ACTIONS(6748), [sym_preproc_directive] = ACTIONS(6748), - [sym_preproc_comment] = ACTIONS(6864), + [sym_preproc_comment] = ACTIONS(6750), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(6748), - [aux_sym_end_module_statement_token1] = ACTIONS(6748), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6748), [aux_sym_interface_statement_token1] = ACTIONS(6748), [aux_sym_defined_io_procedure_token1] = ACTIONS(6748), [aux_sym_defined_io_procedure_token2] = ACTIONS(6748), @@ -419163,1033 +413459,2330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(6752), }, - [2772] = { - [sym__expression] = STATE(4371), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_extent_specifier] = STATE(7318), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [2710] = { + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_PLUS] = ACTIONS(6756), + [anon_sym_DASH] = ACTIONS(6756), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(6616), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(6754), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6754), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6754), + [aux_sym_procedure_attributes_token3] = ACTIONS(6754), + [aux_sym_use_statement_token2] = ACTIONS(6754), + [aux_sym_implicit_statement_token4] = ACTIONS(6754), + [aux_sym_save_statement_token1] = ACTIONS(6754), + [aux_sym_private_statement_token1] = ACTIONS(6754), + [aux_sym_public_statement_token1] = ACTIONS(6754), + [aux_sym_derived_type_definition_token1] = ACTIONS(6754), + [aux_sym_procedure_attribute_token6] = ACTIONS(6754), + [aux_sym_variable_attributes_token2] = ACTIONS(6754), + [aux_sym_variable_attributes_token3] = ACTIONS(6754), + [aux_sym_variable_attributes_token5] = ACTIONS(6754), + [aux_sym__intrinsic_type_token1] = ACTIONS(6754), + [aux_sym__intrinsic_type_token3] = ACTIONS(6754), + [aux_sym__intrinsic_type_token4] = ACTIONS(6754), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6754), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6754), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6754), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6754), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6754), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6754), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6754), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6754), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6754), + [aux_sym_type_qualifier_token1] = ACTIONS(6754), + [aux_sym_type_qualifier_token2] = ACTIONS(6754), + [anon_sym_SEMI] = ACTIONS(6756), + [aux_sym_stop_statement_token1] = ACTIONS(6754), + [aux_sym_stop_statement_token2] = ACTIONS(6754), + [aux_sym_subroutine_call_token1] = ACTIONS(6754), + [aux_sym_keyword_statement_token1] = ACTIONS(6754), + [aux_sym_keyword_statement_token2] = ACTIONS(6754), + [aux_sym_keyword_statement_token3] = ACTIONS(6754), + [aux_sym_keyword_statement_token4] = ACTIONS(6754), + [aux_sym_keyword_statement_token6] = ACTIONS(6754), + [aux_sym_keyword_statement_token7] = ACTIONS(6754), + [aux_sym_include_statement_token1] = ACTIONS(6754), + [aux_sym_data_statement_token1] = ACTIONS(6754), + [aux_sym_do_loop_statement_token1] = ACTIONS(6754), + [aux_sym__inline_if_statement_token1] = ACTIONS(6754), + [aux_sym_end_if_statement_token1] = ACTIONS(6754), + [aux_sym_elseif_clause_token2] = ACTIONS(6754), + [aux_sym__inline_where_statement_token1] = ACTIONS(6754), + [aux_sym__forall_control_expression_token1] = ACTIONS(6754), + [aux_sym_select_case_statement_token1] = ACTIONS(6754), + [aux_sym_select_case_statement_token3] = ACTIONS(6754), + [aux_sym_select_type_statement_token1] = ACTIONS(6754), + [aux_sym_select_rank_statement_token2] = ACTIONS(6754), + [aux_sym_block_construct_token1] = ACTIONS(6754), + [aux_sym_associate_statement_token1] = ACTIONS(6754), + [aux_sym_format_statement_token1] = ACTIONS(6754), + [aux_sym_print_statement_token1] = ACTIONS(6754), + [aux_sym_open_statement_token1] = ACTIONS(6754), + [aux_sym_close_statement_token1] = ACTIONS(6754), + [aux_sym_inquire_statement_token1] = ACTIONS(6754), + [aux_sym_file_position_statement_token1] = ACTIONS(6754), + [aux_sym_file_position_statement_token2] = ACTIONS(6754), + [aux_sym_file_position_statement_token3] = ACTIONS(6754), + [aux_sym_file_position_statement_token4] = ACTIONS(6754), + [aux_sym_allocate_statement_token1] = ACTIONS(6754), + [aux_sym_entry_statement_token1] = ACTIONS(6754), + [aux_sym_logical_expression_token5] = ACTIONS(6756), + [anon_sym_DOT] = ACTIONS(6754), + [anon_sym_LPAREN_SLASH] = ACTIONS(6756), + [anon_sym_LBRACK] = ACTIONS(6756), + [aux_sym_boolean_literal_token1] = ACTIONS(6756), + [aux_sym_boolean_literal_token2] = ACTIONS(6756), + [aux_sym_null_literal_token1] = ACTIONS(6754), + [aux_sym_coarray_statement_token1] = ACTIONS(6754), + [aux_sym_coarray_statement_token2] = ACTIONS(6754), + [aux_sym_coarray_statement_token6] = ACTIONS(6754), + [aux_sym_coarray_statement_token8] = ACTIONS(6754), + [aux_sym_coarray_statement_token11] = ACTIONS(6754), + [aux_sym_coarray_statement_token12] = ACTIONS(6754), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6754), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6754), + [aux_sym_identifier_token1] = ACTIONS(6754), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(6756), + [sym__float_literal] = ACTIONS(6756), + [sym__boz_literal] = ACTIONS(6756), + [sym__string_literal] = ACTIONS(6756), + [sym__string_literal_kind] = ACTIONS(6756), + [sym__external_end_of_statement] = ACTIONS(6756), }, - [2773] = { - [aux_sym_preproc_include_token1] = ACTIONS(6774), - [aux_sym_preproc_def_token1] = ACTIONS(6774), - [aux_sym_preproc_if_token1] = ACTIONS(6774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6774), - [sym_preproc_directive] = ACTIONS(6774), - [sym_preproc_comment] = ACTIONS(6866), + [2711] = { + [aux_sym_preproc_include_token1] = ACTIONS(6758), + [aux_sym_preproc_def_token1] = ACTIONS(6758), + [aux_sym_preproc_if_token1] = ACTIONS(6758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6758), + [sym_preproc_directive] = ACTIONS(6758), + [sym_preproc_comment] = ACTIONS(6760), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6758), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6758), + [aux_sym_interface_statement_token1] = ACTIONS(6758), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6758), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6758), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6758), + [aux_sym_language_binding_token1] = ACTIONS(6758), + [aux_sym_procedure_attributes_token1] = ACTIONS(6758), + [aux_sym_procedure_attributes_token3] = ACTIONS(6758), + [aux_sym_contains_statement_token1] = ACTIONS(6758), + [aux_sym_use_statement_token1] = ACTIONS(6758), + [aux_sym_use_statement_token2] = ACTIONS(6758), + [aux_sym_implicit_statement_token1] = ACTIONS(6758), + [aux_sym_implicit_statement_token3] = ACTIONS(6758), + [aux_sym_implicit_statement_token4] = ACTIONS(6758), + [aux_sym_save_statement_token1] = ACTIONS(6758), + [aux_sym_private_statement_token1] = ACTIONS(6758), + [aux_sym_public_statement_token1] = ACTIONS(6758), + [aux_sym_namelist_statement_token1] = ACTIONS(6758), + [aux_sym_common_statement_token1] = ACTIONS(6758), + [aux_sym_import_statement_token1] = ACTIONS(6758), + [aux_sym_derived_type_definition_token1] = ACTIONS(6758), + [aux_sym_abstract_specifier_token1] = ACTIONS(6758), + [aux_sym_procedure_attribute_token6] = ACTIONS(6758), + [aux_sym_variable_attributes_token1] = ACTIONS(6758), + [aux_sym_variable_attributes_token2] = ACTIONS(6758), + [aux_sym_variable_attributes_token3] = ACTIONS(6758), + [aux_sym_variable_attributes_token4] = ACTIONS(6758), + [aux_sym_variable_attributes_token5] = ACTIONS(6758), + [aux_sym__intrinsic_type_token1] = ACTIONS(6758), + [aux_sym__intrinsic_type_token2] = ACTIONS(6758), + [aux_sym__intrinsic_type_token3] = ACTIONS(6758), + [aux_sym__intrinsic_type_token4] = ACTIONS(6758), + [aux_sym__intrinsic_type_token6] = ACTIONS(6758), + [aux_sym__intrinsic_type_token7] = ACTIONS(6758), + [aux_sym__intrinsic_type_token8] = ACTIONS(6758), + [aux_sym__intrinsic_type_token9] = ACTIONS(6758), + [aux_sym__intrinsic_type_token10] = ACTIONS(6758), + [aux_sym_derived_type_token1] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6758), + [aux_sym_type_qualifier_token1] = ACTIONS(6758), + [aux_sym_type_qualifier_token2] = ACTIONS(6758), + [aux_sym_equivalence_statement_token1] = ACTIONS(6758), + [aux_sym_stop_statement_token1] = ACTIONS(6758), + [aux_sym_stop_statement_token2] = ACTIONS(6758), + [aux_sym_keyword_statement_token2] = ACTIONS(6758), + [aux_sym_keyword_statement_token3] = ACTIONS(6758), + [aux_sym_include_statement_token1] = ACTIONS(6758), + [aux_sym_data_statement_token1] = ACTIONS(6758), + [aux_sym__inline_if_statement_token1] = ACTIONS(6758), + [aux_sym_end_if_statement_token1] = ACTIONS(6758), + [aux_sym_elseif_clause_token2] = ACTIONS(6758), + [aux_sym_select_case_statement_token1] = ACTIONS(6758), + [aux_sym_block_construct_token1] = ACTIONS(6758), + [aux_sym_format_statement_token1] = ACTIONS(6758), + [aux_sym_inquire_statement_token1] = ACTIONS(6758), + [aux_sym_enum_statement_token1] = ACTIONS(6758), + [aux_sym_entry_statement_token1] = ACTIONS(6758), + [aux_sym_null_literal_token1] = ACTIONS(6758), + [aux_sym_coarray_statement_token1] = ACTIONS(6758), + [aux_sym_coarray_statement_token2] = ACTIONS(6758), + [aux_sym_coarray_statement_token6] = ACTIONS(6758), + [aux_sym_coarray_statement_token8] = ACTIONS(6758), + [aux_sym_coarray_statement_token11] = ACTIONS(6758), + [aux_sym_coarray_statement_token12] = ACTIONS(6758), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6758), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6758), + [aux_sym_identifier_token1] = ACTIONS(6758), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6762), + }, + [2712] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token2] = ACTIONS(4387), + [aux_sym_preproc_else_token1] = ACTIONS(4387), + [aux_sym_preproc_elif_token1] = ACTIONS(4387), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6774), - [aux_sym_end_module_statement_token1] = ACTIONS(6774), - [aux_sym_interface_statement_token1] = ACTIONS(6774), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6774), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6774), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6774), - [aux_sym_language_binding_token1] = ACTIONS(6774), - [aux_sym_procedure_attributes_token1] = ACTIONS(6774), - [aux_sym_procedure_attributes_token3] = ACTIONS(6774), - [aux_sym_contains_statement_token1] = ACTIONS(6774), - [aux_sym_use_statement_token1] = ACTIONS(6774), - [aux_sym_use_statement_token2] = ACTIONS(6774), - [aux_sym_implicit_statement_token1] = ACTIONS(6774), - [aux_sym_implicit_statement_token3] = ACTIONS(6774), - [aux_sym_implicit_statement_token4] = ACTIONS(6774), - [aux_sym_save_statement_token1] = ACTIONS(6774), - [aux_sym_private_statement_token1] = ACTIONS(6774), - [aux_sym_public_statement_token1] = ACTIONS(6774), - [aux_sym_namelist_statement_token1] = ACTIONS(6774), - [aux_sym_common_statement_token1] = ACTIONS(6774), - [aux_sym_import_statement_token1] = ACTIONS(6774), - [aux_sym_derived_type_definition_token1] = ACTIONS(6774), - [aux_sym_abstract_specifier_token1] = ACTIONS(6774), - [aux_sym_procedure_attribute_token6] = ACTIONS(6774), - [aux_sym_variable_attributes_token1] = ACTIONS(6774), - [aux_sym_variable_attributes_token2] = ACTIONS(6774), - [aux_sym_variable_attributes_token3] = ACTIONS(6774), - [aux_sym_variable_attributes_token4] = ACTIONS(6774), - [aux_sym_variable_attributes_token5] = ACTIONS(6774), - [aux_sym__intrinsic_type_token1] = ACTIONS(6774), - [aux_sym__intrinsic_type_token2] = ACTIONS(6774), - [aux_sym__intrinsic_type_token3] = ACTIONS(6774), - [aux_sym__intrinsic_type_token4] = ACTIONS(6774), - [aux_sym__intrinsic_type_token6] = ACTIONS(6774), - [aux_sym__intrinsic_type_token7] = ACTIONS(6774), - [aux_sym__intrinsic_type_token8] = ACTIONS(6774), - [aux_sym__intrinsic_type_token9] = ACTIONS(6774), - [aux_sym__intrinsic_type_token10] = ACTIONS(6774), - [aux_sym_derived_type_token1] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6774), - [aux_sym_type_qualifier_token1] = ACTIONS(6774), - [aux_sym_type_qualifier_token2] = ACTIONS(6774), - [aux_sym_equivalence_statement_token1] = ACTIONS(6774), - [aux_sym_stop_statement_token1] = ACTIONS(6774), - [aux_sym_stop_statement_token2] = ACTIONS(6774), - [aux_sym_keyword_statement_token2] = ACTIONS(6774), - [aux_sym_keyword_statement_token3] = ACTIONS(6774), - [aux_sym_include_statement_token1] = ACTIONS(6774), - [aux_sym_data_statement_token1] = ACTIONS(6774), - [aux_sym__inline_if_statement_token1] = ACTIONS(6774), - [aux_sym_end_if_statement_token1] = ACTIONS(6774), - [aux_sym_elseif_clause_token2] = ACTIONS(6774), - [aux_sym_select_case_statement_token1] = ACTIONS(6774), - [aux_sym_block_construct_token1] = ACTIONS(6774), - [aux_sym_format_statement_token1] = ACTIONS(6774), - [aux_sym_inquire_statement_token1] = ACTIONS(6774), - [aux_sym_enum_statement_token1] = ACTIONS(6774), - [aux_sym_entry_statement_token1] = ACTIONS(6774), - [aux_sym_null_literal_token1] = ACTIONS(6774), - [aux_sym_coarray_statement_token1] = ACTIONS(6774), - [aux_sym_coarray_statement_token2] = ACTIONS(6774), - [aux_sym_coarray_statement_token6] = ACTIONS(6774), - [aux_sym_coarray_statement_token8] = ACTIONS(6774), - [aux_sym_coarray_statement_token11] = ACTIONS(6774), - [aux_sym_coarray_statement_token12] = ACTIONS(6774), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6774), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6774), - [aux_sym_identifier_token1] = ACTIONS(6774), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6778), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4389), }, - [2774] = { - [aux_sym_preproc_include_token1] = ACTIONS(6840), - [aux_sym_preproc_def_token1] = ACTIONS(6840), - [aux_sym_preproc_if_token1] = ACTIONS(6840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6840), - [sym_preproc_directive] = ACTIONS(6840), - [sym_preproc_comment] = ACTIONS(6868), + [2713] = { + [aux_sym_preproc_include_token1] = ACTIONS(6764), + [aux_sym_preproc_def_token1] = ACTIONS(6764), + [aux_sym_preproc_if_token1] = ACTIONS(6764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6764), + [sym_preproc_directive] = ACTIONS(6764), + [sym_preproc_comment] = ACTIONS(6766), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6764), + [aux_sym_end_module_statement_token1] = ACTIONS(6764), + [aux_sym_interface_statement_token1] = ACTIONS(6764), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6764), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6764), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6764), + [aux_sym_language_binding_token1] = ACTIONS(6764), + [aux_sym_procedure_attributes_token1] = ACTIONS(6764), + [aux_sym_procedure_attributes_token3] = ACTIONS(6764), + [aux_sym_contains_statement_token1] = ACTIONS(6764), + [aux_sym_use_statement_token1] = ACTIONS(6764), + [aux_sym_use_statement_token2] = ACTIONS(6764), + [aux_sym_implicit_statement_token1] = ACTIONS(6764), + [aux_sym_implicit_statement_token3] = ACTIONS(6764), + [aux_sym_implicit_statement_token4] = ACTIONS(6764), + [aux_sym_save_statement_token1] = ACTIONS(6764), + [aux_sym_private_statement_token1] = ACTIONS(6764), + [aux_sym_public_statement_token1] = ACTIONS(6764), + [aux_sym_namelist_statement_token1] = ACTIONS(6764), + [aux_sym_common_statement_token1] = ACTIONS(6764), + [aux_sym_import_statement_token1] = ACTIONS(6764), + [aux_sym_derived_type_definition_token1] = ACTIONS(6764), + [aux_sym_abstract_specifier_token1] = ACTIONS(6764), + [aux_sym_procedure_attribute_token6] = ACTIONS(6764), + [aux_sym_variable_attributes_token1] = ACTIONS(6764), + [aux_sym_variable_attributes_token2] = ACTIONS(6764), + [aux_sym_variable_attributes_token3] = ACTIONS(6764), + [aux_sym_variable_attributes_token4] = ACTIONS(6764), + [aux_sym_variable_attributes_token5] = ACTIONS(6764), + [aux_sym__intrinsic_type_token1] = ACTIONS(6764), + [aux_sym__intrinsic_type_token2] = ACTIONS(6764), + [aux_sym__intrinsic_type_token3] = ACTIONS(6764), + [aux_sym__intrinsic_type_token4] = ACTIONS(6764), + [aux_sym__intrinsic_type_token6] = ACTIONS(6764), + [aux_sym__intrinsic_type_token7] = ACTIONS(6764), + [aux_sym__intrinsic_type_token8] = ACTIONS(6764), + [aux_sym__intrinsic_type_token9] = ACTIONS(6764), + [aux_sym__intrinsic_type_token10] = ACTIONS(6764), + [aux_sym_derived_type_token1] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6764), + [aux_sym_type_qualifier_token1] = ACTIONS(6764), + [aux_sym_type_qualifier_token2] = ACTIONS(6764), + [aux_sym_equivalence_statement_token1] = ACTIONS(6764), + [aux_sym_stop_statement_token1] = ACTIONS(6764), + [aux_sym_stop_statement_token2] = ACTIONS(6764), + [aux_sym_keyword_statement_token2] = ACTIONS(6764), + [aux_sym_keyword_statement_token3] = ACTIONS(6764), + [aux_sym_include_statement_token1] = ACTIONS(6764), + [aux_sym_data_statement_token1] = ACTIONS(6764), + [aux_sym__inline_if_statement_token1] = ACTIONS(6764), + [aux_sym_end_if_statement_token1] = ACTIONS(6764), + [aux_sym_elseif_clause_token2] = ACTIONS(6764), + [aux_sym_select_case_statement_token1] = ACTIONS(6764), + [aux_sym_block_construct_token1] = ACTIONS(6764), + [aux_sym_format_statement_token1] = ACTIONS(6764), + [aux_sym_inquire_statement_token1] = ACTIONS(6764), + [aux_sym_enum_statement_token1] = ACTIONS(6764), + [aux_sym_entry_statement_token1] = ACTIONS(6764), + [aux_sym_null_literal_token1] = ACTIONS(6764), + [aux_sym_coarray_statement_token1] = ACTIONS(6764), + [aux_sym_coarray_statement_token2] = ACTIONS(6764), + [aux_sym_coarray_statement_token6] = ACTIONS(6764), + [aux_sym_coarray_statement_token8] = ACTIONS(6764), + [aux_sym_coarray_statement_token11] = ACTIONS(6764), + [aux_sym_coarray_statement_token12] = ACTIONS(6764), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6764), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6764), + [aux_sym_identifier_token1] = ACTIONS(6764), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6768), + }, + [2714] = { + [aux_sym_preproc_include_token1] = ACTIONS(6770), + [aux_sym_preproc_def_token1] = ACTIONS(6770), + [aux_sym_preproc_if_token1] = ACTIONS(6770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6770), + [sym_preproc_directive] = ACTIONS(6770), + [sym_preproc_comment] = ACTIONS(6772), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6770), + [aux_sym_end_module_statement_token1] = ACTIONS(6770), + [aux_sym_interface_statement_token1] = ACTIONS(6770), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6770), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6770), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6770), + [aux_sym_language_binding_token1] = ACTIONS(6770), + [aux_sym_procedure_attributes_token1] = ACTIONS(6770), + [aux_sym_procedure_attributes_token3] = ACTIONS(6770), + [aux_sym_contains_statement_token1] = ACTIONS(6770), + [aux_sym_use_statement_token1] = ACTIONS(6770), + [aux_sym_use_statement_token2] = ACTIONS(6770), + [aux_sym_implicit_statement_token1] = ACTIONS(6770), + [aux_sym_implicit_statement_token3] = ACTIONS(6770), + [aux_sym_implicit_statement_token4] = ACTIONS(6770), + [aux_sym_save_statement_token1] = ACTIONS(6770), + [aux_sym_private_statement_token1] = ACTIONS(6770), + [aux_sym_public_statement_token1] = ACTIONS(6770), + [aux_sym_namelist_statement_token1] = ACTIONS(6770), + [aux_sym_common_statement_token1] = ACTIONS(6770), + [aux_sym_import_statement_token1] = ACTIONS(6770), + [aux_sym_derived_type_definition_token1] = ACTIONS(6770), + [aux_sym_abstract_specifier_token1] = ACTIONS(6770), + [aux_sym_procedure_attribute_token6] = ACTIONS(6770), + [aux_sym_variable_attributes_token1] = ACTIONS(6770), + [aux_sym_variable_attributes_token2] = ACTIONS(6770), + [aux_sym_variable_attributes_token3] = ACTIONS(6770), + [aux_sym_variable_attributes_token4] = ACTIONS(6770), + [aux_sym_variable_attributes_token5] = ACTIONS(6770), + [aux_sym__intrinsic_type_token1] = ACTIONS(6770), + [aux_sym__intrinsic_type_token2] = ACTIONS(6770), + [aux_sym__intrinsic_type_token3] = ACTIONS(6770), + [aux_sym__intrinsic_type_token4] = ACTIONS(6770), + [aux_sym__intrinsic_type_token6] = ACTIONS(6770), + [aux_sym__intrinsic_type_token7] = ACTIONS(6770), + [aux_sym__intrinsic_type_token8] = ACTIONS(6770), + [aux_sym__intrinsic_type_token9] = ACTIONS(6770), + [aux_sym__intrinsic_type_token10] = ACTIONS(6770), + [aux_sym_derived_type_token1] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6770), + [aux_sym_type_qualifier_token1] = ACTIONS(6770), + [aux_sym_type_qualifier_token2] = ACTIONS(6770), + [aux_sym_equivalence_statement_token1] = ACTIONS(6770), + [aux_sym_stop_statement_token1] = ACTIONS(6770), + [aux_sym_stop_statement_token2] = ACTIONS(6770), + [aux_sym_keyword_statement_token2] = ACTIONS(6770), + [aux_sym_keyword_statement_token3] = ACTIONS(6770), + [aux_sym_include_statement_token1] = ACTIONS(6770), + [aux_sym_data_statement_token1] = ACTIONS(6770), + [aux_sym__inline_if_statement_token1] = ACTIONS(6770), + [aux_sym_end_if_statement_token1] = ACTIONS(6770), + [aux_sym_elseif_clause_token2] = ACTIONS(6770), + [aux_sym_select_case_statement_token1] = ACTIONS(6770), + [aux_sym_block_construct_token1] = ACTIONS(6770), + [aux_sym_format_statement_token1] = ACTIONS(6770), + [aux_sym_inquire_statement_token1] = ACTIONS(6770), + [aux_sym_enum_statement_token1] = ACTIONS(6770), + [aux_sym_entry_statement_token1] = ACTIONS(6770), + [aux_sym_null_literal_token1] = ACTIONS(6770), + [aux_sym_coarray_statement_token1] = ACTIONS(6770), + [aux_sym_coarray_statement_token2] = ACTIONS(6770), + [aux_sym_coarray_statement_token6] = ACTIONS(6770), + [aux_sym_coarray_statement_token8] = ACTIONS(6770), + [aux_sym_coarray_statement_token11] = ACTIONS(6770), + [aux_sym_coarray_statement_token12] = ACTIONS(6770), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6770), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6770), + [aux_sym_identifier_token1] = ACTIONS(6770), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6774), + }, + [2715] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token2] = ACTIONS(5018), + [aux_sym_preproc_else_token1] = ACTIONS(5018), + [aux_sym_preproc_elif_token1] = ACTIONS(5018), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + }, + [2716] = { + [aux_sym_preproc_include_token1] = ACTIONS(6764), + [aux_sym_preproc_def_token1] = ACTIONS(6764), + [aux_sym_preproc_if_token1] = ACTIONS(6764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6764), + [sym_preproc_directive] = ACTIONS(6764), + [sym_preproc_comment] = ACTIONS(6776), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6840), - [aux_sym_end_module_statement_token1] = ACTIONS(6840), - [aux_sym_interface_statement_token1] = ACTIONS(6840), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6840), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6840), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6840), - [aux_sym_language_binding_token1] = ACTIONS(6840), - [aux_sym_procedure_attributes_token1] = ACTIONS(6840), - [aux_sym_procedure_attributes_token3] = ACTIONS(6840), - [aux_sym_contains_statement_token1] = ACTIONS(6840), - [aux_sym_use_statement_token1] = ACTIONS(6840), - [aux_sym_use_statement_token2] = ACTIONS(6840), - [aux_sym_implicit_statement_token1] = ACTIONS(6840), - [aux_sym_implicit_statement_token3] = ACTIONS(6840), - [aux_sym_implicit_statement_token4] = ACTIONS(6840), - [aux_sym_save_statement_token1] = ACTIONS(6840), - [aux_sym_private_statement_token1] = ACTIONS(6840), - [aux_sym_public_statement_token1] = ACTIONS(6840), - [aux_sym_namelist_statement_token1] = ACTIONS(6840), - [aux_sym_common_statement_token1] = ACTIONS(6840), - [aux_sym_import_statement_token1] = ACTIONS(6840), - [aux_sym_derived_type_definition_token1] = ACTIONS(6840), - [aux_sym_abstract_specifier_token1] = ACTIONS(6840), - [aux_sym_procedure_attribute_token6] = ACTIONS(6840), - [aux_sym_variable_attributes_token1] = ACTIONS(6840), - [aux_sym_variable_attributes_token2] = ACTIONS(6840), - [aux_sym_variable_attributes_token3] = ACTIONS(6840), - [aux_sym_variable_attributes_token4] = ACTIONS(6840), - [aux_sym_variable_attributes_token5] = ACTIONS(6840), - [aux_sym__intrinsic_type_token1] = ACTIONS(6840), - [aux_sym__intrinsic_type_token2] = ACTIONS(6840), - [aux_sym__intrinsic_type_token3] = ACTIONS(6840), - [aux_sym__intrinsic_type_token4] = ACTIONS(6840), - [aux_sym__intrinsic_type_token6] = ACTIONS(6840), - [aux_sym__intrinsic_type_token7] = ACTIONS(6840), - [aux_sym__intrinsic_type_token8] = ACTIONS(6840), - [aux_sym__intrinsic_type_token9] = ACTIONS(6840), - [aux_sym__intrinsic_type_token10] = ACTIONS(6840), - [aux_sym_derived_type_token1] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6840), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6840), - [aux_sym_type_qualifier_token1] = ACTIONS(6840), - [aux_sym_type_qualifier_token2] = ACTIONS(6840), - [aux_sym_equivalence_statement_token1] = ACTIONS(6840), - [aux_sym_stop_statement_token1] = ACTIONS(6840), - [aux_sym_stop_statement_token2] = ACTIONS(6840), - [aux_sym_keyword_statement_token2] = ACTIONS(6840), - [aux_sym_keyword_statement_token3] = ACTIONS(6840), - [aux_sym_include_statement_token1] = ACTIONS(6840), - [aux_sym_data_statement_token1] = ACTIONS(6840), - [aux_sym__inline_if_statement_token1] = ACTIONS(6840), - [aux_sym_end_if_statement_token1] = ACTIONS(6840), - [aux_sym_elseif_clause_token2] = ACTIONS(6840), - [aux_sym_select_case_statement_token1] = ACTIONS(6840), - [aux_sym_block_construct_token1] = ACTIONS(6840), - [aux_sym_format_statement_token1] = ACTIONS(6840), - [aux_sym_inquire_statement_token1] = ACTIONS(6840), - [aux_sym_enum_statement_token1] = ACTIONS(6840), - [aux_sym_entry_statement_token1] = ACTIONS(6840), - [aux_sym_null_literal_token1] = ACTIONS(6840), - [aux_sym_coarray_statement_token1] = ACTIONS(6840), - [aux_sym_coarray_statement_token2] = ACTIONS(6840), - [aux_sym_coarray_statement_token6] = ACTIONS(6840), - [aux_sym_coarray_statement_token8] = ACTIONS(6840), - [aux_sym_coarray_statement_token11] = ACTIONS(6840), - [aux_sym_coarray_statement_token12] = ACTIONS(6840), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6840), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6840), - [aux_sym_identifier_token1] = ACTIONS(6840), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6844), + [aux_sym_end_program_statement_token1] = ACTIONS(6764), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6764), + [aux_sym_interface_statement_token1] = ACTIONS(6764), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6764), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6764), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6764), + [aux_sym_language_binding_token1] = ACTIONS(6764), + [aux_sym_procedure_attributes_token1] = ACTIONS(6764), + [aux_sym_procedure_attributes_token3] = ACTIONS(6764), + [aux_sym_contains_statement_token1] = ACTIONS(6764), + [aux_sym_use_statement_token1] = ACTIONS(6764), + [aux_sym_use_statement_token2] = ACTIONS(6764), + [aux_sym_implicit_statement_token1] = ACTIONS(6764), + [aux_sym_implicit_statement_token3] = ACTIONS(6764), + [aux_sym_implicit_statement_token4] = ACTIONS(6764), + [aux_sym_save_statement_token1] = ACTIONS(6764), + [aux_sym_private_statement_token1] = ACTIONS(6764), + [aux_sym_public_statement_token1] = ACTIONS(6764), + [aux_sym_namelist_statement_token1] = ACTIONS(6764), + [aux_sym_common_statement_token1] = ACTIONS(6764), + [aux_sym_import_statement_token1] = ACTIONS(6764), + [aux_sym_derived_type_definition_token1] = ACTIONS(6764), + [aux_sym_abstract_specifier_token1] = ACTIONS(6764), + [aux_sym_procedure_attribute_token6] = ACTIONS(6764), + [aux_sym_variable_attributes_token1] = ACTIONS(6764), + [aux_sym_variable_attributes_token2] = ACTIONS(6764), + [aux_sym_variable_attributes_token3] = ACTIONS(6764), + [aux_sym_variable_attributes_token4] = ACTIONS(6764), + [aux_sym_variable_attributes_token5] = ACTIONS(6764), + [aux_sym__intrinsic_type_token1] = ACTIONS(6764), + [aux_sym__intrinsic_type_token2] = ACTIONS(6764), + [aux_sym__intrinsic_type_token3] = ACTIONS(6764), + [aux_sym__intrinsic_type_token4] = ACTIONS(6764), + [aux_sym__intrinsic_type_token6] = ACTIONS(6764), + [aux_sym__intrinsic_type_token7] = ACTIONS(6764), + [aux_sym__intrinsic_type_token8] = ACTIONS(6764), + [aux_sym__intrinsic_type_token9] = ACTIONS(6764), + [aux_sym__intrinsic_type_token10] = ACTIONS(6764), + [aux_sym_derived_type_token1] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6764), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6764), + [aux_sym_type_qualifier_token1] = ACTIONS(6764), + [aux_sym_type_qualifier_token2] = ACTIONS(6764), + [aux_sym_equivalence_statement_token1] = ACTIONS(6764), + [aux_sym_stop_statement_token1] = ACTIONS(6764), + [aux_sym_stop_statement_token2] = ACTIONS(6764), + [aux_sym_keyword_statement_token2] = ACTIONS(6764), + [aux_sym_keyword_statement_token3] = ACTIONS(6764), + [aux_sym_include_statement_token1] = ACTIONS(6764), + [aux_sym_data_statement_token1] = ACTIONS(6764), + [aux_sym__inline_if_statement_token1] = ACTIONS(6764), + [aux_sym_end_if_statement_token1] = ACTIONS(6764), + [aux_sym_elseif_clause_token2] = ACTIONS(6764), + [aux_sym_select_case_statement_token1] = ACTIONS(6764), + [aux_sym_block_construct_token1] = ACTIONS(6764), + [aux_sym_format_statement_token1] = ACTIONS(6764), + [aux_sym_inquire_statement_token1] = ACTIONS(6764), + [aux_sym_enum_statement_token1] = ACTIONS(6764), + [aux_sym_entry_statement_token1] = ACTIONS(6764), + [aux_sym_null_literal_token1] = ACTIONS(6764), + [aux_sym_coarray_statement_token1] = ACTIONS(6764), + [aux_sym_coarray_statement_token2] = ACTIONS(6764), + [aux_sym_coarray_statement_token6] = ACTIONS(6764), + [aux_sym_coarray_statement_token8] = ACTIONS(6764), + [aux_sym_coarray_statement_token11] = ACTIONS(6764), + [aux_sym_coarray_statement_token12] = ACTIONS(6764), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6764), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6764), + [aux_sym_identifier_token1] = ACTIONS(6764), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6768), }, - [2775] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), + [2717] = { + [aux_sym_preproc_include_token1] = ACTIONS(6778), + [aux_sym_preproc_def_token1] = ACTIONS(6778), + [aux_sym_preproc_if_token1] = ACTIONS(6778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6778), + [sym_preproc_directive] = ACTIONS(6778), + [sym_preproc_comment] = ACTIONS(6780), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6778), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6778), + [aux_sym_interface_statement_token1] = ACTIONS(6778), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6778), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6778), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6778), + [aux_sym_language_binding_token1] = ACTIONS(6778), + [aux_sym_procedure_attributes_token1] = ACTIONS(6778), + [aux_sym_procedure_attributes_token3] = ACTIONS(6778), + [aux_sym_contains_statement_token1] = ACTIONS(6778), + [aux_sym_use_statement_token1] = ACTIONS(6778), + [aux_sym_use_statement_token2] = ACTIONS(6778), + [aux_sym_implicit_statement_token1] = ACTIONS(6778), + [aux_sym_implicit_statement_token3] = ACTIONS(6778), + [aux_sym_implicit_statement_token4] = ACTIONS(6778), + [aux_sym_save_statement_token1] = ACTIONS(6778), + [aux_sym_private_statement_token1] = ACTIONS(6778), + [aux_sym_public_statement_token1] = ACTIONS(6778), + [aux_sym_namelist_statement_token1] = ACTIONS(6778), + [aux_sym_common_statement_token1] = ACTIONS(6778), + [aux_sym_import_statement_token1] = ACTIONS(6778), + [aux_sym_derived_type_definition_token1] = ACTIONS(6778), + [aux_sym_abstract_specifier_token1] = ACTIONS(6778), + [aux_sym_procedure_attribute_token6] = ACTIONS(6778), + [aux_sym_variable_attributes_token1] = ACTIONS(6778), + [aux_sym_variable_attributes_token2] = ACTIONS(6778), + [aux_sym_variable_attributes_token3] = ACTIONS(6778), + [aux_sym_variable_attributes_token4] = ACTIONS(6778), + [aux_sym_variable_attributes_token5] = ACTIONS(6778), + [aux_sym__intrinsic_type_token1] = ACTIONS(6778), + [aux_sym__intrinsic_type_token2] = ACTIONS(6778), + [aux_sym__intrinsic_type_token3] = ACTIONS(6778), + [aux_sym__intrinsic_type_token4] = ACTIONS(6778), + [aux_sym__intrinsic_type_token6] = ACTIONS(6778), + [aux_sym__intrinsic_type_token7] = ACTIONS(6778), + [aux_sym__intrinsic_type_token8] = ACTIONS(6778), + [aux_sym__intrinsic_type_token9] = ACTIONS(6778), + [aux_sym__intrinsic_type_token10] = ACTIONS(6778), + [aux_sym_derived_type_token1] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6778), + [aux_sym_type_qualifier_token1] = ACTIONS(6778), + [aux_sym_type_qualifier_token2] = ACTIONS(6778), + [aux_sym_equivalence_statement_token1] = ACTIONS(6778), + [aux_sym_stop_statement_token1] = ACTIONS(6778), + [aux_sym_stop_statement_token2] = ACTIONS(6778), + [aux_sym_keyword_statement_token2] = ACTIONS(6778), + [aux_sym_keyword_statement_token3] = ACTIONS(6778), + [aux_sym_include_statement_token1] = ACTIONS(6778), + [aux_sym_data_statement_token1] = ACTIONS(6778), + [aux_sym__inline_if_statement_token1] = ACTIONS(6778), + [aux_sym_end_if_statement_token1] = ACTIONS(6778), + [aux_sym_elseif_clause_token2] = ACTIONS(6778), + [aux_sym_select_case_statement_token1] = ACTIONS(6778), + [aux_sym_block_construct_token1] = ACTIONS(6778), + [aux_sym_format_statement_token1] = ACTIONS(6778), + [aux_sym_inquire_statement_token1] = ACTIONS(6778), + [aux_sym_enum_statement_token1] = ACTIONS(6778), + [aux_sym_entry_statement_token1] = ACTIONS(6778), + [aux_sym_null_literal_token1] = ACTIONS(6778), + [aux_sym_coarray_statement_token1] = ACTIONS(6778), + [aux_sym_coarray_statement_token2] = ACTIONS(6778), + [aux_sym_coarray_statement_token6] = ACTIONS(6778), + [aux_sym_coarray_statement_token8] = ACTIONS(6778), + [aux_sym_coarray_statement_token11] = ACTIONS(6778), + [aux_sym_coarray_statement_token12] = ACTIONS(6778), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6778), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6778), + [aux_sym_identifier_token1] = ACTIONS(6778), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6782), }, - [2776] = { - [aux_sym_preproc_include_token1] = ACTIONS(6870), - [aux_sym_preproc_def_token1] = ACTIONS(6870), - [aux_sym_preproc_if_token1] = ACTIONS(6870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6870), - [sym_preproc_directive] = ACTIONS(6870), + [2718] = { + [aux_sym_preproc_include_token1] = ACTIONS(6784), + [aux_sym_preproc_def_token1] = ACTIONS(6784), + [aux_sym_preproc_if_token1] = ACTIONS(6784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6784), + [sym_preproc_directive] = ACTIONS(6784), + [sym_preproc_comment] = ACTIONS(6786), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6870), - [aux_sym_end_module_statement_token1] = ACTIONS(6870), - [aux_sym_interface_statement_token1] = ACTIONS(6870), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6870), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6870), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6870), - [aux_sym_language_binding_token1] = ACTIONS(6870), - [aux_sym_procedure_attributes_token1] = ACTIONS(6870), - [aux_sym_procedure_attributes_token3] = ACTIONS(6870), - [aux_sym_contains_statement_token1] = ACTIONS(6870), - [aux_sym_use_statement_token1] = ACTIONS(6870), - [aux_sym_use_statement_token2] = ACTIONS(6870), - [aux_sym_implicit_statement_token1] = ACTIONS(6870), - [aux_sym_implicit_statement_token3] = ACTIONS(6870), - [aux_sym_implicit_statement_token4] = ACTIONS(6870), - [aux_sym_save_statement_token1] = ACTIONS(6870), - [aux_sym_private_statement_token1] = ACTIONS(6870), - [aux_sym_public_statement_token1] = ACTIONS(6870), - [aux_sym_namelist_statement_token1] = ACTIONS(6870), - [aux_sym_common_statement_token1] = ACTIONS(6870), - [aux_sym_import_statement_token1] = ACTIONS(6870), - [aux_sym_derived_type_definition_token1] = ACTIONS(6870), - [aux_sym_abstract_specifier_token1] = ACTIONS(6870), - [aux_sym_procedure_attribute_token6] = ACTIONS(6870), - [aux_sym_variable_attributes_token1] = ACTIONS(6870), - [aux_sym_variable_attributes_token2] = ACTIONS(6870), - [aux_sym_variable_attributes_token3] = ACTIONS(6870), - [aux_sym_variable_attributes_token4] = ACTIONS(6870), - [aux_sym_variable_attributes_token5] = ACTIONS(6870), - [aux_sym__intrinsic_type_token1] = ACTIONS(6870), - [aux_sym__intrinsic_type_token2] = ACTIONS(6870), - [aux_sym__intrinsic_type_token3] = ACTIONS(6870), - [aux_sym__intrinsic_type_token4] = ACTIONS(6870), - [aux_sym__intrinsic_type_token6] = ACTIONS(6870), - [aux_sym__intrinsic_type_token7] = ACTIONS(6870), - [aux_sym__intrinsic_type_token8] = ACTIONS(6870), - [aux_sym__intrinsic_type_token9] = ACTIONS(6870), - [aux_sym__intrinsic_type_token10] = ACTIONS(6870), - [aux_sym_derived_type_token1] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6870), - [aux_sym_type_qualifier_token1] = ACTIONS(6870), - [aux_sym_type_qualifier_token2] = ACTIONS(6870), - [aux_sym_equivalence_statement_token1] = ACTIONS(6870), - [aux_sym_stop_statement_token1] = ACTIONS(6870), - [aux_sym_stop_statement_token2] = ACTIONS(6870), - [aux_sym_keyword_statement_token2] = ACTIONS(6870), - [aux_sym_keyword_statement_token3] = ACTIONS(6870), - [aux_sym_include_statement_token1] = ACTIONS(6870), - [aux_sym_data_statement_token1] = ACTIONS(6870), - [aux_sym__inline_if_statement_token1] = ACTIONS(6870), - [aux_sym_end_if_statement_token1] = ACTIONS(6870), - [aux_sym_elseif_clause_token2] = ACTIONS(6870), - [aux_sym_select_case_statement_token1] = ACTIONS(6870), - [aux_sym_block_construct_token1] = ACTIONS(6870), - [aux_sym_format_statement_token1] = ACTIONS(6870), - [aux_sym_inquire_statement_token1] = ACTIONS(6870), - [aux_sym_enum_statement_token1] = ACTIONS(6870), - [aux_sym_entry_statement_token1] = ACTIONS(6870), - [aux_sym_null_literal_token1] = ACTIONS(6870), - [aux_sym_coarray_statement_token1] = ACTIONS(6870), - [aux_sym_coarray_statement_token2] = ACTIONS(6870), - [aux_sym_coarray_statement_token6] = ACTIONS(6870), - [aux_sym_coarray_statement_token8] = ACTIONS(6870), - [aux_sym_coarray_statement_token11] = ACTIONS(6870), - [aux_sym_coarray_statement_token12] = ACTIONS(6870), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6870), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6870), - [aux_sym_identifier_token1] = ACTIONS(6870), + [aux_sym_end_program_statement_token1] = ACTIONS(6784), + [aux_sym_end_module_statement_token1] = ACTIONS(6784), + [aux_sym_interface_statement_token1] = ACTIONS(6784), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6784), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6784), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6784), + [aux_sym_language_binding_token1] = ACTIONS(6784), + [aux_sym_procedure_attributes_token1] = ACTIONS(6784), + [aux_sym_procedure_attributes_token3] = ACTIONS(6784), + [aux_sym_contains_statement_token1] = ACTIONS(6784), + [aux_sym_use_statement_token1] = ACTIONS(6784), + [aux_sym_use_statement_token2] = ACTIONS(6784), + [aux_sym_implicit_statement_token1] = ACTIONS(6784), + [aux_sym_implicit_statement_token3] = ACTIONS(6784), + [aux_sym_implicit_statement_token4] = ACTIONS(6784), + [aux_sym_save_statement_token1] = ACTIONS(6784), + [aux_sym_private_statement_token1] = ACTIONS(6784), + [aux_sym_public_statement_token1] = ACTIONS(6784), + [aux_sym_namelist_statement_token1] = ACTIONS(6784), + [aux_sym_common_statement_token1] = ACTIONS(6784), + [aux_sym_import_statement_token1] = ACTIONS(6784), + [aux_sym_derived_type_definition_token1] = ACTIONS(6784), + [aux_sym_abstract_specifier_token1] = ACTIONS(6784), + [aux_sym_procedure_attribute_token6] = ACTIONS(6784), + [aux_sym_variable_attributes_token1] = ACTIONS(6784), + [aux_sym_variable_attributes_token2] = ACTIONS(6784), + [aux_sym_variable_attributes_token3] = ACTIONS(6784), + [aux_sym_variable_attributes_token4] = ACTIONS(6784), + [aux_sym_variable_attributes_token5] = ACTIONS(6784), + [aux_sym__intrinsic_type_token1] = ACTIONS(6784), + [aux_sym__intrinsic_type_token2] = ACTIONS(6784), + [aux_sym__intrinsic_type_token3] = ACTIONS(6784), + [aux_sym__intrinsic_type_token4] = ACTIONS(6784), + [aux_sym__intrinsic_type_token6] = ACTIONS(6784), + [aux_sym__intrinsic_type_token7] = ACTIONS(6784), + [aux_sym__intrinsic_type_token8] = ACTIONS(6784), + [aux_sym__intrinsic_type_token9] = ACTIONS(6784), + [aux_sym__intrinsic_type_token10] = ACTIONS(6784), + [aux_sym_derived_type_token1] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6784), + [aux_sym_type_qualifier_token1] = ACTIONS(6784), + [aux_sym_type_qualifier_token2] = ACTIONS(6784), + [aux_sym_equivalence_statement_token1] = ACTIONS(6784), + [aux_sym_stop_statement_token1] = ACTIONS(6784), + [aux_sym_stop_statement_token2] = ACTIONS(6784), + [aux_sym_keyword_statement_token2] = ACTIONS(6784), + [aux_sym_keyword_statement_token3] = ACTIONS(6784), + [aux_sym_include_statement_token1] = ACTIONS(6784), + [aux_sym_data_statement_token1] = ACTIONS(6784), + [aux_sym__inline_if_statement_token1] = ACTIONS(6784), + [aux_sym_end_if_statement_token1] = ACTIONS(6784), + [aux_sym_elseif_clause_token2] = ACTIONS(6784), + [aux_sym_select_case_statement_token1] = ACTIONS(6784), + [aux_sym_block_construct_token1] = ACTIONS(6784), + [aux_sym_format_statement_token1] = ACTIONS(6784), + [aux_sym_inquire_statement_token1] = ACTIONS(6784), + [aux_sym_enum_statement_token1] = ACTIONS(6784), + [aux_sym_entry_statement_token1] = ACTIONS(6784), + [aux_sym_null_literal_token1] = ACTIONS(6784), + [aux_sym_coarray_statement_token1] = ACTIONS(6784), + [aux_sym_coarray_statement_token2] = ACTIONS(6784), + [aux_sym_coarray_statement_token6] = ACTIONS(6784), + [aux_sym_coarray_statement_token8] = ACTIONS(6784), + [aux_sym_coarray_statement_token11] = ACTIONS(6784), + [aux_sym_coarray_statement_token12] = ACTIONS(6784), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6784), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6784), + [aux_sym_identifier_token1] = ACTIONS(6784), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6788), + }, + [2719] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_else_token1] = ACTIONS(4391), + [aux_sym_preproc_elif_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6872), + [sym__integer_literal] = ACTIONS(4393), }, - [2777] = { - [aux_sym_preproc_include_token1] = ACTIONS(4976), - [aux_sym_preproc_def_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token1] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), - [sym_preproc_directive] = ACTIONS(4976), + [2720] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [aux_sym_preproc_else_token1] = ACTIONS(4395), + [aux_sym_preproc_elif_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4976), - [aux_sym_end_module_statement_token1] = ACTIONS(4976), - [aux_sym_interface_statement_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), - [aux_sym_language_binding_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token3] = ACTIONS(4976), - [aux_sym_contains_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token2] = ACTIONS(4976), - [aux_sym_implicit_statement_token1] = ACTIONS(4976), - [aux_sym_implicit_statement_token3] = ACTIONS(4976), - [aux_sym_implicit_statement_token4] = ACTIONS(4976), - [aux_sym_save_statement_token1] = ACTIONS(4976), - [aux_sym_private_statement_token1] = ACTIONS(4976), - [aux_sym_public_statement_token1] = ACTIONS(4976), - [aux_sym_namelist_statement_token1] = ACTIONS(4976), - [aux_sym_common_statement_token1] = ACTIONS(4976), - [aux_sym_import_statement_token1] = ACTIONS(4976), - [aux_sym_derived_type_definition_token1] = ACTIONS(4976), - [aux_sym_abstract_specifier_token1] = ACTIONS(4976), - [aux_sym_procedure_attribute_token6] = ACTIONS(4976), - [aux_sym_variable_attributes_token1] = ACTIONS(4976), - [aux_sym_variable_attributes_token2] = ACTIONS(4976), - [aux_sym_variable_attributes_token3] = ACTIONS(4976), - [aux_sym_variable_attributes_token4] = ACTIONS(4976), - [aux_sym_variable_attributes_token5] = ACTIONS(4976), - [aux_sym__intrinsic_type_token1] = ACTIONS(4976), - [aux_sym__intrinsic_type_token2] = ACTIONS(4976), - [aux_sym__intrinsic_type_token3] = ACTIONS(4976), - [aux_sym__intrinsic_type_token4] = ACTIONS(4976), - [aux_sym__intrinsic_type_token6] = ACTIONS(4976), - [aux_sym__intrinsic_type_token7] = ACTIONS(4976), - [aux_sym__intrinsic_type_token8] = ACTIONS(4976), - [aux_sym__intrinsic_type_token9] = ACTIONS(4976), - [aux_sym__intrinsic_type_token10] = ACTIONS(4976), - [aux_sym_derived_type_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), - [aux_sym_type_qualifier_token1] = ACTIONS(4976), - [aux_sym_type_qualifier_token2] = ACTIONS(4976), - [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token3] = ACTIONS(4976), - [aux_sym_include_statement_token1] = ACTIONS(4976), - [aux_sym_data_statement_token1] = ACTIONS(4976), - [aux_sym__inline_if_statement_token1] = ACTIONS(4976), - [aux_sym_end_if_statement_token1] = ACTIONS(4976), - [aux_sym_elseif_clause_token2] = ACTIONS(4976), - [aux_sym_select_case_statement_token1] = ACTIONS(4976), - [aux_sym_block_construct_token1] = ACTIONS(4976), - [aux_sym_format_statement_token1] = ACTIONS(4976), - [aux_sym_inquire_statement_token1] = ACTIONS(4976), - [aux_sym_enum_statement_token1] = ACTIONS(4976), - [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_null_literal_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token2] = ACTIONS(4976), - [aux_sym_coarray_statement_token6] = ACTIONS(4976), - [aux_sym_coarray_statement_token8] = ACTIONS(4976), - [aux_sym_coarray_statement_token11] = ACTIONS(4976), - [aux_sym_coarray_statement_token12] = ACTIONS(4976), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), - [aux_sym_identifier_token1] = ACTIONS(4976), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + }, + [2721] = { + [aux_sym_preproc_include_token1] = ACTIONS(6730), + [aux_sym_preproc_def_token1] = ACTIONS(6730), + [aux_sym_preproc_if_token1] = ACTIONS(6730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6730), + [sym_preproc_directive] = ACTIONS(6730), + [sym_preproc_comment] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6730), + [aux_sym_end_module_statement_token1] = ACTIONS(6730), + [aux_sym_interface_statement_token1] = ACTIONS(6730), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6730), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6730), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6730), + [aux_sym_language_binding_token1] = ACTIONS(6730), + [aux_sym_procedure_attributes_token1] = ACTIONS(6730), + [aux_sym_procedure_attributes_token3] = ACTIONS(6730), + [aux_sym_contains_statement_token1] = ACTIONS(6730), + [aux_sym_use_statement_token1] = ACTIONS(6730), + [aux_sym_use_statement_token2] = ACTIONS(6730), + [aux_sym_implicit_statement_token1] = ACTIONS(6730), + [aux_sym_implicit_statement_token3] = ACTIONS(6730), + [aux_sym_implicit_statement_token4] = ACTIONS(6730), + [aux_sym_save_statement_token1] = ACTIONS(6730), + [aux_sym_private_statement_token1] = ACTIONS(6730), + [aux_sym_public_statement_token1] = ACTIONS(6730), + [aux_sym_namelist_statement_token1] = ACTIONS(6730), + [aux_sym_common_statement_token1] = ACTIONS(6730), + [aux_sym_import_statement_token1] = ACTIONS(6730), + [aux_sym_derived_type_definition_token1] = ACTIONS(6730), + [aux_sym_abstract_specifier_token1] = ACTIONS(6730), + [aux_sym_procedure_attribute_token6] = ACTIONS(6730), + [aux_sym_variable_attributes_token1] = ACTIONS(6730), + [aux_sym_variable_attributes_token2] = ACTIONS(6730), + [aux_sym_variable_attributes_token3] = ACTIONS(6730), + [aux_sym_variable_attributes_token4] = ACTIONS(6730), + [aux_sym_variable_attributes_token5] = ACTIONS(6730), + [aux_sym__intrinsic_type_token1] = ACTIONS(6730), + [aux_sym__intrinsic_type_token2] = ACTIONS(6730), + [aux_sym__intrinsic_type_token3] = ACTIONS(6730), + [aux_sym__intrinsic_type_token4] = ACTIONS(6730), + [aux_sym__intrinsic_type_token6] = ACTIONS(6730), + [aux_sym__intrinsic_type_token7] = ACTIONS(6730), + [aux_sym__intrinsic_type_token8] = ACTIONS(6730), + [aux_sym__intrinsic_type_token9] = ACTIONS(6730), + [aux_sym__intrinsic_type_token10] = ACTIONS(6730), + [aux_sym_derived_type_token1] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6730), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6730), + [aux_sym_type_qualifier_token1] = ACTIONS(6730), + [aux_sym_type_qualifier_token2] = ACTIONS(6730), + [aux_sym_equivalence_statement_token1] = ACTIONS(6730), + [aux_sym_stop_statement_token1] = ACTIONS(6730), + [aux_sym_stop_statement_token2] = ACTIONS(6730), + [aux_sym_keyword_statement_token2] = ACTIONS(6730), + [aux_sym_keyword_statement_token3] = ACTIONS(6730), + [aux_sym_include_statement_token1] = ACTIONS(6730), + [aux_sym_data_statement_token1] = ACTIONS(6730), + [aux_sym__inline_if_statement_token1] = ACTIONS(6730), + [aux_sym_end_if_statement_token1] = ACTIONS(6730), + [aux_sym_elseif_clause_token2] = ACTIONS(6730), + [aux_sym_select_case_statement_token1] = ACTIONS(6730), + [aux_sym_block_construct_token1] = ACTIONS(6730), + [aux_sym_format_statement_token1] = ACTIONS(6730), + [aux_sym_inquire_statement_token1] = ACTIONS(6730), + [aux_sym_enum_statement_token1] = ACTIONS(6730), + [aux_sym_entry_statement_token1] = ACTIONS(6730), + [aux_sym_null_literal_token1] = ACTIONS(6730), + [aux_sym_coarray_statement_token1] = ACTIONS(6730), + [aux_sym_coarray_statement_token2] = ACTIONS(6730), + [aux_sym_coarray_statement_token6] = ACTIONS(6730), + [aux_sym_coarray_statement_token8] = ACTIONS(6730), + [aux_sym_coarray_statement_token11] = ACTIONS(6730), + [aux_sym_coarray_statement_token12] = ACTIONS(6730), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6730), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6730), + [aux_sym_identifier_token1] = ACTIONS(6730), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6734), + }, + [2722] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [aux_sym_preproc_else_token1] = ACTIONS(4399), + [aux_sym_preproc_elif_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + }, + [2723] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [aux_sym_preproc_else_token1] = ACTIONS(4403), + [aux_sym_preproc_elif_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + }, + [2724] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [aux_sym_preproc_else_token1] = ACTIONS(4407), + [aux_sym_preproc_elif_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + }, + [2725] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [aux_sym_preproc_else_token1] = ACTIONS(4411), + [aux_sym_preproc_elif_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - }, - [2778] = { - [aux_sym_preproc_include_token1] = ACTIONS(6800), - [aux_sym_preproc_def_token1] = ACTIONS(6800), - [aux_sym_preproc_if_token1] = ACTIONS(6800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6800), - [sym_preproc_directive] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6800), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6800), - [aux_sym_interface_statement_token1] = ACTIONS(6800), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6800), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6800), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6800), - [aux_sym_language_binding_token1] = ACTIONS(6800), - [aux_sym_procedure_attributes_token1] = ACTIONS(6800), - [aux_sym_procedure_attributes_token3] = ACTIONS(6800), - [aux_sym_contains_statement_token1] = ACTIONS(6800), - [aux_sym_use_statement_token1] = ACTIONS(6800), - [aux_sym_use_statement_token2] = ACTIONS(6800), - [aux_sym_implicit_statement_token1] = ACTIONS(6800), - [aux_sym_implicit_statement_token3] = ACTIONS(6800), - [aux_sym_implicit_statement_token4] = ACTIONS(6800), - [aux_sym_save_statement_token1] = ACTIONS(6800), - [aux_sym_private_statement_token1] = ACTIONS(6800), - [aux_sym_public_statement_token1] = ACTIONS(6800), - [aux_sym_namelist_statement_token1] = ACTIONS(6800), - [aux_sym_common_statement_token1] = ACTIONS(6800), - [aux_sym_import_statement_token1] = ACTIONS(6800), - [aux_sym_derived_type_definition_token1] = ACTIONS(6800), - [aux_sym_abstract_specifier_token1] = ACTIONS(6800), - [aux_sym_procedure_attribute_token6] = ACTIONS(6800), - [aux_sym_variable_attributes_token1] = ACTIONS(6800), - [aux_sym_variable_attributes_token2] = ACTIONS(6800), - [aux_sym_variable_attributes_token3] = ACTIONS(6800), - [aux_sym_variable_attributes_token4] = ACTIONS(6800), - [aux_sym_variable_attributes_token5] = ACTIONS(6800), - [aux_sym__intrinsic_type_token1] = ACTIONS(6800), - [aux_sym__intrinsic_type_token2] = ACTIONS(6800), - [aux_sym__intrinsic_type_token3] = ACTIONS(6800), - [aux_sym__intrinsic_type_token4] = ACTIONS(6800), - [aux_sym__intrinsic_type_token6] = ACTIONS(6800), - [aux_sym__intrinsic_type_token7] = ACTIONS(6800), - [aux_sym__intrinsic_type_token8] = ACTIONS(6800), - [aux_sym__intrinsic_type_token9] = ACTIONS(6800), - [aux_sym__intrinsic_type_token10] = ACTIONS(6800), - [aux_sym_derived_type_token1] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6800), - [aux_sym_type_qualifier_token1] = ACTIONS(6800), - [aux_sym_type_qualifier_token2] = ACTIONS(6800), - [aux_sym_equivalence_statement_token1] = ACTIONS(6800), - [aux_sym_stop_statement_token1] = ACTIONS(6800), - [aux_sym_stop_statement_token2] = ACTIONS(6800), - [aux_sym_keyword_statement_token2] = ACTIONS(6800), - [aux_sym_keyword_statement_token3] = ACTIONS(6800), - [aux_sym_include_statement_token1] = ACTIONS(6800), - [aux_sym_data_statement_token1] = ACTIONS(6800), - [aux_sym__inline_if_statement_token1] = ACTIONS(6800), - [aux_sym_end_if_statement_token1] = ACTIONS(6800), - [aux_sym_elseif_clause_token2] = ACTIONS(6800), - [aux_sym_select_case_statement_token1] = ACTIONS(6800), - [aux_sym_block_construct_token1] = ACTIONS(6800), - [aux_sym_format_statement_token1] = ACTIONS(6800), - [aux_sym_inquire_statement_token1] = ACTIONS(6800), - [aux_sym_enum_statement_token1] = ACTIONS(6800), - [aux_sym_entry_statement_token1] = ACTIONS(6800), - [aux_sym_null_literal_token1] = ACTIONS(6800), - [aux_sym_coarray_statement_token1] = ACTIONS(6800), - [aux_sym_coarray_statement_token2] = ACTIONS(6800), - [aux_sym_coarray_statement_token6] = ACTIONS(6800), - [aux_sym_coarray_statement_token8] = ACTIONS(6800), - [aux_sym_coarray_statement_token11] = ACTIONS(6800), - [aux_sym_coarray_statement_token12] = ACTIONS(6800), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6800), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6800), - [aux_sym_identifier_token1] = ACTIONS(6800), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6804), + [sym__integer_literal] = ACTIONS(4413), }, - [2779] = { - [aux_sym_preproc_include_token1] = ACTIONS(6870), - [aux_sym_preproc_def_token1] = ACTIONS(6870), - [aux_sym_preproc_if_token1] = ACTIONS(6870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6870), - [sym_preproc_directive] = ACTIONS(6870), + [2726] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [aux_sym_preproc_else_token1] = ACTIONS(4415), + [aux_sym_preproc_elif_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6870), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6870), - [aux_sym_interface_statement_token1] = ACTIONS(6870), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6870), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6870), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6870), - [aux_sym_language_binding_token1] = ACTIONS(6870), - [aux_sym_procedure_attributes_token1] = ACTIONS(6870), - [aux_sym_procedure_attributes_token3] = ACTIONS(6870), - [aux_sym_contains_statement_token1] = ACTIONS(6870), - [aux_sym_use_statement_token1] = ACTIONS(6870), - [aux_sym_use_statement_token2] = ACTIONS(6870), - [aux_sym_implicit_statement_token1] = ACTIONS(6870), - [aux_sym_implicit_statement_token3] = ACTIONS(6870), - [aux_sym_implicit_statement_token4] = ACTIONS(6870), - [aux_sym_save_statement_token1] = ACTIONS(6870), - [aux_sym_private_statement_token1] = ACTIONS(6870), - [aux_sym_public_statement_token1] = ACTIONS(6870), - [aux_sym_namelist_statement_token1] = ACTIONS(6870), - [aux_sym_common_statement_token1] = ACTIONS(6870), - [aux_sym_import_statement_token1] = ACTIONS(6870), - [aux_sym_derived_type_definition_token1] = ACTIONS(6870), - [aux_sym_abstract_specifier_token1] = ACTIONS(6870), - [aux_sym_procedure_attribute_token6] = ACTIONS(6870), - [aux_sym_variable_attributes_token1] = ACTIONS(6870), - [aux_sym_variable_attributes_token2] = ACTIONS(6870), - [aux_sym_variable_attributes_token3] = ACTIONS(6870), - [aux_sym_variable_attributes_token4] = ACTIONS(6870), - [aux_sym_variable_attributes_token5] = ACTIONS(6870), - [aux_sym__intrinsic_type_token1] = ACTIONS(6870), - [aux_sym__intrinsic_type_token2] = ACTIONS(6870), - [aux_sym__intrinsic_type_token3] = ACTIONS(6870), - [aux_sym__intrinsic_type_token4] = ACTIONS(6870), - [aux_sym__intrinsic_type_token6] = ACTIONS(6870), - [aux_sym__intrinsic_type_token7] = ACTIONS(6870), - [aux_sym__intrinsic_type_token8] = ACTIONS(6870), - [aux_sym__intrinsic_type_token9] = ACTIONS(6870), - [aux_sym__intrinsic_type_token10] = ACTIONS(6870), - [aux_sym_derived_type_token1] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6870), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6870), - [aux_sym_type_qualifier_token1] = ACTIONS(6870), - [aux_sym_type_qualifier_token2] = ACTIONS(6870), - [aux_sym_equivalence_statement_token1] = ACTIONS(6870), - [aux_sym_stop_statement_token1] = ACTIONS(6870), - [aux_sym_stop_statement_token2] = ACTIONS(6870), - [aux_sym_keyword_statement_token2] = ACTIONS(6870), - [aux_sym_keyword_statement_token3] = ACTIONS(6870), - [aux_sym_include_statement_token1] = ACTIONS(6870), - [aux_sym_data_statement_token1] = ACTIONS(6870), - [aux_sym__inline_if_statement_token1] = ACTIONS(6870), - [aux_sym_end_if_statement_token1] = ACTIONS(6870), - [aux_sym_elseif_clause_token2] = ACTIONS(6870), - [aux_sym_select_case_statement_token1] = ACTIONS(6870), - [aux_sym_block_construct_token1] = ACTIONS(6870), - [aux_sym_format_statement_token1] = ACTIONS(6870), - [aux_sym_inquire_statement_token1] = ACTIONS(6870), - [aux_sym_enum_statement_token1] = ACTIONS(6870), - [aux_sym_entry_statement_token1] = ACTIONS(6870), - [aux_sym_null_literal_token1] = ACTIONS(6870), - [aux_sym_coarray_statement_token1] = ACTIONS(6870), - [aux_sym_coarray_statement_token2] = ACTIONS(6870), - [aux_sym_coarray_statement_token6] = ACTIONS(6870), - [aux_sym_coarray_statement_token8] = ACTIONS(6870), - [aux_sym_coarray_statement_token11] = ACTIONS(6870), - [aux_sym_coarray_statement_token12] = ACTIONS(6870), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6870), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6870), - [aux_sym_identifier_token1] = ACTIONS(6870), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6872), + [sym__integer_literal] = ACTIONS(4417), }, - [2780] = { - [aux_sym_preproc_include_token1] = ACTIONS(4990), - [aux_sym_preproc_def_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), - [sym_preproc_directive] = ACTIONS(4990), + [2727] = { + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_PLUS] = ACTIONS(6794), + [anon_sym_DASH] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6792), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6792), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6792), + [aux_sym_procedure_attributes_token3] = ACTIONS(6792), + [aux_sym_use_statement_token2] = ACTIONS(6792), + [aux_sym_implicit_statement_token4] = ACTIONS(6792), + [aux_sym_save_statement_token1] = ACTIONS(6792), + [aux_sym_private_statement_token1] = ACTIONS(6792), + [aux_sym_public_statement_token1] = ACTIONS(6792), + [aux_sym_derived_type_definition_token1] = ACTIONS(6792), + [aux_sym_procedure_attribute_token6] = ACTIONS(6792), + [aux_sym_variable_attributes_token2] = ACTIONS(6792), + [aux_sym_variable_attributes_token3] = ACTIONS(6792), + [aux_sym_variable_attributes_token5] = ACTIONS(6792), + [aux_sym__intrinsic_type_token1] = ACTIONS(6792), + [aux_sym__intrinsic_type_token3] = ACTIONS(6792), + [aux_sym__intrinsic_type_token4] = ACTIONS(6792), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6792), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6792), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6792), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6792), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6792), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6792), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6792), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6792), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6792), + [aux_sym_type_qualifier_token1] = ACTIONS(6792), + [aux_sym_type_qualifier_token2] = ACTIONS(6792), + [anon_sym_SEMI] = ACTIONS(6794), + [aux_sym_stop_statement_token1] = ACTIONS(6792), + [aux_sym_stop_statement_token2] = ACTIONS(6792), + [aux_sym_subroutine_call_token1] = ACTIONS(6792), + [aux_sym_keyword_statement_token1] = ACTIONS(6792), + [aux_sym_keyword_statement_token2] = ACTIONS(6792), + [aux_sym_keyword_statement_token3] = ACTIONS(6792), + [aux_sym_keyword_statement_token4] = ACTIONS(6792), + [aux_sym_keyword_statement_token6] = ACTIONS(6792), + [aux_sym_keyword_statement_token7] = ACTIONS(6792), + [aux_sym_include_statement_token1] = ACTIONS(6792), + [aux_sym_data_statement_token1] = ACTIONS(6792), + [aux_sym_do_loop_statement_token1] = ACTIONS(6792), + [aux_sym__inline_if_statement_token1] = ACTIONS(6792), + [aux_sym_end_if_statement_token1] = ACTIONS(6792), + [aux_sym_elseif_clause_token2] = ACTIONS(6792), + [aux_sym__inline_where_statement_token1] = ACTIONS(6792), + [aux_sym__forall_control_expression_token1] = ACTIONS(6792), + [aux_sym_select_case_statement_token1] = ACTIONS(6792), + [aux_sym_select_case_statement_token3] = ACTIONS(6792), + [aux_sym_select_type_statement_token1] = ACTIONS(6792), + [aux_sym_select_rank_statement_token2] = ACTIONS(6792), + [aux_sym_block_construct_token1] = ACTIONS(6792), + [aux_sym_associate_statement_token1] = ACTIONS(6792), + [aux_sym_format_statement_token1] = ACTIONS(6792), + [aux_sym_print_statement_token1] = ACTIONS(6792), + [aux_sym_open_statement_token1] = ACTIONS(6792), + [aux_sym_close_statement_token1] = ACTIONS(6792), + [aux_sym_inquire_statement_token1] = ACTIONS(6792), + [aux_sym_file_position_statement_token1] = ACTIONS(6792), + [aux_sym_file_position_statement_token2] = ACTIONS(6792), + [aux_sym_file_position_statement_token3] = ACTIONS(6792), + [aux_sym_file_position_statement_token4] = ACTIONS(6792), + [aux_sym_allocate_statement_token1] = ACTIONS(6792), + [aux_sym_entry_statement_token1] = ACTIONS(6792), + [aux_sym_logical_expression_token5] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6792), + [anon_sym_LPAREN_SLASH] = ACTIONS(6794), + [anon_sym_LBRACK] = ACTIONS(6794), + [aux_sym_boolean_literal_token1] = ACTIONS(6794), + [aux_sym_boolean_literal_token2] = ACTIONS(6794), + [aux_sym_null_literal_token1] = ACTIONS(6792), + [aux_sym_coarray_statement_token1] = ACTIONS(6792), + [aux_sym_coarray_statement_token2] = ACTIONS(6792), + [aux_sym_coarray_statement_token6] = ACTIONS(6792), + [aux_sym_coarray_statement_token8] = ACTIONS(6792), + [aux_sym_coarray_statement_token11] = ACTIONS(6792), + [aux_sym_coarray_statement_token12] = ACTIONS(6792), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6792), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6792), + [aux_sym_identifier_token1] = ACTIONS(6792), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6794), + [sym__float_literal] = ACTIONS(6794), + [sym__boz_literal] = ACTIONS(6794), + [sym__string_literal] = ACTIONS(6794), + [sym__string_literal_kind] = ACTIONS(6794), + [sym__external_end_of_statement] = ACTIONS(6794), + }, + [2728] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token2] = ACTIONS(5022), + [aux_sym_preproc_else_token1] = ACTIONS(5022), + [aux_sym_preproc_elif_token1] = ACTIONS(5022), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + }, + [2729] = { + [aux_sym_preproc_include_token1] = ACTIONS(6770), + [aux_sym_preproc_def_token1] = ACTIONS(6770), + [aux_sym_preproc_if_token1] = ACTIONS(6770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6770), + [sym_preproc_directive] = ACTIONS(6770), + [sym_preproc_comment] = ACTIONS(6796), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4990), - [aux_sym_end_module_statement_token1] = ACTIONS(4990), - [aux_sym_interface_statement_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_language_binding_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token3] = ACTIONS(4990), - [aux_sym_contains_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token2] = ACTIONS(4990), - [aux_sym_implicit_statement_token1] = ACTIONS(4990), - [aux_sym_implicit_statement_token3] = ACTIONS(4990), - [aux_sym_implicit_statement_token4] = ACTIONS(4990), - [aux_sym_save_statement_token1] = ACTIONS(4990), - [aux_sym_private_statement_token1] = ACTIONS(4990), - [aux_sym_public_statement_token1] = ACTIONS(4990), - [aux_sym_namelist_statement_token1] = ACTIONS(4990), - [aux_sym_common_statement_token1] = ACTIONS(4990), - [aux_sym_import_statement_token1] = ACTIONS(4990), - [aux_sym_derived_type_definition_token1] = ACTIONS(4990), - [aux_sym_abstract_specifier_token1] = ACTIONS(4990), - [aux_sym_procedure_attribute_token6] = ACTIONS(4990), - [aux_sym_variable_attributes_token1] = ACTIONS(4990), - [aux_sym_variable_attributes_token2] = ACTIONS(4990), - [aux_sym_variable_attributes_token3] = ACTIONS(4990), - [aux_sym_variable_attributes_token4] = ACTIONS(4990), - [aux_sym_variable_attributes_token5] = ACTIONS(4990), - [aux_sym__intrinsic_type_token1] = ACTIONS(4990), - [aux_sym__intrinsic_type_token2] = ACTIONS(4990), - [aux_sym__intrinsic_type_token3] = ACTIONS(4990), - [aux_sym__intrinsic_type_token4] = ACTIONS(4990), - [aux_sym__intrinsic_type_token6] = ACTIONS(4990), - [aux_sym__intrinsic_type_token7] = ACTIONS(4990), - [aux_sym__intrinsic_type_token8] = ACTIONS(4990), - [aux_sym__intrinsic_type_token9] = ACTIONS(4990), - [aux_sym__intrinsic_type_token10] = ACTIONS(4990), - [aux_sym_derived_type_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), - [aux_sym_type_qualifier_token1] = ACTIONS(4990), - [aux_sym_type_qualifier_token2] = ACTIONS(4990), - [aux_sym_equivalence_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token3] = ACTIONS(4990), - [aux_sym_include_statement_token1] = ACTIONS(4990), - [aux_sym_data_statement_token1] = ACTIONS(4990), - [aux_sym__inline_if_statement_token1] = ACTIONS(4990), - [aux_sym_end_if_statement_token1] = ACTIONS(4990), - [aux_sym_elseif_clause_token2] = ACTIONS(4990), - [aux_sym_select_case_statement_token1] = ACTIONS(4990), - [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_format_statement_token1] = ACTIONS(4990), - [aux_sym_inquire_statement_token1] = ACTIONS(4990), - [aux_sym_enum_statement_token1] = ACTIONS(4990), - [aux_sym_entry_statement_token1] = ACTIONS(4990), - [aux_sym_null_literal_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token2] = ACTIONS(4990), - [aux_sym_coarray_statement_token6] = ACTIONS(4990), - [aux_sym_coarray_statement_token8] = ACTIONS(4990), - [aux_sym_coarray_statement_token11] = ACTIONS(4990), - [aux_sym_coarray_statement_token12] = ACTIONS(4990), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), - [aux_sym_identifier_token1] = ACTIONS(4990), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4992), + [aux_sym_end_program_statement_token1] = ACTIONS(6770), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6770), + [aux_sym_interface_statement_token1] = ACTIONS(6770), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6770), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6770), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6770), + [aux_sym_language_binding_token1] = ACTIONS(6770), + [aux_sym_procedure_attributes_token1] = ACTIONS(6770), + [aux_sym_procedure_attributes_token3] = ACTIONS(6770), + [aux_sym_contains_statement_token1] = ACTIONS(6770), + [aux_sym_use_statement_token1] = ACTIONS(6770), + [aux_sym_use_statement_token2] = ACTIONS(6770), + [aux_sym_implicit_statement_token1] = ACTIONS(6770), + [aux_sym_implicit_statement_token3] = ACTIONS(6770), + [aux_sym_implicit_statement_token4] = ACTIONS(6770), + [aux_sym_save_statement_token1] = ACTIONS(6770), + [aux_sym_private_statement_token1] = ACTIONS(6770), + [aux_sym_public_statement_token1] = ACTIONS(6770), + [aux_sym_namelist_statement_token1] = ACTIONS(6770), + [aux_sym_common_statement_token1] = ACTIONS(6770), + [aux_sym_import_statement_token1] = ACTIONS(6770), + [aux_sym_derived_type_definition_token1] = ACTIONS(6770), + [aux_sym_abstract_specifier_token1] = ACTIONS(6770), + [aux_sym_procedure_attribute_token6] = ACTIONS(6770), + [aux_sym_variable_attributes_token1] = ACTIONS(6770), + [aux_sym_variable_attributes_token2] = ACTIONS(6770), + [aux_sym_variable_attributes_token3] = ACTIONS(6770), + [aux_sym_variable_attributes_token4] = ACTIONS(6770), + [aux_sym_variable_attributes_token5] = ACTIONS(6770), + [aux_sym__intrinsic_type_token1] = ACTIONS(6770), + [aux_sym__intrinsic_type_token2] = ACTIONS(6770), + [aux_sym__intrinsic_type_token3] = ACTIONS(6770), + [aux_sym__intrinsic_type_token4] = ACTIONS(6770), + [aux_sym__intrinsic_type_token6] = ACTIONS(6770), + [aux_sym__intrinsic_type_token7] = ACTIONS(6770), + [aux_sym__intrinsic_type_token8] = ACTIONS(6770), + [aux_sym__intrinsic_type_token9] = ACTIONS(6770), + [aux_sym__intrinsic_type_token10] = ACTIONS(6770), + [aux_sym_derived_type_token1] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6770), + [aux_sym_type_qualifier_token1] = ACTIONS(6770), + [aux_sym_type_qualifier_token2] = ACTIONS(6770), + [aux_sym_equivalence_statement_token1] = ACTIONS(6770), + [aux_sym_stop_statement_token1] = ACTIONS(6770), + [aux_sym_stop_statement_token2] = ACTIONS(6770), + [aux_sym_keyword_statement_token2] = ACTIONS(6770), + [aux_sym_keyword_statement_token3] = ACTIONS(6770), + [aux_sym_include_statement_token1] = ACTIONS(6770), + [aux_sym_data_statement_token1] = ACTIONS(6770), + [aux_sym__inline_if_statement_token1] = ACTIONS(6770), + [aux_sym_end_if_statement_token1] = ACTIONS(6770), + [aux_sym_elseif_clause_token2] = ACTIONS(6770), + [aux_sym_select_case_statement_token1] = ACTIONS(6770), + [aux_sym_block_construct_token1] = ACTIONS(6770), + [aux_sym_format_statement_token1] = ACTIONS(6770), + [aux_sym_inquire_statement_token1] = ACTIONS(6770), + [aux_sym_enum_statement_token1] = ACTIONS(6770), + [aux_sym_entry_statement_token1] = ACTIONS(6770), + [aux_sym_null_literal_token1] = ACTIONS(6770), + [aux_sym_coarray_statement_token1] = ACTIONS(6770), + [aux_sym_coarray_statement_token2] = ACTIONS(6770), + [aux_sym_coarray_statement_token6] = ACTIONS(6770), + [aux_sym_coarray_statement_token8] = ACTIONS(6770), + [aux_sym_coarray_statement_token11] = ACTIONS(6770), + [aux_sym_coarray_statement_token12] = ACTIONS(6770), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6770), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6770), + [aux_sym_identifier_token1] = ACTIONS(6770), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6774), }, - [2781] = { - [aux_sym_preproc_include_token1] = ACTIONS(6874), - [aux_sym_preproc_def_token1] = ACTIONS(6874), - [aux_sym_preproc_if_token1] = ACTIONS(6874), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6874), - [sym_preproc_directive] = ACTIONS(6874), + [2730] = { + [aux_sym_preproc_include_token1] = ACTIONS(6798), + [aux_sym_preproc_def_token1] = ACTIONS(6798), + [aux_sym_preproc_if_token1] = ACTIONS(6798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6798), + [sym_preproc_directive] = ACTIONS(6798), + [sym_preproc_comment] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6798), + [aux_sym_end_module_statement_token1] = ACTIONS(6798), + [aux_sym_interface_statement_token1] = ACTIONS(6798), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6798), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6798), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6798), + [aux_sym_language_binding_token1] = ACTIONS(6798), + [aux_sym_procedure_attributes_token1] = ACTIONS(6798), + [aux_sym_procedure_attributes_token3] = ACTIONS(6798), + [aux_sym_contains_statement_token1] = ACTIONS(6798), + [aux_sym_use_statement_token1] = ACTIONS(6798), + [aux_sym_use_statement_token2] = ACTIONS(6798), + [aux_sym_implicit_statement_token1] = ACTIONS(6798), + [aux_sym_implicit_statement_token3] = ACTIONS(6798), + [aux_sym_implicit_statement_token4] = ACTIONS(6798), + [aux_sym_save_statement_token1] = ACTIONS(6798), + [aux_sym_private_statement_token1] = ACTIONS(6798), + [aux_sym_public_statement_token1] = ACTIONS(6798), + [aux_sym_namelist_statement_token1] = ACTIONS(6798), + [aux_sym_common_statement_token1] = ACTIONS(6798), + [aux_sym_import_statement_token1] = ACTIONS(6798), + [aux_sym_derived_type_definition_token1] = ACTIONS(6798), + [aux_sym_abstract_specifier_token1] = ACTIONS(6798), + [aux_sym_procedure_attribute_token6] = ACTIONS(6798), + [aux_sym_variable_attributes_token1] = ACTIONS(6798), + [aux_sym_variable_attributes_token2] = ACTIONS(6798), + [aux_sym_variable_attributes_token3] = ACTIONS(6798), + [aux_sym_variable_attributes_token4] = ACTIONS(6798), + [aux_sym_variable_attributes_token5] = ACTIONS(6798), + [aux_sym__intrinsic_type_token1] = ACTIONS(6798), + [aux_sym__intrinsic_type_token2] = ACTIONS(6798), + [aux_sym__intrinsic_type_token3] = ACTIONS(6798), + [aux_sym__intrinsic_type_token4] = ACTIONS(6798), + [aux_sym__intrinsic_type_token6] = ACTIONS(6798), + [aux_sym__intrinsic_type_token7] = ACTIONS(6798), + [aux_sym__intrinsic_type_token8] = ACTIONS(6798), + [aux_sym__intrinsic_type_token9] = ACTIONS(6798), + [aux_sym__intrinsic_type_token10] = ACTIONS(6798), + [aux_sym_derived_type_token1] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6798), + [aux_sym_type_qualifier_token1] = ACTIONS(6798), + [aux_sym_type_qualifier_token2] = ACTIONS(6798), + [aux_sym_equivalence_statement_token1] = ACTIONS(6798), + [aux_sym_stop_statement_token1] = ACTIONS(6798), + [aux_sym_stop_statement_token2] = ACTIONS(6798), + [aux_sym_keyword_statement_token2] = ACTIONS(6798), + [aux_sym_keyword_statement_token3] = ACTIONS(6798), + [aux_sym_include_statement_token1] = ACTIONS(6798), + [aux_sym_data_statement_token1] = ACTIONS(6798), + [aux_sym__inline_if_statement_token1] = ACTIONS(6798), + [aux_sym_end_if_statement_token1] = ACTIONS(6798), + [aux_sym_elseif_clause_token2] = ACTIONS(6798), + [aux_sym_select_case_statement_token1] = ACTIONS(6798), + [aux_sym_block_construct_token1] = ACTIONS(6798), + [aux_sym_format_statement_token1] = ACTIONS(6798), + [aux_sym_inquire_statement_token1] = ACTIONS(6798), + [aux_sym_enum_statement_token1] = ACTIONS(6798), + [aux_sym_entry_statement_token1] = ACTIONS(6798), + [aux_sym_null_literal_token1] = ACTIONS(6798), + [aux_sym_coarray_statement_token1] = ACTIONS(6798), + [aux_sym_coarray_statement_token2] = ACTIONS(6798), + [aux_sym_coarray_statement_token6] = ACTIONS(6798), + [aux_sym_coarray_statement_token8] = ACTIONS(6798), + [aux_sym_coarray_statement_token11] = ACTIONS(6798), + [aux_sym_coarray_statement_token12] = ACTIONS(6798), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6798), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6798), + [aux_sym_identifier_token1] = ACTIONS(6798), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6802), + }, + [2731] = { + [aux_sym_preproc_include_token1] = ACTIONS(6736), + [aux_sym_preproc_def_token1] = ACTIONS(6736), + [aux_sym_preproc_if_token1] = ACTIONS(6736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6736), + [sym_preproc_directive] = ACTIONS(6736), + [sym_preproc_comment] = ACTIONS(6804), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6736), + [aux_sym_end_module_statement_token1] = ACTIONS(6736), + [aux_sym_interface_statement_token1] = ACTIONS(6736), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6736), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6736), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6736), + [aux_sym_language_binding_token1] = ACTIONS(6736), + [aux_sym_procedure_attributes_token1] = ACTIONS(6736), + [aux_sym_procedure_attributes_token3] = ACTIONS(6736), + [aux_sym_contains_statement_token1] = ACTIONS(6736), + [aux_sym_use_statement_token1] = ACTIONS(6736), + [aux_sym_use_statement_token2] = ACTIONS(6736), + [aux_sym_implicit_statement_token1] = ACTIONS(6736), + [aux_sym_implicit_statement_token3] = ACTIONS(6736), + [aux_sym_implicit_statement_token4] = ACTIONS(6736), + [aux_sym_save_statement_token1] = ACTIONS(6736), + [aux_sym_private_statement_token1] = ACTIONS(6736), + [aux_sym_public_statement_token1] = ACTIONS(6736), + [aux_sym_namelist_statement_token1] = ACTIONS(6736), + [aux_sym_common_statement_token1] = ACTIONS(6736), + [aux_sym_import_statement_token1] = ACTIONS(6736), + [aux_sym_derived_type_definition_token1] = ACTIONS(6736), + [aux_sym_abstract_specifier_token1] = ACTIONS(6736), + [aux_sym_procedure_attribute_token6] = ACTIONS(6736), + [aux_sym_variable_attributes_token1] = ACTIONS(6736), + [aux_sym_variable_attributes_token2] = ACTIONS(6736), + [aux_sym_variable_attributes_token3] = ACTIONS(6736), + [aux_sym_variable_attributes_token4] = ACTIONS(6736), + [aux_sym_variable_attributes_token5] = ACTIONS(6736), + [aux_sym__intrinsic_type_token1] = ACTIONS(6736), + [aux_sym__intrinsic_type_token2] = ACTIONS(6736), + [aux_sym__intrinsic_type_token3] = ACTIONS(6736), + [aux_sym__intrinsic_type_token4] = ACTIONS(6736), + [aux_sym__intrinsic_type_token6] = ACTIONS(6736), + [aux_sym__intrinsic_type_token7] = ACTIONS(6736), + [aux_sym__intrinsic_type_token8] = ACTIONS(6736), + [aux_sym__intrinsic_type_token9] = ACTIONS(6736), + [aux_sym__intrinsic_type_token10] = ACTIONS(6736), + [aux_sym_derived_type_token1] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6736), + [aux_sym_type_qualifier_token1] = ACTIONS(6736), + [aux_sym_type_qualifier_token2] = ACTIONS(6736), + [aux_sym_equivalence_statement_token1] = ACTIONS(6736), + [aux_sym_stop_statement_token1] = ACTIONS(6736), + [aux_sym_stop_statement_token2] = ACTIONS(6736), + [aux_sym_keyword_statement_token2] = ACTIONS(6736), + [aux_sym_keyword_statement_token3] = ACTIONS(6736), + [aux_sym_include_statement_token1] = ACTIONS(6736), + [aux_sym_data_statement_token1] = ACTIONS(6736), + [aux_sym__inline_if_statement_token1] = ACTIONS(6736), + [aux_sym_end_if_statement_token1] = ACTIONS(6736), + [aux_sym_elseif_clause_token2] = ACTIONS(6736), + [aux_sym_select_case_statement_token1] = ACTIONS(6736), + [aux_sym_block_construct_token1] = ACTIONS(6736), + [aux_sym_format_statement_token1] = ACTIONS(6736), + [aux_sym_inquire_statement_token1] = ACTIONS(6736), + [aux_sym_enum_statement_token1] = ACTIONS(6736), + [aux_sym_entry_statement_token1] = ACTIONS(6736), + [aux_sym_null_literal_token1] = ACTIONS(6736), + [aux_sym_coarray_statement_token1] = ACTIONS(6736), + [aux_sym_coarray_statement_token2] = ACTIONS(6736), + [aux_sym_coarray_statement_token6] = ACTIONS(6736), + [aux_sym_coarray_statement_token8] = ACTIONS(6736), + [aux_sym_coarray_statement_token11] = ACTIONS(6736), + [aux_sym_coarray_statement_token12] = ACTIONS(6736), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6736), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6736), + [aux_sym_identifier_token1] = ACTIONS(6736), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6740), + }, + [2732] = { + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token2] = ACTIONS(5051), + [aux_sym_preproc_else_token1] = ACTIONS(5051), + [aux_sym_preproc_elif_token1] = ACTIONS(5051), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + }, + [2733] = { + [aux_sym_preproc_include_token1] = ACTIONS(6806), + [aux_sym_preproc_def_token1] = ACTIONS(6806), + [aux_sym_preproc_if_token1] = ACTIONS(6806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6806), + [sym_preproc_directive] = ACTIONS(6806), + [sym_preproc_comment] = ACTIONS(6808), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6874), - [aux_sym_end_module_statement_token1] = ACTIONS(6874), - [aux_sym_interface_statement_token1] = ACTIONS(6874), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6874), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6874), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6874), - [aux_sym_language_binding_token1] = ACTIONS(6874), - [aux_sym_procedure_attributes_token1] = ACTIONS(6874), - [aux_sym_procedure_attributes_token3] = ACTIONS(6874), - [aux_sym_contains_statement_token1] = ACTIONS(6874), - [aux_sym_use_statement_token1] = ACTIONS(6874), - [aux_sym_use_statement_token2] = ACTIONS(6874), - [aux_sym_implicit_statement_token1] = ACTIONS(6874), - [aux_sym_implicit_statement_token3] = ACTIONS(6874), - [aux_sym_implicit_statement_token4] = ACTIONS(6874), - [aux_sym_save_statement_token1] = ACTIONS(6874), - [aux_sym_private_statement_token1] = ACTIONS(6874), - [aux_sym_public_statement_token1] = ACTIONS(6874), - [aux_sym_namelist_statement_token1] = ACTIONS(6874), - [aux_sym_common_statement_token1] = ACTIONS(6874), - [aux_sym_import_statement_token1] = ACTIONS(6874), - [aux_sym_derived_type_definition_token1] = ACTIONS(6874), - [aux_sym_abstract_specifier_token1] = ACTIONS(6874), - [aux_sym_procedure_attribute_token6] = ACTIONS(6874), - [aux_sym_variable_attributes_token1] = ACTIONS(6874), - [aux_sym_variable_attributes_token2] = ACTIONS(6874), - [aux_sym_variable_attributes_token3] = ACTIONS(6874), - [aux_sym_variable_attributes_token4] = ACTIONS(6874), - [aux_sym_variable_attributes_token5] = ACTIONS(6874), - [aux_sym__intrinsic_type_token1] = ACTIONS(6874), - [aux_sym__intrinsic_type_token2] = ACTIONS(6874), - [aux_sym__intrinsic_type_token3] = ACTIONS(6874), - [aux_sym__intrinsic_type_token4] = ACTIONS(6874), - [aux_sym__intrinsic_type_token6] = ACTIONS(6874), - [aux_sym__intrinsic_type_token7] = ACTIONS(6874), - [aux_sym__intrinsic_type_token8] = ACTIONS(6874), - [aux_sym__intrinsic_type_token9] = ACTIONS(6874), - [aux_sym__intrinsic_type_token10] = ACTIONS(6874), - [aux_sym_derived_type_token1] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6874), - [aux_sym_type_qualifier_token1] = ACTIONS(6874), - [aux_sym_type_qualifier_token2] = ACTIONS(6874), - [aux_sym_equivalence_statement_token1] = ACTIONS(6874), - [aux_sym_stop_statement_token1] = ACTIONS(6874), - [aux_sym_stop_statement_token2] = ACTIONS(6874), - [aux_sym_keyword_statement_token2] = ACTIONS(6874), - [aux_sym_keyword_statement_token3] = ACTIONS(6874), - [aux_sym_include_statement_token1] = ACTIONS(6874), - [aux_sym_data_statement_token1] = ACTIONS(6874), - [aux_sym__inline_if_statement_token1] = ACTIONS(6874), - [aux_sym_end_if_statement_token1] = ACTIONS(6874), - [aux_sym_elseif_clause_token2] = ACTIONS(6874), - [aux_sym_select_case_statement_token1] = ACTIONS(6874), - [aux_sym_block_construct_token1] = ACTIONS(6874), - [aux_sym_format_statement_token1] = ACTIONS(6874), - [aux_sym_inquire_statement_token1] = ACTIONS(6874), - [aux_sym_enum_statement_token1] = ACTIONS(6874), - [aux_sym_entry_statement_token1] = ACTIONS(6874), - [aux_sym_null_literal_token1] = ACTIONS(6874), - [aux_sym_coarray_statement_token1] = ACTIONS(6874), - [aux_sym_coarray_statement_token2] = ACTIONS(6874), - [aux_sym_coarray_statement_token6] = ACTIONS(6874), - [aux_sym_coarray_statement_token8] = ACTIONS(6874), - [aux_sym_coarray_statement_token11] = ACTIONS(6874), - [aux_sym_coarray_statement_token12] = ACTIONS(6874), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6874), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6874), - [aux_sym_identifier_token1] = ACTIONS(6874), + [aux_sym_end_program_statement_token1] = ACTIONS(6806), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6806), + [aux_sym_interface_statement_token1] = ACTIONS(6806), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6806), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6806), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6806), + [aux_sym_language_binding_token1] = ACTIONS(6806), + [aux_sym_procedure_attributes_token1] = ACTIONS(6806), + [aux_sym_procedure_attributes_token3] = ACTIONS(6806), + [aux_sym_contains_statement_token1] = ACTIONS(6806), + [aux_sym_use_statement_token1] = ACTIONS(6806), + [aux_sym_use_statement_token2] = ACTIONS(6806), + [aux_sym_implicit_statement_token1] = ACTIONS(6806), + [aux_sym_implicit_statement_token3] = ACTIONS(6806), + [aux_sym_implicit_statement_token4] = ACTIONS(6806), + [aux_sym_save_statement_token1] = ACTIONS(6806), + [aux_sym_private_statement_token1] = ACTIONS(6806), + [aux_sym_public_statement_token1] = ACTIONS(6806), + [aux_sym_namelist_statement_token1] = ACTIONS(6806), + [aux_sym_common_statement_token1] = ACTIONS(6806), + [aux_sym_import_statement_token1] = ACTIONS(6806), + [aux_sym_derived_type_definition_token1] = ACTIONS(6806), + [aux_sym_abstract_specifier_token1] = ACTIONS(6806), + [aux_sym_procedure_attribute_token6] = ACTIONS(6806), + [aux_sym_variable_attributes_token1] = ACTIONS(6806), + [aux_sym_variable_attributes_token2] = ACTIONS(6806), + [aux_sym_variable_attributes_token3] = ACTIONS(6806), + [aux_sym_variable_attributes_token4] = ACTIONS(6806), + [aux_sym_variable_attributes_token5] = ACTIONS(6806), + [aux_sym__intrinsic_type_token1] = ACTIONS(6806), + [aux_sym__intrinsic_type_token2] = ACTIONS(6806), + [aux_sym__intrinsic_type_token3] = ACTIONS(6806), + [aux_sym__intrinsic_type_token4] = ACTIONS(6806), + [aux_sym__intrinsic_type_token6] = ACTIONS(6806), + [aux_sym__intrinsic_type_token7] = ACTIONS(6806), + [aux_sym__intrinsic_type_token8] = ACTIONS(6806), + [aux_sym__intrinsic_type_token9] = ACTIONS(6806), + [aux_sym__intrinsic_type_token10] = ACTIONS(6806), + [aux_sym_derived_type_token1] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6806), + [aux_sym_type_qualifier_token1] = ACTIONS(6806), + [aux_sym_type_qualifier_token2] = ACTIONS(6806), + [aux_sym_equivalence_statement_token1] = ACTIONS(6806), + [aux_sym_stop_statement_token1] = ACTIONS(6806), + [aux_sym_stop_statement_token2] = ACTIONS(6806), + [aux_sym_keyword_statement_token2] = ACTIONS(6806), + [aux_sym_keyword_statement_token3] = ACTIONS(6806), + [aux_sym_include_statement_token1] = ACTIONS(6806), + [aux_sym_data_statement_token1] = ACTIONS(6806), + [aux_sym__inline_if_statement_token1] = ACTIONS(6806), + [aux_sym_end_if_statement_token1] = ACTIONS(6806), + [aux_sym_elseif_clause_token2] = ACTIONS(6806), + [aux_sym_select_case_statement_token1] = ACTIONS(6806), + [aux_sym_block_construct_token1] = ACTIONS(6806), + [aux_sym_format_statement_token1] = ACTIONS(6806), + [aux_sym_inquire_statement_token1] = ACTIONS(6806), + [aux_sym_enum_statement_token1] = ACTIONS(6806), + [aux_sym_entry_statement_token1] = ACTIONS(6806), + [aux_sym_null_literal_token1] = ACTIONS(6806), + [aux_sym_coarray_statement_token1] = ACTIONS(6806), + [aux_sym_coarray_statement_token2] = ACTIONS(6806), + [aux_sym_coarray_statement_token6] = ACTIONS(6806), + [aux_sym_coarray_statement_token8] = ACTIONS(6806), + [aux_sym_coarray_statement_token11] = ACTIONS(6806), + [aux_sym_coarray_statement_token12] = ACTIONS(6806), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6806), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6806), + [aux_sym_identifier_token1] = ACTIONS(6806), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6876), + [sym__integer_literal] = ACTIONS(6810), }, - [2782] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_module_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), + [2734] = { + [aux_sym_preproc_include_token1] = ACTIONS(6784), + [aux_sym_preproc_def_token1] = ACTIONS(6784), + [aux_sym_preproc_if_token1] = ACTIONS(6784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6784), + [sym_preproc_directive] = ACTIONS(6784), + [sym_preproc_comment] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6784), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6784), + [aux_sym_interface_statement_token1] = ACTIONS(6784), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6784), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6784), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6784), + [aux_sym_language_binding_token1] = ACTIONS(6784), + [aux_sym_procedure_attributes_token1] = ACTIONS(6784), + [aux_sym_procedure_attributes_token3] = ACTIONS(6784), + [aux_sym_contains_statement_token1] = ACTIONS(6784), + [aux_sym_use_statement_token1] = ACTIONS(6784), + [aux_sym_use_statement_token2] = ACTIONS(6784), + [aux_sym_implicit_statement_token1] = ACTIONS(6784), + [aux_sym_implicit_statement_token3] = ACTIONS(6784), + [aux_sym_implicit_statement_token4] = ACTIONS(6784), + [aux_sym_save_statement_token1] = ACTIONS(6784), + [aux_sym_private_statement_token1] = ACTIONS(6784), + [aux_sym_public_statement_token1] = ACTIONS(6784), + [aux_sym_namelist_statement_token1] = ACTIONS(6784), + [aux_sym_common_statement_token1] = ACTIONS(6784), + [aux_sym_import_statement_token1] = ACTIONS(6784), + [aux_sym_derived_type_definition_token1] = ACTIONS(6784), + [aux_sym_abstract_specifier_token1] = ACTIONS(6784), + [aux_sym_procedure_attribute_token6] = ACTIONS(6784), + [aux_sym_variable_attributes_token1] = ACTIONS(6784), + [aux_sym_variable_attributes_token2] = ACTIONS(6784), + [aux_sym_variable_attributes_token3] = ACTIONS(6784), + [aux_sym_variable_attributes_token4] = ACTIONS(6784), + [aux_sym_variable_attributes_token5] = ACTIONS(6784), + [aux_sym__intrinsic_type_token1] = ACTIONS(6784), + [aux_sym__intrinsic_type_token2] = ACTIONS(6784), + [aux_sym__intrinsic_type_token3] = ACTIONS(6784), + [aux_sym__intrinsic_type_token4] = ACTIONS(6784), + [aux_sym__intrinsic_type_token6] = ACTIONS(6784), + [aux_sym__intrinsic_type_token7] = ACTIONS(6784), + [aux_sym__intrinsic_type_token8] = ACTIONS(6784), + [aux_sym__intrinsic_type_token9] = ACTIONS(6784), + [aux_sym__intrinsic_type_token10] = ACTIONS(6784), + [aux_sym_derived_type_token1] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6784), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6784), + [aux_sym_type_qualifier_token1] = ACTIONS(6784), + [aux_sym_type_qualifier_token2] = ACTIONS(6784), + [aux_sym_equivalence_statement_token1] = ACTIONS(6784), + [aux_sym_stop_statement_token1] = ACTIONS(6784), + [aux_sym_stop_statement_token2] = ACTIONS(6784), + [aux_sym_keyword_statement_token2] = ACTIONS(6784), + [aux_sym_keyword_statement_token3] = ACTIONS(6784), + [aux_sym_include_statement_token1] = ACTIONS(6784), + [aux_sym_data_statement_token1] = ACTIONS(6784), + [aux_sym__inline_if_statement_token1] = ACTIONS(6784), + [aux_sym_end_if_statement_token1] = ACTIONS(6784), + [aux_sym_elseif_clause_token2] = ACTIONS(6784), + [aux_sym_select_case_statement_token1] = ACTIONS(6784), + [aux_sym_block_construct_token1] = ACTIONS(6784), + [aux_sym_format_statement_token1] = ACTIONS(6784), + [aux_sym_inquire_statement_token1] = ACTIONS(6784), + [aux_sym_enum_statement_token1] = ACTIONS(6784), + [aux_sym_entry_statement_token1] = ACTIONS(6784), + [aux_sym_null_literal_token1] = ACTIONS(6784), + [aux_sym_coarray_statement_token1] = ACTIONS(6784), + [aux_sym_coarray_statement_token2] = ACTIONS(6784), + [aux_sym_coarray_statement_token6] = ACTIONS(6784), + [aux_sym_coarray_statement_token8] = ACTIONS(6784), + [aux_sym_coarray_statement_token11] = ACTIONS(6784), + [aux_sym_coarray_statement_token12] = ACTIONS(6784), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6784), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6784), + [aux_sym_identifier_token1] = ACTIONS(6784), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6788), }, - [2783] = { - [sym_triplet_spec] = STATE(7139), - [sym__expression] = STATE(4561), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(5070), - [sym_relational_expression] = STATE(5070), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5074), + [2735] = { + [sym_sized_allocation] = STATE(6147), + [sym_coarray_allocation] = STATE(7261), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5059), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5059), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -420210,10 +415803,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -420230,12 +415823,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -420258,471 +415851,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2784] = { - [aux_sym_preproc_include_token1] = ACTIONS(6874), - [aux_sym_preproc_def_token1] = ACTIONS(6874), - [aux_sym_preproc_if_token1] = ACTIONS(6874), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6874), - [sym_preproc_directive] = ACTIONS(6874), + [2736] = { + [aux_sym_preproc_include_token1] = ACTIONS(6814), + [aux_sym_preproc_def_token1] = ACTIONS(6814), + [aux_sym_preproc_if_token1] = ACTIONS(6814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6814), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6814), + [sym_preproc_directive] = ACTIONS(6814), + [sym_preproc_comment] = ACTIONS(6816), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6874), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6874), - [aux_sym_interface_statement_token1] = ACTIONS(6874), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6874), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6874), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6874), - [aux_sym_language_binding_token1] = ACTIONS(6874), - [aux_sym_procedure_attributes_token1] = ACTIONS(6874), - [aux_sym_procedure_attributes_token3] = ACTIONS(6874), - [aux_sym_contains_statement_token1] = ACTIONS(6874), - [aux_sym_use_statement_token1] = ACTIONS(6874), - [aux_sym_use_statement_token2] = ACTIONS(6874), - [aux_sym_implicit_statement_token1] = ACTIONS(6874), - [aux_sym_implicit_statement_token3] = ACTIONS(6874), - [aux_sym_implicit_statement_token4] = ACTIONS(6874), - [aux_sym_save_statement_token1] = ACTIONS(6874), - [aux_sym_private_statement_token1] = ACTIONS(6874), - [aux_sym_public_statement_token1] = ACTIONS(6874), - [aux_sym_namelist_statement_token1] = ACTIONS(6874), - [aux_sym_common_statement_token1] = ACTIONS(6874), - [aux_sym_import_statement_token1] = ACTIONS(6874), - [aux_sym_derived_type_definition_token1] = ACTIONS(6874), - [aux_sym_abstract_specifier_token1] = ACTIONS(6874), - [aux_sym_procedure_attribute_token6] = ACTIONS(6874), - [aux_sym_variable_attributes_token1] = ACTIONS(6874), - [aux_sym_variable_attributes_token2] = ACTIONS(6874), - [aux_sym_variable_attributes_token3] = ACTIONS(6874), - [aux_sym_variable_attributes_token4] = ACTIONS(6874), - [aux_sym_variable_attributes_token5] = ACTIONS(6874), - [aux_sym__intrinsic_type_token1] = ACTIONS(6874), - [aux_sym__intrinsic_type_token2] = ACTIONS(6874), - [aux_sym__intrinsic_type_token3] = ACTIONS(6874), - [aux_sym__intrinsic_type_token4] = ACTIONS(6874), - [aux_sym__intrinsic_type_token6] = ACTIONS(6874), - [aux_sym__intrinsic_type_token7] = ACTIONS(6874), - [aux_sym__intrinsic_type_token8] = ACTIONS(6874), - [aux_sym__intrinsic_type_token9] = ACTIONS(6874), - [aux_sym__intrinsic_type_token10] = ACTIONS(6874), - [aux_sym_derived_type_token1] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6874), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6874), - [aux_sym_type_qualifier_token1] = ACTIONS(6874), - [aux_sym_type_qualifier_token2] = ACTIONS(6874), - [aux_sym_equivalence_statement_token1] = ACTIONS(6874), - [aux_sym_stop_statement_token1] = ACTIONS(6874), - [aux_sym_stop_statement_token2] = ACTIONS(6874), - [aux_sym_keyword_statement_token2] = ACTIONS(6874), - [aux_sym_keyword_statement_token3] = ACTIONS(6874), - [aux_sym_include_statement_token1] = ACTIONS(6874), - [aux_sym_data_statement_token1] = ACTIONS(6874), - [aux_sym__inline_if_statement_token1] = ACTIONS(6874), - [aux_sym_end_if_statement_token1] = ACTIONS(6874), - [aux_sym_elseif_clause_token2] = ACTIONS(6874), - [aux_sym_select_case_statement_token1] = ACTIONS(6874), - [aux_sym_block_construct_token1] = ACTIONS(6874), - [aux_sym_format_statement_token1] = ACTIONS(6874), - [aux_sym_inquire_statement_token1] = ACTIONS(6874), - [aux_sym_enum_statement_token1] = ACTIONS(6874), - [aux_sym_entry_statement_token1] = ACTIONS(6874), - [aux_sym_null_literal_token1] = ACTIONS(6874), - [aux_sym_coarray_statement_token1] = ACTIONS(6874), - [aux_sym_coarray_statement_token2] = ACTIONS(6874), - [aux_sym_coarray_statement_token6] = ACTIONS(6874), - [aux_sym_coarray_statement_token8] = ACTIONS(6874), - [aux_sym_coarray_statement_token11] = ACTIONS(6874), - [aux_sym_coarray_statement_token12] = ACTIONS(6874), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6874), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6874), - [aux_sym_identifier_token1] = ACTIONS(6874), + [aux_sym_end_program_statement_token1] = ACTIONS(6814), + [aux_sym_end_module_statement_token1] = ACTIONS(6814), + [aux_sym_interface_statement_token1] = ACTIONS(6814), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6814), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6814), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6814), + [aux_sym_language_binding_token1] = ACTIONS(6814), + [aux_sym_procedure_attributes_token1] = ACTIONS(6814), + [aux_sym_procedure_attributes_token3] = ACTIONS(6814), + [aux_sym_contains_statement_token1] = ACTIONS(6814), + [aux_sym_use_statement_token1] = ACTIONS(6814), + [aux_sym_use_statement_token2] = ACTIONS(6814), + [aux_sym_implicit_statement_token1] = ACTIONS(6814), + [aux_sym_implicit_statement_token3] = ACTIONS(6814), + [aux_sym_implicit_statement_token4] = ACTIONS(6814), + [aux_sym_save_statement_token1] = ACTIONS(6814), + [aux_sym_private_statement_token1] = ACTIONS(6814), + [aux_sym_public_statement_token1] = ACTIONS(6814), + [aux_sym_namelist_statement_token1] = ACTIONS(6814), + [aux_sym_common_statement_token1] = ACTIONS(6814), + [aux_sym_import_statement_token1] = ACTIONS(6814), + [aux_sym_derived_type_definition_token1] = ACTIONS(6814), + [aux_sym_abstract_specifier_token1] = ACTIONS(6814), + [aux_sym_procedure_attribute_token6] = ACTIONS(6814), + [aux_sym_variable_attributes_token1] = ACTIONS(6814), + [aux_sym_variable_attributes_token2] = ACTIONS(6814), + [aux_sym_variable_attributes_token3] = ACTIONS(6814), + [aux_sym_variable_attributes_token4] = ACTIONS(6814), + [aux_sym_variable_attributes_token5] = ACTIONS(6814), + [aux_sym__intrinsic_type_token1] = ACTIONS(6814), + [aux_sym__intrinsic_type_token2] = ACTIONS(6814), + [aux_sym__intrinsic_type_token3] = ACTIONS(6814), + [aux_sym__intrinsic_type_token4] = ACTIONS(6814), + [aux_sym__intrinsic_type_token6] = ACTIONS(6814), + [aux_sym__intrinsic_type_token7] = ACTIONS(6814), + [aux_sym__intrinsic_type_token8] = ACTIONS(6814), + [aux_sym__intrinsic_type_token9] = ACTIONS(6814), + [aux_sym__intrinsic_type_token10] = ACTIONS(6814), + [aux_sym_derived_type_token1] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6814), + [aux_sym_type_qualifier_token1] = ACTIONS(6814), + [aux_sym_type_qualifier_token2] = ACTIONS(6814), + [aux_sym_equivalence_statement_token1] = ACTIONS(6814), + [aux_sym_stop_statement_token1] = ACTIONS(6814), + [aux_sym_stop_statement_token2] = ACTIONS(6814), + [aux_sym_keyword_statement_token2] = ACTIONS(6814), + [aux_sym_keyword_statement_token3] = ACTIONS(6814), + [aux_sym_include_statement_token1] = ACTIONS(6814), + [aux_sym_data_statement_token1] = ACTIONS(6814), + [aux_sym__inline_if_statement_token1] = ACTIONS(6814), + [aux_sym_end_if_statement_token1] = ACTIONS(6814), + [aux_sym_elseif_clause_token2] = ACTIONS(6814), + [aux_sym_select_case_statement_token1] = ACTIONS(6814), + [aux_sym_block_construct_token1] = ACTIONS(6814), + [aux_sym_format_statement_token1] = ACTIONS(6814), + [aux_sym_inquire_statement_token1] = ACTIONS(6814), + [aux_sym_enum_statement_token1] = ACTIONS(6814), + [aux_sym_entry_statement_token1] = ACTIONS(6814), + [aux_sym_null_literal_token1] = ACTIONS(6814), + [aux_sym_coarray_statement_token1] = ACTIONS(6814), + [aux_sym_coarray_statement_token2] = ACTIONS(6814), + [aux_sym_coarray_statement_token6] = ACTIONS(6814), + [aux_sym_coarray_statement_token8] = ACTIONS(6814), + [aux_sym_coarray_statement_token11] = ACTIONS(6814), + [aux_sym_coarray_statement_token12] = ACTIONS(6814), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6814), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6814), + [aux_sym_identifier_token1] = ACTIONS(6814), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6876), - }, - [2785] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), - }, - [2786] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_end_module_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), + [sym__integer_literal] = ACTIONS(6818), }, - [2787] = { - [aux_sym_preproc_include_token1] = ACTIONS(6824), - [aux_sym_preproc_def_token1] = ACTIONS(6824), - [aux_sym_preproc_if_token1] = ACTIONS(6824), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6824), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6824), - [sym_preproc_directive] = ACTIONS(6824), + [2737] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token2] = ACTIONS(4611), + [aux_sym_preproc_else_token1] = ACTIONS(4611), + [aux_sym_preproc_elif_token1] = ACTIONS(4611), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6824), - [aux_sym_end_module_statement_token1] = ACTIONS(6824), - [aux_sym_interface_statement_token1] = ACTIONS(6824), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6824), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6824), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6824), - [aux_sym_language_binding_token1] = ACTIONS(6824), - [aux_sym_procedure_attributes_token1] = ACTIONS(6824), - [aux_sym_procedure_attributes_token3] = ACTIONS(6824), - [aux_sym_contains_statement_token1] = ACTIONS(6824), - [aux_sym_use_statement_token1] = ACTIONS(6824), - [aux_sym_use_statement_token2] = ACTIONS(6824), - [aux_sym_implicit_statement_token1] = ACTIONS(6824), - [aux_sym_implicit_statement_token3] = ACTIONS(6824), - [aux_sym_implicit_statement_token4] = ACTIONS(6824), - [aux_sym_save_statement_token1] = ACTIONS(6824), - [aux_sym_private_statement_token1] = ACTIONS(6824), - [aux_sym_public_statement_token1] = ACTIONS(6824), - [aux_sym_namelist_statement_token1] = ACTIONS(6824), - [aux_sym_common_statement_token1] = ACTIONS(6824), - [aux_sym_import_statement_token1] = ACTIONS(6824), - [aux_sym_derived_type_definition_token1] = ACTIONS(6824), - [aux_sym_abstract_specifier_token1] = ACTIONS(6824), - [aux_sym_procedure_attribute_token6] = ACTIONS(6824), - [aux_sym_variable_attributes_token1] = ACTIONS(6824), - [aux_sym_variable_attributes_token2] = ACTIONS(6824), - [aux_sym_variable_attributes_token3] = ACTIONS(6824), - [aux_sym_variable_attributes_token4] = ACTIONS(6824), - [aux_sym_variable_attributes_token5] = ACTIONS(6824), - [aux_sym__intrinsic_type_token1] = ACTIONS(6824), - [aux_sym__intrinsic_type_token2] = ACTIONS(6824), - [aux_sym__intrinsic_type_token3] = ACTIONS(6824), - [aux_sym__intrinsic_type_token4] = ACTIONS(6824), - [aux_sym__intrinsic_type_token6] = ACTIONS(6824), - [aux_sym__intrinsic_type_token7] = ACTIONS(6824), - [aux_sym__intrinsic_type_token8] = ACTIONS(6824), - [aux_sym__intrinsic_type_token9] = ACTIONS(6824), - [aux_sym__intrinsic_type_token10] = ACTIONS(6824), - [aux_sym_derived_type_token1] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6824), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6824), - [aux_sym_type_qualifier_token1] = ACTIONS(6824), - [aux_sym_type_qualifier_token2] = ACTIONS(6824), - [aux_sym_equivalence_statement_token1] = ACTIONS(6824), - [aux_sym_stop_statement_token1] = ACTIONS(6824), - [aux_sym_stop_statement_token2] = ACTIONS(6824), - [aux_sym_keyword_statement_token2] = ACTIONS(6824), - [aux_sym_keyword_statement_token3] = ACTIONS(6824), - [aux_sym_include_statement_token1] = ACTIONS(6824), - [aux_sym_data_statement_token1] = ACTIONS(6824), - [aux_sym__inline_if_statement_token1] = ACTIONS(6824), - [aux_sym_end_if_statement_token1] = ACTIONS(6824), - [aux_sym_elseif_clause_token2] = ACTIONS(6824), - [aux_sym_select_case_statement_token1] = ACTIONS(6824), - [aux_sym_block_construct_token1] = ACTIONS(6824), - [aux_sym_format_statement_token1] = ACTIONS(6824), - [aux_sym_inquire_statement_token1] = ACTIONS(6824), - [aux_sym_enum_statement_token1] = ACTIONS(6824), - [aux_sym_entry_statement_token1] = ACTIONS(6824), - [aux_sym_null_literal_token1] = ACTIONS(6824), - [aux_sym_coarray_statement_token1] = ACTIONS(6824), - [aux_sym_coarray_statement_token2] = ACTIONS(6824), - [aux_sym_coarray_statement_token6] = ACTIONS(6824), - [aux_sym_coarray_statement_token8] = ACTIONS(6824), - [aux_sym_coarray_statement_token11] = ACTIONS(6824), - [aux_sym_coarray_statement_token12] = ACTIONS(6824), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6824), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6824), - [aux_sym_identifier_token1] = ACTIONS(6824), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6828), + [sym__integer_literal] = ACTIONS(4613), }, - [2788] = { - [aux_sym_preproc_include_token1] = ACTIONS(4335), - [aux_sym_preproc_def_token1] = ACTIONS(4335), - [aux_sym_preproc_if_token1] = ACTIONS(4335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), - [sym_preproc_directive] = ACTIONS(4335), + [2738] = { + [aux_sym_preproc_include_token1] = ACTIONS(6724), + [aux_sym_preproc_def_token1] = ACTIONS(6724), + [aux_sym_preproc_if_token1] = ACTIONS(6724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6724), + [sym_preproc_directive] = ACTIONS(6724), + [sym_preproc_comment] = ACTIONS(6820), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4335), - [aux_sym_end_module_statement_token1] = ACTIONS(4335), - [aux_sym_interface_statement_token1] = ACTIONS(4335), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), - [aux_sym_language_binding_token1] = ACTIONS(4335), - [aux_sym_procedure_attributes_token1] = ACTIONS(4335), - [aux_sym_procedure_attributes_token3] = ACTIONS(4335), - [aux_sym_contains_statement_token1] = ACTIONS(4335), - [aux_sym_use_statement_token1] = ACTIONS(4335), - [aux_sym_use_statement_token2] = ACTIONS(4335), - [aux_sym_implicit_statement_token1] = ACTIONS(4335), - [aux_sym_implicit_statement_token3] = ACTIONS(4335), - [aux_sym_implicit_statement_token4] = ACTIONS(4335), - [aux_sym_save_statement_token1] = ACTIONS(4335), - [aux_sym_private_statement_token1] = ACTIONS(4335), - [aux_sym_public_statement_token1] = ACTIONS(4335), - [aux_sym_namelist_statement_token1] = ACTIONS(4335), - [aux_sym_common_statement_token1] = ACTIONS(4335), - [aux_sym_import_statement_token1] = ACTIONS(4335), - [aux_sym_derived_type_definition_token1] = ACTIONS(4335), - [aux_sym_abstract_specifier_token1] = ACTIONS(4335), - [aux_sym_procedure_attribute_token6] = ACTIONS(4335), - [aux_sym_variable_attributes_token1] = ACTIONS(4335), - [aux_sym_variable_attributes_token2] = ACTIONS(4335), - [aux_sym_variable_attributes_token3] = ACTIONS(4335), - [aux_sym_variable_attributes_token4] = ACTIONS(4335), - [aux_sym_variable_attributes_token5] = ACTIONS(4335), - [aux_sym__intrinsic_type_token1] = ACTIONS(4335), - [aux_sym__intrinsic_type_token2] = ACTIONS(4335), - [aux_sym__intrinsic_type_token3] = ACTIONS(4335), - [aux_sym__intrinsic_type_token4] = ACTIONS(4335), - [aux_sym__intrinsic_type_token6] = ACTIONS(4335), - [aux_sym__intrinsic_type_token7] = ACTIONS(4335), - [aux_sym__intrinsic_type_token8] = ACTIONS(4335), - [aux_sym__intrinsic_type_token9] = ACTIONS(4335), - [aux_sym__intrinsic_type_token10] = ACTIONS(4335), - [aux_sym_derived_type_token1] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), - [aux_sym_type_qualifier_token1] = ACTIONS(4335), - [aux_sym_type_qualifier_token2] = ACTIONS(4335), - [aux_sym_equivalence_statement_token1] = ACTIONS(4335), - [aux_sym_stop_statement_token1] = ACTIONS(4335), - [aux_sym_stop_statement_token2] = ACTIONS(4335), - [aux_sym_keyword_statement_token2] = ACTIONS(4335), - [aux_sym_keyword_statement_token3] = ACTIONS(4335), - [aux_sym_include_statement_token1] = ACTIONS(4335), - [aux_sym_data_statement_token1] = ACTIONS(4335), - [aux_sym__inline_if_statement_token1] = ACTIONS(4335), - [aux_sym_end_if_statement_token1] = ACTIONS(4335), - [aux_sym_elseif_clause_token2] = ACTIONS(4335), - [aux_sym_select_case_statement_token1] = ACTIONS(4335), - [aux_sym_block_construct_token1] = ACTIONS(4335), - [aux_sym_format_statement_token1] = ACTIONS(4335), - [aux_sym_inquire_statement_token1] = ACTIONS(4335), - [aux_sym_enum_statement_token1] = ACTIONS(4335), - [aux_sym_entry_statement_token1] = ACTIONS(4335), - [aux_sym_null_literal_token1] = ACTIONS(4335), - [aux_sym_coarray_statement_token1] = ACTIONS(4335), - [aux_sym_coarray_statement_token2] = ACTIONS(4335), - [aux_sym_coarray_statement_token6] = ACTIONS(4335), - [aux_sym_coarray_statement_token8] = ACTIONS(4335), - [aux_sym_coarray_statement_token11] = ACTIONS(4335), - [aux_sym_coarray_statement_token12] = ACTIONS(4335), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), - [aux_sym_identifier_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token1] = ACTIONS(6724), + [aux_sym_end_module_statement_token1] = ACTIONS(6724), + [aux_sym_interface_statement_token1] = ACTIONS(6724), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6724), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6724), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6724), + [aux_sym_language_binding_token1] = ACTIONS(6724), + [aux_sym_procedure_attributes_token1] = ACTIONS(6724), + [aux_sym_procedure_attributes_token3] = ACTIONS(6724), + [aux_sym_contains_statement_token1] = ACTIONS(6724), + [aux_sym_use_statement_token1] = ACTIONS(6724), + [aux_sym_use_statement_token2] = ACTIONS(6724), + [aux_sym_implicit_statement_token1] = ACTIONS(6724), + [aux_sym_implicit_statement_token3] = ACTIONS(6724), + [aux_sym_implicit_statement_token4] = ACTIONS(6724), + [aux_sym_save_statement_token1] = ACTIONS(6724), + [aux_sym_private_statement_token1] = ACTIONS(6724), + [aux_sym_public_statement_token1] = ACTIONS(6724), + [aux_sym_namelist_statement_token1] = ACTIONS(6724), + [aux_sym_common_statement_token1] = ACTIONS(6724), + [aux_sym_import_statement_token1] = ACTIONS(6724), + [aux_sym_derived_type_definition_token1] = ACTIONS(6724), + [aux_sym_abstract_specifier_token1] = ACTIONS(6724), + [aux_sym_procedure_attribute_token6] = ACTIONS(6724), + [aux_sym_variable_attributes_token1] = ACTIONS(6724), + [aux_sym_variable_attributes_token2] = ACTIONS(6724), + [aux_sym_variable_attributes_token3] = ACTIONS(6724), + [aux_sym_variable_attributes_token4] = ACTIONS(6724), + [aux_sym_variable_attributes_token5] = ACTIONS(6724), + [aux_sym__intrinsic_type_token1] = ACTIONS(6724), + [aux_sym__intrinsic_type_token2] = ACTIONS(6724), + [aux_sym__intrinsic_type_token3] = ACTIONS(6724), + [aux_sym__intrinsic_type_token4] = ACTIONS(6724), + [aux_sym__intrinsic_type_token6] = ACTIONS(6724), + [aux_sym__intrinsic_type_token7] = ACTIONS(6724), + [aux_sym__intrinsic_type_token8] = ACTIONS(6724), + [aux_sym__intrinsic_type_token9] = ACTIONS(6724), + [aux_sym__intrinsic_type_token10] = ACTIONS(6724), + [aux_sym_derived_type_token1] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6724), + [aux_sym_type_qualifier_token1] = ACTIONS(6724), + [aux_sym_type_qualifier_token2] = ACTIONS(6724), + [aux_sym_equivalence_statement_token1] = ACTIONS(6724), + [aux_sym_stop_statement_token1] = ACTIONS(6724), + [aux_sym_stop_statement_token2] = ACTIONS(6724), + [aux_sym_keyword_statement_token2] = ACTIONS(6724), + [aux_sym_keyword_statement_token3] = ACTIONS(6724), + [aux_sym_include_statement_token1] = ACTIONS(6724), + [aux_sym_data_statement_token1] = ACTIONS(6724), + [aux_sym__inline_if_statement_token1] = ACTIONS(6724), + [aux_sym_end_if_statement_token1] = ACTIONS(6724), + [aux_sym_elseif_clause_token2] = ACTIONS(6724), + [aux_sym_select_case_statement_token1] = ACTIONS(6724), + [aux_sym_block_construct_token1] = ACTIONS(6724), + [aux_sym_format_statement_token1] = ACTIONS(6724), + [aux_sym_inquire_statement_token1] = ACTIONS(6724), + [aux_sym_enum_statement_token1] = ACTIONS(6724), + [aux_sym_entry_statement_token1] = ACTIONS(6724), + [aux_sym_null_literal_token1] = ACTIONS(6724), + [aux_sym_coarray_statement_token1] = ACTIONS(6724), + [aux_sym_coarray_statement_token2] = ACTIONS(6724), + [aux_sym_coarray_statement_token6] = ACTIONS(6724), + [aux_sym_coarray_statement_token8] = ACTIONS(6724), + [aux_sym_coarray_statement_token11] = ACTIONS(6724), + [aux_sym_coarray_statement_token12] = ACTIONS(6724), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6724), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6724), + [aux_sym_identifier_token1] = ACTIONS(6724), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6728), + }, + [2739] = { + [aux_sym_preproc_include_token1] = ACTIONS(6748), + [aux_sym_preproc_def_token1] = ACTIONS(6748), + [aux_sym_preproc_if_token1] = ACTIONS(6748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6748), + [sym_preproc_directive] = ACTIONS(6748), + [sym_preproc_comment] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6748), + [aux_sym_end_module_statement_token1] = ACTIONS(6748), + [aux_sym_interface_statement_token1] = ACTIONS(6748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6748), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6748), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6748), + [aux_sym_language_binding_token1] = ACTIONS(6748), + [aux_sym_procedure_attributes_token1] = ACTIONS(6748), + [aux_sym_procedure_attributes_token3] = ACTIONS(6748), + [aux_sym_contains_statement_token1] = ACTIONS(6748), + [aux_sym_use_statement_token1] = ACTIONS(6748), + [aux_sym_use_statement_token2] = ACTIONS(6748), + [aux_sym_implicit_statement_token1] = ACTIONS(6748), + [aux_sym_implicit_statement_token3] = ACTIONS(6748), + [aux_sym_implicit_statement_token4] = ACTIONS(6748), + [aux_sym_save_statement_token1] = ACTIONS(6748), + [aux_sym_private_statement_token1] = ACTIONS(6748), + [aux_sym_public_statement_token1] = ACTIONS(6748), + [aux_sym_namelist_statement_token1] = ACTIONS(6748), + [aux_sym_common_statement_token1] = ACTIONS(6748), + [aux_sym_import_statement_token1] = ACTIONS(6748), + [aux_sym_derived_type_definition_token1] = ACTIONS(6748), + [aux_sym_abstract_specifier_token1] = ACTIONS(6748), + [aux_sym_procedure_attribute_token6] = ACTIONS(6748), + [aux_sym_variable_attributes_token1] = ACTIONS(6748), + [aux_sym_variable_attributes_token2] = ACTIONS(6748), + [aux_sym_variable_attributes_token3] = ACTIONS(6748), + [aux_sym_variable_attributes_token4] = ACTIONS(6748), + [aux_sym_variable_attributes_token5] = ACTIONS(6748), + [aux_sym__intrinsic_type_token1] = ACTIONS(6748), + [aux_sym__intrinsic_type_token2] = ACTIONS(6748), + [aux_sym__intrinsic_type_token3] = ACTIONS(6748), + [aux_sym__intrinsic_type_token4] = ACTIONS(6748), + [aux_sym__intrinsic_type_token6] = ACTIONS(6748), + [aux_sym__intrinsic_type_token7] = ACTIONS(6748), + [aux_sym__intrinsic_type_token8] = ACTIONS(6748), + [aux_sym__intrinsic_type_token9] = ACTIONS(6748), + [aux_sym__intrinsic_type_token10] = ACTIONS(6748), + [aux_sym_derived_type_token1] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6748), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6748), + [aux_sym_type_qualifier_token1] = ACTIONS(6748), + [aux_sym_type_qualifier_token2] = ACTIONS(6748), + [aux_sym_equivalence_statement_token1] = ACTIONS(6748), + [aux_sym_stop_statement_token1] = ACTIONS(6748), + [aux_sym_stop_statement_token2] = ACTIONS(6748), + [aux_sym_keyword_statement_token2] = ACTIONS(6748), + [aux_sym_keyword_statement_token3] = ACTIONS(6748), + [aux_sym_include_statement_token1] = ACTIONS(6748), + [aux_sym_data_statement_token1] = ACTIONS(6748), + [aux_sym__inline_if_statement_token1] = ACTIONS(6748), + [aux_sym_end_if_statement_token1] = ACTIONS(6748), + [aux_sym_elseif_clause_token2] = ACTIONS(6748), + [aux_sym_select_case_statement_token1] = ACTIONS(6748), + [aux_sym_block_construct_token1] = ACTIONS(6748), + [aux_sym_format_statement_token1] = ACTIONS(6748), + [aux_sym_inquire_statement_token1] = ACTIONS(6748), + [aux_sym_enum_statement_token1] = ACTIONS(6748), + [aux_sym_entry_statement_token1] = ACTIONS(6748), + [aux_sym_null_literal_token1] = ACTIONS(6748), + [aux_sym_coarray_statement_token1] = ACTIONS(6748), + [aux_sym_coarray_statement_token2] = ACTIONS(6748), + [aux_sym_coarray_statement_token6] = ACTIONS(6748), + [aux_sym_coarray_statement_token8] = ACTIONS(6748), + [aux_sym_coarray_statement_token11] = ACTIONS(6748), + [aux_sym_coarray_statement_token12] = ACTIONS(6748), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6748), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6748), + [aux_sym_identifier_token1] = ACTIONS(6748), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4337), + [sym__integer_literal] = ACTIONS(6752), }, - [2789] = { + [2740] = { [aux_sym_preproc_include_token1] = ACTIONS(4972), [aux_sym_preproc_def_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), + [aux_sym_preproc_if_token2] = ACTIONS(4972), + [aux_sym_preproc_else_token1] = ACTIONS(4972), + [aux_sym_preproc_elif_token1] = ACTIONS(4972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4972), [sym_preproc_directive] = ACTIONS(4972), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4972), - [aux_sym_end_module_statement_token1] = ACTIONS(4972), [aux_sym_interface_statement_token1] = ACTIONS(4972), [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), @@ -420804,107 +416311,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(4974), }, - [2790] = { - [sym__expression] = STATE(4288), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_loop_control_expression] = STATE(7633), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5039), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2791] = { + [2741] = { [aux_sym_preproc_include_token1] = ACTIONS(6824), [aux_sym_preproc_def_token1] = ACTIONS(6824), [aux_sym_preproc_if_token1] = ACTIONS(6824), [aux_sym_preproc_ifdef_token1] = ACTIONS(6824), [aux_sym_preproc_ifdef_token2] = ACTIONS(6824), [sym_preproc_directive] = ACTIONS(6824), + [sym_preproc_comment] = ACTIONS(6826), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(6824), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6824), + [aux_sym_end_module_statement_token1] = ACTIONS(6824), [aux_sym_interface_statement_token1] = ACTIONS(6824), [aux_sym_defined_io_procedure_token1] = ACTIONS(6824), [aux_sym_defined_io_procedure_token2] = ACTIONS(6824), @@ -420982,2568 +416399,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_statement_token12] = ACTIONS(6824), [aux_sym_coarray_team_statement_token1] = ACTIONS(6824), [aux_sym_coarray_critical_statement_token1] = ACTIONS(6824), - [aux_sym_identifier_token1] = ACTIONS(6824), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6828), - }, - [2792] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_end_module_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - }, - [2793] = { - [aux_sym_preproc_include_token1] = ACTIONS(6878), - [aux_sym_preproc_def_token1] = ACTIONS(6878), - [aux_sym_preproc_if_token1] = ACTIONS(6878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6878), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6878), - [sym_preproc_directive] = ACTIONS(6878), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6878), - [aux_sym_end_module_statement_token1] = ACTIONS(6878), - [aux_sym_interface_statement_token1] = ACTIONS(6878), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6878), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6878), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6878), - [aux_sym_language_binding_token1] = ACTIONS(6878), - [aux_sym_procedure_attributes_token1] = ACTIONS(6878), - [aux_sym_procedure_attributes_token3] = ACTIONS(6878), - [aux_sym_contains_statement_token1] = ACTIONS(6878), - [aux_sym_use_statement_token1] = ACTIONS(6878), - [aux_sym_use_statement_token2] = ACTIONS(6878), - [aux_sym_implicit_statement_token1] = ACTIONS(6878), - [aux_sym_implicit_statement_token3] = ACTIONS(6878), - [aux_sym_implicit_statement_token4] = ACTIONS(6878), - [aux_sym_save_statement_token1] = ACTIONS(6878), - [aux_sym_private_statement_token1] = ACTIONS(6878), - [aux_sym_public_statement_token1] = ACTIONS(6878), - [aux_sym_namelist_statement_token1] = ACTIONS(6878), - [aux_sym_common_statement_token1] = ACTIONS(6878), - [aux_sym_import_statement_token1] = ACTIONS(6878), - [aux_sym_derived_type_definition_token1] = ACTIONS(6878), - [aux_sym_abstract_specifier_token1] = ACTIONS(6878), - [aux_sym_procedure_attribute_token6] = ACTIONS(6878), - [aux_sym_variable_attributes_token1] = ACTIONS(6878), - [aux_sym_variable_attributes_token2] = ACTIONS(6878), - [aux_sym_variable_attributes_token3] = ACTIONS(6878), - [aux_sym_variable_attributes_token4] = ACTIONS(6878), - [aux_sym_variable_attributes_token5] = ACTIONS(6878), - [aux_sym__intrinsic_type_token1] = ACTIONS(6878), - [aux_sym__intrinsic_type_token2] = ACTIONS(6878), - [aux_sym__intrinsic_type_token3] = ACTIONS(6878), - [aux_sym__intrinsic_type_token4] = ACTIONS(6878), - [aux_sym__intrinsic_type_token6] = ACTIONS(6878), - [aux_sym__intrinsic_type_token7] = ACTIONS(6878), - [aux_sym__intrinsic_type_token8] = ACTIONS(6878), - [aux_sym__intrinsic_type_token9] = ACTIONS(6878), - [aux_sym__intrinsic_type_token10] = ACTIONS(6878), - [aux_sym_derived_type_token1] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6878), - [aux_sym_type_qualifier_token1] = ACTIONS(6878), - [aux_sym_type_qualifier_token2] = ACTIONS(6878), - [aux_sym_equivalence_statement_token1] = ACTIONS(6878), - [aux_sym_stop_statement_token1] = ACTIONS(6878), - [aux_sym_stop_statement_token2] = ACTIONS(6878), - [aux_sym_keyword_statement_token2] = ACTIONS(6878), - [aux_sym_keyword_statement_token3] = ACTIONS(6878), - [aux_sym_include_statement_token1] = ACTIONS(6878), - [aux_sym_data_statement_token1] = ACTIONS(6878), - [aux_sym__inline_if_statement_token1] = ACTIONS(6878), - [aux_sym_end_if_statement_token1] = ACTIONS(6878), - [aux_sym_elseif_clause_token2] = ACTIONS(6878), - [aux_sym_select_case_statement_token1] = ACTIONS(6878), - [aux_sym_block_construct_token1] = ACTIONS(6878), - [aux_sym_format_statement_token1] = ACTIONS(6878), - [aux_sym_inquire_statement_token1] = ACTIONS(6878), - [aux_sym_enum_statement_token1] = ACTIONS(6878), - [aux_sym_entry_statement_token1] = ACTIONS(6878), - [aux_sym_null_literal_token1] = ACTIONS(6878), - [aux_sym_coarray_statement_token1] = ACTIONS(6878), - [aux_sym_coarray_statement_token2] = ACTIONS(6878), - [aux_sym_coarray_statement_token6] = ACTIONS(6878), - [aux_sym_coarray_statement_token8] = ACTIONS(6878), - [aux_sym_coarray_statement_token11] = ACTIONS(6878), - [aux_sym_coarray_statement_token12] = ACTIONS(6878), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6878), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6878), - [aux_sym_identifier_token1] = ACTIONS(6878), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6880), - }, - [2794] = { - [aux_sym_preproc_include_token1] = ACTIONS(6882), - [aux_sym_preproc_def_token1] = ACTIONS(6882), - [aux_sym_preproc_if_token1] = ACTIONS(6882), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6882), - [sym_preproc_directive] = ACTIONS(6882), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6882), - [aux_sym_end_module_statement_token1] = ACTIONS(6882), - [aux_sym_interface_statement_token1] = ACTIONS(6882), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6882), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6882), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6882), - [aux_sym_language_binding_token1] = ACTIONS(6882), - [aux_sym_procedure_attributes_token1] = ACTIONS(6882), - [aux_sym_procedure_attributes_token3] = ACTIONS(6882), - [aux_sym_contains_statement_token1] = ACTIONS(6882), - [aux_sym_use_statement_token1] = ACTIONS(6882), - [aux_sym_use_statement_token2] = ACTIONS(6882), - [aux_sym_implicit_statement_token1] = ACTIONS(6882), - [aux_sym_implicit_statement_token3] = ACTIONS(6882), - [aux_sym_implicit_statement_token4] = ACTIONS(6882), - [aux_sym_save_statement_token1] = ACTIONS(6882), - [aux_sym_private_statement_token1] = ACTIONS(6882), - [aux_sym_public_statement_token1] = ACTIONS(6882), - [aux_sym_namelist_statement_token1] = ACTIONS(6882), - [aux_sym_common_statement_token1] = ACTIONS(6882), - [aux_sym_import_statement_token1] = ACTIONS(6882), - [aux_sym_derived_type_definition_token1] = ACTIONS(6882), - [aux_sym_abstract_specifier_token1] = ACTIONS(6882), - [aux_sym_procedure_attribute_token6] = ACTIONS(6882), - [aux_sym_variable_attributes_token1] = ACTIONS(6882), - [aux_sym_variable_attributes_token2] = ACTIONS(6882), - [aux_sym_variable_attributes_token3] = ACTIONS(6882), - [aux_sym_variable_attributes_token4] = ACTIONS(6882), - [aux_sym_variable_attributes_token5] = ACTIONS(6882), - [aux_sym__intrinsic_type_token1] = ACTIONS(6882), - [aux_sym__intrinsic_type_token2] = ACTIONS(6882), - [aux_sym__intrinsic_type_token3] = ACTIONS(6882), - [aux_sym__intrinsic_type_token4] = ACTIONS(6882), - [aux_sym__intrinsic_type_token6] = ACTIONS(6882), - [aux_sym__intrinsic_type_token7] = ACTIONS(6882), - [aux_sym__intrinsic_type_token8] = ACTIONS(6882), - [aux_sym__intrinsic_type_token9] = ACTIONS(6882), - [aux_sym__intrinsic_type_token10] = ACTIONS(6882), - [aux_sym_derived_type_token1] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6882), - [aux_sym_type_qualifier_token1] = ACTIONS(6882), - [aux_sym_type_qualifier_token2] = ACTIONS(6882), - [aux_sym_equivalence_statement_token1] = ACTIONS(6882), - [aux_sym_stop_statement_token1] = ACTIONS(6882), - [aux_sym_stop_statement_token2] = ACTIONS(6882), - [aux_sym_keyword_statement_token2] = ACTIONS(6882), - [aux_sym_keyword_statement_token3] = ACTIONS(6882), - [aux_sym_include_statement_token1] = ACTIONS(6882), - [aux_sym_data_statement_token1] = ACTIONS(6882), - [aux_sym__inline_if_statement_token1] = ACTIONS(6882), - [aux_sym_end_if_statement_token1] = ACTIONS(6882), - [aux_sym_elseif_clause_token2] = ACTIONS(6882), - [aux_sym_select_case_statement_token1] = ACTIONS(6882), - [aux_sym_block_construct_token1] = ACTIONS(6882), - [aux_sym_format_statement_token1] = ACTIONS(6882), - [aux_sym_inquire_statement_token1] = ACTIONS(6882), - [aux_sym_enum_statement_token1] = ACTIONS(6882), - [aux_sym_entry_statement_token1] = ACTIONS(6882), - [aux_sym_null_literal_token1] = ACTIONS(6882), - [aux_sym_coarray_statement_token1] = ACTIONS(6882), - [aux_sym_coarray_statement_token2] = ACTIONS(6882), - [aux_sym_coarray_statement_token6] = ACTIONS(6882), - [aux_sym_coarray_statement_token8] = ACTIONS(6882), - [aux_sym_coarray_statement_token11] = ACTIONS(6882), - [aux_sym_coarray_statement_token12] = ACTIONS(6882), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6882), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6882), - [aux_sym_identifier_token1] = ACTIONS(6882), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6884), - }, - [2795] = { - [aux_sym_preproc_include_token1] = ACTIONS(6886), - [aux_sym_preproc_def_token1] = ACTIONS(6886), - [aux_sym_preproc_if_token1] = ACTIONS(6886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6886), - [sym_preproc_directive] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6886), - [aux_sym_end_module_statement_token1] = ACTIONS(6886), - [aux_sym_interface_statement_token1] = ACTIONS(6886), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6886), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6886), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6886), - [aux_sym_language_binding_token1] = ACTIONS(6886), - [aux_sym_procedure_attributes_token1] = ACTIONS(6886), - [aux_sym_procedure_attributes_token3] = ACTIONS(6886), - [aux_sym_contains_statement_token1] = ACTIONS(6886), - [aux_sym_use_statement_token1] = ACTIONS(6886), - [aux_sym_use_statement_token2] = ACTIONS(6886), - [aux_sym_implicit_statement_token1] = ACTIONS(6886), - [aux_sym_implicit_statement_token3] = ACTIONS(6886), - [aux_sym_implicit_statement_token4] = ACTIONS(6886), - [aux_sym_save_statement_token1] = ACTIONS(6886), - [aux_sym_private_statement_token1] = ACTIONS(6886), - [aux_sym_public_statement_token1] = ACTIONS(6886), - [aux_sym_namelist_statement_token1] = ACTIONS(6886), - [aux_sym_common_statement_token1] = ACTIONS(6886), - [aux_sym_import_statement_token1] = ACTIONS(6886), - [aux_sym_derived_type_definition_token1] = ACTIONS(6886), - [aux_sym_abstract_specifier_token1] = ACTIONS(6886), - [aux_sym_procedure_attribute_token6] = ACTIONS(6886), - [aux_sym_variable_attributes_token1] = ACTIONS(6886), - [aux_sym_variable_attributes_token2] = ACTIONS(6886), - [aux_sym_variable_attributes_token3] = ACTIONS(6886), - [aux_sym_variable_attributes_token4] = ACTIONS(6886), - [aux_sym_variable_attributes_token5] = ACTIONS(6886), - [aux_sym__intrinsic_type_token1] = ACTIONS(6886), - [aux_sym__intrinsic_type_token2] = ACTIONS(6886), - [aux_sym__intrinsic_type_token3] = ACTIONS(6886), - [aux_sym__intrinsic_type_token4] = ACTIONS(6886), - [aux_sym__intrinsic_type_token6] = ACTIONS(6886), - [aux_sym__intrinsic_type_token7] = ACTIONS(6886), - [aux_sym__intrinsic_type_token8] = ACTIONS(6886), - [aux_sym__intrinsic_type_token9] = ACTIONS(6886), - [aux_sym__intrinsic_type_token10] = ACTIONS(6886), - [aux_sym_derived_type_token1] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6886), - [aux_sym_type_qualifier_token1] = ACTIONS(6886), - [aux_sym_type_qualifier_token2] = ACTIONS(6886), - [aux_sym_equivalence_statement_token1] = ACTIONS(6886), - [aux_sym_stop_statement_token1] = ACTIONS(6886), - [aux_sym_stop_statement_token2] = ACTIONS(6886), - [aux_sym_keyword_statement_token2] = ACTIONS(6886), - [aux_sym_keyword_statement_token3] = ACTIONS(6886), - [aux_sym_include_statement_token1] = ACTIONS(6886), - [aux_sym_data_statement_token1] = ACTIONS(6886), - [aux_sym__inline_if_statement_token1] = ACTIONS(6886), - [aux_sym_end_if_statement_token1] = ACTIONS(6886), - [aux_sym_elseif_clause_token2] = ACTIONS(6886), - [aux_sym_select_case_statement_token1] = ACTIONS(6886), - [aux_sym_block_construct_token1] = ACTIONS(6886), - [aux_sym_format_statement_token1] = ACTIONS(6886), - [aux_sym_inquire_statement_token1] = ACTIONS(6886), - [aux_sym_enum_statement_token1] = ACTIONS(6886), - [aux_sym_entry_statement_token1] = ACTIONS(6886), - [aux_sym_null_literal_token1] = ACTIONS(6886), - [aux_sym_coarray_statement_token1] = ACTIONS(6886), - [aux_sym_coarray_statement_token2] = ACTIONS(6886), - [aux_sym_coarray_statement_token6] = ACTIONS(6886), - [aux_sym_coarray_statement_token8] = ACTIONS(6886), - [aux_sym_coarray_statement_token11] = ACTIONS(6886), - [aux_sym_coarray_statement_token12] = ACTIONS(6886), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6886), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6886), - [aux_sym_identifier_token1] = ACTIONS(6886), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6888), - }, - [2796] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - }, - [2797] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - }, - [2798] = { - [aux_sym_preproc_include_token1] = ACTIONS(6878), - [aux_sym_preproc_def_token1] = ACTIONS(6878), - [aux_sym_preproc_if_token1] = ACTIONS(6878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6878), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6878), - [sym_preproc_directive] = ACTIONS(6878), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6878), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6878), - [aux_sym_interface_statement_token1] = ACTIONS(6878), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6878), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6878), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6878), - [aux_sym_language_binding_token1] = ACTIONS(6878), - [aux_sym_procedure_attributes_token1] = ACTIONS(6878), - [aux_sym_procedure_attributes_token3] = ACTIONS(6878), - [aux_sym_contains_statement_token1] = ACTIONS(6878), - [aux_sym_use_statement_token1] = ACTIONS(6878), - [aux_sym_use_statement_token2] = ACTIONS(6878), - [aux_sym_implicit_statement_token1] = ACTIONS(6878), - [aux_sym_implicit_statement_token3] = ACTIONS(6878), - [aux_sym_implicit_statement_token4] = ACTIONS(6878), - [aux_sym_save_statement_token1] = ACTIONS(6878), - [aux_sym_private_statement_token1] = ACTIONS(6878), - [aux_sym_public_statement_token1] = ACTIONS(6878), - [aux_sym_namelist_statement_token1] = ACTIONS(6878), - [aux_sym_common_statement_token1] = ACTIONS(6878), - [aux_sym_import_statement_token1] = ACTIONS(6878), - [aux_sym_derived_type_definition_token1] = ACTIONS(6878), - [aux_sym_abstract_specifier_token1] = ACTIONS(6878), - [aux_sym_procedure_attribute_token6] = ACTIONS(6878), - [aux_sym_variable_attributes_token1] = ACTIONS(6878), - [aux_sym_variable_attributes_token2] = ACTIONS(6878), - [aux_sym_variable_attributes_token3] = ACTIONS(6878), - [aux_sym_variable_attributes_token4] = ACTIONS(6878), - [aux_sym_variable_attributes_token5] = ACTIONS(6878), - [aux_sym__intrinsic_type_token1] = ACTIONS(6878), - [aux_sym__intrinsic_type_token2] = ACTIONS(6878), - [aux_sym__intrinsic_type_token3] = ACTIONS(6878), - [aux_sym__intrinsic_type_token4] = ACTIONS(6878), - [aux_sym__intrinsic_type_token6] = ACTIONS(6878), - [aux_sym__intrinsic_type_token7] = ACTIONS(6878), - [aux_sym__intrinsic_type_token8] = ACTIONS(6878), - [aux_sym__intrinsic_type_token9] = ACTIONS(6878), - [aux_sym__intrinsic_type_token10] = ACTIONS(6878), - [aux_sym_derived_type_token1] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6878), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6878), - [aux_sym_type_qualifier_token1] = ACTIONS(6878), - [aux_sym_type_qualifier_token2] = ACTIONS(6878), - [aux_sym_equivalence_statement_token1] = ACTIONS(6878), - [aux_sym_stop_statement_token1] = ACTIONS(6878), - [aux_sym_stop_statement_token2] = ACTIONS(6878), - [aux_sym_keyword_statement_token2] = ACTIONS(6878), - [aux_sym_keyword_statement_token3] = ACTIONS(6878), - [aux_sym_include_statement_token1] = ACTIONS(6878), - [aux_sym_data_statement_token1] = ACTIONS(6878), - [aux_sym__inline_if_statement_token1] = ACTIONS(6878), - [aux_sym_end_if_statement_token1] = ACTIONS(6878), - [aux_sym_elseif_clause_token2] = ACTIONS(6878), - [aux_sym_select_case_statement_token1] = ACTIONS(6878), - [aux_sym_block_construct_token1] = ACTIONS(6878), - [aux_sym_format_statement_token1] = ACTIONS(6878), - [aux_sym_inquire_statement_token1] = ACTIONS(6878), - [aux_sym_enum_statement_token1] = ACTIONS(6878), - [aux_sym_entry_statement_token1] = ACTIONS(6878), - [aux_sym_null_literal_token1] = ACTIONS(6878), - [aux_sym_coarray_statement_token1] = ACTIONS(6878), - [aux_sym_coarray_statement_token2] = ACTIONS(6878), - [aux_sym_coarray_statement_token6] = ACTIONS(6878), - [aux_sym_coarray_statement_token8] = ACTIONS(6878), - [aux_sym_coarray_statement_token11] = ACTIONS(6878), - [aux_sym_coarray_statement_token12] = ACTIONS(6878), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6878), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6878), - [aux_sym_identifier_token1] = ACTIONS(6878), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6880), - }, - [2799] = { - [aux_sym_preproc_include_token1] = ACTIONS(6882), - [aux_sym_preproc_def_token1] = ACTIONS(6882), - [aux_sym_preproc_if_token1] = ACTIONS(6882), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6882), - [sym_preproc_directive] = ACTIONS(6882), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6882), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6882), - [aux_sym_interface_statement_token1] = ACTIONS(6882), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6882), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6882), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6882), - [aux_sym_language_binding_token1] = ACTIONS(6882), - [aux_sym_procedure_attributes_token1] = ACTIONS(6882), - [aux_sym_procedure_attributes_token3] = ACTIONS(6882), - [aux_sym_contains_statement_token1] = ACTIONS(6882), - [aux_sym_use_statement_token1] = ACTIONS(6882), - [aux_sym_use_statement_token2] = ACTIONS(6882), - [aux_sym_implicit_statement_token1] = ACTIONS(6882), - [aux_sym_implicit_statement_token3] = ACTIONS(6882), - [aux_sym_implicit_statement_token4] = ACTIONS(6882), - [aux_sym_save_statement_token1] = ACTIONS(6882), - [aux_sym_private_statement_token1] = ACTIONS(6882), - [aux_sym_public_statement_token1] = ACTIONS(6882), - [aux_sym_namelist_statement_token1] = ACTIONS(6882), - [aux_sym_common_statement_token1] = ACTIONS(6882), - [aux_sym_import_statement_token1] = ACTIONS(6882), - [aux_sym_derived_type_definition_token1] = ACTIONS(6882), - [aux_sym_abstract_specifier_token1] = ACTIONS(6882), - [aux_sym_procedure_attribute_token6] = ACTIONS(6882), - [aux_sym_variable_attributes_token1] = ACTIONS(6882), - [aux_sym_variable_attributes_token2] = ACTIONS(6882), - [aux_sym_variable_attributes_token3] = ACTIONS(6882), - [aux_sym_variable_attributes_token4] = ACTIONS(6882), - [aux_sym_variable_attributes_token5] = ACTIONS(6882), - [aux_sym__intrinsic_type_token1] = ACTIONS(6882), - [aux_sym__intrinsic_type_token2] = ACTIONS(6882), - [aux_sym__intrinsic_type_token3] = ACTIONS(6882), - [aux_sym__intrinsic_type_token4] = ACTIONS(6882), - [aux_sym__intrinsic_type_token6] = ACTIONS(6882), - [aux_sym__intrinsic_type_token7] = ACTIONS(6882), - [aux_sym__intrinsic_type_token8] = ACTIONS(6882), - [aux_sym__intrinsic_type_token9] = ACTIONS(6882), - [aux_sym__intrinsic_type_token10] = ACTIONS(6882), - [aux_sym_derived_type_token1] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6882), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6882), - [aux_sym_type_qualifier_token1] = ACTIONS(6882), - [aux_sym_type_qualifier_token2] = ACTIONS(6882), - [aux_sym_equivalence_statement_token1] = ACTIONS(6882), - [aux_sym_stop_statement_token1] = ACTIONS(6882), - [aux_sym_stop_statement_token2] = ACTIONS(6882), - [aux_sym_keyword_statement_token2] = ACTIONS(6882), - [aux_sym_keyword_statement_token3] = ACTIONS(6882), - [aux_sym_include_statement_token1] = ACTIONS(6882), - [aux_sym_data_statement_token1] = ACTIONS(6882), - [aux_sym__inline_if_statement_token1] = ACTIONS(6882), - [aux_sym_end_if_statement_token1] = ACTIONS(6882), - [aux_sym_elseif_clause_token2] = ACTIONS(6882), - [aux_sym_select_case_statement_token1] = ACTIONS(6882), - [aux_sym_block_construct_token1] = ACTIONS(6882), - [aux_sym_format_statement_token1] = ACTIONS(6882), - [aux_sym_inquire_statement_token1] = ACTIONS(6882), - [aux_sym_enum_statement_token1] = ACTIONS(6882), - [aux_sym_entry_statement_token1] = ACTIONS(6882), - [aux_sym_null_literal_token1] = ACTIONS(6882), - [aux_sym_coarray_statement_token1] = ACTIONS(6882), - [aux_sym_coarray_statement_token2] = ACTIONS(6882), - [aux_sym_coarray_statement_token6] = ACTIONS(6882), - [aux_sym_coarray_statement_token8] = ACTIONS(6882), - [aux_sym_coarray_statement_token11] = ACTIONS(6882), - [aux_sym_coarray_statement_token12] = ACTIONS(6882), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6882), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6882), - [aux_sym_identifier_token1] = ACTIONS(6882), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6884), - }, - [2800] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_module_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - }, - [2801] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - }, - [2802] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - }, - [2803] = { - [aux_sym_preproc_include_token1] = ACTIONS(4331), - [aux_sym_preproc_def_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token1] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), - [sym_preproc_directive] = ACTIONS(4331), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4331), - [aux_sym_end_module_statement_token1] = ACTIONS(4331), - [aux_sym_interface_statement_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4331), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4331), - [aux_sym_language_binding_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token3] = ACTIONS(4331), - [aux_sym_contains_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token2] = ACTIONS(4331), - [aux_sym_implicit_statement_token1] = ACTIONS(4331), - [aux_sym_implicit_statement_token3] = ACTIONS(4331), - [aux_sym_implicit_statement_token4] = ACTIONS(4331), - [aux_sym_save_statement_token1] = ACTIONS(4331), - [aux_sym_private_statement_token1] = ACTIONS(4331), - [aux_sym_public_statement_token1] = ACTIONS(4331), - [aux_sym_namelist_statement_token1] = ACTIONS(4331), - [aux_sym_common_statement_token1] = ACTIONS(4331), - [aux_sym_import_statement_token1] = ACTIONS(4331), - [aux_sym_derived_type_definition_token1] = ACTIONS(4331), - [aux_sym_abstract_specifier_token1] = ACTIONS(4331), - [aux_sym_procedure_attribute_token6] = ACTIONS(4331), - [aux_sym_variable_attributes_token1] = ACTIONS(4331), - [aux_sym_variable_attributes_token2] = ACTIONS(4331), - [aux_sym_variable_attributes_token3] = ACTIONS(4331), - [aux_sym_variable_attributes_token4] = ACTIONS(4331), - [aux_sym_variable_attributes_token5] = ACTIONS(4331), - [aux_sym__intrinsic_type_token1] = ACTIONS(4331), - [aux_sym__intrinsic_type_token2] = ACTIONS(4331), - [aux_sym__intrinsic_type_token3] = ACTIONS(4331), - [aux_sym__intrinsic_type_token4] = ACTIONS(4331), - [aux_sym__intrinsic_type_token6] = ACTIONS(4331), - [aux_sym__intrinsic_type_token7] = ACTIONS(4331), - [aux_sym__intrinsic_type_token8] = ACTIONS(4331), - [aux_sym__intrinsic_type_token9] = ACTIONS(4331), - [aux_sym__intrinsic_type_token10] = ACTIONS(4331), - [aux_sym_derived_type_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4331), - [aux_sym_type_qualifier_token1] = ACTIONS(4331), - [aux_sym_type_qualifier_token2] = ACTIONS(4331), - [aux_sym_equivalence_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token3] = ACTIONS(4331), - [aux_sym_include_statement_token1] = ACTIONS(4331), - [aux_sym_data_statement_token1] = ACTIONS(4331), - [aux_sym__inline_if_statement_token1] = ACTIONS(4331), - [aux_sym_end_if_statement_token1] = ACTIONS(4331), - [aux_sym_elseif_clause_token2] = ACTIONS(4331), - [aux_sym_select_case_statement_token1] = ACTIONS(4331), - [aux_sym_block_construct_token1] = ACTIONS(4331), - [aux_sym_format_statement_token1] = ACTIONS(4331), - [aux_sym_inquire_statement_token1] = ACTIONS(4331), - [aux_sym_enum_statement_token1] = ACTIONS(4331), - [aux_sym_entry_statement_token1] = ACTIONS(4331), - [aux_sym_null_literal_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token2] = ACTIONS(4331), - [aux_sym_coarray_statement_token6] = ACTIONS(4331), - [aux_sym_coarray_statement_token8] = ACTIONS(4331), - [aux_sym_coarray_statement_token11] = ACTIONS(4331), - [aux_sym_coarray_statement_token12] = ACTIONS(4331), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4331), - [aux_sym_identifier_token1] = ACTIONS(4331), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4333), - }, - [2804] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - }, - [2805] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_end_module_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - }, - [2806] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), - }, - [2807] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - }, - [2808] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_end_module_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - }, - [2809] = { - [anon_sym_LPAREN2] = ACTIONS(6834), - [anon_sym_PLUS] = ACTIONS(6836), - [anon_sym_DASH] = ACTIONS(6836), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6834), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6834), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6834), - [aux_sym_procedure_attributes_token3] = ACTIONS(6834), - [aux_sym_use_statement_token2] = ACTIONS(6834), - [aux_sym_implicit_statement_token4] = ACTIONS(6834), - [aux_sym_save_statement_token1] = ACTIONS(6834), - [aux_sym_private_statement_token1] = ACTIONS(6834), - [aux_sym_public_statement_token1] = ACTIONS(6834), - [aux_sym_derived_type_definition_token1] = ACTIONS(6834), - [aux_sym_procedure_attribute_token6] = ACTIONS(6834), - [aux_sym_variable_attributes_token2] = ACTIONS(6834), - [aux_sym_variable_attributes_token3] = ACTIONS(6834), - [aux_sym_variable_attributes_token5] = ACTIONS(6834), - [aux_sym__intrinsic_type_token1] = ACTIONS(6834), - [aux_sym__intrinsic_type_token3] = ACTIONS(6834), - [aux_sym__intrinsic_type_token4] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6834), - [aux_sym_type_qualifier_token1] = ACTIONS(6834), - [aux_sym_type_qualifier_token2] = ACTIONS(6834), - [aux_sym_stop_statement_token1] = ACTIONS(6834), - [aux_sym_stop_statement_token2] = ACTIONS(6834), - [aux_sym_subroutine_call_token1] = ACTIONS(6834), - [aux_sym_keyword_statement_token1] = ACTIONS(6834), - [aux_sym_keyword_statement_token2] = ACTIONS(6834), - [aux_sym_keyword_statement_token3] = ACTIONS(6834), - [aux_sym_keyword_statement_token4] = ACTIONS(6834), - [aux_sym_keyword_statement_token6] = ACTIONS(6834), - [aux_sym_keyword_statement_token7] = ACTIONS(6834), - [aux_sym_include_statement_token1] = ACTIONS(6834), - [aux_sym_data_statement_token1] = ACTIONS(6834), - [aux_sym_do_loop_statement_token1] = ACTIONS(6834), - [aux_sym__inline_if_statement_token1] = ACTIONS(6834), - [aux_sym__block_if_statement_token1] = ACTIONS(6834), - [aux_sym_end_if_statement_token1] = ACTIONS(6834), - [aux_sym_elseif_clause_token2] = ACTIONS(6834), - [aux_sym__inline_where_statement_token1] = ACTIONS(6834), - [aux_sym__forall_control_expression_token1] = ACTIONS(6834), - [aux_sym_select_case_statement_token1] = ACTIONS(6834), - [aux_sym_select_case_statement_token3] = ACTIONS(6834), - [aux_sym_select_type_statement_token1] = ACTIONS(6834), - [aux_sym_select_rank_statement_token2] = ACTIONS(6834), - [aux_sym_block_construct_token1] = ACTIONS(6834), - [aux_sym_associate_statement_token1] = ACTIONS(6834), - [aux_sym_format_statement_token1] = ACTIONS(6834), - [aux_sym_print_statement_token1] = ACTIONS(6834), - [aux_sym_open_statement_token1] = ACTIONS(6834), - [aux_sym_close_statement_token1] = ACTIONS(6834), - [aux_sym_inquire_statement_token1] = ACTIONS(6834), - [aux_sym_file_position_statement_token1] = ACTIONS(6834), - [aux_sym_file_position_statement_token2] = ACTIONS(6834), - [aux_sym_file_position_statement_token3] = ACTIONS(6834), - [aux_sym_file_position_statement_token4] = ACTIONS(6834), - [aux_sym_allocate_statement_token1] = ACTIONS(6834), - [aux_sym_entry_statement_token1] = ACTIONS(6834), - [aux_sym_logical_expression_token5] = ACTIONS(6836), - [anon_sym_DOT] = ACTIONS(6834), - [anon_sym_LPAREN_SLASH] = ACTIONS(6836), - [anon_sym_LBRACK] = ACTIONS(6836), - [aux_sym_boolean_literal_token1] = ACTIONS(6836), - [aux_sym_boolean_literal_token2] = ACTIONS(6836), - [aux_sym_null_literal_token1] = ACTIONS(6834), - [aux_sym_coarray_statement_token1] = ACTIONS(6834), - [aux_sym_coarray_statement_token2] = ACTIONS(6834), - [aux_sym_coarray_statement_token6] = ACTIONS(6834), - [aux_sym_coarray_statement_token8] = ACTIONS(6834), - [aux_sym_coarray_statement_token11] = ACTIONS(6834), - [aux_sym_coarray_statement_token12] = ACTIONS(6834), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6834), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6834), - [aux_sym_identifier_token1] = ACTIONS(6834), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6836), - [sym__float_literal] = ACTIONS(6836), - [sym__boz_literal] = ACTIONS(6836), - [sym__string_literal] = ACTIONS(6836), - [sym__string_literal_kind] = ACTIONS(6836), - }, - [2810] = { - [sym_data_set] = STATE(6376), - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4660), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4660), - [sym_implied_do_loop_expression] = STATE(4660), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4660), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2811] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - }, - [2812] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - }, - [2813] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_identifier_token1] = ACTIONS(6824), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - }, - [2814] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_end_module_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - }, - [2815] = { - [aux_sym_preproc_include_token1] = ACTIONS(6738), - [aux_sym_preproc_def_token1] = ACTIONS(6738), - [aux_sym_preproc_if_token1] = ACTIONS(6738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6738), - [sym_preproc_directive] = ACTIONS(6738), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6738), - [aux_sym_end_module_statement_token1] = ACTIONS(6738), - [aux_sym_interface_statement_token1] = ACTIONS(6738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6738), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6738), - [aux_sym_language_binding_token1] = ACTIONS(6738), - [aux_sym_procedure_attributes_token1] = ACTIONS(6738), - [aux_sym_procedure_attributes_token3] = ACTIONS(6738), - [aux_sym_contains_statement_token1] = ACTIONS(6738), - [aux_sym_use_statement_token1] = ACTIONS(6738), - [aux_sym_use_statement_token2] = ACTIONS(6738), - [aux_sym_implicit_statement_token1] = ACTIONS(6738), - [aux_sym_implicit_statement_token3] = ACTIONS(6738), - [aux_sym_implicit_statement_token4] = ACTIONS(6738), - [aux_sym_save_statement_token1] = ACTIONS(6738), - [aux_sym_private_statement_token1] = ACTIONS(6738), - [aux_sym_public_statement_token1] = ACTIONS(6738), - [aux_sym_namelist_statement_token1] = ACTIONS(6738), - [aux_sym_common_statement_token1] = ACTIONS(6738), - [aux_sym_import_statement_token1] = ACTIONS(6738), - [aux_sym_derived_type_definition_token1] = ACTIONS(6738), - [aux_sym_abstract_specifier_token1] = ACTIONS(6738), - [aux_sym_procedure_attribute_token6] = ACTIONS(6738), - [aux_sym_variable_attributes_token1] = ACTIONS(6738), - [aux_sym_variable_attributes_token2] = ACTIONS(6738), - [aux_sym_variable_attributes_token3] = ACTIONS(6738), - [aux_sym_variable_attributes_token4] = ACTIONS(6738), - [aux_sym_variable_attributes_token5] = ACTIONS(6738), - [aux_sym__intrinsic_type_token1] = ACTIONS(6738), - [aux_sym__intrinsic_type_token2] = ACTIONS(6738), - [aux_sym__intrinsic_type_token3] = ACTIONS(6738), - [aux_sym__intrinsic_type_token4] = ACTIONS(6738), - [aux_sym__intrinsic_type_token6] = ACTIONS(6738), - [aux_sym__intrinsic_type_token7] = ACTIONS(6738), - [aux_sym__intrinsic_type_token8] = ACTIONS(6738), - [aux_sym__intrinsic_type_token9] = ACTIONS(6738), - [aux_sym__intrinsic_type_token10] = ACTIONS(6738), - [aux_sym_derived_type_token1] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6738), - [aux_sym_type_qualifier_token1] = ACTIONS(6738), - [aux_sym_type_qualifier_token2] = ACTIONS(6738), - [aux_sym_equivalence_statement_token1] = ACTIONS(6738), - [aux_sym_stop_statement_token1] = ACTIONS(6738), - [aux_sym_stop_statement_token2] = ACTIONS(6738), - [aux_sym_keyword_statement_token2] = ACTIONS(6738), - [aux_sym_keyword_statement_token3] = ACTIONS(6738), - [aux_sym_include_statement_token1] = ACTIONS(6738), - [aux_sym_data_statement_token1] = ACTIONS(6738), - [aux_sym__inline_if_statement_token1] = ACTIONS(6738), - [aux_sym_end_if_statement_token1] = ACTIONS(6738), - [aux_sym_elseif_clause_token2] = ACTIONS(6738), - [aux_sym_select_case_statement_token1] = ACTIONS(6738), - [aux_sym_block_construct_token1] = ACTIONS(6738), - [aux_sym_format_statement_token1] = ACTIONS(6738), - [aux_sym_inquire_statement_token1] = ACTIONS(6738), - [aux_sym_enum_statement_token1] = ACTIONS(6738), - [aux_sym_entry_statement_token1] = ACTIONS(6738), - [aux_sym_null_literal_token1] = ACTIONS(6738), - [aux_sym_coarray_statement_token1] = ACTIONS(6738), - [aux_sym_coarray_statement_token2] = ACTIONS(6738), - [aux_sym_coarray_statement_token6] = ACTIONS(6738), - [aux_sym_coarray_statement_token8] = ACTIONS(6738), - [aux_sym_coarray_statement_token11] = ACTIONS(6738), - [aux_sym_coarray_statement_token12] = ACTIONS(6738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6738), - [aux_sym_identifier_token1] = ACTIONS(6738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6742), - }, - [2816] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_end_module_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - }, - [2817] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_end_module_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - }, - [2818] = { - [aux_sym_preproc_include_token1] = ACTIONS(6760), - [aux_sym_preproc_def_token1] = ACTIONS(6760), - [aux_sym_preproc_if_token1] = ACTIONS(6760), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6760), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6760), - [sym_preproc_directive] = ACTIONS(6760), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6760), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6760), - [aux_sym_interface_statement_token1] = ACTIONS(6760), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6760), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6760), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6760), - [aux_sym_language_binding_token1] = ACTIONS(6760), - [aux_sym_procedure_attributes_token1] = ACTIONS(6760), - [aux_sym_procedure_attributes_token3] = ACTIONS(6760), - [aux_sym_contains_statement_token1] = ACTIONS(6760), - [aux_sym_use_statement_token1] = ACTIONS(6760), - [aux_sym_use_statement_token2] = ACTIONS(6760), - [aux_sym_implicit_statement_token1] = ACTIONS(6760), - [aux_sym_implicit_statement_token3] = ACTIONS(6760), - [aux_sym_implicit_statement_token4] = ACTIONS(6760), - [aux_sym_save_statement_token1] = ACTIONS(6760), - [aux_sym_private_statement_token1] = ACTIONS(6760), - [aux_sym_public_statement_token1] = ACTIONS(6760), - [aux_sym_namelist_statement_token1] = ACTIONS(6760), - [aux_sym_common_statement_token1] = ACTIONS(6760), - [aux_sym_import_statement_token1] = ACTIONS(6760), - [aux_sym_derived_type_definition_token1] = ACTIONS(6760), - [aux_sym_abstract_specifier_token1] = ACTIONS(6760), - [aux_sym_procedure_attribute_token6] = ACTIONS(6760), - [aux_sym_variable_attributes_token1] = ACTIONS(6760), - [aux_sym_variable_attributes_token2] = ACTIONS(6760), - [aux_sym_variable_attributes_token3] = ACTIONS(6760), - [aux_sym_variable_attributes_token4] = ACTIONS(6760), - [aux_sym_variable_attributes_token5] = ACTIONS(6760), - [aux_sym__intrinsic_type_token1] = ACTIONS(6760), - [aux_sym__intrinsic_type_token2] = ACTIONS(6760), - [aux_sym__intrinsic_type_token3] = ACTIONS(6760), - [aux_sym__intrinsic_type_token4] = ACTIONS(6760), - [aux_sym__intrinsic_type_token6] = ACTIONS(6760), - [aux_sym__intrinsic_type_token7] = ACTIONS(6760), - [aux_sym__intrinsic_type_token8] = ACTIONS(6760), - [aux_sym__intrinsic_type_token9] = ACTIONS(6760), - [aux_sym__intrinsic_type_token10] = ACTIONS(6760), - [aux_sym_derived_type_token1] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6760), - [aux_sym_type_qualifier_token1] = ACTIONS(6760), - [aux_sym_type_qualifier_token2] = ACTIONS(6760), - [aux_sym_equivalence_statement_token1] = ACTIONS(6760), - [aux_sym_stop_statement_token1] = ACTIONS(6760), - [aux_sym_stop_statement_token2] = ACTIONS(6760), - [aux_sym_keyword_statement_token2] = ACTIONS(6760), - [aux_sym_keyword_statement_token3] = ACTIONS(6760), - [aux_sym_include_statement_token1] = ACTIONS(6760), - [aux_sym_data_statement_token1] = ACTIONS(6760), - [aux_sym__inline_if_statement_token1] = ACTIONS(6760), - [aux_sym_end_if_statement_token1] = ACTIONS(6760), - [aux_sym_elseif_clause_token2] = ACTIONS(6760), - [aux_sym_select_case_statement_token1] = ACTIONS(6760), - [aux_sym_block_construct_token1] = ACTIONS(6760), - [aux_sym_format_statement_token1] = ACTIONS(6760), - [aux_sym_inquire_statement_token1] = ACTIONS(6760), - [aux_sym_enum_statement_token1] = ACTIONS(6760), - [aux_sym_entry_statement_token1] = ACTIONS(6760), - [aux_sym_null_literal_token1] = ACTIONS(6760), - [aux_sym_coarray_statement_token1] = ACTIONS(6760), - [aux_sym_coarray_statement_token2] = ACTIONS(6760), - [aux_sym_coarray_statement_token6] = ACTIONS(6760), - [aux_sym_coarray_statement_token8] = ACTIONS(6760), - [aux_sym_coarray_statement_token11] = ACTIONS(6760), - [aux_sym_coarray_statement_token12] = ACTIONS(6760), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6760), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6760), - [aux_sym_identifier_token1] = ACTIONS(6760), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6764), + [sym__integer_literal] = ACTIONS(6828), }, - [2819] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), + [2742] = { + [aux_sym_preproc_include_token1] = ACTIONS(6814), + [aux_sym_preproc_def_token1] = ACTIONS(6814), + [aux_sym_preproc_if_token1] = ACTIONS(6814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6814), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6814), + [sym_preproc_directive] = ACTIONS(6814), + [sym_preproc_comment] = ACTIONS(6830), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), + [aux_sym_end_program_statement_token1] = ACTIONS(6814), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6814), + [aux_sym_interface_statement_token1] = ACTIONS(6814), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6814), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6814), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6814), + [aux_sym_language_binding_token1] = ACTIONS(6814), + [aux_sym_procedure_attributes_token1] = ACTIONS(6814), + [aux_sym_procedure_attributes_token3] = ACTIONS(6814), + [aux_sym_contains_statement_token1] = ACTIONS(6814), + [aux_sym_use_statement_token1] = ACTIONS(6814), + [aux_sym_use_statement_token2] = ACTIONS(6814), + [aux_sym_implicit_statement_token1] = ACTIONS(6814), + [aux_sym_implicit_statement_token3] = ACTIONS(6814), + [aux_sym_implicit_statement_token4] = ACTIONS(6814), + [aux_sym_save_statement_token1] = ACTIONS(6814), + [aux_sym_private_statement_token1] = ACTIONS(6814), + [aux_sym_public_statement_token1] = ACTIONS(6814), + [aux_sym_namelist_statement_token1] = ACTIONS(6814), + [aux_sym_common_statement_token1] = ACTIONS(6814), + [aux_sym_import_statement_token1] = ACTIONS(6814), + [aux_sym_derived_type_definition_token1] = ACTIONS(6814), + [aux_sym_abstract_specifier_token1] = ACTIONS(6814), + [aux_sym_procedure_attribute_token6] = ACTIONS(6814), + [aux_sym_variable_attributes_token1] = ACTIONS(6814), + [aux_sym_variable_attributes_token2] = ACTIONS(6814), + [aux_sym_variable_attributes_token3] = ACTIONS(6814), + [aux_sym_variable_attributes_token4] = ACTIONS(6814), + [aux_sym_variable_attributes_token5] = ACTIONS(6814), + [aux_sym__intrinsic_type_token1] = ACTIONS(6814), + [aux_sym__intrinsic_type_token2] = ACTIONS(6814), + [aux_sym__intrinsic_type_token3] = ACTIONS(6814), + [aux_sym__intrinsic_type_token4] = ACTIONS(6814), + [aux_sym__intrinsic_type_token6] = ACTIONS(6814), + [aux_sym__intrinsic_type_token7] = ACTIONS(6814), + [aux_sym__intrinsic_type_token8] = ACTIONS(6814), + [aux_sym__intrinsic_type_token9] = ACTIONS(6814), + [aux_sym__intrinsic_type_token10] = ACTIONS(6814), + [aux_sym_derived_type_token1] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6814), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6814), + [aux_sym_type_qualifier_token1] = ACTIONS(6814), + [aux_sym_type_qualifier_token2] = ACTIONS(6814), + [aux_sym_equivalence_statement_token1] = ACTIONS(6814), + [aux_sym_stop_statement_token1] = ACTIONS(6814), + [aux_sym_stop_statement_token2] = ACTIONS(6814), + [aux_sym_keyword_statement_token2] = ACTIONS(6814), + [aux_sym_keyword_statement_token3] = ACTIONS(6814), + [aux_sym_include_statement_token1] = ACTIONS(6814), + [aux_sym_data_statement_token1] = ACTIONS(6814), + [aux_sym__inline_if_statement_token1] = ACTIONS(6814), + [aux_sym_end_if_statement_token1] = ACTIONS(6814), + [aux_sym_elseif_clause_token2] = ACTIONS(6814), + [aux_sym_select_case_statement_token1] = ACTIONS(6814), + [aux_sym_block_construct_token1] = ACTIONS(6814), + [aux_sym_format_statement_token1] = ACTIONS(6814), + [aux_sym_inquire_statement_token1] = ACTIONS(6814), + [aux_sym_enum_statement_token1] = ACTIONS(6814), + [aux_sym_entry_statement_token1] = ACTIONS(6814), + [aux_sym_null_literal_token1] = ACTIONS(6814), + [aux_sym_coarray_statement_token1] = ACTIONS(6814), + [aux_sym_coarray_statement_token2] = ACTIONS(6814), + [aux_sym_coarray_statement_token6] = ACTIONS(6814), + [aux_sym_coarray_statement_token8] = ACTIONS(6814), + [aux_sym_coarray_statement_token11] = ACTIONS(6814), + [aux_sym_coarray_statement_token12] = ACTIONS(6814), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6814), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6814), + [aux_sym_identifier_token1] = ACTIONS(6814), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), + [sym__integer_literal] = ACTIONS(6818), }, - [2820] = { + [2743] = { [aux_sym_preproc_include_token1] = ACTIONS(4511), [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [aux_sym_preproc_if_token2] = ACTIONS(4511), + [aux_sym_preproc_else_token1] = ACTIONS(4511), + [aux_sym_preproc_elif_token1] = ACTIONS(4511), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4511), [sym_preproc_directive] = ACTIONS(4511), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4511), [aux_sym_interface_statement_token1] = ACTIONS(4511), [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), @@ -423623,109 +416585,2595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), [aux_sym_identifier_token1] = ACTIONS(4511), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), + [sym__integer_literal] = ACTIONS(4513), + }, + [2744] = { + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [aux_sym_preproc_else_token1] = ACTIONS(5002), + [aux_sym_preproc_elif_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5004), + }, + [2745] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [aux_sym_preproc_else_token1] = ACTIONS(4998), + [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + }, + [2746] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token2] = ACTIONS(4379), + [aux_sym_preproc_else_token1] = ACTIONS(4379), + [aux_sym_preproc_elif_token1] = ACTIONS(4379), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4381), + }, + [2747] = { + [sym__expression] = STATE(4312), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_SLASH_RPAREN] = ACTIONS(6832), + [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_RBRACK] = ACTIONS(6832), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2748] = { + [sym_sized_allocation] = STATE(6052), + [sym_coarray_allocation] = STATE(6257), + [sym__expression] = STATE(4565), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(4766), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4766), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2749] = { + [aux_sym_preproc_include_token1] = ACTIONS(6834), + [aux_sym_preproc_def_token1] = ACTIONS(6834), + [aux_sym_preproc_if_token1] = ACTIONS(6834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6834), + [sym_preproc_directive] = ACTIONS(6834), + [sym_preproc_comment] = ACTIONS(6836), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6834), + [aux_sym_end_module_statement_token1] = ACTIONS(6834), + [aux_sym_interface_statement_token1] = ACTIONS(6834), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6834), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6834), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6834), + [aux_sym_language_binding_token1] = ACTIONS(6834), + [aux_sym_procedure_attributes_token1] = ACTIONS(6834), + [aux_sym_procedure_attributes_token3] = ACTIONS(6834), + [aux_sym_contains_statement_token1] = ACTIONS(6834), + [aux_sym_use_statement_token1] = ACTIONS(6834), + [aux_sym_use_statement_token2] = ACTIONS(6834), + [aux_sym_implicit_statement_token1] = ACTIONS(6834), + [aux_sym_implicit_statement_token3] = ACTIONS(6834), + [aux_sym_implicit_statement_token4] = ACTIONS(6834), + [aux_sym_save_statement_token1] = ACTIONS(6834), + [aux_sym_private_statement_token1] = ACTIONS(6834), + [aux_sym_public_statement_token1] = ACTIONS(6834), + [aux_sym_namelist_statement_token1] = ACTIONS(6834), + [aux_sym_common_statement_token1] = ACTIONS(6834), + [aux_sym_import_statement_token1] = ACTIONS(6834), + [aux_sym_derived_type_definition_token1] = ACTIONS(6834), + [aux_sym_abstract_specifier_token1] = ACTIONS(6834), + [aux_sym_procedure_attribute_token6] = ACTIONS(6834), + [aux_sym_variable_attributes_token1] = ACTIONS(6834), + [aux_sym_variable_attributes_token2] = ACTIONS(6834), + [aux_sym_variable_attributes_token3] = ACTIONS(6834), + [aux_sym_variable_attributes_token4] = ACTIONS(6834), + [aux_sym_variable_attributes_token5] = ACTIONS(6834), + [aux_sym__intrinsic_type_token1] = ACTIONS(6834), + [aux_sym__intrinsic_type_token2] = ACTIONS(6834), + [aux_sym__intrinsic_type_token3] = ACTIONS(6834), + [aux_sym__intrinsic_type_token4] = ACTIONS(6834), + [aux_sym__intrinsic_type_token6] = ACTIONS(6834), + [aux_sym__intrinsic_type_token7] = ACTIONS(6834), + [aux_sym__intrinsic_type_token8] = ACTIONS(6834), + [aux_sym__intrinsic_type_token9] = ACTIONS(6834), + [aux_sym__intrinsic_type_token10] = ACTIONS(6834), + [aux_sym_derived_type_token1] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6834), + [aux_sym_type_qualifier_token1] = ACTIONS(6834), + [aux_sym_type_qualifier_token2] = ACTIONS(6834), + [aux_sym_equivalence_statement_token1] = ACTIONS(6834), + [aux_sym_stop_statement_token1] = ACTIONS(6834), + [aux_sym_stop_statement_token2] = ACTIONS(6834), + [aux_sym_keyword_statement_token2] = ACTIONS(6834), + [aux_sym_keyword_statement_token3] = ACTIONS(6834), + [aux_sym_include_statement_token1] = ACTIONS(6834), + [aux_sym_data_statement_token1] = ACTIONS(6834), + [aux_sym__inline_if_statement_token1] = ACTIONS(6834), + [aux_sym_end_if_statement_token1] = ACTIONS(6834), + [aux_sym_elseif_clause_token2] = ACTIONS(6834), + [aux_sym_select_case_statement_token1] = ACTIONS(6834), + [aux_sym_block_construct_token1] = ACTIONS(6834), + [aux_sym_format_statement_token1] = ACTIONS(6834), + [aux_sym_inquire_statement_token1] = ACTIONS(6834), + [aux_sym_enum_statement_token1] = ACTIONS(6834), + [aux_sym_entry_statement_token1] = ACTIONS(6834), + [aux_sym_null_literal_token1] = ACTIONS(6834), + [aux_sym_coarray_statement_token1] = ACTIONS(6834), + [aux_sym_coarray_statement_token2] = ACTIONS(6834), + [aux_sym_coarray_statement_token6] = ACTIONS(6834), + [aux_sym_coarray_statement_token8] = ACTIONS(6834), + [aux_sym_coarray_statement_token11] = ACTIONS(6834), + [aux_sym_coarray_statement_token12] = ACTIONS(6834), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6834), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6834), + [aux_sym_identifier_token1] = ACTIONS(6834), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6838), + }, + [2750] = { + [aux_sym_preproc_include_token1] = ACTIONS(6778), + [aux_sym_preproc_def_token1] = ACTIONS(6778), + [aux_sym_preproc_if_token1] = ACTIONS(6778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6778), + [sym_preproc_directive] = ACTIONS(6778), + [sym_preproc_comment] = ACTIONS(6840), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6778), + [aux_sym_end_module_statement_token1] = ACTIONS(6778), + [aux_sym_interface_statement_token1] = ACTIONS(6778), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6778), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6778), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6778), + [aux_sym_language_binding_token1] = ACTIONS(6778), + [aux_sym_procedure_attributes_token1] = ACTIONS(6778), + [aux_sym_procedure_attributes_token3] = ACTIONS(6778), + [aux_sym_contains_statement_token1] = ACTIONS(6778), + [aux_sym_use_statement_token1] = ACTIONS(6778), + [aux_sym_use_statement_token2] = ACTIONS(6778), + [aux_sym_implicit_statement_token1] = ACTIONS(6778), + [aux_sym_implicit_statement_token3] = ACTIONS(6778), + [aux_sym_implicit_statement_token4] = ACTIONS(6778), + [aux_sym_save_statement_token1] = ACTIONS(6778), + [aux_sym_private_statement_token1] = ACTIONS(6778), + [aux_sym_public_statement_token1] = ACTIONS(6778), + [aux_sym_namelist_statement_token1] = ACTIONS(6778), + [aux_sym_common_statement_token1] = ACTIONS(6778), + [aux_sym_import_statement_token1] = ACTIONS(6778), + [aux_sym_derived_type_definition_token1] = ACTIONS(6778), + [aux_sym_abstract_specifier_token1] = ACTIONS(6778), + [aux_sym_procedure_attribute_token6] = ACTIONS(6778), + [aux_sym_variable_attributes_token1] = ACTIONS(6778), + [aux_sym_variable_attributes_token2] = ACTIONS(6778), + [aux_sym_variable_attributes_token3] = ACTIONS(6778), + [aux_sym_variable_attributes_token4] = ACTIONS(6778), + [aux_sym_variable_attributes_token5] = ACTIONS(6778), + [aux_sym__intrinsic_type_token1] = ACTIONS(6778), + [aux_sym__intrinsic_type_token2] = ACTIONS(6778), + [aux_sym__intrinsic_type_token3] = ACTIONS(6778), + [aux_sym__intrinsic_type_token4] = ACTIONS(6778), + [aux_sym__intrinsic_type_token6] = ACTIONS(6778), + [aux_sym__intrinsic_type_token7] = ACTIONS(6778), + [aux_sym__intrinsic_type_token8] = ACTIONS(6778), + [aux_sym__intrinsic_type_token9] = ACTIONS(6778), + [aux_sym__intrinsic_type_token10] = ACTIONS(6778), + [aux_sym_derived_type_token1] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6778), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6778), + [aux_sym_type_qualifier_token1] = ACTIONS(6778), + [aux_sym_type_qualifier_token2] = ACTIONS(6778), + [aux_sym_equivalence_statement_token1] = ACTIONS(6778), + [aux_sym_stop_statement_token1] = ACTIONS(6778), + [aux_sym_stop_statement_token2] = ACTIONS(6778), + [aux_sym_keyword_statement_token2] = ACTIONS(6778), + [aux_sym_keyword_statement_token3] = ACTIONS(6778), + [aux_sym_include_statement_token1] = ACTIONS(6778), + [aux_sym_data_statement_token1] = ACTIONS(6778), + [aux_sym__inline_if_statement_token1] = ACTIONS(6778), + [aux_sym_end_if_statement_token1] = ACTIONS(6778), + [aux_sym_elseif_clause_token2] = ACTIONS(6778), + [aux_sym_select_case_statement_token1] = ACTIONS(6778), + [aux_sym_block_construct_token1] = ACTIONS(6778), + [aux_sym_format_statement_token1] = ACTIONS(6778), + [aux_sym_inquire_statement_token1] = ACTIONS(6778), + [aux_sym_enum_statement_token1] = ACTIONS(6778), + [aux_sym_entry_statement_token1] = ACTIONS(6778), + [aux_sym_null_literal_token1] = ACTIONS(6778), + [aux_sym_coarray_statement_token1] = ACTIONS(6778), + [aux_sym_coarray_statement_token2] = ACTIONS(6778), + [aux_sym_coarray_statement_token6] = ACTIONS(6778), + [aux_sym_coarray_statement_token8] = ACTIONS(6778), + [aux_sym_coarray_statement_token11] = ACTIONS(6778), + [aux_sym_coarray_statement_token12] = ACTIONS(6778), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6778), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6778), + [aux_sym_identifier_token1] = ACTIONS(6778), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6782), + }, + [2751] = { + [aux_sym_preproc_include_token1] = ACTIONS(6842), + [aux_sym_preproc_def_token1] = ACTIONS(6842), + [aux_sym_preproc_if_token1] = ACTIONS(6842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6842), + [sym_preproc_directive] = ACTIONS(6842), + [sym_preproc_comment] = ACTIONS(6844), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6842), + [aux_sym_end_module_statement_token1] = ACTIONS(6842), + [aux_sym_interface_statement_token1] = ACTIONS(6842), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6842), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6842), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6842), + [aux_sym_language_binding_token1] = ACTIONS(6842), + [aux_sym_procedure_attributes_token1] = ACTIONS(6842), + [aux_sym_procedure_attributes_token3] = ACTIONS(6842), + [aux_sym_contains_statement_token1] = ACTIONS(6842), + [aux_sym_use_statement_token1] = ACTIONS(6842), + [aux_sym_use_statement_token2] = ACTIONS(6842), + [aux_sym_implicit_statement_token1] = ACTIONS(6842), + [aux_sym_implicit_statement_token3] = ACTIONS(6842), + [aux_sym_implicit_statement_token4] = ACTIONS(6842), + [aux_sym_save_statement_token1] = ACTIONS(6842), + [aux_sym_private_statement_token1] = ACTIONS(6842), + [aux_sym_public_statement_token1] = ACTIONS(6842), + [aux_sym_namelist_statement_token1] = ACTIONS(6842), + [aux_sym_common_statement_token1] = ACTIONS(6842), + [aux_sym_import_statement_token1] = ACTIONS(6842), + [aux_sym_derived_type_definition_token1] = ACTIONS(6842), + [aux_sym_abstract_specifier_token1] = ACTIONS(6842), + [aux_sym_procedure_attribute_token6] = ACTIONS(6842), + [aux_sym_variable_attributes_token1] = ACTIONS(6842), + [aux_sym_variable_attributes_token2] = ACTIONS(6842), + [aux_sym_variable_attributes_token3] = ACTIONS(6842), + [aux_sym_variable_attributes_token4] = ACTIONS(6842), + [aux_sym_variable_attributes_token5] = ACTIONS(6842), + [aux_sym__intrinsic_type_token1] = ACTIONS(6842), + [aux_sym__intrinsic_type_token2] = ACTIONS(6842), + [aux_sym__intrinsic_type_token3] = ACTIONS(6842), + [aux_sym__intrinsic_type_token4] = ACTIONS(6842), + [aux_sym__intrinsic_type_token6] = ACTIONS(6842), + [aux_sym__intrinsic_type_token7] = ACTIONS(6842), + [aux_sym__intrinsic_type_token8] = ACTIONS(6842), + [aux_sym__intrinsic_type_token9] = ACTIONS(6842), + [aux_sym__intrinsic_type_token10] = ACTIONS(6842), + [aux_sym_derived_type_token1] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6842), + [aux_sym_type_qualifier_token1] = ACTIONS(6842), + [aux_sym_type_qualifier_token2] = ACTIONS(6842), + [aux_sym_equivalence_statement_token1] = ACTIONS(6842), + [aux_sym_stop_statement_token1] = ACTIONS(6842), + [aux_sym_stop_statement_token2] = ACTIONS(6842), + [aux_sym_keyword_statement_token2] = ACTIONS(6842), + [aux_sym_keyword_statement_token3] = ACTIONS(6842), + [aux_sym_include_statement_token1] = ACTIONS(6842), + [aux_sym_data_statement_token1] = ACTIONS(6842), + [aux_sym__inline_if_statement_token1] = ACTIONS(6842), + [aux_sym_end_if_statement_token1] = ACTIONS(6842), + [aux_sym_elseif_clause_token2] = ACTIONS(6842), + [aux_sym_select_case_statement_token1] = ACTIONS(6842), + [aux_sym_block_construct_token1] = ACTIONS(6842), + [aux_sym_format_statement_token1] = ACTIONS(6842), + [aux_sym_inquire_statement_token1] = ACTIONS(6842), + [aux_sym_enum_statement_token1] = ACTIONS(6842), + [aux_sym_entry_statement_token1] = ACTIONS(6842), + [aux_sym_null_literal_token1] = ACTIONS(6842), + [aux_sym_coarray_statement_token1] = ACTIONS(6842), + [aux_sym_coarray_statement_token2] = ACTIONS(6842), + [aux_sym_coarray_statement_token6] = ACTIONS(6842), + [aux_sym_coarray_statement_token8] = ACTIONS(6842), + [aux_sym_coarray_statement_token11] = ACTIONS(6842), + [aux_sym_coarray_statement_token12] = ACTIONS(6842), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6842), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6842), + [aux_sym_identifier_token1] = ACTIONS(6842), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6846), + }, + [2752] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token2] = ACTIONS(5006), + [aux_sym_preproc_else_token1] = ACTIONS(5006), + [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + }, + [2753] = { + [aux_sym_preproc_include_token1] = ACTIONS(6758), + [aux_sym_preproc_def_token1] = ACTIONS(6758), + [aux_sym_preproc_if_token1] = ACTIONS(6758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6758), + [sym_preproc_directive] = ACTIONS(6758), + [sym_preproc_comment] = ACTIONS(6848), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6758), + [aux_sym_end_module_statement_token1] = ACTIONS(6758), + [aux_sym_interface_statement_token1] = ACTIONS(6758), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6758), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6758), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6758), + [aux_sym_language_binding_token1] = ACTIONS(6758), + [aux_sym_procedure_attributes_token1] = ACTIONS(6758), + [aux_sym_procedure_attributes_token3] = ACTIONS(6758), + [aux_sym_contains_statement_token1] = ACTIONS(6758), + [aux_sym_use_statement_token1] = ACTIONS(6758), + [aux_sym_use_statement_token2] = ACTIONS(6758), + [aux_sym_implicit_statement_token1] = ACTIONS(6758), + [aux_sym_implicit_statement_token3] = ACTIONS(6758), + [aux_sym_implicit_statement_token4] = ACTIONS(6758), + [aux_sym_save_statement_token1] = ACTIONS(6758), + [aux_sym_private_statement_token1] = ACTIONS(6758), + [aux_sym_public_statement_token1] = ACTIONS(6758), + [aux_sym_namelist_statement_token1] = ACTIONS(6758), + [aux_sym_common_statement_token1] = ACTIONS(6758), + [aux_sym_import_statement_token1] = ACTIONS(6758), + [aux_sym_derived_type_definition_token1] = ACTIONS(6758), + [aux_sym_abstract_specifier_token1] = ACTIONS(6758), + [aux_sym_procedure_attribute_token6] = ACTIONS(6758), + [aux_sym_variable_attributes_token1] = ACTIONS(6758), + [aux_sym_variable_attributes_token2] = ACTIONS(6758), + [aux_sym_variable_attributes_token3] = ACTIONS(6758), + [aux_sym_variable_attributes_token4] = ACTIONS(6758), + [aux_sym_variable_attributes_token5] = ACTIONS(6758), + [aux_sym__intrinsic_type_token1] = ACTIONS(6758), + [aux_sym__intrinsic_type_token2] = ACTIONS(6758), + [aux_sym__intrinsic_type_token3] = ACTIONS(6758), + [aux_sym__intrinsic_type_token4] = ACTIONS(6758), + [aux_sym__intrinsic_type_token6] = ACTIONS(6758), + [aux_sym__intrinsic_type_token7] = ACTIONS(6758), + [aux_sym__intrinsic_type_token8] = ACTIONS(6758), + [aux_sym__intrinsic_type_token9] = ACTIONS(6758), + [aux_sym__intrinsic_type_token10] = ACTIONS(6758), + [aux_sym_derived_type_token1] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6758), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6758), + [aux_sym_type_qualifier_token1] = ACTIONS(6758), + [aux_sym_type_qualifier_token2] = ACTIONS(6758), + [aux_sym_equivalence_statement_token1] = ACTIONS(6758), + [aux_sym_stop_statement_token1] = ACTIONS(6758), + [aux_sym_stop_statement_token2] = ACTIONS(6758), + [aux_sym_keyword_statement_token2] = ACTIONS(6758), + [aux_sym_keyword_statement_token3] = ACTIONS(6758), + [aux_sym_include_statement_token1] = ACTIONS(6758), + [aux_sym_data_statement_token1] = ACTIONS(6758), + [aux_sym__inline_if_statement_token1] = ACTIONS(6758), + [aux_sym_end_if_statement_token1] = ACTIONS(6758), + [aux_sym_elseif_clause_token2] = ACTIONS(6758), + [aux_sym_select_case_statement_token1] = ACTIONS(6758), + [aux_sym_block_construct_token1] = ACTIONS(6758), + [aux_sym_format_statement_token1] = ACTIONS(6758), + [aux_sym_inquire_statement_token1] = ACTIONS(6758), + [aux_sym_enum_statement_token1] = ACTIONS(6758), + [aux_sym_entry_statement_token1] = ACTIONS(6758), + [aux_sym_null_literal_token1] = ACTIONS(6758), + [aux_sym_coarray_statement_token1] = ACTIONS(6758), + [aux_sym_coarray_statement_token2] = ACTIONS(6758), + [aux_sym_coarray_statement_token6] = ACTIONS(6758), + [aux_sym_coarray_statement_token8] = ACTIONS(6758), + [aux_sym_coarray_statement_token11] = ACTIONS(6758), + [aux_sym_coarray_statement_token12] = ACTIONS(6758), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6758), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6758), + [aux_sym_identifier_token1] = ACTIONS(6758), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6762), + }, + [2754] = { + [anon_sym_LPAREN2] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6852), + [anon_sym_DASH] = ACTIONS(6852), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6850), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6850), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6850), + [aux_sym_procedure_attributes_token3] = ACTIONS(6850), + [aux_sym_use_statement_token2] = ACTIONS(6850), + [aux_sym_implicit_statement_token4] = ACTIONS(6850), + [aux_sym_save_statement_token1] = ACTIONS(6850), + [aux_sym_private_statement_token1] = ACTIONS(6850), + [aux_sym_public_statement_token1] = ACTIONS(6850), + [aux_sym_derived_type_definition_token1] = ACTIONS(6850), + [aux_sym_procedure_attribute_token6] = ACTIONS(6850), + [aux_sym_variable_attributes_token2] = ACTIONS(6850), + [aux_sym_variable_attributes_token3] = ACTIONS(6850), + [aux_sym_variable_attributes_token5] = ACTIONS(6850), + [aux_sym__intrinsic_type_token1] = ACTIONS(6850), + [aux_sym__intrinsic_type_token3] = ACTIONS(6850), + [aux_sym__intrinsic_type_token4] = ACTIONS(6850), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6850), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6850), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6850), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6850), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6850), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6850), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6850), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6850), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6850), + [aux_sym_type_qualifier_token1] = ACTIONS(6850), + [aux_sym_type_qualifier_token2] = ACTIONS(6850), + [anon_sym_SEMI] = ACTIONS(6852), + [aux_sym_stop_statement_token1] = ACTIONS(6850), + [aux_sym_stop_statement_token2] = ACTIONS(6850), + [aux_sym_subroutine_call_token1] = ACTIONS(6850), + [aux_sym_keyword_statement_token1] = ACTIONS(6850), + [aux_sym_keyword_statement_token2] = ACTIONS(6850), + [aux_sym_keyword_statement_token3] = ACTIONS(6850), + [aux_sym_keyword_statement_token4] = ACTIONS(6850), + [aux_sym_keyword_statement_token6] = ACTIONS(6850), + [aux_sym_keyword_statement_token7] = ACTIONS(6850), + [aux_sym_include_statement_token1] = ACTIONS(6850), + [aux_sym_data_statement_token1] = ACTIONS(6850), + [aux_sym_do_loop_statement_token1] = ACTIONS(6850), + [aux_sym__inline_if_statement_token1] = ACTIONS(6850), + [aux_sym_end_if_statement_token1] = ACTIONS(6850), + [aux_sym_elseif_clause_token2] = ACTIONS(6850), + [aux_sym__inline_where_statement_token1] = ACTIONS(6850), + [aux_sym__forall_control_expression_token1] = ACTIONS(6850), + [aux_sym_select_case_statement_token1] = ACTIONS(6850), + [aux_sym_select_case_statement_token3] = ACTIONS(6850), + [aux_sym_select_type_statement_token1] = ACTIONS(6850), + [aux_sym_select_rank_statement_token2] = ACTIONS(6850), + [aux_sym_block_construct_token1] = ACTIONS(6850), + [aux_sym_associate_statement_token1] = ACTIONS(6850), + [aux_sym_format_statement_token1] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_inquire_statement_token1] = ACTIONS(6850), + [aux_sym_file_position_statement_token1] = ACTIONS(6850), + [aux_sym_file_position_statement_token2] = ACTIONS(6850), + [aux_sym_file_position_statement_token3] = ACTIONS(6850), + [aux_sym_file_position_statement_token4] = ACTIONS(6850), + [aux_sym_allocate_statement_token1] = ACTIONS(6850), + [aux_sym_entry_statement_token1] = ACTIONS(6850), + [aux_sym_logical_expression_token5] = ACTIONS(6852), + [anon_sym_DOT] = ACTIONS(6850), + [anon_sym_LPAREN_SLASH] = ACTIONS(6852), + [anon_sym_LBRACK] = ACTIONS(6852), + [aux_sym_boolean_literal_token1] = ACTIONS(6852), + [aux_sym_boolean_literal_token2] = ACTIONS(6852), + [aux_sym_null_literal_token1] = ACTIONS(6850), + [aux_sym_coarray_statement_token1] = ACTIONS(6850), + [aux_sym_coarray_statement_token2] = ACTIONS(6850), + [aux_sym_coarray_statement_token6] = ACTIONS(6850), + [aux_sym_coarray_statement_token8] = ACTIONS(6850), + [aux_sym_coarray_statement_token11] = ACTIONS(6850), + [aux_sym_coarray_statement_token12] = ACTIONS(6850), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6850), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6850), + [aux_sym_identifier_token1] = ACTIONS(6850), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6852), + [sym__float_literal] = ACTIONS(6852), + [sym__boz_literal] = ACTIONS(6852), + [sym__string_literal] = ACTIONS(6852), + [sym__string_literal_kind] = ACTIONS(6852), + [sym__external_end_of_statement] = ACTIONS(6852), + }, + [2755] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token2] = ACTIONS(4994), + [aux_sym_preproc_else_token1] = ACTIONS(4994), + [aux_sym_preproc_elif_token1] = ACTIONS(4994), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4996), + }, + [2756] = { + [aux_sym_preproc_include_token1] = ACTIONS(6806), + [aux_sym_preproc_def_token1] = ACTIONS(6806), + [aux_sym_preproc_if_token1] = ACTIONS(6806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6806), + [sym_preproc_directive] = ACTIONS(6806), + [sym_preproc_comment] = ACTIONS(6854), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6806), + [aux_sym_end_module_statement_token1] = ACTIONS(6806), + [aux_sym_interface_statement_token1] = ACTIONS(6806), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6806), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6806), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6806), + [aux_sym_language_binding_token1] = ACTIONS(6806), + [aux_sym_procedure_attributes_token1] = ACTIONS(6806), + [aux_sym_procedure_attributes_token3] = ACTIONS(6806), + [aux_sym_contains_statement_token1] = ACTIONS(6806), + [aux_sym_use_statement_token1] = ACTIONS(6806), + [aux_sym_use_statement_token2] = ACTIONS(6806), + [aux_sym_implicit_statement_token1] = ACTIONS(6806), + [aux_sym_implicit_statement_token3] = ACTIONS(6806), + [aux_sym_implicit_statement_token4] = ACTIONS(6806), + [aux_sym_save_statement_token1] = ACTIONS(6806), + [aux_sym_private_statement_token1] = ACTIONS(6806), + [aux_sym_public_statement_token1] = ACTIONS(6806), + [aux_sym_namelist_statement_token1] = ACTIONS(6806), + [aux_sym_common_statement_token1] = ACTIONS(6806), + [aux_sym_import_statement_token1] = ACTIONS(6806), + [aux_sym_derived_type_definition_token1] = ACTIONS(6806), + [aux_sym_abstract_specifier_token1] = ACTIONS(6806), + [aux_sym_procedure_attribute_token6] = ACTIONS(6806), + [aux_sym_variable_attributes_token1] = ACTIONS(6806), + [aux_sym_variable_attributes_token2] = ACTIONS(6806), + [aux_sym_variable_attributes_token3] = ACTIONS(6806), + [aux_sym_variable_attributes_token4] = ACTIONS(6806), + [aux_sym_variable_attributes_token5] = ACTIONS(6806), + [aux_sym__intrinsic_type_token1] = ACTIONS(6806), + [aux_sym__intrinsic_type_token2] = ACTIONS(6806), + [aux_sym__intrinsic_type_token3] = ACTIONS(6806), + [aux_sym__intrinsic_type_token4] = ACTIONS(6806), + [aux_sym__intrinsic_type_token6] = ACTIONS(6806), + [aux_sym__intrinsic_type_token7] = ACTIONS(6806), + [aux_sym__intrinsic_type_token8] = ACTIONS(6806), + [aux_sym__intrinsic_type_token9] = ACTIONS(6806), + [aux_sym__intrinsic_type_token10] = ACTIONS(6806), + [aux_sym_derived_type_token1] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6806), + [aux_sym_type_qualifier_token1] = ACTIONS(6806), + [aux_sym_type_qualifier_token2] = ACTIONS(6806), + [aux_sym_equivalence_statement_token1] = ACTIONS(6806), + [aux_sym_stop_statement_token1] = ACTIONS(6806), + [aux_sym_stop_statement_token2] = ACTIONS(6806), + [aux_sym_keyword_statement_token2] = ACTIONS(6806), + [aux_sym_keyword_statement_token3] = ACTIONS(6806), + [aux_sym_include_statement_token1] = ACTIONS(6806), + [aux_sym_data_statement_token1] = ACTIONS(6806), + [aux_sym__inline_if_statement_token1] = ACTIONS(6806), + [aux_sym_end_if_statement_token1] = ACTIONS(6806), + [aux_sym_elseif_clause_token2] = ACTIONS(6806), + [aux_sym_select_case_statement_token1] = ACTIONS(6806), + [aux_sym_block_construct_token1] = ACTIONS(6806), + [aux_sym_format_statement_token1] = ACTIONS(6806), + [aux_sym_inquire_statement_token1] = ACTIONS(6806), + [aux_sym_enum_statement_token1] = ACTIONS(6806), + [aux_sym_entry_statement_token1] = ACTIONS(6806), + [aux_sym_null_literal_token1] = ACTIONS(6806), + [aux_sym_coarray_statement_token1] = ACTIONS(6806), + [aux_sym_coarray_statement_token2] = ACTIONS(6806), + [aux_sym_coarray_statement_token6] = ACTIONS(6806), + [aux_sym_coarray_statement_token8] = ACTIONS(6806), + [aux_sym_coarray_statement_token11] = ACTIONS(6806), + [aux_sym_coarray_statement_token12] = ACTIONS(6806), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6806), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6806), + [aux_sym_identifier_token1] = ACTIONS(6806), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6810), + }, + [2757] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token2] = ACTIONS(5063), + [aux_sym_preproc_else_token1] = ACTIONS(5063), + [aux_sym_preproc_elif_token1] = ACTIONS(5063), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + }, + [2758] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token2] = ACTIONS(4982), + [aux_sym_preproc_else_token1] = ACTIONS(4982), + [aux_sym_preproc_elif_token1] = ACTIONS(4982), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + }, + [2759] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token2] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5026), + [aux_sym_preproc_elif_token1] = ACTIONS(5026), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + }, + [2760] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token2] = ACTIONS(4986), + [aux_sym_preproc_else_token1] = ACTIONS(4986), + [aux_sym_preproc_elif_token1] = ACTIONS(4986), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + }, + [2761] = { + [aux_sym_preproc_include_token1] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token2] = ACTIONS(4990), + [aux_sym_preproc_else_token1] = ACTIONS(4990), + [aux_sym_preproc_elif_token1] = ACTIONS(4990), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4990), + [aux_sym_interface_statement_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_language_binding_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_contains_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token2] = ACTIONS(4990), + [aux_sym_implicit_statement_token1] = ACTIONS(4990), + [aux_sym_implicit_statement_token3] = ACTIONS(4990), + [aux_sym_implicit_statement_token4] = ACTIONS(4990), + [aux_sym_save_statement_token1] = ACTIONS(4990), + [aux_sym_private_statement_token1] = ACTIONS(4990), + [aux_sym_public_statement_token1] = ACTIONS(4990), + [aux_sym_namelist_statement_token1] = ACTIONS(4990), + [aux_sym_common_statement_token1] = ACTIONS(4990), + [aux_sym_import_statement_token1] = ACTIONS(4990), + [aux_sym_derived_type_definition_token1] = ACTIONS(4990), + [aux_sym_abstract_specifier_token1] = ACTIONS(4990), + [aux_sym_procedure_attribute_token6] = ACTIONS(4990), + [aux_sym_variable_attributes_token1] = ACTIONS(4990), + [aux_sym_variable_attributes_token2] = ACTIONS(4990), + [aux_sym_variable_attributes_token3] = ACTIONS(4990), + [aux_sym_variable_attributes_token4] = ACTIONS(4990), + [aux_sym_variable_attributes_token5] = ACTIONS(4990), + [aux_sym__intrinsic_type_token1] = ACTIONS(4990), + [aux_sym__intrinsic_type_token2] = ACTIONS(4990), + [aux_sym__intrinsic_type_token3] = ACTIONS(4990), + [aux_sym__intrinsic_type_token4] = ACTIONS(4990), + [aux_sym__intrinsic_type_token6] = ACTIONS(4990), + [aux_sym__intrinsic_type_token7] = ACTIONS(4990), + [aux_sym__intrinsic_type_token8] = ACTIONS(4990), + [aux_sym__intrinsic_type_token9] = ACTIONS(4990), + [aux_sym__intrinsic_type_token10] = ACTIONS(4990), + [aux_sym_derived_type_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), + [aux_sym_type_qualifier_token1] = ACTIONS(4990), + [aux_sym_type_qualifier_token2] = ACTIONS(4990), + [aux_sym_equivalence_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token3] = ACTIONS(4990), + [aux_sym_include_statement_token1] = ACTIONS(4990), + [aux_sym_data_statement_token1] = ACTIONS(4990), + [aux_sym__inline_if_statement_token1] = ACTIONS(4990), + [aux_sym_end_if_statement_token1] = ACTIONS(4990), + [aux_sym_elseif_clause_token2] = ACTIONS(4990), + [aux_sym_select_case_statement_token1] = ACTIONS(4990), + [aux_sym_block_construct_token1] = ACTIONS(4990), + [aux_sym_format_statement_token1] = ACTIONS(4990), + [aux_sym_inquire_statement_token1] = ACTIONS(4990), + [aux_sym_enum_statement_token1] = ACTIONS(4990), + [aux_sym_entry_statement_token1] = ACTIONS(4990), + [aux_sym_null_literal_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token2] = ACTIONS(4990), + [aux_sym_coarray_statement_token6] = ACTIONS(4990), + [aux_sym_coarray_statement_token8] = ACTIONS(4990), + [aux_sym_coarray_statement_token11] = ACTIONS(4990), + [aux_sym_coarray_statement_token12] = ACTIONS(4990), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), + [aux_sym_identifier_token1] = ACTIONS(4990), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4992), + }, + [2762] = { + [anon_sym_LPAREN2] = ACTIONS(6856), + [anon_sym_PLUS] = ACTIONS(6858), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6856), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6856), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6856), + [aux_sym_procedure_attributes_token3] = ACTIONS(6856), + [aux_sym_use_statement_token2] = ACTIONS(6856), + [aux_sym_implicit_statement_token4] = ACTIONS(6856), + [aux_sym_save_statement_token1] = ACTIONS(6856), + [aux_sym_private_statement_token1] = ACTIONS(6856), + [aux_sym_public_statement_token1] = ACTIONS(6856), + [aux_sym_derived_type_definition_token1] = ACTIONS(6856), + [aux_sym_procedure_attribute_token6] = ACTIONS(6856), + [aux_sym_variable_attributes_token2] = ACTIONS(6856), + [aux_sym_variable_attributes_token3] = ACTIONS(6856), + [aux_sym_variable_attributes_token5] = ACTIONS(6856), + [aux_sym__intrinsic_type_token1] = ACTIONS(6856), + [aux_sym__intrinsic_type_token3] = ACTIONS(6856), + [aux_sym__intrinsic_type_token4] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6856), + [aux_sym_type_qualifier_token1] = ACTIONS(6856), + [aux_sym_type_qualifier_token2] = ACTIONS(6856), + [anon_sym_SEMI] = ACTIONS(6858), + [aux_sym_stop_statement_token1] = ACTIONS(6856), + [aux_sym_stop_statement_token2] = ACTIONS(6856), + [aux_sym_subroutine_call_token1] = ACTIONS(6856), + [aux_sym_keyword_statement_token1] = ACTIONS(6856), + [aux_sym_keyword_statement_token2] = ACTIONS(6856), + [aux_sym_keyword_statement_token3] = ACTIONS(6856), + [aux_sym_keyword_statement_token4] = ACTIONS(6856), + [aux_sym_keyword_statement_token6] = ACTIONS(6856), + [aux_sym_keyword_statement_token7] = ACTIONS(6856), + [aux_sym_include_statement_token1] = ACTIONS(6856), + [aux_sym_data_statement_token1] = ACTIONS(6856), + [aux_sym_do_loop_statement_token1] = ACTIONS(6856), + [aux_sym__inline_if_statement_token1] = ACTIONS(6856), + [aux_sym_end_if_statement_token1] = ACTIONS(6856), + [aux_sym_elseif_clause_token2] = ACTIONS(6856), + [aux_sym__inline_where_statement_token1] = ACTIONS(6856), + [aux_sym__forall_control_expression_token1] = ACTIONS(6856), + [aux_sym_select_case_statement_token1] = ACTIONS(6856), + [aux_sym_select_case_statement_token3] = ACTIONS(6856), + [aux_sym_select_type_statement_token1] = ACTIONS(6856), + [aux_sym_select_rank_statement_token2] = ACTIONS(6856), + [aux_sym_block_construct_token1] = ACTIONS(6856), + [aux_sym_associate_statement_token1] = ACTIONS(6856), + [aux_sym_format_statement_token1] = ACTIONS(6856), + [aux_sym_print_statement_token1] = ACTIONS(6856), + [aux_sym_open_statement_token1] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6856), + [aux_sym_inquire_statement_token1] = ACTIONS(6856), + [aux_sym_file_position_statement_token1] = ACTIONS(6856), + [aux_sym_file_position_statement_token2] = ACTIONS(6856), + [aux_sym_file_position_statement_token3] = ACTIONS(6856), + [aux_sym_file_position_statement_token4] = ACTIONS(6856), + [aux_sym_allocate_statement_token1] = ACTIONS(6856), + [aux_sym_entry_statement_token1] = ACTIONS(6856), + [aux_sym_logical_expression_token5] = ACTIONS(6858), + [anon_sym_DOT] = ACTIONS(6856), + [anon_sym_LPAREN_SLASH] = ACTIONS(6858), + [anon_sym_LBRACK] = ACTIONS(6858), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [aux_sym_null_literal_token1] = ACTIONS(6856), + [aux_sym_coarray_statement_token1] = ACTIONS(6856), + [aux_sym_coarray_statement_token2] = ACTIONS(6856), + [aux_sym_coarray_statement_token6] = ACTIONS(6856), + [aux_sym_coarray_statement_token8] = ACTIONS(6856), + [aux_sym_coarray_statement_token11] = ACTIONS(6856), + [aux_sym_coarray_statement_token12] = ACTIONS(6856), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6856), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6856), + [aux_sym_identifier_token1] = ACTIONS(6856), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6858), + [sym__float_literal] = ACTIONS(6858), + [sym__boz_literal] = ACTIONS(6858), + [sym__string_literal] = ACTIONS(6858), + [sym__string_literal_kind] = ACTIONS(6858), + [sym__external_end_of_statement] = ACTIONS(6858), + }, + [2763] = { + [aux_sym_preproc_include_token1] = ACTIONS(6842), + [aux_sym_preproc_def_token1] = ACTIONS(6842), + [aux_sym_preproc_if_token1] = ACTIONS(6842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6842), + [sym_preproc_directive] = ACTIONS(6842), + [sym_preproc_comment] = ACTIONS(6860), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6842), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6842), + [aux_sym_interface_statement_token1] = ACTIONS(6842), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6842), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6842), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6842), + [aux_sym_language_binding_token1] = ACTIONS(6842), + [aux_sym_procedure_attributes_token1] = ACTIONS(6842), + [aux_sym_procedure_attributes_token3] = ACTIONS(6842), + [aux_sym_contains_statement_token1] = ACTIONS(6842), + [aux_sym_use_statement_token1] = ACTIONS(6842), + [aux_sym_use_statement_token2] = ACTIONS(6842), + [aux_sym_implicit_statement_token1] = ACTIONS(6842), + [aux_sym_implicit_statement_token3] = ACTIONS(6842), + [aux_sym_implicit_statement_token4] = ACTIONS(6842), + [aux_sym_save_statement_token1] = ACTIONS(6842), + [aux_sym_private_statement_token1] = ACTIONS(6842), + [aux_sym_public_statement_token1] = ACTIONS(6842), + [aux_sym_namelist_statement_token1] = ACTIONS(6842), + [aux_sym_common_statement_token1] = ACTIONS(6842), + [aux_sym_import_statement_token1] = ACTIONS(6842), + [aux_sym_derived_type_definition_token1] = ACTIONS(6842), + [aux_sym_abstract_specifier_token1] = ACTIONS(6842), + [aux_sym_procedure_attribute_token6] = ACTIONS(6842), + [aux_sym_variable_attributes_token1] = ACTIONS(6842), + [aux_sym_variable_attributes_token2] = ACTIONS(6842), + [aux_sym_variable_attributes_token3] = ACTIONS(6842), + [aux_sym_variable_attributes_token4] = ACTIONS(6842), + [aux_sym_variable_attributes_token5] = ACTIONS(6842), + [aux_sym__intrinsic_type_token1] = ACTIONS(6842), + [aux_sym__intrinsic_type_token2] = ACTIONS(6842), + [aux_sym__intrinsic_type_token3] = ACTIONS(6842), + [aux_sym__intrinsic_type_token4] = ACTIONS(6842), + [aux_sym__intrinsic_type_token6] = ACTIONS(6842), + [aux_sym__intrinsic_type_token7] = ACTIONS(6842), + [aux_sym__intrinsic_type_token8] = ACTIONS(6842), + [aux_sym__intrinsic_type_token9] = ACTIONS(6842), + [aux_sym__intrinsic_type_token10] = ACTIONS(6842), + [aux_sym_derived_type_token1] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6842), + [aux_sym_type_qualifier_token1] = ACTIONS(6842), + [aux_sym_type_qualifier_token2] = ACTIONS(6842), + [aux_sym_equivalence_statement_token1] = ACTIONS(6842), + [aux_sym_stop_statement_token1] = ACTIONS(6842), + [aux_sym_stop_statement_token2] = ACTIONS(6842), + [aux_sym_keyword_statement_token2] = ACTIONS(6842), + [aux_sym_keyword_statement_token3] = ACTIONS(6842), + [aux_sym_include_statement_token1] = ACTIONS(6842), + [aux_sym_data_statement_token1] = ACTIONS(6842), + [aux_sym__inline_if_statement_token1] = ACTIONS(6842), + [aux_sym_end_if_statement_token1] = ACTIONS(6842), + [aux_sym_elseif_clause_token2] = ACTIONS(6842), + [aux_sym_select_case_statement_token1] = ACTIONS(6842), + [aux_sym_block_construct_token1] = ACTIONS(6842), + [aux_sym_format_statement_token1] = ACTIONS(6842), + [aux_sym_inquire_statement_token1] = ACTIONS(6842), + [aux_sym_enum_statement_token1] = ACTIONS(6842), + [aux_sym_entry_statement_token1] = ACTIONS(6842), + [aux_sym_null_literal_token1] = ACTIONS(6842), + [aux_sym_coarray_statement_token1] = ACTIONS(6842), + [aux_sym_coarray_statement_token2] = ACTIONS(6842), + [aux_sym_coarray_statement_token6] = ACTIONS(6842), + [aux_sym_coarray_statement_token8] = ACTIONS(6842), + [aux_sym_coarray_statement_token11] = ACTIONS(6842), + [aux_sym_coarray_statement_token12] = ACTIONS(6842), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6842), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6842), + [aux_sym_identifier_token1] = ACTIONS(6842), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6846), + }, + [2764] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token2] = ACTIONS(4615), + [aux_sym_preproc_else_token1] = ACTIONS(4615), + [aux_sym_preproc_elif_token1] = ACTIONS(4615), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4617), + }, + [2765] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token2] = ACTIONS(5010), + [aux_sym_preproc_else_token1] = ACTIONS(5010), + [aux_sym_preproc_elif_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + }, + [2766] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [aux_sym_preproc_else_token1] = ACTIONS(5014), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + }, + [2767] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token2] = ACTIONS(4383), + [aux_sym_preproc_else_token1] = ACTIONS(4383), + [aux_sym_preproc_elif_token1] = ACTIONS(4383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4385), }, - [2821] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_end_module_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), + [2768] = { + [aux_sym_preproc_include_token1] = ACTIONS(6798), + [aux_sym_preproc_def_token1] = ACTIONS(6798), + [aux_sym_preproc_if_token1] = ACTIONS(6798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6798), + [sym_preproc_directive] = ACTIONS(6798), + [sym_preproc_comment] = ACTIONS(6862), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6798), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6798), + [aux_sym_interface_statement_token1] = ACTIONS(6798), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6798), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6798), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6798), + [aux_sym_language_binding_token1] = ACTIONS(6798), + [aux_sym_procedure_attributes_token1] = ACTIONS(6798), + [aux_sym_procedure_attributes_token3] = ACTIONS(6798), + [aux_sym_contains_statement_token1] = ACTIONS(6798), + [aux_sym_use_statement_token1] = ACTIONS(6798), + [aux_sym_use_statement_token2] = ACTIONS(6798), + [aux_sym_implicit_statement_token1] = ACTIONS(6798), + [aux_sym_implicit_statement_token3] = ACTIONS(6798), + [aux_sym_implicit_statement_token4] = ACTIONS(6798), + [aux_sym_save_statement_token1] = ACTIONS(6798), + [aux_sym_private_statement_token1] = ACTIONS(6798), + [aux_sym_public_statement_token1] = ACTIONS(6798), + [aux_sym_namelist_statement_token1] = ACTIONS(6798), + [aux_sym_common_statement_token1] = ACTIONS(6798), + [aux_sym_import_statement_token1] = ACTIONS(6798), + [aux_sym_derived_type_definition_token1] = ACTIONS(6798), + [aux_sym_abstract_specifier_token1] = ACTIONS(6798), + [aux_sym_procedure_attribute_token6] = ACTIONS(6798), + [aux_sym_variable_attributes_token1] = ACTIONS(6798), + [aux_sym_variable_attributes_token2] = ACTIONS(6798), + [aux_sym_variable_attributes_token3] = ACTIONS(6798), + [aux_sym_variable_attributes_token4] = ACTIONS(6798), + [aux_sym_variable_attributes_token5] = ACTIONS(6798), + [aux_sym__intrinsic_type_token1] = ACTIONS(6798), + [aux_sym__intrinsic_type_token2] = ACTIONS(6798), + [aux_sym__intrinsic_type_token3] = ACTIONS(6798), + [aux_sym__intrinsic_type_token4] = ACTIONS(6798), + [aux_sym__intrinsic_type_token6] = ACTIONS(6798), + [aux_sym__intrinsic_type_token7] = ACTIONS(6798), + [aux_sym__intrinsic_type_token8] = ACTIONS(6798), + [aux_sym__intrinsic_type_token9] = ACTIONS(6798), + [aux_sym__intrinsic_type_token10] = ACTIONS(6798), + [aux_sym_derived_type_token1] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6798), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6798), + [aux_sym_type_qualifier_token1] = ACTIONS(6798), + [aux_sym_type_qualifier_token2] = ACTIONS(6798), + [aux_sym_equivalence_statement_token1] = ACTIONS(6798), + [aux_sym_stop_statement_token1] = ACTIONS(6798), + [aux_sym_stop_statement_token2] = ACTIONS(6798), + [aux_sym_keyword_statement_token2] = ACTIONS(6798), + [aux_sym_keyword_statement_token3] = ACTIONS(6798), + [aux_sym_include_statement_token1] = ACTIONS(6798), + [aux_sym_data_statement_token1] = ACTIONS(6798), + [aux_sym__inline_if_statement_token1] = ACTIONS(6798), + [aux_sym_end_if_statement_token1] = ACTIONS(6798), + [aux_sym_elseif_clause_token2] = ACTIONS(6798), + [aux_sym_select_case_statement_token1] = ACTIONS(6798), + [aux_sym_block_construct_token1] = ACTIONS(6798), + [aux_sym_format_statement_token1] = ACTIONS(6798), + [aux_sym_inquire_statement_token1] = ACTIONS(6798), + [aux_sym_enum_statement_token1] = ACTIONS(6798), + [aux_sym_entry_statement_token1] = ACTIONS(6798), + [aux_sym_null_literal_token1] = ACTIONS(6798), + [aux_sym_coarray_statement_token1] = ACTIONS(6798), + [aux_sym_coarray_statement_token2] = ACTIONS(6798), + [aux_sym_coarray_statement_token6] = ACTIONS(6798), + [aux_sym_coarray_statement_token8] = ACTIONS(6798), + [aux_sym_coarray_statement_token11] = ACTIONS(6798), + [aux_sym_coarray_statement_token12] = ACTIONS(6798), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6798), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6798), + [aux_sym_identifier_token1] = ACTIONS(6798), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6802), }, - [2822] = { + [2769] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token2] = ACTIONS(5055), + [aux_sym_preproc_else_token1] = ACTIONS(5055), + [aux_sym_preproc_elif_token1] = ACTIONS(5055), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + }, + [2770] = { + [aux_sym_preproc_include_token1] = ACTIONS(6834), + [aux_sym_preproc_def_token1] = ACTIONS(6834), + [aux_sym_preproc_if_token1] = ACTIONS(6834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6834), + [sym_preproc_directive] = ACTIONS(6834), + [sym_preproc_comment] = ACTIONS(6864), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6834), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6834), + [aux_sym_interface_statement_token1] = ACTIONS(6834), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6834), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6834), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6834), + [aux_sym_language_binding_token1] = ACTIONS(6834), + [aux_sym_procedure_attributes_token1] = ACTIONS(6834), + [aux_sym_procedure_attributes_token3] = ACTIONS(6834), + [aux_sym_contains_statement_token1] = ACTIONS(6834), + [aux_sym_use_statement_token1] = ACTIONS(6834), + [aux_sym_use_statement_token2] = ACTIONS(6834), + [aux_sym_implicit_statement_token1] = ACTIONS(6834), + [aux_sym_implicit_statement_token3] = ACTIONS(6834), + [aux_sym_implicit_statement_token4] = ACTIONS(6834), + [aux_sym_save_statement_token1] = ACTIONS(6834), + [aux_sym_private_statement_token1] = ACTIONS(6834), + [aux_sym_public_statement_token1] = ACTIONS(6834), + [aux_sym_namelist_statement_token1] = ACTIONS(6834), + [aux_sym_common_statement_token1] = ACTIONS(6834), + [aux_sym_import_statement_token1] = ACTIONS(6834), + [aux_sym_derived_type_definition_token1] = ACTIONS(6834), + [aux_sym_abstract_specifier_token1] = ACTIONS(6834), + [aux_sym_procedure_attribute_token6] = ACTIONS(6834), + [aux_sym_variable_attributes_token1] = ACTIONS(6834), + [aux_sym_variable_attributes_token2] = ACTIONS(6834), + [aux_sym_variable_attributes_token3] = ACTIONS(6834), + [aux_sym_variable_attributes_token4] = ACTIONS(6834), + [aux_sym_variable_attributes_token5] = ACTIONS(6834), + [aux_sym__intrinsic_type_token1] = ACTIONS(6834), + [aux_sym__intrinsic_type_token2] = ACTIONS(6834), + [aux_sym__intrinsic_type_token3] = ACTIONS(6834), + [aux_sym__intrinsic_type_token4] = ACTIONS(6834), + [aux_sym__intrinsic_type_token6] = ACTIONS(6834), + [aux_sym__intrinsic_type_token7] = ACTIONS(6834), + [aux_sym__intrinsic_type_token8] = ACTIONS(6834), + [aux_sym__intrinsic_type_token9] = ACTIONS(6834), + [aux_sym__intrinsic_type_token10] = ACTIONS(6834), + [aux_sym_derived_type_token1] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6834), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6834), + [aux_sym_type_qualifier_token1] = ACTIONS(6834), + [aux_sym_type_qualifier_token2] = ACTIONS(6834), + [aux_sym_equivalence_statement_token1] = ACTIONS(6834), + [aux_sym_stop_statement_token1] = ACTIONS(6834), + [aux_sym_stop_statement_token2] = ACTIONS(6834), + [aux_sym_keyword_statement_token2] = ACTIONS(6834), + [aux_sym_keyword_statement_token3] = ACTIONS(6834), + [aux_sym_include_statement_token1] = ACTIONS(6834), + [aux_sym_data_statement_token1] = ACTIONS(6834), + [aux_sym__inline_if_statement_token1] = ACTIONS(6834), + [aux_sym_end_if_statement_token1] = ACTIONS(6834), + [aux_sym_elseif_clause_token2] = ACTIONS(6834), + [aux_sym_select_case_statement_token1] = ACTIONS(6834), + [aux_sym_block_construct_token1] = ACTIONS(6834), + [aux_sym_format_statement_token1] = ACTIONS(6834), + [aux_sym_inquire_statement_token1] = ACTIONS(6834), + [aux_sym_enum_statement_token1] = ACTIONS(6834), + [aux_sym_entry_statement_token1] = ACTIONS(6834), + [aux_sym_null_literal_token1] = ACTIONS(6834), + [aux_sym_coarray_statement_token1] = ACTIONS(6834), + [aux_sym_coarray_statement_token2] = ACTIONS(6834), + [aux_sym_coarray_statement_token6] = ACTIONS(6834), + [aux_sym_coarray_statement_token8] = ACTIONS(6834), + [aux_sym_coarray_statement_token11] = ACTIONS(6834), + [aux_sym_coarray_statement_token12] = ACTIONS(6834), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6834), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6834), + [aux_sym_identifier_token1] = ACTIONS(6834), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6838), + }, + [2771] = { + [aux_sym_preproc_include_token1] = ACTIONS(6742), + [aux_sym_preproc_def_token1] = ACTIONS(6742), + [aux_sym_preproc_if_token1] = ACTIONS(6742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6742), + [sym_preproc_directive] = ACTIONS(6742), + [sym_preproc_comment] = ACTIONS(6866), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6742), + [aux_sym_end_module_statement_token1] = ACTIONS(6742), + [aux_sym_interface_statement_token1] = ACTIONS(6742), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6742), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6742), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6742), + [aux_sym_language_binding_token1] = ACTIONS(6742), + [aux_sym_procedure_attributes_token1] = ACTIONS(6742), + [aux_sym_procedure_attributes_token3] = ACTIONS(6742), + [aux_sym_contains_statement_token1] = ACTIONS(6742), + [aux_sym_use_statement_token1] = ACTIONS(6742), + [aux_sym_use_statement_token2] = ACTIONS(6742), + [aux_sym_implicit_statement_token1] = ACTIONS(6742), + [aux_sym_implicit_statement_token3] = ACTIONS(6742), + [aux_sym_implicit_statement_token4] = ACTIONS(6742), + [aux_sym_save_statement_token1] = ACTIONS(6742), + [aux_sym_private_statement_token1] = ACTIONS(6742), + [aux_sym_public_statement_token1] = ACTIONS(6742), + [aux_sym_namelist_statement_token1] = ACTIONS(6742), + [aux_sym_common_statement_token1] = ACTIONS(6742), + [aux_sym_import_statement_token1] = ACTIONS(6742), + [aux_sym_derived_type_definition_token1] = ACTIONS(6742), + [aux_sym_abstract_specifier_token1] = ACTIONS(6742), + [aux_sym_procedure_attribute_token6] = ACTIONS(6742), + [aux_sym_variable_attributes_token1] = ACTIONS(6742), + [aux_sym_variable_attributes_token2] = ACTIONS(6742), + [aux_sym_variable_attributes_token3] = ACTIONS(6742), + [aux_sym_variable_attributes_token4] = ACTIONS(6742), + [aux_sym_variable_attributes_token5] = ACTIONS(6742), + [aux_sym__intrinsic_type_token1] = ACTIONS(6742), + [aux_sym__intrinsic_type_token2] = ACTIONS(6742), + [aux_sym__intrinsic_type_token3] = ACTIONS(6742), + [aux_sym__intrinsic_type_token4] = ACTIONS(6742), + [aux_sym__intrinsic_type_token6] = ACTIONS(6742), + [aux_sym__intrinsic_type_token7] = ACTIONS(6742), + [aux_sym__intrinsic_type_token8] = ACTIONS(6742), + [aux_sym__intrinsic_type_token9] = ACTIONS(6742), + [aux_sym__intrinsic_type_token10] = ACTIONS(6742), + [aux_sym_derived_type_token1] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6742), + [aux_sym_type_qualifier_token1] = ACTIONS(6742), + [aux_sym_type_qualifier_token2] = ACTIONS(6742), + [aux_sym_equivalence_statement_token1] = ACTIONS(6742), + [aux_sym_stop_statement_token1] = ACTIONS(6742), + [aux_sym_stop_statement_token2] = ACTIONS(6742), + [aux_sym_keyword_statement_token2] = ACTIONS(6742), + [aux_sym_keyword_statement_token3] = ACTIONS(6742), + [aux_sym_include_statement_token1] = ACTIONS(6742), + [aux_sym_data_statement_token1] = ACTIONS(6742), + [aux_sym__inline_if_statement_token1] = ACTIONS(6742), + [aux_sym_end_if_statement_token1] = ACTIONS(6742), + [aux_sym_elseif_clause_token2] = ACTIONS(6742), + [aux_sym_select_case_statement_token1] = ACTIONS(6742), + [aux_sym_block_construct_token1] = ACTIONS(6742), + [aux_sym_format_statement_token1] = ACTIONS(6742), + [aux_sym_inquire_statement_token1] = ACTIONS(6742), + [aux_sym_enum_statement_token1] = ACTIONS(6742), + [aux_sym_entry_statement_token1] = ACTIONS(6742), + [aux_sym_null_literal_token1] = ACTIONS(6742), + [aux_sym_coarray_statement_token1] = ACTIONS(6742), + [aux_sym_coarray_statement_token2] = ACTIONS(6742), + [aux_sym_coarray_statement_token6] = ACTIONS(6742), + [aux_sym_coarray_statement_token8] = ACTIONS(6742), + [aux_sym_coarray_statement_token11] = ACTIONS(6742), + [aux_sym_coarray_statement_token12] = ACTIONS(6742), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6742), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6742), + [aux_sym_identifier_token1] = ACTIONS(6742), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6746), + }, + [2772] = { [aux_sym_preproc_include_token1] = ACTIONS(5081), [aux_sym_preproc_def_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), + [aux_sym_preproc_if_token2] = ACTIONS(5081), + [aux_sym_preproc_else_token1] = ACTIONS(5081), + [aux_sym_preproc_elif_token1] = ACTIONS(5081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5081), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5081), [sym_preproc_directive] = ACTIONS(5081), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5081), - [aux_sym_end_module_statement_token1] = ACTIONS(5081), [aux_sym_interface_statement_token1] = ACTIONS(5081), [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), @@ -423807,669 +419255,853 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5083), }, - [2823] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), + [2773] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token2] = ACTIONS(5059), + [aux_sym_preproc_else_token1] = ACTIONS(5059), + [aux_sym_preproc_elif_token1] = ACTIONS(5059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + }, + [2774] = { + [aux_sym_preproc_include_token1] = ACTIONS(6824), + [aux_sym_preproc_def_token1] = ACTIONS(6824), + [aux_sym_preproc_if_token1] = ACTIONS(6824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6824), + [sym_preproc_directive] = ACTIONS(6824), + [sym_preproc_comment] = ACTIONS(6868), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(6824), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6824), + [aux_sym_interface_statement_token1] = ACTIONS(6824), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6824), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6824), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6824), + [aux_sym_language_binding_token1] = ACTIONS(6824), + [aux_sym_procedure_attributes_token1] = ACTIONS(6824), + [aux_sym_procedure_attributes_token3] = ACTIONS(6824), + [aux_sym_contains_statement_token1] = ACTIONS(6824), + [aux_sym_use_statement_token1] = ACTIONS(6824), + [aux_sym_use_statement_token2] = ACTIONS(6824), + [aux_sym_implicit_statement_token1] = ACTIONS(6824), + [aux_sym_implicit_statement_token3] = ACTIONS(6824), + [aux_sym_implicit_statement_token4] = ACTIONS(6824), + [aux_sym_save_statement_token1] = ACTIONS(6824), + [aux_sym_private_statement_token1] = ACTIONS(6824), + [aux_sym_public_statement_token1] = ACTIONS(6824), + [aux_sym_namelist_statement_token1] = ACTIONS(6824), + [aux_sym_common_statement_token1] = ACTIONS(6824), + [aux_sym_import_statement_token1] = ACTIONS(6824), + [aux_sym_derived_type_definition_token1] = ACTIONS(6824), + [aux_sym_abstract_specifier_token1] = ACTIONS(6824), + [aux_sym_procedure_attribute_token6] = ACTIONS(6824), + [aux_sym_variable_attributes_token1] = ACTIONS(6824), + [aux_sym_variable_attributes_token2] = ACTIONS(6824), + [aux_sym_variable_attributes_token3] = ACTIONS(6824), + [aux_sym_variable_attributes_token4] = ACTIONS(6824), + [aux_sym_variable_attributes_token5] = ACTIONS(6824), + [aux_sym__intrinsic_type_token1] = ACTIONS(6824), + [aux_sym__intrinsic_type_token2] = ACTIONS(6824), + [aux_sym__intrinsic_type_token3] = ACTIONS(6824), + [aux_sym__intrinsic_type_token4] = ACTIONS(6824), + [aux_sym__intrinsic_type_token6] = ACTIONS(6824), + [aux_sym__intrinsic_type_token7] = ACTIONS(6824), + [aux_sym__intrinsic_type_token8] = ACTIONS(6824), + [aux_sym__intrinsic_type_token9] = ACTIONS(6824), + [aux_sym__intrinsic_type_token10] = ACTIONS(6824), + [aux_sym_derived_type_token1] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6824), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6824), + [aux_sym_type_qualifier_token1] = ACTIONS(6824), + [aux_sym_type_qualifier_token2] = ACTIONS(6824), + [aux_sym_equivalence_statement_token1] = ACTIONS(6824), + [aux_sym_stop_statement_token1] = ACTIONS(6824), + [aux_sym_stop_statement_token2] = ACTIONS(6824), + [aux_sym_keyword_statement_token2] = ACTIONS(6824), + [aux_sym_keyword_statement_token3] = ACTIONS(6824), + [aux_sym_include_statement_token1] = ACTIONS(6824), + [aux_sym_data_statement_token1] = ACTIONS(6824), + [aux_sym__inline_if_statement_token1] = ACTIONS(6824), + [aux_sym_end_if_statement_token1] = ACTIONS(6824), + [aux_sym_elseif_clause_token2] = ACTIONS(6824), + [aux_sym_select_case_statement_token1] = ACTIONS(6824), + [aux_sym_block_construct_token1] = ACTIONS(6824), + [aux_sym_format_statement_token1] = ACTIONS(6824), + [aux_sym_inquire_statement_token1] = ACTIONS(6824), + [aux_sym_enum_statement_token1] = ACTIONS(6824), + [aux_sym_entry_statement_token1] = ACTIONS(6824), + [aux_sym_null_literal_token1] = ACTIONS(6824), + [aux_sym_coarray_statement_token1] = ACTIONS(6824), + [aux_sym_coarray_statement_token2] = ACTIONS(6824), + [aux_sym_coarray_statement_token6] = ACTIONS(6824), + [aux_sym_coarray_statement_token8] = ACTIONS(6824), + [aux_sym_coarray_statement_token11] = ACTIONS(6824), + [aux_sym_coarray_statement_token12] = ACTIONS(6824), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6824), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6824), + [aux_sym_identifier_token1] = ACTIONS(6824), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(6828), }, - [2824] = { - [sym__expression] = STATE(4288), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_loop_control_expression] = STATE(7489), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5039), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2775] = { + [aux_sym_preproc_include_token1] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4990), + [aux_sym_end_module_statement_token1] = ACTIONS(4990), + [aux_sym_interface_statement_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_language_binding_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_contains_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token2] = ACTIONS(4990), + [aux_sym_implicit_statement_token1] = ACTIONS(4990), + [aux_sym_implicit_statement_token3] = ACTIONS(4990), + [aux_sym_implicit_statement_token4] = ACTIONS(4990), + [aux_sym_save_statement_token1] = ACTIONS(4990), + [aux_sym_private_statement_token1] = ACTIONS(4990), + [aux_sym_public_statement_token1] = ACTIONS(4990), + [aux_sym_namelist_statement_token1] = ACTIONS(4990), + [aux_sym_common_statement_token1] = ACTIONS(4990), + [aux_sym_import_statement_token1] = ACTIONS(4990), + [aux_sym_derived_type_definition_token1] = ACTIONS(4990), + [aux_sym_abstract_specifier_token1] = ACTIONS(4990), + [aux_sym_procedure_attribute_token6] = ACTIONS(4990), + [aux_sym_variable_attributes_token1] = ACTIONS(4990), + [aux_sym_variable_attributes_token2] = ACTIONS(4990), + [aux_sym_variable_attributes_token3] = ACTIONS(4990), + [aux_sym_variable_attributes_token4] = ACTIONS(4990), + [aux_sym_variable_attributes_token5] = ACTIONS(4990), + [aux_sym__intrinsic_type_token1] = ACTIONS(4990), + [aux_sym__intrinsic_type_token2] = ACTIONS(4990), + [aux_sym__intrinsic_type_token3] = ACTIONS(4990), + [aux_sym__intrinsic_type_token4] = ACTIONS(4990), + [aux_sym__intrinsic_type_token6] = ACTIONS(4990), + [aux_sym__intrinsic_type_token7] = ACTIONS(4990), + [aux_sym__intrinsic_type_token8] = ACTIONS(4990), + [aux_sym__intrinsic_type_token9] = ACTIONS(4990), + [aux_sym__intrinsic_type_token10] = ACTIONS(4990), + [aux_sym_derived_type_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), + [aux_sym_type_qualifier_token1] = ACTIONS(4990), + [aux_sym_type_qualifier_token2] = ACTIONS(4990), + [aux_sym_equivalence_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token3] = ACTIONS(4990), + [aux_sym_include_statement_token1] = ACTIONS(4990), + [aux_sym_data_statement_token1] = ACTIONS(4990), + [aux_sym__inline_if_statement_token1] = ACTIONS(4990), + [aux_sym_end_if_statement_token1] = ACTIONS(4990), + [aux_sym_elseif_clause_token2] = ACTIONS(4990), + [aux_sym_select_case_statement_token1] = ACTIONS(4990), + [aux_sym_block_construct_token1] = ACTIONS(4990), + [aux_sym_format_statement_token1] = ACTIONS(4990), + [aux_sym_inquire_statement_token1] = ACTIONS(4990), + [aux_sym_enum_statement_token1] = ACTIONS(4990), + [aux_sym_entry_statement_token1] = ACTIONS(4990), + [aux_sym_null_literal_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token2] = ACTIONS(4990), + [aux_sym_coarray_statement_token6] = ACTIONS(4990), + [aux_sym_coarray_statement_token8] = ACTIONS(4990), + [aux_sym_coarray_statement_token11] = ACTIONS(4990), + [aux_sym_coarray_statement_token12] = ACTIONS(4990), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), + [aux_sym_identifier_token1] = ACTIONS(4990), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4992), }, - [2825] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_module_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), + [2776] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_end_module_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), - }, - [2826] = { - [aux_sym_preproc_include_token1] = ACTIONS(6760), - [aux_sym_preproc_def_token1] = ACTIONS(6760), - [aux_sym_preproc_if_token1] = ACTIONS(6760), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6760), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6760), - [sym_preproc_directive] = ACTIONS(6760), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6760), - [aux_sym_end_module_statement_token1] = ACTIONS(6760), - [aux_sym_interface_statement_token1] = ACTIONS(6760), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6760), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6760), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6760), - [aux_sym_language_binding_token1] = ACTIONS(6760), - [aux_sym_procedure_attributes_token1] = ACTIONS(6760), - [aux_sym_procedure_attributes_token3] = ACTIONS(6760), - [aux_sym_contains_statement_token1] = ACTIONS(6760), - [aux_sym_use_statement_token1] = ACTIONS(6760), - [aux_sym_use_statement_token2] = ACTIONS(6760), - [aux_sym_implicit_statement_token1] = ACTIONS(6760), - [aux_sym_implicit_statement_token3] = ACTIONS(6760), - [aux_sym_implicit_statement_token4] = ACTIONS(6760), - [aux_sym_save_statement_token1] = ACTIONS(6760), - [aux_sym_private_statement_token1] = ACTIONS(6760), - [aux_sym_public_statement_token1] = ACTIONS(6760), - [aux_sym_namelist_statement_token1] = ACTIONS(6760), - [aux_sym_common_statement_token1] = ACTIONS(6760), - [aux_sym_import_statement_token1] = ACTIONS(6760), - [aux_sym_derived_type_definition_token1] = ACTIONS(6760), - [aux_sym_abstract_specifier_token1] = ACTIONS(6760), - [aux_sym_procedure_attribute_token6] = ACTIONS(6760), - [aux_sym_variable_attributes_token1] = ACTIONS(6760), - [aux_sym_variable_attributes_token2] = ACTIONS(6760), - [aux_sym_variable_attributes_token3] = ACTIONS(6760), - [aux_sym_variable_attributes_token4] = ACTIONS(6760), - [aux_sym_variable_attributes_token5] = ACTIONS(6760), - [aux_sym__intrinsic_type_token1] = ACTIONS(6760), - [aux_sym__intrinsic_type_token2] = ACTIONS(6760), - [aux_sym__intrinsic_type_token3] = ACTIONS(6760), - [aux_sym__intrinsic_type_token4] = ACTIONS(6760), - [aux_sym__intrinsic_type_token6] = ACTIONS(6760), - [aux_sym__intrinsic_type_token7] = ACTIONS(6760), - [aux_sym__intrinsic_type_token8] = ACTIONS(6760), - [aux_sym__intrinsic_type_token9] = ACTIONS(6760), - [aux_sym__intrinsic_type_token10] = ACTIONS(6760), - [aux_sym_derived_type_token1] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6760), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6760), - [aux_sym_type_qualifier_token1] = ACTIONS(6760), - [aux_sym_type_qualifier_token2] = ACTIONS(6760), - [aux_sym_equivalence_statement_token1] = ACTIONS(6760), - [aux_sym_stop_statement_token1] = ACTIONS(6760), - [aux_sym_stop_statement_token2] = ACTIONS(6760), - [aux_sym_keyword_statement_token2] = ACTIONS(6760), - [aux_sym_keyword_statement_token3] = ACTIONS(6760), - [aux_sym_include_statement_token1] = ACTIONS(6760), - [aux_sym_data_statement_token1] = ACTIONS(6760), - [aux_sym__inline_if_statement_token1] = ACTIONS(6760), - [aux_sym_end_if_statement_token1] = ACTIONS(6760), - [aux_sym_elseif_clause_token2] = ACTIONS(6760), - [aux_sym_select_case_statement_token1] = ACTIONS(6760), - [aux_sym_block_construct_token1] = ACTIONS(6760), - [aux_sym_format_statement_token1] = ACTIONS(6760), - [aux_sym_inquire_statement_token1] = ACTIONS(6760), - [aux_sym_enum_statement_token1] = ACTIONS(6760), - [aux_sym_entry_statement_token1] = ACTIONS(6760), - [aux_sym_null_literal_token1] = ACTIONS(6760), - [aux_sym_coarray_statement_token1] = ACTIONS(6760), - [aux_sym_coarray_statement_token2] = ACTIONS(6760), - [aux_sym_coarray_statement_token6] = ACTIONS(6760), - [aux_sym_coarray_statement_token8] = ACTIONS(6760), - [aux_sym_coarray_statement_token11] = ACTIONS(6760), - [aux_sym_coarray_statement_token12] = ACTIONS(6760), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6760), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6760), - [aux_sym_identifier_token1] = ACTIONS(6760), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6764), + [sym__integer_literal] = ACTIONS(4381), }, - [2827] = { - [aux_sym_preproc_include_token1] = ACTIONS(6890), - [aux_sym_preproc_def_token1] = ACTIONS(6890), - [aux_sym_preproc_if_token1] = ACTIONS(6890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6890), - [sym_preproc_directive] = ACTIONS(6890), + [2777] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6890), - [aux_sym_end_module_statement_token1] = ACTIONS(6890), - [aux_sym_interface_statement_token1] = ACTIONS(6890), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6890), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6890), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6890), - [aux_sym_language_binding_token1] = ACTIONS(6890), - [aux_sym_procedure_attributes_token1] = ACTIONS(6890), - [aux_sym_procedure_attributes_token3] = ACTIONS(6890), - [aux_sym_contains_statement_token1] = ACTIONS(6890), - [aux_sym_use_statement_token1] = ACTIONS(6890), - [aux_sym_use_statement_token2] = ACTIONS(6890), - [aux_sym_implicit_statement_token1] = ACTIONS(6890), - [aux_sym_implicit_statement_token3] = ACTIONS(6890), - [aux_sym_implicit_statement_token4] = ACTIONS(6890), - [aux_sym_save_statement_token1] = ACTIONS(6890), - [aux_sym_private_statement_token1] = ACTIONS(6890), - [aux_sym_public_statement_token1] = ACTIONS(6890), - [aux_sym_namelist_statement_token1] = ACTIONS(6890), - [aux_sym_common_statement_token1] = ACTIONS(6890), - [aux_sym_import_statement_token1] = ACTIONS(6890), - [aux_sym_derived_type_definition_token1] = ACTIONS(6890), - [aux_sym_abstract_specifier_token1] = ACTIONS(6890), - [aux_sym_procedure_attribute_token6] = ACTIONS(6890), - [aux_sym_variable_attributes_token1] = ACTIONS(6890), - [aux_sym_variable_attributes_token2] = ACTIONS(6890), - [aux_sym_variable_attributes_token3] = ACTIONS(6890), - [aux_sym_variable_attributes_token4] = ACTIONS(6890), - [aux_sym_variable_attributes_token5] = ACTIONS(6890), - [aux_sym__intrinsic_type_token1] = ACTIONS(6890), - [aux_sym__intrinsic_type_token2] = ACTIONS(6890), - [aux_sym__intrinsic_type_token3] = ACTIONS(6890), - [aux_sym__intrinsic_type_token4] = ACTIONS(6890), - [aux_sym__intrinsic_type_token6] = ACTIONS(6890), - [aux_sym__intrinsic_type_token7] = ACTIONS(6890), - [aux_sym__intrinsic_type_token8] = ACTIONS(6890), - [aux_sym__intrinsic_type_token9] = ACTIONS(6890), - [aux_sym__intrinsic_type_token10] = ACTIONS(6890), - [aux_sym_derived_type_token1] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6890), - [aux_sym_type_qualifier_token1] = ACTIONS(6890), - [aux_sym_type_qualifier_token2] = ACTIONS(6890), - [aux_sym_equivalence_statement_token1] = ACTIONS(6890), - [aux_sym_stop_statement_token1] = ACTIONS(6890), - [aux_sym_stop_statement_token2] = ACTIONS(6890), - [aux_sym_keyword_statement_token2] = ACTIONS(6890), - [aux_sym_keyword_statement_token3] = ACTIONS(6890), - [aux_sym_include_statement_token1] = ACTIONS(6890), - [aux_sym_data_statement_token1] = ACTIONS(6890), - [aux_sym__inline_if_statement_token1] = ACTIONS(6890), - [aux_sym_end_if_statement_token1] = ACTIONS(6890), - [aux_sym_elseif_clause_token2] = ACTIONS(6890), - [aux_sym_select_case_statement_token1] = ACTIONS(6890), - [aux_sym_block_construct_token1] = ACTIONS(6890), - [aux_sym_format_statement_token1] = ACTIONS(6890), - [aux_sym_inquire_statement_token1] = ACTIONS(6890), - [aux_sym_enum_statement_token1] = ACTIONS(6890), - [aux_sym_entry_statement_token1] = ACTIONS(6890), - [aux_sym_null_literal_token1] = ACTIONS(6890), - [aux_sym_coarray_statement_token1] = ACTIONS(6890), - [aux_sym_coarray_statement_token2] = ACTIONS(6890), - [aux_sym_coarray_statement_token6] = ACTIONS(6890), - [aux_sym_coarray_statement_token8] = ACTIONS(6890), - [aux_sym_coarray_statement_token11] = ACTIONS(6890), - [aux_sym_coarray_statement_token12] = ACTIONS(6890), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6890), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6890), - [aux_sym_identifier_token1] = ACTIONS(6890), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_end_module_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6892), + [sym__integer_literal] = ACTIONS(4385), }, - [2828] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_end_module_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), + [2778] = { + [aux_sym_preproc_include_token1] = ACTIONS(6736), + [aux_sym_preproc_def_token1] = ACTIONS(6736), + [aux_sym_preproc_if_token1] = ACTIONS(6736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6736), + [sym_preproc_directive] = ACTIONS(6736), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6736), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6736), + [aux_sym_interface_statement_token1] = ACTIONS(6736), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6736), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6736), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6736), + [aux_sym_language_binding_token1] = ACTIONS(6736), + [aux_sym_procedure_attributes_token1] = ACTIONS(6736), + [aux_sym_procedure_attributes_token3] = ACTIONS(6736), + [aux_sym_contains_statement_token1] = ACTIONS(6736), + [aux_sym_use_statement_token1] = ACTIONS(6736), + [aux_sym_use_statement_token2] = ACTIONS(6736), + [aux_sym_implicit_statement_token1] = ACTIONS(6736), + [aux_sym_implicit_statement_token3] = ACTIONS(6736), + [aux_sym_implicit_statement_token4] = ACTIONS(6736), + [aux_sym_save_statement_token1] = ACTIONS(6736), + [aux_sym_private_statement_token1] = ACTIONS(6736), + [aux_sym_public_statement_token1] = ACTIONS(6736), + [aux_sym_namelist_statement_token1] = ACTIONS(6736), + [aux_sym_common_statement_token1] = ACTIONS(6736), + [aux_sym_import_statement_token1] = ACTIONS(6736), + [aux_sym_derived_type_definition_token1] = ACTIONS(6736), + [aux_sym_abstract_specifier_token1] = ACTIONS(6736), + [aux_sym_procedure_attribute_token6] = ACTIONS(6736), + [aux_sym_variable_attributes_token1] = ACTIONS(6736), + [aux_sym_variable_attributes_token2] = ACTIONS(6736), + [aux_sym_variable_attributes_token3] = ACTIONS(6736), + [aux_sym_variable_attributes_token4] = ACTIONS(6736), + [aux_sym_variable_attributes_token5] = ACTIONS(6736), + [aux_sym__intrinsic_type_token1] = ACTIONS(6736), + [aux_sym__intrinsic_type_token2] = ACTIONS(6736), + [aux_sym__intrinsic_type_token3] = ACTIONS(6736), + [aux_sym__intrinsic_type_token4] = ACTIONS(6736), + [aux_sym__intrinsic_type_token6] = ACTIONS(6736), + [aux_sym__intrinsic_type_token7] = ACTIONS(6736), + [aux_sym__intrinsic_type_token8] = ACTIONS(6736), + [aux_sym__intrinsic_type_token9] = ACTIONS(6736), + [aux_sym__intrinsic_type_token10] = ACTIONS(6736), + [aux_sym_derived_type_token1] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6736), + [aux_sym_type_qualifier_token1] = ACTIONS(6736), + [aux_sym_type_qualifier_token2] = ACTIONS(6736), + [aux_sym_equivalence_statement_token1] = ACTIONS(6736), + [aux_sym_stop_statement_token1] = ACTIONS(6736), + [aux_sym_stop_statement_token2] = ACTIONS(6736), + [aux_sym_keyword_statement_token2] = ACTIONS(6736), + [aux_sym_keyword_statement_token3] = ACTIONS(6736), + [aux_sym_include_statement_token1] = ACTIONS(6736), + [aux_sym_data_statement_token1] = ACTIONS(6736), + [aux_sym__inline_if_statement_token1] = ACTIONS(6736), + [aux_sym_end_if_statement_token1] = ACTIONS(6736), + [aux_sym_elseif_clause_token2] = ACTIONS(6736), + [aux_sym_select_case_statement_token1] = ACTIONS(6736), + [aux_sym_block_construct_token1] = ACTIONS(6736), + [aux_sym_format_statement_token1] = ACTIONS(6736), + [aux_sym_inquire_statement_token1] = ACTIONS(6736), + [aux_sym_enum_statement_token1] = ACTIONS(6736), + [aux_sym_entry_statement_token1] = ACTIONS(6736), + [aux_sym_null_literal_token1] = ACTIONS(6736), + [aux_sym_coarray_statement_token1] = ACTIONS(6736), + [aux_sym_coarray_statement_token2] = ACTIONS(6736), + [aux_sym_coarray_statement_token6] = ACTIONS(6736), + [aux_sym_coarray_statement_token8] = ACTIONS(6736), + [aux_sym_coarray_statement_token11] = ACTIONS(6736), + [aux_sym_coarray_statement_token12] = ACTIONS(6736), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6736), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6736), + [aux_sym_identifier_token1] = ACTIONS(6736), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6740), }, - [2829] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), + [2779] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_end_module_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + }, + [2780] = { + [aux_sym_preproc_include_token1] = ACTIONS(6724), + [aux_sym_preproc_def_token1] = ACTIONS(6724), + [aux_sym_preproc_if_token1] = ACTIONS(6724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6724), + [sym_preproc_directive] = ACTIONS(6724), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6724), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6724), + [aux_sym_interface_statement_token1] = ACTIONS(6724), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6724), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6724), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6724), + [aux_sym_language_binding_token1] = ACTIONS(6724), + [aux_sym_procedure_attributes_token1] = ACTIONS(6724), + [aux_sym_procedure_attributes_token3] = ACTIONS(6724), + [aux_sym_contains_statement_token1] = ACTIONS(6724), + [aux_sym_use_statement_token1] = ACTIONS(6724), + [aux_sym_use_statement_token2] = ACTIONS(6724), + [aux_sym_implicit_statement_token1] = ACTIONS(6724), + [aux_sym_implicit_statement_token3] = ACTIONS(6724), + [aux_sym_implicit_statement_token4] = ACTIONS(6724), + [aux_sym_save_statement_token1] = ACTIONS(6724), + [aux_sym_private_statement_token1] = ACTIONS(6724), + [aux_sym_public_statement_token1] = ACTIONS(6724), + [aux_sym_namelist_statement_token1] = ACTIONS(6724), + [aux_sym_common_statement_token1] = ACTIONS(6724), + [aux_sym_import_statement_token1] = ACTIONS(6724), + [aux_sym_derived_type_definition_token1] = ACTIONS(6724), + [aux_sym_abstract_specifier_token1] = ACTIONS(6724), + [aux_sym_procedure_attribute_token6] = ACTIONS(6724), + [aux_sym_variable_attributes_token1] = ACTIONS(6724), + [aux_sym_variable_attributes_token2] = ACTIONS(6724), + [aux_sym_variable_attributes_token3] = ACTIONS(6724), + [aux_sym_variable_attributes_token4] = ACTIONS(6724), + [aux_sym_variable_attributes_token5] = ACTIONS(6724), + [aux_sym__intrinsic_type_token1] = ACTIONS(6724), + [aux_sym__intrinsic_type_token2] = ACTIONS(6724), + [aux_sym__intrinsic_type_token3] = ACTIONS(6724), + [aux_sym__intrinsic_type_token4] = ACTIONS(6724), + [aux_sym__intrinsic_type_token6] = ACTIONS(6724), + [aux_sym__intrinsic_type_token7] = ACTIONS(6724), + [aux_sym__intrinsic_type_token8] = ACTIONS(6724), + [aux_sym__intrinsic_type_token9] = ACTIONS(6724), + [aux_sym__intrinsic_type_token10] = ACTIONS(6724), + [aux_sym_derived_type_token1] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6724), + [aux_sym_type_qualifier_token1] = ACTIONS(6724), + [aux_sym_type_qualifier_token2] = ACTIONS(6724), + [aux_sym_equivalence_statement_token1] = ACTIONS(6724), + [aux_sym_stop_statement_token1] = ACTIONS(6724), + [aux_sym_stop_statement_token2] = ACTIONS(6724), + [aux_sym_keyword_statement_token2] = ACTIONS(6724), + [aux_sym_keyword_statement_token3] = ACTIONS(6724), + [aux_sym_include_statement_token1] = ACTIONS(6724), + [aux_sym_data_statement_token1] = ACTIONS(6724), + [aux_sym__inline_if_statement_token1] = ACTIONS(6724), + [aux_sym_end_if_statement_token1] = ACTIONS(6724), + [aux_sym_elseif_clause_token2] = ACTIONS(6724), + [aux_sym_select_case_statement_token1] = ACTIONS(6724), + [aux_sym_block_construct_token1] = ACTIONS(6724), + [aux_sym_format_statement_token1] = ACTIONS(6724), + [aux_sym_inquire_statement_token1] = ACTIONS(6724), + [aux_sym_enum_statement_token1] = ACTIONS(6724), + [aux_sym_entry_statement_token1] = ACTIONS(6724), + [aux_sym_null_literal_token1] = ACTIONS(6724), + [aux_sym_coarray_statement_token1] = ACTIONS(6724), + [aux_sym_coarray_statement_token2] = ACTIONS(6724), + [aux_sym_coarray_statement_token6] = ACTIONS(6724), + [aux_sym_coarray_statement_token8] = ACTIONS(6724), + [aux_sym_coarray_statement_token11] = ACTIONS(6724), + [aux_sym_coarray_statement_token12] = ACTIONS(6724), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6724), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6724), + [aux_sym_identifier_token1] = ACTIONS(6724), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6728), + }, + [2781] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_end_module_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_end_module_statement_token1] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), + [sym__integer_literal] = ACTIONS(4257), }, - [2830] = { - [sym_triplet_spec] = STATE(7139), - [sym__expression] = STATE(4561), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(5073), - [sym_relational_expression] = STATE(5073), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5074), + [2782] = { + [sym__expression] = STATE(4319), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_loop_control_expression] = STATE(8118), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4788), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -424487,10 +420119,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -424507,12 +420139,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -424529,468 +420161,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2831] = { - [aux_sym_preproc_include_token1] = ACTIONS(6894), - [aux_sym_preproc_def_token1] = ACTIONS(6894), - [aux_sym_preproc_if_token1] = ACTIONS(6894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6894), - [sym_preproc_directive] = ACTIONS(6894), + [2783] = { + [aux_sym_preproc_include_token1] = ACTIONS(4315), + [aux_sym_preproc_def_token1] = ACTIONS(4315), + [aux_sym_preproc_if_token1] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), + [sym_preproc_directive] = ACTIONS(4315), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6894), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6894), - [aux_sym_interface_statement_token1] = ACTIONS(6894), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6894), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6894), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6894), - [aux_sym_language_binding_token1] = ACTIONS(6894), - [aux_sym_procedure_attributes_token1] = ACTIONS(6894), - [aux_sym_procedure_attributes_token3] = ACTIONS(6894), - [aux_sym_contains_statement_token1] = ACTIONS(6894), - [aux_sym_use_statement_token1] = ACTIONS(6894), - [aux_sym_use_statement_token2] = ACTIONS(6894), - [aux_sym_implicit_statement_token1] = ACTIONS(6894), - [aux_sym_implicit_statement_token3] = ACTIONS(6894), - [aux_sym_implicit_statement_token4] = ACTIONS(6894), - [aux_sym_save_statement_token1] = ACTIONS(6894), - [aux_sym_private_statement_token1] = ACTIONS(6894), - [aux_sym_public_statement_token1] = ACTIONS(6894), - [aux_sym_namelist_statement_token1] = ACTIONS(6894), - [aux_sym_common_statement_token1] = ACTIONS(6894), - [aux_sym_import_statement_token1] = ACTIONS(6894), - [aux_sym_derived_type_definition_token1] = ACTIONS(6894), - [aux_sym_abstract_specifier_token1] = ACTIONS(6894), - [aux_sym_procedure_attribute_token6] = ACTIONS(6894), - [aux_sym_variable_attributes_token1] = ACTIONS(6894), - [aux_sym_variable_attributes_token2] = ACTIONS(6894), - [aux_sym_variable_attributes_token3] = ACTIONS(6894), - [aux_sym_variable_attributes_token4] = ACTIONS(6894), - [aux_sym_variable_attributes_token5] = ACTIONS(6894), - [aux_sym__intrinsic_type_token1] = ACTIONS(6894), - [aux_sym__intrinsic_type_token2] = ACTIONS(6894), - [aux_sym__intrinsic_type_token3] = ACTIONS(6894), - [aux_sym__intrinsic_type_token4] = ACTIONS(6894), - [aux_sym__intrinsic_type_token6] = ACTIONS(6894), - [aux_sym__intrinsic_type_token7] = ACTIONS(6894), - [aux_sym__intrinsic_type_token8] = ACTIONS(6894), - [aux_sym__intrinsic_type_token9] = ACTIONS(6894), - [aux_sym__intrinsic_type_token10] = ACTIONS(6894), - [aux_sym_derived_type_token1] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6894), - [aux_sym_type_qualifier_token1] = ACTIONS(6894), - [aux_sym_type_qualifier_token2] = ACTIONS(6894), - [aux_sym_equivalence_statement_token1] = ACTIONS(6894), - [aux_sym_stop_statement_token1] = ACTIONS(6894), - [aux_sym_stop_statement_token2] = ACTIONS(6894), - [aux_sym_keyword_statement_token2] = ACTIONS(6894), - [aux_sym_keyword_statement_token3] = ACTIONS(6894), - [aux_sym_include_statement_token1] = ACTIONS(6894), - [aux_sym_data_statement_token1] = ACTIONS(6894), - [aux_sym__inline_if_statement_token1] = ACTIONS(6894), - [aux_sym_end_if_statement_token1] = ACTIONS(6894), - [aux_sym_elseif_clause_token2] = ACTIONS(6894), - [aux_sym_select_case_statement_token1] = ACTIONS(6894), - [aux_sym_block_construct_token1] = ACTIONS(6894), - [aux_sym_format_statement_token1] = ACTIONS(6894), - [aux_sym_inquire_statement_token1] = ACTIONS(6894), - [aux_sym_enum_statement_token1] = ACTIONS(6894), - [aux_sym_entry_statement_token1] = ACTIONS(6894), - [aux_sym_null_literal_token1] = ACTIONS(6894), - [aux_sym_coarray_statement_token1] = ACTIONS(6894), - [aux_sym_coarray_statement_token2] = ACTIONS(6894), - [aux_sym_coarray_statement_token6] = ACTIONS(6894), - [aux_sym_coarray_statement_token8] = ACTIONS(6894), - [aux_sym_coarray_statement_token11] = ACTIONS(6894), - [aux_sym_coarray_statement_token12] = ACTIONS(6894), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6894), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6894), - [aux_sym_identifier_token1] = ACTIONS(6894), + [aux_sym_end_program_statement_token1] = ACTIONS(4315), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4315), + [aux_sym_interface_statement_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4315), + [aux_sym_language_binding_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token3] = ACTIONS(4315), + [aux_sym_contains_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token2] = ACTIONS(4315), + [aux_sym_implicit_statement_token1] = ACTIONS(4315), + [aux_sym_implicit_statement_token3] = ACTIONS(4315), + [aux_sym_implicit_statement_token4] = ACTIONS(4315), + [aux_sym_save_statement_token1] = ACTIONS(4315), + [aux_sym_private_statement_token1] = ACTIONS(4315), + [aux_sym_public_statement_token1] = ACTIONS(4315), + [aux_sym_namelist_statement_token1] = ACTIONS(4315), + [aux_sym_common_statement_token1] = ACTIONS(4315), + [aux_sym_import_statement_token1] = ACTIONS(4315), + [aux_sym_derived_type_definition_token1] = ACTIONS(4315), + [aux_sym_abstract_specifier_token1] = ACTIONS(4315), + [aux_sym_procedure_attribute_token6] = ACTIONS(4315), + [aux_sym_variable_attributes_token1] = ACTIONS(4315), + [aux_sym_variable_attributes_token2] = ACTIONS(4315), + [aux_sym_variable_attributes_token3] = ACTIONS(4315), + [aux_sym_variable_attributes_token4] = ACTIONS(4315), + [aux_sym_variable_attributes_token5] = ACTIONS(4315), + [aux_sym__intrinsic_type_token1] = ACTIONS(4315), + [aux_sym__intrinsic_type_token2] = ACTIONS(4315), + [aux_sym__intrinsic_type_token3] = ACTIONS(4315), + [aux_sym__intrinsic_type_token4] = ACTIONS(4315), + [aux_sym__intrinsic_type_token6] = ACTIONS(4315), + [aux_sym__intrinsic_type_token7] = ACTIONS(4315), + [aux_sym__intrinsic_type_token8] = ACTIONS(4315), + [aux_sym__intrinsic_type_token9] = ACTIONS(4315), + [aux_sym__intrinsic_type_token10] = ACTIONS(4315), + [aux_sym_derived_type_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4315), + [aux_sym_type_qualifier_token1] = ACTIONS(4315), + [aux_sym_type_qualifier_token2] = ACTIONS(4315), + [aux_sym_equivalence_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token3] = ACTIONS(4315), + [aux_sym_include_statement_token1] = ACTIONS(4315), + [aux_sym_data_statement_token1] = ACTIONS(4315), + [aux_sym__inline_if_statement_token1] = ACTIONS(4315), + [aux_sym_end_if_statement_token1] = ACTIONS(4315), + [aux_sym_elseif_clause_token2] = ACTIONS(4315), + [aux_sym_select_case_statement_token1] = ACTIONS(4315), + [aux_sym_block_construct_token1] = ACTIONS(4315), + [aux_sym_format_statement_token1] = ACTIONS(4315), + [aux_sym_inquire_statement_token1] = ACTIONS(4315), + [aux_sym_enum_statement_token1] = ACTIONS(4315), + [aux_sym_entry_statement_token1] = ACTIONS(4315), + [aux_sym_null_literal_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token2] = ACTIONS(4315), + [aux_sym_coarray_statement_token6] = ACTIONS(4315), + [aux_sym_coarray_statement_token8] = ACTIONS(4315), + [aux_sym_coarray_statement_token11] = ACTIONS(4315), + [aux_sym_coarray_statement_token12] = ACTIONS(4315), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), + [aux_sym_identifier_token1] = ACTIONS(4315), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4317), + }, + [2784] = { + [sym_output_item_list] = STATE(7357), + [sym__expression] = STATE(4307), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6896), - }, - [2832] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_end_module_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - }, - [2833] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [2834] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_end_module_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), + [2785] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_end_module_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), }, - [2835] = { - [aux_sym_preproc_include_token1] = ACTIONS(6726), - [aux_sym_preproc_def_token1] = ACTIONS(6726), - [aux_sym_preproc_if_token1] = ACTIONS(6726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6726), - [sym_preproc_directive] = ACTIONS(6726), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6726), - [aux_sym_end_module_statement_token1] = ACTIONS(6726), - [aux_sym_interface_statement_token1] = ACTIONS(6726), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6726), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6726), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6726), - [aux_sym_language_binding_token1] = ACTIONS(6726), - [aux_sym_procedure_attributes_token1] = ACTIONS(6726), - [aux_sym_procedure_attributes_token3] = ACTIONS(6726), - [aux_sym_contains_statement_token1] = ACTIONS(6726), - [aux_sym_use_statement_token1] = ACTIONS(6726), - [aux_sym_use_statement_token2] = ACTIONS(6726), - [aux_sym_implicit_statement_token1] = ACTIONS(6726), - [aux_sym_implicit_statement_token3] = ACTIONS(6726), - [aux_sym_implicit_statement_token4] = ACTIONS(6726), - [aux_sym_save_statement_token1] = ACTIONS(6726), - [aux_sym_private_statement_token1] = ACTIONS(6726), - [aux_sym_public_statement_token1] = ACTIONS(6726), - [aux_sym_namelist_statement_token1] = ACTIONS(6726), - [aux_sym_common_statement_token1] = ACTIONS(6726), - [aux_sym_import_statement_token1] = ACTIONS(6726), - [aux_sym_derived_type_definition_token1] = ACTIONS(6726), - [aux_sym_abstract_specifier_token1] = ACTIONS(6726), - [aux_sym_procedure_attribute_token6] = ACTIONS(6726), - [aux_sym_variable_attributes_token1] = ACTIONS(6726), - [aux_sym_variable_attributes_token2] = ACTIONS(6726), - [aux_sym_variable_attributes_token3] = ACTIONS(6726), - [aux_sym_variable_attributes_token4] = ACTIONS(6726), - [aux_sym_variable_attributes_token5] = ACTIONS(6726), - [aux_sym__intrinsic_type_token1] = ACTIONS(6726), - [aux_sym__intrinsic_type_token2] = ACTIONS(6726), - [aux_sym__intrinsic_type_token3] = ACTIONS(6726), - [aux_sym__intrinsic_type_token4] = ACTIONS(6726), - [aux_sym__intrinsic_type_token6] = ACTIONS(6726), - [aux_sym__intrinsic_type_token7] = ACTIONS(6726), - [aux_sym__intrinsic_type_token8] = ACTIONS(6726), - [aux_sym__intrinsic_type_token9] = ACTIONS(6726), - [aux_sym__intrinsic_type_token10] = ACTIONS(6726), - [aux_sym_derived_type_token1] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6726), - [aux_sym_type_qualifier_token1] = ACTIONS(6726), - [aux_sym_type_qualifier_token2] = ACTIONS(6726), - [aux_sym_equivalence_statement_token1] = ACTIONS(6726), - [aux_sym_stop_statement_token1] = ACTIONS(6726), - [aux_sym_stop_statement_token2] = ACTIONS(6726), - [aux_sym_keyword_statement_token2] = ACTIONS(6726), - [aux_sym_keyword_statement_token3] = ACTIONS(6726), - [aux_sym_include_statement_token1] = ACTIONS(6726), - [aux_sym_data_statement_token1] = ACTIONS(6726), - [aux_sym__inline_if_statement_token1] = ACTIONS(6726), - [aux_sym_end_if_statement_token1] = ACTIONS(6726), - [aux_sym_elseif_clause_token2] = ACTIONS(6726), - [aux_sym_select_case_statement_token1] = ACTIONS(6726), - [aux_sym_block_construct_token1] = ACTIONS(6726), - [aux_sym_format_statement_token1] = ACTIONS(6726), - [aux_sym_inquire_statement_token1] = ACTIONS(6726), - [aux_sym_enum_statement_token1] = ACTIONS(6726), - [aux_sym_entry_statement_token1] = ACTIONS(6726), - [aux_sym_null_literal_token1] = ACTIONS(6726), - [aux_sym_coarray_statement_token1] = ACTIONS(6726), - [aux_sym_coarray_statement_token2] = ACTIONS(6726), - [aux_sym_coarray_statement_token6] = ACTIONS(6726), - [aux_sym_coarray_statement_token8] = ACTIONS(6726), - [aux_sym_coarray_statement_token11] = ACTIONS(6726), - [aux_sym_coarray_statement_token12] = ACTIONS(6726), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6726), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6726), - [aux_sym_identifier_token1] = ACTIONS(6726), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6730), + [2786] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), }, - [2836] = { + [2787] = { [aux_sym_preproc_include_token1] = ACTIONS(5081), [aux_sym_preproc_def_token1] = ACTIONS(5081), [aux_sym_preproc_if_token1] = ACTIONS(5081), @@ -425081,2850 +420622,1485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(5083), }, - [2837] = { - [aux_sym_preproc_include_token1] = ACTIONS(4976), - [aux_sym_preproc_def_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token1] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4976), - [sym_preproc_directive] = ACTIONS(4976), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4976), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4976), - [aux_sym_interface_statement_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), - [aux_sym_language_binding_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token3] = ACTIONS(4976), - [aux_sym_contains_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token2] = ACTIONS(4976), - [aux_sym_implicit_statement_token1] = ACTIONS(4976), - [aux_sym_implicit_statement_token3] = ACTIONS(4976), - [aux_sym_implicit_statement_token4] = ACTIONS(4976), - [aux_sym_save_statement_token1] = ACTIONS(4976), - [aux_sym_private_statement_token1] = ACTIONS(4976), - [aux_sym_public_statement_token1] = ACTIONS(4976), - [aux_sym_namelist_statement_token1] = ACTIONS(4976), - [aux_sym_common_statement_token1] = ACTIONS(4976), - [aux_sym_import_statement_token1] = ACTIONS(4976), - [aux_sym_derived_type_definition_token1] = ACTIONS(4976), - [aux_sym_abstract_specifier_token1] = ACTIONS(4976), - [aux_sym_procedure_attribute_token6] = ACTIONS(4976), - [aux_sym_variable_attributes_token1] = ACTIONS(4976), - [aux_sym_variable_attributes_token2] = ACTIONS(4976), - [aux_sym_variable_attributes_token3] = ACTIONS(4976), - [aux_sym_variable_attributes_token4] = ACTIONS(4976), - [aux_sym_variable_attributes_token5] = ACTIONS(4976), - [aux_sym__intrinsic_type_token1] = ACTIONS(4976), - [aux_sym__intrinsic_type_token2] = ACTIONS(4976), - [aux_sym__intrinsic_type_token3] = ACTIONS(4976), - [aux_sym__intrinsic_type_token4] = ACTIONS(4976), - [aux_sym__intrinsic_type_token6] = ACTIONS(4976), - [aux_sym__intrinsic_type_token7] = ACTIONS(4976), - [aux_sym__intrinsic_type_token8] = ACTIONS(4976), - [aux_sym__intrinsic_type_token9] = ACTIONS(4976), - [aux_sym__intrinsic_type_token10] = ACTIONS(4976), - [aux_sym_derived_type_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), - [aux_sym_type_qualifier_token1] = ACTIONS(4976), - [aux_sym_type_qualifier_token2] = ACTIONS(4976), - [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token3] = ACTIONS(4976), - [aux_sym_include_statement_token1] = ACTIONS(4976), - [aux_sym_data_statement_token1] = ACTIONS(4976), - [aux_sym__inline_if_statement_token1] = ACTIONS(4976), - [aux_sym_end_if_statement_token1] = ACTIONS(4976), - [aux_sym_elseif_clause_token2] = ACTIONS(4976), - [aux_sym_select_case_statement_token1] = ACTIONS(4976), - [aux_sym_block_construct_token1] = ACTIONS(4976), - [aux_sym_format_statement_token1] = ACTIONS(4976), - [aux_sym_inquire_statement_token1] = ACTIONS(4976), - [aux_sym_enum_statement_token1] = ACTIONS(4976), - [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_null_literal_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token2] = ACTIONS(4976), - [aux_sym_coarray_statement_token6] = ACTIONS(4976), - [aux_sym_coarray_statement_token8] = ACTIONS(4976), - [aux_sym_coarray_statement_token11] = ACTIONS(4976), - [aux_sym_coarray_statement_token12] = ACTIONS(4976), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), - [aux_sym_identifier_token1] = ACTIONS(4976), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - }, - [2838] = { - [aux_sym_preproc_include_token1] = ACTIONS(4990), - [aux_sym_preproc_def_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), - [sym_preproc_directive] = ACTIONS(4990), + [2788] = { + [sym__expression] = STATE(4319), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_loop_control_expression] = STATE(7865), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4788), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4990), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4990), - [aux_sym_interface_statement_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_language_binding_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token3] = ACTIONS(4990), - [aux_sym_contains_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token2] = ACTIONS(4990), - [aux_sym_implicit_statement_token1] = ACTIONS(4990), - [aux_sym_implicit_statement_token3] = ACTIONS(4990), - [aux_sym_implicit_statement_token4] = ACTIONS(4990), - [aux_sym_save_statement_token1] = ACTIONS(4990), - [aux_sym_private_statement_token1] = ACTIONS(4990), - [aux_sym_public_statement_token1] = ACTIONS(4990), - [aux_sym_namelist_statement_token1] = ACTIONS(4990), - [aux_sym_common_statement_token1] = ACTIONS(4990), - [aux_sym_import_statement_token1] = ACTIONS(4990), - [aux_sym_derived_type_definition_token1] = ACTIONS(4990), - [aux_sym_abstract_specifier_token1] = ACTIONS(4990), - [aux_sym_procedure_attribute_token6] = ACTIONS(4990), - [aux_sym_variable_attributes_token1] = ACTIONS(4990), - [aux_sym_variable_attributes_token2] = ACTIONS(4990), - [aux_sym_variable_attributes_token3] = ACTIONS(4990), - [aux_sym_variable_attributes_token4] = ACTIONS(4990), - [aux_sym_variable_attributes_token5] = ACTIONS(4990), - [aux_sym__intrinsic_type_token1] = ACTIONS(4990), - [aux_sym__intrinsic_type_token2] = ACTIONS(4990), - [aux_sym__intrinsic_type_token3] = ACTIONS(4990), - [aux_sym__intrinsic_type_token4] = ACTIONS(4990), - [aux_sym__intrinsic_type_token6] = ACTIONS(4990), - [aux_sym__intrinsic_type_token7] = ACTIONS(4990), - [aux_sym__intrinsic_type_token8] = ACTIONS(4990), - [aux_sym__intrinsic_type_token9] = ACTIONS(4990), - [aux_sym__intrinsic_type_token10] = ACTIONS(4990), - [aux_sym_derived_type_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), - [aux_sym_type_qualifier_token1] = ACTIONS(4990), - [aux_sym_type_qualifier_token2] = ACTIONS(4990), - [aux_sym_equivalence_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token3] = ACTIONS(4990), - [aux_sym_include_statement_token1] = ACTIONS(4990), - [aux_sym_data_statement_token1] = ACTIONS(4990), - [aux_sym__inline_if_statement_token1] = ACTIONS(4990), - [aux_sym_end_if_statement_token1] = ACTIONS(4990), - [aux_sym_elseif_clause_token2] = ACTIONS(4990), - [aux_sym_select_case_statement_token1] = ACTIONS(4990), - [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_format_statement_token1] = ACTIONS(4990), - [aux_sym_inquire_statement_token1] = ACTIONS(4990), - [aux_sym_enum_statement_token1] = ACTIONS(4990), - [aux_sym_entry_statement_token1] = ACTIONS(4990), - [aux_sym_null_literal_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token2] = ACTIONS(4990), - [aux_sym_coarray_statement_token6] = ACTIONS(4990), - [aux_sym_coarray_statement_token8] = ACTIONS(4990), - [aux_sym_coarray_statement_token11] = ACTIONS(4990), - [aux_sym_coarray_statement_token12] = ACTIONS(4990), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), - [aux_sym_identifier_token1] = ACTIONS(4990), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4992), - }, - [2839] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_end_module_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - }, - [2840] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5073), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - }, - [2841] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2842] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_end_module_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), + [2789] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_end_module_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), }, - [2843] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), + [2790] = { + [aux_sym_preproc_include_token1] = ACTIONS(6806), + [aux_sym_preproc_def_token1] = ACTIONS(6806), + [aux_sym_preproc_if_token1] = ACTIONS(6806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6806), + [sym_preproc_directive] = ACTIONS(6806), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_end_module_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), + [aux_sym_end_program_statement_token1] = ACTIONS(6806), + [aux_sym_end_module_statement_token1] = ACTIONS(6806), + [aux_sym_interface_statement_token1] = ACTIONS(6806), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6806), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6806), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6806), + [aux_sym_language_binding_token1] = ACTIONS(6806), + [aux_sym_procedure_attributes_token1] = ACTIONS(6806), + [aux_sym_procedure_attributes_token3] = ACTIONS(6806), + [aux_sym_contains_statement_token1] = ACTIONS(6806), + [aux_sym_use_statement_token1] = ACTIONS(6806), + [aux_sym_use_statement_token2] = ACTIONS(6806), + [aux_sym_implicit_statement_token1] = ACTIONS(6806), + [aux_sym_implicit_statement_token3] = ACTIONS(6806), + [aux_sym_implicit_statement_token4] = ACTIONS(6806), + [aux_sym_save_statement_token1] = ACTIONS(6806), + [aux_sym_private_statement_token1] = ACTIONS(6806), + [aux_sym_public_statement_token1] = ACTIONS(6806), + [aux_sym_namelist_statement_token1] = ACTIONS(6806), + [aux_sym_common_statement_token1] = ACTIONS(6806), + [aux_sym_import_statement_token1] = ACTIONS(6806), + [aux_sym_derived_type_definition_token1] = ACTIONS(6806), + [aux_sym_abstract_specifier_token1] = ACTIONS(6806), + [aux_sym_procedure_attribute_token6] = ACTIONS(6806), + [aux_sym_variable_attributes_token1] = ACTIONS(6806), + [aux_sym_variable_attributes_token2] = ACTIONS(6806), + [aux_sym_variable_attributes_token3] = ACTIONS(6806), + [aux_sym_variable_attributes_token4] = ACTIONS(6806), + [aux_sym_variable_attributes_token5] = ACTIONS(6806), + [aux_sym__intrinsic_type_token1] = ACTIONS(6806), + [aux_sym__intrinsic_type_token2] = ACTIONS(6806), + [aux_sym__intrinsic_type_token3] = ACTIONS(6806), + [aux_sym__intrinsic_type_token4] = ACTIONS(6806), + [aux_sym__intrinsic_type_token6] = ACTIONS(6806), + [aux_sym__intrinsic_type_token7] = ACTIONS(6806), + [aux_sym__intrinsic_type_token8] = ACTIONS(6806), + [aux_sym__intrinsic_type_token9] = ACTIONS(6806), + [aux_sym__intrinsic_type_token10] = ACTIONS(6806), + [aux_sym_derived_type_token1] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6806), + [aux_sym_type_qualifier_token1] = ACTIONS(6806), + [aux_sym_type_qualifier_token2] = ACTIONS(6806), + [aux_sym_equivalence_statement_token1] = ACTIONS(6806), + [aux_sym_stop_statement_token1] = ACTIONS(6806), + [aux_sym_stop_statement_token2] = ACTIONS(6806), + [aux_sym_keyword_statement_token2] = ACTIONS(6806), + [aux_sym_keyword_statement_token3] = ACTIONS(6806), + [aux_sym_include_statement_token1] = ACTIONS(6806), + [aux_sym_data_statement_token1] = ACTIONS(6806), + [aux_sym__inline_if_statement_token1] = ACTIONS(6806), + [aux_sym_end_if_statement_token1] = ACTIONS(6806), + [aux_sym_elseif_clause_token2] = ACTIONS(6806), + [aux_sym_select_case_statement_token1] = ACTIONS(6806), + [aux_sym_block_construct_token1] = ACTIONS(6806), + [aux_sym_format_statement_token1] = ACTIONS(6806), + [aux_sym_inquire_statement_token1] = ACTIONS(6806), + [aux_sym_enum_statement_token1] = ACTIONS(6806), + [aux_sym_entry_statement_token1] = ACTIONS(6806), + [aux_sym_null_literal_token1] = ACTIONS(6806), + [aux_sym_coarray_statement_token1] = ACTIONS(6806), + [aux_sym_coarray_statement_token2] = ACTIONS(6806), + [aux_sym_coarray_statement_token6] = ACTIONS(6806), + [aux_sym_coarray_statement_token8] = ACTIONS(6806), + [aux_sym_coarray_statement_token11] = ACTIONS(6806), + [aux_sym_coarray_statement_token12] = ACTIONS(6806), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6806), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6806), + [aux_sym_identifier_token1] = ACTIONS(6806), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - }, - [2844] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_end_module_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), + [sym__integer_literal] = ACTIONS(6810), }, - [2845] = { - [sym_output_item_list] = STATE(7365), - [sym__expression] = STATE(4323), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2791] = { + [sym_concurrent_control] = STATE(7404), + [sym__expression] = STATE(4557), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4786), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [2846] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_end_module_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - }, - [2847] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5029), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - }, - [2848] = { - [aux_sym_preproc_include_token1] = ACTIONS(6894), - [aux_sym_preproc_def_token1] = ACTIONS(6894), - [aux_sym_preproc_if_token1] = ACTIONS(6894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6894), - [sym_preproc_directive] = ACTIONS(6894), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6894), - [aux_sym_end_module_statement_token1] = ACTIONS(6894), - [aux_sym_interface_statement_token1] = ACTIONS(6894), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6894), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6894), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6894), - [aux_sym_language_binding_token1] = ACTIONS(6894), - [aux_sym_procedure_attributes_token1] = ACTIONS(6894), - [aux_sym_procedure_attributes_token3] = ACTIONS(6894), - [aux_sym_contains_statement_token1] = ACTIONS(6894), - [aux_sym_use_statement_token1] = ACTIONS(6894), - [aux_sym_use_statement_token2] = ACTIONS(6894), - [aux_sym_implicit_statement_token1] = ACTIONS(6894), - [aux_sym_implicit_statement_token3] = ACTIONS(6894), - [aux_sym_implicit_statement_token4] = ACTIONS(6894), - [aux_sym_save_statement_token1] = ACTIONS(6894), - [aux_sym_private_statement_token1] = ACTIONS(6894), - [aux_sym_public_statement_token1] = ACTIONS(6894), - [aux_sym_namelist_statement_token1] = ACTIONS(6894), - [aux_sym_common_statement_token1] = ACTIONS(6894), - [aux_sym_import_statement_token1] = ACTIONS(6894), - [aux_sym_derived_type_definition_token1] = ACTIONS(6894), - [aux_sym_abstract_specifier_token1] = ACTIONS(6894), - [aux_sym_procedure_attribute_token6] = ACTIONS(6894), - [aux_sym_variable_attributes_token1] = ACTIONS(6894), - [aux_sym_variable_attributes_token2] = ACTIONS(6894), - [aux_sym_variable_attributes_token3] = ACTIONS(6894), - [aux_sym_variable_attributes_token4] = ACTIONS(6894), - [aux_sym_variable_attributes_token5] = ACTIONS(6894), - [aux_sym__intrinsic_type_token1] = ACTIONS(6894), - [aux_sym__intrinsic_type_token2] = ACTIONS(6894), - [aux_sym__intrinsic_type_token3] = ACTIONS(6894), - [aux_sym__intrinsic_type_token4] = ACTIONS(6894), - [aux_sym__intrinsic_type_token6] = ACTIONS(6894), - [aux_sym__intrinsic_type_token7] = ACTIONS(6894), - [aux_sym__intrinsic_type_token8] = ACTIONS(6894), - [aux_sym__intrinsic_type_token9] = ACTIONS(6894), - [aux_sym__intrinsic_type_token10] = ACTIONS(6894), - [aux_sym_derived_type_token1] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6894), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6894), - [aux_sym_type_qualifier_token1] = ACTIONS(6894), - [aux_sym_type_qualifier_token2] = ACTIONS(6894), - [aux_sym_equivalence_statement_token1] = ACTIONS(6894), - [aux_sym_stop_statement_token1] = ACTIONS(6894), - [aux_sym_stop_statement_token2] = ACTIONS(6894), - [aux_sym_keyword_statement_token2] = ACTIONS(6894), - [aux_sym_keyword_statement_token3] = ACTIONS(6894), - [aux_sym_include_statement_token1] = ACTIONS(6894), - [aux_sym_data_statement_token1] = ACTIONS(6894), - [aux_sym__inline_if_statement_token1] = ACTIONS(6894), - [aux_sym_end_if_statement_token1] = ACTIONS(6894), - [aux_sym_elseif_clause_token2] = ACTIONS(6894), - [aux_sym_select_case_statement_token1] = ACTIONS(6894), - [aux_sym_block_construct_token1] = ACTIONS(6894), - [aux_sym_format_statement_token1] = ACTIONS(6894), - [aux_sym_inquire_statement_token1] = ACTIONS(6894), - [aux_sym_enum_statement_token1] = ACTIONS(6894), - [aux_sym_entry_statement_token1] = ACTIONS(6894), - [aux_sym_null_literal_token1] = ACTIONS(6894), - [aux_sym_coarray_statement_token1] = ACTIONS(6894), - [aux_sym_coarray_statement_token2] = ACTIONS(6894), - [aux_sym_coarray_statement_token6] = ACTIONS(6894), - [aux_sym_coarray_statement_token8] = ACTIONS(6894), - [aux_sym_coarray_statement_token11] = ACTIONS(6894), - [aux_sym_coarray_statement_token12] = ACTIONS(6894), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6894), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6894), - [aux_sym_identifier_token1] = ACTIONS(6894), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6896), - }, - [2849] = { - [aux_sym_preproc_include_token1] = ACTIONS(4277), - [aux_sym_preproc_def_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4277), - [sym_preproc_directive] = ACTIONS(4277), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4277), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4277), - [aux_sym_interface_statement_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4277), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4277), - [aux_sym_language_binding_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token3] = ACTIONS(4277), - [aux_sym_contains_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token2] = ACTIONS(4277), - [aux_sym_implicit_statement_token1] = ACTIONS(4277), - [aux_sym_implicit_statement_token3] = ACTIONS(4277), - [aux_sym_implicit_statement_token4] = ACTIONS(4277), - [aux_sym_save_statement_token1] = ACTIONS(4277), - [aux_sym_private_statement_token1] = ACTIONS(4277), - [aux_sym_public_statement_token1] = ACTIONS(4277), - [aux_sym_namelist_statement_token1] = ACTIONS(4277), - [aux_sym_common_statement_token1] = ACTIONS(4277), - [aux_sym_import_statement_token1] = ACTIONS(4277), - [aux_sym_derived_type_definition_token1] = ACTIONS(4277), - [aux_sym_abstract_specifier_token1] = ACTIONS(4277), - [aux_sym_procedure_attribute_token6] = ACTIONS(4277), - [aux_sym_variable_attributes_token1] = ACTIONS(4277), - [aux_sym_variable_attributes_token2] = ACTIONS(4277), - [aux_sym_variable_attributes_token3] = ACTIONS(4277), - [aux_sym_variable_attributes_token4] = ACTIONS(4277), - [aux_sym_variable_attributes_token5] = ACTIONS(4277), - [aux_sym__intrinsic_type_token1] = ACTIONS(4277), - [aux_sym__intrinsic_type_token2] = ACTIONS(4277), - [aux_sym__intrinsic_type_token3] = ACTIONS(4277), - [aux_sym__intrinsic_type_token4] = ACTIONS(4277), - [aux_sym__intrinsic_type_token6] = ACTIONS(4277), - [aux_sym__intrinsic_type_token7] = ACTIONS(4277), - [aux_sym__intrinsic_type_token8] = ACTIONS(4277), - [aux_sym__intrinsic_type_token9] = ACTIONS(4277), - [aux_sym__intrinsic_type_token10] = ACTIONS(4277), - [aux_sym_derived_type_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4277), - [aux_sym_type_qualifier_token1] = ACTIONS(4277), - [aux_sym_type_qualifier_token2] = ACTIONS(4277), - [aux_sym_equivalence_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token3] = ACTIONS(4277), - [aux_sym_include_statement_token1] = ACTIONS(4277), - [aux_sym_data_statement_token1] = ACTIONS(4277), - [aux_sym__inline_if_statement_token1] = ACTIONS(4277), - [aux_sym_end_if_statement_token1] = ACTIONS(4277), - [aux_sym_elseif_clause_token2] = ACTIONS(4277), - [aux_sym_select_case_statement_token1] = ACTIONS(4277), - [aux_sym_block_construct_token1] = ACTIONS(4277), - [aux_sym_format_statement_token1] = ACTIONS(4277), - [aux_sym_inquire_statement_token1] = ACTIONS(4277), - [aux_sym_enum_statement_token1] = ACTIONS(4277), - [aux_sym_entry_statement_token1] = ACTIONS(4277), - [aux_sym_null_literal_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token2] = ACTIONS(4277), - [aux_sym_coarray_statement_token6] = ACTIONS(4277), - [aux_sym_coarray_statement_token8] = ACTIONS(4277), - [aux_sym_coarray_statement_token11] = ACTIONS(4277), - [aux_sym_coarray_statement_token12] = ACTIONS(4277), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4277), - [aux_sym_identifier_token1] = ACTIONS(4277), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4279), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2850] = { - [aux_sym_preproc_include_token1] = ACTIONS(6898), - [aux_sym_preproc_def_token1] = ACTIONS(6898), - [aux_sym_preproc_if_token1] = ACTIONS(6898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6898), - [sym_preproc_directive] = ACTIONS(6898), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6898), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6898), - [aux_sym_interface_statement_token1] = ACTIONS(6898), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6898), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6898), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6898), - [aux_sym_language_binding_token1] = ACTIONS(6898), - [aux_sym_procedure_attributes_token1] = ACTIONS(6898), - [aux_sym_procedure_attributes_token3] = ACTIONS(6898), - [aux_sym_contains_statement_token1] = ACTIONS(6898), - [aux_sym_use_statement_token1] = ACTIONS(6898), - [aux_sym_use_statement_token2] = ACTIONS(6898), - [aux_sym_implicit_statement_token1] = ACTIONS(6898), - [aux_sym_implicit_statement_token3] = ACTIONS(6898), - [aux_sym_implicit_statement_token4] = ACTIONS(6898), - [aux_sym_save_statement_token1] = ACTIONS(6898), - [aux_sym_private_statement_token1] = ACTIONS(6898), - [aux_sym_public_statement_token1] = ACTIONS(6898), - [aux_sym_namelist_statement_token1] = ACTIONS(6898), - [aux_sym_common_statement_token1] = ACTIONS(6898), - [aux_sym_import_statement_token1] = ACTIONS(6898), - [aux_sym_derived_type_definition_token1] = ACTIONS(6898), - [aux_sym_abstract_specifier_token1] = ACTIONS(6898), - [aux_sym_procedure_attribute_token6] = ACTIONS(6898), - [aux_sym_variable_attributes_token1] = ACTIONS(6898), - [aux_sym_variable_attributes_token2] = ACTIONS(6898), - [aux_sym_variable_attributes_token3] = ACTIONS(6898), - [aux_sym_variable_attributes_token4] = ACTIONS(6898), - [aux_sym_variable_attributes_token5] = ACTIONS(6898), - [aux_sym__intrinsic_type_token1] = ACTIONS(6898), - [aux_sym__intrinsic_type_token2] = ACTIONS(6898), - [aux_sym__intrinsic_type_token3] = ACTIONS(6898), - [aux_sym__intrinsic_type_token4] = ACTIONS(6898), - [aux_sym__intrinsic_type_token6] = ACTIONS(6898), - [aux_sym__intrinsic_type_token7] = ACTIONS(6898), - [aux_sym__intrinsic_type_token8] = ACTIONS(6898), - [aux_sym__intrinsic_type_token9] = ACTIONS(6898), - [aux_sym__intrinsic_type_token10] = ACTIONS(6898), - [aux_sym_derived_type_token1] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6898), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6898), - [aux_sym_type_qualifier_token1] = ACTIONS(6898), - [aux_sym_type_qualifier_token2] = ACTIONS(6898), - [aux_sym_equivalence_statement_token1] = ACTIONS(6898), - [aux_sym_stop_statement_token1] = ACTIONS(6898), - [aux_sym_stop_statement_token2] = ACTIONS(6898), - [aux_sym_keyword_statement_token2] = ACTIONS(6898), - [aux_sym_keyword_statement_token3] = ACTIONS(6898), - [aux_sym_include_statement_token1] = ACTIONS(6898), - [aux_sym_data_statement_token1] = ACTIONS(6898), - [aux_sym__inline_if_statement_token1] = ACTIONS(6898), - [aux_sym_end_if_statement_token1] = ACTIONS(6898), - [aux_sym_elseif_clause_token2] = ACTIONS(6898), - [aux_sym_select_case_statement_token1] = ACTIONS(6898), - [aux_sym_block_construct_token1] = ACTIONS(6898), - [aux_sym_format_statement_token1] = ACTIONS(6898), - [aux_sym_inquire_statement_token1] = ACTIONS(6898), - [aux_sym_enum_statement_token1] = ACTIONS(6898), - [aux_sym_entry_statement_token1] = ACTIONS(6898), - [aux_sym_null_literal_token1] = ACTIONS(6898), - [aux_sym_coarray_statement_token1] = ACTIONS(6898), - [aux_sym_coarray_statement_token2] = ACTIONS(6898), - [aux_sym_coarray_statement_token6] = ACTIONS(6898), - [aux_sym_coarray_statement_token8] = ACTIONS(6898), - [aux_sym_coarray_statement_token11] = ACTIONS(6898), - [aux_sym_coarray_statement_token12] = ACTIONS(6898), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6898), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6898), - [aux_sym_identifier_token1] = ACTIONS(6898), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6900), + [2792] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), }, - [2851] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), + [2793] = { + [aux_sym_preproc_include_token1] = ACTIONS(4345), + [aux_sym_preproc_def_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token1] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4345), + [sym_preproc_directive] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4345), + [aux_sym_end_module_statement_token1] = ACTIONS(4345), + [aux_sym_interface_statement_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4345), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4345), + [aux_sym_language_binding_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token3] = ACTIONS(4345), + [aux_sym_contains_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token2] = ACTIONS(4345), + [aux_sym_implicit_statement_token1] = ACTIONS(4345), + [aux_sym_implicit_statement_token3] = ACTIONS(4345), + [aux_sym_implicit_statement_token4] = ACTIONS(4345), + [aux_sym_save_statement_token1] = ACTIONS(4345), + [aux_sym_private_statement_token1] = ACTIONS(4345), + [aux_sym_public_statement_token1] = ACTIONS(4345), + [aux_sym_namelist_statement_token1] = ACTIONS(4345), + [aux_sym_common_statement_token1] = ACTIONS(4345), + [aux_sym_import_statement_token1] = ACTIONS(4345), + [aux_sym_derived_type_definition_token1] = ACTIONS(4345), + [aux_sym_abstract_specifier_token1] = ACTIONS(4345), + [aux_sym_procedure_attribute_token6] = ACTIONS(4345), + [aux_sym_variable_attributes_token1] = ACTIONS(4345), + [aux_sym_variable_attributes_token2] = ACTIONS(4345), + [aux_sym_variable_attributes_token3] = ACTIONS(4345), + [aux_sym_variable_attributes_token4] = ACTIONS(4345), + [aux_sym_variable_attributes_token5] = ACTIONS(4345), + [aux_sym__intrinsic_type_token1] = ACTIONS(4345), + [aux_sym__intrinsic_type_token2] = ACTIONS(4345), + [aux_sym__intrinsic_type_token3] = ACTIONS(4345), + [aux_sym__intrinsic_type_token4] = ACTIONS(4345), + [aux_sym__intrinsic_type_token6] = ACTIONS(4345), + [aux_sym__intrinsic_type_token7] = ACTIONS(4345), + [aux_sym__intrinsic_type_token8] = ACTIONS(4345), + [aux_sym__intrinsic_type_token9] = ACTIONS(4345), + [aux_sym__intrinsic_type_token10] = ACTIONS(4345), + [aux_sym_derived_type_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4345), + [aux_sym_type_qualifier_token1] = ACTIONS(4345), + [aux_sym_type_qualifier_token2] = ACTIONS(4345), + [aux_sym_equivalence_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token3] = ACTIONS(4345), + [aux_sym_include_statement_token1] = ACTIONS(4345), + [aux_sym_data_statement_token1] = ACTIONS(4345), + [aux_sym__inline_if_statement_token1] = ACTIONS(4345), + [aux_sym_end_if_statement_token1] = ACTIONS(4345), + [aux_sym_elseif_clause_token2] = ACTIONS(4345), + [aux_sym_select_case_statement_token1] = ACTIONS(4345), + [aux_sym_block_construct_token1] = ACTIONS(4345), + [aux_sym_format_statement_token1] = ACTIONS(4345), + [aux_sym_inquire_statement_token1] = ACTIONS(4345), + [aux_sym_enum_statement_token1] = ACTIONS(4345), + [aux_sym_entry_statement_token1] = ACTIONS(4345), + [aux_sym_null_literal_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token2] = ACTIONS(4345), + [aux_sym_coarray_statement_token6] = ACTIONS(4345), + [aux_sym_coarray_statement_token8] = ACTIONS(4345), + [aux_sym_coarray_statement_token11] = ACTIONS(4345), + [aux_sym_coarray_statement_token12] = ACTIONS(4345), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4345), + [aux_sym_identifier_token1] = ACTIONS(4345), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4347), }, - [2852] = { - [aux_sym_preproc_include_token1] = ACTIONS(4972), - [aux_sym_preproc_def_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), - [sym_preproc_directive] = ACTIONS(4972), + [2794] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4972), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4972), - [aux_sym_interface_statement_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), - [aux_sym_language_binding_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token3] = ACTIONS(4972), - [aux_sym_contains_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token2] = ACTIONS(4972), - [aux_sym_implicit_statement_token1] = ACTIONS(4972), - [aux_sym_implicit_statement_token3] = ACTIONS(4972), - [aux_sym_implicit_statement_token4] = ACTIONS(4972), - [aux_sym_save_statement_token1] = ACTIONS(4972), - [aux_sym_private_statement_token1] = ACTIONS(4972), - [aux_sym_public_statement_token1] = ACTIONS(4972), - [aux_sym_namelist_statement_token1] = ACTIONS(4972), - [aux_sym_common_statement_token1] = ACTIONS(4972), - [aux_sym_import_statement_token1] = ACTIONS(4972), - [aux_sym_derived_type_definition_token1] = ACTIONS(4972), - [aux_sym_abstract_specifier_token1] = ACTIONS(4972), - [aux_sym_procedure_attribute_token6] = ACTIONS(4972), - [aux_sym_variable_attributes_token1] = ACTIONS(4972), - [aux_sym_variable_attributes_token2] = ACTIONS(4972), - [aux_sym_variable_attributes_token3] = ACTIONS(4972), - [aux_sym_variable_attributes_token4] = ACTIONS(4972), - [aux_sym_variable_attributes_token5] = ACTIONS(4972), - [aux_sym__intrinsic_type_token1] = ACTIONS(4972), - [aux_sym__intrinsic_type_token2] = ACTIONS(4972), - [aux_sym__intrinsic_type_token3] = ACTIONS(4972), - [aux_sym__intrinsic_type_token4] = ACTIONS(4972), - [aux_sym__intrinsic_type_token6] = ACTIONS(4972), - [aux_sym__intrinsic_type_token7] = ACTIONS(4972), - [aux_sym__intrinsic_type_token8] = ACTIONS(4972), - [aux_sym__intrinsic_type_token9] = ACTIONS(4972), - [aux_sym__intrinsic_type_token10] = ACTIONS(4972), - [aux_sym_derived_type_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), - [aux_sym_type_qualifier_token1] = ACTIONS(4972), - [aux_sym_type_qualifier_token2] = ACTIONS(4972), - [aux_sym_equivalence_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token3] = ACTIONS(4972), - [aux_sym_include_statement_token1] = ACTIONS(4972), - [aux_sym_data_statement_token1] = ACTIONS(4972), - [aux_sym__inline_if_statement_token1] = ACTIONS(4972), - [aux_sym_end_if_statement_token1] = ACTIONS(4972), - [aux_sym_elseif_clause_token2] = ACTIONS(4972), - [aux_sym_select_case_statement_token1] = ACTIONS(4972), - [aux_sym_block_construct_token1] = ACTIONS(4972), - [aux_sym_format_statement_token1] = ACTIONS(4972), - [aux_sym_inquire_statement_token1] = ACTIONS(4972), - [aux_sym_enum_statement_token1] = ACTIONS(4972), - [aux_sym_entry_statement_token1] = ACTIONS(4972), - [aux_sym_null_literal_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token2] = ACTIONS(4972), - [aux_sym_coarray_statement_token6] = ACTIONS(4972), - [aux_sym_coarray_statement_token8] = ACTIONS(4972), - [aux_sym_coarray_statement_token11] = ACTIONS(4972), - [aux_sym_coarray_statement_token12] = ACTIONS(4972), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), - [aux_sym_identifier_token1] = ACTIONS(4972), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_end_module_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4974), + [sym__integer_literal] = ACTIONS(4996), }, - [2853] = { - [aux_sym_preproc_include_token1] = ACTIONS(4331), - [aux_sym_preproc_def_token1] = ACTIONS(4331), - [aux_sym_preproc_if_token1] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), - [sym_preproc_directive] = ACTIONS(4331), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4331), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4331), - [aux_sym_interface_statement_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4331), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4331), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4331), - [aux_sym_language_binding_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token1] = ACTIONS(4331), - [aux_sym_procedure_attributes_token3] = ACTIONS(4331), - [aux_sym_contains_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token1] = ACTIONS(4331), - [aux_sym_use_statement_token2] = ACTIONS(4331), - [aux_sym_implicit_statement_token1] = ACTIONS(4331), - [aux_sym_implicit_statement_token3] = ACTIONS(4331), - [aux_sym_implicit_statement_token4] = ACTIONS(4331), - [aux_sym_save_statement_token1] = ACTIONS(4331), - [aux_sym_private_statement_token1] = ACTIONS(4331), - [aux_sym_public_statement_token1] = ACTIONS(4331), - [aux_sym_namelist_statement_token1] = ACTIONS(4331), - [aux_sym_common_statement_token1] = ACTIONS(4331), - [aux_sym_import_statement_token1] = ACTIONS(4331), - [aux_sym_derived_type_definition_token1] = ACTIONS(4331), - [aux_sym_abstract_specifier_token1] = ACTIONS(4331), - [aux_sym_procedure_attribute_token6] = ACTIONS(4331), - [aux_sym_variable_attributes_token1] = ACTIONS(4331), - [aux_sym_variable_attributes_token2] = ACTIONS(4331), - [aux_sym_variable_attributes_token3] = ACTIONS(4331), - [aux_sym_variable_attributes_token4] = ACTIONS(4331), - [aux_sym_variable_attributes_token5] = ACTIONS(4331), - [aux_sym__intrinsic_type_token1] = ACTIONS(4331), - [aux_sym__intrinsic_type_token2] = ACTIONS(4331), - [aux_sym__intrinsic_type_token3] = ACTIONS(4331), - [aux_sym__intrinsic_type_token4] = ACTIONS(4331), - [aux_sym__intrinsic_type_token6] = ACTIONS(4331), - [aux_sym__intrinsic_type_token7] = ACTIONS(4331), - [aux_sym__intrinsic_type_token8] = ACTIONS(4331), - [aux_sym__intrinsic_type_token9] = ACTIONS(4331), - [aux_sym__intrinsic_type_token10] = ACTIONS(4331), - [aux_sym_derived_type_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4331), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4331), - [aux_sym_type_qualifier_token1] = ACTIONS(4331), - [aux_sym_type_qualifier_token2] = ACTIONS(4331), - [aux_sym_equivalence_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token1] = ACTIONS(4331), - [aux_sym_stop_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token2] = ACTIONS(4331), - [aux_sym_keyword_statement_token3] = ACTIONS(4331), - [aux_sym_include_statement_token1] = ACTIONS(4331), - [aux_sym_data_statement_token1] = ACTIONS(4331), - [aux_sym__inline_if_statement_token1] = ACTIONS(4331), - [aux_sym_end_if_statement_token1] = ACTIONS(4331), - [aux_sym_elseif_clause_token2] = ACTIONS(4331), - [aux_sym_select_case_statement_token1] = ACTIONS(4331), - [aux_sym_block_construct_token1] = ACTIONS(4331), - [aux_sym_format_statement_token1] = ACTIONS(4331), - [aux_sym_inquire_statement_token1] = ACTIONS(4331), - [aux_sym_enum_statement_token1] = ACTIONS(4331), - [aux_sym_entry_statement_token1] = ACTIONS(4331), - [aux_sym_null_literal_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_statement_token2] = ACTIONS(4331), - [aux_sym_coarray_statement_token6] = ACTIONS(4331), - [aux_sym_coarray_statement_token8] = ACTIONS(4331), - [aux_sym_coarray_statement_token11] = ACTIONS(4331), - [aux_sym_coarray_statement_token12] = ACTIONS(4331), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4331), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4331), - [aux_sym_identifier_token1] = ACTIONS(4331), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4333), + [2795] = { + [aux_sym_preproc_include_token1] = ACTIONS(6770), + [aux_sym_preproc_def_token1] = ACTIONS(6770), + [aux_sym_preproc_if_token1] = ACTIONS(6770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6770), + [sym_preproc_directive] = ACTIONS(6770), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6770), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6770), + [aux_sym_interface_statement_token1] = ACTIONS(6770), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6770), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6770), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6770), + [aux_sym_language_binding_token1] = ACTIONS(6770), + [aux_sym_procedure_attributes_token1] = ACTIONS(6770), + [aux_sym_procedure_attributes_token3] = ACTIONS(6770), + [aux_sym_contains_statement_token1] = ACTIONS(6770), + [aux_sym_use_statement_token1] = ACTIONS(6770), + [aux_sym_use_statement_token2] = ACTIONS(6770), + [aux_sym_implicit_statement_token1] = ACTIONS(6770), + [aux_sym_implicit_statement_token3] = ACTIONS(6770), + [aux_sym_implicit_statement_token4] = ACTIONS(6770), + [aux_sym_save_statement_token1] = ACTIONS(6770), + [aux_sym_private_statement_token1] = ACTIONS(6770), + [aux_sym_public_statement_token1] = ACTIONS(6770), + [aux_sym_namelist_statement_token1] = ACTIONS(6770), + [aux_sym_common_statement_token1] = ACTIONS(6770), + [aux_sym_import_statement_token1] = ACTIONS(6770), + [aux_sym_derived_type_definition_token1] = ACTIONS(6770), + [aux_sym_abstract_specifier_token1] = ACTIONS(6770), + [aux_sym_procedure_attribute_token6] = ACTIONS(6770), + [aux_sym_variable_attributes_token1] = ACTIONS(6770), + [aux_sym_variable_attributes_token2] = ACTIONS(6770), + [aux_sym_variable_attributes_token3] = ACTIONS(6770), + [aux_sym_variable_attributes_token4] = ACTIONS(6770), + [aux_sym_variable_attributes_token5] = ACTIONS(6770), + [aux_sym__intrinsic_type_token1] = ACTIONS(6770), + [aux_sym__intrinsic_type_token2] = ACTIONS(6770), + [aux_sym__intrinsic_type_token3] = ACTIONS(6770), + [aux_sym__intrinsic_type_token4] = ACTIONS(6770), + [aux_sym__intrinsic_type_token6] = ACTIONS(6770), + [aux_sym__intrinsic_type_token7] = ACTIONS(6770), + [aux_sym__intrinsic_type_token8] = ACTIONS(6770), + [aux_sym__intrinsic_type_token9] = ACTIONS(6770), + [aux_sym__intrinsic_type_token10] = ACTIONS(6770), + [aux_sym_derived_type_token1] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6770), + [aux_sym_type_qualifier_token1] = ACTIONS(6770), + [aux_sym_type_qualifier_token2] = ACTIONS(6770), + [aux_sym_equivalence_statement_token1] = ACTIONS(6770), + [aux_sym_stop_statement_token1] = ACTIONS(6770), + [aux_sym_stop_statement_token2] = ACTIONS(6770), + [aux_sym_keyword_statement_token2] = ACTIONS(6770), + [aux_sym_keyword_statement_token3] = ACTIONS(6770), + [aux_sym_include_statement_token1] = ACTIONS(6770), + [aux_sym_data_statement_token1] = ACTIONS(6770), + [aux_sym__inline_if_statement_token1] = ACTIONS(6770), + [aux_sym_end_if_statement_token1] = ACTIONS(6770), + [aux_sym_elseif_clause_token2] = ACTIONS(6770), + [aux_sym_select_case_statement_token1] = ACTIONS(6770), + [aux_sym_block_construct_token1] = ACTIONS(6770), + [aux_sym_format_statement_token1] = ACTIONS(6770), + [aux_sym_inquire_statement_token1] = ACTIONS(6770), + [aux_sym_enum_statement_token1] = ACTIONS(6770), + [aux_sym_entry_statement_token1] = ACTIONS(6770), + [aux_sym_null_literal_token1] = ACTIONS(6770), + [aux_sym_coarray_statement_token1] = ACTIONS(6770), + [aux_sym_coarray_statement_token2] = ACTIONS(6770), + [aux_sym_coarray_statement_token6] = ACTIONS(6770), + [aux_sym_coarray_statement_token8] = ACTIONS(6770), + [aux_sym_coarray_statement_token11] = ACTIONS(6770), + [aux_sym_coarray_statement_token12] = ACTIONS(6770), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6770), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6770), + [aux_sym_identifier_token1] = ACTIONS(6770), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6774), }, - [2854] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), + [2796] = { + [aux_sym_preproc_include_token1] = ACTIONS(4349), + [aux_sym_preproc_def_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token1] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4349), + [sym_preproc_directive] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4349), + [aux_sym_end_module_statement_token1] = ACTIONS(4349), + [aux_sym_interface_statement_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4349), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4349), + [aux_sym_language_binding_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token3] = ACTIONS(4349), + [aux_sym_contains_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token2] = ACTIONS(4349), + [aux_sym_implicit_statement_token1] = ACTIONS(4349), + [aux_sym_implicit_statement_token3] = ACTIONS(4349), + [aux_sym_implicit_statement_token4] = ACTIONS(4349), + [aux_sym_save_statement_token1] = ACTIONS(4349), + [aux_sym_private_statement_token1] = ACTIONS(4349), + [aux_sym_public_statement_token1] = ACTIONS(4349), + [aux_sym_namelist_statement_token1] = ACTIONS(4349), + [aux_sym_common_statement_token1] = ACTIONS(4349), + [aux_sym_import_statement_token1] = ACTIONS(4349), + [aux_sym_derived_type_definition_token1] = ACTIONS(4349), + [aux_sym_abstract_specifier_token1] = ACTIONS(4349), + [aux_sym_procedure_attribute_token6] = ACTIONS(4349), + [aux_sym_variable_attributes_token1] = ACTIONS(4349), + [aux_sym_variable_attributes_token2] = ACTIONS(4349), + [aux_sym_variable_attributes_token3] = ACTIONS(4349), + [aux_sym_variable_attributes_token4] = ACTIONS(4349), + [aux_sym_variable_attributes_token5] = ACTIONS(4349), + [aux_sym__intrinsic_type_token1] = ACTIONS(4349), + [aux_sym__intrinsic_type_token2] = ACTIONS(4349), + [aux_sym__intrinsic_type_token3] = ACTIONS(4349), + [aux_sym__intrinsic_type_token4] = ACTIONS(4349), + [aux_sym__intrinsic_type_token6] = ACTIONS(4349), + [aux_sym__intrinsic_type_token7] = ACTIONS(4349), + [aux_sym__intrinsic_type_token8] = ACTIONS(4349), + [aux_sym__intrinsic_type_token9] = ACTIONS(4349), + [aux_sym__intrinsic_type_token10] = ACTIONS(4349), + [aux_sym_derived_type_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4349), + [aux_sym_type_qualifier_token1] = ACTIONS(4349), + [aux_sym_type_qualifier_token2] = ACTIONS(4349), + [aux_sym_equivalence_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token3] = ACTIONS(4349), + [aux_sym_include_statement_token1] = ACTIONS(4349), + [aux_sym_data_statement_token1] = ACTIONS(4349), + [aux_sym__inline_if_statement_token1] = ACTIONS(4349), + [aux_sym_end_if_statement_token1] = ACTIONS(4349), + [aux_sym_elseif_clause_token2] = ACTIONS(4349), + [aux_sym_select_case_statement_token1] = ACTIONS(4349), + [aux_sym_block_construct_token1] = ACTIONS(4349), + [aux_sym_format_statement_token1] = ACTIONS(4349), + [aux_sym_inquire_statement_token1] = ACTIONS(4349), + [aux_sym_enum_statement_token1] = ACTIONS(4349), + [aux_sym_entry_statement_token1] = ACTIONS(4349), + [aux_sym_null_literal_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token2] = ACTIONS(4349), + [aux_sym_coarray_statement_token6] = ACTIONS(4349), + [aux_sym_coarray_statement_token8] = ACTIONS(4349), + [aux_sym_coarray_statement_token11] = ACTIONS(4349), + [aux_sym_coarray_statement_token12] = ACTIONS(4349), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4349), + [aux_sym_identifier_token1] = ACTIONS(4349), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), + [sym__integer_literal] = ACTIONS(4351), }, - [2855] = { - [aux_sym_preproc_include_token1] = ACTIONS(6902), - [aux_sym_preproc_def_token1] = ACTIONS(6902), - [aux_sym_preproc_if_token1] = ACTIONS(6902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6902), - [sym_preproc_directive] = ACTIONS(6902), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6902), - [aux_sym_end_module_statement_token1] = ACTIONS(6902), - [aux_sym_interface_statement_token1] = ACTIONS(6902), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6902), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6902), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6902), - [aux_sym_language_binding_token1] = ACTIONS(6902), - [aux_sym_procedure_attributes_token1] = ACTIONS(6902), - [aux_sym_procedure_attributes_token3] = ACTIONS(6902), - [aux_sym_contains_statement_token1] = ACTIONS(6902), - [aux_sym_use_statement_token1] = ACTIONS(6902), - [aux_sym_use_statement_token2] = ACTIONS(6902), - [aux_sym_implicit_statement_token1] = ACTIONS(6902), - [aux_sym_implicit_statement_token3] = ACTIONS(6902), - [aux_sym_implicit_statement_token4] = ACTIONS(6902), - [aux_sym_save_statement_token1] = ACTIONS(6902), - [aux_sym_private_statement_token1] = ACTIONS(6902), - [aux_sym_public_statement_token1] = ACTIONS(6902), - [aux_sym_namelist_statement_token1] = ACTIONS(6902), - [aux_sym_common_statement_token1] = ACTIONS(6902), - [aux_sym_import_statement_token1] = ACTIONS(6902), - [aux_sym_derived_type_definition_token1] = ACTIONS(6902), - [aux_sym_abstract_specifier_token1] = ACTIONS(6902), - [aux_sym_procedure_attribute_token6] = ACTIONS(6902), - [aux_sym_variable_attributes_token1] = ACTIONS(6902), - [aux_sym_variable_attributes_token2] = ACTIONS(6902), - [aux_sym_variable_attributes_token3] = ACTIONS(6902), - [aux_sym_variable_attributes_token4] = ACTIONS(6902), - [aux_sym_variable_attributes_token5] = ACTIONS(6902), - [aux_sym__intrinsic_type_token1] = ACTIONS(6902), - [aux_sym__intrinsic_type_token2] = ACTIONS(6902), - [aux_sym__intrinsic_type_token3] = ACTIONS(6902), - [aux_sym__intrinsic_type_token4] = ACTIONS(6902), - [aux_sym__intrinsic_type_token6] = ACTIONS(6902), - [aux_sym__intrinsic_type_token7] = ACTIONS(6902), - [aux_sym__intrinsic_type_token8] = ACTIONS(6902), - [aux_sym__intrinsic_type_token9] = ACTIONS(6902), - [aux_sym__intrinsic_type_token10] = ACTIONS(6902), - [aux_sym_derived_type_token1] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6902), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6902), - [aux_sym_type_qualifier_token1] = ACTIONS(6902), - [aux_sym_type_qualifier_token2] = ACTIONS(6902), - [aux_sym_equivalence_statement_token1] = ACTIONS(6902), - [aux_sym_stop_statement_token1] = ACTIONS(6902), - [aux_sym_stop_statement_token2] = ACTIONS(6902), - [aux_sym_keyword_statement_token2] = ACTIONS(6902), - [aux_sym_keyword_statement_token3] = ACTIONS(6902), - [aux_sym_include_statement_token1] = ACTIONS(6902), - [aux_sym_data_statement_token1] = ACTIONS(6902), - [aux_sym__inline_if_statement_token1] = ACTIONS(6902), - [aux_sym_end_if_statement_token1] = ACTIONS(6902), - [aux_sym_elseif_clause_token2] = ACTIONS(6902), - [aux_sym_select_case_statement_token1] = ACTIONS(6902), - [aux_sym_block_construct_token1] = ACTIONS(6902), - [aux_sym_format_statement_token1] = ACTIONS(6902), - [aux_sym_inquire_statement_token1] = ACTIONS(6902), - [aux_sym_enum_statement_token1] = ACTIONS(6902), - [aux_sym_entry_statement_token1] = ACTIONS(6902), - [aux_sym_null_literal_token1] = ACTIONS(6902), - [aux_sym_coarray_statement_token1] = ACTIONS(6902), - [aux_sym_coarray_statement_token2] = ACTIONS(6902), - [aux_sym_coarray_statement_token6] = ACTIONS(6902), - [aux_sym_coarray_statement_token8] = ACTIONS(6902), - [aux_sym_coarray_statement_token11] = ACTIONS(6902), - [aux_sym_coarray_statement_token12] = ACTIONS(6902), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6902), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6902), - [aux_sym_identifier_token1] = ACTIONS(6902), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6904), + [2797] = { + [aux_sym_preproc_include_token1] = ACTIONS(6842), + [aux_sym_preproc_def_token1] = ACTIONS(6842), + [aux_sym_preproc_if_token1] = ACTIONS(6842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6842), + [sym_preproc_directive] = ACTIONS(6842), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6842), + [aux_sym_end_module_statement_token1] = ACTIONS(6842), + [aux_sym_interface_statement_token1] = ACTIONS(6842), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6842), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6842), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6842), + [aux_sym_language_binding_token1] = ACTIONS(6842), + [aux_sym_procedure_attributes_token1] = ACTIONS(6842), + [aux_sym_procedure_attributes_token3] = ACTIONS(6842), + [aux_sym_contains_statement_token1] = ACTIONS(6842), + [aux_sym_use_statement_token1] = ACTIONS(6842), + [aux_sym_use_statement_token2] = ACTIONS(6842), + [aux_sym_implicit_statement_token1] = ACTIONS(6842), + [aux_sym_implicit_statement_token3] = ACTIONS(6842), + [aux_sym_implicit_statement_token4] = ACTIONS(6842), + [aux_sym_save_statement_token1] = ACTIONS(6842), + [aux_sym_private_statement_token1] = ACTIONS(6842), + [aux_sym_public_statement_token1] = ACTIONS(6842), + [aux_sym_namelist_statement_token1] = ACTIONS(6842), + [aux_sym_common_statement_token1] = ACTIONS(6842), + [aux_sym_import_statement_token1] = ACTIONS(6842), + [aux_sym_derived_type_definition_token1] = ACTIONS(6842), + [aux_sym_abstract_specifier_token1] = ACTIONS(6842), + [aux_sym_procedure_attribute_token6] = ACTIONS(6842), + [aux_sym_variable_attributes_token1] = ACTIONS(6842), + [aux_sym_variable_attributes_token2] = ACTIONS(6842), + [aux_sym_variable_attributes_token3] = ACTIONS(6842), + [aux_sym_variable_attributes_token4] = ACTIONS(6842), + [aux_sym_variable_attributes_token5] = ACTIONS(6842), + [aux_sym__intrinsic_type_token1] = ACTIONS(6842), + [aux_sym__intrinsic_type_token2] = ACTIONS(6842), + [aux_sym__intrinsic_type_token3] = ACTIONS(6842), + [aux_sym__intrinsic_type_token4] = ACTIONS(6842), + [aux_sym__intrinsic_type_token6] = ACTIONS(6842), + [aux_sym__intrinsic_type_token7] = ACTIONS(6842), + [aux_sym__intrinsic_type_token8] = ACTIONS(6842), + [aux_sym__intrinsic_type_token9] = ACTIONS(6842), + [aux_sym__intrinsic_type_token10] = ACTIONS(6842), + [aux_sym_derived_type_token1] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6842), + [aux_sym_type_qualifier_token1] = ACTIONS(6842), + [aux_sym_type_qualifier_token2] = ACTIONS(6842), + [aux_sym_equivalence_statement_token1] = ACTIONS(6842), + [aux_sym_stop_statement_token1] = ACTIONS(6842), + [aux_sym_stop_statement_token2] = ACTIONS(6842), + [aux_sym_keyword_statement_token2] = ACTIONS(6842), + [aux_sym_keyword_statement_token3] = ACTIONS(6842), + [aux_sym_include_statement_token1] = ACTIONS(6842), + [aux_sym_data_statement_token1] = ACTIONS(6842), + [aux_sym__inline_if_statement_token1] = ACTIONS(6842), + [aux_sym_end_if_statement_token1] = ACTIONS(6842), + [aux_sym_elseif_clause_token2] = ACTIONS(6842), + [aux_sym_select_case_statement_token1] = ACTIONS(6842), + [aux_sym_block_construct_token1] = ACTIONS(6842), + [aux_sym_format_statement_token1] = ACTIONS(6842), + [aux_sym_inquire_statement_token1] = ACTIONS(6842), + [aux_sym_enum_statement_token1] = ACTIONS(6842), + [aux_sym_entry_statement_token1] = ACTIONS(6842), + [aux_sym_null_literal_token1] = ACTIONS(6842), + [aux_sym_coarray_statement_token1] = ACTIONS(6842), + [aux_sym_coarray_statement_token2] = ACTIONS(6842), + [aux_sym_coarray_statement_token6] = ACTIONS(6842), + [aux_sym_coarray_statement_token8] = ACTIONS(6842), + [aux_sym_coarray_statement_token11] = ACTIONS(6842), + [aux_sym_coarray_statement_token12] = ACTIONS(6842), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6842), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6842), + [aux_sym_identifier_token1] = ACTIONS(6842), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6846), }, - [2856] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_end_module_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), + [2798] = { + [aux_sym_preproc_include_token1] = ACTIONS(4349), + [aux_sym_preproc_def_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token1] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4349), + [sym_preproc_directive] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4349), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4349), + [aux_sym_interface_statement_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4349), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4349), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4349), + [aux_sym_language_binding_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token1] = ACTIONS(4349), + [aux_sym_procedure_attributes_token3] = ACTIONS(4349), + [aux_sym_contains_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token1] = ACTIONS(4349), + [aux_sym_use_statement_token2] = ACTIONS(4349), + [aux_sym_implicit_statement_token1] = ACTIONS(4349), + [aux_sym_implicit_statement_token3] = ACTIONS(4349), + [aux_sym_implicit_statement_token4] = ACTIONS(4349), + [aux_sym_save_statement_token1] = ACTIONS(4349), + [aux_sym_private_statement_token1] = ACTIONS(4349), + [aux_sym_public_statement_token1] = ACTIONS(4349), + [aux_sym_namelist_statement_token1] = ACTIONS(4349), + [aux_sym_common_statement_token1] = ACTIONS(4349), + [aux_sym_import_statement_token1] = ACTIONS(4349), + [aux_sym_derived_type_definition_token1] = ACTIONS(4349), + [aux_sym_abstract_specifier_token1] = ACTIONS(4349), + [aux_sym_procedure_attribute_token6] = ACTIONS(4349), + [aux_sym_variable_attributes_token1] = ACTIONS(4349), + [aux_sym_variable_attributes_token2] = ACTIONS(4349), + [aux_sym_variable_attributes_token3] = ACTIONS(4349), + [aux_sym_variable_attributes_token4] = ACTIONS(4349), + [aux_sym_variable_attributes_token5] = ACTIONS(4349), + [aux_sym__intrinsic_type_token1] = ACTIONS(4349), + [aux_sym__intrinsic_type_token2] = ACTIONS(4349), + [aux_sym__intrinsic_type_token3] = ACTIONS(4349), + [aux_sym__intrinsic_type_token4] = ACTIONS(4349), + [aux_sym__intrinsic_type_token6] = ACTIONS(4349), + [aux_sym__intrinsic_type_token7] = ACTIONS(4349), + [aux_sym__intrinsic_type_token8] = ACTIONS(4349), + [aux_sym__intrinsic_type_token9] = ACTIONS(4349), + [aux_sym__intrinsic_type_token10] = ACTIONS(4349), + [aux_sym_derived_type_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4349), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4349), + [aux_sym_type_qualifier_token1] = ACTIONS(4349), + [aux_sym_type_qualifier_token2] = ACTIONS(4349), + [aux_sym_equivalence_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token1] = ACTIONS(4349), + [aux_sym_stop_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token2] = ACTIONS(4349), + [aux_sym_keyword_statement_token3] = ACTIONS(4349), + [aux_sym_include_statement_token1] = ACTIONS(4349), + [aux_sym_data_statement_token1] = ACTIONS(4349), + [aux_sym__inline_if_statement_token1] = ACTIONS(4349), + [aux_sym_end_if_statement_token1] = ACTIONS(4349), + [aux_sym_elseif_clause_token2] = ACTIONS(4349), + [aux_sym_select_case_statement_token1] = ACTIONS(4349), + [aux_sym_block_construct_token1] = ACTIONS(4349), + [aux_sym_format_statement_token1] = ACTIONS(4349), + [aux_sym_inquire_statement_token1] = ACTIONS(4349), + [aux_sym_enum_statement_token1] = ACTIONS(4349), + [aux_sym_entry_statement_token1] = ACTIONS(4349), + [aux_sym_null_literal_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_statement_token2] = ACTIONS(4349), + [aux_sym_coarray_statement_token6] = ACTIONS(4349), + [aux_sym_coarray_statement_token8] = ACTIONS(4349), + [aux_sym_coarray_statement_token11] = ACTIONS(4349), + [aux_sym_coarray_statement_token12] = ACTIONS(4349), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4349), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4349), + [aux_sym_identifier_token1] = ACTIONS(4349), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), + [sym__integer_literal] = ACTIONS(4351), }, - [2857] = { - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), + [2799] = { + [aux_sym_preproc_include_token1] = ACTIONS(6806), + [aux_sym_preproc_def_token1] = ACTIONS(6806), + [aux_sym_preproc_if_token1] = ACTIONS(6806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6806), + [sym_preproc_directive] = ACTIONS(6806), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_end_module_statement_token1] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_contains_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token1] = ACTIONS(6806), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6806), + [aux_sym_interface_statement_token1] = ACTIONS(6806), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6806), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6806), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6806), + [aux_sym_language_binding_token1] = ACTIONS(6806), + [aux_sym_procedure_attributes_token1] = ACTIONS(6806), + [aux_sym_procedure_attributes_token3] = ACTIONS(6806), + [aux_sym_contains_statement_token1] = ACTIONS(6806), + [aux_sym_use_statement_token1] = ACTIONS(6806), + [aux_sym_use_statement_token2] = ACTIONS(6806), + [aux_sym_implicit_statement_token1] = ACTIONS(6806), + [aux_sym_implicit_statement_token3] = ACTIONS(6806), + [aux_sym_implicit_statement_token4] = ACTIONS(6806), + [aux_sym_save_statement_token1] = ACTIONS(6806), + [aux_sym_private_statement_token1] = ACTIONS(6806), + [aux_sym_public_statement_token1] = ACTIONS(6806), + [aux_sym_namelist_statement_token1] = ACTIONS(6806), + [aux_sym_common_statement_token1] = ACTIONS(6806), + [aux_sym_import_statement_token1] = ACTIONS(6806), + [aux_sym_derived_type_definition_token1] = ACTIONS(6806), + [aux_sym_abstract_specifier_token1] = ACTIONS(6806), + [aux_sym_procedure_attribute_token6] = ACTIONS(6806), + [aux_sym_variable_attributes_token1] = ACTIONS(6806), + [aux_sym_variable_attributes_token2] = ACTIONS(6806), + [aux_sym_variable_attributes_token3] = ACTIONS(6806), + [aux_sym_variable_attributes_token4] = ACTIONS(6806), + [aux_sym_variable_attributes_token5] = ACTIONS(6806), + [aux_sym__intrinsic_type_token1] = ACTIONS(6806), + [aux_sym__intrinsic_type_token2] = ACTIONS(6806), + [aux_sym__intrinsic_type_token3] = ACTIONS(6806), + [aux_sym__intrinsic_type_token4] = ACTIONS(6806), + [aux_sym__intrinsic_type_token6] = ACTIONS(6806), + [aux_sym__intrinsic_type_token7] = ACTIONS(6806), + [aux_sym__intrinsic_type_token8] = ACTIONS(6806), + [aux_sym__intrinsic_type_token9] = ACTIONS(6806), + [aux_sym__intrinsic_type_token10] = ACTIONS(6806), + [aux_sym_derived_type_token1] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6806), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6806), + [aux_sym_type_qualifier_token1] = ACTIONS(6806), + [aux_sym_type_qualifier_token2] = ACTIONS(6806), + [aux_sym_equivalence_statement_token1] = ACTIONS(6806), + [aux_sym_stop_statement_token1] = ACTIONS(6806), + [aux_sym_stop_statement_token2] = ACTIONS(6806), + [aux_sym_keyword_statement_token2] = ACTIONS(6806), + [aux_sym_keyword_statement_token3] = ACTIONS(6806), + [aux_sym_include_statement_token1] = ACTIONS(6806), + [aux_sym_data_statement_token1] = ACTIONS(6806), + [aux_sym__inline_if_statement_token1] = ACTIONS(6806), + [aux_sym_end_if_statement_token1] = ACTIONS(6806), + [aux_sym_elseif_clause_token2] = ACTIONS(6806), + [aux_sym_select_case_statement_token1] = ACTIONS(6806), + [aux_sym_block_construct_token1] = ACTIONS(6806), + [aux_sym_format_statement_token1] = ACTIONS(6806), + [aux_sym_inquire_statement_token1] = ACTIONS(6806), + [aux_sym_enum_statement_token1] = ACTIONS(6806), + [aux_sym_entry_statement_token1] = ACTIONS(6806), + [aux_sym_null_literal_token1] = ACTIONS(6806), + [aux_sym_coarray_statement_token1] = ACTIONS(6806), + [aux_sym_coarray_statement_token2] = ACTIONS(6806), + [aux_sym_coarray_statement_token6] = ACTIONS(6806), + [aux_sym_coarray_statement_token8] = ACTIONS(6806), + [aux_sym_coarray_statement_token11] = ACTIONS(6806), + [aux_sym_coarray_statement_token12] = ACTIONS(6806), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6806), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6806), + [aux_sym_identifier_token1] = ACTIONS(6806), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), + [sym__integer_literal] = ACTIONS(6810), }, - [2858] = { - [aux_sym_preproc_include_token1] = ACTIONS(4335), - [aux_sym_preproc_def_token1] = ACTIONS(4335), - [aux_sym_preproc_if_token1] = ACTIONS(4335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), - [sym_preproc_directive] = ACTIONS(4335), + [2800] = { + [aux_sym_preproc_include_token1] = ACTIONS(6870), + [aux_sym_preproc_def_token1] = ACTIONS(6870), + [aux_sym_preproc_if_token1] = ACTIONS(6870), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6870), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6870), + [sym_preproc_directive] = ACTIONS(6870), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4335), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4335), - [aux_sym_interface_statement_token1] = ACTIONS(4335), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4335), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4335), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4335), - [aux_sym_language_binding_token1] = ACTIONS(4335), - [aux_sym_procedure_attributes_token1] = ACTIONS(4335), - [aux_sym_procedure_attributes_token3] = ACTIONS(4335), - [aux_sym_contains_statement_token1] = ACTIONS(4335), - [aux_sym_use_statement_token1] = ACTIONS(4335), - [aux_sym_use_statement_token2] = ACTIONS(4335), - [aux_sym_implicit_statement_token1] = ACTIONS(4335), - [aux_sym_implicit_statement_token3] = ACTIONS(4335), - [aux_sym_implicit_statement_token4] = ACTIONS(4335), - [aux_sym_save_statement_token1] = ACTIONS(4335), - [aux_sym_private_statement_token1] = ACTIONS(4335), - [aux_sym_public_statement_token1] = ACTIONS(4335), - [aux_sym_namelist_statement_token1] = ACTIONS(4335), - [aux_sym_common_statement_token1] = ACTIONS(4335), - [aux_sym_import_statement_token1] = ACTIONS(4335), - [aux_sym_derived_type_definition_token1] = ACTIONS(4335), - [aux_sym_abstract_specifier_token1] = ACTIONS(4335), - [aux_sym_procedure_attribute_token6] = ACTIONS(4335), - [aux_sym_variable_attributes_token1] = ACTIONS(4335), - [aux_sym_variable_attributes_token2] = ACTIONS(4335), - [aux_sym_variable_attributes_token3] = ACTIONS(4335), - [aux_sym_variable_attributes_token4] = ACTIONS(4335), - [aux_sym_variable_attributes_token5] = ACTIONS(4335), - [aux_sym__intrinsic_type_token1] = ACTIONS(4335), - [aux_sym__intrinsic_type_token2] = ACTIONS(4335), - [aux_sym__intrinsic_type_token3] = ACTIONS(4335), - [aux_sym__intrinsic_type_token4] = ACTIONS(4335), - [aux_sym__intrinsic_type_token6] = ACTIONS(4335), - [aux_sym__intrinsic_type_token7] = ACTIONS(4335), - [aux_sym__intrinsic_type_token8] = ACTIONS(4335), - [aux_sym__intrinsic_type_token9] = ACTIONS(4335), - [aux_sym__intrinsic_type_token10] = ACTIONS(4335), - [aux_sym_derived_type_token1] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4335), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4335), - [aux_sym_type_qualifier_token1] = ACTIONS(4335), - [aux_sym_type_qualifier_token2] = ACTIONS(4335), - [aux_sym_equivalence_statement_token1] = ACTIONS(4335), - [aux_sym_stop_statement_token1] = ACTIONS(4335), - [aux_sym_stop_statement_token2] = ACTIONS(4335), - [aux_sym_keyword_statement_token2] = ACTIONS(4335), - [aux_sym_keyword_statement_token3] = ACTIONS(4335), - [aux_sym_include_statement_token1] = ACTIONS(4335), - [aux_sym_data_statement_token1] = ACTIONS(4335), - [aux_sym__inline_if_statement_token1] = ACTIONS(4335), - [aux_sym_end_if_statement_token1] = ACTIONS(4335), - [aux_sym_elseif_clause_token2] = ACTIONS(4335), - [aux_sym_select_case_statement_token1] = ACTIONS(4335), - [aux_sym_block_construct_token1] = ACTIONS(4335), - [aux_sym_format_statement_token1] = ACTIONS(4335), - [aux_sym_inquire_statement_token1] = ACTIONS(4335), - [aux_sym_enum_statement_token1] = ACTIONS(4335), - [aux_sym_entry_statement_token1] = ACTIONS(4335), - [aux_sym_null_literal_token1] = ACTIONS(4335), - [aux_sym_coarray_statement_token1] = ACTIONS(4335), - [aux_sym_coarray_statement_token2] = ACTIONS(4335), - [aux_sym_coarray_statement_token6] = ACTIONS(4335), - [aux_sym_coarray_statement_token8] = ACTIONS(4335), - [aux_sym_coarray_statement_token11] = ACTIONS(4335), - [aux_sym_coarray_statement_token12] = ACTIONS(4335), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4335), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4335), - [aux_sym_identifier_token1] = ACTIONS(4335), + [aux_sym_end_program_statement_token1] = ACTIONS(6870), + [aux_sym_end_module_statement_token1] = ACTIONS(6870), + [aux_sym_interface_statement_token1] = ACTIONS(6870), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6870), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6870), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6870), + [aux_sym_language_binding_token1] = ACTIONS(6870), + [aux_sym_procedure_attributes_token1] = ACTIONS(6870), + [aux_sym_procedure_attributes_token3] = ACTIONS(6870), + [aux_sym_contains_statement_token1] = ACTIONS(6870), + [aux_sym_use_statement_token1] = ACTIONS(6870), + [aux_sym_use_statement_token2] = ACTIONS(6870), + [aux_sym_implicit_statement_token1] = ACTIONS(6870), + [aux_sym_implicit_statement_token3] = ACTIONS(6870), + [aux_sym_implicit_statement_token4] = ACTIONS(6870), + [aux_sym_save_statement_token1] = ACTIONS(6870), + [aux_sym_private_statement_token1] = ACTIONS(6870), + [aux_sym_public_statement_token1] = ACTIONS(6870), + [aux_sym_namelist_statement_token1] = ACTIONS(6870), + [aux_sym_common_statement_token1] = ACTIONS(6870), + [aux_sym_import_statement_token1] = ACTIONS(6870), + [aux_sym_derived_type_definition_token1] = ACTIONS(6870), + [aux_sym_abstract_specifier_token1] = ACTIONS(6870), + [aux_sym_procedure_attribute_token6] = ACTIONS(6870), + [aux_sym_variable_attributes_token1] = ACTIONS(6870), + [aux_sym_variable_attributes_token2] = ACTIONS(6870), + [aux_sym_variable_attributes_token3] = ACTIONS(6870), + [aux_sym_variable_attributes_token4] = ACTIONS(6870), + [aux_sym_variable_attributes_token5] = ACTIONS(6870), + [aux_sym__intrinsic_type_token1] = ACTIONS(6870), + [aux_sym__intrinsic_type_token2] = ACTIONS(6870), + [aux_sym__intrinsic_type_token3] = ACTIONS(6870), + [aux_sym__intrinsic_type_token4] = ACTIONS(6870), + [aux_sym__intrinsic_type_token6] = ACTIONS(6870), + [aux_sym__intrinsic_type_token7] = ACTIONS(6870), + [aux_sym__intrinsic_type_token8] = ACTIONS(6870), + [aux_sym__intrinsic_type_token9] = ACTIONS(6870), + [aux_sym__intrinsic_type_token10] = ACTIONS(6870), + [aux_sym_derived_type_token1] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6870), + [aux_sym_type_qualifier_token1] = ACTIONS(6870), + [aux_sym_type_qualifier_token2] = ACTIONS(6870), + [aux_sym_equivalence_statement_token1] = ACTIONS(6870), + [aux_sym_stop_statement_token1] = ACTIONS(6870), + [aux_sym_stop_statement_token2] = ACTIONS(6870), + [aux_sym_keyword_statement_token2] = ACTIONS(6870), + [aux_sym_keyword_statement_token3] = ACTIONS(6870), + [aux_sym_include_statement_token1] = ACTIONS(6870), + [aux_sym_data_statement_token1] = ACTIONS(6870), + [aux_sym__inline_if_statement_token1] = ACTIONS(6870), + [aux_sym_end_if_statement_token1] = ACTIONS(6870), + [aux_sym_elseif_clause_token2] = ACTIONS(6870), + [aux_sym_select_case_statement_token1] = ACTIONS(6870), + [aux_sym_block_construct_token1] = ACTIONS(6870), + [aux_sym_format_statement_token1] = ACTIONS(6870), + [aux_sym_inquire_statement_token1] = ACTIONS(6870), + [aux_sym_enum_statement_token1] = ACTIONS(6870), + [aux_sym_entry_statement_token1] = ACTIONS(6870), + [aux_sym_null_literal_token1] = ACTIONS(6870), + [aux_sym_coarray_statement_token1] = ACTIONS(6870), + [aux_sym_coarray_statement_token2] = ACTIONS(6870), + [aux_sym_coarray_statement_token6] = ACTIONS(6870), + [aux_sym_coarray_statement_token8] = ACTIONS(6870), + [aux_sym_coarray_statement_token11] = ACTIONS(6870), + [aux_sym_coarray_statement_token12] = ACTIONS(6870), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6870), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6870), + [aux_sym_identifier_token1] = ACTIONS(6870), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4337), - }, - [2859] = { - [aux_sym_preproc_include_token1] = ACTIONS(4277), - [aux_sym_preproc_def_token1] = ACTIONS(4277), - [aux_sym_preproc_if_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4277), - [sym_preproc_directive] = ACTIONS(4277), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4277), - [aux_sym_end_module_statement_token1] = ACTIONS(4277), - [aux_sym_interface_statement_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4277), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4277), - [aux_sym_language_binding_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token1] = ACTIONS(4277), - [aux_sym_procedure_attributes_token3] = ACTIONS(4277), - [aux_sym_contains_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token1] = ACTIONS(4277), - [aux_sym_use_statement_token2] = ACTIONS(4277), - [aux_sym_implicit_statement_token1] = ACTIONS(4277), - [aux_sym_implicit_statement_token3] = ACTIONS(4277), - [aux_sym_implicit_statement_token4] = ACTIONS(4277), - [aux_sym_save_statement_token1] = ACTIONS(4277), - [aux_sym_private_statement_token1] = ACTIONS(4277), - [aux_sym_public_statement_token1] = ACTIONS(4277), - [aux_sym_namelist_statement_token1] = ACTIONS(4277), - [aux_sym_common_statement_token1] = ACTIONS(4277), - [aux_sym_import_statement_token1] = ACTIONS(4277), - [aux_sym_derived_type_definition_token1] = ACTIONS(4277), - [aux_sym_abstract_specifier_token1] = ACTIONS(4277), - [aux_sym_procedure_attribute_token6] = ACTIONS(4277), - [aux_sym_variable_attributes_token1] = ACTIONS(4277), - [aux_sym_variable_attributes_token2] = ACTIONS(4277), - [aux_sym_variable_attributes_token3] = ACTIONS(4277), - [aux_sym_variable_attributes_token4] = ACTIONS(4277), - [aux_sym_variable_attributes_token5] = ACTIONS(4277), - [aux_sym__intrinsic_type_token1] = ACTIONS(4277), - [aux_sym__intrinsic_type_token2] = ACTIONS(4277), - [aux_sym__intrinsic_type_token3] = ACTIONS(4277), - [aux_sym__intrinsic_type_token4] = ACTIONS(4277), - [aux_sym__intrinsic_type_token6] = ACTIONS(4277), - [aux_sym__intrinsic_type_token7] = ACTIONS(4277), - [aux_sym__intrinsic_type_token8] = ACTIONS(4277), - [aux_sym__intrinsic_type_token9] = ACTIONS(4277), - [aux_sym__intrinsic_type_token10] = ACTIONS(4277), - [aux_sym_derived_type_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4277), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4277), - [aux_sym_type_qualifier_token1] = ACTIONS(4277), - [aux_sym_type_qualifier_token2] = ACTIONS(4277), - [aux_sym_equivalence_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token1] = ACTIONS(4277), - [aux_sym_stop_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token2] = ACTIONS(4277), - [aux_sym_keyword_statement_token3] = ACTIONS(4277), - [aux_sym_include_statement_token1] = ACTIONS(4277), - [aux_sym_data_statement_token1] = ACTIONS(4277), - [aux_sym__inline_if_statement_token1] = ACTIONS(4277), - [aux_sym_end_if_statement_token1] = ACTIONS(4277), - [aux_sym_elseif_clause_token2] = ACTIONS(4277), - [aux_sym_select_case_statement_token1] = ACTIONS(4277), - [aux_sym_block_construct_token1] = ACTIONS(4277), - [aux_sym_format_statement_token1] = ACTIONS(4277), - [aux_sym_inquire_statement_token1] = ACTIONS(4277), - [aux_sym_enum_statement_token1] = ACTIONS(4277), - [aux_sym_entry_statement_token1] = ACTIONS(4277), - [aux_sym_null_literal_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_statement_token2] = ACTIONS(4277), - [aux_sym_coarray_statement_token6] = ACTIONS(4277), - [aux_sym_coarray_statement_token8] = ACTIONS(4277), - [aux_sym_coarray_statement_token11] = ACTIONS(4277), - [aux_sym_coarray_statement_token12] = ACTIONS(4277), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4277), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4277), - [aux_sym_identifier_token1] = ACTIONS(4277), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4279), - }, - [2860] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), + [sym__integer_literal] = ACTIONS(6872), }, - [2861] = { - [aux_sym_preproc_include_token1] = ACTIONS(6906), - [aux_sym_preproc_def_token1] = ACTIONS(6906), - [aux_sym_preproc_if_token1] = ACTIONS(6906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6906), - [sym_preproc_directive] = ACTIONS(6906), + [2801] = { + [aux_sym_preproc_include_token1] = ACTIONS(6874), + [aux_sym_preproc_def_token1] = ACTIONS(6874), + [aux_sym_preproc_if_token1] = ACTIONS(6874), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6874), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6874), + [sym_preproc_directive] = ACTIONS(6874), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6906), - [aux_sym_end_module_statement_token1] = ACTIONS(6906), - [aux_sym_interface_statement_token1] = ACTIONS(6906), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6906), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6906), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6906), - [aux_sym_language_binding_token1] = ACTIONS(6906), - [aux_sym_procedure_attributes_token1] = ACTIONS(6906), - [aux_sym_procedure_attributes_token3] = ACTIONS(6906), - [aux_sym_contains_statement_token1] = ACTIONS(6906), - [aux_sym_use_statement_token1] = ACTIONS(6906), - [aux_sym_use_statement_token2] = ACTIONS(6906), - [aux_sym_implicit_statement_token1] = ACTIONS(6906), - [aux_sym_implicit_statement_token3] = ACTIONS(6906), - [aux_sym_implicit_statement_token4] = ACTIONS(6906), - [aux_sym_save_statement_token1] = ACTIONS(6906), - [aux_sym_private_statement_token1] = ACTIONS(6906), - [aux_sym_public_statement_token1] = ACTIONS(6906), - [aux_sym_namelist_statement_token1] = ACTIONS(6906), - [aux_sym_common_statement_token1] = ACTIONS(6906), - [aux_sym_import_statement_token1] = ACTIONS(6906), - [aux_sym_derived_type_definition_token1] = ACTIONS(6906), - [aux_sym_abstract_specifier_token1] = ACTIONS(6906), - [aux_sym_procedure_attribute_token6] = ACTIONS(6906), - [aux_sym_variable_attributes_token1] = ACTIONS(6906), - [aux_sym_variable_attributes_token2] = ACTIONS(6906), - [aux_sym_variable_attributes_token3] = ACTIONS(6906), - [aux_sym_variable_attributes_token4] = ACTIONS(6906), - [aux_sym_variable_attributes_token5] = ACTIONS(6906), - [aux_sym__intrinsic_type_token1] = ACTIONS(6906), - [aux_sym__intrinsic_type_token2] = ACTIONS(6906), - [aux_sym__intrinsic_type_token3] = ACTIONS(6906), - [aux_sym__intrinsic_type_token4] = ACTIONS(6906), - [aux_sym__intrinsic_type_token6] = ACTIONS(6906), - [aux_sym__intrinsic_type_token7] = ACTIONS(6906), - [aux_sym__intrinsic_type_token8] = ACTIONS(6906), - [aux_sym__intrinsic_type_token9] = ACTIONS(6906), - [aux_sym__intrinsic_type_token10] = ACTIONS(6906), - [aux_sym_derived_type_token1] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6906), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6906), - [aux_sym_type_qualifier_token1] = ACTIONS(6906), - [aux_sym_type_qualifier_token2] = ACTIONS(6906), - [aux_sym_equivalence_statement_token1] = ACTIONS(6906), - [aux_sym_stop_statement_token1] = ACTIONS(6906), - [aux_sym_stop_statement_token2] = ACTIONS(6906), - [aux_sym_keyword_statement_token2] = ACTIONS(6906), - [aux_sym_keyword_statement_token3] = ACTIONS(6906), - [aux_sym_include_statement_token1] = ACTIONS(6906), - [aux_sym_data_statement_token1] = ACTIONS(6906), - [aux_sym__inline_if_statement_token1] = ACTIONS(6906), - [aux_sym_end_if_statement_token1] = ACTIONS(6906), - [aux_sym_elseif_clause_token2] = ACTIONS(6906), - [aux_sym_select_case_statement_token1] = ACTIONS(6906), - [aux_sym_block_construct_token1] = ACTIONS(6906), - [aux_sym_format_statement_token1] = ACTIONS(6906), - [aux_sym_inquire_statement_token1] = ACTIONS(6906), - [aux_sym_enum_statement_token1] = ACTIONS(6906), - [aux_sym_entry_statement_token1] = ACTIONS(6906), - [aux_sym_null_literal_token1] = ACTIONS(6906), - [aux_sym_coarray_statement_token1] = ACTIONS(6906), - [aux_sym_coarray_statement_token2] = ACTIONS(6906), - [aux_sym_coarray_statement_token6] = ACTIONS(6906), - [aux_sym_coarray_statement_token8] = ACTIONS(6906), - [aux_sym_coarray_statement_token11] = ACTIONS(6906), - [aux_sym_coarray_statement_token12] = ACTIONS(6906), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6906), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6906), - [aux_sym_identifier_token1] = ACTIONS(6906), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6908), - }, - [2862] = { - [aux_sym_preproc_include_token1] = ACTIONS(4323), - [aux_sym_preproc_def_token1] = ACTIONS(4323), - [aux_sym_preproc_if_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4323), - [sym_preproc_directive] = ACTIONS(4323), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_end_submodule_statement_token1] = ACTIONS(4323), - [aux_sym_interface_statement_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4323), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4323), - [aux_sym_language_binding_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token1] = ACTIONS(4323), - [aux_sym_procedure_attributes_token3] = ACTIONS(4323), - [aux_sym_contains_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token1] = ACTIONS(4323), - [aux_sym_use_statement_token2] = ACTIONS(4323), - [aux_sym_implicit_statement_token1] = ACTIONS(4323), - [aux_sym_implicit_statement_token3] = ACTIONS(4323), - [aux_sym_implicit_statement_token4] = ACTIONS(4323), - [aux_sym_save_statement_token1] = ACTIONS(4323), - [aux_sym_private_statement_token1] = ACTIONS(4323), - [aux_sym_public_statement_token1] = ACTIONS(4323), - [aux_sym_namelist_statement_token1] = ACTIONS(4323), - [aux_sym_common_statement_token1] = ACTIONS(4323), - [aux_sym_import_statement_token1] = ACTIONS(4323), - [aux_sym_derived_type_definition_token1] = ACTIONS(4323), - [aux_sym_abstract_specifier_token1] = ACTIONS(4323), - [aux_sym_procedure_attribute_token6] = ACTIONS(4323), - [aux_sym_variable_attributes_token1] = ACTIONS(4323), - [aux_sym_variable_attributes_token2] = ACTIONS(4323), - [aux_sym_variable_attributes_token3] = ACTIONS(4323), - [aux_sym_variable_attributes_token4] = ACTIONS(4323), - [aux_sym_variable_attributes_token5] = ACTIONS(4323), - [aux_sym__intrinsic_type_token1] = ACTIONS(4323), - [aux_sym__intrinsic_type_token2] = ACTIONS(4323), - [aux_sym__intrinsic_type_token3] = ACTIONS(4323), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4323), - [aux_sym__intrinsic_type_token7] = ACTIONS(4323), - [aux_sym__intrinsic_type_token8] = ACTIONS(4323), - [aux_sym__intrinsic_type_token9] = ACTIONS(4323), - [aux_sym__intrinsic_type_token10] = ACTIONS(4323), - [aux_sym_derived_type_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4323), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4323), - [aux_sym_type_qualifier_token1] = ACTIONS(4323), - [aux_sym_type_qualifier_token2] = ACTIONS(4323), - [aux_sym_equivalence_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token1] = ACTIONS(4323), - [aux_sym_stop_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token2] = ACTIONS(4323), - [aux_sym_keyword_statement_token3] = ACTIONS(4323), - [aux_sym_include_statement_token1] = ACTIONS(4323), - [aux_sym_data_statement_token1] = ACTIONS(4323), - [aux_sym__inline_if_statement_token1] = ACTIONS(4323), - [aux_sym_end_if_statement_token1] = ACTIONS(4323), - [aux_sym_elseif_clause_token2] = ACTIONS(4323), - [aux_sym_select_case_statement_token1] = ACTIONS(4323), - [aux_sym_block_construct_token1] = ACTIONS(4323), - [aux_sym_format_statement_token1] = ACTIONS(4323), - [aux_sym_inquire_statement_token1] = ACTIONS(4323), - [aux_sym_enum_statement_token1] = ACTIONS(4323), - [aux_sym_entry_statement_token1] = ACTIONS(4323), - [aux_sym_null_literal_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_statement_token2] = ACTIONS(4323), - [aux_sym_coarray_statement_token6] = ACTIONS(4323), - [aux_sym_coarray_statement_token8] = ACTIONS(4323), - [aux_sym_coarray_statement_token11] = ACTIONS(4323), - [aux_sym_coarray_statement_token12] = ACTIONS(4323), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4323), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4323), - [aux_sym_identifier_token1] = ACTIONS(4323), + [aux_sym_end_program_statement_token1] = ACTIONS(6874), + [aux_sym_end_module_statement_token1] = ACTIONS(6874), + [aux_sym_interface_statement_token1] = ACTIONS(6874), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6874), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6874), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6874), + [aux_sym_language_binding_token1] = ACTIONS(6874), + [aux_sym_procedure_attributes_token1] = ACTIONS(6874), + [aux_sym_procedure_attributes_token3] = ACTIONS(6874), + [aux_sym_contains_statement_token1] = ACTIONS(6874), + [aux_sym_use_statement_token1] = ACTIONS(6874), + [aux_sym_use_statement_token2] = ACTIONS(6874), + [aux_sym_implicit_statement_token1] = ACTIONS(6874), + [aux_sym_implicit_statement_token3] = ACTIONS(6874), + [aux_sym_implicit_statement_token4] = ACTIONS(6874), + [aux_sym_save_statement_token1] = ACTIONS(6874), + [aux_sym_private_statement_token1] = ACTIONS(6874), + [aux_sym_public_statement_token1] = ACTIONS(6874), + [aux_sym_namelist_statement_token1] = ACTIONS(6874), + [aux_sym_common_statement_token1] = ACTIONS(6874), + [aux_sym_import_statement_token1] = ACTIONS(6874), + [aux_sym_derived_type_definition_token1] = ACTIONS(6874), + [aux_sym_abstract_specifier_token1] = ACTIONS(6874), + [aux_sym_procedure_attribute_token6] = ACTIONS(6874), + [aux_sym_variable_attributes_token1] = ACTIONS(6874), + [aux_sym_variable_attributes_token2] = ACTIONS(6874), + [aux_sym_variable_attributes_token3] = ACTIONS(6874), + [aux_sym_variable_attributes_token4] = ACTIONS(6874), + [aux_sym_variable_attributes_token5] = ACTIONS(6874), + [aux_sym__intrinsic_type_token1] = ACTIONS(6874), + [aux_sym__intrinsic_type_token2] = ACTIONS(6874), + [aux_sym__intrinsic_type_token3] = ACTIONS(6874), + [aux_sym__intrinsic_type_token4] = ACTIONS(6874), + [aux_sym__intrinsic_type_token6] = ACTIONS(6874), + [aux_sym__intrinsic_type_token7] = ACTIONS(6874), + [aux_sym__intrinsic_type_token8] = ACTIONS(6874), + [aux_sym__intrinsic_type_token9] = ACTIONS(6874), + [aux_sym__intrinsic_type_token10] = ACTIONS(6874), + [aux_sym_derived_type_token1] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6874), + [aux_sym_type_qualifier_token1] = ACTIONS(6874), + [aux_sym_type_qualifier_token2] = ACTIONS(6874), + [aux_sym_equivalence_statement_token1] = ACTIONS(6874), + [aux_sym_stop_statement_token1] = ACTIONS(6874), + [aux_sym_stop_statement_token2] = ACTIONS(6874), + [aux_sym_keyword_statement_token2] = ACTIONS(6874), + [aux_sym_keyword_statement_token3] = ACTIONS(6874), + [aux_sym_include_statement_token1] = ACTIONS(6874), + [aux_sym_data_statement_token1] = ACTIONS(6874), + [aux_sym__inline_if_statement_token1] = ACTIONS(6874), + [aux_sym_end_if_statement_token1] = ACTIONS(6874), + [aux_sym_elseif_clause_token2] = ACTIONS(6874), + [aux_sym_select_case_statement_token1] = ACTIONS(6874), + [aux_sym_block_construct_token1] = ACTIONS(6874), + [aux_sym_format_statement_token1] = ACTIONS(6874), + [aux_sym_inquire_statement_token1] = ACTIONS(6874), + [aux_sym_enum_statement_token1] = ACTIONS(6874), + [aux_sym_entry_statement_token1] = ACTIONS(6874), + [aux_sym_null_literal_token1] = ACTIONS(6874), + [aux_sym_coarray_statement_token1] = ACTIONS(6874), + [aux_sym_coarray_statement_token2] = ACTIONS(6874), + [aux_sym_coarray_statement_token6] = ACTIONS(6874), + [aux_sym_coarray_statement_token8] = ACTIONS(6874), + [aux_sym_coarray_statement_token11] = ACTIONS(6874), + [aux_sym_coarray_statement_token12] = ACTIONS(6874), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6874), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6874), + [aux_sym_identifier_token1] = ACTIONS(6874), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4325), + [sym__integer_literal] = ACTIONS(6876), }, - [2863] = { - [aux_sym_preproc_include_token1] = ACTIONS(6910), - [aux_sym_preproc_def_token1] = ACTIONS(6910), - [aux_sym_preproc_if_token1] = ACTIONS(6910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6910), - [sym_preproc_directive] = ACTIONS(6910), + [2802] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6910), - [aux_sym_end_module_statement_token1] = ACTIONS(6910), - [aux_sym_interface_statement_token1] = ACTIONS(6910), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6910), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6910), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6910), - [aux_sym_language_binding_token1] = ACTIONS(6910), - [aux_sym_procedure_attributes_token1] = ACTIONS(6910), - [aux_sym_procedure_attributes_token3] = ACTIONS(6910), - [aux_sym_contains_statement_token1] = ACTIONS(6910), - [aux_sym_use_statement_token1] = ACTIONS(6910), - [aux_sym_use_statement_token2] = ACTIONS(6910), - [aux_sym_implicit_statement_token1] = ACTIONS(6910), - [aux_sym_implicit_statement_token3] = ACTIONS(6910), - [aux_sym_implicit_statement_token4] = ACTIONS(6910), - [aux_sym_save_statement_token1] = ACTIONS(6910), - [aux_sym_private_statement_token1] = ACTIONS(6910), - [aux_sym_public_statement_token1] = ACTIONS(6910), - [aux_sym_namelist_statement_token1] = ACTIONS(6910), - [aux_sym_common_statement_token1] = ACTIONS(6910), - [aux_sym_import_statement_token1] = ACTIONS(6910), - [aux_sym_derived_type_definition_token1] = ACTIONS(6910), - [aux_sym_abstract_specifier_token1] = ACTIONS(6910), - [aux_sym_procedure_attribute_token6] = ACTIONS(6910), - [aux_sym_variable_attributes_token1] = ACTIONS(6910), - [aux_sym_variable_attributes_token2] = ACTIONS(6910), - [aux_sym_variable_attributes_token3] = ACTIONS(6910), - [aux_sym_variable_attributes_token4] = ACTIONS(6910), - [aux_sym_variable_attributes_token5] = ACTIONS(6910), - [aux_sym__intrinsic_type_token1] = ACTIONS(6910), - [aux_sym__intrinsic_type_token2] = ACTIONS(6910), - [aux_sym__intrinsic_type_token3] = ACTIONS(6910), - [aux_sym__intrinsic_type_token4] = ACTIONS(6910), - [aux_sym__intrinsic_type_token6] = ACTIONS(6910), - [aux_sym__intrinsic_type_token7] = ACTIONS(6910), - [aux_sym__intrinsic_type_token8] = ACTIONS(6910), - [aux_sym__intrinsic_type_token9] = ACTIONS(6910), - [aux_sym__intrinsic_type_token10] = ACTIONS(6910), - [aux_sym_derived_type_token1] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6910), - [aux_sym_type_qualifier_token1] = ACTIONS(6910), - [aux_sym_type_qualifier_token2] = ACTIONS(6910), - [aux_sym_equivalence_statement_token1] = ACTIONS(6910), - [aux_sym_stop_statement_token1] = ACTIONS(6910), - [aux_sym_stop_statement_token2] = ACTIONS(6910), - [aux_sym_keyword_statement_token2] = ACTIONS(6910), - [aux_sym_keyword_statement_token3] = ACTIONS(6910), - [aux_sym_include_statement_token1] = ACTIONS(6910), - [aux_sym_data_statement_token1] = ACTIONS(6910), - [aux_sym__inline_if_statement_token1] = ACTIONS(6910), - [aux_sym_end_if_statement_token1] = ACTIONS(6910), - [aux_sym_elseif_clause_token2] = ACTIONS(6910), - [aux_sym_select_case_statement_token1] = ACTIONS(6910), - [aux_sym_block_construct_token1] = ACTIONS(6910), - [aux_sym_format_statement_token1] = ACTIONS(6910), - [aux_sym_inquire_statement_token1] = ACTIONS(6910), - [aux_sym_enum_statement_token1] = ACTIONS(6910), - [aux_sym_entry_statement_token1] = ACTIONS(6910), - [aux_sym_null_literal_token1] = ACTIONS(6910), - [aux_sym_coarray_statement_token1] = ACTIONS(6910), - [aux_sym_coarray_statement_token2] = ACTIONS(6910), - [aux_sym_coarray_statement_token6] = ACTIONS(6910), - [aux_sym_coarray_statement_token8] = ACTIONS(6910), - [aux_sym_coarray_statement_token11] = ACTIONS(6910), - [aux_sym_coarray_statement_token12] = ACTIONS(6910), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6910), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6910), - [aux_sym_identifier_token1] = ACTIONS(6910), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_end_module_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6912), - }, - [2864] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5025), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - }, - [2865] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - }, - [2866] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), + [sym__integer_literal] = ACTIONS(4617), }, - [2867] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5033), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_end_module_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), + [2803] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_end_module_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), }, - [2868] = { - [sym_data_set] = STATE(6149), - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(4660), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4660), - [sym_implied_do_loop_expression] = STATE(4660), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4660), + [2804] = { + [sym_triplet_spec] = STATE(7102), + [sym__expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(5071), + [sym_relational_expression] = STATE(5071), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5073), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -427945,10 +422121,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -427965,12 +422141,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -427993,305 +422169,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2869] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), + [2805] = { + [aux_sym_preproc_include_token1] = ACTIONS(6878), + [aux_sym_preproc_def_token1] = ACTIONS(6878), + [aux_sym_preproc_if_token1] = ACTIONS(6878), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6878), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6878), + [sym_preproc_directive] = ACTIONS(6878), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_end_module_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), + [aux_sym_end_program_statement_token1] = ACTIONS(6878), + [aux_sym_end_module_statement_token1] = ACTIONS(6878), + [aux_sym_interface_statement_token1] = ACTIONS(6878), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6878), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6878), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6878), + [aux_sym_language_binding_token1] = ACTIONS(6878), + [aux_sym_procedure_attributes_token1] = ACTIONS(6878), + [aux_sym_procedure_attributes_token3] = ACTIONS(6878), + [aux_sym_contains_statement_token1] = ACTIONS(6878), + [aux_sym_use_statement_token1] = ACTIONS(6878), + [aux_sym_use_statement_token2] = ACTIONS(6878), + [aux_sym_implicit_statement_token1] = ACTIONS(6878), + [aux_sym_implicit_statement_token3] = ACTIONS(6878), + [aux_sym_implicit_statement_token4] = ACTIONS(6878), + [aux_sym_save_statement_token1] = ACTIONS(6878), + [aux_sym_private_statement_token1] = ACTIONS(6878), + [aux_sym_public_statement_token1] = ACTIONS(6878), + [aux_sym_namelist_statement_token1] = ACTIONS(6878), + [aux_sym_common_statement_token1] = ACTIONS(6878), + [aux_sym_import_statement_token1] = ACTIONS(6878), + [aux_sym_derived_type_definition_token1] = ACTIONS(6878), + [aux_sym_abstract_specifier_token1] = ACTIONS(6878), + [aux_sym_procedure_attribute_token6] = ACTIONS(6878), + [aux_sym_variable_attributes_token1] = ACTIONS(6878), + [aux_sym_variable_attributes_token2] = ACTIONS(6878), + [aux_sym_variable_attributes_token3] = ACTIONS(6878), + [aux_sym_variable_attributes_token4] = ACTIONS(6878), + [aux_sym_variable_attributes_token5] = ACTIONS(6878), + [aux_sym__intrinsic_type_token1] = ACTIONS(6878), + [aux_sym__intrinsic_type_token2] = ACTIONS(6878), + [aux_sym__intrinsic_type_token3] = ACTIONS(6878), + [aux_sym__intrinsic_type_token4] = ACTIONS(6878), + [aux_sym__intrinsic_type_token6] = ACTIONS(6878), + [aux_sym__intrinsic_type_token7] = ACTIONS(6878), + [aux_sym__intrinsic_type_token8] = ACTIONS(6878), + [aux_sym__intrinsic_type_token9] = ACTIONS(6878), + [aux_sym__intrinsic_type_token10] = ACTIONS(6878), + [aux_sym_derived_type_token1] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6878), + [aux_sym_type_qualifier_token1] = ACTIONS(6878), + [aux_sym_type_qualifier_token2] = ACTIONS(6878), + [aux_sym_equivalence_statement_token1] = ACTIONS(6878), + [aux_sym_stop_statement_token1] = ACTIONS(6878), + [aux_sym_stop_statement_token2] = ACTIONS(6878), + [aux_sym_keyword_statement_token2] = ACTIONS(6878), + [aux_sym_keyword_statement_token3] = ACTIONS(6878), + [aux_sym_include_statement_token1] = ACTIONS(6878), + [aux_sym_data_statement_token1] = ACTIONS(6878), + [aux_sym__inline_if_statement_token1] = ACTIONS(6878), + [aux_sym_end_if_statement_token1] = ACTIONS(6878), + [aux_sym_elseif_clause_token2] = ACTIONS(6878), + [aux_sym_select_case_statement_token1] = ACTIONS(6878), + [aux_sym_block_construct_token1] = ACTIONS(6878), + [aux_sym_format_statement_token1] = ACTIONS(6878), + [aux_sym_inquire_statement_token1] = ACTIONS(6878), + [aux_sym_enum_statement_token1] = ACTIONS(6878), + [aux_sym_entry_statement_token1] = ACTIONS(6878), + [aux_sym_null_literal_token1] = ACTIONS(6878), + [aux_sym_coarray_statement_token1] = ACTIONS(6878), + [aux_sym_coarray_statement_token2] = ACTIONS(6878), + [aux_sym_coarray_statement_token6] = ACTIONS(6878), + [aux_sym_coarray_statement_token8] = ACTIONS(6878), + [aux_sym_coarray_statement_token11] = ACTIONS(6878), + [aux_sym_coarray_statement_token12] = ACTIONS(6878), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6878), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6878), + [aux_sym_identifier_token1] = ACTIONS(6878), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), + [sym__integer_literal] = ACTIONS(6880), }, - [2870] = { - [sym_input_item_list] = STATE(7416), - [sym__expression] = STATE(4320), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2806] = { + [aux_sym_preproc_include_token1] = ACTIONS(6870), + [aux_sym_preproc_def_token1] = ACTIONS(6870), + [aux_sym_preproc_if_token1] = ACTIONS(6870), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6870), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6870), + [sym_preproc_directive] = ACTIONS(6870), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(6870), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6870), + [aux_sym_interface_statement_token1] = ACTIONS(6870), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6870), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6870), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6870), + [aux_sym_language_binding_token1] = ACTIONS(6870), + [aux_sym_procedure_attributes_token1] = ACTIONS(6870), + [aux_sym_procedure_attributes_token3] = ACTIONS(6870), + [aux_sym_contains_statement_token1] = ACTIONS(6870), + [aux_sym_use_statement_token1] = ACTIONS(6870), + [aux_sym_use_statement_token2] = ACTIONS(6870), + [aux_sym_implicit_statement_token1] = ACTIONS(6870), + [aux_sym_implicit_statement_token3] = ACTIONS(6870), + [aux_sym_implicit_statement_token4] = ACTIONS(6870), + [aux_sym_save_statement_token1] = ACTIONS(6870), + [aux_sym_private_statement_token1] = ACTIONS(6870), + [aux_sym_public_statement_token1] = ACTIONS(6870), + [aux_sym_namelist_statement_token1] = ACTIONS(6870), + [aux_sym_common_statement_token1] = ACTIONS(6870), + [aux_sym_import_statement_token1] = ACTIONS(6870), + [aux_sym_derived_type_definition_token1] = ACTIONS(6870), + [aux_sym_abstract_specifier_token1] = ACTIONS(6870), + [aux_sym_procedure_attribute_token6] = ACTIONS(6870), + [aux_sym_variable_attributes_token1] = ACTIONS(6870), + [aux_sym_variable_attributes_token2] = ACTIONS(6870), + [aux_sym_variable_attributes_token3] = ACTIONS(6870), + [aux_sym_variable_attributes_token4] = ACTIONS(6870), + [aux_sym_variable_attributes_token5] = ACTIONS(6870), + [aux_sym__intrinsic_type_token1] = ACTIONS(6870), + [aux_sym__intrinsic_type_token2] = ACTIONS(6870), + [aux_sym__intrinsic_type_token3] = ACTIONS(6870), + [aux_sym__intrinsic_type_token4] = ACTIONS(6870), + [aux_sym__intrinsic_type_token6] = ACTIONS(6870), + [aux_sym__intrinsic_type_token7] = ACTIONS(6870), + [aux_sym__intrinsic_type_token8] = ACTIONS(6870), + [aux_sym__intrinsic_type_token9] = ACTIONS(6870), + [aux_sym__intrinsic_type_token10] = ACTIONS(6870), + [aux_sym_derived_type_token1] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6870), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6870), + [aux_sym_type_qualifier_token1] = ACTIONS(6870), + [aux_sym_type_qualifier_token2] = ACTIONS(6870), + [aux_sym_equivalence_statement_token1] = ACTIONS(6870), + [aux_sym_stop_statement_token1] = ACTIONS(6870), + [aux_sym_stop_statement_token2] = ACTIONS(6870), + [aux_sym_keyword_statement_token2] = ACTIONS(6870), + [aux_sym_keyword_statement_token3] = ACTIONS(6870), + [aux_sym_include_statement_token1] = ACTIONS(6870), + [aux_sym_data_statement_token1] = ACTIONS(6870), + [aux_sym__inline_if_statement_token1] = ACTIONS(6870), + [aux_sym_end_if_statement_token1] = ACTIONS(6870), + [aux_sym_elseif_clause_token2] = ACTIONS(6870), + [aux_sym_select_case_statement_token1] = ACTIONS(6870), + [aux_sym_block_construct_token1] = ACTIONS(6870), + [aux_sym_format_statement_token1] = ACTIONS(6870), + [aux_sym_inquire_statement_token1] = ACTIONS(6870), + [aux_sym_enum_statement_token1] = ACTIONS(6870), + [aux_sym_entry_statement_token1] = ACTIONS(6870), + [aux_sym_null_literal_token1] = ACTIONS(6870), + [aux_sym_coarray_statement_token1] = ACTIONS(6870), + [aux_sym_coarray_statement_token2] = ACTIONS(6870), + [aux_sym_coarray_statement_token6] = ACTIONS(6870), + [aux_sym_coarray_statement_token8] = ACTIONS(6870), + [aux_sym_coarray_statement_token11] = ACTIONS(6870), + [aux_sym_coarray_statement_token12] = ACTIONS(6870), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6870), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6870), + [aux_sym_identifier_token1] = ACTIONS(6870), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [2871] = { - [aux_sym_preproc_include_token1] = ACTIONS(6800), - [aux_sym_preproc_def_token1] = ACTIONS(6800), - [aux_sym_preproc_if_token1] = ACTIONS(6800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6800), - [sym_preproc_directive] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6800), - [aux_sym_end_module_statement_token1] = ACTIONS(6800), - [aux_sym_interface_statement_token1] = ACTIONS(6800), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6800), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6800), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6800), - [aux_sym_language_binding_token1] = ACTIONS(6800), - [aux_sym_procedure_attributes_token1] = ACTIONS(6800), - [aux_sym_procedure_attributes_token3] = ACTIONS(6800), - [aux_sym_contains_statement_token1] = ACTIONS(6800), - [aux_sym_use_statement_token1] = ACTIONS(6800), - [aux_sym_use_statement_token2] = ACTIONS(6800), - [aux_sym_implicit_statement_token1] = ACTIONS(6800), - [aux_sym_implicit_statement_token3] = ACTIONS(6800), - [aux_sym_implicit_statement_token4] = ACTIONS(6800), - [aux_sym_save_statement_token1] = ACTIONS(6800), - [aux_sym_private_statement_token1] = ACTIONS(6800), - [aux_sym_public_statement_token1] = ACTIONS(6800), - [aux_sym_namelist_statement_token1] = ACTIONS(6800), - [aux_sym_common_statement_token1] = ACTIONS(6800), - [aux_sym_import_statement_token1] = ACTIONS(6800), - [aux_sym_derived_type_definition_token1] = ACTIONS(6800), - [aux_sym_abstract_specifier_token1] = ACTIONS(6800), - [aux_sym_procedure_attribute_token6] = ACTIONS(6800), - [aux_sym_variable_attributes_token1] = ACTIONS(6800), - [aux_sym_variable_attributes_token2] = ACTIONS(6800), - [aux_sym_variable_attributes_token3] = ACTIONS(6800), - [aux_sym_variable_attributes_token4] = ACTIONS(6800), - [aux_sym_variable_attributes_token5] = ACTIONS(6800), - [aux_sym__intrinsic_type_token1] = ACTIONS(6800), - [aux_sym__intrinsic_type_token2] = ACTIONS(6800), - [aux_sym__intrinsic_type_token3] = ACTIONS(6800), - [aux_sym__intrinsic_type_token4] = ACTIONS(6800), - [aux_sym__intrinsic_type_token6] = ACTIONS(6800), - [aux_sym__intrinsic_type_token7] = ACTIONS(6800), - [aux_sym__intrinsic_type_token8] = ACTIONS(6800), - [aux_sym__intrinsic_type_token9] = ACTIONS(6800), - [aux_sym__intrinsic_type_token10] = ACTIONS(6800), - [aux_sym_derived_type_token1] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6800), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6800), - [aux_sym_type_qualifier_token1] = ACTIONS(6800), - [aux_sym_type_qualifier_token2] = ACTIONS(6800), - [aux_sym_equivalence_statement_token1] = ACTIONS(6800), - [aux_sym_stop_statement_token1] = ACTIONS(6800), - [aux_sym_stop_statement_token2] = ACTIONS(6800), - [aux_sym_keyword_statement_token2] = ACTIONS(6800), - [aux_sym_keyword_statement_token3] = ACTIONS(6800), - [aux_sym_include_statement_token1] = ACTIONS(6800), - [aux_sym_data_statement_token1] = ACTIONS(6800), - [aux_sym__inline_if_statement_token1] = ACTIONS(6800), - [aux_sym_end_if_statement_token1] = ACTIONS(6800), - [aux_sym_elseif_clause_token2] = ACTIONS(6800), - [aux_sym_select_case_statement_token1] = ACTIONS(6800), - [aux_sym_block_construct_token1] = ACTIONS(6800), - [aux_sym_format_statement_token1] = ACTIONS(6800), - [aux_sym_inquire_statement_token1] = ACTIONS(6800), - [aux_sym_enum_statement_token1] = ACTIONS(6800), - [aux_sym_entry_statement_token1] = ACTIONS(6800), - [aux_sym_null_literal_token1] = ACTIONS(6800), - [aux_sym_coarray_statement_token1] = ACTIONS(6800), - [aux_sym_coarray_statement_token2] = ACTIONS(6800), - [aux_sym_coarray_statement_token6] = ACTIONS(6800), - [aux_sym_coarray_statement_token8] = ACTIONS(6800), - [aux_sym_coarray_statement_token11] = ACTIONS(6800), - [aux_sym_coarray_statement_token12] = ACTIONS(6800), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6800), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6800), - [aux_sym_identifier_token1] = ACTIONS(6800), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6804), + [sym__integer_literal] = ACTIONS(6872), }, - [2872] = { - [sym__expression] = STATE(4422), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_COMMA] = ACTIONS(6914), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2807] = { + [sym__expression] = STATE(4447), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_COMMA] = ACTIONS(6882), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), @@ -428334,13 +422419,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_logical_expression_token5] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -428351,38 +422436,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), [sym__string_literal] = ACTIONS(5468), [sym__string_literal_kind] = ACTIONS(5470), }, - [2873] = { - [sym_concurrent_control] = STATE(7117), - [sym__expression] = STATE(4551), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4963), + [2808] = { + [aux_sym_preproc_include_token1] = ACTIONS(6884), + [aux_sym_preproc_def_token1] = ACTIONS(6884), + [aux_sym_preproc_if_token1] = ACTIONS(6884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6884), + [sym_preproc_directive] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6884), + [aux_sym_end_module_statement_token1] = ACTIONS(6884), + [aux_sym_interface_statement_token1] = ACTIONS(6884), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6884), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6884), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6884), + [aux_sym_language_binding_token1] = ACTIONS(6884), + [aux_sym_procedure_attributes_token1] = ACTIONS(6884), + [aux_sym_procedure_attributes_token3] = ACTIONS(6884), + [aux_sym_contains_statement_token1] = ACTIONS(6884), + [aux_sym_use_statement_token1] = ACTIONS(6884), + [aux_sym_use_statement_token2] = ACTIONS(6884), + [aux_sym_implicit_statement_token1] = ACTIONS(6884), + [aux_sym_implicit_statement_token3] = ACTIONS(6884), + [aux_sym_implicit_statement_token4] = ACTIONS(6884), + [aux_sym_save_statement_token1] = ACTIONS(6884), + [aux_sym_private_statement_token1] = ACTIONS(6884), + [aux_sym_public_statement_token1] = ACTIONS(6884), + [aux_sym_namelist_statement_token1] = ACTIONS(6884), + [aux_sym_common_statement_token1] = ACTIONS(6884), + [aux_sym_import_statement_token1] = ACTIONS(6884), + [aux_sym_derived_type_definition_token1] = ACTIONS(6884), + [aux_sym_abstract_specifier_token1] = ACTIONS(6884), + [aux_sym_procedure_attribute_token6] = ACTIONS(6884), + [aux_sym_variable_attributes_token1] = ACTIONS(6884), + [aux_sym_variable_attributes_token2] = ACTIONS(6884), + [aux_sym_variable_attributes_token3] = ACTIONS(6884), + [aux_sym_variable_attributes_token4] = ACTIONS(6884), + [aux_sym_variable_attributes_token5] = ACTIONS(6884), + [aux_sym__intrinsic_type_token1] = ACTIONS(6884), + [aux_sym__intrinsic_type_token2] = ACTIONS(6884), + [aux_sym__intrinsic_type_token3] = ACTIONS(6884), + [aux_sym__intrinsic_type_token4] = ACTIONS(6884), + [aux_sym__intrinsic_type_token6] = ACTIONS(6884), + [aux_sym__intrinsic_type_token7] = ACTIONS(6884), + [aux_sym__intrinsic_type_token8] = ACTIONS(6884), + [aux_sym__intrinsic_type_token9] = ACTIONS(6884), + [aux_sym__intrinsic_type_token10] = ACTIONS(6884), + [aux_sym_derived_type_token1] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6884), + [aux_sym_type_qualifier_token1] = ACTIONS(6884), + [aux_sym_type_qualifier_token2] = ACTIONS(6884), + [aux_sym_equivalence_statement_token1] = ACTIONS(6884), + [aux_sym_stop_statement_token1] = ACTIONS(6884), + [aux_sym_stop_statement_token2] = ACTIONS(6884), + [aux_sym_keyword_statement_token2] = ACTIONS(6884), + [aux_sym_keyword_statement_token3] = ACTIONS(6884), + [aux_sym_include_statement_token1] = ACTIONS(6884), + [aux_sym_data_statement_token1] = ACTIONS(6884), + [aux_sym__inline_if_statement_token1] = ACTIONS(6884), + [aux_sym_end_if_statement_token1] = ACTIONS(6884), + [aux_sym_elseif_clause_token2] = ACTIONS(6884), + [aux_sym_select_case_statement_token1] = ACTIONS(6884), + [aux_sym_block_construct_token1] = ACTIONS(6884), + [aux_sym_format_statement_token1] = ACTIONS(6884), + [aux_sym_inquire_statement_token1] = ACTIONS(6884), + [aux_sym_enum_statement_token1] = ACTIONS(6884), + [aux_sym_entry_statement_token1] = ACTIONS(6884), + [aux_sym_null_literal_token1] = ACTIONS(6884), + [aux_sym_coarray_statement_token1] = ACTIONS(6884), + [aux_sym_coarray_statement_token2] = ACTIONS(6884), + [aux_sym_coarray_statement_token6] = ACTIONS(6884), + [aux_sym_coarray_statement_token8] = ACTIONS(6884), + [aux_sym_coarray_statement_token11] = ACTIONS(6884), + [aux_sym_coarray_statement_token12] = ACTIONS(6884), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6884), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6884), + [aux_sym_identifier_token1] = ACTIONS(6884), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6886), + }, + [2809] = { + [sym_pointer_association_statement] = STATE(7963), + [sym__expression] = STATE(4455), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -428400,10 +422576,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -428420,12 +422596,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -428442,220 +422618,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2874] = { - [aux_sym_preproc_include_token1] = ACTIONS(6890), - [aux_sym_preproc_def_token1] = ACTIONS(6890), - [aux_sym_preproc_if_token1] = ACTIONS(6890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6890), - [sym_preproc_directive] = ACTIONS(6890), + [2810] = { + [sym__expression] = STATE(4444), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_COMMA] = ACTIONS(6888), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6890), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6890), - [aux_sym_interface_statement_token1] = ACTIONS(6890), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6890), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6890), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6890), - [aux_sym_language_binding_token1] = ACTIONS(6890), - [aux_sym_procedure_attributes_token1] = ACTIONS(6890), - [aux_sym_procedure_attributes_token3] = ACTIONS(6890), - [aux_sym_contains_statement_token1] = ACTIONS(6890), - [aux_sym_use_statement_token1] = ACTIONS(6890), - [aux_sym_use_statement_token2] = ACTIONS(6890), - [aux_sym_implicit_statement_token1] = ACTIONS(6890), - [aux_sym_implicit_statement_token3] = ACTIONS(6890), - [aux_sym_implicit_statement_token4] = ACTIONS(6890), - [aux_sym_save_statement_token1] = ACTIONS(6890), - [aux_sym_private_statement_token1] = ACTIONS(6890), - [aux_sym_public_statement_token1] = ACTIONS(6890), - [aux_sym_namelist_statement_token1] = ACTIONS(6890), - [aux_sym_common_statement_token1] = ACTIONS(6890), - [aux_sym_import_statement_token1] = ACTIONS(6890), - [aux_sym_derived_type_definition_token1] = ACTIONS(6890), - [aux_sym_abstract_specifier_token1] = ACTIONS(6890), - [aux_sym_procedure_attribute_token6] = ACTIONS(6890), - [aux_sym_variable_attributes_token1] = ACTIONS(6890), - [aux_sym_variable_attributes_token2] = ACTIONS(6890), - [aux_sym_variable_attributes_token3] = ACTIONS(6890), - [aux_sym_variable_attributes_token4] = ACTIONS(6890), - [aux_sym_variable_attributes_token5] = ACTIONS(6890), - [aux_sym__intrinsic_type_token1] = ACTIONS(6890), - [aux_sym__intrinsic_type_token2] = ACTIONS(6890), - [aux_sym__intrinsic_type_token3] = ACTIONS(6890), - [aux_sym__intrinsic_type_token4] = ACTIONS(6890), - [aux_sym__intrinsic_type_token6] = ACTIONS(6890), - [aux_sym__intrinsic_type_token7] = ACTIONS(6890), - [aux_sym__intrinsic_type_token8] = ACTIONS(6890), - [aux_sym__intrinsic_type_token9] = ACTIONS(6890), - [aux_sym__intrinsic_type_token10] = ACTIONS(6890), - [aux_sym_derived_type_token1] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6890), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6890), - [aux_sym_type_qualifier_token1] = ACTIONS(6890), - [aux_sym_type_qualifier_token2] = ACTIONS(6890), - [aux_sym_equivalence_statement_token1] = ACTIONS(6890), - [aux_sym_stop_statement_token1] = ACTIONS(6890), - [aux_sym_stop_statement_token2] = ACTIONS(6890), - [aux_sym_keyword_statement_token2] = ACTIONS(6890), - [aux_sym_keyword_statement_token3] = ACTIONS(6890), - [aux_sym_include_statement_token1] = ACTIONS(6890), - [aux_sym_data_statement_token1] = ACTIONS(6890), - [aux_sym__inline_if_statement_token1] = ACTIONS(6890), - [aux_sym_end_if_statement_token1] = ACTIONS(6890), - [aux_sym_elseif_clause_token2] = ACTIONS(6890), - [aux_sym_select_case_statement_token1] = ACTIONS(6890), - [aux_sym_block_construct_token1] = ACTIONS(6890), - [aux_sym_format_statement_token1] = ACTIONS(6890), - [aux_sym_inquire_statement_token1] = ACTIONS(6890), - [aux_sym_enum_statement_token1] = ACTIONS(6890), - [aux_sym_entry_statement_token1] = ACTIONS(6890), - [aux_sym_null_literal_token1] = ACTIONS(6890), - [aux_sym_coarray_statement_token1] = ACTIONS(6890), - [aux_sym_coarray_statement_token2] = ACTIONS(6890), - [aux_sym_coarray_statement_token6] = ACTIONS(6890), - [aux_sym_coarray_statement_token8] = ACTIONS(6890), - [aux_sym_coarray_statement_token11] = ACTIONS(6890), - [aux_sym_coarray_statement_token12] = ACTIONS(6890), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6890), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6890), - [aux_sym_identifier_token1] = ACTIONS(6890), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6892), - }, - [2875] = { - [aux_sym_preproc_include_token1] = ACTIONS(6916), - [aux_sym_preproc_def_token1] = ACTIONS(6916), - [aux_sym_preproc_if_token1] = ACTIONS(6916), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6916), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6916), - [sym_preproc_directive] = ACTIONS(6916), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6916), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6916), - [aux_sym_interface_statement_token1] = ACTIONS(6916), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6916), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6916), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6916), - [aux_sym_language_binding_token1] = ACTIONS(6916), - [aux_sym_procedure_attributes_token1] = ACTIONS(6916), - [aux_sym_procedure_attributes_token3] = ACTIONS(6916), - [aux_sym_contains_statement_token1] = ACTIONS(6916), - [aux_sym_use_statement_token1] = ACTIONS(6916), - [aux_sym_use_statement_token2] = ACTIONS(6916), - [aux_sym_implicit_statement_token1] = ACTIONS(6916), - [aux_sym_implicit_statement_token3] = ACTIONS(6916), - [aux_sym_implicit_statement_token4] = ACTIONS(6916), - [aux_sym_save_statement_token1] = ACTIONS(6916), - [aux_sym_private_statement_token1] = ACTIONS(6916), - [aux_sym_public_statement_token1] = ACTIONS(6916), - [aux_sym_namelist_statement_token1] = ACTIONS(6916), - [aux_sym_common_statement_token1] = ACTIONS(6916), - [aux_sym_import_statement_token1] = ACTIONS(6916), - [aux_sym_derived_type_definition_token1] = ACTIONS(6916), - [aux_sym_abstract_specifier_token1] = ACTIONS(6916), - [aux_sym_procedure_attribute_token6] = ACTIONS(6916), - [aux_sym_variable_attributes_token1] = ACTIONS(6916), - [aux_sym_variable_attributes_token2] = ACTIONS(6916), - [aux_sym_variable_attributes_token3] = ACTIONS(6916), - [aux_sym_variable_attributes_token4] = ACTIONS(6916), - [aux_sym_variable_attributes_token5] = ACTIONS(6916), - [aux_sym__intrinsic_type_token1] = ACTIONS(6916), - [aux_sym__intrinsic_type_token2] = ACTIONS(6916), - [aux_sym__intrinsic_type_token3] = ACTIONS(6916), - [aux_sym__intrinsic_type_token4] = ACTIONS(6916), - [aux_sym__intrinsic_type_token6] = ACTIONS(6916), - [aux_sym__intrinsic_type_token7] = ACTIONS(6916), - [aux_sym__intrinsic_type_token8] = ACTIONS(6916), - [aux_sym__intrinsic_type_token9] = ACTIONS(6916), - [aux_sym__intrinsic_type_token10] = ACTIONS(6916), - [aux_sym_derived_type_token1] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6916), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6916), - [aux_sym_type_qualifier_token1] = ACTIONS(6916), - [aux_sym_type_qualifier_token2] = ACTIONS(6916), - [aux_sym_equivalence_statement_token1] = ACTIONS(6916), - [aux_sym_stop_statement_token1] = ACTIONS(6916), - [aux_sym_stop_statement_token2] = ACTIONS(6916), - [aux_sym_keyword_statement_token2] = ACTIONS(6916), - [aux_sym_keyword_statement_token3] = ACTIONS(6916), - [aux_sym_include_statement_token1] = ACTIONS(6916), - [aux_sym_data_statement_token1] = ACTIONS(6916), - [aux_sym__inline_if_statement_token1] = ACTIONS(6916), - [aux_sym_end_if_statement_token1] = ACTIONS(6916), - [aux_sym_elseif_clause_token2] = ACTIONS(6916), - [aux_sym_select_case_statement_token1] = ACTIONS(6916), - [aux_sym_block_construct_token1] = ACTIONS(6916), - [aux_sym_format_statement_token1] = ACTIONS(6916), - [aux_sym_inquire_statement_token1] = ACTIONS(6916), - [aux_sym_enum_statement_token1] = ACTIONS(6916), - [aux_sym_entry_statement_token1] = ACTIONS(6916), - [aux_sym_null_literal_token1] = ACTIONS(6916), - [aux_sym_coarray_statement_token1] = ACTIONS(6916), - [aux_sym_coarray_statement_token2] = ACTIONS(6916), - [aux_sym_coarray_statement_token6] = ACTIONS(6916), - [aux_sym_coarray_statement_token8] = ACTIONS(6916), - [aux_sym_coarray_statement_token11] = ACTIONS(6916), - [aux_sym_coarray_statement_token12] = ACTIONS(6916), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6916), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6916), - [aux_sym_identifier_token1] = ACTIONS(6916), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6918), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [2876] = { - [sym_concurrent_control] = STATE(7117), - [sym__expression] = STATE(4547), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4963), + [2811] = { + [sym_triplet_spec] = STATE(7102), + [sym__expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(5072), + [sym_relational_expression] = STATE(5072), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5073), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -428673,10 +422758,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -428693,12 +422778,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -428715,402 +422800,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2877] = { - [aux_sym_preproc_include_token1] = ACTIONS(6726), - [aux_sym_preproc_def_token1] = ACTIONS(6726), - [aux_sym_preproc_if_token1] = ACTIONS(6726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6726), - [sym_preproc_directive] = ACTIONS(6726), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6726), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6726), - [aux_sym_interface_statement_token1] = ACTIONS(6726), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6726), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6726), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6726), - [aux_sym_language_binding_token1] = ACTIONS(6726), - [aux_sym_procedure_attributes_token1] = ACTIONS(6726), - [aux_sym_procedure_attributes_token3] = ACTIONS(6726), - [aux_sym_contains_statement_token1] = ACTIONS(6726), - [aux_sym_use_statement_token1] = ACTIONS(6726), - [aux_sym_use_statement_token2] = ACTIONS(6726), - [aux_sym_implicit_statement_token1] = ACTIONS(6726), - [aux_sym_implicit_statement_token3] = ACTIONS(6726), - [aux_sym_implicit_statement_token4] = ACTIONS(6726), - [aux_sym_save_statement_token1] = ACTIONS(6726), - [aux_sym_private_statement_token1] = ACTIONS(6726), - [aux_sym_public_statement_token1] = ACTIONS(6726), - [aux_sym_namelist_statement_token1] = ACTIONS(6726), - [aux_sym_common_statement_token1] = ACTIONS(6726), - [aux_sym_import_statement_token1] = ACTIONS(6726), - [aux_sym_derived_type_definition_token1] = ACTIONS(6726), - [aux_sym_abstract_specifier_token1] = ACTIONS(6726), - [aux_sym_procedure_attribute_token6] = ACTIONS(6726), - [aux_sym_variable_attributes_token1] = ACTIONS(6726), - [aux_sym_variable_attributes_token2] = ACTIONS(6726), - [aux_sym_variable_attributes_token3] = ACTIONS(6726), - [aux_sym_variable_attributes_token4] = ACTIONS(6726), - [aux_sym_variable_attributes_token5] = ACTIONS(6726), - [aux_sym__intrinsic_type_token1] = ACTIONS(6726), - [aux_sym__intrinsic_type_token2] = ACTIONS(6726), - [aux_sym__intrinsic_type_token3] = ACTIONS(6726), - [aux_sym__intrinsic_type_token4] = ACTIONS(6726), - [aux_sym__intrinsic_type_token6] = ACTIONS(6726), - [aux_sym__intrinsic_type_token7] = ACTIONS(6726), - [aux_sym__intrinsic_type_token8] = ACTIONS(6726), - [aux_sym__intrinsic_type_token9] = ACTIONS(6726), - [aux_sym__intrinsic_type_token10] = ACTIONS(6726), - [aux_sym_derived_type_token1] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6726), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6726), - [aux_sym_type_qualifier_token1] = ACTIONS(6726), - [aux_sym_type_qualifier_token2] = ACTIONS(6726), - [aux_sym_equivalence_statement_token1] = ACTIONS(6726), - [aux_sym_stop_statement_token1] = ACTIONS(6726), - [aux_sym_stop_statement_token2] = ACTIONS(6726), - [aux_sym_keyword_statement_token2] = ACTIONS(6726), - [aux_sym_keyword_statement_token3] = ACTIONS(6726), - [aux_sym_include_statement_token1] = ACTIONS(6726), - [aux_sym_data_statement_token1] = ACTIONS(6726), - [aux_sym__inline_if_statement_token1] = ACTIONS(6726), - [aux_sym_end_if_statement_token1] = ACTIONS(6726), - [aux_sym_elseif_clause_token2] = ACTIONS(6726), - [aux_sym_select_case_statement_token1] = ACTIONS(6726), - [aux_sym_block_construct_token1] = ACTIONS(6726), - [aux_sym_format_statement_token1] = ACTIONS(6726), - [aux_sym_inquire_statement_token1] = ACTIONS(6726), - [aux_sym_enum_statement_token1] = ACTIONS(6726), - [aux_sym_entry_statement_token1] = ACTIONS(6726), - [aux_sym_null_literal_token1] = ACTIONS(6726), - [aux_sym_coarray_statement_token1] = ACTIONS(6726), - [aux_sym_coarray_statement_token2] = ACTIONS(6726), - [aux_sym_coarray_statement_token6] = ACTIONS(6726), - [aux_sym_coarray_statement_token8] = ACTIONS(6726), - [aux_sym_coarray_statement_token11] = ACTIONS(6726), - [aux_sym_coarray_statement_token12] = ACTIONS(6726), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6726), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6726), - [aux_sym_identifier_token1] = ACTIONS(6726), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6730), - }, - [2878] = { - [sym__expression] = STATE(4395), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_COMMA] = ACTIONS(6920), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [2879] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - }, - [2880] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - }, - [2881] = { - [sym__expression] = STATE(4288), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_loop_control_expression] = STATE(8256), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5039), + [2812] = { + [sym_concurrent_control] = STATE(7404), + [sym__expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4786), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -429128,10 +422849,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -429148,12 +422869,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -429170,38 +422891,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2882] = { - [sym__expression] = STATE(4288), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_loop_control_expression] = STATE(8333), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5039), + [2813] = { + [sym_concurrent_control] = STATE(7404), + [sym__expression] = STATE(4558), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4786), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -429219,10 +422940,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -429239,12 +422960,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -429261,13 +422982,741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2883] = { + [2814] = { + [aux_sym_preproc_include_token1] = ACTIONS(6890), + [aux_sym_preproc_def_token1] = ACTIONS(6890), + [aux_sym_preproc_if_token1] = ACTIONS(6890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6890), + [sym_preproc_directive] = ACTIONS(6890), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6890), + [aux_sym_end_module_statement_token1] = ACTIONS(6890), + [aux_sym_interface_statement_token1] = ACTIONS(6890), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6890), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6890), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6890), + [aux_sym_language_binding_token1] = ACTIONS(6890), + [aux_sym_procedure_attributes_token1] = ACTIONS(6890), + [aux_sym_procedure_attributes_token3] = ACTIONS(6890), + [aux_sym_contains_statement_token1] = ACTIONS(6890), + [aux_sym_use_statement_token1] = ACTIONS(6890), + [aux_sym_use_statement_token2] = ACTIONS(6890), + [aux_sym_implicit_statement_token1] = ACTIONS(6890), + [aux_sym_implicit_statement_token3] = ACTIONS(6890), + [aux_sym_implicit_statement_token4] = ACTIONS(6890), + [aux_sym_save_statement_token1] = ACTIONS(6890), + [aux_sym_private_statement_token1] = ACTIONS(6890), + [aux_sym_public_statement_token1] = ACTIONS(6890), + [aux_sym_namelist_statement_token1] = ACTIONS(6890), + [aux_sym_common_statement_token1] = ACTIONS(6890), + [aux_sym_import_statement_token1] = ACTIONS(6890), + [aux_sym_derived_type_definition_token1] = ACTIONS(6890), + [aux_sym_abstract_specifier_token1] = ACTIONS(6890), + [aux_sym_procedure_attribute_token6] = ACTIONS(6890), + [aux_sym_variable_attributes_token1] = ACTIONS(6890), + [aux_sym_variable_attributes_token2] = ACTIONS(6890), + [aux_sym_variable_attributes_token3] = ACTIONS(6890), + [aux_sym_variable_attributes_token4] = ACTIONS(6890), + [aux_sym_variable_attributes_token5] = ACTIONS(6890), + [aux_sym__intrinsic_type_token1] = ACTIONS(6890), + [aux_sym__intrinsic_type_token2] = ACTIONS(6890), + [aux_sym__intrinsic_type_token3] = ACTIONS(6890), + [aux_sym__intrinsic_type_token4] = ACTIONS(6890), + [aux_sym__intrinsic_type_token6] = ACTIONS(6890), + [aux_sym__intrinsic_type_token7] = ACTIONS(6890), + [aux_sym__intrinsic_type_token8] = ACTIONS(6890), + [aux_sym__intrinsic_type_token9] = ACTIONS(6890), + [aux_sym__intrinsic_type_token10] = ACTIONS(6890), + [aux_sym_derived_type_token1] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6890), + [aux_sym_type_qualifier_token1] = ACTIONS(6890), + [aux_sym_type_qualifier_token2] = ACTIONS(6890), + [aux_sym_equivalence_statement_token1] = ACTIONS(6890), + [aux_sym_stop_statement_token1] = ACTIONS(6890), + [aux_sym_stop_statement_token2] = ACTIONS(6890), + [aux_sym_keyword_statement_token2] = ACTIONS(6890), + [aux_sym_keyword_statement_token3] = ACTIONS(6890), + [aux_sym_include_statement_token1] = ACTIONS(6890), + [aux_sym_data_statement_token1] = ACTIONS(6890), + [aux_sym__inline_if_statement_token1] = ACTIONS(6890), + [aux_sym_end_if_statement_token1] = ACTIONS(6890), + [aux_sym_elseif_clause_token2] = ACTIONS(6890), + [aux_sym_select_case_statement_token1] = ACTIONS(6890), + [aux_sym_block_construct_token1] = ACTIONS(6890), + [aux_sym_format_statement_token1] = ACTIONS(6890), + [aux_sym_inquire_statement_token1] = ACTIONS(6890), + [aux_sym_enum_statement_token1] = ACTIONS(6890), + [aux_sym_entry_statement_token1] = ACTIONS(6890), + [aux_sym_null_literal_token1] = ACTIONS(6890), + [aux_sym_coarray_statement_token1] = ACTIONS(6890), + [aux_sym_coarray_statement_token2] = ACTIONS(6890), + [aux_sym_coarray_statement_token6] = ACTIONS(6890), + [aux_sym_coarray_statement_token8] = ACTIONS(6890), + [aux_sym_coarray_statement_token11] = ACTIONS(6890), + [aux_sym_coarray_statement_token12] = ACTIONS(6890), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6890), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6890), + [aux_sym_identifier_token1] = ACTIONS(6890), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6892), + }, + [2815] = { + [aux_sym_preproc_include_token1] = ACTIONS(6770), + [aux_sym_preproc_def_token1] = ACTIONS(6770), + [aux_sym_preproc_if_token1] = ACTIONS(6770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6770), + [sym_preproc_directive] = ACTIONS(6770), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6770), + [aux_sym_end_module_statement_token1] = ACTIONS(6770), + [aux_sym_interface_statement_token1] = ACTIONS(6770), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6770), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6770), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6770), + [aux_sym_language_binding_token1] = ACTIONS(6770), + [aux_sym_procedure_attributes_token1] = ACTIONS(6770), + [aux_sym_procedure_attributes_token3] = ACTIONS(6770), + [aux_sym_contains_statement_token1] = ACTIONS(6770), + [aux_sym_use_statement_token1] = ACTIONS(6770), + [aux_sym_use_statement_token2] = ACTIONS(6770), + [aux_sym_implicit_statement_token1] = ACTIONS(6770), + [aux_sym_implicit_statement_token3] = ACTIONS(6770), + [aux_sym_implicit_statement_token4] = ACTIONS(6770), + [aux_sym_save_statement_token1] = ACTIONS(6770), + [aux_sym_private_statement_token1] = ACTIONS(6770), + [aux_sym_public_statement_token1] = ACTIONS(6770), + [aux_sym_namelist_statement_token1] = ACTIONS(6770), + [aux_sym_common_statement_token1] = ACTIONS(6770), + [aux_sym_import_statement_token1] = ACTIONS(6770), + [aux_sym_derived_type_definition_token1] = ACTIONS(6770), + [aux_sym_abstract_specifier_token1] = ACTIONS(6770), + [aux_sym_procedure_attribute_token6] = ACTIONS(6770), + [aux_sym_variable_attributes_token1] = ACTIONS(6770), + [aux_sym_variable_attributes_token2] = ACTIONS(6770), + [aux_sym_variable_attributes_token3] = ACTIONS(6770), + [aux_sym_variable_attributes_token4] = ACTIONS(6770), + [aux_sym_variable_attributes_token5] = ACTIONS(6770), + [aux_sym__intrinsic_type_token1] = ACTIONS(6770), + [aux_sym__intrinsic_type_token2] = ACTIONS(6770), + [aux_sym__intrinsic_type_token3] = ACTIONS(6770), + [aux_sym__intrinsic_type_token4] = ACTIONS(6770), + [aux_sym__intrinsic_type_token6] = ACTIONS(6770), + [aux_sym__intrinsic_type_token7] = ACTIONS(6770), + [aux_sym__intrinsic_type_token8] = ACTIONS(6770), + [aux_sym__intrinsic_type_token9] = ACTIONS(6770), + [aux_sym__intrinsic_type_token10] = ACTIONS(6770), + [aux_sym_derived_type_token1] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6770), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6770), + [aux_sym_type_qualifier_token1] = ACTIONS(6770), + [aux_sym_type_qualifier_token2] = ACTIONS(6770), + [aux_sym_equivalence_statement_token1] = ACTIONS(6770), + [aux_sym_stop_statement_token1] = ACTIONS(6770), + [aux_sym_stop_statement_token2] = ACTIONS(6770), + [aux_sym_keyword_statement_token2] = ACTIONS(6770), + [aux_sym_keyword_statement_token3] = ACTIONS(6770), + [aux_sym_include_statement_token1] = ACTIONS(6770), + [aux_sym_data_statement_token1] = ACTIONS(6770), + [aux_sym__inline_if_statement_token1] = ACTIONS(6770), + [aux_sym_end_if_statement_token1] = ACTIONS(6770), + [aux_sym_elseif_clause_token2] = ACTIONS(6770), + [aux_sym_select_case_statement_token1] = ACTIONS(6770), + [aux_sym_block_construct_token1] = ACTIONS(6770), + [aux_sym_format_statement_token1] = ACTIONS(6770), + [aux_sym_inquire_statement_token1] = ACTIONS(6770), + [aux_sym_enum_statement_token1] = ACTIONS(6770), + [aux_sym_entry_statement_token1] = ACTIONS(6770), + [aux_sym_null_literal_token1] = ACTIONS(6770), + [aux_sym_coarray_statement_token1] = ACTIONS(6770), + [aux_sym_coarray_statement_token2] = ACTIONS(6770), + [aux_sym_coarray_statement_token6] = ACTIONS(6770), + [aux_sym_coarray_statement_token8] = ACTIONS(6770), + [aux_sym_coarray_statement_token11] = ACTIONS(6770), + [aux_sym_coarray_statement_token12] = ACTIONS(6770), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6770), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6770), + [aux_sym_identifier_token1] = ACTIONS(6770), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6774), + }, + [2816] = { + [aux_sym_preproc_include_token1] = ACTIONS(6736), + [aux_sym_preproc_def_token1] = ACTIONS(6736), + [aux_sym_preproc_if_token1] = ACTIONS(6736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6736), + [sym_preproc_directive] = ACTIONS(6736), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6736), + [aux_sym_end_module_statement_token1] = ACTIONS(6736), + [aux_sym_interface_statement_token1] = ACTIONS(6736), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6736), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6736), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6736), + [aux_sym_language_binding_token1] = ACTIONS(6736), + [aux_sym_procedure_attributes_token1] = ACTIONS(6736), + [aux_sym_procedure_attributes_token3] = ACTIONS(6736), + [aux_sym_contains_statement_token1] = ACTIONS(6736), + [aux_sym_use_statement_token1] = ACTIONS(6736), + [aux_sym_use_statement_token2] = ACTIONS(6736), + [aux_sym_implicit_statement_token1] = ACTIONS(6736), + [aux_sym_implicit_statement_token3] = ACTIONS(6736), + [aux_sym_implicit_statement_token4] = ACTIONS(6736), + [aux_sym_save_statement_token1] = ACTIONS(6736), + [aux_sym_private_statement_token1] = ACTIONS(6736), + [aux_sym_public_statement_token1] = ACTIONS(6736), + [aux_sym_namelist_statement_token1] = ACTIONS(6736), + [aux_sym_common_statement_token1] = ACTIONS(6736), + [aux_sym_import_statement_token1] = ACTIONS(6736), + [aux_sym_derived_type_definition_token1] = ACTIONS(6736), + [aux_sym_abstract_specifier_token1] = ACTIONS(6736), + [aux_sym_procedure_attribute_token6] = ACTIONS(6736), + [aux_sym_variable_attributes_token1] = ACTIONS(6736), + [aux_sym_variable_attributes_token2] = ACTIONS(6736), + [aux_sym_variable_attributes_token3] = ACTIONS(6736), + [aux_sym_variable_attributes_token4] = ACTIONS(6736), + [aux_sym_variable_attributes_token5] = ACTIONS(6736), + [aux_sym__intrinsic_type_token1] = ACTIONS(6736), + [aux_sym__intrinsic_type_token2] = ACTIONS(6736), + [aux_sym__intrinsic_type_token3] = ACTIONS(6736), + [aux_sym__intrinsic_type_token4] = ACTIONS(6736), + [aux_sym__intrinsic_type_token6] = ACTIONS(6736), + [aux_sym__intrinsic_type_token7] = ACTIONS(6736), + [aux_sym__intrinsic_type_token8] = ACTIONS(6736), + [aux_sym__intrinsic_type_token9] = ACTIONS(6736), + [aux_sym__intrinsic_type_token10] = ACTIONS(6736), + [aux_sym_derived_type_token1] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6736), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6736), + [aux_sym_type_qualifier_token1] = ACTIONS(6736), + [aux_sym_type_qualifier_token2] = ACTIONS(6736), + [aux_sym_equivalence_statement_token1] = ACTIONS(6736), + [aux_sym_stop_statement_token1] = ACTIONS(6736), + [aux_sym_stop_statement_token2] = ACTIONS(6736), + [aux_sym_keyword_statement_token2] = ACTIONS(6736), + [aux_sym_keyword_statement_token3] = ACTIONS(6736), + [aux_sym_include_statement_token1] = ACTIONS(6736), + [aux_sym_data_statement_token1] = ACTIONS(6736), + [aux_sym__inline_if_statement_token1] = ACTIONS(6736), + [aux_sym_end_if_statement_token1] = ACTIONS(6736), + [aux_sym_elseif_clause_token2] = ACTIONS(6736), + [aux_sym_select_case_statement_token1] = ACTIONS(6736), + [aux_sym_block_construct_token1] = ACTIONS(6736), + [aux_sym_format_statement_token1] = ACTIONS(6736), + [aux_sym_inquire_statement_token1] = ACTIONS(6736), + [aux_sym_enum_statement_token1] = ACTIONS(6736), + [aux_sym_entry_statement_token1] = ACTIONS(6736), + [aux_sym_null_literal_token1] = ACTIONS(6736), + [aux_sym_coarray_statement_token1] = ACTIONS(6736), + [aux_sym_coarray_statement_token2] = ACTIONS(6736), + [aux_sym_coarray_statement_token6] = ACTIONS(6736), + [aux_sym_coarray_statement_token8] = ACTIONS(6736), + [aux_sym_coarray_statement_token11] = ACTIONS(6736), + [aux_sym_coarray_statement_token12] = ACTIONS(6736), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6736), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6736), + [aux_sym_identifier_token1] = ACTIONS(6736), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6740), + }, + [2817] = { + [aux_sym_preproc_include_token1] = ACTIONS(6894), + [aux_sym_preproc_def_token1] = ACTIONS(6894), + [aux_sym_preproc_if_token1] = ACTIONS(6894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6894), + [sym_preproc_directive] = ACTIONS(6894), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6894), + [aux_sym_end_module_statement_token1] = ACTIONS(6894), + [aux_sym_interface_statement_token1] = ACTIONS(6894), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6894), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6894), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6894), + [aux_sym_language_binding_token1] = ACTIONS(6894), + [aux_sym_procedure_attributes_token1] = ACTIONS(6894), + [aux_sym_procedure_attributes_token3] = ACTIONS(6894), + [aux_sym_contains_statement_token1] = ACTIONS(6894), + [aux_sym_use_statement_token1] = ACTIONS(6894), + [aux_sym_use_statement_token2] = ACTIONS(6894), + [aux_sym_implicit_statement_token1] = ACTIONS(6894), + [aux_sym_implicit_statement_token3] = ACTIONS(6894), + [aux_sym_implicit_statement_token4] = ACTIONS(6894), + [aux_sym_save_statement_token1] = ACTIONS(6894), + [aux_sym_private_statement_token1] = ACTIONS(6894), + [aux_sym_public_statement_token1] = ACTIONS(6894), + [aux_sym_namelist_statement_token1] = ACTIONS(6894), + [aux_sym_common_statement_token1] = ACTIONS(6894), + [aux_sym_import_statement_token1] = ACTIONS(6894), + [aux_sym_derived_type_definition_token1] = ACTIONS(6894), + [aux_sym_abstract_specifier_token1] = ACTIONS(6894), + [aux_sym_procedure_attribute_token6] = ACTIONS(6894), + [aux_sym_variable_attributes_token1] = ACTIONS(6894), + [aux_sym_variable_attributes_token2] = ACTIONS(6894), + [aux_sym_variable_attributes_token3] = ACTIONS(6894), + [aux_sym_variable_attributes_token4] = ACTIONS(6894), + [aux_sym_variable_attributes_token5] = ACTIONS(6894), + [aux_sym__intrinsic_type_token1] = ACTIONS(6894), + [aux_sym__intrinsic_type_token2] = ACTIONS(6894), + [aux_sym__intrinsic_type_token3] = ACTIONS(6894), + [aux_sym__intrinsic_type_token4] = ACTIONS(6894), + [aux_sym__intrinsic_type_token6] = ACTIONS(6894), + [aux_sym__intrinsic_type_token7] = ACTIONS(6894), + [aux_sym__intrinsic_type_token8] = ACTIONS(6894), + [aux_sym__intrinsic_type_token9] = ACTIONS(6894), + [aux_sym__intrinsic_type_token10] = ACTIONS(6894), + [aux_sym_derived_type_token1] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6894), + [aux_sym_type_qualifier_token1] = ACTIONS(6894), + [aux_sym_type_qualifier_token2] = ACTIONS(6894), + [aux_sym_equivalence_statement_token1] = ACTIONS(6894), + [aux_sym_stop_statement_token1] = ACTIONS(6894), + [aux_sym_stop_statement_token2] = ACTIONS(6894), + [aux_sym_keyword_statement_token2] = ACTIONS(6894), + [aux_sym_keyword_statement_token3] = ACTIONS(6894), + [aux_sym_include_statement_token1] = ACTIONS(6894), + [aux_sym_data_statement_token1] = ACTIONS(6894), + [aux_sym__inline_if_statement_token1] = ACTIONS(6894), + [aux_sym_end_if_statement_token1] = ACTIONS(6894), + [aux_sym_elseif_clause_token2] = ACTIONS(6894), + [aux_sym_select_case_statement_token1] = ACTIONS(6894), + [aux_sym_block_construct_token1] = ACTIONS(6894), + [aux_sym_format_statement_token1] = ACTIONS(6894), + [aux_sym_inquire_statement_token1] = ACTIONS(6894), + [aux_sym_enum_statement_token1] = ACTIONS(6894), + [aux_sym_entry_statement_token1] = ACTIONS(6894), + [aux_sym_null_literal_token1] = ACTIONS(6894), + [aux_sym_coarray_statement_token1] = ACTIONS(6894), + [aux_sym_coarray_statement_token2] = ACTIONS(6894), + [aux_sym_coarray_statement_token6] = ACTIONS(6894), + [aux_sym_coarray_statement_token8] = ACTIONS(6894), + [aux_sym_coarray_statement_token11] = ACTIONS(6894), + [aux_sym_coarray_statement_token12] = ACTIONS(6894), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6894), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6894), + [aux_sym_identifier_token1] = ACTIONS(6894), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6896), + }, + [2818] = { + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), + }, + [2819] = { + [aux_sym_preproc_include_token1] = ACTIONS(6842), + [aux_sym_preproc_def_token1] = ACTIONS(6842), + [aux_sym_preproc_if_token1] = ACTIONS(6842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6842), + [sym_preproc_directive] = ACTIONS(6842), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6842), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6842), + [aux_sym_interface_statement_token1] = ACTIONS(6842), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6842), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6842), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6842), + [aux_sym_language_binding_token1] = ACTIONS(6842), + [aux_sym_procedure_attributes_token1] = ACTIONS(6842), + [aux_sym_procedure_attributes_token3] = ACTIONS(6842), + [aux_sym_contains_statement_token1] = ACTIONS(6842), + [aux_sym_use_statement_token1] = ACTIONS(6842), + [aux_sym_use_statement_token2] = ACTIONS(6842), + [aux_sym_implicit_statement_token1] = ACTIONS(6842), + [aux_sym_implicit_statement_token3] = ACTIONS(6842), + [aux_sym_implicit_statement_token4] = ACTIONS(6842), + [aux_sym_save_statement_token1] = ACTIONS(6842), + [aux_sym_private_statement_token1] = ACTIONS(6842), + [aux_sym_public_statement_token1] = ACTIONS(6842), + [aux_sym_namelist_statement_token1] = ACTIONS(6842), + [aux_sym_common_statement_token1] = ACTIONS(6842), + [aux_sym_import_statement_token1] = ACTIONS(6842), + [aux_sym_derived_type_definition_token1] = ACTIONS(6842), + [aux_sym_abstract_specifier_token1] = ACTIONS(6842), + [aux_sym_procedure_attribute_token6] = ACTIONS(6842), + [aux_sym_variable_attributes_token1] = ACTIONS(6842), + [aux_sym_variable_attributes_token2] = ACTIONS(6842), + [aux_sym_variable_attributes_token3] = ACTIONS(6842), + [aux_sym_variable_attributes_token4] = ACTIONS(6842), + [aux_sym_variable_attributes_token5] = ACTIONS(6842), + [aux_sym__intrinsic_type_token1] = ACTIONS(6842), + [aux_sym__intrinsic_type_token2] = ACTIONS(6842), + [aux_sym__intrinsic_type_token3] = ACTIONS(6842), + [aux_sym__intrinsic_type_token4] = ACTIONS(6842), + [aux_sym__intrinsic_type_token6] = ACTIONS(6842), + [aux_sym__intrinsic_type_token7] = ACTIONS(6842), + [aux_sym__intrinsic_type_token8] = ACTIONS(6842), + [aux_sym__intrinsic_type_token9] = ACTIONS(6842), + [aux_sym__intrinsic_type_token10] = ACTIONS(6842), + [aux_sym_derived_type_token1] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6842), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6842), + [aux_sym_type_qualifier_token1] = ACTIONS(6842), + [aux_sym_type_qualifier_token2] = ACTIONS(6842), + [aux_sym_equivalence_statement_token1] = ACTIONS(6842), + [aux_sym_stop_statement_token1] = ACTIONS(6842), + [aux_sym_stop_statement_token2] = ACTIONS(6842), + [aux_sym_keyword_statement_token2] = ACTIONS(6842), + [aux_sym_keyword_statement_token3] = ACTIONS(6842), + [aux_sym_include_statement_token1] = ACTIONS(6842), + [aux_sym_data_statement_token1] = ACTIONS(6842), + [aux_sym__inline_if_statement_token1] = ACTIONS(6842), + [aux_sym_end_if_statement_token1] = ACTIONS(6842), + [aux_sym_elseif_clause_token2] = ACTIONS(6842), + [aux_sym_select_case_statement_token1] = ACTIONS(6842), + [aux_sym_block_construct_token1] = ACTIONS(6842), + [aux_sym_format_statement_token1] = ACTIONS(6842), + [aux_sym_inquire_statement_token1] = ACTIONS(6842), + [aux_sym_enum_statement_token1] = ACTIONS(6842), + [aux_sym_entry_statement_token1] = ACTIONS(6842), + [aux_sym_null_literal_token1] = ACTIONS(6842), + [aux_sym_coarray_statement_token1] = ACTIONS(6842), + [aux_sym_coarray_statement_token2] = ACTIONS(6842), + [aux_sym_coarray_statement_token6] = ACTIONS(6842), + [aux_sym_coarray_statement_token8] = ACTIONS(6842), + [aux_sym_coarray_statement_token11] = ACTIONS(6842), + [aux_sym_coarray_statement_token12] = ACTIONS(6842), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6842), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6842), + [aux_sym_identifier_token1] = ACTIONS(6842), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6846), + }, + [2820] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4257), + }, + [2821] = { + [aux_sym_preproc_include_token1] = ACTIONS(6898), + [aux_sym_preproc_def_token1] = ACTIONS(6898), + [aux_sym_preproc_if_token1] = ACTIONS(6898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6898), + [sym_preproc_directive] = ACTIONS(6898), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6898), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6898), + [aux_sym_interface_statement_token1] = ACTIONS(6898), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6898), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6898), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6898), + [aux_sym_language_binding_token1] = ACTIONS(6898), + [aux_sym_procedure_attributes_token1] = ACTIONS(6898), + [aux_sym_procedure_attributes_token3] = ACTIONS(6898), + [aux_sym_contains_statement_token1] = ACTIONS(6898), + [aux_sym_use_statement_token1] = ACTIONS(6898), + [aux_sym_use_statement_token2] = ACTIONS(6898), + [aux_sym_implicit_statement_token1] = ACTIONS(6898), + [aux_sym_implicit_statement_token3] = ACTIONS(6898), + [aux_sym_implicit_statement_token4] = ACTIONS(6898), + [aux_sym_save_statement_token1] = ACTIONS(6898), + [aux_sym_private_statement_token1] = ACTIONS(6898), + [aux_sym_public_statement_token1] = ACTIONS(6898), + [aux_sym_namelist_statement_token1] = ACTIONS(6898), + [aux_sym_common_statement_token1] = ACTIONS(6898), + [aux_sym_import_statement_token1] = ACTIONS(6898), + [aux_sym_derived_type_definition_token1] = ACTIONS(6898), + [aux_sym_abstract_specifier_token1] = ACTIONS(6898), + [aux_sym_procedure_attribute_token6] = ACTIONS(6898), + [aux_sym_variable_attributes_token1] = ACTIONS(6898), + [aux_sym_variable_attributes_token2] = ACTIONS(6898), + [aux_sym_variable_attributes_token3] = ACTIONS(6898), + [aux_sym_variable_attributes_token4] = ACTIONS(6898), + [aux_sym_variable_attributes_token5] = ACTIONS(6898), + [aux_sym__intrinsic_type_token1] = ACTIONS(6898), + [aux_sym__intrinsic_type_token2] = ACTIONS(6898), + [aux_sym__intrinsic_type_token3] = ACTIONS(6898), + [aux_sym__intrinsic_type_token4] = ACTIONS(6898), + [aux_sym__intrinsic_type_token6] = ACTIONS(6898), + [aux_sym__intrinsic_type_token7] = ACTIONS(6898), + [aux_sym__intrinsic_type_token8] = ACTIONS(6898), + [aux_sym__intrinsic_type_token9] = ACTIONS(6898), + [aux_sym__intrinsic_type_token10] = ACTIONS(6898), + [aux_sym_derived_type_token1] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6898), + [aux_sym_type_qualifier_token1] = ACTIONS(6898), + [aux_sym_type_qualifier_token2] = ACTIONS(6898), + [aux_sym_equivalence_statement_token1] = ACTIONS(6898), + [aux_sym_stop_statement_token1] = ACTIONS(6898), + [aux_sym_stop_statement_token2] = ACTIONS(6898), + [aux_sym_keyword_statement_token2] = ACTIONS(6898), + [aux_sym_keyword_statement_token3] = ACTIONS(6898), + [aux_sym_include_statement_token1] = ACTIONS(6898), + [aux_sym_data_statement_token1] = ACTIONS(6898), + [aux_sym__inline_if_statement_token1] = ACTIONS(6898), + [aux_sym_end_if_statement_token1] = ACTIONS(6898), + [aux_sym_elseif_clause_token2] = ACTIONS(6898), + [aux_sym_select_case_statement_token1] = ACTIONS(6898), + [aux_sym_block_construct_token1] = ACTIONS(6898), + [aux_sym_format_statement_token1] = ACTIONS(6898), + [aux_sym_inquire_statement_token1] = ACTIONS(6898), + [aux_sym_enum_statement_token1] = ACTIONS(6898), + [aux_sym_entry_statement_token1] = ACTIONS(6898), + [aux_sym_null_literal_token1] = ACTIONS(6898), + [aux_sym_coarray_statement_token1] = ACTIONS(6898), + [aux_sym_coarray_statement_token2] = ACTIONS(6898), + [aux_sym_coarray_statement_token6] = ACTIONS(6898), + [aux_sym_coarray_statement_token8] = ACTIONS(6898), + [aux_sym_coarray_statement_token11] = ACTIONS(6898), + [aux_sym_coarray_statement_token12] = ACTIONS(6898), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6898), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6898), + [aux_sym_identifier_token1] = ACTIONS(6898), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6900), + }, + [2822] = { [aux_sym_preproc_include_token1] = ACTIONS(6902), [aux_sym_preproc_def_token1] = ACTIONS(6902), [aux_sym_preproc_if_token1] = ACTIONS(6902), @@ -429276,7 +423725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(6902), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(6902), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6902), + [aux_sym_end_module_statement_token1] = ACTIONS(6902), [aux_sym_interface_statement_token1] = ACTIONS(6902), [aux_sym_defined_io_procedure_token1] = ACTIONS(6902), [aux_sym_defined_io_procedure_token2] = ACTIONS(6902), @@ -429358,735 +423807,462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(6904), }, - [2884] = { - [sym_triplet_spec] = STATE(7139), - [sym__expression] = STATE(4561), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(5079), - [sym_relational_expression] = STATE(5079), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5074), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2885] = { - [sym_concurrent_control] = STATE(7117), - [sym__expression] = STATE(4534), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4963), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2823] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4257), }, - [2886] = { - [sym_triplet_spec] = STATE(7139), - [sym__expression] = STATE(4561), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(5069), - [sym_relational_expression] = STATE(5069), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5074), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [2824] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_end_module_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + }, + [2825] = { + [aux_sym_preproc_include_token1] = ACTIONS(6742), + [aux_sym_preproc_def_token1] = ACTIONS(6742), + [aux_sym_preproc_if_token1] = ACTIONS(6742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6742), + [sym_preproc_directive] = ACTIONS(6742), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6742), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6742), + [aux_sym_interface_statement_token1] = ACTIONS(6742), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6742), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6742), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6742), + [aux_sym_language_binding_token1] = ACTIONS(6742), + [aux_sym_procedure_attributes_token1] = ACTIONS(6742), + [aux_sym_procedure_attributes_token3] = ACTIONS(6742), + [aux_sym_contains_statement_token1] = ACTIONS(6742), + [aux_sym_use_statement_token1] = ACTIONS(6742), + [aux_sym_use_statement_token2] = ACTIONS(6742), + [aux_sym_implicit_statement_token1] = ACTIONS(6742), + [aux_sym_implicit_statement_token3] = ACTIONS(6742), + [aux_sym_implicit_statement_token4] = ACTIONS(6742), + [aux_sym_save_statement_token1] = ACTIONS(6742), + [aux_sym_private_statement_token1] = ACTIONS(6742), + [aux_sym_public_statement_token1] = ACTIONS(6742), + [aux_sym_namelist_statement_token1] = ACTIONS(6742), + [aux_sym_common_statement_token1] = ACTIONS(6742), + [aux_sym_import_statement_token1] = ACTIONS(6742), + [aux_sym_derived_type_definition_token1] = ACTIONS(6742), + [aux_sym_abstract_specifier_token1] = ACTIONS(6742), + [aux_sym_procedure_attribute_token6] = ACTIONS(6742), + [aux_sym_variable_attributes_token1] = ACTIONS(6742), + [aux_sym_variable_attributes_token2] = ACTIONS(6742), + [aux_sym_variable_attributes_token3] = ACTIONS(6742), + [aux_sym_variable_attributes_token4] = ACTIONS(6742), + [aux_sym_variable_attributes_token5] = ACTIONS(6742), + [aux_sym__intrinsic_type_token1] = ACTIONS(6742), + [aux_sym__intrinsic_type_token2] = ACTIONS(6742), + [aux_sym__intrinsic_type_token3] = ACTIONS(6742), + [aux_sym__intrinsic_type_token4] = ACTIONS(6742), + [aux_sym__intrinsic_type_token6] = ACTIONS(6742), + [aux_sym__intrinsic_type_token7] = ACTIONS(6742), + [aux_sym__intrinsic_type_token8] = ACTIONS(6742), + [aux_sym__intrinsic_type_token9] = ACTIONS(6742), + [aux_sym__intrinsic_type_token10] = ACTIONS(6742), + [aux_sym_derived_type_token1] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6742), + [aux_sym_type_qualifier_token1] = ACTIONS(6742), + [aux_sym_type_qualifier_token2] = ACTIONS(6742), + [aux_sym_equivalence_statement_token1] = ACTIONS(6742), + [aux_sym_stop_statement_token1] = ACTIONS(6742), + [aux_sym_stop_statement_token2] = ACTIONS(6742), + [aux_sym_keyword_statement_token2] = ACTIONS(6742), + [aux_sym_keyword_statement_token3] = ACTIONS(6742), + [aux_sym_include_statement_token1] = ACTIONS(6742), + [aux_sym_data_statement_token1] = ACTIONS(6742), + [aux_sym__inline_if_statement_token1] = ACTIONS(6742), + [aux_sym_end_if_statement_token1] = ACTIONS(6742), + [aux_sym_elseif_clause_token2] = ACTIONS(6742), + [aux_sym_select_case_statement_token1] = ACTIONS(6742), + [aux_sym_block_construct_token1] = ACTIONS(6742), + [aux_sym_format_statement_token1] = ACTIONS(6742), + [aux_sym_inquire_statement_token1] = ACTIONS(6742), + [aux_sym_enum_statement_token1] = ACTIONS(6742), + [aux_sym_entry_statement_token1] = ACTIONS(6742), + [aux_sym_null_literal_token1] = ACTIONS(6742), + [aux_sym_coarray_statement_token1] = ACTIONS(6742), + [aux_sym_coarray_statement_token2] = ACTIONS(6742), + [aux_sym_coarray_statement_token6] = ACTIONS(6742), + [aux_sym_coarray_statement_token8] = ACTIONS(6742), + [aux_sym_coarray_statement_token11] = ACTIONS(6742), + [aux_sym_coarray_statement_token12] = ACTIONS(6742), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6742), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6742), + [aux_sym_identifier_token1] = ACTIONS(6742), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(6746), }, - [2887] = { - [aux_sym_preproc_include_token1] = ACTIONS(5402), - [aux_sym_preproc_def_token1] = ACTIONS(5402), - [aux_sym_preproc_if_token1] = ACTIONS(5402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5402), - [sym_preproc_directive] = ACTIONS(5402), + [2826] = { + [aux_sym_preproc_include_token1] = ACTIONS(4972), + [aux_sym_preproc_def_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), + [sym_preproc_directive] = ACTIONS(4972), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5402), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5402), - [aux_sym_interface_statement_token1] = ACTIONS(5402), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5402), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5402), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5402), - [aux_sym_language_binding_token1] = ACTIONS(5402), - [aux_sym_procedure_attributes_token1] = ACTIONS(5402), - [aux_sym_procedure_attributes_token3] = ACTIONS(5402), - [aux_sym_contains_statement_token1] = ACTIONS(5402), - [aux_sym_use_statement_token1] = ACTIONS(5402), - [aux_sym_use_statement_token2] = ACTIONS(5402), - [aux_sym_implicit_statement_token1] = ACTIONS(5402), - [aux_sym_implicit_statement_token3] = ACTIONS(5402), - [aux_sym_implicit_statement_token4] = ACTIONS(5402), - [aux_sym_save_statement_token1] = ACTIONS(5402), - [aux_sym_private_statement_token1] = ACTIONS(5402), - [aux_sym_public_statement_token1] = ACTIONS(5402), - [aux_sym_namelist_statement_token1] = ACTIONS(5402), - [aux_sym_common_statement_token1] = ACTIONS(5402), - [aux_sym_import_statement_token1] = ACTIONS(5402), - [aux_sym_derived_type_definition_token1] = ACTIONS(5402), - [aux_sym_abstract_specifier_token1] = ACTIONS(5402), - [aux_sym_procedure_attribute_token6] = ACTIONS(5402), - [aux_sym_variable_attributes_token1] = ACTIONS(5402), - [aux_sym_variable_attributes_token2] = ACTIONS(5402), - [aux_sym_variable_attributes_token3] = ACTIONS(5402), - [aux_sym_variable_attributes_token4] = ACTIONS(5402), - [aux_sym_variable_attributes_token5] = ACTIONS(5402), - [aux_sym__intrinsic_type_token1] = ACTIONS(5402), - [aux_sym__intrinsic_type_token2] = ACTIONS(5402), - [aux_sym__intrinsic_type_token3] = ACTIONS(5402), - [aux_sym__intrinsic_type_token4] = ACTIONS(5402), - [aux_sym__intrinsic_type_token6] = ACTIONS(5402), - [aux_sym__intrinsic_type_token7] = ACTIONS(5402), - [aux_sym__intrinsic_type_token8] = ACTIONS(5402), - [aux_sym__intrinsic_type_token9] = ACTIONS(5402), - [aux_sym__intrinsic_type_token10] = ACTIONS(5402), - [aux_sym_derived_type_token1] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5402), - [aux_sym_type_qualifier_token1] = ACTIONS(5402), - [aux_sym_type_qualifier_token2] = ACTIONS(5402), - [aux_sym_equivalence_statement_token1] = ACTIONS(5402), - [aux_sym_stop_statement_token1] = ACTIONS(5402), - [aux_sym_stop_statement_token2] = ACTIONS(5402), - [aux_sym_keyword_statement_token2] = ACTIONS(5402), - [aux_sym_keyword_statement_token3] = ACTIONS(5402), - [aux_sym_include_statement_token1] = ACTIONS(5402), - [aux_sym_data_statement_token1] = ACTIONS(5402), - [aux_sym__inline_if_statement_token1] = ACTIONS(5402), - [aux_sym_end_if_statement_token1] = ACTIONS(5402), - [aux_sym_elseif_clause_token2] = ACTIONS(5402), - [aux_sym_select_case_statement_token1] = ACTIONS(5402), - [aux_sym_block_construct_token1] = ACTIONS(5402), - [aux_sym_format_statement_token1] = ACTIONS(5402), - [aux_sym_inquire_statement_token1] = ACTIONS(5402), - [aux_sym_enum_statement_token1] = ACTIONS(5402), - [aux_sym_entry_statement_token1] = ACTIONS(5402), - [aux_sym_null_literal_token1] = ACTIONS(5402), - [aux_sym_coarray_statement_token1] = ACTIONS(5402), - [aux_sym_coarray_statement_token2] = ACTIONS(5402), - [aux_sym_coarray_statement_token6] = ACTIONS(5402), - [aux_sym_coarray_statement_token8] = ACTIONS(5402), - [aux_sym_coarray_statement_token11] = ACTIONS(5402), - [aux_sym_coarray_statement_token12] = ACTIONS(5402), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5402), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5402), - [aux_sym_identifier_token1] = ACTIONS(5402), + [aux_sym_end_program_statement_token1] = ACTIONS(4972), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4972), + [aux_sym_interface_statement_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), + [aux_sym_language_binding_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token3] = ACTIONS(4972), + [aux_sym_contains_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token2] = ACTIONS(4972), + [aux_sym_implicit_statement_token1] = ACTIONS(4972), + [aux_sym_implicit_statement_token3] = ACTIONS(4972), + [aux_sym_implicit_statement_token4] = ACTIONS(4972), + [aux_sym_save_statement_token1] = ACTIONS(4972), + [aux_sym_private_statement_token1] = ACTIONS(4972), + [aux_sym_public_statement_token1] = ACTIONS(4972), + [aux_sym_namelist_statement_token1] = ACTIONS(4972), + [aux_sym_common_statement_token1] = ACTIONS(4972), + [aux_sym_import_statement_token1] = ACTIONS(4972), + [aux_sym_derived_type_definition_token1] = ACTIONS(4972), + [aux_sym_abstract_specifier_token1] = ACTIONS(4972), + [aux_sym_procedure_attribute_token6] = ACTIONS(4972), + [aux_sym_variable_attributes_token1] = ACTIONS(4972), + [aux_sym_variable_attributes_token2] = ACTIONS(4972), + [aux_sym_variable_attributes_token3] = ACTIONS(4972), + [aux_sym_variable_attributes_token4] = ACTIONS(4972), + [aux_sym_variable_attributes_token5] = ACTIONS(4972), + [aux_sym__intrinsic_type_token1] = ACTIONS(4972), + [aux_sym__intrinsic_type_token2] = ACTIONS(4972), + [aux_sym__intrinsic_type_token3] = ACTIONS(4972), + [aux_sym__intrinsic_type_token4] = ACTIONS(4972), + [aux_sym__intrinsic_type_token6] = ACTIONS(4972), + [aux_sym__intrinsic_type_token7] = ACTIONS(4972), + [aux_sym__intrinsic_type_token8] = ACTIONS(4972), + [aux_sym__intrinsic_type_token9] = ACTIONS(4972), + [aux_sym__intrinsic_type_token10] = ACTIONS(4972), + [aux_sym_derived_type_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), + [aux_sym_type_qualifier_token1] = ACTIONS(4972), + [aux_sym_type_qualifier_token2] = ACTIONS(4972), + [aux_sym_equivalence_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token3] = ACTIONS(4972), + [aux_sym_include_statement_token1] = ACTIONS(4972), + [aux_sym_data_statement_token1] = ACTIONS(4972), + [aux_sym__inline_if_statement_token1] = ACTIONS(4972), + [aux_sym_end_if_statement_token1] = ACTIONS(4972), + [aux_sym_elseif_clause_token2] = ACTIONS(4972), + [aux_sym_select_case_statement_token1] = ACTIONS(4972), + [aux_sym_block_construct_token1] = ACTIONS(4972), + [aux_sym_format_statement_token1] = ACTIONS(4972), + [aux_sym_inquire_statement_token1] = ACTIONS(4972), + [aux_sym_enum_statement_token1] = ACTIONS(4972), + [aux_sym_entry_statement_token1] = ACTIONS(4972), + [aux_sym_null_literal_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token2] = ACTIONS(4972), + [aux_sym_coarray_statement_token6] = ACTIONS(4972), + [aux_sym_coarray_statement_token8] = ACTIONS(4972), + [aux_sym_coarray_statement_token11] = ACTIONS(4972), + [aux_sym_coarray_statement_token12] = ACTIONS(4972), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), + [aux_sym_identifier_token1] = ACTIONS(4972), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5404), - }, - [2888] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_end_module_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - }, - [2889] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_end_module_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - }, - [2890] = { - [aux_sym_preproc_include_token1] = ACTIONS(6774), - [aux_sym_preproc_def_token1] = ACTIONS(6774), - [aux_sym_preproc_if_token1] = ACTIONS(6774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6774), - [sym_preproc_directive] = ACTIONS(6774), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6774), - [aux_sym_end_module_statement_token1] = ACTIONS(6774), - [aux_sym_interface_statement_token1] = ACTIONS(6774), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6774), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6774), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6774), - [aux_sym_language_binding_token1] = ACTIONS(6774), - [aux_sym_procedure_attributes_token1] = ACTIONS(6774), - [aux_sym_procedure_attributes_token3] = ACTIONS(6774), - [aux_sym_contains_statement_token1] = ACTIONS(6774), - [aux_sym_use_statement_token1] = ACTIONS(6774), - [aux_sym_use_statement_token2] = ACTIONS(6774), - [aux_sym_implicit_statement_token1] = ACTIONS(6774), - [aux_sym_implicit_statement_token3] = ACTIONS(6774), - [aux_sym_implicit_statement_token4] = ACTIONS(6774), - [aux_sym_save_statement_token1] = ACTIONS(6774), - [aux_sym_private_statement_token1] = ACTIONS(6774), - [aux_sym_public_statement_token1] = ACTIONS(6774), - [aux_sym_namelist_statement_token1] = ACTIONS(6774), - [aux_sym_common_statement_token1] = ACTIONS(6774), - [aux_sym_import_statement_token1] = ACTIONS(6774), - [aux_sym_derived_type_definition_token1] = ACTIONS(6774), - [aux_sym_abstract_specifier_token1] = ACTIONS(6774), - [aux_sym_procedure_attribute_token6] = ACTIONS(6774), - [aux_sym_variable_attributes_token1] = ACTIONS(6774), - [aux_sym_variable_attributes_token2] = ACTIONS(6774), - [aux_sym_variable_attributes_token3] = ACTIONS(6774), - [aux_sym_variable_attributes_token4] = ACTIONS(6774), - [aux_sym_variable_attributes_token5] = ACTIONS(6774), - [aux_sym__intrinsic_type_token1] = ACTIONS(6774), - [aux_sym__intrinsic_type_token2] = ACTIONS(6774), - [aux_sym__intrinsic_type_token3] = ACTIONS(6774), - [aux_sym__intrinsic_type_token4] = ACTIONS(6774), - [aux_sym__intrinsic_type_token6] = ACTIONS(6774), - [aux_sym__intrinsic_type_token7] = ACTIONS(6774), - [aux_sym__intrinsic_type_token8] = ACTIONS(6774), - [aux_sym__intrinsic_type_token9] = ACTIONS(6774), - [aux_sym__intrinsic_type_token10] = ACTIONS(6774), - [aux_sym_derived_type_token1] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6774), - [aux_sym_type_qualifier_token1] = ACTIONS(6774), - [aux_sym_type_qualifier_token2] = ACTIONS(6774), - [aux_sym_equivalence_statement_token1] = ACTIONS(6774), - [aux_sym_stop_statement_token1] = ACTIONS(6774), - [aux_sym_stop_statement_token2] = ACTIONS(6774), - [aux_sym_keyword_statement_token2] = ACTIONS(6774), - [aux_sym_keyword_statement_token3] = ACTIONS(6774), - [aux_sym_include_statement_token1] = ACTIONS(6774), - [aux_sym_data_statement_token1] = ACTIONS(6774), - [aux_sym__inline_if_statement_token1] = ACTIONS(6774), - [aux_sym_end_if_statement_token1] = ACTIONS(6774), - [aux_sym_elseif_clause_token2] = ACTIONS(6774), - [aux_sym_select_case_statement_token1] = ACTIONS(6774), - [aux_sym_block_construct_token1] = ACTIONS(6774), - [aux_sym_format_statement_token1] = ACTIONS(6774), - [aux_sym_inquire_statement_token1] = ACTIONS(6774), - [aux_sym_enum_statement_token1] = ACTIONS(6774), - [aux_sym_entry_statement_token1] = ACTIONS(6774), - [aux_sym_null_literal_token1] = ACTIONS(6774), - [aux_sym_coarray_statement_token1] = ACTIONS(6774), - [aux_sym_coarray_statement_token2] = ACTIONS(6774), - [aux_sym_coarray_statement_token6] = ACTIONS(6774), - [aux_sym_coarray_statement_token8] = ACTIONS(6774), - [aux_sym_coarray_statement_token11] = ACTIONS(6774), - [aux_sym_coarray_statement_token12] = ACTIONS(6774), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6774), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6774), - [aux_sym_identifier_token1] = ACTIONS(6774), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6778), + [sym__integer_literal] = ACTIONS(4974), }, - [2891] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5061), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), + [2827] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5063), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), }, - [2892] = { + [2828] = { [aux_sym_preproc_include_token1] = ACTIONS(6906), [aux_sym_preproc_def_token1] = ACTIONS(6906), [aux_sym_preproc_if_token1] = ACTIONS(6906), @@ -430177,3102 +424353,2304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(6908), }, - [2893] = { - [aux_sym_preproc_include_token1] = ACTIONS(6886), - [aux_sym_preproc_def_token1] = ACTIONS(6886), - [aux_sym_preproc_if_token1] = ACTIONS(6886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6886), - [sym_preproc_directive] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6886), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6886), - [aux_sym_interface_statement_token1] = ACTIONS(6886), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6886), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6886), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6886), - [aux_sym_language_binding_token1] = ACTIONS(6886), - [aux_sym_procedure_attributes_token1] = ACTIONS(6886), - [aux_sym_procedure_attributes_token3] = ACTIONS(6886), - [aux_sym_contains_statement_token1] = ACTIONS(6886), - [aux_sym_use_statement_token1] = ACTIONS(6886), - [aux_sym_use_statement_token2] = ACTIONS(6886), - [aux_sym_implicit_statement_token1] = ACTIONS(6886), - [aux_sym_implicit_statement_token3] = ACTIONS(6886), - [aux_sym_implicit_statement_token4] = ACTIONS(6886), - [aux_sym_save_statement_token1] = ACTIONS(6886), - [aux_sym_private_statement_token1] = ACTIONS(6886), - [aux_sym_public_statement_token1] = ACTIONS(6886), - [aux_sym_namelist_statement_token1] = ACTIONS(6886), - [aux_sym_common_statement_token1] = ACTIONS(6886), - [aux_sym_import_statement_token1] = ACTIONS(6886), - [aux_sym_derived_type_definition_token1] = ACTIONS(6886), - [aux_sym_abstract_specifier_token1] = ACTIONS(6886), - [aux_sym_procedure_attribute_token6] = ACTIONS(6886), - [aux_sym_variable_attributes_token1] = ACTIONS(6886), - [aux_sym_variable_attributes_token2] = ACTIONS(6886), - [aux_sym_variable_attributes_token3] = ACTIONS(6886), - [aux_sym_variable_attributes_token4] = ACTIONS(6886), - [aux_sym_variable_attributes_token5] = ACTIONS(6886), - [aux_sym__intrinsic_type_token1] = ACTIONS(6886), - [aux_sym__intrinsic_type_token2] = ACTIONS(6886), - [aux_sym__intrinsic_type_token3] = ACTIONS(6886), - [aux_sym__intrinsic_type_token4] = ACTIONS(6886), - [aux_sym__intrinsic_type_token6] = ACTIONS(6886), - [aux_sym__intrinsic_type_token7] = ACTIONS(6886), - [aux_sym__intrinsic_type_token8] = ACTIONS(6886), - [aux_sym__intrinsic_type_token9] = ACTIONS(6886), - [aux_sym__intrinsic_type_token10] = ACTIONS(6886), - [aux_sym_derived_type_token1] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6886), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6886), - [aux_sym_type_qualifier_token1] = ACTIONS(6886), - [aux_sym_type_qualifier_token2] = ACTIONS(6886), - [aux_sym_equivalence_statement_token1] = ACTIONS(6886), - [aux_sym_stop_statement_token1] = ACTIONS(6886), - [aux_sym_stop_statement_token2] = ACTIONS(6886), - [aux_sym_keyword_statement_token2] = ACTIONS(6886), - [aux_sym_keyword_statement_token3] = ACTIONS(6886), - [aux_sym_include_statement_token1] = ACTIONS(6886), - [aux_sym_data_statement_token1] = ACTIONS(6886), - [aux_sym__inline_if_statement_token1] = ACTIONS(6886), - [aux_sym_end_if_statement_token1] = ACTIONS(6886), - [aux_sym_elseif_clause_token2] = ACTIONS(6886), - [aux_sym_select_case_statement_token1] = ACTIONS(6886), - [aux_sym_block_construct_token1] = ACTIONS(6886), - [aux_sym_format_statement_token1] = ACTIONS(6886), - [aux_sym_inquire_statement_token1] = ACTIONS(6886), - [aux_sym_enum_statement_token1] = ACTIONS(6886), - [aux_sym_entry_statement_token1] = ACTIONS(6886), - [aux_sym_null_literal_token1] = ACTIONS(6886), - [aux_sym_coarray_statement_token1] = ACTIONS(6886), - [aux_sym_coarray_statement_token2] = ACTIONS(6886), - [aux_sym_coarray_statement_token6] = ACTIONS(6886), - [aux_sym_coarray_statement_token8] = ACTIONS(6886), - [aux_sym_coarray_statement_token11] = ACTIONS(6886), - [aux_sym_coarray_statement_token12] = ACTIONS(6886), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6886), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6886), - [aux_sym_identifier_token1] = ACTIONS(6886), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6888), - }, - [2894] = { - [aux_sym_preproc_include_token1] = ACTIONS(6738), - [aux_sym_preproc_def_token1] = ACTIONS(6738), - [aux_sym_preproc_if_token1] = ACTIONS(6738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6738), - [sym_preproc_directive] = ACTIONS(6738), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6738), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6738), - [aux_sym_interface_statement_token1] = ACTIONS(6738), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6738), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6738), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6738), - [aux_sym_language_binding_token1] = ACTIONS(6738), - [aux_sym_procedure_attributes_token1] = ACTIONS(6738), - [aux_sym_procedure_attributes_token3] = ACTIONS(6738), - [aux_sym_contains_statement_token1] = ACTIONS(6738), - [aux_sym_use_statement_token1] = ACTIONS(6738), - [aux_sym_use_statement_token2] = ACTIONS(6738), - [aux_sym_implicit_statement_token1] = ACTIONS(6738), - [aux_sym_implicit_statement_token3] = ACTIONS(6738), - [aux_sym_implicit_statement_token4] = ACTIONS(6738), - [aux_sym_save_statement_token1] = ACTIONS(6738), - [aux_sym_private_statement_token1] = ACTIONS(6738), - [aux_sym_public_statement_token1] = ACTIONS(6738), - [aux_sym_namelist_statement_token1] = ACTIONS(6738), - [aux_sym_common_statement_token1] = ACTIONS(6738), - [aux_sym_import_statement_token1] = ACTIONS(6738), - [aux_sym_derived_type_definition_token1] = ACTIONS(6738), - [aux_sym_abstract_specifier_token1] = ACTIONS(6738), - [aux_sym_procedure_attribute_token6] = ACTIONS(6738), - [aux_sym_variable_attributes_token1] = ACTIONS(6738), - [aux_sym_variable_attributes_token2] = ACTIONS(6738), - [aux_sym_variable_attributes_token3] = ACTIONS(6738), - [aux_sym_variable_attributes_token4] = ACTIONS(6738), - [aux_sym_variable_attributes_token5] = ACTIONS(6738), - [aux_sym__intrinsic_type_token1] = ACTIONS(6738), - [aux_sym__intrinsic_type_token2] = ACTIONS(6738), - [aux_sym__intrinsic_type_token3] = ACTIONS(6738), - [aux_sym__intrinsic_type_token4] = ACTIONS(6738), - [aux_sym__intrinsic_type_token6] = ACTIONS(6738), - [aux_sym__intrinsic_type_token7] = ACTIONS(6738), - [aux_sym__intrinsic_type_token8] = ACTIONS(6738), - [aux_sym__intrinsic_type_token9] = ACTIONS(6738), - [aux_sym__intrinsic_type_token10] = ACTIONS(6738), - [aux_sym_derived_type_token1] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6738), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6738), - [aux_sym_type_qualifier_token1] = ACTIONS(6738), - [aux_sym_type_qualifier_token2] = ACTIONS(6738), - [aux_sym_equivalence_statement_token1] = ACTIONS(6738), - [aux_sym_stop_statement_token1] = ACTIONS(6738), - [aux_sym_stop_statement_token2] = ACTIONS(6738), - [aux_sym_keyword_statement_token2] = ACTIONS(6738), - [aux_sym_keyword_statement_token3] = ACTIONS(6738), - [aux_sym_include_statement_token1] = ACTIONS(6738), - [aux_sym_data_statement_token1] = ACTIONS(6738), - [aux_sym__inline_if_statement_token1] = ACTIONS(6738), - [aux_sym_end_if_statement_token1] = ACTIONS(6738), - [aux_sym_elseif_clause_token2] = ACTIONS(6738), - [aux_sym_select_case_statement_token1] = ACTIONS(6738), - [aux_sym_block_construct_token1] = ACTIONS(6738), - [aux_sym_format_statement_token1] = ACTIONS(6738), - [aux_sym_inquire_statement_token1] = ACTIONS(6738), - [aux_sym_enum_statement_token1] = ACTIONS(6738), - [aux_sym_entry_statement_token1] = ACTIONS(6738), - [aux_sym_null_literal_token1] = ACTIONS(6738), - [aux_sym_coarray_statement_token1] = ACTIONS(6738), - [aux_sym_coarray_statement_token2] = ACTIONS(6738), - [aux_sym_coarray_statement_token6] = ACTIONS(6738), - [aux_sym_coarray_statement_token8] = ACTIONS(6738), - [aux_sym_coarray_statement_token11] = ACTIONS(6738), - [aux_sym_coarray_statement_token12] = ACTIONS(6738), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6738), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6738), - [aux_sym_identifier_token1] = ACTIONS(6738), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6742), - }, - [2895] = { - [aux_sym_preproc_include_token1] = ACTIONS(6922), - [aux_sym_preproc_def_token1] = ACTIONS(6922), - [aux_sym_preproc_if_token1] = ACTIONS(6922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6922), - [sym_preproc_directive] = ACTIONS(6922), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6922), - [aux_sym_end_module_statement_token1] = ACTIONS(6922), - [aux_sym_interface_statement_token1] = ACTIONS(6922), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6922), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6922), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6922), - [aux_sym_language_binding_token1] = ACTIONS(6922), - [aux_sym_procedure_attributes_token1] = ACTIONS(6922), - [aux_sym_procedure_attributes_token3] = ACTIONS(6922), - [aux_sym_contains_statement_token1] = ACTIONS(6922), - [aux_sym_use_statement_token1] = ACTIONS(6922), - [aux_sym_use_statement_token2] = ACTIONS(6922), - [aux_sym_implicit_statement_token1] = ACTIONS(6922), - [aux_sym_implicit_statement_token3] = ACTIONS(6922), - [aux_sym_implicit_statement_token4] = ACTIONS(6922), - [aux_sym_save_statement_token1] = ACTIONS(6922), - [aux_sym_private_statement_token1] = ACTIONS(6922), - [aux_sym_public_statement_token1] = ACTIONS(6922), - [aux_sym_namelist_statement_token1] = ACTIONS(6922), - [aux_sym_common_statement_token1] = ACTIONS(6922), - [aux_sym_import_statement_token1] = ACTIONS(6922), - [aux_sym_derived_type_definition_token1] = ACTIONS(6922), - [aux_sym_abstract_specifier_token1] = ACTIONS(6922), - [aux_sym_procedure_attribute_token6] = ACTIONS(6922), - [aux_sym_variable_attributes_token1] = ACTIONS(6922), - [aux_sym_variable_attributes_token2] = ACTIONS(6922), - [aux_sym_variable_attributes_token3] = ACTIONS(6922), - [aux_sym_variable_attributes_token4] = ACTIONS(6922), - [aux_sym_variable_attributes_token5] = ACTIONS(6922), - [aux_sym__intrinsic_type_token1] = ACTIONS(6922), - [aux_sym__intrinsic_type_token2] = ACTIONS(6922), - [aux_sym__intrinsic_type_token3] = ACTIONS(6922), - [aux_sym__intrinsic_type_token4] = ACTIONS(6922), - [aux_sym__intrinsic_type_token6] = ACTIONS(6922), - [aux_sym__intrinsic_type_token7] = ACTIONS(6922), - [aux_sym__intrinsic_type_token8] = ACTIONS(6922), - [aux_sym__intrinsic_type_token9] = ACTIONS(6922), - [aux_sym__intrinsic_type_token10] = ACTIONS(6922), - [aux_sym_derived_type_token1] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6922), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6922), - [aux_sym_type_qualifier_token1] = ACTIONS(6922), - [aux_sym_type_qualifier_token2] = ACTIONS(6922), - [aux_sym_equivalence_statement_token1] = ACTIONS(6922), - [aux_sym_stop_statement_token1] = ACTIONS(6922), - [aux_sym_stop_statement_token2] = ACTIONS(6922), - [aux_sym_keyword_statement_token2] = ACTIONS(6922), - [aux_sym_keyword_statement_token3] = ACTIONS(6922), - [aux_sym_include_statement_token1] = ACTIONS(6922), - [aux_sym_data_statement_token1] = ACTIONS(6922), - [aux_sym__inline_if_statement_token1] = ACTIONS(6922), - [aux_sym_end_if_statement_token1] = ACTIONS(6922), - [aux_sym_elseif_clause_token2] = ACTIONS(6922), - [aux_sym_select_case_statement_token1] = ACTIONS(6922), - [aux_sym_block_construct_token1] = ACTIONS(6922), - [aux_sym_format_statement_token1] = ACTIONS(6922), - [aux_sym_inquire_statement_token1] = ACTIONS(6922), - [aux_sym_enum_statement_token1] = ACTIONS(6922), - [aux_sym_entry_statement_token1] = ACTIONS(6922), - [aux_sym_null_literal_token1] = ACTIONS(6922), - [aux_sym_coarray_statement_token1] = ACTIONS(6922), - [aux_sym_coarray_statement_token2] = ACTIONS(6922), - [aux_sym_coarray_statement_token6] = ACTIONS(6922), - [aux_sym_coarray_statement_token8] = ACTIONS(6922), - [aux_sym_coarray_statement_token11] = ACTIONS(6922), - [aux_sym_coarray_statement_token12] = ACTIONS(6922), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6922), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6922), - [aux_sym_identifier_token1] = ACTIONS(6922), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6924), - }, - [2896] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_end_submodule_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - }, - [2897] = { - [sym_pointer_association_statement] = STATE(7605), - [sym__expression] = STATE(4503), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2898] = { - [aux_sym_preproc_include_token1] = ACTIONS(6910), - [aux_sym_preproc_def_token1] = ACTIONS(6910), - [aux_sym_preproc_if_token1] = ACTIONS(6910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6910), - [sym_preproc_directive] = ACTIONS(6910), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6910), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6910), - [aux_sym_interface_statement_token1] = ACTIONS(6910), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6910), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6910), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6910), - [aux_sym_language_binding_token1] = ACTIONS(6910), - [aux_sym_procedure_attributes_token1] = ACTIONS(6910), - [aux_sym_procedure_attributes_token3] = ACTIONS(6910), - [aux_sym_contains_statement_token1] = ACTIONS(6910), - [aux_sym_use_statement_token1] = ACTIONS(6910), - [aux_sym_use_statement_token2] = ACTIONS(6910), - [aux_sym_implicit_statement_token1] = ACTIONS(6910), - [aux_sym_implicit_statement_token3] = ACTIONS(6910), - [aux_sym_implicit_statement_token4] = ACTIONS(6910), - [aux_sym_save_statement_token1] = ACTIONS(6910), - [aux_sym_private_statement_token1] = ACTIONS(6910), - [aux_sym_public_statement_token1] = ACTIONS(6910), - [aux_sym_namelist_statement_token1] = ACTIONS(6910), - [aux_sym_common_statement_token1] = ACTIONS(6910), - [aux_sym_import_statement_token1] = ACTIONS(6910), - [aux_sym_derived_type_definition_token1] = ACTIONS(6910), - [aux_sym_abstract_specifier_token1] = ACTIONS(6910), - [aux_sym_procedure_attribute_token6] = ACTIONS(6910), - [aux_sym_variable_attributes_token1] = ACTIONS(6910), - [aux_sym_variable_attributes_token2] = ACTIONS(6910), - [aux_sym_variable_attributes_token3] = ACTIONS(6910), - [aux_sym_variable_attributes_token4] = ACTIONS(6910), - [aux_sym_variable_attributes_token5] = ACTIONS(6910), - [aux_sym__intrinsic_type_token1] = ACTIONS(6910), - [aux_sym__intrinsic_type_token2] = ACTIONS(6910), - [aux_sym__intrinsic_type_token3] = ACTIONS(6910), - [aux_sym__intrinsic_type_token4] = ACTIONS(6910), - [aux_sym__intrinsic_type_token6] = ACTIONS(6910), - [aux_sym__intrinsic_type_token7] = ACTIONS(6910), - [aux_sym__intrinsic_type_token8] = ACTIONS(6910), - [aux_sym__intrinsic_type_token9] = ACTIONS(6910), - [aux_sym__intrinsic_type_token10] = ACTIONS(6910), - [aux_sym_derived_type_token1] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6910), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6910), - [aux_sym_type_qualifier_token1] = ACTIONS(6910), - [aux_sym_type_qualifier_token2] = ACTIONS(6910), - [aux_sym_equivalence_statement_token1] = ACTIONS(6910), - [aux_sym_stop_statement_token1] = ACTIONS(6910), - [aux_sym_stop_statement_token2] = ACTIONS(6910), - [aux_sym_keyword_statement_token2] = ACTIONS(6910), - [aux_sym_keyword_statement_token3] = ACTIONS(6910), - [aux_sym_include_statement_token1] = ACTIONS(6910), - [aux_sym_data_statement_token1] = ACTIONS(6910), - [aux_sym__inline_if_statement_token1] = ACTIONS(6910), - [aux_sym_end_if_statement_token1] = ACTIONS(6910), - [aux_sym_elseif_clause_token2] = ACTIONS(6910), - [aux_sym_select_case_statement_token1] = ACTIONS(6910), - [aux_sym_block_construct_token1] = ACTIONS(6910), - [aux_sym_format_statement_token1] = ACTIONS(6910), - [aux_sym_inquire_statement_token1] = ACTIONS(6910), - [aux_sym_enum_statement_token1] = ACTIONS(6910), - [aux_sym_entry_statement_token1] = ACTIONS(6910), - [aux_sym_null_literal_token1] = ACTIONS(6910), - [aux_sym_coarray_statement_token1] = ACTIONS(6910), - [aux_sym_coarray_statement_token2] = ACTIONS(6910), - [aux_sym_coarray_statement_token6] = ACTIONS(6910), - [aux_sym_coarray_statement_token8] = ACTIONS(6910), - [aux_sym_coarray_statement_token11] = ACTIONS(6910), - [aux_sym_coarray_statement_token12] = ACTIONS(6910), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6910), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6910), - [aux_sym_identifier_token1] = ACTIONS(6910), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6912), - }, - [2899] = { - [sym__expression] = STATE(4510), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_COMMA] = ACTIONS(6926), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [2900] = { - [sym_concurrent_control] = STATE(7117), - [sym__expression] = STATE(4548), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4963), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), - }, - [2901] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5053), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_end_module_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - }, - [2902] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_end_module_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - }, - [2903] = { - [aux_sym_preproc_include_token1] = ACTIONS(6774), - [aux_sym_preproc_def_token1] = ACTIONS(6774), - [aux_sym_preproc_if_token1] = ACTIONS(6774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6774), - [sym_preproc_directive] = ACTIONS(6774), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6774), - [aux_sym_end_submodule_statement_token1] = ACTIONS(6774), - [aux_sym_interface_statement_token1] = ACTIONS(6774), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6774), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6774), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6774), - [aux_sym_language_binding_token1] = ACTIONS(6774), - [aux_sym_procedure_attributes_token1] = ACTIONS(6774), - [aux_sym_procedure_attributes_token3] = ACTIONS(6774), - [aux_sym_contains_statement_token1] = ACTIONS(6774), - [aux_sym_use_statement_token1] = ACTIONS(6774), - [aux_sym_use_statement_token2] = ACTIONS(6774), - [aux_sym_implicit_statement_token1] = ACTIONS(6774), - [aux_sym_implicit_statement_token3] = ACTIONS(6774), - [aux_sym_implicit_statement_token4] = ACTIONS(6774), - [aux_sym_save_statement_token1] = ACTIONS(6774), - [aux_sym_private_statement_token1] = ACTIONS(6774), - [aux_sym_public_statement_token1] = ACTIONS(6774), - [aux_sym_namelist_statement_token1] = ACTIONS(6774), - [aux_sym_common_statement_token1] = ACTIONS(6774), - [aux_sym_import_statement_token1] = ACTIONS(6774), - [aux_sym_derived_type_definition_token1] = ACTIONS(6774), - [aux_sym_abstract_specifier_token1] = ACTIONS(6774), - [aux_sym_procedure_attribute_token6] = ACTIONS(6774), - [aux_sym_variable_attributes_token1] = ACTIONS(6774), - [aux_sym_variable_attributes_token2] = ACTIONS(6774), - [aux_sym_variable_attributes_token3] = ACTIONS(6774), - [aux_sym_variable_attributes_token4] = ACTIONS(6774), - [aux_sym_variable_attributes_token5] = ACTIONS(6774), - [aux_sym__intrinsic_type_token1] = ACTIONS(6774), - [aux_sym__intrinsic_type_token2] = ACTIONS(6774), - [aux_sym__intrinsic_type_token3] = ACTIONS(6774), - [aux_sym__intrinsic_type_token4] = ACTIONS(6774), - [aux_sym__intrinsic_type_token6] = ACTIONS(6774), - [aux_sym__intrinsic_type_token7] = ACTIONS(6774), - [aux_sym__intrinsic_type_token8] = ACTIONS(6774), - [aux_sym__intrinsic_type_token9] = ACTIONS(6774), - [aux_sym__intrinsic_type_token10] = ACTIONS(6774), - [aux_sym_derived_type_token1] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6774), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6774), - [aux_sym_type_qualifier_token1] = ACTIONS(6774), - [aux_sym_type_qualifier_token2] = ACTIONS(6774), - [aux_sym_equivalence_statement_token1] = ACTIONS(6774), - [aux_sym_stop_statement_token1] = ACTIONS(6774), - [aux_sym_stop_statement_token2] = ACTIONS(6774), - [aux_sym_keyword_statement_token2] = ACTIONS(6774), - [aux_sym_keyword_statement_token3] = ACTIONS(6774), - [aux_sym_include_statement_token1] = ACTIONS(6774), - [aux_sym_data_statement_token1] = ACTIONS(6774), - [aux_sym__inline_if_statement_token1] = ACTIONS(6774), - [aux_sym_end_if_statement_token1] = ACTIONS(6774), - [aux_sym_elseif_clause_token2] = ACTIONS(6774), - [aux_sym_select_case_statement_token1] = ACTIONS(6774), - [aux_sym_block_construct_token1] = ACTIONS(6774), - [aux_sym_format_statement_token1] = ACTIONS(6774), - [aux_sym_inquire_statement_token1] = ACTIONS(6774), - [aux_sym_enum_statement_token1] = ACTIONS(6774), - [aux_sym_entry_statement_token1] = ACTIONS(6774), - [aux_sym_null_literal_token1] = ACTIONS(6774), - [aux_sym_coarray_statement_token1] = ACTIONS(6774), - [aux_sym_coarray_statement_token2] = ACTIONS(6774), - [aux_sym_coarray_statement_token6] = ACTIONS(6774), - [aux_sym_coarray_statement_token8] = ACTIONS(6774), - [aux_sym_coarray_statement_token11] = ACTIONS(6774), - [aux_sym_coarray_statement_token12] = ACTIONS(6774), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6774), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6774), - [aux_sym_identifier_token1] = ACTIONS(6774), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(6778), - }, - [2904] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_end_module_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - }, - [2905] = { - [aux_sym_preproc_include_token1] = ACTIONS(5402), - [aux_sym_preproc_def_token1] = ACTIONS(5402), - [aux_sym_preproc_if_token1] = ACTIONS(5402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5402), - [sym_preproc_directive] = ACTIONS(5402), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5402), - [aux_sym_end_module_statement_token1] = ACTIONS(5402), - [aux_sym_interface_statement_token1] = ACTIONS(5402), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5402), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5402), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5402), - [aux_sym_language_binding_token1] = ACTIONS(5402), - [aux_sym_procedure_attributes_token1] = ACTIONS(5402), - [aux_sym_procedure_attributes_token3] = ACTIONS(5402), - [aux_sym_contains_statement_token1] = ACTIONS(5402), - [aux_sym_use_statement_token1] = ACTIONS(5402), - [aux_sym_use_statement_token2] = ACTIONS(5402), - [aux_sym_implicit_statement_token1] = ACTIONS(5402), - [aux_sym_implicit_statement_token3] = ACTIONS(5402), - [aux_sym_implicit_statement_token4] = ACTIONS(5402), - [aux_sym_save_statement_token1] = ACTIONS(5402), - [aux_sym_private_statement_token1] = ACTIONS(5402), - [aux_sym_public_statement_token1] = ACTIONS(5402), - [aux_sym_namelist_statement_token1] = ACTIONS(5402), - [aux_sym_common_statement_token1] = ACTIONS(5402), - [aux_sym_import_statement_token1] = ACTIONS(5402), - [aux_sym_derived_type_definition_token1] = ACTIONS(5402), - [aux_sym_abstract_specifier_token1] = ACTIONS(5402), - [aux_sym_procedure_attribute_token6] = ACTIONS(5402), - [aux_sym_variable_attributes_token1] = ACTIONS(5402), - [aux_sym_variable_attributes_token2] = ACTIONS(5402), - [aux_sym_variable_attributes_token3] = ACTIONS(5402), - [aux_sym_variable_attributes_token4] = ACTIONS(5402), - [aux_sym_variable_attributes_token5] = ACTIONS(5402), - [aux_sym__intrinsic_type_token1] = ACTIONS(5402), - [aux_sym__intrinsic_type_token2] = ACTIONS(5402), - [aux_sym__intrinsic_type_token3] = ACTIONS(5402), - [aux_sym__intrinsic_type_token4] = ACTIONS(5402), - [aux_sym__intrinsic_type_token6] = ACTIONS(5402), - [aux_sym__intrinsic_type_token7] = ACTIONS(5402), - [aux_sym__intrinsic_type_token8] = ACTIONS(5402), - [aux_sym__intrinsic_type_token9] = ACTIONS(5402), - [aux_sym__intrinsic_type_token10] = ACTIONS(5402), - [aux_sym_derived_type_token1] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5402), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5402), - [aux_sym_type_qualifier_token1] = ACTIONS(5402), - [aux_sym_type_qualifier_token2] = ACTIONS(5402), - [aux_sym_equivalence_statement_token1] = ACTIONS(5402), - [aux_sym_stop_statement_token1] = ACTIONS(5402), - [aux_sym_stop_statement_token2] = ACTIONS(5402), - [aux_sym_keyword_statement_token2] = ACTIONS(5402), - [aux_sym_keyword_statement_token3] = ACTIONS(5402), - [aux_sym_include_statement_token1] = ACTIONS(5402), - [aux_sym_data_statement_token1] = ACTIONS(5402), - [aux_sym__inline_if_statement_token1] = ACTIONS(5402), - [aux_sym_end_if_statement_token1] = ACTIONS(5402), - [aux_sym_elseif_clause_token2] = ACTIONS(5402), - [aux_sym_select_case_statement_token1] = ACTIONS(5402), - [aux_sym_block_construct_token1] = ACTIONS(5402), - [aux_sym_format_statement_token1] = ACTIONS(5402), - [aux_sym_inquire_statement_token1] = ACTIONS(5402), - [aux_sym_enum_statement_token1] = ACTIONS(5402), - [aux_sym_entry_statement_token1] = ACTIONS(5402), - [aux_sym_null_literal_token1] = ACTIONS(5402), - [aux_sym_coarray_statement_token1] = ACTIONS(5402), - [aux_sym_coarray_statement_token2] = ACTIONS(5402), - [aux_sym_coarray_statement_token6] = ACTIONS(5402), - [aux_sym_coarray_statement_token8] = ACTIONS(5402), - [aux_sym_coarray_statement_token11] = ACTIONS(5402), - [aux_sym_coarray_statement_token12] = ACTIONS(5402), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5402), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5402), - [aux_sym_identifier_token1] = ACTIONS(5402), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5404), - }, - [2906] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_end_module_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), - }, - [2907] = { - [sym__expression] = STATE(4161), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(6932), - [sym__string_literal_kind] = ACTIONS(6934), - }, - [2908] = { - [sym__expression] = STATE(4339), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [2909] = { - [sym__expression] = STATE(4359), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2829] = { + [aux_sym_preproc_include_token1] = ACTIONS(6890), + [aux_sym_preproc_def_token1] = ACTIONS(6890), + [aux_sym_preproc_if_token1] = ACTIONS(6890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6890), + [sym_preproc_directive] = ACTIONS(6890), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(6890), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6890), + [aux_sym_interface_statement_token1] = ACTIONS(6890), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6890), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6890), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6890), + [aux_sym_language_binding_token1] = ACTIONS(6890), + [aux_sym_procedure_attributes_token1] = ACTIONS(6890), + [aux_sym_procedure_attributes_token3] = ACTIONS(6890), + [aux_sym_contains_statement_token1] = ACTIONS(6890), + [aux_sym_use_statement_token1] = ACTIONS(6890), + [aux_sym_use_statement_token2] = ACTIONS(6890), + [aux_sym_implicit_statement_token1] = ACTIONS(6890), + [aux_sym_implicit_statement_token3] = ACTIONS(6890), + [aux_sym_implicit_statement_token4] = ACTIONS(6890), + [aux_sym_save_statement_token1] = ACTIONS(6890), + [aux_sym_private_statement_token1] = ACTIONS(6890), + [aux_sym_public_statement_token1] = ACTIONS(6890), + [aux_sym_namelist_statement_token1] = ACTIONS(6890), + [aux_sym_common_statement_token1] = ACTIONS(6890), + [aux_sym_import_statement_token1] = ACTIONS(6890), + [aux_sym_derived_type_definition_token1] = ACTIONS(6890), + [aux_sym_abstract_specifier_token1] = ACTIONS(6890), + [aux_sym_procedure_attribute_token6] = ACTIONS(6890), + [aux_sym_variable_attributes_token1] = ACTIONS(6890), + [aux_sym_variable_attributes_token2] = ACTIONS(6890), + [aux_sym_variable_attributes_token3] = ACTIONS(6890), + [aux_sym_variable_attributes_token4] = ACTIONS(6890), + [aux_sym_variable_attributes_token5] = ACTIONS(6890), + [aux_sym__intrinsic_type_token1] = ACTIONS(6890), + [aux_sym__intrinsic_type_token2] = ACTIONS(6890), + [aux_sym__intrinsic_type_token3] = ACTIONS(6890), + [aux_sym__intrinsic_type_token4] = ACTIONS(6890), + [aux_sym__intrinsic_type_token6] = ACTIONS(6890), + [aux_sym__intrinsic_type_token7] = ACTIONS(6890), + [aux_sym__intrinsic_type_token8] = ACTIONS(6890), + [aux_sym__intrinsic_type_token9] = ACTIONS(6890), + [aux_sym__intrinsic_type_token10] = ACTIONS(6890), + [aux_sym_derived_type_token1] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6890), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6890), + [aux_sym_type_qualifier_token1] = ACTIONS(6890), + [aux_sym_type_qualifier_token2] = ACTIONS(6890), + [aux_sym_equivalence_statement_token1] = ACTIONS(6890), + [aux_sym_stop_statement_token1] = ACTIONS(6890), + [aux_sym_stop_statement_token2] = ACTIONS(6890), + [aux_sym_keyword_statement_token2] = ACTIONS(6890), + [aux_sym_keyword_statement_token3] = ACTIONS(6890), + [aux_sym_include_statement_token1] = ACTIONS(6890), + [aux_sym_data_statement_token1] = ACTIONS(6890), + [aux_sym__inline_if_statement_token1] = ACTIONS(6890), + [aux_sym_end_if_statement_token1] = ACTIONS(6890), + [aux_sym_elseif_clause_token2] = ACTIONS(6890), + [aux_sym_select_case_statement_token1] = ACTIONS(6890), + [aux_sym_block_construct_token1] = ACTIONS(6890), + [aux_sym_format_statement_token1] = ACTIONS(6890), + [aux_sym_inquire_statement_token1] = ACTIONS(6890), + [aux_sym_enum_statement_token1] = ACTIONS(6890), + [aux_sym_entry_statement_token1] = ACTIONS(6890), + [aux_sym_null_literal_token1] = ACTIONS(6890), + [aux_sym_coarray_statement_token1] = ACTIONS(6890), + [aux_sym_coarray_statement_token2] = ACTIONS(6890), + [aux_sym_coarray_statement_token6] = ACTIONS(6890), + [aux_sym_coarray_statement_token8] = ACTIONS(6890), + [aux_sym_coarray_statement_token11] = ACTIONS(6890), + [aux_sym_coarray_statement_token12] = ACTIONS(6890), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6890), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6890), + [aux_sym_identifier_token1] = ACTIONS(6890), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__integer_literal] = ACTIONS(6892), }, - [2910] = { - [sym__expression] = STATE(4523), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2830] = { + [aux_sym_preproc_include_token1] = ACTIONS(5081), + [aux_sym_preproc_def_token1] = ACTIONS(5081), + [aux_sym_preproc_if_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5081), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5081), + [sym_preproc_directive] = ACTIONS(5081), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(5081), + [aux_sym_end_module_statement_token1] = ACTIONS(5081), + [aux_sym_interface_statement_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), + [aux_sym_language_binding_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token3] = ACTIONS(5081), + [aux_sym_contains_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token2] = ACTIONS(5081), + [aux_sym_implicit_statement_token1] = ACTIONS(5081), + [aux_sym_implicit_statement_token3] = ACTIONS(5081), + [aux_sym_implicit_statement_token4] = ACTIONS(5081), + [aux_sym_save_statement_token1] = ACTIONS(5081), + [aux_sym_private_statement_token1] = ACTIONS(5081), + [aux_sym_public_statement_token1] = ACTIONS(5081), + [aux_sym_namelist_statement_token1] = ACTIONS(5081), + [aux_sym_common_statement_token1] = ACTIONS(5081), + [aux_sym_import_statement_token1] = ACTIONS(5081), + [aux_sym_derived_type_definition_token1] = ACTIONS(5081), + [aux_sym_abstract_specifier_token1] = ACTIONS(5081), + [aux_sym_procedure_attribute_token6] = ACTIONS(5081), + [aux_sym_variable_attributes_token1] = ACTIONS(5081), + [aux_sym_variable_attributes_token2] = ACTIONS(5081), + [aux_sym_variable_attributes_token3] = ACTIONS(5081), + [aux_sym_variable_attributes_token4] = ACTIONS(5081), + [aux_sym_variable_attributes_token5] = ACTIONS(5081), + [aux_sym__intrinsic_type_token1] = ACTIONS(5081), + [aux_sym__intrinsic_type_token2] = ACTIONS(5081), + [aux_sym__intrinsic_type_token3] = ACTIONS(5081), + [aux_sym__intrinsic_type_token4] = ACTIONS(5081), + [aux_sym__intrinsic_type_token6] = ACTIONS(5081), + [aux_sym__intrinsic_type_token7] = ACTIONS(5081), + [aux_sym__intrinsic_type_token8] = ACTIONS(5081), + [aux_sym__intrinsic_type_token9] = ACTIONS(5081), + [aux_sym__intrinsic_type_token10] = ACTIONS(5081), + [aux_sym_derived_type_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), + [aux_sym_type_qualifier_token1] = ACTIONS(5081), + [aux_sym_type_qualifier_token2] = ACTIONS(5081), + [aux_sym_equivalence_statement_token1] = ACTIONS(5081), + [aux_sym_stop_statement_token1] = ACTIONS(5081), + [aux_sym_stop_statement_token2] = ACTIONS(5081), + [aux_sym_keyword_statement_token2] = ACTIONS(5081), + [aux_sym_keyword_statement_token3] = ACTIONS(5081), + [aux_sym_include_statement_token1] = ACTIONS(5081), + [aux_sym_data_statement_token1] = ACTIONS(5081), + [aux_sym__inline_if_statement_token1] = ACTIONS(5081), + [aux_sym_end_if_statement_token1] = ACTIONS(5081), + [aux_sym_elseif_clause_token2] = ACTIONS(5081), + [aux_sym_select_case_statement_token1] = ACTIONS(5081), + [aux_sym_block_construct_token1] = ACTIONS(5081), + [aux_sym_format_statement_token1] = ACTIONS(5081), + [aux_sym_inquire_statement_token1] = ACTIONS(5081), + [aux_sym_enum_statement_token1] = ACTIONS(5081), + [aux_sym_entry_statement_token1] = ACTIONS(5081), + [aux_sym_null_literal_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token2] = ACTIONS(5081), + [aux_sym_coarray_statement_token6] = ACTIONS(5081), + [aux_sym_coarray_statement_token8] = ACTIONS(5081), + [aux_sym_coarray_statement_token11] = ACTIONS(5081), + [aux_sym_coarray_statement_token12] = ACTIONS(5081), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), + [aux_sym_identifier_token1] = ACTIONS(5081), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__integer_literal] = ACTIONS(5083), }, - [2911] = { - [sym__expression] = STATE(4246), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2831] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + }, + [2832] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4393), }, - [2912] = { - [sym__name] = STATE(6881), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(888), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_program_statement_token1] = ACTIONS(6936), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6938), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [2833] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6938), + [sym__integer_literal] = ACTIONS(4613), }, - [2913] = { - [sym__expression] = STATE(4247), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2834] = { + [aux_sym_preproc_include_token1] = ACTIONS(6742), + [aux_sym_preproc_def_token1] = ACTIONS(6742), + [aux_sym_preproc_if_token1] = ACTIONS(6742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6742), + [sym_preproc_directive] = ACTIONS(6742), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6742), + [aux_sym_end_module_statement_token1] = ACTIONS(6742), + [aux_sym_interface_statement_token1] = ACTIONS(6742), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6742), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6742), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6742), + [aux_sym_language_binding_token1] = ACTIONS(6742), + [aux_sym_procedure_attributes_token1] = ACTIONS(6742), + [aux_sym_procedure_attributes_token3] = ACTIONS(6742), + [aux_sym_contains_statement_token1] = ACTIONS(6742), + [aux_sym_use_statement_token1] = ACTIONS(6742), + [aux_sym_use_statement_token2] = ACTIONS(6742), + [aux_sym_implicit_statement_token1] = ACTIONS(6742), + [aux_sym_implicit_statement_token3] = ACTIONS(6742), + [aux_sym_implicit_statement_token4] = ACTIONS(6742), + [aux_sym_save_statement_token1] = ACTIONS(6742), + [aux_sym_private_statement_token1] = ACTIONS(6742), + [aux_sym_public_statement_token1] = ACTIONS(6742), + [aux_sym_namelist_statement_token1] = ACTIONS(6742), + [aux_sym_common_statement_token1] = ACTIONS(6742), + [aux_sym_import_statement_token1] = ACTIONS(6742), + [aux_sym_derived_type_definition_token1] = ACTIONS(6742), + [aux_sym_abstract_specifier_token1] = ACTIONS(6742), + [aux_sym_procedure_attribute_token6] = ACTIONS(6742), + [aux_sym_variable_attributes_token1] = ACTIONS(6742), + [aux_sym_variable_attributes_token2] = ACTIONS(6742), + [aux_sym_variable_attributes_token3] = ACTIONS(6742), + [aux_sym_variable_attributes_token4] = ACTIONS(6742), + [aux_sym_variable_attributes_token5] = ACTIONS(6742), + [aux_sym__intrinsic_type_token1] = ACTIONS(6742), + [aux_sym__intrinsic_type_token2] = ACTIONS(6742), + [aux_sym__intrinsic_type_token3] = ACTIONS(6742), + [aux_sym__intrinsic_type_token4] = ACTIONS(6742), + [aux_sym__intrinsic_type_token6] = ACTIONS(6742), + [aux_sym__intrinsic_type_token7] = ACTIONS(6742), + [aux_sym__intrinsic_type_token8] = ACTIONS(6742), + [aux_sym__intrinsic_type_token9] = ACTIONS(6742), + [aux_sym__intrinsic_type_token10] = ACTIONS(6742), + [aux_sym_derived_type_token1] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6742), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6742), + [aux_sym_type_qualifier_token1] = ACTIONS(6742), + [aux_sym_type_qualifier_token2] = ACTIONS(6742), + [aux_sym_equivalence_statement_token1] = ACTIONS(6742), + [aux_sym_stop_statement_token1] = ACTIONS(6742), + [aux_sym_stop_statement_token2] = ACTIONS(6742), + [aux_sym_keyword_statement_token2] = ACTIONS(6742), + [aux_sym_keyword_statement_token3] = ACTIONS(6742), + [aux_sym_include_statement_token1] = ACTIONS(6742), + [aux_sym_data_statement_token1] = ACTIONS(6742), + [aux_sym__inline_if_statement_token1] = ACTIONS(6742), + [aux_sym_end_if_statement_token1] = ACTIONS(6742), + [aux_sym_elseif_clause_token2] = ACTIONS(6742), + [aux_sym_select_case_statement_token1] = ACTIONS(6742), + [aux_sym_block_construct_token1] = ACTIONS(6742), + [aux_sym_format_statement_token1] = ACTIONS(6742), + [aux_sym_inquire_statement_token1] = ACTIONS(6742), + [aux_sym_enum_statement_token1] = ACTIONS(6742), + [aux_sym_entry_statement_token1] = ACTIONS(6742), + [aux_sym_null_literal_token1] = ACTIONS(6742), + [aux_sym_coarray_statement_token1] = ACTIONS(6742), + [aux_sym_coarray_statement_token2] = ACTIONS(6742), + [aux_sym_coarray_statement_token6] = ACTIONS(6742), + [aux_sym_coarray_statement_token8] = ACTIONS(6742), + [aux_sym_coarray_statement_token11] = ACTIONS(6742), + [aux_sym_coarray_statement_token12] = ACTIONS(6742), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6742), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6742), + [aux_sym_identifier_token1] = ACTIONS(6742), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6746), + }, + [2835] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4397), }, - [2914] = { - [sym__expression] = STATE(4528), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2836] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4401), }, - [2915] = { - [sym__name] = STATE(6796), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(883), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(6940), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6942), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [2837] = { + [aux_sym_preproc_include_token1] = ACTIONS(6910), + [aux_sym_preproc_def_token1] = ACTIONS(6910), + [aux_sym_preproc_if_token1] = ACTIONS(6910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6910), + [sym_preproc_directive] = ACTIONS(6910), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6910), + [aux_sym_end_module_statement_token1] = ACTIONS(6910), + [aux_sym_interface_statement_token1] = ACTIONS(6910), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6910), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6910), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6910), + [aux_sym_language_binding_token1] = ACTIONS(6910), + [aux_sym_procedure_attributes_token1] = ACTIONS(6910), + [aux_sym_procedure_attributes_token3] = ACTIONS(6910), + [aux_sym_contains_statement_token1] = ACTIONS(6910), + [aux_sym_use_statement_token1] = ACTIONS(6910), + [aux_sym_use_statement_token2] = ACTIONS(6910), + [aux_sym_implicit_statement_token1] = ACTIONS(6910), + [aux_sym_implicit_statement_token3] = ACTIONS(6910), + [aux_sym_implicit_statement_token4] = ACTIONS(6910), + [aux_sym_save_statement_token1] = ACTIONS(6910), + [aux_sym_private_statement_token1] = ACTIONS(6910), + [aux_sym_public_statement_token1] = ACTIONS(6910), + [aux_sym_namelist_statement_token1] = ACTIONS(6910), + [aux_sym_common_statement_token1] = ACTIONS(6910), + [aux_sym_import_statement_token1] = ACTIONS(6910), + [aux_sym_derived_type_definition_token1] = ACTIONS(6910), + [aux_sym_abstract_specifier_token1] = ACTIONS(6910), + [aux_sym_procedure_attribute_token6] = ACTIONS(6910), + [aux_sym_variable_attributes_token1] = ACTIONS(6910), + [aux_sym_variable_attributes_token2] = ACTIONS(6910), + [aux_sym_variable_attributes_token3] = ACTIONS(6910), + [aux_sym_variable_attributes_token4] = ACTIONS(6910), + [aux_sym_variable_attributes_token5] = ACTIONS(6910), + [aux_sym__intrinsic_type_token1] = ACTIONS(6910), + [aux_sym__intrinsic_type_token2] = ACTIONS(6910), + [aux_sym__intrinsic_type_token3] = ACTIONS(6910), + [aux_sym__intrinsic_type_token4] = ACTIONS(6910), + [aux_sym__intrinsic_type_token6] = ACTIONS(6910), + [aux_sym__intrinsic_type_token7] = ACTIONS(6910), + [aux_sym__intrinsic_type_token8] = ACTIONS(6910), + [aux_sym__intrinsic_type_token9] = ACTIONS(6910), + [aux_sym__intrinsic_type_token10] = ACTIONS(6910), + [aux_sym_derived_type_token1] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6910), + [aux_sym_type_qualifier_token1] = ACTIONS(6910), + [aux_sym_type_qualifier_token2] = ACTIONS(6910), + [aux_sym_equivalence_statement_token1] = ACTIONS(6910), + [aux_sym_stop_statement_token1] = ACTIONS(6910), + [aux_sym_stop_statement_token2] = ACTIONS(6910), + [aux_sym_keyword_statement_token2] = ACTIONS(6910), + [aux_sym_keyword_statement_token3] = ACTIONS(6910), + [aux_sym_include_statement_token1] = ACTIONS(6910), + [aux_sym_data_statement_token1] = ACTIONS(6910), + [aux_sym__inline_if_statement_token1] = ACTIONS(6910), + [aux_sym_end_if_statement_token1] = ACTIONS(6910), + [aux_sym_elseif_clause_token2] = ACTIONS(6910), + [aux_sym_select_case_statement_token1] = ACTIONS(6910), + [aux_sym_block_construct_token1] = ACTIONS(6910), + [aux_sym_format_statement_token1] = ACTIONS(6910), + [aux_sym_inquire_statement_token1] = ACTIONS(6910), + [aux_sym_enum_statement_token1] = ACTIONS(6910), + [aux_sym_entry_statement_token1] = ACTIONS(6910), + [aux_sym_null_literal_token1] = ACTIONS(6910), + [aux_sym_coarray_statement_token1] = ACTIONS(6910), + [aux_sym_coarray_statement_token2] = ACTIONS(6910), + [aux_sym_coarray_statement_token6] = ACTIONS(6910), + [aux_sym_coarray_statement_token8] = ACTIONS(6910), + [aux_sym_coarray_statement_token11] = ACTIONS(6910), + [aux_sym_coarray_statement_token12] = ACTIONS(6910), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6910), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6910), + [aux_sym_identifier_token1] = ACTIONS(6910), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6942), + [sym__integer_literal] = ACTIONS(6912), }, - [2916] = { - [sym__expression] = STATE(4234), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2838] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4405), }, - [2917] = { - [sym__expression] = STATE(4235), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2839] = { + [aux_sym_preproc_include_token1] = ACTIONS(6914), + [aux_sym_preproc_def_token1] = ACTIONS(6914), + [aux_sym_preproc_if_token1] = ACTIONS(6914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6914), + [sym_preproc_directive] = ACTIONS(6914), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6914), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6914), + [aux_sym_interface_statement_token1] = ACTIONS(6914), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6914), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6914), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6914), + [aux_sym_language_binding_token1] = ACTIONS(6914), + [aux_sym_procedure_attributes_token1] = ACTIONS(6914), + [aux_sym_procedure_attributes_token3] = ACTIONS(6914), + [aux_sym_contains_statement_token1] = ACTIONS(6914), + [aux_sym_use_statement_token1] = ACTIONS(6914), + [aux_sym_use_statement_token2] = ACTIONS(6914), + [aux_sym_implicit_statement_token1] = ACTIONS(6914), + [aux_sym_implicit_statement_token3] = ACTIONS(6914), + [aux_sym_implicit_statement_token4] = ACTIONS(6914), + [aux_sym_save_statement_token1] = ACTIONS(6914), + [aux_sym_private_statement_token1] = ACTIONS(6914), + [aux_sym_public_statement_token1] = ACTIONS(6914), + [aux_sym_namelist_statement_token1] = ACTIONS(6914), + [aux_sym_common_statement_token1] = ACTIONS(6914), + [aux_sym_import_statement_token1] = ACTIONS(6914), + [aux_sym_derived_type_definition_token1] = ACTIONS(6914), + [aux_sym_abstract_specifier_token1] = ACTIONS(6914), + [aux_sym_procedure_attribute_token6] = ACTIONS(6914), + [aux_sym_variable_attributes_token1] = ACTIONS(6914), + [aux_sym_variable_attributes_token2] = ACTIONS(6914), + [aux_sym_variable_attributes_token3] = ACTIONS(6914), + [aux_sym_variable_attributes_token4] = ACTIONS(6914), + [aux_sym_variable_attributes_token5] = ACTIONS(6914), + [aux_sym__intrinsic_type_token1] = ACTIONS(6914), + [aux_sym__intrinsic_type_token2] = ACTIONS(6914), + [aux_sym__intrinsic_type_token3] = ACTIONS(6914), + [aux_sym__intrinsic_type_token4] = ACTIONS(6914), + [aux_sym__intrinsic_type_token6] = ACTIONS(6914), + [aux_sym__intrinsic_type_token7] = ACTIONS(6914), + [aux_sym__intrinsic_type_token8] = ACTIONS(6914), + [aux_sym__intrinsic_type_token9] = ACTIONS(6914), + [aux_sym__intrinsic_type_token10] = ACTIONS(6914), + [aux_sym_derived_type_token1] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6914), + [aux_sym_type_qualifier_token1] = ACTIONS(6914), + [aux_sym_type_qualifier_token2] = ACTIONS(6914), + [aux_sym_equivalence_statement_token1] = ACTIONS(6914), + [aux_sym_stop_statement_token1] = ACTIONS(6914), + [aux_sym_stop_statement_token2] = ACTIONS(6914), + [aux_sym_keyword_statement_token2] = ACTIONS(6914), + [aux_sym_keyword_statement_token3] = ACTIONS(6914), + [aux_sym_include_statement_token1] = ACTIONS(6914), + [aux_sym_data_statement_token1] = ACTIONS(6914), + [aux_sym__inline_if_statement_token1] = ACTIONS(6914), + [aux_sym_end_if_statement_token1] = ACTIONS(6914), + [aux_sym_elseif_clause_token2] = ACTIONS(6914), + [aux_sym_select_case_statement_token1] = ACTIONS(6914), + [aux_sym_block_construct_token1] = ACTIONS(6914), + [aux_sym_format_statement_token1] = ACTIONS(6914), + [aux_sym_inquire_statement_token1] = ACTIONS(6914), + [aux_sym_enum_statement_token1] = ACTIONS(6914), + [aux_sym_entry_statement_token1] = ACTIONS(6914), + [aux_sym_null_literal_token1] = ACTIONS(6914), + [aux_sym_coarray_statement_token1] = ACTIONS(6914), + [aux_sym_coarray_statement_token2] = ACTIONS(6914), + [aux_sym_coarray_statement_token6] = ACTIONS(6914), + [aux_sym_coarray_statement_token8] = ACTIONS(6914), + [aux_sym_coarray_statement_token11] = ACTIONS(6914), + [aux_sym_coarray_statement_token12] = ACTIONS(6914), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6914), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6914), + [aux_sym_identifier_token1] = ACTIONS(6914), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6916), + }, + [2840] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4617), }, - [2918] = { - [sym__expression] = STATE(4237), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2841] = { + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_contains_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4513), }, - [2919] = { - [sym__expression] = STATE(4238), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2842] = { + [aux_sym_preproc_include_token1] = ACTIONS(6878), + [aux_sym_preproc_def_token1] = ACTIONS(6878), + [aux_sym_preproc_if_token1] = ACTIONS(6878), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6878), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6878), + [sym_preproc_directive] = ACTIONS(6878), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(6878), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6878), + [aux_sym_interface_statement_token1] = ACTIONS(6878), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6878), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6878), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6878), + [aux_sym_language_binding_token1] = ACTIONS(6878), + [aux_sym_procedure_attributes_token1] = ACTIONS(6878), + [aux_sym_procedure_attributes_token3] = ACTIONS(6878), + [aux_sym_contains_statement_token1] = ACTIONS(6878), + [aux_sym_use_statement_token1] = ACTIONS(6878), + [aux_sym_use_statement_token2] = ACTIONS(6878), + [aux_sym_implicit_statement_token1] = ACTIONS(6878), + [aux_sym_implicit_statement_token3] = ACTIONS(6878), + [aux_sym_implicit_statement_token4] = ACTIONS(6878), + [aux_sym_save_statement_token1] = ACTIONS(6878), + [aux_sym_private_statement_token1] = ACTIONS(6878), + [aux_sym_public_statement_token1] = ACTIONS(6878), + [aux_sym_namelist_statement_token1] = ACTIONS(6878), + [aux_sym_common_statement_token1] = ACTIONS(6878), + [aux_sym_import_statement_token1] = ACTIONS(6878), + [aux_sym_derived_type_definition_token1] = ACTIONS(6878), + [aux_sym_abstract_specifier_token1] = ACTIONS(6878), + [aux_sym_procedure_attribute_token6] = ACTIONS(6878), + [aux_sym_variable_attributes_token1] = ACTIONS(6878), + [aux_sym_variable_attributes_token2] = ACTIONS(6878), + [aux_sym_variable_attributes_token3] = ACTIONS(6878), + [aux_sym_variable_attributes_token4] = ACTIONS(6878), + [aux_sym_variable_attributes_token5] = ACTIONS(6878), + [aux_sym__intrinsic_type_token1] = ACTIONS(6878), + [aux_sym__intrinsic_type_token2] = ACTIONS(6878), + [aux_sym__intrinsic_type_token3] = ACTIONS(6878), + [aux_sym__intrinsic_type_token4] = ACTIONS(6878), + [aux_sym__intrinsic_type_token6] = ACTIONS(6878), + [aux_sym__intrinsic_type_token7] = ACTIONS(6878), + [aux_sym__intrinsic_type_token8] = ACTIONS(6878), + [aux_sym__intrinsic_type_token9] = ACTIONS(6878), + [aux_sym__intrinsic_type_token10] = ACTIONS(6878), + [aux_sym_derived_type_token1] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6878), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6878), + [aux_sym_type_qualifier_token1] = ACTIONS(6878), + [aux_sym_type_qualifier_token2] = ACTIONS(6878), + [aux_sym_equivalence_statement_token1] = ACTIONS(6878), + [aux_sym_stop_statement_token1] = ACTIONS(6878), + [aux_sym_stop_statement_token2] = ACTIONS(6878), + [aux_sym_keyword_statement_token2] = ACTIONS(6878), + [aux_sym_keyword_statement_token3] = ACTIONS(6878), + [aux_sym_include_statement_token1] = ACTIONS(6878), + [aux_sym_data_statement_token1] = ACTIONS(6878), + [aux_sym__inline_if_statement_token1] = ACTIONS(6878), + [aux_sym_end_if_statement_token1] = ACTIONS(6878), + [aux_sym_elseif_clause_token2] = ACTIONS(6878), + [aux_sym_select_case_statement_token1] = ACTIONS(6878), + [aux_sym_block_construct_token1] = ACTIONS(6878), + [aux_sym_format_statement_token1] = ACTIONS(6878), + [aux_sym_inquire_statement_token1] = ACTIONS(6878), + [aux_sym_enum_statement_token1] = ACTIONS(6878), + [aux_sym_entry_statement_token1] = ACTIONS(6878), + [aux_sym_null_literal_token1] = ACTIONS(6878), + [aux_sym_coarray_statement_token1] = ACTIONS(6878), + [aux_sym_coarray_statement_token2] = ACTIONS(6878), + [aux_sym_coarray_statement_token6] = ACTIONS(6878), + [aux_sym_coarray_statement_token8] = ACTIONS(6878), + [aux_sym_coarray_statement_token11] = ACTIONS(6878), + [aux_sym_coarray_statement_token12] = ACTIONS(6878), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6878), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6878), + [aux_sym_identifier_token1] = ACTIONS(6878), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(6880), }, - [2920] = { - [sym__expression] = STATE(4240), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2843] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + }, + [2844] = { + [aux_sym_preproc_include_token1] = ACTIONS(4255), + [aux_sym_preproc_def_token1] = ACTIONS(4255), + [aux_sym_preproc_if_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4255), + [sym_preproc_directive] = ACTIONS(4255), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_end_module_statement_token1] = ACTIONS(4255), + [aux_sym_interface_statement_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4255), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4255), + [aux_sym_language_binding_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token1] = ACTIONS(4255), + [aux_sym_procedure_attributes_token3] = ACTIONS(4255), + [aux_sym_contains_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token1] = ACTIONS(4255), + [aux_sym_use_statement_token2] = ACTIONS(4255), + [aux_sym_implicit_statement_token1] = ACTIONS(4255), + [aux_sym_implicit_statement_token3] = ACTIONS(4255), + [aux_sym_implicit_statement_token4] = ACTIONS(4255), + [aux_sym_save_statement_token1] = ACTIONS(4255), + [aux_sym_private_statement_token1] = ACTIONS(4255), + [aux_sym_public_statement_token1] = ACTIONS(4255), + [aux_sym_namelist_statement_token1] = ACTIONS(4255), + [aux_sym_common_statement_token1] = ACTIONS(4255), + [aux_sym_import_statement_token1] = ACTIONS(4255), + [aux_sym_derived_type_definition_token1] = ACTIONS(4255), + [aux_sym_abstract_specifier_token1] = ACTIONS(4255), + [aux_sym_procedure_attribute_token6] = ACTIONS(4255), + [aux_sym_variable_attributes_token1] = ACTIONS(4255), + [aux_sym_variable_attributes_token2] = ACTIONS(4255), + [aux_sym_variable_attributes_token3] = ACTIONS(4255), + [aux_sym_variable_attributes_token4] = ACTIONS(4255), + [aux_sym_variable_attributes_token5] = ACTIONS(4255), + [aux_sym__intrinsic_type_token1] = ACTIONS(4255), + [aux_sym__intrinsic_type_token2] = ACTIONS(4255), + [aux_sym__intrinsic_type_token3] = ACTIONS(4255), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4255), + [aux_sym__intrinsic_type_token7] = ACTIONS(4255), + [aux_sym__intrinsic_type_token8] = ACTIONS(4255), + [aux_sym__intrinsic_type_token9] = ACTIONS(4255), + [aux_sym__intrinsic_type_token10] = ACTIONS(4255), + [aux_sym_derived_type_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4255), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4255), + [aux_sym_type_qualifier_token1] = ACTIONS(4255), + [aux_sym_type_qualifier_token2] = ACTIONS(4255), + [aux_sym_equivalence_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token1] = ACTIONS(4255), + [aux_sym_stop_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token2] = ACTIONS(4255), + [aux_sym_keyword_statement_token3] = ACTIONS(4255), + [aux_sym_include_statement_token1] = ACTIONS(4255), + [aux_sym_data_statement_token1] = ACTIONS(4255), + [aux_sym__inline_if_statement_token1] = ACTIONS(4255), + [aux_sym_end_if_statement_token1] = ACTIONS(4255), + [aux_sym_elseif_clause_token2] = ACTIONS(4255), + [aux_sym_select_case_statement_token1] = ACTIONS(4255), + [aux_sym_block_construct_token1] = ACTIONS(4255), + [aux_sym_format_statement_token1] = ACTIONS(4255), + [aux_sym_inquire_statement_token1] = ACTIONS(4255), + [aux_sym_enum_statement_token1] = ACTIONS(4255), + [aux_sym_entry_statement_token1] = ACTIONS(4255), + [aux_sym_null_literal_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_statement_token2] = ACTIONS(4255), + [aux_sym_coarray_statement_token6] = ACTIONS(4255), + [aux_sym_coarray_statement_token8] = ACTIONS(4255), + [aux_sym_coarray_statement_token11] = ACTIONS(4255), + [aux_sym_coarray_statement_token12] = ACTIONS(4255), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4255), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4255), + [aux_sym_identifier_token1] = ACTIONS(4255), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4257), }, - [2921] = { - [sym__expression] = STATE(4231), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2845] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_end_module_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + }, + [2846] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_end_module_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4389), }, - [2922] = { - [sym__expression] = STATE(4254), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2847] = { + [aux_sym_preproc_include_token1] = ACTIONS(6914), + [aux_sym_preproc_def_token1] = ACTIONS(6914), + [aux_sym_preproc_if_token1] = ACTIONS(6914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6914), + [sym_preproc_directive] = ACTIONS(6914), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6914), + [aux_sym_end_module_statement_token1] = ACTIONS(6914), + [aux_sym_interface_statement_token1] = ACTIONS(6914), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6914), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6914), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6914), + [aux_sym_language_binding_token1] = ACTIONS(6914), + [aux_sym_procedure_attributes_token1] = ACTIONS(6914), + [aux_sym_procedure_attributes_token3] = ACTIONS(6914), + [aux_sym_contains_statement_token1] = ACTIONS(6914), + [aux_sym_use_statement_token1] = ACTIONS(6914), + [aux_sym_use_statement_token2] = ACTIONS(6914), + [aux_sym_implicit_statement_token1] = ACTIONS(6914), + [aux_sym_implicit_statement_token3] = ACTIONS(6914), + [aux_sym_implicit_statement_token4] = ACTIONS(6914), + [aux_sym_save_statement_token1] = ACTIONS(6914), + [aux_sym_private_statement_token1] = ACTIONS(6914), + [aux_sym_public_statement_token1] = ACTIONS(6914), + [aux_sym_namelist_statement_token1] = ACTIONS(6914), + [aux_sym_common_statement_token1] = ACTIONS(6914), + [aux_sym_import_statement_token1] = ACTIONS(6914), + [aux_sym_derived_type_definition_token1] = ACTIONS(6914), + [aux_sym_abstract_specifier_token1] = ACTIONS(6914), + [aux_sym_procedure_attribute_token6] = ACTIONS(6914), + [aux_sym_variable_attributes_token1] = ACTIONS(6914), + [aux_sym_variable_attributes_token2] = ACTIONS(6914), + [aux_sym_variable_attributes_token3] = ACTIONS(6914), + [aux_sym_variable_attributes_token4] = ACTIONS(6914), + [aux_sym_variable_attributes_token5] = ACTIONS(6914), + [aux_sym__intrinsic_type_token1] = ACTIONS(6914), + [aux_sym__intrinsic_type_token2] = ACTIONS(6914), + [aux_sym__intrinsic_type_token3] = ACTIONS(6914), + [aux_sym__intrinsic_type_token4] = ACTIONS(6914), + [aux_sym__intrinsic_type_token6] = ACTIONS(6914), + [aux_sym__intrinsic_type_token7] = ACTIONS(6914), + [aux_sym__intrinsic_type_token8] = ACTIONS(6914), + [aux_sym__intrinsic_type_token9] = ACTIONS(6914), + [aux_sym__intrinsic_type_token10] = ACTIONS(6914), + [aux_sym_derived_type_token1] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6914), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6914), + [aux_sym_type_qualifier_token1] = ACTIONS(6914), + [aux_sym_type_qualifier_token2] = ACTIONS(6914), + [aux_sym_equivalence_statement_token1] = ACTIONS(6914), + [aux_sym_stop_statement_token1] = ACTIONS(6914), + [aux_sym_stop_statement_token2] = ACTIONS(6914), + [aux_sym_keyword_statement_token2] = ACTIONS(6914), + [aux_sym_keyword_statement_token3] = ACTIONS(6914), + [aux_sym_include_statement_token1] = ACTIONS(6914), + [aux_sym_data_statement_token1] = ACTIONS(6914), + [aux_sym__inline_if_statement_token1] = ACTIONS(6914), + [aux_sym_end_if_statement_token1] = ACTIONS(6914), + [aux_sym_elseif_clause_token2] = ACTIONS(6914), + [aux_sym_select_case_statement_token1] = ACTIONS(6914), + [aux_sym_block_construct_token1] = ACTIONS(6914), + [aux_sym_format_statement_token1] = ACTIONS(6914), + [aux_sym_inquire_statement_token1] = ACTIONS(6914), + [aux_sym_enum_statement_token1] = ACTIONS(6914), + [aux_sym_entry_statement_token1] = ACTIONS(6914), + [aux_sym_null_literal_token1] = ACTIONS(6914), + [aux_sym_coarray_statement_token1] = ACTIONS(6914), + [aux_sym_coarray_statement_token2] = ACTIONS(6914), + [aux_sym_coarray_statement_token6] = ACTIONS(6914), + [aux_sym_coarray_statement_token8] = ACTIONS(6914), + [aux_sym_coarray_statement_token11] = ACTIONS(6914), + [aux_sym_coarray_statement_token12] = ACTIONS(6914), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6914), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6914), + [aux_sym_identifier_token1] = ACTIONS(6914), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6916), + }, + [2848] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4409), }, - [2923] = { - [sym__expression] = STATE(4255), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2849] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4413), }, - [2924] = { - [sym__expression] = STATE(4256), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2850] = { + [aux_sym_preproc_include_token1] = ACTIONS(6894), + [aux_sym_preproc_def_token1] = ACTIONS(6894), + [aux_sym_preproc_if_token1] = ACTIONS(6894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6894), + [sym_preproc_directive] = ACTIONS(6894), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(6894), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6894), + [aux_sym_interface_statement_token1] = ACTIONS(6894), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6894), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6894), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6894), + [aux_sym_language_binding_token1] = ACTIONS(6894), + [aux_sym_procedure_attributes_token1] = ACTIONS(6894), + [aux_sym_procedure_attributes_token3] = ACTIONS(6894), + [aux_sym_contains_statement_token1] = ACTIONS(6894), + [aux_sym_use_statement_token1] = ACTIONS(6894), + [aux_sym_use_statement_token2] = ACTIONS(6894), + [aux_sym_implicit_statement_token1] = ACTIONS(6894), + [aux_sym_implicit_statement_token3] = ACTIONS(6894), + [aux_sym_implicit_statement_token4] = ACTIONS(6894), + [aux_sym_save_statement_token1] = ACTIONS(6894), + [aux_sym_private_statement_token1] = ACTIONS(6894), + [aux_sym_public_statement_token1] = ACTIONS(6894), + [aux_sym_namelist_statement_token1] = ACTIONS(6894), + [aux_sym_common_statement_token1] = ACTIONS(6894), + [aux_sym_import_statement_token1] = ACTIONS(6894), + [aux_sym_derived_type_definition_token1] = ACTIONS(6894), + [aux_sym_abstract_specifier_token1] = ACTIONS(6894), + [aux_sym_procedure_attribute_token6] = ACTIONS(6894), + [aux_sym_variable_attributes_token1] = ACTIONS(6894), + [aux_sym_variable_attributes_token2] = ACTIONS(6894), + [aux_sym_variable_attributes_token3] = ACTIONS(6894), + [aux_sym_variable_attributes_token4] = ACTIONS(6894), + [aux_sym_variable_attributes_token5] = ACTIONS(6894), + [aux_sym__intrinsic_type_token1] = ACTIONS(6894), + [aux_sym__intrinsic_type_token2] = ACTIONS(6894), + [aux_sym__intrinsic_type_token3] = ACTIONS(6894), + [aux_sym__intrinsic_type_token4] = ACTIONS(6894), + [aux_sym__intrinsic_type_token6] = ACTIONS(6894), + [aux_sym__intrinsic_type_token7] = ACTIONS(6894), + [aux_sym__intrinsic_type_token8] = ACTIONS(6894), + [aux_sym__intrinsic_type_token9] = ACTIONS(6894), + [aux_sym__intrinsic_type_token10] = ACTIONS(6894), + [aux_sym_derived_type_token1] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6894), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6894), + [aux_sym_type_qualifier_token1] = ACTIONS(6894), + [aux_sym_type_qualifier_token2] = ACTIONS(6894), + [aux_sym_equivalence_statement_token1] = ACTIONS(6894), + [aux_sym_stop_statement_token1] = ACTIONS(6894), + [aux_sym_stop_statement_token2] = ACTIONS(6894), + [aux_sym_keyword_statement_token2] = ACTIONS(6894), + [aux_sym_keyword_statement_token3] = ACTIONS(6894), + [aux_sym_include_statement_token1] = ACTIONS(6894), + [aux_sym_data_statement_token1] = ACTIONS(6894), + [aux_sym__inline_if_statement_token1] = ACTIONS(6894), + [aux_sym_end_if_statement_token1] = ACTIONS(6894), + [aux_sym_elseif_clause_token2] = ACTIONS(6894), + [aux_sym_select_case_statement_token1] = ACTIONS(6894), + [aux_sym_block_construct_token1] = ACTIONS(6894), + [aux_sym_format_statement_token1] = ACTIONS(6894), + [aux_sym_inquire_statement_token1] = ACTIONS(6894), + [aux_sym_enum_statement_token1] = ACTIONS(6894), + [aux_sym_entry_statement_token1] = ACTIONS(6894), + [aux_sym_null_literal_token1] = ACTIONS(6894), + [aux_sym_coarray_statement_token1] = ACTIONS(6894), + [aux_sym_coarray_statement_token2] = ACTIONS(6894), + [aux_sym_coarray_statement_token6] = ACTIONS(6894), + [aux_sym_coarray_statement_token8] = ACTIONS(6894), + [aux_sym_coarray_statement_token11] = ACTIONS(6894), + [aux_sym_coarray_statement_token12] = ACTIONS(6894), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6894), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6894), + [aux_sym_identifier_token1] = ACTIONS(6894), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(6896), }, - [2925] = { - [sym__expression] = STATE(4409), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [2851] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), }, - [2926] = { - [sym__expression] = STATE(4410), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2852] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_end_module_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + }, + [2853] = { + [aux_sym_preproc_include_token1] = ACTIONS(6910), + [aux_sym_preproc_def_token1] = ACTIONS(6910), + [aux_sym_preproc_if_token1] = ACTIONS(6910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6910), + [sym_preproc_directive] = ACTIONS(6910), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(6910), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6910), + [aux_sym_interface_statement_token1] = ACTIONS(6910), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6910), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6910), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6910), + [aux_sym_language_binding_token1] = ACTIONS(6910), + [aux_sym_procedure_attributes_token1] = ACTIONS(6910), + [aux_sym_procedure_attributes_token3] = ACTIONS(6910), + [aux_sym_contains_statement_token1] = ACTIONS(6910), + [aux_sym_use_statement_token1] = ACTIONS(6910), + [aux_sym_use_statement_token2] = ACTIONS(6910), + [aux_sym_implicit_statement_token1] = ACTIONS(6910), + [aux_sym_implicit_statement_token3] = ACTIONS(6910), + [aux_sym_implicit_statement_token4] = ACTIONS(6910), + [aux_sym_save_statement_token1] = ACTIONS(6910), + [aux_sym_private_statement_token1] = ACTIONS(6910), + [aux_sym_public_statement_token1] = ACTIONS(6910), + [aux_sym_namelist_statement_token1] = ACTIONS(6910), + [aux_sym_common_statement_token1] = ACTIONS(6910), + [aux_sym_import_statement_token1] = ACTIONS(6910), + [aux_sym_derived_type_definition_token1] = ACTIONS(6910), + [aux_sym_abstract_specifier_token1] = ACTIONS(6910), + [aux_sym_procedure_attribute_token6] = ACTIONS(6910), + [aux_sym_variable_attributes_token1] = ACTIONS(6910), + [aux_sym_variable_attributes_token2] = ACTIONS(6910), + [aux_sym_variable_attributes_token3] = ACTIONS(6910), + [aux_sym_variable_attributes_token4] = ACTIONS(6910), + [aux_sym_variable_attributes_token5] = ACTIONS(6910), + [aux_sym__intrinsic_type_token1] = ACTIONS(6910), + [aux_sym__intrinsic_type_token2] = ACTIONS(6910), + [aux_sym__intrinsic_type_token3] = ACTIONS(6910), + [aux_sym__intrinsic_type_token4] = ACTIONS(6910), + [aux_sym__intrinsic_type_token6] = ACTIONS(6910), + [aux_sym__intrinsic_type_token7] = ACTIONS(6910), + [aux_sym__intrinsic_type_token8] = ACTIONS(6910), + [aux_sym__intrinsic_type_token9] = ACTIONS(6910), + [aux_sym__intrinsic_type_token10] = ACTIONS(6910), + [aux_sym_derived_type_token1] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6910), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6910), + [aux_sym_type_qualifier_token1] = ACTIONS(6910), + [aux_sym_type_qualifier_token2] = ACTIONS(6910), + [aux_sym_equivalence_statement_token1] = ACTIONS(6910), + [aux_sym_stop_statement_token1] = ACTIONS(6910), + [aux_sym_stop_statement_token2] = ACTIONS(6910), + [aux_sym_keyword_statement_token2] = ACTIONS(6910), + [aux_sym_keyword_statement_token3] = ACTIONS(6910), + [aux_sym_include_statement_token1] = ACTIONS(6910), + [aux_sym_data_statement_token1] = ACTIONS(6910), + [aux_sym__inline_if_statement_token1] = ACTIONS(6910), + [aux_sym_end_if_statement_token1] = ACTIONS(6910), + [aux_sym_elseif_clause_token2] = ACTIONS(6910), + [aux_sym_select_case_statement_token1] = ACTIONS(6910), + [aux_sym_block_construct_token1] = ACTIONS(6910), + [aux_sym_format_statement_token1] = ACTIONS(6910), + [aux_sym_inquire_statement_token1] = ACTIONS(6910), + [aux_sym_enum_statement_token1] = ACTIONS(6910), + [aux_sym_entry_statement_token1] = ACTIONS(6910), + [aux_sym_null_literal_token1] = ACTIONS(6910), + [aux_sym_coarray_statement_token1] = ACTIONS(6910), + [aux_sym_coarray_statement_token2] = ACTIONS(6910), + [aux_sym_coarray_statement_token6] = ACTIONS(6910), + [aux_sym_coarray_statement_token8] = ACTIONS(6910), + [aux_sym_coarray_statement_token11] = ACTIONS(6910), + [aux_sym_coarray_statement_token12] = ACTIONS(6910), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6910), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6910), + [aux_sym_identifier_token1] = ACTIONS(6910), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(6912), }, - [2927] = { - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4977), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4977), + [2854] = { + [sym_data_set] = STATE(6638), + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(4713), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4713), + [sym_implied_do_loop_expression] = STATE(4713), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4713), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -433293,10 +426671,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -433313,7 +426691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -433341,658 +426719,666 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2928] = { - [sym__name] = STATE(6810), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(885), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(6944), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6946), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6946), - }, - [2929] = { - [sym__expression] = STATE(4535), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [2855] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4381), }, - [2930] = { - [sym__expression] = STATE(4532), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2856] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4385), }, - [2931] = { - [sym__expression] = STATE(4420), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [2857] = { + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_end_module_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), }, - [2932] = { - [sym__expression] = STATE(4422), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2858] = { + [aux_sym_preproc_include_token1] = ACTIONS(4972), + [aux_sym_preproc_def_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4972), + [sym_preproc_directive] = ACTIONS(4972), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(4972), + [aux_sym_end_module_statement_token1] = ACTIONS(4972), + [aux_sym_interface_statement_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), + [aux_sym_language_binding_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token3] = ACTIONS(4972), + [aux_sym_contains_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token2] = ACTIONS(4972), + [aux_sym_implicit_statement_token1] = ACTIONS(4972), + [aux_sym_implicit_statement_token3] = ACTIONS(4972), + [aux_sym_implicit_statement_token4] = ACTIONS(4972), + [aux_sym_save_statement_token1] = ACTIONS(4972), + [aux_sym_private_statement_token1] = ACTIONS(4972), + [aux_sym_public_statement_token1] = ACTIONS(4972), + [aux_sym_namelist_statement_token1] = ACTIONS(4972), + [aux_sym_common_statement_token1] = ACTIONS(4972), + [aux_sym_import_statement_token1] = ACTIONS(4972), + [aux_sym_derived_type_definition_token1] = ACTIONS(4972), + [aux_sym_abstract_specifier_token1] = ACTIONS(4972), + [aux_sym_procedure_attribute_token6] = ACTIONS(4972), + [aux_sym_variable_attributes_token1] = ACTIONS(4972), + [aux_sym_variable_attributes_token2] = ACTIONS(4972), + [aux_sym_variable_attributes_token3] = ACTIONS(4972), + [aux_sym_variable_attributes_token4] = ACTIONS(4972), + [aux_sym_variable_attributes_token5] = ACTIONS(4972), + [aux_sym__intrinsic_type_token1] = ACTIONS(4972), + [aux_sym__intrinsic_type_token2] = ACTIONS(4972), + [aux_sym__intrinsic_type_token3] = ACTIONS(4972), + [aux_sym__intrinsic_type_token4] = ACTIONS(4972), + [aux_sym__intrinsic_type_token6] = ACTIONS(4972), + [aux_sym__intrinsic_type_token7] = ACTIONS(4972), + [aux_sym__intrinsic_type_token8] = ACTIONS(4972), + [aux_sym__intrinsic_type_token9] = ACTIONS(4972), + [aux_sym__intrinsic_type_token10] = ACTIONS(4972), + [aux_sym_derived_type_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), + [aux_sym_type_qualifier_token1] = ACTIONS(4972), + [aux_sym_type_qualifier_token2] = ACTIONS(4972), + [aux_sym_equivalence_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token3] = ACTIONS(4972), + [aux_sym_include_statement_token1] = ACTIONS(4972), + [aux_sym_data_statement_token1] = ACTIONS(4972), + [aux_sym__inline_if_statement_token1] = ACTIONS(4972), + [aux_sym_end_if_statement_token1] = ACTIONS(4972), + [aux_sym_elseif_clause_token2] = ACTIONS(4972), + [aux_sym_select_case_statement_token1] = ACTIONS(4972), + [aux_sym_block_construct_token1] = ACTIONS(4972), + [aux_sym_format_statement_token1] = ACTIONS(4972), + [aux_sym_inquire_statement_token1] = ACTIONS(4972), + [aux_sym_enum_statement_token1] = ACTIONS(4972), + [aux_sym_entry_statement_token1] = ACTIONS(4972), + [aux_sym_null_literal_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token2] = ACTIONS(4972), + [aux_sym_coarray_statement_token6] = ACTIONS(4972), + [aux_sym_coarray_statement_token8] = ACTIONS(4972), + [aux_sym_coarray_statement_token11] = ACTIONS(4972), + [aux_sym_coarray_statement_token12] = ACTIONS(4972), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), + [aux_sym_identifier_token1] = ACTIONS(4972), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__integer_literal] = ACTIONS(4974), }, - [2933] = { - [sym__expression] = STATE(4421), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2859] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_end_module_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4393), }, - [2934] = { - [sym__expression] = STATE(4384), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [2860] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4417), }, - [2935] = { - [sym__expression] = STATE(4485), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2861] = { + [aux_sym_preproc_include_token1] = ACTIONS(5406), + [aux_sym_preproc_def_token1] = ACTIONS(5406), + [aux_sym_preproc_if_token1] = ACTIONS(5406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5406), + [sym_preproc_directive] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5406), + [aux_sym_end_module_statement_token1] = ACTIONS(5406), + [aux_sym_interface_statement_token1] = ACTIONS(5406), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5406), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5406), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5406), + [aux_sym_language_binding_token1] = ACTIONS(5406), + [aux_sym_procedure_attributes_token1] = ACTIONS(5406), + [aux_sym_procedure_attributes_token3] = ACTIONS(5406), + [aux_sym_contains_statement_token1] = ACTIONS(5406), + [aux_sym_use_statement_token1] = ACTIONS(5406), + [aux_sym_use_statement_token2] = ACTIONS(5406), + [aux_sym_implicit_statement_token1] = ACTIONS(5406), + [aux_sym_implicit_statement_token3] = ACTIONS(5406), + [aux_sym_implicit_statement_token4] = ACTIONS(5406), + [aux_sym_save_statement_token1] = ACTIONS(5406), + [aux_sym_private_statement_token1] = ACTIONS(5406), + [aux_sym_public_statement_token1] = ACTIONS(5406), + [aux_sym_namelist_statement_token1] = ACTIONS(5406), + [aux_sym_common_statement_token1] = ACTIONS(5406), + [aux_sym_import_statement_token1] = ACTIONS(5406), + [aux_sym_derived_type_definition_token1] = ACTIONS(5406), + [aux_sym_abstract_specifier_token1] = ACTIONS(5406), + [aux_sym_procedure_attribute_token6] = ACTIONS(5406), + [aux_sym_variable_attributes_token1] = ACTIONS(5406), + [aux_sym_variable_attributes_token2] = ACTIONS(5406), + [aux_sym_variable_attributes_token3] = ACTIONS(5406), + [aux_sym_variable_attributes_token4] = ACTIONS(5406), + [aux_sym_variable_attributes_token5] = ACTIONS(5406), + [aux_sym__intrinsic_type_token1] = ACTIONS(5406), + [aux_sym__intrinsic_type_token2] = ACTIONS(5406), + [aux_sym__intrinsic_type_token3] = ACTIONS(5406), + [aux_sym__intrinsic_type_token4] = ACTIONS(5406), + [aux_sym__intrinsic_type_token6] = ACTIONS(5406), + [aux_sym__intrinsic_type_token7] = ACTIONS(5406), + [aux_sym__intrinsic_type_token8] = ACTIONS(5406), + [aux_sym__intrinsic_type_token9] = ACTIONS(5406), + [aux_sym__intrinsic_type_token10] = ACTIONS(5406), + [aux_sym_derived_type_token1] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5406), + [aux_sym_type_qualifier_token1] = ACTIONS(5406), + [aux_sym_type_qualifier_token2] = ACTIONS(5406), + [aux_sym_equivalence_statement_token1] = ACTIONS(5406), + [aux_sym_stop_statement_token1] = ACTIONS(5406), + [aux_sym_stop_statement_token2] = ACTIONS(5406), + [aux_sym_keyword_statement_token2] = ACTIONS(5406), + [aux_sym_keyword_statement_token3] = ACTIONS(5406), + [aux_sym_include_statement_token1] = ACTIONS(5406), + [aux_sym_data_statement_token1] = ACTIONS(5406), + [aux_sym__inline_if_statement_token1] = ACTIONS(5406), + [aux_sym_end_if_statement_token1] = ACTIONS(5406), + [aux_sym_elseif_clause_token2] = ACTIONS(5406), + [aux_sym_select_case_statement_token1] = ACTIONS(5406), + [aux_sym_block_construct_token1] = ACTIONS(5406), + [aux_sym_format_statement_token1] = ACTIONS(5406), + [aux_sym_inquire_statement_token1] = ACTIONS(5406), + [aux_sym_enum_statement_token1] = ACTIONS(5406), + [aux_sym_entry_statement_token1] = ACTIONS(5406), + [aux_sym_null_literal_token1] = ACTIONS(5406), + [aux_sym_coarray_statement_token1] = ACTIONS(5406), + [aux_sym_coarray_statement_token2] = ACTIONS(5406), + [aux_sym_coarray_statement_token6] = ACTIONS(5406), + [aux_sym_coarray_statement_token8] = ACTIONS(5406), + [aux_sym_coarray_statement_token11] = ACTIONS(5406), + [aux_sym_coarray_statement_token12] = ACTIONS(5406), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5406), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5406), + [aux_sym_identifier_token1] = ACTIONS(5406), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5408), + }, + [2862] = { + [sym_data_set] = STATE(6174), + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(4713), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4713), + [sym_implied_do_loop_expression] = STATE(4713), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4713), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -434013,10 +427399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -434033,7 +427419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -434061,211 +427447,578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2936] = { - [sym__name] = STATE(6634), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4887), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6948), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6950), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [2863] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_end_module_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + }, + [2864] = { + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_end_module_statement_token1] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_contains_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6950), + [sym__integer_literal] = ACTIONS(4513), }, - [2937] = { - [sym__expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [2865] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(4389), }, - [2938] = { - [sym__expression] = STATE(4513), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2866] = { + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_end_module_statement_token1] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5004), + }, + [2867] = { + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5004), + }, + [2868] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + }, + [2869] = { + [sym_concurrent_control] = STATE(7404), + [sym__expression] = STATE(4545), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4786), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -434283,10 +428036,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -434303,12 +428056,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -434325,127 +428078,1039 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2939] = { - [sym__expression] = STATE(4387), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2870] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_end_module_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + }, + [2871] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_end_module_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4613), + }, + [2872] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + }, + [2873] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + }, + [2874] = { + [aux_sym_preproc_include_token1] = ACTIONS(6898), + [aux_sym_preproc_def_token1] = ACTIONS(6898), + [aux_sym_preproc_if_token1] = ACTIONS(6898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6898), + [sym_preproc_directive] = ACTIONS(6898), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6898), + [aux_sym_end_module_statement_token1] = ACTIONS(6898), + [aux_sym_interface_statement_token1] = ACTIONS(6898), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6898), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6898), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6898), + [aux_sym_language_binding_token1] = ACTIONS(6898), + [aux_sym_procedure_attributes_token1] = ACTIONS(6898), + [aux_sym_procedure_attributes_token3] = ACTIONS(6898), + [aux_sym_contains_statement_token1] = ACTIONS(6898), + [aux_sym_use_statement_token1] = ACTIONS(6898), + [aux_sym_use_statement_token2] = ACTIONS(6898), + [aux_sym_implicit_statement_token1] = ACTIONS(6898), + [aux_sym_implicit_statement_token3] = ACTIONS(6898), + [aux_sym_implicit_statement_token4] = ACTIONS(6898), + [aux_sym_save_statement_token1] = ACTIONS(6898), + [aux_sym_private_statement_token1] = ACTIONS(6898), + [aux_sym_public_statement_token1] = ACTIONS(6898), + [aux_sym_namelist_statement_token1] = ACTIONS(6898), + [aux_sym_common_statement_token1] = ACTIONS(6898), + [aux_sym_import_statement_token1] = ACTIONS(6898), + [aux_sym_derived_type_definition_token1] = ACTIONS(6898), + [aux_sym_abstract_specifier_token1] = ACTIONS(6898), + [aux_sym_procedure_attribute_token6] = ACTIONS(6898), + [aux_sym_variable_attributes_token1] = ACTIONS(6898), + [aux_sym_variable_attributes_token2] = ACTIONS(6898), + [aux_sym_variable_attributes_token3] = ACTIONS(6898), + [aux_sym_variable_attributes_token4] = ACTIONS(6898), + [aux_sym_variable_attributes_token5] = ACTIONS(6898), + [aux_sym__intrinsic_type_token1] = ACTIONS(6898), + [aux_sym__intrinsic_type_token2] = ACTIONS(6898), + [aux_sym__intrinsic_type_token3] = ACTIONS(6898), + [aux_sym__intrinsic_type_token4] = ACTIONS(6898), + [aux_sym__intrinsic_type_token6] = ACTIONS(6898), + [aux_sym__intrinsic_type_token7] = ACTIONS(6898), + [aux_sym__intrinsic_type_token8] = ACTIONS(6898), + [aux_sym__intrinsic_type_token9] = ACTIONS(6898), + [aux_sym__intrinsic_type_token10] = ACTIONS(6898), + [aux_sym_derived_type_token1] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6898), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6898), + [aux_sym_type_qualifier_token1] = ACTIONS(6898), + [aux_sym_type_qualifier_token2] = ACTIONS(6898), + [aux_sym_equivalence_statement_token1] = ACTIONS(6898), + [aux_sym_stop_statement_token1] = ACTIONS(6898), + [aux_sym_stop_statement_token2] = ACTIONS(6898), + [aux_sym_keyword_statement_token2] = ACTIONS(6898), + [aux_sym_keyword_statement_token3] = ACTIONS(6898), + [aux_sym_include_statement_token1] = ACTIONS(6898), + [aux_sym_data_statement_token1] = ACTIONS(6898), + [aux_sym__inline_if_statement_token1] = ACTIONS(6898), + [aux_sym_end_if_statement_token1] = ACTIONS(6898), + [aux_sym_elseif_clause_token2] = ACTIONS(6898), + [aux_sym_select_case_statement_token1] = ACTIONS(6898), + [aux_sym_block_construct_token1] = ACTIONS(6898), + [aux_sym_format_statement_token1] = ACTIONS(6898), + [aux_sym_inquire_statement_token1] = ACTIONS(6898), + [aux_sym_enum_statement_token1] = ACTIONS(6898), + [aux_sym_entry_statement_token1] = ACTIONS(6898), + [aux_sym_null_literal_token1] = ACTIONS(6898), + [aux_sym_coarray_statement_token1] = ACTIONS(6898), + [aux_sym_coarray_statement_token2] = ACTIONS(6898), + [aux_sym_coarray_statement_token6] = ACTIONS(6898), + [aux_sym_coarray_statement_token8] = ACTIONS(6898), + [aux_sym_coarray_statement_token11] = ACTIONS(6898), + [aux_sym_coarray_statement_token12] = ACTIONS(6898), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6898), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6898), + [aux_sym_identifier_token1] = ACTIONS(6898), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6900), + }, + [2875] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_end_module_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + }, + [2876] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_end_module_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4413), + }, + [2877] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_end_module_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + }, + [2878] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_end_module_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4397), + }, + [2879] = { + [aux_sym_preproc_include_token1] = ACTIONS(5406), + [aux_sym_preproc_def_token1] = ACTIONS(5406), + [aux_sym_preproc_if_token1] = ACTIONS(5406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5406), + [sym_preproc_directive] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5406), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5406), + [aux_sym_interface_statement_token1] = ACTIONS(5406), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5406), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5406), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5406), + [aux_sym_language_binding_token1] = ACTIONS(5406), + [aux_sym_procedure_attributes_token1] = ACTIONS(5406), + [aux_sym_procedure_attributes_token3] = ACTIONS(5406), + [aux_sym_contains_statement_token1] = ACTIONS(5406), + [aux_sym_use_statement_token1] = ACTIONS(5406), + [aux_sym_use_statement_token2] = ACTIONS(5406), + [aux_sym_implicit_statement_token1] = ACTIONS(5406), + [aux_sym_implicit_statement_token3] = ACTIONS(5406), + [aux_sym_implicit_statement_token4] = ACTIONS(5406), + [aux_sym_save_statement_token1] = ACTIONS(5406), + [aux_sym_private_statement_token1] = ACTIONS(5406), + [aux_sym_public_statement_token1] = ACTIONS(5406), + [aux_sym_namelist_statement_token1] = ACTIONS(5406), + [aux_sym_common_statement_token1] = ACTIONS(5406), + [aux_sym_import_statement_token1] = ACTIONS(5406), + [aux_sym_derived_type_definition_token1] = ACTIONS(5406), + [aux_sym_abstract_specifier_token1] = ACTIONS(5406), + [aux_sym_procedure_attribute_token6] = ACTIONS(5406), + [aux_sym_variable_attributes_token1] = ACTIONS(5406), + [aux_sym_variable_attributes_token2] = ACTIONS(5406), + [aux_sym_variable_attributes_token3] = ACTIONS(5406), + [aux_sym_variable_attributes_token4] = ACTIONS(5406), + [aux_sym_variable_attributes_token5] = ACTIONS(5406), + [aux_sym__intrinsic_type_token1] = ACTIONS(5406), + [aux_sym__intrinsic_type_token2] = ACTIONS(5406), + [aux_sym__intrinsic_type_token3] = ACTIONS(5406), + [aux_sym__intrinsic_type_token4] = ACTIONS(5406), + [aux_sym__intrinsic_type_token6] = ACTIONS(5406), + [aux_sym__intrinsic_type_token7] = ACTIONS(5406), + [aux_sym__intrinsic_type_token8] = ACTIONS(5406), + [aux_sym__intrinsic_type_token9] = ACTIONS(5406), + [aux_sym__intrinsic_type_token10] = ACTIONS(5406), + [aux_sym_derived_type_token1] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5406), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5406), + [aux_sym_type_qualifier_token1] = ACTIONS(5406), + [aux_sym_type_qualifier_token2] = ACTIONS(5406), + [aux_sym_equivalence_statement_token1] = ACTIONS(5406), + [aux_sym_stop_statement_token1] = ACTIONS(5406), + [aux_sym_stop_statement_token2] = ACTIONS(5406), + [aux_sym_keyword_statement_token2] = ACTIONS(5406), + [aux_sym_keyword_statement_token3] = ACTIONS(5406), + [aux_sym_include_statement_token1] = ACTIONS(5406), + [aux_sym_data_statement_token1] = ACTIONS(5406), + [aux_sym__inline_if_statement_token1] = ACTIONS(5406), + [aux_sym_end_if_statement_token1] = ACTIONS(5406), + [aux_sym_elseif_clause_token2] = ACTIONS(5406), + [aux_sym_select_case_statement_token1] = ACTIONS(5406), + [aux_sym_block_construct_token1] = ACTIONS(5406), + [aux_sym_format_statement_token1] = ACTIONS(5406), + [aux_sym_inquire_statement_token1] = ACTIONS(5406), + [aux_sym_enum_statement_token1] = ACTIONS(5406), + [aux_sym_entry_statement_token1] = ACTIONS(5406), + [aux_sym_null_literal_token1] = ACTIONS(5406), + [aux_sym_coarray_statement_token1] = ACTIONS(5406), + [aux_sym_coarray_statement_token2] = ACTIONS(5406), + [aux_sym_coarray_statement_token6] = ACTIONS(5406), + [aux_sym_coarray_statement_token8] = ACTIONS(5406), + [aux_sym_coarray_statement_token11] = ACTIONS(5406), + [aux_sym_coarray_statement_token12] = ACTIONS(5406), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5406), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5406), + [aux_sym_identifier_token1] = ACTIONS(5406), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__integer_literal] = ACTIONS(5408), }, - [2940] = { - [sym__expression] = STATE(4389), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2880] = { + [aux_sym_preproc_include_token1] = ACTIONS(6884), + [aux_sym_preproc_def_token1] = ACTIONS(6884), + [aux_sym_preproc_if_token1] = ACTIONS(6884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6884), + [sym_preproc_directive] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6884), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6884), + [aux_sym_interface_statement_token1] = ACTIONS(6884), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6884), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6884), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6884), + [aux_sym_language_binding_token1] = ACTIONS(6884), + [aux_sym_procedure_attributes_token1] = ACTIONS(6884), + [aux_sym_procedure_attributes_token3] = ACTIONS(6884), + [aux_sym_contains_statement_token1] = ACTIONS(6884), + [aux_sym_use_statement_token1] = ACTIONS(6884), + [aux_sym_use_statement_token2] = ACTIONS(6884), + [aux_sym_implicit_statement_token1] = ACTIONS(6884), + [aux_sym_implicit_statement_token3] = ACTIONS(6884), + [aux_sym_implicit_statement_token4] = ACTIONS(6884), + [aux_sym_save_statement_token1] = ACTIONS(6884), + [aux_sym_private_statement_token1] = ACTIONS(6884), + [aux_sym_public_statement_token1] = ACTIONS(6884), + [aux_sym_namelist_statement_token1] = ACTIONS(6884), + [aux_sym_common_statement_token1] = ACTIONS(6884), + [aux_sym_import_statement_token1] = ACTIONS(6884), + [aux_sym_derived_type_definition_token1] = ACTIONS(6884), + [aux_sym_abstract_specifier_token1] = ACTIONS(6884), + [aux_sym_procedure_attribute_token6] = ACTIONS(6884), + [aux_sym_variable_attributes_token1] = ACTIONS(6884), + [aux_sym_variable_attributes_token2] = ACTIONS(6884), + [aux_sym_variable_attributes_token3] = ACTIONS(6884), + [aux_sym_variable_attributes_token4] = ACTIONS(6884), + [aux_sym_variable_attributes_token5] = ACTIONS(6884), + [aux_sym__intrinsic_type_token1] = ACTIONS(6884), + [aux_sym__intrinsic_type_token2] = ACTIONS(6884), + [aux_sym__intrinsic_type_token3] = ACTIONS(6884), + [aux_sym__intrinsic_type_token4] = ACTIONS(6884), + [aux_sym__intrinsic_type_token6] = ACTIONS(6884), + [aux_sym__intrinsic_type_token7] = ACTIONS(6884), + [aux_sym__intrinsic_type_token8] = ACTIONS(6884), + [aux_sym__intrinsic_type_token9] = ACTIONS(6884), + [aux_sym__intrinsic_type_token10] = ACTIONS(6884), + [aux_sym_derived_type_token1] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6884), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6884), + [aux_sym_type_qualifier_token1] = ACTIONS(6884), + [aux_sym_type_qualifier_token2] = ACTIONS(6884), + [aux_sym_equivalence_statement_token1] = ACTIONS(6884), + [aux_sym_stop_statement_token1] = ACTIONS(6884), + [aux_sym_stop_statement_token2] = ACTIONS(6884), + [aux_sym_keyword_statement_token2] = ACTIONS(6884), + [aux_sym_keyword_statement_token3] = ACTIONS(6884), + [aux_sym_include_statement_token1] = ACTIONS(6884), + [aux_sym_data_statement_token1] = ACTIONS(6884), + [aux_sym__inline_if_statement_token1] = ACTIONS(6884), + [aux_sym_end_if_statement_token1] = ACTIONS(6884), + [aux_sym_elseif_clause_token2] = ACTIONS(6884), + [aux_sym_select_case_statement_token1] = ACTIONS(6884), + [aux_sym_block_construct_token1] = ACTIONS(6884), + [aux_sym_format_statement_token1] = ACTIONS(6884), + [aux_sym_inquire_statement_token1] = ACTIONS(6884), + [aux_sym_enum_statement_token1] = ACTIONS(6884), + [aux_sym_entry_statement_token1] = ACTIONS(6884), + [aux_sym_null_literal_token1] = ACTIONS(6884), + [aux_sym_coarray_statement_token1] = ACTIONS(6884), + [aux_sym_coarray_statement_token2] = ACTIONS(6884), + [aux_sym_coarray_statement_token6] = ACTIONS(6884), + [aux_sym_coarray_statement_token8] = ACTIONS(6884), + [aux_sym_coarray_statement_token11] = ACTIONS(6884), + [aux_sym_coarray_statement_token12] = ACTIONS(6884), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6884), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6884), + [aux_sym_identifier_token1] = ACTIONS(6884), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6886), + }, + [2881] = { + [sym_input_item_list] = STATE(7285), + [sym__expression] = STATE(4288), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), @@ -434488,13 +429153,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_logical_expression_token5] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -434505,37 +429170,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), [sym__string_literal] = ACTIONS(5468), [sym__string_literal_kind] = ACTIONS(5470), }, - [2941] = { - [sym__expression] = STATE(4390), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2882] = { + [sym__expression] = STATE(4319), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_loop_control_expression] = STATE(8172), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4788), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -434553,10 +429219,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -434573,12 +429239,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -434595,127 +429261,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2942] = { - [sym__name] = STATE(6761), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4836), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6952), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6954), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6954), + [2883] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_end_module_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), }, - [2943] = { - [sym__expression] = STATE(4392), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2884] = { + [sym__expression] = STATE(4319), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_loop_control_expression] = STATE(7457), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4788), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -434733,10 +429401,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -434753,12 +429421,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -434775,34 +429443,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2944] = { - [sym__expression] = STATE(4393), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2885] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_end_module_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4417), + }, + [2886] = { + [sym_triplet_spec] = STATE(7102), + [sym__expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(5078), + [sym_relational_expression] = STATE(5078), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5073), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -434823,10 +429583,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -434843,12 +429603,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -434871,28 +429631,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2945] = { - [sym__expression] = STATE(4394), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2887] = { + [aux_sym_preproc_include_token1] = ACTIONS(6874), + [aux_sym_preproc_def_token1] = ACTIONS(6874), + [aux_sym_preproc_if_token1] = ACTIONS(6874), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6874), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6874), + [sym_preproc_directive] = ACTIONS(6874), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6874), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6874), + [aux_sym_interface_statement_token1] = ACTIONS(6874), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6874), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6874), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6874), + [aux_sym_language_binding_token1] = ACTIONS(6874), + [aux_sym_procedure_attributes_token1] = ACTIONS(6874), + [aux_sym_procedure_attributes_token3] = ACTIONS(6874), + [aux_sym_contains_statement_token1] = ACTIONS(6874), + [aux_sym_use_statement_token1] = ACTIONS(6874), + [aux_sym_use_statement_token2] = ACTIONS(6874), + [aux_sym_implicit_statement_token1] = ACTIONS(6874), + [aux_sym_implicit_statement_token3] = ACTIONS(6874), + [aux_sym_implicit_statement_token4] = ACTIONS(6874), + [aux_sym_save_statement_token1] = ACTIONS(6874), + [aux_sym_private_statement_token1] = ACTIONS(6874), + [aux_sym_public_statement_token1] = ACTIONS(6874), + [aux_sym_namelist_statement_token1] = ACTIONS(6874), + [aux_sym_common_statement_token1] = ACTIONS(6874), + [aux_sym_import_statement_token1] = ACTIONS(6874), + [aux_sym_derived_type_definition_token1] = ACTIONS(6874), + [aux_sym_abstract_specifier_token1] = ACTIONS(6874), + [aux_sym_procedure_attribute_token6] = ACTIONS(6874), + [aux_sym_variable_attributes_token1] = ACTIONS(6874), + [aux_sym_variable_attributes_token2] = ACTIONS(6874), + [aux_sym_variable_attributes_token3] = ACTIONS(6874), + [aux_sym_variable_attributes_token4] = ACTIONS(6874), + [aux_sym_variable_attributes_token5] = ACTIONS(6874), + [aux_sym__intrinsic_type_token1] = ACTIONS(6874), + [aux_sym__intrinsic_type_token2] = ACTIONS(6874), + [aux_sym__intrinsic_type_token3] = ACTIONS(6874), + [aux_sym__intrinsic_type_token4] = ACTIONS(6874), + [aux_sym__intrinsic_type_token6] = ACTIONS(6874), + [aux_sym__intrinsic_type_token7] = ACTIONS(6874), + [aux_sym__intrinsic_type_token8] = ACTIONS(6874), + [aux_sym__intrinsic_type_token9] = ACTIONS(6874), + [aux_sym__intrinsic_type_token10] = ACTIONS(6874), + [aux_sym_derived_type_token1] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6874), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6874), + [aux_sym_type_qualifier_token1] = ACTIONS(6874), + [aux_sym_type_qualifier_token2] = ACTIONS(6874), + [aux_sym_equivalence_statement_token1] = ACTIONS(6874), + [aux_sym_stop_statement_token1] = ACTIONS(6874), + [aux_sym_stop_statement_token2] = ACTIONS(6874), + [aux_sym_keyword_statement_token2] = ACTIONS(6874), + [aux_sym_keyword_statement_token3] = ACTIONS(6874), + [aux_sym_include_statement_token1] = ACTIONS(6874), + [aux_sym_data_statement_token1] = ACTIONS(6874), + [aux_sym__inline_if_statement_token1] = ACTIONS(6874), + [aux_sym_end_if_statement_token1] = ACTIONS(6874), + [aux_sym_elseif_clause_token2] = ACTIONS(6874), + [aux_sym_select_case_statement_token1] = ACTIONS(6874), + [aux_sym_block_construct_token1] = ACTIONS(6874), + [aux_sym_format_statement_token1] = ACTIONS(6874), + [aux_sym_inquire_statement_token1] = ACTIONS(6874), + [aux_sym_enum_statement_token1] = ACTIONS(6874), + [aux_sym_entry_statement_token1] = ACTIONS(6874), + [aux_sym_null_literal_token1] = ACTIONS(6874), + [aux_sym_coarray_statement_token1] = ACTIONS(6874), + [aux_sym_coarray_statement_token2] = ACTIONS(6874), + [aux_sym_coarray_statement_token6] = ACTIONS(6874), + [aux_sym_coarray_statement_token8] = ACTIONS(6874), + [aux_sym_coarray_statement_token11] = ACTIONS(6874), + [aux_sym_coarray_statement_token12] = ACTIONS(6874), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6874), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6874), + [aux_sym_identifier_token1] = ACTIONS(6874), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6876), + }, + [2888] = { + [sym_triplet_spec] = STATE(7102), + [sym__expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(5075), + [sym_relational_expression] = STATE(5075), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5073), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -434913,10 +429765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -434933,12 +429785,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -434961,31 +429813,1669 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2946] = { - [sym__expression] = STATE(4396), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2889] = { + [aux_sym_preproc_include_token1] = ACTIONS(6918), + [aux_sym_preproc_def_token1] = ACTIONS(6918), + [aux_sym_preproc_if_token1] = ACTIONS(6918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6918), + [sym_preproc_directive] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6918), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6918), + [aux_sym_interface_statement_token1] = ACTIONS(6918), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6918), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6918), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6918), + [aux_sym_language_binding_token1] = ACTIONS(6918), + [aux_sym_procedure_attributes_token1] = ACTIONS(6918), + [aux_sym_procedure_attributes_token3] = ACTIONS(6918), + [aux_sym_contains_statement_token1] = ACTIONS(6918), + [aux_sym_use_statement_token1] = ACTIONS(6918), + [aux_sym_use_statement_token2] = ACTIONS(6918), + [aux_sym_implicit_statement_token1] = ACTIONS(6918), + [aux_sym_implicit_statement_token3] = ACTIONS(6918), + [aux_sym_implicit_statement_token4] = ACTIONS(6918), + [aux_sym_save_statement_token1] = ACTIONS(6918), + [aux_sym_private_statement_token1] = ACTIONS(6918), + [aux_sym_public_statement_token1] = ACTIONS(6918), + [aux_sym_namelist_statement_token1] = ACTIONS(6918), + [aux_sym_common_statement_token1] = ACTIONS(6918), + [aux_sym_import_statement_token1] = ACTIONS(6918), + [aux_sym_derived_type_definition_token1] = ACTIONS(6918), + [aux_sym_abstract_specifier_token1] = ACTIONS(6918), + [aux_sym_procedure_attribute_token6] = ACTIONS(6918), + [aux_sym_variable_attributes_token1] = ACTIONS(6918), + [aux_sym_variable_attributes_token2] = ACTIONS(6918), + [aux_sym_variable_attributes_token3] = ACTIONS(6918), + [aux_sym_variable_attributes_token4] = ACTIONS(6918), + [aux_sym_variable_attributes_token5] = ACTIONS(6918), + [aux_sym__intrinsic_type_token1] = ACTIONS(6918), + [aux_sym__intrinsic_type_token2] = ACTIONS(6918), + [aux_sym__intrinsic_type_token3] = ACTIONS(6918), + [aux_sym__intrinsic_type_token4] = ACTIONS(6918), + [aux_sym__intrinsic_type_token6] = ACTIONS(6918), + [aux_sym__intrinsic_type_token7] = ACTIONS(6918), + [aux_sym__intrinsic_type_token8] = ACTIONS(6918), + [aux_sym__intrinsic_type_token9] = ACTIONS(6918), + [aux_sym__intrinsic_type_token10] = ACTIONS(6918), + [aux_sym_derived_type_token1] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6918), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6918), + [aux_sym_type_qualifier_token1] = ACTIONS(6918), + [aux_sym_type_qualifier_token2] = ACTIONS(6918), + [aux_sym_equivalence_statement_token1] = ACTIONS(6918), + [aux_sym_stop_statement_token1] = ACTIONS(6918), + [aux_sym_stop_statement_token2] = ACTIONS(6918), + [aux_sym_keyword_statement_token2] = ACTIONS(6918), + [aux_sym_keyword_statement_token3] = ACTIONS(6918), + [aux_sym_include_statement_token1] = ACTIONS(6918), + [aux_sym_data_statement_token1] = ACTIONS(6918), + [aux_sym__inline_if_statement_token1] = ACTIONS(6918), + [aux_sym_end_if_statement_token1] = ACTIONS(6918), + [aux_sym_elseif_clause_token2] = ACTIONS(6918), + [aux_sym_select_case_statement_token1] = ACTIONS(6918), + [aux_sym_block_construct_token1] = ACTIONS(6918), + [aux_sym_format_statement_token1] = ACTIONS(6918), + [aux_sym_inquire_statement_token1] = ACTIONS(6918), + [aux_sym_enum_statement_token1] = ACTIONS(6918), + [aux_sym_entry_statement_token1] = ACTIONS(6918), + [aux_sym_null_literal_token1] = ACTIONS(6918), + [aux_sym_coarray_statement_token1] = ACTIONS(6918), + [aux_sym_coarray_statement_token2] = ACTIONS(6918), + [aux_sym_coarray_statement_token6] = ACTIONS(6918), + [aux_sym_coarray_statement_token8] = ACTIONS(6918), + [aux_sym_coarray_statement_token11] = ACTIONS(6918), + [aux_sym_coarray_statement_token12] = ACTIONS(6918), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6918), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6918), + [aux_sym_identifier_token1] = ACTIONS(6918), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6920), + }, + [2890] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), + }, + [2891] = { + [sym__expression] = STATE(4498), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_COMMA] = ACTIONS(6922), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + }, + [2892] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_end_module_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4401), + }, + [2893] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + }, + [2894] = { + [aux_sym_preproc_include_token1] = ACTIONS(4315), + [aux_sym_preproc_def_token1] = ACTIONS(4315), + [aux_sym_preproc_if_token1] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4315), + [sym_preproc_directive] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4315), + [aux_sym_end_module_statement_token1] = ACTIONS(4315), + [aux_sym_interface_statement_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4315), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4315), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4315), + [aux_sym_language_binding_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token1] = ACTIONS(4315), + [aux_sym_procedure_attributes_token3] = ACTIONS(4315), + [aux_sym_contains_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token1] = ACTIONS(4315), + [aux_sym_use_statement_token2] = ACTIONS(4315), + [aux_sym_implicit_statement_token1] = ACTIONS(4315), + [aux_sym_implicit_statement_token3] = ACTIONS(4315), + [aux_sym_implicit_statement_token4] = ACTIONS(4315), + [aux_sym_save_statement_token1] = ACTIONS(4315), + [aux_sym_private_statement_token1] = ACTIONS(4315), + [aux_sym_public_statement_token1] = ACTIONS(4315), + [aux_sym_namelist_statement_token1] = ACTIONS(4315), + [aux_sym_common_statement_token1] = ACTIONS(4315), + [aux_sym_import_statement_token1] = ACTIONS(4315), + [aux_sym_derived_type_definition_token1] = ACTIONS(4315), + [aux_sym_abstract_specifier_token1] = ACTIONS(4315), + [aux_sym_procedure_attribute_token6] = ACTIONS(4315), + [aux_sym_variable_attributes_token1] = ACTIONS(4315), + [aux_sym_variable_attributes_token2] = ACTIONS(4315), + [aux_sym_variable_attributes_token3] = ACTIONS(4315), + [aux_sym_variable_attributes_token4] = ACTIONS(4315), + [aux_sym_variable_attributes_token5] = ACTIONS(4315), + [aux_sym__intrinsic_type_token1] = ACTIONS(4315), + [aux_sym__intrinsic_type_token2] = ACTIONS(4315), + [aux_sym__intrinsic_type_token3] = ACTIONS(4315), + [aux_sym__intrinsic_type_token4] = ACTIONS(4315), + [aux_sym__intrinsic_type_token6] = ACTIONS(4315), + [aux_sym__intrinsic_type_token7] = ACTIONS(4315), + [aux_sym__intrinsic_type_token8] = ACTIONS(4315), + [aux_sym__intrinsic_type_token9] = ACTIONS(4315), + [aux_sym__intrinsic_type_token10] = ACTIONS(4315), + [aux_sym_derived_type_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4315), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4315), + [aux_sym_type_qualifier_token1] = ACTIONS(4315), + [aux_sym_type_qualifier_token2] = ACTIONS(4315), + [aux_sym_equivalence_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token1] = ACTIONS(4315), + [aux_sym_stop_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token2] = ACTIONS(4315), + [aux_sym_keyword_statement_token3] = ACTIONS(4315), + [aux_sym_include_statement_token1] = ACTIONS(4315), + [aux_sym_data_statement_token1] = ACTIONS(4315), + [aux_sym__inline_if_statement_token1] = ACTIONS(4315), + [aux_sym_end_if_statement_token1] = ACTIONS(4315), + [aux_sym_elseif_clause_token2] = ACTIONS(4315), + [aux_sym_select_case_statement_token1] = ACTIONS(4315), + [aux_sym_block_construct_token1] = ACTIONS(4315), + [aux_sym_format_statement_token1] = ACTIONS(4315), + [aux_sym_inquire_statement_token1] = ACTIONS(4315), + [aux_sym_enum_statement_token1] = ACTIONS(4315), + [aux_sym_entry_statement_token1] = ACTIONS(4315), + [aux_sym_null_literal_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_statement_token2] = ACTIONS(4315), + [aux_sym_coarray_statement_token6] = ACTIONS(4315), + [aux_sym_coarray_statement_token8] = ACTIONS(4315), + [aux_sym_coarray_statement_token11] = ACTIONS(4315), + [aux_sym_coarray_statement_token12] = ACTIONS(4315), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4315), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4315), + [aux_sym_identifier_token1] = ACTIONS(4315), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4317), + }, + [2895] = { + [aux_sym_preproc_include_token1] = ACTIONS(6724), + [aux_sym_preproc_def_token1] = ACTIONS(6724), + [aux_sym_preproc_if_token1] = ACTIONS(6724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6724), + [sym_preproc_directive] = ACTIONS(6724), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6724), + [aux_sym_end_module_statement_token1] = ACTIONS(6724), + [aux_sym_interface_statement_token1] = ACTIONS(6724), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6724), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6724), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6724), + [aux_sym_language_binding_token1] = ACTIONS(6724), + [aux_sym_procedure_attributes_token1] = ACTIONS(6724), + [aux_sym_procedure_attributes_token3] = ACTIONS(6724), + [aux_sym_contains_statement_token1] = ACTIONS(6724), + [aux_sym_use_statement_token1] = ACTIONS(6724), + [aux_sym_use_statement_token2] = ACTIONS(6724), + [aux_sym_implicit_statement_token1] = ACTIONS(6724), + [aux_sym_implicit_statement_token3] = ACTIONS(6724), + [aux_sym_implicit_statement_token4] = ACTIONS(6724), + [aux_sym_save_statement_token1] = ACTIONS(6724), + [aux_sym_private_statement_token1] = ACTIONS(6724), + [aux_sym_public_statement_token1] = ACTIONS(6724), + [aux_sym_namelist_statement_token1] = ACTIONS(6724), + [aux_sym_common_statement_token1] = ACTIONS(6724), + [aux_sym_import_statement_token1] = ACTIONS(6724), + [aux_sym_derived_type_definition_token1] = ACTIONS(6724), + [aux_sym_abstract_specifier_token1] = ACTIONS(6724), + [aux_sym_procedure_attribute_token6] = ACTIONS(6724), + [aux_sym_variable_attributes_token1] = ACTIONS(6724), + [aux_sym_variable_attributes_token2] = ACTIONS(6724), + [aux_sym_variable_attributes_token3] = ACTIONS(6724), + [aux_sym_variable_attributes_token4] = ACTIONS(6724), + [aux_sym_variable_attributes_token5] = ACTIONS(6724), + [aux_sym__intrinsic_type_token1] = ACTIONS(6724), + [aux_sym__intrinsic_type_token2] = ACTIONS(6724), + [aux_sym__intrinsic_type_token3] = ACTIONS(6724), + [aux_sym__intrinsic_type_token4] = ACTIONS(6724), + [aux_sym__intrinsic_type_token6] = ACTIONS(6724), + [aux_sym__intrinsic_type_token7] = ACTIONS(6724), + [aux_sym__intrinsic_type_token8] = ACTIONS(6724), + [aux_sym__intrinsic_type_token9] = ACTIONS(6724), + [aux_sym__intrinsic_type_token10] = ACTIONS(6724), + [aux_sym_derived_type_token1] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6724), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6724), + [aux_sym_type_qualifier_token1] = ACTIONS(6724), + [aux_sym_type_qualifier_token2] = ACTIONS(6724), + [aux_sym_equivalence_statement_token1] = ACTIONS(6724), + [aux_sym_stop_statement_token1] = ACTIONS(6724), + [aux_sym_stop_statement_token2] = ACTIONS(6724), + [aux_sym_keyword_statement_token2] = ACTIONS(6724), + [aux_sym_keyword_statement_token3] = ACTIONS(6724), + [aux_sym_include_statement_token1] = ACTIONS(6724), + [aux_sym_data_statement_token1] = ACTIONS(6724), + [aux_sym__inline_if_statement_token1] = ACTIONS(6724), + [aux_sym_end_if_statement_token1] = ACTIONS(6724), + [aux_sym_elseif_clause_token2] = ACTIONS(6724), + [aux_sym_select_case_statement_token1] = ACTIONS(6724), + [aux_sym_block_construct_token1] = ACTIONS(6724), + [aux_sym_format_statement_token1] = ACTIONS(6724), + [aux_sym_inquire_statement_token1] = ACTIONS(6724), + [aux_sym_enum_statement_token1] = ACTIONS(6724), + [aux_sym_entry_statement_token1] = ACTIONS(6724), + [aux_sym_null_literal_token1] = ACTIONS(6724), + [aux_sym_coarray_statement_token1] = ACTIONS(6724), + [aux_sym_coarray_statement_token2] = ACTIONS(6724), + [aux_sym_coarray_statement_token6] = ACTIONS(6724), + [aux_sym_coarray_statement_token8] = ACTIONS(6724), + [aux_sym_coarray_statement_token11] = ACTIONS(6724), + [aux_sym_coarray_statement_token12] = ACTIONS(6724), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6724), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6724), + [aux_sym_identifier_token1] = ACTIONS(6724), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6728), + }, + [2896] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_end_module_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4405), + }, + [2897] = { + [anon_sym_LPAREN2] = ACTIONS(6856), + [anon_sym_PLUS] = ACTIONS(6858), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6856), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6856), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6856), + [aux_sym_procedure_attributes_token3] = ACTIONS(6856), + [aux_sym_use_statement_token2] = ACTIONS(6856), + [aux_sym_implicit_statement_token4] = ACTIONS(6856), + [aux_sym_save_statement_token1] = ACTIONS(6856), + [aux_sym_private_statement_token1] = ACTIONS(6856), + [aux_sym_public_statement_token1] = ACTIONS(6856), + [aux_sym_derived_type_definition_token1] = ACTIONS(6856), + [aux_sym_procedure_attribute_token6] = ACTIONS(6856), + [aux_sym_variable_attributes_token2] = ACTIONS(6856), + [aux_sym_variable_attributes_token3] = ACTIONS(6856), + [aux_sym_variable_attributes_token5] = ACTIONS(6856), + [aux_sym__intrinsic_type_token1] = ACTIONS(6856), + [aux_sym__intrinsic_type_token3] = ACTIONS(6856), + [aux_sym__intrinsic_type_token4] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6856), + [aux_sym_type_qualifier_token1] = ACTIONS(6856), + [aux_sym_type_qualifier_token2] = ACTIONS(6856), + [aux_sym_stop_statement_token1] = ACTIONS(6856), + [aux_sym_stop_statement_token2] = ACTIONS(6856), + [aux_sym_subroutine_call_token1] = ACTIONS(6856), + [aux_sym_keyword_statement_token1] = ACTIONS(6856), + [aux_sym_keyword_statement_token2] = ACTIONS(6856), + [aux_sym_keyword_statement_token3] = ACTIONS(6856), + [aux_sym_keyword_statement_token4] = ACTIONS(6856), + [aux_sym_keyword_statement_token6] = ACTIONS(6856), + [aux_sym_keyword_statement_token7] = ACTIONS(6856), + [aux_sym_include_statement_token1] = ACTIONS(6856), + [aux_sym_data_statement_token1] = ACTIONS(6856), + [aux_sym_do_loop_statement_token1] = ACTIONS(6856), + [aux_sym__inline_if_statement_token1] = ACTIONS(6856), + [aux_sym__block_if_statement_token1] = ACTIONS(6856), + [aux_sym_end_if_statement_token1] = ACTIONS(6856), + [aux_sym_elseif_clause_token2] = ACTIONS(6856), + [aux_sym__inline_where_statement_token1] = ACTIONS(6856), + [aux_sym__forall_control_expression_token1] = ACTIONS(6856), + [aux_sym_select_case_statement_token1] = ACTIONS(6856), + [aux_sym_select_case_statement_token3] = ACTIONS(6856), + [aux_sym_select_type_statement_token1] = ACTIONS(6856), + [aux_sym_select_rank_statement_token2] = ACTIONS(6856), + [aux_sym_block_construct_token1] = ACTIONS(6856), + [aux_sym_associate_statement_token1] = ACTIONS(6856), + [aux_sym_format_statement_token1] = ACTIONS(6856), + [aux_sym_print_statement_token1] = ACTIONS(6856), + [aux_sym_open_statement_token1] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6856), + [aux_sym_inquire_statement_token1] = ACTIONS(6856), + [aux_sym_file_position_statement_token1] = ACTIONS(6856), + [aux_sym_file_position_statement_token2] = ACTIONS(6856), + [aux_sym_file_position_statement_token3] = ACTIONS(6856), + [aux_sym_file_position_statement_token4] = ACTIONS(6856), + [aux_sym_allocate_statement_token1] = ACTIONS(6856), + [aux_sym_entry_statement_token1] = ACTIONS(6856), + [aux_sym_logical_expression_token5] = ACTIONS(6858), + [anon_sym_DOT] = ACTIONS(6856), + [anon_sym_LPAREN_SLASH] = ACTIONS(6858), + [anon_sym_LBRACK] = ACTIONS(6858), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [aux_sym_null_literal_token1] = ACTIONS(6856), + [aux_sym_coarray_statement_token1] = ACTIONS(6856), + [aux_sym_coarray_statement_token2] = ACTIONS(6856), + [aux_sym_coarray_statement_token6] = ACTIONS(6856), + [aux_sym_coarray_statement_token8] = ACTIONS(6856), + [aux_sym_coarray_statement_token11] = ACTIONS(6856), + [aux_sym_coarray_statement_token12] = ACTIONS(6856), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6856), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6856), + [aux_sym_identifier_token1] = ACTIONS(6856), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6858), + [sym__float_literal] = ACTIONS(6858), + [sym__boz_literal] = ACTIONS(6858), + [sym__string_literal] = ACTIONS(6858), + [sym__string_literal_kind] = ACTIONS(6858), + }, + [2898] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_end_module_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + }, + [2899] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_end_submodule_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + }, + [2900] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4996), + }, + [2901] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_end_module_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4409), + }, + [2902] = { + [aux_sym_preproc_include_token1] = ACTIONS(6906), + [aux_sym_preproc_def_token1] = ACTIONS(6906), + [aux_sym_preproc_if_token1] = ACTIONS(6906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6906), + [sym_preproc_directive] = ACTIONS(6906), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6906), + [aux_sym_end_module_statement_token1] = ACTIONS(6906), + [aux_sym_interface_statement_token1] = ACTIONS(6906), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6906), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6906), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6906), + [aux_sym_language_binding_token1] = ACTIONS(6906), + [aux_sym_procedure_attributes_token1] = ACTIONS(6906), + [aux_sym_procedure_attributes_token3] = ACTIONS(6906), + [aux_sym_contains_statement_token1] = ACTIONS(6906), + [aux_sym_use_statement_token1] = ACTIONS(6906), + [aux_sym_use_statement_token2] = ACTIONS(6906), + [aux_sym_implicit_statement_token1] = ACTIONS(6906), + [aux_sym_implicit_statement_token3] = ACTIONS(6906), + [aux_sym_implicit_statement_token4] = ACTIONS(6906), + [aux_sym_save_statement_token1] = ACTIONS(6906), + [aux_sym_private_statement_token1] = ACTIONS(6906), + [aux_sym_public_statement_token1] = ACTIONS(6906), + [aux_sym_namelist_statement_token1] = ACTIONS(6906), + [aux_sym_common_statement_token1] = ACTIONS(6906), + [aux_sym_import_statement_token1] = ACTIONS(6906), + [aux_sym_derived_type_definition_token1] = ACTIONS(6906), + [aux_sym_abstract_specifier_token1] = ACTIONS(6906), + [aux_sym_procedure_attribute_token6] = ACTIONS(6906), + [aux_sym_variable_attributes_token1] = ACTIONS(6906), + [aux_sym_variable_attributes_token2] = ACTIONS(6906), + [aux_sym_variable_attributes_token3] = ACTIONS(6906), + [aux_sym_variable_attributes_token4] = ACTIONS(6906), + [aux_sym_variable_attributes_token5] = ACTIONS(6906), + [aux_sym__intrinsic_type_token1] = ACTIONS(6906), + [aux_sym__intrinsic_type_token2] = ACTIONS(6906), + [aux_sym__intrinsic_type_token3] = ACTIONS(6906), + [aux_sym__intrinsic_type_token4] = ACTIONS(6906), + [aux_sym__intrinsic_type_token6] = ACTIONS(6906), + [aux_sym__intrinsic_type_token7] = ACTIONS(6906), + [aux_sym__intrinsic_type_token8] = ACTIONS(6906), + [aux_sym__intrinsic_type_token9] = ACTIONS(6906), + [aux_sym__intrinsic_type_token10] = ACTIONS(6906), + [aux_sym_derived_type_token1] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6906), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6906), + [aux_sym_type_qualifier_token1] = ACTIONS(6906), + [aux_sym_type_qualifier_token2] = ACTIONS(6906), + [aux_sym_equivalence_statement_token1] = ACTIONS(6906), + [aux_sym_stop_statement_token1] = ACTIONS(6906), + [aux_sym_stop_statement_token2] = ACTIONS(6906), + [aux_sym_keyword_statement_token2] = ACTIONS(6906), + [aux_sym_keyword_statement_token3] = ACTIONS(6906), + [aux_sym_include_statement_token1] = ACTIONS(6906), + [aux_sym_data_statement_token1] = ACTIONS(6906), + [aux_sym__inline_if_statement_token1] = ACTIONS(6906), + [aux_sym_end_if_statement_token1] = ACTIONS(6906), + [aux_sym_elseif_clause_token2] = ACTIONS(6906), + [aux_sym_select_case_statement_token1] = ACTIONS(6906), + [aux_sym_block_construct_token1] = ACTIONS(6906), + [aux_sym_format_statement_token1] = ACTIONS(6906), + [aux_sym_inquire_statement_token1] = ACTIONS(6906), + [aux_sym_enum_statement_token1] = ACTIONS(6906), + [aux_sym_entry_statement_token1] = ACTIONS(6906), + [aux_sym_null_literal_token1] = ACTIONS(6906), + [aux_sym_coarray_statement_token1] = ACTIONS(6906), + [aux_sym_coarray_statement_token2] = ACTIONS(6906), + [aux_sym_coarray_statement_token6] = ACTIONS(6906), + [aux_sym_coarray_statement_token8] = ACTIONS(6906), + [aux_sym_coarray_statement_token11] = ACTIONS(6906), + [aux_sym_coarray_statement_token12] = ACTIONS(6906), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6906), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6906), + [aux_sym_identifier_token1] = ACTIONS(6906), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6908), + }, + [2903] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + }, + [2904] = { + [aux_sym_preproc_include_token1] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4990), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4990), + [aux_sym_interface_statement_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_language_binding_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_contains_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token2] = ACTIONS(4990), + [aux_sym_implicit_statement_token1] = ACTIONS(4990), + [aux_sym_implicit_statement_token3] = ACTIONS(4990), + [aux_sym_implicit_statement_token4] = ACTIONS(4990), + [aux_sym_save_statement_token1] = ACTIONS(4990), + [aux_sym_private_statement_token1] = ACTIONS(4990), + [aux_sym_public_statement_token1] = ACTIONS(4990), + [aux_sym_namelist_statement_token1] = ACTIONS(4990), + [aux_sym_common_statement_token1] = ACTIONS(4990), + [aux_sym_import_statement_token1] = ACTIONS(4990), + [aux_sym_derived_type_definition_token1] = ACTIONS(4990), + [aux_sym_abstract_specifier_token1] = ACTIONS(4990), + [aux_sym_procedure_attribute_token6] = ACTIONS(4990), + [aux_sym_variable_attributes_token1] = ACTIONS(4990), + [aux_sym_variable_attributes_token2] = ACTIONS(4990), + [aux_sym_variable_attributes_token3] = ACTIONS(4990), + [aux_sym_variable_attributes_token4] = ACTIONS(4990), + [aux_sym_variable_attributes_token5] = ACTIONS(4990), + [aux_sym__intrinsic_type_token1] = ACTIONS(4990), + [aux_sym__intrinsic_type_token2] = ACTIONS(4990), + [aux_sym__intrinsic_type_token3] = ACTIONS(4990), + [aux_sym__intrinsic_type_token4] = ACTIONS(4990), + [aux_sym__intrinsic_type_token6] = ACTIONS(4990), + [aux_sym__intrinsic_type_token7] = ACTIONS(4990), + [aux_sym__intrinsic_type_token8] = ACTIONS(4990), + [aux_sym__intrinsic_type_token9] = ACTIONS(4990), + [aux_sym__intrinsic_type_token10] = ACTIONS(4990), + [aux_sym_derived_type_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), + [aux_sym_type_qualifier_token1] = ACTIONS(4990), + [aux_sym_type_qualifier_token2] = ACTIONS(4990), + [aux_sym_equivalence_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token3] = ACTIONS(4990), + [aux_sym_include_statement_token1] = ACTIONS(4990), + [aux_sym_data_statement_token1] = ACTIONS(4990), + [aux_sym__inline_if_statement_token1] = ACTIONS(4990), + [aux_sym_end_if_statement_token1] = ACTIONS(4990), + [aux_sym_elseif_clause_token2] = ACTIONS(4990), + [aux_sym_select_case_statement_token1] = ACTIONS(4990), + [aux_sym_block_construct_token1] = ACTIONS(4990), + [aux_sym_format_statement_token1] = ACTIONS(4990), + [aux_sym_inquire_statement_token1] = ACTIONS(4990), + [aux_sym_enum_statement_token1] = ACTIONS(4990), + [aux_sym_entry_statement_token1] = ACTIONS(4990), + [aux_sym_null_literal_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token2] = ACTIONS(4990), + [aux_sym_coarray_statement_token6] = ACTIONS(4990), + [aux_sym_coarray_statement_token8] = ACTIONS(4990), + [aux_sym_coarray_statement_token11] = ACTIONS(4990), + [aux_sym_coarray_statement_token12] = ACTIONS(4990), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), + [aux_sym_identifier_token1] = ACTIONS(4990), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4992), + }, + [2905] = { + [aux_sym_preproc_include_token1] = ACTIONS(4345), + [aux_sym_preproc_def_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token1] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4345), + [sym_preproc_directive] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4345), + [aux_sym_end_submodule_statement_token1] = ACTIONS(4345), + [aux_sym_interface_statement_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4345), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4345), + [aux_sym_language_binding_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token1] = ACTIONS(4345), + [aux_sym_procedure_attributes_token3] = ACTIONS(4345), + [aux_sym_contains_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token1] = ACTIONS(4345), + [aux_sym_use_statement_token2] = ACTIONS(4345), + [aux_sym_implicit_statement_token1] = ACTIONS(4345), + [aux_sym_implicit_statement_token3] = ACTIONS(4345), + [aux_sym_implicit_statement_token4] = ACTIONS(4345), + [aux_sym_save_statement_token1] = ACTIONS(4345), + [aux_sym_private_statement_token1] = ACTIONS(4345), + [aux_sym_public_statement_token1] = ACTIONS(4345), + [aux_sym_namelist_statement_token1] = ACTIONS(4345), + [aux_sym_common_statement_token1] = ACTIONS(4345), + [aux_sym_import_statement_token1] = ACTIONS(4345), + [aux_sym_derived_type_definition_token1] = ACTIONS(4345), + [aux_sym_abstract_specifier_token1] = ACTIONS(4345), + [aux_sym_procedure_attribute_token6] = ACTIONS(4345), + [aux_sym_variable_attributes_token1] = ACTIONS(4345), + [aux_sym_variable_attributes_token2] = ACTIONS(4345), + [aux_sym_variable_attributes_token3] = ACTIONS(4345), + [aux_sym_variable_attributes_token4] = ACTIONS(4345), + [aux_sym_variable_attributes_token5] = ACTIONS(4345), + [aux_sym__intrinsic_type_token1] = ACTIONS(4345), + [aux_sym__intrinsic_type_token2] = ACTIONS(4345), + [aux_sym__intrinsic_type_token3] = ACTIONS(4345), + [aux_sym__intrinsic_type_token4] = ACTIONS(4345), + [aux_sym__intrinsic_type_token6] = ACTIONS(4345), + [aux_sym__intrinsic_type_token7] = ACTIONS(4345), + [aux_sym__intrinsic_type_token8] = ACTIONS(4345), + [aux_sym__intrinsic_type_token9] = ACTIONS(4345), + [aux_sym__intrinsic_type_token10] = ACTIONS(4345), + [aux_sym_derived_type_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4345), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4345), + [aux_sym_type_qualifier_token1] = ACTIONS(4345), + [aux_sym_type_qualifier_token2] = ACTIONS(4345), + [aux_sym_equivalence_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token1] = ACTIONS(4345), + [aux_sym_stop_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token2] = ACTIONS(4345), + [aux_sym_keyword_statement_token3] = ACTIONS(4345), + [aux_sym_include_statement_token1] = ACTIONS(4345), + [aux_sym_data_statement_token1] = ACTIONS(4345), + [aux_sym__inline_if_statement_token1] = ACTIONS(4345), + [aux_sym_end_if_statement_token1] = ACTIONS(4345), + [aux_sym_elseif_clause_token2] = ACTIONS(4345), + [aux_sym_select_case_statement_token1] = ACTIONS(4345), + [aux_sym_block_construct_token1] = ACTIONS(4345), + [aux_sym_format_statement_token1] = ACTIONS(4345), + [aux_sym_inquire_statement_token1] = ACTIONS(4345), + [aux_sym_enum_statement_token1] = ACTIONS(4345), + [aux_sym_entry_statement_token1] = ACTIONS(4345), + [aux_sym_null_literal_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_statement_token2] = ACTIONS(4345), + [aux_sym_coarray_statement_token6] = ACTIONS(4345), + [aux_sym_coarray_statement_token8] = ACTIONS(4345), + [aux_sym_coarray_statement_token11] = ACTIONS(4345), + [aux_sym_coarray_statement_token12] = ACTIONS(4345), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4345), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4345), + [aux_sym_identifier_token1] = ACTIONS(4345), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4347), + }, + [2906] = { + [aux_sym_preproc_include_token1] = ACTIONS(6924), + [aux_sym_preproc_def_token1] = ACTIONS(6924), + [aux_sym_preproc_if_token1] = ACTIONS(6924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6924), + [sym_preproc_directive] = ACTIONS(6924), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6924), + [aux_sym_end_submodule_statement_token1] = ACTIONS(6924), + [aux_sym_interface_statement_token1] = ACTIONS(6924), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6924), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6924), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6924), + [aux_sym_language_binding_token1] = ACTIONS(6924), + [aux_sym_procedure_attributes_token1] = ACTIONS(6924), + [aux_sym_procedure_attributes_token3] = ACTIONS(6924), + [aux_sym_contains_statement_token1] = ACTIONS(6924), + [aux_sym_use_statement_token1] = ACTIONS(6924), + [aux_sym_use_statement_token2] = ACTIONS(6924), + [aux_sym_implicit_statement_token1] = ACTIONS(6924), + [aux_sym_implicit_statement_token3] = ACTIONS(6924), + [aux_sym_implicit_statement_token4] = ACTIONS(6924), + [aux_sym_save_statement_token1] = ACTIONS(6924), + [aux_sym_private_statement_token1] = ACTIONS(6924), + [aux_sym_public_statement_token1] = ACTIONS(6924), + [aux_sym_namelist_statement_token1] = ACTIONS(6924), + [aux_sym_common_statement_token1] = ACTIONS(6924), + [aux_sym_import_statement_token1] = ACTIONS(6924), + [aux_sym_derived_type_definition_token1] = ACTIONS(6924), + [aux_sym_abstract_specifier_token1] = ACTIONS(6924), + [aux_sym_procedure_attribute_token6] = ACTIONS(6924), + [aux_sym_variable_attributes_token1] = ACTIONS(6924), + [aux_sym_variable_attributes_token2] = ACTIONS(6924), + [aux_sym_variable_attributes_token3] = ACTIONS(6924), + [aux_sym_variable_attributes_token4] = ACTIONS(6924), + [aux_sym_variable_attributes_token5] = ACTIONS(6924), + [aux_sym__intrinsic_type_token1] = ACTIONS(6924), + [aux_sym__intrinsic_type_token2] = ACTIONS(6924), + [aux_sym__intrinsic_type_token3] = ACTIONS(6924), + [aux_sym__intrinsic_type_token4] = ACTIONS(6924), + [aux_sym__intrinsic_type_token6] = ACTIONS(6924), + [aux_sym__intrinsic_type_token7] = ACTIONS(6924), + [aux_sym__intrinsic_type_token8] = ACTIONS(6924), + [aux_sym__intrinsic_type_token9] = ACTIONS(6924), + [aux_sym__intrinsic_type_token10] = ACTIONS(6924), + [aux_sym_derived_type_token1] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6924), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(6924), + [aux_sym_type_qualifier_token1] = ACTIONS(6924), + [aux_sym_type_qualifier_token2] = ACTIONS(6924), + [aux_sym_equivalence_statement_token1] = ACTIONS(6924), + [aux_sym_stop_statement_token1] = ACTIONS(6924), + [aux_sym_stop_statement_token2] = ACTIONS(6924), + [aux_sym_keyword_statement_token2] = ACTIONS(6924), + [aux_sym_keyword_statement_token3] = ACTIONS(6924), + [aux_sym_include_statement_token1] = ACTIONS(6924), + [aux_sym_data_statement_token1] = ACTIONS(6924), + [aux_sym__inline_if_statement_token1] = ACTIONS(6924), + [aux_sym_end_if_statement_token1] = ACTIONS(6924), + [aux_sym_elseif_clause_token2] = ACTIONS(6924), + [aux_sym_select_case_statement_token1] = ACTIONS(6924), + [aux_sym_block_construct_token1] = ACTIONS(6924), + [aux_sym_format_statement_token1] = ACTIONS(6924), + [aux_sym_inquire_statement_token1] = ACTIONS(6924), + [aux_sym_enum_statement_token1] = ACTIONS(6924), + [aux_sym_entry_statement_token1] = ACTIONS(6924), + [aux_sym_null_literal_token1] = ACTIONS(6924), + [aux_sym_coarray_statement_token1] = ACTIONS(6924), + [aux_sym_coarray_statement_token2] = ACTIONS(6924), + [aux_sym_coarray_statement_token6] = ACTIONS(6924), + [aux_sym_coarray_statement_token8] = ACTIONS(6924), + [aux_sym_coarray_statement_token11] = ACTIONS(6924), + [aux_sym_coarray_statement_token12] = ACTIONS(6924), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6924), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6924), + [aux_sym_identifier_token1] = ACTIONS(6924), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(6926), + }, + [2907] = { + [sym__expression] = STATE(4152), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(6928), + [anon_sym_DASH] = ACTIONS(6928), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -435003,10 +431493,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -435023,12 +431513,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(6930), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -435045,34 +431535,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6932), + [sym__string_literal_kind] = ACTIONS(6934), }, - [2947] = { - [sym__expression] = STATE(4158), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2908] = { + [sym__expression] = STATE(4149), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6928), [anon_sym_DASH] = ACTIONS(6928), @@ -435093,10 +431583,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -435113,7 +431603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -435135,34 +431625,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(6932), [sym__string_literal_kind] = ACTIONS(6934), }, - [2948] = { - [sym__expression] = STATE(4175), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2909] = { + [sym__expression] = STATE(4150), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6928), [anon_sym_DASH] = ACTIONS(6928), @@ -435183,10 +431673,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -435203,7 +431693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -435225,34 +431715,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(6932), [sym__string_literal_kind] = ACTIONS(6934), }, - [2949] = { - [sym__expression] = STATE(4176), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2910] = { + [sym__expression] = STATE(4151), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6928), [anon_sym_DASH] = ACTIONS(6928), @@ -435273,10 +431763,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -435293,7 +431783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -435315,34 +431805,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(6932), [sym__string_literal_kind] = ACTIONS(6934), }, - [2950] = { - [sym__expression] = STATE(4159), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2911] = { + [sym__expression] = STATE(4154), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6928), [anon_sym_DASH] = ACTIONS(6928), @@ -435363,10 +431853,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -435383,7 +431873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -435405,34 +431895,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(6932), [sym__string_literal_kind] = ACTIONS(6934), }, - [2951] = { - [sym__expression] = STATE(4160), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2912] = { + [sym__expression] = STATE(4157), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6928), [anon_sym_DASH] = ACTIONS(6928), @@ -435453,10 +431943,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -435473,7 +431963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -435495,34 +431985,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(6932), [sym__string_literal_kind] = ACTIONS(6934), }, - [2952] = { - [sym__expression] = STATE(4162), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2913] = { + [sym__expression] = STATE(4166), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6928), [anon_sym_DASH] = ACTIONS(6928), @@ -435543,10 +432033,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -435563,7 +432053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -435585,34 +432075,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(6932), [sym__string_literal_kind] = ACTIONS(6934), }, - [2953] = { - [sym__expression] = STATE(4163), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2914] = { + [sym__expression] = STATE(4147), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6928), [anon_sym_DASH] = ACTIONS(6928), @@ -435633,10 +432123,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -435653,7 +432143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -435675,217 +432165,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(6932), [sym__string_literal_kind] = ACTIONS(6934), }, - [2954] = { - [sym__expression] = STATE(4164), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [2915] = { + [sym__name] = STATE(7048), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(5046), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_subroutine_statement_token1] = ACTIONS(6936), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6938), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(6932), - [sym__string_literal_kind] = ACTIONS(6934), + [sym__external_end_of_statement] = ACTIONS(6938), }, - [2955] = { - [sym__expression] = STATE(4146), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_DASH] = ACTIONS(6928), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [2916] = { + [sym__name] = STATE(6253), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(5048), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(6940), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6942), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(6932), - [sym__string_literal_kind] = ACTIONS(6934), + [sym__external_end_of_statement] = ACTIONS(6942), }, - [2956] = { - [sym__expression] = STATE(4178), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2917] = { + [sym__expression] = STATE(4501), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_DASH] = ACTIONS(6928), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -435903,10 +432393,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -435923,12 +432413,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6930), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -435945,37 +432435,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(6932), - [sym__string_literal_kind] = ACTIONS(6934), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2957] = { - [sym__expression] = STATE(4165), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2918] = { + [sym__expression] = STATE(4290), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_DASH] = ACTIONS(6928), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -435993,10 +432483,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -436013,12 +432503,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6930), + [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -436035,37 +432525,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(6932), - [sym__string_literal_kind] = ACTIONS(6934), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2958] = { - [sym__name] = STATE(6287), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(5010), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2919] = { + [sym__name] = STATE(6809), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(1031), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_program_statement_token1] = ACTIONS(6944), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(6956), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -436089,7 +432579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6958), + [anon_sym_SEMI] = ACTIONS(6946), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -436103,21 +432593,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -436129,33 +432619,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6958), + [sym__external_end_of_statement] = ACTIONS(6946), + }, + [2920] = { + [sym__expression] = STATE(4291), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [2959] = { - [sym__expression] = STATE(4397), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2921] = { + [sym__expression] = STATE(4493), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -436173,10 +432753,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -436193,12 +432773,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -436215,124 +432795,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2960] = { - [sym__name] = STATE(6298), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(5016), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(6960), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6962), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6962), - }, - [2961] = { - [sym__expression] = STATE(4279), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2922] = { + [sym__expression] = STATE(4337), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -436353,10 +432843,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -436373,7 +432863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -436395,127 +432885,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2962] = { - [sym__name] = STATE(6651), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(1046), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_program_statement_token1] = ACTIONS(6964), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6966), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6966), - }, - [2963] = { - [sym__expression] = STATE(4312), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2923] = { + [sym__expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -436533,10 +432933,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -436553,12 +432953,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -436575,34 +432975,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2964] = { - [sym__expression] = STATE(4269), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2924] = { + [sym__expression] = STATE(4320), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -436623,10 +433023,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -436643,7 +433043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -436665,34 +433065,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2965] = { - [sym__expression] = STATE(4270), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2925] = { + [sym__expression] = STATE(4322), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -436713,10 +433113,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -436733,7 +433133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -436755,34 +433155,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2966] = { - [sym__expression] = STATE(4271), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2926] = { + [sym__expression] = STATE(4324), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -436803,10 +433203,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -436823,7 +433223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -436845,34 +433245,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2967] = { - [sym__expression] = STATE(4272), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2927] = { + [sym__expression] = STATE(4325), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -436893,10 +433293,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -436913,7 +433313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -436935,34 +433335,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2968] = { - [sym__expression] = STATE(4273), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2928] = { + [sym__expression] = STATE(4326), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -436983,10 +433383,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437003,7 +433403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -437025,34 +433425,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2969] = { - [sym__expression] = STATE(4274), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2929] = { + [sym__expression] = STATE(4268), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -437073,10 +433473,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437093,7 +433493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -437115,34 +433515,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2970] = { - [sym__expression] = STATE(4275), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2930] = { + [sym__expression] = STATE(4269), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -437163,10 +433563,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437183,7 +433583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -437205,34 +433605,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2971] = { - [sym__expression] = STATE(4276), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2931] = { + [sym__expression] = STATE(4270), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -437253,10 +433653,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437273,7 +433673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -437295,34 +433695,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2972] = { - [sym__expression] = STATE(4277), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2932] = { + [sym__expression] = STATE(4273), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(6612), [anon_sym_DASH] = ACTIONS(6612), @@ -437343,10 +433743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437363,7 +433763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -437385,127 +433785,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2973] = { - [sym__expression] = STATE(4472), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [2974] = { - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(5072), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(5072), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(5072), - [sym_number_literal] = STATE(5072), - [sym_boolean_literal] = STATE(5072), - [sym_null_literal] = STATE(5072), - [sym_string_literal] = STATE(5072), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5072), + [2933] = { + [sym__expression] = STATE(4162), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(6928), + [anon_sym_DASH] = ACTIONS(6928), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -437523,10 +433833,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437543,12 +433853,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(6930), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -437565,37 +433875,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6932), + [sym__string_literal_kind] = ACTIONS(6934), }, - [2975] = { - [sym__expression] = STATE(4368), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2934] = { + [sym__expression] = STATE(4442), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -437613,10 +433923,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437633,12 +433943,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -437655,124 +433965,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2976] = { - [sym__expression] = STATE(4476), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [2977] = { - [sym__expression] = STATE(4454), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2935] = { + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(5070), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5070), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -437793,10 +434013,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437813,7 +434033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -437841,31 +434061,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2978] = { - [sym__expression] = STATE(4388), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2936] = { + [sym__expression] = STATE(4502), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -437883,10 +434103,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437903,12 +434123,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -437925,34 +434145,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2979] = { - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(4731), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4731), + [2937] = { + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4954), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4954), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -437973,10 +434193,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -437993,7 +434213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -438021,301 +434241,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2980] = { - [sym__expression] = STATE(4391), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [2981] = { - [sym__name] = STATE(6731), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(5033), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6968), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6970), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6970), - }, - [2982] = { - [sym__name] = STATE(6639), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4489), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(6972), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6974), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6974), - }, - [2983] = { - [sym__name] = STATE(6813), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(1081), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2938] = { + [sym__name] = STATE(7067), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(1027), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(6976), + [aux_sym_subroutine_statement_token1] = ACTIONS(6948), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -438339,7 +434289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6978), + [anon_sym_SEMI] = ACTIONS(6950), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -438353,21 +434303,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -438379,33 +434329,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6978), + [sym__external_end_of_statement] = ACTIONS(6950), }, - [2984] = { - [sym__name] = STATE(6820), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(1083), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2939] = { + [sym__name] = STATE(6534), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4896), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(6980), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6952), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -438429,7 +434379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6982), + [anon_sym_SEMI] = ACTIONS(6954), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -438443,21 +434393,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -438469,33 +434419,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6982), + [sym__external_end_of_statement] = ACTIONS(6954), }, - [2985] = { - [sym__expression] = STATE(4348), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2940] = { + [sym__expression] = STATE(4554), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -438513,10 +434463,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -438533,12 +434483,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -438555,37 +434505,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2986] = { - [sym__expression] = STATE(4541), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2941] = { + [sym__expression] = STATE(4375), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(5018), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(5018), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5018), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -438603,10 +434553,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -438623,12 +434573,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -438645,667 +434595,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [2987] = { - [sym__name] = STATE(7037), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4456), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_module_procedure_statement_token1] = ACTIONS(6984), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6986), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6986), - }, - [2988] = { - [sym__name] = STATE(6258), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4967), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(6988), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6990), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6990), - }, - [2989] = { - [sym__name] = STATE(6262), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4970), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(6992), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6994), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6994), - }, - [2990] = { - [sym__name] = STATE(6654), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4495), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(6996), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(6998), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6998), - }, - [2991] = { - [sym__name] = STATE(6309), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4872), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_module_procedure_statement_token1] = ACTIONS(7000), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7002), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7002), - }, - [2992] = { - [sym__name] = STATE(6324), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4838), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(7004), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7006), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7006), - }, - [2993] = { - [sym__name] = STATE(6327), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4840), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(7008), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7010), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7010), - }, - [2994] = { - [sym__expression] = STATE(4281), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2942] = { + [sym__expression] = STATE(4494), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), @@ -439348,144 +434668,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_logical_expression_token5] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), [aux_sym_coarray_statement_token8] = ACTIONS(5456), [aux_sym_coarray_statement_token11] = ACTIONS(5456), [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [2995] = { - [sym__expression] = STATE(4346), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(4807), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(4807), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4807), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [2996] = { - [sym__expression] = STATE(4284), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2943] = { + [sym__expression] = STATE(4443), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), @@ -439528,13 +434758,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_logical_expression_token5] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -439545,37 +434775,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), [sym__string_literal] = ACTIONS(5468), [sym__string_literal_kind] = ACTIONS(5470), }, - [2997] = { - [sym__name] = STATE(6371), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4786), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2944] = { + [sym__expression] = STATE(4444), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_module_procedure_statement_token1] = ACTIONS(7012), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -439599,7 +434835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7014), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -439613,22 +434848,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -439639,123 +434865,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7014), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [2998] = { - [sym__expression] = STATE(4285), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), + [2945] = { + [sym__expression] = STATE(4318), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [2999] = { - [sym__name] = STATE(6385), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4609), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2946] = { + [sym__name] = STATE(6633), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(949), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(7024), + [aux_sym_subroutine_statement_token1] = ACTIONS(6956), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -439779,7 +435009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7026), + [anon_sym_SEMI] = ACTIONS(6958), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -439793,21 +435023,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -439819,33 +435049,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7026), + [sym__external_end_of_statement] = ACTIONS(6958), }, - [3000] = { - [sym__name] = STATE(6388), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4611), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2947] = { + [sym__name] = STATE(6683), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(1035), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(7028), + [aux_sym_function_statement_token1] = ACTIONS(6960), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -439869,7 +435099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7030), + [anon_sym_SEMI] = ACTIONS(6962), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -439883,21 +435113,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -439909,39 +435139,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7030), + [sym__external_end_of_statement] = ACTIONS(6962), }, - [3001] = { - [sym__expression] = STATE(4324), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), + [2948] = { + [sym__name] = STATE(6644), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(951), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(6964), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -439965,6 +435189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6966), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -439978,13 +435203,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -439995,37 +435229,573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6966), }, - [3002] = { - [sym__expression] = STATE(4266), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2949] = { + [sym__expression] = STATE(4540), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2950] = { + [sym__expression] = STATE(4388), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2951] = { + [sym__expression] = STATE(4496), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2952] = { + [sym__expression] = STATE(4497), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2953] = { + [sym__expression] = STATE(4448), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2954] = { + [sym__expression] = STATE(4457), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2955] = { + [sym__expression] = STATE(4512), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), @@ -440068,13 +435838,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_logical_expression_token5] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -440085,37 +435855,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), [sym__string_literal] = ACTIONS(5468), [sym__string_literal_kind] = ACTIONS(5470), }, - [3003] = { - [sym__name] = STATE(6435), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4655), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2956] = { + [sym__expression] = STATE(4447), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_module_procedure_statement_token1] = ACTIONS(7032), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -440139,7 +435915,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7034), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -440153,22 +435928,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -440179,39 +435945,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7034), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3004] = { - [sym__expression] = STATE(4376), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2957] = { + [sym__expression] = STATE(4523), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2958] = { + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(5079), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(5079), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(5079), + [sym_number_literal] = STATE(5080), + [sym_boolean_literal] = STATE(5079), + [sym_null_literal] = STATE(5079), + [sym_string_literal] = STATE(5079), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5079), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2959] = { + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(5066), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(5066), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(5066), + [sym_number_literal] = STATE(5066), + [sym_boolean_literal] = STATE(5066), + [sym_null_literal] = STATE(5066), + [sym_string_literal] = STATE(5066), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5066), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2960] = { + [sym__name] = STATE(6746), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4393), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6968), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -440235,6 +436269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6970), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -440248,13 +436283,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -440265,37 +436309,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6970), }, - [3005] = { - [sym__expression] = STATE(4512), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2961] = { + [sym__expression] = STATE(4530), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -440313,10 +436353,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -440333,12 +436373,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(6618), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -440355,37 +436395,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3006] = { - [sym__expression] = STATE(4296), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2962] = { + [sym__expression] = STATE(4491), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -440403,10 +436443,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -440423,12 +436463,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -440445,37 +436485,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3007] = { - [sym__name] = STATE(6450), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4404), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2963] = { + [sym__name] = STATE(6787), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4812), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(7036), + [aux_sym_subroutine_statement_token1] = ACTIONS(6972), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -440499,7 +436539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(6974), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -440513,21 +436553,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -440539,33 +436579,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7038), + [sym__external_end_of_statement] = ACTIONS(6974), }, - [3008] = { - [sym__name] = STATE(6453), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4406), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2964] = { + [sym__expression] = STATE(4441), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2965] = { + [sym__name] = STATE(6793), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4814), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(7040), + [aux_sym_function_statement_token1] = ACTIONS(6976), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -440589,7 +436719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(6978), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -440603,21 +436733,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -440629,33 +436759,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7042), + [sym__external_end_of_statement] = ACTIONS(6978), }, - [3009] = { - [sym__expression] = STATE(4297), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2966] = { + [sym__expression] = STATE(4315), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -440673,10 +436803,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -440693,12 +436823,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), + [aux_sym_logical_expression_token5] = ACTIONS(6982), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -440715,37 +436845,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), }, - [3010] = { - [sym__expression] = STATE(4289), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2967] = { + [sym__expression] = STATE(4356), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + }, + [2968] = { + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(4645), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(4645), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2969] = { + [sym__expression] = STATE(4341), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), @@ -440788,13 +437098,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + }, + [2970] = { + [sym__name] = STATE(6889), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(5024), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_module_procedure_statement_token1] = ACTIONS(6988), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6990), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -440805,37 +437209,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6990), }, - [3011] = { - [sym__name] = STATE(6494), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4915), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2971] = { + [sym__name] = STATE(6957), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4903), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_module_procedure_statement_token1] = ACTIONS(7044), + [aux_sym_subroutine_statement_token1] = ACTIONS(6992), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -440859,7 +437259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7046), + [anon_sym_SEMI] = ACTIONS(6994), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -440873,21 +437273,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -440899,129 +437299,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7046), - }, - [3012] = { - [sym__expression] = STATE(4555), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__external_end_of_statement] = ACTIONS(6994), }, - [3013] = { - [sym__expression] = STATE(4291), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), + [2972] = { + [sym__name] = STATE(6960), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4905), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(6996), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -441045,6 +437349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(6998), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -441058,13 +437363,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -441075,127 +437389,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(6998), }, - [3014] = { - [sym__expression] = STATE(4171), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2948), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6928), - [anon_sym_DASH] = ACTIONS(6928), + [2973] = { + [sym__expression] = STATE(4492), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6930), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(6932), - [sym__string_literal_kind] = ACTIONS(6934), - }, - [3015] = { - [sym__name] = STATE(6511), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4986), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(7048), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -441219,7 +437445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7050), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -441233,22 +437458,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -441259,33 +437475,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7050), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3016] = { - [sym__name] = STATE(6513), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4988), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2974] = { + [sym__name] = STATE(6258), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4839), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(7052), + [aux_sym_module_procedure_statement_token1] = ACTIONS(7000), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -441309,7 +437529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7054), + [anon_sym_SEMI] = ACTIONS(7002), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -441323,21 +437543,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -441349,33 +437569,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7054), + [sym__external_end_of_statement] = ACTIONS(7002), }, - [3017] = { - [sym__expression] = STATE(4292), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2975] = { + [sym__expression] = STATE(4495), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), @@ -441418,13 +437638,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_logical_expression_token5] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -441435,43 +437655,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), [sym__string_literal] = ACTIONS(5468), [sym__string_literal_kind] = ACTIONS(5470), }, - [3018] = { - [sym__expression] = STATE(4293), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), + [2976] = { + [sym__name] = STATE(6487), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4510), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_subroutine_statement_token1] = ACTIONS(7004), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -441495,6 +437709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7006), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -441508,13 +437723,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -441525,43 +437749,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(7006), }, - [3019] = { - [sym__expression] = STATE(4294), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), + [2977] = { + [sym__name] = STATE(6281), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4616), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_subroutine_statement_token1] = ACTIONS(7008), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -441585,6 +437799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7010), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -441598,13 +437813,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -441615,43 +437839,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(7010), }, - [3020] = { - [sym__expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), + [2978] = { + [sym__name] = STATE(6285), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4618), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(7012), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -441675,6 +437889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7014), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -441688,13 +437903,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -441705,43 +437929,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(7014), }, - [3021] = { - [sym__expression] = STATE(4299), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), + [2979] = { + [sym__expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2980] = { + [sym__name] = STATE(6693), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4513), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(7016), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -441765,6 +438069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7018), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -441778,13 +438083,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -441795,37 +438109,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), + [sym__external_end_of_statement] = ACTIONS(7018), + }, + [2981] = { + [sym__expression] = STATE(4499), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3022] = { - [sym__name] = STATE(6565), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(5011), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2982] = { + [sym__name] = STATE(6333), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4650), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(7056), + [aux_sym_module_procedure_statement_token1] = ACTIONS(7020), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -441849,7 +438249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7058), + [anon_sym_SEMI] = ACTIONS(7022), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -441863,21 +438263,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -441889,33 +438289,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7058), + [sym__external_end_of_statement] = ACTIONS(7022), }, - [3023] = { - [sym__name] = STATE(6270), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(974), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2983] = { + [sym__expression] = STATE(4408), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), + }, + [2984] = { + [sym__expression] = STATE(4359), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(7060), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -441939,7 +438435,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7062), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -441953,22 +438448,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -441979,33 +438465,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7062), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3024] = { - [sym__name] = STATE(6569), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(5013), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2985] = { + [sym__expression] = STATE(4366), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(7064), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -442029,7 +438525,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7066), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -442043,22 +438538,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -442069,39 +438555,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7066), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3025] = { - [sym__expression] = STATE(4325), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), + [2986] = { + [sym__name] = STATE(6353), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4465), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_subroutine_statement_token1] = ACTIONS(7024), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -442125,6 +438609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7026), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -442138,13 +438623,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -442155,127 +438649,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [3026] = { - [sym__expression] = STATE(4379), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__external_end_of_statement] = ACTIONS(7026), }, - [3027] = { - [sym__name] = STATE(6616), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4714), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2987] = { + [sym__name] = STATE(6356), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4459), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(7068), + [aux_sym_function_statement_token1] = ACTIONS(7028), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -442299,7 +438699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7070), + [anon_sym_SEMI] = ACTIONS(7030), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -442313,21 +438713,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -442339,30 +438739,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7070), + [sym__external_end_of_statement] = ACTIONS(7030), }, - [3028] = { - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(5075), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(5075), - [sym_implied_do_loop_expression] = STATE(5075), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5075), + [2988] = { + [sym__expression] = STATE(4486), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -442383,10 +438783,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -442403,7 +438803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -442431,31 +438831,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3029] = { - [sym__name] = STATE(6619), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4663), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2989] = { + [sym__name] = STATE(6406), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(5002), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(7072), + [aux_sym_module_procedure_statement_token1] = ACTIONS(7032), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -442479,7 +438879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7074), + [anon_sym_SEMI] = ACTIONS(7034), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -442493,21 +438893,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -442519,33 +438919,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7074), + [sym__external_end_of_statement] = ACTIONS(7034), }, - [3030] = { - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(4875), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(4875), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(4875), - [sym_number_literal] = STATE(4876), - [sym_boolean_literal] = STATE(4875), - [sym_null_literal] = STATE(4875), - [sym_string_literal] = STATE(4875), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4875), + [2990] = { + [sym__expression] = STATE(4365), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -442563,10 +438963,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -442583,12 +438983,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -442605,37 +439005,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3031] = { - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(5078), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5078), + [2991] = { + [sym__expression] = STATE(4176), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(6928), + [anon_sym_DASH] = ACTIONS(6928), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -442653,10 +439053,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -442673,12 +439073,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(6930), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -442695,37 +439095,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6932), + [sym__string_literal_kind] = ACTIONS(6934), }, - [3032] = { - [sym__expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2992] = { + [sym__expression] = STATE(4233), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -442743,10 +439143,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -442763,12 +439163,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -442785,37 +439185,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3033] = { - [sym__name] = STATE(6666), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4885), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2993] = { + [sym__name] = STATE(6939), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(851), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_program_statement_token1] = ACTIONS(7036), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(7076), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -442839,7 +439239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7078), + [anon_sym_SEMI] = ACTIONS(7038), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -442853,21 +439253,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -442879,33 +439279,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7078), + [sym__external_end_of_statement] = ACTIONS(7038), }, - [3034] = { - [sym__name] = STATE(6668), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(4957), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [2994] = { + [sym__name] = STATE(6422), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4913), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(7080), + [aux_sym_subroutine_statement_token1] = ACTIONS(7040), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -442929,7 +439329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7082), + [anon_sym_SEMI] = ACTIONS(7042), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -442943,21 +439343,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -442969,123 +439369,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7082), + [sym__external_end_of_statement] = ACTIONS(7042), }, - [3035] = { - [sym__expression] = STATE(4451), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [2995] = { + [sym__name] = STATE(6426), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4937), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(7044), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7046), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__external_end_of_statement] = ACTIONS(7046), }, - [3036] = { - [sym__expression] = STATE(4288), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2996] = { + [sym__expression] = STATE(4527), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -443103,10 +439503,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -443123,12 +439523,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -443145,757 +439545,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3037] = { - [sym__expression] = STATE(4305), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), - }, - [3038] = { - [sym__expression] = STATE(4316), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), - }, - [3039] = { - [sym__expression] = STATE(4318), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), - }, - [3040] = { - [sym__expression] = STATE(4321), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), - }, - [3041] = { - [sym__expression] = STATE(4322), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), - }, - [3042] = { - [sym__expression] = STATE(4264), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), - }, - [3043] = { - [sym__expression] = STATE(4326), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), - }, - [3044] = { - [sym__expression] = STATE(4303), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), - }, - [3045] = { - [sym__expression] = STATE(4300), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3006), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2997] = { + [sym__expression] = STATE(4237), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(7016), - [anon_sym_DASH] = ACTIONS(7016), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -443913,10 +439593,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -443933,12 +439613,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(7018), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -443955,37 +439635,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(7020), - [sym__string_literal_kind] = ACTIONS(7022), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3046] = { - [sym__expression] = STATE(4462), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2998] = { + [sym__expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -444003,10 +439683,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -444023,12 +439703,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(6982), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -444045,37 +439725,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), }, - [3047] = { - [sym__expression] = STATE(4461), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [2999] = { + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(5005), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(5005), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(5005), + [sym_number_literal] = STATE(4776), + [sym_boolean_literal] = STATE(5005), + [sym_null_literal] = STATE(5005), + [sym_string_literal] = STATE(5005), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5005), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -444093,10 +439773,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -444113,12 +439793,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -444135,127 +439815,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3048] = { - [sym__expression] = STATE(4351), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(5048), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(5048), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5048), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [3000] = { + [sym__expression] = STATE(4483), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3049] = { - [sym__expression] = STATE(4557), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [3001] = { + [sym__expression] = STATE(4541), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -444273,10 +439953,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -444293,12 +439973,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -444315,37 +439995,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3050] = { - [sym__expression] = STATE(4553), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [3002] = { + [sym__expression] = STATE(4488), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -444363,10 +440043,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -444383,12 +440063,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -444405,37 +440085,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3051] = { - [sym__name] = STATE(6486), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(980), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), + [3003] = { + [sym__name] = STATE(6481), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4816), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_function_statement_token1] = ACTIONS(7084), + [aux_sym_subroutine_statement_token1] = ACTIONS(7048), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -444459,7 +440139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7086), + [anon_sym_SEMI] = ACTIONS(7050), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -444473,21 +440153,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -444499,123 +440179,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7086), - }, - [3052] = { - [sym__expression] = STATE(4338), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(4807), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(4807), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4807), - [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_defined_io_procedure_token1] = ACTIONS(93), - [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_procedure_attributes_token3] = ACTIONS(93), - [aux_sym_use_statement_token2] = ACTIONS(93), - [aux_sym_implicit_statement_token4] = ACTIONS(93), - [aux_sym_save_statement_token1] = ACTIONS(93), - [aux_sym_private_statement_token1] = ACTIONS(93), - [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym_procedure_attribute_token6] = ACTIONS(93), - [aux_sym_variable_attributes_token2] = ACTIONS(93), - [aux_sym_variable_attributes_token3] = ACTIONS(93), - [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(93), - [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), - [aux_sym_type_qualifier_token1] = ACTIONS(93), - [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_stop_statement_token1] = ACTIONS(93), - [aux_sym_stop_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token2] = ACTIONS(93), - [aux_sym_keyword_statement_token3] = ACTIONS(93), - [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym__inline_if_statement_token1] = ACTIONS(93), - [aux_sym_end_if_statement_token1] = ACTIONS(93), - [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), - [aux_sym_block_construct_token1] = ACTIONS(93), - [aux_sym_format_statement_token1] = ACTIONS(93), - [aux_sym_inquire_statement_token1] = ACTIONS(93), - [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(165), - [aux_sym_boolean_literal_token1] = ACTIONS(167), - [aux_sym_boolean_literal_token2] = ACTIONS(167), - [aux_sym_null_literal_token1] = ACTIONS(169), - [aux_sym_coarray_statement_token1] = ACTIONS(93), - [aux_sym_coarray_statement_token2] = ACTIONS(93), - [aux_sym_coarray_statement_token6] = ACTIONS(93), - [aux_sym_coarray_statement_token8] = ACTIONS(93), - [aux_sym_coarray_statement_token11] = ACTIONS(93), - [aux_sym_coarray_statement_token12] = ACTIONS(93), - [aux_sym_coarray_team_statement_token1] = ACTIONS(93), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), - [aux_sym_identifier_token1] = ACTIONS(93), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), - [sym__string_literal] = ACTIONS(187), - [sym__string_literal_kind] = ACTIONS(189), + [sym__external_end_of_statement] = ACTIONS(7050), }, - [3053] = { - [sym__expression] = STATE(4463), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [3004] = { + [sym__expression] = STATE(4487), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -444633,10 +440223,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -444653,12 +440243,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -444675,37 +440265,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3054] = { - [sym__expression] = STATE(4545), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [3005] = { + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(5068), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(5068), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(5068), + [sym_number_literal] = STATE(5068), + [sym_boolean_literal] = STATE(5068), + [sym_null_literal] = STATE(5068), + [sym_string_literal] = STATE(5068), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5068), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -444723,10 +440313,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -444743,12 +440333,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(159), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -444765,37 +440355,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3055] = { - [sym__name] = STATE(6252), - [sym_identifier] = STATE(6084), - [sym__end_of_statement] = STATE(1040), - [anon_sym_LPAREN2] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_program_statement_token1] = ACTIONS(7088), + [3006] = { + [sym__name] = STATE(6485), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4820), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(7052), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4279), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -444819,7 +440409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7090), + [anon_sym_SEMI] = ACTIONS(7054), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -444833,21 +440423,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -444859,33 +440449,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7090), + [sym__external_end_of_statement] = ACTIONS(7054), }, - [3056] = { - [sym__expression] = STATE(4431), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(3056), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [3007] = { + [sym__expression] = STATE(4255), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -444903,10 +440493,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -444923,12 +440513,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -444945,37 +440535,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(185), - [sym__float_literal] = ACTIONS(185), - [sym__boz_literal] = ACTIONS(185), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3057] = { - [sym__expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [3008] = { + [sym__expression] = STATE(4256), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -444993,10 +440583,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -445013,12 +440603,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -445035,37 +440625,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3058] = { - [sym__expression] = STATE(4511), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [3009] = { + [sym__expression] = STATE(4257), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -445083,10 +440673,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -445103,12 +440693,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(5786), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -445125,217 +440715,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3059] = { - [sym__expression] = STATE(4464), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [3060] = { - [sym__expression] = STATE(4510), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [3061] = { - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(5068), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(5068), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(5068), - [sym_number_literal] = STATE(5071), - [sym_boolean_literal] = STATE(5068), - [sym_null_literal] = STATE(5068), - [sym_string_literal] = STATE(5068), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(5068), + [3010] = { + [sym__expression] = STATE(4258), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -445353,10 +440763,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -445373,12 +440783,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -445395,37 +440805,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3062] = { - [sym__expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(4892), - [sym_user_defined_operator] = STATE(2911), - [sym_call_expression] = STATE(4892), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(4892), - [sym_number_literal] = STATE(4892), - [sym_boolean_literal] = STATE(4892), - [sym_null_literal] = STATE(4892), - [sym_string_literal] = STATE(4892), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(4892), + [3011] = { + [sym__expression] = STATE(4259), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -445443,10 +440853,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -445463,12 +440873,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(159), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -445485,37 +440895,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3063] = { - [sym__expression] = STATE(4546), - [sym_parenthesized_expression] = STATE(3859), - [sym_derived_type_member_expression] = STATE(3859), - [sym_logical_expression] = STATE(3859), - [sym_relational_expression] = STATE(3859), - [sym_concatenation_expression] = STATE(3859), - [sym_math_expression] = STATE(3859), - [sym_unary_expression] = STATE(3859), - [sym_user_defined_operator] = STATE(2961), - [sym_call_expression] = STATE(3859), - [sym_implied_do_loop_expression] = STATE(3859), - [sym_array_literal] = STATE(3859), - [sym__array_constructor_legacy] = STATE(3878), - [sym__array_constructor_f2003] = STATE(3879), - [sym_complex_literal] = STATE(3859), - [sym_number_literal] = STATE(3859), - [sym_boolean_literal] = STATE(3859), - [sym_null_literal] = STATE(3859), - [sym_string_literal] = STATE(3859), - [sym_coarray_expression] = STATE(3859), - [sym_identifier] = STATE(3859), + [3012] = { + [sym__expression] = STATE(4440), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + }, + [3013] = { + [sym__expression] = STATE(4248), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), [anon_sym_LPAREN2] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -445533,10 +441033,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -445553,12 +441053,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_logical_expression_token5] = ACTIONS(6618), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), [anon_sym_LPAREN_SLASH] = ACTIONS(163), [anon_sym_LBRACK] = ACTIONS(165), @@ -445575,43 +441075,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5788), - [sym__float_literal] = ACTIONS(5788), - [sym__boz_literal] = ACTIONS(5788), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), [sym__string_literal] = ACTIONS(187), [sym__string_literal_kind] = ACTIONS(189), }, - [3064] = { - [sym__expression] = STATE(4329), - [sym_parenthesized_expression] = STATE(4578), - [sym_derived_type_member_expression] = STATE(4578), - [sym_logical_expression] = STATE(4578), - [sym_relational_expression] = STATE(4578), - [sym_concatenation_expression] = STATE(4578), - [sym_math_expression] = STATE(4578), - [sym_unary_expression] = STATE(4578), - [sym_user_defined_operator] = STATE(3025), - [sym_call_expression] = STATE(4578), - [sym_implied_do_loop_expression] = STATE(4578), - [sym_array_literal] = STATE(4578), - [sym__array_constructor_legacy] = STATE(4579), - [sym__array_constructor_f2003] = STATE(4580), - [sym_complex_literal] = STATE(4578), - [sym_number_literal] = STATE(4578), - [sym_boolean_literal] = STATE(4578), - [sym_null_literal] = STATE(4578), - [sym_string_literal] = STATE(4578), - [sym_coarray_expression] = STATE(4578), - [sym_identifier] = STATE(4578), - [anon_sym_LPAREN2] = ACTIONS(6676), - [anon_sym_PLUS] = ACTIONS(6678), - [anon_sym_DASH] = ACTIONS(6678), - [anon_sym_AMP] = ACTIONS(21), + [3014] = { + [sym__name] = STATE(6537), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4669), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_subroutine_statement_token1] = ACTIONS(7056), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -445635,6 +441129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7058), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -445648,228 +441143,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token5] = ACTIONS(5482), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(7058), + }, + [3015] = { + [sym__expression] = STATE(4260), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), [anon_sym_DOT] = ACTIONS(161), - [anon_sym_LPAREN_SLASH] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(6682), - [aux_sym_boolean_literal_token1] = ACTIONS(5492), - [aux_sym_boolean_literal_token2] = ACTIONS(5492), - [aux_sym_null_literal_token1] = ACTIONS(5494), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5496), - [sym__float_literal] = ACTIONS(5496), - [sym__boz_literal] = ACTIONS(5496), - [sym__string_literal] = ACTIONS(5468), - [sym__string_literal_kind] = ACTIONS(5470), - }, - [3065] = { - [aux_sym_preproc_include_token1] = ACTIONS(4559), - [aux_sym_preproc_def_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token2] = ACTIONS(4559), - [sym_preproc_directive] = ACTIONS(4559), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4559), - [aux_sym_interface_statement_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4559), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4559), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4559), - [aux_sym_language_binding_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token1] = ACTIONS(4559), - [aux_sym_procedure_attributes_token3] = ACTIONS(4559), - [aux_sym_contains_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token1] = ACTIONS(4559), - [aux_sym_use_statement_token2] = ACTIONS(4559), - [aux_sym_implicit_statement_token1] = ACTIONS(4559), - [aux_sym_implicit_statement_token3] = ACTIONS(4559), - [aux_sym_implicit_statement_token4] = ACTIONS(4559), - [aux_sym_save_statement_token1] = ACTIONS(4559), - [aux_sym_private_statement_token1] = ACTIONS(4559), - [aux_sym_public_statement_token1] = ACTIONS(4559), - [aux_sym_namelist_statement_token1] = ACTIONS(4559), - [aux_sym_common_statement_token1] = ACTIONS(4559), - [aux_sym_import_statement_token1] = ACTIONS(4559), - [aux_sym_derived_type_definition_token1] = ACTIONS(4559), - [aux_sym_abstract_specifier_token1] = ACTIONS(4559), - [aux_sym_procedure_attribute_token6] = ACTIONS(4559), - [aux_sym_variable_attributes_token1] = ACTIONS(4559), - [aux_sym_variable_attributes_token2] = ACTIONS(4559), - [aux_sym_variable_attributes_token3] = ACTIONS(4559), - [aux_sym_variable_attributes_token4] = ACTIONS(4559), - [aux_sym_variable_attributes_token5] = ACTIONS(4559), - [aux_sym__intrinsic_type_token1] = ACTIONS(4559), - [aux_sym__intrinsic_type_token2] = ACTIONS(4559), - [aux_sym__intrinsic_type_token3] = ACTIONS(4559), - [aux_sym__intrinsic_type_token4] = ACTIONS(4559), - [aux_sym__intrinsic_type_token6] = ACTIONS(4559), - [aux_sym__intrinsic_type_token7] = ACTIONS(4559), - [aux_sym__intrinsic_type_token8] = ACTIONS(4559), - [aux_sym__intrinsic_type_token9] = ACTIONS(4559), - [aux_sym__intrinsic_type_token10] = ACTIONS(4559), - [aux_sym_derived_type_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4559), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4559), - [aux_sym_type_qualifier_token1] = ACTIONS(4559), - [aux_sym_type_qualifier_token2] = ACTIONS(4559), - [aux_sym_equivalence_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token1] = ACTIONS(4559), - [aux_sym_stop_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token2] = ACTIONS(4559), - [aux_sym_keyword_statement_token3] = ACTIONS(4559), - [aux_sym_include_statement_token1] = ACTIONS(4559), - [aux_sym_data_statement_token1] = ACTIONS(4559), - [aux_sym__inline_if_statement_token1] = ACTIONS(4559), - [aux_sym_end_if_statement_token1] = ACTIONS(4559), - [aux_sym_elseif_clause_token2] = ACTIONS(4559), - [aux_sym_select_case_statement_token1] = ACTIONS(4559), - [aux_sym_block_construct_token1] = ACTIONS(4559), - [aux_sym_format_statement_token1] = ACTIONS(4559), - [aux_sym_inquire_statement_token1] = ACTIONS(4559), - [aux_sym_enum_statement_token1] = ACTIONS(4559), - [aux_sym_entry_statement_token1] = ACTIONS(4559), - [aux_sym_null_literal_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_statement_token2] = ACTIONS(4559), - [aux_sym_coarray_statement_token6] = ACTIONS(4559), - [aux_sym_coarray_statement_token8] = ACTIONS(4559), - [aux_sym_coarray_statement_token11] = ACTIONS(4559), - [aux_sym_coarray_statement_token12] = ACTIONS(4559), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4559), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4559), - [aux_sym_identifier_token1] = ACTIONS(4559), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4561), - }, - [3066] = { - [aux_sym_preproc_include_token1] = ACTIONS(5033), - [aux_sym_preproc_def_token1] = ACTIONS(5033), - [aux_sym_preproc_if_token2] = ACTIONS(5033), - [sym_preproc_directive] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5033), - [aux_sym_interface_statement_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5033), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5033), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5033), - [aux_sym_language_binding_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token1] = ACTIONS(5033), - [aux_sym_procedure_attributes_token3] = ACTIONS(5033), - [aux_sym_contains_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token1] = ACTIONS(5033), - [aux_sym_use_statement_token2] = ACTIONS(5033), - [aux_sym_implicit_statement_token1] = ACTIONS(5033), - [aux_sym_implicit_statement_token3] = ACTIONS(5033), - [aux_sym_implicit_statement_token4] = ACTIONS(5033), - [aux_sym_save_statement_token1] = ACTIONS(5033), - [aux_sym_private_statement_token1] = ACTIONS(5033), - [aux_sym_public_statement_token1] = ACTIONS(5033), - [aux_sym_namelist_statement_token1] = ACTIONS(5033), - [aux_sym_common_statement_token1] = ACTIONS(5033), - [aux_sym_import_statement_token1] = ACTIONS(5033), - [aux_sym_derived_type_definition_token1] = ACTIONS(5033), - [aux_sym_abstract_specifier_token1] = ACTIONS(5033), - [aux_sym_procedure_attribute_token6] = ACTIONS(5033), - [aux_sym_variable_attributes_token1] = ACTIONS(5033), - [aux_sym_variable_attributes_token2] = ACTIONS(5033), - [aux_sym_variable_attributes_token3] = ACTIONS(5033), - [aux_sym_variable_attributes_token4] = ACTIONS(5033), - [aux_sym_variable_attributes_token5] = ACTIONS(5033), - [aux_sym__intrinsic_type_token1] = ACTIONS(5033), - [aux_sym__intrinsic_type_token2] = ACTIONS(5033), - [aux_sym__intrinsic_type_token3] = ACTIONS(5033), - [aux_sym__intrinsic_type_token4] = ACTIONS(5033), - [aux_sym__intrinsic_type_token6] = ACTIONS(5033), - [aux_sym__intrinsic_type_token7] = ACTIONS(5033), - [aux_sym__intrinsic_type_token8] = ACTIONS(5033), - [aux_sym__intrinsic_type_token9] = ACTIONS(5033), - [aux_sym__intrinsic_type_token10] = ACTIONS(5033), - [aux_sym_derived_type_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5033), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5033), - [aux_sym_type_qualifier_token1] = ACTIONS(5033), - [aux_sym_type_qualifier_token2] = ACTIONS(5033), - [aux_sym_equivalence_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token1] = ACTIONS(5033), - [aux_sym_stop_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token2] = ACTIONS(5033), - [aux_sym_keyword_statement_token3] = ACTIONS(5033), - [aux_sym_include_statement_token1] = ACTIONS(5033), - [aux_sym_data_statement_token1] = ACTIONS(5033), - [aux_sym__inline_if_statement_token1] = ACTIONS(5033), - [aux_sym_end_if_statement_token1] = ACTIONS(5033), - [aux_sym_elseif_clause_token2] = ACTIONS(5033), - [aux_sym_select_case_statement_token1] = ACTIONS(5033), - [aux_sym_block_construct_token1] = ACTIONS(5033), - [aux_sym_format_statement_token1] = ACTIONS(5033), - [aux_sym_inquire_statement_token1] = ACTIONS(5033), - [aux_sym_enum_statement_token1] = ACTIONS(5033), - [aux_sym_entry_statement_token1] = ACTIONS(5033), - [aux_sym_null_literal_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_statement_token2] = ACTIONS(5033), - [aux_sym_coarray_statement_token6] = ACTIONS(5033), - [aux_sym_coarray_statement_token8] = ACTIONS(5033), - [aux_sym_coarray_statement_token11] = ACTIONS(5033), - [aux_sym_coarray_statement_token12] = ACTIONS(5033), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5033), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5033), - [aux_sym_identifier_token1] = ACTIONS(5033), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5035), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3067] = { - [sym__block_label] = STATE(7335), - [sym_identifier] = STATE(7439), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), + [3016] = { + [sym__name] = STATE(6541), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4726), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4325), - [anon_sym_EQ] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(7060), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4325), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -445893,7 +441309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7092), + [anon_sym_SEMI] = ACTIONS(7062), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -445907,21 +441323,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -445933,3193 +441349,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7092), - }, - [3068] = { - [aux_sym_preproc_include_token1] = ACTIONS(5041), - [aux_sym_preproc_def_token1] = ACTIONS(5041), - [aux_sym_preproc_if_token2] = ACTIONS(5041), - [sym_preproc_directive] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5041), - [aux_sym_interface_statement_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5041), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5041), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5041), - [aux_sym_language_binding_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token1] = ACTIONS(5041), - [aux_sym_procedure_attributes_token3] = ACTIONS(5041), - [aux_sym_contains_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token1] = ACTIONS(5041), - [aux_sym_use_statement_token2] = ACTIONS(5041), - [aux_sym_implicit_statement_token1] = ACTIONS(5041), - [aux_sym_implicit_statement_token3] = ACTIONS(5041), - [aux_sym_implicit_statement_token4] = ACTIONS(5041), - [aux_sym_save_statement_token1] = ACTIONS(5041), - [aux_sym_private_statement_token1] = ACTIONS(5041), - [aux_sym_public_statement_token1] = ACTIONS(5041), - [aux_sym_namelist_statement_token1] = ACTIONS(5041), - [aux_sym_common_statement_token1] = ACTIONS(5041), - [aux_sym_import_statement_token1] = ACTIONS(5041), - [aux_sym_derived_type_definition_token1] = ACTIONS(5041), - [aux_sym_abstract_specifier_token1] = ACTIONS(5041), - [aux_sym_procedure_attribute_token6] = ACTIONS(5041), - [aux_sym_variable_attributes_token1] = ACTIONS(5041), - [aux_sym_variable_attributes_token2] = ACTIONS(5041), - [aux_sym_variable_attributes_token3] = ACTIONS(5041), - [aux_sym_variable_attributes_token4] = ACTIONS(5041), - [aux_sym_variable_attributes_token5] = ACTIONS(5041), - [aux_sym__intrinsic_type_token1] = ACTIONS(5041), - [aux_sym__intrinsic_type_token2] = ACTIONS(5041), - [aux_sym__intrinsic_type_token3] = ACTIONS(5041), - [aux_sym__intrinsic_type_token4] = ACTIONS(5041), - [aux_sym__intrinsic_type_token6] = ACTIONS(5041), - [aux_sym__intrinsic_type_token7] = ACTIONS(5041), - [aux_sym__intrinsic_type_token8] = ACTIONS(5041), - [aux_sym__intrinsic_type_token9] = ACTIONS(5041), - [aux_sym__intrinsic_type_token10] = ACTIONS(5041), - [aux_sym_derived_type_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5041), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5041), - [aux_sym_type_qualifier_token1] = ACTIONS(5041), - [aux_sym_type_qualifier_token2] = ACTIONS(5041), - [aux_sym_equivalence_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token1] = ACTIONS(5041), - [aux_sym_stop_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token2] = ACTIONS(5041), - [aux_sym_keyword_statement_token3] = ACTIONS(5041), - [aux_sym_include_statement_token1] = ACTIONS(5041), - [aux_sym_data_statement_token1] = ACTIONS(5041), - [aux_sym__inline_if_statement_token1] = ACTIONS(5041), - [aux_sym_end_if_statement_token1] = ACTIONS(5041), - [aux_sym_elseif_clause_token2] = ACTIONS(5041), - [aux_sym_select_case_statement_token1] = ACTIONS(5041), - [aux_sym_block_construct_token1] = ACTIONS(5041), - [aux_sym_format_statement_token1] = ACTIONS(5041), - [aux_sym_inquire_statement_token1] = ACTIONS(5041), - [aux_sym_enum_statement_token1] = ACTIONS(5041), - [aux_sym_entry_statement_token1] = ACTIONS(5041), - [aux_sym_null_literal_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_statement_token2] = ACTIONS(5041), - [aux_sym_coarray_statement_token6] = ACTIONS(5041), - [aux_sym_coarray_statement_token8] = ACTIONS(5041), - [aux_sym_coarray_statement_token11] = ACTIONS(5041), - [aux_sym_coarray_statement_token12] = ACTIONS(5041), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5041), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5041), - [aux_sym_identifier_token1] = ACTIONS(5041), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5043), - }, - [3069] = { - [aux_sym_preproc_include_token1] = ACTIONS(5045), - [aux_sym_preproc_def_token1] = ACTIONS(5045), - [aux_sym_preproc_if_token2] = ACTIONS(5045), - [sym_preproc_directive] = ACTIONS(5045), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5045), - [aux_sym_interface_statement_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5045), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5045), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5045), - [aux_sym_language_binding_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token1] = ACTIONS(5045), - [aux_sym_procedure_attributes_token3] = ACTIONS(5045), - [aux_sym_contains_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token1] = ACTIONS(5045), - [aux_sym_use_statement_token2] = ACTIONS(5045), - [aux_sym_implicit_statement_token1] = ACTIONS(5045), - [aux_sym_implicit_statement_token3] = ACTIONS(5045), - [aux_sym_implicit_statement_token4] = ACTIONS(5045), - [aux_sym_save_statement_token1] = ACTIONS(5045), - [aux_sym_private_statement_token1] = ACTIONS(5045), - [aux_sym_public_statement_token1] = ACTIONS(5045), - [aux_sym_namelist_statement_token1] = ACTIONS(5045), - [aux_sym_common_statement_token1] = ACTIONS(5045), - [aux_sym_import_statement_token1] = ACTIONS(5045), - [aux_sym_derived_type_definition_token1] = ACTIONS(5045), - [aux_sym_abstract_specifier_token1] = ACTIONS(5045), - [aux_sym_procedure_attribute_token6] = ACTIONS(5045), - [aux_sym_variable_attributes_token1] = ACTIONS(5045), - [aux_sym_variable_attributes_token2] = ACTIONS(5045), - [aux_sym_variable_attributes_token3] = ACTIONS(5045), - [aux_sym_variable_attributes_token4] = ACTIONS(5045), - [aux_sym_variable_attributes_token5] = ACTIONS(5045), - [aux_sym__intrinsic_type_token1] = ACTIONS(5045), - [aux_sym__intrinsic_type_token2] = ACTIONS(5045), - [aux_sym__intrinsic_type_token3] = ACTIONS(5045), - [aux_sym__intrinsic_type_token4] = ACTIONS(5045), - [aux_sym__intrinsic_type_token6] = ACTIONS(5045), - [aux_sym__intrinsic_type_token7] = ACTIONS(5045), - [aux_sym__intrinsic_type_token8] = ACTIONS(5045), - [aux_sym__intrinsic_type_token9] = ACTIONS(5045), - [aux_sym__intrinsic_type_token10] = ACTIONS(5045), - [aux_sym_derived_type_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5045), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5045), - [aux_sym_type_qualifier_token1] = ACTIONS(5045), - [aux_sym_type_qualifier_token2] = ACTIONS(5045), - [aux_sym_equivalence_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token1] = ACTIONS(5045), - [aux_sym_stop_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token2] = ACTIONS(5045), - [aux_sym_keyword_statement_token3] = ACTIONS(5045), - [aux_sym_include_statement_token1] = ACTIONS(5045), - [aux_sym_data_statement_token1] = ACTIONS(5045), - [aux_sym__inline_if_statement_token1] = ACTIONS(5045), - [aux_sym_end_if_statement_token1] = ACTIONS(5045), - [aux_sym_elseif_clause_token2] = ACTIONS(5045), - [aux_sym_select_case_statement_token1] = ACTIONS(5045), - [aux_sym_block_construct_token1] = ACTIONS(5045), - [aux_sym_format_statement_token1] = ACTIONS(5045), - [aux_sym_inquire_statement_token1] = ACTIONS(5045), - [aux_sym_enum_statement_token1] = ACTIONS(5045), - [aux_sym_entry_statement_token1] = ACTIONS(5045), - [aux_sym_null_literal_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_statement_token2] = ACTIONS(5045), - [aux_sym_coarray_statement_token6] = ACTIONS(5045), - [aux_sym_coarray_statement_token8] = ACTIONS(5045), - [aux_sym_coarray_statement_token11] = ACTIONS(5045), - [aux_sym_coarray_statement_token12] = ACTIONS(5045), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5045), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5045), - [aux_sym_identifier_token1] = ACTIONS(5045), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5047), - }, - [3070] = { - [aux_sym_preproc_include_token1] = ACTIONS(5053), - [aux_sym_preproc_def_token1] = ACTIONS(5053), - [aux_sym_preproc_if_token2] = ACTIONS(5053), - [sym_preproc_directive] = ACTIONS(5053), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5053), - [aux_sym_interface_statement_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5053), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5053), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5053), - [aux_sym_language_binding_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token1] = ACTIONS(5053), - [aux_sym_procedure_attributes_token3] = ACTIONS(5053), - [aux_sym_contains_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token1] = ACTIONS(5053), - [aux_sym_use_statement_token2] = ACTIONS(5053), - [aux_sym_implicit_statement_token1] = ACTIONS(5053), - [aux_sym_implicit_statement_token3] = ACTIONS(5053), - [aux_sym_implicit_statement_token4] = ACTIONS(5053), - [aux_sym_save_statement_token1] = ACTIONS(5053), - [aux_sym_private_statement_token1] = ACTIONS(5053), - [aux_sym_public_statement_token1] = ACTIONS(5053), - [aux_sym_namelist_statement_token1] = ACTIONS(5053), - [aux_sym_common_statement_token1] = ACTIONS(5053), - [aux_sym_import_statement_token1] = ACTIONS(5053), - [aux_sym_derived_type_definition_token1] = ACTIONS(5053), - [aux_sym_abstract_specifier_token1] = ACTIONS(5053), - [aux_sym_procedure_attribute_token6] = ACTIONS(5053), - [aux_sym_variable_attributes_token1] = ACTIONS(5053), - [aux_sym_variable_attributes_token2] = ACTIONS(5053), - [aux_sym_variable_attributes_token3] = ACTIONS(5053), - [aux_sym_variable_attributes_token4] = ACTIONS(5053), - [aux_sym_variable_attributes_token5] = ACTIONS(5053), - [aux_sym__intrinsic_type_token1] = ACTIONS(5053), - [aux_sym__intrinsic_type_token2] = ACTIONS(5053), - [aux_sym__intrinsic_type_token3] = ACTIONS(5053), - [aux_sym__intrinsic_type_token4] = ACTIONS(5053), - [aux_sym__intrinsic_type_token6] = ACTIONS(5053), - [aux_sym__intrinsic_type_token7] = ACTIONS(5053), - [aux_sym__intrinsic_type_token8] = ACTIONS(5053), - [aux_sym__intrinsic_type_token9] = ACTIONS(5053), - [aux_sym__intrinsic_type_token10] = ACTIONS(5053), - [aux_sym_derived_type_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5053), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5053), - [aux_sym_type_qualifier_token1] = ACTIONS(5053), - [aux_sym_type_qualifier_token2] = ACTIONS(5053), - [aux_sym_equivalence_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token1] = ACTIONS(5053), - [aux_sym_stop_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token2] = ACTIONS(5053), - [aux_sym_keyword_statement_token3] = ACTIONS(5053), - [aux_sym_include_statement_token1] = ACTIONS(5053), - [aux_sym_data_statement_token1] = ACTIONS(5053), - [aux_sym__inline_if_statement_token1] = ACTIONS(5053), - [aux_sym_end_if_statement_token1] = ACTIONS(5053), - [aux_sym_elseif_clause_token2] = ACTIONS(5053), - [aux_sym_select_case_statement_token1] = ACTIONS(5053), - [aux_sym_block_construct_token1] = ACTIONS(5053), - [aux_sym_format_statement_token1] = ACTIONS(5053), - [aux_sym_inquire_statement_token1] = ACTIONS(5053), - [aux_sym_enum_statement_token1] = ACTIONS(5053), - [aux_sym_entry_statement_token1] = ACTIONS(5053), - [aux_sym_null_literal_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_statement_token2] = ACTIONS(5053), - [aux_sym_coarray_statement_token6] = ACTIONS(5053), - [aux_sym_coarray_statement_token8] = ACTIONS(5053), - [aux_sym_coarray_statement_token11] = ACTIONS(5053), - [aux_sym_coarray_statement_token12] = ACTIONS(5053), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5053), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5053), - [aux_sym_identifier_token1] = ACTIONS(5053), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5055), - }, - [3071] = { - [aux_sym_preproc_include_token1] = ACTIONS(4972), - [aux_sym_preproc_def_token1] = ACTIONS(4972), - [aux_sym_preproc_if_token2] = ACTIONS(4972), - [sym_preproc_directive] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4972), - [aux_sym_interface_statement_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), - [aux_sym_language_binding_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token1] = ACTIONS(4972), - [aux_sym_procedure_attributes_token3] = ACTIONS(4972), - [aux_sym_contains_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token1] = ACTIONS(4972), - [aux_sym_use_statement_token2] = ACTIONS(4972), - [aux_sym_implicit_statement_token1] = ACTIONS(4972), - [aux_sym_implicit_statement_token3] = ACTIONS(4972), - [aux_sym_implicit_statement_token4] = ACTIONS(4972), - [aux_sym_save_statement_token1] = ACTIONS(4972), - [aux_sym_private_statement_token1] = ACTIONS(4972), - [aux_sym_public_statement_token1] = ACTIONS(4972), - [aux_sym_namelist_statement_token1] = ACTIONS(4972), - [aux_sym_common_statement_token1] = ACTIONS(4972), - [aux_sym_import_statement_token1] = ACTIONS(4972), - [aux_sym_derived_type_definition_token1] = ACTIONS(4972), - [aux_sym_abstract_specifier_token1] = ACTIONS(4972), - [aux_sym_procedure_attribute_token6] = ACTIONS(4972), - [aux_sym_variable_attributes_token1] = ACTIONS(4972), - [aux_sym_variable_attributes_token2] = ACTIONS(4972), - [aux_sym_variable_attributes_token3] = ACTIONS(4972), - [aux_sym_variable_attributes_token4] = ACTIONS(4972), - [aux_sym_variable_attributes_token5] = ACTIONS(4972), - [aux_sym__intrinsic_type_token1] = ACTIONS(4972), - [aux_sym__intrinsic_type_token2] = ACTIONS(4972), - [aux_sym__intrinsic_type_token3] = ACTIONS(4972), - [aux_sym__intrinsic_type_token4] = ACTIONS(4972), - [aux_sym__intrinsic_type_token6] = ACTIONS(4972), - [aux_sym__intrinsic_type_token7] = ACTIONS(4972), - [aux_sym__intrinsic_type_token8] = ACTIONS(4972), - [aux_sym__intrinsic_type_token9] = ACTIONS(4972), - [aux_sym__intrinsic_type_token10] = ACTIONS(4972), - [aux_sym_derived_type_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), - [aux_sym_type_qualifier_token1] = ACTIONS(4972), - [aux_sym_type_qualifier_token2] = ACTIONS(4972), - [aux_sym_equivalence_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token1] = ACTIONS(4972), - [aux_sym_stop_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token2] = ACTIONS(4972), - [aux_sym_keyword_statement_token3] = ACTIONS(4972), - [aux_sym_include_statement_token1] = ACTIONS(4972), - [aux_sym_data_statement_token1] = ACTIONS(4972), - [aux_sym__inline_if_statement_token1] = ACTIONS(4972), - [aux_sym_end_if_statement_token1] = ACTIONS(4972), - [aux_sym_elseif_clause_token2] = ACTIONS(4972), - [aux_sym_select_case_statement_token1] = ACTIONS(4972), - [aux_sym_block_construct_token1] = ACTIONS(4972), - [aux_sym_format_statement_token1] = ACTIONS(4972), - [aux_sym_inquire_statement_token1] = ACTIONS(4972), - [aux_sym_enum_statement_token1] = ACTIONS(4972), - [aux_sym_entry_statement_token1] = ACTIONS(4972), - [aux_sym_null_literal_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_statement_token2] = ACTIONS(4972), - [aux_sym_coarray_statement_token6] = ACTIONS(4972), - [aux_sym_coarray_statement_token8] = ACTIONS(4972), - [aux_sym_coarray_statement_token11] = ACTIONS(4972), - [aux_sym_coarray_statement_token12] = ACTIONS(4972), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), - [aux_sym_identifier_token1] = ACTIONS(4972), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4974), - }, - [3072] = { - [aux_sym_preproc_include_token1] = ACTIONS(5081), - [aux_sym_preproc_def_token1] = ACTIONS(5081), - [aux_sym_preproc_if_token2] = ACTIONS(5081), - [sym_preproc_directive] = ACTIONS(5081), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5081), - [aux_sym_interface_statement_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), - [aux_sym_language_binding_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token1] = ACTIONS(5081), - [aux_sym_procedure_attributes_token3] = ACTIONS(5081), - [aux_sym_contains_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token1] = ACTIONS(5081), - [aux_sym_use_statement_token2] = ACTIONS(5081), - [aux_sym_implicit_statement_token1] = ACTIONS(5081), - [aux_sym_implicit_statement_token3] = ACTIONS(5081), - [aux_sym_implicit_statement_token4] = ACTIONS(5081), - [aux_sym_save_statement_token1] = ACTIONS(5081), - [aux_sym_private_statement_token1] = ACTIONS(5081), - [aux_sym_public_statement_token1] = ACTIONS(5081), - [aux_sym_namelist_statement_token1] = ACTIONS(5081), - [aux_sym_common_statement_token1] = ACTIONS(5081), - [aux_sym_import_statement_token1] = ACTIONS(5081), - [aux_sym_derived_type_definition_token1] = ACTIONS(5081), - [aux_sym_abstract_specifier_token1] = ACTIONS(5081), - [aux_sym_procedure_attribute_token6] = ACTIONS(5081), - [aux_sym_variable_attributes_token1] = ACTIONS(5081), - [aux_sym_variable_attributes_token2] = ACTIONS(5081), - [aux_sym_variable_attributes_token3] = ACTIONS(5081), - [aux_sym_variable_attributes_token4] = ACTIONS(5081), - [aux_sym_variable_attributes_token5] = ACTIONS(5081), - [aux_sym__intrinsic_type_token1] = ACTIONS(5081), - [aux_sym__intrinsic_type_token2] = ACTIONS(5081), - [aux_sym__intrinsic_type_token3] = ACTIONS(5081), - [aux_sym__intrinsic_type_token4] = ACTIONS(5081), - [aux_sym__intrinsic_type_token6] = ACTIONS(5081), - [aux_sym__intrinsic_type_token7] = ACTIONS(5081), - [aux_sym__intrinsic_type_token8] = ACTIONS(5081), - [aux_sym__intrinsic_type_token9] = ACTIONS(5081), - [aux_sym__intrinsic_type_token10] = ACTIONS(5081), - [aux_sym_derived_type_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), - [aux_sym_type_qualifier_token1] = ACTIONS(5081), - [aux_sym_type_qualifier_token2] = ACTIONS(5081), - [aux_sym_equivalence_statement_token1] = ACTIONS(5081), - [aux_sym_stop_statement_token1] = ACTIONS(5081), - [aux_sym_stop_statement_token2] = ACTIONS(5081), - [aux_sym_keyword_statement_token2] = ACTIONS(5081), - [aux_sym_keyword_statement_token3] = ACTIONS(5081), - [aux_sym_include_statement_token1] = ACTIONS(5081), - [aux_sym_data_statement_token1] = ACTIONS(5081), - [aux_sym__inline_if_statement_token1] = ACTIONS(5081), - [aux_sym_end_if_statement_token1] = ACTIONS(5081), - [aux_sym_elseif_clause_token2] = ACTIONS(5081), - [aux_sym_select_case_statement_token1] = ACTIONS(5081), - [aux_sym_block_construct_token1] = ACTIONS(5081), - [aux_sym_format_statement_token1] = ACTIONS(5081), - [aux_sym_inquire_statement_token1] = ACTIONS(5081), - [aux_sym_enum_statement_token1] = ACTIONS(5081), - [aux_sym_entry_statement_token1] = ACTIONS(5081), - [aux_sym_null_literal_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_statement_token2] = ACTIONS(5081), - [aux_sym_coarray_statement_token6] = ACTIONS(5081), - [aux_sym_coarray_statement_token8] = ACTIONS(5081), - [aux_sym_coarray_statement_token11] = ACTIONS(5081), - [aux_sym_coarray_statement_token12] = ACTIONS(5081), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), - [aux_sym_identifier_token1] = ACTIONS(5081), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5083), - }, - [3073] = { - [aux_sym_preproc_include_token1] = ACTIONS(5057), - [aux_sym_preproc_def_token1] = ACTIONS(5057), - [aux_sym_preproc_if_token2] = ACTIONS(5057), - [sym_preproc_directive] = ACTIONS(5057), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5057), - [aux_sym_interface_statement_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5057), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5057), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5057), - [aux_sym_language_binding_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token1] = ACTIONS(5057), - [aux_sym_procedure_attributes_token3] = ACTIONS(5057), - [aux_sym_contains_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token1] = ACTIONS(5057), - [aux_sym_use_statement_token2] = ACTIONS(5057), - [aux_sym_implicit_statement_token1] = ACTIONS(5057), - [aux_sym_implicit_statement_token3] = ACTIONS(5057), - [aux_sym_implicit_statement_token4] = ACTIONS(5057), - [aux_sym_save_statement_token1] = ACTIONS(5057), - [aux_sym_private_statement_token1] = ACTIONS(5057), - [aux_sym_public_statement_token1] = ACTIONS(5057), - [aux_sym_namelist_statement_token1] = ACTIONS(5057), - [aux_sym_common_statement_token1] = ACTIONS(5057), - [aux_sym_import_statement_token1] = ACTIONS(5057), - [aux_sym_derived_type_definition_token1] = ACTIONS(5057), - [aux_sym_abstract_specifier_token1] = ACTIONS(5057), - [aux_sym_procedure_attribute_token6] = ACTIONS(5057), - [aux_sym_variable_attributes_token1] = ACTIONS(5057), - [aux_sym_variable_attributes_token2] = ACTIONS(5057), - [aux_sym_variable_attributes_token3] = ACTIONS(5057), - [aux_sym_variable_attributes_token4] = ACTIONS(5057), - [aux_sym_variable_attributes_token5] = ACTIONS(5057), - [aux_sym__intrinsic_type_token1] = ACTIONS(5057), - [aux_sym__intrinsic_type_token2] = ACTIONS(5057), - [aux_sym__intrinsic_type_token3] = ACTIONS(5057), - [aux_sym__intrinsic_type_token4] = ACTIONS(5057), - [aux_sym__intrinsic_type_token6] = ACTIONS(5057), - [aux_sym__intrinsic_type_token7] = ACTIONS(5057), - [aux_sym__intrinsic_type_token8] = ACTIONS(5057), - [aux_sym__intrinsic_type_token9] = ACTIONS(5057), - [aux_sym__intrinsic_type_token10] = ACTIONS(5057), - [aux_sym_derived_type_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5057), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5057), - [aux_sym_type_qualifier_token1] = ACTIONS(5057), - [aux_sym_type_qualifier_token2] = ACTIONS(5057), - [aux_sym_equivalence_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token1] = ACTIONS(5057), - [aux_sym_stop_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token2] = ACTIONS(5057), - [aux_sym_keyword_statement_token3] = ACTIONS(5057), - [aux_sym_include_statement_token1] = ACTIONS(5057), - [aux_sym_data_statement_token1] = ACTIONS(5057), - [aux_sym__inline_if_statement_token1] = ACTIONS(5057), - [aux_sym_end_if_statement_token1] = ACTIONS(5057), - [aux_sym_elseif_clause_token2] = ACTIONS(5057), - [aux_sym_select_case_statement_token1] = ACTIONS(5057), - [aux_sym_block_construct_token1] = ACTIONS(5057), - [aux_sym_format_statement_token1] = ACTIONS(5057), - [aux_sym_inquire_statement_token1] = ACTIONS(5057), - [aux_sym_enum_statement_token1] = ACTIONS(5057), - [aux_sym_entry_statement_token1] = ACTIONS(5057), - [aux_sym_null_literal_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_statement_token2] = ACTIONS(5057), - [aux_sym_coarray_statement_token6] = ACTIONS(5057), - [aux_sym_coarray_statement_token8] = ACTIONS(5057), - [aux_sym_coarray_statement_token11] = ACTIONS(5057), - [aux_sym_coarray_statement_token12] = ACTIONS(5057), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5057), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5057), - [aux_sym_identifier_token1] = ACTIONS(5057), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5059), - }, - [3074] = { - [sym__import_names] = STATE(4466), - [sym_identifier] = STATE(4317), - [aux_sym_preproc_include_token1] = ACTIONS(7094), - [aux_sym_preproc_def_token1] = ACTIONS(7094), - [anon_sym_COMMA] = ACTIONS(7096), - [aux_sym_preproc_if_token1] = ACTIONS(7094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7094), - [sym_preproc_directive] = ACTIONS(7094), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7094), - [aux_sym_module_statement_token1] = ACTIONS(7094), - [aux_sym_end_interface_statement_token1] = ACTIONS(7094), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5928), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5928), - [aux_sym_subroutine_statement_token1] = ACTIONS(7094), - [aux_sym_module_procedure_statement_token1] = ACTIONS(7094), - [aux_sym_function_statement_token1] = ACTIONS(7094), - [aux_sym_procedure_attributes_token1] = ACTIONS(7094), - [aux_sym_procedure_attributes_token3] = ACTIONS(5928), - [aux_sym_use_statement_token2] = ACTIONS(5928), - [anon_sym_COLON_COLON] = ACTIONS(7098), - [aux_sym_implicit_statement_token3] = ACTIONS(7094), - [aux_sym_implicit_statement_token4] = ACTIONS(5928), - [aux_sym_save_statement_token1] = ACTIONS(5928), - [aux_sym_private_statement_token1] = ACTIONS(5928), - [aux_sym_public_statement_token1] = ACTIONS(5928), - [aux_sym_import_statement_token1] = ACTIONS(7094), - [aux_sym_derived_type_definition_token1] = ACTIONS(5928), - [aux_sym__procedure_kind_token1] = ACTIONS(7094), - [aux_sym__procedure_kind_token2] = ACTIONS(7094), - [aux_sym__procedure_kind_token3] = ACTIONS(7094), - [aux_sym__procedure_kind_token4] = ACTIONS(7094), - [aux_sym_procedure_attribute_token6] = ACTIONS(5928), - [aux_sym_variable_attributes_token2] = ACTIONS(5928), - [aux_sym_variable_attributes_token3] = ACTIONS(5928), - [aux_sym_variable_attributes_token5] = ACTIONS(5928), - [aux_sym__intrinsic_type_token1] = ACTIONS(7094), - [aux_sym__intrinsic_type_token2] = ACTIONS(7094), - [aux_sym__intrinsic_type_token3] = ACTIONS(7094), - [aux_sym__intrinsic_type_token4] = ACTIONS(7094), - [aux_sym__intrinsic_type_token6] = ACTIONS(7094), - [aux_sym__intrinsic_type_token7] = ACTIONS(7094), - [aux_sym__intrinsic_type_token8] = ACTIONS(7094), - [aux_sym__intrinsic_type_token9] = ACTIONS(7094), - [aux_sym__intrinsic_type_token10] = ACTIONS(7094), - [aux_sym_derived_type_token1] = ACTIONS(7094), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5934), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5928), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5928), - [aux_sym_type_qualifier_token1] = ACTIONS(5928), - [aux_sym_type_qualifier_token2] = ACTIONS(5928), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7094), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7094), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7094), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7094), - [aux_sym_stop_statement_token1] = ACTIONS(5928), - [aux_sym_stop_statement_token2] = ACTIONS(5928), - [aux_sym_keyword_statement_token2] = ACTIONS(5928), - [aux_sym_keyword_statement_token3] = ACTIONS(5928), - [aux_sym_data_statement_token1] = ACTIONS(5928), - [aux_sym__inline_if_statement_token1] = ACTIONS(5928), - [aux_sym_end_if_statement_token1] = ACTIONS(5928), - [aux_sym_elseif_clause_token2] = ACTIONS(5928), - [aux_sym_select_case_statement_token1] = ACTIONS(5936), - [aux_sym_block_construct_token1] = ACTIONS(5928), - [aux_sym_format_statement_token1] = ACTIONS(5928), - [aux_sym_inquire_statement_token1] = ACTIONS(5928), - [aux_sym_entry_statement_token1] = ACTIONS(5928), - [aux_sym_null_literal_token1] = ACTIONS(5928), - [aux_sym_coarray_statement_token1] = ACTIONS(5928), - [aux_sym_coarray_statement_token2] = ACTIONS(5928), - [aux_sym_coarray_statement_token6] = ACTIONS(5928), - [aux_sym_coarray_statement_token8] = ACTIONS(5928), - [aux_sym_coarray_statement_token11] = ACTIONS(5928), - [aux_sym_coarray_statement_token12] = ACTIONS(5928), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5928), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5928), - [aux_sym_identifier_token1] = ACTIONS(5928), - [sym_comment] = ACTIONS(21), - }, - [3075] = { - [aux_sym_preproc_include_token1] = ACTIONS(4976), - [aux_sym_preproc_def_token1] = ACTIONS(4976), - [aux_sym_preproc_if_token2] = ACTIONS(4976), - [sym_preproc_directive] = ACTIONS(4976), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4976), - [aux_sym_interface_statement_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4976), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4976), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4976), - [aux_sym_language_binding_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token1] = ACTIONS(4976), - [aux_sym_procedure_attributes_token3] = ACTIONS(4976), - [aux_sym_contains_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token1] = ACTIONS(4976), - [aux_sym_use_statement_token2] = ACTIONS(4976), - [aux_sym_implicit_statement_token1] = ACTIONS(4976), - [aux_sym_implicit_statement_token3] = ACTIONS(4976), - [aux_sym_implicit_statement_token4] = ACTIONS(4976), - [aux_sym_save_statement_token1] = ACTIONS(4976), - [aux_sym_private_statement_token1] = ACTIONS(4976), - [aux_sym_public_statement_token1] = ACTIONS(4976), - [aux_sym_namelist_statement_token1] = ACTIONS(4976), - [aux_sym_common_statement_token1] = ACTIONS(4976), - [aux_sym_import_statement_token1] = ACTIONS(4976), - [aux_sym_derived_type_definition_token1] = ACTIONS(4976), - [aux_sym_abstract_specifier_token1] = ACTIONS(4976), - [aux_sym_procedure_attribute_token6] = ACTIONS(4976), - [aux_sym_variable_attributes_token1] = ACTIONS(4976), - [aux_sym_variable_attributes_token2] = ACTIONS(4976), - [aux_sym_variable_attributes_token3] = ACTIONS(4976), - [aux_sym_variable_attributes_token4] = ACTIONS(4976), - [aux_sym_variable_attributes_token5] = ACTIONS(4976), - [aux_sym__intrinsic_type_token1] = ACTIONS(4976), - [aux_sym__intrinsic_type_token2] = ACTIONS(4976), - [aux_sym__intrinsic_type_token3] = ACTIONS(4976), - [aux_sym__intrinsic_type_token4] = ACTIONS(4976), - [aux_sym__intrinsic_type_token6] = ACTIONS(4976), - [aux_sym__intrinsic_type_token7] = ACTIONS(4976), - [aux_sym__intrinsic_type_token8] = ACTIONS(4976), - [aux_sym__intrinsic_type_token9] = ACTIONS(4976), - [aux_sym__intrinsic_type_token10] = ACTIONS(4976), - [aux_sym_derived_type_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4976), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4976), - [aux_sym_type_qualifier_token1] = ACTIONS(4976), - [aux_sym_type_qualifier_token2] = ACTIONS(4976), - [aux_sym_equivalence_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token1] = ACTIONS(4976), - [aux_sym_stop_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token2] = ACTIONS(4976), - [aux_sym_keyword_statement_token3] = ACTIONS(4976), - [aux_sym_include_statement_token1] = ACTIONS(4976), - [aux_sym_data_statement_token1] = ACTIONS(4976), - [aux_sym__inline_if_statement_token1] = ACTIONS(4976), - [aux_sym_end_if_statement_token1] = ACTIONS(4976), - [aux_sym_elseif_clause_token2] = ACTIONS(4976), - [aux_sym_select_case_statement_token1] = ACTIONS(4976), - [aux_sym_block_construct_token1] = ACTIONS(4976), - [aux_sym_format_statement_token1] = ACTIONS(4976), - [aux_sym_inquire_statement_token1] = ACTIONS(4976), - [aux_sym_enum_statement_token1] = ACTIONS(4976), - [aux_sym_entry_statement_token1] = ACTIONS(4976), - [aux_sym_null_literal_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_statement_token2] = ACTIONS(4976), - [aux_sym_coarray_statement_token6] = ACTIONS(4976), - [aux_sym_coarray_statement_token8] = ACTIONS(4976), - [aux_sym_coarray_statement_token11] = ACTIONS(4976), - [aux_sym_coarray_statement_token12] = ACTIONS(4976), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4976), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4976), - [aux_sym_identifier_token1] = ACTIONS(4976), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4978), - }, - [3076] = { - [aux_sym_preproc_include_token1] = ACTIONS(4990), - [aux_sym_preproc_def_token1] = ACTIONS(4990), - [aux_sym_preproc_if_token2] = ACTIONS(4990), - [sym_preproc_directive] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4990), - [aux_sym_interface_statement_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), - [aux_sym_language_binding_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token1] = ACTIONS(4990), - [aux_sym_procedure_attributes_token3] = ACTIONS(4990), - [aux_sym_contains_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token1] = ACTIONS(4990), - [aux_sym_use_statement_token2] = ACTIONS(4990), - [aux_sym_implicit_statement_token1] = ACTIONS(4990), - [aux_sym_implicit_statement_token3] = ACTIONS(4990), - [aux_sym_implicit_statement_token4] = ACTIONS(4990), - [aux_sym_save_statement_token1] = ACTIONS(4990), - [aux_sym_private_statement_token1] = ACTIONS(4990), - [aux_sym_public_statement_token1] = ACTIONS(4990), - [aux_sym_namelist_statement_token1] = ACTIONS(4990), - [aux_sym_common_statement_token1] = ACTIONS(4990), - [aux_sym_import_statement_token1] = ACTIONS(4990), - [aux_sym_derived_type_definition_token1] = ACTIONS(4990), - [aux_sym_abstract_specifier_token1] = ACTIONS(4990), - [aux_sym_procedure_attribute_token6] = ACTIONS(4990), - [aux_sym_variable_attributes_token1] = ACTIONS(4990), - [aux_sym_variable_attributes_token2] = ACTIONS(4990), - [aux_sym_variable_attributes_token3] = ACTIONS(4990), - [aux_sym_variable_attributes_token4] = ACTIONS(4990), - [aux_sym_variable_attributes_token5] = ACTIONS(4990), - [aux_sym__intrinsic_type_token1] = ACTIONS(4990), - [aux_sym__intrinsic_type_token2] = ACTIONS(4990), - [aux_sym__intrinsic_type_token3] = ACTIONS(4990), - [aux_sym__intrinsic_type_token4] = ACTIONS(4990), - [aux_sym__intrinsic_type_token6] = ACTIONS(4990), - [aux_sym__intrinsic_type_token7] = ACTIONS(4990), - [aux_sym__intrinsic_type_token8] = ACTIONS(4990), - [aux_sym__intrinsic_type_token9] = ACTIONS(4990), - [aux_sym__intrinsic_type_token10] = ACTIONS(4990), - [aux_sym_derived_type_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), - [aux_sym_type_qualifier_token1] = ACTIONS(4990), - [aux_sym_type_qualifier_token2] = ACTIONS(4990), - [aux_sym_equivalence_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token1] = ACTIONS(4990), - [aux_sym_stop_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token2] = ACTIONS(4990), - [aux_sym_keyword_statement_token3] = ACTIONS(4990), - [aux_sym_include_statement_token1] = ACTIONS(4990), - [aux_sym_data_statement_token1] = ACTIONS(4990), - [aux_sym__inline_if_statement_token1] = ACTIONS(4990), - [aux_sym_end_if_statement_token1] = ACTIONS(4990), - [aux_sym_elseif_clause_token2] = ACTIONS(4990), - [aux_sym_select_case_statement_token1] = ACTIONS(4990), - [aux_sym_block_construct_token1] = ACTIONS(4990), - [aux_sym_format_statement_token1] = ACTIONS(4990), - [aux_sym_inquire_statement_token1] = ACTIONS(4990), - [aux_sym_enum_statement_token1] = ACTIONS(4990), - [aux_sym_entry_statement_token1] = ACTIONS(4990), - [aux_sym_null_literal_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_statement_token2] = ACTIONS(4990), - [aux_sym_coarray_statement_token6] = ACTIONS(4990), - [aux_sym_coarray_statement_token8] = ACTIONS(4990), - [aux_sym_coarray_statement_token11] = ACTIONS(4990), - [aux_sym_coarray_statement_token12] = ACTIONS(4990), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), - [aux_sym_identifier_token1] = ACTIONS(4990), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4992), - }, - [3077] = { - [aux_sym_preproc_include_token1] = ACTIONS(5073), - [aux_sym_preproc_def_token1] = ACTIONS(5073), - [aux_sym_preproc_if_token2] = ACTIONS(5073), - [sym_preproc_directive] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5073), - [aux_sym_interface_statement_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5073), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5073), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5073), - [aux_sym_language_binding_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token1] = ACTIONS(5073), - [aux_sym_procedure_attributes_token3] = ACTIONS(5073), - [aux_sym_contains_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token1] = ACTIONS(5073), - [aux_sym_use_statement_token2] = ACTIONS(5073), - [aux_sym_implicit_statement_token1] = ACTIONS(5073), - [aux_sym_implicit_statement_token3] = ACTIONS(5073), - [aux_sym_implicit_statement_token4] = ACTIONS(5073), - [aux_sym_save_statement_token1] = ACTIONS(5073), - [aux_sym_private_statement_token1] = ACTIONS(5073), - [aux_sym_public_statement_token1] = ACTIONS(5073), - [aux_sym_namelist_statement_token1] = ACTIONS(5073), - [aux_sym_common_statement_token1] = ACTIONS(5073), - [aux_sym_import_statement_token1] = ACTIONS(5073), - [aux_sym_derived_type_definition_token1] = ACTIONS(5073), - [aux_sym_abstract_specifier_token1] = ACTIONS(5073), - [aux_sym_procedure_attribute_token6] = ACTIONS(5073), - [aux_sym_variable_attributes_token1] = ACTIONS(5073), - [aux_sym_variable_attributes_token2] = ACTIONS(5073), - [aux_sym_variable_attributes_token3] = ACTIONS(5073), - [aux_sym_variable_attributes_token4] = ACTIONS(5073), - [aux_sym_variable_attributes_token5] = ACTIONS(5073), - [aux_sym__intrinsic_type_token1] = ACTIONS(5073), - [aux_sym__intrinsic_type_token2] = ACTIONS(5073), - [aux_sym__intrinsic_type_token3] = ACTIONS(5073), - [aux_sym__intrinsic_type_token4] = ACTIONS(5073), - [aux_sym__intrinsic_type_token6] = ACTIONS(5073), - [aux_sym__intrinsic_type_token7] = ACTIONS(5073), - [aux_sym__intrinsic_type_token8] = ACTIONS(5073), - [aux_sym__intrinsic_type_token9] = ACTIONS(5073), - [aux_sym__intrinsic_type_token10] = ACTIONS(5073), - [aux_sym_derived_type_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5073), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5073), - [aux_sym_type_qualifier_token1] = ACTIONS(5073), - [aux_sym_type_qualifier_token2] = ACTIONS(5073), - [aux_sym_equivalence_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token1] = ACTIONS(5073), - [aux_sym_stop_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token2] = ACTIONS(5073), - [aux_sym_keyword_statement_token3] = ACTIONS(5073), - [aux_sym_include_statement_token1] = ACTIONS(5073), - [aux_sym_data_statement_token1] = ACTIONS(5073), - [aux_sym__inline_if_statement_token1] = ACTIONS(5073), - [aux_sym_end_if_statement_token1] = ACTIONS(5073), - [aux_sym_elseif_clause_token2] = ACTIONS(5073), - [aux_sym_select_case_statement_token1] = ACTIONS(5073), - [aux_sym_block_construct_token1] = ACTIONS(5073), - [aux_sym_format_statement_token1] = ACTIONS(5073), - [aux_sym_inquire_statement_token1] = ACTIONS(5073), - [aux_sym_enum_statement_token1] = ACTIONS(5073), - [aux_sym_entry_statement_token1] = ACTIONS(5073), - [aux_sym_null_literal_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_statement_token2] = ACTIONS(5073), - [aux_sym_coarray_statement_token6] = ACTIONS(5073), - [aux_sym_coarray_statement_token8] = ACTIONS(5073), - [aux_sym_coarray_statement_token11] = ACTIONS(5073), - [aux_sym_coarray_statement_token12] = ACTIONS(5073), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5073), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5073), - [aux_sym_identifier_token1] = ACTIONS(5073), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5075), - }, - [3078] = { - [aux_sym_preproc_include_token1] = ACTIONS(5077), - [aux_sym_preproc_def_token1] = ACTIONS(5077), - [aux_sym_preproc_if_token2] = ACTIONS(5077), - [sym_preproc_directive] = ACTIONS(5077), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5077), - [aux_sym_interface_statement_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5077), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5077), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5077), - [aux_sym_language_binding_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token1] = ACTIONS(5077), - [aux_sym_procedure_attributes_token3] = ACTIONS(5077), - [aux_sym_contains_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token1] = ACTIONS(5077), - [aux_sym_use_statement_token2] = ACTIONS(5077), - [aux_sym_implicit_statement_token1] = ACTIONS(5077), - [aux_sym_implicit_statement_token3] = ACTIONS(5077), - [aux_sym_implicit_statement_token4] = ACTIONS(5077), - [aux_sym_save_statement_token1] = ACTIONS(5077), - [aux_sym_private_statement_token1] = ACTIONS(5077), - [aux_sym_public_statement_token1] = ACTIONS(5077), - [aux_sym_namelist_statement_token1] = ACTIONS(5077), - [aux_sym_common_statement_token1] = ACTIONS(5077), - [aux_sym_import_statement_token1] = ACTIONS(5077), - [aux_sym_derived_type_definition_token1] = ACTIONS(5077), - [aux_sym_abstract_specifier_token1] = ACTIONS(5077), - [aux_sym_procedure_attribute_token6] = ACTIONS(5077), - [aux_sym_variable_attributes_token1] = ACTIONS(5077), - [aux_sym_variable_attributes_token2] = ACTIONS(5077), - [aux_sym_variable_attributes_token3] = ACTIONS(5077), - [aux_sym_variable_attributes_token4] = ACTIONS(5077), - [aux_sym_variable_attributes_token5] = ACTIONS(5077), - [aux_sym__intrinsic_type_token1] = ACTIONS(5077), - [aux_sym__intrinsic_type_token2] = ACTIONS(5077), - [aux_sym__intrinsic_type_token3] = ACTIONS(5077), - [aux_sym__intrinsic_type_token4] = ACTIONS(5077), - [aux_sym__intrinsic_type_token6] = ACTIONS(5077), - [aux_sym__intrinsic_type_token7] = ACTIONS(5077), - [aux_sym__intrinsic_type_token8] = ACTIONS(5077), - [aux_sym__intrinsic_type_token9] = ACTIONS(5077), - [aux_sym__intrinsic_type_token10] = ACTIONS(5077), - [aux_sym_derived_type_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5077), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5077), - [aux_sym_type_qualifier_token1] = ACTIONS(5077), - [aux_sym_type_qualifier_token2] = ACTIONS(5077), - [aux_sym_equivalence_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token1] = ACTIONS(5077), - [aux_sym_stop_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token2] = ACTIONS(5077), - [aux_sym_keyword_statement_token3] = ACTIONS(5077), - [aux_sym_include_statement_token1] = ACTIONS(5077), - [aux_sym_data_statement_token1] = ACTIONS(5077), - [aux_sym__inline_if_statement_token1] = ACTIONS(5077), - [aux_sym_end_if_statement_token1] = ACTIONS(5077), - [aux_sym_elseif_clause_token2] = ACTIONS(5077), - [aux_sym_select_case_statement_token1] = ACTIONS(5077), - [aux_sym_block_construct_token1] = ACTIONS(5077), - [aux_sym_format_statement_token1] = ACTIONS(5077), - [aux_sym_inquire_statement_token1] = ACTIONS(5077), - [aux_sym_enum_statement_token1] = ACTIONS(5077), - [aux_sym_entry_statement_token1] = ACTIONS(5077), - [aux_sym_null_literal_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_statement_token2] = ACTIONS(5077), - [aux_sym_coarray_statement_token6] = ACTIONS(5077), - [aux_sym_coarray_statement_token8] = ACTIONS(5077), - [aux_sym_coarray_statement_token11] = ACTIONS(5077), - [aux_sym_coarray_statement_token12] = ACTIONS(5077), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5077), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5077), - [aux_sym_identifier_token1] = ACTIONS(5077), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5079), - }, - [3079] = { - [aux_sym_preproc_include_token1] = ACTIONS(5065), - [aux_sym_preproc_def_token1] = ACTIONS(5065), - [aux_sym_preproc_if_token2] = ACTIONS(5065), - [sym_preproc_directive] = ACTIONS(5065), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5065), - [aux_sym_interface_statement_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5065), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5065), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5065), - [aux_sym_language_binding_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token1] = ACTIONS(5065), - [aux_sym_procedure_attributes_token3] = ACTIONS(5065), - [aux_sym_contains_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token1] = ACTIONS(5065), - [aux_sym_use_statement_token2] = ACTIONS(5065), - [aux_sym_implicit_statement_token1] = ACTIONS(5065), - [aux_sym_implicit_statement_token3] = ACTIONS(5065), - [aux_sym_implicit_statement_token4] = ACTIONS(5065), - [aux_sym_save_statement_token1] = ACTIONS(5065), - [aux_sym_private_statement_token1] = ACTIONS(5065), - [aux_sym_public_statement_token1] = ACTIONS(5065), - [aux_sym_namelist_statement_token1] = ACTIONS(5065), - [aux_sym_common_statement_token1] = ACTIONS(5065), - [aux_sym_import_statement_token1] = ACTIONS(5065), - [aux_sym_derived_type_definition_token1] = ACTIONS(5065), - [aux_sym_abstract_specifier_token1] = ACTIONS(5065), - [aux_sym_procedure_attribute_token6] = ACTIONS(5065), - [aux_sym_variable_attributes_token1] = ACTIONS(5065), - [aux_sym_variable_attributes_token2] = ACTIONS(5065), - [aux_sym_variable_attributes_token3] = ACTIONS(5065), - [aux_sym_variable_attributes_token4] = ACTIONS(5065), - [aux_sym_variable_attributes_token5] = ACTIONS(5065), - [aux_sym__intrinsic_type_token1] = ACTIONS(5065), - [aux_sym__intrinsic_type_token2] = ACTIONS(5065), - [aux_sym__intrinsic_type_token3] = ACTIONS(5065), - [aux_sym__intrinsic_type_token4] = ACTIONS(5065), - [aux_sym__intrinsic_type_token6] = ACTIONS(5065), - [aux_sym__intrinsic_type_token7] = ACTIONS(5065), - [aux_sym__intrinsic_type_token8] = ACTIONS(5065), - [aux_sym__intrinsic_type_token9] = ACTIONS(5065), - [aux_sym__intrinsic_type_token10] = ACTIONS(5065), - [aux_sym_derived_type_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5065), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5065), - [aux_sym_type_qualifier_token1] = ACTIONS(5065), - [aux_sym_type_qualifier_token2] = ACTIONS(5065), - [aux_sym_equivalence_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token1] = ACTIONS(5065), - [aux_sym_stop_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token2] = ACTIONS(5065), - [aux_sym_keyword_statement_token3] = ACTIONS(5065), - [aux_sym_include_statement_token1] = ACTIONS(5065), - [aux_sym_data_statement_token1] = ACTIONS(5065), - [aux_sym__inline_if_statement_token1] = ACTIONS(5065), - [aux_sym_end_if_statement_token1] = ACTIONS(5065), - [aux_sym_elseif_clause_token2] = ACTIONS(5065), - [aux_sym_select_case_statement_token1] = ACTIONS(5065), - [aux_sym_block_construct_token1] = ACTIONS(5065), - [aux_sym_format_statement_token1] = ACTIONS(5065), - [aux_sym_inquire_statement_token1] = ACTIONS(5065), - [aux_sym_enum_statement_token1] = ACTIONS(5065), - [aux_sym_entry_statement_token1] = ACTIONS(5065), - [aux_sym_null_literal_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_statement_token2] = ACTIONS(5065), - [aux_sym_coarray_statement_token6] = ACTIONS(5065), - [aux_sym_coarray_statement_token8] = ACTIONS(5065), - [aux_sym_coarray_statement_token11] = ACTIONS(5065), - [aux_sym_coarray_statement_token12] = ACTIONS(5065), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5065), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5065), - [aux_sym_identifier_token1] = ACTIONS(5065), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5067), - }, - [3080] = { - [aux_sym_preproc_include_token1] = ACTIONS(4547), - [aux_sym_preproc_def_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token2] = ACTIONS(4547), - [sym_preproc_directive] = ACTIONS(4547), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4547), - [aux_sym_interface_statement_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4547), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4547), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4547), - [aux_sym_language_binding_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token1] = ACTIONS(4547), - [aux_sym_procedure_attributes_token3] = ACTIONS(4547), - [aux_sym_contains_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token1] = ACTIONS(4547), - [aux_sym_use_statement_token2] = ACTIONS(4547), - [aux_sym_implicit_statement_token1] = ACTIONS(4547), - [aux_sym_implicit_statement_token3] = ACTIONS(4547), - [aux_sym_implicit_statement_token4] = ACTIONS(4547), - [aux_sym_save_statement_token1] = ACTIONS(4547), - [aux_sym_private_statement_token1] = ACTIONS(4547), - [aux_sym_public_statement_token1] = ACTIONS(4547), - [aux_sym_namelist_statement_token1] = ACTIONS(4547), - [aux_sym_common_statement_token1] = ACTIONS(4547), - [aux_sym_import_statement_token1] = ACTIONS(4547), - [aux_sym_derived_type_definition_token1] = ACTIONS(4547), - [aux_sym_abstract_specifier_token1] = ACTIONS(4547), - [aux_sym_procedure_attribute_token6] = ACTIONS(4547), - [aux_sym_variable_attributes_token1] = ACTIONS(4547), - [aux_sym_variable_attributes_token2] = ACTIONS(4547), - [aux_sym_variable_attributes_token3] = ACTIONS(4547), - [aux_sym_variable_attributes_token4] = ACTIONS(4547), - [aux_sym_variable_attributes_token5] = ACTIONS(4547), - [aux_sym__intrinsic_type_token1] = ACTIONS(4547), - [aux_sym__intrinsic_type_token2] = ACTIONS(4547), - [aux_sym__intrinsic_type_token3] = ACTIONS(4547), - [aux_sym__intrinsic_type_token4] = ACTIONS(4547), - [aux_sym__intrinsic_type_token6] = ACTIONS(4547), - [aux_sym__intrinsic_type_token7] = ACTIONS(4547), - [aux_sym__intrinsic_type_token8] = ACTIONS(4547), - [aux_sym__intrinsic_type_token9] = ACTIONS(4547), - [aux_sym__intrinsic_type_token10] = ACTIONS(4547), - [aux_sym_derived_type_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4547), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4547), - [aux_sym_type_qualifier_token1] = ACTIONS(4547), - [aux_sym_type_qualifier_token2] = ACTIONS(4547), - [aux_sym_equivalence_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token1] = ACTIONS(4547), - [aux_sym_stop_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token2] = ACTIONS(4547), - [aux_sym_keyword_statement_token3] = ACTIONS(4547), - [aux_sym_include_statement_token1] = ACTIONS(4547), - [aux_sym_data_statement_token1] = ACTIONS(4547), - [aux_sym__inline_if_statement_token1] = ACTIONS(4547), - [aux_sym_end_if_statement_token1] = ACTIONS(4547), - [aux_sym_elseif_clause_token2] = ACTIONS(4547), - [aux_sym_select_case_statement_token1] = ACTIONS(4547), - [aux_sym_block_construct_token1] = ACTIONS(4547), - [aux_sym_format_statement_token1] = ACTIONS(4547), - [aux_sym_inquire_statement_token1] = ACTIONS(4547), - [aux_sym_enum_statement_token1] = ACTIONS(4547), - [aux_sym_entry_statement_token1] = ACTIONS(4547), - [aux_sym_null_literal_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_statement_token2] = ACTIONS(4547), - [aux_sym_coarray_statement_token6] = ACTIONS(4547), - [aux_sym_coarray_statement_token8] = ACTIONS(4547), - [aux_sym_coarray_statement_token11] = ACTIONS(4547), - [aux_sym_coarray_statement_token12] = ACTIONS(4547), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4547), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4547), - [aux_sym_identifier_token1] = ACTIONS(4547), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4549), - }, - [3081] = { - [aux_sym_preproc_include_token1] = ACTIONS(5029), - [aux_sym_preproc_def_token1] = ACTIONS(5029), - [aux_sym_preproc_if_token2] = ACTIONS(5029), - [sym_preproc_directive] = ACTIONS(5029), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5029), - [aux_sym_interface_statement_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5029), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5029), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5029), - [aux_sym_language_binding_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token1] = ACTIONS(5029), - [aux_sym_procedure_attributes_token3] = ACTIONS(5029), - [aux_sym_contains_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token1] = ACTIONS(5029), - [aux_sym_use_statement_token2] = ACTIONS(5029), - [aux_sym_implicit_statement_token1] = ACTIONS(5029), - [aux_sym_implicit_statement_token3] = ACTIONS(5029), - [aux_sym_implicit_statement_token4] = ACTIONS(5029), - [aux_sym_save_statement_token1] = ACTIONS(5029), - [aux_sym_private_statement_token1] = ACTIONS(5029), - [aux_sym_public_statement_token1] = ACTIONS(5029), - [aux_sym_namelist_statement_token1] = ACTIONS(5029), - [aux_sym_common_statement_token1] = ACTIONS(5029), - [aux_sym_import_statement_token1] = ACTIONS(5029), - [aux_sym_derived_type_definition_token1] = ACTIONS(5029), - [aux_sym_abstract_specifier_token1] = ACTIONS(5029), - [aux_sym_procedure_attribute_token6] = ACTIONS(5029), - [aux_sym_variable_attributes_token1] = ACTIONS(5029), - [aux_sym_variable_attributes_token2] = ACTIONS(5029), - [aux_sym_variable_attributes_token3] = ACTIONS(5029), - [aux_sym_variable_attributes_token4] = ACTIONS(5029), - [aux_sym_variable_attributes_token5] = ACTIONS(5029), - [aux_sym__intrinsic_type_token1] = ACTIONS(5029), - [aux_sym__intrinsic_type_token2] = ACTIONS(5029), - [aux_sym__intrinsic_type_token3] = ACTIONS(5029), - [aux_sym__intrinsic_type_token4] = ACTIONS(5029), - [aux_sym__intrinsic_type_token6] = ACTIONS(5029), - [aux_sym__intrinsic_type_token7] = ACTIONS(5029), - [aux_sym__intrinsic_type_token8] = ACTIONS(5029), - [aux_sym__intrinsic_type_token9] = ACTIONS(5029), - [aux_sym__intrinsic_type_token10] = ACTIONS(5029), - [aux_sym_derived_type_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5029), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5029), - [aux_sym_type_qualifier_token1] = ACTIONS(5029), - [aux_sym_type_qualifier_token2] = ACTIONS(5029), - [aux_sym_equivalence_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token1] = ACTIONS(5029), - [aux_sym_stop_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token2] = ACTIONS(5029), - [aux_sym_keyword_statement_token3] = ACTIONS(5029), - [aux_sym_include_statement_token1] = ACTIONS(5029), - [aux_sym_data_statement_token1] = ACTIONS(5029), - [aux_sym__inline_if_statement_token1] = ACTIONS(5029), - [aux_sym_end_if_statement_token1] = ACTIONS(5029), - [aux_sym_elseif_clause_token2] = ACTIONS(5029), - [aux_sym_select_case_statement_token1] = ACTIONS(5029), - [aux_sym_block_construct_token1] = ACTIONS(5029), - [aux_sym_format_statement_token1] = ACTIONS(5029), - [aux_sym_inquire_statement_token1] = ACTIONS(5029), - [aux_sym_enum_statement_token1] = ACTIONS(5029), - [aux_sym_entry_statement_token1] = ACTIONS(5029), - [aux_sym_null_literal_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_statement_token2] = ACTIONS(5029), - [aux_sym_coarray_statement_token6] = ACTIONS(5029), - [aux_sym_coarray_statement_token8] = ACTIONS(5029), - [aux_sym_coarray_statement_token11] = ACTIONS(5029), - [aux_sym_coarray_statement_token12] = ACTIONS(5029), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5029), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5029), - [aux_sym_identifier_token1] = ACTIONS(5029), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5031), - }, - [3082] = { - [aux_sym_preproc_include_token1] = ACTIONS(5069), - [aux_sym_preproc_def_token1] = ACTIONS(5069), - [aux_sym_preproc_if_token2] = ACTIONS(5069), - [sym_preproc_directive] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5069), - [aux_sym_interface_statement_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5069), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5069), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5069), - [aux_sym_language_binding_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token1] = ACTIONS(5069), - [aux_sym_procedure_attributes_token3] = ACTIONS(5069), - [aux_sym_contains_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token1] = ACTIONS(5069), - [aux_sym_use_statement_token2] = ACTIONS(5069), - [aux_sym_implicit_statement_token1] = ACTIONS(5069), - [aux_sym_implicit_statement_token3] = ACTIONS(5069), - [aux_sym_implicit_statement_token4] = ACTIONS(5069), - [aux_sym_save_statement_token1] = ACTIONS(5069), - [aux_sym_private_statement_token1] = ACTIONS(5069), - [aux_sym_public_statement_token1] = ACTIONS(5069), - [aux_sym_namelist_statement_token1] = ACTIONS(5069), - [aux_sym_common_statement_token1] = ACTIONS(5069), - [aux_sym_import_statement_token1] = ACTIONS(5069), - [aux_sym_derived_type_definition_token1] = ACTIONS(5069), - [aux_sym_abstract_specifier_token1] = ACTIONS(5069), - [aux_sym_procedure_attribute_token6] = ACTIONS(5069), - [aux_sym_variable_attributes_token1] = ACTIONS(5069), - [aux_sym_variable_attributes_token2] = ACTIONS(5069), - [aux_sym_variable_attributes_token3] = ACTIONS(5069), - [aux_sym_variable_attributes_token4] = ACTIONS(5069), - [aux_sym_variable_attributes_token5] = ACTIONS(5069), - [aux_sym__intrinsic_type_token1] = ACTIONS(5069), - [aux_sym__intrinsic_type_token2] = ACTIONS(5069), - [aux_sym__intrinsic_type_token3] = ACTIONS(5069), - [aux_sym__intrinsic_type_token4] = ACTIONS(5069), - [aux_sym__intrinsic_type_token6] = ACTIONS(5069), - [aux_sym__intrinsic_type_token7] = ACTIONS(5069), - [aux_sym__intrinsic_type_token8] = ACTIONS(5069), - [aux_sym__intrinsic_type_token9] = ACTIONS(5069), - [aux_sym__intrinsic_type_token10] = ACTIONS(5069), - [aux_sym_derived_type_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5069), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5069), - [aux_sym_type_qualifier_token1] = ACTIONS(5069), - [aux_sym_type_qualifier_token2] = ACTIONS(5069), - [aux_sym_equivalence_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token1] = ACTIONS(5069), - [aux_sym_stop_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token2] = ACTIONS(5069), - [aux_sym_keyword_statement_token3] = ACTIONS(5069), - [aux_sym_include_statement_token1] = ACTIONS(5069), - [aux_sym_data_statement_token1] = ACTIONS(5069), - [aux_sym__inline_if_statement_token1] = ACTIONS(5069), - [aux_sym_end_if_statement_token1] = ACTIONS(5069), - [aux_sym_elseif_clause_token2] = ACTIONS(5069), - [aux_sym_select_case_statement_token1] = ACTIONS(5069), - [aux_sym_block_construct_token1] = ACTIONS(5069), - [aux_sym_format_statement_token1] = ACTIONS(5069), - [aux_sym_inquire_statement_token1] = ACTIONS(5069), - [aux_sym_enum_statement_token1] = ACTIONS(5069), - [aux_sym_entry_statement_token1] = ACTIONS(5069), - [aux_sym_null_literal_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_statement_token2] = ACTIONS(5069), - [aux_sym_coarray_statement_token6] = ACTIONS(5069), - [aux_sym_coarray_statement_token8] = ACTIONS(5069), - [aux_sym_coarray_statement_token11] = ACTIONS(5069), - [aux_sym_coarray_statement_token12] = ACTIONS(5069), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5069), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5069), - [aux_sym_identifier_token1] = ACTIONS(5069), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5071), - }, - [3083] = { - [aux_sym_preproc_include_token1] = ACTIONS(4571), - [aux_sym_preproc_def_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token2] = ACTIONS(4571), - [sym_preproc_directive] = ACTIONS(4571), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4571), - [aux_sym_interface_statement_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4571), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4571), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4571), - [aux_sym_language_binding_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token1] = ACTIONS(4571), - [aux_sym_procedure_attributes_token3] = ACTIONS(4571), - [aux_sym_contains_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token1] = ACTIONS(4571), - [aux_sym_use_statement_token2] = ACTIONS(4571), - [aux_sym_implicit_statement_token1] = ACTIONS(4571), - [aux_sym_implicit_statement_token3] = ACTIONS(4571), - [aux_sym_implicit_statement_token4] = ACTIONS(4571), - [aux_sym_save_statement_token1] = ACTIONS(4571), - [aux_sym_private_statement_token1] = ACTIONS(4571), - [aux_sym_public_statement_token1] = ACTIONS(4571), - [aux_sym_namelist_statement_token1] = ACTIONS(4571), - [aux_sym_common_statement_token1] = ACTIONS(4571), - [aux_sym_import_statement_token1] = ACTIONS(4571), - [aux_sym_derived_type_definition_token1] = ACTIONS(4571), - [aux_sym_abstract_specifier_token1] = ACTIONS(4571), - [aux_sym_procedure_attribute_token6] = ACTIONS(4571), - [aux_sym_variable_attributes_token1] = ACTIONS(4571), - [aux_sym_variable_attributes_token2] = ACTIONS(4571), - [aux_sym_variable_attributes_token3] = ACTIONS(4571), - [aux_sym_variable_attributes_token4] = ACTIONS(4571), - [aux_sym_variable_attributes_token5] = ACTIONS(4571), - [aux_sym__intrinsic_type_token1] = ACTIONS(4571), - [aux_sym__intrinsic_type_token2] = ACTIONS(4571), - [aux_sym__intrinsic_type_token3] = ACTIONS(4571), - [aux_sym__intrinsic_type_token4] = ACTIONS(4571), - [aux_sym__intrinsic_type_token6] = ACTIONS(4571), - [aux_sym__intrinsic_type_token7] = ACTIONS(4571), - [aux_sym__intrinsic_type_token8] = ACTIONS(4571), - [aux_sym__intrinsic_type_token9] = ACTIONS(4571), - [aux_sym__intrinsic_type_token10] = ACTIONS(4571), - [aux_sym_derived_type_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4571), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4571), - [aux_sym_type_qualifier_token1] = ACTIONS(4571), - [aux_sym_type_qualifier_token2] = ACTIONS(4571), - [aux_sym_equivalence_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token1] = ACTIONS(4571), - [aux_sym_stop_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token2] = ACTIONS(4571), - [aux_sym_keyword_statement_token3] = ACTIONS(4571), - [aux_sym_include_statement_token1] = ACTIONS(4571), - [aux_sym_data_statement_token1] = ACTIONS(4571), - [aux_sym__inline_if_statement_token1] = ACTIONS(4571), - [aux_sym_end_if_statement_token1] = ACTIONS(4571), - [aux_sym_elseif_clause_token2] = ACTIONS(4571), - [aux_sym_select_case_statement_token1] = ACTIONS(4571), - [aux_sym_block_construct_token1] = ACTIONS(4571), - [aux_sym_format_statement_token1] = ACTIONS(4571), - [aux_sym_inquire_statement_token1] = ACTIONS(4571), - [aux_sym_enum_statement_token1] = ACTIONS(4571), - [aux_sym_entry_statement_token1] = ACTIONS(4571), - [aux_sym_null_literal_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_statement_token2] = ACTIONS(4571), - [aux_sym_coarray_statement_token6] = ACTIONS(4571), - [aux_sym_coarray_statement_token8] = ACTIONS(4571), - [aux_sym_coarray_statement_token11] = ACTIONS(4571), - [aux_sym_coarray_statement_token12] = ACTIONS(4571), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4571), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4571), - [aux_sym_identifier_token1] = ACTIONS(4571), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4573), - }, - [3084] = { - [aux_sym_preproc_include_token1] = ACTIONS(4575), - [aux_sym_preproc_def_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token2] = ACTIONS(4575), - [sym_preproc_directive] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4575), - [aux_sym_interface_statement_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4575), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4575), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4575), - [aux_sym_language_binding_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token1] = ACTIONS(4575), - [aux_sym_procedure_attributes_token3] = ACTIONS(4575), - [aux_sym_contains_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token1] = ACTIONS(4575), - [aux_sym_use_statement_token2] = ACTIONS(4575), - [aux_sym_implicit_statement_token1] = ACTIONS(4575), - [aux_sym_implicit_statement_token3] = ACTIONS(4575), - [aux_sym_implicit_statement_token4] = ACTIONS(4575), - [aux_sym_save_statement_token1] = ACTIONS(4575), - [aux_sym_private_statement_token1] = ACTIONS(4575), - [aux_sym_public_statement_token1] = ACTIONS(4575), - [aux_sym_namelist_statement_token1] = ACTIONS(4575), - [aux_sym_common_statement_token1] = ACTIONS(4575), - [aux_sym_import_statement_token1] = ACTIONS(4575), - [aux_sym_derived_type_definition_token1] = ACTIONS(4575), - [aux_sym_abstract_specifier_token1] = ACTIONS(4575), - [aux_sym_procedure_attribute_token6] = ACTIONS(4575), - [aux_sym_variable_attributes_token1] = ACTIONS(4575), - [aux_sym_variable_attributes_token2] = ACTIONS(4575), - [aux_sym_variable_attributes_token3] = ACTIONS(4575), - [aux_sym_variable_attributes_token4] = ACTIONS(4575), - [aux_sym_variable_attributes_token5] = ACTIONS(4575), - [aux_sym__intrinsic_type_token1] = ACTIONS(4575), - [aux_sym__intrinsic_type_token2] = ACTIONS(4575), - [aux_sym__intrinsic_type_token3] = ACTIONS(4575), - [aux_sym__intrinsic_type_token4] = ACTIONS(4575), - [aux_sym__intrinsic_type_token6] = ACTIONS(4575), - [aux_sym__intrinsic_type_token7] = ACTIONS(4575), - [aux_sym__intrinsic_type_token8] = ACTIONS(4575), - [aux_sym__intrinsic_type_token9] = ACTIONS(4575), - [aux_sym__intrinsic_type_token10] = ACTIONS(4575), - [aux_sym_derived_type_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4575), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4575), - [aux_sym_type_qualifier_token1] = ACTIONS(4575), - [aux_sym_type_qualifier_token2] = ACTIONS(4575), - [aux_sym_equivalence_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token1] = ACTIONS(4575), - [aux_sym_stop_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token2] = ACTIONS(4575), - [aux_sym_keyword_statement_token3] = ACTIONS(4575), - [aux_sym_include_statement_token1] = ACTIONS(4575), - [aux_sym_data_statement_token1] = ACTIONS(4575), - [aux_sym__inline_if_statement_token1] = ACTIONS(4575), - [aux_sym_end_if_statement_token1] = ACTIONS(4575), - [aux_sym_elseif_clause_token2] = ACTIONS(4575), - [aux_sym_select_case_statement_token1] = ACTIONS(4575), - [aux_sym_block_construct_token1] = ACTIONS(4575), - [aux_sym_format_statement_token1] = ACTIONS(4575), - [aux_sym_inquire_statement_token1] = ACTIONS(4575), - [aux_sym_enum_statement_token1] = ACTIONS(4575), - [aux_sym_entry_statement_token1] = ACTIONS(4575), - [aux_sym_null_literal_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_statement_token2] = ACTIONS(4575), - [aux_sym_coarray_statement_token6] = ACTIONS(4575), - [aux_sym_coarray_statement_token8] = ACTIONS(4575), - [aux_sym_coarray_statement_token11] = ACTIONS(4575), - [aux_sym_coarray_statement_token12] = ACTIONS(4575), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4575), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4575), - [aux_sym_identifier_token1] = ACTIONS(4575), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4577), - }, - [3085] = { - [aux_sym_preproc_include_token1] = ACTIONS(4579), - [aux_sym_preproc_def_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token2] = ACTIONS(4579), - [sym_preproc_directive] = ACTIONS(4579), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4579), - [aux_sym_interface_statement_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4579), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4579), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4579), - [aux_sym_language_binding_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token1] = ACTIONS(4579), - [aux_sym_procedure_attributes_token3] = ACTIONS(4579), - [aux_sym_contains_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token1] = ACTIONS(4579), - [aux_sym_use_statement_token2] = ACTIONS(4579), - [aux_sym_implicit_statement_token1] = ACTIONS(4579), - [aux_sym_implicit_statement_token3] = ACTIONS(4579), - [aux_sym_implicit_statement_token4] = ACTIONS(4579), - [aux_sym_save_statement_token1] = ACTIONS(4579), - [aux_sym_private_statement_token1] = ACTIONS(4579), - [aux_sym_public_statement_token1] = ACTIONS(4579), - [aux_sym_namelist_statement_token1] = ACTIONS(4579), - [aux_sym_common_statement_token1] = ACTIONS(4579), - [aux_sym_import_statement_token1] = ACTIONS(4579), - [aux_sym_derived_type_definition_token1] = ACTIONS(4579), - [aux_sym_abstract_specifier_token1] = ACTIONS(4579), - [aux_sym_procedure_attribute_token6] = ACTIONS(4579), - [aux_sym_variable_attributes_token1] = ACTIONS(4579), - [aux_sym_variable_attributes_token2] = ACTIONS(4579), - [aux_sym_variable_attributes_token3] = ACTIONS(4579), - [aux_sym_variable_attributes_token4] = ACTIONS(4579), - [aux_sym_variable_attributes_token5] = ACTIONS(4579), - [aux_sym__intrinsic_type_token1] = ACTIONS(4579), - [aux_sym__intrinsic_type_token2] = ACTIONS(4579), - [aux_sym__intrinsic_type_token3] = ACTIONS(4579), - [aux_sym__intrinsic_type_token4] = ACTIONS(4579), - [aux_sym__intrinsic_type_token6] = ACTIONS(4579), - [aux_sym__intrinsic_type_token7] = ACTIONS(4579), - [aux_sym__intrinsic_type_token8] = ACTIONS(4579), - [aux_sym__intrinsic_type_token9] = ACTIONS(4579), - [aux_sym__intrinsic_type_token10] = ACTIONS(4579), - [aux_sym_derived_type_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4579), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4579), - [aux_sym_type_qualifier_token1] = ACTIONS(4579), - [aux_sym_type_qualifier_token2] = ACTIONS(4579), - [aux_sym_equivalence_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token1] = ACTIONS(4579), - [aux_sym_stop_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token2] = ACTIONS(4579), - [aux_sym_keyword_statement_token3] = ACTIONS(4579), - [aux_sym_include_statement_token1] = ACTIONS(4579), - [aux_sym_data_statement_token1] = ACTIONS(4579), - [aux_sym__inline_if_statement_token1] = ACTIONS(4579), - [aux_sym_end_if_statement_token1] = ACTIONS(4579), - [aux_sym_elseif_clause_token2] = ACTIONS(4579), - [aux_sym_select_case_statement_token1] = ACTIONS(4579), - [aux_sym_block_construct_token1] = ACTIONS(4579), - [aux_sym_format_statement_token1] = ACTIONS(4579), - [aux_sym_inquire_statement_token1] = ACTIONS(4579), - [aux_sym_enum_statement_token1] = ACTIONS(4579), - [aux_sym_entry_statement_token1] = ACTIONS(4579), - [aux_sym_null_literal_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_statement_token2] = ACTIONS(4579), - [aux_sym_coarray_statement_token6] = ACTIONS(4579), - [aux_sym_coarray_statement_token8] = ACTIONS(4579), - [aux_sym_coarray_statement_token11] = ACTIONS(4579), - [aux_sym_coarray_statement_token12] = ACTIONS(4579), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4579), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4579), - [aux_sym_identifier_token1] = ACTIONS(4579), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4581), - }, - [3086] = { - [aux_sym_preproc_include_token1] = ACTIONS(4583), - [aux_sym_preproc_def_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token2] = ACTIONS(4583), - [sym_preproc_directive] = ACTIONS(4583), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4583), - [aux_sym_interface_statement_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4583), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4583), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4583), - [aux_sym_language_binding_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token1] = ACTIONS(4583), - [aux_sym_procedure_attributes_token3] = ACTIONS(4583), - [aux_sym_contains_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token1] = ACTIONS(4583), - [aux_sym_use_statement_token2] = ACTIONS(4583), - [aux_sym_implicit_statement_token1] = ACTIONS(4583), - [aux_sym_implicit_statement_token3] = ACTIONS(4583), - [aux_sym_implicit_statement_token4] = ACTIONS(4583), - [aux_sym_save_statement_token1] = ACTIONS(4583), - [aux_sym_private_statement_token1] = ACTIONS(4583), - [aux_sym_public_statement_token1] = ACTIONS(4583), - [aux_sym_namelist_statement_token1] = ACTIONS(4583), - [aux_sym_common_statement_token1] = ACTIONS(4583), - [aux_sym_import_statement_token1] = ACTIONS(4583), - [aux_sym_derived_type_definition_token1] = ACTIONS(4583), - [aux_sym_abstract_specifier_token1] = ACTIONS(4583), - [aux_sym_procedure_attribute_token6] = ACTIONS(4583), - [aux_sym_variable_attributes_token1] = ACTIONS(4583), - [aux_sym_variable_attributes_token2] = ACTIONS(4583), - [aux_sym_variable_attributes_token3] = ACTIONS(4583), - [aux_sym_variable_attributes_token4] = ACTIONS(4583), - [aux_sym_variable_attributes_token5] = ACTIONS(4583), - [aux_sym__intrinsic_type_token1] = ACTIONS(4583), - [aux_sym__intrinsic_type_token2] = ACTIONS(4583), - [aux_sym__intrinsic_type_token3] = ACTIONS(4583), - [aux_sym__intrinsic_type_token4] = ACTIONS(4583), - [aux_sym__intrinsic_type_token6] = ACTIONS(4583), - [aux_sym__intrinsic_type_token7] = ACTIONS(4583), - [aux_sym__intrinsic_type_token8] = ACTIONS(4583), - [aux_sym__intrinsic_type_token9] = ACTIONS(4583), - [aux_sym__intrinsic_type_token10] = ACTIONS(4583), - [aux_sym_derived_type_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4583), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4583), - [aux_sym_type_qualifier_token1] = ACTIONS(4583), - [aux_sym_type_qualifier_token2] = ACTIONS(4583), - [aux_sym_equivalence_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token1] = ACTIONS(4583), - [aux_sym_stop_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token2] = ACTIONS(4583), - [aux_sym_keyword_statement_token3] = ACTIONS(4583), - [aux_sym_include_statement_token1] = ACTIONS(4583), - [aux_sym_data_statement_token1] = ACTIONS(4583), - [aux_sym__inline_if_statement_token1] = ACTIONS(4583), - [aux_sym_end_if_statement_token1] = ACTIONS(4583), - [aux_sym_elseif_clause_token2] = ACTIONS(4583), - [aux_sym_select_case_statement_token1] = ACTIONS(4583), - [aux_sym_block_construct_token1] = ACTIONS(4583), - [aux_sym_format_statement_token1] = ACTIONS(4583), - [aux_sym_inquire_statement_token1] = ACTIONS(4583), - [aux_sym_enum_statement_token1] = ACTIONS(4583), - [aux_sym_entry_statement_token1] = ACTIONS(4583), - [aux_sym_null_literal_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_statement_token2] = ACTIONS(4583), - [aux_sym_coarray_statement_token6] = ACTIONS(4583), - [aux_sym_coarray_statement_token8] = ACTIONS(4583), - [aux_sym_coarray_statement_token11] = ACTIONS(4583), - [aux_sym_coarray_statement_token12] = ACTIONS(4583), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4583), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4583), - [aux_sym_identifier_token1] = ACTIONS(4583), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4585), - }, - [3087] = { - [aux_sym_preproc_include_token1] = ACTIONS(4587), - [aux_sym_preproc_def_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token2] = ACTIONS(4587), - [sym_preproc_directive] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4587), - [aux_sym_interface_statement_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4587), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4587), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4587), - [aux_sym_language_binding_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token1] = ACTIONS(4587), - [aux_sym_procedure_attributes_token3] = ACTIONS(4587), - [aux_sym_contains_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token1] = ACTIONS(4587), - [aux_sym_use_statement_token2] = ACTIONS(4587), - [aux_sym_implicit_statement_token1] = ACTIONS(4587), - [aux_sym_implicit_statement_token3] = ACTIONS(4587), - [aux_sym_implicit_statement_token4] = ACTIONS(4587), - [aux_sym_save_statement_token1] = ACTIONS(4587), - [aux_sym_private_statement_token1] = ACTIONS(4587), - [aux_sym_public_statement_token1] = ACTIONS(4587), - [aux_sym_namelist_statement_token1] = ACTIONS(4587), - [aux_sym_common_statement_token1] = ACTIONS(4587), - [aux_sym_import_statement_token1] = ACTIONS(4587), - [aux_sym_derived_type_definition_token1] = ACTIONS(4587), - [aux_sym_abstract_specifier_token1] = ACTIONS(4587), - [aux_sym_procedure_attribute_token6] = ACTIONS(4587), - [aux_sym_variable_attributes_token1] = ACTIONS(4587), - [aux_sym_variable_attributes_token2] = ACTIONS(4587), - [aux_sym_variable_attributes_token3] = ACTIONS(4587), - [aux_sym_variable_attributes_token4] = ACTIONS(4587), - [aux_sym_variable_attributes_token5] = ACTIONS(4587), - [aux_sym__intrinsic_type_token1] = ACTIONS(4587), - [aux_sym__intrinsic_type_token2] = ACTIONS(4587), - [aux_sym__intrinsic_type_token3] = ACTIONS(4587), - [aux_sym__intrinsic_type_token4] = ACTIONS(4587), - [aux_sym__intrinsic_type_token6] = ACTIONS(4587), - [aux_sym__intrinsic_type_token7] = ACTIONS(4587), - [aux_sym__intrinsic_type_token8] = ACTIONS(4587), - [aux_sym__intrinsic_type_token9] = ACTIONS(4587), - [aux_sym__intrinsic_type_token10] = ACTIONS(4587), - [aux_sym_derived_type_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4587), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4587), - [aux_sym_type_qualifier_token1] = ACTIONS(4587), - [aux_sym_type_qualifier_token2] = ACTIONS(4587), - [aux_sym_equivalence_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token1] = ACTIONS(4587), - [aux_sym_stop_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token2] = ACTIONS(4587), - [aux_sym_keyword_statement_token3] = ACTIONS(4587), - [aux_sym_include_statement_token1] = ACTIONS(4587), - [aux_sym_data_statement_token1] = ACTIONS(4587), - [aux_sym__inline_if_statement_token1] = ACTIONS(4587), - [aux_sym_end_if_statement_token1] = ACTIONS(4587), - [aux_sym_elseif_clause_token2] = ACTIONS(4587), - [aux_sym_select_case_statement_token1] = ACTIONS(4587), - [aux_sym_block_construct_token1] = ACTIONS(4587), - [aux_sym_format_statement_token1] = ACTIONS(4587), - [aux_sym_inquire_statement_token1] = ACTIONS(4587), - [aux_sym_enum_statement_token1] = ACTIONS(4587), - [aux_sym_entry_statement_token1] = ACTIONS(4587), - [aux_sym_null_literal_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_statement_token2] = ACTIONS(4587), - [aux_sym_coarray_statement_token6] = ACTIONS(4587), - [aux_sym_coarray_statement_token8] = ACTIONS(4587), - [aux_sym_coarray_statement_token11] = ACTIONS(4587), - [aux_sym_coarray_statement_token12] = ACTIONS(4587), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4587), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4587), - [aux_sym_identifier_token1] = ACTIONS(4587), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4589), - }, - [3088] = { - [aux_sym_preproc_include_token1] = ACTIONS(4461), - [aux_sym_preproc_def_token1] = ACTIONS(4461), - [aux_sym_preproc_if_token2] = ACTIONS(4461), - [sym_preproc_directive] = ACTIONS(4461), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4461), - [aux_sym_interface_statement_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4461), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4461), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4461), - [aux_sym_language_binding_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token1] = ACTIONS(4461), - [aux_sym_procedure_attributes_token3] = ACTIONS(4461), - [aux_sym_contains_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token1] = ACTIONS(4461), - [aux_sym_use_statement_token2] = ACTIONS(4461), - [aux_sym_implicit_statement_token1] = ACTIONS(4461), - [aux_sym_implicit_statement_token3] = ACTIONS(4461), - [aux_sym_implicit_statement_token4] = ACTIONS(4461), - [aux_sym_save_statement_token1] = ACTIONS(4461), - [aux_sym_private_statement_token1] = ACTIONS(4461), - [aux_sym_public_statement_token1] = ACTIONS(4461), - [aux_sym_namelist_statement_token1] = ACTIONS(4461), - [aux_sym_common_statement_token1] = ACTIONS(4461), - [aux_sym_import_statement_token1] = ACTIONS(4461), - [aux_sym_derived_type_definition_token1] = ACTIONS(4461), - [aux_sym_abstract_specifier_token1] = ACTIONS(4461), - [aux_sym_procedure_attribute_token6] = ACTIONS(4461), - [aux_sym_variable_attributes_token1] = ACTIONS(4461), - [aux_sym_variable_attributes_token2] = ACTIONS(4461), - [aux_sym_variable_attributes_token3] = ACTIONS(4461), - [aux_sym_variable_attributes_token4] = ACTIONS(4461), - [aux_sym_variable_attributes_token5] = ACTIONS(4461), - [aux_sym__intrinsic_type_token1] = ACTIONS(4461), - [aux_sym__intrinsic_type_token2] = ACTIONS(4461), - [aux_sym__intrinsic_type_token3] = ACTIONS(4461), - [aux_sym__intrinsic_type_token4] = ACTIONS(4461), - [aux_sym__intrinsic_type_token6] = ACTIONS(4461), - [aux_sym__intrinsic_type_token7] = ACTIONS(4461), - [aux_sym__intrinsic_type_token8] = ACTIONS(4461), - [aux_sym__intrinsic_type_token9] = ACTIONS(4461), - [aux_sym__intrinsic_type_token10] = ACTIONS(4461), - [aux_sym_derived_type_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4461), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4461), - [aux_sym_type_qualifier_token1] = ACTIONS(4461), - [aux_sym_type_qualifier_token2] = ACTIONS(4461), - [aux_sym_equivalence_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token1] = ACTIONS(4461), - [aux_sym_stop_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token2] = ACTIONS(4461), - [aux_sym_keyword_statement_token3] = ACTIONS(4461), - [aux_sym_include_statement_token1] = ACTIONS(4461), - [aux_sym_data_statement_token1] = ACTIONS(4461), - [aux_sym__inline_if_statement_token1] = ACTIONS(4461), - [aux_sym_end_if_statement_token1] = ACTIONS(4461), - [aux_sym_elseif_clause_token2] = ACTIONS(4461), - [aux_sym_select_case_statement_token1] = ACTIONS(4461), - [aux_sym_block_construct_token1] = ACTIONS(4461), - [aux_sym_format_statement_token1] = ACTIONS(4461), - [aux_sym_inquire_statement_token1] = ACTIONS(4461), - [aux_sym_enum_statement_token1] = ACTIONS(4461), - [aux_sym_entry_statement_token1] = ACTIONS(4461), - [aux_sym_null_literal_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_statement_token2] = ACTIONS(4461), - [aux_sym_coarray_statement_token6] = ACTIONS(4461), - [aux_sym_coarray_statement_token8] = ACTIONS(4461), - [aux_sym_coarray_statement_token11] = ACTIONS(4461), - [aux_sym_coarray_statement_token12] = ACTIONS(4461), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4461), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4461), - [aux_sym_identifier_token1] = ACTIONS(4461), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4463), - }, - [3089] = { - [aux_sym_preproc_include_token1] = ACTIONS(5021), - [aux_sym_preproc_def_token1] = ACTIONS(5021), - [aux_sym_preproc_if_token2] = ACTIONS(5021), - [sym_preproc_directive] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5021), - [aux_sym_interface_statement_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5021), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5021), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5021), - [aux_sym_language_binding_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token1] = ACTIONS(5021), - [aux_sym_procedure_attributes_token3] = ACTIONS(5021), - [aux_sym_contains_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token1] = ACTIONS(5021), - [aux_sym_use_statement_token2] = ACTIONS(5021), - [aux_sym_implicit_statement_token1] = ACTIONS(5021), - [aux_sym_implicit_statement_token3] = ACTIONS(5021), - [aux_sym_implicit_statement_token4] = ACTIONS(5021), - [aux_sym_save_statement_token1] = ACTIONS(5021), - [aux_sym_private_statement_token1] = ACTIONS(5021), - [aux_sym_public_statement_token1] = ACTIONS(5021), - [aux_sym_namelist_statement_token1] = ACTIONS(5021), - [aux_sym_common_statement_token1] = ACTIONS(5021), - [aux_sym_import_statement_token1] = ACTIONS(5021), - [aux_sym_derived_type_definition_token1] = ACTIONS(5021), - [aux_sym_abstract_specifier_token1] = ACTIONS(5021), - [aux_sym_procedure_attribute_token6] = ACTIONS(5021), - [aux_sym_variable_attributes_token1] = ACTIONS(5021), - [aux_sym_variable_attributes_token2] = ACTIONS(5021), - [aux_sym_variable_attributes_token3] = ACTIONS(5021), - [aux_sym_variable_attributes_token4] = ACTIONS(5021), - [aux_sym_variable_attributes_token5] = ACTIONS(5021), - [aux_sym__intrinsic_type_token1] = ACTIONS(5021), - [aux_sym__intrinsic_type_token2] = ACTIONS(5021), - [aux_sym__intrinsic_type_token3] = ACTIONS(5021), - [aux_sym__intrinsic_type_token4] = ACTIONS(5021), - [aux_sym__intrinsic_type_token6] = ACTIONS(5021), - [aux_sym__intrinsic_type_token7] = ACTIONS(5021), - [aux_sym__intrinsic_type_token8] = ACTIONS(5021), - [aux_sym__intrinsic_type_token9] = ACTIONS(5021), - [aux_sym__intrinsic_type_token10] = ACTIONS(5021), - [aux_sym_derived_type_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5021), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5021), - [aux_sym_type_qualifier_token1] = ACTIONS(5021), - [aux_sym_type_qualifier_token2] = ACTIONS(5021), - [aux_sym_equivalence_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token1] = ACTIONS(5021), - [aux_sym_stop_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token2] = ACTIONS(5021), - [aux_sym_keyword_statement_token3] = ACTIONS(5021), - [aux_sym_include_statement_token1] = ACTIONS(5021), - [aux_sym_data_statement_token1] = ACTIONS(5021), - [aux_sym__inline_if_statement_token1] = ACTIONS(5021), - [aux_sym_end_if_statement_token1] = ACTIONS(5021), - [aux_sym_elseif_clause_token2] = ACTIONS(5021), - [aux_sym_select_case_statement_token1] = ACTIONS(5021), - [aux_sym_block_construct_token1] = ACTIONS(5021), - [aux_sym_format_statement_token1] = ACTIONS(5021), - [aux_sym_inquire_statement_token1] = ACTIONS(5021), - [aux_sym_enum_statement_token1] = ACTIONS(5021), - [aux_sym_entry_statement_token1] = ACTIONS(5021), - [aux_sym_null_literal_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_statement_token2] = ACTIONS(5021), - [aux_sym_coarray_statement_token6] = ACTIONS(5021), - [aux_sym_coarray_statement_token8] = ACTIONS(5021), - [aux_sym_coarray_statement_token11] = ACTIONS(5021), - [aux_sym_coarray_statement_token12] = ACTIONS(5021), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5021), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5021), - [aux_sym_identifier_token1] = ACTIONS(5021), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5023), - }, - [3090] = { - [aux_sym_preproc_include_token1] = ACTIONS(5025), - [aux_sym_preproc_def_token1] = ACTIONS(5025), - [aux_sym_preproc_if_token2] = ACTIONS(5025), - [sym_preproc_directive] = ACTIONS(5025), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5025), - [aux_sym_interface_statement_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5025), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5025), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5025), - [aux_sym_language_binding_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token1] = ACTIONS(5025), - [aux_sym_procedure_attributes_token3] = ACTIONS(5025), - [aux_sym_contains_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token1] = ACTIONS(5025), - [aux_sym_use_statement_token2] = ACTIONS(5025), - [aux_sym_implicit_statement_token1] = ACTIONS(5025), - [aux_sym_implicit_statement_token3] = ACTIONS(5025), - [aux_sym_implicit_statement_token4] = ACTIONS(5025), - [aux_sym_save_statement_token1] = ACTIONS(5025), - [aux_sym_private_statement_token1] = ACTIONS(5025), - [aux_sym_public_statement_token1] = ACTIONS(5025), - [aux_sym_namelist_statement_token1] = ACTIONS(5025), - [aux_sym_common_statement_token1] = ACTIONS(5025), - [aux_sym_import_statement_token1] = ACTIONS(5025), - [aux_sym_derived_type_definition_token1] = ACTIONS(5025), - [aux_sym_abstract_specifier_token1] = ACTIONS(5025), - [aux_sym_procedure_attribute_token6] = ACTIONS(5025), - [aux_sym_variable_attributes_token1] = ACTIONS(5025), - [aux_sym_variable_attributes_token2] = ACTIONS(5025), - [aux_sym_variable_attributes_token3] = ACTIONS(5025), - [aux_sym_variable_attributes_token4] = ACTIONS(5025), - [aux_sym_variable_attributes_token5] = ACTIONS(5025), - [aux_sym__intrinsic_type_token1] = ACTIONS(5025), - [aux_sym__intrinsic_type_token2] = ACTIONS(5025), - [aux_sym__intrinsic_type_token3] = ACTIONS(5025), - [aux_sym__intrinsic_type_token4] = ACTIONS(5025), - [aux_sym__intrinsic_type_token6] = ACTIONS(5025), - [aux_sym__intrinsic_type_token7] = ACTIONS(5025), - [aux_sym__intrinsic_type_token8] = ACTIONS(5025), - [aux_sym__intrinsic_type_token9] = ACTIONS(5025), - [aux_sym__intrinsic_type_token10] = ACTIONS(5025), - [aux_sym_derived_type_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5025), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5025), - [aux_sym_type_qualifier_token1] = ACTIONS(5025), - [aux_sym_type_qualifier_token2] = ACTIONS(5025), - [aux_sym_equivalence_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token1] = ACTIONS(5025), - [aux_sym_stop_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token2] = ACTIONS(5025), - [aux_sym_keyword_statement_token3] = ACTIONS(5025), - [aux_sym_include_statement_token1] = ACTIONS(5025), - [aux_sym_data_statement_token1] = ACTIONS(5025), - [aux_sym__inline_if_statement_token1] = ACTIONS(5025), - [aux_sym_end_if_statement_token1] = ACTIONS(5025), - [aux_sym_elseif_clause_token2] = ACTIONS(5025), - [aux_sym_select_case_statement_token1] = ACTIONS(5025), - [aux_sym_block_construct_token1] = ACTIONS(5025), - [aux_sym_format_statement_token1] = ACTIONS(5025), - [aux_sym_inquire_statement_token1] = ACTIONS(5025), - [aux_sym_enum_statement_token1] = ACTIONS(5025), - [aux_sym_entry_statement_token1] = ACTIONS(5025), - [aux_sym_null_literal_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_statement_token2] = ACTIONS(5025), - [aux_sym_coarray_statement_token6] = ACTIONS(5025), - [aux_sym_coarray_statement_token8] = ACTIONS(5025), - [aux_sym_coarray_statement_token11] = ACTIONS(5025), - [aux_sym_coarray_statement_token12] = ACTIONS(5025), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5025), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5025), - [aux_sym_identifier_token1] = ACTIONS(5025), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5027), - }, - [3091] = { - [aux_sym_preproc_include_token1] = ACTIONS(5037), - [aux_sym_preproc_def_token1] = ACTIONS(5037), - [aux_sym_preproc_if_token2] = ACTIONS(5037), - [sym_preproc_directive] = ACTIONS(5037), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5037), - [aux_sym_interface_statement_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5037), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5037), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5037), - [aux_sym_language_binding_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token1] = ACTIONS(5037), - [aux_sym_procedure_attributes_token3] = ACTIONS(5037), - [aux_sym_contains_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token1] = ACTIONS(5037), - [aux_sym_use_statement_token2] = ACTIONS(5037), - [aux_sym_implicit_statement_token1] = ACTIONS(5037), - [aux_sym_implicit_statement_token3] = ACTIONS(5037), - [aux_sym_implicit_statement_token4] = ACTIONS(5037), - [aux_sym_save_statement_token1] = ACTIONS(5037), - [aux_sym_private_statement_token1] = ACTIONS(5037), - [aux_sym_public_statement_token1] = ACTIONS(5037), - [aux_sym_namelist_statement_token1] = ACTIONS(5037), - [aux_sym_common_statement_token1] = ACTIONS(5037), - [aux_sym_import_statement_token1] = ACTIONS(5037), - [aux_sym_derived_type_definition_token1] = ACTIONS(5037), - [aux_sym_abstract_specifier_token1] = ACTIONS(5037), - [aux_sym_procedure_attribute_token6] = ACTIONS(5037), - [aux_sym_variable_attributes_token1] = ACTIONS(5037), - [aux_sym_variable_attributes_token2] = ACTIONS(5037), - [aux_sym_variable_attributes_token3] = ACTIONS(5037), - [aux_sym_variable_attributes_token4] = ACTIONS(5037), - [aux_sym_variable_attributes_token5] = ACTIONS(5037), - [aux_sym__intrinsic_type_token1] = ACTIONS(5037), - [aux_sym__intrinsic_type_token2] = ACTIONS(5037), - [aux_sym__intrinsic_type_token3] = ACTIONS(5037), - [aux_sym__intrinsic_type_token4] = ACTIONS(5037), - [aux_sym__intrinsic_type_token6] = ACTIONS(5037), - [aux_sym__intrinsic_type_token7] = ACTIONS(5037), - [aux_sym__intrinsic_type_token8] = ACTIONS(5037), - [aux_sym__intrinsic_type_token9] = ACTIONS(5037), - [aux_sym__intrinsic_type_token10] = ACTIONS(5037), - [aux_sym_derived_type_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5037), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5037), - [aux_sym_type_qualifier_token1] = ACTIONS(5037), - [aux_sym_type_qualifier_token2] = ACTIONS(5037), - [aux_sym_equivalence_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token1] = ACTIONS(5037), - [aux_sym_stop_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token2] = ACTIONS(5037), - [aux_sym_keyword_statement_token3] = ACTIONS(5037), - [aux_sym_include_statement_token1] = ACTIONS(5037), - [aux_sym_data_statement_token1] = ACTIONS(5037), - [aux_sym__inline_if_statement_token1] = ACTIONS(5037), - [aux_sym_end_if_statement_token1] = ACTIONS(5037), - [aux_sym_elseif_clause_token2] = ACTIONS(5037), - [aux_sym_select_case_statement_token1] = ACTIONS(5037), - [aux_sym_block_construct_token1] = ACTIONS(5037), - [aux_sym_format_statement_token1] = ACTIONS(5037), - [aux_sym_inquire_statement_token1] = ACTIONS(5037), - [aux_sym_enum_statement_token1] = ACTIONS(5037), - [aux_sym_entry_statement_token1] = ACTIONS(5037), - [aux_sym_null_literal_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_statement_token2] = ACTIONS(5037), - [aux_sym_coarray_statement_token6] = ACTIONS(5037), - [aux_sym_coarray_statement_token8] = ACTIONS(5037), - [aux_sym_coarray_statement_token11] = ACTIONS(5037), - [aux_sym_coarray_statement_token12] = ACTIONS(5037), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5037), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5037), - [aux_sym_identifier_token1] = ACTIONS(5037), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5039), - }, - [3092] = { - [aux_sym_preproc_include_token1] = ACTIONS(5049), - [aux_sym_preproc_def_token1] = ACTIONS(5049), - [aux_sym_preproc_if_token2] = ACTIONS(5049), - [sym_preproc_directive] = ACTIONS(5049), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5049), - [aux_sym_interface_statement_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5049), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5049), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5049), - [aux_sym_language_binding_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token1] = ACTIONS(5049), - [aux_sym_procedure_attributes_token3] = ACTIONS(5049), - [aux_sym_contains_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token1] = ACTIONS(5049), - [aux_sym_use_statement_token2] = ACTIONS(5049), - [aux_sym_implicit_statement_token1] = ACTIONS(5049), - [aux_sym_implicit_statement_token3] = ACTIONS(5049), - [aux_sym_implicit_statement_token4] = ACTIONS(5049), - [aux_sym_save_statement_token1] = ACTIONS(5049), - [aux_sym_private_statement_token1] = ACTIONS(5049), - [aux_sym_public_statement_token1] = ACTIONS(5049), - [aux_sym_namelist_statement_token1] = ACTIONS(5049), - [aux_sym_common_statement_token1] = ACTIONS(5049), - [aux_sym_import_statement_token1] = ACTIONS(5049), - [aux_sym_derived_type_definition_token1] = ACTIONS(5049), - [aux_sym_abstract_specifier_token1] = ACTIONS(5049), - [aux_sym_procedure_attribute_token6] = ACTIONS(5049), - [aux_sym_variable_attributes_token1] = ACTIONS(5049), - [aux_sym_variable_attributes_token2] = ACTIONS(5049), - [aux_sym_variable_attributes_token3] = ACTIONS(5049), - [aux_sym_variable_attributes_token4] = ACTIONS(5049), - [aux_sym_variable_attributes_token5] = ACTIONS(5049), - [aux_sym__intrinsic_type_token1] = ACTIONS(5049), - [aux_sym__intrinsic_type_token2] = ACTIONS(5049), - [aux_sym__intrinsic_type_token3] = ACTIONS(5049), - [aux_sym__intrinsic_type_token4] = ACTIONS(5049), - [aux_sym__intrinsic_type_token6] = ACTIONS(5049), - [aux_sym__intrinsic_type_token7] = ACTIONS(5049), - [aux_sym__intrinsic_type_token8] = ACTIONS(5049), - [aux_sym__intrinsic_type_token9] = ACTIONS(5049), - [aux_sym__intrinsic_type_token10] = ACTIONS(5049), - [aux_sym_derived_type_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5049), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5049), - [aux_sym_type_qualifier_token1] = ACTIONS(5049), - [aux_sym_type_qualifier_token2] = ACTIONS(5049), - [aux_sym_equivalence_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token1] = ACTIONS(5049), - [aux_sym_stop_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token2] = ACTIONS(5049), - [aux_sym_keyword_statement_token3] = ACTIONS(5049), - [aux_sym_include_statement_token1] = ACTIONS(5049), - [aux_sym_data_statement_token1] = ACTIONS(5049), - [aux_sym__inline_if_statement_token1] = ACTIONS(5049), - [aux_sym_end_if_statement_token1] = ACTIONS(5049), - [aux_sym_elseif_clause_token2] = ACTIONS(5049), - [aux_sym_select_case_statement_token1] = ACTIONS(5049), - [aux_sym_block_construct_token1] = ACTIONS(5049), - [aux_sym_format_statement_token1] = ACTIONS(5049), - [aux_sym_inquire_statement_token1] = ACTIONS(5049), - [aux_sym_enum_statement_token1] = ACTIONS(5049), - [aux_sym_entry_statement_token1] = ACTIONS(5049), - [aux_sym_null_literal_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_statement_token2] = ACTIONS(5049), - [aux_sym_coarray_statement_token6] = ACTIONS(5049), - [aux_sym_coarray_statement_token8] = ACTIONS(5049), - [aux_sym_coarray_statement_token11] = ACTIONS(5049), - [aux_sym_coarray_statement_token12] = ACTIONS(5049), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5049), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5049), - [aux_sym_identifier_token1] = ACTIONS(5049), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5051), + [sym__external_end_of_statement] = ACTIONS(7062), }, - [3093] = { - [aux_sym_preproc_include_token1] = ACTIONS(4619), - [aux_sym_preproc_def_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token2] = ACTIONS(4619), - [sym_preproc_directive] = ACTIONS(4619), + [3017] = { + [sym__expression] = STATE(4261), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4619), - [aux_sym_interface_statement_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4619), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4619), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4619), - [aux_sym_language_binding_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token1] = ACTIONS(4619), - [aux_sym_procedure_attributes_token3] = ACTIONS(4619), - [aux_sym_contains_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token1] = ACTIONS(4619), - [aux_sym_use_statement_token2] = ACTIONS(4619), - [aux_sym_implicit_statement_token1] = ACTIONS(4619), - [aux_sym_implicit_statement_token3] = ACTIONS(4619), - [aux_sym_implicit_statement_token4] = ACTIONS(4619), - [aux_sym_save_statement_token1] = ACTIONS(4619), - [aux_sym_private_statement_token1] = ACTIONS(4619), - [aux_sym_public_statement_token1] = ACTIONS(4619), - [aux_sym_namelist_statement_token1] = ACTIONS(4619), - [aux_sym_common_statement_token1] = ACTIONS(4619), - [aux_sym_import_statement_token1] = ACTIONS(4619), - [aux_sym_derived_type_definition_token1] = ACTIONS(4619), - [aux_sym_abstract_specifier_token1] = ACTIONS(4619), - [aux_sym_procedure_attribute_token6] = ACTIONS(4619), - [aux_sym_variable_attributes_token1] = ACTIONS(4619), - [aux_sym_variable_attributes_token2] = ACTIONS(4619), - [aux_sym_variable_attributes_token3] = ACTIONS(4619), - [aux_sym_variable_attributes_token4] = ACTIONS(4619), - [aux_sym_variable_attributes_token5] = ACTIONS(4619), - [aux_sym__intrinsic_type_token1] = ACTIONS(4619), - [aux_sym__intrinsic_type_token2] = ACTIONS(4619), - [aux_sym__intrinsic_type_token3] = ACTIONS(4619), - [aux_sym__intrinsic_type_token4] = ACTIONS(4619), - [aux_sym__intrinsic_type_token6] = ACTIONS(4619), - [aux_sym__intrinsic_type_token7] = ACTIONS(4619), - [aux_sym__intrinsic_type_token8] = ACTIONS(4619), - [aux_sym__intrinsic_type_token9] = ACTIONS(4619), - [aux_sym__intrinsic_type_token10] = ACTIONS(4619), - [aux_sym_derived_type_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4619), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4619), - [aux_sym_type_qualifier_token1] = ACTIONS(4619), - [aux_sym_type_qualifier_token2] = ACTIONS(4619), - [aux_sym_equivalence_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token1] = ACTIONS(4619), - [aux_sym_stop_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token2] = ACTIONS(4619), - [aux_sym_keyword_statement_token3] = ACTIONS(4619), - [aux_sym_include_statement_token1] = ACTIONS(4619), - [aux_sym_data_statement_token1] = ACTIONS(4619), - [aux_sym__inline_if_statement_token1] = ACTIONS(4619), - [aux_sym_end_if_statement_token1] = ACTIONS(4619), - [aux_sym_elseif_clause_token2] = ACTIONS(4619), - [aux_sym_select_case_statement_token1] = ACTIONS(4619), - [aux_sym_block_construct_token1] = ACTIONS(4619), - [aux_sym_format_statement_token1] = ACTIONS(4619), - [aux_sym_inquire_statement_token1] = ACTIONS(4619), - [aux_sym_enum_statement_token1] = ACTIONS(4619), - [aux_sym_entry_statement_token1] = ACTIONS(4619), - [aux_sym_null_literal_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_statement_token2] = ACTIONS(4619), - [aux_sym_coarray_statement_token6] = ACTIONS(4619), - [aux_sym_coarray_statement_token8] = ACTIONS(4619), - [aux_sym_coarray_statement_token11] = ACTIONS(4619), - [aux_sym_coarray_statement_token12] = ACTIONS(4619), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4619), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4619), - [aux_sym_identifier_token1] = ACTIONS(4619), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4621), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3094] = { - [aux_sym_preproc_include_token1] = ACTIONS(4511), - [aux_sym_preproc_def_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token2] = ACTIONS(4511), - [sym_preproc_directive] = ACTIONS(4511), + [3018] = { + [sym__expression] = STATE(4262), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4511), - [aux_sym_interface_statement_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), - [aux_sym_language_binding_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token1] = ACTIONS(4511), - [aux_sym_procedure_attributes_token3] = ACTIONS(4511), - [aux_sym_contains_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token1] = ACTIONS(4511), - [aux_sym_use_statement_token2] = ACTIONS(4511), - [aux_sym_implicit_statement_token1] = ACTIONS(4511), - [aux_sym_implicit_statement_token3] = ACTIONS(4511), - [aux_sym_implicit_statement_token4] = ACTIONS(4511), - [aux_sym_save_statement_token1] = ACTIONS(4511), - [aux_sym_private_statement_token1] = ACTIONS(4511), - [aux_sym_public_statement_token1] = ACTIONS(4511), - [aux_sym_namelist_statement_token1] = ACTIONS(4511), - [aux_sym_common_statement_token1] = ACTIONS(4511), - [aux_sym_import_statement_token1] = ACTIONS(4511), - [aux_sym_derived_type_definition_token1] = ACTIONS(4511), - [aux_sym_abstract_specifier_token1] = ACTIONS(4511), - [aux_sym_procedure_attribute_token6] = ACTIONS(4511), - [aux_sym_variable_attributes_token1] = ACTIONS(4511), - [aux_sym_variable_attributes_token2] = ACTIONS(4511), - [aux_sym_variable_attributes_token3] = ACTIONS(4511), - [aux_sym_variable_attributes_token4] = ACTIONS(4511), - [aux_sym_variable_attributes_token5] = ACTIONS(4511), - [aux_sym__intrinsic_type_token1] = ACTIONS(4511), - [aux_sym__intrinsic_type_token2] = ACTIONS(4511), - [aux_sym__intrinsic_type_token3] = ACTIONS(4511), - [aux_sym__intrinsic_type_token4] = ACTIONS(4511), - [aux_sym__intrinsic_type_token6] = ACTIONS(4511), - [aux_sym__intrinsic_type_token7] = ACTIONS(4511), - [aux_sym__intrinsic_type_token8] = ACTIONS(4511), - [aux_sym__intrinsic_type_token9] = ACTIONS(4511), - [aux_sym__intrinsic_type_token10] = ACTIONS(4511), - [aux_sym_derived_type_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), - [aux_sym_type_qualifier_token1] = ACTIONS(4511), - [aux_sym_type_qualifier_token2] = ACTIONS(4511), - [aux_sym_equivalence_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token1] = ACTIONS(4511), - [aux_sym_stop_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token2] = ACTIONS(4511), - [aux_sym_keyword_statement_token3] = ACTIONS(4511), - [aux_sym_include_statement_token1] = ACTIONS(4511), - [aux_sym_data_statement_token1] = ACTIONS(4511), - [aux_sym__inline_if_statement_token1] = ACTIONS(4511), - [aux_sym_end_if_statement_token1] = ACTIONS(4511), - [aux_sym_elseif_clause_token2] = ACTIONS(4511), - [aux_sym_select_case_statement_token1] = ACTIONS(4511), - [aux_sym_block_construct_token1] = ACTIONS(4511), - [aux_sym_format_statement_token1] = ACTIONS(4511), - [aux_sym_inquire_statement_token1] = ACTIONS(4511), - [aux_sym_enum_statement_token1] = ACTIONS(4511), - [aux_sym_entry_statement_token1] = ACTIONS(4511), - [aux_sym_null_literal_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_statement_token2] = ACTIONS(4511), - [aux_sym_coarray_statement_token6] = ACTIONS(4511), - [aux_sym_coarray_statement_token8] = ACTIONS(4511), - [aux_sym_coarray_statement_token11] = ACTIONS(4511), - [aux_sym_coarray_statement_token12] = ACTIONS(4511), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), - [aux_sym_identifier_token1] = ACTIONS(4511), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4513), - }, - [3095] = { - [aux_sym_preproc_include_token1] = ACTIONS(5061), - [aux_sym_preproc_def_token1] = ACTIONS(5061), - [aux_sym_preproc_if_token2] = ACTIONS(5061), - [sym_preproc_directive] = ACTIONS(5061), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5061), - [aux_sym_interface_statement_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5061), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5061), - [aux_sym_module_procedure_statement_token1] = ACTIONS(5061), - [aux_sym_language_binding_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token1] = ACTIONS(5061), - [aux_sym_procedure_attributes_token3] = ACTIONS(5061), - [aux_sym_contains_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token1] = ACTIONS(5061), - [aux_sym_use_statement_token2] = ACTIONS(5061), - [aux_sym_implicit_statement_token1] = ACTIONS(5061), - [aux_sym_implicit_statement_token3] = ACTIONS(5061), - [aux_sym_implicit_statement_token4] = ACTIONS(5061), - [aux_sym_save_statement_token1] = ACTIONS(5061), - [aux_sym_private_statement_token1] = ACTIONS(5061), - [aux_sym_public_statement_token1] = ACTIONS(5061), - [aux_sym_namelist_statement_token1] = ACTIONS(5061), - [aux_sym_common_statement_token1] = ACTIONS(5061), - [aux_sym_import_statement_token1] = ACTIONS(5061), - [aux_sym_derived_type_definition_token1] = ACTIONS(5061), - [aux_sym_abstract_specifier_token1] = ACTIONS(5061), - [aux_sym_procedure_attribute_token6] = ACTIONS(5061), - [aux_sym_variable_attributes_token1] = ACTIONS(5061), - [aux_sym_variable_attributes_token2] = ACTIONS(5061), - [aux_sym_variable_attributes_token3] = ACTIONS(5061), - [aux_sym_variable_attributes_token4] = ACTIONS(5061), - [aux_sym_variable_attributes_token5] = ACTIONS(5061), - [aux_sym__intrinsic_type_token1] = ACTIONS(5061), - [aux_sym__intrinsic_type_token2] = ACTIONS(5061), - [aux_sym__intrinsic_type_token3] = ACTIONS(5061), - [aux_sym__intrinsic_type_token4] = ACTIONS(5061), - [aux_sym__intrinsic_type_token6] = ACTIONS(5061), - [aux_sym__intrinsic_type_token7] = ACTIONS(5061), - [aux_sym__intrinsic_type_token8] = ACTIONS(5061), - [aux_sym__intrinsic_type_token9] = ACTIONS(5061), - [aux_sym__intrinsic_type_token10] = ACTIONS(5061), - [aux_sym_derived_type_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5061), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5061), - [aux_sym_type_qualifier_token1] = ACTIONS(5061), - [aux_sym_type_qualifier_token2] = ACTIONS(5061), - [aux_sym_equivalence_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token1] = ACTIONS(5061), - [aux_sym_stop_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token2] = ACTIONS(5061), - [aux_sym_keyword_statement_token3] = ACTIONS(5061), - [aux_sym_include_statement_token1] = ACTIONS(5061), - [aux_sym_data_statement_token1] = ACTIONS(5061), - [aux_sym__inline_if_statement_token1] = ACTIONS(5061), - [aux_sym_end_if_statement_token1] = ACTIONS(5061), - [aux_sym_elseif_clause_token2] = ACTIONS(5061), - [aux_sym_select_case_statement_token1] = ACTIONS(5061), - [aux_sym_block_construct_token1] = ACTIONS(5061), - [aux_sym_format_statement_token1] = ACTIONS(5061), - [aux_sym_inquire_statement_token1] = ACTIONS(5061), - [aux_sym_enum_statement_token1] = ACTIONS(5061), - [aux_sym_entry_statement_token1] = ACTIONS(5061), - [aux_sym_null_literal_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_statement_token2] = ACTIONS(5061), - [aux_sym_coarray_statement_token6] = ACTIONS(5061), - [aux_sym_coarray_statement_token8] = ACTIONS(5061), - [aux_sym_coarray_statement_token11] = ACTIONS(5061), - [aux_sym_coarray_statement_token12] = ACTIONS(5061), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5061), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5061), - [aux_sym_identifier_token1] = ACTIONS(5061), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(5063), - }, - [3096] = { - [aux_sym_preproc_include_token1] = ACTIONS(4481), - [aux_sym_preproc_def_token1] = ACTIONS(4481), - [aux_sym_preproc_if_token2] = ACTIONS(4481), - [sym_preproc_directive] = ACTIONS(4481), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4481), - [aux_sym_interface_statement_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4481), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4481), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4481), - [aux_sym_language_binding_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token1] = ACTIONS(4481), - [aux_sym_procedure_attributes_token3] = ACTIONS(4481), - [aux_sym_contains_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token1] = ACTIONS(4481), - [aux_sym_use_statement_token2] = ACTIONS(4481), - [aux_sym_implicit_statement_token1] = ACTIONS(4481), - [aux_sym_implicit_statement_token3] = ACTIONS(4481), - [aux_sym_implicit_statement_token4] = ACTIONS(4481), - [aux_sym_save_statement_token1] = ACTIONS(4481), - [aux_sym_private_statement_token1] = ACTIONS(4481), - [aux_sym_public_statement_token1] = ACTIONS(4481), - [aux_sym_namelist_statement_token1] = ACTIONS(4481), - [aux_sym_common_statement_token1] = ACTIONS(4481), - [aux_sym_import_statement_token1] = ACTIONS(4481), - [aux_sym_derived_type_definition_token1] = ACTIONS(4481), - [aux_sym_abstract_specifier_token1] = ACTIONS(4481), - [aux_sym_procedure_attribute_token6] = ACTIONS(4481), - [aux_sym_variable_attributes_token1] = ACTIONS(4481), - [aux_sym_variable_attributes_token2] = ACTIONS(4481), - [aux_sym_variable_attributes_token3] = ACTIONS(4481), - [aux_sym_variable_attributes_token4] = ACTIONS(4481), - [aux_sym_variable_attributes_token5] = ACTIONS(4481), - [aux_sym__intrinsic_type_token1] = ACTIONS(4481), - [aux_sym__intrinsic_type_token2] = ACTIONS(4481), - [aux_sym__intrinsic_type_token3] = ACTIONS(4481), - [aux_sym__intrinsic_type_token4] = ACTIONS(4481), - [aux_sym__intrinsic_type_token6] = ACTIONS(4481), - [aux_sym__intrinsic_type_token7] = ACTIONS(4481), - [aux_sym__intrinsic_type_token8] = ACTIONS(4481), - [aux_sym__intrinsic_type_token9] = ACTIONS(4481), - [aux_sym__intrinsic_type_token10] = ACTIONS(4481), - [aux_sym_derived_type_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4481), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4481), - [aux_sym_type_qualifier_token1] = ACTIONS(4481), - [aux_sym_type_qualifier_token2] = ACTIONS(4481), - [aux_sym_equivalence_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token1] = ACTIONS(4481), - [aux_sym_stop_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token2] = ACTIONS(4481), - [aux_sym_keyword_statement_token3] = ACTIONS(4481), - [aux_sym_include_statement_token1] = ACTIONS(4481), - [aux_sym_data_statement_token1] = ACTIONS(4481), - [aux_sym__inline_if_statement_token1] = ACTIONS(4481), - [aux_sym_end_if_statement_token1] = ACTIONS(4481), - [aux_sym_elseif_clause_token2] = ACTIONS(4481), - [aux_sym_select_case_statement_token1] = ACTIONS(4481), - [aux_sym_block_construct_token1] = ACTIONS(4481), - [aux_sym_format_statement_token1] = ACTIONS(4481), - [aux_sym_inquire_statement_token1] = ACTIONS(4481), - [aux_sym_enum_statement_token1] = ACTIONS(4481), - [aux_sym_entry_statement_token1] = ACTIONS(4481), - [aux_sym_null_literal_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_statement_token2] = ACTIONS(4481), - [aux_sym_coarray_statement_token6] = ACTIONS(4481), - [aux_sym_coarray_statement_token8] = ACTIONS(4481), - [aux_sym_coarray_statement_token11] = ACTIONS(4481), - [aux_sym_coarray_statement_token12] = ACTIONS(4481), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4481), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4481), - [aux_sym_identifier_token1] = ACTIONS(4481), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4483), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3097] = { - [aux_sym_preproc_include_token1] = ACTIONS(4487), - [aux_sym_preproc_def_token1] = ACTIONS(4487), - [aux_sym_preproc_if_token2] = ACTIONS(4487), - [sym_preproc_directive] = ACTIONS(4487), + [3019] = { + [sym__expression] = STATE(4331), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2918), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6612), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4487), - [aux_sym_interface_statement_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4487), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4487), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4487), - [aux_sym_language_binding_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token1] = ACTIONS(4487), - [aux_sym_procedure_attributes_token3] = ACTIONS(4487), - [aux_sym_contains_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token1] = ACTIONS(4487), - [aux_sym_use_statement_token2] = ACTIONS(4487), - [aux_sym_implicit_statement_token1] = ACTIONS(4487), - [aux_sym_implicit_statement_token3] = ACTIONS(4487), - [aux_sym_implicit_statement_token4] = ACTIONS(4487), - [aux_sym_save_statement_token1] = ACTIONS(4487), - [aux_sym_private_statement_token1] = ACTIONS(4487), - [aux_sym_public_statement_token1] = ACTIONS(4487), - [aux_sym_namelist_statement_token1] = ACTIONS(4487), - [aux_sym_common_statement_token1] = ACTIONS(4487), - [aux_sym_import_statement_token1] = ACTIONS(4487), - [aux_sym_derived_type_definition_token1] = ACTIONS(4487), - [aux_sym_abstract_specifier_token1] = ACTIONS(4487), - [aux_sym_procedure_attribute_token6] = ACTIONS(4487), - [aux_sym_variable_attributes_token1] = ACTIONS(4487), - [aux_sym_variable_attributes_token2] = ACTIONS(4487), - [aux_sym_variable_attributes_token3] = ACTIONS(4487), - [aux_sym_variable_attributes_token4] = ACTIONS(4487), - [aux_sym_variable_attributes_token5] = ACTIONS(4487), - [aux_sym__intrinsic_type_token1] = ACTIONS(4487), - [aux_sym__intrinsic_type_token2] = ACTIONS(4487), - [aux_sym__intrinsic_type_token3] = ACTIONS(4487), - [aux_sym__intrinsic_type_token4] = ACTIONS(4487), - [aux_sym__intrinsic_type_token6] = ACTIONS(4487), - [aux_sym__intrinsic_type_token7] = ACTIONS(4487), - [aux_sym__intrinsic_type_token8] = ACTIONS(4487), - [aux_sym__intrinsic_type_token9] = ACTIONS(4487), - [aux_sym__intrinsic_type_token10] = ACTIONS(4487), - [aux_sym_derived_type_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4487), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4487), - [aux_sym_type_qualifier_token1] = ACTIONS(4487), - [aux_sym_type_qualifier_token2] = ACTIONS(4487), - [aux_sym_equivalence_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token1] = ACTIONS(4487), - [aux_sym_stop_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token2] = ACTIONS(4487), - [aux_sym_keyword_statement_token3] = ACTIONS(4487), - [aux_sym_include_statement_token1] = ACTIONS(4487), - [aux_sym_data_statement_token1] = ACTIONS(4487), - [aux_sym__inline_if_statement_token1] = ACTIONS(4487), - [aux_sym_end_if_statement_token1] = ACTIONS(4487), - [aux_sym_elseif_clause_token2] = ACTIONS(4487), - [aux_sym_select_case_statement_token1] = ACTIONS(4487), - [aux_sym_block_construct_token1] = ACTIONS(4487), - [aux_sym_format_statement_token1] = ACTIONS(4487), - [aux_sym_inquire_statement_token1] = ACTIONS(4487), - [aux_sym_enum_statement_token1] = ACTIONS(4487), - [aux_sym_entry_statement_token1] = ACTIONS(4487), - [aux_sym_null_literal_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_statement_token2] = ACTIONS(4487), - [aux_sym_coarray_statement_token6] = ACTIONS(4487), - [aux_sym_coarray_statement_token8] = ACTIONS(4487), - [aux_sym_coarray_statement_token11] = ACTIONS(4487), - [aux_sym_coarray_statement_token12] = ACTIONS(4487), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4487), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4487), - [aux_sym_identifier_token1] = ACTIONS(4487), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4489), - }, - [3098] = { - [aux_sym_preproc_include_token1] = ACTIONS(4567), - [aux_sym_preproc_def_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token2] = ACTIONS(4567), - [sym_preproc_directive] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(4567), - [aux_sym_interface_statement_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token1] = ACTIONS(4567), - [aux_sym_defined_io_procedure_token2] = ACTIONS(4567), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4567), - [aux_sym_language_binding_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token1] = ACTIONS(4567), - [aux_sym_procedure_attributes_token3] = ACTIONS(4567), - [aux_sym_contains_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token1] = ACTIONS(4567), - [aux_sym_use_statement_token2] = ACTIONS(4567), - [aux_sym_implicit_statement_token1] = ACTIONS(4567), - [aux_sym_implicit_statement_token3] = ACTIONS(4567), - [aux_sym_implicit_statement_token4] = ACTIONS(4567), - [aux_sym_save_statement_token1] = ACTIONS(4567), - [aux_sym_private_statement_token1] = ACTIONS(4567), - [aux_sym_public_statement_token1] = ACTIONS(4567), - [aux_sym_namelist_statement_token1] = ACTIONS(4567), - [aux_sym_common_statement_token1] = ACTIONS(4567), - [aux_sym_import_statement_token1] = ACTIONS(4567), - [aux_sym_derived_type_definition_token1] = ACTIONS(4567), - [aux_sym_abstract_specifier_token1] = ACTIONS(4567), - [aux_sym_procedure_attribute_token6] = ACTIONS(4567), - [aux_sym_variable_attributes_token1] = ACTIONS(4567), - [aux_sym_variable_attributes_token2] = ACTIONS(4567), - [aux_sym_variable_attributes_token3] = ACTIONS(4567), - [aux_sym_variable_attributes_token4] = ACTIONS(4567), - [aux_sym_variable_attributes_token5] = ACTIONS(4567), - [aux_sym__intrinsic_type_token1] = ACTIONS(4567), - [aux_sym__intrinsic_type_token2] = ACTIONS(4567), - [aux_sym__intrinsic_type_token3] = ACTIONS(4567), - [aux_sym__intrinsic_type_token4] = ACTIONS(4567), - [aux_sym__intrinsic_type_token6] = ACTIONS(4567), - [aux_sym__intrinsic_type_token7] = ACTIONS(4567), - [aux_sym__intrinsic_type_token8] = ACTIONS(4567), - [aux_sym__intrinsic_type_token9] = ACTIONS(4567), - [aux_sym__intrinsic_type_token10] = ACTIONS(4567), - [aux_sym_derived_type_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4567), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4567), - [aux_sym_type_qualifier_token1] = ACTIONS(4567), - [aux_sym_type_qualifier_token2] = ACTIONS(4567), - [aux_sym_equivalence_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token1] = ACTIONS(4567), - [aux_sym_stop_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token2] = ACTIONS(4567), - [aux_sym_keyword_statement_token3] = ACTIONS(4567), - [aux_sym_include_statement_token1] = ACTIONS(4567), - [aux_sym_data_statement_token1] = ACTIONS(4567), - [aux_sym__inline_if_statement_token1] = ACTIONS(4567), - [aux_sym_end_if_statement_token1] = ACTIONS(4567), - [aux_sym_elseif_clause_token2] = ACTIONS(4567), - [aux_sym_select_case_statement_token1] = ACTIONS(4567), - [aux_sym_block_construct_token1] = ACTIONS(4567), - [aux_sym_format_statement_token1] = ACTIONS(4567), - [aux_sym_inquire_statement_token1] = ACTIONS(4567), - [aux_sym_enum_statement_token1] = ACTIONS(4567), - [aux_sym_entry_statement_token1] = ACTIONS(4567), - [aux_sym_null_literal_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_statement_token2] = ACTIONS(4567), - [aux_sym_coarray_statement_token6] = ACTIONS(4567), - [aux_sym_coarray_statement_token8] = ACTIONS(4567), - [aux_sym_coarray_statement_token11] = ACTIONS(4567), - [aux_sym_coarray_statement_token12] = ACTIONS(4567), - [aux_sym_coarray_team_statement_token1] = ACTIONS(4567), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(4567), - [aux_sym_identifier_token1] = ACTIONS(4567), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(4569), - }, - [3099] = { - [anon_sym_COMMA] = ACTIONS(6580), - [anon_sym_LPAREN2] = ACTIONS(6580), - [anon_sym_PLUS] = ACTIONS(6580), - [anon_sym_DASH] = ACTIONS(6580), - [anon_sym_STAR] = ACTIONS(6582), - [anon_sym_SLASH] = ACTIONS(6582), - [anon_sym_PERCENT] = ACTIONS(6580), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6580), - [anon_sym_GT] = ACTIONS(6582), - [anon_sym_GT_EQ] = ACTIONS(6580), - [anon_sym_LT_EQ] = ACTIONS(6580), - [anon_sym_LT] = ACTIONS(6582), - [aux_sym_end_program_statement_token1] = ACTIONS(6582), - [anon_sym_EQ] = ACTIONS(6582), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6582), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6582), - [aux_sym_procedure_attributes_token3] = ACTIONS(6582), - [aux_sym_use_statement_token2] = ACTIONS(6582), - [anon_sym_EQ_GT] = ACTIONS(6580), - [aux_sym_implicit_statement_token4] = ACTIONS(6582), - [aux_sym_save_statement_token1] = ACTIONS(6582), - [aux_sym_private_statement_token1] = ACTIONS(6582), - [aux_sym_public_statement_token1] = ACTIONS(6582), - [aux_sym_derived_type_definition_token1] = ACTIONS(6582), - [aux_sym_procedure_attribute_token6] = ACTIONS(6582), - [aux_sym_variable_attributes_token2] = ACTIONS(6582), - [aux_sym_variable_attributes_token3] = ACTIONS(6582), - [aux_sym_variable_attributes_token5] = ACTIONS(6582), - [aux_sym__intrinsic_type_token1] = ACTIONS(6582), - [aux_sym__intrinsic_type_token3] = ACTIONS(6582), - [aux_sym__intrinsic_type_token4] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6582), - [aux_sym_type_qualifier_token1] = ACTIONS(6582), - [aux_sym_type_qualifier_token2] = ACTIONS(6582), - [anon_sym_SEMI] = ACTIONS(6580), - [aux_sym_stop_statement_token1] = ACTIONS(6582), - [aux_sym_stop_statement_token2] = ACTIONS(6582), - [anon_sym_LT_LT_LT] = ACTIONS(6580), - [aux_sym_keyword_statement_token2] = ACTIONS(6582), - [aux_sym_keyword_statement_token3] = ACTIONS(6582), - [aux_sym_data_statement_token1] = ACTIONS(6582), - [aux_sym__inline_if_statement_token1] = ACTIONS(6582), - [aux_sym_end_if_statement_token1] = ACTIONS(6582), - [aux_sym_elseif_clause_token2] = ACTIONS(6582), - [aux_sym_select_case_statement_token1] = ACTIONS(6582), - [aux_sym_block_construct_token1] = ACTIONS(6582), - [aux_sym_format_statement_token1] = ACTIONS(6582), - [aux_sym_inquire_statement_token1] = ACTIONS(6582), - [aux_sym_entry_statement_token1] = ACTIONS(6582), - [aux_sym_logical_expression_token1] = ACTIONS(6580), - [aux_sym_logical_expression_token2] = ACTIONS(6580), - [aux_sym_logical_expression_token3] = ACTIONS(6580), - [aux_sym_logical_expression_token4] = ACTIONS(6580), - [aux_sym_relational_expression_token1] = ACTIONS(6580), - [aux_sym_relational_expression_token2] = ACTIONS(6580), - [aux_sym_relational_expression_token3] = ACTIONS(6580), - [aux_sym_relational_expression_token4] = ACTIONS(6580), - [aux_sym_relational_expression_token5] = ACTIONS(6580), - [anon_sym_SLASH_EQ] = ACTIONS(6580), - [aux_sym_relational_expression_token6] = ACTIONS(6580), - [anon_sym_SLASH_SLASH] = ACTIONS(6580), - [anon_sym_STAR_STAR] = ACTIONS(6580), - [anon_sym_DOT] = ACTIONS(6582), - [anon_sym_LBRACK] = ACTIONS(6580), - [aux_sym_null_literal_token1] = ACTIONS(6582), - [aux_sym_coarray_statement_token1] = ACTIONS(6582), - [aux_sym_coarray_statement_token2] = ACTIONS(6582), - [aux_sym_coarray_statement_token6] = ACTIONS(6582), - [aux_sym_coarray_statement_token8] = ACTIONS(6582), - [aux_sym_coarray_statement_token11] = ACTIONS(6582), - [aux_sym_coarray_statement_token12] = ACTIONS(6582), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6582), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6582), - [aux_sym_identifier_token1] = ACTIONS(6582), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6580), - }, - [3100] = { - [anon_sym_COMMA] = ACTIONS(6606), - [anon_sym_LPAREN2] = ACTIONS(6606), - [anon_sym_PLUS] = ACTIONS(6606), - [anon_sym_DASH] = ACTIONS(6606), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6606), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_LT] = ACTIONS(6608), - [aux_sym_end_program_statement_token1] = ACTIONS(6608), - [anon_sym_EQ] = ACTIONS(6608), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6608), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6608), - [aux_sym_procedure_attributes_token3] = ACTIONS(6608), - [aux_sym_use_statement_token2] = ACTIONS(6608), - [anon_sym_EQ_GT] = ACTIONS(6606), - [aux_sym_implicit_statement_token4] = ACTIONS(6608), - [aux_sym_save_statement_token1] = ACTIONS(6608), - [aux_sym_private_statement_token1] = ACTIONS(6608), - [aux_sym_public_statement_token1] = ACTIONS(6608), - [aux_sym_derived_type_definition_token1] = ACTIONS(6608), - [aux_sym_procedure_attribute_token6] = ACTIONS(6608), - [aux_sym_variable_attributes_token2] = ACTIONS(6608), - [aux_sym_variable_attributes_token3] = ACTIONS(6608), - [aux_sym_variable_attributes_token5] = ACTIONS(6608), - [aux_sym__intrinsic_type_token1] = ACTIONS(6608), - [aux_sym__intrinsic_type_token3] = ACTIONS(6608), - [aux_sym__intrinsic_type_token4] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6608), - [aux_sym_type_qualifier_token1] = ACTIONS(6608), - [aux_sym_type_qualifier_token2] = ACTIONS(6608), - [anon_sym_SEMI] = ACTIONS(6606), - [aux_sym_stop_statement_token1] = ACTIONS(6608), - [aux_sym_stop_statement_token2] = ACTIONS(6608), - [anon_sym_LT_LT_LT] = ACTIONS(6606), - [aux_sym_keyword_statement_token2] = ACTIONS(6608), - [aux_sym_keyword_statement_token3] = ACTIONS(6608), - [aux_sym_data_statement_token1] = ACTIONS(6608), - [aux_sym__inline_if_statement_token1] = ACTIONS(6608), - [aux_sym_end_if_statement_token1] = ACTIONS(6608), - [aux_sym_elseif_clause_token2] = ACTIONS(6608), - [aux_sym_select_case_statement_token1] = ACTIONS(6608), - [aux_sym_block_construct_token1] = ACTIONS(6608), - [aux_sym_format_statement_token1] = ACTIONS(6608), - [aux_sym_inquire_statement_token1] = ACTIONS(6608), - [aux_sym_entry_statement_token1] = ACTIONS(6608), - [aux_sym_logical_expression_token1] = ACTIONS(6606), - [aux_sym_logical_expression_token2] = ACTIONS(6606), - [aux_sym_logical_expression_token3] = ACTIONS(6606), - [aux_sym_logical_expression_token4] = ACTIONS(6606), - [aux_sym_relational_expression_token1] = ACTIONS(6606), - [aux_sym_relational_expression_token2] = ACTIONS(6606), - [aux_sym_relational_expression_token3] = ACTIONS(6606), - [aux_sym_relational_expression_token4] = ACTIONS(6606), - [aux_sym_relational_expression_token5] = ACTIONS(6606), - [anon_sym_SLASH_EQ] = ACTIONS(6606), - [aux_sym_relational_expression_token6] = ACTIONS(6606), - [anon_sym_SLASH_SLASH] = ACTIONS(6606), - [anon_sym_STAR_STAR] = ACTIONS(6606), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_LBRACK] = ACTIONS(6606), - [aux_sym_null_literal_token1] = ACTIONS(6608), - [aux_sym_coarray_statement_token1] = ACTIONS(6608), - [aux_sym_coarray_statement_token2] = ACTIONS(6608), - [aux_sym_coarray_statement_token6] = ACTIONS(6608), - [aux_sym_coarray_statement_token8] = ACTIONS(6608), - [aux_sym_coarray_statement_token11] = ACTIONS(6608), - [aux_sym_coarray_statement_token12] = ACTIONS(6608), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6608), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6608), - [aux_sym_identifier_token1] = ACTIONS(6608), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6606), - }, - [3101] = { - [anon_sym_COMMA] = ACTIONS(6570), - [anon_sym_LPAREN2] = ACTIONS(6570), - [anon_sym_PLUS] = ACTIONS(6570), - [anon_sym_DASH] = ACTIONS(6570), - [anon_sym_STAR] = ACTIONS(6572), - [anon_sym_SLASH] = ACTIONS(6572), - [anon_sym_PERCENT] = ACTIONS(6570), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6570), - [anon_sym_GT] = ACTIONS(6572), - [anon_sym_GT_EQ] = ACTIONS(6570), - [anon_sym_LT_EQ] = ACTIONS(6570), - [anon_sym_LT] = ACTIONS(6572), - [aux_sym_end_program_statement_token1] = ACTIONS(6572), - [anon_sym_EQ] = ACTIONS(6572), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6572), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6572), - [aux_sym_procedure_attributes_token3] = ACTIONS(6572), - [aux_sym_use_statement_token2] = ACTIONS(6572), - [anon_sym_EQ_GT] = ACTIONS(6570), - [aux_sym_implicit_statement_token4] = ACTIONS(6572), - [aux_sym_save_statement_token1] = ACTIONS(6572), - [aux_sym_private_statement_token1] = ACTIONS(6572), - [aux_sym_public_statement_token1] = ACTIONS(6572), - [aux_sym_derived_type_definition_token1] = ACTIONS(6572), - [aux_sym_procedure_attribute_token6] = ACTIONS(6572), - [aux_sym_variable_attributes_token2] = ACTIONS(6572), - [aux_sym_variable_attributes_token3] = ACTIONS(6572), - [aux_sym_variable_attributes_token5] = ACTIONS(6572), - [aux_sym__intrinsic_type_token1] = ACTIONS(6572), - [aux_sym__intrinsic_type_token3] = ACTIONS(6572), - [aux_sym__intrinsic_type_token4] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6572), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6572), - [aux_sym_type_qualifier_token1] = ACTIONS(6572), - [aux_sym_type_qualifier_token2] = ACTIONS(6572), - [anon_sym_SEMI] = ACTIONS(6570), - [aux_sym_stop_statement_token1] = ACTIONS(6572), - [aux_sym_stop_statement_token2] = ACTIONS(6572), - [anon_sym_LT_LT_LT] = ACTIONS(6570), - [aux_sym_keyword_statement_token2] = ACTIONS(6572), - [aux_sym_keyword_statement_token3] = ACTIONS(6572), - [aux_sym_data_statement_token1] = ACTIONS(6572), - [aux_sym__inline_if_statement_token1] = ACTIONS(6572), - [aux_sym_end_if_statement_token1] = ACTIONS(6572), - [aux_sym_elseif_clause_token2] = ACTIONS(6572), - [aux_sym_select_case_statement_token1] = ACTIONS(6572), - [aux_sym_block_construct_token1] = ACTIONS(6572), - [aux_sym_format_statement_token1] = ACTIONS(6572), - [aux_sym_inquire_statement_token1] = ACTIONS(6572), - [aux_sym_entry_statement_token1] = ACTIONS(6572), - [aux_sym_logical_expression_token1] = ACTIONS(6570), - [aux_sym_logical_expression_token2] = ACTIONS(6570), - [aux_sym_logical_expression_token3] = ACTIONS(6570), - [aux_sym_logical_expression_token4] = ACTIONS(6570), - [aux_sym_relational_expression_token1] = ACTIONS(6570), - [aux_sym_relational_expression_token2] = ACTIONS(6570), - [aux_sym_relational_expression_token3] = ACTIONS(6570), - [aux_sym_relational_expression_token4] = ACTIONS(6570), - [aux_sym_relational_expression_token5] = ACTIONS(6570), - [anon_sym_SLASH_EQ] = ACTIONS(6570), - [aux_sym_relational_expression_token6] = ACTIONS(6570), - [anon_sym_SLASH_SLASH] = ACTIONS(6570), - [anon_sym_STAR_STAR] = ACTIONS(6570), - [anon_sym_DOT] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6570), - [aux_sym_null_literal_token1] = ACTIONS(6572), - [aux_sym_coarray_statement_token1] = ACTIONS(6572), - [aux_sym_coarray_statement_token2] = ACTIONS(6572), - [aux_sym_coarray_statement_token6] = ACTIONS(6572), - [aux_sym_coarray_statement_token8] = ACTIONS(6572), - [aux_sym_coarray_statement_token11] = ACTIONS(6572), - [aux_sym_coarray_statement_token12] = ACTIONS(6572), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6572), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6572), - [aux_sym_identifier_token1] = ACTIONS(6572), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6570), - }, - [3102] = { - [anon_sym_COMMA] = ACTIONS(6542), - [anon_sym_LPAREN2] = ACTIONS(6542), - [anon_sym_PLUS] = ACTIONS(6542), - [anon_sym_DASH] = ACTIONS(6542), - [anon_sym_STAR] = ACTIONS(6544), - [anon_sym_SLASH] = ACTIONS(6544), - [anon_sym_PERCENT] = ACTIONS(6542), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6542), - [anon_sym_GT] = ACTIONS(6544), - [anon_sym_GT_EQ] = ACTIONS(6542), - [anon_sym_LT_EQ] = ACTIONS(6542), - [anon_sym_LT] = ACTIONS(6544), - [aux_sym_end_program_statement_token1] = ACTIONS(6544), - [anon_sym_EQ] = ACTIONS(6544), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6544), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6544), - [aux_sym_procedure_attributes_token3] = ACTIONS(6544), - [aux_sym_use_statement_token2] = ACTIONS(6544), - [anon_sym_EQ_GT] = ACTIONS(6542), - [aux_sym_implicit_statement_token4] = ACTIONS(6544), - [aux_sym_save_statement_token1] = ACTIONS(6544), - [aux_sym_private_statement_token1] = ACTIONS(6544), - [aux_sym_public_statement_token1] = ACTIONS(6544), - [aux_sym_derived_type_definition_token1] = ACTIONS(6544), - [aux_sym_procedure_attribute_token6] = ACTIONS(6544), - [aux_sym_variable_attributes_token2] = ACTIONS(6544), - [aux_sym_variable_attributes_token3] = ACTIONS(6544), - [aux_sym_variable_attributes_token5] = ACTIONS(6544), - [aux_sym__intrinsic_type_token1] = ACTIONS(6544), - [aux_sym__intrinsic_type_token3] = ACTIONS(6544), - [aux_sym__intrinsic_type_token4] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6544), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6544), - [aux_sym_type_qualifier_token1] = ACTIONS(6544), - [aux_sym_type_qualifier_token2] = ACTIONS(6544), - [anon_sym_SEMI] = ACTIONS(6542), - [aux_sym_stop_statement_token1] = ACTIONS(6544), - [aux_sym_stop_statement_token2] = ACTIONS(6544), - [anon_sym_LT_LT_LT] = ACTIONS(6542), - [aux_sym_keyword_statement_token2] = ACTIONS(6544), - [aux_sym_keyword_statement_token3] = ACTIONS(6544), - [aux_sym_data_statement_token1] = ACTIONS(6544), - [aux_sym__inline_if_statement_token1] = ACTIONS(6544), - [aux_sym_end_if_statement_token1] = ACTIONS(6544), - [aux_sym_elseif_clause_token2] = ACTIONS(6544), - [aux_sym_select_case_statement_token1] = ACTIONS(6544), - [aux_sym_block_construct_token1] = ACTIONS(6544), - [aux_sym_format_statement_token1] = ACTIONS(6544), - [aux_sym_inquire_statement_token1] = ACTIONS(6544), - [aux_sym_entry_statement_token1] = ACTIONS(6544), - [aux_sym_logical_expression_token1] = ACTIONS(6542), - [aux_sym_logical_expression_token2] = ACTIONS(6542), - [aux_sym_logical_expression_token3] = ACTIONS(6542), - [aux_sym_logical_expression_token4] = ACTIONS(6542), - [aux_sym_relational_expression_token1] = ACTIONS(6542), - [aux_sym_relational_expression_token2] = ACTIONS(6542), - [aux_sym_relational_expression_token3] = ACTIONS(6542), - [aux_sym_relational_expression_token4] = ACTIONS(6542), - [aux_sym_relational_expression_token5] = ACTIONS(6542), - [anon_sym_SLASH_EQ] = ACTIONS(6542), - [aux_sym_relational_expression_token6] = ACTIONS(6542), - [anon_sym_SLASH_SLASH] = ACTIONS(6542), - [anon_sym_STAR_STAR] = ACTIONS(6542), - [anon_sym_DOT] = ACTIONS(6544), - [anon_sym_LBRACK] = ACTIONS(6542), - [aux_sym_null_literal_token1] = ACTIONS(6544), - [aux_sym_coarray_statement_token1] = ACTIONS(6544), - [aux_sym_coarray_statement_token2] = ACTIONS(6544), - [aux_sym_coarray_statement_token6] = ACTIONS(6544), - [aux_sym_coarray_statement_token8] = ACTIONS(6544), - [aux_sym_coarray_statement_token11] = ACTIONS(6544), - [aux_sym_coarray_statement_token12] = ACTIONS(6544), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6544), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6544), - [aux_sym_identifier_token1] = ACTIONS(6544), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6542), - }, - [3103] = { - [anon_sym_COMMA] = ACTIONS(6562), - [anon_sym_LPAREN2] = ACTIONS(6562), - [anon_sym_PLUS] = ACTIONS(6562), - [anon_sym_DASH] = ACTIONS(6562), - [anon_sym_STAR] = ACTIONS(6564), - [anon_sym_SLASH] = ACTIONS(6564), - [anon_sym_PERCENT] = ACTIONS(6562), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6562), - [anon_sym_GT] = ACTIONS(6564), - [anon_sym_GT_EQ] = ACTIONS(6562), - [anon_sym_LT_EQ] = ACTIONS(6562), - [anon_sym_LT] = ACTIONS(6564), - [aux_sym_end_program_statement_token1] = ACTIONS(6564), - [anon_sym_EQ] = ACTIONS(6564), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6564), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6564), - [aux_sym_procedure_attributes_token3] = ACTIONS(6564), - [aux_sym_use_statement_token2] = ACTIONS(6564), - [anon_sym_EQ_GT] = ACTIONS(6562), - [aux_sym_implicit_statement_token4] = ACTIONS(6564), - [aux_sym_save_statement_token1] = ACTIONS(6564), - [aux_sym_private_statement_token1] = ACTIONS(6564), - [aux_sym_public_statement_token1] = ACTIONS(6564), - [aux_sym_derived_type_definition_token1] = ACTIONS(6564), - [aux_sym_procedure_attribute_token6] = ACTIONS(6564), - [aux_sym_variable_attributes_token2] = ACTIONS(6564), - [aux_sym_variable_attributes_token3] = ACTIONS(6564), - [aux_sym_variable_attributes_token5] = ACTIONS(6564), - [aux_sym__intrinsic_type_token1] = ACTIONS(6564), - [aux_sym__intrinsic_type_token3] = ACTIONS(6564), - [aux_sym__intrinsic_type_token4] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6564), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6564), - [aux_sym_type_qualifier_token1] = ACTIONS(6564), - [aux_sym_type_qualifier_token2] = ACTIONS(6564), - [anon_sym_SEMI] = ACTIONS(6562), - [aux_sym_stop_statement_token1] = ACTIONS(6564), - [aux_sym_stop_statement_token2] = ACTIONS(6564), - [anon_sym_LT_LT_LT] = ACTIONS(6562), - [aux_sym_keyword_statement_token2] = ACTIONS(6564), - [aux_sym_keyword_statement_token3] = ACTIONS(6564), - [aux_sym_data_statement_token1] = ACTIONS(6564), - [aux_sym__inline_if_statement_token1] = ACTIONS(6564), - [aux_sym_end_if_statement_token1] = ACTIONS(6564), - [aux_sym_elseif_clause_token2] = ACTIONS(6564), - [aux_sym_select_case_statement_token1] = ACTIONS(6564), - [aux_sym_block_construct_token1] = ACTIONS(6564), - [aux_sym_format_statement_token1] = ACTIONS(6564), - [aux_sym_inquire_statement_token1] = ACTIONS(6564), - [aux_sym_entry_statement_token1] = ACTIONS(6564), - [aux_sym_logical_expression_token1] = ACTIONS(6562), - [aux_sym_logical_expression_token2] = ACTIONS(6562), - [aux_sym_logical_expression_token3] = ACTIONS(6562), - [aux_sym_logical_expression_token4] = ACTIONS(6562), - [aux_sym_relational_expression_token1] = ACTIONS(6562), - [aux_sym_relational_expression_token2] = ACTIONS(6562), - [aux_sym_relational_expression_token3] = ACTIONS(6562), - [aux_sym_relational_expression_token4] = ACTIONS(6562), - [aux_sym_relational_expression_token5] = ACTIONS(6562), - [anon_sym_SLASH_EQ] = ACTIONS(6562), - [aux_sym_relational_expression_token6] = ACTIONS(6562), - [anon_sym_SLASH_SLASH] = ACTIONS(6562), - [anon_sym_STAR_STAR] = ACTIONS(6562), - [anon_sym_DOT] = ACTIONS(6564), - [anon_sym_LBRACK] = ACTIONS(6562), - [aux_sym_null_literal_token1] = ACTIONS(6564), - [aux_sym_coarray_statement_token1] = ACTIONS(6564), - [aux_sym_coarray_statement_token2] = ACTIONS(6564), - [aux_sym_coarray_statement_token6] = ACTIONS(6564), - [aux_sym_coarray_statement_token8] = ACTIONS(6564), - [aux_sym_coarray_statement_token11] = ACTIONS(6564), - [aux_sym_coarray_statement_token12] = ACTIONS(6564), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6564), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6564), - [aux_sym_identifier_token1] = ACTIONS(6564), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6562), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3104] = { - [sym_identifier] = STATE(7281), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), + [3020] = { + [sym__name] = STATE(6590), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4867), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4325), - [anon_sym_EQ] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_subroutine_statement_token1] = ACTIONS(7064), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4325), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -449143,7 +441669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7100), + [anon_sym_SEMI] = ACTIONS(7066), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -449157,21 +441683,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -449183,465 +441709,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7100), - }, - [3105] = { - [anon_sym_COMMA] = ACTIONS(6566), - [anon_sym_LPAREN2] = ACTIONS(6566), - [anon_sym_PLUS] = ACTIONS(6566), - [anon_sym_DASH] = ACTIONS(6566), - [anon_sym_STAR] = ACTIONS(6568), - [anon_sym_SLASH] = ACTIONS(6568), - [anon_sym_PERCENT] = ACTIONS(6566), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6566), - [anon_sym_GT] = ACTIONS(6568), - [anon_sym_GT_EQ] = ACTIONS(6566), - [anon_sym_LT_EQ] = ACTIONS(6566), - [anon_sym_LT] = ACTIONS(6568), - [aux_sym_end_program_statement_token1] = ACTIONS(6568), - [anon_sym_EQ] = ACTIONS(6568), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6568), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6568), - [aux_sym_procedure_attributes_token3] = ACTIONS(6568), - [aux_sym_use_statement_token2] = ACTIONS(6568), - [anon_sym_EQ_GT] = ACTIONS(6566), - [aux_sym_implicit_statement_token4] = ACTIONS(6568), - [aux_sym_save_statement_token1] = ACTIONS(6568), - [aux_sym_private_statement_token1] = ACTIONS(6568), - [aux_sym_public_statement_token1] = ACTIONS(6568), - [aux_sym_derived_type_definition_token1] = ACTIONS(6568), - [aux_sym_procedure_attribute_token6] = ACTIONS(6568), - [aux_sym_variable_attributes_token2] = ACTIONS(6568), - [aux_sym_variable_attributes_token3] = ACTIONS(6568), - [aux_sym_variable_attributes_token5] = ACTIONS(6568), - [aux_sym__intrinsic_type_token1] = ACTIONS(6568), - [aux_sym__intrinsic_type_token3] = ACTIONS(6568), - [aux_sym__intrinsic_type_token4] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6568), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6568), - [aux_sym_type_qualifier_token1] = ACTIONS(6568), - [aux_sym_type_qualifier_token2] = ACTIONS(6568), - [anon_sym_SEMI] = ACTIONS(6566), - [aux_sym_stop_statement_token1] = ACTIONS(6568), - [aux_sym_stop_statement_token2] = ACTIONS(6568), - [anon_sym_LT_LT_LT] = ACTIONS(6566), - [aux_sym_keyword_statement_token2] = ACTIONS(6568), - [aux_sym_keyword_statement_token3] = ACTIONS(6568), - [aux_sym_data_statement_token1] = ACTIONS(6568), - [aux_sym__inline_if_statement_token1] = ACTIONS(6568), - [aux_sym_end_if_statement_token1] = ACTIONS(6568), - [aux_sym_elseif_clause_token2] = ACTIONS(6568), - [aux_sym_select_case_statement_token1] = ACTIONS(6568), - [aux_sym_block_construct_token1] = ACTIONS(6568), - [aux_sym_format_statement_token1] = ACTIONS(6568), - [aux_sym_inquire_statement_token1] = ACTIONS(6568), - [aux_sym_entry_statement_token1] = ACTIONS(6568), - [aux_sym_logical_expression_token1] = ACTIONS(6566), - [aux_sym_logical_expression_token2] = ACTIONS(6566), - [aux_sym_logical_expression_token3] = ACTIONS(6566), - [aux_sym_logical_expression_token4] = ACTIONS(6566), - [aux_sym_relational_expression_token1] = ACTIONS(6566), - [aux_sym_relational_expression_token2] = ACTIONS(6566), - [aux_sym_relational_expression_token3] = ACTIONS(6566), - [aux_sym_relational_expression_token4] = ACTIONS(6566), - [aux_sym_relational_expression_token5] = ACTIONS(6566), - [anon_sym_SLASH_EQ] = ACTIONS(6566), - [aux_sym_relational_expression_token6] = ACTIONS(6566), - [anon_sym_SLASH_SLASH] = ACTIONS(6566), - [anon_sym_STAR_STAR] = ACTIONS(6566), - [anon_sym_DOT] = ACTIONS(6568), - [anon_sym_LBRACK] = ACTIONS(6566), - [aux_sym_null_literal_token1] = ACTIONS(6568), - [aux_sym_coarray_statement_token1] = ACTIONS(6568), - [aux_sym_coarray_statement_token2] = ACTIONS(6568), - [aux_sym_coarray_statement_token6] = ACTIONS(6568), - [aux_sym_coarray_statement_token8] = ACTIONS(6568), - [aux_sym_coarray_statement_token11] = ACTIONS(6568), - [aux_sym_coarray_statement_token12] = ACTIONS(6568), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6568), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6568), - [aux_sym_identifier_token1] = ACTIONS(6568), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6566), - }, - [3106] = { - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6598), - [anon_sym_STAR] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6600), - [anon_sym_PERCENT] = ACTIONS(6598), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6600), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6598), - [anon_sym_LT] = ACTIONS(6600), - [aux_sym_end_program_statement_token1] = ACTIONS(6600), - [anon_sym_EQ] = ACTIONS(6600), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6600), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6600), - [aux_sym_procedure_attributes_token3] = ACTIONS(6600), - [aux_sym_use_statement_token2] = ACTIONS(6600), - [anon_sym_EQ_GT] = ACTIONS(6598), - [aux_sym_implicit_statement_token4] = ACTIONS(6600), - [aux_sym_save_statement_token1] = ACTIONS(6600), - [aux_sym_private_statement_token1] = ACTIONS(6600), - [aux_sym_public_statement_token1] = ACTIONS(6600), - [aux_sym_derived_type_definition_token1] = ACTIONS(6600), - [aux_sym_procedure_attribute_token6] = ACTIONS(6600), - [aux_sym_variable_attributes_token2] = ACTIONS(6600), - [aux_sym_variable_attributes_token3] = ACTIONS(6600), - [aux_sym_variable_attributes_token5] = ACTIONS(6600), - [aux_sym__intrinsic_type_token1] = ACTIONS(6600), - [aux_sym__intrinsic_type_token3] = ACTIONS(6600), - [aux_sym__intrinsic_type_token4] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6600), - [aux_sym_type_qualifier_token1] = ACTIONS(6600), - [aux_sym_type_qualifier_token2] = ACTIONS(6600), - [anon_sym_SEMI] = ACTIONS(6598), - [aux_sym_stop_statement_token1] = ACTIONS(6600), - [aux_sym_stop_statement_token2] = ACTIONS(6600), - [anon_sym_LT_LT_LT] = ACTIONS(6598), - [aux_sym_keyword_statement_token2] = ACTIONS(6600), - [aux_sym_keyword_statement_token3] = ACTIONS(6600), - [aux_sym_data_statement_token1] = ACTIONS(6600), - [aux_sym__inline_if_statement_token1] = ACTIONS(6600), - [aux_sym_end_if_statement_token1] = ACTIONS(6600), - [aux_sym_elseif_clause_token2] = ACTIONS(6600), - [aux_sym_select_case_statement_token1] = ACTIONS(6600), - [aux_sym_block_construct_token1] = ACTIONS(6600), - [aux_sym_format_statement_token1] = ACTIONS(6600), - [aux_sym_inquire_statement_token1] = ACTIONS(6600), - [aux_sym_entry_statement_token1] = ACTIONS(6600), - [aux_sym_logical_expression_token1] = ACTIONS(6598), - [aux_sym_logical_expression_token2] = ACTIONS(6598), - [aux_sym_logical_expression_token3] = ACTIONS(6598), - [aux_sym_logical_expression_token4] = ACTIONS(6598), - [aux_sym_relational_expression_token1] = ACTIONS(6598), - [aux_sym_relational_expression_token2] = ACTIONS(6598), - [aux_sym_relational_expression_token3] = ACTIONS(6598), - [aux_sym_relational_expression_token4] = ACTIONS(6598), - [aux_sym_relational_expression_token5] = ACTIONS(6598), - [anon_sym_SLASH_EQ] = ACTIONS(6598), - [aux_sym_relational_expression_token6] = ACTIONS(6598), - [anon_sym_SLASH_SLASH] = ACTIONS(6598), - [anon_sym_STAR_STAR] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6600), - [anon_sym_LBRACK] = ACTIONS(6598), - [aux_sym_null_literal_token1] = ACTIONS(6600), - [aux_sym_coarray_statement_token1] = ACTIONS(6600), - [aux_sym_coarray_statement_token2] = ACTIONS(6600), - [aux_sym_coarray_statement_token6] = ACTIONS(6600), - [aux_sym_coarray_statement_token8] = ACTIONS(6600), - [aux_sym_coarray_statement_token11] = ACTIONS(6600), - [aux_sym_coarray_statement_token12] = ACTIONS(6600), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6600), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6600), - [aux_sym_identifier_token1] = ACTIONS(6600), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6598), - }, - [3107] = { - [anon_sym_COMMA] = ACTIONS(6588), - [anon_sym_LPAREN2] = ACTIONS(6588), - [anon_sym_PLUS] = ACTIONS(6588), - [anon_sym_DASH] = ACTIONS(6588), - [anon_sym_STAR] = ACTIONS(6590), - [anon_sym_SLASH] = ACTIONS(6590), - [anon_sym_PERCENT] = ACTIONS(6588), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6588), - [anon_sym_GT] = ACTIONS(6590), - [anon_sym_GT_EQ] = ACTIONS(6588), - [anon_sym_LT_EQ] = ACTIONS(6588), - [anon_sym_LT] = ACTIONS(6590), - [aux_sym_end_program_statement_token1] = ACTIONS(6590), - [anon_sym_EQ] = ACTIONS(6590), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6590), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6590), - [aux_sym_procedure_attributes_token3] = ACTIONS(6590), - [aux_sym_use_statement_token2] = ACTIONS(6590), - [anon_sym_EQ_GT] = ACTIONS(6588), - [aux_sym_implicit_statement_token4] = ACTIONS(6590), - [aux_sym_save_statement_token1] = ACTIONS(6590), - [aux_sym_private_statement_token1] = ACTIONS(6590), - [aux_sym_public_statement_token1] = ACTIONS(6590), - [aux_sym_derived_type_definition_token1] = ACTIONS(6590), - [aux_sym_procedure_attribute_token6] = ACTIONS(6590), - [aux_sym_variable_attributes_token2] = ACTIONS(6590), - [aux_sym_variable_attributes_token3] = ACTIONS(6590), - [aux_sym_variable_attributes_token5] = ACTIONS(6590), - [aux_sym__intrinsic_type_token1] = ACTIONS(6590), - [aux_sym__intrinsic_type_token3] = ACTIONS(6590), - [aux_sym__intrinsic_type_token4] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6590), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6590), - [aux_sym_type_qualifier_token1] = ACTIONS(6590), - [aux_sym_type_qualifier_token2] = ACTIONS(6590), - [anon_sym_SEMI] = ACTIONS(6588), - [aux_sym_stop_statement_token1] = ACTIONS(6590), - [aux_sym_stop_statement_token2] = ACTIONS(6590), - [anon_sym_LT_LT_LT] = ACTIONS(6588), - [aux_sym_keyword_statement_token2] = ACTIONS(6590), - [aux_sym_keyword_statement_token3] = ACTIONS(6590), - [aux_sym_data_statement_token1] = ACTIONS(6590), - [aux_sym__inline_if_statement_token1] = ACTIONS(6590), - [aux_sym_end_if_statement_token1] = ACTIONS(6590), - [aux_sym_elseif_clause_token2] = ACTIONS(6590), - [aux_sym_select_case_statement_token1] = ACTIONS(6590), - [aux_sym_block_construct_token1] = ACTIONS(6590), - [aux_sym_format_statement_token1] = ACTIONS(6590), - [aux_sym_inquire_statement_token1] = ACTIONS(6590), - [aux_sym_entry_statement_token1] = ACTIONS(6590), - [aux_sym_logical_expression_token1] = ACTIONS(6588), - [aux_sym_logical_expression_token2] = ACTIONS(6588), - [aux_sym_logical_expression_token3] = ACTIONS(6588), - [aux_sym_logical_expression_token4] = ACTIONS(6588), - [aux_sym_relational_expression_token1] = ACTIONS(6588), - [aux_sym_relational_expression_token2] = ACTIONS(6588), - [aux_sym_relational_expression_token3] = ACTIONS(6588), - [aux_sym_relational_expression_token4] = ACTIONS(6588), - [aux_sym_relational_expression_token5] = ACTIONS(6588), - [anon_sym_SLASH_EQ] = ACTIONS(6588), - [aux_sym_relational_expression_token6] = ACTIONS(6588), - [anon_sym_SLASH_SLASH] = ACTIONS(6588), - [anon_sym_STAR_STAR] = ACTIONS(6588), - [anon_sym_DOT] = ACTIONS(6590), - [anon_sym_LBRACK] = ACTIONS(6588), - [aux_sym_null_literal_token1] = ACTIONS(6590), - [aux_sym_coarray_statement_token1] = ACTIONS(6590), - [aux_sym_coarray_statement_token2] = ACTIONS(6590), - [aux_sym_coarray_statement_token6] = ACTIONS(6590), - [aux_sym_coarray_statement_token8] = ACTIONS(6590), - [aux_sym_coarray_statement_token11] = ACTIONS(6590), - [aux_sym_coarray_statement_token12] = ACTIONS(6590), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6590), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6590), - [aux_sym_identifier_token1] = ACTIONS(6590), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6588), + [sym__external_end_of_statement] = ACTIONS(7066), }, - [3108] = { - [anon_sym_COMMA] = ACTIONS(6602), - [anon_sym_LPAREN2] = ACTIONS(6602), - [anon_sym_PLUS] = ACTIONS(6602), - [anon_sym_DASH] = ACTIONS(6602), - [anon_sym_STAR] = ACTIONS(6604), - [anon_sym_SLASH] = ACTIONS(6604), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6602), - [anon_sym_GT] = ACTIONS(6604), - [anon_sym_GT_EQ] = ACTIONS(6602), - [anon_sym_LT_EQ] = ACTIONS(6602), - [anon_sym_LT] = ACTIONS(6604), - [aux_sym_end_program_statement_token1] = ACTIONS(6604), - [anon_sym_EQ] = ACTIONS(6604), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6604), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6604), - [aux_sym_procedure_attributes_token3] = ACTIONS(6604), - [aux_sym_use_statement_token2] = ACTIONS(6604), - [anon_sym_EQ_GT] = ACTIONS(6602), - [aux_sym_implicit_statement_token4] = ACTIONS(6604), - [aux_sym_save_statement_token1] = ACTIONS(6604), - [aux_sym_private_statement_token1] = ACTIONS(6604), - [aux_sym_public_statement_token1] = ACTIONS(6604), - [aux_sym_derived_type_definition_token1] = ACTIONS(6604), - [aux_sym_procedure_attribute_token6] = ACTIONS(6604), - [aux_sym_variable_attributes_token2] = ACTIONS(6604), - [aux_sym_variable_attributes_token3] = ACTIONS(6604), - [aux_sym_variable_attributes_token5] = ACTIONS(6604), - [aux_sym__intrinsic_type_token1] = ACTIONS(6604), - [aux_sym__intrinsic_type_token3] = ACTIONS(6604), - [aux_sym__intrinsic_type_token4] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6604), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6604), - [aux_sym_type_qualifier_token1] = ACTIONS(6604), - [aux_sym_type_qualifier_token2] = ACTIONS(6604), - [anon_sym_SEMI] = ACTIONS(6602), - [aux_sym_stop_statement_token1] = ACTIONS(6604), - [aux_sym_stop_statement_token2] = ACTIONS(6604), - [anon_sym_LT_LT_LT] = ACTIONS(6602), - [aux_sym_keyword_statement_token2] = ACTIONS(6604), - [aux_sym_keyword_statement_token3] = ACTIONS(6604), - [aux_sym_data_statement_token1] = ACTIONS(6604), - [aux_sym__inline_if_statement_token1] = ACTIONS(6604), - [aux_sym_end_if_statement_token1] = ACTIONS(6604), - [aux_sym_elseif_clause_token2] = ACTIONS(6604), - [aux_sym_select_case_statement_token1] = ACTIONS(6604), - [aux_sym_block_construct_token1] = ACTIONS(6604), - [aux_sym_format_statement_token1] = ACTIONS(6604), - [aux_sym_inquire_statement_token1] = ACTIONS(6604), - [aux_sym_entry_statement_token1] = ACTIONS(6604), - [aux_sym_logical_expression_token1] = ACTIONS(6602), - [aux_sym_logical_expression_token2] = ACTIONS(6602), - [aux_sym_logical_expression_token3] = ACTIONS(6602), - [aux_sym_logical_expression_token4] = ACTIONS(6602), - [aux_sym_relational_expression_token1] = ACTIONS(6602), - [aux_sym_relational_expression_token2] = ACTIONS(6602), - [aux_sym_relational_expression_token3] = ACTIONS(6602), - [aux_sym_relational_expression_token4] = ACTIONS(6602), - [aux_sym_relational_expression_token5] = ACTIONS(6602), - [anon_sym_SLASH_EQ] = ACTIONS(6602), - [aux_sym_relational_expression_token6] = ACTIONS(6602), - [anon_sym_SLASH_SLASH] = ACTIONS(6602), - [anon_sym_STAR_STAR] = ACTIONS(6602), - [anon_sym_DOT] = ACTIONS(6604), - [anon_sym_LBRACK] = ACTIONS(6602), - [aux_sym_null_literal_token1] = ACTIONS(6604), - [aux_sym_coarray_statement_token1] = ACTIONS(6604), - [aux_sym_coarray_statement_token2] = ACTIONS(6604), - [aux_sym_coarray_statement_token6] = ACTIONS(6604), - [aux_sym_coarray_statement_token8] = ACTIONS(6604), - [aux_sym_coarray_statement_token11] = ACTIONS(6604), - [aux_sym_coarray_statement_token12] = ACTIONS(6604), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6604), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6604), - [aux_sym_identifier_token1] = ACTIONS(6604), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6602), + [3021] = { + [sym__name] = STATE(6595), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4872), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(7068), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7070), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(7070), }, - [3109] = { - [anon_sym_COMMA] = ACTIONS(5798), - [anon_sym_LPAREN2] = ACTIONS(5800), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(5806), - [anon_sym_COLON] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5806), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5806), - [aux_sym_procedure_attributes_token3] = ACTIONS(5806), - [aux_sym_use_statement_token2] = ACTIONS(5806), - [anon_sym_COLON_COLON] = ACTIONS(5798), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token4] = ACTIONS(5806), - [aux_sym_save_statement_token1] = ACTIONS(5806), - [aux_sym_private_statement_token1] = ACTIONS(5806), - [aux_sym_public_statement_token1] = ACTIONS(5806), - [aux_sym_derived_type_definition_token1] = ACTIONS(5806), - [aux_sym_procedure_attribute_token6] = ACTIONS(5806), - [aux_sym_variable_attributes_token2] = ACTIONS(5806), - [aux_sym_variable_attributes_token3] = ACTIONS(5806), - [aux_sym_variable_attributes_token5] = ACTIONS(5806), - [aux_sym__intrinsic_type_token1] = ACTIONS(5806), - [aux_sym__intrinsic_type_token3] = ACTIONS(5806), - [aux_sym__intrinsic_type_token4] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5806), - [aux_sym_type_qualifier_token1] = ACTIONS(5806), - [aux_sym_type_qualifier_token2] = ACTIONS(5806), - [aux_sym_stop_statement_token1] = ACTIONS(5806), - [aux_sym_stop_statement_token2] = ACTIONS(5806), - [aux_sym_keyword_statement_token2] = ACTIONS(5806), - [aux_sym_keyword_statement_token3] = ACTIONS(5806), - [aux_sym_data_statement_token1] = ACTIONS(5806), - [aux_sym__inline_if_statement_token1] = ACTIONS(5806), - [aux_sym_end_if_statement_token1] = ACTIONS(5806), - [aux_sym_elseif_clause_token2] = ACTIONS(5806), - [aux_sym_select_case_statement_token1] = ACTIONS(5806), - [aux_sym_block_construct_token1] = ACTIONS(5806), - [aux_sym_format_statement_token1] = ACTIONS(5806), - [aux_sym_inquire_statement_token1] = ACTIONS(5806), - [aux_sym_entry_statement_token1] = ACTIONS(5806), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5806), - [aux_sym_coarray_statement_token1] = ACTIONS(5806), - [aux_sym_coarray_statement_token2] = ACTIONS(5806), - [aux_sym_coarray_statement_token6] = ACTIONS(5806), - [aux_sym_coarray_statement_token8] = ACTIONS(5806), - [aux_sym_coarray_statement_token11] = ACTIONS(5806), - [aux_sym_coarray_statement_token12] = ACTIONS(5806), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5806), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5806), - [aux_sym_identifier_token1] = ACTIONS(5806), + [3022] = { + [sym__expression] = STATE(4471), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3110] = { - [sym__name] = STATE(5597), - [sym_identifier] = STATE(6084), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), + [3023] = { + [sym__expression] = STATE(4485), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [anon_sym_COLON] = ACTIONS(4325), - [anon_sym_EQ] = ACTIONS(4323), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_EQ_GT] = ACTIONS(4325), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -449678,22 +441958,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -449704,56 +441975,868 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3111] = { - [sym__import_names] = STATE(4626), - [sym_identifier] = STATE(4550), - [anon_sym_COMMA] = ACTIONS(7102), - [aux_sym_preproc_if_token2] = ACTIONS(7104), - [aux_sym_preproc_else_token1] = ACTIONS(7104), - [aux_sym_preproc_elif_token1] = ACTIONS(7094), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7104), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7104), + [3024] = { + [sym__expression] = STATE(4289), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), - [aux_sym_module_statement_token1] = ACTIONS(7094), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), [aux_sym_defined_io_procedure_token2] = ACTIONS(93), - [aux_sym_subroutine_statement_token1] = ACTIONS(7094), - [aux_sym_module_procedure_statement_token1] = ACTIONS(7094), - [aux_sym_function_statement_token1] = ACTIONS(7094), - [aux_sym_procedure_attributes_token1] = ACTIONS(7094), [aux_sym_procedure_attributes_token3] = ACTIONS(93), [aux_sym_use_statement_token2] = ACTIONS(93), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [aux_sym_implicit_statement_token3] = ACTIONS(7094), [aux_sym_implicit_statement_token4] = ACTIONS(93), [aux_sym_save_statement_token1] = ACTIONS(93), [aux_sym_private_statement_token1] = ACTIONS(93), [aux_sym_public_statement_token1] = ACTIONS(93), - [aux_sym_import_statement_token1] = ACTIONS(7094), [aux_sym_derived_type_definition_token1] = ACTIONS(93), - [aux_sym__procedure_kind_token1] = ACTIONS(7094), - [aux_sym__procedure_kind_token2] = ACTIONS(7094), - [aux_sym__procedure_kind_token3] = ACTIONS(7094), - [aux_sym__procedure_kind_token4] = ACTIONS(7094), [aux_sym_procedure_attribute_token6] = ACTIONS(93), [aux_sym_variable_attributes_token2] = ACTIONS(93), [aux_sym_variable_attributes_token3] = ACTIONS(93), [aux_sym_variable_attributes_token5] = ACTIONS(93), - [aux_sym__intrinsic_type_token1] = ACTIONS(7094), - [aux_sym__intrinsic_type_token2] = ACTIONS(7094), - [aux_sym__intrinsic_type_token3] = ACTIONS(7094), - [aux_sym__intrinsic_type_token4] = ACTIONS(7094), - [aux_sym__intrinsic_type_token6] = ACTIONS(7094), - [aux_sym__intrinsic_type_token7] = ACTIONS(7094), - [aux_sym__intrinsic_type_token8] = ACTIONS(7094), - [aux_sym__intrinsic_type_token9] = ACTIONS(7094), - [aux_sym__intrinsic_type_token10] = ACTIONS(7094), - [aux_sym_derived_type_token1] = ACTIONS(7094), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), + }, + [3025] = { + [sym__expression] = STATE(4293), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), + }, + [3026] = { + [sym__expression] = STATE(4296), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), + }, + [3027] = { + [sym__expression] = STATE(4299), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), + }, + [3028] = { + [sym__expression] = STATE(4301), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), + }, + [3029] = { + [sym__expression] = STATE(4308), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), + }, + [3030] = { + [sym__expression] = STATE(4310), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), + }, + [3031] = { + [sym__expression] = STATE(4305), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), + }, + [3032] = { + [sym__expression] = STATE(4317), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), + }, + [3033] = { + [sym__expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -449762,10 +442845,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7094), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7094), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7094), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7094), [aux_sym_stop_statement_token1] = ACTIONS(93), [aux_sym_stop_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token2] = ACTIONS(93), @@ -449774,12 +442853,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), [aux_sym_entry_statement_token1] = ACTIONS(93), - [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), [aux_sym_coarray_statement_token1] = ACTIONS(93), [aux_sym_coarray_statement_token2] = ACTIONS(93), [aux_sym_coarray_statement_token6] = ACTIONS(93), @@ -449790,987 +442875,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3112] = { - [anon_sym_COMMA] = ACTIONS(6836), - [anon_sym_LPAREN2] = ACTIONS(6836), - [anon_sym_PLUS] = ACTIONS(6836), - [anon_sym_DASH] = ACTIONS(6836), - [anon_sym_STAR] = ACTIONS(6834), - [anon_sym_SLASH] = ACTIONS(6834), - [anon_sym_PERCENT] = ACTIONS(6836), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(6836), - [anon_sym_GT] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6836), - [anon_sym_LT_EQ] = ACTIONS(6836), - [anon_sym_LT] = ACTIONS(6834), - [aux_sym_end_program_statement_token1] = ACTIONS(6834), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6834), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6834), - [aux_sym_procedure_attributes_token3] = ACTIONS(6834), - [aux_sym_use_statement_token2] = ACTIONS(6834), - [aux_sym_implicit_statement_token4] = ACTIONS(6834), - [aux_sym_save_statement_token1] = ACTIONS(6834), - [aux_sym_private_statement_token1] = ACTIONS(6834), - [aux_sym_public_statement_token1] = ACTIONS(6834), - [aux_sym_derived_type_definition_token1] = ACTIONS(6834), - [aux_sym_procedure_attribute_token6] = ACTIONS(6834), - [aux_sym_variable_attributes_token2] = ACTIONS(6834), - [aux_sym_variable_attributes_token3] = ACTIONS(6834), - [aux_sym_variable_attributes_token5] = ACTIONS(6834), - [aux_sym__intrinsic_type_token1] = ACTIONS(6834), - [aux_sym__intrinsic_type_token3] = ACTIONS(6834), - [aux_sym__intrinsic_type_token4] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6834), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6834), - [aux_sym_type_qualifier_token1] = ACTIONS(6834), - [aux_sym_type_qualifier_token2] = ACTIONS(6834), - [anon_sym_SEMI] = ACTIONS(6836), - [aux_sym_stop_statement_token1] = ACTIONS(6834), - [aux_sym_stop_statement_token2] = ACTIONS(6834), - [anon_sym_LT_LT_LT] = ACTIONS(6836), - [aux_sym_keyword_statement_token2] = ACTIONS(6834), - [aux_sym_keyword_statement_token3] = ACTIONS(6834), - [aux_sym_data_statement_token1] = ACTIONS(6834), - [aux_sym__inline_if_statement_token1] = ACTIONS(6834), - [aux_sym_end_if_statement_token1] = ACTIONS(6834), - [aux_sym_elseif_clause_token2] = ACTIONS(6834), - [aux_sym_select_case_statement_token1] = ACTIONS(6834), - [aux_sym_block_construct_token1] = ACTIONS(6834), - [aux_sym_format_statement_token1] = ACTIONS(6834), - [aux_sym_inquire_statement_token1] = ACTIONS(6834), - [aux_sym_entry_statement_token1] = ACTIONS(6834), - [aux_sym_logical_expression_token1] = ACTIONS(6836), - [aux_sym_logical_expression_token2] = ACTIONS(6836), - [aux_sym_logical_expression_token3] = ACTIONS(6836), - [aux_sym_logical_expression_token4] = ACTIONS(6836), - [aux_sym_relational_expression_token1] = ACTIONS(6836), - [aux_sym_relational_expression_token2] = ACTIONS(6836), - [aux_sym_relational_expression_token3] = ACTIONS(6836), - [aux_sym_relational_expression_token4] = ACTIONS(6836), - [aux_sym_relational_expression_token5] = ACTIONS(6836), - [anon_sym_SLASH_EQ] = ACTIONS(6836), - [aux_sym_relational_expression_token6] = ACTIONS(6836), - [anon_sym_SLASH_SLASH] = ACTIONS(6836), - [anon_sym_STAR_STAR] = ACTIONS(6836), - [anon_sym_DOT] = ACTIONS(6834), - [anon_sym_LBRACK] = ACTIONS(6836), - [aux_sym_null_literal_token1] = ACTIONS(6834), - [aux_sym_coarray_statement_token1] = ACTIONS(6834), - [aux_sym_coarray_statement_token2] = ACTIONS(6834), - [aux_sym_coarray_statement_token6] = ACTIONS(6834), - [aux_sym_coarray_statement_token8] = ACTIONS(6834), - [aux_sym_coarray_statement_token11] = ACTIONS(6834), - [aux_sym_coarray_statement_token12] = ACTIONS(6834), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6834), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6834), - [aux_sym_identifier_token1] = ACTIONS(6834), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(6836), - }, - [3113] = { - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7108), - [aux_sym_module_statement_token1] = ACTIONS(7110), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7108), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7108), - [aux_sym_subroutine_statement_token1] = ACTIONS(7110), - [aux_sym_function_statement_token1] = ACTIONS(7110), - [aux_sym_language_binding_token1] = ACTIONS(7108), - [aux_sym_procedure_attributes_token1] = ACTIONS(7110), - [aux_sym_procedure_attributes_token3] = ACTIONS(7108), - [aux_sym_use_statement_token2] = ACTIONS(7108), - [anon_sym_COLON_COLON] = ACTIONS(7112), - [aux_sym_implicit_statement_token3] = ACTIONS(7110), - [aux_sym_implicit_statement_token4] = ACTIONS(7108), - [aux_sym_save_statement_token1] = ACTIONS(7108), - [aux_sym_private_statement_token1] = ACTIONS(7108), - [aux_sym_public_statement_token1] = ACTIONS(7108), - [aux_sym_derived_type_definition_token1] = ACTIONS(7108), - [aux_sym_abstract_specifier_token1] = ACTIONS(7108), - [aux_sym_procedure_attribute_token6] = ACTIONS(7108), - [aux_sym_variable_attributes_token1] = ACTIONS(7108), - [aux_sym_variable_attributes_token2] = ACTIONS(7108), - [aux_sym_variable_attributes_token3] = ACTIONS(7108), - [aux_sym_variable_attributes_token4] = ACTIONS(7108), - [aux_sym_variable_attributes_token5] = ACTIONS(7108), - [aux_sym__intrinsic_type_token1] = ACTIONS(7110), - [aux_sym__intrinsic_type_token2] = ACTIONS(7110), - [aux_sym__intrinsic_type_token3] = ACTIONS(7110), - [aux_sym__intrinsic_type_token4] = ACTIONS(7110), - [aux_sym__intrinsic_type_token6] = ACTIONS(7110), - [aux_sym__intrinsic_type_token7] = ACTIONS(7110), - [aux_sym__intrinsic_type_token8] = ACTIONS(7110), - [aux_sym__intrinsic_type_token9] = ACTIONS(7110), - [aux_sym__intrinsic_type_token10] = ACTIONS(7110), - [aux_sym_derived_type_token1] = ACTIONS(7110), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7108), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(7108), - [aux_sym_type_qualifier_token1] = ACTIONS(7108), - [aux_sym_type_qualifier_token2] = ACTIONS(7108), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7110), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7110), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7110), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7110), - [aux_sym_stop_statement_token1] = ACTIONS(7108), - [aux_sym_stop_statement_token2] = ACTIONS(7108), - [aux_sym_keyword_statement_token2] = ACTIONS(7108), - [aux_sym_keyword_statement_token3] = ACTIONS(7108), - [aux_sym_data_statement_token1] = ACTIONS(7108), - [aux_sym__inline_if_statement_token1] = ACTIONS(7108), - [aux_sym_end_if_statement_token1] = ACTIONS(7108), - [aux_sym_elseif_clause_token2] = ACTIONS(7108), - [aux_sym_select_case_statement_token1] = ACTIONS(7108), - [aux_sym_block_construct_token1] = ACTIONS(7108), - [aux_sym_format_statement_token1] = ACTIONS(7108), - [aux_sym_inquire_statement_token1] = ACTIONS(7108), - [aux_sym_entry_statement_token1] = ACTIONS(7108), - [aux_sym_null_literal_token1] = ACTIONS(7108), - [aux_sym_coarray_statement_token1] = ACTIONS(7108), - [aux_sym_coarray_statement_token2] = ACTIONS(7108), - [aux_sym_coarray_statement_token6] = ACTIONS(7108), - [aux_sym_coarray_statement_token8] = ACTIONS(7108), - [aux_sym_coarray_statement_token11] = ACTIONS(7108), - [aux_sym_coarray_statement_token12] = ACTIONS(7108), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7108), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7108), - [aux_sym_identifier_token1] = ACTIONS(7108), - [sym_comment] = ACTIONS(21), - }, - [3114] = { - [sym__variable_declarator] = STATE(5860), - [sym_sized_declarator] = STATE(3393), - [sym__declaration_assignment] = STATE(6128), - [sym__declaration_pointer_association] = STATE(6131), - [sym__declaration_targets] = STATE(7101), - [sym_coarray_declarator] = STATE(5860), - [sym_identifier] = STATE(3277), - [anon_sym_COMMA] = ACTIONS(7114), + [3034] = { + [sym__expression] = STATE(4275), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_module_statement_token1] = ACTIONS(7116), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_subroutine_statement_token1] = ACTIONS(7116), - [aux_sym_function_statement_token1] = ACTIONS(7116), - [aux_sym_procedure_attributes_token1] = ACTIONS(7116), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7118), - [aux_sym_implicit_statement_token3] = ACTIONS(7116), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(7116), - [aux_sym__intrinsic_type_token2] = ACTIONS(7116), - [aux_sym__intrinsic_type_token3] = ACTIONS(7116), - [aux_sym__intrinsic_type_token4] = ACTIONS(7116), - [aux_sym__intrinsic_type_token6] = ACTIONS(7116), - [aux_sym__intrinsic_type_token7] = ACTIONS(7116), - [aux_sym__intrinsic_type_token8] = ACTIONS(7116), - [aux_sym__intrinsic_type_token9] = ACTIONS(7116), - [aux_sym__intrinsic_type_token10] = ACTIONS(7116), - [aux_sym_derived_type_token1] = ACTIONS(7116), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7116), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7116), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7116), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7116), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - }, - [3115] = { - [sym_kind] = STATE(3129), - [sym__argument_list] = STATE(3132), - [anon_sym_COMMA] = ACTIONS(7120), - [anon_sym_LPAREN2] = ACTIONS(7122), - [anon_sym_STAR] = ACTIONS(7124), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7126), - [aux_sym_module_statement_token1] = ACTIONS(7126), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7126), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7126), - [aux_sym_subroutine_statement_token1] = ACTIONS(7126), - [aux_sym_function_statement_token1] = ACTIONS(7126), - [aux_sym_procedure_attributes_token1] = ACTIONS(7126), - [aux_sym_procedure_attributes_token3] = ACTIONS(7126), - [aux_sym_use_statement_token2] = ACTIONS(7126), - [anon_sym_COLON_COLON] = ACTIONS(7120), - [aux_sym_implicit_statement_token3] = ACTIONS(7126), - [aux_sym_implicit_statement_token4] = ACTIONS(7126), - [aux_sym_save_statement_token1] = ACTIONS(7126), - [aux_sym_private_statement_token1] = ACTIONS(7126), - [aux_sym_public_statement_token1] = ACTIONS(7126), - [aux_sym_derived_type_definition_token1] = ACTIONS(7126), - [aux_sym_procedure_attribute_token6] = ACTIONS(7126), - [aux_sym_variable_attributes_token2] = ACTIONS(7126), - [aux_sym_variable_attributes_token3] = ACTIONS(7126), - [aux_sym_variable_attributes_token5] = ACTIONS(7126), - [aux_sym__intrinsic_type_token1] = ACTIONS(7126), - [aux_sym__intrinsic_type_token2] = ACTIONS(7126), - [aux_sym__intrinsic_type_token3] = ACTIONS(7126), - [aux_sym__intrinsic_type_token4] = ACTIONS(7126), - [aux_sym__intrinsic_type_token6] = ACTIONS(7126), - [aux_sym__intrinsic_type_token7] = ACTIONS(7126), - [aux_sym__intrinsic_type_token8] = ACTIONS(7126), - [aux_sym__intrinsic_type_token9] = ACTIONS(7126), - [aux_sym__intrinsic_type_token10] = ACTIONS(7126), - [aux_sym_derived_type_token1] = ACTIONS(7126), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7126), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7126), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7126), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7126), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7126), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7126), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7126), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7126), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7126), - [aux_sym_type_qualifier_token1] = ACTIONS(7126), - [aux_sym_type_qualifier_token2] = ACTIONS(7126), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7126), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7126), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7126), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7126), - [aux_sym_stop_statement_token1] = ACTIONS(7126), - [aux_sym_stop_statement_token2] = ACTIONS(7126), - [aux_sym_keyword_statement_token2] = ACTIONS(7126), - [aux_sym_keyword_statement_token3] = ACTIONS(7126), - [aux_sym_data_statement_token1] = ACTIONS(7126), - [aux_sym__inline_if_statement_token1] = ACTIONS(7126), - [aux_sym_end_if_statement_token1] = ACTIONS(7126), - [aux_sym_elseif_clause_token2] = ACTIONS(7126), - [aux_sym_select_case_statement_token1] = ACTIONS(7126), - [aux_sym_block_construct_token1] = ACTIONS(7126), - [aux_sym_format_statement_token1] = ACTIONS(7126), - [aux_sym_inquire_statement_token1] = ACTIONS(7126), - [aux_sym_entry_statement_token1] = ACTIONS(7126), - [aux_sym_null_literal_token1] = ACTIONS(7126), - [aux_sym_coarray_statement_token1] = ACTIONS(7126), - [aux_sym_coarray_statement_token2] = ACTIONS(7126), - [aux_sym_coarray_statement_token6] = ACTIONS(7126), - [aux_sym_coarray_statement_token8] = ACTIONS(7126), - [aux_sym_coarray_statement_token11] = ACTIONS(7126), - [aux_sym_coarray_statement_token12] = ACTIONS(7126), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7126), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7126), - [aux_sym_identifier_token1] = ACTIONS(7126), - [sym_comment] = ACTIONS(21), - }, - [3116] = { - [sym_assignment] = STATE(6089), - [sym_operator] = STATE(6089), - [sym_defined_io_procedure] = STATE(6089), - [sym__generic_procedure] = STATE(6089), - [sym_identifier] = STATE(6089), - [sym__end_of_statement] = STATE(2867), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_assignment_token1] = ACTIONS(5594), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7128), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7130), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7130), - }, - [3117] = { - [sym_assignment] = STATE(5933), - [sym_operator] = STATE(5933), - [sym_defined_io_procedure] = STATE(5933), - [sym__generic_procedure] = STATE(5933), - [sym_identifier] = STATE(5933), - [sym__end_of_statement] = STATE(2847), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_assignment_token1] = ACTIONS(5594), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7132), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7134), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7134), - }, - [3118] = { - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_RPAREN] = ACTIONS(7136), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_STAR] = ACTIONS(7136), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7138), - [aux_sym_module_statement_token1] = ACTIONS(7138), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7138), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7138), - [aux_sym_subroutine_statement_token1] = ACTIONS(7138), - [aux_sym_function_statement_token1] = ACTIONS(7138), - [aux_sym_procedure_attributes_token1] = ACTIONS(7138), - [aux_sym_procedure_attributes_token3] = ACTIONS(7138), - [aux_sym_use_statement_token2] = ACTIONS(7138), - [anon_sym_COLON_COLON] = ACTIONS(7136), - [aux_sym_implicit_statement_token3] = ACTIONS(7138), - [aux_sym_implicit_statement_token4] = ACTIONS(7138), - [aux_sym_save_statement_token1] = ACTIONS(7138), - [aux_sym_private_statement_token1] = ACTIONS(7138), - [aux_sym_public_statement_token1] = ACTIONS(7138), - [aux_sym_derived_type_definition_token1] = ACTIONS(7138), - [aux_sym_procedure_attribute_token6] = ACTIONS(7138), - [aux_sym_variable_attributes_token2] = ACTIONS(7138), - [aux_sym_variable_attributes_token3] = ACTIONS(7138), - [aux_sym_variable_attributes_token5] = ACTIONS(7138), - [aux_sym__intrinsic_type_token1] = ACTIONS(7138), - [aux_sym__intrinsic_type_token2] = ACTIONS(7138), - [aux_sym__intrinsic_type_token3] = ACTIONS(7138), - [aux_sym__intrinsic_type_token4] = ACTIONS(7138), - [aux_sym__intrinsic_type_token6] = ACTIONS(7138), - [aux_sym__intrinsic_type_token7] = ACTIONS(7138), - [aux_sym__intrinsic_type_token8] = ACTIONS(7138), - [aux_sym__intrinsic_type_token9] = ACTIONS(7138), - [aux_sym__intrinsic_type_token10] = ACTIONS(7138), - [aux_sym_derived_type_token1] = ACTIONS(7138), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7138), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7138), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7138), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7138), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7138), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7138), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7138), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7138), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7138), - [aux_sym_type_qualifier_token1] = ACTIONS(7138), - [aux_sym_type_qualifier_token2] = ACTIONS(7138), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7138), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7138), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7138), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7138), - [aux_sym_stop_statement_token1] = ACTIONS(7138), - [aux_sym_stop_statement_token2] = ACTIONS(7138), - [aux_sym_keyword_statement_token2] = ACTIONS(7138), - [aux_sym_keyword_statement_token3] = ACTIONS(7138), - [aux_sym_data_statement_token1] = ACTIONS(7138), - [aux_sym__inline_if_statement_token1] = ACTIONS(7138), - [aux_sym_end_if_statement_token1] = ACTIONS(7138), - [aux_sym_elseif_clause_token2] = ACTIONS(7138), - [aux_sym_select_case_statement_token1] = ACTIONS(7138), - [aux_sym_block_construct_token1] = ACTIONS(7138), - [aux_sym_format_statement_token1] = ACTIONS(7138), - [aux_sym_inquire_statement_token1] = ACTIONS(7138), - [aux_sym_entry_statement_token1] = ACTIONS(7138), - [aux_sym_null_literal_token1] = ACTIONS(7138), - [aux_sym_coarray_statement_token1] = ACTIONS(7138), - [aux_sym_coarray_statement_token2] = ACTIONS(7138), - [aux_sym_coarray_statement_token6] = ACTIONS(7138), - [aux_sym_coarray_statement_token8] = ACTIONS(7138), - [aux_sym_coarray_statement_token11] = ACTIONS(7138), - [aux_sym_coarray_statement_token12] = ACTIONS(7138), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7138), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7138), - [aux_sym_identifier_token1] = ACTIONS(7138), - [sym_comment] = ACTIONS(21), - }, - [3119] = { - [anon_sym_COMMA] = ACTIONS(5798), - [anon_sym_RPAREN] = ACTIONS(5798), - [anon_sym_LPAREN2] = ACTIONS(5798), - [anon_sym_STAR] = ACTIONS(5798), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5806), - [aux_sym_module_statement_token1] = ACTIONS(5806), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5806), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5806), - [aux_sym_subroutine_statement_token1] = ACTIONS(5806), - [aux_sym_function_statement_token1] = ACTIONS(5806), - [aux_sym_procedure_attributes_token1] = ACTIONS(5806), - [aux_sym_procedure_attributes_token3] = ACTIONS(5806), - [aux_sym_use_statement_token2] = ACTIONS(5806), - [anon_sym_COLON_COLON] = ACTIONS(5798), - [aux_sym_implicit_statement_token3] = ACTIONS(5806), - [aux_sym_implicit_statement_token4] = ACTIONS(5806), - [aux_sym_save_statement_token1] = ACTIONS(5806), - [aux_sym_private_statement_token1] = ACTIONS(5806), - [aux_sym_public_statement_token1] = ACTIONS(5806), - [aux_sym_derived_type_definition_token1] = ACTIONS(5806), - [aux_sym_procedure_attribute_token6] = ACTIONS(5806), - [aux_sym_variable_attributes_token2] = ACTIONS(5806), - [aux_sym_variable_attributes_token3] = ACTIONS(5806), - [aux_sym_variable_attributes_token5] = ACTIONS(5806), - [aux_sym__intrinsic_type_token1] = ACTIONS(5806), - [aux_sym__intrinsic_type_token2] = ACTIONS(5806), - [aux_sym__intrinsic_type_token3] = ACTIONS(5806), - [aux_sym__intrinsic_type_token4] = ACTIONS(5806), - [aux_sym__intrinsic_type_token6] = ACTIONS(5806), - [aux_sym__intrinsic_type_token7] = ACTIONS(5806), - [aux_sym__intrinsic_type_token8] = ACTIONS(5806), - [aux_sym__intrinsic_type_token9] = ACTIONS(5806), - [aux_sym__intrinsic_type_token10] = ACTIONS(5806), - [aux_sym_derived_type_token1] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5806), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5806), - [aux_sym_type_qualifier_token1] = ACTIONS(5806), - [aux_sym_type_qualifier_token2] = ACTIONS(5806), - [aux_sym_procedure_qualifier_token1] = ACTIONS(5806), - [aux_sym_procedure_qualifier_token2] = ACTIONS(5806), - [aux_sym_procedure_qualifier_token3] = ACTIONS(5806), - [aux_sym_procedure_qualifier_token4] = ACTIONS(5806), - [aux_sym_stop_statement_token1] = ACTIONS(5806), - [aux_sym_stop_statement_token2] = ACTIONS(5806), - [aux_sym_keyword_statement_token2] = ACTIONS(5806), - [aux_sym_keyword_statement_token3] = ACTIONS(5806), - [aux_sym_data_statement_token1] = ACTIONS(5806), - [aux_sym__inline_if_statement_token1] = ACTIONS(5806), - [aux_sym_end_if_statement_token1] = ACTIONS(5806), - [aux_sym_elseif_clause_token2] = ACTIONS(5806), - [aux_sym_select_case_statement_token1] = ACTIONS(5806), - [aux_sym_block_construct_token1] = ACTIONS(5806), - [aux_sym_format_statement_token1] = ACTIONS(5806), - [aux_sym_inquire_statement_token1] = ACTIONS(5806), - [aux_sym_entry_statement_token1] = ACTIONS(5806), - [aux_sym_null_literal_token1] = ACTIONS(5806), - [aux_sym_coarray_statement_token1] = ACTIONS(5806), - [aux_sym_coarray_statement_token2] = ACTIONS(5806), - [aux_sym_coarray_statement_token6] = ACTIONS(5806), - [aux_sym_coarray_statement_token8] = ACTIONS(5806), - [aux_sym_coarray_statement_token11] = ACTIONS(5806), - [aux_sym_coarray_statement_token12] = ACTIONS(5806), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5806), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5806), - [aux_sym_identifier_token1] = ACTIONS(5806), - [sym_comment] = ACTIONS(21), - }, - [3120] = { - [sym_assignment] = STATE(5934), - [sym_operator] = STATE(5934), - [sym_defined_io_procedure] = STATE(5934), - [sym__generic_procedure] = STATE(5934), - [sym_identifier] = STATE(5934), - [sym__end_of_statement] = STATE(2785), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_assignment_token1] = ACTIONS(5594), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7140), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7142), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7142), - }, - [3121] = { - [sym_assignment] = STATE(6061), - [sym_operator] = STATE(6061), - [sym_defined_io_procedure] = STATE(6061), - [sym__generic_procedure] = STATE(6061), - [sym_identifier] = STATE(6061), - [sym__end_of_statement] = STATE(3081), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_assignment_token1] = ACTIONS(5594), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7144), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7146), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7146), - }, - [3122] = { - [sym_assignment] = STATE(6062), - [sym_operator] = STATE(6062), - [sym_defined_io_procedure] = STATE(6062), - [sym__generic_procedure] = STATE(6062), - [sym_identifier] = STATE(6062), - [sym__end_of_statement] = STATE(3066), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_assignment_token1] = ACTIONS(5594), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5456), - [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7148), - [aux_sym_implicit_statement_token4] = ACTIONS(5456), - [aux_sym_save_statement_token1] = ACTIONS(5456), - [aux_sym_private_statement_token1] = ACTIONS(5456), - [aux_sym_public_statement_token1] = ACTIONS(5456), - [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5456), - [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5456), - [aux_sym__intrinsic_type_token1] = ACTIONS(5456), - [aux_sym__intrinsic_type_token3] = ACTIONS(5456), - [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5456), - [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7150), - [aux_sym_stop_statement_token1] = ACTIONS(5456), - [aux_sym_stop_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token2] = ACTIONS(5456), - [aux_sym_keyword_statement_token3] = ACTIONS(5456), - [aux_sym_data_statement_token1] = ACTIONS(5456), - [aux_sym__inline_if_statement_token1] = ACTIONS(5456), - [aux_sym_end_if_statement_token1] = ACTIONS(5456), - [aux_sym_elseif_clause_token2] = ACTIONS(5456), - [aux_sym_select_case_statement_token1] = ACTIONS(5462), - [aux_sym_block_construct_token1] = ACTIONS(5456), - [aux_sym_format_statement_token1] = ACTIONS(5456), - [aux_sym_inquire_statement_token1] = ACTIONS(5456), - [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_null_literal_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_statement_token2] = ACTIONS(5456), - [aux_sym_coarray_statement_token6] = ACTIONS(5456), - [aux_sym_coarray_statement_token8] = ACTIONS(5456), - [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7150), - }, - [3123] = { - [anon_sym_COMMA] = ACTIONS(7152), - [anon_sym_RPAREN] = ACTIONS(7152), - [anon_sym_LPAREN2] = ACTIONS(7152), - [anon_sym_STAR] = ACTIONS(7152), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7154), - [aux_sym_module_statement_token1] = ACTIONS(7154), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7154), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7154), - [aux_sym_subroutine_statement_token1] = ACTIONS(7154), - [aux_sym_function_statement_token1] = ACTIONS(7154), - [aux_sym_procedure_attributes_token1] = ACTIONS(7154), - [aux_sym_procedure_attributes_token3] = ACTIONS(7154), - [aux_sym_use_statement_token2] = ACTIONS(7154), - [anon_sym_COLON_COLON] = ACTIONS(7152), - [aux_sym_implicit_statement_token3] = ACTIONS(7154), - [aux_sym_implicit_statement_token4] = ACTIONS(7154), - [aux_sym_save_statement_token1] = ACTIONS(7154), - [aux_sym_private_statement_token1] = ACTIONS(7154), - [aux_sym_public_statement_token1] = ACTIONS(7154), - [aux_sym_derived_type_definition_token1] = ACTIONS(7154), - [aux_sym_procedure_attribute_token6] = ACTIONS(7154), - [aux_sym_variable_attributes_token2] = ACTIONS(7154), - [aux_sym_variable_attributes_token3] = ACTIONS(7154), - [aux_sym_variable_attributes_token5] = ACTIONS(7154), - [aux_sym__intrinsic_type_token1] = ACTIONS(7154), - [aux_sym__intrinsic_type_token2] = ACTIONS(7154), - [aux_sym__intrinsic_type_token3] = ACTIONS(7154), - [aux_sym__intrinsic_type_token4] = ACTIONS(7154), - [aux_sym__intrinsic_type_token6] = ACTIONS(7154), - [aux_sym__intrinsic_type_token7] = ACTIONS(7154), - [aux_sym__intrinsic_type_token8] = ACTIONS(7154), - [aux_sym__intrinsic_type_token9] = ACTIONS(7154), - [aux_sym__intrinsic_type_token10] = ACTIONS(7154), - [aux_sym_derived_type_token1] = ACTIONS(7154), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7154), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7154), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7154), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7154), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7154), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7154), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7154), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7154), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7154), - [aux_sym_type_qualifier_token1] = ACTIONS(7154), - [aux_sym_type_qualifier_token2] = ACTIONS(7154), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7154), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7154), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7154), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7154), - [aux_sym_stop_statement_token1] = ACTIONS(7154), - [aux_sym_stop_statement_token2] = ACTIONS(7154), - [aux_sym_keyword_statement_token2] = ACTIONS(7154), - [aux_sym_keyword_statement_token3] = ACTIONS(7154), - [aux_sym_data_statement_token1] = ACTIONS(7154), - [aux_sym__inline_if_statement_token1] = ACTIONS(7154), - [aux_sym_end_if_statement_token1] = ACTIONS(7154), - [aux_sym_elseif_clause_token2] = ACTIONS(7154), - [aux_sym_select_case_statement_token1] = ACTIONS(7154), - [aux_sym_block_construct_token1] = ACTIONS(7154), - [aux_sym_format_statement_token1] = ACTIONS(7154), - [aux_sym_inquire_statement_token1] = ACTIONS(7154), - [aux_sym_entry_statement_token1] = ACTIONS(7154), - [aux_sym_null_literal_token1] = ACTIONS(7154), - [aux_sym_coarray_statement_token1] = ACTIONS(7154), - [aux_sym_coarray_statement_token2] = ACTIONS(7154), - [aux_sym_coarray_statement_token6] = ACTIONS(7154), - [aux_sym_coarray_statement_token8] = ACTIONS(7154), - [aux_sym_coarray_statement_token11] = ACTIONS(7154), - [aux_sym_coarray_statement_token12] = ACTIONS(7154), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7154), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7154), - [aux_sym_identifier_token1] = ACTIONS(7154), - [sym_comment] = ACTIONS(21), - }, - [3124] = { - [sym_assignment] = STATE(6042), - [sym_operator] = STATE(6042), - [sym_defined_io_procedure] = STATE(6042), - [sym__generic_procedure] = STATE(6042), - [sym_identifier] = STATE(6042), - [sym__end_of_statement] = STATE(2754), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_assignment_token1] = ACTIONS(5594), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7156), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), [aux_sym_public_statement_token1] = ACTIONS(5456), [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), [aux_sym_variable_attributes_token2] = ACTIONS(5456), [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), [aux_sym_variable_attributes_token5] = ACTIONS(5456), [aux_sym__intrinsic_type_token1] = ACTIONS(5456), [aux_sym__intrinsic_type_token3] = ACTIONS(5456), [aux_sym__intrinsic_type_token4] = ACTIONS(5458), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7158), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -450784,7 +442948,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -450795,134 +442965,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7158), - }, - [3125] = { - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_STAR] = ACTIONS(7160), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7162), - [aux_sym_module_statement_token1] = ACTIONS(7162), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7162), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7162), - [aux_sym_subroutine_statement_token1] = ACTIONS(7162), - [aux_sym_function_statement_token1] = ACTIONS(7162), - [aux_sym_procedure_attributes_token1] = ACTIONS(7162), - [aux_sym_procedure_attributes_token3] = ACTIONS(7162), - [aux_sym_use_statement_token2] = ACTIONS(7162), - [anon_sym_COLON_COLON] = ACTIONS(7160), - [aux_sym_implicit_statement_token3] = ACTIONS(7162), - [aux_sym_implicit_statement_token4] = ACTIONS(7162), - [aux_sym_save_statement_token1] = ACTIONS(7162), - [aux_sym_private_statement_token1] = ACTIONS(7162), - [aux_sym_public_statement_token1] = ACTIONS(7162), - [aux_sym_derived_type_definition_token1] = ACTIONS(7162), - [aux_sym_procedure_attribute_token6] = ACTIONS(7162), - [aux_sym_variable_attributes_token2] = ACTIONS(7162), - [aux_sym_variable_attributes_token3] = ACTIONS(7162), - [aux_sym_variable_attributes_token5] = ACTIONS(7162), - [aux_sym__intrinsic_type_token1] = ACTIONS(7162), - [aux_sym__intrinsic_type_token2] = ACTIONS(7162), - [aux_sym__intrinsic_type_token3] = ACTIONS(7162), - [aux_sym__intrinsic_type_token4] = ACTIONS(7162), - [aux_sym__intrinsic_type_token6] = ACTIONS(7162), - [aux_sym__intrinsic_type_token7] = ACTIONS(7162), - [aux_sym__intrinsic_type_token8] = ACTIONS(7162), - [aux_sym__intrinsic_type_token9] = ACTIONS(7162), - [aux_sym__intrinsic_type_token10] = ACTIONS(7162), - [aux_sym_derived_type_token1] = ACTIONS(7162), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7162), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7162), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7162), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7162), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7162), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7162), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7162), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7162), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7162), - [aux_sym_type_qualifier_token1] = ACTIONS(7162), - [aux_sym_type_qualifier_token2] = ACTIONS(7162), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7162), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7162), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7162), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7162), - [aux_sym_stop_statement_token1] = ACTIONS(7162), - [aux_sym_stop_statement_token2] = ACTIONS(7162), - [aux_sym_keyword_statement_token2] = ACTIONS(7162), - [aux_sym_keyword_statement_token3] = ACTIONS(7162), - [aux_sym_data_statement_token1] = ACTIONS(7162), - [aux_sym__inline_if_statement_token1] = ACTIONS(7162), - [aux_sym_end_if_statement_token1] = ACTIONS(7162), - [aux_sym_elseif_clause_token2] = ACTIONS(7162), - [aux_sym_select_case_statement_token1] = ACTIONS(7162), - [aux_sym_block_construct_token1] = ACTIONS(7162), - [aux_sym_format_statement_token1] = ACTIONS(7162), - [aux_sym_inquire_statement_token1] = ACTIONS(7162), - [aux_sym_entry_statement_token1] = ACTIONS(7162), - [aux_sym_null_literal_token1] = ACTIONS(7162), - [aux_sym_coarray_statement_token1] = ACTIONS(7162), - [aux_sym_coarray_statement_token2] = ACTIONS(7162), - [aux_sym_coarray_statement_token6] = ACTIONS(7162), - [aux_sym_coarray_statement_token8] = ACTIONS(7162), - [aux_sym_coarray_statement_token11] = ACTIONS(7162), - [aux_sym_coarray_statement_token12] = ACTIONS(7162), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7162), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7162), - [aux_sym_identifier_token1] = ACTIONS(7162), - [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3126] = { - [sym_assignment] = STATE(6088), - [sym_operator] = STATE(6088), - [sym_defined_io_procedure] = STATE(6088), - [sym__generic_procedure] = STATE(6088), - [sym_identifier] = STATE(6088), - [sym__end_of_statement] = STATE(2844), - [anon_sym_LPAREN2] = ACTIONS(4325), + [3035] = { + [sym__expression] = STATE(4292), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_assignment_token1] = ACTIONS(5594), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7164), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), [aux_sym_public_statement_token1] = ACTIONS(5456), [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), [aux_sym_variable_attributes_token2] = ACTIONS(5456), [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), [aux_sym_variable_attributes_token5] = ACTIONS(5456), [aux_sym__intrinsic_type_token1] = ACTIONS(5456), [aux_sym__intrinsic_type_token3] = ACTIONS(5456), [aux_sym__intrinsic_type_token4] = ACTIONS(5458), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7166), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -450936,7 +443038,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), - [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), @@ -450947,58 +443055,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7166), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3127] = { - [sym_assignment] = STATE(6043), - [sym_operator] = STATE(6043), - [sym_defined_io_procedure] = STATE(6043), - [sym__generic_procedure] = STATE(6043), - [sym_identifier] = STATE(6043), - [sym__end_of_statement] = STATE(2756), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), + [3036] = { + [sym__name] = STATE(6578), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(1034), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_program_statement_token1] = ACTIONS(7072), [aux_sym_end_program_statement_token1] = ACTIONS(5454), - [aux_sym_assignment_token1] = ACTIONS(5594), - [aux_sym_operator_token1] = ACTIONS(5596), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5598), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5598), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7168), + [anon_sym_EQ_GT] = ACTIONS(4347), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), [aux_sym_public_statement_token1] = ACTIONS(5456), [aux_sym_derived_type_definition_token1] = ACTIONS(5456), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), [aux_sym_procedure_attribute_token6] = ACTIONS(5456), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), [aux_sym_variable_attributes_token2] = ACTIONS(5456), [aux_sym_variable_attributes_token3] = ACTIONS(5456), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), [aux_sym_variable_attributes_token5] = ACTIONS(5456), [aux_sym__intrinsic_type_token1] = ACTIONS(5456), [aux_sym__intrinsic_type_token3] = ACTIONS(5456), [aux_sym__intrinsic_type_token4] = ACTIONS(5458), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(7170), + [anon_sym_SEMI] = ACTIONS(7074), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -451012,1106 +443123,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), [aux_sym_coarray_statement_token6] = ACTIONS(5456), [aux_sym_coarray_statement_token8] = ACTIONS(5456), [aux_sym_coarray_statement_token11] = ACTIONS(5456), - [aux_sym_coarray_statement_token12] = ACTIONS(5456), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), - [aux_sym_identifier_token1] = ACTIONS(5456), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7170), - }, - [3128] = { - [anon_sym_COMMA] = ACTIONS(7172), - [anon_sym_RPAREN] = ACTIONS(7172), - [anon_sym_LPAREN2] = ACTIONS(7172), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7174), - [aux_sym_module_statement_token1] = ACTIONS(7174), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7174), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7174), - [aux_sym_subroutine_statement_token1] = ACTIONS(7174), - [aux_sym_function_statement_token1] = ACTIONS(7174), - [aux_sym_procedure_attributes_token1] = ACTIONS(7174), - [aux_sym_procedure_attributes_token3] = ACTIONS(7174), - [aux_sym_use_statement_token2] = ACTIONS(7174), - [anon_sym_COLON_COLON] = ACTIONS(7172), - [aux_sym_implicit_statement_token3] = ACTIONS(7174), - [aux_sym_implicit_statement_token4] = ACTIONS(7174), - [aux_sym_save_statement_token1] = ACTIONS(7174), - [aux_sym_private_statement_token1] = ACTIONS(7174), - [aux_sym_public_statement_token1] = ACTIONS(7174), - [aux_sym_derived_type_definition_token1] = ACTIONS(7174), - [aux_sym_procedure_attribute_token6] = ACTIONS(7174), - [aux_sym_variable_attributes_token2] = ACTIONS(7174), - [aux_sym_variable_attributes_token3] = ACTIONS(7174), - [aux_sym_variable_attributes_token5] = ACTIONS(7174), - [aux_sym__intrinsic_type_token1] = ACTIONS(7174), - [aux_sym__intrinsic_type_token2] = ACTIONS(7174), - [aux_sym__intrinsic_type_token3] = ACTIONS(7174), - [aux_sym__intrinsic_type_token4] = ACTIONS(7174), - [aux_sym__intrinsic_type_token6] = ACTIONS(7174), - [aux_sym__intrinsic_type_token7] = ACTIONS(7174), - [aux_sym__intrinsic_type_token8] = ACTIONS(7174), - [aux_sym__intrinsic_type_token9] = ACTIONS(7174), - [aux_sym__intrinsic_type_token10] = ACTIONS(7174), - [aux_sym_derived_type_token1] = ACTIONS(7174), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7174), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7174), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7174), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7174), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7174), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7174), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7174), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7174), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7174), - [aux_sym_type_qualifier_token1] = ACTIONS(7174), - [aux_sym_type_qualifier_token2] = ACTIONS(7174), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7174), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7174), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7174), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7174), - [aux_sym_stop_statement_token1] = ACTIONS(7174), - [aux_sym_stop_statement_token2] = ACTIONS(7174), - [aux_sym_keyword_statement_token2] = ACTIONS(7174), - [aux_sym_keyword_statement_token3] = ACTIONS(7174), - [aux_sym_data_statement_token1] = ACTIONS(7174), - [aux_sym__inline_if_statement_token1] = ACTIONS(7174), - [aux_sym_end_if_statement_token1] = ACTIONS(7174), - [aux_sym_elseif_clause_token2] = ACTIONS(7174), - [aux_sym_select_case_statement_token1] = ACTIONS(7174), - [aux_sym_block_construct_token1] = ACTIONS(7174), - [aux_sym_format_statement_token1] = ACTIONS(7174), - [aux_sym_inquire_statement_token1] = ACTIONS(7174), - [aux_sym_entry_statement_token1] = ACTIONS(7174), - [aux_sym_null_literal_token1] = ACTIONS(7174), - [aux_sym_coarray_statement_token1] = ACTIONS(7174), - [aux_sym_coarray_statement_token2] = ACTIONS(7174), - [aux_sym_coarray_statement_token6] = ACTIONS(7174), - [aux_sym_coarray_statement_token8] = ACTIONS(7174), - [aux_sym_coarray_statement_token11] = ACTIONS(7174), - [aux_sym_coarray_statement_token12] = ACTIONS(7174), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7174), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7174), - [aux_sym_identifier_token1] = ACTIONS(7174), - [sym_comment] = ACTIONS(21), - }, - [3129] = { - [anon_sym_COMMA] = ACTIONS(7176), - [anon_sym_RPAREN] = ACTIONS(7176), - [anon_sym_LPAREN2] = ACTIONS(7176), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7178), - [aux_sym_module_statement_token1] = ACTIONS(7178), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7178), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7178), - [aux_sym_subroutine_statement_token1] = ACTIONS(7178), - [aux_sym_function_statement_token1] = ACTIONS(7178), - [aux_sym_procedure_attributes_token1] = ACTIONS(7178), - [aux_sym_procedure_attributes_token3] = ACTIONS(7178), - [aux_sym_use_statement_token2] = ACTIONS(7178), - [anon_sym_COLON_COLON] = ACTIONS(7176), - [aux_sym_implicit_statement_token3] = ACTIONS(7178), - [aux_sym_implicit_statement_token4] = ACTIONS(7178), - [aux_sym_save_statement_token1] = ACTIONS(7178), - [aux_sym_private_statement_token1] = ACTIONS(7178), - [aux_sym_public_statement_token1] = ACTIONS(7178), - [aux_sym_derived_type_definition_token1] = ACTIONS(7178), - [aux_sym_procedure_attribute_token6] = ACTIONS(7178), - [aux_sym_variable_attributes_token2] = ACTIONS(7178), - [aux_sym_variable_attributes_token3] = ACTIONS(7178), - [aux_sym_variable_attributes_token5] = ACTIONS(7178), - [aux_sym__intrinsic_type_token1] = ACTIONS(7178), - [aux_sym__intrinsic_type_token2] = ACTIONS(7178), - [aux_sym__intrinsic_type_token3] = ACTIONS(7178), - [aux_sym__intrinsic_type_token4] = ACTIONS(7178), - [aux_sym__intrinsic_type_token6] = ACTIONS(7178), - [aux_sym__intrinsic_type_token7] = ACTIONS(7178), - [aux_sym__intrinsic_type_token8] = ACTIONS(7178), - [aux_sym__intrinsic_type_token9] = ACTIONS(7178), - [aux_sym__intrinsic_type_token10] = ACTIONS(7178), - [aux_sym_derived_type_token1] = ACTIONS(7178), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7178), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7178), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7178), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7178), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7178), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7178), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7178), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7178), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7178), - [aux_sym_type_qualifier_token1] = ACTIONS(7178), - [aux_sym_type_qualifier_token2] = ACTIONS(7178), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7178), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7178), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7178), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7178), - [aux_sym_stop_statement_token1] = ACTIONS(7178), - [aux_sym_stop_statement_token2] = ACTIONS(7178), - [aux_sym_keyword_statement_token2] = ACTIONS(7178), - [aux_sym_keyword_statement_token3] = ACTIONS(7178), - [aux_sym_data_statement_token1] = ACTIONS(7178), - [aux_sym__inline_if_statement_token1] = ACTIONS(7178), - [aux_sym_end_if_statement_token1] = ACTIONS(7178), - [aux_sym_elseif_clause_token2] = ACTIONS(7178), - [aux_sym_select_case_statement_token1] = ACTIONS(7178), - [aux_sym_block_construct_token1] = ACTIONS(7178), - [aux_sym_format_statement_token1] = ACTIONS(7178), - [aux_sym_inquire_statement_token1] = ACTIONS(7178), - [aux_sym_entry_statement_token1] = ACTIONS(7178), - [aux_sym_null_literal_token1] = ACTIONS(7178), - [aux_sym_coarray_statement_token1] = ACTIONS(7178), - [aux_sym_coarray_statement_token2] = ACTIONS(7178), - [aux_sym_coarray_statement_token6] = ACTIONS(7178), - [aux_sym_coarray_statement_token8] = ACTIONS(7178), - [aux_sym_coarray_statement_token11] = ACTIONS(7178), - [aux_sym_coarray_statement_token12] = ACTIONS(7178), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7178), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7178), - [aux_sym_identifier_token1] = ACTIONS(7178), - [sym_comment] = ACTIONS(21), - }, - [3130] = { - [anon_sym_COMMA] = ACTIONS(7180), - [anon_sym_RPAREN] = ACTIONS(7180), - [anon_sym_LPAREN2] = ACTIONS(7180), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7182), - [aux_sym_module_statement_token1] = ACTIONS(7182), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7182), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7182), - [aux_sym_subroutine_statement_token1] = ACTIONS(7182), - [aux_sym_function_statement_token1] = ACTIONS(7182), - [aux_sym_procedure_attributes_token1] = ACTIONS(7182), - [aux_sym_procedure_attributes_token3] = ACTIONS(7182), - [aux_sym_use_statement_token2] = ACTIONS(7182), - [anon_sym_COLON_COLON] = ACTIONS(7180), - [aux_sym_implicit_statement_token3] = ACTIONS(7182), - [aux_sym_implicit_statement_token4] = ACTIONS(7182), - [aux_sym_save_statement_token1] = ACTIONS(7182), - [aux_sym_private_statement_token1] = ACTIONS(7182), - [aux_sym_public_statement_token1] = ACTIONS(7182), - [aux_sym_derived_type_definition_token1] = ACTIONS(7182), - [aux_sym_procedure_attribute_token6] = ACTIONS(7182), - [aux_sym_variable_attributes_token2] = ACTIONS(7182), - [aux_sym_variable_attributes_token3] = ACTIONS(7182), - [aux_sym_variable_attributes_token5] = ACTIONS(7182), - [aux_sym__intrinsic_type_token1] = ACTIONS(7182), - [aux_sym__intrinsic_type_token2] = ACTIONS(7182), - [aux_sym__intrinsic_type_token3] = ACTIONS(7182), - [aux_sym__intrinsic_type_token4] = ACTIONS(7182), - [aux_sym__intrinsic_type_token6] = ACTIONS(7182), - [aux_sym__intrinsic_type_token7] = ACTIONS(7182), - [aux_sym__intrinsic_type_token8] = ACTIONS(7182), - [aux_sym__intrinsic_type_token9] = ACTIONS(7182), - [aux_sym__intrinsic_type_token10] = ACTIONS(7182), - [aux_sym_derived_type_token1] = ACTIONS(7182), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7182), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7182), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7182), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7182), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7182), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7182), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7182), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7182), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7182), - [aux_sym_type_qualifier_token1] = ACTIONS(7182), - [aux_sym_type_qualifier_token2] = ACTIONS(7182), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7182), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7182), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7182), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7182), - [aux_sym_stop_statement_token1] = ACTIONS(7182), - [aux_sym_stop_statement_token2] = ACTIONS(7182), - [aux_sym_keyword_statement_token2] = ACTIONS(7182), - [aux_sym_keyword_statement_token3] = ACTIONS(7182), - [aux_sym_data_statement_token1] = ACTIONS(7182), - [aux_sym__inline_if_statement_token1] = ACTIONS(7182), - [aux_sym_end_if_statement_token1] = ACTIONS(7182), - [aux_sym_elseif_clause_token2] = ACTIONS(7182), - [aux_sym_select_case_statement_token1] = ACTIONS(7182), - [aux_sym_block_construct_token1] = ACTIONS(7182), - [aux_sym_format_statement_token1] = ACTIONS(7182), - [aux_sym_inquire_statement_token1] = ACTIONS(7182), - [aux_sym_entry_statement_token1] = ACTIONS(7182), - [aux_sym_null_literal_token1] = ACTIONS(7182), - [aux_sym_coarray_statement_token1] = ACTIONS(7182), - [aux_sym_coarray_statement_token2] = ACTIONS(7182), - [aux_sym_coarray_statement_token6] = ACTIONS(7182), - [aux_sym_coarray_statement_token8] = ACTIONS(7182), - [aux_sym_coarray_statement_token11] = ACTIONS(7182), - [aux_sym_coarray_statement_token12] = ACTIONS(7182), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7182), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7182), - [aux_sym_identifier_token1] = ACTIONS(7182), - [sym_comment] = ACTIONS(21), - }, - [3131] = { - [anon_sym_COMMA] = ACTIONS(7184), - [anon_sym_RPAREN] = ACTIONS(7184), - [anon_sym_LPAREN2] = ACTIONS(7184), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7186), - [aux_sym_module_statement_token1] = ACTIONS(7186), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7186), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7186), - [aux_sym_subroutine_statement_token1] = ACTIONS(7186), - [aux_sym_function_statement_token1] = ACTIONS(7186), - [aux_sym_procedure_attributes_token1] = ACTIONS(7186), - [aux_sym_procedure_attributes_token3] = ACTIONS(7186), - [aux_sym_use_statement_token2] = ACTIONS(7186), - [anon_sym_COLON_COLON] = ACTIONS(7184), - [aux_sym_implicit_statement_token3] = ACTIONS(7186), - [aux_sym_implicit_statement_token4] = ACTIONS(7186), - [aux_sym_save_statement_token1] = ACTIONS(7186), - [aux_sym_private_statement_token1] = ACTIONS(7186), - [aux_sym_public_statement_token1] = ACTIONS(7186), - [aux_sym_derived_type_definition_token1] = ACTIONS(7186), - [aux_sym_procedure_attribute_token6] = ACTIONS(7186), - [aux_sym_variable_attributes_token2] = ACTIONS(7186), - [aux_sym_variable_attributes_token3] = ACTIONS(7186), - [aux_sym_variable_attributes_token5] = ACTIONS(7186), - [aux_sym__intrinsic_type_token1] = ACTIONS(7186), - [aux_sym__intrinsic_type_token2] = ACTIONS(7186), - [aux_sym__intrinsic_type_token3] = ACTIONS(7186), - [aux_sym__intrinsic_type_token4] = ACTIONS(7186), - [aux_sym__intrinsic_type_token6] = ACTIONS(7186), - [aux_sym__intrinsic_type_token7] = ACTIONS(7186), - [aux_sym__intrinsic_type_token8] = ACTIONS(7186), - [aux_sym__intrinsic_type_token9] = ACTIONS(7186), - [aux_sym__intrinsic_type_token10] = ACTIONS(7186), - [aux_sym_derived_type_token1] = ACTIONS(7186), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7186), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7186), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7186), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7186), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7186), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7186), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7186), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7186), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7186), - [aux_sym_type_qualifier_token1] = ACTIONS(7186), - [aux_sym_type_qualifier_token2] = ACTIONS(7186), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7186), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7186), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7186), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7186), - [aux_sym_stop_statement_token1] = ACTIONS(7186), - [aux_sym_stop_statement_token2] = ACTIONS(7186), - [aux_sym_keyword_statement_token2] = ACTIONS(7186), - [aux_sym_keyword_statement_token3] = ACTIONS(7186), - [aux_sym_data_statement_token1] = ACTIONS(7186), - [aux_sym__inline_if_statement_token1] = ACTIONS(7186), - [aux_sym_end_if_statement_token1] = ACTIONS(7186), - [aux_sym_elseif_clause_token2] = ACTIONS(7186), - [aux_sym_select_case_statement_token1] = ACTIONS(7186), - [aux_sym_block_construct_token1] = ACTIONS(7186), - [aux_sym_format_statement_token1] = ACTIONS(7186), - [aux_sym_inquire_statement_token1] = ACTIONS(7186), - [aux_sym_entry_statement_token1] = ACTIONS(7186), - [aux_sym_null_literal_token1] = ACTIONS(7186), - [aux_sym_coarray_statement_token1] = ACTIONS(7186), - [aux_sym_coarray_statement_token2] = ACTIONS(7186), - [aux_sym_coarray_statement_token6] = ACTIONS(7186), - [aux_sym_coarray_statement_token8] = ACTIONS(7186), - [aux_sym_coarray_statement_token11] = ACTIONS(7186), - [aux_sym_coarray_statement_token12] = ACTIONS(7186), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7186), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7186), - [aux_sym_identifier_token1] = ACTIONS(7186), - [sym_comment] = ACTIONS(21), - }, - [3132] = { - [anon_sym_COMMA] = ACTIONS(7188), - [anon_sym_RPAREN] = ACTIONS(7188), - [anon_sym_LPAREN2] = ACTIONS(7188), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7190), - [aux_sym_module_statement_token1] = ACTIONS(7190), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7190), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7190), - [aux_sym_subroutine_statement_token1] = ACTIONS(7190), - [aux_sym_function_statement_token1] = ACTIONS(7190), - [aux_sym_procedure_attributes_token1] = ACTIONS(7190), - [aux_sym_procedure_attributes_token3] = ACTIONS(7190), - [aux_sym_use_statement_token2] = ACTIONS(7190), - [anon_sym_COLON_COLON] = ACTIONS(7188), - [aux_sym_implicit_statement_token3] = ACTIONS(7190), - [aux_sym_implicit_statement_token4] = ACTIONS(7190), - [aux_sym_save_statement_token1] = ACTIONS(7190), - [aux_sym_private_statement_token1] = ACTIONS(7190), - [aux_sym_public_statement_token1] = ACTIONS(7190), - [aux_sym_derived_type_definition_token1] = ACTIONS(7190), - [aux_sym_procedure_attribute_token6] = ACTIONS(7190), - [aux_sym_variable_attributes_token2] = ACTIONS(7190), - [aux_sym_variable_attributes_token3] = ACTIONS(7190), - [aux_sym_variable_attributes_token5] = ACTIONS(7190), - [aux_sym__intrinsic_type_token1] = ACTIONS(7190), - [aux_sym__intrinsic_type_token2] = ACTIONS(7190), - [aux_sym__intrinsic_type_token3] = ACTIONS(7190), - [aux_sym__intrinsic_type_token4] = ACTIONS(7190), - [aux_sym__intrinsic_type_token6] = ACTIONS(7190), - [aux_sym__intrinsic_type_token7] = ACTIONS(7190), - [aux_sym__intrinsic_type_token8] = ACTIONS(7190), - [aux_sym__intrinsic_type_token9] = ACTIONS(7190), - [aux_sym__intrinsic_type_token10] = ACTIONS(7190), - [aux_sym_derived_type_token1] = ACTIONS(7190), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7190), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7190), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7190), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7190), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7190), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7190), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7190), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7190), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7190), - [aux_sym_type_qualifier_token1] = ACTIONS(7190), - [aux_sym_type_qualifier_token2] = ACTIONS(7190), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7190), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7190), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7190), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7190), - [aux_sym_stop_statement_token1] = ACTIONS(7190), - [aux_sym_stop_statement_token2] = ACTIONS(7190), - [aux_sym_keyword_statement_token2] = ACTIONS(7190), - [aux_sym_keyword_statement_token3] = ACTIONS(7190), - [aux_sym_data_statement_token1] = ACTIONS(7190), - [aux_sym__inline_if_statement_token1] = ACTIONS(7190), - [aux_sym_end_if_statement_token1] = ACTIONS(7190), - [aux_sym_elseif_clause_token2] = ACTIONS(7190), - [aux_sym_select_case_statement_token1] = ACTIONS(7190), - [aux_sym_block_construct_token1] = ACTIONS(7190), - [aux_sym_format_statement_token1] = ACTIONS(7190), - [aux_sym_inquire_statement_token1] = ACTIONS(7190), - [aux_sym_entry_statement_token1] = ACTIONS(7190), - [aux_sym_null_literal_token1] = ACTIONS(7190), - [aux_sym_coarray_statement_token1] = ACTIONS(7190), - [aux_sym_coarray_statement_token2] = ACTIONS(7190), - [aux_sym_coarray_statement_token6] = ACTIONS(7190), - [aux_sym_coarray_statement_token8] = ACTIONS(7190), - [aux_sym_coarray_statement_token11] = ACTIONS(7190), - [aux_sym_coarray_statement_token12] = ACTIONS(7190), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7190), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7190), - [aux_sym_identifier_token1] = ACTIONS(7190), - [sym_comment] = ACTIONS(21), - }, - [3133] = { - [anon_sym_COMMA] = ACTIONS(7192), - [anon_sym_RPAREN] = ACTIONS(7192), - [anon_sym_LPAREN2] = ACTIONS(7192), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7195), - [aux_sym_module_statement_token1] = ACTIONS(7195), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7195), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7195), - [aux_sym_subroutine_statement_token1] = ACTIONS(7195), - [aux_sym_function_statement_token1] = ACTIONS(7195), - [aux_sym_procedure_attributes_token1] = ACTIONS(7195), - [aux_sym_procedure_attributes_token3] = ACTIONS(7195), - [aux_sym_use_statement_token2] = ACTIONS(7195), - [anon_sym_COLON_COLON] = ACTIONS(7192), - [aux_sym_implicit_statement_token3] = ACTIONS(7195), - [aux_sym_implicit_statement_token4] = ACTIONS(7195), - [aux_sym_save_statement_token1] = ACTIONS(7195), - [aux_sym_private_statement_token1] = ACTIONS(7195), - [aux_sym_public_statement_token1] = ACTIONS(7195), - [aux_sym_derived_type_definition_token1] = ACTIONS(7195), - [aux_sym_procedure_attribute_token6] = ACTIONS(7195), - [aux_sym_variable_attributes_token2] = ACTIONS(7195), - [aux_sym_variable_attributes_token3] = ACTIONS(7195), - [aux_sym_variable_attributes_token5] = ACTIONS(7195), - [aux_sym__intrinsic_type_token1] = ACTIONS(7195), - [aux_sym__intrinsic_type_token2] = ACTIONS(7195), - [aux_sym__intrinsic_type_token3] = ACTIONS(7195), - [aux_sym__intrinsic_type_token4] = ACTIONS(7195), - [aux_sym__intrinsic_type_token6] = ACTIONS(7195), - [aux_sym__intrinsic_type_token7] = ACTIONS(7195), - [aux_sym__intrinsic_type_token8] = ACTIONS(7195), - [aux_sym__intrinsic_type_token9] = ACTIONS(7195), - [aux_sym__intrinsic_type_token10] = ACTIONS(7195), - [aux_sym_derived_type_token1] = ACTIONS(7195), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7195), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7195), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7195), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7195), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7195), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7195), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7195), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7195), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7195), - [aux_sym_type_qualifier_token1] = ACTIONS(7195), - [aux_sym_type_qualifier_token2] = ACTIONS(7195), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7195), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7195), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7195), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7195), - [aux_sym_stop_statement_token1] = ACTIONS(7195), - [aux_sym_stop_statement_token2] = ACTIONS(7195), - [aux_sym_keyword_statement_token2] = ACTIONS(7195), - [aux_sym_keyword_statement_token3] = ACTIONS(7195), - [aux_sym_data_statement_token1] = ACTIONS(7195), - [aux_sym__inline_if_statement_token1] = ACTIONS(7195), - [aux_sym_end_if_statement_token1] = ACTIONS(7195), - [aux_sym_elseif_clause_token2] = ACTIONS(7195), - [aux_sym_select_case_statement_token1] = ACTIONS(7195), - [aux_sym_block_construct_token1] = ACTIONS(7195), - [aux_sym_format_statement_token1] = ACTIONS(7195), - [aux_sym_inquire_statement_token1] = ACTIONS(7195), - [aux_sym_entry_statement_token1] = ACTIONS(7195), - [aux_sym_null_literal_token1] = ACTIONS(7195), - [aux_sym_coarray_statement_token1] = ACTIONS(7195), - [aux_sym_coarray_statement_token2] = ACTIONS(7195), - [aux_sym_coarray_statement_token6] = ACTIONS(7195), - [aux_sym_coarray_statement_token8] = ACTIONS(7195), - [aux_sym_coarray_statement_token11] = ACTIONS(7195), - [aux_sym_coarray_statement_token12] = ACTIONS(7195), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7195), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7195), - [aux_sym_identifier_token1] = ACTIONS(7195), - [sym_comment] = ACTIONS(21), - }, - [3134] = { - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RPAREN] = ACTIONS(4325), - [aux_sym_preproc_if_token2] = ACTIONS(4325), - [aux_sym_preproc_else_token1] = ACTIONS(4325), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4325), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4325), - [anon_sym_LPAREN2] = ACTIONS(4325), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_module_statement_token1] = ACTIONS(4325), - [anon_sym_COLON] = ACTIONS(4325), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_subroutine_statement_token1] = ACTIONS(4325), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4325), - [aux_sym_function_statement_token1] = ACTIONS(4325), - [aux_sym_procedure_attributes_token1] = ACTIONS(4325), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token3] = ACTIONS(4325), - [aux_sym_import_statement_token1] = ACTIONS(4325), - [aux_sym__procedure_kind_token1] = ACTIONS(4325), - [aux_sym__procedure_kind_token2] = ACTIONS(4325), - [aux_sym__procedure_kind_token3] = ACTIONS(4325), - [aux_sym__procedure_kind_token4] = ACTIONS(4325), - [aux_sym__intrinsic_type_token1] = ACTIONS(4325), - [aux_sym__intrinsic_type_token2] = ACTIONS(4325), - [aux_sym__intrinsic_type_token3] = ACTIONS(4325), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4325), - [aux_sym__intrinsic_type_token7] = ACTIONS(4325), - [aux_sym__intrinsic_type_token8] = ACTIONS(4325), - [aux_sym__intrinsic_type_token9] = ACTIONS(4325), - [aux_sym__intrinsic_type_token10] = ACTIONS(4325), - [aux_sym_derived_type_token1] = ACTIONS(4325), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4325), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4325), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4325), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4325), - [anon_sym_GT_GT_GT] = ACTIONS(4325), - [aux_sym_select_case_statement_token2] = ACTIONS(4325), - [aux_sym_select_rank_statement_token1] = ACTIONS(4325), - [aux_sym_enumerator_statement_token1] = ACTIONS(4325), - [aux_sym_end_enum_statement_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_SLASH_RPAREN] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [sym_comment] = ACTIONS(21), - }, - [3135] = { - [anon_sym_COMMA] = ACTIONS(4333), - [anon_sym_RPAREN] = ACTIONS(4333), - [aux_sym_preproc_if_token2] = ACTIONS(4333), - [aux_sym_preproc_else_token1] = ACTIONS(4333), - [aux_sym_preproc_elif_token1] = ACTIONS(4331), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4333), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4333), - [anon_sym_LPAREN2] = ACTIONS(4333), - [sym_preproc_comment] = ACTIONS(4333), - [anon_sym_PLUS] = ACTIONS(4333), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4331), - [anon_sym_PERCENT] = ACTIONS(4333), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4333), - [anon_sym_GT] = ACTIONS(4331), - [anon_sym_GT_EQ] = ACTIONS(4333), - [anon_sym_LT_EQ] = ACTIONS(4333), - [anon_sym_LT] = ACTIONS(4331), - [aux_sym_end_program_statement_token1] = ACTIONS(4331), - [aux_sym_module_statement_token1] = ACTIONS(4333), - [anon_sym_COLON] = ACTIONS(4333), - [anon_sym_EQ] = ACTIONS(4331), - [aux_sym_subroutine_statement_token1] = ACTIONS(4333), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4333), - [aux_sym_function_statement_token1] = ACTIONS(4333), - [aux_sym_procedure_attributes_token1] = ACTIONS(4333), - [anon_sym_EQ_GT] = ACTIONS(4333), - [aux_sym_implicit_statement_token3] = ACTIONS(4333), - [aux_sym_import_statement_token1] = ACTIONS(4333), - [aux_sym__procedure_kind_token1] = ACTIONS(4333), - [aux_sym__procedure_kind_token2] = ACTIONS(4333), - [aux_sym__procedure_kind_token3] = ACTIONS(4333), - [aux_sym__procedure_kind_token4] = ACTIONS(4333), - [aux_sym__intrinsic_type_token1] = ACTIONS(4333), - [aux_sym__intrinsic_type_token2] = ACTIONS(4333), - [aux_sym__intrinsic_type_token3] = ACTIONS(4333), - [aux_sym__intrinsic_type_token4] = ACTIONS(4331), - [aux_sym__intrinsic_type_token6] = ACTIONS(4333), - [aux_sym__intrinsic_type_token7] = ACTIONS(4333), - [aux_sym__intrinsic_type_token8] = ACTIONS(4333), - [aux_sym__intrinsic_type_token9] = ACTIONS(4333), - [aux_sym__intrinsic_type_token10] = ACTIONS(4333), - [aux_sym_derived_type_token1] = ACTIONS(4333), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4333), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4333), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4333), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4333), - [anon_sym_GT_GT_GT] = ACTIONS(4333), - [aux_sym_select_case_statement_token2] = ACTIONS(4333), - [aux_sym_select_rank_statement_token1] = ACTIONS(4333), - [aux_sym_enumerator_statement_token1] = ACTIONS(4333), - [aux_sym_end_enum_statement_token1] = ACTIONS(4333), - [aux_sym_logical_expression_token1] = ACTIONS(4333), - [aux_sym_logical_expression_token2] = ACTIONS(4333), - [aux_sym_logical_expression_token3] = ACTIONS(4333), - [aux_sym_logical_expression_token4] = ACTIONS(4333), - [aux_sym_relational_expression_token1] = ACTIONS(4333), - [aux_sym_relational_expression_token2] = ACTIONS(4333), - [aux_sym_relational_expression_token3] = ACTIONS(4333), - [aux_sym_relational_expression_token4] = ACTIONS(4333), - [aux_sym_relational_expression_token5] = ACTIONS(4333), - [anon_sym_SLASH_EQ] = ACTIONS(4333), - [aux_sym_relational_expression_token6] = ACTIONS(4333), - [anon_sym_SLASH_SLASH] = ACTIONS(4333), - [anon_sym_STAR_STAR] = ACTIONS(4333), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SLASH_RPAREN] = ACTIONS(4333), - [anon_sym_LBRACK] = ACTIONS(4333), - [anon_sym_RBRACK] = ACTIONS(4333), - [sym_comment] = ACTIONS(21), - }, - [3136] = { - [anon_sym_COMMA] = ACTIONS(4279), - [anon_sym_RPAREN] = ACTIONS(4279), - [aux_sym_preproc_if_token2] = ACTIONS(4279), - [aux_sym_preproc_else_token1] = ACTIONS(4279), - [aux_sym_preproc_elif_token1] = ACTIONS(4277), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4279), - [anon_sym_LPAREN2] = ACTIONS(4279), - [sym_preproc_comment] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4277), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4279), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_EQ] = ACTIONS(4279), - [anon_sym_LT_EQ] = ACTIONS(4279), - [anon_sym_LT] = ACTIONS(4277), - [aux_sym_end_program_statement_token1] = ACTIONS(4277), - [aux_sym_module_statement_token1] = ACTIONS(4279), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_EQ] = ACTIONS(4277), - [aux_sym_subroutine_statement_token1] = ACTIONS(4279), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4279), - [aux_sym_function_statement_token1] = ACTIONS(4279), - [aux_sym_procedure_attributes_token1] = ACTIONS(4279), - [anon_sym_EQ_GT] = ACTIONS(4279), - [aux_sym_implicit_statement_token3] = ACTIONS(4279), - [aux_sym_import_statement_token1] = ACTIONS(4279), - [aux_sym__procedure_kind_token1] = ACTIONS(4279), - [aux_sym__procedure_kind_token2] = ACTIONS(4279), - [aux_sym__procedure_kind_token3] = ACTIONS(4279), - [aux_sym__procedure_kind_token4] = ACTIONS(4279), - [aux_sym__intrinsic_type_token1] = ACTIONS(4279), - [aux_sym__intrinsic_type_token2] = ACTIONS(4279), - [aux_sym__intrinsic_type_token3] = ACTIONS(4279), - [aux_sym__intrinsic_type_token4] = ACTIONS(4277), - [aux_sym__intrinsic_type_token6] = ACTIONS(4279), - [aux_sym__intrinsic_type_token7] = ACTIONS(4279), - [aux_sym__intrinsic_type_token8] = ACTIONS(4279), - [aux_sym__intrinsic_type_token9] = ACTIONS(4279), - [aux_sym__intrinsic_type_token10] = ACTIONS(4279), - [aux_sym_derived_type_token1] = ACTIONS(4279), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4279), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4279), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4279), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4279), - [anon_sym_GT_GT_GT] = ACTIONS(4279), - [aux_sym_select_case_statement_token2] = ACTIONS(4279), - [aux_sym_select_rank_statement_token1] = ACTIONS(4279), - [aux_sym_enumerator_statement_token1] = ACTIONS(4279), - [aux_sym_end_enum_statement_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token1] = ACTIONS(4279), - [aux_sym_logical_expression_token2] = ACTIONS(4279), - [aux_sym_logical_expression_token3] = ACTIONS(4279), - [aux_sym_logical_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token1] = ACTIONS(4279), - [aux_sym_relational_expression_token2] = ACTIONS(4279), - [aux_sym_relational_expression_token3] = ACTIONS(4279), - [aux_sym_relational_expression_token4] = ACTIONS(4279), - [aux_sym_relational_expression_token5] = ACTIONS(4279), - [anon_sym_SLASH_EQ] = ACTIONS(4279), - [aux_sym_relational_expression_token6] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(4279), - [anon_sym_STAR_STAR] = ACTIONS(4279), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH_RPAREN] = ACTIONS(4279), - [anon_sym_LBRACK] = ACTIONS(4279), - [anon_sym_RBRACK] = ACTIONS(4279), - [sym_comment] = ACTIONS(21), - }, - [3137] = { - [anon_sym_COMMA] = ACTIONS(4337), - [anon_sym_RPAREN] = ACTIONS(4337), - [aux_sym_preproc_if_token2] = ACTIONS(4337), - [aux_sym_preproc_else_token1] = ACTIONS(4337), - [aux_sym_preproc_elif_token1] = ACTIONS(4335), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4337), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4337), - [anon_sym_LPAREN2] = ACTIONS(4337), - [sym_preproc_comment] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4337), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_STAR] = ACTIONS(4335), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4337), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_GT_EQ] = ACTIONS(4337), - [anon_sym_LT_EQ] = ACTIONS(4337), - [anon_sym_LT] = ACTIONS(4335), - [aux_sym_end_program_statement_token1] = ACTIONS(4335), - [aux_sym_module_statement_token1] = ACTIONS(4337), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_EQ] = ACTIONS(4335), - [aux_sym_subroutine_statement_token1] = ACTIONS(4337), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4337), - [aux_sym_function_statement_token1] = ACTIONS(4337), - [aux_sym_procedure_attributes_token1] = ACTIONS(4337), - [anon_sym_EQ_GT] = ACTIONS(4337), - [aux_sym_implicit_statement_token3] = ACTIONS(4337), - [aux_sym_import_statement_token1] = ACTIONS(4337), - [aux_sym__procedure_kind_token1] = ACTIONS(4337), - [aux_sym__procedure_kind_token2] = ACTIONS(4337), - [aux_sym__procedure_kind_token3] = ACTIONS(4337), - [aux_sym__procedure_kind_token4] = ACTIONS(4337), - [aux_sym__intrinsic_type_token1] = ACTIONS(4337), - [aux_sym__intrinsic_type_token2] = ACTIONS(4337), - [aux_sym__intrinsic_type_token3] = ACTIONS(4337), - [aux_sym__intrinsic_type_token4] = ACTIONS(4335), - [aux_sym__intrinsic_type_token6] = ACTIONS(4337), - [aux_sym__intrinsic_type_token7] = ACTIONS(4337), - [aux_sym__intrinsic_type_token8] = ACTIONS(4337), - [aux_sym__intrinsic_type_token9] = ACTIONS(4337), - [aux_sym__intrinsic_type_token10] = ACTIONS(4337), - [aux_sym_derived_type_token1] = ACTIONS(4337), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4337), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4337), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4337), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4337), - [anon_sym_GT_GT_GT] = ACTIONS(4337), - [aux_sym_select_case_statement_token2] = ACTIONS(4337), - [aux_sym_select_rank_statement_token1] = ACTIONS(4337), - [aux_sym_enumerator_statement_token1] = ACTIONS(4337), - [aux_sym_end_enum_statement_token1] = ACTIONS(4337), - [aux_sym_logical_expression_token1] = ACTIONS(4337), - [aux_sym_logical_expression_token2] = ACTIONS(4337), - [aux_sym_logical_expression_token3] = ACTIONS(4337), - [aux_sym_logical_expression_token4] = ACTIONS(4337), - [aux_sym_relational_expression_token1] = ACTIONS(4337), - [aux_sym_relational_expression_token2] = ACTIONS(4337), - [aux_sym_relational_expression_token3] = ACTIONS(4337), - [aux_sym_relational_expression_token4] = ACTIONS(4337), - [aux_sym_relational_expression_token5] = ACTIONS(4337), - [anon_sym_SLASH_EQ] = ACTIONS(4337), - [aux_sym_relational_expression_token6] = ACTIONS(4337), - [anon_sym_SLASH_SLASH] = ACTIONS(4337), - [anon_sym_STAR_STAR] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_SLASH_RPAREN] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4337), - [sym_comment] = ACTIONS(21), - }, - [3138] = { - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RPAREN] = ACTIONS(4325), - [aux_sym_preproc_if_token2] = ACTIONS(4325), - [aux_sym_preproc_else_token1] = ACTIONS(4325), - [aux_sym_preproc_elif_token1] = ACTIONS(4323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4325), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4325), - [anon_sym_LPAREN2] = ACTIONS(4325), - [sym_preproc_comment] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_SLASH] = ACTIONS(4323), - [anon_sym_PERCENT] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [anon_sym_EQ_EQ] = ACTIONS(4325), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [aux_sym_end_program_statement_token1] = ACTIONS(4323), - [aux_sym_module_statement_token1] = ACTIONS(4325), - [anon_sym_COLON] = ACTIONS(4325), - [anon_sym_EQ] = ACTIONS(4323), - [aux_sym_subroutine_statement_token1] = ACTIONS(4325), - [aux_sym_module_procedure_statement_token1] = ACTIONS(4325), - [aux_sym_function_statement_token1] = ACTIONS(4325), - [aux_sym_procedure_attributes_token1] = ACTIONS(4325), - [anon_sym_EQ_GT] = ACTIONS(4325), - [aux_sym_implicit_statement_token3] = ACTIONS(4325), - [aux_sym_import_statement_token1] = ACTIONS(4325), - [aux_sym__procedure_kind_token1] = ACTIONS(4325), - [aux_sym__procedure_kind_token2] = ACTIONS(4325), - [aux_sym__procedure_kind_token3] = ACTIONS(4325), - [aux_sym__procedure_kind_token4] = ACTIONS(4325), - [aux_sym__intrinsic_type_token1] = ACTIONS(4325), - [aux_sym__intrinsic_type_token2] = ACTIONS(4325), - [aux_sym__intrinsic_type_token3] = ACTIONS(4325), - [aux_sym__intrinsic_type_token4] = ACTIONS(4323), - [aux_sym__intrinsic_type_token6] = ACTIONS(4325), - [aux_sym__intrinsic_type_token7] = ACTIONS(4325), - [aux_sym__intrinsic_type_token8] = ACTIONS(4325), - [aux_sym__intrinsic_type_token9] = ACTIONS(4325), - [aux_sym__intrinsic_type_token10] = ACTIONS(4325), - [aux_sym_derived_type_token1] = ACTIONS(4325), - [aux_sym_procedure_qualifier_token1] = ACTIONS(4325), - [aux_sym_procedure_qualifier_token2] = ACTIONS(4325), - [aux_sym_procedure_qualifier_token3] = ACTIONS(4325), - [aux_sym_procedure_qualifier_token4] = ACTIONS(4325), - [anon_sym_GT_GT_GT] = ACTIONS(4325), - [aux_sym_select_case_statement_token2] = ACTIONS(4325), - [aux_sym_select_rank_statement_token1] = ACTIONS(4325), - [aux_sym_enumerator_statement_token1] = ACTIONS(4325), - [aux_sym_end_enum_statement_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token1] = ACTIONS(4325), - [aux_sym_logical_expression_token2] = ACTIONS(4325), - [aux_sym_logical_expression_token3] = ACTIONS(4325), - [aux_sym_logical_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token1] = ACTIONS(4325), - [aux_sym_relational_expression_token2] = ACTIONS(4325), - [aux_sym_relational_expression_token3] = ACTIONS(4325), - [aux_sym_relational_expression_token4] = ACTIONS(4325), - [aux_sym_relational_expression_token5] = ACTIONS(4325), - [anon_sym_SLASH_EQ] = ACTIONS(4325), - [aux_sym_relational_expression_token6] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(4325), - [anon_sym_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_SLASH_RPAREN] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [sym_comment] = ACTIONS(21), - }, - [3139] = { - [sym__preproc_expression] = STATE(5354), - [sym_preproc_parenthesized_expression] = STATE(5354), - [sym_preproc_defined] = STATE(5354), - [sym_preproc_unary_expression] = STATE(5354), - [sym_preproc_call_expression] = STATE(5354), - [sym_preproc_binary_expression] = STATE(5354), - [sym_number_literal] = STATE(5354), - [sym_string_literal] = STATE(5354), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7202), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), - }, - [3140] = { - [sym__preproc_expression] = STATE(5337), - [sym_preproc_parenthesized_expression] = STATE(5337), - [sym_preproc_defined] = STATE(5337), - [sym_preproc_unary_expression] = STATE(5337), - [sym_preproc_call_expression] = STATE(5337), - [sym_preproc_binary_expression] = STATE(5337), - [sym_number_literal] = STATE(5337), - [sym_string_literal] = STATE(5337), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7222), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), - }, - [3141] = { - [sym__preproc_expression] = STATE(5199), - [sym_preproc_parenthesized_expression] = STATE(5199), - [sym_preproc_defined] = STATE(5199), - [sym_preproc_unary_expression] = STATE(5199), - [sym_preproc_call_expression] = STATE(5199), - [sym_preproc_binary_expression] = STATE(5199), - [sym_number_literal] = STATE(5199), - [sym_string_literal] = STATE(5199), - [sym_identifier] = STATE(5166), - [anon_sym_RPAREN] = ACTIONS(7224), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [sym__external_end_of_statement] = ACTIONS(7074), }, - [3142] = { - [sym_language_binding] = STATE(3272), - [sym_variable_attributes] = STATE(3272), - [sym__variable_declarator] = STATE(6146), - [sym_sized_declarator] = STATE(3393), - [sym__standalone_type_qualifier] = STATE(3362), - [sym_coarray_declarator] = STATE(6146), - [sym_identifier] = STATE(3277), - [aux_sym_variable_modification_repeat1] = STATE(3272), - [anon_sym_AMP] = ACTIONS(21), + [3037] = { + [sym__name] = STATE(6678), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4909), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), - [aux_sym_language_binding_token1] = ACTIONS(45), - [aux_sym_procedure_attributes_token1] = ACTIONS(750), - [aux_sym_procedure_attributes_token3] = ACTIONS(7248), - [aux_sym_use_statement_token2] = ACTIONS(7248), - [anon_sym_COLON_COLON] = ACTIONS(7250), - [aux_sym_implicit_statement_token4] = ACTIONS(7248), - [aux_sym_save_statement_token1] = ACTIONS(7248), - [aux_sym_private_statement_token1] = ACTIONS(7248), - [aux_sym_public_statement_token1] = ACTIONS(7248), - [aux_sym_derived_type_definition_token1] = ACTIONS(7248), - [aux_sym_abstract_specifier_token1] = ACTIONS(73), - [aux_sym_procedure_attribute_token6] = ACTIONS(7248), - [aux_sym_variable_attributes_token1] = ACTIONS(73), - [aux_sym_variable_attributes_token2] = ACTIONS(7248), - [aux_sym_variable_attributes_token3] = ACTIONS(7248), - [aux_sym_variable_attributes_token4] = ACTIONS(73), - [aux_sym_variable_attributes_token5] = ACTIONS(7248), + [aux_sym_module_procedure_statement_token1] = ACTIONS(7076), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), [aux_sym__intrinsic_type_token1] = ACTIONS(5456), [aux_sym__intrinsic_type_token3] = ACTIONS(5456), [aux_sym__intrinsic_type_token4] = ACTIONS(5458), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7248), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7248), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7252), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7248), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7248), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7248), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7248), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7248), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7248), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), [aux_sym_type_qualifier_token1] = ACTIONS(5456), [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7078), [aux_sym_stop_statement_token1] = ACTIONS(5456), [aux_sym_stop_statement_token2] = ACTIONS(5456), [aux_sym_keyword_statement_token2] = ACTIONS(5456), @@ -452125,6 +443213,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_format_statement_token1] = ACTIONS(5456), [aux_sym_inquire_statement_token1] = ACTIONS(5456), [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), [aux_sym_null_literal_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token1] = ACTIONS(5456), [aux_sym_coarray_statement_token2] = ACTIONS(5456), @@ -452136,7321 +443239,8625 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(7078), }, - [3143] = { - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6600), - [aux_sym_module_statement_token1] = ACTIONS(6600), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6600), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6600), - [aux_sym_subroutine_statement_token1] = ACTIONS(6600), - [aux_sym_function_statement_token1] = ACTIONS(6600), - [aux_sym_procedure_attributes_token1] = ACTIONS(6600), - [aux_sym_procedure_attributes_token3] = ACTIONS(6600), - [aux_sym_use_statement_token2] = ACTIONS(6600), - [anon_sym_COLON_COLON] = ACTIONS(6598), - [aux_sym_implicit_statement_token3] = ACTIONS(6600), - [aux_sym_implicit_statement_token4] = ACTIONS(6600), - [aux_sym_save_statement_token1] = ACTIONS(6600), - [aux_sym_private_statement_token1] = ACTIONS(6600), - [aux_sym_public_statement_token1] = ACTIONS(6600), - [aux_sym_derived_type_definition_token1] = ACTIONS(6600), - [aux_sym_procedure_attribute_token6] = ACTIONS(6600), - [aux_sym_variable_attributes_token2] = ACTIONS(6600), - [aux_sym_variable_attributes_token3] = ACTIONS(6600), - [aux_sym_variable_attributes_token5] = ACTIONS(6600), - [aux_sym__intrinsic_type_token1] = ACTIONS(6600), - [aux_sym__intrinsic_type_token2] = ACTIONS(6600), - [aux_sym__intrinsic_type_token3] = ACTIONS(6600), - [aux_sym__intrinsic_type_token4] = ACTIONS(6600), - [aux_sym__intrinsic_type_token6] = ACTIONS(6600), - [aux_sym__intrinsic_type_token7] = ACTIONS(6600), - [aux_sym__intrinsic_type_token8] = ACTIONS(6600), - [aux_sym__intrinsic_type_token9] = ACTIONS(6600), - [aux_sym__intrinsic_type_token10] = ACTIONS(6600), - [aux_sym_derived_type_token1] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6600), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6600), - [aux_sym_type_qualifier_token1] = ACTIONS(6600), - [aux_sym_type_qualifier_token2] = ACTIONS(6600), - [aux_sym_procedure_qualifier_token1] = ACTIONS(6600), - [aux_sym_procedure_qualifier_token2] = ACTIONS(6600), - [aux_sym_procedure_qualifier_token3] = ACTIONS(6600), - [aux_sym_procedure_qualifier_token4] = ACTIONS(6600), - [aux_sym_stop_statement_token1] = ACTIONS(6600), - [aux_sym_stop_statement_token2] = ACTIONS(6600), - [aux_sym_keyword_statement_token2] = ACTIONS(6600), - [aux_sym_keyword_statement_token3] = ACTIONS(6600), - [aux_sym_data_statement_token1] = ACTIONS(6600), - [aux_sym__inline_if_statement_token1] = ACTIONS(6600), - [aux_sym_end_if_statement_token1] = ACTIONS(6600), - [aux_sym_elseif_clause_token2] = ACTIONS(6600), - [aux_sym_select_case_statement_token1] = ACTIONS(6600), - [aux_sym_block_construct_token1] = ACTIONS(6600), - [aux_sym_format_statement_token1] = ACTIONS(6600), - [aux_sym_inquire_statement_token1] = ACTIONS(6600), - [aux_sym_entry_statement_token1] = ACTIONS(6600), - [aux_sym_null_literal_token1] = ACTIONS(6600), - [aux_sym_coarray_statement_token1] = ACTIONS(6600), - [aux_sym_coarray_statement_token2] = ACTIONS(6600), - [aux_sym_coarray_statement_token6] = ACTIONS(6600), - [aux_sym_coarray_statement_token8] = ACTIONS(6600), - [aux_sym_coarray_statement_token11] = ACTIONS(6600), - [aux_sym_coarray_statement_token12] = ACTIONS(6600), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6600), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6600), - [aux_sym_identifier_token1] = ACTIONS(6600), - [sym_comment] = ACTIONS(21), - }, - [3144] = { - [sym__preproc_expression] = STATE(5342), - [sym_preproc_parenthesized_expression] = STATE(5342), - [sym_preproc_defined] = STATE(5342), - [sym_preproc_unary_expression] = STATE(5342), - [sym_preproc_call_expression] = STATE(5342), - [sym_preproc_binary_expression] = STATE(5342), - [sym_number_literal] = STATE(5342), - [sym_string_literal] = STATE(5342), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7254), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), - }, - [3145] = { - [sym__preproc_expression] = STATE(5344), - [sym_preproc_parenthesized_expression] = STATE(5344), - [sym_preproc_defined] = STATE(5344), - [sym_preproc_unary_expression] = STATE(5344), - [sym_preproc_call_expression] = STATE(5344), - [sym_preproc_binary_expression] = STATE(5344), - [sym_number_literal] = STATE(5344), - [sym_string_literal] = STATE(5344), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7256), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), - }, - [3146] = { - [anon_sym_COMMA] = ACTIONS(6580), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6582), - [aux_sym_module_statement_token1] = ACTIONS(6582), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6582), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6582), - [aux_sym_subroutine_statement_token1] = ACTIONS(6582), - [aux_sym_function_statement_token1] = ACTIONS(6582), - [aux_sym_procedure_attributes_token1] = ACTIONS(6582), - [aux_sym_procedure_attributes_token3] = ACTIONS(6582), - [aux_sym_use_statement_token2] = ACTIONS(6582), - [anon_sym_COLON_COLON] = ACTIONS(6580), - [aux_sym_implicit_statement_token3] = ACTIONS(6582), - [aux_sym_implicit_statement_token4] = ACTIONS(6582), - [aux_sym_save_statement_token1] = ACTIONS(6582), - [aux_sym_private_statement_token1] = ACTIONS(6582), - [aux_sym_public_statement_token1] = ACTIONS(6582), - [aux_sym_derived_type_definition_token1] = ACTIONS(6582), - [aux_sym_procedure_attribute_token6] = ACTIONS(6582), - [aux_sym_variable_attributes_token2] = ACTIONS(6582), - [aux_sym_variable_attributes_token3] = ACTIONS(6582), - [aux_sym_variable_attributes_token5] = ACTIONS(6582), - [aux_sym__intrinsic_type_token1] = ACTIONS(6582), - [aux_sym__intrinsic_type_token2] = ACTIONS(6582), - [aux_sym__intrinsic_type_token3] = ACTIONS(6582), - [aux_sym__intrinsic_type_token4] = ACTIONS(6582), - [aux_sym__intrinsic_type_token6] = ACTIONS(6582), - [aux_sym__intrinsic_type_token7] = ACTIONS(6582), - [aux_sym__intrinsic_type_token8] = ACTIONS(6582), - [aux_sym__intrinsic_type_token9] = ACTIONS(6582), - [aux_sym__intrinsic_type_token10] = ACTIONS(6582), - [aux_sym_derived_type_token1] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6582), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6582), - [aux_sym_type_qualifier_token1] = ACTIONS(6582), - [aux_sym_type_qualifier_token2] = ACTIONS(6582), - [aux_sym_procedure_qualifier_token1] = ACTIONS(6582), - [aux_sym_procedure_qualifier_token2] = ACTIONS(6582), - [aux_sym_procedure_qualifier_token3] = ACTIONS(6582), - [aux_sym_procedure_qualifier_token4] = ACTIONS(6582), - [aux_sym_stop_statement_token1] = ACTIONS(6582), - [aux_sym_stop_statement_token2] = ACTIONS(6582), - [aux_sym_keyword_statement_token2] = ACTIONS(6582), - [aux_sym_keyword_statement_token3] = ACTIONS(6582), - [aux_sym_data_statement_token1] = ACTIONS(6582), - [aux_sym__inline_if_statement_token1] = ACTIONS(6582), - [aux_sym_end_if_statement_token1] = ACTIONS(6582), - [aux_sym_elseif_clause_token2] = ACTIONS(6582), - [aux_sym_select_case_statement_token1] = ACTIONS(6582), - [aux_sym_block_construct_token1] = ACTIONS(6582), - [aux_sym_format_statement_token1] = ACTIONS(6582), - [aux_sym_inquire_statement_token1] = ACTIONS(6582), - [aux_sym_entry_statement_token1] = ACTIONS(6582), - [aux_sym_null_literal_token1] = ACTIONS(6582), - [aux_sym_coarray_statement_token1] = ACTIONS(6582), - [aux_sym_coarray_statement_token2] = ACTIONS(6582), - [aux_sym_coarray_statement_token6] = ACTIONS(6582), - [aux_sym_coarray_statement_token8] = ACTIONS(6582), - [aux_sym_coarray_statement_token11] = ACTIONS(6582), - [aux_sym_coarray_statement_token12] = ACTIONS(6582), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6582), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6582), - [aux_sym_identifier_token1] = ACTIONS(6582), - [sym_comment] = ACTIONS(21), - }, - [3147] = { - [sym__preproc_expression] = STATE(5339), - [sym_preproc_parenthesized_expression] = STATE(5339), - [sym_preproc_defined] = STATE(5339), - [sym_preproc_unary_expression] = STATE(5339), - [sym_preproc_call_expression] = STATE(5339), - [sym_preproc_binary_expression] = STATE(5339), - [sym_number_literal] = STATE(5339), - [sym_string_literal] = STATE(5339), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7258), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), - }, - [3148] = { - [sym__preproc_expression] = STATE(5195), - [sym_preproc_parenthesized_expression] = STATE(5195), - [sym_preproc_defined] = STATE(5195), - [sym_preproc_unary_expression] = STATE(5195), - [sym_preproc_call_expression] = STATE(5195), - [sym_preproc_binary_expression] = STATE(5195), - [sym_number_literal] = STATE(5195), - [sym_string_literal] = STATE(5195), - [sym_identifier] = STATE(5166), - [anon_sym_RPAREN] = ACTIONS(7260), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), - }, - [3149] = { - [sym__preproc_expression] = STATE(5338), - [sym_preproc_parenthesized_expression] = STATE(5338), - [sym_preproc_defined] = STATE(5338), - [sym_preproc_unary_expression] = STATE(5338), - [sym_preproc_call_expression] = STATE(5338), - [sym_preproc_binary_expression] = STATE(5338), - [sym_number_literal] = STATE(5338), - [sym_string_literal] = STATE(5338), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7262), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), - }, - [3150] = { - [sym__argument_list] = STATE(2391), - [sym_argument_list] = STATE(3346), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_LPAREN2] = ACTIONS(6644), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5600), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5600), - [aux_sym_use_statement_token2] = ACTIONS(5600), - [anon_sym_COLON_COLON] = ACTIONS(6646), - [aux_sym_implicit_statement_token4] = ACTIONS(5600), - [aux_sym_save_statement_token1] = ACTIONS(5600), - [aux_sym_private_statement_token1] = ACTIONS(5600), - [aux_sym_public_statement_token1] = ACTIONS(5600), - [aux_sym_derived_type_definition_token1] = ACTIONS(5600), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5600), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5600), - [aux_sym_variable_attributes_token3] = ACTIONS(5600), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5600), - [aux_sym__intrinsic_type_token1] = ACTIONS(5600), - [aux_sym__intrinsic_type_token3] = ACTIONS(5600), - [aux_sym__intrinsic_type_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5600), - [aux_sym_type_qualifier_token2] = ACTIONS(5600), - [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(5600), - [aux_sym_stop_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token3] = ACTIONS(5600), - [aux_sym_data_statement_token1] = ACTIONS(5600), - [aux_sym__inline_if_statement_token1] = ACTIONS(5600), - [aux_sym_end_if_statement_token1] = ACTIONS(5600), - [aux_sym_elseif_clause_token2] = ACTIONS(5600), - [aux_sym_select_case_statement_token1] = ACTIONS(5600), - [aux_sym_block_construct_token1] = ACTIONS(5600), - [aux_sym_format_statement_token1] = ACTIONS(5600), - [aux_sym_inquire_statement_token1] = ACTIONS(5600), - [aux_sym_entry_statement_token1] = ACTIONS(5600), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token2] = ACTIONS(5600), - [aux_sym_coarray_statement_token6] = ACTIONS(5600), - [aux_sym_coarray_statement_token8] = ACTIONS(5600), - [aux_sym_coarray_statement_token11] = ACTIONS(5600), - [aux_sym_coarray_statement_token12] = ACTIONS(5600), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), - [aux_sym_identifier_token1] = ACTIONS(5600), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(4325), - }, - [3151] = { - [sym__preproc_expression] = STATE(5196), - [sym_preproc_parenthesized_expression] = STATE(5196), - [sym_preproc_defined] = STATE(5196), - [sym_preproc_unary_expression] = STATE(5196), - [sym_preproc_call_expression] = STATE(5196), - [sym_preproc_binary_expression] = STATE(5196), - [sym_number_literal] = STATE(5196), - [sym_string_literal] = STATE(5196), - [sym_identifier] = STATE(5166), - [anon_sym_RPAREN] = ACTIONS(7264), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), - }, - [3152] = { - [anon_sym_COMMA] = ACTIONS(7266), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7268), - [aux_sym_module_statement_token1] = ACTIONS(7268), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7268), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7268), - [aux_sym_subroutine_statement_token1] = ACTIONS(7268), - [aux_sym_function_statement_token1] = ACTIONS(7268), - [aux_sym_procedure_attributes_token1] = ACTIONS(7268), - [aux_sym_procedure_attributes_token3] = ACTIONS(7268), - [aux_sym_use_statement_token2] = ACTIONS(7268), - [anon_sym_COLON_COLON] = ACTIONS(7266), - [aux_sym_implicit_statement_token3] = ACTIONS(7268), - [aux_sym_implicit_statement_token4] = ACTIONS(7268), - [aux_sym_save_statement_token1] = ACTIONS(7268), - [aux_sym_private_statement_token1] = ACTIONS(7268), - [aux_sym_public_statement_token1] = ACTIONS(7268), - [aux_sym_derived_type_definition_token1] = ACTIONS(7268), - [aux_sym_procedure_attribute_token6] = ACTIONS(7268), - [aux_sym_variable_attributes_token2] = ACTIONS(7268), - [aux_sym_variable_attributes_token3] = ACTIONS(7268), - [aux_sym_variable_attributes_token5] = ACTIONS(7268), - [aux_sym__intrinsic_type_token1] = ACTIONS(7268), - [aux_sym__intrinsic_type_token2] = ACTIONS(7268), - [aux_sym__intrinsic_type_token3] = ACTIONS(7268), - [aux_sym__intrinsic_type_token4] = ACTIONS(7268), - [aux_sym__intrinsic_type_token6] = ACTIONS(7268), - [aux_sym__intrinsic_type_token7] = ACTIONS(7268), - [aux_sym__intrinsic_type_token8] = ACTIONS(7268), - [aux_sym__intrinsic_type_token9] = ACTIONS(7268), - [aux_sym__intrinsic_type_token10] = ACTIONS(7268), - [aux_sym_derived_type_token1] = ACTIONS(7268), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7268), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7268), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7268), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7268), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7268), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7268), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7268), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7268), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7268), - [aux_sym_type_qualifier_token1] = ACTIONS(7268), - [aux_sym_type_qualifier_token2] = ACTIONS(7268), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7268), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7268), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7268), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7268), - [aux_sym_stop_statement_token1] = ACTIONS(7268), - [aux_sym_stop_statement_token2] = ACTIONS(7268), - [aux_sym_keyword_statement_token2] = ACTIONS(7268), - [aux_sym_keyword_statement_token3] = ACTIONS(7268), - [aux_sym_data_statement_token1] = ACTIONS(7268), - [aux_sym__inline_if_statement_token1] = ACTIONS(7268), - [aux_sym_end_if_statement_token1] = ACTIONS(7268), - [aux_sym_elseif_clause_token2] = ACTIONS(7268), - [aux_sym_select_case_statement_token1] = ACTIONS(7268), - [aux_sym_block_construct_token1] = ACTIONS(7268), - [aux_sym_format_statement_token1] = ACTIONS(7268), - [aux_sym_inquire_statement_token1] = ACTIONS(7268), - [aux_sym_entry_statement_token1] = ACTIONS(7268), - [aux_sym_null_literal_token1] = ACTIONS(7268), - [aux_sym_coarray_statement_token1] = ACTIONS(7268), - [aux_sym_coarray_statement_token2] = ACTIONS(7268), - [aux_sym_coarray_statement_token6] = ACTIONS(7268), - [aux_sym_coarray_statement_token8] = ACTIONS(7268), - [aux_sym_coarray_statement_token11] = ACTIONS(7268), - [aux_sym_coarray_statement_token12] = ACTIONS(7268), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7268), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7268), - [aux_sym_identifier_token1] = ACTIONS(7268), - [sym_comment] = ACTIONS(21), - }, - [3153] = { - [anon_sym_COMMA] = ACTIONS(7270), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7272), - [aux_sym_module_statement_token1] = ACTIONS(7272), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7272), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7272), - [aux_sym_subroutine_statement_token1] = ACTIONS(7272), - [aux_sym_function_statement_token1] = ACTIONS(7272), - [aux_sym_procedure_attributes_token1] = ACTIONS(7272), - [aux_sym_procedure_attributes_token3] = ACTIONS(7272), - [aux_sym_use_statement_token2] = ACTIONS(7272), - [anon_sym_COLON_COLON] = ACTIONS(7270), - [aux_sym_implicit_statement_token3] = ACTIONS(7272), - [aux_sym_implicit_statement_token4] = ACTIONS(7272), - [aux_sym_save_statement_token1] = ACTIONS(7272), - [aux_sym_private_statement_token1] = ACTIONS(7272), - [aux_sym_public_statement_token1] = ACTIONS(7272), - [aux_sym_derived_type_definition_token1] = ACTIONS(7272), - [aux_sym_procedure_attribute_token6] = ACTIONS(7272), - [aux_sym_variable_attributes_token2] = ACTIONS(7272), - [aux_sym_variable_attributes_token3] = ACTIONS(7272), - [aux_sym_variable_attributes_token5] = ACTIONS(7272), - [aux_sym__intrinsic_type_token1] = ACTIONS(7272), - [aux_sym__intrinsic_type_token2] = ACTIONS(7272), - [aux_sym__intrinsic_type_token3] = ACTIONS(7272), - [aux_sym__intrinsic_type_token4] = ACTIONS(7272), - [aux_sym__intrinsic_type_token6] = ACTIONS(7272), - [aux_sym__intrinsic_type_token7] = ACTIONS(7272), - [aux_sym__intrinsic_type_token8] = ACTIONS(7272), - [aux_sym__intrinsic_type_token9] = ACTIONS(7272), - [aux_sym__intrinsic_type_token10] = ACTIONS(7272), - [aux_sym_derived_type_token1] = ACTIONS(7272), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7272), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7272), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7272), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7272), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7272), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7272), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7272), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7272), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7272), - [aux_sym_type_qualifier_token1] = ACTIONS(7272), - [aux_sym_type_qualifier_token2] = ACTIONS(7272), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7272), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7272), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7272), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7272), - [aux_sym_stop_statement_token1] = ACTIONS(7272), - [aux_sym_stop_statement_token2] = ACTIONS(7272), - [aux_sym_keyword_statement_token2] = ACTIONS(7272), - [aux_sym_keyword_statement_token3] = ACTIONS(7272), - [aux_sym_data_statement_token1] = ACTIONS(7272), - [aux_sym__inline_if_statement_token1] = ACTIONS(7272), - [aux_sym_end_if_statement_token1] = ACTIONS(7272), - [aux_sym_elseif_clause_token2] = ACTIONS(7272), - [aux_sym_select_case_statement_token1] = ACTIONS(7272), - [aux_sym_block_construct_token1] = ACTIONS(7272), - [aux_sym_format_statement_token1] = ACTIONS(7272), - [aux_sym_inquire_statement_token1] = ACTIONS(7272), - [aux_sym_entry_statement_token1] = ACTIONS(7272), - [aux_sym_null_literal_token1] = ACTIONS(7272), - [aux_sym_coarray_statement_token1] = ACTIONS(7272), - [aux_sym_coarray_statement_token2] = ACTIONS(7272), - [aux_sym_coarray_statement_token6] = ACTIONS(7272), - [aux_sym_coarray_statement_token8] = ACTIONS(7272), - [aux_sym_coarray_statement_token11] = ACTIONS(7272), - [aux_sym_coarray_statement_token12] = ACTIONS(7272), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7272), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7272), - [aux_sym_identifier_token1] = ACTIONS(7272), - [sym_comment] = ACTIONS(21), - }, - [3154] = { - [sym__preproc_expression] = STATE(5346), - [sym_preproc_parenthesized_expression] = STATE(5346), - [sym_preproc_defined] = STATE(5346), - [sym_preproc_unary_expression] = STATE(5346), - [sym_preproc_call_expression] = STATE(5346), - [sym_preproc_binary_expression] = STATE(5346), - [sym_number_literal] = STATE(5346), - [sym_string_literal] = STATE(5346), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7274), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), - }, - [3155] = { - [sym__preproc_expression] = STATE(5362), - [sym_preproc_parenthesized_expression] = STATE(5362), - [sym_preproc_defined] = STATE(5362), - [sym_preproc_unary_expression] = STATE(5362), - [sym_preproc_call_expression] = STATE(5362), - [sym_preproc_binary_expression] = STATE(5362), - [sym_number_literal] = STATE(5362), - [sym_string_literal] = STATE(5362), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7276), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), - }, - [3156] = { - [anon_sym_COMMA] = ACTIONS(7278), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7280), - [aux_sym_module_statement_token1] = ACTIONS(7280), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7280), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7280), - [aux_sym_subroutine_statement_token1] = ACTIONS(7280), - [aux_sym_function_statement_token1] = ACTIONS(7280), - [aux_sym_procedure_attributes_token1] = ACTIONS(7280), - [aux_sym_procedure_attributes_token3] = ACTIONS(7280), - [aux_sym_use_statement_token2] = ACTIONS(7280), - [anon_sym_COLON_COLON] = ACTIONS(7278), - [aux_sym_implicit_statement_token3] = ACTIONS(7280), - [aux_sym_implicit_statement_token4] = ACTIONS(7280), - [aux_sym_save_statement_token1] = ACTIONS(7280), - [aux_sym_private_statement_token1] = ACTIONS(7280), - [aux_sym_public_statement_token1] = ACTIONS(7280), - [aux_sym_derived_type_definition_token1] = ACTIONS(7280), - [aux_sym_procedure_attribute_token6] = ACTIONS(7280), - [aux_sym_variable_attributes_token2] = ACTIONS(7280), - [aux_sym_variable_attributes_token3] = ACTIONS(7280), - [aux_sym_variable_attributes_token5] = ACTIONS(7280), - [aux_sym__intrinsic_type_token1] = ACTIONS(7280), - [aux_sym__intrinsic_type_token2] = ACTIONS(7280), - [aux_sym__intrinsic_type_token3] = ACTIONS(7280), - [aux_sym__intrinsic_type_token4] = ACTIONS(7280), - [aux_sym__intrinsic_type_token6] = ACTIONS(7280), - [aux_sym__intrinsic_type_token7] = ACTIONS(7280), - [aux_sym__intrinsic_type_token8] = ACTIONS(7280), - [aux_sym__intrinsic_type_token9] = ACTIONS(7280), - [aux_sym__intrinsic_type_token10] = ACTIONS(7280), - [aux_sym_derived_type_token1] = ACTIONS(7280), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7280), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7280), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7280), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7280), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7280), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7280), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7280), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7280), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7280), - [aux_sym_type_qualifier_token1] = ACTIONS(7280), - [aux_sym_type_qualifier_token2] = ACTIONS(7280), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7280), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7280), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7280), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7280), - [aux_sym_stop_statement_token1] = ACTIONS(7280), - [aux_sym_stop_statement_token2] = ACTIONS(7280), - [aux_sym_keyword_statement_token2] = ACTIONS(7280), - [aux_sym_keyword_statement_token3] = ACTIONS(7280), - [aux_sym_data_statement_token1] = ACTIONS(7280), - [aux_sym__inline_if_statement_token1] = ACTIONS(7280), - [aux_sym_end_if_statement_token1] = ACTIONS(7280), - [aux_sym_elseif_clause_token2] = ACTIONS(7280), - [aux_sym_select_case_statement_token1] = ACTIONS(7280), - [aux_sym_block_construct_token1] = ACTIONS(7280), - [aux_sym_format_statement_token1] = ACTIONS(7280), - [aux_sym_inquire_statement_token1] = ACTIONS(7280), - [aux_sym_entry_statement_token1] = ACTIONS(7280), - [aux_sym_null_literal_token1] = ACTIONS(7280), - [aux_sym_coarray_statement_token1] = ACTIONS(7280), - [aux_sym_coarray_statement_token2] = ACTIONS(7280), - [aux_sym_coarray_statement_token6] = ACTIONS(7280), - [aux_sym_coarray_statement_token8] = ACTIONS(7280), - [aux_sym_coarray_statement_token11] = ACTIONS(7280), - [aux_sym_coarray_statement_token12] = ACTIONS(7280), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7280), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7280), - [aux_sym_identifier_token1] = ACTIONS(7280), - [sym_comment] = ACTIONS(21), - }, - [3157] = { - [anon_sym_COMMA] = ACTIONS(6606), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(6608), - [aux_sym_module_statement_token1] = ACTIONS(6608), - [aux_sym_defined_io_procedure_token1] = ACTIONS(6608), - [aux_sym_defined_io_procedure_token2] = ACTIONS(6608), - [aux_sym_subroutine_statement_token1] = ACTIONS(6608), - [aux_sym_function_statement_token1] = ACTIONS(6608), - [aux_sym_procedure_attributes_token1] = ACTIONS(6608), - [aux_sym_procedure_attributes_token3] = ACTIONS(6608), - [aux_sym_use_statement_token2] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6606), - [aux_sym_implicit_statement_token3] = ACTIONS(6608), - [aux_sym_implicit_statement_token4] = ACTIONS(6608), - [aux_sym_save_statement_token1] = ACTIONS(6608), - [aux_sym_private_statement_token1] = ACTIONS(6608), - [aux_sym_public_statement_token1] = ACTIONS(6608), - [aux_sym_derived_type_definition_token1] = ACTIONS(6608), - [aux_sym_procedure_attribute_token6] = ACTIONS(6608), - [aux_sym_variable_attributes_token2] = ACTIONS(6608), - [aux_sym_variable_attributes_token3] = ACTIONS(6608), - [aux_sym_variable_attributes_token5] = ACTIONS(6608), - [aux_sym__intrinsic_type_token1] = ACTIONS(6608), - [aux_sym__intrinsic_type_token2] = ACTIONS(6608), - [aux_sym__intrinsic_type_token3] = ACTIONS(6608), - [aux_sym__intrinsic_type_token4] = ACTIONS(6608), - [aux_sym__intrinsic_type_token6] = ACTIONS(6608), - [aux_sym__intrinsic_type_token7] = ACTIONS(6608), - [aux_sym__intrinsic_type_token8] = ACTIONS(6608), - [aux_sym__intrinsic_type_token9] = ACTIONS(6608), - [aux_sym__intrinsic_type_token10] = ACTIONS(6608), - [aux_sym_derived_type_token1] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6608), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6608), - [aux_sym_type_qualifier_token1] = ACTIONS(6608), - [aux_sym_type_qualifier_token2] = ACTIONS(6608), - [aux_sym_procedure_qualifier_token1] = ACTIONS(6608), - [aux_sym_procedure_qualifier_token2] = ACTIONS(6608), - [aux_sym_procedure_qualifier_token3] = ACTIONS(6608), - [aux_sym_procedure_qualifier_token4] = ACTIONS(6608), - [aux_sym_stop_statement_token1] = ACTIONS(6608), - [aux_sym_stop_statement_token2] = ACTIONS(6608), - [aux_sym_keyword_statement_token2] = ACTIONS(6608), - [aux_sym_keyword_statement_token3] = ACTIONS(6608), - [aux_sym_data_statement_token1] = ACTIONS(6608), - [aux_sym__inline_if_statement_token1] = ACTIONS(6608), - [aux_sym_end_if_statement_token1] = ACTIONS(6608), - [aux_sym_elseif_clause_token2] = ACTIONS(6608), - [aux_sym_select_case_statement_token1] = ACTIONS(6608), - [aux_sym_block_construct_token1] = ACTIONS(6608), - [aux_sym_format_statement_token1] = ACTIONS(6608), - [aux_sym_inquire_statement_token1] = ACTIONS(6608), - [aux_sym_entry_statement_token1] = ACTIONS(6608), - [aux_sym_null_literal_token1] = ACTIONS(6608), - [aux_sym_coarray_statement_token1] = ACTIONS(6608), - [aux_sym_coarray_statement_token2] = ACTIONS(6608), - [aux_sym_coarray_statement_token6] = ACTIONS(6608), - [aux_sym_coarray_statement_token8] = ACTIONS(6608), - [aux_sym_coarray_statement_token11] = ACTIONS(6608), - [aux_sym_coarray_statement_token12] = ACTIONS(6608), - [aux_sym_coarray_team_statement_token1] = ACTIONS(6608), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(6608), - [aux_sym_identifier_token1] = ACTIONS(6608), - [sym_comment] = ACTIONS(21), - }, - [3158] = { - [anon_sym_COMMA] = ACTIONS(7282), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7284), - [aux_sym_module_statement_token1] = ACTIONS(7284), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7284), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7284), - [aux_sym_subroutine_statement_token1] = ACTIONS(7284), - [aux_sym_function_statement_token1] = ACTIONS(7284), - [aux_sym_procedure_attributes_token1] = ACTIONS(7284), - [aux_sym_procedure_attributes_token3] = ACTIONS(7284), - [aux_sym_use_statement_token2] = ACTIONS(7284), - [anon_sym_COLON_COLON] = ACTIONS(7282), - [aux_sym_implicit_statement_token3] = ACTIONS(7284), - [aux_sym_implicit_statement_token4] = ACTIONS(7284), - [aux_sym_save_statement_token1] = ACTIONS(7284), - [aux_sym_private_statement_token1] = ACTIONS(7284), - [aux_sym_public_statement_token1] = ACTIONS(7284), - [aux_sym_derived_type_definition_token1] = ACTIONS(7284), - [aux_sym_procedure_attribute_token6] = ACTIONS(7284), - [aux_sym_variable_attributes_token2] = ACTIONS(7284), - [aux_sym_variable_attributes_token3] = ACTIONS(7284), - [aux_sym_variable_attributes_token5] = ACTIONS(7284), - [aux_sym__intrinsic_type_token1] = ACTIONS(7284), - [aux_sym__intrinsic_type_token2] = ACTIONS(7284), - [aux_sym__intrinsic_type_token3] = ACTIONS(7284), - [aux_sym__intrinsic_type_token4] = ACTIONS(7284), - [aux_sym__intrinsic_type_token6] = ACTIONS(7284), - [aux_sym__intrinsic_type_token7] = ACTIONS(7284), - [aux_sym__intrinsic_type_token8] = ACTIONS(7284), - [aux_sym__intrinsic_type_token9] = ACTIONS(7284), - [aux_sym__intrinsic_type_token10] = ACTIONS(7284), - [aux_sym_derived_type_token1] = ACTIONS(7284), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7284), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7284), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7284), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7284), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7284), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7284), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7284), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7284), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7284), - [aux_sym_type_qualifier_token1] = ACTIONS(7284), - [aux_sym_type_qualifier_token2] = ACTIONS(7284), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7284), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7284), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7284), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7284), - [aux_sym_stop_statement_token1] = ACTIONS(7284), - [aux_sym_stop_statement_token2] = ACTIONS(7284), - [aux_sym_keyword_statement_token2] = ACTIONS(7284), - [aux_sym_keyword_statement_token3] = ACTIONS(7284), - [aux_sym_data_statement_token1] = ACTIONS(7284), - [aux_sym__inline_if_statement_token1] = ACTIONS(7284), - [aux_sym_end_if_statement_token1] = ACTIONS(7284), - [aux_sym_elseif_clause_token2] = ACTIONS(7284), - [aux_sym_select_case_statement_token1] = ACTIONS(7284), - [aux_sym_block_construct_token1] = ACTIONS(7284), - [aux_sym_format_statement_token1] = ACTIONS(7284), - [aux_sym_inquire_statement_token1] = ACTIONS(7284), - [aux_sym_entry_statement_token1] = ACTIONS(7284), - [aux_sym_null_literal_token1] = ACTIONS(7284), - [aux_sym_coarray_statement_token1] = ACTIONS(7284), - [aux_sym_coarray_statement_token2] = ACTIONS(7284), - [aux_sym_coarray_statement_token6] = ACTIONS(7284), - [aux_sym_coarray_statement_token8] = ACTIONS(7284), - [aux_sym_coarray_statement_token11] = ACTIONS(7284), - [aux_sym_coarray_statement_token12] = ACTIONS(7284), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7284), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7284), - [aux_sym_identifier_token1] = ACTIONS(7284), - [sym_comment] = ACTIONS(21), - }, - [3159] = { - [sym__name] = STATE(2895), - [sym_identifier] = STATE(2905), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7286), - [aux_sym_module_statement_token1] = ACTIONS(7288), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7290), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7290), - [aux_sym_subroutine_statement_token1] = ACTIONS(7288), - [aux_sym_function_statement_token1] = ACTIONS(7288), - [aux_sym_procedure_attributes_token1] = ACTIONS(7288), - [aux_sym_procedure_attributes_token3] = ACTIONS(7290), - [aux_sym_use_statement_token2] = ACTIONS(7290), - [aux_sym_implicit_statement_token3] = ACTIONS(7288), - [aux_sym_implicit_statement_token4] = ACTIONS(7290), - [aux_sym_save_statement_token1] = ACTIONS(7290), - [aux_sym_private_statement_token1] = ACTIONS(7290), - [aux_sym_public_statement_token1] = ACTIONS(7290), - [aux_sym_derived_type_definition_token1] = ACTIONS(7290), - [aux_sym_procedure_attribute_token6] = ACTIONS(7290), - [aux_sym_variable_attributes_token2] = ACTIONS(7290), - [aux_sym_variable_attributes_token3] = ACTIONS(7290), - [aux_sym_variable_attributes_token5] = ACTIONS(7290), - [aux_sym__intrinsic_type_token1] = ACTIONS(7292), - [aux_sym__intrinsic_type_token2] = ACTIONS(7288), - [aux_sym__intrinsic_type_token3] = ACTIONS(7292), - [aux_sym__intrinsic_type_token4] = ACTIONS(7295), - [aux_sym__intrinsic_type_token6] = ACTIONS(7288), - [aux_sym__intrinsic_type_token7] = ACTIONS(7288), - [aux_sym__intrinsic_type_token8] = ACTIONS(7288), - [aux_sym__intrinsic_type_token9] = ACTIONS(7288), - [aux_sym__intrinsic_type_token10] = ACTIONS(7288), - [aux_sym_derived_type_token1] = ACTIONS(7288), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7290), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7290), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7298), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7290), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7290), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7290), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7290), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7290), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7290), - [aux_sym_type_qualifier_token1] = ACTIONS(7290), - [aux_sym_type_qualifier_token2] = ACTIONS(7290), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7288), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7288), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7288), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7288), - [aux_sym_stop_statement_token1] = ACTIONS(7290), - [aux_sym_stop_statement_token2] = ACTIONS(7290), - [aux_sym_keyword_statement_token2] = ACTIONS(7290), - [aux_sym_keyword_statement_token3] = ACTIONS(7290), - [aux_sym_data_statement_token1] = ACTIONS(7290), - [aux_sym__inline_if_statement_token1] = ACTIONS(7290), - [aux_sym_end_if_statement_token1] = ACTIONS(7290), - [aux_sym_elseif_clause_token2] = ACTIONS(7290), - [aux_sym_select_case_statement_token1] = ACTIONS(7300), - [aux_sym_block_construct_token1] = ACTIONS(7290), - [aux_sym_format_statement_token1] = ACTIONS(7290), - [aux_sym_inquire_statement_token1] = ACTIONS(7290), - [aux_sym_entry_statement_token1] = ACTIONS(7290), - [aux_sym_null_literal_token1] = ACTIONS(7290), - [aux_sym_coarray_statement_token1] = ACTIONS(7290), - [aux_sym_coarray_statement_token2] = ACTIONS(7290), - [aux_sym_coarray_statement_token6] = ACTIONS(7290), - [aux_sym_coarray_statement_token8] = ACTIONS(7290), - [aux_sym_coarray_statement_token11] = ACTIONS(7290), - [aux_sym_coarray_statement_token12] = ACTIONS(7290), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7290), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7290), - [aux_sym_identifier_token1] = ACTIONS(7290), - [sym_comment] = ACTIONS(21), - }, - [3160] = { - [anon_sym_COMMA] = ACTIONS(7302), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7304), - [aux_sym_module_statement_token1] = ACTIONS(7304), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7304), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7304), - [aux_sym_subroutine_statement_token1] = ACTIONS(7304), - [aux_sym_function_statement_token1] = ACTIONS(7304), - [aux_sym_procedure_attributes_token1] = ACTIONS(7304), - [aux_sym_procedure_attributes_token3] = ACTIONS(7304), - [aux_sym_use_statement_token2] = ACTIONS(7304), - [anon_sym_COLON_COLON] = ACTIONS(7302), - [aux_sym_implicit_statement_token3] = ACTIONS(7304), - [aux_sym_implicit_statement_token4] = ACTIONS(7304), - [aux_sym_save_statement_token1] = ACTIONS(7304), - [aux_sym_private_statement_token1] = ACTIONS(7304), - [aux_sym_public_statement_token1] = ACTIONS(7304), - [aux_sym_derived_type_definition_token1] = ACTIONS(7304), - [aux_sym_procedure_attribute_token6] = ACTIONS(7304), - [aux_sym_variable_attributes_token2] = ACTIONS(7304), - [aux_sym_variable_attributes_token3] = ACTIONS(7304), - [aux_sym_variable_attributes_token5] = ACTIONS(7304), - [aux_sym__intrinsic_type_token1] = ACTIONS(7304), - [aux_sym__intrinsic_type_token2] = ACTIONS(7304), - [aux_sym__intrinsic_type_token3] = ACTIONS(7304), - [aux_sym__intrinsic_type_token4] = ACTIONS(7304), - [aux_sym__intrinsic_type_token6] = ACTIONS(7304), - [aux_sym__intrinsic_type_token7] = ACTIONS(7304), - [aux_sym__intrinsic_type_token8] = ACTIONS(7304), - [aux_sym__intrinsic_type_token9] = ACTIONS(7304), - [aux_sym__intrinsic_type_token10] = ACTIONS(7304), - [aux_sym_derived_type_token1] = ACTIONS(7304), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7304), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7304), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7304), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7304), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7304), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7304), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7304), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7304), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7304), - [aux_sym_type_qualifier_token1] = ACTIONS(7304), - [aux_sym_type_qualifier_token2] = ACTIONS(7304), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7304), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7304), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7304), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7304), - [aux_sym_stop_statement_token1] = ACTIONS(7304), - [aux_sym_stop_statement_token2] = ACTIONS(7304), - [aux_sym_keyword_statement_token2] = ACTIONS(7304), - [aux_sym_keyword_statement_token3] = ACTIONS(7304), - [aux_sym_data_statement_token1] = ACTIONS(7304), - [aux_sym__inline_if_statement_token1] = ACTIONS(7304), - [aux_sym_end_if_statement_token1] = ACTIONS(7304), - [aux_sym_elseif_clause_token2] = ACTIONS(7304), - [aux_sym_select_case_statement_token1] = ACTIONS(7304), - [aux_sym_block_construct_token1] = ACTIONS(7304), - [aux_sym_format_statement_token1] = ACTIONS(7304), - [aux_sym_inquire_statement_token1] = ACTIONS(7304), - [aux_sym_entry_statement_token1] = ACTIONS(7304), - [aux_sym_null_literal_token1] = ACTIONS(7304), - [aux_sym_coarray_statement_token1] = ACTIONS(7304), - [aux_sym_coarray_statement_token2] = ACTIONS(7304), - [aux_sym_coarray_statement_token6] = ACTIONS(7304), - [aux_sym_coarray_statement_token8] = ACTIONS(7304), - [aux_sym_coarray_statement_token11] = ACTIONS(7304), - [aux_sym_coarray_statement_token12] = ACTIONS(7304), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7304), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7304), - [aux_sym_identifier_token1] = ACTIONS(7304), - [sym_comment] = ACTIONS(21), - }, - [3161] = { - [anon_sym_COMMA] = ACTIONS(7306), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7308), - [aux_sym_module_statement_token1] = ACTIONS(7308), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7308), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7308), - [aux_sym_subroutine_statement_token1] = ACTIONS(7308), - [aux_sym_function_statement_token1] = ACTIONS(7308), - [aux_sym_procedure_attributes_token1] = ACTIONS(7308), - [aux_sym_procedure_attributes_token3] = ACTIONS(7308), - [aux_sym_use_statement_token2] = ACTIONS(7308), - [anon_sym_COLON_COLON] = ACTIONS(7306), - [aux_sym_implicit_statement_token3] = ACTIONS(7308), - [aux_sym_implicit_statement_token4] = ACTIONS(7308), - [aux_sym_save_statement_token1] = ACTIONS(7308), - [aux_sym_private_statement_token1] = ACTIONS(7308), - [aux_sym_public_statement_token1] = ACTIONS(7308), - [aux_sym_derived_type_definition_token1] = ACTIONS(7308), - [aux_sym_procedure_attribute_token6] = ACTIONS(7308), - [aux_sym_variable_attributes_token2] = ACTIONS(7308), - [aux_sym_variable_attributes_token3] = ACTIONS(7308), - [aux_sym_variable_attributes_token5] = ACTIONS(7308), - [aux_sym__intrinsic_type_token1] = ACTIONS(7308), - [aux_sym__intrinsic_type_token2] = ACTIONS(7308), - [aux_sym__intrinsic_type_token3] = ACTIONS(7308), - [aux_sym__intrinsic_type_token4] = ACTIONS(7308), - [aux_sym__intrinsic_type_token6] = ACTIONS(7308), - [aux_sym__intrinsic_type_token7] = ACTIONS(7308), - [aux_sym__intrinsic_type_token8] = ACTIONS(7308), - [aux_sym__intrinsic_type_token9] = ACTIONS(7308), - [aux_sym__intrinsic_type_token10] = ACTIONS(7308), - [aux_sym_derived_type_token1] = ACTIONS(7308), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7308), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7308), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7308), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7308), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7308), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7308), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7308), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7308), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7308), - [aux_sym_type_qualifier_token1] = ACTIONS(7308), - [aux_sym_type_qualifier_token2] = ACTIONS(7308), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7308), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7308), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7308), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7308), - [aux_sym_stop_statement_token1] = ACTIONS(7308), - [aux_sym_stop_statement_token2] = ACTIONS(7308), - [aux_sym_keyword_statement_token2] = ACTIONS(7308), - [aux_sym_keyword_statement_token3] = ACTIONS(7308), - [aux_sym_data_statement_token1] = ACTIONS(7308), - [aux_sym__inline_if_statement_token1] = ACTIONS(7308), - [aux_sym_end_if_statement_token1] = ACTIONS(7308), - [aux_sym_elseif_clause_token2] = ACTIONS(7308), - [aux_sym_select_case_statement_token1] = ACTIONS(7308), - [aux_sym_block_construct_token1] = ACTIONS(7308), - [aux_sym_format_statement_token1] = ACTIONS(7308), - [aux_sym_inquire_statement_token1] = ACTIONS(7308), - [aux_sym_entry_statement_token1] = ACTIONS(7308), - [aux_sym_null_literal_token1] = ACTIONS(7308), - [aux_sym_coarray_statement_token1] = ACTIONS(7308), - [aux_sym_coarray_statement_token2] = ACTIONS(7308), - [aux_sym_coarray_statement_token6] = ACTIONS(7308), - [aux_sym_coarray_statement_token8] = ACTIONS(7308), - [aux_sym_coarray_statement_token11] = ACTIONS(7308), - [aux_sym_coarray_statement_token12] = ACTIONS(7308), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7308), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7308), - [aux_sym_identifier_token1] = ACTIONS(7308), - [sym_comment] = ACTIONS(21), - }, - [3162] = { - [sym__preproc_expression] = STATE(5365), - [sym_preproc_parenthesized_expression] = STATE(5365), - [sym_preproc_defined] = STATE(5365), - [sym_preproc_unary_expression] = STATE(5365), - [sym_preproc_call_expression] = STATE(5365), - [sym_preproc_binary_expression] = STATE(5365), - [sym_number_literal] = STATE(5365), - [sym_string_literal] = STATE(5365), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7310), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), - }, - [3163] = { - [anon_sym_COMMA] = ACTIONS(7312), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7314), - [aux_sym_module_statement_token1] = ACTIONS(7314), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7314), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7314), - [aux_sym_subroutine_statement_token1] = ACTIONS(7314), - [aux_sym_function_statement_token1] = ACTIONS(7314), - [aux_sym_procedure_attributes_token1] = ACTIONS(7314), - [aux_sym_procedure_attributes_token3] = ACTIONS(7314), - [aux_sym_use_statement_token2] = ACTIONS(7314), - [anon_sym_COLON_COLON] = ACTIONS(7312), - [aux_sym_implicit_statement_token3] = ACTIONS(7314), - [aux_sym_implicit_statement_token4] = ACTIONS(7314), - [aux_sym_save_statement_token1] = ACTIONS(7314), - [aux_sym_private_statement_token1] = ACTIONS(7314), - [aux_sym_public_statement_token1] = ACTIONS(7314), - [aux_sym_derived_type_definition_token1] = ACTIONS(7314), - [aux_sym_procedure_attribute_token6] = ACTIONS(7314), - [aux_sym_variable_attributes_token2] = ACTIONS(7314), - [aux_sym_variable_attributes_token3] = ACTIONS(7314), - [aux_sym_variable_attributes_token5] = ACTIONS(7314), - [aux_sym__intrinsic_type_token1] = ACTIONS(7314), - [aux_sym__intrinsic_type_token2] = ACTIONS(7314), - [aux_sym__intrinsic_type_token3] = ACTIONS(7314), - [aux_sym__intrinsic_type_token4] = ACTIONS(7314), - [aux_sym__intrinsic_type_token6] = ACTIONS(7314), - [aux_sym__intrinsic_type_token7] = ACTIONS(7314), - [aux_sym__intrinsic_type_token8] = ACTIONS(7314), - [aux_sym__intrinsic_type_token9] = ACTIONS(7314), - [aux_sym__intrinsic_type_token10] = ACTIONS(7314), - [aux_sym_derived_type_token1] = ACTIONS(7314), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7314), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7314), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7314), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7314), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7314), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7314), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7314), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7314), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7314), - [aux_sym_type_qualifier_token1] = ACTIONS(7314), - [aux_sym_type_qualifier_token2] = ACTIONS(7314), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7314), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7314), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7314), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7314), - [aux_sym_stop_statement_token1] = ACTIONS(7314), - [aux_sym_stop_statement_token2] = ACTIONS(7314), - [aux_sym_keyword_statement_token2] = ACTIONS(7314), - [aux_sym_keyword_statement_token3] = ACTIONS(7314), - [aux_sym_data_statement_token1] = ACTIONS(7314), - [aux_sym__inline_if_statement_token1] = ACTIONS(7314), - [aux_sym_end_if_statement_token1] = ACTIONS(7314), - [aux_sym_elseif_clause_token2] = ACTIONS(7314), - [aux_sym_select_case_statement_token1] = ACTIONS(7314), - [aux_sym_block_construct_token1] = ACTIONS(7314), - [aux_sym_format_statement_token1] = ACTIONS(7314), - [aux_sym_inquire_statement_token1] = ACTIONS(7314), - [aux_sym_entry_statement_token1] = ACTIONS(7314), - [aux_sym_null_literal_token1] = ACTIONS(7314), - [aux_sym_coarray_statement_token1] = ACTIONS(7314), - [aux_sym_coarray_statement_token2] = ACTIONS(7314), - [aux_sym_coarray_statement_token6] = ACTIONS(7314), - [aux_sym_coarray_statement_token8] = ACTIONS(7314), - [aux_sym_coarray_statement_token11] = ACTIONS(7314), - [aux_sym_coarray_statement_token12] = ACTIONS(7314), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7314), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7314), - [aux_sym_identifier_token1] = ACTIONS(7314), - [sym_comment] = ACTIONS(21), - }, - [3164] = { - [anon_sym_COMMA] = ACTIONS(7316), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7318), - [aux_sym_module_statement_token1] = ACTIONS(7318), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7318), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7318), - [aux_sym_subroutine_statement_token1] = ACTIONS(7318), - [aux_sym_function_statement_token1] = ACTIONS(7318), - [aux_sym_procedure_attributes_token1] = ACTIONS(7318), - [aux_sym_procedure_attributes_token3] = ACTIONS(7318), - [aux_sym_use_statement_token2] = ACTIONS(7318), - [anon_sym_COLON_COLON] = ACTIONS(7316), - [aux_sym_implicit_statement_token3] = ACTIONS(7318), - [aux_sym_implicit_statement_token4] = ACTIONS(7318), - [aux_sym_save_statement_token1] = ACTIONS(7318), - [aux_sym_private_statement_token1] = ACTIONS(7318), - [aux_sym_public_statement_token1] = ACTIONS(7318), - [aux_sym_derived_type_definition_token1] = ACTIONS(7318), - [aux_sym_procedure_attribute_token6] = ACTIONS(7318), - [aux_sym_variable_attributes_token2] = ACTIONS(7318), - [aux_sym_variable_attributes_token3] = ACTIONS(7318), - [aux_sym_variable_attributes_token5] = ACTIONS(7318), - [aux_sym__intrinsic_type_token1] = ACTIONS(7318), - [aux_sym__intrinsic_type_token2] = ACTIONS(7318), - [aux_sym__intrinsic_type_token3] = ACTIONS(7318), - [aux_sym__intrinsic_type_token4] = ACTIONS(7318), - [aux_sym__intrinsic_type_token6] = ACTIONS(7318), - [aux_sym__intrinsic_type_token7] = ACTIONS(7318), - [aux_sym__intrinsic_type_token8] = ACTIONS(7318), - [aux_sym__intrinsic_type_token9] = ACTIONS(7318), - [aux_sym__intrinsic_type_token10] = ACTIONS(7318), - [aux_sym_derived_type_token1] = ACTIONS(7318), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7318), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7318), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7318), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7318), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7318), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7318), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7318), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7318), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7318), - [aux_sym_type_qualifier_token1] = ACTIONS(7318), - [aux_sym_type_qualifier_token2] = ACTIONS(7318), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7318), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7318), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7318), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7318), - [aux_sym_stop_statement_token1] = ACTIONS(7318), - [aux_sym_stop_statement_token2] = ACTIONS(7318), - [aux_sym_keyword_statement_token2] = ACTIONS(7318), - [aux_sym_keyword_statement_token3] = ACTIONS(7318), - [aux_sym_data_statement_token1] = ACTIONS(7318), - [aux_sym__inline_if_statement_token1] = ACTIONS(7318), - [aux_sym_end_if_statement_token1] = ACTIONS(7318), - [aux_sym_elseif_clause_token2] = ACTIONS(7318), - [aux_sym_select_case_statement_token1] = ACTIONS(7318), - [aux_sym_block_construct_token1] = ACTIONS(7318), - [aux_sym_format_statement_token1] = ACTIONS(7318), - [aux_sym_inquire_statement_token1] = ACTIONS(7318), - [aux_sym_entry_statement_token1] = ACTIONS(7318), - [aux_sym_null_literal_token1] = ACTIONS(7318), - [aux_sym_coarray_statement_token1] = ACTIONS(7318), - [aux_sym_coarray_statement_token2] = ACTIONS(7318), - [aux_sym_coarray_statement_token6] = ACTIONS(7318), - [aux_sym_coarray_statement_token8] = ACTIONS(7318), - [aux_sym_coarray_statement_token11] = ACTIONS(7318), - [aux_sym_coarray_statement_token12] = ACTIONS(7318), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7318), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7318), - [aux_sym_identifier_token1] = ACTIONS(7318), + [3038] = { + [sym__name] = STATE(6891), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(848), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_subroutine_statement_token1] = ACTIONS(7080), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7082), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(7082), }, - [3165] = { - [sym__preproc_expression] = STATE(5357), - [sym_preproc_parenthesized_expression] = STATE(5357), - [sym_preproc_defined] = STATE(5357), - [sym_preproc_unary_expression] = STATE(5357), - [sym_preproc_call_expression] = STATE(5357), - [sym_preproc_binary_expression] = STATE(5357), - [sym_number_literal] = STATE(5357), - [sym_string_literal] = STATE(5357), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7320), + [3039] = { + [sym__expression] = STATE(4175), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6928), + [anon_sym_DASH] = ACTIONS(6928), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6930), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6932), + [sym__string_literal_kind] = ACTIONS(6934), }, - [3166] = { - [anon_sym_COMMA] = ACTIONS(7322), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7324), - [aux_sym_module_statement_token1] = ACTIONS(7324), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7324), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7324), - [aux_sym_subroutine_statement_token1] = ACTIONS(7324), - [aux_sym_function_statement_token1] = ACTIONS(7324), - [aux_sym_procedure_attributes_token1] = ACTIONS(7324), - [aux_sym_procedure_attributes_token3] = ACTIONS(7324), - [aux_sym_use_statement_token2] = ACTIONS(7324), - [anon_sym_COLON_COLON] = ACTIONS(7322), - [aux_sym_implicit_statement_token3] = ACTIONS(7324), - [aux_sym_implicit_statement_token4] = ACTIONS(7324), - [aux_sym_save_statement_token1] = ACTIONS(7324), - [aux_sym_private_statement_token1] = ACTIONS(7324), - [aux_sym_public_statement_token1] = ACTIONS(7324), - [aux_sym_derived_type_definition_token1] = ACTIONS(7324), - [aux_sym_procedure_attribute_token6] = ACTIONS(7324), - [aux_sym_variable_attributes_token2] = ACTIONS(7324), - [aux_sym_variable_attributes_token3] = ACTIONS(7324), - [aux_sym_variable_attributes_token5] = ACTIONS(7324), - [aux_sym__intrinsic_type_token1] = ACTIONS(7324), - [aux_sym__intrinsic_type_token2] = ACTIONS(7324), - [aux_sym__intrinsic_type_token3] = ACTIONS(7324), - [aux_sym__intrinsic_type_token4] = ACTIONS(7324), - [aux_sym__intrinsic_type_token6] = ACTIONS(7324), - [aux_sym__intrinsic_type_token7] = ACTIONS(7324), - [aux_sym__intrinsic_type_token8] = ACTIONS(7324), - [aux_sym__intrinsic_type_token9] = ACTIONS(7324), - [aux_sym__intrinsic_type_token10] = ACTIONS(7324), - [aux_sym_derived_type_token1] = ACTIONS(7324), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7324), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7324), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7324), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7324), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7324), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7324), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7324), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7324), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7324), - [aux_sym_type_qualifier_token1] = ACTIONS(7324), - [aux_sym_type_qualifier_token2] = ACTIONS(7324), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7324), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7324), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7324), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7324), - [aux_sym_stop_statement_token1] = ACTIONS(7324), - [aux_sym_stop_statement_token2] = ACTIONS(7324), - [aux_sym_keyword_statement_token2] = ACTIONS(7324), - [aux_sym_keyword_statement_token3] = ACTIONS(7324), - [aux_sym_data_statement_token1] = ACTIONS(7324), - [aux_sym__inline_if_statement_token1] = ACTIONS(7324), - [aux_sym_end_if_statement_token1] = ACTIONS(7324), - [aux_sym_elseif_clause_token2] = ACTIONS(7324), - [aux_sym_select_case_statement_token1] = ACTIONS(7324), - [aux_sym_block_construct_token1] = ACTIONS(7324), - [aux_sym_format_statement_token1] = ACTIONS(7324), - [aux_sym_inquire_statement_token1] = ACTIONS(7324), - [aux_sym_entry_statement_token1] = ACTIONS(7324), - [aux_sym_null_literal_token1] = ACTIONS(7324), - [aux_sym_coarray_statement_token1] = ACTIONS(7324), - [aux_sym_coarray_statement_token2] = ACTIONS(7324), - [aux_sym_coarray_statement_token6] = ACTIONS(7324), - [aux_sym_coarray_statement_token8] = ACTIONS(7324), - [aux_sym_coarray_statement_token11] = ACTIONS(7324), - [aux_sym_coarray_statement_token12] = ACTIONS(7324), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7324), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7324), - [aux_sym_identifier_token1] = ACTIONS(7324), + [3040] = { + [sym__name] = STATE(6941), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(855), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_function_statement_token1] = ACTIONS(7084), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7086), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(7086), }, - [3167] = { - [sym__preproc_expression] = STATE(5369), - [sym_preproc_parenthesized_expression] = STATE(5369), - [sym_preproc_defined] = STATE(5369), - [sym_preproc_unary_expression] = STATE(5369), - [sym_preproc_call_expression] = STATE(5369), - [sym_preproc_binary_expression] = STATE(5369), - [sym_number_literal] = STATE(5369), - [sym_string_literal] = STATE(5369), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7326), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3041] = { + [sym__name] = STATE(6646), + [sym_identifier] = STATE(6091), + [sym__end_of_statement] = STATE(4935), + [anon_sym_LPAREN2] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_module_procedure_statement_token1] = ACTIONS(7088), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7090), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4347), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__external_end_of_statement] = ACTIONS(7090), }, - [3168] = { - [sym__preproc_expression] = STATE(5366), - [sym_preproc_parenthesized_expression] = STATE(5366), - [sym_preproc_defined] = STATE(5366), - [sym_preproc_unary_expression] = STATE(5366), - [sym_preproc_call_expression] = STATE(5366), - [sym_preproc_binary_expression] = STATE(5366), - [sym_number_literal] = STATE(5366), - [sym_string_literal] = STATE(5366), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7328), + [3042] = { + [sym__expression] = STATE(4350), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(5051), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(5051), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5051), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3169] = { - [sym__preproc_expression] = STATE(5341), - [sym_preproc_parenthesized_expression] = STATE(5341), - [sym_preproc_defined] = STATE(5341), - [sym_preproc_unary_expression] = STATE(5341), - [sym_preproc_call_expression] = STATE(5341), - [sym_preproc_binary_expression] = STATE(5341), - [sym_number_literal] = STATE(5341), - [sym_string_literal] = STATE(5341), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7330), + [3043] = { + [sym__expression] = STATE(4544), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3170] = { - [sym__preproc_expression] = STATE(5350), - [sym_preproc_parenthesized_expression] = STATE(5350), - [sym_preproc_defined] = STATE(5350), - [sym_preproc_unary_expression] = STATE(5350), - [sym_preproc_call_expression] = STATE(5350), - [sym_preproc_binary_expression] = STATE(5350), - [sym_number_literal] = STATE(5350), - [sym_string_literal] = STATE(5350), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7332), + [3044] = { + [sym__expression] = STATE(4533), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3171] = { - [anon_sym_COMMA] = ACTIONS(7334), + [3045] = { + [sym__expression] = STATE(4500), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7336), - [aux_sym_module_statement_token1] = ACTIONS(7336), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7336), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7336), - [aux_sym_subroutine_statement_token1] = ACTIONS(7336), - [aux_sym_function_statement_token1] = ACTIONS(7336), - [aux_sym_procedure_attributes_token1] = ACTIONS(7336), - [aux_sym_procedure_attributes_token3] = ACTIONS(7336), - [aux_sym_use_statement_token2] = ACTIONS(7336), - [anon_sym_COLON_COLON] = ACTIONS(7334), - [aux_sym_implicit_statement_token3] = ACTIONS(7336), - [aux_sym_implicit_statement_token4] = ACTIONS(7336), - [aux_sym_save_statement_token1] = ACTIONS(7336), - [aux_sym_private_statement_token1] = ACTIONS(7336), - [aux_sym_public_statement_token1] = ACTIONS(7336), - [aux_sym_derived_type_definition_token1] = ACTIONS(7336), - [aux_sym_procedure_attribute_token6] = ACTIONS(7336), - [aux_sym_variable_attributes_token2] = ACTIONS(7336), - [aux_sym_variable_attributes_token3] = ACTIONS(7336), - [aux_sym_variable_attributes_token5] = ACTIONS(7336), - [aux_sym__intrinsic_type_token1] = ACTIONS(7336), - [aux_sym__intrinsic_type_token2] = ACTIONS(7336), - [aux_sym__intrinsic_type_token3] = ACTIONS(7336), - [aux_sym__intrinsic_type_token4] = ACTIONS(7336), - [aux_sym__intrinsic_type_token6] = ACTIONS(7336), - [aux_sym__intrinsic_type_token7] = ACTIONS(7336), - [aux_sym__intrinsic_type_token8] = ACTIONS(7336), - [aux_sym__intrinsic_type_token9] = ACTIONS(7336), - [aux_sym__intrinsic_type_token10] = ACTIONS(7336), - [aux_sym_derived_type_token1] = ACTIONS(7336), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7336), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7336), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7336), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7336), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7336), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7336), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7336), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7336), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7336), - [aux_sym_type_qualifier_token1] = ACTIONS(7336), - [aux_sym_type_qualifier_token2] = ACTIONS(7336), - [aux_sym_procedure_qualifier_token1] = ACTIONS(7336), - [aux_sym_procedure_qualifier_token2] = ACTIONS(7336), - [aux_sym_procedure_qualifier_token3] = ACTIONS(7336), - [aux_sym_procedure_qualifier_token4] = ACTIONS(7336), - [aux_sym_stop_statement_token1] = ACTIONS(7336), - [aux_sym_stop_statement_token2] = ACTIONS(7336), - [aux_sym_keyword_statement_token2] = ACTIONS(7336), - [aux_sym_keyword_statement_token3] = ACTIONS(7336), - [aux_sym_data_statement_token1] = ACTIONS(7336), - [aux_sym__inline_if_statement_token1] = ACTIONS(7336), - [aux_sym_end_if_statement_token1] = ACTIONS(7336), - [aux_sym_elseif_clause_token2] = ACTIONS(7336), - [aux_sym_select_case_statement_token1] = ACTIONS(7336), - [aux_sym_block_construct_token1] = ACTIONS(7336), - [aux_sym_format_statement_token1] = ACTIONS(7336), - [aux_sym_inquire_statement_token1] = ACTIONS(7336), - [aux_sym_entry_statement_token1] = ACTIONS(7336), - [aux_sym_null_literal_token1] = ACTIONS(7336), - [aux_sym_coarray_statement_token1] = ACTIONS(7336), - [aux_sym_coarray_statement_token2] = ACTIONS(7336), - [aux_sym_coarray_statement_token6] = ACTIONS(7336), - [aux_sym_coarray_statement_token8] = ACTIONS(7336), - [aux_sym_coarray_statement_token11] = ACTIONS(7336), - [aux_sym_coarray_statement_token12] = ACTIONS(7336), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7336), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7336), - [aux_sym_identifier_token1] = ACTIONS(7336), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3172] = { - [sym__preproc_expression] = STATE(5343), - [sym_preproc_parenthesized_expression] = STATE(5343), - [sym_preproc_defined] = STATE(5343), - [sym_preproc_unary_expression] = STATE(5343), - [sym_preproc_call_expression] = STATE(5343), - [sym_preproc_binary_expression] = STATE(5343), - [sym_number_literal] = STATE(5343), - [sym_string_literal] = STATE(5343), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [sym_preproc_comment] = ACTIONS(7338), + [3046] = { + [sym__expression] = STATE(4319), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3173] = { - [sym__preproc_expression] = STATE(5291), - [sym_preproc_parenthesized_expression] = STATE(5291), - [sym_preproc_defined] = STATE(5291), - [sym_preproc_unary_expression] = STATE(5291), - [sym_preproc_call_expression] = STATE(5291), - [sym_preproc_binary_expression] = STATE(5291), - [sym_number_literal] = STATE(5291), - [sym_string_literal] = STATE(5291), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3047] = { + [sym__expression] = STATE(4352), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(5018), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(5018), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5018), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3174] = { - [sym__preproc_expression] = STATE(5314), - [sym_preproc_parenthesized_expression] = STATE(5314), - [sym_preproc_defined] = STATE(5314), - [sym_preproc_unary_expression] = STATE(5314), - [sym_preproc_call_expression] = STATE(5314), - [sym_preproc_binary_expression] = STATE(5314), - [sym_number_literal] = STATE(5314), - [sym_string_literal] = STATE(5314), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3048] = { + [sym__expression] = STATE(4551), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3175] = { - [sym__preproc_expression] = STATE(5368), - [sym_preproc_parenthesized_expression] = STATE(5368), - [sym_preproc_defined] = STATE(5368), - [sym_preproc_unary_expression] = STATE(5368), - [sym_preproc_call_expression] = STATE(5368), - [sym_preproc_binary_expression] = STATE(5368), - [sym_number_literal] = STATE(5368), - [sym_string_literal] = STATE(5368), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3049] = { + [sym__expression] = STATE(4271), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + }, + [3050] = { + [sym__expression] = STATE(4278), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2966), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6980), + [anon_sym_DASH] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6982), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6984), + [sym__string_literal_kind] = ACTIONS(6986), }, - [3176] = { - [sym__preproc_expression] = STATE(5267), - [sym_preproc_parenthesized_expression] = STATE(5267), - [sym_preproc_defined] = STATE(5267), - [sym_preproc_unary_expression] = STATE(5267), - [sym_preproc_call_expression] = STATE(5267), - [sym_preproc_binary_expression] = STATE(5267), - [sym_number_literal] = STATE(5267), - [sym_string_literal] = STATE(5267), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3051] = { + [sym__expression] = STATE(4489), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3177] = { - [sym__preproc_expression] = STATE(5244), - [sym_preproc_parenthesized_expression] = STATE(5244), - [sym_preproc_defined] = STATE(5244), - [sym_preproc_unary_expression] = STATE(5244), - [sym_preproc_call_expression] = STATE(5244), - [sym_preproc_binary_expression] = STATE(5244), - [sym_number_literal] = STATE(5244), - [sym_string_literal] = STATE(5244), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3052] = { + [sym__expression] = STATE(4272), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3178] = { - [anon_sym_COMMA] = ACTIONS(7340), - [anon_sym_LPAREN2] = ACTIONS(7342), - [anon_sym_PLUS] = ACTIONS(7340), - [anon_sym_DASH] = ACTIONS(7340), + [3053] = { + [sym__expression] = STATE(4274), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7342), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7342), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7342), - [aux_sym_procedure_attributes_token3] = ACTIONS(7342), - [aux_sym_use_statement_token2] = ACTIONS(7342), - [aux_sym_implicit_statement_token4] = ACTIONS(7342), - [aux_sym_save_statement_token1] = ACTIONS(7342), - [aux_sym_private_statement_token1] = ACTIONS(7342), - [aux_sym_public_statement_token1] = ACTIONS(7342), - [aux_sym_derived_type_definition_token1] = ACTIONS(7342), - [aux_sym_procedure_attribute_token6] = ACTIONS(7342), - [aux_sym_variable_attributes_token2] = ACTIONS(7342), - [aux_sym_variable_attributes_token3] = ACTIONS(7342), - [aux_sym_variable_attributes_token5] = ACTIONS(7342), - [aux_sym__intrinsic_type_token1] = ACTIONS(7342), - [aux_sym__intrinsic_type_token3] = ACTIONS(7342), - [aux_sym__intrinsic_type_token4] = ACTIONS(7342), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7342), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7342), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7342), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7342), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7342), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7342), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7342), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7342), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7342), - [aux_sym_type_qualifier_token1] = ACTIONS(7342), - [aux_sym_type_qualifier_token2] = ACTIONS(7342), - [anon_sym_SEMI] = ACTIONS(7340), - [aux_sym_stop_statement_token1] = ACTIONS(7342), - [aux_sym_stop_statement_token2] = ACTIONS(7342), - [aux_sym_keyword_statement_token2] = ACTIONS(7342), - [aux_sym_keyword_statement_token3] = ACTIONS(7342), - [aux_sym_data_statement_token1] = ACTIONS(7342), - [aux_sym__inline_if_statement_token1] = ACTIONS(7342), - [aux_sym_end_if_statement_token1] = ACTIONS(7342), - [aux_sym_elseif_clause_token2] = ACTIONS(7342), - [aux_sym_select_case_statement_token1] = ACTIONS(7342), - [aux_sym_block_construct_token1] = ACTIONS(7342), - [aux_sym_format_statement_token1] = ACTIONS(7342), - [aux_sym_inquire_statement_token1] = ACTIONS(7342), - [aux_sym_entry_statement_token1] = ACTIONS(7342), - [aux_sym_logical_expression_token5] = ACTIONS(7340), - [anon_sym_DOT] = ACTIONS(7342), - [anon_sym_LPAREN_SLASH] = ACTIONS(7340), - [anon_sym_LBRACK] = ACTIONS(7340), - [aux_sym_boolean_literal_token1] = ACTIONS(7340), - [aux_sym_boolean_literal_token2] = ACTIONS(7340), - [aux_sym_null_literal_token1] = ACTIONS(7342), - [aux_sym_coarray_statement_token1] = ACTIONS(7342), - [aux_sym_coarray_statement_token2] = ACTIONS(7342), - [aux_sym_coarray_statement_token6] = ACTIONS(7342), - [aux_sym_coarray_statement_token8] = ACTIONS(7342), - [aux_sym_coarray_statement_token11] = ACTIONS(7342), - [aux_sym_coarray_statement_token12] = ACTIONS(7342), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7342), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7342), - [aux_sym_identifier_token1] = ACTIONS(7342), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7340), - [sym__float_literal] = ACTIONS(7340), - [sym__boz_literal] = ACTIONS(7340), - [sym__string_literal] = ACTIONS(7340), - [sym__string_literal_kind] = ACTIONS(7340), - [sym__external_end_of_statement] = ACTIONS(7340), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3179] = { - [sym__preproc_expression] = STATE(5359), - [sym_preproc_parenthesized_expression] = STATE(5359), - [sym_preproc_defined] = STATE(5359), - [sym_preproc_unary_expression] = STATE(5359), - [sym_preproc_call_expression] = STATE(5359), - [sym_preproc_binary_expression] = STATE(5359), - [sym_number_literal] = STATE(5359), - [sym_string_literal] = STATE(5359), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3054] = { + [sym__expression] = STATE(4548), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3180] = { - [sym__preproc_expression] = STATE(5235), - [sym_preproc_parenthesized_expression] = STATE(5235), - [sym_preproc_defined] = STATE(5235), - [sym_preproc_unary_expression] = STATE(5235), - [sym_preproc_call_expression] = STATE(5235), - [sym_preproc_binary_expression] = STATE(5235), - [sym_number_literal] = STATE(5235), - [sym_string_literal] = STATE(5235), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3055] = { + [sym__expression] = STATE(4277), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3181] = { - [sym__preproc_expression] = STATE(5352), - [sym_preproc_parenthesized_expression] = STATE(5352), - [sym_preproc_defined] = STATE(5352), - [sym_preproc_unary_expression] = STATE(5352), - [sym_preproc_call_expression] = STATE(5352), - [sym_preproc_binary_expression] = STATE(5352), - [sym_number_literal] = STATE(5352), - [sym_string_literal] = STATE(5352), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3056] = { + [sym__expression] = STATE(4279), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3182] = { - [sym__preproc_expression] = STATE(5321), - [sym_preproc_parenthesized_expression] = STATE(5321), - [sym_preproc_defined] = STATE(5321), - [sym_preproc_unary_expression] = STATE(5321), - [sym_preproc_call_expression] = STATE(5321), - [sym_preproc_binary_expression] = STATE(5321), - [sym_number_literal] = STATE(5321), - [sym_string_literal] = STATE(5321), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3057] = { + [sym__expression] = STATE(4280), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3183] = { - [sym__preproc_expression] = STATE(5260), - [sym_preproc_parenthesized_expression] = STATE(5260), - [sym_preproc_defined] = STATE(5260), - [sym_preproc_unary_expression] = STATE(5260), - [sym_preproc_call_expression] = STATE(5260), - [sym_preproc_binary_expression] = STATE(5260), - [sym_number_literal] = STATE(5260), - [sym_string_literal] = STATE(5260), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3058] = { + [sym__expression] = STATE(4281), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), + }, + [3059] = { + [sym__expression] = STATE(4284), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3184] = { - [sym__preproc_expression] = STATE(5269), - [sym_preproc_parenthesized_expression] = STATE(5269), - [sym_preproc_defined] = STATE(5269), - [sym_preproc_unary_expression] = STATE(5269), - [sym_preproc_call_expression] = STATE(5269), - [sym_preproc_binary_expression] = STATE(5269), - [sym_number_literal] = STATE(5269), - [sym_string_literal] = STATE(5269), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3060] = { + [sym__expression] = STATE(4286), + [sym_parenthesized_expression] = STATE(4599), + [sym_derived_type_member_expression] = STATE(4599), + [sym_logical_expression] = STATE(4599), + [sym_relational_expression] = STATE(4599), + [sym_concatenation_expression] = STATE(4599), + [sym_math_expression] = STATE(4599), + [sym_unary_expression] = STATE(4599), + [sym_user_defined_operator] = STATE(3034), + [sym_call_expression] = STATE(4599), + [sym_implied_do_loop_expression] = STATE(4599), + [sym_array_literal] = STATE(4599), + [sym__array_constructor_legacy] = STATE(4604), + [sym__array_constructor_f2003] = STATE(4606), + [sym_complex_literal] = STATE(4599), + [sym_number_literal] = STATE(4599), + [sym_boolean_literal] = STATE(4599), + [sym_null_literal] = STATE(4599), + [sym_string_literal] = STATE(4599), + [sym_coarray_expression] = STATE(4599), + [sym_identifier] = STATE(4599), + [anon_sym_LPAREN2] = ACTIONS(6682), + [anon_sym_PLUS] = ACTIONS(6684), + [anon_sym_DASH] = ACTIONS(6684), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token5] = ACTIONS(5492), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(5497), + [anon_sym_LBRACK] = ACTIONS(6688), + [aux_sym_boolean_literal_token1] = ACTIONS(5502), + [aux_sym_boolean_literal_token2] = ACTIONS(5502), + [aux_sym_null_literal_token1] = ACTIONS(5504), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5506), + [sym__float_literal] = ACTIONS(5506), + [sym__boz_literal] = ACTIONS(5506), + [sym__string_literal] = ACTIONS(5468), + [sym__string_literal_kind] = ACTIONS(5470), }, - [3185] = { - [sym__preproc_expression] = STATE(5270), - [sym_preproc_parenthesized_expression] = STATE(5270), - [sym_preproc_defined] = STATE(5270), - [sym_preproc_unary_expression] = STATE(5270), - [sym_preproc_call_expression] = STATE(5270), - [sym_preproc_binary_expression] = STATE(5270), - [sym_number_literal] = STATE(5270), - [sym_string_literal] = STATE(5270), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3061] = { + [sym__expression] = STATE(4159), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6928), + [anon_sym_DASH] = ACTIONS(6928), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6930), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6932), + [sym__string_literal_kind] = ACTIONS(6934), }, - [3186] = { - [sym__preproc_expression] = STATE(5273), - [sym_preproc_parenthesized_expression] = STATE(5273), - [sym_preproc_defined] = STATE(5273), - [sym_preproc_unary_expression] = STATE(5273), - [sym_preproc_call_expression] = STATE(5273), - [sym_preproc_binary_expression] = STATE(5273), - [sym_number_literal] = STATE(5273), - [sym_string_literal] = STATE(5273), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3062] = { + [sym__expression] = STATE(4550), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2992), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(5780), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3187] = { - [sym__preproc_expression] = STATE(5333), - [sym_preproc_parenthesized_expression] = STATE(5333), - [sym_preproc_defined] = STATE(5333), - [sym_preproc_unary_expression] = STATE(5333), - [sym_preproc_call_expression] = STATE(5333), - [sym_preproc_binary_expression] = STATE(5333), - [sym_number_literal] = STATE(5333), - [sym_string_literal] = STATE(5333), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3063] = { + [sym__expression] = STATE(4148), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(3881), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(3063), + [sym_call_expression] = STATE(3881), + [sym_implied_do_loop_expression] = STATE(3881), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(3881), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(6928), + [anon_sym_DASH] = ACTIONS(6928), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(6930), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5782), + [sym__float_literal] = ACTIONS(5782), + [sym__boz_literal] = ACTIONS(5782), + [sym__string_literal] = ACTIONS(6932), + [sym__string_literal_kind] = ACTIONS(6934), }, - [3188] = { - [sym__preproc_expression] = STATE(5275), - [sym_preproc_parenthesized_expression] = STATE(5275), - [sym_preproc_defined] = STATE(5275), - [sym_preproc_unary_expression] = STATE(5275), - [sym_preproc_call_expression] = STATE(5275), - [sym_preproc_binary_expression] = STATE(5275), - [sym_number_literal] = STATE(5275), - [sym_string_literal] = STATE(5275), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3064] = { + [sym__expression] = STATE(4568), + [sym_parenthesized_expression] = STATE(3881), + [sym_derived_type_member_expression] = STATE(5076), + [sym_logical_expression] = STATE(3881), + [sym_relational_expression] = STATE(3881), + [sym_concatenation_expression] = STATE(3881), + [sym_math_expression] = STATE(3881), + [sym_unary_expression] = STATE(3881), + [sym_user_defined_operator] = STATE(2996), + [sym_call_expression] = STATE(5076), + [sym_implied_do_loop_expression] = STATE(5076), + [sym_array_literal] = STATE(3881), + [sym__array_constructor_legacy] = STATE(3887), + [sym__array_constructor_f2003] = STATE(3888), + [sym_complex_literal] = STATE(3881), + [sym_number_literal] = STATE(3881), + [sym_boolean_literal] = STATE(3881), + [sym_null_literal] = STATE(3881), + [sym_string_literal] = STATE(3881), + [sym_coarray_expression] = STATE(3881), + [sym_identifier] = STATE(5076), + [anon_sym_LPAREN2] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(93), + [aux_sym__intrinsic_type_token3] = ACTIONS(93), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_logical_expression_token5] = ACTIONS(159), + [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LPAREN_SLASH] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(165), + [aux_sym_boolean_literal_token1] = ACTIONS(167), + [aux_sym_boolean_literal_token2] = ACTIONS(167), + [aux_sym_null_literal_token1] = ACTIONS(169), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(185), + [sym__float_literal] = ACTIONS(185), + [sym__boz_literal] = ACTIONS(185), + [sym__string_literal] = ACTIONS(187), + [sym__string_literal_kind] = ACTIONS(189), }, - [3189] = { - [anon_sym_COMMA] = ACTIONS(7344), - [anon_sym_LPAREN2] = ACTIONS(7346), - [anon_sym_PLUS] = ACTIONS(7344), - [anon_sym_DASH] = ACTIONS(7344), + [3065] = { + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7346), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7346), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7346), - [aux_sym_procedure_attributes_token3] = ACTIONS(7346), - [aux_sym_use_statement_token2] = ACTIONS(7346), - [aux_sym_implicit_statement_token4] = ACTIONS(7346), - [aux_sym_save_statement_token1] = ACTIONS(7346), - [aux_sym_private_statement_token1] = ACTIONS(7346), - [aux_sym_public_statement_token1] = ACTIONS(7346), - [aux_sym_derived_type_definition_token1] = ACTIONS(7346), - [aux_sym_procedure_attribute_token6] = ACTIONS(7346), - [aux_sym_variable_attributes_token2] = ACTIONS(7346), - [aux_sym_variable_attributes_token3] = ACTIONS(7346), - [aux_sym_variable_attributes_token5] = ACTIONS(7346), - [aux_sym__intrinsic_type_token1] = ACTIONS(7346), - [aux_sym__intrinsic_type_token3] = ACTIONS(7346), - [aux_sym__intrinsic_type_token4] = ACTIONS(7346), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7346), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7346), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7346), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7346), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7346), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7346), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7346), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7346), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7346), - [aux_sym_type_qualifier_token1] = ACTIONS(7346), - [aux_sym_type_qualifier_token2] = ACTIONS(7346), - [anon_sym_SEMI] = ACTIONS(7344), - [aux_sym_stop_statement_token1] = ACTIONS(7346), - [aux_sym_stop_statement_token2] = ACTIONS(7346), - [aux_sym_keyword_statement_token2] = ACTIONS(7346), - [aux_sym_keyword_statement_token3] = ACTIONS(7346), - [aux_sym_data_statement_token1] = ACTIONS(7346), - [aux_sym__inline_if_statement_token1] = ACTIONS(7346), - [aux_sym_end_if_statement_token1] = ACTIONS(7346), - [aux_sym_elseif_clause_token2] = ACTIONS(7346), - [aux_sym_select_case_statement_token1] = ACTIONS(7346), - [aux_sym_block_construct_token1] = ACTIONS(7346), - [aux_sym_format_statement_token1] = ACTIONS(7346), - [aux_sym_inquire_statement_token1] = ACTIONS(7346), - [aux_sym_entry_statement_token1] = ACTIONS(7346), - [aux_sym_logical_expression_token5] = ACTIONS(7344), - [anon_sym_DOT] = ACTIONS(7346), - [anon_sym_LPAREN_SLASH] = ACTIONS(7344), - [anon_sym_LBRACK] = ACTIONS(7344), - [aux_sym_boolean_literal_token1] = ACTIONS(7344), - [aux_sym_boolean_literal_token2] = ACTIONS(7344), - [aux_sym_null_literal_token1] = ACTIONS(7346), - [aux_sym_coarray_statement_token1] = ACTIONS(7346), - [aux_sym_coarray_statement_token2] = ACTIONS(7346), - [aux_sym_coarray_statement_token6] = ACTIONS(7346), - [aux_sym_coarray_statement_token8] = ACTIONS(7346), - [aux_sym_coarray_statement_token11] = ACTIONS(7346), - [aux_sym_coarray_statement_token12] = ACTIONS(7346), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7346), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7346), - [aux_sym_identifier_token1] = ACTIONS(7346), + [aux_sym_end_program_statement_token1] = ACTIONS(4383), + [aux_sym_interface_statement_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4383), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4383), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4383), + [aux_sym_language_binding_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token1] = ACTIONS(4383), + [aux_sym_procedure_attributes_token3] = ACTIONS(4383), + [aux_sym_contains_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token1] = ACTIONS(4383), + [aux_sym_use_statement_token2] = ACTIONS(4383), + [aux_sym_implicit_statement_token1] = ACTIONS(4383), + [aux_sym_implicit_statement_token3] = ACTIONS(4383), + [aux_sym_implicit_statement_token4] = ACTIONS(4383), + [aux_sym_save_statement_token1] = ACTIONS(4383), + [aux_sym_private_statement_token1] = ACTIONS(4383), + [aux_sym_public_statement_token1] = ACTIONS(4383), + [aux_sym_namelist_statement_token1] = ACTIONS(4383), + [aux_sym_common_statement_token1] = ACTIONS(4383), + [aux_sym_import_statement_token1] = ACTIONS(4383), + [aux_sym_derived_type_definition_token1] = ACTIONS(4383), + [aux_sym_abstract_specifier_token1] = ACTIONS(4383), + [aux_sym_procedure_attribute_token6] = ACTIONS(4383), + [aux_sym_variable_attributes_token1] = ACTIONS(4383), + [aux_sym_variable_attributes_token2] = ACTIONS(4383), + [aux_sym_variable_attributes_token3] = ACTIONS(4383), + [aux_sym_variable_attributes_token4] = ACTIONS(4383), + [aux_sym_variable_attributes_token5] = ACTIONS(4383), + [aux_sym__intrinsic_type_token1] = ACTIONS(4383), + [aux_sym__intrinsic_type_token2] = ACTIONS(4383), + [aux_sym__intrinsic_type_token3] = ACTIONS(4383), + [aux_sym__intrinsic_type_token4] = ACTIONS(4383), + [aux_sym__intrinsic_type_token6] = ACTIONS(4383), + [aux_sym__intrinsic_type_token7] = ACTIONS(4383), + [aux_sym__intrinsic_type_token8] = ACTIONS(4383), + [aux_sym__intrinsic_type_token9] = ACTIONS(4383), + [aux_sym__intrinsic_type_token10] = ACTIONS(4383), + [aux_sym_derived_type_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4383), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4383), + [aux_sym_type_qualifier_token1] = ACTIONS(4383), + [aux_sym_type_qualifier_token2] = ACTIONS(4383), + [aux_sym_equivalence_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token1] = ACTIONS(4383), + [aux_sym_stop_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token2] = ACTIONS(4383), + [aux_sym_keyword_statement_token3] = ACTIONS(4383), + [aux_sym_include_statement_token1] = ACTIONS(4383), + [aux_sym_data_statement_token1] = ACTIONS(4383), + [aux_sym__inline_if_statement_token1] = ACTIONS(4383), + [aux_sym_end_if_statement_token1] = ACTIONS(4383), + [aux_sym_elseif_clause_token2] = ACTIONS(4383), + [aux_sym_select_case_statement_token1] = ACTIONS(4383), + [aux_sym_block_construct_token1] = ACTIONS(4383), + [aux_sym_format_statement_token1] = ACTIONS(4383), + [aux_sym_inquire_statement_token1] = ACTIONS(4383), + [aux_sym_enum_statement_token1] = ACTIONS(4383), + [aux_sym_entry_statement_token1] = ACTIONS(4383), + [aux_sym_null_literal_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_statement_token2] = ACTIONS(4383), + [aux_sym_coarray_statement_token6] = ACTIONS(4383), + [aux_sym_coarray_statement_token8] = ACTIONS(4383), + [aux_sym_coarray_statement_token11] = ACTIONS(4383), + [aux_sym_coarray_statement_token12] = ACTIONS(4383), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4383), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4383), + [aux_sym_identifier_token1] = ACTIONS(4383), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7344), - [sym__float_literal] = ACTIONS(7344), - [sym__boz_literal] = ACTIONS(7344), - [sym__string_literal] = ACTIONS(7344), - [sym__string_literal_kind] = ACTIONS(7344), - [sym__external_end_of_statement] = ACTIONS(7344), + [sym__integer_literal] = ACTIONS(4385), }, - [3190] = { - [sym__preproc_expression] = STATE(5282), - [sym_preproc_parenthesized_expression] = STATE(5282), - [sym_preproc_defined] = STATE(5282), - [sym_preproc_unary_expression] = STATE(5282), - [sym_preproc_call_expression] = STATE(5282), - [sym_preproc_binary_expression] = STATE(5282), - [sym_number_literal] = STATE(5282), - [sym_string_literal] = STATE(5282), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3066] = { + [aux_sym_preproc_include_token1] = ACTIONS(4615), + [aux_sym_preproc_def_token1] = ACTIONS(4615), + [aux_sym_preproc_if_token2] = ACTIONS(4615), + [sym_preproc_directive] = ACTIONS(4615), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4615), + [aux_sym_interface_statement_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4615), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4615), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4615), + [aux_sym_language_binding_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token1] = ACTIONS(4615), + [aux_sym_procedure_attributes_token3] = ACTIONS(4615), + [aux_sym_contains_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token1] = ACTIONS(4615), + [aux_sym_use_statement_token2] = ACTIONS(4615), + [aux_sym_implicit_statement_token1] = ACTIONS(4615), + [aux_sym_implicit_statement_token3] = ACTIONS(4615), + [aux_sym_implicit_statement_token4] = ACTIONS(4615), + [aux_sym_save_statement_token1] = ACTIONS(4615), + [aux_sym_private_statement_token1] = ACTIONS(4615), + [aux_sym_public_statement_token1] = ACTIONS(4615), + [aux_sym_namelist_statement_token1] = ACTIONS(4615), + [aux_sym_common_statement_token1] = ACTIONS(4615), + [aux_sym_import_statement_token1] = ACTIONS(4615), + [aux_sym_derived_type_definition_token1] = ACTIONS(4615), + [aux_sym_abstract_specifier_token1] = ACTIONS(4615), + [aux_sym_procedure_attribute_token6] = ACTIONS(4615), + [aux_sym_variable_attributes_token1] = ACTIONS(4615), + [aux_sym_variable_attributes_token2] = ACTIONS(4615), + [aux_sym_variable_attributes_token3] = ACTIONS(4615), + [aux_sym_variable_attributes_token4] = ACTIONS(4615), + [aux_sym_variable_attributes_token5] = ACTIONS(4615), + [aux_sym__intrinsic_type_token1] = ACTIONS(4615), + [aux_sym__intrinsic_type_token2] = ACTIONS(4615), + [aux_sym__intrinsic_type_token3] = ACTIONS(4615), + [aux_sym__intrinsic_type_token4] = ACTIONS(4615), + [aux_sym__intrinsic_type_token6] = ACTIONS(4615), + [aux_sym__intrinsic_type_token7] = ACTIONS(4615), + [aux_sym__intrinsic_type_token8] = ACTIONS(4615), + [aux_sym__intrinsic_type_token9] = ACTIONS(4615), + [aux_sym__intrinsic_type_token10] = ACTIONS(4615), + [aux_sym_derived_type_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4615), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4615), + [aux_sym_type_qualifier_token1] = ACTIONS(4615), + [aux_sym_type_qualifier_token2] = ACTIONS(4615), + [aux_sym_equivalence_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token1] = ACTIONS(4615), + [aux_sym_stop_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token2] = ACTIONS(4615), + [aux_sym_keyword_statement_token3] = ACTIONS(4615), + [aux_sym_include_statement_token1] = ACTIONS(4615), + [aux_sym_data_statement_token1] = ACTIONS(4615), + [aux_sym__inline_if_statement_token1] = ACTIONS(4615), + [aux_sym_end_if_statement_token1] = ACTIONS(4615), + [aux_sym_elseif_clause_token2] = ACTIONS(4615), + [aux_sym_select_case_statement_token1] = ACTIONS(4615), + [aux_sym_block_construct_token1] = ACTIONS(4615), + [aux_sym_format_statement_token1] = ACTIONS(4615), + [aux_sym_inquire_statement_token1] = ACTIONS(4615), + [aux_sym_enum_statement_token1] = ACTIONS(4615), + [aux_sym_entry_statement_token1] = ACTIONS(4615), + [aux_sym_null_literal_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_statement_token2] = ACTIONS(4615), + [aux_sym_coarray_statement_token6] = ACTIONS(4615), + [aux_sym_coarray_statement_token8] = ACTIONS(4615), + [aux_sym_coarray_statement_token11] = ACTIONS(4615), + [aux_sym_coarray_statement_token12] = ACTIONS(4615), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4615), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4615), + [aux_sym_identifier_token1] = ACTIONS(4615), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4617), }, - [3191] = { - [sym__preproc_expression] = STATE(5283), - [sym_preproc_parenthesized_expression] = STATE(5283), - [sym_preproc_defined] = STATE(5283), - [sym_preproc_unary_expression] = STATE(5283), - [sym_preproc_call_expression] = STATE(5283), - [sym_preproc_binary_expression] = STATE(5283), - [sym_number_literal] = STATE(5283), - [sym_string_literal] = STATE(5283), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3067] = { + [aux_sym_preproc_include_token1] = ACTIONS(4511), + [aux_sym_preproc_def_token1] = ACTIONS(4511), + [aux_sym_preproc_if_token2] = ACTIONS(4511), + [sym_preproc_directive] = ACTIONS(4511), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4511), + [aux_sym_interface_statement_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4511), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4511), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4511), + [aux_sym_language_binding_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token1] = ACTIONS(4511), + [aux_sym_procedure_attributes_token3] = ACTIONS(4511), + [aux_sym_contains_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token1] = ACTIONS(4511), + [aux_sym_use_statement_token2] = ACTIONS(4511), + [aux_sym_implicit_statement_token1] = ACTIONS(4511), + [aux_sym_implicit_statement_token3] = ACTIONS(4511), + [aux_sym_implicit_statement_token4] = ACTIONS(4511), + [aux_sym_save_statement_token1] = ACTIONS(4511), + [aux_sym_private_statement_token1] = ACTIONS(4511), + [aux_sym_public_statement_token1] = ACTIONS(4511), + [aux_sym_namelist_statement_token1] = ACTIONS(4511), + [aux_sym_common_statement_token1] = ACTIONS(4511), + [aux_sym_import_statement_token1] = ACTIONS(4511), + [aux_sym_derived_type_definition_token1] = ACTIONS(4511), + [aux_sym_abstract_specifier_token1] = ACTIONS(4511), + [aux_sym_procedure_attribute_token6] = ACTIONS(4511), + [aux_sym_variable_attributes_token1] = ACTIONS(4511), + [aux_sym_variable_attributes_token2] = ACTIONS(4511), + [aux_sym_variable_attributes_token3] = ACTIONS(4511), + [aux_sym_variable_attributes_token4] = ACTIONS(4511), + [aux_sym_variable_attributes_token5] = ACTIONS(4511), + [aux_sym__intrinsic_type_token1] = ACTIONS(4511), + [aux_sym__intrinsic_type_token2] = ACTIONS(4511), + [aux_sym__intrinsic_type_token3] = ACTIONS(4511), + [aux_sym__intrinsic_type_token4] = ACTIONS(4511), + [aux_sym__intrinsic_type_token6] = ACTIONS(4511), + [aux_sym__intrinsic_type_token7] = ACTIONS(4511), + [aux_sym__intrinsic_type_token8] = ACTIONS(4511), + [aux_sym__intrinsic_type_token9] = ACTIONS(4511), + [aux_sym__intrinsic_type_token10] = ACTIONS(4511), + [aux_sym_derived_type_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4511), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4511), + [aux_sym_type_qualifier_token1] = ACTIONS(4511), + [aux_sym_type_qualifier_token2] = ACTIONS(4511), + [aux_sym_equivalence_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token1] = ACTIONS(4511), + [aux_sym_stop_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token2] = ACTIONS(4511), + [aux_sym_keyword_statement_token3] = ACTIONS(4511), + [aux_sym_include_statement_token1] = ACTIONS(4511), + [aux_sym_data_statement_token1] = ACTIONS(4511), + [aux_sym__inline_if_statement_token1] = ACTIONS(4511), + [aux_sym_end_if_statement_token1] = ACTIONS(4511), + [aux_sym_elseif_clause_token2] = ACTIONS(4511), + [aux_sym_select_case_statement_token1] = ACTIONS(4511), + [aux_sym_block_construct_token1] = ACTIONS(4511), + [aux_sym_format_statement_token1] = ACTIONS(4511), + [aux_sym_inquire_statement_token1] = ACTIONS(4511), + [aux_sym_enum_statement_token1] = ACTIONS(4511), + [aux_sym_entry_statement_token1] = ACTIONS(4511), + [aux_sym_null_literal_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_statement_token2] = ACTIONS(4511), + [aux_sym_coarray_statement_token6] = ACTIONS(4511), + [aux_sym_coarray_statement_token8] = ACTIONS(4511), + [aux_sym_coarray_statement_token11] = ACTIONS(4511), + [aux_sym_coarray_statement_token12] = ACTIONS(4511), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4511), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4511), + [aux_sym_identifier_token1] = ACTIONS(4511), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4513), }, - [3192] = { - [sym__preproc_expression] = STATE(5364), - [sym_preproc_parenthesized_expression] = STATE(5364), - [sym_preproc_defined] = STATE(5364), - [sym_preproc_unary_expression] = STATE(5364), - [sym_preproc_call_expression] = STATE(5364), - [sym_preproc_binary_expression] = STATE(5364), - [sym_number_literal] = STATE(5364), - [sym_string_literal] = STATE(5364), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3068] = { + [aux_sym_preproc_include_token1] = ACTIONS(5002), + [aux_sym_preproc_def_token1] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [sym_preproc_directive] = ACTIONS(5002), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5002), + [aux_sym_interface_statement_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5002), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5002), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5002), + [aux_sym_language_binding_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token1] = ACTIONS(5002), + [aux_sym_procedure_attributes_token3] = ACTIONS(5002), + [aux_sym_contains_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token1] = ACTIONS(5002), + [aux_sym_use_statement_token2] = ACTIONS(5002), + [aux_sym_implicit_statement_token1] = ACTIONS(5002), + [aux_sym_implicit_statement_token3] = ACTIONS(5002), + [aux_sym_implicit_statement_token4] = ACTIONS(5002), + [aux_sym_save_statement_token1] = ACTIONS(5002), + [aux_sym_private_statement_token1] = ACTIONS(5002), + [aux_sym_public_statement_token1] = ACTIONS(5002), + [aux_sym_namelist_statement_token1] = ACTIONS(5002), + [aux_sym_common_statement_token1] = ACTIONS(5002), + [aux_sym_import_statement_token1] = ACTIONS(5002), + [aux_sym_derived_type_definition_token1] = ACTIONS(5002), + [aux_sym_abstract_specifier_token1] = ACTIONS(5002), + [aux_sym_procedure_attribute_token6] = ACTIONS(5002), + [aux_sym_variable_attributes_token1] = ACTIONS(5002), + [aux_sym_variable_attributes_token2] = ACTIONS(5002), + [aux_sym_variable_attributes_token3] = ACTIONS(5002), + [aux_sym_variable_attributes_token4] = ACTIONS(5002), + [aux_sym_variable_attributes_token5] = ACTIONS(5002), + [aux_sym__intrinsic_type_token1] = ACTIONS(5002), + [aux_sym__intrinsic_type_token2] = ACTIONS(5002), + [aux_sym__intrinsic_type_token3] = ACTIONS(5002), + [aux_sym__intrinsic_type_token4] = ACTIONS(5002), + [aux_sym__intrinsic_type_token6] = ACTIONS(5002), + [aux_sym__intrinsic_type_token7] = ACTIONS(5002), + [aux_sym__intrinsic_type_token8] = ACTIONS(5002), + [aux_sym__intrinsic_type_token9] = ACTIONS(5002), + [aux_sym__intrinsic_type_token10] = ACTIONS(5002), + [aux_sym_derived_type_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5002), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5002), + [aux_sym_type_qualifier_token1] = ACTIONS(5002), + [aux_sym_type_qualifier_token2] = ACTIONS(5002), + [aux_sym_equivalence_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token1] = ACTIONS(5002), + [aux_sym_stop_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token2] = ACTIONS(5002), + [aux_sym_keyword_statement_token3] = ACTIONS(5002), + [aux_sym_include_statement_token1] = ACTIONS(5002), + [aux_sym_data_statement_token1] = ACTIONS(5002), + [aux_sym__inline_if_statement_token1] = ACTIONS(5002), + [aux_sym_end_if_statement_token1] = ACTIONS(5002), + [aux_sym_elseif_clause_token2] = ACTIONS(5002), + [aux_sym_select_case_statement_token1] = ACTIONS(5002), + [aux_sym_block_construct_token1] = ACTIONS(5002), + [aux_sym_format_statement_token1] = ACTIONS(5002), + [aux_sym_inquire_statement_token1] = ACTIONS(5002), + [aux_sym_enum_statement_token1] = ACTIONS(5002), + [aux_sym_entry_statement_token1] = ACTIONS(5002), + [aux_sym_null_literal_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_statement_token2] = ACTIONS(5002), + [aux_sym_coarray_statement_token6] = ACTIONS(5002), + [aux_sym_coarray_statement_token8] = ACTIONS(5002), + [aux_sym_coarray_statement_token11] = ACTIONS(5002), + [aux_sym_coarray_statement_token12] = ACTIONS(5002), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5002), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5002), + [aux_sym_identifier_token1] = ACTIONS(5002), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5004), }, - [3193] = { - [sym__preproc_expression] = STATE(5284), - [sym_preproc_parenthesized_expression] = STATE(5284), - [sym_preproc_defined] = STATE(5284), - [sym_preproc_unary_expression] = STATE(5284), - [sym_preproc_call_expression] = STATE(5284), - [sym_preproc_binary_expression] = STATE(5284), - [sym_number_literal] = STATE(5284), - [sym_string_literal] = STATE(5284), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3069] = { + [aux_sym_preproc_include_token1] = ACTIONS(4998), + [aux_sym_preproc_def_token1] = ACTIONS(4998), + [aux_sym_preproc_if_token2] = ACTIONS(4998), + [sym_preproc_directive] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4998), + [aux_sym_interface_statement_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4998), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4998), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4998), + [aux_sym_language_binding_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token1] = ACTIONS(4998), + [aux_sym_procedure_attributes_token3] = ACTIONS(4998), + [aux_sym_contains_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token1] = ACTIONS(4998), + [aux_sym_use_statement_token2] = ACTIONS(4998), + [aux_sym_implicit_statement_token1] = ACTIONS(4998), + [aux_sym_implicit_statement_token3] = ACTIONS(4998), + [aux_sym_implicit_statement_token4] = ACTIONS(4998), + [aux_sym_save_statement_token1] = ACTIONS(4998), + [aux_sym_private_statement_token1] = ACTIONS(4998), + [aux_sym_public_statement_token1] = ACTIONS(4998), + [aux_sym_namelist_statement_token1] = ACTIONS(4998), + [aux_sym_common_statement_token1] = ACTIONS(4998), + [aux_sym_import_statement_token1] = ACTIONS(4998), + [aux_sym_derived_type_definition_token1] = ACTIONS(4998), + [aux_sym_abstract_specifier_token1] = ACTIONS(4998), + [aux_sym_procedure_attribute_token6] = ACTIONS(4998), + [aux_sym_variable_attributes_token1] = ACTIONS(4998), + [aux_sym_variable_attributes_token2] = ACTIONS(4998), + [aux_sym_variable_attributes_token3] = ACTIONS(4998), + [aux_sym_variable_attributes_token4] = ACTIONS(4998), + [aux_sym_variable_attributes_token5] = ACTIONS(4998), + [aux_sym__intrinsic_type_token1] = ACTIONS(4998), + [aux_sym__intrinsic_type_token2] = ACTIONS(4998), + [aux_sym__intrinsic_type_token3] = ACTIONS(4998), + [aux_sym__intrinsic_type_token4] = ACTIONS(4998), + [aux_sym__intrinsic_type_token6] = ACTIONS(4998), + [aux_sym__intrinsic_type_token7] = ACTIONS(4998), + [aux_sym__intrinsic_type_token8] = ACTIONS(4998), + [aux_sym__intrinsic_type_token9] = ACTIONS(4998), + [aux_sym__intrinsic_type_token10] = ACTIONS(4998), + [aux_sym_derived_type_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4998), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4998), + [aux_sym_type_qualifier_token1] = ACTIONS(4998), + [aux_sym_type_qualifier_token2] = ACTIONS(4998), + [aux_sym_equivalence_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token1] = ACTIONS(4998), + [aux_sym_stop_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token2] = ACTIONS(4998), + [aux_sym_keyword_statement_token3] = ACTIONS(4998), + [aux_sym_include_statement_token1] = ACTIONS(4998), + [aux_sym_data_statement_token1] = ACTIONS(4998), + [aux_sym__inline_if_statement_token1] = ACTIONS(4998), + [aux_sym_end_if_statement_token1] = ACTIONS(4998), + [aux_sym_elseif_clause_token2] = ACTIONS(4998), + [aux_sym_select_case_statement_token1] = ACTIONS(4998), + [aux_sym_block_construct_token1] = ACTIONS(4998), + [aux_sym_format_statement_token1] = ACTIONS(4998), + [aux_sym_inquire_statement_token1] = ACTIONS(4998), + [aux_sym_enum_statement_token1] = ACTIONS(4998), + [aux_sym_entry_statement_token1] = ACTIONS(4998), + [aux_sym_null_literal_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_statement_token2] = ACTIONS(4998), + [aux_sym_coarray_statement_token6] = ACTIONS(4998), + [aux_sym_coarray_statement_token8] = ACTIONS(4998), + [aux_sym_coarray_statement_token11] = ACTIONS(4998), + [aux_sym_coarray_statement_token12] = ACTIONS(4998), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4998), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4998), + [aux_sym_identifier_token1] = ACTIONS(4998), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5000), + }, + [3070] = { + [sym__block_label] = STATE(7410), + [sym_identifier] = STATE(7223), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7092), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__external_end_of_statement] = ACTIONS(7092), }, - [3194] = { - [sym__preproc_expression] = STATE(5285), - [sym_preproc_parenthesized_expression] = STATE(5285), - [sym_preproc_defined] = STATE(5285), - [sym_preproc_unary_expression] = STATE(5285), - [sym_preproc_call_expression] = STATE(5285), - [sym_preproc_binary_expression] = STATE(5285), - [sym_number_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3071] = { + [aux_sym_preproc_include_token1] = ACTIONS(5010), + [aux_sym_preproc_def_token1] = ACTIONS(5010), + [aux_sym_preproc_if_token2] = ACTIONS(5010), + [sym_preproc_directive] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5010), + [aux_sym_interface_statement_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5010), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5010), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5010), + [aux_sym_language_binding_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token1] = ACTIONS(5010), + [aux_sym_procedure_attributes_token3] = ACTIONS(5010), + [aux_sym_contains_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token1] = ACTIONS(5010), + [aux_sym_use_statement_token2] = ACTIONS(5010), + [aux_sym_implicit_statement_token1] = ACTIONS(5010), + [aux_sym_implicit_statement_token3] = ACTIONS(5010), + [aux_sym_implicit_statement_token4] = ACTIONS(5010), + [aux_sym_save_statement_token1] = ACTIONS(5010), + [aux_sym_private_statement_token1] = ACTIONS(5010), + [aux_sym_public_statement_token1] = ACTIONS(5010), + [aux_sym_namelist_statement_token1] = ACTIONS(5010), + [aux_sym_common_statement_token1] = ACTIONS(5010), + [aux_sym_import_statement_token1] = ACTIONS(5010), + [aux_sym_derived_type_definition_token1] = ACTIONS(5010), + [aux_sym_abstract_specifier_token1] = ACTIONS(5010), + [aux_sym_procedure_attribute_token6] = ACTIONS(5010), + [aux_sym_variable_attributes_token1] = ACTIONS(5010), + [aux_sym_variable_attributes_token2] = ACTIONS(5010), + [aux_sym_variable_attributes_token3] = ACTIONS(5010), + [aux_sym_variable_attributes_token4] = ACTIONS(5010), + [aux_sym_variable_attributes_token5] = ACTIONS(5010), + [aux_sym__intrinsic_type_token1] = ACTIONS(5010), + [aux_sym__intrinsic_type_token2] = ACTIONS(5010), + [aux_sym__intrinsic_type_token3] = ACTIONS(5010), + [aux_sym__intrinsic_type_token4] = ACTIONS(5010), + [aux_sym__intrinsic_type_token6] = ACTIONS(5010), + [aux_sym__intrinsic_type_token7] = ACTIONS(5010), + [aux_sym__intrinsic_type_token8] = ACTIONS(5010), + [aux_sym__intrinsic_type_token9] = ACTIONS(5010), + [aux_sym__intrinsic_type_token10] = ACTIONS(5010), + [aux_sym_derived_type_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5010), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5010), + [aux_sym_type_qualifier_token1] = ACTIONS(5010), + [aux_sym_type_qualifier_token2] = ACTIONS(5010), + [aux_sym_equivalence_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token1] = ACTIONS(5010), + [aux_sym_stop_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token2] = ACTIONS(5010), + [aux_sym_keyword_statement_token3] = ACTIONS(5010), + [aux_sym_include_statement_token1] = ACTIONS(5010), + [aux_sym_data_statement_token1] = ACTIONS(5010), + [aux_sym__inline_if_statement_token1] = ACTIONS(5010), + [aux_sym_end_if_statement_token1] = ACTIONS(5010), + [aux_sym_elseif_clause_token2] = ACTIONS(5010), + [aux_sym_select_case_statement_token1] = ACTIONS(5010), + [aux_sym_block_construct_token1] = ACTIONS(5010), + [aux_sym_format_statement_token1] = ACTIONS(5010), + [aux_sym_inquire_statement_token1] = ACTIONS(5010), + [aux_sym_enum_statement_token1] = ACTIONS(5010), + [aux_sym_entry_statement_token1] = ACTIONS(5010), + [aux_sym_null_literal_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_statement_token2] = ACTIONS(5010), + [aux_sym_coarray_statement_token6] = ACTIONS(5010), + [aux_sym_coarray_statement_token8] = ACTIONS(5010), + [aux_sym_coarray_statement_token11] = ACTIONS(5010), + [aux_sym_coarray_statement_token12] = ACTIONS(5010), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5010), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5010), + [aux_sym_identifier_token1] = ACTIONS(5010), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5012), + }, + [3072] = { + [aux_sym_preproc_include_token1] = ACTIONS(5006), + [aux_sym_preproc_def_token1] = ACTIONS(5006), + [aux_sym_preproc_if_token2] = ACTIONS(5006), + [sym_preproc_directive] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5006), + [aux_sym_interface_statement_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5006), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5006), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5006), + [aux_sym_language_binding_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token1] = ACTIONS(5006), + [aux_sym_procedure_attributes_token3] = ACTIONS(5006), + [aux_sym_contains_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token1] = ACTIONS(5006), + [aux_sym_use_statement_token2] = ACTIONS(5006), + [aux_sym_implicit_statement_token1] = ACTIONS(5006), + [aux_sym_implicit_statement_token3] = ACTIONS(5006), + [aux_sym_implicit_statement_token4] = ACTIONS(5006), + [aux_sym_save_statement_token1] = ACTIONS(5006), + [aux_sym_private_statement_token1] = ACTIONS(5006), + [aux_sym_public_statement_token1] = ACTIONS(5006), + [aux_sym_namelist_statement_token1] = ACTIONS(5006), + [aux_sym_common_statement_token1] = ACTIONS(5006), + [aux_sym_import_statement_token1] = ACTIONS(5006), + [aux_sym_derived_type_definition_token1] = ACTIONS(5006), + [aux_sym_abstract_specifier_token1] = ACTIONS(5006), + [aux_sym_procedure_attribute_token6] = ACTIONS(5006), + [aux_sym_variable_attributes_token1] = ACTIONS(5006), + [aux_sym_variable_attributes_token2] = ACTIONS(5006), + [aux_sym_variable_attributes_token3] = ACTIONS(5006), + [aux_sym_variable_attributes_token4] = ACTIONS(5006), + [aux_sym_variable_attributes_token5] = ACTIONS(5006), + [aux_sym__intrinsic_type_token1] = ACTIONS(5006), + [aux_sym__intrinsic_type_token2] = ACTIONS(5006), + [aux_sym__intrinsic_type_token3] = ACTIONS(5006), + [aux_sym__intrinsic_type_token4] = ACTIONS(5006), + [aux_sym__intrinsic_type_token6] = ACTIONS(5006), + [aux_sym__intrinsic_type_token7] = ACTIONS(5006), + [aux_sym__intrinsic_type_token8] = ACTIONS(5006), + [aux_sym__intrinsic_type_token9] = ACTIONS(5006), + [aux_sym__intrinsic_type_token10] = ACTIONS(5006), + [aux_sym_derived_type_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5006), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5006), + [aux_sym_type_qualifier_token1] = ACTIONS(5006), + [aux_sym_type_qualifier_token2] = ACTIONS(5006), + [aux_sym_equivalence_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token1] = ACTIONS(5006), + [aux_sym_stop_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token2] = ACTIONS(5006), + [aux_sym_keyword_statement_token3] = ACTIONS(5006), + [aux_sym_include_statement_token1] = ACTIONS(5006), + [aux_sym_data_statement_token1] = ACTIONS(5006), + [aux_sym__inline_if_statement_token1] = ACTIONS(5006), + [aux_sym_end_if_statement_token1] = ACTIONS(5006), + [aux_sym_elseif_clause_token2] = ACTIONS(5006), + [aux_sym_select_case_statement_token1] = ACTIONS(5006), + [aux_sym_block_construct_token1] = ACTIONS(5006), + [aux_sym_format_statement_token1] = ACTIONS(5006), + [aux_sym_inquire_statement_token1] = ACTIONS(5006), + [aux_sym_enum_statement_token1] = ACTIONS(5006), + [aux_sym_entry_statement_token1] = ACTIONS(5006), + [aux_sym_null_literal_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_statement_token2] = ACTIONS(5006), + [aux_sym_coarray_statement_token6] = ACTIONS(5006), + [aux_sym_coarray_statement_token8] = ACTIONS(5006), + [aux_sym_coarray_statement_token11] = ACTIONS(5006), + [aux_sym_coarray_statement_token12] = ACTIONS(5006), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5006), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5006), + [aux_sym_identifier_token1] = ACTIONS(5006), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5008), + }, + [3073] = { + [aux_sym_preproc_include_token1] = ACTIONS(4994), + [aux_sym_preproc_def_token1] = ACTIONS(4994), + [aux_sym_preproc_if_token2] = ACTIONS(4994), + [sym_preproc_directive] = ACTIONS(4994), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4994), + [aux_sym_interface_statement_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4994), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4994), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4994), + [aux_sym_language_binding_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token1] = ACTIONS(4994), + [aux_sym_procedure_attributes_token3] = ACTIONS(4994), + [aux_sym_contains_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token1] = ACTIONS(4994), + [aux_sym_use_statement_token2] = ACTIONS(4994), + [aux_sym_implicit_statement_token1] = ACTIONS(4994), + [aux_sym_implicit_statement_token3] = ACTIONS(4994), + [aux_sym_implicit_statement_token4] = ACTIONS(4994), + [aux_sym_save_statement_token1] = ACTIONS(4994), + [aux_sym_private_statement_token1] = ACTIONS(4994), + [aux_sym_public_statement_token1] = ACTIONS(4994), + [aux_sym_namelist_statement_token1] = ACTIONS(4994), + [aux_sym_common_statement_token1] = ACTIONS(4994), + [aux_sym_import_statement_token1] = ACTIONS(4994), + [aux_sym_derived_type_definition_token1] = ACTIONS(4994), + [aux_sym_abstract_specifier_token1] = ACTIONS(4994), + [aux_sym_procedure_attribute_token6] = ACTIONS(4994), + [aux_sym_variable_attributes_token1] = ACTIONS(4994), + [aux_sym_variable_attributes_token2] = ACTIONS(4994), + [aux_sym_variable_attributes_token3] = ACTIONS(4994), + [aux_sym_variable_attributes_token4] = ACTIONS(4994), + [aux_sym_variable_attributes_token5] = ACTIONS(4994), + [aux_sym__intrinsic_type_token1] = ACTIONS(4994), + [aux_sym__intrinsic_type_token2] = ACTIONS(4994), + [aux_sym__intrinsic_type_token3] = ACTIONS(4994), + [aux_sym__intrinsic_type_token4] = ACTIONS(4994), + [aux_sym__intrinsic_type_token6] = ACTIONS(4994), + [aux_sym__intrinsic_type_token7] = ACTIONS(4994), + [aux_sym__intrinsic_type_token8] = ACTIONS(4994), + [aux_sym__intrinsic_type_token9] = ACTIONS(4994), + [aux_sym__intrinsic_type_token10] = ACTIONS(4994), + [aux_sym_derived_type_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4994), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4994), + [aux_sym_type_qualifier_token1] = ACTIONS(4994), + [aux_sym_type_qualifier_token2] = ACTIONS(4994), + [aux_sym_equivalence_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token1] = ACTIONS(4994), + [aux_sym_stop_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token2] = ACTIONS(4994), + [aux_sym_keyword_statement_token3] = ACTIONS(4994), + [aux_sym_include_statement_token1] = ACTIONS(4994), + [aux_sym_data_statement_token1] = ACTIONS(4994), + [aux_sym__inline_if_statement_token1] = ACTIONS(4994), + [aux_sym_end_if_statement_token1] = ACTIONS(4994), + [aux_sym_elseif_clause_token2] = ACTIONS(4994), + [aux_sym_select_case_statement_token1] = ACTIONS(4994), + [aux_sym_block_construct_token1] = ACTIONS(4994), + [aux_sym_format_statement_token1] = ACTIONS(4994), + [aux_sym_inquire_statement_token1] = ACTIONS(4994), + [aux_sym_enum_statement_token1] = ACTIONS(4994), + [aux_sym_entry_statement_token1] = ACTIONS(4994), + [aux_sym_null_literal_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_statement_token2] = ACTIONS(4994), + [aux_sym_coarray_statement_token6] = ACTIONS(4994), + [aux_sym_coarray_statement_token8] = ACTIONS(4994), + [aux_sym_coarray_statement_token11] = ACTIONS(4994), + [aux_sym_coarray_statement_token12] = ACTIONS(4994), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4994), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4994), + [aux_sym_identifier_token1] = ACTIONS(4994), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4996), }, - [3195] = { - [sym__preproc_expression] = STATE(5361), - [sym_preproc_parenthesized_expression] = STATE(5361), - [sym_preproc_defined] = STATE(5361), - [sym_preproc_unary_expression] = STATE(5361), - [sym_preproc_call_expression] = STATE(5361), - [sym_preproc_binary_expression] = STATE(5361), - [sym_number_literal] = STATE(5361), - [sym_string_literal] = STATE(5361), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3074] = { + [aux_sym_preproc_include_token1] = ACTIONS(5014), + [aux_sym_preproc_def_token1] = ACTIONS(5014), + [aux_sym_preproc_if_token2] = ACTIONS(5014), + [sym_preproc_directive] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5014), + [aux_sym_interface_statement_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5014), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5014), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5014), + [aux_sym_language_binding_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token1] = ACTIONS(5014), + [aux_sym_procedure_attributes_token3] = ACTIONS(5014), + [aux_sym_contains_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token1] = ACTIONS(5014), + [aux_sym_use_statement_token2] = ACTIONS(5014), + [aux_sym_implicit_statement_token1] = ACTIONS(5014), + [aux_sym_implicit_statement_token3] = ACTIONS(5014), + [aux_sym_implicit_statement_token4] = ACTIONS(5014), + [aux_sym_save_statement_token1] = ACTIONS(5014), + [aux_sym_private_statement_token1] = ACTIONS(5014), + [aux_sym_public_statement_token1] = ACTIONS(5014), + [aux_sym_namelist_statement_token1] = ACTIONS(5014), + [aux_sym_common_statement_token1] = ACTIONS(5014), + [aux_sym_import_statement_token1] = ACTIONS(5014), + [aux_sym_derived_type_definition_token1] = ACTIONS(5014), + [aux_sym_abstract_specifier_token1] = ACTIONS(5014), + [aux_sym_procedure_attribute_token6] = ACTIONS(5014), + [aux_sym_variable_attributes_token1] = ACTIONS(5014), + [aux_sym_variable_attributes_token2] = ACTIONS(5014), + [aux_sym_variable_attributes_token3] = ACTIONS(5014), + [aux_sym_variable_attributes_token4] = ACTIONS(5014), + [aux_sym_variable_attributes_token5] = ACTIONS(5014), + [aux_sym__intrinsic_type_token1] = ACTIONS(5014), + [aux_sym__intrinsic_type_token2] = ACTIONS(5014), + [aux_sym__intrinsic_type_token3] = ACTIONS(5014), + [aux_sym__intrinsic_type_token4] = ACTIONS(5014), + [aux_sym__intrinsic_type_token6] = ACTIONS(5014), + [aux_sym__intrinsic_type_token7] = ACTIONS(5014), + [aux_sym__intrinsic_type_token8] = ACTIONS(5014), + [aux_sym__intrinsic_type_token9] = ACTIONS(5014), + [aux_sym__intrinsic_type_token10] = ACTIONS(5014), + [aux_sym_derived_type_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5014), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5014), + [aux_sym_type_qualifier_token1] = ACTIONS(5014), + [aux_sym_type_qualifier_token2] = ACTIONS(5014), + [aux_sym_equivalence_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token1] = ACTIONS(5014), + [aux_sym_stop_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token2] = ACTIONS(5014), + [aux_sym_keyword_statement_token3] = ACTIONS(5014), + [aux_sym_include_statement_token1] = ACTIONS(5014), + [aux_sym_data_statement_token1] = ACTIONS(5014), + [aux_sym__inline_if_statement_token1] = ACTIONS(5014), + [aux_sym_end_if_statement_token1] = ACTIONS(5014), + [aux_sym_elseif_clause_token2] = ACTIONS(5014), + [aux_sym_select_case_statement_token1] = ACTIONS(5014), + [aux_sym_block_construct_token1] = ACTIONS(5014), + [aux_sym_format_statement_token1] = ACTIONS(5014), + [aux_sym_inquire_statement_token1] = ACTIONS(5014), + [aux_sym_enum_statement_token1] = ACTIONS(5014), + [aux_sym_entry_statement_token1] = ACTIONS(5014), + [aux_sym_null_literal_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_statement_token2] = ACTIONS(5014), + [aux_sym_coarray_statement_token6] = ACTIONS(5014), + [aux_sym_coarray_statement_token8] = ACTIONS(5014), + [aux_sym_coarray_statement_token11] = ACTIONS(5014), + [aux_sym_coarray_statement_token12] = ACTIONS(5014), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5014), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5014), + [aux_sym_identifier_token1] = ACTIONS(5014), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5016), + }, + [3075] = { + [aux_sym_preproc_include_token1] = ACTIONS(5063), + [aux_sym_preproc_def_token1] = ACTIONS(5063), + [aux_sym_preproc_if_token2] = ACTIONS(5063), + [sym_preproc_directive] = ACTIONS(5063), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5063), + [aux_sym_interface_statement_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5063), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5063), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5063), + [aux_sym_language_binding_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token1] = ACTIONS(5063), + [aux_sym_procedure_attributes_token3] = ACTIONS(5063), + [aux_sym_contains_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token1] = ACTIONS(5063), + [aux_sym_use_statement_token2] = ACTIONS(5063), + [aux_sym_implicit_statement_token1] = ACTIONS(5063), + [aux_sym_implicit_statement_token3] = ACTIONS(5063), + [aux_sym_implicit_statement_token4] = ACTIONS(5063), + [aux_sym_save_statement_token1] = ACTIONS(5063), + [aux_sym_private_statement_token1] = ACTIONS(5063), + [aux_sym_public_statement_token1] = ACTIONS(5063), + [aux_sym_namelist_statement_token1] = ACTIONS(5063), + [aux_sym_common_statement_token1] = ACTIONS(5063), + [aux_sym_import_statement_token1] = ACTIONS(5063), + [aux_sym_derived_type_definition_token1] = ACTIONS(5063), + [aux_sym_abstract_specifier_token1] = ACTIONS(5063), + [aux_sym_procedure_attribute_token6] = ACTIONS(5063), + [aux_sym_variable_attributes_token1] = ACTIONS(5063), + [aux_sym_variable_attributes_token2] = ACTIONS(5063), + [aux_sym_variable_attributes_token3] = ACTIONS(5063), + [aux_sym_variable_attributes_token4] = ACTIONS(5063), + [aux_sym_variable_attributes_token5] = ACTIONS(5063), + [aux_sym__intrinsic_type_token1] = ACTIONS(5063), + [aux_sym__intrinsic_type_token2] = ACTIONS(5063), + [aux_sym__intrinsic_type_token3] = ACTIONS(5063), + [aux_sym__intrinsic_type_token4] = ACTIONS(5063), + [aux_sym__intrinsic_type_token6] = ACTIONS(5063), + [aux_sym__intrinsic_type_token7] = ACTIONS(5063), + [aux_sym__intrinsic_type_token8] = ACTIONS(5063), + [aux_sym__intrinsic_type_token9] = ACTIONS(5063), + [aux_sym__intrinsic_type_token10] = ACTIONS(5063), + [aux_sym_derived_type_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5063), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5063), + [aux_sym_type_qualifier_token1] = ACTIONS(5063), + [aux_sym_type_qualifier_token2] = ACTIONS(5063), + [aux_sym_equivalence_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token1] = ACTIONS(5063), + [aux_sym_stop_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token2] = ACTIONS(5063), + [aux_sym_keyword_statement_token3] = ACTIONS(5063), + [aux_sym_include_statement_token1] = ACTIONS(5063), + [aux_sym_data_statement_token1] = ACTIONS(5063), + [aux_sym__inline_if_statement_token1] = ACTIONS(5063), + [aux_sym_end_if_statement_token1] = ACTIONS(5063), + [aux_sym_elseif_clause_token2] = ACTIONS(5063), + [aux_sym_select_case_statement_token1] = ACTIONS(5063), + [aux_sym_block_construct_token1] = ACTIONS(5063), + [aux_sym_format_statement_token1] = ACTIONS(5063), + [aux_sym_inquire_statement_token1] = ACTIONS(5063), + [aux_sym_enum_statement_token1] = ACTIONS(5063), + [aux_sym_entry_statement_token1] = ACTIONS(5063), + [aux_sym_null_literal_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_statement_token2] = ACTIONS(5063), + [aux_sym_coarray_statement_token6] = ACTIONS(5063), + [aux_sym_coarray_statement_token8] = ACTIONS(5063), + [aux_sym_coarray_statement_token11] = ACTIONS(5063), + [aux_sym_coarray_statement_token12] = ACTIONS(5063), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5063), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5063), + [aux_sym_identifier_token1] = ACTIONS(5063), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5065), + }, + [3076] = { + [aux_sym_preproc_include_token1] = ACTIONS(4982), + [aux_sym_preproc_def_token1] = ACTIONS(4982), + [aux_sym_preproc_if_token2] = ACTIONS(4982), + [sym_preproc_directive] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4982), + [aux_sym_interface_statement_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4982), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4982), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4982), + [aux_sym_language_binding_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token1] = ACTIONS(4982), + [aux_sym_procedure_attributes_token3] = ACTIONS(4982), + [aux_sym_contains_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token1] = ACTIONS(4982), + [aux_sym_use_statement_token2] = ACTIONS(4982), + [aux_sym_implicit_statement_token1] = ACTIONS(4982), + [aux_sym_implicit_statement_token3] = ACTIONS(4982), + [aux_sym_implicit_statement_token4] = ACTIONS(4982), + [aux_sym_save_statement_token1] = ACTIONS(4982), + [aux_sym_private_statement_token1] = ACTIONS(4982), + [aux_sym_public_statement_token1] = ACTIONS(4982), + [aux_sym_namelist_statement_token1] = ACTIONS(4982), + [aux_sym_common_statement_token1] = ACTIONS(4982), + [aux_sym_import_statement_token1] = ACTIONS(4982), + [aux_sym_derived_type_definition_token1] = ACTIONS(4982), + [aux_sym_abstract_specifier_token1] = ACTIONS(4982), + [aux_sym_procedure_attribute_token6] = ACTIONS(4982), + [aux_sym_variable_attributes_token1] = ACTIONS(4982), + [aux_sym_variable_attributes_token2] = ACTIONS(4982), + [aux_sym_variable_attributes_token3] = ACTIONS(4982), + [aux_sym_variable_attributes_token4] = ACTIONS(4982), + [aux_sym_variable_attributes_token5] = ACTIONS(4982), + [aux_sym__intrinsic_type_token1] = ACTIONS(4982), + [aux_sym__intrinsic_type_token2] = ACTIONS(4982), + [aux_sym__intrinsic_type_token3] = ACTIONS(4982), + [aux_sym__intrinsic_type_token4] = ACTIONS(4982), + [aux_sym__intrinsic_type_token6] = ACTIONS(4982), + [aux_sym__intrinsic_type_token7] = ACTIONS(4982), + [aux_sym__intrinsic_type_token8] = ACTIONS(4982), + [aux_sym__intrinsic_type_token9] = ACTIONS(4982), + [aux_sym__intrinsic_type_token10] = ACTIONS(4982), + [aux_sym_derived_type_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4982), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4982), + [aux_sym_type_qualifier_token1] = ACTIONS(4982), + [aux_sym_type_qualifier_token2] = ACTIONS(4982), + [aux_sym_equivalence_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token1] = ACTIONS(4982), + [aux_sym_stop_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token2] = ACTIONS(4982), + [aux_sym_keyword_statement_token3] = ACTIONS(4982), + [aux_sym_include_statement_token1] = ACTIONS(4982), + [aux_sym_data_statement_token1] = ACTIONS(4982), + [aux_sym__inline_if_statement_token1] = ACTIONS(4982), + [aux_sym_end_if_statement_token1] = ACTIONS(4982), + [aux_sym_elseif_clause_token2] = ACTIONS(4982), + [aux_sym_select_case_statement_token1] = ACTIONS(4982), + [aux_sym_block_construct_token1] = ACTIONS(4982), + [aux_sym_format_statement_token1] = ACTIONS(4982), + [aux_sym_inquire_statement_token1] = ACTIONS(4982), + [aux_sym_enum_statement_token1] = ACTIONS(4982), + [aux_sym_entry_statement_token1] = ACTIONS(4982), + [aux_sym_null_literal_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_statement_token2] = ACTIONS(4982), + [aux_sym_coarray_statement_token6] = ACTIONS(4982), + [aux_sym_coarray_statement_token8] = ACTIONS(4982), + [aux_sym_coarray_statement_token11] = ACTIONS(4982), + [aux_sym_coarray_statement_token12] = ACTIONS(4982), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4982), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4982), + [aux_sym_identifier_token1] = ACTIONS(4982), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4984), + }, + [3077] = { + [aux_sym_preproc_include_token1] = ACTIONS(4986), + [aux_sym_preproc_def_token1] = ACTIONS(4986), + [aux_sym_preproc_if_token2] = ACTIONS(4986), + [sym_preproc_directive] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(4986), + [aux_sym_interface_statement_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4986), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4986), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4986), + [aux_sym_language_binding_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token1] = ACTIONS(4986), + [aux_sym_procedure_attributes_token3] = ACTIONS(4986), + [aux_sym_contains_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token1] = ACTIONS(4986), + [aux_sym_use_statement_token2] = ACTIONS(4986), + [aux_sym_implicit_statement_token1] = ACTIONS(4986), + [aux_sym_implicit_statement_token3] = ACTIONS(4986), + [aux_sym_implicit_statement_token4] = ACTIONS(4986), + [aux_sym_save_statement_token1] = ACTIONS(4986), + [aux_sym_private_statement_token1] = ACTIONS(4986), + [aux_sym_public_statement_token1] = ACTIONS(4986), + [aux_sym_namelist_statement_token1] = ACTIONS(4986), + [aux_sym_common_statement_token1] = ACTIONS(4986), + [aux_sym_import_statement_token1] = ACTIONS(4986), + [aux_sym_derived_type_definition_token1] = ACTIONS(4986), + [aux_sym_abstract_specifier_token1] = ACTIONS(4986), + [aux_sym_procedure_attribute_token6] = ACTIONS(4986), + [aux_sym_variable_attributes_token1] = ACTIONS(4986), + [aux_sym_variable_attributes_token2] = ACTIONS(4986), + [aux_sym_variable_attributes_token3] = ACTIONS(4986), + [aux_sym_variable_attributes_token4] = ACTIONS(4986), + [aux_sym_variable_attributes_token5] = ACTIONS(4986), + [aux_sym__intrinsic_type_token1] = ACTIONS(4986), + [aux_sym__intrinsic_type_token2] = ACTIONS(4986), + [aux_sym__intrinsic_type_token3] = ACTIONS(4986), + [aux_sym__intrinsic_type_token4] = ACTIONS(4986), + [aux_sym__intrinsic_type_token6] = ACTIONS(4986), + [aux_sym__intrinsic_type_token7] = ACTIONS(4986), + [aux_sym__intrinsic_type_token8] = ACTIONS(4986), + [aux_sym__intrinsic_type_token9] = ACTIONS(4986), + [aux_sym__intrinsic_type_token10] = ACTIONS(4986), + [aux_sym_derived_type_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4986), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4986), + [aux_sym_type_qualifier_token1] = ACTIONS(4986), + [aux_sym_type_qualifier_token2] = ACTIONS(4986), + [aux_sym_equivalence_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token1] = ACTIONS(4986), + [aux_sym_stop_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token2] = ACTIONS(4986), + [aux_sym_keyword_statement_token3] = ACTIONS(4986), + [aux_sym_include_statement_token1] = ACTIONS(4986), + [aux_sym_data_statement_token1] = ACTIONS(4986), + [aux_sym__inline_if_statement_token1] = ACTIONS(4986), + [aux_sym_end_if_statement_token1] = ACTIONS(4986), + [aux_sym_elseif_clause_token2] = ACTIONS(4986), + [aux_sym_select_case_statement_token1] = ACTIONS(4986), + [aux_sym_block_construct_token1] = ACTIONS(4986), + [aux_sym_format_statement_token1] = ACTIONS(4986), + [aux_sym_inquire_statement_token1] = ACTIONS(4986), + [aux_sym_enum_statement_token1] = ACTIONS(4986), + [aux_sym_entry_statement_token1] = ACTIONS(4986), + [aux_sym_null_literal_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_statement_token2] = ACTIONS(4986), + [aux_sym_coarray_statement_token6] = ACTIONS(4986), + [aux_sym_coarray_statement_token8] = ACTIONS(4986), + [aux_sym_coarray_statement_token11] = ACTIONS(4986), + [aux_sym_coarray_statement_token12] = ACTIONS(4986), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4986), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4986), + [aux_sym_identifier_token1] = ACTIONS(4986), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(4988), + }, + [3078] = { + [aux_sym_preproc_include_token1] = ACTIONS(4990), + [aux_sym_preproc_def_token1] = ACTIONS(4990), + [aux_sym_preproc_if_token2] = ACTIONS(4990), + [sym_preproc_directive] = ACTIONS(4990), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4990), + [aux_sym_interface_statement_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4990), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4990), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4990), + [aux_sym_language_binding_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token1] = ACTIONS(4990), + [aux_sym_procedure_attributes_token3] = ACTIONS(4990), + [aux_sym_contains_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token1] = ACTIONS(4990), + [aux_sym_use_statement_token2] = ACTIONS(4990), + [aux_sym_implicit_statement_token1] = ACTIONS(4990), + [aux_sym_implicit_statement_token3] = ACTIONS(4990), + [aux_sym_implicit_statement_token4] = ACTIONS(4990), + [aux_sym_save_statement_token1] = ACTIONS(4990), + [aux_sym_private_statement_token1] = ACTIONS(4990), + [aux_sym_public_statement_token1] = ACTIONS(4990), + [aux_sym_namelist_statement_token1] = ACTIONS(4990), + [aux_sym_common_statement_token1] = ACTIONS(4990), + [aux_sym_import_statement_token1] = ACTIONS(4990), + [aux_sym_derived_type_definition_token1] = ACTIONS(4990), + [aux_sym_abstract_specifier_token1] = ACTIONS(4990), + [aux_sym_procedure_attribute_token6] = ACTIONS(4990), + [aux_sym_variable_attributes_token1] = ACTIONS(4990), + [aux_sym_variable_attributes_token2] = ACTIONS(4990), + [aux_sym_variable_attributes_token3] = ACTIONS(4990), + [aux_sym_variable_attributes_token4] = ACTIONS(4990), + [aux_sym_variable_attributes_token5] = ACTIONS(4990), + [aux_sym__intrinsic_type_token1] = ACTIONS(4990), + [aux_sym__intrinsic_type_token2] = ACTIONS(4990), + [aux_sym__intrinsic_type_token3] = ACTIONS(4990), + [aux_sym__intrinsic_type_token4] = ACTIONS(4990), + [aux_sym__intrinsic_type_token6] = ACTIONS(4990), + [aux_sym__intrinsic_type_token7] = ACTIONS(4990), + [aux_sym__intrinsic_type_token8] = ACTIONS(4990), + [aux_sym__intrinsic_type_token9] = ACTIONS(4990), + [aux_sym__intrinsic_type_token10] = ACTIONS(4990), + [aux_sym_derived_type_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4990), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4990), + [aux_sym_type_qualifier_token1] = ACTIONS(4990), + [aux_sym_type_qualifier_token2] = ACTIONS(4990), + [aux_sym_equivalence_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token1] = ACTIONS(4990), + [aux_sym_stop_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token2] = ACTIONS(4990), + [aux_sym_keyword_statement_token3] = ACTIONS(4990), + [aux_sym_include_statement_token1] = ACTIONS(4990), + [aux_sym_data_statement_token1] = ACTIONS(4990), + [aux_sym__inline_if_statement_token1] = ACTIONS(4990), + [aux_sym_end_if_statement_token1] = ACTIONS(4990), + [aux_sym_elseif_clause_token2] = ACTIONS(4990), + [aux_sym_select_case_statement_token1] = ACTIONS(4990), + [aux_sym_block_construct_token1] = ACTIONS(4990), + [aux_sym_format_statement_token1] = ACTIONS(4990), + [aux_sym_inquire_statement_token1] = ACTIONS(4990), + [aux_sym_enum_statement_token1] = ACTIONS(4990), + [aux_sym_entry_statement_token1] = ACTIONS(4990), + [aux_sym_null_literal_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_statement_token2] = ACTIONS(4990), + [aux_sym_coarray_statement_token6] = ACTIONS(4990), + [aux_sym_coarray_statement_token8] = ACTIONS(4990), + [aux_sym_coarray_statement_token11] = ACTIONS(4990), + [aux_sym_coarray_statement_token12] = ACTIONS(4990), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4990), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4990), + [aux_sym_identifier_token1] = ACTIONS(4990), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4992), }, - [3196] = { - [sym__preproc_expression] = STATE(5294), - [sym_preproc_parenthesized_expression] = STATE(5294), - [sym_preproc_defined] = STATE(5294), - [sym_preproc_unary_expression] = STATE(5294), - [sym_preproc_call_expression] = STATE(5294), - [sym_preproc_binary_expression] = STATE(5294), - [sym_number_literal] = STATE(5294), - [sym_string_literal] = STATE(5294), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3079] = { + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4391), + [aux_sym_interface_statement_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4391), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4391), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4391), + [aux_sym_language_binding_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token1] = ACTIONS(4391), + [aux_sym_procedure_attributes_token3] = ACTIONS(4391), + [aux_sym_contains_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token1] = ACTIONS(4391), + [aux_sym_use_statement_token2] = ACTIONS(4391), + [aux_sym_implicit_statement_token1] = ACTIONS(4391), + [aux_sym_implicit_statement_token3] = ACTIONS(4391), + [aux_sym_implicit_statement_token4] = ACTIONS(4391), + [aux_sym_save_statement_token1] = ACTIONS(4391), + [aux_sym_private_statement_token1] = ACTIONS(4391), + [aux_sym_public_statement_token1] = ACTIONS(4391), + [aux_sym_namelist_statement_token1] = ACTIONS(4391), + [aux_sym_common_statement_token1] = ACTIONS(4391), + [aux_sym_import_statement_token1] = ACTIONS(4391), + [aux_sym_derived_type_definition_token1] = ACTIONS(4391), + [aux_sym_abstract_specifier_token1] = ACTIONS(4391), + [aux_sym_procedure_attribute_token6] = ACTIONS(4391), + [aux_sym_variable_attributes_token1] = ACTIONS(4391), + [aux_sym_variable_attributes_token2] = ACTIONS(4391), + [aux_sym_variable_attributes_token3] = ACTIONS(4391), + [aux_sym_variable_attributes_token4] = ACTIONS(4391), + [aux_sym_variable_attributes_token5] = ACTIONS(4391), + [aux_sym__intrinsic_type_token1] = ACTIONS(4391), + [aux_sym__intrinsic_type_token2] = ACTIONS(4391), + [aux_sym__intrinsic_type_token3] = ACTIONS(4391), + [aux_sym__intrinsic_type_token4] = ACTIONS(4391), + [aux_sym__intrinsic_type_token6] = ACTIONS(4391), + [aux_sym__intrinsic_type_token7] = ACTIONS(4391), + [aux_sym__intrinsic_type_token8] = ACTIONS(4391), + [aux_sym__intrinsic_type_token9] = ACTIONS(4391), + [aux_sym__intrinsic_type_token10] = ACTIONS(4391), + [aux_sym_derived_type_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4391), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4391), + [aux_sym_type_qualifier_token1] = ACTIONS(4391), + [aux_sym_type_qualifier_token2] = ACTIONS(4391), + [aux_sym_equivalence_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token1] = ACTIONS(4391), + [aux_sym_stop_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token2] = ACTIONS(4391), + [aux_sym_keyword_statement_token3] = ACTIONS(4391), + [aux_sym_include_statement_token1] = ACTIONS(4391), + [aux_sym_data_statement_token1] = ACTIONS(4391), + [aux_sym__inline_if_statement_token1] = ACTIONS(4391), + [aux_sym_end_if_statement_token1] = ACTIONS(4391), + [aux_sym_elseif_clause_token2] = ACTIONS(4391), + [aux_sym_select_case_statement_token1] = ACTIONS(4391), + [aux_sym_block_construct_token1] = ACTIONS(4391), + [aux_sym_format_statement_token1] = ACTIONS(4391), + [aux_sym_inquire_statement_token1] = ACTIONS(4391), + [aux_sym_enum_statement_token1] = ACTIONS(4391), + [aux_sym_entry_statement_token1] = ACTIONS(4391), + [aux_sym_null_literal_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_statement_token2] = ACTIONS(4391), + [aux_sym_coarray_statement_token6] = ACTIONS(4391), + [aux_sym_coarray_statement_token8] = ACTIONS(4391), + [aux_sym_coarray_statement_token11] = ACTIONS(4391), + [aux_sym_coarray_statement_token12] = ACTIONS(4391), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4391), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4391), + [aux_sym_identifier_token1] = ACTIONS(4391), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4393), }, - [3197] = { - [sym__preproc_expression] = STATE(5242), - [sym_preproc_parenthesized_expression] = STATE(5242), - [sym_preproc_defined] = STATE(5242), - [sym_preproc_unary_expression] = STATE(5242), - [sym_preproc_call_expression] = STATE(5242), - [sym_preproc_binary_expression] = STATE(5242), - [sym_number_literal] = STATE(5242), - [sym_string_literal] = STATE(5242), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [3080] = { + [aux_sym_preproc_include_token1] = ACTIONS(5051), + [aux_sym_preproc_def_token1] = ACTIONS(5051), + [aux_sym_preproc_if_token2] = ACTIONS(5051), + [sym_preproc_directive] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5051), + [aux_sym_interface_statement_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5051), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5051), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5051), + [aux_sym_language_binding_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token1] = ACTIONS(5051), + [aux_sym_procedure_attributes_token3] = ACTIONS(5051), + [aux_sym_contains_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token1] = ACTIONS(5051), + [aux_sym_use_statement_token2] = ACTIONS(5051), + [aux_sym_implicit_statement_token1] = ACTIONS(5051), + [aux_sym_implicit_statement_token3] = ACTIONS(5051), + [aux_sym_implicit_statement_token4] = ACTIONS(5051), + [aux_sym_save_statement_token1] = ACTIONS(5051), + [aux_sym_private_statement_token1] = ACTIONS(5051), + [aux_sym_public_statement_token1] = ACTIONS(5051), + [aux_sym_namelist_statement_token1] = ACTIONS(5051), + [aux_sym_common_statement_token1] = ACTIONS(5051), + [aux_sym_import_statement_token1] = ACTIONS(5051), + [aux_sym_derived_type_definition_token1] = ACTIONS(5051), + [aux_sym_abstract_specifier_token1] = ACTIONS(5051), + [aux_sym_procedure_attribute_token6] = ACTIONS(5051), + [aux_sym_variable_attributes_token1] = ACTIONS(5051), + [aux_sym_variable_attributes_token2] = ACTIONS(5051), + [aux_sym_variable_attributes_token3] = ACTIONS(5051), + [aux_sym_variable_attributes_token4] = ACTIONS(5051), + [aux_sym_variable_attributes_token5] = ACTIONS(5051), + [aux_sym__intrinsic_type_token1] = ACTIONS(5051), + [aux_sym__intrinsic_type_token2] = ACTIONS(5051), + [aux_sym__intrinsic_type_token3] = ACTIONS(5051), + [aux_sym__intrinsic_type_token4] = ACTIONS(5051), + [aux_sym__intrinsic_type_token6] = ACTIONS(5051), + [aux_sym__intrinsic_type_token7] = ACTIONS(5051), + [aux_sym__intrinsic_type_token8] = ACTIONS(5051), + [aux_sym__intrinsic_type_token9] = ACTIONS(5051), + [aux_sym__intrinsic_type_token10] = ACTIONS(5051), + [aux_sym_derived_type_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5051), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5051), + [aux_sym_type_qualifier_token1] = ACTIONS(5051), + [aux_sym_type_qualifier_token2] = ACTIONS(5051), + [aux_sym_equivalence_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token1] = ACTIONS(5051), + [aux_sym_stop_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token2] = ACTIONS(5051), + [aux_sym_keyword_statement_token3] = ACTIONS(5051), + [aux_sym_include_statement_token1] = ACTIONS(5051), + [aux_sym_data_statement_token1] = ACTIONS(5051), + [aux_sym__inline_if_statement_token1] = ACTIONS(5051), + [aux_sym_end_if_statement_token1] = ACTIONS(5051), + [aux_sym_elseif_clause_token2] = ACTIONS(5051), + [aux_sym_select_case_statement_token1] = ACTIONS(5051), + [aux_sym_block_construct_token1] = ACTIONS(5051), + [aux_sym_format_statement_token1] = ACTIONS(5051), + [aux_sym_inquire_statement_token1] = ACTIONS(5051), + [aux_sym_enum_statement_token1] = ACTIONS(5051), + [aux_sym_entry_statement_token1] = ACTIONS(5051), + [aux_sym_null_literal_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_statement_token2] = ACTIONS(5051), + [aux_sym_coarray_statement_token6] = ACTIONS(5051), + [aux_sym_coarray_statement_token8] = ACTIONS(5051), + [aux_sym_coarray_statement_token11] = ACTIONS(5051), + [aux_sym_coarray_statement_token12] = ACTIONS(5051), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5051), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5051), + [aux_sym_identifier_token1] = ACTIONS(5051), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5053), }, - [3198] = { - [sym__preproc_expression] = STATE(5347), - [sym_preproc_parenthesized_expression] = STATE(5347), - [sym_preproc_defined] = STATE(5347), - [sym_preproc_unary_expression] = STATE(5347), - [sym_preproc_call_expression] = STATE(5347), - [sym_preproc_binary_expression] = STATE(5347), - [sym_number_literal] = STATE(5347), - [sym_string_literal] = STATE(5347), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3081] = { + [aux_sym_preproc_include_token1] = ACTIONS(5067), + [aux_sym_preproc_def_token1] = ACTIONS(5067), + [aux_sym_preproc_if_token2] = ACTIONS(5067), + [sym_preproc_directive] = ACTIONS(5067), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5067), + [aux_sym_interface_statement_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5067), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5067), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5067), + [aux_sym_language_binding_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token1] = ACTIONS(5067), + [aux_sym_procedure_attributes_token3] = ACTIONS(5067), + [aux_sym_contains_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token1] = ACTIONS(5067), + [aux_sym_use_statement_token2] = ACTIONS(5067), + [aux_sym_implicit_statement_token1] = ACTIONS(5067), + [aux_sym_implicit_statement_token3] = ACTIONS(5067), + [aux_sym_implicit_statement_token4] = ACTIONS(5067), + [aux_sym_save_statement_token1] = ACTIONS(5067), + [aux_sym_private_statement_token1] = ACTIONS(5067), + [aux_sym_public_statement_token1] = ACTIONS(5067), + [aux_sym_namelist_statement_token1] = ACTIONS(5067), + [aux_sym_common_statement_token1] = ACTIONS(5067), + [aux_sym_import_statement_token1] = ACTIONS(5067), + [aux_sym_derived_type_definition_token1] = ACTIONS(5067), + [aux_sym_abstract_specifier_token1] = ACTIONS(5067), + [aux_sym_procedure_attribute_token6] = ACTIONS(5067), + [aux_sym_variable_attributes_token1] = ACTIONS(5067), + [aux_sym_variable_attributes_token2] = ACTIONS(5067), + [aux_sym_variable_attributes_token3] = ACTIONS(5067), + [aux_sym_variable_attributes_token4] = ACTIONS(5067), + [aux_sym_variable_attributes_token5] = ACTIONS(5067), + [aux_sym__intrinsic_type_token1] = ACTIONS(5067), + [aux_sym__intrinsic_type_token2] = ACTIONS(5067), + [aux_sym__intrinsic_type_token3] = ACTIONS(5067), + [aux_sym__intrinsic_type_token4] = ACTIONS(5067), + [aux_sym__intrinsic_type_token6] = ACTIONS(5067), + [aux_sym__intrinsic_type_token7] = ACTIONS(5067), + [aux_sym__intrinsic_type_token8] = ACTIONS(5067), + [aux_sym__intrinsic_type_token9] = ACTIONS(5067), + [aux_sym__intrinsic_type_token10] = ACTIONS(5067), + [aux_sym_derived_type_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5067), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5067), + [aux_sym_type_qualifier_token1] = ACTIONS(5067), + [aux_sym_type_qualifier_token2] = ACTIONS(5067), + [aux_sym_equivalence_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token1] = ACTIONS(5067), + [aux_sym_stop_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token2] = ACTIONS(5067), + [aux_sym_keyword_statement_token3] = ACTIONS(5067), + [aux_sym_include_statement_token1] = ACTIONS(5067), + [aux_sym_data_statement_token1] = ACTIONS(5067), + [aux_sym__inline_if_statement_token1] = ACTIONS(5067), + [aux_sym_end_if_statement_token1] = ACTIONS(5067), + [aux_sym_elseif_clause_token2] = ACTIONS(5067), + [aux_sym_select_case_statement_token1] = ACTIONS(5067), + [aux_sym_block_construct_token1] = ACTIONS(5067), + [aux_sym_format_statement_token1] = ACTIONS(5067), + [aux_sym_inquire_statement_token1] = ACTIONS(5067), + [aux_sym_enum_statement_token1] = ACTIONS(5067), + [aux_sym_entry_statement_token1] = ACTIONS(5067), + [aux_sym_null_literal_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_statement_token2] = ACTIONS(5067), + [aux_sym_coarray_statement_token6] = ACTIONS(5067), + [aux_sym_coarray_statement_token8] = ACTIONS(5067), + [aux_sym_coarray_statement_token11] = ACTIONS(5067), + [aux_sym_coarray_statement_token12] = ACTIONS(5067), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5067), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5067), + [aux_sym_identifier_token1] = ACTIONS(5067), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5069), + }, + [3082] = { + [sym__import_names] = STATE(4445), + [sym_identifier] = STATE(4287), + [aux_sym_preproc_include_token1] = ACTIONS(7094), + [aux_sym_preproc_def_token1] = ACTIONS(7094), + [anon_sym_COMMA] = ACTIONS(7096), + [aux_sym_preproc_if_token1] = ACTIONS(7094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7094), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7094), + [sym_preproc_directive] = ACTIONS(7094), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7094), + [aux_sym_module_statement_token1] = ACTIONS(7094), + [aux_sym_end_interface_statement_token1] = ACTIONS(7094), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6176), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6176), + [aux_sym_subroutine_statement_token1] = ACTIONS(7094), + [aux_sym_module_procedure_statement_token1] = ACTIONS(7094), + [aux_sym_function_statement_token1] = ACTIONS(7094), + [aux_sym_procedure_attributes_token1] = ACTIONS(7094), + [aux_sym_procedure_attributes_token3] = ACTIONS(6176), + [aux_sym_use_statement_token2] = ACTIONS(6176), + [anon_sym_COLON_COLON] = ACTIONS(7098), + [aux_sym_implicit_statement_token3] = ACTIONS(7094), + [aux_sym_implicit_statement_token4] = ACTIONS(6176), + [aux_sym_save_statement_token1] = ACTIONS(6176), + [aux_sym_private_statement_token1] = ACTIONS(6176), + [aux_sym_public_statement_token1] = ACTIONS(6176), + [aux_sym_import_statement_token1] = ACTIONS(7094), + [aux_sym_derived_type_definition_token1] = ACTIONS(6176), + [aux_sym_procedure_kind_token1] = ACTIONS(7094), + [aux_sym_procedure_kind_token2] = ACTIONS(7094), + [aux_sym_procedure_kind_token3] = ACTIONS(7094), + [aux_sym_procedure_kind_token4] = ACTIONS(7094), + [aux_sym_procedure_attribute_token6] = ACTIONS(6176), + [aux_sym_variable_attributes_token2] = ACTIONS(6176), + [aux_sym_variable_attributes_token3] = ACTIONS(6176), + [aux_sym_variable_attributes_token5] = ACTIONS(6176), + [aux_sym__intrinsic_type_token1] = ACTIONS(7094), + [aux_sym__intrinsic_type_token2] = ACTIONS(7094), + [aux_sym__intrinsic_type_token3] = ACTIONS(7094), + [aux_sym__intrinsic_type_token4] = ACTIONS(7094), + [aux_sym__intrinsic_type_token6] = ACTIONS(7094), + [aux_sym__intrinsic_type_token7] = ACTIONS(7094), + [aux_sym__intrinsic_type_token8] = ACTIONS(7094), + [aux_sym__intrinsic_type_token9] = ACTIONS(7094), + [aux_sym__intrinsic_type_token10] = ACTIONS(7094), + [aux_sym_derived_type_token1] = ACTIONS(7094), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6182), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6176), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6176), + [aux_sym_type_qualifier_token1] = ACTIONS(6176), + [aux_sym_type_qualifier_token2] = ACTIONS(6176), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7094), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7094), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7094), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7094), + [aux_sym_stop_statement_token1] = ACTIONS(6176), + [aux_sym_stop_statement_token2] = ACTIONS(6176), + [aux_sym_keyword_statement_token2] = ACTIONS(6176), + [aux_sym_keyword_statement_token3] = ACTIONS(6176), + [aux_sym_data_statement_token1] = ACTIONS(6176), + [aux_sym__inline_if_statement_token1] = ACTIONS(6176), + [aux_sym_end_if_statement_token1] = ACTIONS(6176), + [aux_sym_elseif_clause_token2] = ACTIONS(6176), + [aux_sym_select_case_statement_token1] = ACTIONS(6184), + [aux_sym_block_construct_token1] = ACTIONS(6176), + [aux_sym_format_statement_token1] = ACTIONS(6176), + [aux_sym_inquire_statement_token1] = ACTIONS(6176), + [aux_sym_entry_statement_token1] = ACTIONS(6176), + [aux_sym_null_literal_token1] = ACTIONS(6176), + [aux_sym_coarray_statement_token1] = ACTIONS(6176), + [aux_sym_coarray_statement_token2] = ACTIONS(6176), + [aux_sym_coarray_statement_token6] = ACTIONS(6176), + [aux_sym_coarray_statement_token8] = ACTIONS(6176), + [aux_sym_coarray_statement_token11] = ACTIONS(6176), + [aux_sym_coarray_statement_token12] = ACTIONS(6176), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6176), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6176), + [aux_sym_identifier_token1] = ACTIONS(6176), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3199] = { - [anon_sym_COMMA] = ACTIONS(7348), - [anon_sym_LPAREN2] = ACTIONS(7350), - [anon_sym_PLUS] = ACTIONS(7348), - [anon_sym_DASH] = ACTIONS(7348), + [3083] = { + [aux_sym_preproc_include_token1] = ACTIONS(5055), + [aux_sym_preproc_def_token1] = ACTIONS(5055), + [aux_sym_preproc_if_token2] = ACTIONS(5055), + [sym_preproc_directive] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5055), + [aux_sym_interface_statement_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5055), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5055), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5055), + [aux_sym_language_binding_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token1] = ACTIONS(5055), + [aux_sym_procedure_attributes_token3] = ACTIONS(5055), + [aux_sym_contains_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token1] = ACTIONS(5055), + [aux_sym_use_statement_token2] = ACTIONS(5055), + [aux_sym_implicit_statement_token1] = ACTIONS(5055), + [aux_sym_implicit_statement_token3] = ACTIONS(5055), + [aux_sym_implicit_statement_token4] = ACTIONS(5055), + [aux_sym_save_statement_token1] = ACTIONS(5055), + [aux_sym_private_statement_token1] = ACTIONS(5055), + [aux_sym_public_statement_token1] = ACTIONS(5055), + [aux_sym_namelist_statement_token1] = ACTIONS(5055), + [aux_sym_common_statement_token1] = ACTIONS(5055), + [aux_sym_import_statement_token1] = ACTIONS(5055), + [aux_sym_derived_type_definition_token1] = ACTIONS(5055), + [aux_sym_abstract_specifier_token1] = ACTIONS(5055), + [aux_sym_procedure_attribute_token6] = ACTIONS(5055), + [aux_sym_variable_attributes_token1] = ACTIONS(5055), + [aux_sym_variable_attributes_token2] = ACTIONS(5055), + [aux_sym_variable_attributes_token3] = ACTIONS(5055), + [aux_sym_variable_attributes_token4] = ACTIONS(5055), + [aux_sym_variable_attributes_token5] = ACTIONS(5055), + [aux_sym__intrinsic_type_token1] = ACTIONS(5055), + [aux_sym__intrinsic_type_token2] = ACTIONS(5055), + [aux_sym__intrinsic_type_token3] = ACTIONS(5055), + [aux_sym__intrinsic_type_token4] = ACTIONS(5055), + [aux_sym__intrinsic_type_token6] = ACTIONS(5055), + [aux_sym__intrinsic_type_token7] = ACTIONS(5055), + [aux_sym__intrinsic_type_token8] = ACTIONS(5055), + [aux_sym__intrinsic_type_token9] = ACTIONS(5055), + [aux_sym__intrinsic_type_token10] = ACTIONS(5055), + [aux_sym_derived_type_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5055), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5055), + [aux_sym_type_qualifier_token1] = ACTIONS(5055), + [aux_sym_type_qualifier_token2] = ACTIONS(5055), + [aux_sym_equivalence_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token1] = ACTIONS(5055), + [aux_sym_stop_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token2] = ACTIONS(5055), + [aux_sym_keyword_statement_token3] = ACTIONS(5055), + [aux_sym_include_statement_token1] = ACTIONS(5055), + [aux_sym_data_statement_token1] = ACTIONS(5055), + [aux_sym__inline_if_statement_token1] = ACTIONS(5055), + [aux_sym_end_if_statement_token1] = ACTIONS(5055), + [aux_sym_elseif_clause_token2] = ACTIONS(5055), + [aux_sym_select_case_statement_token1] = ACTIONS(5055), + [aux_sym_block_construct_token1] = ACTIONS(5055), + [aux_sym_format_statement_token1] = ACTIONS(5055), + [aux_sym_inquire_statement_token1] = ACTIONS(5055), + [aux_sym_enum_statement_token1] = ACTIONS(5055), + [aux_sym_entry_statement_token1] = ACTIONS(5055), + [aux_sym_null_literal_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_statement_token2] = ACTIONS(5055), + [aux_sym_coarray_statement_token6] = ACTIONS(5055), + [aux_sym_coarray_statement_token8] = ACTIONS(5055), + [aux_sym_coarray_statement_token11] = ACTIONS(5055), + [aux_sym_coarray_statement_token12] = ACTIONS(5055), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5055), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5055), + [aux_sym_identifier_token1] = ACTIONS(5055), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5057), + }, + [3084] = { + [aux_sym_preproc_include_token1] = ACTIONS(4379), + [aux_sym_preproc_def_token1] = ACTIONS(4379), + [aux_sym_preproc_if_token2] = ACTIONS(4379), + [sym_preproc_directive] = ACTIONS(4379), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7350), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7350), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7350), - [aux_sym_procedure_attributes_token3] = ACTIONS(7350), - [aux_sym_use_statement_token2] = ACTIONS(7350), - [aux_sym_implicit_statement_token4] = ACTIONS(7350), - [aux_sym_save_statement_token1] = ACTIONS(7350), - [aux_sym_private_statement_token1] = ACTIONS(7350), - [aux_sym_public_statement_token1] = ACTIONS(7350), - [aux_sym_derived_type_definition_token1] = ACTIONS(7350), - [aux_sym_procedure_attribute_token6] = ACTIONS(7350), - [aux_sym_variable_attributes_token2] = ACTIONS(7350), - [aux_sym_variable_attributes_token3] = ACTIONS(7350), - [aux_sym_variable_attributes_token5] = ACTIONS(7350), - [aux_sym__intrinsic_type_token1] = ACTIONS(7350), - [aux_sym__intrinsic_type_token3] = ACTIONS(7350), - [aux_sym__intrinsic_type_token4] = ACTIONS(7350), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7350), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7350), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7350), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7350), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7350), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7350), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7350), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7350), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7350), - [aux_sym_type_qualifier_token1] = ACTIONS(7350), - [aux_sym_type_qualifier_token2] = ACTIONS(7350), - [anon_sym_SEMI] = ACTIONS(7348), - [aux_sym_stop_statement_token1] = ACTIONS(7350), - [aux_sym_stop_statement_token2] = ACTIONS(7350), - [aux_sym_keyword_statement_token2] = ACTIONS(7350), - [aux_sym_keyword_statement_token3] = ACTIONS(7350), - [aux_sym_data_statement_token1] = ACTIONS(7350), - [aux_sym__inline_if_statement_token1] = ACTIONS(7350), - [aux_sym_end_if_statement_token1] = ACTIONS(7350), - [aux_sym_elseif_clause_token2] = ACTIONS(7350), - [aux_sym_select_case_statement_token1] = ACTIONS(7350), - [aux_sym_block_construct_token1] = ACTIONS(7350), - [aux_sym_format_statement_token1] = ACTIONS(7350), - [aux_sym_inquire_statement_token1] = ACTIONS(7350), - [aux_sym_entry_statement_token1] = ACTIONS(7350), - [aux_sym_logical_expression_token5] = ACTIONS(7348), - [anon_sym_DOT] = ACTIONS(7350), - [anon_sym_LPAREN_SLASH] = ACTIONS(7348), - [anon_sym_LBRACK] = ACTIONS(7348), - [aux_sym_boolean_literal_token1] = ACTIONS(7348), - [aux_sym_boolean_literal_token2] = ACTIONS(7348), - [aux_sym_null_literal_token1] = ACTIONS(7350), - [aux_sym_coarray_statement_token1] = ACTIONS(7350), - [aux_sym_coarray_statement_token2] = ACTIONS(7350), - [aux_sym_coarray_statement_token6] = ACTIONS(7350), - [aux_sym_coarray_statement_token8] = ACTIONS(7350), - [aux_sym_coarray_statement_token11] = ACTIONS(7350), - [aux_sym_coarray_statement_token12] = ACTIONS(7350), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7350), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7350), - [aux_sym_identifier_token1] = ACTIONS(7350), + [aux_sym_end_program_statement_token1] = ACTIONS(4379), + [aux_sym_interface_statement_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4379), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4379), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4379), + [aux_sym_language_binding_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token1] = ACTIONS(4379), + [aux_sym_procedure_attributes_token3] = ACTIONS(4379), + [aux_sym_contains_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token1] = ACTIONS(4379), + [aux_sym_use_statement_token2] = ACTIONS(4379), + [aux_sym_implicit_statement_token1] = ACTIONS(4379), + [aux_sym_implicit_statement_token3] = ACTIONS(4379), + [aux_sym_implicit_statement_token4] = ACTIONS(4379), + [aux_sym_save_statement_token1] = ACTIONS(4379), + [aux_sym_private_statement_token1] = ACTIONS(4379), + [aux_sym_public_statement_token1] = ACTIONS(4379), + [aux_sym_namelist_statement_token1] = ACTIONS(4379), + [aux_sym_common_statement_token1] = ACTIONS(4379), + [aux_sym_import_statement_token1] = ACTIONS(4379), + [aux_sym_derived_type_definition_token1] = ACTIONS(4379), + [aux_sym_abstract_specifier_token1] = ACTIONS(4379), + [aux_sym_procedure_attribute_token6] = ACTIONS(4379), + [aux_sym_variable_attributes_token1] = ACTIONS(4379), + [aux_sym_variable_attributes_token2] = ACTIONS(4379), + [aux_sym_variable_attributes_token3] = ACTIONS(4379), + [aux_sym_variable_attributes_token4] = ACTIONS(4379), + [aux_sym_variable_attributes_token5] = ACTIONS(4379), + [aux_sym__intrinsic_type_token1] = ACTIONS(4379), + [aux_sym__intrinsic_type_token2] = ACTIONS(4379), + [aux_sym__intrinsic_type_token3] = ACTIONS(4379), + [aux_sym__intrinsic_type_token4] = ACTIONS(4379), + [aux_sym__intrinsic_type_token6] = ACTIONS(4379), + [aux_sym__intrinsic_type_token7] = ACTIONS(4379), + [aux_sym__intrinsic_type_token8] = ACTIONS(4379), + [aux_sym__intrinsic_type_token9] = ACTIONS(4379), + [aux_sym__intrinsic_type_token10] = ACTIONS(4379), + [aux_sym_derived_type_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4379), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4379), + [aux_sym_type_qualifier_token1] = ACTIONS(4379), + [aux_sym_type_qualifier_token2] = ACTIONS(4379), + [aux_sym_equivalence_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token1] = ACTIONS(4379), + [aux_sym_stop_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token2] = ACTIONS(4379), + [aux_sym_keyword_statement_token3] = ACTIONS(4379), + [aux_sym_include_statement_token1] = ACTIONS(4379), + [aux_sym_data_statement_token1] = ACTIONS(4379), + [aux_sym__inline_if_statement_token1] = ACTIONS(4379), + [aux_sym_end_if_statement_token1] = ACTIONS(4379), + [aux_sym_elseif_clause_token2] = ACTIONS(4379), + [aux_sym_select_case_statement_token1] = ACTIONS(4379), + [aux_sym_block_construct_token1] = ACTIONS(4379), + [aux_sym_format_statement_token1] = ACTIONS(4379), + [aux_sym_inquire_statement_token1] = ACTIONS(4379), + [aux_sym_enum_statement_token1] = ACTIONS(4379), + [aux_sym_entry_statement_token1] = ACTIONS(4379), + [aux_sym_null_literal_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_statement_token2] = ACTIONS(4379), + [aux_sym_coarray_statement_token6] = ACTIONS(4379), + [aux_sym_coarray_statement_token8] = ACTIONS(4379), + [aux_sym_coarray_statement_token11] = ACTIONS(4379), + [aux_sym_coarray_statement_token12] = ACTIONS(4379), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4379), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4379), + [aux_sym_identifier_token1] = ACTIONS(4379), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7348), - [sym__float_literal] = ACTIONS(7348), - [sym__boz_literal] = ACTIONS(7348), - [sym__string_literal] = ACTIONS(7348), - [sym__string_literal_kind] = ACTIONS(7348), - [sym__external_end_of_statement] = ACTIONS(7348), + [sym__integer_literal] = ACTIONS(4381), }, - [3200] = { - [sym__preproc_expression] = STATE(5316), - [sym_preproc_parenthesized_expression] = STATE(5316), - [sym_preproc_defined] = STATE(5316), - [sym_preproc_unary_expression] = STATE(5316), - [sym_preproc_call_expression] = STATE(5316), - [sym_preproc_binary_expression] = STATE(5316), - [sym_number_literal] = STATE(5316), - [sym_string_literal] = STATE(5316), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3085] = { + [aux_sym_preproc_include_token1] = ACTIONS(4395), + [aux_sym_preproc_def_token1] = ACTIONS(4395), + [aux_sym_preproc_if_token2] = ACTIONS(4395), + [sym_preproc_directive] = ACTIONS(4395), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4395), + [aux_sym_interface_statement_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4395), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4395), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4395), + [aux_sym_language_binding_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token1] = ACTIONS(4395), + [aux_sym_procedure_attributes_token3] = ACTIONS(4395), + [aux_sym_contains_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token1] = ACTIONS(4395), + [aux_sym_use_statement_token2] = ACTIONS(4395), + [aux_sym_implicit_statement_token1] = ACTIONS(4395), + [aux_sym_implicit_statement_token3] = ACTIONS(4395), + [aux_sym_implicit_statement_token4] = ACTIONS(4395), + [aux_sym_save_statement_token1] = ACTIONS(4395), + [aux_sym_private_statement_token1] = ACTIONS(4395), + [aux_sym_public_statement_token1] = ACTIONS(4395), + [aux_sym_namelist_statement_token1] = ACTIONS(4395), + [aux_sym_common_statement_token1] = ACTIONS(4395), + [aux_sym_import_statement_token1] = ACTIONS(4395), + [aux_sym_derived_type_definition_token1] = ACTIONS(4395), + [aux_sym_abstract_specifier_token1] = ACTIONS(4395), + [aux_sym_procedure_attribute_token6] = ACTIONS(4395), + [aux_sym_variable_attributes_token1] = ACTIONS(4395), + [aux_sym_variable_attributes_token2] = ACTIONS(4395), + [aux_sym_variable_attributes_token3] = ACTIONS(4395), + [aux_sym_variable_attributes_token4] = ACTIONS(4395), + [aux_sym_variable_attributes_token5] = ACTIONS(4395), + [aux_sym__intrinsic_type_token1] = ACTIONS(4395), + [aux_sym__intrinsic_type_token2] = ACTIONS(4395), + [aux_sym__intrinsic_type_token3] = ACTIONS(4395), + [aux_sym__intrinsic_type_token4] = ACTIONS(4395), + [aux_sym__intrinsic_type_token6] = ACTIONS(4395), + [aux_sym__intrinsic_type_token7] = ACTIONS(4395), + [aux_sym__intrinsic_type_token8] = ACTIONS(4395), + [aux_sym__intrinsic_type_token9] = ACTIONS(4395), + [aux_sym__intrinsic_type_token10] = ACTIONS(4395), + [aux_sym_derived_type_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4395), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4395), + [aux_sym_type_qualifier_token1] = ACTIONS(4395), + [aux_sym_type_qualifier_token2] = ACTIONS(4395), + [aux_sym_equivalence_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token1] = ACTIONS(4395), + [aux_sym_stop_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token2] = ACTIONS(4395), + [aux_sym_keyword_statement_token3] = ACTIONS(4395), + [aux_sym_include_statement_token1] = ACTIONS(4395), + [aux_sym_data_statement_token1] = ACTIONS(4395), + [aux_sym__inline_if_statement_token1] = ACTIONS(4395), + [aux_sym_end_if_statement_token1] = ACTIONS(4395), + [aux_sym_elseif_clause_token2] = ACTIONS(4395), + [aux_sym_select_case_statement_token1] = ACTIONS(4395), + [aux_sym_block_construct_token1] = ACTIONS(4395), + [aux_sym_format_statement_token1] = ACTIONS(4395), + [aux_sym_inquire_statement_token1] = ACTIONS(4395), + [aux_sym_enum_statement_token1] = ACTIONS(4395), + [aux_sym_entry_statement_token1] = ACTIONS(4395), + [aux_sym_null_literal_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_statement_token2] = ACTIONS(4395), + [aux_sym_coarray_statement_token6] = ACTIONS(4395), + [aux_sym_coarray_statement_token8] = ACTIONS(4395), + [aux_sym_coarray_statement_token11] = ACTIONS(4395), + [aux_sym_coarray_statement_token12] = ACTIONS(4395), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4395), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4395), + [aux_sym_identifier_token1] = ACTIONS(4395), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4397), }, - [3201] = { - [sym__preproc_expression] = STATE(5370), - [sym_preproc_parenthesized_expression] = STATE(5370), - [sym_preproc_defined] = STATE(5370), - [sym_preproc_unary_expression] = STATE(5370), - [sym_preproc_call_expression] = STATE(5370), - [sym_preproc_binary_expression] = STATE(5370), - [sym_number_literal] = STATE(5370), - [sym_string_literal] = STATE(5370), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3086] = { + [aux_sym_preproc_include_token1] = ACTIONS(5081), + [aux_sym_preproc_def_token1] = ACTIONS(5081), + [aux_sym_preproc_if_token2] = ACTIONS(5081), + [sym_preproc_directive] = ACTIONS(5081), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5081), + [aux_sym_interface_statement_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5081), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5081), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5081), + [aux_sym_language_binding_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token1] = ACTIONS(5081), + [aux_sym_procedure_attributes_token3] = ACTIONS(5081), + [aux_sym_contains_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token1] = ACTIONS(5081), + [aux_sym_use_statement_token2] = ACTIONS(5081), + [aux_sym_implicit_statement_token1] = ACTIONS(5081), + [aux_sym_implicit_statement_token3] = ACTIONS(5081), + [aux_sym_implicit_statement_token4] = ACTIONS(5081), + [aux_sym_save_statement_token1] = ACTIONS(5081), + [aux_sym_private_statement_token1] = ACTIONS(5081), + [aux_sym_public_statement_token1] = ACTIONS(5081), + [aux_sym_namelist_statement_token1] = ACTIONS(5081), + [aux_sym_common_statement_token1] = ACTIONS(5081), + [aux_sym_import_statement_token1] = ACTIONS(5081), + [aux_sym_derived_type_definition_token1] = ACTIONS(5081), + [aux_sym_abstract_specifier_token1] = ACTIONS(5081), + [aux_sym_procedure_attribute_token6] = ACTIONS(5081), + [aux_sym_variable_attributes_token1] = ACTIONS(5081), + [aux_sym_variable_attributes_token2] = ACTIONS(5081), + [aux_sym_variable_attributes_token3] = ACTIONS(5081), + [aux_sym_variable_attributes_token4] = ACTIONS(5081), + [aux_sym_variable_attributes_token5] = ACTIONS(5081), + [aux_sym__intrinsic_type_token1] = ACTIONS(5081), + [aux_sym__intrinsic_type_token2] = ACTIONS(5081), + [aux_sym__intrinsic_type_token3] = ACTIONS(5081), + [aux_sym__intrinsic_type_token4] = ACTIONS(5081), + [aux_sym__intrinsic_type_token6] = ACTIONS(5081), + [aux_sym__intrinsic_type_token7] = ACTIONS(5081), + [aux_sym__intrinsic_type_token8] = ACTIONS(5081), + [aux_sym__intrinsic_type_token9] = ACTIONS(5081), + [aux_sym__intrinsic_type_token10] = ACTIONS(5081), + [aux_sym_derived_type_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5081), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5081), + [aux_sym_type_qualifier_token1] = ACTIONS(5081), + [aux_sym_type_qualifier_token2] = ACTIONS(5081), + [aux_sym_equivalence_statement_token1] = ACTIONS(5081), + [aux_sym_stop_statement_token1] = ACTIONS(5081), + [aux_sym_stop_statement_token2] = ACTIONS(5081), + [aux_sym_keyword_statement_token2] = ACTIONS(5081), + [aux_sym_keyword_statement_token3] = ACTIONS(5081), + [aux_sym_include_statement_token1] = ACTIONS(5081), + [aux_sym_data_statement_token1] = ACTIONS(5081), + [aux_sym__inline_if_statement_token1] = ACTIONS(5081), + [aux_sym_end_if_statement_token1] = ACTIONS(5081), + [aux_sym_elseif_clause_token2] = ACTIONS(5081), + [aux_sym_select_case_statement_token1] = ACTIONS(5081), + [aux_sym_block_construct_token1] = ACTIONS(5081), + [aux_sym_format_statement_token1] = ACTIONS(5081), + [aux_sym_inquire_statement_token1] = ACTIONS(5081), + [aux_sym_enum_statement_token1] = ACTIONS(5081), + [aux_sym_entry_statement_token1] = ACTIONS(5081), + [aux_sym_null_literal_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_statement_token2] = ACTIONS(5081), + [aux_sym_coarray_statement_token6] = ACTIONS(5081), + [aux_sym_coarray_statement_token8] = ACTIONS(5081), + [aux_sym_coarray_statement_token11] = ACTIONS(5081), + [aux_sym_coarray_statement_token12] = ACTIONS(5081), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5081), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5081), + [aux_sym_identifier_token1] = ACTIONS(5081), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(5083), }, - [3202] = { - [sym__preproc_expression] = STATE(5226), - [sym_preproc_parenthesized_expression] = STATE(5226), - [sym_preproc_defined] = STATE(5226), - [sym_preproc_unary_expression] = STATE(5226), - [sym_preproc_call_expression] = STATE(5226), - [sym_preproc_binary_expression] = STATE(5226), - [sym_number_literal] = STATE(5226), - [sym_string_literal] = STATE(5226), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3087] = { + [aux_sym_preproc_include_token1] = ACTIONS(4611), + [aux_sym_preproc_def_token1] = ACTIONS(4611), + [aux_sym_preproc_if_token2] = ACTIONS(4611), + [sym_preproc_directive] = ACTIONS(4611), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4611), + [aux_sym_interface_statement_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4611), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4611), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4611), + [aux_sym_language_binding_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token1] = ACTIONS(4611), + [aux_sym_procedure_attributes_token3] = ACTIONS(4611), + [aux_sym_contains_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token1] = ACTIONS(4611), + [aux_sym_use_statement_token2] = ACTIONS(4611), + [aux_sym_implicit_statement_token1] = ACTIONS(4611), + [aux_sym_implicit_statement_token3] = ACTIONS(4611), + [aux_sym_implicit_statement_token4] = ACTIONS(4611), + [aux_sym_save_statement_token1] = ACTIONS(4611), + [aux_sym_private_statement_token1] = ACTIONS(4611), + [aux_sym_public_statement_token1] = ACTIONS(4611), + [aux_sym_namelist_statement_token1] = ACTIONS(4611), + [aux_sym_common_statement_token1] = ACTIONS(4611), + [aux_sym_import_statement_token1] = ACTIONS(4611), + [aux_sym_derived_type_definition_token1] = ACTIONS(4611), + [aux_sym_abstract_specifier_token1] = ACTIONS(4611), + [aux_sym_procedure_attribute_token6] = ACTIONS(4611), + [aux_sym_variable_attributes_token1] = ACTIONS(4611), + [aux_sym_variable_attributes_token2] = ACTIONS(4611), + [aux_sym_variable_attributes_token3] = ACTIONS(4611), + [aux_sym_variable_attributes_token4] = ACTIONS(4611), + [aux_sym_variable_attributes_token5] = ACTIONS(4611), + [aux_sym__intrinsic_type_token1] = ACTIONS(4611), + [aux_sym__intrinsic_type_token2] = ACTIONS(4611), + [aux_sym__intrinsic_type_token3] = ACTIONS(4611), + [aux_sym__intrinsic_type_token4] = ACTIONS(4611), + [aux_sym__intrinsic_type_token6] = ACTIONS(4611), + [aux_sym__intrinsic_type_token7] = ACTIONS(4611), + [aux_sym__intrinsic_type_token8] = ACTIONS(4611), + [aux_sym__intrinsic_type_token9] = ACTIONS(4611), + [aux_sym__intrinsic_type_token10] = ACTIONS(4611), + [aux_sym_derived_type_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4611), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4611), + [aux_sym_type_qualifier_token1] = ACTIONS(4611), + [aux_sym_type_qualifier_token2] = ACTIONS(4611), + [aux_sym_equivalence_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token1] = ACTIONS(4611), + [aux_sym_stop_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token2] = ACTIONS(4611), + [aux_sym_keyword_statement_token3] = ACTIONS(4611), + [aux_sym_include_statement_token1] = ACTIONS(4611), + [aux_sym_data_statement_token1] = ACTIONS(4611), + [aux_sym__inline_if_statement_token1] = ACTIONS(4611), + [aux_sym_end_if_statement_token1] = ACTIONS(4611), + [aux_sym_elseif_clause_token2] = ACTIONS(4611), + [aux_sym_select_case_statement_token1] = ACTIONS(4611), + [aux_sym_block_construct_token1] = ACTIONS(4611), + [aux_sym_format_statement_token1] = ACTIONS(4611), + [aux_sym_inquire_statement_token1] = ACTIONS(4611), + [aux_sym_enum_statement_token1] = ACTIONS(4611), + [aux_sym_entry_statement_token1] = ACTIONS(4611), + [aux_sym_null_literal_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_statement_token2] = ACTIONS(4611), + [aux_sym_coarray_statement_token6] = ACTIONS(4611), + [aux_sym_coarray_statement_token8] = ACTIONS(4611), + [aux_sym_coarray_statement_token11] = ACTIONS(4611), + [aux_sym_coarray_statement_token12] = ACTIONS(4611), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4611), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4611), + [aux_sym_identifier_token1] = ACTIONS(4611), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4613), }, - [3203] = { - [sym__preproc_expression] = STATE(5353), - [sym_preproc_parenthesized_expression] = STATE(5353), - [sym_preproc_defined] = STATE(5353), - [sym_preproc_unary_expression] = STATE(5353), - [sym_preproc_call_expression] = STATE(5353), - [sym_preproc_binary_expression] = STATE(5353), - [sym_number_literal] = STATE(5353), - [sym_string_literal] = STATE(5353), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3088] = { + [aux_sym_preproc_include_token1] = ACTIONS(4399), + [aux_sym_preproc_def_token1] = ACTIONS(4399), + [aux_sym_preproc_if_token2] = ACTIONS(4399), + [sym_preproc_directive] = ACTIONS(4399), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4399), + [aux_sym_interface_statement_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4399), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4399), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4399), + [aux_sym_language_binding_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token1] = ACTIONS(4399), + [aux_sym_procedure_attributes_token3] = ACTIONS(4399), + [aux_sym_contains_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token1] = ACTIONS(4399), + [aux_sym_use_statement_token2] = ACTIONS(4399), + [aux_sym_implicit_statement_token1] = ACTIONS(4399), + [aux_sym_implicit_statement_token3] = ACTIONS(4399), + [aux_sym_implicit_statement_token4] = ACTIONS(4399), + [aux_sym_save_statement_token1] = ACTIONS(4399), + [aux_sym_private_statement_token1] = ACTIONS(4399), + [aux_sym_public_statement_token1] = ACTIONS(4399), + [aux_sym_namelist_statement_token1] = ACTIONS(4399), + [aux_sym_common_statement_token1] = ACTIONS(4399), + [aux_sym_import_statement_token1] = ACTIONS(4399), + [aux_sym_derived_type_definition_token1] = ACTIONS(4399), + [aux_sym_abstract_specifier_token1] = ACTIONS(4399), + [aux_sym_procedure_attribute_token6] = ACTIONS(4399), + [aux_sym_variable_attributes_token1] = ACTIONS(4399), + [aux_sym_variable_attributes_token2] = ACTIONS(4399), + [aux_sym_variable_attributes_token3] = ACTIONS(4399), + [aux_sym_variable_attributes_token4] = ACTIONS(4399), + [aux_sym_variable_attributes_token5] = ACTIONS(4399), + [aux_sym__intrinsic_type_token1] = ACTIONS(4399), + [aux_sym__intrinsic_type_token2] = ACTIONS(4399), + [aux_sym__intrinsic_type_token3] = ACTIONS(4399), + [aux_sym__intrinsic_type_token4] = ACTIONS(4399), + [aux_sym__intrinsic_type_token6] = ACTIONS(4399), + [aux_sym__intrinsic_type_token7] = ACTIONS(4399), + [aux_sym__intrinsic_type_token8] = ACTIONS(4399), + [aux_sym__intrinsic_type_token9] = ACTIONS(4399), + [aux_sym__intrinsic_type_token10] = ACTIONS(4399), + [aux_sym_derived_type_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4399), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4399), + [aux_sym_type_qualifier_token1] = ACTIONS(4399), + [aux_sym_type_qualifier_token2] = ACTIONS(4399), + [aux_sym_equivalence_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token1] = ACTIONS(4399), + [aux_sym_stop_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token2] = ACTIONS(4399), + [aux_sym_keyword_statement_token3] = ACTIONS(4399), + [aux_sym_include_statement_token1] = ACTIONS(4399), + [aux_sym_data_statement_token1] = ACTIONS(4399), + [aux_sym__inline_if_statement_token1] = ACTIONS(4399), + [aux_sym_end_if_statement_token1] = ACTIONS(4399), + [aux_sym_elseif_clause_token2] = ACTIONS(4399), + [aux_sym_select_case_statement_token1] = ACTIONS(4399), + [aux_sym_block_construct_token1] = ACTIONS(4399), + [aux_sym_format_statement_token1] = ACTIONS(4399), + [aux_sym_inquire_statement_token1] = ACTIONS(4399), + [aux_sym_enum_statement_token1] = ACTIONS(4399), + [aux_sym_entry_statement_token1] = ACTIONS(4399), + [aux_sym_null_literal_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_statement_token2] = ACTIONS(4399), + [aux_sym_coarray_statement_token6] = ACTIONS(4399), + [aux_sym_coarray_statement_token8] = ACTIONS(4399), + [aux_sym_coarray_statement_token11] = ACTIONS(4399), + [aux_sym_coarray_statement_token12] = ACTIONS(4399), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4399), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4399), + [aux_sym_identifier_token1] = ACTIONS(4399), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4401), }, - [3204] = { - [anon_sym_COMMA] = ACTIONS(7352), - [anon_sym_LPAREN2] = ACTIONS(7354), - [anon_sym_PLUS] = ACTIONS(7352), - [anon_sym_DASH] = ACTIONS(7352), + [3089] = { + [aux_sym_preproc_include_token1] = ACTIONS(5059), + [aux_sym_preproc_def_token1] = ACTIONS(5059), + [aux_sym_preproc_if_token2] = ACTIONS(5059), + [sym_preproc_directive] = ACTIONS(5059), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5059), + [aux_sym_interface_statement_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5059), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5059), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5059), + [aux_sym_language_binding_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token1] = ACTIONS(5059), + [aux_sym_procedure_attributes_token3] = ACTIONS(5059), + [aux_sym_contains_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token1] = ACTIONS(5059), + [aux_sym_use_statement_token2] = ACTIONS(5059), + [aux_sym_implicit_statement_token1] = ACTIONS(5059), + [aux_sym_implicit_statement_token3] = ACTIONS(5059), + [aux_sym_implicit_statement_token4] = ACTIONS(5059), + [aux_sym_save_statement_token1] = ACTIONS(5059), + [aux_sym_private_statement_token1] = ACTIONS(5059), + [aux_sym_public_statement_token1] = ACTIONS(5059), + [aux_sym_namelist_statement_token1] = ACTIONS(5059), + [aux_sym_common_statement_token1] = ACTIONS(5059), + [aux_sym_import_statement_token1] = ACTIONS(5059), + [aux_sym_derived_type_definition_token1] = ACTIONS(5059), + [aux_sym_abstract_specifier_token1] = ACTIONS(5059), + [aux_sym_procedure_attribute_token6] = ACTIONS(5059), + [aux_sym_variable_attributes_token1] = ACTIONS(5059), + [aux_sym_variable_attributes_token2] = ACTIONS(5059), + [aux_sym_variable_attributes_token3] = ACTIONS(5059), + [aux_sym_variable_attributes_token4] = ACTIONS(5059), + [aux_sym_variable_attributes_token5] = ACTIONS(5059), + [aux_sym__intrinsic_type_token1] = ACTIONS(5059), + [aux_sym__intrinsic_type_token2] = ACTIONS(5059), + [aux_sym__intrinsic_type_token3] = ACTIONS(5059), + [aux_sym__intrinsic_type_token4] = ACTIONS(5059), + [aux_sym__intrinsic_type_token6] = ACTIONS(5059), + [aux_sym__intrinsic_type_token7] = ACTIONS(5059), + [aux_sym__intrinsic_type_token8] = ACTIONS(5059), + [aux_sym__intrinsic_type_token9] = ACTIONS(5059), + [aux_sym__intrinsic_type_token10] = ACTIONS(5059), + [aux_sym_derived_type_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5059), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5059), + [aux_sym_type_qualifier_token1] = ACTIONS(5059), + [aux_sym_type_qualifier_token2] = ACTIONS(5059), + [aux_sym_equivalence_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token1] = ACTIONS(5059), + [aux_sym_stop_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token2] = ACTIONS(5059), + [aux_sym_keyword_statement_token3] = ACTIONS(5059), + [aux_sym_include_statement_token1] = ACTIONS(5059), + [aux_sym_data_statement_token1] = ACTIONS(5059), + [aux_sym__inline_if_statement_token1] = ACTIONS(5059), + [aux_sym_end_if_statement_token1] = ACTIONS(5059), + [aux_sym_elseif_clause_token2] = ACTIONS(5059), + [aux_sym_select_case_statement_token1] = ACTIONS(5059), + [aux_sym_block_construct_token1] = ACTIONS(5059), + [aux_sym_format_statement_token1] = ACTIONS(5059), + [aux_sym_inquire_statement_token1] = ACTIONS(5059), + [aux_sym_enum_statement_token1] = ACTIONS(5059), + [aux_sym_entry_statement_token1] = ACTIONS(5059), + [aux_sym_null_literal_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_statement_token2] = ACTIONS(5059), + [aux_sym_coarray_statement_token6] = ACTIONS(5059), + [aux_sym_coarray_statement_token8] = ACTIONS(5059), + [aux_sym_coarray_statement_token11] = ACTIONS(5059), + [aux_sym_coarray_statement_token12] = ACTIONS(5059), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5059), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5059), + [aux_sym_identifier_token1] = ACTIONS(5059), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5061), + }, + [3090] = { + [aux_sym_preproc_include_token1] = ACTIONS(4403), + [aux_sym_preproc_def_token1] = ACTIONS(4403), + [aux_sym_preproc_if_token2] = ACTIONS(4403), + [sym_preproc_directive] = ACTIONS(4403), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7354), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7354), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7354), - [aux_sym_procedure_attributes_token3] = ACTIONS(7354), - [aux_sym_use_statement_token2] = ACTIONS(7354), - [aux_sym_implicit_statement_token4] = ACTIONS(7354), - [aux_sym_save_statement_token1] = ACTIONS(7354), - [aux_sym_private_statement_token1] = ACTIONS(7354), - [aux_sym_public_statement_token1] = ACTIONS(7354), - [aux_sym_derived_type_definition_token1] = ACTIONS(7354), - [aux_sym_procedure_attribute_token6] = ACTIONS(7354), - [aux_sym_variable_attributes_token2] = ACTIONS(7354), - [aux_sym_variable_attributes_token3] = ACTIONS(7354), - [aux_sym_variable_attributes_token5] = ACTIONS(7354), - [aux_sym__intrinsic_type_token1] = ACTIONS(7354), - [aux_sym__intrinsic_type_token3] = ACTIONS(7354), - [aux_sym__intrinsic_type_token4] = ACTIONS(7354), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7354), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7354), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7354), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7354), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7354), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7354), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7354), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7354), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7354), - [aux_sym_type_qualifier_token1] = ACTIONS(7354), - [aux_sym_type_qualifier_token2] = ACTIONS(7354), - [anon_sym_SEMI] = ACTIONS(7352), - [aux_sym_stop_statement_token1] = ACTIONS(7354), - [aux_sym_stop_statement_token2] = ACTIONS(7354), - [aux_sym_keyword_statement_token2] = ACTIONS(7354), - [aux_sym_keyword_statement_token3] = ACTIONS(7354), - [aux_sym_data_statement_token1] = ACTIONS(7354), - [aux_sym__inline_if_statement_token1] = ACTIONS(7354), - [aux_sym_end_if_statement_token1] = ACTIONS(7354), - [aux_sym_elseif_clause_token2] = ACTIONS(7354), - [aux_sym_select_case_statement_token1] = ACTIONS(7354), - [aux_sym_block_construct_token1] = ACTIONS(7354), - [aux_sym_format_statement_token1] = ACTIONS(7354), - [aux_sym_inquire_statement_token1] = ACTIONS(7354), - [aux_sym_entry_statement_token1] = ACTIONS(7354), - [aux_sym_logical_expression_token5] = ACTIONS(7352), - [anon_sym_DOT] = ACTIONS(7354), - [anon_sym_LPAREN_SLASH] = ACTIONS(7352), - [anon_sym_LBRACK] = ACTIONS(7352), - [aux_sym_boolean_literal_token1] = ACTIONS(7352), - [aux_sym_boolean_literal_token2] = ACTIONS(7352), - [aux_sym_null_literal_token1] = ACTIONS(7354), - [aux_sym_coarray_statement_token1] = ACTIONS(7354), - [aux_sym_coarray_statement_token2] = ACTIONS(7354), - [aux_sym_coarray_statement_token6] = ACTIONS(7354), - [aux_sym_coarray_statement_token8] = ACTIONS(7354), - [aux_sym_coarray_statement_token11] = ACTIONS(7354), - [aux_sym_coarray_statement_token12] = ACTIONS(7354), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7354), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7354), - [aux_sym_identifier_token1] = ACTIONS(7354), + [aux_sym_end_program_statement_token1] = ACTIONS(4403), + [aux_sym_interface_statement_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4403), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4403), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4403), + [aux_sym_language_binding_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token1] = ACTIONS(4403), + [aux_sym_procedure_attributes_token3] = ACTIONS(4403), + [aux_sym_contains_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token1] = ACTIONS(4403), + [aux_sym_use_statement_token2] = ACTIONS(4403), + [aux_sym_implicit_statement_token1] = ACTIONS(4403), + [aux_sym_implicit_statement_token3] = ACTIONS(4403), + [aux_sym_implicit_statement_token4] = ACTIONS(4403), + [aux_sym_save_statement_token1] = ACTIONS(4403), + [aux_sym_private_statement_token1] = ACTIONS(4403), + [aux_sym_public_statement_token1] = ACTIONS(4403), + [aux_sym_namelist_statement_token1] = ACTIONS(4403), + [aux_sym_common_statement_token1] = ACTIONS(4403), + [aux_sym_import_statement_token1] = ACTIONS(4403), + [aux_sym_derived_type_definition_token1] = ACTIONS(4403), + [aux_sym_abstract_specifier_token1] = ACTIONS(4403), + [aux_sym_procedure_attribute_token6] = ACTIONS(4403), + [aux_sym_variable_attributes_token1] = ACTIONS(4403), + [aux_sym_variable_attributes_token2] = ACTIONS(4403), + [aux_sym_variable_attributes_token3] = ACTIONS(4403), + [aux_sym_variable_attributes_token4] = ACTIONS(4403), + [aux_sym_variable_attributes_token5] = ACTIONS(4403), + [aux_sym__intrinsic_type_token1] = ACTIONS(4403), + [aux_sym__intrinsic_type_token2] = ACTIONS(4403), + [aux_sym__intrinsic_type_token3] = ACTIONS(4403), + [aux_sym__intrinsic_type_token4] = ACTIONS(4403), + [aux_sym__intrinsic_type_token6] = ACTIONS(4403), + [aux_sym__intrinsic_type_token7] = ACTIONS(4403), + [aux_sym__intrinsic_type_token8] = ACTIONS(4403), + [aux_sym__intrinsic_type_token9] = ACTIONS(4403), + [aux_sym__intrinsic_type_token10] = ACTIONS(4403), + [aux_sym_derived_type_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4403), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4403), + [aux_sym_type_qualifier_token1] = ACTIONS(4403), + [aux_sym_type_qualifier_token2] = ACTIONS(4403), + [aux_sym_equivalence_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token1] = ACTIONS(4403), + [aux_sym_stop_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token2] = ACTIONS(4403), + [aux_sym_keyword_statement_token3] = ACTIONS(4403), + [aux_sym_include_statement_token1] = ACTIONS(4403), + [aux_sym_data_statement_token1] = ACTIONS(4403), + [aux_sym__inline_if_statement_token1] = ACTIONS(4403), + [aux_sym_end_if_statement_token1] = ACTIONS(4403), + [aux_sym_elseif_clause_token2] = ACTIONS(4403), + [aux_sym_select_case_statement_token1] = ACTIONS(4403), + [aux_sym_block_construct_token1] = ACTIONS(4403), + [aux_sym_format_statement_token1] = ACTIONS(4403), + [aux_sym_inquire_statement_token1] = ACTIONS(4403), + [aux_sym_enum_statement_token1] = ACTIONS(4403), + [aux_sym_entry_statement_token1] = ACTIONS(4403), + [aux_sym_null_literal_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_statement_token2] = ACTIONS(4403), + [aux_sym_coarray_statement_token6] = ACTIONS(4403), + [aux_sym_coarray_statement_token8] = ACTIONS(4403), + [aux_sym_coarray_statement_token11] = ACTIONS(4403), + [aux_sym_coarray_statement_token12] = ACTIONS(4403), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4403), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4403), + [aux_sym_identifier_token1] = ACTIONS(4403), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7352), - [sym__float_literal] = ACTIONS(7352), - [sym__boz_literal] = ACTIONS(7352), - [sym__string_literal] = ACTIONS(7352), - [sym__string_literal_kind] = ACTIONS(7352), - [sym__external_end_of_statement] = ACTIONS(7352), + [sym__integer_literal] = ACTIONS(4405), }, - [3205] = { - [anon_sym_COMMA] = ACTIONS(7356), - [anon_sym_LPAREN2] = ACTIONS(7358), - [anon_sym_PLUS] = ACTIONS(7356), - [anon_sym_DASH] = ACTIONS(7356), + [3091] = { + [aux_sym_preproc_include_token1] = ACTIONS(4407), + [aux_sym_preproc_def_token1] = ACTIONS(4407), + [aux_sym_preproc_if_token2] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4407), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7358), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7358), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7358), - [aux_sym_procedure_attributes_token3] = ACTIONS(7358), - [aux_sym_use_statement_token2] = ACTIONS(7358), - [aux_sym_implicit_statement_token4] = ACTIONS(7358), - [aux_sym_save_statement_token1] = ACTIONS(7358), - [aux_sym_private_statement_token1] = ACTIONS(7358), - [aux_sym_public_statement_token1] = ACTIONS(7358), - [aux_sym_derived_type_definition_token1] = ACTIONS(7358), - [aux_sym_procedure_attribute_token6] = ACTIONS(7358), - [aux_sym_variable_attributes_token2] = ACTIONS(7358), - [aux_sym_variable_attributes_token3] = ACTIONS(7358), - [aux_sym_variable_attributes_token5] = ACTIONS(7358), - [aux_sym__intrinsic_type_token1] = ACTIONS(7358), - [aux_sym__intrinsic_type_token3] = ACTIONS(7358), - [aux_sym__intrinsic_type_token4] = ACTIONS(7358), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7358), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7358), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7358), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7358), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7358), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7358), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7358), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7358), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7358), - [aux_sym_type_qualifier_token1] = ACTIONS(7358), - [aux_sym_type_qualifier_token2] = ACTIONS(7358), - [anon_sym_SEMI] = ACTIONS(7356), - [aux_sym_stop_statement_token1] = ACTIONS(7358), - [aux_sym_stop_statement_token2] = ACTIONS(7358), - [aux_sym_keyword_statement_token2] = ACTIONS(7358), - [aux_sym_keyword_statement_token3] = ACTIONS(7358), - [aux_sym_data_statement_token1] = ACTIONS(7358), - [aux_sym__inline_if_statement_token1] = ACTIONS(7358), - [aux_sym_end_if_statement_token1] = ACTIONS(7358), - [aux_sym_elseif_clause_token2] = ACTIONS(7358), - [aux_sym_select_case_statement_token1] = ACTIONS(7358), - [aux_sym_block_construct_token1] = ACTIONS(7358), - [aux_sym_format_statement_token1] = ACTIONS(7358), - [aux_sym_inquire_statement_token1] = ACTIONS(7358), - [aux_sym_entry_statement_token1] = ACTIONS(7358), - [aux_sym_logical_expression_token5] = ACTIONS(7356), - [anon_sym_DOT] = ACTIONS(7358), - [anon_sym_LPAREN_SLASH] = ACTIONS(7356), - [anon_sym_LBRACK] = ACTIONS(7356), - [aux_sym_boolean_literal_token1] = ACTIONS(7356), - [aux_sym_boolean_literal_token2] = ACTIONS(7356), - [aux_sym_null_literal_token1] = ACTIONS(7358), - [aux_sym_coarray_statement_token1] = ACTIONS(7358), - [aux_sym_coarray_statement_token2] = ACTIONS(7358), - [aux_sym_coarray_statement_token6] = ACTIONS(7358), - [aux_sym_coarray_statement_token8] = ACTIONS(7358), - [aux_sym_coarray_statement_token11] = ACTIONS(7358), - [aux_sym_coarray_statement_token12] = ACTIONS(7358), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7358), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7358), - [aux_sym_identifier_token1] = ACTIONS(7358), + [aux_sym_end_program_statement_token1] = ACTIONS(4407), + [aux_sym_interface_statement_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4407), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4407), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4407), + [aux_sym_language_binding_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token1] = ACTIONS(4407), + [aux_sym_procedure_attributes_token3] = ACTIONS(4407), + [aux_sym_contains_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token1] = ACTIONS(4407), + [aux_sym_use_statement_token2] = ACTIONS(4407), + [aux_sym_implicit_statement_token1] = ACTIONS(4407), + [aux_sym_implicit_statement_token3] = ACTIONS(4407), + [aux_sym_implicit_statement_token4] = ACTIONS(4407), + [aux_sym_save_statement_token1] = ACTIONS(4407), + [aux_sym_private_statement_token1] = ACTIONS(4407), + [aux_sym_public_statement_token1] = ACTIONS(4407), + [aux_sym_namelist_statement_token1] = ACTIONS(4407), + [aux_sym_common_statement_token1] = ACTIONS(4407), + [aux_sym_import_statement_token1] = ACTIONS(4407), + [aux_sym_derived_type_definition_token1] = ACTIONS(4407), + [aux_sym_abstract_specifier_token1] = ACTIONS(4407), + [aux_sym_procedure_attribute_token6] = ACTIONS(4407), + [aux_sym_variable_attributes_token1] = ACTIONS(4407), + [aux_sym_variable_attributes_token2] = ACTIONS(4407), + [aux_sym_variable_attributes_token3] = ACTIONS(4407), + [aux_sym_variable_attributes_token4] = ACTIONS(4407), + [aux_sym_variable_attributes_token5] = ACTIONS(4407), + [aux_sym__intrinsic_type_token1] = ACTIONS(4407), + [aux_sym__intrinsic_type_token2] = ACTIONS(4407), + [aux_sym__intrinsic_type_token3] = ACTIONS(4407), + [aux_sym__intrinsic_type_token4] = ACTIONS(4407), + [aux_sym__intrinsic_type_token6] = ACTIONS(4407), + [aux_sym__intrinsic_type_token7] = ACTIONS(4407), + [aux_sym__intrinsic_type_token8] = ACTIONS(4407), + [aux_sym__intrinsic_type_token9] = ACTIONS(4407), + [aux_sym__intrinsic_type_token10] = ACTIONS(4407), + [aux_sym_derived_type_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4407), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4407), + [aux_sym_type_qualifier_token1] = ACTIONS(4407), + [aux_sym_type_qualifier_token2] = ACTIONS(4407), + [aux_sym_equivalence_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token1] = ACTIONS(4407), + [aux_sym_stop_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token2] = ACTIONS(4407), + [aux_sym_keyword_statement_token3] = ACTIONS(4407), + [aux_sym_include_statement_token1] = ACTIONS(4407), + [aux_sym_data_statement_token1] = ACTIONS(4407), + [aux_sym__inline_if_statement_token1] = ACTIONS(4407), + [aux_sym_end_if_statement_token1] = ACTIONS(4407), + [aux_sym_elseif_clause_token2] = ACTIONS(4407), + [aux_sym_select_case_statement_token1] = ACTIONS(4407), + [aux_sym_block_construct_token1] = ACTIONS(4407), + [aux_sym_format_statement_token1] = ACTIONS(4407), + [aux_sym_inquire_statement_token1] = ACTIONS(4407), + [aux_sym_enum_statement_token1] = ACTIONS(4407), + [aux_sym_entry_statement_token1] = ACTIONS(4407), + [aux_sym_null_literal_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_statement_token2] = ACTIONS(4407), + [aux_sym_coarray_statement_token6] = ACTIONS(4407), + [aux_sym_coarray_statement_token8] = ACTIONS(4407), + [aux_sym_coarray_statement_token11] = ACTIONS(4407), + [aux_sym_coarray_statement_token12] = ACTIONS(4407), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4407), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4407), + [aux_sym_identifier_token1] = ACTIONS(4407), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7356), - [sym__float_literal] = ACTIONS(7356), - [sym__boz_literal] = ACTIONS(7356), - [sym__string_literal] = ACTIONS(7356), - [sym__string_literal_kind] = ACTIONS(7356), - [sym__external_end_of_statement] = ACTIONS(7356), + [sym__integer_literal] = ACTIONS(4409), }, - [3206] = { - [sym__preproc_expression] = STATE(5236), - [sym_preproc_parenthesized_expression] = STATE(5236), - [sym_preproc_defined] = STATE(5236), - [sym_preproc_unary_expression] = STATE(5236), - [sym_preproc_call_expression] = STATE(5236), - [sym_preproc_binary_expression] = STATE(5236), - [sym_number_literal] = STATE(5236), - [sym_string_literal] = STATE(5236), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3092] = { + [aux_sym_preproc_include_token1] = ACTIONS(4411), + [aux_sym_preproc_def_token1] = ACTIONS(4411), + [aux_sym_preproc_if_token2] = ACTIONS(4411), + [sym_preproc_directive] = ACTIONS(4411), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4411), + [aux_sym_interface_statement_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4411), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4411), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4411), + [aux_sym_language_binding_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token1] = ACTIONS(4411), + [aux_sym_procedure_attributes_token3] = ACTIONS(4411), + [aux_sym_contains_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token1] = ACTIONS(4411), + [aux_sym_use_statement_token2] = ACTIONS(4411), + [aux_sym_implicit_statement_token1] = ACTIONS(4411), + [aux_sym_implicit_statement_token3] = ACTIONS(4411), + [aux_sym_implicit_statement_token4] = ACTIONS(4411), + [aux_sym_save_statement_token1] = ACTIONS(4411), + [aux_sym_private_statement_token1] = ACTIONS(4411), + [aux_sym_public_statement_token1] = ACTIONS(4411), + [aux_sym_namelist_statement_token1] = ACTIONS(4411), + [aux_sym_common_statement_token1] = ACTIONS(4411), + [aux_sym_import_statement_token1] = ACTIONS(4411), + [aux_sym_derived_type_definition_token1] = ACTIONS(4411), + [aux_sym_abstract_specifier_token1] = ACTIONS(4411), + [aux_sym_procedure_attribute_token6] = ACTIONS(4411), + [aux_sym_variable_attributes_token1] = ACTIONS(4411), + [aux_sym_variable_attributes_token2] = ACTIONS(4411), + [aux_sym_variable_attributes_token3] = ACTIONS(4411), + [aux_sym_variable_attributes_token4] = ACTIONS(4411), + [aux_sym_variable_attributes_token5] = ACTIONS(4411), + [aux_sym__intrinsic_type_token1] = ACTIONS(4411), + [aux_sym__intrinsic_type_token2] = ACTIONS(4411), + [aux_sym__intrinsic_type_token3] = ACTIONS(4411), + [aux_sym__intrinsic_type_token4] = ACTIONS(4411), + [aux_sym__intrinsic_type_token6] = ACTIONS(4411), + [aux_sym__intrinsic_type_token7] = ACTIONS(4411), + [aux_sym__intrinsic_type_token8] = ACTIONS(4411), + [aux_sym__intrinsic_type_token9] = ACTIONS(4411), + [aux_sym__intrinsic_type_token10] = ACTIONS(4411), + [aux_sym_derived_type_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4411), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4411), + [aux_sym_type_qualifier_token1] = ACTIONS(4411), + [aux_sym_type_qualifier_token2] = ACTIONS(4411), + [aux_sym_equivalence_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token1] = ACTIONS(4411), + [aux_sym_stop_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token2] = ACTIONS(4411), + [aux_sym_keyword_statement_token3] = ACTIONS(4411), + [aux_sym_include_statement_token1] = ACTIONS(4411), + [aux_sym_data_statement_token1] = ACTIONS(4411), + [aux_sym__inline_if_statement_token1] = ACTIONS(4411), + [aux_sym_end_if_statement_token1] = ACTIONS(4411), + [aux_sym_elseif_clause_token2] = ACTIONS(4411), + [aux_sym_select_case_statement_token1] = ACTIONS(4411), + [aux_sym_block_construct_token1] = ACTIONS(4411), + [aux_sym_format_statement_token1] = ACTIONS(4411), + [aux_sym_inquire_statement_token1] = ACTIONS(4411), + [aux_sym_enum_statement_token1] = ACTIONS(4411), + [aux_sym_entry_statement_token1] = ACTIONS(4411), + [aux_sym_null_literal_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_statement_token2] = ACTIONS(4411), + [aux_sym_coarray_statement_token6] = ACTIONS(4411), + [aux_sym_coarray_statement_token8] = ACTIONS(4411), + [aux_sym_coarray_statement_token11] = ACTIONS(4411), + [aux_sym_coarray_statement_token12] = ACTIONS(4411), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4411), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4411), + [aux_sym_identifier_token1] = ACTIONS(4411), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4413), }, - [3207] = { - [sym__preproc_expression] = STATE(5358), - [sym_preproc_parenthesized_expression] = STATE(5358), - [sym_preproc_defined] = STATE(5358), - [sym_preproc_unary_expression] = STATE(5358), - [sym_preproc_call_expression] = STATE(5358), - [sym_preproc_binary_expression] = STATE(5358), - [sym_number_literal] = STATE(5358), - [sym_string_literal] = STATE(5358), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3093] = { + [aux_sym_preproc_include_token1] = ACTIONS(5018), + [aux_sym_preproc_def_token1] = ACTIONS(5018), + [aux_sym_preproc_if_token2] = ACTIONS(5018), + [sym_preproc_directive] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5018), + [aux_sym_interface_statement_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5018), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5018), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5018), + [aux_sym_language_binding_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token1] = ACTIONS(5018), + [aux_sym_procedure_attributes_token3] = ACTIONS(5018), + [aux_sym_contains_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token1] = ACTIONS(5018), + [aux_sym_use_statement_token2] = ACTIONS(5018), + [aux_sym_implicit_statement_token1] = ACTIONS(5018), + [aux_sym_implicit_statement_token3] = ACTIONS(5018), + [aux_sym_implicit_statement_token4] = ACTIONS(5018), + [aux_sym_save_statement_token1] = ACTIONS(5018), + [aux_sym_private_statement_token1] = ACTIONS(5018), + [aux_sym_public_statement_token1] = ACTIONS(5018), + [aux_sym_namelist_statement_token1] = ACTIONS(5018), + [aux_sym_common_statement_token1] = ACTIONS(5018), + [aux_sym_import_statement_token1] = ACTIONS(5018), + [aux_sym_derived_type_definition_token1] = ACTIONS(5018), + [aux_sym_abstract_specifier_token1] = ACTIONS(5018), + [aux_sym_procedure_attribute_token6] = ACTIONS(5018), + [aux_sym_variable_attributes_token1] = ACTIONS(5018), + [aux_sym_variable_attributes_token2] = ACTIONS(5018), + [aux_sym_variable_attributes_token3] = ACTIONS(5018), + [aux_sym_variable_attributes_token4] = ACTIONS(5018), + [aux_sym_variable_attributes_token5] = ACTIONS(5018), + [aux_sym__intrinsic_type_token1] = ACTIONS(5018), + [aux_sym__intrinsic_type_token2] = ACTIONS(5018), + [aux_sym__intrinsic_type_token3] = ACTIONS(5018), + [aux_sym__intrinsic_type_token4] = ACTIONS(5018), + [aux_sym__intrinsic_type_token6] = ACTIONS(5018), + [aux_sym__intrinsic_type_token7] = ACTIONS(5018), + [aux_sym__intrinsic_type_token8] = ACTIONS(5018), + [aux_sym__intrinsic_type_token9] = ACTIONS(5018), + [aux_sym__intrinsic_type_token10] = ACTIONS(5018), + [aux_sym_derived_type_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5018), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5018), + [aux_sym_type_qualifier_token1] = ACTIONS(5018), + [aux_sym_type_qualifier_token2] = ACTIONS(5018), + [aux_sym_equivalence_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token1] = ACTIONS(5018), + [aux_sym_stop_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token2] = ACTIONS(5018), + [aux_sym_keyword_statement_token3] = ACTIONS(5018), + [aux_sym_include_statement_token1] = ACTIONS(5018), + [aux_sym_data_statement_token1] = ACTIONS(5018), + [aux_sym__inline_if_statement_token1] = ACTIONS(5018), + [aux_sym_end_if_statement_token1] = ACTIONS(5018), + [aux_sym_elseif_clause_token2] = ACTIONS(5018), + [aux_sym_select_case_statement_token1] = ACTIONS(5018), + [aux_sym_block_construct_token1] = ACTIONS(5018), + [aux_sym_format_statement_token1] = ACTIONS(5018), + [aux_sym_inquire_statement_token1] = ACTIONS(5018), + [aux_sym_enum_statement_token1] = ACTIONS(5018), + [aux_sym_entry_statement_token1] = ACTIONS(5018), + [aux_sym_null_literal_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_statement_token2] = ACTIONS(5018), + [aux_sym_coarray_statement_token6] = ACTIONS(5018), + [aux_sym_coarray_statement_token8] = ACTIONS(5018), + [aux_sym_coarray_statement_token11] = ACTIONS(5018), + [aux_sym_coarray_statement_token12] = ACTIONS(5018), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5018), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5018), + [aux_sym_identifier_token1] = ACTIONS(5018), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5020), + }, + [3094] = { + [aux_sym_preproc_include_token1] = ACTIONS(4415), + [aux_sym_preproc_def_token1] = ACTIONS(4415), + [aux_sym_preproc_if_token2] = ACTIONS(4415), + [sym_preproc_directive] = ACTIONS(4415), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4415), + [aux_sym_interface_statement_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4415), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4415), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4415), + [aux_sym_language_binding_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token1] = ACTIONS(4415), + [aux_sym_procedure_attributes_token3] = ACTIONS(4415), + [aux_sym_contains_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token1] = ACTIONS(4415), + [aux_sym_use_statement_token2] = ACTIONS(4415), + [aux_sym_implicit_statement_token1] = ACTIONS(4415), + [aux_sym_implicit_statement_token3] = ACTIONS(4415), + [aux_sym_implicit_statement_token4] = ACTIONS(4415), + [aux_sym_save_statement_token1] = ACTIONS(4415), + [aux_sym_private_statement_token1] = ACTIONS(4415), + [aux_sym_public_statement_token1] = ACTIONS(4415), + [aux_sym_namelist_statement_token1] = ACTIONS(4415), + [aux_sym_common_statement_token1] = ACTIONS(4415), + [aux_sym_import_statement_token1] = ACTIONS(4415), + [aux_sym_derived_type_definition_token1] = ACTIONS(4415), + [aux_sym_abstract_specifier_token1] = ACTIONS(4415), + [aux_sym_procedure_attribute_token6] = ACTIONS(4415), + [aux_sym_variable_attributes_token1] = ACTIONS(4415), + [aux_sym_variable_attributes_token2] = ACTIONS(4415), + [aux_sym_variable_attributes_token3] = ACTIONS(4415), + [aux_sym_variable_attributes_token4] = ACTIONS(4415), + [aux_sym_variable_attributes_token5] = ACTIONS(4415), + [aux_sym__intrinsic_type_token1] = ACTIONS(4415), + [aux_sym__intrinsic_type_token2] = ACTIONS(4415), + [aux_sym__intrinsic_type_token3] = ACTIONS(4415), + [aux_sym__intrinsic_type_token4] = ACTIONS(4415), + [aux_sym__intrinsic_type_token6] = ACTIONS(4415), + [aux_sym__intrinsic_type_token7] = ACTIONS(4415), + [aux_sym__intrinsic_type_token8] = ACTIONS(4415), + [aux_sym__intrinsic_type_token9] = ACTIONS(4415), + [aux_sym__intrinsic_type_token10] = ACTIONS(4415), + [aux_sym_derived_type_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4415), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4415), + [aux_sym_type_qualifier_token1] = ACTIONS(4415), + [aux_sym_type_qualifier_token2] = ACTIONS(4415), + [aux_sym_equivalence_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token1] = ACTIONS(4415), + [aux_sym_stop_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token2] = ACTIONS(4415), + [aux_sym_keyword_statement_token3] = ACTIONS(4415), + [aux_sym_include_statement_token1] = ACTIONS(4415), + [aux_sym_data_statement_token1] = ACTIONS(4415), + [aux_sym__inline_if_statement_token1] = ACTIONS(4415), + [aux_sym_end_if_statement_token1] = ACTIONS(4415), + [aux_sym_elseif_clause_token2] = ACTIONS(4415), + [aux_sym_select_case_statement_token1] = ACTIONS(4415), + [aux_sym_block_construct_token1] = ACTIONS(4415), + [aux_sym_format_statement_token1] = ACTIONS(4415), + [aux_sym_inquire_statement_token1] = ACTIONS(4415), + [aux_sym_enum_statement_token1] = ACTIONS(4415), + [aux_sym_entry_statement_token1] = ACTIONS(4415), + [aux_sym_null_literal_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_statement_token2] = ACTIONS(4415), + [aux_sym_coarray_statement_token6] = ACTIONS(4415), + [aux_sym_coarray_statement_token8] = ACTIONS(4415), + [aux_sym_coarray_statement_token11] = ACTIONS(4415), + [aux_sym_coarray_statement_token12] = ACTIONS(4415), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4415), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4415), + [aux_sym_identifier_token1] = ACTIONS(4415), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4417), }, - [3208] = { - [sym__preproc_expression] = STATE(5247), - [sym_preproc_parenthesized_expression] = STATE(5247), - [sym_preproc_defined] = STATE(5247), - [sym_preproc_unary_expression] = STATE(5247), - [sym_preproc_call_expression] = STATE(5247), - [sym_preproc_binary_expression] = STATE(5247), - [sym_number_literal] = STATE(5247), - [sym_string_literal] = STATE(5247), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3095] = { + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4387), + [aux_sym_interface_statement_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4387), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4387), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4387), + [aux_sym_language_binding_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token1] = ACTIONS(4387), + [aux_sym_procedure_attributes_token3] = ACTIONS(4387), + [aux_sym_contains_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token1] = ACTIONS(4387), + [aux_sym_use_statement_token2] = ACTIONS(4387), + [aux_sym_implicit_statement_token1] = ACTIONS(4387), + [aux_sym_implicit_statement_token3] = ACTIONS(4387), + [aux_sym_implicit_statement_token4] = ACTIONS(4387), + [aux_sym_save_statement_token1] = ACTIONS(4387), + [aux_sym_private_statement_token1] = ACTIONS(4387), + [aux_sym_public_statement_token1] = ACTIONS(4387), + [aux_sym_namelist_statement_token1] = ACTIONS(4387), + [aux_sym_common_statement_token1] = ACTIONS(4387), + [aux_sym_import_statement_token1] = ACTIONS(4387), + [aux_sym_derived_type_definition_token1] = ACTIONS(4387), + [aux_sym_abstract_specifier_token1] = ACTIONS(4387), + [aux_sym_procedure_attribute_token6] = ACTIONS(4387), + [aux_sym_variable_attributes_token1] = ACTIONS(4387), + [aux_sym_variable_attributes_token2] = ACTIONS(4387), + [aux_sym_variable_attributes_token3] = ACTIONS(4387), + [aux_sym_variable_attributes_token4] = ACTIONS(4387), + [aux_sym_variable_attributes_token5] = ACTIONS(4387), + [aux_sym__intrinsic_type_token1] = ACTIONS(4387), + [aux_sym__intrinsic_type_token2] = ACTIONS(4387), + [aux_sym__intrinsic_type_token3] = ACTIONS(4387), + [aux_sym__intrinsic_type_token4] = ACTIONS(4387), + [aux_sym__intrinsic_type_token6] = ACTIONS(4387), + [aux_sym__intrinsic_type_token7] = ACTIONS(4387), + [aux_sym__intrinsic_type_token8] = ACTIONS(4387), + [aux_sym__intrinsic_type_token9] = ACTIONS(4387), + [aux_sym__intrinsic_type_token10] = ACTIONS(4387), + [aux_sym_derived_type_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4387), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4387), + [aux_sym_type_qualifier_token1] = ACTIONS(4387), + [aux_sym_type_qualifier_token2] = ACTIONS(4387), + [aux_sym_equivalence_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token1] = ACTIONS(4387), + [aux_sym_stop_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token2] = ACTIONS(4387), + [aux_sym_keyword_statement_token3] = ACTIONS(4387), + [aux_sym_include_statement_token1] = ACTIONS(4387), + [aux_sym_data_statement_token1] = ACTIONS(4387), + [aux_sym__inline_if_statement_token1] = ACTIONS(4387), + [aux_sym_end_if_statement_token1] = ACTIONS(4387), + [aux_sym_elseif_clause_token2] = ACTIONS(4387), + [aux_sym_select_case_statement_token1] = ACTIONS(4387), + [aux_sym_block_construct_token1] = ACTIONS(4387), + [aux_sym_format_statement_token1] = ACTIONS(4387), + [aux_sym_inquire_statement_token1] = ACTIONS(4387), + [aux_sym_enum_statement_token1] = ACTIONS(4387), + [aux_sym_entry_statement_token1] = ACTIONS(4387), + [aux_sym_null_literal_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_statement_token2] = ACTIONS(4387), + [aux_sym_coarray_statement_token6] = ACTIONS(4387), + [aux_sym_coarray_statement_token8] = ACTIONS(4387), + [aux_sym_coarray_statement_token11] = ACTIONS(4387), + [aux_sym_coarray_statement_token12] = ACTIONS(4387), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4387), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4387), + [aux_sym_identifier_token1] = ACTIONS(4387), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4389), }, - [3209] = { - [sym__preproc_expression] = STATE(5327), - [sym_preproc_parenthesized_expression] = STATE(5327), - [sym_preproc_defined] = STATE(5327), - [sym_preproc_unary_expression] = STATE(5327), - [sym_preproc_call_expression] = STATE(5327), - [sym_preproc_binary_expression] = STATE(5327), - [sym_number_literal] = STATE(5327), - [sym_string_literal] = STATE(5327), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [3096] = { + [aux_sym_preproc_include_token1] = ACTIONS(5022), + [aux_sym_preproc_def_token1] = ACTIONS(5022), + [aux_sym_preproc_if_token2] = ACTIONS(5022), + [sym_preproc_directive] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5022), + [aux_sym_interface_statement_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5022), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5022), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5022), + [aux_sym_language_binding_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token1] = ACTIONS(5022), + [aux_sym_procedure_attributes_token3] = ACTIONS(5022), + [aux_sym_contains_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token1] = ACTIONS(5022), + [aux_sym_use_statement_token2] = ACTIONS(5022), + [aux_sym_implicit_statement_token1] = ACTIONS(5022), + [aux_sym_implicit_statement_token3] = ACTIONS(5022), + [aux_sym_implicit_statement_token4] = ACTIONS(5022), + [aux_sym_save_statement_token1] = ACTIONS(5022), + [aux_sym_private_statement_token1] = ACTIONS(5022), + [aux_sym_public_statement_token1] = ACTIONS(5022), + [aux_sym_namelist_statement_token1] = ACTIONS(5022), + [aux_sym_common_statement_token1] = ACTIONS(5022), + [aux_sym_import_statement_token1] = ACTIONS(5022), + [aux_sym_derived_type_definition_token1] = ACTIONS(5022), + [aux_sym_abstract_specifier_token1] = ACTIONS(5022), + [aux_sym_procedure_attribute_token6] = ACTIONS(5022), + [aux_sym_variable_attributes_token1] = ACTIONS(5022), + [aux_sym_variable_attributes_token2] = ACTIONS(5022), + [aux_sym_variable_attributes_token3] = ACTIONS(5022), + [aux_sym_variable_attributes_token4] = ACTIONS(5022), + [aux_sym_variable_attributes_token5] = ACTIONS(5022), + [aux_sym__intrinsic_type_token1] = ACTIONS(5022), + [aux_sym__intrinsic_type_token2] = ACTIONS(5022), + [aux_sym__intrinsic_type_token3] = ACTIONS(5022), + [aux_sym__intrinsic_type_token4] = ACTIONS(5022), + [aux_sym__intrinsic_type_token6] = ACTIONS(5022), + [aux_sym__intrinsic_type_token7] = ACTIONS(5022), + [aux_sym__intrinsic_type_token8] = ACTIONS(5022), + [aux_sym__intrinsic_type_token9] = ACTIONS(5022), + [aux_sym__intrinsic_type_token10] = ACTIONS(5022), + [aux_sym_derived_type_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5022), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5022), + [aux_sym_type_qualifier_token1] = ACTIONS(5022), + [aux_sym_type_qualifier_token2] = ACTIONS(5022), + [aux_sym_equivalence_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token1] = ACTIONS(5022), + [aux_sym_stop_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token2] = ACTIONS(5022), + [aux_sym_keyword_statement_token3] = ACTIONS(5022), + [aux_sym_include_statement_token1] = ACTIONS(5022), + [aux_sym_data_statement_token1] = ACTIONS(5022), + [aux_sym__inline_if_statement_token1] = ACTIONS(5022), + [aux_sym_end_if_statement_token1] = ACTIONS(5022), + [aux_sym_elseif_clause_token2] = ACTIONS(5022), + [aux_sym_select_case_statement_token1] = ACTIONS(5022), + [aux_sym_block_construct_token1] = ACTIONS(5022), + [aux_sym_format_statement_token1] = ACTIONS(5022), + [aux_sym_inquire_statement_token1] = ACTIONS(5022), + [aux_sym_enum_statement_token1] = ACTIONS(5022), + [aux_sym_entry_statement_token1] = ACTIONS(5022), + [aux_sym_null_literal_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_statement_token2] = ACTIONS(5022), + [aux_sym_coarray_statement_token6] = ACTIONS(5022), + [aux_sym_coarray_statement_token8] = ACTIONS(5022), + [aux_sym_coarray_statement_token11] = ACTIONS(5022), + [aux_sym_coarray_statement_token12] = ACTIONS(5022), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5022), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5022), + [aux_sym_identifier_token1] = ACTIONS(5022), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5024), }, - [3210] = { - [sym__preproc_expression] = STATE(5290), - [sym_preproc_parenthesized_expression] = STATE(5290), - [sym_preproc_defined] = STATE(5290), - [sym_preproc_unary_expression] = STATE(5290), - [sym_preproc_call_expression] = STATE(5290), - [sym_preproc_binary_expression] = STATE(5290), - [sym_number_literal] = STATE(5290), - [sym_string_literal] = STATE(5290), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3097] = { + [aux_sym_preproc_include_token1] = ACTIONS(5026), + [aux_sym_preproc_def_token1] = ACTIONS(5026), + [aux_sym_preproc_if_token2] = ACTIONS(5026), + [sym_preproc_directive] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5026), + [aux_sym_interface_statement_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5026), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5026), + [aux_sym_module_procedure_statement_token1] = ACTIONS(5026), + [aux_sym_language_binding_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token1] = ACTIONS(5026), + [aux_sym_procedure_attributes_token3] = ACTIONS(5026), + [aux_sym_contains_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token1] = ACTIONS(5026), + [aux_sym_use_statement_token2] = ACTIONS(5026), + [aux_sym_implicit_statement_token1] = ACTIONS(5026), + [aux_sym_implicit_statement_token3] = ACTIONS(5026), + [aux_sym_implicit_statement_token4] = ACTIONS(5026), + [aux_sym_save_statement_token1] = ACTIONS(5026), + [aux_sym_private_statement_token1] = ACTIONS(5026), + [aux_sym_public_statement_token1] = ACTIONS(5026), + [aux_sym_namelist_statement_token1] = ACTIONS(5026), + [aux_sym_common_statement_token1] = ACTIONS(5026), + [aux_sym_import_statement_token1] = ACTIONS(5026), + [aux_sym_derived_type_definition_token1] = ACTIONS(5026), + [aux_sym_abstract_specifier_token1] = ACTIONS(5026), + [aux_sym_procedure_attribute_token6] = ACTIONS(5026), + [aux_sym_variable_attributes_token1] = ACTIONS(5026), + [aux_sym_variable_attributes_token2] = ACTIONS(5026), + [aux_sym_variable_attributes_token3] = ACTIONS(5026), + [aux_sym_variable_attributes_token4] = ACTIONS(5026), + [aux_sym_variable_attributes_token5] = ACTIONS(5026), + [aux_sym__intrinsic_type_token1] = ACTIONS(5026), + [aux_sym__intrinsic_type_token2] = ACTIONS(5026), + [aux_sym__intrinsic_type_token3] = ACTIONS(5026), + [aux_sym__intrinsic_type_token4] = ACTIONS(5026), + [aux_sym__intrinsic_type_token6] = ACTIONS(5026), + [aux_sym__intrinsic_type_token7] = ACTIONS(5026), + [aux_sym__intrinsic_type_token8] = ACTIONS(5026), + [aux_sym__intrinsic_type_token9] = ACTIONS(5026), + [aux_sym__intrinsic_type_token10] = ACTIONS(5026), + [aux_sym_derived_type_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5026), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5026), + [aux_sym_type_qualifier_token1] = ACTIONS(5026), + [aux_sym_type_qualifier_token2] = ACTIONS(5026), + [aux_sym_equivalence_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token1] = ACTIONS(5026), + [aux_sym_stop_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token2] = ACTIONS(5026), + [aux_sym_keyword_statement_token3] = ACTIONS(5026), + [aux_sym_include_statement_token1] = ACTIONS(5026), + [aux_sym_data_statement_token1] = ACTIONS(5026), + [aux_sym__inline_if_statement_token1] = ACTIONS(5026), + [aux_sym_end_if_statement_token1] = ACTIONS(5026), + [aux_sym_elseif_clause_token2] = ACTIONS(5026), + [aux_sym_select_case_statement_token1] = ACTIONS(5026), + [aux_sym_block_construct_token1] = ACTIONS(5026), + [aux_sym_format_statement_token1] = ACTIONS(5026), + [aux_sym_inquire_statement_token1] = ACTIONS(5026), + [aux_sym_enum_statement_token1] = ACTIONS(5026), + [aux_sym_entry_statement_token1] = ACTIONS(5026), + [aux_sym_null_literal_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_statement_token2] = ACTIONS(5026), + [aux_sym_coarray_statement_token6] = ACTIONS(5026), + [aux_sym_coarray_statement_token8] = ACTIONS(5026), + [aux_sym_coarray_statement_token11] = ACTIONS(5026), + [aux_sym_coarray_statement_token12] = ACTIONS(5026), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5026), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5026), + [aux_sym_identifier_token1] = ACTIONS(5026), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(5028), + }, + [3098] = { + [aux_sym_preproc_include_token1] = ACTIONS(4972), + [aux_sym_preproc_def_token1] = ACTIONS(4972), + [aux_sym_preproc_if_token2] = ACTIONS(4972), + [sym_preproc_directive] = ACTIONS(4972), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(4972), + [aux_sym_interface_statement_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token1] = ACTIONS(4972), + [aux_sym_defined_io_procedure_token2] = ACTIONS(4972), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4972), + [aux_sym_language_binding_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token1] = ACTIONS(4972), + [aux_sym_procedure_attributes_token3] = ACTIONS(4972), + [aux_sym_contains_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token1] = ACTIONS(4972), + [aux_sym_use_statement_token2] = ACTIONS(4972), + [aux_sym_implicit_statement_token1] = ACTIONS(4972), + [aux_sym_implicit_statement_token3] = ACTIONS(4972), + [aux_sym_implicit_statement_token4] = ACTIONS(4972), + [aux_sym_save_statement_token1] = ACTIONS(4972), + [aux_sym_private_statement_token1] = ACTIONS(4972), + [aux_sym_public_statement_token1] = ACTIONS(4972), + [aux_sym_namelist_statement_token1] = ACTIONS(4972), + [aux_sym_common_statement_token1] = ACTIONS(4972), + [aux_sym_import_statement_token1] = ACTIONS(4972), + [aux_sym_derived_type_definition_token1] = ACTIONS(4972), + [aux_sym_abstract_specifier_token1] = ACTIONS(4972), + [aux_sym_procedure_attribute_token6] = ACTIONS(4972), + [aux_sym_variable_attributes_token1] = ACTIONS(4972), + [aux_sym_variable_attributes_token2] = ACTIONS(4972), + [aux_sym_variable_attributes_token3] = ACTIONS(4972), + [aux_sym_variable_attributes_token4] = ACTIONS(4972), + [aux_sym_variable_attributes_token5] = ACTIONS(4972), + [aux_sym__intrinsic_type_token1] = ACTIONS(4972), + [aux_sym__intrinsic_type_token2] = ACTIONS(4972), + [aux_sym__intrinsic_type_token3] = ACTIONS(4972), + [aux_sym__intrinsic_type_token4] = ACTIONS(4972), + [aux_sym__intrinsic_type_token6] = ACTIONS(4972), + [aux_sym__intrinsic_type_token7] = ACTIONS(4972), + [aux_sym__intrinsic_type_token8] = ACTIONS(4972), + [aux_sym__intrinsic_type_token9] = ACTIONS(4972), + [aux_sym__intrinsic_type_token10] = ACTIONS(4972), + [aux_sym_derived_type_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(4972), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(4972), + [aux_sym_type_qualifier_token1] = ACTIONS(4972), + [aux_sym_type_qualifier_token2] = ACTIONS(4972), + [aux_sym_equivalence_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token1] = ACTIONS(4972), + [aux_sym_stop_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token2] = ACTIONS(4972), + [aux_sym_keyword_statement_token3] = ACTIONS(4972), + [aux_sym_include_statement_token1] = ACTIONS(4972), + [aux_sym_data_statement_token1] = ACTIONS(4972), + [aux_sym__inline_if_statement_token1] = ACTIONS(4972), + [aux_sym_end_if_statement_token1] = ACTIONS(4972), + [aux_sym_elseif_clause_token2] = ACTIONS(4972), + [aux_sym_select_case_statement_token1] = ACTIONS(4972), + [aux_sym_block_construct_token1] = ACTIONS(4972), + [aux_sym_format_statement_token1] = ACTIONS(4972), + [aux_sym_inquire_statement_token1] = ACTIONS(4972), + [aux_sym_enum_statement_token1] = ACTIONS(4972), + [aux_sym_entry_statement_token1] = ACTIONS(4972), + [aux_sym_null_literal_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_statement_token2] = ACTIONS(4972), + [aux_sym_coarray_statement_token6] = ACTIONS(4972), + [aux_sym_coarray_statement_token8] = ACTIONS(4972), + [aux_sym_coarray_statement_token11] = ACTIONS(4972), + [aux_sym_coarray_statement_token12] = ACTIONS(4972), + [aux_sym_coarray_team_statement_token1] = ACTIONS(4972), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(4972), + [aux_sym_identifier_token1] = ACTIONS(4972), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__integer_literal] = ACTIONS(4974), }, - [3211] = { - [sym__preproc_expression] = STATE(5234), - [sym_preproc_parenthesized_expression] = STATE(5234), - [sym_preproc_defined] = STATE(5234), - [sym_preproc_unary_expression] = STATE(5234), - [sym_preproc_call_expression] = STATE(5234), - [sym_preproc_binary_expression] = STATE(5234), - [sym_number_literal] = STATE(5234), - [sym_string_literal] = STATE(5234), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3099] = { + [sym_identifier] = STATE(7417), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7100), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__external_end_of_statement] = ACTIONS(7100), }, - [3212] = { - [sym__preproc_expression] = STATE(5351), - [sym_preproc_parenthesized_expression] = STATE(5351), - [sym_preproc_defined] = STATE(5351), - [sym_preproc_unary_expression] = STATE(5351), - [sym_preproc_call_expression] = STATE(5351), - [sym_preproc_binary_expression] = STATE(5351), - [sym_number_literal] = STATE(5351), - [sym_string_literal] = STATE(5351), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [3100] = { + [anon_sym_COMMA] = ACTIONS(6564), + [anon_sym_LPAREN2] = ACTIONS(6564), + [anon_sym_PLUS] = ACTIONS(6564), + [anon_sym_DASH] = ACTIONS(6564), + [anon_sym_STAR] = ACTIONS(6566), + [anon_sym_SLASH] = ACTIONS(6566), + [anon_sym_PERCENT] = ACTIONS(6564), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6564), + [anon_sym_GT] = ACTIONS(6566), + [anon_sym_GT_EQ] = ACTIONS(6564), + [anon_sym_LT_EQ] = ACTIONS(6564), + [anon_sym_LT] = ACTIONS(6566), + [aux_sym_end_program_statement_token1] = ACTIONS(6566), + [anon_sym_EQ] = ACTIONS(6566), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6566), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6566), + [aux_sym_procedure_attributes_token3] = ACTIONS(6566), + [aux_sym_use_statement_token2] = ACTIONS(6566), + [anon_sym_EQ_GT] = ACTIONS(6564), + [aux_sym_implicit_statement_token4] = ACTIONS(6566), + [aux_sym_save_statement_token1] = ACTIONS(6566), + [aux_sym_private_statement_token1] = ACTIONS(6566), + [aux_sym_public_statement_token1] = ACTIONS(6566), + [aux_sym_derived_type_definition_token1] = ACTIONS(6566), + [aux_sym_procedure_attribute_token6] = ACTIONS(6566), + [aux_sym_variable_attributes_token2] = ACTIONS(6566), + [aux_sym_variable_attributes_token3] = ACTIONS(6566), + [aux_sym_variable_attributes_token5] = ACTIONS(6566), + [aux_sym__intrinsic_type_token1] = ACTIONS(6566), + [aux_sym__intrinsic_type_token3] = ACTIONS(6566), + [aux_sym__intrinsic_type_token4] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6566), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6566), + [aux_sym_type_qualifier_token1] = ACTIONS(6566), + [aux_sym_type_qualifier_token2] = ACTIONS(6566), + [anon_sym_SEMI] = ACTIONS(6564), + [aux_sym_stop_statement_token1] = ACTIONS(6566), + [aux_sym_stop_statement_token2] = ACTIONS(6566), + [anon_sym_LT_LT_LT] = ACTIONS(6564), + [aux_sym_keyword_statement_token2] = ACTIONS(6566), + [aux_sym_keyword_statement_token3] = ACTIONS(6566), + [aux_sym_data_statement_token1] = ACTIONS(6566), + [aux_sym__inline_if_statement_token1] = ACTIONS(6566), + [aux_sym_end_if_statement_token1] = ACTIONS(6566), + [aux_sym_elseif_clause_token2] = ACTIONS(6566), + [aux_sym_select_case_statement_token1] = ACTIONS(6566), + [aux_sym_block_construct_token1] = ACTIONS(6566), + [aux_sym_format_statement_token1] = ACTIONS(6566), + [aux_sym_inquire_statement_token1] = ACTIONS(6566), + [aux_sym_entry_statement_token1] = ACTIONS(6566), + [aux_sym_logical_expression_token1] = ACTIONS(6564), + [aux_sym_logical_expression_token2] = ACTIONS(6564), + [aux_sym_logical_expression_token3] = ACTIONS(6564), + [aux_sym_logical_expression_token4] = ACTIONS(6564), + [aux_sym_relational_expression_token1] = ACTIONS(6564), + [aux_sym_relational_expression_token2] = ACTIONS(6564), + [aux_sym_relational_expression_token3] = ACTIONS(6564), + [aux_sym_relational_expression_token4] = ACTIONS(6564), + [aux_sym_relational_expression_token5] = ACTIONS(6564), + [anon_sym_SLASH_EQ] = ACTIONS(6564), + [aux_sym_relational_expression_token6] = ACTIONS(6564), + [anon_sym_SLASH_SLASH] = ACTIONS(6564), + [anon_sym_STAR_STAR] = ACTIONS(6564), + [anon_sym_DOT] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6564), + [aux_sym_null_literal_token1] = ACTIONS(6566), + [aux_sym_coarray_statement_token1] = ACTIONS(6566), + [aux_sym_coarray_statement_token2] = ACTIONS(6566), + [aux_sym_coarray_statement_token6] = ACTIONS(6566), + [aux_sym_coarray_statement_token8] = ACTIONS(6566), + [aux_sym_coarray_statement_token11] = ACTIONS(6566), + [aux_sym_coarray_statement_token12] = ACTIONS(6566), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6566), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6566), + [aux_sym_identifier_token1] = ACTIONS(6566), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6564), }, - [3213] = { - [sym__preproc_expression] = STATE(5211), - [sym_preproc_parenthesized_expression] = STATE(5211), - [sym_preproc_defined] = STATE(5211), - [sym_preproc_unary_expression] = STATE(5211), - [sym_preproc_call_expression] = STATE(5211), - [sym_preproc_binary_expression] = STATE(5211), - [sym_number_literal] = STATE(5211), - [sym_string_literal] = STATE(5211), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [3101] = { + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_PLUS] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6604), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6604), + [anon_sym_LT] = ACTIONS(6606), + [aux_sym_end_program_statement_token1] = ACTIONS(6606), + [anon_sym_EQ] = ACTIONS(6606), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6606), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6606), + [aux_sym_procedure_attributes_token3] = ACTIONS(6606), + [aux_sym_use_statement_token2] = ACTIONS(6606), + [anon_sym_EQ_GT] = ACTIONS(6604), + [aux_sym_implicit_statement_token4] = ACTIONS(6606), + [aux_sym_save_statement_token1] = ACTIONS(6606), + [aux_sym_private_statement_token1] = ACTIONS(6606), + [aux_sym_public_statement_token1] = ACTIONS(6606), + [aux_sym_derived_type_definition_token1] = ACTIONS(6606), + [aux_sym_procedure_attribute_token6] = ACTIONS(6606), + [aux_sym_variable_attributes_token2] = ACTIONS(6606), + [aux_sym_variable_attributes_token3] = ACTIONS(6606), + [aux_sym_variable_attributes_token5] = ACTIONS(6606), + [aux_sym__intrinsic_type_token1] = ACTIONS(6606), + [aux_sym__intrinsic_type_token3] = ACTIONS(6606), + [aux_sym__intrinsic_type_token4] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6606), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6606), + [aux_sym_type_qualifier_token1] = ACTIONS(6606), + [aux_sym_type_qualifier_token2] = ACTIONS(6606), + [anon_sym_SEMI] = ACTIONS(6604), + [aux_sym_stop_statement_token1] = ACTIONS(6606), + [aux_sym_stop_statement_token2] = ACTIONS(6606), + [anon_sym_LT_LT_LT] = ACTIONS(6604), + [aux_sym_keyword_statement_token2] = ACTIONS(6606), + [aux_sym_keyword_statement_token3] = ACTIONS(6606), + [aux_sym_data_statement_token1] = ACTIONS(6606), + [aux_sym__inline_if_statement_token1] = ACTIONS(6606), + [aux_sym_end_if_statement_token1] = ACTIONS(6606), + [aux_sym_elseif_clause_token2] = ACTIONS(6606), + [aux_sym_select_case_statement_token1] = ACTIONS(6606), + [aux_sym_block_construct_token1] = ACTIONS(6606), + [aux_sym_format_statement_token1] = ACTIONS(6606), + [aux_sym_inquire_statement_token1] = ACTIONS(6606), + [aux_sym_entry_statement_token1] = ACTIONS(6606), + [aux_sym_logical_expression_token1] = ACTIONS(6604), + [aux_sym_logical_expression_token2] = ACTIONS(6604), + [aux_sym_logical_expression_token3] = ACTIONS(6604), + [aux_sym_logical_expression_token4] = ACTIONS(6604), + [aux_sym_relational_expression_token1] = ACTIONS(6604), + [aux_sym_relational_expression_token2] = ACTIONS(6604), + [aux_sym_relational_expression_token3] = ACTIONS(6604), + [aux_sym_relational_expression_token4] = ACTIONS(6604), + [aux_sym_relational_expression_token5] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [aux_sym_relational_expression_token6] = ACTIONS(6604), + [anon_sym_SLASH_SLASH] = ACTIONS(6604), + [anon_sym_STAR_STAR] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_LBRACK] = ACTIONS(6604), + [aux_sym_null_literal_token1] = ACTIONS(6606), + [aux_sym_coarray_statement_token1] = ACTIONS(6606), + [aux_sym_coarray_statement_token2] = ACTIONS(6606), + [aux_sym_coarray_statement_token6] = ACTIONS(6606), + [aux_sym_coarray_statement_token8] = ACTIONS(6606), + [aux_sym_coarray_statement_token11] = ACTIONS(6606), + [aux_sym_coarray_statement_token12] = ACTIONS(6606), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6606), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6606), + [aux_sym_identifier_token1] = ACTIONS(6606), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6604), }, - [3214] = { - [sym__preproc_expression] = STATE(5329), - [sym_preproc_parenthesized_expression] = STATE(5329), - [sym_preproc_defined] = STATE(5329), - [sym_preproc_unary_expression] = STATE(5329), - [sym_preproc_call_expression] = STATE(5329), - [sym_preproc_binary_expression] = STATE(5329), - [sym_number_literal] = STATE(5329), - [sym_string_literal] = STATE(5329), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [3102] = { + [anon_sym_COMMA] = ACTIONS(6574), + [anon_sym_LPAREN2] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6574), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6574), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(6576), + [aux_sym_end_program_statement_token1] = ACTIONS(6576), + [anon_sym_EQ] = ACTIONS(6576), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6576), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6576), + [aux_sym_procedure_attributes_token3] = ACTIONS(6576), + [aux_sym_use_statement_token2] = ACTIONS(6576), + [anon_sym_EQ_GT] = ACTIONS(6574), + [aux_sym_implicit_statement_token4] = ACTIONS(6576), + [aux_sym_save_statement_token1] = ACTIONS(6576), + [aux_sym_private_statement_token1] = ACTIONS(6576), + [aux_sym_public_statement_token1] = ACTIONS(6576), + [aux_sym_derived_type_definition_token1] = ACTIONS(6576), + [aux_sym_procedure_attribute_token6] = ACTIONS(6576), + [aux_sym_variable_attributes_token2] = ACTIONS(6576), + [aux_sym_variable_attributes_token3] = ACTIONS(6576), + [aux_sym_variable_attributes_token5] = ACTIONS(6576), + [aux_sym__intrinsic_type_token1] = ACTIONS(6576), + [aux_sym__intrinsic_type_token3] = ACTIONS(6576), + [aux_sym__intrinsic_type_token4] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6576), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6576), + [aux_sym_type_qualifier_token1] = ACTIONS(6576), + [aux_sym_type_qualifier_token2] = ACTIONS(6576), + [anon_sym_SEMI] = ACTIONS(6574), + [aux_sym_stop_statement_token1] = ACTIONS(6576), + [aux_sym_stop_statement_token2] = ACTIONS(6576), + [anon_sym_LT_LT_LT] = ACTIONS(6574), + [aux_sym_keyword_statement_token2] = ACTIONS(6576), + [aux_sym_keyword_statement_token3] = ACTIONS(6576), + [aux_sym_data_statement_token1] = ACTIONS(6576), + [aux_sym__inline_if_statement_token1] = ACTIONS(6576), + [aux_sym_end_if_statement_token1] = ACTIONS(6576), + [aux_sym_elseif_clause_token2] = ACTIONS(6576), + [aux_sym_select_case_statement_token1] = ACTIONS(6576), + [aux_sym_block_construct_token1] = ACTIONS(6576), + [aux_sym_format_statement_token1] = ACTIONS(6576), + [aux_sym_inquire_statement_token1] = ACTIONS(6576), + [aux_sym_entry_statement_token1] = ACTIONS(6576), + [aux_sym_logical_expression_token1] = ACTIONS(6574), + [aux_sym_logical_expression_token2] = ACTIONS(6574), + [aux_sym_logical_expression_token3] = ACTIONS(6574), + [aux_sym_logical_expression_token4] = ACTIONS(6574), + [aux_sym_relational_expression_token1] = ACTIONS(6574), + [aux_sym_relational_expression_token2] = ACTIONS(6574), + [aux_sym_relational_expression_token3] = ACTIONS(6574), + [aux_sym_relational_expression_token4] = ACTIONS(6574), + [aux_sym_relational_expression_token5] = ACTIONS(6574), + [anon_sym_SLASH_EQ] = ACTIONS(6574), + [aux_sym_relational_expression_token6] = ACTIONS(6574), + [anon_sym_SLASH_SLASH] = ACTIONS(6574), + [anon_sym_STAR_STAR] = ACTIONS(6574), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_LBRACK] = ACTIONS(6574), + [aux_sym_null_literal_token1] = ACTIONS(6576), + [aux_sym_coarray_statement_token1] = ACTIONS(6576), + [aux_sym_coarray_statement_token2] = ACTIONS(6576), + [aux_sym_coarray_statement_token6] = ACTIONS(6576), + [aux_sym_coarray_statement_token8] = ACTIONS(6576), + [aux_sym_coarray_statement_token11] = ACTIONS(6576), + [aux_sym_coarray_statement_token12] = ACTIONS(6576), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6576), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6576), + [aux_sym_identifier_token1] = ACTIONS(6576), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6574), }, - [3215] = { - [sym__preproc_expression] = STATE(5330), - [sym_preproc_parenthesized_expression] = STATE(5330), - [sym_preproc_defined] = STATE(5330), - [sym_preproc_unary_expression] = STATE(5330), - [sym_preproc_call_expression] = STATE(5330), - [sym_preproc_binary_expression] = STATE(5330), - [sym_number_literal] = STATE(5330), - [sym_string_literal] = STATE(5330), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [3103] = { + [anon_sym_COMMA] = ACTIONS(6578), + [anon_sym_LPAREN2] = ACTIONS(6578), + [anon_sym_PLUS] = ACTIONS(6578), + [anon_sym_DASH] = ACTIONS(6578), + [anon_sym_STAR] = ACTIONS(6580), + [anon_sym_SLASH] = ACTIONS(6580), + [anon_sym_PERCENT] = ACTIONS(6578), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6578), + [anon_sym_GT] = ACTIONS(6580), + [anon_sym_GT_EQ] = ACTIONS(6578), + [anon_sym_LT_EQ] = ACTIONS(6578), + [anon_sym_LT] = ACTIONS(6580), + [aux_sym_end_program_statement_token1] = ACTIONS(6580), + [anon_sym_EQ] = ACTIONS(6580), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6580), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6580), + [aux_sym_procedure_attributes_token3] = ACTIONS(6580), + [aux_sym_use_statement_token2] = ACTIONS(6580), + [anon_sym_EQ_GT] = ACTIONS(6578), + [aux_sym_implicit_statement_token4] = ACTIONS(6580), + [aux_sym_save_statement_token1] = ACTIONS(6580), + [aux_sym_private_statement_token1] = ACTIONS(6580), + [aux_sym_public_statement_token1] = ACTIONS(6580), + [aux_sym_derived_type_definition_token1] = ACTIONS(6580), + [aux_sym_procedure_attribute_token6] = ACTIONS(6580), + [aux_sym_variable_attributes_token2] = ACTIONS(6580), + [aux_sym_variable_attributes_token3] = ACTIONS(6580), + [aux_sym_variable_attributes_token5] = ACTIONS(6580), + [aux_sym__intrinsic_type_token1] = ACTIONS(6580), + [aux_sym__intrinsic_type_token3] = ACTIONS(6580), + [aux_sym__intrinsic_type_token4] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6580), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6580), + [aux_sym_type_qualifier_token1] = ACTIONS(6580), + [aux_sym_type_qualifier_token2] = ACTIONS(6580), + [anon_sym_SEMI] = ACTIONS(6578), + [aux_sym_stop_statement_token1] = ACTIONS(6580), + [aux_sym_stop_statement_token2] = ACTIONS(6580), + [anon_sym_LT_LT_LT] = ACTIONS(6578), + [aux_sym_keyword_statement_token2] = ACTIONS(6580), + [aux_sym_keyword_statement_token3] = ACTIONS(6580), + [aux_sym_data_statement_token1] = ACTIONS(6580), + [aux_sym__inline_if_statement_token1] = ACTIONS(6580), + [aux_sym_end_if_statement_token1] = ACTIONS(6580), + [aux_sym_elseif_clause_token2] = ACTIONS(6580), + [aux_sym_select_case_statement_token1] = ACTIONS(6580), + [aux_sym_block_construct_token1] = ACTIONS(6580), + [aux_sym_format_statement_token1] = ACTIONS(6580), + [aux_sym_inquire_statement_token1] = ACTIONS(6580), + [aux_sym_entry_statement_token1] = ACTIONS(6580), + [aux_sym_logical_expression_token1] = ACTIONS(6578), + [aux_sym_logical_expression_token2] = ACTIONS(6578), + [aux_sym_logical_expression_token3] = ACTIONS(6578), + [aux_sym_logical_expression_token4] = ACTIONS(6578), + [aux_sym_relational_expression_token1] = ACTIONS(6578), + [aux_sym_relational_expression_token2] = ACTIONS(6578), + [aux_sym_relational_expression_token3] = ACTIONS(6578), + [aux_sym_relational_expression_token4] = ACTIONS(6578), + [aux_sym_relational_expression_token5] = ACTIONS(6578), + [anon_sym_SLASH_EQ] = ACTIONS(6578), + [aux_sym_relational_expression_token6] = ACTIONS(6578), + [anon_sym_SLASH_SLASH] = ACTIONS(6578), + [anon_sym_STAR_STAR] = ACTIONS(6578), + [anon_sym_DOT] = ACTIONS(6580), + [anon_sym_LBRACK] = ACTIONS(6578), + [aux_sym_null_literal_token1] = ACTIONS(6580), + [aux_sym_coarray_statement_token1] = ACTIONS(6580), + [aux_sym_coarray_statement_token2] = ACTIONS(6580), + [aux_sym_coarray_statement_token6] = ACTIONS(6580), + [aux_sym_coarray_statement_token8] = ACTIONS(6580), + [aux_sym_coarray_statement_token11] = ACTIONS(6580), + [aux_sym_coarray_statement_token12] = ACTIONS(6580), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6580), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6580), + [aux_sym_identifier_token1] = ACTIONS(6580), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6578), }, - [3216] = { - [sym__preproc_expression] = STATE(5331), - [sym_preproc_parenthesized_expression] = STATE(5331), - [sym_preproc_defined] = STATE(5331), - [sym_preproc_unary_expression] = STATE(5331), - [sym_preproc_call_expression] = STATE(5331), - [sym_preproc_binary_expression] = STATE(5331), - [sym_number_literal] = STATE(5331), - [sym_string_literal] = STATE(5331), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [3104] = { + [anon_sym_COMMA] = ACTIONS(6568), + [anon_sym_LPAREN2] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6568), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6568), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(6570), + [aux_sym_end_program_statement_token1] = ACTIONS(6570), + [anon_sym_EQ] = ACTIONS(6570), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6570), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6570), + [aux_sym_procedure_attributes_token3] = ACTIONS(6570), + [aux_sym_use_statement_token2] = ACTIONS(6570), + [anon_sym_EQ_GT] = ACTIONS(6568), + [aux_sym_implicit_statement_token4] = ACTIONS(6570), + [aux_sym_save_statement_token1] = ACTIONS(6570), + [aux_sym_private_statement_token1] = ACTIONS(6570), + [aux_sym_public_statement_token1] = ACTIONS(6570), + [aux_sym_derived_type_definition_token1] = ACTIONS(6570), + [aux_sym_procedure_attribute_token6] = ACTIONS(6570), + [aux_sym_variable_attributes_token2] = ACTIONS(6570), + [aux_sym_variable_attributes_token3] = ACTIONS(6570), + [aux_sym_variable_attributes_token5] = ACTIONS(6570), + [aux_sym__intrinsic_type_token1] = ACTIONS(6570), + [aux_sym__intrinsic_type_token3] = ACTIONS(6570), + [aux_sym__intrinsic_type_token4] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6570), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6570), + [aux_sym_type_qualifier_token1] = ACTIONS(6570), + [aux_sym_type_qualifier_token2] = ACTIONS(6570), + [anon_sym_SEMI] = ACTIONS(6568), + [aux_sym_stop_statement_token1] = ACTIONS(6570), + [aux_sym_stop_statement_token2] = ACTIONS(6570), + [anon_sym_LT_LT_LT] = ACTIONS(6568), + [aux_sym_keyword_statement_token2] = ACTIONS(6570), + [aux_sym_keyword_statement_token3] = ACTIONS(6570), + [aux_sym_data_statement_token1] = ACTIONS(6570), + [aux_sym__inline_if_statement_token1] = ACTIONS(6570), + [aux_sym_end_if_statement_token1] = ACTIONS(6570), + [aux_sym_elseif_clause_token2] = ACTIONS(6570), + [aux_sym_select_case_statement_token1] = ACTIONS(6570), + [aux_sym_block_construct_token1] = ACTIONS(6570), + [aux_sym_format_statement_token1] = ACTIONS(6570), + [aux_sym_inquire_statement_token1] = ACTIONS(6570), + [aux_sym_entry_statement_token1] = ACTIONS(6570), + [aux_sym_logical_expression_token1] = ACTIONS(6568), + [aux_sym_logical_expression_token2] = ACTIONS(6568), + [aux_sym_logical_expression_token3] = ACTIONS(6568), + [aux_sym_logical_expression_token4] = ACTIONS(6568), + [aux_sym_relational_expression_token1] = ACTIONS(6568), + [aux_sym_relational_expression_token2] = ACTIONS(6568), + [aux_sym_relational_expression_token3] = ACTIONS(6568), + [aux_sym_relational_expression_token4] = ACTIONS(6568), + [aux_sym_relational_expression_token5] = ACTIONS(6568), + [anon_sym_SLASH_EQ] = ACTIONS(6568), + [aux_sym_relational_expression_token6] = ACTIONS(6568), + [anon_sym_SLASH_SLASH] = ACTIONS(6568), + [anon_sym_STAR_STAR] = ACTIONS(6568), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_LBRACK] = ACTIONS(6568), + [aux_sym_null_literal_token1] = ACTIONS(6570), + [aux_sym_coarray_statement_token1] = ACTIONS(6570), + [aux_sym_coarray_statement_token2] = ACTIONS(6570), + [aux_sym_coarray_statement_token6] = ACTIONS(6570), + [aux_sym_coarray_statement_token8] = ACTIONS(6570), + [aux_sym_coarray_statement_token11] = ACTIONS(6570), + [aux_sym_coarray_statement_token12] = ACTIONS(6570), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6570), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6570), + [aux_sym_identifier_token1] = ACTIONS(6570), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6568), }, - [3217] = { - [sym__preproc_expression] = STATE(5363), - [sym_preproc_parenthesized_expression] = STATE(5363), - [sym_preproc_defined] = STATE(5363), - [sym_preproc_unary_expression] = STATE(5363), - [sym_preproc_call_expression] = STATE(5363), - [sym_preproc_binary_expression] = STATE(5363), - [sym_number_literal] = STATE(5363), - [sym_string_literal] = STATE(5363), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3105] = { + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6600), + [anon_sym_PLUS] = ACTIONS(6600), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6600), + [anon_sym_LT] = ACTIONS(6602), + [aux_sym_end_program_statement_token1] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6602), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6602), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6602), + [aux_sym_procedure_attributes_token3] = ACTIONS(6602), + [aux_sym_use_statement_token2] = ACTIONS(6602), + [anon_sym_EQ_GT] = ACTIONS(6600), + [aux_sym_implicit_statement_token4] = ACTIONS(6602), + [aux_sym_save_statement_token1] = ACTIONS(6602), + [aux_sym_private_statement_token1] = ACTIONS(6602), + [aux_sym_public_statement_token1] = ACTIONS(6602), + [aux_sym_derived_type_definition_token1] = ACTIONS(6602), + [aux_sym_procedure_attribute_token6] = ACTIONS(6602), + [aux_sym_variable_attributes_token2] = ACTIONS(6602), + [aux_sym_variable_attributes_token3] = ACTIONS(6602), + [aux_sym_variable_attributes_token5] = ACTIONS(6602), + [aux_sym__intrinsic_type_token1] = ACTIONS(6602), + [aux_sym__intrinsic_type_token3] = ACTIONS(6602), + [aux_sym__intrinsic_type_token4] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6602), + [aux_sym_type_qualifier_token1] = ACTIONS(6602), + [aux_sym_type_qualifier_token2] = ACTIONS(6602), + [anon_sym_SEMI] = ACTIONS(6600), + [aux_sym_stop_statement_token1] = ACTIONS(6602), + [aux_sym_stop_statement_token2] = ACTIONS(6602), + [anon_sym_LT_LT_LT] = ACTIONS(6600), + [aux_sym_keyword_statement_token2] = ACTIONS(6602), + [aux_sym_keyword_statement_token3] = ACTIONS(6602), + [aux_sym_data_statement_token1] = ACTIONS(6602), + [aux_sym__inline_if_statement_token1] = ACTIONS(6602), + [aux_sym_end_if_statement_token1] = ACTIONS(6602), + [aux_sym_elseif_clause_token2] = ACTIONS(6602), + [aux_sym_select_case_statement_token1] = ACTIONS(6602), + [aux_sym_block_construct_token1] = ACTIONS(6602), + [aux_sym_format_statement_token1] = ACTIONS(6602), + [aux_sym_inquire_statement_token1] = ACTIONS(6602), + [aux_sym_entry_statement_token1] = ACTIONS(6602), + [aux_sym_logical_expression_token1] = ACTIONS(6600), + [aux_sym_logical_expression_token2] = ACTIONS(6600), + [aux_sym_logical_expression_token3] = ACTIONS(6600), + [aux_sym_logical_expression_token4] = ACTIONS(6600), + [aux_sym_relational_expression_token1] = ACTIONS(6600), + [aux_sym_relational_expression_token2] = ACTIONS(6600), + [aux_sym_relational_expression_token3] = ACTIONS(6600), + [aux_sym_relational_expression_token4] = ACTIONS(6600), + [aux_sym_relational_expression_token5] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [aux_sym_relational_expression_token6] = ACTIONS(6600), + [anon_sym_SLASH_SLASH] = ACTIONS(6600), + [anon_sym_STAR_STAR] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_LBRACK] = ACTIONS(6600), + [aux_sym_null_literal_token1] = ACTIONS(6602), + [aux_sym_coarray_statement_token1] = ACTIONS(6602), + [aux_sym_coarray_statement_token2] = ACTIONS(6602), + [aux_sym_coarray_statement_token6] = ACTIONS(6602), + [aux_sym_coarray_statement_token8] = ACTIONS(6602), + [aux_sym_coarray_statement_token11] = ACTIONS(6602), + [aux_sym_coarray_statement_token12] = ACTIONS(6602), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6602), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6602), + [aux_sym_identifier_token1] = ACTIONS(6602), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6600), + }, + [3106] = { + [anon_sym_COMMA] = ACTIONS(6560), + [anon_sym_LPAREN2] = ACTIONS(6560), + [anon_sym_PLUS] = ACTIONS(6560), + [anon_sym_DASH] = ACTIONS(6560), + [anon_sym_STAR] = ACTIONS(6562), + [anon_sym_SLASH] = ACTIONS(6562), + [anon_sym_PERCENT] = ACTIONS(6560), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6560), + [anon_sym_GT] = ACTIONS(6562), + [anon_sym_GT_EQ] = ACTIONS(6560), + [anon_sym_LT_EQ] = ACTIONS(6560), + [anon_sym_LT] = ACTIONS(6562), + [aux_sym_end_program_statement_token1] = ACTIONS(6562), + [anon_sym_EQ] = ACTIONS(6562), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6562), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6562), + [aux_sym_procedure_attributes_token3] = ACTIONS(6562), + [aux_sym_use_statement_token2] = ACTIONS(6562), + [anon_sym_EQ_GT] = ACTIONS(6560), + [aux_sym_implicit_statement_token4] = ACTIONS(6562), + [aux_sym_save_statement_token1] = ACTIONS(6562), + [aux_sym_private_statement_token1] = ACTIONS(6562), + [aux_sym_public_statement_token1] = ACTIONS(6562), + [aux_sym_derived_type_definition_token1] = ACTIONS(6562), + [aux_sym_procedure_attribute_token6] = ACTIONS(6562), + [aux_sym_variable_attributes_token2] = ACTIONS(6562), + [aux_sym_variable_attributes_token3] = ACTIONS(6562), + [aux_sym_variable_attributes_token5] = ACTIONS(6562), + [aux_sym__intrinsic_type_token1] = ACTIONS(6562), + [aux_sym__intrinsic_type_token3] = ACTIONS(6562), + [aux_sym__intrinsic_type_token4] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6562), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6562), + [aux_sym_type_qualifier_token1] = ACTIONS(6562), + [aux_sym_type_qualifier_token2] = ACTIONS(6562), + [anon_sym_SEMI] = ACTIONS(6560), + [aux_sym_stop_statement_token1] = ACTIONS(6562), + [aux_sym_stop_statement_token2] = ACTIONS(6562), + [anon_sym_LT_LT_LT] = ACTIONS(6560), + [aux_sym_keyword_statement_token2] = ACTIONS(6562), + [aux_sym_keyword_statement_token3] = ACTIONS(6562), + [aux_sym_data_statement_token1] = ACTIONS(6562), + [aux_sym__inline_if_statement_token1] = ACTIONS(6562), + [aux_sym_end_if_statement_token1] = ACTIONS(6562), + [aux_sym_elseif_clause_token2] = ACTIONS(6562), + [aux_sym_select_case_statement_token1] = ACTIONS(6562), + [aux_sym_block_construct_token1] = ACTIONS(6562), + [aux_sym_format_statement_token1] = ACTIONS(6562), + [aux_sym_inquire_statement_token1] = ACTIONS(6562), + [aux_sym_entry_statement_token1] = ACTIONS(6562), + [aux_sym_logical_expression_token1] = ACTIONS(6560), + [aux_sym_logical_expression_token2] = ACTIONS(6560), + [aux_sym_logical_expression_token3] = ACTIONS(6560), + [aux_sym_logical_expression_token4] = ACTIONS(6560), + [aux_sym_relational_expression_token1] = ACTIONS(6560), + [aux_sym_relational_expression_token2] = ACTIONS(6560), + [aux_sym_relational_expression_token3] = ACTIONS(6560), + [aux_sym_relational_expression_token4] = ACTIONS(6560), + [aux_sym_relational_expression_token5] = ACTIONS(6560), + [anon_sym_SLASH_EQ] = ACTIONS(6560), + [aux_sym_relational_expression_token6] = ACTIONS(6560), + [anon_sym_SLASH_SLASH] = ACTIONS(6560), + [anon_sym_STAR_STAR] = ACTIONS(6560), + [anon_sym_DOT] = ACTIONS(6562), + [anon_sym_LBRACK] = ACTIONS(6560), + [aux_sym_null_literal_token1] = ACTIONS(6562), + [aux_sym_coarray_statement_token1] = ACTIONS(6562), + [aux_sym_coarray_statement_token2] = ACTIONS(6562), + [aux_sym_coarray_statement_token6] = ACTIONS(6562), + [aux_sym_coarray_statement_token8] = ACTIONS(6562), + [aux_sym_coarray_statement_token11] = ACTIONS(6562), + [aux_sym_coarray_statement_token12] = ACTIONS(6562), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6562), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6562), + [aux_sym_identifier_token1] = ACTIONS(6562), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6560), + }, + [3107] = { + [anon_sym_COMMA] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(6582), + [anon_sym_PLUS] = ACTIONS(6582), + [anon_sym_DASH] = ACTIONS(6582), + [anon_sym_STAR] = ACTIONS(6584), + [anon_sym_SLASH] = ACTIONS(6584), + [anon_sym_PERCENT] = ACTIONS(6582), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6582), + [anon_sym_GT] = ACTIONS(6584), + [anon_sym_GT_EQ] = ACTIONS(6582), + [anon_sym_LT_EQ] = ACTIONS(6582), + [anon_sym_LT] = ACTIONS(6584), + [aux_sym_end_program_statement_token1] = ACTIONS(6584), + [anon_sym_EQ] = ACTIONS(6584), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6584), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6584), + [aux_sym_procedure_attributes_token3] = ACTIONS(6584), + [aux_sym_use_statement_token2] = ACTIONS(6584), + [anon_sym_EQ_GT] = ACTIONS(6582), + [aux_sym_implicit_statement_token4] = ACTIONS(6584), + [aux_sym_save_statement_token1] = ACTIONS(6584), + [aux_sym_private_statement_token1] = ACTIONS(6584), + [aux_sym_public_statement_token1] = ACTIONS(6584), + [aux_sym_derived_type_definition_token1] = ACTIONS(6584), + [aux_sym_procedure_attribute_token6] = ACTIONS(6584), + [aux_sym_variable_attributes_token2] = ACTIONS(6584), + [aux_sym_variable_attributes_token3] = ACTIONS(6584), + [aux_sym_variable_attributes_token5] = ACTIONS(6584), + [aux_sym__intrinsic_type_token1] = ACTIONS(6584), + [aux_sym__intrinsic_type_token3] = ACTIONS(6584), + [aux_sym__intrinsic_type_token4] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6584), + [aux_sym_type_qualifier_token1] = ACTIONS(6584), + [aux_sym_type_qualifier_token2] = ACTIONS(6584), + [anon_sym_SEMI] = ACTIONS(6582), + [aux_sym_stop_statement_token1] = ACTIONS(6584), + [aux_sym_stop_statement_token2] = ACTIONS(6584), + [anon_sym_LT_LT_LT] = ACTIONS(6582), + [aux_sym_keyword_statement_token2] = ACTIONS(6584), + [aux_sym_keyword_statement_token3] = ACTIONS(6584), + [aux_sym_data_statement_token1] = ACTIONS(6584), + [aux_sym__inline_if_statement_token1] = ACTIONS(6584), + [aux_sym_end_if_statement_token1] = ACTIONS(6584), + [aux_sym_elseif_clause_token2] = ACTIONS(6584), + [aux_sym_select_case_statement_token1] = ACTIONS(6584), + [aux_sym_block_construct_token1] = ACTIONS(6584), + [aux_sym_format_statement_token1] = ACTIONS(6584), + [aux_sym_inquire_statement_token1] = ACTIONS(6584), + [aux_sym_entry_statement_token1] = ACTIONS(6584), + [aux_sym_logical_expression_token1] = ACTIONS(6582), + [aux_sym_logical_expression_token2] = ACTIONS(6582), + [aux_sym_logical_expression_token3] = ACTIONS(6582), + [aux_sym_logical_expression_token4] = ACTIONS(6582), + [aux_sym_relational_expression_token1] = ACTIONS(6582), + [aux_sym_relational_expression_token2] = ACTIONS(6582), + [aux_sym_relational_expression_token3] = ACTIONS(6582), + [aux_sym_relational_expression_token4] = ACTIONS(6582), + [aux_sym_relational_expression_token5] = ACTIONS(6582), + [anon_sym_SLASH_EQ] = ACTIONS(6582), + [aux_sym_relational_expression_token6] = ACTIONS(6582), + [anon_sym_SLASH_SLASH] = ACTIONS(6582), + [anon_sym_STAR_STAR] = ACTIONS(6582), + [anon_sym_DOT] = ACTIONS(6584), + [anon_sym_LBRACK] = ACTIONS(6582), + [aux_sym_null_literal_token1] = ACTIONS(6584), + [aux_sym_coarray_statement_token1] = ACTIONS(6584), + [aux_sym_coarray_statement_token2] = ACTIONS(6584), + [aux_sym_coarray_statement_token6] = ACTIONS(6584), + [aux_sym_coarray_statement_token8] = ACTIONS(6584), + [aux_sym_coarray_statement_token11] = ACTIONS(6584), + [aux_sym_coarray_statement_token12] = ACTIONS(6584), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6584), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6584), + [aux_sym_identifier_token1] = ACTIONS(6584), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6582), + }, + [3108] = { + [anon_sym_COMMA] = ACTIONS(6550), + [anon_sym_LPAREN2] = ACTIONS(6550), + [anon_sym_PLUS] = ACTIONS(6550), + [anon_sym_DASH] = ACTIONS(6550), + [anon_sym_STAR] = ACTIONS(6552), + [anon_sym_SLASH] = ACTIONS(6552), + [anon_sym_PERCENT] = ACTIONS(6550), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6550), + [anon_sym_GT] = ACTIONS(6552), + [anon_sym_GT_EQ] = ACTIONS(6550), + [anon_sym_LT_EQ] = ACTIONS(6550), + [anon_sym_LT] = ACTIONS(6552), + [aux_sym_end_program_statement_token1] = ACTIONS(6552), + [anon_sym_EQ] = ACTIONS(6552), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6552), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6552), + [aux_sym_procedure_attributes_token3] = ACTIONS(6552), + [aux_sym_use_statement_token2] = ACTIONS(6552), + [anon_sym_EQ_GT] = ACTIONS(6550), + [aux_sym_implicit_statement_token4] = ACTIONS(6552), + [aux_sym_save_statement_token1] = ACTIONS(6552), + [aux_sym_private_statement_token1] = ACTIONS(6552), + [aux_sym_public_statement_token1] = ACTIONS(6552), + [aux_sym_derived_type_definition_token1] = ACTIONS(6552), + [aux_sym_procedure_attribute_token6] = ACTIONS(6552), + [aux_sym_variable_attributes_token2] = ACTIONS(6552), + [aux_sym_variable_attributes_token3] = ACTIONS(6552), + [aux_sym_variable_attributes_token5] = ACTIONS(6552), + [aux_sym__intrinsic_type_token1] = ACTIONS(6552), + [aux_sym__intrinsic_type_token3] = ACTIONS(6552), + [aux_sym__intrinsic_type_token4] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6552), + [aux_sym_type_qualifier_token1] = ACTIONS(6552), + [aux_sym_type_qualifier_token2] = ACTIONS(6552), + [anon_sym_SEMI] = ACTIONS(6550), + [aux_sym_stop_statement_token1] = ACTIONS(6552), + [aux_sym_stop_statement_token2] = ACTIONS(6552), + [anon_sym_LT_LT_LT] = ACTIONS(6550), + [aux_sym_keyword_statement_token2] = ACTIONS(6552), + [aux_sym_keyword_statement_token3] = ACTIONS(6552), + [aux_sym_data_statement_token1] = ACTIONS(6552), + [aux_sym__inline_if_statement_token1] = ACTIONS(6552), + [aux_sym_end_if_statement_token1] = ACTIONS(6552), + [aux_sym_elseif_clause_token2] = ACTIONS(6552), + [aux_sym_select_case_statement_token1] = ACTIONS(6552), + [aux_sym_block_construct_token1] = ACTIONS(6552), + [aux_sym_format_statement_token1] = ACTIONS(6552), + [aux_sym_inquire_statement_token1] = ACTIONS(6552), + [aux_sym_entry_statement_token1] = ACTIONS(6552), + [aux_sym_logical_expression_token1] = ACTIONS(6550), + [aux_sym_logical_expression_token2] = ACTIONS(6550), + [aux_sym_logical_expression_token3] = ACTIONS(6550), + [aux_sym_logical_expression_token4] = ACTIONS(6550), + [aux_sym_relational_expression_token1] = ACTIONS(6550), + [aux_sym_relational_expression_token2] = ACTIONS(6550), + [aux_sym_relational_expression_token3] = ACTIONS(6550), + [aux_sym_relational_expression_token4] = ACTIONS(6550), + [aux_sym_relational_expression_token5] = ACTIONS(6550), + [anon_sym_SLASH_EQ] = ACTIONS(6550), + [aux_sym_relational_expression_token6] = ACTIONS(6550), + [anon_sym_SLASH_SLASH] = ACTIONS(6550), + [anon_sym_STAR_STAR] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6552), + [anon_sym_LBRACK] = ACTIONS(6550), + [aux_sym_null_literal_token1] = ACTIONS(6552), + [aux_sym_coarray_statement_token1] = ACTIONS(6552), + [aux_sym_coarray_statement_token2] = ACTIONS(6552), + [aux_sym_coarray_statement_token6] = ACTIONS(6552), + [aux_sym_coarray_statement_token8] = ACTIONS(6552), + [aux_sym_coarray_statement_token11] = ACTIONS(6552), + [aux_sym_coarray_statement_token12] = ACTIONS(6552), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6552), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6552), + [aux_sym_identifier_token1] = ACTIONS(6552), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6550), + }, + [3109] = { + [sym__name] = STATE(5603), + [sym_identifier] = STATE(6091), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3218] = { - [sym__preproc_expression] = STATE(5348), - [sym_preproc_parenthesized_expression] = STATE(5348), - [sym_preproc_defined] = STATE(5348), - [sym_preproc_unary_expression] = STATE(5348), - [sym_preproc_call_expression] = STATE(5348), - [sym_preproc_binary_expression] = STATE(5348), - [sym_number_literal] = STATE(5348), - [sym_string_literal] = STATE(5348), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3110] = { + [anon_sym_COMMA] = ACTIONS(5784), + [anon_sym_LPAREN2] = ACTIONS(5786), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(5789), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(5792), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5792), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5792), + [aux_sym_procedure_attributes_token3] = ACTIONS(5792), + [aux_sym_use_statement_token2] = ACTIONS(5792), + [anon_sym_COLON_COLON] = ACTIONS(5784), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token4] = ACTIONS(5792), + [aux_sym_save_statement_token1] = ACTIONS(5792), + [aux_sym_private_statement_token1] = ACTIONS(5792), + [aux_sym_public_statement_token1] = ACTIONS(5792), + [aux_sym_derived_type_definition_token1] = ACTIONS(5792), + [aux_sym_procedure_attribute_token6] = ACTIONS(5792), + [aux_sym_variable_attributes_token2] = ACTIONS(5792), + [aux_sym_variable_attributes_token3] = ACTIONS(5792), + [aux_sym_variable_attributes_token5] = ACTIONS(5792), + [aux_sym__intrinsic_type_token1] = ACTIONS(5792), + [aux_sym__intrinsic_type_token3] = ACTIONS(5792), + [aux_sym__intrinsic_type_token4] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5792), + [aux_sym_type_qualifier_token1] = ACTIONS(5792), + [aux_sym_type_qualifier_token2] = ACTIONS(5792), + [aux_sym_stop_statement_token1] = ACTIONS(5792), + [aux_sym_stop_statement_token2] = ACTIONS(5792), + [aux_sym_keyword_statement_token2] = ACTIONS(5792), + [aux_sym_keyword_statement_token3] = ACTIONS(5792), + [aux_sym_data_statement_token1] = ACTIONS(5792), + [aux_sym__inline_if_statement_token1] = ACTIONS(5792), + [aux_sym_end_if_statement_token1] = ACTIONS(5792), + [aux_sym_elseif_clause_token2] = ACTIONS(5792), + [aux_sym_select_case_statement_token1] = ACTIONS(5792), + [aux_sym_block_construct_token1] = ACTIONS(5792), + [aux_sym_format_statement_token1] = ACTIONS(5792), + [aux_sym_inquire_statement_token1] = ACTIONS(5792), + [aux_sym_entry_statement_token1] = ACTIONS(5792), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5792), + [aux_sym_coarray_statement_token1] = ACTIONS(5792), + [aux_sym_coarray_statement_token2] = ACTIONS(5792), + [aux_sym_coarray_statement_token6] = ACTIONS(5792), + [aux_sym_coarray_statement_token8] = ACTIONS(5792), + [aux_sym_coarray_statement_token11] = ACTIONS(5792), + [aux_sym_coarray_statement_token12] = ACTIONS(5792), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5792), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5792), + [aux_sym_identifier_token1] = ACTIONS(5792), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3219] = { - [sym__preproc_expression] = STATE(5209), - [sym_preproc_parenthesized_expression] = STATE(5209), - [sym_preproc_defined] = STATE(5209), - [sym_preproc_unary_expression] = STATE(5209), - [sym_preproc_call_expression] = STATE(5209), - [sym_preproc_binary_expression] = STATE(5209), - [sym_number_literal] = STATE(5209), - [sym_string_literal] = STATE(5209), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), + [3111] = { + [sym__import_names] = STATE(4586), + [sym_identifier] = STATE(4546), + [anon_sym_COMMA] = ACTIONS(7102), + [aux_sym_preproc_if_token2] = ACTIONS(7104), + [aux_sym_preproc_else_token1] = ACTIONS(7104), + [aux_sym_preproc_elif_token1] = ACTIONS(7094), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7104), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7104), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [aux_sym_end_program_statement_token1] = ACTIONS(748), + [aux_sym_module_statement_token1] = ACTIONS(7094), + [aux_sym_defined_io_procedure_token1] = ACTIONS(93), + [aux_sym_defined_io_procedure_token2] = ACTIONS(93), + [aux_sym_subroutine_statement_token1] = ACTIONS(7094), + [aux_sym_module_procedure_statement_token1] = ACTIONS(7094), + [aux_sym_function_statement_token1] = ACTIONS(7094), + [aux_sym_procedure_attributes_token1] = ACTIONS(7094), + [aux_sym_procedure_attributes_token3] = ACTIONS(93), + [aux_sym_use_statement_token2] = ACTIONS(93), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [aux_sym_implicit_statement_token3] = ACTIONS(7094), + [aux_sym_implicit_statement_token4] = ACTIONS(93), + [aux_sym_save_statement_token1] = ACTIONS(93), + [aux_sym_private_statement_token1] = ACTIONS(93), + [aux_sym_public_statement_token1] = ACTIONS(93), + [aux_sym_import_statement_token1] = ACTIONS(7094), + [aux_sym_derived_type_definition_token1] = ACTIONS(93), + [aux_sym_procedure_kind_token1] = ACTIONS(7094), + [aux_sym_procedure_kind_token2] = ACTIONS(7094), + [aux_sym_procedure_kind_token3] = ACTIONS(7094), + [aux_sym_procedure_kind_token4] = ACTIONS(7094), + [aux_sym_procedure_attribute_token6] = ACTIONS(93), + [aux_sym_variable_attributes_token2] = ACTIONS(93), + [aux_sym_variable_attributes_token3] = ACTIONS(93), + [aux_sym_variable_attributes_token5] = ACTIONS(93), + [aux_sym__intrinsic_type_token1] = ACTIONS(7094), + [aux_sym__intrinsic_type_token2] = ACTIONS(7094), + [aux_sym__intrinsic_type_token3] = ACTIONS(7094), + [aux_sym__intrinsic_type_token4] = ACTIONS(7094), + [aux_sym__intrinsic_type_token6] = ACTIONS(7094), + [aux_sym__intrinsic_type_token7] = ACTIONS(7094), + [aux_sym__intrinsic_type_token8] = ACTIONS(7094), + [aux_sym__intrinsic_type_token9] = ACTIONS(7094), + [aux_sym__intrinsic_type_token10] = ACTIONS(7094), + [aux_sym_derived_type_token1] = ACTIONS(7094), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(93), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), + [aux_sym_type_qualifier_token1] = ACTIONS(93), + [aux_sym_type_qualifier_token2] = ACTIONS(93), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7094), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7094), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7094), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7094), + [aux_sym_stop_statement_token1] = ACTIONS(93), + [aux_sym_stop_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token2] = ACTIONS(93), + [aux_sym_keyword_statement_token3] = ACTIONS(93), + [aux_sym_data_statement_token1] = ACTIONS(93), + [aux_sym__inline_if_statement_token1] = ACTIONS(93), + [aux_sym_end_if_statement_token1] = ACTIONS(93), + [aux_sym_elseif_clause_token2] = ACTIONS(93), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), + [aux_sym_block_construct_token1] = ACTIONS(93), + [aux_sym_format_statement_token1] = ACTIONS(93), + [aux_sym_inquire_statement_token1] = ACTIONS(93), + [aux_sym_entry_statement_token1] = ACTIONS(93), + [aux_sym_null_literal_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token1] = ACTIONS(93), + [aux_sym_coarray_statement_token2] = ACTIONS(93), + [aux_sym_coarray_statement_token6] = ACTIONS(93), + [aux_sym_coarray_statement_token8] = ACTIONS(93), + [aux_sym_coarray_statement_token11] = ACTIONS(93), + [aux_sym_coarray_statement_token12] = ACTIONS(93), + [aux_sym_coarray_team_statement_token1] = ACTIONS(93), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), + [aux_sym_identifier_token1] = ACTIONS(93), + [sym_comment] = ACTIONS(21), }, - [3220] = { - [sym__preproc_expression] = STATE(5356), - [sym_preproc_parenthesized_expression] = STATE(5356), - [sym_preproc_defined] = STATE(5356), - [sym_preproc_unary_expression] = STATE(5356), - [sym_preproc_call_expression] = STATE(5356), - [sym_preproc_binary_expression] = STATE(5356), - [sym_number_literal] = STATE(5356), - [sym_string_literal] = STATE(5356), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [3112] = { + [anon_sym_COMMA] = ACTIONS(6858), + [anon_sym_LPAREN2] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6858), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6856), + [anon_sym_SLASH] = ACTIONS(6856), + [anon_sym_PERCENT] = ACTIONS(6858), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(6858), + [anon_sym_GT] = ACTIONS(6856), + [anon_sym_GT_EQ] = ACTIONS(6858), + [anon_sym_LT_EQ] = ACTIONS(6858), + [anon_sym_LT] = ACTIONS(6856), + [aux_sym_end_program_statement_token1] = ACTIONS(6856), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6856), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6856), + [aux_sym_procedure_attributes_token3] = ACTIONS(6856), + [aux_sym_use_statement_token2] = ACTIONS(6856), + [aux_sym_implicit_statement_token4] = ACTIONS(6856), + [aux_sym_save_statement_token1] = ACTIONS(6856), + [aux_sym_private_statement_token1] = ACTIONS(6856), + [aux_sym_public_statement_token1] = ACTIONS(6856), + [aux_sym_derived_type_definition_token1] = ACTIONS(6856), + [aux_sym_procedure_attribute_token6] = ACTIONS(6856), + [aux_sym_variable_attributes_token2] = ACTIONS(6856), + [aux_sym_variable_attributes_token3] = ACTIONS(6856), + [aux_sym_variable_attributes_token5] = ACTIONS(6856), + [aux_sym__intrinsic_type_token1] = ACTIONS(6856), + [aux_sym__intrinsic_type_token3] = ACTIONS(6856), + [aux_sym__intrinsic_type_token4] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6856), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6856), + [aux_sym_type_qualifier_token1] = ACTIONS(6856), + [aux_sym_type_qualifier_token2] = ACTIONS(6856), + [anon_sym_SEMI] = ACTIONS(6858), + [aux_sym_stop_statement_token1] = ACTIONS(6856), + [aux_sym_stop_statement_token2] = ACTIONS(6856), + [anon_sym_LT_LT_LT] = ACTIONS(6858), + [aux_sym_keyword_statement_token2] = ACTIONS(6856), + [aux_sym_keyword_statement_token3] = ACTIONS(6856), + [aux_sym_data_statement_token1] = ACTIONS(6856), + [aux_sym__inline_if_statement_token1] = ACTIONS(6856), + [aux_sym_end_if_statement_token1] = ACTIONS(6856), + [aux_sym_elseif_clause_token2] = ACTIONS(6856), + [aux_sym_select_case_statement_token1] = ACTIONS(6856), + [aux_sym_block_construct_token1] = ACTIONS(6856), + [aux_sym_format_statement_token1] = ACTIONS(6856), + [aux_sym_inquire_statement_token1] = ACTIONS(6856), + [aux_sym_entry_statement_token1] = ACTIONS(6856), + [aux_sym_logical_expression_token1] = ACTIONS(6858), + [aux_sym_logical_expression_token2] = ACTIONS(6858), + [aux_sym_logical_expression_token3] = ACTIONS(6858), + [aux_sym_logical_expression_token4] = ACTIONS(6858), + [aux_sym_relational_expression_token1] = ACTIONS(6858), + [aux_sym_relational_expression_token2] = ACTIONS(6858), + [aux_sym_relational_expression_token3] = ACTIONS(6858), + [aux_sym_relational_expression_token4] = ACTIONS(6858), + [aux_sym_relational_expression_token5] = ACTIONS(6858), + [anon_sym_SLASH_EQ] = ACTIONS(6858), + [aux_sym_relational_expression_token6] = ACTIONS(6858), + [anon_sym_SLASH_SLASH] = ACTIONS(6858), + [anon_sym_STAR_STAR] = ACTIONS(6858), + [anon_sym_DOT] = ACTIONS(6856), + [anon_sym_LBRACK] = ACTIONS(6858), + [aux_sym_null_literal_token1] = ACTIONS(6856), + [aux_sym_coarray_statement_token1] = ACTIONS(6856), + [aux_sym_coarray_statement_token2] = ACTIONS(6856), + [aux_sym_coarray_statement_token6] = ACTIONS(6856), + [aux_sym_coarray_statement_token8] = ACTIONS(6856), + [aux_sym_coarray_statement_token11] = ACTIONS(6856), + [aux_sym_coarray_statement_token12] = ACTIONS(6856), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6856), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6856), + [aux_sym_identifier_token1] = ACTIONS(6856), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(6858), }, - [3221] = { - [sym__preproc_expression] = STATE(5233), - [sym_preproc_parenthesized_expression] = STATE(5233), - [sym_preproc_defined] = STATE(5233), - [sym_preproc_unary_expression] = STATE(5233), - [sym_preproc_call_expression] = STATE(5233), - [sym_preproc_binary_expression] = STATE(5233), - [sym_number_literal] = STATE(5233), - [sym_string_literal] = STATE(5233), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), + [3113] = { + [sym__variable_declarator] = STATE(5882), + [sym_sized_declarator] = STATE(3394), + [sym__declaration_assignment] = STATE(6163), + [sym__declaration_pointer_association] = STATE(6165), + [sym__declaration_targets] = STATE(7345), + [sym_coarray_declarator] = STATE(5882), + [sym_identifier] = STATE(3285), + [anon_sym_COMMA] = ACTIONS(7108), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_module_statement_token1] = ACTIONS(7110), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_subroutine_statement_token1] = ACTIONS(7110), + [aux_sym_function_statement_token1] = ACTIONS(7110), + [aux_sym_procedure_attributes_token1] = ACTIONS(7110), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(7112), + [aux_sym_implicit_statement_token3] = ACTIONS(7110), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(7110), + [aux_sym__intrinsic_type_token2] = ACTIONS(7110), + [aux_sym__intrinsic_type_token3] = ACTIONS(7110), + [aux_sym__intrinsic_type_token4] = ACTIONS(7110), + [aux_sym__intrinsic_type_token6] = ACTIONS(7110), + [aux_sym__intrinsic_type_token7] = ACTIONS(7110), + [aux_sym__intrinsic_type_token8] = ACTIONS(7110), + [aux_sym__intrinsic_type_token9] = ACTIONS(7110), + [aux_sym__intrinsic_type_token10] = ACTIONS(7110), + [aux_sym_derived_type_token1] = ACTIONS(7110), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7110), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7110), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7110), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7110), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), }, - [3222] = { - [sym__preproc_expression] = STATE(5208), - [sym_preproc_parenthesized_expression] = STATE(5208), - [sym_preproc_defined] = STATE(5208), - [sym_preproc_unary_expression] = STATE(5208), - [sym_preproc_call_expression] = STATE(5208), - [sym_preproc_binary_expression] = STATE(5208), - [sym_number_literal] = STATE(5208), - [sym_string_literal] = STATE(5208), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), + [3114] = { [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [aux_sym_end_program_statement_token1] = ACTIONS(7114), + [aux_sym_module_statement_token1] = ACTIONS(7116), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7114), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7114), + [aux_sym_subroutine_statement_token1] = ACTIONS(7116), + [aux_sym_function_statement_token1] = ACTIONS(7116), + [aux_sym_language_binding_token1] = ACTIONS(7114), + [aux_sym_procedure_attributes_token1] = ACTIONS(7116), + [aux_sym_procedure_attributes_token3] = ACTIONS(7114), + [aux_sym_use_statement_token2] = ACTIONS(7114), + [anon_sym_COLON_COLON] = ACTIONS(7118), + [aux_sym_implicit_statement_token3] = ACTIONS(7116), + [aux_sym_implicit_statement_token4] = ACTIONS(7114), + [aux_sym_save_statement_token1] = ACTIONS(7114), + [aux_sym_private_statement_token1] = ACTIONS(7114), + [aux_sym_public_statement_token1] = ACTIONS(7114), + [aux_sym_derived_type_definition_token1] = ACTIONS(7114), + [aux_sym_abstract_specifier_token1] = ACTIONS(7114), + [aux_sym_procedure_attribute_token6] = ACTIONS(7114), + [aux_sym_variable_attributes_token1] = ACTIONS(7114), + [aux_sym_variable_attributes_token2] = ACTIONS(7114), + [aux_sym_variable_attributes_token3] = ACTIONS(7114), + [aux_sym_variable_attributes_token4] = ACTIONS(7114), + [aux_sym_variable_attributes_token5] = ACTIONS(7114), + [aux_sym__intrinsic_type_token1] = ACTIONS(7116), + [aux_sym__intrinsic_type_token2] = ACTIONS(7116), + [aux_sym__intrinsic_type_token3] = ACTIONS(7116), + [aux_sym__intrinsic_type_token4] = ACTIONS(7116), + [aux_sym__intrinsic_type_token6] = ACTIONS(7116), + [aux_sym__intrinsic_type_token7] = ACTIONS(7116), + [aux_sym__intrinsic_type_token8] = ACTIONS(7116), + [aux_sym__intrinsic_type_token9] = ACTIONS(7116), + [aux_sym__intrinsic_type_token10] = ACTIONS(7116), + [aux_sym_derived_type_token1] = ACTIONS(7116), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7114), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(7114), + [aux_sym_type_qualifier_token1] = ACTIONS(7114), + [aux_sym_type_qualifier_token2] = ACTIONS(7114), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7116), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7116), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7116), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7116), + [aux_sym_stop_statement_token1] = ACTIONS(7114), + [aux_sym_stop_statement_token2] = ACTIONS(7114), + [aux_sym_keyword_statement_token2] = ACTIONS(7114), + [aux_sym_keyword_statement_token3] = ACTIONS(7114), + [aux_sym_data_statement_token1] = ACTIONS(7114), + [aux_sym__inline_if_statement_token1] = ACTIONS(7114), + [aux_sym_end_if_statement_token1] = ACTIONS(7114), + [aux_sym_elseif_clause_token2] = ACTIONS(7114), + [aux_sym_select_case_statement_token1] = ACTIONS(7114), + [aux_sym_block_construct_token1] = ACTIONS(7114), + [aux_sym_format_statement_token1] = ACTIONS(7114), + [aux_sym_inquire_statement_token1] = ACTIONS(7114), + [aux_sym_entry_statement_token1] = ACTIONS(7114), + [aux_sym_null_literal_token1] = ACTIONS(7114), + [aux_sym_coarray_statement_token1] = ACTIONS(7114), + [aux_sym_coarray_statement_token2] = ACTIONS(7114), + [aux_sym_coarray_statement_token6] = ACTIONS(7114), + [aux_sym_coarray_statement_token8] = ACTIONS(7114), + [aux_sym_coarray_statement_token11] = ACTIONS(7114), + [aux_sym_coarray_statement_token12] = ACTIONS(7114), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7114), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7114), + [aux_sym_identifier_token1] = ACTIONS(7114), + [sym_comment] = ACTIONS(21), }, - [3223] = { - [sym__preproc_expression] = STATE(5311), - [sym_preproc_parenthesized_expression] = STATE(5311), - [sym_preproc_defined] = STATE(5311), - [sym_preproc_unary_expression] = STATE(5311), - [sym_preproc_call_expression] = STATE(5311), - [sym_preproc_binary_expression] = STATE(5311), - [sym_number_literal] = STATE(5311), - [sym_string_literal] = STATE(5311), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3115] = { + [sym_kind] = STATE(3128), + [sym__argument_list] = STATE(3131), + [anon_sym_COMMA] = ACTIONS(7120), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_STAR] = ACTIONS(7124), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7126), + [aux_sym_module_statement_token1] = ACTIONS(7126), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7126), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7126), + [aux_sym_subroutine_statement_token1] = ACTIONS(7126), + [aux_sym_function_statement_token1] = ACTIONS(7126), + [aux_sym_procedure_attributes_token1] = ACTIONS(7126), + [aux_sym_procedure_attributes_token3] = ACTIONS(7126), + [aux_sym_use_statement_token2] = ACTIONS(7126), + [anon_sym_COLON_COLON] = ACTIONS(7120), + [aux_sym_implicit_statement_token3] = ACTIONS(7126), + [aux_sym_implicit_statement_token4] = ACTIONS(7126), + [aux_sym_save_statement_token1] = ACTIONS(7126), + [aux_sym_private_statement_token1] = ACTIONS(7126), + [aux_sym_public_statement_token1] = ACTIONS(7126), + [aux_sym_derived_type_definition_token1] = ACTIONS(7126), + [aux_sym_procedure_attribute_token6] = ACTIONS(7126), + [aux_sym_variable_attributes_token2] = ACTIONS(7126), + [aux_sym_variable_attributes_token3] = ACTIONS(7126), + [aux_sym_variable_attributes_token5] = ACTIONS(7126), + [aux_sym__intrinsic_type_token1] = ACTIONS(7126), + [aux_sym__intrinsic_type_token2] = ACTIONS(7126), + [aux_sym__intrinsic_type_token3] = ACTIONS(7126), + [aux_sym__intrinsic_type_token4] = ACTIONS(7126), + [aux_sym__intrinsic_type_token6] = ACTIONS(7126), + [aux_sym__intrinsic_type_token7] = ACTIONS(7126), + [aux_sym__intrinsic_type_token8] = ACTIONS(7126), + [aux_sym__intrinsic_type_token9] = ACTIONS(7126), + [aux_sym__intrinsic_type_token10] = ACTIONS(7126), + [aux_sym_derived_type_token1] = ACTIONS(7126), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7126), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7126), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7126), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7126), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7126), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7126), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7126), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7126), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7126), + [aux_sym_type_qualifier_token1] = ACTIONS(7126), + [aux_sym_type_qualifier_token2] = ACTIONS(7126), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7126), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7126), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7126), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7126), + [aux_sym_stop_statement_token1] = ACTIONS(7126), + [aux_sym_stop_statement_token2] = ACTIONS(7126), + [aux_sym_keyword_statement_token2] = ACTIONS(7126), + [aux_sym_keyword_statement_token3] = ACTIONS(7126), + [aux_sym_data_statement_token1] = ACTIONS(7126), + [aux_sym__inline_if_statement_token1] = ACTIONS(7126), + [aux_sym_end_if_statement_token1] = ACTIONS(7126), + [aux_sym_elseif_clause_token2] = ACTIONS(7126), + [aux_sym_select_case_statement_token1] = ACTIONS(7126), + [aux_sym_block_construct_token1] = ACTIONS(7126), + [aux_sym_format_statement_token1] = ACTIONS(7126), + [aux_sym_inquire_statement_token1] = ACTIONS(7126), + [aux_sym_entry_statement_token1] = ACTIONS(7126), + [aux_sym_null_literal_token1] = ACTIONS(7126), + [aux_sym_coarray_statement_token1] = ACTIONS(7126), + [aux_sym_coarray_statement_token2] = ACTIONS(7126), + [aux_sym_coarray_statement_token6] = ACTIONS(7126), + [aux_sym_coarray_statement_token8] = ACTIONS(7126), + [aux_sym_coarray_statement_token11] = ACTIONS(7126), + [aux_sym_coarray_statement_token12] = ACTIONS(7126), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7126), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7126), + [aux_sym_identifier_token1] = ACTIONS(7126), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3224] = { - [sym__preproc_expression] = STATE(5265), - [sym_preproc_parenthesized_expression] = STATE(5265), - [sym_preproc_defined] = STATE(5265), - [sym_preproc_unary_expression] = STATE(5265), - [sym_preproc_call_expression] = STATE(5265), - [sym_preproc_binary_expression] = STATE(5265), - [sym_number_literal] = STATE(5265), - [sym_string_literal] = STATE(5265), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), + [3116] = { + [sym_assignment] = STATE(6095), + [sym_operator] = STATE(6095), + [sym_defined_io_procedure] = STATE(6095), + [sym__generic_procedure] = STATE(6095), + [sym_identifier] = STATE(6095), + [sym__end_of_statement] = STATE(2867), + [anon_sym_LPAREN2] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_assignment_token1] = ACTIONS(5588), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(7128), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7130), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(7130), }, - [3225] = { - [anon_sym_COMMA] = ACTIONS(7360), - [anon_sym_LPAREN2] = ACTIONS(7362), - [anon_sym_PLUS] = ACTIONS(7360), - [anon_sym_DASH] = ACTIONS(7360), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7362), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7362), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7362), - [aux_sym_procedure_attributes_token3] = ACTIONS(7362), - [aux_sym_use_statement_token2] = ACTIONS(7362), - [aux_sym_implicit_statement_token4] = ACTIONS(7362), - [aux_sym_save_statement_token1] = ACTIONS(7362), - [aux_sym_private_statement_token1] = ACTIONS(7362), - [aux_sym_public_statement_token1] = ACTIONS(7362), - [aux_sym_derived_type_definition_token1] = ACTIONS(7362), - [aux_sym_procedure_attribute_token6] = ACTIONS(7362), - [aux_sym_variable_attributes_token2] = ACTIONS(7362), - [aux_sym_variable_attributes_token3] = ACTIONS(7362), - [aux_sym_variable_attributes_token5] = ACTIONS(7362), - [aux_sym__intrinsic_type_token1] = ACTIONS(7362), - [aux_sym__intrinsic_type_token3] = ACTIONS(7362), - [aux_sym__intrinsic_type_token4] = ACTIONS(7362), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7362), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7362), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7362), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7362), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7362), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7362), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7362), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7362), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7362), - [aux_sym_type_qualifier_token1] = ACTIONS(7362), - [aux_sym_type_qualifier_token2] = ACTIONS(7362), - [anon_sym_SEMI] = ACTIONS(7360), - [aux_sym_stop_statement_token1] = ACTIONS(7362), - [aux_sym_stop_statement_token2] = ACTIONS(7362), - [aux_sym_keyword_statement_token2] = ACTIONS(7362), - [aux_sym_keyword_statement_token3] = ACTIONS(7362), - [aux_sym_data_statement_token1] = ACTIONS(7362), - [aux_sym__inline_if_statement_token1] = ACTIONS(7362), - [aux_sym_end_if_statement_token1] = ACTIONS(7362), - [aux_sym_elseif_clause_token2] = ACTIONS(7362), - [aux_sym_select_case_statement_token1] = ACTIONS(7362), - [aux_sym_block_construct_token1] = ACTIONS(7362), - [aux_sym_format_statement_token1] = ACTIONS(7362), - [aux_sym_inquire_statement_token1] = ACTIONS(7362), - [aux_sym_entry_statement_token1] = ACTIONS(7362), - [aux_sym_logical_expression_token5] = ACTIONS(7360), - [anon_sym_DOT] = ACTIONS(7362), - [anon_sym_LPAREN_SLASH] = ACTIONS(7360), - [anon_sym_LBRACK] = ACTIONS(7360), - [aux_sym_boolean_literal_token1] = ACTIONS(7360), - [aux_sym_boolean_literal_token2] = ACTIONS(7360), - [aux_sym_null_literal_token1] = ACTIONS(7362), - [aux_sym_coarray_statement_token1] = ACTIONS(7362), - [aux_sym_coarray_statement_token2] = ACTIONS(7362), - [aux_sym_coarray_statement_token6] = ACTIONS(7362), - [aux_sym_coarray_statement_token8] = ACTIONS(7362), - [aux_sym_coarray_statement_token11] = ACTIONS(7362), - [aux_sym_coarray_statement_token12] = ACTIONS(7362), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7362), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7362), - [aux_sym_identifier_token1] = ACTIONS(7362), + [3117] = { + [anon_sym_COMMA] = ACTIONS(7132), + [anon_sym_RPAREN] = ACTIONS(7132), + [anon_sym_LPAREN2] = ACTIONS(7132), + [anon_sym_STAR] = ACTIONS(7132), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7134), + [aux_sym_module_statement_token1] = ACTIONS(7134), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7134), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7134), + [aux_sym_subroutine_statement_token1] = ACTIONS(7134), + [aux_sym_function_statement_token1] = ACTIONS(7134), + [aux_sym_procedure_attributes_token1] = ACTIONS(7134), + [aux_sym_procedure_attributes_token3] = ACTIONS(7134), + [aux_sym_use_statement_token2] = ACTIONS(7134), + [anon_sym_COLON_COLON] = ACTIONS(7132), + [aux_sym_implicit_statement_token3] = ACTIONS(7134), + [aux_sym_implicit_statement_token4] = ACTIONS(7134), + [aux_sym_save_statement_token1] = ACTIONS(7134), + [aux_sym_private_statement_token1] = ACTIONS(7134), + [aux_sym_public_statement_token1] = ACTIONS(7134), + [aux_sym_derived_type_definition_token1] = ACTIONS(7134), + [aux_sym_procedure_attribute_token6] = ACTIONS(7134), + [aux_sym_variable_attributes_token2] = ACTIONS(7134), + [aux_sym_variable_attributes_token3] = ACTIONS(7134), + [aux_sym_variable_attributes_token5] = ACTIONS(7134), + [aux_sym__intrinsic_type_token1] = ACTIONS(7134), + [aux_sym__intrinsic_type_token2] = ACTIONS(7134), + [aux_sym__intrinsic_type_token3] = ACTIONS(7134), + [aux_sym__intrinsic_type_token4] = ACTIONS(7134), + [aux_sym__intrinsic_type_token6] = ACTIONS(7134), + [aux_sym__intrinsic_type_token7] = ACTIONS(7134), + [aux_sym__intrinsic_type_token8] = ACTIONS(7134), + [aux_sym__intrinsic_type_token9] = ACTIONS(7134), + [aux_sym__intrinsic_type_token10] = ACTIONS(7134), + [aux_sym_derived_type_token1] = ACTIONS(7134), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7134), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7134), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7134), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7134), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7134), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7134), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7134), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7134), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7134), + [aux_sym_type_qualifier_token1] = ACTIONS(7134), + [aux_sym_type_qualifier_token2] = ACTIONS(7134), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7134), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7134), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7134), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7134), + [aux_sym_stop_statement_token1] = ACTIONS(7134), + [aux_sym_stop_statement_token2] = ACTIONS(7134), + [aux_sym_keyword_statement_token2] = ACTIONS(7134), + [aux_sym_keyword_statement_token3] = ACTIONS(7134), + [aux_sym_data_statement_token1] = ACTIONS(7134), + [aux_sym__inline_if_statement_token1] = ACTIONS(7134), + [aux_sym_end_if_statement_token1] = ACTIONS(7134), + [aux_sym_elseif_clause_token2] = ACTIONS(7134), + [aux_sym_select_case_statement_token1] = ACTIONS(7134), + [aux_sym_block_construct_token1] = ACTIONS(7134), + [aux_sym_format_statement_token1] = ACTIONS(7134), + [aux_sym_inquire_statement_token1] = ACTIONS(7134), + [aux_sym_entry_statement_token1] = ACTIONS(7134), + [aux_sym_null_literal_token1] = ACTIONS(7134), + [aux_sym_coarray_statement_token1] = ACTIONS(7134), + [aux_sym_coarray_statement_token2] = ACTIONS(7134), + [aux_sym_coarray_statement_token6] = ACTIONS(7134), + [aux_sym_coarray_statement_token8] = ACTIONS(7134), + [aux_sym_coarray_statement_token11] = ACTIONS(7134), + [aux_sym_coarray_statement_token12] = ACTIONS(7134), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7134), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7134), + [aux_sym_identifier_token1] = ACTIONS(7134), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7360), - [sym__float_literal] = ACTIONS(7360), - [sym__boz_literal] = ACTIONS(7360), - [sym__string_literal] = ACTIONS(7360), - [sym__string_literal_kind] = ACTIONS(7360), - [sym__external_end_of_statement] = ACTIONS(7360), }, - [3226] = { - [sym__preproc_expression] = STATE(5210), - [sym_preproc_parenthesized_expression] = STATE(5210), - [sym_preproc_defined] = STATE(5210), - [sym_preproc_unary_expression] = STATE(5210), - [sym_preproc_call_expression] = STATE(5210), - [sym_preproc_binary_expression] = STATE(5210), - [sym_number_literal] = STATE(5210), - [sym_string_literal] = STATE(5210), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), + [3118] = { + [sym_assignment] = STATE(6097), + [sym_operator] = STATE(6097), + [sym_defined_io_procedure] = STATE(6097), + [sym__generic_procedure] = STATE(6097), + [sym_identifier] = STATE(6097), + [sym__end_of_statement] = STATE(2868), + [anon_sym_LPAREN2] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_assignment_token1] = ACTIONS(5588), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(7136), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7138), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(7138), }, - [3227] = { - [sym__preproc_expression] = STATE(5217), - [sym_preproc_parenthesized_expression] = STATE(5217), - [sym_preproc_defined] = STATE(5217), - [sym_preproc_unary_expression] = STATE(5217), - [sym_preproc_call_expression] = STATE(5217), - [sym_preproc_binary_expression] = STATE(5217), - [sym_number_literal] = STATE(5217), - [sym_string_literal] = STATE(5217), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3119] = { + [sym_assignment] = STATE(5977), + [sym_operator] = STATE(5977), + [sym_defined_io_procedure] = STATE(5977), + [sym__generic_procedure] = STATE(5977), + [sym_identifier] = STATE(5977), + [sym__end_of_statement] = STATE(2870), + [anon_sym_LPAREN2] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_assignment_token1] = ACTIONS(5588), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(7140), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7142), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__external_end_of_statement] = ACTIONS(7142), }, - [3228] = { - [sym__preproc_expression] = STATE(5355), - [sym_preproc_parenthesized_expression] = STATE(5355), - [sym_preproc_defined] = STATE(5355), - [sym_preproc_unary_expression] = STATE(5355), - [sym_preproc_call_expression] = STATE(5355), - [sym_preproc_binary_expression] = STATE(5355), - [sym_number_literal] = STATE(5355), - [sym_string_literal] = STATE(5355), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3120] = { + [sym_assignment] = STATE(5981), + [sym_operator] = STATE(5981), + [sym_defined_io_procedure] = STATE(5981), + [sym__generic_procedure] = STATE(5981), + [sym_identifier] = STATE(5981), + [sym__end_of_statement] = STATE(2744), + [anon_sym_LPAREN2] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_assignment_token1] = ACTIONS(5588), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(7144), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7146), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__external_end_of_statement] = ACTIONS(7146), }, - [3229] = { - [sym__preproc_expression] = STATE(5367), - [sym_preproc_parenthesized_expression] = STATE(5367), - [sym_preproc_defined] = STATE(5367), - [sym_preproc_unary_expression] = STATE(5367), - [sym_preproc_call_expression] = STATE(5367), - [sym_preproc_binary_expression] = STATE(5367), - [sym_number_literal] = STATE(5367), - [sym_string_literal] = STATE(5367), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3121] = { + [sym_assignment] = STATE(5982), + [sym_operator] = STATE(5982), + [sym_defined_io_procedure] = STATE(5982), + [sym__generic_procedure] = STATE(5982), + [sym_identifier] = STATE(5982), + [sym__end_of_statement] = STATE(2745), + [anon_sym_LPAREN2] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_assignment_token1] = ACTIONS(5588), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(7148), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7150), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__external_end_of_statement] = ACTIONS(7150), }, - [3230] = { - [sym__preproc_expression] = STATE(5246), - [sym_preproc_parenthesized_expression] = STATE(5246), - [sym_preproc_defined] = STATE(5246), - [sym_preproc_unary_expression] = STATE(5246), - [sym_preproc_call_expression] = STATE(5246), - [sym_preproc_binary_expression] = STATE(5246), - [sym_number_literal] = STATE(5246), - [sym_string_literal] = STATE(5246), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3122] = { + [sym_assignment] = STATE(6007), + [sym_operator] = STATE(6007), + [sym_defined_io_procedure] = STATE(6007), + [sym__generic_procedure] = STATE(6007), + [sym_identifier] = STATE(6007), + [sym__end_of_statement] = STATE(3068), + [anon_sym_LPAREN2] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_assignment_token1] = ACTIONS(5588), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(7152), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7154), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__external_end_of_statement] = ACTIONS(7154), }, - [3231] = { - [sym__preproc_expression] = STATE(5227), - [sym_preproc_parenthesized_expression] = STATE(5227), - [sym_preproc_defined] = STATE(5227), - [sym_preproc_unary_expression] = STATE(5227), - [sym_preproc_call_expression] = STATE(5227), - [sym_preproc_binary_expression] = STATE(5227), - [sym_number_literal] = STATE(5227), - [sym_string_literal] = STATE(5227), - [sym_identifier] = STATE(5166), - [anon_sym_LPAREN2] = ACTIONS(7226), - [anon_sym_defined] = ACTIONS(7228), + [3123] = { + [sym_assignment] = STATE(6008), + [sym_operator] = STATE(6008), + [sym_defined_io_procedure] = STATE(6008), + [sym__generic_procedure] = STATE(6008), + [sym_identifier] = STATE(6008), + [sym__end_of_statement] = STATE(3069), + [anon_sym_LPAREN2] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7230), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7232), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7232), - [aux_sym_procedure_attributes_token3] = ACTIONS(7232), - [aux_sym_use_statement_token2] = ACTIONS(7232), - [aux_sym_implicit_statement_token4] = ACTIONS(7232), - [aux_sym_save_statement_token1] = ACTIONS(7232), - [aux_sym_private_statement_token1] = ACTIONS(7232), - [aux_sym_public_statement_token1] = ACTIONS(7232), - [aux_sym_derived_type_definition_token1] = ACTIONS(7232), - [aux_sym_procedure_attribute_token6] = ACTIONS(7232), - [aux_sym_variable_attributes_token2] = ACTIONS(7232), - [aux_sym_variable_attributes_token3] = ACTIONS(7232), - [aux_sym_variable_attributes_token5] = ACTIONS(7232), - [aux_sym__intrinsic_type_token1] = ACTIONS(7232), - [aux_sym__intrinsic_type_token3] = ACTIONS(7232), - [aux_sym__intrinsic_type_token4] = ACTIONS(7234), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7236), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7232), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7232), - [aux_sym_type_qualifier_token1] = ACTIONS(7232), - [aux_sym_type_qualifier_token2] = ACTIONS(7232), - [aux_sym_stop_statement_token1] = ACTIONS(7232), - [aux_sym_stop_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token2] = ACTIONS(7232), - [aux_sym_keyword_statement_token3] = ACTIONS(7232), - [aux_sym_data_statement_token1] = ACTIONS(7232), - [aux_sym__inline_if_statement_token1] = ACTIONS(7232), - [aux_sym_end_if_statement_token1] = ACTIONS(7232), - [aux_sym_elseif_clause_token2] = ACTIONS(7232), - [aux_sym_select_case_statement_token1] = ACTIONS(7238), - [aux_sym_block_construct_token1] = ACTIONS(7232), - [aux_sym_format_statement_token1] = ACTIONS(7232), - [aux_sym_inquire_statement_token1] = ACTIONS(7232), - [aux_sym_entry_statement_token1] = ACTIONS(7232), - [aux_sym_null_literal_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_statement_token2] = ACTIONS(7232), - [aux_sym_coarray_statement_token6] = ACTIONS(7232), - [aux_sym_coarray_statement_token8] = ACTIONS(7232), - [aux_sym_coarray_statement_token11] = ACTIONS(7232), - [aux_sym_coarray_statement_token12] = ACTIONS(7232), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7232), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7232), - [aux_sym_identifier_token1] = ACTIONS(7232), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7240), - [sym__float_literal] = ACTIONS(7240), - [sym__boz_literal] = ACTIONS(7240), - [sym__string_literal] = ACTIONS(7242), - [sym__string_literal_kind] = ACTIONS(7244), - [sym__preproc_unary_operator] = ACTIONS(7246), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_assignment_token1] = ACTIONS(5588), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(7156), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7158), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(7158), }, - [3232] = { - [sym__preproc_expression] = STATE(5225), - [sym_preproc_parenthesized_expression] = STATE(5225), - [sym_preproc_defined] = STATE(5225), - [sym_preproc_unary_expression] = STATE(5225), - [sym_preproc_call_expression] = STATE(5225), - [sym_preproc_binary_expression] = STATE(5225), - [sym_number_literal] = STATE(5225), - [sym_string_literal] = STATE(5225), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3124] = { + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_RPAREN] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_STAR] = ACTIONS(7160), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7162), + [aux_sym_module_statement_token1] = ACTIONS(7162), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7162), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7162), + [aux_sym_subroutine_statement_token1] = ACTIONS(7162), + [aux_sym_function_statement_token1] = ACTIONS(7162), + [aux_sym_procedure_attributes_token1] = ACTIONS(7162), + [aux_sym_procedure_attributes_token3] = ACTIONS(7162), + [aux_sym_use_statement_token2] = ACTIONS(7162), + [anon_sym_COLON_COLON] = ACTIONS(7160), + [aux_sym_implicit_statement_token3] = ACTIONS(7162), + [aux_sym_implicit_statement_token4] = ACTIONS(7162), + [aux_sym_save_statement_token1] = ACTIONS(7162), + [aux_sym_private_statement_token1] = ACTIONS(7162), + [aux_sym_public_statement_token1] = ACTIONS(7162), + [aux_sym_derived_type_definition_token1] = ACTIONS(7162), + [aux_sym_procedure_attribute_token6] = ACTIONS(7162), + [aux_sym_variable_attributes_token2] = ACTIONS(7162), + [aux_sym_variable_attributes_token3] = ACTIONS(7162), + [aux_sym_variable_attributes_token5] = ACTIONS(7162), + [aux_sym__intrinsic_type_token1] = ACTIONS(7162), + [aux_sym__intrinsic_type_token2] = ACTIONS(7162), + [aux_sym__intrinsic_type_token3] = ACTIONS(7162), + [aux_sym__intrinsic_type_token4] = ACTIONS(7162), + [aux_sym__intrinsic_type_token6] = ACTIONS(7162), + [aux_sym__intrinsic_type_token7] = ACTIONS(7162), + [aux_sym__intrinsic_type_token8] = ACTIONS(7162), + [aux_sym__intrinsic_type_token9] = ACTIONS(7162), + [aux_sym__intrinsic_type_token10] = ACTIONS(7162), + [aux_sym_derived_type_token1] = ACTIONS(7162), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7162), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7162), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7162), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7162), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7162), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7162), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7162), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7162), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7162), + [aux_sym_type_qualifier_token1] = ACTIONS(7162), + [aux_sym_type_qualifier_token2] = ACTIONS(7162), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7162), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7162), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7162), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7162), + [aux_sym_stop_statement_token1] = ACTIONS(7162), + [aux_sym_stop_statement_token2] = ACTIONS(7162), + [aux_sym_keyword_statement_token2] = ACTIONS(7162), + [aux_sym_keyword_statement_token3] = ACTIONS(7162), + [aux_sym_data_statement_token1] = ACTIONS(7162), + [aux_sym__inline_if_statement_token1] = ACTIONS(7162), + [aux_sym_end_if_statement_token1] = ACTIONS(7162), + [aux_sym_elseif_clause_token2] = ACTIONS(7162), + [aux_sym_select_case_statement_token1] = ACTIONS(7162), + [aux_sym_block_construct_token1] = ACTIONS(7162), + [aux_sym_format_statement_token1] = ACTIONS(7162), + [aux_sym_inquire_statement_token1] = ACTIONS(7162), + [aux_sym_entry_statement_token1] = ACTIONS(7162), + [aux_sym_null_literal_token1] = ACTIONS(7162), + [aux_sym_coarray_statement_token1] = ACTIONS(7162), + [aux_sym_coarray_statement_token2] = ACTIONS(7162), + [aux_sym_coarray_statement_token6] = ACTIONS(7162), + [aux_sym_coarray_statement_token8] = ACTIONS(7162), + [aux_sym_coarray_statement_token11] = ACTIONS(7162), + [aux_sym_coarray_statement_token12] = ACTIONS(7162), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7162), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7162), + [aux_sym_identifier_token1] = ACTIONS(7162), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3233] = { - [sym__preproc_expression] = STATE(5254), - [sym_preproc_parenthesized_expression] = STATE(5254), - [sym_preproc_defined] = STATE(5254), - [sym_preproc_unary_expression] = STATE(5254), - [sym_preproc_call_expression] = STATE(5254), - [sym_preproc_binary_expression] = STATE(5254), - [sym_number_literal] = STATE(5254), - [sym_string_literal] = STATE(5254), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3125] = { + [anon_sym_COMMA] = ACTIONS(5784), + [anon_sym_RPAREN] = ACTIONS(5784), + [anon_sym_LPAREN2] = ACTIONS(5784), + [anon_sym_STAR] = ACTIONS(5784), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5792), + [aux_sym_module_statement_token1] = ACTIONS(5792), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5792), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5792), + [aux_sym_subroutine_statement_token1] = ACTIONS(5792), + [aux_sym_function_statement_token1] = ACTIONS(5792), + [aux_sym_procedure_attributes_token1] = ACTIONS(5792), + [aux_sym_procedure_attributes_token3] = ACTIONS(5792), + [aux_sym_use_statement_token2] = ACTIONS(5792), + [anon_sym_COLON_COLON] = ACTIONS(5784), + [aux_sym_implicit_statement_token3] = ACTIONS(5792), + [aux_sym_implicit_statement_token4] = ACTIONS(5792), + [aux_sym_save_statement_token1] = ACTIONS(5792), + [aux_sym_private_statement_token1] = ACTIONS(5792), + [aux_sym_public_statement_token1] = ACTIONS(5792), + [aux_sym_derived_type_definition_token1] = ACTIONS(5792), + [aux_sym_procedure_attribute_token6] = ACTIONS(5792), + [aux_sym_variable_attributes_token2] = ACTIONS(5792), + [aux_sym_variable_attributes_token3] = ACTIONS(5792), + [aux_sym_variable_attributes_token5] = ACTIONS(5792), + [aux_sym__intrinsic_type_token1] = ACTIONS(5792), + [aux_sym__intrinsic_type_token2] = ACTIONS(5792), + [aux_sym__intrinsic_type_token3] = ACTIONS(5792), + [aux_sym__intrinsic_type_token4] = ACTIONS(5792), + [aux_sym__intrinsic_type_token6] = ACTIONS(5792), + [aux_sym__intrinsic_type_token7] = ACTIONS(5792), + [aux_sym__intrinsic_type_token8] = ACTIONS(5792), + [aux_sym__intrinsic_type_token9] = ACTIONS(5792), + [aux_sym__intrinsic_type_token10] = ACTIONS(5792), + [aux_sym_derived_type_token1] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5792), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5792), + [aux_sym_type_qualifier_token1] = ACTIONS(5792), + [aux_sym_type_qualifier_token2] = ACTIONS(5792), + [aux_sym_procedure_qualifier_token1] = ACTIONS(5792), + [aux_sym_procedure_qualifier_token2] = ACTIONS(5792), + [aux_sym_procedure_qualifier_token3] = ACTIONS(5792), + [aux_sym_procedure_qualifier_token4] = ACTIONS(5792), + [aux_sym_stop_statement_token1] = ACTIONS(5792), + [aux_sym_stop_statement_token2] = ACTIONS(5792), + [aux_sym_keyword_statement_token2] = ACTIONS(5792), + [aux_sym_keyword_statement_token3] = ACTIONS(5792), + [aux_sym_data_statement_token1] = ACTIONS(5792), + [aux_sym__inline_if_statement_token1] = ACTIONS(5792), + [aux_sym_end_if_statement_token1] = ACTIONS(5792), + [aux_sym_elseif_clause_token2] = ACTIONS(5792), + [aux_sym_select_case_statement_token1] = ACTIONS(5792), + [aux_sym_block_construct_token1] = ACTIONS(5792), + [aux_sym_format_statement_token1] = ACTIONS(5792), + [aux_sym_inquire_statement_token1] = ACTIONS(5792), + [aux_sym_entry_statement_token1] = ACTIONS(5792), + [aux_sym_null_literal_token1] = ACTIONS(5792), + [aux_sym_coarray_statement_token1] = ACTIONS(5792), + [aux_sym_coarray_statement_token2] = ACTIONS(5792), + [aux_sym_coarray_statement_token6] = ACTIONS(5792), + [aux_sym_coarray_statement_token8] = ACTIONS(5792), + [aux_sym_coarray_statement_token11] = ACTIONS(5792), + [aux_sym_coarray_statement_token12] = ACTIONS(5792), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5792), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5792), + [aux_sym_identifier_token1] = ACTIONS(5792), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3234] = { - [sym__preproc_expression] = STATE(5258), - [sym_preproc_parenthesized_expression] = STATE(5258), - [sym_preproc_defined] = STATE(5258), - [sym_preproc_unary_expression] = STATE(5258), - [sym_preproc_call_expression] = STATE(5258), - [sym_preproc_binary_expression] = STATE(5258), - [sym_number_literal] = STATE(5258), - [sym_string_literal] = STATE(5258), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3126] = { + [sym_assignment] = STATE(5976), + [sym_operator] = STATE(5976), + [sym_defined_io_procedure] = STATE(5976), + [sym__generic_procedure] = STATE(5976), + [sym_identifier] = STATE(5976), + [sym__end_of_statement] = STATE(2866), + [anon_sym_LPAREN2] = ACTIONS(4257), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_assignment_token1] = ACTIONS(5588), + [aux_sym_operator_token1] = ACTIONS(5590), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5592), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5592), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5456), + [aux_sym_use_statement_token2] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(7164), + [aux_sym_implicit_statement_token4] = ACTIONS(5456), + [aux_sym_save_statement_token1] = ACTIONS(5456), + [aux_sym_private_statement_token1] = ACTIONS(5456), + [aux_sym_public_statement_token1] = ACTIONS(5456), + [aux_sym_derived_type_definition_token1] = ACTIONS(5456), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5456), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5456), + [aux_sym_variable_attributes_token3] = ACTIONS(5456), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5456), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5460), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5456), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [anon_sym_SEMI] = ACTIONS(7166), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [sym__external_end_of_statement] = ACTIONS(7166), }, - [3235] = { - [sym__preproc_expression] = STATE(5259), - [sym_preproc_parenthesized_expression] = STATE(5259), - [sym_preproc_defined] = STATE(5259), - [sym_preproc_unary_expression] = STATE(5259), - [sym_preproc_call_expression] = STATE(5259), - [sym_preproc_binary_expression] = STATE(5259), - [sym_number_literal] = STATE(5259), - [sym_string_literal] = STATE(5259), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3127] = { + [anon_sym_COMMA] = ACTIONS(7168), + [anon_sym_RPAREN] = ACTIONS(7168), + [anon_sym_LPAREN2] = ACTIONS(7168), + [anon_sym_STAR] = ACTIONS(7168), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7170), + [aux_sym_module_statement_token1] = ACTIONS(7170), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7170), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7170), + [aux_sym_subroutine_statement_token1] = ACTIONS(7170), + [aux_sym_function_statement_token1] = ACTIONS(7170), + [aux_sym_procedure_attributes_token1] = ACTIONS(7170), + [aux_sym_procedure_attributes_token3] = ACTIONS(7170), + [aux_sym_use_statement_token2] = ACTIONS(7170), + [anon_sym_COLON_COLON] = ACTIONS(7168), + [aux_sym_implicit_statement_token3] = ACTIONS(7170), + [aux_sym_implicit_statement_token4] = ACTIONS(7170), + [aux_sym_save_statement_token1] = ACTIONS(7170), + [aux_sym_private_statement_token1] = ACTIONS(7170), + [aux_sym_public_statement_token1] = ACTIONS(7170), + [aux_sym_derived_type_definition_token1] = ACTIONS(7170), + [aux_sym_procedure_attribute_token6] = ACTIONS(7170), + [aux_sym_variable_attributes_token2] = ACTIONS(7170), + [aux_sym_variable_attributes_token3] = ACTIONS(7170), + [aux_sym_variable_attributes_token5] = ACTIONS(7170), + [aux_sym__intrinsic_type_token1] = ACTIONS(7170), + [aux_sym__intrinsic_type_token2] = ACTIONS(7170), + [aux_sym__intrinsic_type_token3] = ACTIONS(7170), + [aux_sym__intrinsic_type_token4] = ACTIONS(7170), + [aux_sym__intrinsic_type_token6] = ACTIONS(7170), + [aux_sym__intrinsic_type_token7] = ACTIONS(7170), + [aux_sym__intrinsic_type_token8] = ACTIONS(7170), + [aux_sym__intrinsic_type_token9] = ACTIONS(7170), + [aux_sym__intrinsic_type_token10] = ACTIONS(7170), + [aux_sym_derived_type_token1] = ACTIONS(7170), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7170), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7170), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7170), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7170), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7170), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7170), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7170), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7170), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7170), + [aux_sym_type_qualifier_token1] = ACTIONS(7170), + [aux_sym_type_qualifier_token2] = ACTIONS(7170), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7170), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7170), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7170), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7170), + [aux_sym_stop_statement_token1] = ACTIONS(7170), + [aux_sym_stop_statement_token2] = ACTIONS(7170), + [aux_sym_keyword_statement_token2] = ACTIONS(7170), + [aux_sym_keyword_statement_token3] = ACTIONS(7170), + [aux_sym_data_statement_token1] = ACTIONS(7170), + [aux_sym__inline_if_statement_token1] = ACTIONS(7170), + [aux_sym_end_if_statement_token1] = ACTIONS(7170), + [aux_sym_elseif_clause_token2] = ACTIONS(7170), + [aux_sym_select_case_statement_token1] = ACTIONS(7170), + [aux_sym_block_construct_token1] = ACTIONS(7170), + [aux_sym_format_statement_token1] = ACTIONS(7170), + [aux_sym_inquire_statement_token1] = ACTIONS(7170), + [aux_sym_entry_statement_token1] = ACTIONS(7170), + [aux_sym_null_literal_token1] = ACTIONS(7170), + [aux_sym_coarray_statement_token1] = ACTIONS(7170), + [aux_sym_coarray_statement_token2] = ACTIONS(7170), + [aux_sym_coarray_statement_token6] = ACTIONS(7170), + [aux_sym_coarray_statement_token8] = ACTIONS(7170), + [aux_sym_coarray_statement_token11] = ACTIONS(7170), + [aux_sym_coarray_statement_token12] = ACTIONS(7170), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7170), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7170), + [aux_sym_identifier_token1] = ACTIONS(7170), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3236] = { - [sym__preproc_expression] = STATE(5261), - [sym_preproc_parenthesized_expression] = STATE(5261), - [sym_preproc_defined] = STATE(5261), - [sym_preproc_unary_expression] = STATE(5261), - [sym_preproc_call_expression] = STATE(5261), - [sym_preproc_binary_expression] = STATE(5261), - [sym_number_literal] = STATE(5261), - [sym_string_literal] = STATE(5261), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3128] = { + [anon_sym_COMMA] = ACTIONS(7172), + [anon_sym_RPAREN] = ACTIONS(7172), + [anon_sym_LPAREN2] = ACTIONS(7172), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7174), + [aux_sym_module_statement_token1] = ACTIONS(7174), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7174), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7174), + [aux_sym_subroutine_statement_token1] = ACTIONS(7174), + [aux_sym_function_statement_token1] = ACTIONS(7174), + [aux_sym_procedure_attributes_token1] = ACTIONS(7174), + [aux_sym_procedure_attributes_token3] = ACTIONS(7174), + [aux_sym_use_statement_token2] = ACTIONS(7174), + [anon_sym_COLON_COLON] = ACTIONS(7172), + [aux_sym_implicit_statement_token3] = ACTIONS(7174), + [aux_sym_implicit_statement_token4] = ACTIONS(7174), + [aux_sym_save_statement_token1] = ACTIONS(7174), + [aux_sym_private_statement_token1] = ACTIONS(7174), + [aux_sym_public_statement_token1] = ACTIONS(7174), + [aux_sym_derived_type_definition_token1] = ACTIONS(7174), + [aux_sym_procedure_attribute_token6] = ACTIONS(7174), + [aux_sym_variable_attributes_token2] = ACTIONS(7174), + [aux_sym_variable_attributes_token3] = ACTIONS(7174), + [aux_sym_variable_attributes_token5] = ACTIONS(7174), + [aux_sym__intrinsic_type_token1] = ACTIONS(7174), + [aux_sym__intrinsic_type_token2] = ACTIONS(7174), + [aux_sym__intrinsic_type_token3] = ACTIONS(7174), + [aux_sym__intrinsic_type_token4] = ACTIONS(7174), + [aux_sym__intrinsic_type_token6] = ACTIONS(7174), + [aux_sym__intrinsic_type_token7] = ACTIONS(7174), + [aux_sym__intrinsic_type_token8] = ACTIONS(7174), + [aux_sym__intrinsic_type_token9] = ACTIONS(7174), + [aux_sym__intrinsic_type_token10] = ACTIONS(7174), + [aux_sym_derived_type_token1] = ACTIONS(7174), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7174), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7174), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7174), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7174), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7174), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7174), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7174), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7174), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7174), + [aux_sym_type_qualifier_token1] = ACTIONS(7174), + [aux_sym_type_qualifier_token2] = ACTIONS(7174), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7174), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7174), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7174), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7174), + [aux_sym_stop_statement_token1] = ACTIONS(7174), + [aux_sym_stop_statement_token2] = ACTIONS(7174), + [aux_sym_keyword_statement_token2] = ACTIONS(7174), + [aux_sym_keyword_statement_token3] = ACTIONS(7174), + [aux_sym_data_statement_token1] = ACTIONS(7174), + [aux_sym__inline_if_statement_token1] = ACTIONS(7174), + [aux_sym_end_if_statement_token1] = ACTIONS(7174), + [aux_sym_elseif_clause_token2] = ACTIONS(7174), + [aux_sym_select_case_statement_token1] = ACTIONS(7174), + [aux_sym_block_construct_token1] = ACTIONS(7174), + [aux_sym_format_statement_token1] = ACTIONS(7174), + [aux_sym_inquire_statement_token1] = ACTIONS(7174), + [aux_sym_entry_statement_token1] = ACTIONS(7174), + [aux_sym_null_literal_token1] = ACTIONS(7174), + [aux_sym_coarray_statement_token1] = ACTIONS(7174), + [aux_sym_coarray_statement_token2] = ACTIONS(7174), + [aux_sym_coarray_statement_token6] = ACTIONS(7174), + [aux_sym_coarray_statement_token8] = ACTIONS(7174), + [aux_sym_coarray_statement_token11] = ACTIONS(7174), + [aux_sym_coarray_statement_token12] = ACTIONS(7174), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7174), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7174), + [aux_sym_identifier_token1] = ACTIONS(7174), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3237] = { - [sym__preproc_expression] = STATE(5262), - [sym_preproc_parenthesized_expression] = STATE(5262), - [sym_preproc_defined] = STATE(5262), - [sym_preproc_unary_expression] = STATE(5262), - [sym_preproc_call_expression] = STATE(5262), - [sym_preproc_binary_expression] = STATE(5262), - [sym_number_literal] = STATE(5262), - [sym_string_literal] = STATE(5262), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3129] = { + [anon_sym_COMMA] = ACTIONS(7176), + [anon_sym_RPAREN] = ACTIONS(7176), + [anon_sym_LPAREN2] = ACTIONS(7176), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7178), + [aux_sym_module_statement_token1] = ACTIONS(7178), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7178), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7178), + [aux_sym_subroutine_statement_token1] = ACTIONS(7178), + [aux_sym_function_statement_token1] = ACTIONS(7178), + [aux_sym_procedure_attributes_token1] = ACTIONS(7178), + [aux_sym_procedure_attributes_token3] = ACTIONS(7178), + [aux_sym_use_statement_token2] = ACTIONS(7178), + [anon_sym_COLON_COLON] = ACTIONS(7176), + [aux_sym_implicit_statement_token3] = ACTIONS(7178), + [aux_sym_implicit_statement_token4] = ACTIONS(7178), + [aux_sym_save_statement_token1] = ACTIONS(7178), + [aux_sym_private_statement_token1] = ACTIONS(7178), + [aux_sym_public_statement_token1] = ACTIONS(7178), + [aux_sym_derived_type_definition_token1] = ACTIONS(7178), + [aux_sym_procedure_attribute_token6] = ACTIONS(7178), + [aux_sym_variable_attributes_token2] = ACTIONS(7178), + [aux_sym_variable_attributes_token3] = ACTIONS(7178), + [aux_sym_variable_attributes_token5] = ACTIONS(7178), + [aux_sym__intrinsic_type_token1] = ACTIONS(7178), + [aux_sym__intrinsic_type_token2] = ACTIONS(7178), + [aux_sym__intrinsic_type_token3] = ACTIONS(7178), + [aux_sym__intrinsic_type_token4] = ACTIONS(7178), + [aux_sym__intrinsic_type_token6] = ACTIONS(7178), + [aux_sym__intrinsic_type_token7] = ACTIONS(7178), + [aux_sym__intrinsic_type_token8] = ACTIONS(7178), + [aux_sym__intrinsic_type_token9] = ACTIONS(7178), + [aux_sym__intrinsic_type_token10] = ACTIONS(7178), + [aux_sym_derived_type_token1] = ACTIONS(7178), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7178), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7178), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7178), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7178), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7178), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7178), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7178), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7178), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7178), + [aux_sym_type_qualifier_token1] = ACTIONS(7178), + [aux_sym_type_qualifier_token2] = ACTIONS(7178), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7178), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7178), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7178), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7178), + [aux_sym_stop_statement_token1] = ACTIONS(7178), + [aux_sym_stop_statement_token2] = ACTIONS(7178), + [aux_sym_keyword_statement_token2] = ACTIONS(7178), + [aux_sym_keyword_statement_token3] = ACTIONS(7178), + [aux_sym_data_statement_token1] = ACTIONS(7178), + [aux_sym__inline_if_statement_token1] = ACTIONS(7178), + [aux_sym_end_if_statement_token1] = ACTIONS(7178), + [aux_sym_elseif_clause_token2] = ACTIONS(7178), + [aux_sym_select_case_statement_token1] = ACTIONS(7178), + [aux_sym_block_construct_token1] = ACTIONS(7178), + [aux_sym_format_statement_token1] = ACTIONS(7178), + [aux_sym_inquire_statement_token1] = ACTIONS(7178), + [aux_sym_entry_statement_token1] = ACTIONS(7178), + [aux_sym_null_literal_token1] = ACTIONS(7178), + [aux_sym_coarray_statement_token1] = ACTIONS(7178), + [aux_sym_coarray_statement_token2] = ACTIONS(7178), + [aux_sym_coarray_statement_token6] = ACTIONS(7178), + [aux_sym_coarray_statement_token8] = ACTIONS(7178), + [aux_sym_coarray_statement_token11] = ACTIONS(7178), + [aux_sym_coarray_statement_token12] = ACTIONS(7178), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7178), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7178), + [aux_sym_identifier_token1] = ACTIONS(7178), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3238] = { - [sym__preproc_expression] = STATE(5263), - [sym_preproc_parenthesized_expression] = STATE(5263), - [sym_preproc_defined] = STATE(5263), - [sym_preproc_unary_expression] = STATE(5263), - [sym_preproc_call_expression] = STATE(5263), - [sym_preproc_binary_expression] = STATE(5263), - [sym_number_literal] = STATE(5263), - [sym_string_literal] = STATE(5263), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3130] = { + [anon_sym_COMMA] = ACTIONS(7180), + [anon_sym_RPAREN] = ACTIONS(7180), + [anon_sym_LPAREN2] = ACTIONS(7180), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7183), + [aux_sym_module_statement_token1] = ACTIONS(7183), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7183), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7183), + [aux_sym_subroutine_statement_token1] = ACTIONS(7183), + [aux_sym_function_statement_token1] = ACTIONS(7183), + [aux_sym_procedure_attributes_token1] = ACTIONS(7183), + [aux_sym_procedure_attributes_token3] = ACTIONS(7183), + [aux_sym_use_statement_token2] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7180), + [aux_sym_implicit_statement_token3] = ACTIONS(7183), + [aux_sym_implicit_statement_token4] = ACTIONS(7183), + [aux_sym_save_statement_token1] = ACTIONS(7183), + [aux_sym_private_statement_token1] = ACTIONS(7183), + [aux_sym_public_statement_token1] = ACTIONS(7183), + [aux_sym_derived_type_definition_token1] = ACTIONS(7183), + [aux_sym_procedure_attribute_token6] = ACTIONS(7183), + [aux_sym_variable_attributes_token2] = ACTIONS(7183), + [aux_sym_variable_attributes_token3] = ACTIONS(7183), + [aux_sym_variable_attributes_token5] = ACTIONS(7183), + [aux_sym__intrinsic_type_token1] = ACTIONS(7183), + [aux_sym__intrinsic_type_token2] = ACTIONS(7183), + [aux_sym__intrinsic_type_token3] = ACTIONS(7183), + [aux_sym__intrinsic_type_token4] = ACTIONS(7183), + [aux_sym__intrinsic_type_token6] = ACTIONS(7183), + [aux_sym__intrinsic_type_token7] = ACTIONS(7183), + [aux_sym__intrinsic_type_token8] = ACTIONS(7183), + [aux_sym__intrinsic_type_token9] = ACTIONS(7183), + [aux_sym__intrinsic_type_token10] = ACTIONS(7183), + [aux_sym_derived_type_token1] = ACTIONS(7183), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7183), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7183), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7183), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7183), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7183), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7183), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7183), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7183), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7183), + [aux_sym_type_qualifier_token1] = ACTIONS(7183), + [aux_sym_type_qualifier_token2] = ACTIONS(7183), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7183), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7183), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7183), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7183), + [aux_sym_stop_statement_token1] = ACTIONS(7183), + [aux_sym_stop_statement_token2] = ACTIONS(7183), + [aux_sym_keyword_statement_token2] = ACTIONS(7183), + [aux_sym_keyword_statement_token3] = ACTIONS(7183), + [aux_sym_data_statement_token1] = ACTIONS(7183), + [aux_sym__inline_if_statement_token1] = ACTIONS(7183), + [aux_sym_end_if_statement_token1] = ACTIONS(7183), + [aux_sym_elseif_clause_token2] = ACTIONS(7183), + [aux_sym_select_case_statement_token1] = ACTIONS(7183), + [aux_sym_block_construct_token1] = ACTIONS(7183), + [aux_sym_format_statement_token1] = ACTIONS(7183), + [aux_sym_inquire_statement_token1] = ACTIONS(7183), + [aux_sym_entry_statement_token1] = ACTIONS(7183), + [aux_sym_null_literal_token1] = ACTIONS(7183), + [aux_sym_coarray_statement_token1] = ACTIONS(7183), + [aux_sym_coarray_statement_token2] = ACTIONS(7183), + [aux_sym_coarray_statement_token6] = ACTIONS(7183), + [aux_sym_coarray_statement_token8] = ACTIONS(7183), + [aux_sym_coarray_statement_token11] = ACTIONS(7183), + [aux_sym_coarray_statement_token12] = ACTIONS(7183), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7183), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7183), + [aux_sym_identifier_token1] = ACTIONS(7183), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3239] = { - [sym__preproc_expression] = STATE(5264), - [sym_preproc_parenthesized_expression] = STATE(5264), - [sym_preproc_defined] = STATE(5264), - [sym_preproc_unary_expression] = STATE(5264), - [sym_preproc_call_expression] = STATE(5264), - [sym_preproc_binary_expression] = STATE(5264), - [sym_number_literal] = STATE(5264), - [sym_string_literal] = STATE(5264), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3131] = { + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7188), + [aux_sym_module_statement_token1] = ACTIONS(7188), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7188), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7188), + [aux_sym_subroutine_statement_token1] = ACTIONS(7188), + [aux_sym_function_statement_token1] = ACTIONS(7188), + [aux_sym_procedure_attributes_token1] = ACTIONS(7188), + [aux_sym_procedure_attributes_token3] = ACTIONS(7188), + [aux_sym_use_statement_token2] = ACTIONS(7188), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [aux_sym_implicit_statement_token3] = ACTIONS(7188), + [aux_sym_implicit_statement_token4] = ACTIONS(7188), + [aux_sym_save_statement_token1] = ACTIONS(7188), + [aux_sym_private_statement_token1] = ACTIONS(7188), + [aux_sym_public_statement_token1] = ACTIONS(7188), + [aux_sym_derived_type_definition_token1] = ACTIONS(7188), + [aux_sym_procedure_attribute_token6] = ACTIONS(7188), + [aux_sym_variable_attributes_token2] = ACTIONS(7188), + [aux_sym_variable_attributes_token3] = ACTIONS(7188), + [aux_sym_variable_attributes_token5] = ACTIONS(7188), + [aux_sym__intrinsic_type_token1] = ACTIONS(7188), + [aux_sym__intrinsic_type_token2] = ACTIONS(7188), + [aux_sym__intrinsic_type_token3] = ACTIONS(7188), + [aux_sym__intrinsic_type_token4] = ACTIONS(7188), + [aux_sym__intrinsic_type_token6] = ACTIONS(7188), + [aux_sym__intrinsic_type_token7] = ACTIONS(7188), + [aux_sym__intrinsic_type_token8] = ACTIONS(7188), + [aux_sym__intrinsic_type_token9] = ACTIONS(7188), + [aux_sym__intrinsic_type_token10] = ACTIONS(7188), + [aux_sym_derived_type_token1] = ACTIONS(7188), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7188), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7188), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7188), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7188), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7188), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7188), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7188), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7188), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7188), + [aux_sym_type_qualifier_token1] = ACTIONS(7188), + [aux_sym_type_qualifier_token2] = ACTIONS(7188), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7188), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7188), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7188), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7188), + [aux_sym_stop_statement_token1] = ACTIONS(7188), + [aux_sym_stop_statement_token2] = ACTIONS(7188), + [aux_sym_keyword_statement_token2] = ACTIONS(7188), + [aux_sym_keyword_statement_token3] = ACTIONS(7188), + [aux_sym_data_statement_token1] = ACTIONS(7188), + [aux_sym__inline_if_statement_token1] = ACTIONS(7188), + [aux_sym_end_if_statement_token1] = ACTIONS(7188), + [aux_sym_elseif_clause_token2] = ACTIONS(7188), + [aux_sym_select_case_statement_token1] = ACTIONS(7188), + [aux_sym_block_construct_token1] = ACTIONS(7188), + [aux_sym_format_statement_token1] = ACTIONS(7188), + [aux_sym_inquire_statement_token1] = ACTIONS(7188), + [aux_sym_entry_statement_token1] = ACTIONS(7188), + [aux_sym_null_literal_token1] = ACTIONS(7188), + [aux_sym_coarray_statement_token1] = ACTIONS(7188), + [aux_sym_coarray_statement_token2] = ACTIONS(7188), + [aux_sym_coarray_statement_token6] = ACTIONS(7188), + [aux_sym_coarray_statement_token8] = ACTIONS(7188), + [aux_sym_coarray_statement_token11] = ACTIONS(7188), + [aux_sym_coarray_statement_token12] = ACTIONS(7188), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7188), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7188), + [aux_sym_identifier_token1] = ACTIONS(7188), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3240] = { - [sym__preproc_expression] = STATE(5272), - [sym_preproc_parenthesized_expression] = STATE(5272), - [sym_preproc_defined] = STATE(5272), - [sym_preproc_unary_expression] = STATE(5272), - [sym_preproc_call_expression] = STATE(5272), - [sym_preproc_binary_expression] = STATE(5272), - [sym_number_literal] = STATE(5272), - [sym_string_literal] = STATE(5272), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3132] = { + [anon_sym_COMMA] = ACTIONS(7190), + [anon_sym_RPAREN] = ACTIONS(7190), + [anon_sym_LPAREN2] = ACTIONS(7190), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7192), + [aux_sym_module_statement_token1] = ACTIONS(7192), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7192), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7192), + [aux_sym_subroutine_statement_token1] = ACTIONS(7192), + [aux_sym_function_statement_token1] = ACTIONS(7192), + [aux_sym_procedure_attributes_token1] = ACTIONS(7192), + [aux_sym_procedure_attributes_token3] = ACTIONS(7192), + [aux_sym_use_statement_token2] = ACTIONS(7192), + [anon_sym_COLON_COLON] = ACTIONS(7190), + [aux_sym_implicit_statement_token3] = ACTIONS(7192), + [aux_sym_implicit_statement_token4] = ACTIONS(7192), + [aux_sym_save_statement_token1] = ACTIONS(7192), + [aux_sym_private_statement_token1] = ACTIONS(7192), + [aux_sym_public_statement_token1] = ACTIONS(7192), + [aux_sym_derived_type_definition_token1] = ACTIONS(7192), + [aux_sym_procedure_attribute_token6] = ACTIONS(7192), + [aux_sym_variable_attributes_token2] = ACTIONS(7192), + [aux_sym_variable_attributes_token3] = ACTIONS(7192), + [aux_sym_variable_attributes_token5] = ACTIONS(7192), + [aux_sym__intrinsic_type_token1] = ACTIONS(7192), + [aux_sym__intrinsic_type_token2] = ACTIONS(7192), + [aux_sym__intrinsic_type_token3] = ACTIONS(7192), + [aux_sym__intrinsic_type_token4] = ACTIONS(7192), + [aux_sym__intrinsic_type_token6] = ACTIONS(7192), + [aux_sym__intrinsic_type_token7] = ACTIONS(7192), + [aux_sym__intrinsic_type_token8] = ACTIONS(7192), + [aux_sym__intrinsic_type_token9] = ACTIONS(7192), + [aux_sym__intrinsic_type_token10] = ACTIONS(7192), + [aux_sym_derived_type_token1] = ACTIONS(7192), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7192), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7192), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7192), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7192), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7192), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7192), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7192), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7192), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7192), + [aux_sym_type_qualifier_token1] = ACTIONS(7192), + [aux_sym_type_qualifier_token2] = ACTIONS(7192), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7192), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7192), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7192), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7192), + [aux_sym_stop_statement_token1] = ACTIONS(7192), + [aux_sym_stop_statement_token2] = ACTIONS(7192), + [aux_sym_keyword_statement_token2] = ACTIONS(7192), + [aux_sym_keyword_statement_token3] = ACTIONS(7192), + [aux_sym_data_statement_token1] = ACTIONS(7192), + [aux_sym__inline_if_statement_token1] = ACTIONS(7192), + [aux_sym_end_if_statement_token1] = ACTIONS(7192), + [aux_sym_elseif_clause_token2] = ACTIONS(7192), + [aux_sym_select_case_statement_token1] = ACTIONS(7192), + [aux_sym_block_construct_token1] = ACTIONS(7192), + [aux_sym_format_statement_token1] = ACTIONS(7192), + [aux_sym_inquire_statement_token1] = ACTIONS(7192), + [aux_sym_entry_statement_token1] = ACTIONS(7192), + [aux_sym_null_literal_token1] = ACTIONS(7192), + [aux_sym_coarray_statement_token1] = ACTIONS(7192), + [aux_sym_coarray_statement_token2] = ACTIONS(7192), + [aux_sym_coarray_statement_token6] = ACTIONS(7192), + [aux_sym_coarray_statement_token8] = ACTIONS(7192), + [aux_sym_coarray_statement_token11] = ACTIONS(7192), + [aux_sym_coarray_statement_token12] = ACTIONS(7192), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7192), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7192), + [aux_sym_identifier_token1] = ACTIONS(7192), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3241] = { - [sym__preproc_expression] = STATE(5276), - [sym_preproc_parenthesized_expression] = STATE(5276), - [sym_preproc_defined] = STATE(5276), - [sym_preproc_unary_expression] = STATE(5276), - [sym_preproc_call_expression] = STATE(5276), - [sym_preproc_binary_expression] = STATE(5276), - [sym_number_literal] = STATE(5276), - [sym_string_literal] = STATE(5276), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3133] = { + [anon_sym_COMMA] = ACTIONS(7194), + [anon_sym_RPAREN] = ACTIONS(7194), + [anon_sym_LPAREN2] = ACTIONS(7194), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7196), + [aux_sym_module_statement_token1] = ACTIONS(7196), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7196), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7196), + [aux_sym_subroutine_statement_token1] = ACTIONS(7196), + [aux_sym_function_statement_token1] = ACTIONS(7196), + [aux_sym_procedure_attributes_token1] = ACTIONS(7196), + [aux_sym_procedure_attributes_token3] = ACTIONS(7196), + [aux_sym_use_statement_token2] = ACTIONS(7196), + [anon_sym_COLON_COLON] = ACTIONS(7194), + [aux_sym_implicit_statement_token3] = ACTIONS(7196), + [aux_sym_implicit_statement_token4] = ACTIONS(7196), + [aux_sym_save_statement_token1] = ACTIONS(7196), + [aux_sym_private_statement_token1] = ACTIONS(7196), + [aux_sym_public_statement_token1] = ACTIONS(7196), + [aux_sym_derived_type_definition_token1] = ACTIONS(7196), + [aux_sym_procedure_attribute_token6] = ACTIONS(7196), + [aux_sym_variable_attributes_token2] = ACTIONS(7196), + [aux_sym_variable_attributes_token3] = ACTIONS(7196), + [aux_sym_variable_attributes_token5] = ACTIONS(7196), + [aux_sym__intrinsic_type_token1] = ACTIONS(7196), + [aux_sym__intrinsic_type_token2] = ACTIONS(7196), + [aux_sym__intrinsic_type_token3] = ACTIONS(7196), + [aux_sym__intrinsic_type_token4] = ACTIONS(7196), + [aux_sym__intrinsic_type_token6] = ACTIONS(7196), + [aux_sym__intrinsic_type_token7] = ACTIONS(7196), + [aux_sym__intrinsic_type_token8] = ACTIONS(7196), + [aux_sym__intrinsic_type_token9] = ACTIONS(7196), + [aux_sym__intrinsic_type_token10] = ACTIONS(7196), + [aux_sym_derived_type_token1] = ACTIONS(7196), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7196), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7196), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7196), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7196), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7196), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7196), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7196), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7196), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7196), + [aux_sym_type_qualifier_token1] = ACTIONS(7196), + [aux_sym_type_qualifier_token2] = ACTIONS(7196), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7196), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7196), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7196), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7196), + [aux_sym_stop_statement_token1] = ACTIONS(7196), + [aux_sym_stop_statement_token2] = ACTIONS(7196), + [aux_sym_keyword_statement_token2] = ACTIONS(7196), + [aux_sym_keyword_statement_token3] = ACTIONS(7196), + [aux_sym_data_statement_token1] = ACTIONS(7196), + [aux_sym__inline_if_statement_token1] = ACTIONS(7196), + [aux_sym_end_if_statement_token1] = ACTIONS(7196), + [aux_sym_elseif_clause_token2] = ACTIONS(7196), + [aux_sym_select_case_statement_token1] = ACTIONS(7196), + [aux_sym_block_construct_token1] = ACTIONS(7196), + [aux_sym_format_statement_token1] = ACTIONS(7196), + [aux_sym_inquire_statement_token1] = ACTIONS(7196), + [aux_sym_entry_statement_token1] = ACTIONS(7196), + [aux_sym_null_literal_token1] = ACTIONS(7196), + [aux_sym_coarray_statement_token1] = ACTIONS(7196), + [aux_sym_coarray_statement_token2] = ACTIONS(7196), + [aux_sym_coarray_statement_token6] = ACTIONS(7196), + [aux_sym_coarray_statement_token8] = ACTIONS(7196), + [aux_sym_coarray_statement_token11] = ACTIONS(7196), + [aux_sym_coarray_statement_token12] = ACTIONS(7196), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7196), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7196), + [aux_sym_identifier_token1] = ACTIONS(7196), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3242] = { - [sym__preproc_expression] = STATE(5277), - [sym_preproc_parenthesized_expression] = STATE(5277), - [sym_preproc_defined] = STATE(5277), - [sym_preproc_unary_expression] = STATE(5277), - [sym_preproc_call_expression] = STATE(5277), - [sym_preproc_binary_expression] = STATE(5277), - [sym_number_literal] = STATE(5277), - [sym_string_literal] = STATE(5277), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3134] = { + [anon_sym_COMMA] = ACTIONS(4317), + [anon_sym_RPAREN] = ACTIONS(4317), + [aux_sym_preproc_if_token2] = ACTIONS(4317), + [aux_sym_preproc_else_token1] = ACTIONS(4317), + [aux_sym_preproc_elif_token1] = ACTIONS(4315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4317), + [anon_sym_LPAREN2] = ACTIONS(4317), + [sym_preproc_comment] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_SLASH] = ACTIONS(4315), + [anon_sym_PERCENT] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4317), + [anon_sym_LT_EQ] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4315), + [aux_sym_end_program_statement_token1] = ACTIONS(4315), + [aux_sym_module_statement_token1] = ACTIONS(4317), + [anon_sym_COLON] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4315), + [aux_sym_subroutine_statement_token1] = ACTIONS(4317), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4317), + [aux_sym_function_statement_token1] = ACTIONS(4317), + [aux_sym_procedure_attributes_token1] = ACTIONS(4317), + [anon_sym_EQ_GT] = ACTIONS(4317), + [aux_sym_implicit_statement_token3] = ACTIONS(4317), + [aux_sym_import_statement_token1] = ACTIONS(4317), + [aux_sym_procedure_kind_token1] = ACTIONS(4317), + [aux_sym_procedure_kind_token2] = ACTIONS(4317), + [aux_sym_procedure_kind_token3] = ACTIONS(4317), + [aux_sym_procedure_kind_token4] = ACTIONS(4317), + [aux_sym__intrinsic_type_token1] = ACTIONS(4317), + [aux_sym__intrinsic_type_token2] = ACTIONS(4317), + [aux_sym__intrinsic_type_token3] = ACTIONS(4317), + [aux_sym__intrinsic_type_token4] = ACTIONS(4315), + [aux_sym__intrinsic_type_token6] = ACTIONS(4317), + [aux_sym__intrinsic_type_token7] = ACTIONS(4317), + [aux_sym__intrinsic_type_token8] = ACTIONS(4317), + [aux_sym__intrinsic_type_token9] = ACTIONS(4317), + [aux_sym__intrinsic_type_token10] = ACTIONS(4317), + [aux_sym_derived_type_token1] = ACTIONS(4317), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4317), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4317), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4317), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4317), + [anon_sym_GT_GT_GT] = ACTIONS(4317), + [aux_sym_select_case_statement_token2] = ACTIONS(4317), + [aux_sym_select_rank_statement_token1] = ACTIONS(4317), + [aux_sym_enumerator_statement_token1] = ACTIONS(4317), + [aux_sym_end_enum_statement_token1] = ACTIONS(4317), + [aux_sym_logical_expression_token1] = ACTIONS(4317), + [aux_sym_logical_expression_token2] = ACTIONS(4317), + [aux_sym_logical_expression_token3] = ACTIONS(4317), + [aux_sym_logical_expression_token4] = ACTIONS(4317), + [aux_sym_relational_expression_token1] = ACTIONS(4317), + [aux_sym_relational_expression_token2] = ACTIONS(4317), + [aux_sym_relational_expression_token3] = ACTIONS(4317), + [aux_sym_relational_expression_token4] = ACTIONS(4317), + [aux_sym_relational_expression_token5] = ACTIONS(4317), + [anon_sym_SLASH_EQ] = ACTIONS(4317), + [aux_sym_relational_expression_token6] = ACTIONS(4317), + [anon_sym_SLASH_SLASH] = ACTIONS(4317), + [anon_sym_STAR_STAR] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(4315), + [anon_sym_SLASH_RPAREN] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_RBRACK] = ACTIONS(4317), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3243] = { - [sym__preproc_expression] = STATE(5278), - [sym_preproc_parenthesized_expression] = STATE(5278), - [sym_preproc_defined] = STATE(5278), - [sym_preproc_unary_expression] = STATE(5278), - [sym_preproc_call_expression] = STATE(5278), - [sym_preproc_binary_expression] = STATE(5278), - [sym_number_literal] = STATE(5278), - [sym_string_literal] = STATE(5278), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3135] = { + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_RPAREN] = ACTIONS(4351), + [aux_sym_preproc_if_token2] = ACTIONS(4351), + [aux_sym_preproc_else_token1] = ACTIONS(4351), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4351), + [anon_sym_LPAREN2] = ACTIONS(4351), + [sym_preproc_comment] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_SLASH] = ACTIONS(4349), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4351), + [anon_sym_GT] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4349), + [aux_sym_end_program_statement_token1] = ACTIONS(4349), + [aux_sym_module_statement_token1] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(4351), + [anon_sym_EQ] = ACTIONS(4349), + [aux_sym_subroutine_statement_token1] = ACTIONS(4351), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4351), + [aux_sym_function_statement_token1] = ACTIONS(4351), + [aux_sym_procedure_attributes_token1] = ACTIONS(4351), + [anon_sym_EQ_GT] = ACTIONS(4351), + [aux_sym_implicit_statement_token3] = ACTIONS(4351), + [aux_sym_import_statement_token1] = ACTIONS(4351), + [aux_sym_procedure_kind_token1] = ACTIONS(4351), + [aux_sym_procedure_kind_token2] = ACTIONS(4351), + [aux_sym_procedure_kind_token3] = ACTIONS(4351), + [aux_sym_procedure_kind_token4] = ACTIONS(4351), + [aux_sym__intrinsic_type_token1] = ACTIONS(4351), + [aux_sym__intrinsic_type_token2] = ACTIONS(4351), + [aux_sym__intrinsic_type_token3] = ACTIONS(4351), + [aux_sym__intrinsic_type_token4] = ACTIONS(4349), + [aux_sym__intrinsic_type_token6] = ACTIONS(4351), + [aux_sym__intrinsic_type_token7] = ACTIONS(4351), + [aux_sym__intrinsic_type_token8] = ACTIONS(4351), + [aux_sym__intrinsic_type_token9] = ACTIONS(4351), + [aux_sym__intrinsic_type_token10] = ACTIONS(4351), + [aux_sym_derived_type_token1] = ACTIONS(4351), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4351), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4351), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4351), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4351), + [anon_sym_GT_GT_GT] = ACTIONS(4351), + [aux_sym_select_case_statement_token2] = ACTIONS(4351), + [aux_sym_select_rank_statement_token1] = ACTIONS(4351), + [aux_sym_enumerator_statement_token1] = ACTIONS(4351), + [aux_sym_end_enum_statement_token1] = ACTIONS(4351), + [aux_sym_logical_expression_token1] = ACTIONS(4351), + [aux_sym_logical_expression_token2] = ACTIONS(4351), + [aux_sym_logical_expression_token3] = ACTIONS(4351), + [aux_sym_logical_expression_token4] = ACTIONS(4351), + [aux_sym_relational_expression_token1] = ACTIONS(4351), + [aux_sym_relational_expression_token2] = ACTIONS(4351), + [aux_sym_relational_expression_token3] = ACTIONS(4351), + [aux_sym_relational_expression_token4] = ACTIONS(4351), + [aux_sym_relational_expression_token5] = ACTIONS(4351), + [anon_sym_SLASH_EQ] = ACTIONS(4351), + [aux_sym_relational_expression_token6] = ACTIONS(4351), + [anon_sym_SLASH_SLASH] = ACTIONS(4351), + [anon_sym_STAR_STAR] = ACTIONS(4351), + [anon_sym_DOT] = ACTIONS(4349), + [anon_sym_SLASH_RPAREN] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_RBRACK] = ACTIONS(4351), + [sym_comment] = ACTIONS(21), + }, + [3136] = { + [anon_sym_COMMA] = ACTIONS(4347), + [anon_sym_RPAREN] = ACTIONS(4347), + [aux_sym_preproc_if_token2] = ACTIONS(4347), + [aux_sym_preproc_else_token1] = ACTIONS(4347), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4347), + [anon_sym_LPAREN2] = ACTIONS(4347), + [sym_preproc_comment] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4345), + [aux_sym_end_program_statement_token1] = ACTIONS(4345), + [aux_sym_module_statement_token1] = ACTIONS(4347), + [anon_sym_COLON] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4345), + [aux_sym_subroutine_statement_token1] = ACTIONS(4347), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4347), + [aux_sym_function_statement_token1] = ACTIONS(4347), + [aux_sym_procedure_attributes_token1] = ACTIONS(4347), + [anon_sym_EQ_GT] = ACTIONS(4347), + [aux_sym_implicit_statement_token3] = ACTIONS(4347), + [aux_sym_import_statement_token1] = ACTIONS(4347), + [aux_sym_procedure_kind_token1] = ACTIONS(4347), + [aux_sym_procedure_kind_token2] = ACTIONS(4347), + [aux_sym_procedure_kind_token3] = ACTIONS(4347), + [aux_sym_procedure_kind_token4] = ACTIONS(4347), + [aux_sym__intrinsic_type_token1] = ACTIONS(4347), + [aux_sym__intrinsic_type_token2] = ACTIONS(4347), + [aux_sym__intrinsic_type_token3] = ACTIONS(4347), + [aux_sym__intrinsic_type_token4] = ACTIONS(4345), + [aux_sym__intrinsic_type_token6] = ACTIONS(4347), + [aux_sym__intrinsic_type_token7] = ACTIONS(4347), + [aux_sym__intrinsic_type_token8] = ACTIONS(4347), + [aux_sym__intrinsic_type_token9] = ACTIONS(4347), + [aux_sym__intrinsic_type_token10] = ACTIONS(4347), + [aux_sym_derived_type_token1] = ACTIONS(4347), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4347), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4347), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4347), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4347), + [anon_sym_GT_GT_GT] = ACTIONS(4347), + [aux_sym_select_case_statement_token2] = ACTIONS(4347), + [aux_sym_select_rank_statement_token1] = ACTIONS(4347), + [aux_sym_enumerator_statement_token1] = ACTIONS(4347), + [aux_sym_end_enum_statement_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token1] = ACTIONS(4347), + [aux_sym_logical_expression_token2] = ACTIONS(4347), + [aux_sym_logical_expression_token3] = ACTIONS(4347), + [aux_sym_logical_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token1] = ACTIONS(4347), + [aux_sym_relational_expression_token2] = ACTIONS(4347), + [aux_sym_relational_expression_token3] = ACTIONS(4347), + [aux_sym_relational_expression_token4] = ACTIONS(4347), + [aux_sym_relational_expression_token5] = ACTIONS(4347), + [anon_sym_SLASH_EQ] = ACTIONS(4347), + [aux_sym_relational_expression_token6] = ACTIONS(4347), + [anon_sym_SLASH_SLASH] = ACTIONS(4347), + [anon_sym_STAR_STAR] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_SLASH_RPAREN] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_RBRACK] = ACTIONS(4347), + [sym_comment] = ACTIONS(21), + }, + [3137] = { + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [aux_sym_preproc_if_token2] = ACTIONS(4257), + [aux_sym_preproc_else_token1] = ACTIONS(4257), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4257), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4257), + [anon_sym_LPAREN2] = ACTIONS(4257), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_module_statement_token1] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_subroutine_statement_token1] = ACTIONS(4257), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4257), + [aux_sym_function_statement_token1] = ACTIONS(4257), + [aux_sym_procedure_attributes_token1] = ACTIONS(4257), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token3] = ACTIONS(4257), + [aux_sym_import_statement_token1] = ACTIONS(4257), + [aux_sym_procedure_kind_token1] = ACTIONS(4257), + [aux_sym_procedure_kind_token2] = ACTIONS(4257), + [aux_sym_procedure_kind_token3] = ACTIONS(4257), + [aux_sym_procedure_kind_token4] = ACTIONS(4257), + [aux_sym__intrinsic_type_token1] = ACTIONS(4257), + [aux_sym__intrinsic_type_token2] = ACTIONS(4257), + [aux_sym__intrinsic_type_token3] = ACTIONS(4257), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4257), + [aux_sym__intrinsic_type_token7] = ACTIONS(4257), + [aux_sym__intrinsic_type_token8] = ACTIONS(4257), + [aux_sym__intrinsic_type_token9] = ACTIONS(4257), + [aux_sym__intrinsic_type_token10] = ACTIONS(4257), + [aux_sym_derived_type_token1] = ACTIONS(4257), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), + [anon_sym_GT_GT_GT] = ACTIONS(4257), + [aux_sym_select_case_statement_token2] = ACTIONS(4257), + [aux_sym_select_rank_statement_token1] = ACTIONS(4257), + [aux_sym_enumerator_statement_token1] = ACTIONS(4257), + [aux_sym_end_enum_statement_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_SLASH_RPAREN] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_RBRACK] = ACTIONS(4257), + [sym_comment] = ACTIONS(21), + }, + [3138] = { + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [aux_sym_preproc_if_token2] = ACTIONS(4257), + [aux_sym_preproc_else_token1] = ACTIONS(4257), + [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4257), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4257), + [anon_sym_LPAREN2] = ACTIONS(4257), + [sym_preproc_comment] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_EQ_EQ] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [aux_sym_end_program_statement_token1] = ACTIONS(4255), + [aux_sym_module_statement_token1] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_EQ] = ACTIONS(4255), + [aux_sym_subroutine_statement_token1] = ACTIONS(4257), + [aux_sym_module_procedure_statement_token1] = ACTIONS(4257), + [aux_sym_function_statement_token1] = ACTIONS(4257), + [aux_sym_procedure_attributes_token1] = ACTIONS(4257), + [anon_sym_EQ_GT] = ACTIONS(4257), + [aux_sym_implicit_statement_token3] = ACTIONS(4257), + [aux_sym_import_statement_token1] = ACTIONS(4257), + [aux_sym_procedure_kind_token1] = ACTIONS(4257), + [aux_sym_procedure_kind_token2] = ACTIONS(4257), + [aux_sym_procedure_kind_token3] = ACTIONS(4257), + [aux_sym_procedure_kind_token4] = ACTIONS(4257), + [aux_sym__intrinsic_type_token1] = ACTIONS(4257), + [aux_sym__intrinsic_type_token2] = ACTIONS(4257), + [aux_sym__intrinsic_type_token3] = ACTIONS(4257), + [aux_sym__intrinsic_type_token4] = ACTIONS(4255), + [aux_sym__intrinsic_type_token6] = ACTIONS(4257), + [aux_sym__intrinsic_type_token7] = ACTIONS(4257), + [aux_sym__intrinsic_type_token8] = ACTIONS(4257), + [aux_sym__intrinsic_type_token9] = ACTIONS(4257), + [aux_sym__intrinsic_type_token10] = ACTIONS(4257), + [aux_sym_derived_type_token1] = ACTIONS(4257), + [aux_sym_procedure_qualifier_token1] = ACTIONS(4257), + [aux_sym_procedure_qualifier_token2] = ACTIONS(4257), + [aux_sym_procedure_qualifier_token3] = ACTIONS(4257), + [aux_sym_procedure_qualifier_token4] = ACTIONS(4257), + [anon_sym_GT_GT_GT] = ACTIONS(4257), + [aux_sym_select_case_statement_token2] = ACTIONS(4257), + [aux_sym_select_rank_statement_token1] = ACTIONS(4257), + [aux_sym_enumerator_statement_token1] = ACTIONS(4257), + [aux_sym_end_enum_statement_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token1] = ACTIONS(4257), + [aux_sym_logical_expression_token2] = ACTIONS(4257), + [aux_sym_logical_expression_token3] = ACTIONS(4257), + [aux_sym_logical_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token1] = ACTIONS(4257), + [aux_sym_relational_expression_token2] = ACTIONS(4257), + [aux_sym_relational_expression_token3] = ACTIONS(4257), + [aux_sym_relational_expression_token4] = ACTIONS(4257), + [aux_sym_relational_expression_token5] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [aux_sym_relational_expression_token6] = ACTIONS(4257), + [anon_sym_SLASH_SLASH] = ACTIONS(4257), + [anon_sym_STAR_STAR] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_SLASH_RPAREN] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_RBRACK] = ACTIONS(4257), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3244] = { - [sym__preproc_expression] = STATE(5279), - [sym_preproc_parenthesized_expression] = STATE(5279), - [sym_preproc_defined] = STATE(5279), - [sym_preproc_unary_expression] = STATE(5279), - [sym_preproc_call_expression] = STATE(5279), - [sym_preproc_binary_expression] = STATE(5279), - [sym_number_literal] = STATE(5279), - [sym_string_literal] = STATE(5279), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3139] = { + [sym__preproc_expression] = STATE(5176), + [sym_preproc_parenthesized_expression] = STATE(5176), + [sym_preproc_defined] = STATE(5176), + [sym_preproc_unary_expression] = STATE(5176), + [sym_preproc_call_expression] = STATE(5176), + [sym_preproc_binary_expression] = STATE(5176), + [sym_number_literal] = STATE(5176), + [sym_string_literal] = STATE(5176), + [sym_identifier] = STATE(5164), + [anon_sym_RPAREN] = ACTIONS(7198), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -459511,79 +451918,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3245] = { - [sym__preproc_expression] = STATE(5280), - [sym_preproc_parenthesized_expression] = STATE(5280), - [sym_preproc_defined] = STATE(5280), - [sym_preproc_unary_expression] = STATE(5280), - [sym_preproc_call_expression] = STATE(5280), - [sym_preproc_binary_expression] = STATE(5280), - [sym_number_literal] = STATE(5280), - [sym_string_literal] = STATE(5280), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [3140] = { + [anon_sym_COMMA] = ACTIONS(7222), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7224), + [aux_sym_module_statement_token1] = ACTIONS(7224), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7224), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7224), + [aux_sym_subroutine_statement_token1] = ACTIONS(7224), + [aux_sym_function_statement_token1] = ACTIONS(7224), + [aux_sym_procedure_attributes_token1] = ACTIONS(7224), + [aux_sym_procedure_attributes_token3] = ACTIONS(7224), + [aux_sym_use_statement_token2] = ACTIONS(7224), + [anon_sym_COLON_COLON] = ACTIONS(7222), + [aux_sym_implicit_statement_token3] = ACTIONS(7224), + [aux_sym_implicit_statement_token4] = ACTIONS(7224), + [aux_sym_save_statement_token1] = ACTIONS(7224), + [aux_sym_private_statement_token1] = ACTIONS(7224), + [aux_sym_public_statement_token1] = ACTIONS(7224), + [aux_sym_derived_type_definition_token1] = ACTIONS(7224), + [aux_sym_procedure_attribute_token6] = ACTIONS(7224), + [aux_sym_variable_attributes_token2] = ACTIONS(7224), + [aux_sym_variable_attributes_token3] = ACTIONS(7224), + [aux_sym_variable_attributes_token5] = ACTIONS(7224), + [aux_sym__intrinsic_type_token1] = ACTIONS(7224), + [aux_sym__intrinsic_type_token2] = ACTIONS(7224), + [aux_sym__intrinsic_type_token3] = ACTIONS(7224), + [aux_sym__intrinsic_type_token4] = ACTIONS(7224), + [aux_sym__intrinsic_type_token6] = ACTIONS(7224), + [aux_sym__intrinsic_type_token7] = ACTIONS(7224), + [aux_sym__intrinsic_type_token8] = ACTIONS(7224), + [aux_sym__intrinsic_type_token9] = ACTIONS(7224), + [aux_sym__intrinsic_type_token10] = ACTIONS(7224), + [aux_sym_derived_type_token1] = ACTIONS(7224), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7224), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7224), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7224), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7224), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7224), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7224), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7224), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7224), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7224), + [aux_sym_type_qualifier_token1] = ACTIONS(7224), + [aux_sym_type_qualifier_token2] = ACTIONS(7224), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7224), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7224), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7224), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7224), + [aux_sym_stop_statement_token1] = ACTIONS(7224), + [aux_sym_stop_statement_token2] = ACTIONS(7224), + [aux_sym_keyword_statement_token2] = ACTIONS(7224), + [aux_sym_keyword_statement_token3] = ACTIONS(7224), + [aux_sym_data_statement_token1] = ACTIONS(7224), + [aux_sym__inline_if_statement_token1] = ACTIONS(7224), + [aux_sym_end_if_statement_token1] = ACTIONS(7224), + [aux_sym_elseif_clause_token2] = ACTIONS(7224), + [aux_sym_select_case_statement_token1] = ACTIONS(7224), + [aux_sym_block_construct_token1] = ACTIONS(7224), + [aux_sym_format_statement_token1] = ACTIONS(7224), + [aux_sym_inquire_statement_token1] = ACTIONS(7224), + [aux_sym_entry_statement_token1] = ACTIONS(7224), + [aux_sym_null_literal_token1] = ACTIONS(7224), + [aux_sym_coarray_statement_token1] = ACTIONS(7224), + [aux_sym_coarray_statement_token2] = ACTIONS(7224), + [aux_sym_coarray_statement_token6] = ACTIONS(7224), + [aux_sym_coarray_statement_token8] = ACTIONS(7224), + [aux_sym_coarray_statement_token11] = ACTIONS(7224), + [aux_sym_coarray_statement_token12] = ACTIONS(7224), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7224), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7224), + [aux_sym_identifier_token1] = ACTIONS(7224), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3246] = { + [3141] = { + [sym__preproc_expression] = STATE(5342), + [sym_preproc_parenthesized_expression] = STATE(5342), + [sym_preproc_defined] = STATE(5342), + [sym_preproc_unary_expression] = STATE(5342), + [sym_preproc_call_expression] = STATE(5342), + [sym_preproc_binary_expression] = STATE(5342), + [sym_number_literal] = STATE(5342), + [sym_string_literal] = STATE(5342), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7230), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3142] = { [sym__preproc_expression] = STATE(5349), [sym_preproc_parenthesized_expression] = STATE(5349), [sym_preproc_defined] = STATE(5349), @@ -459592,9 +452073,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_binary_expression] = STATE(5349), [sym_number_literal] = STATE(5349), [sym_string_literal] = STATE(5349), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7250), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3143] = { + [sym__preproc_expression] = STATE(5341), + [sym_preproc_parenthesized_expression] = STATE(5341), + [sym_preproc_defined] = STATE(5341), + [sym_preproc_unary_expression] = STATE(5341), + [sym_preproc_call_expression] = STATE(5341), + [sym_preproc_binary_expression] = STATE(5341), + [sym_number_literal] = STATE(5341), + [sym_string_literal] = STATE(5341), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7252), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3144] = { + [anon_sym_COMMA] = ACTIONS(7254), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7256), + [aux_sym_module_statement_token1] = ACTIONS(7256), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7256), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7256), + [aux_sym_subroutine_statement_token1] = ACTIONS(7256), + [aux_sym_function_statement_token1] = ACTIONS(7256), + [aux_sym_procedure_attributes_token1] = ACTIONS(7256), + [aux_sym_procedure_attributes_token3] = ACTIONS(7256), + [aux_sym_use_statement_token2] = ACTIONS(7256), + [anon_sym_COLON_COLON] = ACTIONS(7254), + [aux_sym_implicit_statement_token3] = ACTIONS(7256), + [aux_sym_implicit_statement_token4] = ACTIONS(7256), + [aux_sym_save_statement_token1] = ACTIONS(7256), + [aux_sym_private_statement_token1] = ACTIONS(7256), + [aux_sym_public_statement_token1] = ACTIONS(7256), + [aux_sym_derived_type_definition_token1] = ACTIONS(7256), + [aux_sym_procedure_attribute_token6] = ACTIONS(7256), + [aux_sym_variable_attributes_token2] = ACTIONS(7256), + [aux_sym_variable_attributes_token3] = ACTIONS(7256), + [aux_sym_variable_attributes_token5] = ACTIONS(7256), + [aux_sym__intrinsic_type_token1] = ACTIONS(7256), + [aux_sym__intrinsic_type_token2] = ACTIONS(7256), + [aux_sym__intrinsic_type_token3] = ACTIONS(7256), + [aux_sym__intrinsic_type_token4] = ACTIONS(7256), + [aux_sym__intrinsic_type_token6] = ACTIONS(7256), + [aux_sym__intrinsic_type_token7] = ACTIONS(7256), + [aux_sym__intrinsic_type_token8] = ACTIONS(7256), + [aux_sym__intrinsic_type_token9] = ACTIONS(7256), + [aux_sym__intrinsic_type_token10] = ACTIONS(7256), + [aux_sym_derived_type_token1] = ACTIONS(7256), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7256), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7256), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7256), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7256), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7256), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7256), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7256), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7256), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7256), + [aux_sym_type_qualifier_token1] = ACTIONS(7256), + [aux_sym_type_qualifier_token2] = ACTIONS(7256), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7256), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7256), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7256), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7256), + [aux_sym_stop_statement_token1] = ACTIONS(7256), + [aux_sym_stop_statement_token2] = ACTIONS(7256), + [aux_sym_keyword_statement_token2] = ACTIONS(7256), + [aux_sym_keyword_statement_token3] = ACTIONS(7256), + [aux_sym_data_statement_token1] = ACTIONS(7256), + [aux_sym__inline_if_statement_token1] = ACTIONS(7256), + [aux_sym_end_if_statement_token1] = ACTIONS(7256), + [aux_sym_elseif_clause_token2] = ACTIONS(7256), + [aux_sym_select_case_statement_token1] = ACTIONS(7256), + [aux_sym_block_construct_token1] = ACTIONS(7256), + [aux_sym_format_statement_token1] = ACTIONS(7256), + [aux_sym_inquire_statement_token1] = ACTIONS(7256), + [aux_sym_entry_statement_token1] = ACTIONS(7256), + [aux_sym_null_literal_token1] = ACTIONS(7256), + [aux_sym_coarray_statement_token1] = ACTIONS(7256), + [aux_sym_coarray_statement_token2] = ACTIONS(7256), + [aux_sym_coarray_statement_token6] = ACTIONS(7256), + [aux_sym_coarray_statement_token8] = ACTIONS(7256), + [aux_sym_coarray_statement_token11] = ACTIONS(7256), + [aux_sym_coarray_statement_token12] = ACTIONS(7256), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7256), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7256), + [aux_sym_identifier_token1] = ACTIONS(7256), + [sym_comment] = ACTIONS(21), + }, + [3145] = { + [anon_sym_COMMA] = ACTIONS(7258), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7260), + [aux_sym_module_statement_token1] = ACTIONS(7260), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7260), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7260), + [aux_sym_subroutine_statement_token1] = ACTIONS(7260), + [aux_sym_function_statement_token1] = ACTIONS(7260), + [aux_sym_procedure_attributes_token1] = ACTIONS(7260), + [aux_sym_procedure_attributes_token3] = ACTIONS(7260), + [aux_sym_use_statement_token2] = ACTIONS(7260), + [anon_sym_COLON_COLON] = ACTIONS(7258), + [aux_sym_implicit_statement_token3] = ACTIONS(7260), + [aux_sym_implicit_statement_token4] = ACTIONS(7260), + [aux_sym_save_statement_token1] = ACTIONS(7260), + [aux_sym_private_statement_token1] = ACTIONS(7260), + [aux_sym_public_statement_token1] = ACTIONS(7260), + [aux_sym_derived_type_definition_token1] = ACTIONS(7260), + [aux_sym_procedure_attribute_token6] = ACTIONS(7260), + [aux_sym_variable_attributes_token2] = ACTIONS(7260), + [aux_sym_variable_attributes_token3] = ACTIONS(7260), + [aux_sym_variable_attributes_token5] = ACTIONS(7260), + [aux_sym__intrinsic_type_token1] = ACTIONS(7260), + [aux_sym__intrinsic_type_token2] = ACTIONS(7260), + [aux_sym__intrinsic_type_token3] = ACTIONS(7260), + [aux_sym__intrinsic_type_token4] = ACTIONS(7260), + [aux_sym__intrinsic_type_token6] = ACTIONS(7260), + [aux_sym__intrinsic_type_token7] = ACTIONS(7260), + [aux_sym__intrinsic_type_token8] = ACTIONS(7260), + [aux_sym__intrinsic_type_token9] = ACTIONS(7260), + [aux_sym__intrinsic_type_token10] = ACTIONS(7260), + [aux_sym_derived_type_token1] = ACTIONS(7260), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7260), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7260), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7260), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7260), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7260), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7260), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7260), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7260), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7260), + [aux_sym_type_qualifier_token1] = ACTIONS(7260), + [aux_sym_type_qualifier_token2] = ACTIONS(7260), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7260), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7260), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7260), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7260), + [aux_sym_stop_statement_token1] = ACTIONS(7260), + [aux_sym_stop_statement_token2] = ACTIONS(7260), + [aux_sym_keyword_statement_token2] = ACTIONS(7260), + [aux_sym_keyword_statement_token3] = ACTIONS(7260), + [aux_sym_data_statement_token1] = ACTIONS(7260), + [aux_sym__inline_if_statement_token1] = ACTIONS(7260), + [aux_sym_end_if_statement_token1] = ACTIONS(7260), + [aux_sym_elseif_clause_token2] = ACTIONS(7260), + [aux_sym_select_case_statement_token1] = ACTIONS(7260), + [aux_sym_block_construct_token1] = ACTIONS(7260), + [aux_sym_format_statement_token1] = ACTIONS(7260), + [aux_sym_inquire_statement_token1] = ACTIONS(7260), + [aux_sym_entry_statement_token1] = ACTIONS(7260), + [aux_sym_null_literal_token1] = ACTIONS(7260), + [aux_sym_coarray_statement_token1] = ACTIONS(7260), + [aux_sym_coarray_statement_token2] = ACTIONS(7260), + [aux_sym_coarray_statement_token6] = ACTIONS(7260), + [aux_sym_coarray_statement_token8] = ACTIONS(7260), + [aux_sym_coarray_statement_token11] = ACTIONS(7260), + [aux_sym_coarray_statement_token12] = ACTIONS(7260), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7260), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7260), + [aux_sym_identifier_token1] = ACTIONS(7260), + [sym_comment] = ACTIONS(21), + }, + [3146] = { + [anon_sym_COMMA] = ACTIONS(6550), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6552), + [aux_sym_module_statement_token1] = ACTIONS(6552), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6552), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6552), + [aux_sym_subroutine_statement_token1] = ACTIONS(6552), + [aux_sym_function_statement_token1] = ACTIONS(6552), + [aux_sym_procedure_attributes_token1] = ACTIONS(6552), + [aux_sym_procedure_attributes_token3] = ACTIONS(6552), + [aux_sym_use_statement_token2] = ACTIONS(6552), + [anon_sym_COLON_COLON] = ACTIONS(6550), + [aux_sym_implicit_statement_token3] = ACTIONS(6552), + [aux_sym_implicit_statement_token4] = ACTIONS(6552), + [aux_sym_save_statement_token1] = ACTIONS(6552), + [aux_sym_private_statement_token1] = ACTIONS(6552), + [aux_sym_public_statement_token1] = ACTIONS(6552), + [aux_sym_derived_type_definition_token1] = ACTIONS(6552), + [aux_sym_procedure_attribute_token6] = ACTIONS(6552), + [aux_sym_variable_attributes_token2] = ACTIONS(6552), + [aux_sym_variable_attributes_token3] = ACTIONS(6552), + [aux_sym_variable_attributes_token5] = ACTIONS(6552), + [aux_sym__intrinsic_type_token1] = ACTIONS(6552), + [aux_sym__intrinsic_type_token2] = ACTIONS(6552), + [aux_sym__intrinsic_type_token3] = ACTIONS(6552), + [aux_sym__intrinsic_type_token4] = ACTIONS(6552), + [aux_sym__intrinsic_type_token6] = ACTIONS(6552), + [aux_sym__intrinsic_type_token7] = ACTIONS(6552), + [aux_sym__intrinsic_type_token8] = ACTIONS(6552), + [aux_sym__intrinsic_type_token9] = ACTIONS(6552), + [aux_sym__intrinsic_type_token10] = ACTIONS(6552), + [aux_sym_derived_type_token1] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6552), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6552), + [aux_sym_type_qualifier_token1] = ACTIONS(6552), + [aux_sym_type_qualifier_token2] = ACTIONS(6552), + [aux_sym_procedure_qualifier_token1] = ACTIONS(6552), + [aux_sym_procedure_qualifier_token2] = ACTIONS(6552), + [aux_sym_procedure_qualifier_token3] = ACTIONS(6552), + [aux_sym_procedure_qualifier_token4] = ACTIONS(6552), + [aux_sym_stop_statement_token1] = ACTIONS(6552), + [aux_sym_stop_statement_token2] = ACTIONS(6552), + [aux_sym_keyword_statement_token2] = ACTIONS(6552), + [aux_sym_keyword_statement_token3] = ACTIONS(6552), + [aux_sym_data_statement_token1] = ACTIONS(6552), + [aux_sym__inline_if_statement_token1] = ACTIONS(6552), + [aux_sym_end_if_statement_token1] = ACTIONS(6552), + [aux_sym_elseif_clause_token2] = ACTIONS(6552), + [aux_sym_select_case_statement_token1] = ACTIONS(6552), + [aux_sym_block_construct_token1] = ACTIONS(6552), + [aux_sym_format_statement_token1] = ACTIONS(6552), + [aux_sym_inquire_statement_token1] = ACTIONS(6552), + [aux_sym_entry_statement_token1] = ACTIONS(6552), + [aux_sym_null_literal_token1] = ACTIONS(6552), + [aux_sym_coarray_statement_token1] = ACTIONS(6552), + [aux_sym_coarray_statement_token2] = ACTIONS(6552), + [aux_sym_coarray_statement_token6] = ACTIONS(6552), + [aux_sym_coarray_statement_token8] = ACTIONS(6552), + [aux_sym_coarray_statement_token11] = ACTIONS(6552), + [aux_sym_coarray_statement_token12] = ACTIONS(6552), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6552), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6552), + [aux_sym_identifier_token1] = ACTIONS(6552), + [sym_comment] = ACTIONS(21), + }, + [3147] = { + [sym__preproc_expression] = STATE(5208), + [sym_preproc_parenthesized_expression] = STATE(5208), + [sym_preproc_defined] = STATE(5208), + [sym_preproc_unary_expression] = STATE(5208), + [sym_preproc_call_expression] = STATE(5208), + [sym_preproc_binary_expression] = STATE(5208), + [sym_number_literal] = STATE(5208), + [sym_string_literal] = STATE(5208), + [sym_identifier] = STATE(5164), + [anon_sym_RPAREN] = ACTIONS(7262), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -459655,234 +452502,1114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3247] = { - [sym__preproc_expression] = STATE(5281), - [sym_preproc_parenthesized_expression] = STATE(5281), - [sym_preproc_defined] = STATE(5281), - [sym_preproc_unary_expression] = STATE(5281), - [sym_preproc_call_expression] = STATE(5281), - [sym_preproc_binary_expression] = STATE(5281), - [sym_number_literal] = STATE(5281), - [sym_string_literal] = STATE(5281), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3148] = { + [sym__preproc_expression] = STATE(5370), + [sym_preproc_parenthesized_expression] = STATE(5370), + [sym_preproc_defined] = STATE(5370), + [sym_preproc_unary_expression] = STATE(5370), + [sym_preproc_call_expression] = STATE(5370), + [sym_preproc_binary_expression] = STATE(5370), + [sym_number_literal] = STATE(5370), + [sym_string_literal] = STATE(5370), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7264), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3149] = { + [sym__argument_list] = STATE(2529), + [sym_argument_list] = STATE(3366), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LPAREN2] = ACTIONS(6644), + [anon_sym_STAR] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5594), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5594), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5594), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5594), + [aux_sym_use_statement_token2] = ACTIONS(5594), + [anon_sym_COLON_COLON] = ACTIONS(6646), + [aux_sym_implicit_statement_token4] = ACTIONS(5594), + [aux_sym_save_statement_token1] = ACTIONS(5594), + [aux_sym_private_statement_token1] = ACTIONS(5594), + [aux_sym_public_statement_token1] = ACTIONS(5594), + [aux_sym_derived_type_definition_token1] = ACTIONS(5594), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5594), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5594), + [aux_sym_variable_attributes_token3] = ACTIONS(5594), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5594), + [aux_sym__intrinsic_type_token1] = ACTIONS(5594), + [aux_sym__intrinsic_type_token3] = ACTIONS(5594), + [aux_sym__intrinsic_type_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5594), + [aux_sym_type_qualifier_token2] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(4257), + [aux_sym_stop_statement_token1] = ACTIONS(5594), + [aux_sym_stop_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token3] = ACTIONS(5594), + [aux_sym_data_statement_token1] = ACTIONS(5594), + [aux_sym__inline_if_statement_token1] = ACTIONS(5594), + [aux_sym_end_if_statement_token1] = ACTIONS(5594), + [aux_sym_elseif_clause_token2] = ACTIONS(5594), + [aux_sym_select_case_statement_token1] = ACTIONS(5594), + [aux_sym_block_construct_token1] = ACTIONS(5594), + [aux_sym_format_statement_token1] = ACTIONS(5594), + [aux_sym_inquire_statement_token1] = ACTIONS(5594), + [aux_sym_entry_statement_token1] = ACTIONS(5594), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token2] = ACTIONS(5594), + [aux_sym_coarray_statement_token6] = ACTIONS(5594), + [aux_sym_coarray_statement_token8] = ACTIONS(5594), + [aux_sym_coarray_statement_token11] = ACTIONS(5594), + [aux_sym_coarray_statement_token12] = ACTIONS(5594), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5594), + [aux_sym_identifier_token1] = ACTIONS(5594), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(4257), + }, + [3150] = { + [sym__preproc_expression] = STATE(5359), + [sym_preproc_parenthesized_expression] = STATE(5359), + [sym_preproc_defined] = STATE(5359), + [sym_preproc_unary_expression] = STATE(5359), + [sym_preproc_call_expression] = STATE(5359), + [sym_preproc_binary_expression] = STATE(5359), + [sym_number_literal] = STATE(5359), + [sym_string_literal] = STATE(5359), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7266), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3151] = { + [anon_sym_COMMA] = ACTIONS(7268), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7270), + [aux_sym_module_statement_token1] = ACTIONS(7270), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7270), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7270), + [aux_sym_subroutine_statement_token1] = ACTIONS(7270), + [aux_sym_function_statement_token1] = ACTIONS(7270), + [aux_sym_procedure_attributes_token1] = ACTIONS(7270), + [aux_sym_procedure_attributes_token3] = ACTIONS(7270), + [aux_sym_use_statement_token2] = ACTIONS(7270), + [anon_sym_COLON_COLON] = ACTIONS(7268), + [aux_sym_implicit_statement_token3] = ACTIONS(7270), + [aux_sym_implicit_statement_token4] = ACTIONS(7270), + [aux_sym_save_statement_token1] = ACTIONS(7270), + [aux_sym_private_statement_token1] = ACTIONS(7270), + [aux_sym_public_statement_token1] = ACTIONS(7270), + [aux_sym_derived_type_definition_token1] = ACTIONS(7270), + [aux_sym_procedure_attribute_token6] = ACTIONS(7270), + [aux_sym_variable_attributes_token2] = ACTIONS(7270), + [aux_sym_variable_attributes_token3] = ACTIONS(7270), + [aux_sym_variable_attributes_token5] = ACTIONS(7270), + [aux_sym__intrinsic_type_token1] = ACTIONS(7270), + [aux_sym__intrinsic_type_token2] = ACTIONS(7270), + [aux_sym__intrinsic_type_token3] = ACTIONS(7270), + [aux_sym__intrinsic_type_token4] = ACTIONS(7270), + [aux_sym__intrinsic_type_token6] = ACTIONS(7270), + [aux_sym__intrinsic_type_token7] = ACTIONS(7270), + [aux_sym__intrinsic_type_token8] = ACTIONS(7270), + [aux_sym__intrinsic_type_token9] = ACTIONS(7270), + [aux_sym__intrinsic_type_token10] = ACTIONS(7270), + [aux_sym_derived_type_token1] = ACTIONS(7270), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7270), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7270), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7270), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7270), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7270), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7270), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7270), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7270), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7270), + [aux_sym_type_qualifier_token1] = ACTIONS(7270), + [aux_sym_type_qualifier_token2] = ACTIONS(7270), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7270), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7270), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7270), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7270), + [aux_sym_stop_statement_token1] = ACTIONS(7270), + [aux_sym_stop_statement_token2] = ACTIONS(7270), + [aux_sym_keyword_statement_token2] = ACTIONS(7270), + [aux_sym_keyword_statement_token3] = ACTIONS(7270), + [aux_sym_data_statement_token1] = ACTIONS(7270), + [aux_sym__inline_if_statement_token1] = ACTIONS(7270), + [aux_sym_end_if_statement_token1] = ACTIONS(7270), + [aux_sym_elseif_clause_token2] = ACTIONS(7270), + [aux_sym_select_case_statement_token1] = ACTIONS(7270), + [aux_sym_block_construct_token1] = ACTIONS(7270), + [aux_sym_format_statement_token1] = ACTIONS(7270), + [aux_sym_inquire_statement_token1] = ACTIONS(7270), + [aux_sym_entry_statement_token1] = ACTIONS(7270), + [aux_sym_null_literal_token1] = ACTIONS(7270), + [aux_sym_coarray_statement_token1] = ACTIONS(7270), + [aux_sym_coarray_statement_token2] = ACTIONS(7270), + [aux_sym_coarray_statement_token6] = ACTIONS(7270), + [aux_sym_coarray_statement_token8] = ACTIONS(7270), + [aux_sym_coarray_statement_token11] = ACTIONS(7270), + [aux_sym_coarray_statement_token12] = ACTIONS(7270), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7270), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7270), + [aux_sym_identifier_token1] = ACTIONS(7270), + [sym_comment] = ACTIONS(21), + }, + [3152] = { + [sym__preproc_expression] = STATE(5352), + [sym_preproc_parenthesized_expression] = STATE(5352), + [sym_preproc_defined] = STATE(5352), + [sym_preproc_unary_expression] = STATE(5352), + [sym_preproc_call_expression] = STATE(5352), + [sym_preproc_binary_expression] = STATE(5352), + [sym_number_literal] = STATE(5352), + [sym_string_literal] = STATE(5352), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7272), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3153] = { + [sym__preproc_expression] = STATE(5338), + [sym_preproc_parenthesized_expression] = STATE(5338), + [sym_preproc_defined] = STATE(5338), + [sym_preproc_unary_expression] = STATE(5338), + [sym_preproc_call_expression] = STATE(5338), + [sym_preproc_binary_expression] = STATE(5338), + [sym_number_literal] = STATE(5338), + [sym_string_literal] = STATE(5338), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7274), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3154] = { + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6602), + [aux_sym_module_statement_token1] = ACTIONS(6602), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6602), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6602), + [aux_sym_subroutine_statement_token1] = ACTIONS(6602), + [aux_sym_function_statement_token1] = ACTIONS(6602), + [aux_sym_procedure_attributes_token1] = ACTIONS(6602), + [aux_sym_procedure_attributes_token3] = ACTIONS(6602), + [aux_sym_use_statement_token2] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6600), + [aux_sym_implicit_statement_token3] = ACTIONS(6602), + [aux_sym_implicit_statement_token4] = ACTIONS(6602), + [aux_sym_save_statement_token1] = ACTIONS(6602), + [aux_sym_private_statement_token1] = ACTIONS(6602), + [aux_sym_public_statement_token1] = ACTIONS(6602), + [aux_sym_derived_type_definition_token1] = ACTIONS(6602), + [aux_sym_procedure_attribute_token6] = ACTIONS(6602), + [aux_sym_variable_attributes_token2] = ACTIONS(6602), + [aux_sym_variable_attributes_token3] = ACTIONS(6602), + [aux_sym_variable_attributes_token5] = ACTIONS(6602), + [aux_sym__intrinsic_type_token1] = ACTIONS(6602), + [aux_sym__intrinsic_type_token2] = ACTIONS(6602), + [aux_sym__intrinsic_type_token3] = ACTIONS(6602), + [aux_sym__intrinsic_type_token4] = ACTIONS(6602), + [aux_sym__intrinsic_type_token6] = ACTIONS(6602), + [aux_sym__intrinsic_type_token7] = ACTIONS(6602), + [aux_sym__intrinsic_type_token8] = ACTIONS(6602), + [aux_sym__intrinsic_type_token9] = ACTIONS(6602), + [aux_sym__intrinsic_type_token10] = ACTIONS(6602), + [aux_sym_derived_type_token1] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6602), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6602), + [aux_sym_type_qualifier_token1] = ACTIONS(6602), + [aux_sym_type_qualifier_token2] = ACTIONS(6602), + [aux_sym_procedure_qualifier_token1] = ACTIONS(6602), + [aux_sym_procedure_qualifier_token2] = ACTIONS(6602), + [aux_sym_procedure_qualifier_token3] = ACTIONS(6602), + [aux_sym_procedure_qualifier_token4] = ACTIONS(6602), + [aux_sym_stop_statement_token1] = ACTIONS(6602), + [aux_sym_stop_statement_token2] = ACTIONS(6602), + [aux_sym_keyword_statement_token2] = ACTIONS(6602), + [aux_sym_keyword_statement_token3] = ACTIONS(6602), + [aux_sym_data_statement_token1] = ACTIONS(6602), + [aux_sym__inline_if_statement_token1] = ACTIONS(6602), + [aux_sym_end_if_statement_token1] = ACTIONS(6602), + [aux_sym_elseif_clause_token2] = ACTIONS(6602), + [aux_sym_select_case_statement_token1] = ACTIONS(6602), + [aux_sym_block_construct_token1] = ACTIONS(6602), + [aux_sym_format_statement_token1] = ACTIONS(6602), + [aux_sym_inquire_statement_token1] = ACTIONS(6602), + [aux_sym_entry_statement_token1] = ACTIONS(6602), + [aux_sym_null_literal_token1] = ACTIONS(6602), + [aux_sym_coarray_statement_token1] = ACTIONS(6602), + [aux_sym_coarray_statement_token2] = ACTIONS(6602), + [aux_sym_coarray_statement_token6] = ACTIONS(6602), + [aux_sym_coarray_statement_token8] = ACTIONS(6602), + [aux_sym_coarray_statement_token11] = ACTIONS(6602), + [aux_sym_coarray_statement_token12] = ACTIONS(6602), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6602), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6602), + [aux_sym_identifier_token1] = ACTIONS(6602), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3248] = { - [sym__preproc_expression] = STATE(5286), - [sym_preproc_parenthesized_expression] = STATE(5286), - [sym_preproc_defined] = STATE(5286), - [sym_preproc_unary_expression] = STATE(5286), - [sym_preproc_call_expression] = STATE(5286), - [sym_preproc_binary_expression] = STATE(5286), - [sym_number_literal] = STATE(5286), - [sym_string_literal] = STATE(5286), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3155] = { + [sym__preproc_expression] = STATE(5362), + [sym_preproc_parenthesized_expression] = STATE(5362), + [sym_preproc_defined] = STATE(5362), + [sym_preproc_unary_expression] = STATE(5362), + [sym_preproc_call_expression] = STATE(5362), + [sym_preproc_binary_expression] = STATE(5362), + [sym_number_literal] = STATE(5362), + [sym_string_literal] = STATE(5362), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7276), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3156] = { + [sym_language_binding] = STATE(3272), + [sym_variable_attributes] = STATE(3272), + [sym__variable_declarator] = STATE(6176), + [sym_sized_declarator] = STATE(3394), + [sym__standalone_type_qualifier] = STATE(3367), + [sym_coarray_declarator] = STATE(6176), + [sym_identifier] = STATE(3285), + [aux_sym_variable_modification_repeat1] = STATE(3272), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5454), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5456), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5456), + [aux_sym_language_binding_token1] = ACTIONS(45), + [aux_sym_procedure_attributes_token1] = ACTIONS(750), + [aux_sym_procedure_attributes_token3] = ACTIONS(7278), + [aux_sym_use_statement_token2] = ACTIONS(7278), + [anon_sym_COLON_COLON] = ACTIONS(7280), + [aux_sym_implicit_statement_token4] = ACTIONS(7278), + [aux_sym_save_statement_token1] = ACTIONS(7278), + [aux_sym_private_statement_token1] = ACTIONS(7278), + [aux_sym_public_statement_token1] = ACTIONS(7278), + [aux_sym_derived_type_definition_token1] = ACTIONS(7278), + [aux_sym_abstract_specifier_token1] = ACTIONS(73), + [aux_sym_procedure_attribute_token6] = ACTIONS(7278), + [aux_sym_variable_attributes_token1] = ACTIONS(73), + [aux_sym_variable_attributes_token2] = ACTIONS(7278), + [aux_sym_variable_attributes_token3] = ACTIONS(7278), + [aux_sym_variable_attributes_token4] = ACTIONS(73), + [aux_sym_variable_attributes_token5] = ACTIONS(7278), + [aux_sym__intrinsic_type_token1] = ACTIONS(5456), + [aux_sym__intrinsic_type_token3] = ACTIONS(5456), + [aux_sym__intrinsic_type_token4] = ACTIONS(5458), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7278), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7278), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(85), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7282), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7278), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(89), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7278), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7278), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(73), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7278), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7278), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7278), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(73), + [aux_sym_type_qualifier_token1] = ACTIONS(5456), + [aux_sym_type_qualifier_token2] = ACTIONS(5456), + [aux_sym_stop_statement_token1] = ACTIONS(5456), + [aux_sym_stop_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token2] = ACTIONS(5456), + [aux_sym_keyword_statement_token3] = ACTIONS(5456), + [aux_sym_data_statement_token1] = ACTIONS(5456), + [aux_sym__inline_if_statement_token1] = ACTIONS(5456), + [aux_sym_end_if_statement_token1] = ACTIONS(5456), + [aux_sym_elseif_clause_token2] = ACTIONS(5456), + [aux_sym_select_case_statement_token1] = ACTIONS(5462), + [aux_sym_block_construct_token1] = ACTIONS(5456), + [aux_sym_format_statement_token1] = ACTIONS(5456), + [aux_sym_inquire_statement_token1] = ACTIONS(5456), + [aux_sym_entry_statement_token1] = ACTIONS(5456), + [aux_sym_null_literal_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_statement_token2] = ACTIONS(5456), + [aux_sym_coarray_statement_token6] = ACTIONS(5456), + [aux_sym_coarray_statement_token8] = ACTIONS(5456), + [aux_sym_coarray_statement_token11] = ACTIONS(5456), + [aux_sym_coarray_statement_token12] = ACTIONS(5456), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5456), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5456), + [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3249] = { - [sym__preproc_expression] = STATE(5287), - [sym_preproc_parenthesized_expression] = STATE(5287), - [sym_preproc_defined] = STATE(5287), - [sym_preproc_unary_expression] = STATE(5287), - [sym_preproc_call_expression] = STATE(5287), - [sym_preproc_binary_expression] = STATE(5287), - [sym_number_literal] = STATE(5287), - [sym_string_literal] = STATE(5287), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3157] = { + [sym__preproc_expression] = STATE(5334), + [sym_preproc_parenthesized_expression] = STATE(5334), + [sym_preproc_defined] = STATE(5334), + [sym_preproc_unary_expression] = STATE(5334), + [sym_preproc_call_expression] = STATE(5334), + [sym_preproc_binary_expression] = STATE(5334), + [sym_number_literal] = STATE(5334), + [sym_string_literal] = STATE(5334), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7284), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3158] = { + [anon_sym_COMMA] = ACTIONS(7286), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7288), + [aux_sym_module_statement_token1] = ACTIONS(7288), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7288), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7288), + [aux_sym_subroutine_statement_token1] = ACTIONS(7288), + [aux_sym_function_statement_token1] = ACTIONS(7288), + [aux_sym_procedure_attributes_token1] = ACTIONS(7288), + [aux_sym_procedure_attributes_token3] = ACTIONS(7288), + [aux_sym_use_statement_token2] = ACTIONS(7288), + [anon_sym_COLON_COLON] = ACTIONS(7286), + [aux_sym_implicit_statement_token3] = ACTIONS(7288), + [aux_sym_implicit_statement_token4] = ACTIONS(7288), + [aux_sym_save_statement_token1] = ACTIONS(7288), + [aux_sym_private_statement_token1] = ACTIONS(7288), + [aux_sym_public_statement_token1] = ACTIONS(7288), + [aux_sym_derived_type_definition_token1] = ACTIONS(7288), + [aux_sym_procedure_attribute_token6] = ACTIONS(7288), + [aux_sym_variable_attributes_token2] = ACTIONS(7288), + [aux_sym_variable_attributes_token3] = ACTIONS(7288), + [aux_sym_variable_attributes_token5] = ACTIONS(7288), + [aux_sym__intrinsic_type_token1] = ACTIONS(7288), + [aux_sym__intrinsic_type_token2] = ACTIONS(7288), + [aux_sym__intrinsic_type_token3] = ACTIONS(7288), + [aux_sym__intrinsic_type_token4] = ACTIONS(7288), + [aux_sym__intrinsic_type_token6] = ACTIONS(7288), + [aux_sym__intrinsic_type_token7] = ACTIONS(7288), + [aux_sym__intrinsic_type_token8] = ACTIONS(7288), + [aux_sym__intrinsic_type_token9] = ACTIONS(7288), + [aux_sym__intrinsic_type_token10] = ACTIONS(7288), + [aux_sym_derived_type_token1] = ACTIONS(7288), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7288), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7288), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7288), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7288), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7288), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7288), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7288), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7288), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7288), + [aux_sym_type_qualifier_token1] = ACTIONS(7288), + [aux_sym_type_qualifier_token2] = ACTIONS(7288), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7288), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7288), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7288), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7288), + [aux_sym_stop_statement_token1] = ACTIONS(7288), + [aux_sym_stop_statement_token2] = ACTIONS(7288), + [aux_sym_keyword_statement_token2] = ACTIONS(7288), + [aux_sym_keyword_statement_token3] = ACTIONS(7288), + [aux_sym_data_statement_token1] = ACTIONS(7288), + [aux_sym__inline_if_statement_token1] = ACTIONS(7288), + [aux_sym_end_if_statement_token1] = ACTIONS(7288), + [aux_sym_elseif_clause_token2] = ACTIONS(7288), + [aux_sym_select_case_statement_token1] = ACTIONS(7288), + [aux_sym_block_construct_token1] = ACTIONS(7288), + [aux_sym_format_statement_token1] = ACTIONS(7288), + [aux_sym_inquire_statement_token1] = ACTIONS(7288), + [aux_sym_entry_statement_token1] = ACTIONS(7288), + [aux_sym_null_literal_token1] = ACTIONS(7288), + [aux_sym_coarray_statement_token1] = ACTIONS(7288), + [aux_sym_coarray_statement_token2] = ACTIONS(7288), + [aux_sym_coarray_statement_token6] = ACTIONS(7288), + [aux_sym_coarray_statement_token8] = ACTIONS(7288), + [aux_sym_coarray_statement_token11] = ACTIONS(7288), + [aux_sym_coarray_statement_token12] = ACTIONS(7288), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7288), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7288), + [aux_sym_identifier_token1] = ACTIONS(7288), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3250] = { - [sym__preproc_expression] = STATE(5288), - [sym_preproc_parenthesized_expression] = STATE(5288), - [sym_preproc_defined] = STATE(5288), - [sym_preproc_unary_expression] = STATE(5288), - [sym_preproc_call_expression] = STATE(5288), - [sym_preproc_binary_expression] = STATE(5288), - [sym_number_literal] = STATE(5288), - [sym_string_literal] = STATE(5288), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3159] = { + [anon_sym_COMMA] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7292), + [aux_sym_module_statement_token1] = ACTIONS(7292), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7292), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7292), + [aux_sym_subroutine_statement_token1] = ACTIONS(7292), + [aux_sym_function_statement_token1] = ACTIONS(7292), + [aux_sym_procedure_attributes_token1] = ACTIONS(7292), + [aux_sym_procedure_attributes_token3] = ACTIONS(7292), + [aux_sym_use_statement_token2] = ACTIONS(7292), + [anon_sym_COLON_COLON] = ACTIONS(7290), + [aux_sym_implicit_statement_token3] = ACTIONS(7292), + [aux_sym_implicit_statement_token4] = ACTIONS(7292), + [aux_sym_save_statement_token1] = ACTIONS(7292), + [aux_sym_private_statement_token1] = ACTIONS(7292), + [aux_sym_public_statement_token1] = ACTIONS(7292), + [aux_sym_derived_type_definition_token1] = ACTIONS(7292), + [aux_sym_procedure_attribute_token6] = ACTIONS(7292), + [aux_sym_variable_attributes_token2] = ACTIONS(7292), + [aux_sym_variable_attributes_token3] = ACTIONS(7292), + [aux_sym_variable_attributes_token5] = ACTIONS(7292), + [aux_sym__intrinsic_type_token1] = ACTIONS(7292), + [aux_sym__intrinsic_type_token2] = ACTIONS(7292), + [aux_sym__intrinsic_type_token3] = ACTIONS(7292), + [aux_sym__intrinsic_type_token4] = ACTIONS(7292), + [aux_sym__intrinsic_type_token6] = ACTIONS(7292), + [aux_sym__intrinsic_type_token7] = ACTIONS(7292), + [aux_sym__intrinsic_type_token8] = ACTIONS(7292), + [aux_sym__intrinsic_type_token9] = ACTIONS(7292), + [aux_sym__intrinsic_type_token10] = ACTIONS(7292), + [aux_sym_derived_type_token1] = ACTIONS(7292), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7292), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7292), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7292), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7292), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7292), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7292), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7292), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7292), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7292), + [aux_sym_type_qualifier_token1] = ACTIONS(7292), + [aux_sym_type_qualifier_token2] = ACTIONS(7292), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7292), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7292), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7292), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7292), + [aux_sym_stop_statement_token1] = ACTIONS(7292), + [aux_sym_stop_statement_token2] = ACTIONS(7292), + [aux_sym_keyword_statement_token2] = ACTIONS(7292), + [aux_sym_keyword_statement_token3] = ACTIONS(7292), + [aux_sym_data_statement_token1] = ACTIONS(7292), + [aux_sym__inline_if_statement_token1] = ACTIONS(7292), + [aux_sym_end_if_statement_token1] = ACTIONS(7292), + [aux_sym_elseif_clause_token2] = ACTIONS(7292), + [aux_sym_select_case_statement_token1] = ACTIONS(7292), + [aux_sym_block_construct_token1] = ACTIONS(7292), + [aux_sym_format_statement_token1] = ACTIONS(7292), + [aux_sym_inquire_statement_token1] = ACTIONS(7292), + [aux_sym_entry_statement_token1] = ACTIONS(7292), + [aux_sym_null_literal_token1] = ACTIONS(7292), + [aux_sym_coarray_statement_token1] = ACTIONS(7292), + [aux_sym_coarray_statement_token2] = ACTIONS(7292), + [aux_sym_coarray_statement_token6] = ACTIONS(7292), + [aux_sym_coarray_statement_token8] = ACTIONS(7292), + [aux_sym_coarray_statement_token11] = ACTIONS(7292), + [aux_sym_coarray_statement_token12] = ACTIONS(7292), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7292), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7292), + [aux_sym_identifier_token1] = ACTIONS(7292), + [sym_comment] = ACTIONS(21), + }, + [3160] = { + [anon_sym_COMMA] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7296), + [aux_sym_module_statement_token1] = ACTIONS(7296), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7296), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7296), + [aux_sym_subroutine_statement_token1] = ACTIONS(7296), + [aux_sym_function_statement_token1] = ACTIONS(7296), + [aux_sym_procedure_attributes_token1] = ACTIONS(7296), + [aux_sym_procedure_attributes_token3] = ACTIONS(7296), + [aux_sym_use_statement_token2] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7294), + [aux_sym_implicit_statement_token3] = ACTIONS(7296), + [aux_sym_implicit_statement_token4] = ACTIONS(7296), + [aux_sym_save_statement_token1] = ACTIONS(7296), + [aux_sym_private_statement_token1] = ACTIONS(7296), + [aux_sym_public_statement_token1] = ACTIONS(7296), + [aux_sym_derived_type_definition_token1] = ACTIONS(7296), + [aux_sym_procedure_attribute_token6] = ACTIONS(7296), + [aux_sym_variable_attributes_token2] = ACTIONS(7296), + [aux_sym_variable_attributes_token3] = ACTIONS(7296), + [aux_sym_variable_attributes_token5] = ACTIONS(7296), + [aux_sym__intrinsic_type_token1] = ACTIONS(7296), + [aux_sym__intrinsic_type_token2] = ACTIONS(7296), + [aux_sym__intrinsic_type_token3] = ACTIONS(7296), + [aux_sym__intrinsic_type_token4] = ACTIONS(7296), + [aux_sym__intrinsic_type_token6] = ACTIONS(7296), + [aux_sym__intrinsic_type_token7] = ACTIONS(7296), + [aux_sym__intrinsic_type_token8] = ACTIONS(7296), + [aux_sym__intrinsic_type_token9] = ACTIONS(7296), + [aux_sym__intrinsic_type_token10] = ACTIONS(7296), + [aux_sym_derived_type_token1] = ACTIONS(7296), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7296), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7296), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7296), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7296), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7296), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7296), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7296), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7296), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7296), + [aux_sym_type_qualifier_token1] = ACTIONS(7296), + [aux_sym_type_qualifier_token2] = ACTIONS(7296), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7296), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7296), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7296), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7296), + [aux_sym_stop_statement_token1] = ACTIONS(7296), + [aux_sym_stop_statement_token2] = ACTIONS(7296), + [aux_sym_keyword_statement_token2] = ACTIONS(7296), + [aux_sym_keyword_statement_token3] = ACTIONS(7296), + [aux_sym_data_statement_token1] = ACTIONS(7296), + [aux_sym__inline_if_statement_token1] = ACTIONS(7296), + [aux_sym_end_if_statement_token1] = ACTIONS(7296), + [aux_sym_elseif_clause_token2] = ACTIONS(7296), + [aux_sym_select_case_statement_token1] = ACTIONS(7296), + [aux_sym_block_construct_token1] = ACTIONS(7296), + [aux_sym_format_statement_token1] = ACTIONS(7296), + [aux_sym_inquire_statement_token1] = ACTIONS(7296), + [aux_sym_entry_statement_token1] = ACTIONS(7296), + [aux_sym_null_literal_token1] = ACTIONS(7296), + [aux_sym_coarray_statement_token1] = ACTIONS(7296), + [aux_sym_coarray_statement_token2] = ACTIONS(7296), + [aux_sym_coarray_statement_token6] = ACTIONS(7296), + [aux_sym_coarray_statement_token8] = ACTIONS(7296), + [aux_sym_coarray_statement_token11] = ACTIONS(7296), + [aux_sym_coarray_statement_token12] = ACTIONS(7296), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7296), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7296), + [aux_sym_identifier_token1] = ACTIONS(7296), + [sym_comment] = ACTIONS(21), + }, + [3161] = { + [sym__preproc_expression] = STATE(5363), + [sym_preproc_parenthesized_expression] = STATE(5363), + [sym_preproc_defined] = STATE(5363), + [sym_preproc_unary_expression] = STATE(5363), + [sym_preproc_call_expression] = STATE(5363), + [sym_preproc_binary_expression] = STATE(5363), + [sym_number_literal] = STATE(5363), + [sym_string_literal] = STATE(5363), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7298), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3162] = { + [sym__preproc_expression] = STATE(5366), + [sym_preproc_parenthesized_expression] = STATE(5366), + [sym_preproc_defined] = STATE(5366), + [sym_preproc_unary_expression] = STATE(5366), + [sym_preproc_call_expression] = STATE(5366), + [sym_preproc_binary_expression] = STATE(5366), + [sym_number_literal] = STATE(5366), + [sym_string_literal] = STATE(5366), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7300), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3163] = { + [sym__preproc_expression] = STATE(5185), + [sym_preproc_parenthesized_expression] = STATE(5185), + [sym_preproc_defined] = STATE(5185), + [sym_preproc_unary_expression] = STATE(5185), + [sym_preproc_call_expression] = STATE(5185), + [sym_preproc_binary_expression] = STATE(5185), + [sym_number_literal] = STATE(5185), + [sym_string_literal] = STATE(5185), + [sym_identifier] = STATE(5164), + [anon_sym_RPAREN] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -459943,162 +453670,819 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3251] = { - [sym__preproc_expression] = STATE(5289), - [sym_preproc_parenthesized_expression] = STATE(5289), - [sym_preproc_defined] = STATE(5289), - [sym_preproc_unary_expression] = STATE(5289), - [sym_preproc_call_expression] = STATE(5289), - [sym_preproc_binary_expression] = STATE(5289), - [sym_number_literal] = STATE(5289), - [sym_string_literal] = STATE(5289), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3164] = { + [anon_sym_COMMA] = ACTIONS(7304), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7306), + [aux_sym_module_statement_token1] = ACTIONS(7306), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7306), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7306), + [aux_sym_subroutine_statement_token1] = ACTIONS(7306), + [aux_sym_function_statement_token1] = ACTIONS(7306), + [aux_sym_procedure_attributes_token1] = ACTIONS(7306), + [aux_sym_procedure_attributes_token3] = ACTIONS(7306), + [aux_sym_use_statement_token2] = ACTIONS(7306), + [anon_sym_COLON_COLON] = ACTIONS(7304), + [aux_sym_implicit_statement_token3] = ACTIONS(7306), + [aux_sym_implicit_statement_token4] = ACTIONS(7306), + [aux_sym_save_statement_token1] = ACTIONS(7306), + [aux_sym_private_statement_token1] = ACTIONS(7306), + [aux_sym_public_statement_token1] = ACTIONS(7306), + [aux_sym_derived_type_definition_token1] = ACTIONS(7306), + [aux_sym_procedure_attribute_token6] = ACTIONS(7306), + [aux_sym_variable_attributes_token2] = ACTIONS(7306), + [aux_sym_variable_attributes_token3] = ACTIONS(7306), + [aux_sym_variable_attributes_token5] = ACTIONS(7306), + [aux_sym__intrinsic_type_token1] = ACTIONS(7306), + [aux_sym__intrinsic_type_token2] = ACTIONS(7306), + [aux_sym__intrinsic_type_token3] = ACTIONS(7306), + [aux_sym__intrinsic_type_token4] = ACTIONS(7306), + [aux_sym__intrinsic_type_token6] = ACTIONS(7306), + [aux_sym__intrinsic_type_token7] = ACTIONS(7306), + [aux_sym__intrinsic_type_token8] = ACTIONS(7306), + [aux_sym__intrinsic_type_token9] = ACTIONS(7306), + [aux_sym__intrinsic_type_token10] = ACTIONS(7306), + [aux_sym_derived_type_token1] = ACTIONS(7306), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7306), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7306), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7306), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7306), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7306), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7306), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7306), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7306), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7306), + [aux_sym_type_qualifier_token1] = ACTIONS(7306), + [aux_sym_type_qualifier_token2] = ACTIONS(7306), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7306), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7306), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7306), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7306), + [aux_sym_stop_statement_token1] = ACTIONS(7306), + [aux_sym_stop_statement_token2] = ACTIONS(7306), + [aux_sym_keyword_statement_token2] = ACTIONS(7306), + [aux_sym_keyword_statement_token3] = ACTIONS(7306), + [aux_sym_data_statement_token1] = ACTIONS(7306), + [aux_sym__inline_if_statement_token1] = ACTIONS(7306), + [aux_sym_end_if_statement_token1] = ACTIONS(7306), + [aux_sym_elseif_clause_token2] = ACTIONS(7306), + [aux_sym_select_case_statement_token1] = ACTIONS(7306), + [aux_sym_block_construct_token1] = ACTIONS(7306), + [aux_sym_format_statement_token1] = ACTIONS(7306), + [aux_sym_inquire_statement_token1] = ACTIONS(7306), + [aux_sym_entry_statement_token1] = ACTIONS(7306), + [aux_sym_null_literal_token1] = ACTIONS(7306), + [aux_sym_coarray_statement_token1] = ACTIONS(7306), + [aux_sym_coarray_statement_token2] = ACTIONS(7306), + [aux_sym_coarray_statement_token6] = ACTIONS(7306), + [aux_sym_coarray_statement_token8] = ACTIONS(7306), + [aux_sym_coarray_statement_token11] = ACTIONS(7306), + [aux_sym_coarray_statement_token12] = ACTIONS(7306), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7306), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7306), + [aux_sym_identifier_token1] = ACTIONS(7306), + [sym_comment] = ACTIONS(21), + }, + [3165] = { + [sym__preproc_expression] = STATE(5354), + [sym_preproc_parenthesized_expression] = STATE(5354), + [sym_preproc_defined] = STATE(5354), + [sym_preproc_unary_expression] = STATE(5354), + [sym_preproc_call_expression] = STATE(5354), + [sym_preproc_binary_expression] = STATE(5354), + [sym_number_literal] = STATE(5354), + [sym_string_literal] = STATE(5354), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7308), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3166] = { + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7312), + [aux_sym_module_statement_token1] = ACTIONS(7312), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7312), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7312), + [aux_sym_subroutine_statement_token1] = ACTIONS(7312), + [aux_sym_function_statement_token1] = ACTIONS(7312), + [aux_sym_procedure_attributes_token1] = ACTIONS(7312), + [aux_sym_procedure_attributes_token3] = ACTIONS(7312), + [aux_sym_use_statement_token2] = ACTIONS(7312), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [aux_sym_implicit_statement_token3] = ACTIONS(7312), + [aux_sym_implicit_statement_token4] = ACTIONS(7312), + [aux_sym_save_statement_token1] = ACTIONS(7312), + [aux_sym_private_statement_token1] = ACTIONS(7312), + [aux_sym_public_statement_token1] = ACTIONS(7312), + [aux_sym_derived_type_definition_token1] = ACTIONS(7312), + [aux_sym_procedure_attribute_token6] = ACTIONS(7312), + [aux_sym_variable_attributes_token2] = ACTIONS(7312), + [aux_sym_variable_attributes_token3] = ACTIONS(7312), + [aux_sym_variable_attributes_token5] = ACTIONS(7312), + [aux_sym__intrinsic_type_token1] = ACTIONS(7312), + [aux_sym__intrinsic_type_token2] = ACTIONS(7312), + [aux_sym__intrinsic_type_token3] = ACTIONS(7312), + [aux_sym__intrinsic_type_token4] = ACTIONS(7312), + [aux_sym__intrinsic_type_token6] = ACTIONS(7312), + [aux_sym__intrinsic_type_token7] = ACTIONS(7312), + [aux_sym__intrinsic_type_token8] = ACTIONS(7312), + [aux_sym__intrinsic_type_token9] = ACTIONS(7312), + [aux_sym__intrinsic_type_token10] = ACTIONS(7312), + [aux_sym_derived_type_token1] = ACTIONS(7312), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7312), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7312), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7312), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7312), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7312), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7312), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7312), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7312), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7312), + [aux_sym_type_qualifier_token1] = ACTIONS(7312), + [aux_sym_type_qualifier_token2] = ACTIONS(7312), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7312), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7312), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7312), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7312), + [aux_sym_stop_statement_token1] = ACTIONS(7312), + [aux_sym_stop_statement_token2] = ACTIONS(7312), + [aux_sym_keyword_statement_token2] = ACTIONS(7312), + [aux_sym_keyword_statement_token3] = ACTIONS(7312), + [aux_sym_data_statement_token1] = ACTIONS(7312), + [aux_sym__inline_if_statement_token1] = ACTIONS(7312), + [aux_sym_end_if_statement_token1] = ACTIONS(7312), + [aux_sym_elseif_clause_token2] = ACTIONS(7312), + [aux_sym_select_case_statement_token1] = ACTIONS(7312), + [aux_sym_block_construct_token1] = ACTIONS(7312), + [aux_sym_format_statement_token1] = ACTIONS(7312), + [aux_sym_inquire_statement_token1] = ACTIONS(7312), + [aux_sym_entry_statement_token1] = ACTIONS(7312), + [aux_sym_null_literal_token1] = ACTIONS(7312), + [aux_sym_coarray_statement_token1] = ACTIONS(7312), + [aux_sym_coarray_statement_token2] = ACTIONS(7312), + [aux_sym_coarray_statement_token6] = ACTIONS(7312), + [aux_sym_coarray_statement_token8] = ACTIONS(7312), + [aux_sym_coarray_statement_token11] = ACTIONS(7312), + [aux_sym_coarray_statement_token12] = ACTIONS(7312), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7312), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7312), + [aux_sym_identifier_token1] = ACTIONS(7312), + [sym_comment] = ACTIONS(21), + }, + [3167] = { + [sym__name] = STATE(2822), + [sym_identifier] = STATE(2861), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7314), + [aux_sym_module_statement_token1] = ACTIONS(7316), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7318), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7318), + [aux_sym_subroutine_statement_token1] = ACTIONS(7316), + [aux_sym_function_statement_token1] = ACTIONS(7316), + [aux_sym_procedure_attributes_token1] = ACTIONS(7316), + [aux_sym_procedure_attributes_token3] = ACTIONS(7318), + [aux_sym_use_statement_token2] = ACTIONS(7318), + [aux_sym_implicit_statement_token3] = ACTIONS(7316), + [aux_sym_implicit_statement_token4] = ACTIONS(7318), + [aux_sym_save_statement_token1] = ACTIONS(7318), + [aux_sym_private_statement_token1] = ACTIONS(7318), + [aux_sym_public_statement_token1] = ACTIONS(7318), + [aux_sym_derived_type_definition_token1] = ACTIONS(7318), + [aux_sym_procedure_attribute_token6] = ACTIONS(7318), + [aux_sym_variable_attributes_token2] = ACTIONS(7318), + [aux_sym_variable_attributes_token3] = ACTIONS(7318), + [aux_sym_variable_attributes_token5] = ACTIONS(7318), + [aux_sym__intrinsic_type_token1] = ACTIONS(7320), + [aux_sym__intrinsic_type_token2] = ACTIONS(7316), + [aux_sym__intrinsic_type_token3] = ACTIONS(7320), + [aux_sym__intrinsic_type_token4] = ACTIONS(7323), + [aux_sym__intrinsic_type_token6] = ACTIONS(7316), + [aux_sym__intrinsic_type_token7] = ACTIONS(7316), + [aux_sym__intrinsic_type_token8] = ACTIONS(7316), + [aux_sym__intrinsic_type_token9] = ACTIONS(7316), + [aux_sym__intrinsic_type_token10] = ACTIONS(7316), + [aux_sym_derived_type_token1] = ACTIONS(7316), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7318), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7318), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7326), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7318), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7318), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7318), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7318), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7318), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7318), + [aux_sym_type_qualifier_token1] = ACTIONS(7318), + [aux_sym_type_qualifier_token2] = ACTIONS(7318), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7316), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7316), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7316), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7316), + [aux_sym_stop_statement_token1] = ACTIONS(7318), + [aux_sym_stop_statement_token2] = ACTIONS(7318), + [aux_sym_keyword_statement_token2] = ACTIONS(7318), + [aux_sym_keyword_statement_token3] = ACTIONS(7318), + [aux_sym_data_statement_token1] = ACTIONS(7318), + [aux_sym__inline_if_statement_token1] = ACTIONS(7318), + [aux_sym_end_if_statement_token1] = ACTIONS(7318), + [aux_sym_elseif_clause_token2] = ACTIONS(7318), + [aux_sym_select_case_statement_token1] = ACTIONS(7328), + [aux_sym_block_construct_token1] = ACTIONS(7318), + [aux_sym_format_statement_token1] = ACTIONS(7318), + [aux_sym_inquire_statement_token1] = ACTIONS(7318), + [aux_sym_entry_statement_token1] = ACTIONS(7318), + [aux_sym_null_literal_token1] = ACTIONS(7318), + [aux_sym_coarray_statement_token1] = ACTIONS(7318), + [aux_sym_coarray_statement_token2] = ACTIONS(7318), + [aux_sym_coarray_statement_token6] = ACTIONS(7318), + [aux_sym_coarray_statement_token8] = ACTIONS(7318), + [aux_sym_coarray_statement_token11] = ACTIONS(7318), + [aux_sym_coarray_statement_token12] = ACTIONS(7318), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7318), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7318), + [aux_sym_identifier_token1] = ACTIONS(7318), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3252] = { - [sym__preproc_expression] = STATE(5315), - [sym_preproc_parenthesized_expression] = STATE(5315), - [sym_preproc_defined] = STATE(5315), - [sym_preproc_unary_expression] = STATE(5315), - [sym_preproc_call_expression] = STATE(5315), - [sym_preproc_binary_expression] = STATE(5315), - [sym_number_literal] = STATE(5315), - [sym_string_literal] = STATE(5315), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3168] = { + [sym__preproc_expression] = STATE(5335), + [sym_preproc_parenthesized_expression] = STATE(5335), + [sym_preproc_defined] = STATE(5335), + [sym_preproc_unary_expression] = STATE(5335), + [sym_preproc_call_expression] = STATE(5335), + [sym_preproc_binary_expression] = STATE(5335), + [sym_number_literal] = STATE(5335), + [sym_string_literal] = STATE(5335), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7330), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3169] = { + [anon_sym_COMMA] = ACTIONS(6582), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(6584), + [aux_sym_module_statement_token1] = ACTIONS(6584), + [aux_sym_defined_io_procedure_token1] = ACTIONS(6584), + [aux_sym_defined_io_procedure_token2] = ACTIONS(6584), + [aux_sym_subroutine_statement_token1] = ACTIONS(6584), + [aux_sym_function_statement_token1] = ACTIONS(6584), + [aux_sym_procedure_attributes_token1] = ACTIONS(6584), + [aux_sym_procedure_attributes_token3] = ACTIONS(6584), + [aux_sym_use_statement_token2] = ACTIONS(6584), + [anon_sym_COLON_COLON] = ACTIONS(6582), + [aux_sym_implicit_statement_token3] = ACTIONS(6584), + [aux_sym_implicit_statement_token4] = ACTIONS(6584), + [aux_sym_save_statement_token1] = ACTIONS(6584), + [aux_sym_private_statement_token1] = ACTIONS(6584), + [aux_sym_public_statement_token1] = ACTIONS(6584), + [aux_sym_derived_type_definition_token1] = ACTIONS(6584), + [aux_sym_procedure_attribute_token6] = ACTIONS(6584), + [aux_sym_variable_attributes_token2] = ACTIONS(6584), + [aux_sym_variable_attributes_token3] = ACTIONS(6584), + [aux_sym_variable_attributes_token5] = ACTIONS(6584), + [aux_sym__intrinsic_type_token1] = ACTIONS(6584), + [aux_sym__intrinsic_type_token2] = ACTIONS(6584), + [aux_sym__intrinsic_type_token3] = ACTIONS(6584), + [aux_sym__intrinsic_type_token4] = ACTIONS(6584), + [aux_sym__intrinsic_type_token6] = ACTIONS(6584), + [aux_sym__intrinsic_type_token7] = ACTIONS(6584), + [aux_sym__intrinsic_type_token8] = ACTIONS(6584), + [aux_sym__intrinsic_type_token9] = ACTIONS(6584), + [aux_sym__intrinsic_type_token10] = ACTIONS(6584), + [aux_sym_derived_type_token1] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(6584), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(6584), + [aux_sym_type_qualifier_token1] = ACTIONS(6584), + [aux_sym_type_qualifier_token2] = ACTIONS(6584), + [aux_sym_procedure_qualifier_token1] = ACTIONS(6584), + [aux_sym_procedure_qualifier_token2] = ACTIONS(6584), + [aux_sym_procedure_qualifier_token3] = ACTIONS(6584), + [aux_sym_procedure_qualifier_token4] = ACTIONS(6584), + [aux_sym_stop_statement_token1] = ACTIONS(6584), + [aux_sym_stop_statement_token2] = ACTIONS(6584), + [aux_sym_keyword_statement_token2] = ACTIONS(6584), + [aux_sym_keyword_statement_token3] = ACTIONS(6584), + [aux_sym_data_statement_token1] = ACTIONS(6584), + [aux_sym__inline_if_statement_token1] = ACTIONS(6584), + [aux_sym_end_if_statement_token1] = ACTIONS(6584), + [aux_sym_elseif_clause_token2] = ACTIONS(6584), + [aux_sym_select_case_statement_token1] = ACTIONS(6584), + [aux_sym_block_construct_token1] = ACTIONS(6584), + [aux_sym_format_statement_token1] = ACTIONS(6584), + [aux_sym_inquire_statement_token1] = ACTIONS(6584), + [aux_sym_entry_statement_token1] = ACTIONS(6584), + [aux_sym_null_literal_token1] = ACTIONS(6584), + [aux_sym_coarray_statement_token1] = ACTIONS(6584), + [aux_sym_coarray_statement_token2] = ACTIONS(6584), + [aux_sym_coarray_statement_token6] = ACTIONS(6584), + [aux_sym_coarray_statement_token8] = ACTIONS(6584), + [aux_sym_coarray_statement_token11] = ACTIONS(6584), + [aux_sym_coarray_statement_token12] = ACTIONS(6584), + [aux_sym_coarray_team_statement_token1] = ACTIONS(6584), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(6584), + [aux_sym_identifier_token1] = ACTIONS(6584), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3253] = { - [sym__preproc_expression] = STATE(5292), - [sym_preproc_parenthesized_expression] = STATE(5292), - [sym_preproc_defined] = STATE(5292), - [sym_preproc_unary_expression] = STATE(5292), - [sym_preproc_call_expression] = STATE(5292), - [sym_preproc_binary_expression] = STATE(5292), - [sym_number_literal] = STATE(5292), - [sym_string_literal] = STATE(5292), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3170] = { + [sym__preproc_expression] = STATE(5367), + [sym_preproc_parenthesized_expression] = STATE(5367), + [sym_preproc_defined] = STATE(5367), + [sym_preproc_unary_expression] = STATE(5367), + [sym_preproc_call_expression] = STATE(5367), + [sym_preproc_binary_expression] = STATE(5367), + [sym_number_literal] = STATE(5367), + [sym_string_literal] = STATE(5367), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7332), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3171] = { + [anon_sym_COMMA] = ACTIONS(7334), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7336), + [aux_sym_module_statement_token1] = ACTIONS(7336), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7336), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7336), + [aux_sym_subroutine_statement_token1] = ACTIONS(7336), + [aux_sym_function_statement_token1] = ACTIONS(7336), + [aux_sym_procedure_attributes_token1] = ACTIONS(7336), + [aux_sym_procedure_attributes_token3] = ACTIONS(7336), + [aux_sym_use_statement_token2] = ACTIONS(7336), + [anon_sym_COLON_COLON] = ACTIONS(7334), + [aux_sym_implicit_statement_token3] = ACTIONS(7336), + [aux_sym_implicit_statement_token4] = ACTIONS(7336), + [aux_sym_save_statement_token1] = ACTIONS(7336), + [aux_sym_private_statement_token1] = ACTIONS(7336), + [aux_sym_public_statement_token1] = ACTIONS(7336), + [aux_sym_derived_type_definition_token1] = ACTIONS(7336), + [aux_sym_procedure_attribute_token6] = ACTIONS(7336), + [aux_sym_variable_attributes_token2] = ACTIONS(7336), + [aux_sym_variable_attributes_token3] = ACTIONS(7336), + [aux_sym_variable_attributes_token5] = ACTIONS(7336), + [aux_sym__intrinsic_type_token1] = ACTIONS(7336), + [aux_sym__intrinsic_type_token2] = ACTIONS(7336), + [aux_sym__intrinsic_type_token3] = ACTIONS(7336), + [aux_sym__intrinsic_type_token4] = ACTIONS(7336), + [aux_sym__intrinsic_type_token6] = ACTIONS(7336), + [aux_sym__intrinsic_type_token7] = ACTIONS(7336), + [aux_sym__intrinsic_type_token8] = ACTIONS(7336), + [aux_sym__intrinsic_type_token9] = ACTIONS(7336), + [aux_sym__intrinsic_type_token10] = ACTIONS(7336), + [aux_sym_derived_type_token1] = ACTIONS(7336), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7336), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7336), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7336), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7336), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7336), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7336), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7336), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7336), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7336), + [aux_sym_type_qualifier_token1] = ACTIONS(7336), + [aux_sym_type_qualifier_token2] = ACTIONS(7336), + [aux_sym_procedure_qualifier_token1] = ACTIONS(7336), + [aux_sym_procedure_qualifier_token2] = ACTIONS(7336), + [aux_sym_procedure_qualifier_token3] = ACTIONS(7336), + [aux_sym_procedure_qualifier_token4] = ACTIONS(7336), + [aux_sym_stop_statement_token1] = ACTIONS(7336), + [aux_sym_stop_statement_token2] = ACTIONS(7336), + [aux_sym_keyword_statement_token2] = ACTIONS(7336), + [aux_sym_keyword_statement_token3] = ACTIONS(7336), + [aux_sym_data_statement_token1] = ACTIONS(7336), + [aux_sym__inline_if_statement_token1] = ACTIONS(7336), + [aux_sym_end_if_statement_token1] = ACTIONS(7336), + [aux_sym_elseif_clause_token2] = ACTIONS(7336), + [aux_sym_select_case_statement_token1] = ACTIONS(7336), + [aux_sym_block_construct_token1] = ACTIONS(7336), + [aux_sym_format_statement_token1] = ACTIONS(7336), + [aux_sym_inquire_statement_token1] = ACTIONS(7336), + [aux_sym_entry_statement_token1] = ACTIONS(7336), + [aux_sym_null_literal_token1] = ACTIONS(7336), + [aux_sym_coarray_statement_token1] = ACTIONS(7336), + [aux_sym_coarray_statement_token2] = ACTIONS(7336), + [aux_sym_coarray_statement_token6] = ACTIONS(7336), + [aux_sym_coarray_statement_token8] = ACTIONS(7336), + [aux_sym_coarray_statement_token11] = ACTIONS(7336), + [aux_sym_coarray_statement_token12] = ACTIONS(7336), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7336), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7336), + [aux_sym_identifier_token1] = ACTIONS(7336), + [sym_comment] = ACTIONS(21), + }, + [3172] = { + [sym__preproc_expression] = STATE(5360), + [sym_preproc_parenthesized_expression] = STATE(5360), + [sym_preproc_defined] = STATE(5360), + [sym_preproc_unary_expression] = STATE(5360), + [sym_preproc_call_expression] = STATE(5360), + [sym_preproc_binary_expression] = STATE(5360), + [sym_number_literal] = STATE(5360), + [sym_string_literal] = STATE(5360), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [sym_preproc_comment] = ACTIONS(7338), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3173] = { + [sym__preproc_expression] = STATE(5222), + [sym_preproc_parenthesized_expression] = STATE(5222), + [sym_preproc_defined] = STATE(5222), + [sym_preproc_unary_expression] = STATE(5222), + [sym_preproc_call_expression] = STATE(5222), + [sym_preproc_binary_expression] = STATE(5222), + [sym_number_literal] = STATE(5222), + [sym_string_literal] = STATE(5222), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3174] = { + [sym__preproc_expression] = STATE(5298), + [sym_preproc_parenthesized_expression] = STATE(5298), + [sym_preproc_defined] = STATE(5298), + [sym_preproc_unary_expression] = STATE(5298), + [sym_preproc_call_expression] = STATE(5298), + [sym_preproc_binary_expression] = STATE(5298), + [sym_number_literal] = STATE(5298), + [sym_string_literal] = STATE(5298), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3175] = { + [sym__preproc_expression] = STATE(5221), + [sym_preproc_parenthesized_expression] = STATE(5221), + [sym_preproc_defined] = STATE(5221), + [sym_preproc_unary_expression] = STATE(5221), + [sym_preproc_call_expression] = STATE(5221), + [sym_preproc_binary_expression] = STATE(5221), + [sym_number_literal] = STATE(5221), + [sym_string_literal] = STATE(5221), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460159,18 +454543,1170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3254] = { - [sym__preproc_expression] = STATE(5296), - [sym_preproc_parenthesized_expression] = STATE(5296), - [sym_preproc_defined] = STATE(5296), - [sym_preproc_unary_expression] = STATE(5296), - [sym_preproc_call_expression] = STATE(5296), - [sym_preproc_binary_expression] = STATE(5296), - [sym_number_literal] = STATE(5296), - [sym_string_literal] = STATE(5296), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3176] = { + [sym__preproc_expression] = STATE(5285), + [sym_preproc_parenthesized_expression] = STATE(5285), + [sym_preproc_defined] = STATE(5285), + [sym_preproc_unary_expression] = STATE(5285), + [sym_preproc_call_expression] = STATE(5285), + [sym_preproc_binary_expression] = STATE(5285), + [sym_number_literal] = STATE(5285), + [sym_string_literal] = STATE(5285), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3177] = { + [sym__preproc_expression] = STATE(5317), + [sym_preproc_parenthesized_expression] = STATE(5317), + [sym_preproc_defined] = STATE(5317), + [sym_preproc_unary_expression] = STATE(5317), + [sym_preproc_call_expression] = STATE(5317), + [sym_preproc_binary_expression] = STATE(5317), + [sym_number_literal] = STATE(5317), + [sym_string_literal] = STATE(5317), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3178] = { + [sym__preproc_expression] = STATE(5314), + [sym_preproc_parenthesized_expression] = STATE(5314), + [sym_preproc_defined] = STATE(5314), + [sym_preproc_unary_expression] = STATE(5314), + [sym_preproc_call_expression] = STATE(5314), + [sym_preproc_binary_expression] = STATE(5314), + [sym_number_literal] = STATE(5314), + [sym_string_literal] = STATE(5314), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3179] = { + [sym__preproc_expression] = STATE(5353), + [sym_preproc_parenthesized_expression] = STATE(5353), + [sym_preproc_defined] = STATE(5353), + [sym_preproc_unary_expression] = STATE(5353), + [sym_preproc_call_expression] = STATE(5353), + [sym_preproc_binary_expression] = STATE(5353), + [sym_number_literal] = STATE(5353), + [sym_string_literal] = STATE(5353), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3180] = { + [sym__preproc_expression] = STATE(5310), + [sym_preproc_parenthesized_expression] = STATE(5310), + [sym_preproc_defined] = STATE(5310), + [sym_preproc_unary_expression] = STATE(5310), + [sym_preproc_call_expression] = STATE(5310), + [sym_preproc_binary_expression] = STATE(5310), + [sym_number_literal] = STATE(5310), + [sym_string_literal] = STATE(5310), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3181] = { + [sym__preproc_expression] = STATE(5371), + [sym_preproc_parenthesized_expression] = STATE(5371), + [sym_preproc_defined] = STATE(5371), + [sym_preproc_unary_expression] = STATE(5371), + [sym_preproc_call_expression] = STATE(5371), + [sym_preproc_binary_expression] = STATE(5371), + [sym_number_literal] = STATE(5371), + [sym_string_literal] = STATE(5371), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3182] = { + [sym__preproc_expression] = STATE(5252), + [sym_preproc_parenthesized_expression] = STATE(5252), + [sym_preproc_defined] = STATE(5252), + [sym_preproc_unary_expression] = STATE(5252), + [sym_preproc_call_expression] = STATE(5252), + [sym_preproc_binary_expression] = STATE(5252), + [sym_number_literal] = STATE(5252), + [sym_string_literal] = STATE(5252), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3183] = { + [sym__preproc_expression] = STATE(5266), + [sym_preproc_parenthesized_expression] = STATE(5266), + [sym_preproc_defined] = STATE(5266), + [sym_preproc_unary_expression] = STATE(5266), + [sym_preproc_call_expression] = STATE(5266), + [sym_preproc_binary_expression] = STATE(5266), + [sym_number_literal] = STATE(5266), + [sym_string_literal] = STATE(5266), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3184] = { + [sym__preproc_expression] = STATE(5331), + [sym_preproc_parenthesized_expression] = STATE(5331), + [sym_preproc_defined] = STATE(5331), + [sym_preproc_unary_expression] = STATE(5331), + [sym_preproc_call_expression] = STATE(5331), + [sym_preproc_binary_expression] = STATE(5331), + [sym_number_literal] = STATE(5331), + [sym_string_literal] = STATE(5331), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3185] = { + [sym__preproc_expression] = STATE(5368), + [sym_preproc_parenthesized_expression] = STATE(5368), + [sym_preproc_defined] = STATE(5368), + [sym_preproc_unary_expression] = STATE(5368), + [sym_preproc_call_expression] = STATE(5368), + [sym_preproc_binary_expression] = STATE(5368), + [sym_number_literal] = STATE(5368), + [sym_string_literal] = STATE(5368), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3186] = { + [sym__preproc_expression] = STATE(5345), + [sym_preproc_parenthesized_expression] = STATE(5345), + [sym_preproc_defined] = STATE(5345), + [sym_preproc_unary_expression] = STATE(5345), + [sym_preproc_call_expression] = STATE(5345), + [sym_preproc_binary_expression] = STATE(5345), + [sym_number_literal] = STATE(5345), + [sym_string_literal] = STATE(5345), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3187] = { + [sym__preproc_expression] = STATE(5332), + [sym_preproc_parenthesized_expression] = STATE(5332), + [sym_preproc_defined] = STATE(5332), + [sym_preproc_unary_expression] = STATE(5332), + [sym_preproc_call_expression] = STATE(5332), + [sym_preproc_binary_expression] = STATE(5332), + [sym_number_literal] = STATE(5332), + [sym_string_literal] = STATE(5332), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3188] = { + [anon_sym_COMMA] = ACTIONS(7340), + [anon_sym_LPAREN2] = ACTIONS(7342), + [anon_sym_PLUS] = ACTIONS(7340), + [anon_sym_DASH] = ACTIONS(7340), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7342), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7342), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7342), + [aux_sym_procedure_attributes_token3] = ACTIONS(7342), + [aux_sym_use_statement_token2] = ACTIONS(7342), + [aux_sym_implicit_statement_token4] = ACTIONS(7342), + [aux_sym_save_statement_token1] = ACTIONS(7342), + [aux_sym_private_statement_token1] = ACTIONS(7342), + [aux_sym_public_statement_token1] = ACTIONS(7342), + [aux_sym_derived_type_definition_token1] = ACTIONS(7342), + [aux_sym_procedure_attribute_token6] = ACTIONS(7342), + [aux_sym_variable_attributes_token2] = ACTIONS(7342), + [aux_sym_variable_attributes_token3] = ACTIONS(7342), + [aux_sym_variable_attributes_token5] = ACTIONS(7342), + [aux_sym__intrinsic_type_token1] = ACTIONS(7342), + [aux_sym__intrinsic_type_token3] = ACTIONS(7342), + [aux_sym__intrinsic_type_token4] = ACTIONS(7342), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7342), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7342), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7342), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7342), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7342), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7342), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7342), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7342), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7342), + [aux_sym_type_qualifier_token1] = ACTIONS(7342), + [aux_sym_type_qualifier_token2] = ACTIONS(7342), + [anon_sym_SEMI] = ACTIONS(7340), + [aux_sym_stop_statement_token1] = ACTIONS(7342), + [aux_sym_stop_statement_token2] = ACTIONS(7342), + [aux_sym_keyword_statement_token2] = ACTIONS(7342), + [aux_sym_keyword_statement_token3] = ACTIONS(7342), + [aux_sym_data_statement_token1] = ACTIONS(7342), + [aux_sym__inline_if_statement_token1] = ACTIONS(7342), + [aux_sym_end_if_statement_token1] = ACTIONS(7342), + [aux_sym_elseif_clause_token2] = ACTIONS(7342), + [aux_sym_select_case_statement_token1] = ACTIONS(7342), + [aux_sym_block_construct_token1] = ACTIONS(7342), + [aux_sym_format_statement_token1] = ACTIONS(7342), + [aux_sym_inquire_statement_token1] = ACTIONS(7342), + [aux_sym_entry_statement_token1] = ACTIONS(7342), + [aux_sym_logical_expression_token5] = ACTIONS(7340), + [anon_sym_DOT] = ACTIONS(7342), + [anon_sym_LPAREN_SLASH] = ACTIONS(7340), + [anon_sym_LBRACK] = ACTIONS(7340), + [aux_sym_boolean_literal_token1] = ACTIONS(7340), + [aux_sym_boolean_literal_token2] = ACTIONS(7340), + [aux_sym_null_literal_token1] = ACTIONS(7342), + [aux_sym_coarray_statement_token1] = ACTIONS(7342), + [aux_sym_coarray_statement_token2] = ACTIONS(7342), + [aux_sym_coarray_statement_token6] = ACTIONS(7342), + [aux_sym_coarray_statement_token8] = ACTIONS(7342), + [aux_sym_coarray_statement_token11] = ACTIONS(7342), + [aux_sym_coarray_statement_token12] = ACTIONS(7342), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7342), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7342), + [aux_sym_identifier_token1] = ACTIONS(7342), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7340), + [sym__float_literal] = ACTIONS(7340), + [sym__boz_literal] = ACTIONS(7340), + [sym__string_literal] = ACTIONS(7340), + [sym__string_literal_kind] = ACTIONS(7340), + [sym__external_end_of_statement] = ACTIONS(7340), + }, + [3189] = { + [sym__preproc_expression] = STATE(5216), + [sym_preproc_parenthesized_expression] = STATE(5216), + [sym_preproc_defined] = STATE(5216), + [sym_preproc_unary_expression] = STATE(5216), + [sym_preproc_call_expression] = STATE(5216), + [sym_preproc_binary_expression] = STATE(5216), + [sym_number_literal] = STATE(5216), + [sym_string_literal] = STATE(5216), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3190] = { + [sym__preproc_expression] = STATE(5248), + [sym_preproc_parenthesized_expression] = STATE(5248), + [sym_preproc_defined] = STATE(5248), + [sym_preproc_unary_expression] = STATE(5248), + [sym_preproc_call_expression] = STATE(5248), + [sym_preproc_binary_expression] = STATE(5248), + [sym_number_literal] = STATE(5248), + [sym_string_literal] = STATE(5248), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3191] = { + [sym__preproc_expression] = STATE(5234), + [sym_preproc_parenthesized_expression] = STATE(5234), + [sym_preproc_defined] = STATE(5234), + [sym_preproc_unary_expression] = STATE(5234), + [sym_preproc_call_expression] = STATE(5234), + [sym_preproc_binary_expression] = STATE(5234), + [sym_number_literal] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3192] = { + [sym__preproc_expression] = STATE(5307), + [sym_preproc_parenthesized_expression] = STATE(5307), + [sym_preproc_defined] = STATE(5307), + [sym_preproc_unary_expression] = STATE(5307), + [sym_preproc_call_expression] = STATE(5307), + [sym_preproc_binary_expression] = STATE(5307), + [sym_number_literal] = STATE(5307), + [sym_string_literal] = STATE(5307), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460231,18 +455767,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3255] = { - [sym__preproc_expression] = STATE(5297), - [sym_preproc_parenthesized_expression] = STATE(5297), - [sym_preproc_defined] = STATE(5297), - [sym_preproc_unary_expression] = STATE(5297), - [sym_preproc_call_expression] = STATE(5297), - [sym_preproc_binary_expression] = STATE(5297), - [sym_number_literal] = STATE(5297), - [sym_string_literal] = STATE(5297), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3193] = { + [sym__preproc_expression] = STATE(5320), + [sym_preproc_parenthesized_expression] = STATE(5320), + [sym_preproc_defined] = STATE(5320), + [sym_preproc_unary_expression] = STATE(5320), + [sym_preproc_call_expression] = STATE(5320), + [sym_preproc_binary_expression] = STATE(5320), + [sym_number_literal] = STATE(5320), + [sym_string_literal] = STATE(5320), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460303,18 +455839,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3256] = { - [sym__preproc_expression] = STATE(5298), - [sym_preproc_parenthesized_expression] = STATE(5298), - [sym_preproc_defined] = STATE(5298), - [sym_preproc_unary_expression] = STATE(5298), - [sym_preproc_call_expression] = STATE(5298), - [sym_preproc_binary_expression] = STATE(5298), - [sym_number_literal] = STATE(5298), - [sym_string_literal] = STATE(5298), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3194] = { + [sym__preproc_expression] = STATE(5324), + [sym_preproc_parenthesized_expression] = STATE(5324), + [sym_preproc_defined] = STATE(5324), + [sym_preproc_unary_expression] = STATE(5324), + [sym_preproc_call_expression] = STATE(5324), + [sym_preproc_binary_expression] = STATE(5324), + [sym_number_literal] = STATE(5324), + [sym_string_literal] = STATE(5324), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460375,18 +455911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3257] = { - [sym__preproc_expression] = STATE(5299), - [sym_preproc_parenthesized_expression] = STATE(5299), - [sym_preproc_defined] = STATE(5299), - [sym_preproc_unary_expression] = STATE(5299), - [sym_preproc_call_expression] = STATE(5299), - [sym_preproc_binary_expression] = STATE(5299), - [sym_number_literal] = STATE(5299), - [sym_string_literal] = STATE(5299), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3195] = { + [sym__preproc_expression] = STATE(5235), + [sym_preproc_parenthesized_expression] = STATE(5235), + [sym_preproc_defined] = STATE(5235), + [sym_preproc_unary_expression] = STATE(5235), + [sym_preproc_call_expression] = STATE(5235), + [sym_preproc_binary_expression] = STATE(5235), + [sym_number_literal] = STATE(5235), + [sym_string_literal] = STATE(5235), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3196] = { + [sym__preproc_expression] = STATE(5325), + [sym_preproc_parenthesized_expression] = STATE(5325), + [sym_preproc_defined] = STATE(5325), + [sym_preproc_unary_expression] = STATE(5325), + [sym_preproc_call_expression] = STATE(5325), + [sym_preproc_binary_expression] = STATE(5325), + [sym_number_literal] = STATE(5325), + [sym_string_literal] = STATE(5325), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460447,18 +456055,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3258] = { - [sym__preproc_expression] = STATE(5301), - [sym_preproc_parenthesized_expression] = STATE(5301), - [sym_preproc_defined] = STATE(5301), - [sym_preproc_unary_expression] = STATE(5301), - [sym_preproc_call_expression] = STATE(5301), - [sym_preproc_binary_expression] = STATE(5301), - [sym_number_literal] = STATE(5301), - [sym_string_literal] = STATE(5301), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3197] = { + [sym__preproc_expression] = STATE(5261), + [sym_preproc_parenthesized_expression] = STATE(5261), + [sym_preproc_defined] = STATE(5261), + [sym_preproc_unary_expression] = STATE(5261), + [sym_preproc_call_expression] = STATE(5261), + [sym_preproc_binary_expression] = STATE(5261), + [sym_number_literal] = STATE(5261), + [sym_string_literal] = STATE(5261), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3198] = { + [sym__preproc_expression] = STATE(5319), + [sym_preproc_parenthesized_expression] = STATE(5319), + [sym_preproc_defined] = STATE(5319), + [sym_preproc_unary_expression] = STATE(5319), + [sym_preproc_call_expression] = STATE(5319), + [sym_preproc_binary_expression] = STATE(5319), + [sym_number_literal] = STATE(5319), + [sym_string_literal] = STATE(5319), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3199] = { + [sym__preproc_expression] = STATE(5327), + [sym_preproc_parenthesized_expression] = STATE(5327), + [sym_preproc_defined] = STATE(5327), + [sym_preproc_unary_expression] = STATE(5327), + [sym_preproc_call_expression] = STATE(5327), + [sym_preproc_binary_expression] = STATE(5327), + [sym_number_literal] = STATE(5327), + [sym_string_literal] = STATE(5327), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460519,18 +456271,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3259] = { - [sym__preproc_expression] = STATE(5302), - [sym_preproc_parenthesized_expression] = STATE(5302), - [sym_preproc_defined] = STATE(5302), - [sym_preproc_unary_expression] = STATE(5302), - [sym_preproc_call_expression] = STATE(5302), - [sym_preproc_binary_expression] = STATE(5302), - [sym_number_literal] = STATE(5302), - [sym_string_literal] = STATE(5302), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3200] = { + [sym__preproc_expression] = STATE(5328), + [sym_preproc_parenthesized_expression] = STATE(5328), + [sym_preproc_defined] = STATE(5328), + [sym_preproc_unary_expression] = STATE(5328), + [sym_preproc_call_expression] = STATE(5328), + [sym_preproc_binary_expression] = STATE(5328), + [sym_number_literal] = STATE(5328), + [sym_string_literal] = STATE(5328), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460591,18 +456343,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3260] = { - [sym__preproc_expression] = STATE(5303), - [sym_preproc_parenthesized_expression] = STATE(5303), - [sym_preproc_defined] = STATE(5303), - [sym_preproc_unary_expression] = STATE(5303), - [sym_preproc_call_expression] = STATE(5303), - [sym_preproc_binary_expression] = STATE(5303), - [sym_number_literal] = STATE(5303), - [sym_string_literal] = STATE(5303), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3201] = { + [sym__preproc_expression] = STATE(5330), + [sym_preproc_parenthesized_expression] = STATE(5330), + [sym_preproc_defined] = STATE(5330), + [sym_preproc_unary_expression] = STATE(5330), + [sym_preproc_call_expression] = STATE(5330), + [sym_preproc_binary_expression] = STATE(5330), + [sym_number_literal] = STATE(5330), + [sym_string_literal] = STATE(5330), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460663,18 +456415,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3261] = { - [sym__preproc_expression] = STATE(5305), - [sym_preproc_parenthesized_expression] = STATE(5305), - [sym_preproc_defined] = STATE(5305), - [sym_preproc_unary_expression] = STATE(5305), - [sym_preproc_call_expression] = STATE(5305), - [sym_preproc_binary_expression] = STATE(5305), - [sym_number_literal] = STATE(5305), - [sym_string_literal] = STATE(5305), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3202] = { + [sym__preproc_expression] = STATE(5213), + [sym_preproc_parenthesized_expression] = STATE(5213), + [sym_preproc_defined] = STATE(5213), + [sym_preproc_unary_expression] = STATE(5213), + [sym_preproc_call_expression] = STATE(5213), + [sym_preproc_binary_expression] = STATE(5213), + [sym_number_literal] = STATE(5213), + [sym_string_literal] = STATE(5213), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460735,18 +456487,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3262] = { - [sym__preproc_expression] = STATE(5306), - [sym_preproc_parenthesized_expression] = STATE(5306), - [sym_preproc_defined] = STATE(5306), - [sym_preproc_unary_expression] = STATE(5306), - [sym_preproc_call_expression] = STATE(5306), - [sym_preproc_binary_expression] = STATE(5306), - [sym_number_literal] = STATE(5306), - [sym_string_literal] = STATE(5306), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3203] = { + [sym__preproc_expression] = STATE(5333), + [sym_preproc_parenthesized_expression] = STATE(5333), + [sym_preproc_defined] = STATE(5333), + [sym_preproc_unary_expression] = STATE(5333), + [sym_preproc_call_expression] = STATE(5333), + [sym_preproc_binary_expression] = STATE(5333), + [sym_number_literal] = STATE(5333), + [sym_string_literal] = STATE(5333), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460807,18 +456559,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3263] = { - [sym__preproc_expression] = STATE(5307), - [sym_preproc_parenthesized_expression] = STATE(5307), - [sym_preproc_defined] = STATE(5307), - [sym_preproc_unary_expression] = STATE(5307), - [sym_preproc_call_expression] = STATE(5307), - [sym_preproc_binary_expression] = STATE(5307), - [sym_number_literal] = STATE(5307), - [sym_string_literal] = STATE(5307), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3204] = { + [sym__preproc_expression] = STATE(5236), + [sym_preproc_parenthesized_expression] = STATE(5236), + [sym_preproc_defined] = STATE(5236), + [sym_preproc_unary_expression] = STATE(5236), + [sym_preproc_call_expression] = STATE(5236), + [sym_preproc_binary_expression] = STATE(5236), + [sym_number_literal] = STATE(5236), + [sym_string_literal] = STATE(5236), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460879,18 +456631,1242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3264] = { - [sym__preproc_expression] = STATE(5308), - [sym_preproc_parenthesized_expression] = STATE(5308), - [sym_preproc_defined] = STATE(5308), - [sym_preproc_unary_expression] = STATE(5308), - [sym_preproc_call_expression] = STATE(5308), - [sym_preproc_binary_expression] = STATE(5308), - [sym_number_literal] = STATE(5308), - [sym_string_literal] = STATE(5308), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3205] = { + [sym__preproc_expression] = STATE(5292), + [sym_preproc_parenthesized_expression] = STATE(5292), + [sym_preproc_defined] = STATE(5292), + [sym_preproc_unary_expression] = STATE(5292), + [sym_preproc_call_expression] = STATE(5292), + [sym_preproc_binary_expression] = STATE(5292), + [sym_number_literal] = STATE(5292), + [sym_string_literal] = STATE(5292), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3206] = { + [sym__preproc_expression] = STATE(5356), + [sym_preproc_parenthesized_expression] = STATE(5356), + [sym_preproc_defined] = STATE(5356), + [sym_preproc_unary_expression] = STATE(5356), + [sym_preproc_call_expression] = STATE(5356), + [sym_preproc_binary_expression] = STATE(5356), + [sym_number_literal] = STATE(5356), + [sym_string_literal] = STATE(5356), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3207] = { + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7344), + [anon_sym_DASH] = ACTIONS(7344), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7346), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7346), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7346), + [aux_sym_procedure_attributes_token3] = ACTIONS(7346), + [aux_sym_use_statement_token2] = ACTIONS(7346), + [aux_sym_implicit_statement_token4] = ACTIONS(7346), + [aux_sym_save_statement_token1] = ACTIONS(7346), + [aux_sym_private_statement_token1] = ACTIONS(7346), + [aux_sym_public_statement_token1] = ACTIONS(7346), + [aux_sym_derived_type_definition_token1] = ACTIONS(7346), + [aux_sym_procedure_attribute_token6] = ACTIONS(7346), + [aux_sym_variable_attributes_token2] = ACTIONS(7346), + [aux_sym_variable_attributes_token3] = ACTIONS(7346), + [aux_sym_variable_attributes_token5] = ACTIONS(7346), + [aux_sym__intrinsic_type_token1] = ACTIONS(7346), + [aux_sym__intrinsic_type_token3] = ACTIONS(7346), + [aux_sym__intrinsic_type_token4] = ACTIONS(7346), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7346), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7346), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7346), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7346), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7346), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7346), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7346), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7346), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7346), + [aux_sym_type_qualifier_token1] = ACTIONS(7346), + [aux_sym_type_qualifier_token2] = ACTIONS(7346), + [anon_sym_SEMI] = ACTIONS(7344), + [aux_sym_stop_statement_token1] = ACTIONS(7346), + [aux_sym_stop_statement_token2] = ACTIONS(7346), + [aux_sym_keyword_statement_token2] = ACTIONS(7346), + [aux_sym_keyword_statement_token3] = ACTIONS(7346), + [aux_sym_data_statement_token1] = ACTIONS(7346), + [aux_sym__inline_if_statement_token1] = ACTIONS(7346), + [aux_sym_end_if_statement_token1] = ACTIONS(7346), + [aux_sym_elseif_clause_token2] = ACTIONS(7346), + [aux_sym_select_case_statement_token1] = ACTIONS(7346), + [aux_sym_block_construct_token1] = ACTIONS(7346), + [aux_sym_format_statement_token1] = ACTIONS(7346), + [aux_sym_inquire_statement_token1] = ACTIONS(7346), + [aux_sym_entry_statement_token1] = ACTIONS(7346), + [aux_sym_logical_expression_token5] = ACTIONS(7344), + [anon_sym_DOT] = ACTIONS(7346), + [anon_sym_LPAREN_SLASH] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(7344), + [aux_sym_boolean_literal_token1] = ACTIONS(7344), + [aux_sym_boolean_literal_token2] = ACTIONS(7344), + [aux_sym_null_literal_token1] = ACTIONS(7346), + [aux_sym_coarray_statement_token1] = ACTIONS(7346), + [aux_sym_coarray_statement_token2] = ACTIONS(7346), + [aux_sym_coarray_statement_token6] = ACTIONS(7346), + [aux_sym_coarray_statement_token8] = ACTIONS(7346), + [aux_sym_coarray_statement_token11] = ACTIONS(7346), + [aux_sym_coarray_statement_token12] = ACTIONS(7346), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7346), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7346), + [aux_sym_identifier_token1] = ACTIONS(7346), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7344), + [sym__float_literal] = ACTIONS(7344), + [sym__boz_literal] = ACTIONS(7344), + [sym__string_literal] = ACTIONS(7344), + [sym__string_literal_kind] = ACTIONS(7344), + [sym__external_end_of_statement] = ACTIONS(7344), + }, + [3208] = { + [sym__preproc_expression] = STATE(5344), + [sym_preproc_parenthesized_expression] = STATE(5344), + [sym_preproc_defined] = STATE(5344), + [sym_preproc_unary_expression] = STATE(5344), + [sym_preproc_call_expression] = STATE(5344), + [sym_preproc_binary_expression] = STATE(5344), + [sym_number_literal] = STATE(5344), + [sym_string_literal] = STATE(5344), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3209] = { + [sym__preproc_expression] = STATE(5348), + [sym_preproc_parenthesized_expression] = STATE(5348), + [sym_preproc_defined] = STATE(5348), + [sym_preproc_unary_expression] = STATE(5348), + [sym_preproc_call_expression] = STATE(5348), + [sym_preproc_binary_expression] = STATE(5348), + [sym_number_literal] = STATE(5348), + [sym_string_literal] = STATE(5348), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3210] = { + [sym__preproc_expression] = STATE(5280), + [sym_preproc_parenthesized_expression] = STATE(5280), + [sym_preproc_defined] = STATE(5280), + [sym_preproc_unary_expression] = STATE(5280), + [sym_preproc_call_expression] = STATE(5280), + [sym_preproc_binary_expression] = STATE(5280), + [sym_number_literal] = STATE(5280), + [sym_string_literal] = STATE(5280), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3211] = { + [sym__preproc_expression] = STATE(5220), + [sym_preproc_parenthesized_expression] = STATE(5220), + [sym_preproc_defined] = STATE(5220), + [sym_preproc_unary_expression] = STATE(5220), + [sym_preproc_call_expression] = STATE(5220), + [sym_preproc_binary_expression] = STATE(5220), + [sym_number_literal] = STATE(5220), + [sym_string_literal] = STATE(5220), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3212] = { + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7350), + [anon_sym_PLUS] = ACTIONS(7348), + [anon_sym_DASH] = ACTIONS(7348), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7350), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7350), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7350), + [aux_sym_procedure_attributes_token3] = ACTIONS(7350), + [aux_sym_use_statement_token2] = ACTIONS(7350), + [aux_sym_implicit_statement_token4] = ACTIONS(7350), + [aux_sym_save_statement_token1] = ACTIONS(7350), + [aux_sym_private_statement_token1] = ACTIONS(7350), + [aux_sym_public_statement_token1] = ACTIONS(7350), + [aux_sym_derived_type_definition_token1] = ACTIONS(7350), + [aux_sym_procedure_attribute_token6] = ACTIONS(7350), + [aux_sym_variable_attributes_token2] = ACTIONS(7350), + [aux_sym_variable_attributes_token3] = ACTIONS(7350), + [aux_sym_variable_attributes_token5] = ACTIONS(7350), + [aux_sym__intrinsic_type_token1] = ACTIONS(7350), + [aux_sym__intrinsic_type_token3] = ACTIONS(7350), + [aux_sym__intrinsic_type_token4] = ACTIONS(7350), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7350), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7350), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7350), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7350), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7350), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7350), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7350), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7350), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7350), + [aux_sym_type_qualifier_token1] = ACTIONS(7350), + [aux_sym_type_qualifier_token2] = ACTIONS(7350), + [anon_sym_SEMI] = ACTIONS(7348), + [aux_sym_stop_statement_token1] = ACTIONS(7350), + [aux_sym_stop_statement_token2] = ACTIONS(7350), + [aux_sym_keyword_statement_token2] = ACTIONS(7350), + [aux_sym_keyword_statement_token3] = ACTIONS(7350), + [aux_sym_data_statement_token1] = ACTIONS(7350), + [aux_sym__inline_if_statement_token1] = ACTIONS(7350), + [aux_sym_end_if_statement_token1] = ACTIONS(7350), + [aux_sym_elseif_clause_token2] = ACTIONS(7350), + [aux_sym_select_case_statement_token1] = ACTIONS(7350), + [aux_sym_block_construct_token1] = ACTIONS(7350), + [aux_sym_format_statement_token1] = ACTIONS(7350), + [aux_sym_inquire_statement_token1] = ACTIONS(7350), + [aux_sym_entry_statement_token1] = ACTIONS(7350), + [aux_sym_logical_expression_token5] = ACTIONS(7348), + [anon_sym_DOT] = ACTIONS(7350), + [anon_sym_LPAREN_SLASH] = ACTIONS(7348), + [anon_sym_LBRACK] = ACTIONS(7348), + [aux_sym_boolean_literal_token1] = ACTIONS(7348), + [aux_sym_boolean_literal_token2] = ACTIONS(7348), + [aux_sym_null_literal_token1] = ACTIONS(7350), + [aux_sym_coarray_statement_token1] = ACTIONS(7350), + [aux_sym_coarray_statement_token2] = ACTIONS(7350), + [aux_sym_coarray_statement_token6] = ACTIONS(7350), + [aux_sym_coarray_statement_token8] = ACTIONS(7350), + [aux_sym_coarray_statement_token11] = ACTIONS(7350), + [aux_sym_coarray_statement_token12] = ACTIONS(7350), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7350), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7350), + [aux_sym_identifier_token1] = ACTIONS(7350), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7348), + [sym__float_literal] = ACTIONS(7348), + [sym__boz_literal] = ACTIONS(7348), + [sym__string_literal] = ACTIONS(7348), + [sym__string_literal_kind] = ACTIONS(7348), + [sym__external_end_of_statement] = ACTIONS(7348), + }, + [3213] = { + [sym__preproc_expression] = STATE(5358), + [sym_preproc_parenthesized_expression] = STATE(5358), + [sym_preproc_defined] = STATE(5358), + [sym_preproc_unary_expression] = STATE(5358), + [sym_preproc_call_expression] = STATE(5358), + [sym_preproc_binary_expression] = STATE(5358), + [sym_number_literal] = STATE(5358), + [sym_string_literal] = STATE(5358), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3214] = { + [anon_sym_COMMA] = ACTIONS(7352), + [anon_sym_LPAREN2] = ACTIONS(7354), + [anon_sym_PLUS] = ACTIONS(7352), + [anon_sym_DASH] = ACTIONS(7352), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7354), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7354), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7354), + [aux_sym_procedure_attributes_token3] = ACTIONS(7354), + [aux_sym_use_statement_token2] = ACTIONS(7354), + [aux_sym_implicit_statement_token4] = ACTIONS(7354), + [aux_sym_save_statement_token1] = ACTIONS(7354), + [aux_sym_private_statement_token1] = ACTIONS(7354), + [aux_sym_public_statement_token1] = ACTIONS(7354), + [aux_sym_derived_type_definition_token1] = ACTIONS(7354), + [aux_sym_procedure_attribute_token6] = ACTIONS(7354), + [aux_sym_variable_attributes_token2] = ACTIONS(7354), + [aux_sym_variable_attributes_token3] = ACTIONS(7354), + [aux_sym_variable_attributes_token5] = ACTIONS(7354), + [aux_sym__intrinsic_type_token1] = ACTIONS(7354), + [aux_sym__intrinsic_type_token3] = ACTIONS(7354), + [aux_sym__intrinsic_type_token4] = ACTIONS(7354), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7354), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7354), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7354), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7354), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7354), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7354), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7354), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7354), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7354), + [aux_sym_type_qualifier_token1] = ACTIONS(7354), + [aux_sym_type_qualifier_token2] = ACTIONS(7354), + [anon_sym_SEMI] = ACTIONS(7352), + [aux_sym_stop_statement_token1] = ACTIONS(7354), + [aux_sym_stop_statement_token2] = ACTIONS(7354), + [aux_sym_keyword_statement_token2] = ACTIONS(7354), + [aux_sym_keyword_statement_token3] = ACTIONS(7354), + [aux_sym_data_statement_token1] = ACTIONS(7354), + [aux_sym__inline_if_statement_token1] = ACTIONS(7354), + [aux_sym_end_if_statement_token1] = ACTIONS(7354), + [aux_sym_elseif_clause_token2] = ACTIONS(7354), + [aux_sym_select_case_statement_token1] = ACTIONS(7354), + [aux_sym_block_construct_token1] = ACTIONS(7354), + [aux_sym_format_statement_token1] = ACTIONS(7354), + [aux_sym_inquire_statement_token1] = ACTIONS(7354), + [aux_sym_entry_statement_token1] = ACTIONS(7354), + [aux_sym_logical_expression_token5] = ACTIONS(7352), + [anon_sym_DOT] = ACTIONS(7354), + [anon_sym_LPAREN_SLASH] = ACTIONS(7352), + [anon_sym_LBRACK] = ACTIONS(7352), + [aux_sym_boolean_literal_token1] = ACTIONS(7352), + [aux_sym_boolean_literal_token2] = ACTIONS(7352), + [aux_sym_null_literal_token1] = ACTIONS(7354), + [aux_sym_coarray_statement_token1] = ACTIONS(7354), + [aux_sym_coarray_statement_token2] = ACTIONS(7354), + [aux_sym_coarray_statement_token6] = ACTIONS(7354), + [aux_sym_coarray_statement_token8] = ACTIONS(7354), + [aux_sym_coarray_statement_token11] = ACTIONS(7354), + [aux_sym_coarray_statement_token12] = ACTIONS(7354), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7354), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7354), + [aux_sym_identifier_token1] = ACTIONS(7354), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7352), + [sym__float_literal] = ACTIONS(7352), + [sym__boz_literal] = ACTIONS(7352), + [sym__string_literal] = ACTIONS(7352), + [sym__string_literal_kind] = ACTIONS(7352), + [sym__external_end_of_statement] = ACTIONS(7352), + }, + [3215] = { + [sym__preproc_expression] = STATE(5364), + [sym_preproc_parenthesized_expression] = STATE(5364), + [sym_preproc_defined] = STATE(5364), + [sym_preproc_unary_expression] = STATE(5364), + [sym_preproc_call_expression] = STATE(5364), + [sym_preproc_binary_expression] = STATE(5364), + [sym_number_literal] = STATE(5364), + [sym_string_literal] = STATE(5364), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3216] = { + [anon_sym_COMMA] = ACTIONS(7356), + [anon_sym_LPAREN2] = ACTIONS(7358), + [anon_sym_PLUS] = ACTIONS(7356), + [anon_sym_DASH] = ACTIONS(7356), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7358), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7358), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7358), + [aux_sym_procedure_attributes_token3] = ACTIONS(7358), + [aux_sym_use_statement_token2] = ACTIONS(7358), + [aux_sym_implicit_statement_token4] = ACTIONS(7358), + [aux_sym_save_statement_token1] = ACTIONS(7358), + [aux_sym_private_statement_token1] = ACTIONS(7358), + [aux_sym_public_statement_token1] = ACTIONS(7358), + [aux_sym_derived_type_definition_token1] = ACTIONS(7358), + [aux_sym_procedure_attribute_token6] = ACTIONS(7358), + [aux_sym_variable_attributes_token2] = ACTIONS(7358), + [aux_sym_variable_attributes_token3] = ACTIONS(7358), + [aux_sym_variable_attributes_token5] = ACTIONS(7358), + [aux_sym__intrinsic_type_token1] = ACTIONS(7358), + [aux_sym__intrinsic_type_token3] = ACTIONS(7358), + [aux_sym__intrinsic_type_token4] = ACTIONS(7358), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7358), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7358), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7358), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7358), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7358), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7358), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7358), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7358), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7358), + [aux_sym_type_qualifier_token1] = ACTIONS(7358), + [aux_sym_type_qualifier_token2] = ACTIONS(7358), + [anon_sym_SEMI] = ACTIONS(7356), + [aux_sym_stop_statement_token1] = ACTIONS(7358), + [aux_sym_stop_statement_token2] = ACTIONS(7358), + [aux_sym_keyword_statement_token2] = ACTIONS(7358), + [aux_sym_keyword_statement_token3] = ACTIONS(7358), + [aux_sym_data_statement_token1] = ACTIONS(7358), + [aux_sym__inline_if_statement_token1] = ACTIONS(7358), + [aux_sym_end_if_statement_token1] = ACTIONS(7358), + [aux_sym_elseif_clause_token2] = ACTIONS(7358), + [aux_sym_select_case_statement_token1] = ACTIONS(7358), + [aux_sym_block_construct_token1] = ACTIONS(7358), + [aux_sym_format_statement_token1] = ACTIONS(7358), + [aux_sym_inquire_statement_token1] = ACTIONS(7358), + [aux_sym_entry_statement_token1] = ACTIONS(7358), + [aux_sym_logical_expression_token5] = ACTIONS(7356), + [anon_sym_DOT] = ACTIONS(7358), + [anon_sym_LPAREN_SLASH] = ACTIONS(7356), + [anon_sym_LBRACK] = ACTIONS(7356), + [aux_sym_boolean_literal_token1] = ACTIONS(7356), + [aux_sym_boolean_literal_token2] = ACTIONS(7356), + [aux_sym_null_literal_token1] = ACTIONS(7358), + [aux_sym_coarray_statement_token1] = ACTIONS(7358), + [aux_sym_coarray_statement_token2] = ACTIONS(7358), + [aux_sym_coarray_statement_token6] = ACTIONS(7358), + [aux_sym_coarray_statement_token8] = ACTIONS(7358), + [aux_sym_coarray_statement_token11] = ACTIONS(7358), + [aux_sym_coarray_statement_token12] = ACTIONS(7358), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7358), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7358), + [aux_sym_identifier_token1] = ACTIONS(7358), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7356), + [sym__float_literal] = ACTIONS(7356), + [sym__boz_literal] = ACTIONS(7356), + [sym__string_literal] = ACTIONS(7356), + [sym__string_literal_kind] = ACTIONS(7356), + [sym__external_end_of_statement] = ACTIONS(7356), + }, + [3217] = { + [sym__preproc_expression] = STATE(5351), + [sym_preproc_parenthesized_expression] = STATE(5351), + [sym_preproc_defined] = STATE(5351), + [sym_preproc_unary_expression] = STATE(5351), + [sym_preproc_call_expression] = STATE(5351), + [sym_preproc_binary_expression] = STATE(5351), + [sym_number_literal] = STATE(5351), + [sym_string_literal] = STATE(5351), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3218] = { + [sym__preproc_expression] = STATE(5340), + [sym_preproc_parenthesized_expression] = STATE(5340), + [sym_preproc_defined] = STATE(5340), + [sym_preproc_unary_expression] = STATE(5340), + [sym_preproc_call_expression] = STATE(5340), + [sym_preproc_binary_expression] = STATE(5340), + [sym_number_literal] = STATE(5340), + [sym_string_literal] = STATE(5340), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3219] = { + [sym__preproc_expression] = STATE(5355), + [sym_preproc_parenthesized_expression] = STATE(5355), + [sym_preproc_defined] = STATE(5355), + [sym_preproc_unary_expression] = STATE(5355), + [sym_preproc_call_expression] = STATE(5355), + [sym_preproc_binary_expression] = STATE(5355), + [sym_number_literal] = STATE(5355), + [sym_string_literal] = STATE(5355), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3220] = { + [sym__preproc_expression] = STATE(5244), + [sym_preproc_parenthesized_expression] = STATE(5244), + [sym_preproc_defined] = STATE(5244), + [sym_preproc_unary_expression] = STATE(5244), + [sym_preproc_call_expression] = STATE(5244), + [sym_preproc_binary_expression] = STATE(5244), + [sym_number_literal] = STATE(5244), + [sym_string_literal] = STATE(5244), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3221] = { + [sym__preproc_expression] = STATE(5299), + [sym_preproc_parenthesized_expression] = STATE(5299), + [sym_preproc_defined] = STATE(5299), + [sym_preproc_unary_expression] = STATE(5299), + [sym_preproc_call_expression] = STATE(5299), + [sym_preproc_binary_expression] = STATE(5299), + [sym_number_literal] = STATE(5299), + [sym_string_literal] = STATE(5299), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3222] = { + [sym__preproc_expression] = STATE(5350), + [sym_preproc_parenthesized_expression] = STATE(5350), + [sym_preproc_defined] = STATE(5350), + [sym_preproc_unary_expression] = STATE(5350), + [sym_preproc_call_expression] = STATE(5350), + [sym_preproc_binary_expression] = STATE(5350), + [sym_number_literal] = STATE(5350), + [sym_string_literal] = STATE(5350), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -460951,18 +457927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3265] = { - [sym__preproc_expression] = STATE(5309), - [sym_preproc_parenthesized_expression] = STATE(5309), - [sym_preproc_defined] = STATE(5309), - [sym_preproc_unary_expression] = STATE(5309), - [sym_preproc_call_expression] = STATE(5309), - [sym_preproc_binary_expression] = STATE(5309), - [sym_number_literal] = STATE(5309), - [sym_string_literal] = STATE(5309), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3223] = { + [sym__preproc_expression] = STATE(5243), + [sym_preproc_parenthesized_expression] = STATE(5243), + [sym_preproc_defined] = STATE(5243), + [sym_preproc_unary_expression] = STATE(5243), + [sym_preproc_call_expression] = STATE(5243), + [sym_preproc_binary_expression] = STATE(5243), + [sym_number_literal] = STATE(5243), + [sym_string_literal] = STATE(5243), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -461023,18 +457999,1098 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, - [3266] = { - [sym__preproc_expression] = STATE(5310), - [sym_preproc_parenthesized_expression] = STATE(5310), - [sym_preproc_defined] = STATE(5310), - [sym_preproc_unary_expression] = STATE(5310), - [sym_preproc_call_expression] = STATE(5310), - [sym_preproc_binary_expression] = STATE(5310), - [sym_number_literal] = STATE(5310), - [sym_string_literal] = STATE(5310), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [3224] = { + [sym__preproc_expression] = STATE(5306), + [sym_preproc_parenthesized_expression] = STATE(5306), + [sym_preproc_defined] = STATE(5306), + [sym_preproc_unary_expression] = STATE(5306), + [sym_preproc_call_expression] = STATE(5306), + [sym_preproc_binary_expression] = STATE(5306), + [sym_number_literal] = STATE(5306), + [sym_string_literal] = STATE(5306), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3225] = { + [sym__preproc_expression] = STATE(5281), + [sym_preproc_parenthesized_expression] = STATE(5281), + [sym_preproc_defined] = STATE(5281), + [sym_preproc_unary_expression] = STATE(5281), + [sym_preproc_call_expression] = STATE(5281), + [sym_preproc_binary_expression] = STATE(5281), + [sym_number_literal] = STATE(5281), + [sym_string_literal] = STATE(5281), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3226] = { + [anon_sym_COMMA] = ACTIONS(7360), + [anon_sym_LPAREN2] = ACTIONS(7362), + [anon_sym_PLUS] = ACTIONS(7360), + [anon_sym_DASH] = ACTIONS(7360), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7362), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7362), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7362), + [aux_sym_procedure_attributes_token3] = ACTIONS(7362), + [aux_sym_use_statement_token2] = ACTIONS(7362), + [aux_sym_implicit_statement_token4] = ACTIONS(7362), + [aux_sym_save_statement_token1] = ACTIONS(7362), + [aux_sym_private_statement_token1] = ACTIONS(7362), + [aux_sym_public_statement_token1] = ACTIONS(7362), + [aux_sym_derived_type_definition_token1] = ACTIONS(7362), + [aux_sym_procedure_attribute_token6] = ACTIONS(7362), + [aux_sym_variable_attributes_token2] = ACTIONS(7362), + [aux_sym_variable_attributes_token3] = ACTIONS(7362), + [aux_sym_variable_attributes_token5] = ACTIONS(7362), + [aux_sym__intrinsic_type_token1] = ACTIONS(7362), + [aux_sym__intrinsic_type_token3] = ACTIONS(7362), + [aux_sym__intrinsic_type_token4] = ACTIONS(7362), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7362), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7362), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7362), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7362), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7362), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7362), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7362), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7362), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7362), + [aux_sym_type_qualifier_token1] = ACTIONS(7362), + [aux_sym_type_qualifier_token2] = ACTIONS(7362), + [anon_sym_SEMI] = ACTIONS(7360), + [aux_sym_stop_statement_token1] = ACTIONS(7362), + [aux_sym_stop_statement_token2] = ACTIONS(7362), + [aux_sym_keyword_statement_token2] = ACTIONS(7362), + [aux_sym_keyword_statement_token3] = ACTIONS(7362), + [aux_sym_data_statement_token1] = ACTIONS(7362), + [aux_sym__inline_if_statement_token1] = ACTIONS(7362), + [aux_sym_end_if_statement_token1] = ACTIONS(7362), + [aux_sym_elseif_clause_token2] = ACTIONS(7362), + [aux_sym_select_case_statement_token1] = ACTIONS(7362), + [aux_sym_block_construct_token1] = ACTIONS(7362), + [aux_sym_format_statement_token1] = ACTIONS(7362), + [aux_sym_inquire_statement_token1] = ACTIONS(7362), + [aux_sym_entry_statement_token1] = ACTIONS(7362), + [aux_sym_logical_expression_token5] = ACTIONS(7360), + [anon_sym_DOT] = ACTIONS(7362), + [anon_sym_LPAREN_SLASH] = ACTIONS(7360), + [anon_sym_LBRACK] = ACTIONS(7360), + [aux_sym_boolean_literal_token1] = ACTIONS(7360), + [aux_sym_boolean_literal_token2] = ACTIONS(7360), + [aux_sym_null_literal_token1] = ACTIONS(7362), + [aux_sym_coarray_statement_token1] = ACTIONS(7362), + [aux_sym_coarray_statement_token2] = ACTIONS(7362), + [aux_sym_coarray_statement_token6] = ACTIONS(7362), + [aux_sym_coarray_statement_token8] = ACTIONS(7362), + [aux_sym_coarray_statement_token11] = ACTIONS(7362), + [aux_sym_coarray_statement_token12] = ACTIONS(7362), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7362), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7362), + [aux_sym_identifier_token1] = ACTIONS(7362), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7360), + [sym__float_literal] = ACTIONS(7360), + [sym__boz_literal] = ACTIONS(7360), + [sym__string_literal] = ACTIONS(7360), + [sym__string_literal_kind] = ACTIONS(7360), + [sym__external_end_of_statement] = ACTIONS(7360), + }, + [3227] = { + [sym__preproc_expression] = STATE(5361), + [sym_preproc_parenthesized_expression] = STATE(5361), + [sym_preproc_defined] = STATE(5361), + [sym_preproc_unary_expression] = STATE(5361), + [sym_preproc_call_expression] = STATE(5361), + [sym_preproc_binary_expression] = STATE(5361), + [sym_number_literal] = STATE(5361), + [sym_string_literal] = STATE(5361), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3228] = { + [sym__preproc_expression] = STATE(5267), + [sym_preproc_parenthesized_expression] = STATE(5267), + [sym_preproc_defined] = STATE(5267), + [sym_preproc_unary_expression] = STATE(5267), + [sym_preproc_call_expression] = STATE(5267), + [sym_preproc_binary_expression] = STATE(5267), + [sym_number_literal] = STATE(5267), + [sym_string_literal] = STATE(5267), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3229] = { + [sym__preproc_expression] = STATE(5322), + [sym_preproc_parenthesized_expression] = STATE(5322), + [sym_preproc_defined] = STATE(5322), + [sym_preproc_unary_expression] = STATE(5322), + [sym_preproc_call_expression] = STATE(5322), + [sym_preproc_binary_expression] = STATE(5322), + [sym_number_literal] = STATE(5322), + [sym_string_literal] = STATE(5322), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3230] = { + [sym__preproc_expression] = STATE(5346), + [sym_preproc_parenthesized_expression] = STATE(5346), + [sym_preproc_defined] = STATE(5346), + [sym_preproc_unary_expression] = STATE(5346), + [sym_preproc_call_expression] = STATE(5346), + [sym_preproc_binary_expression] = STATE(5346), + [sym_number_literal] = STATE(5346), + [sym_string_literal] = STATE(5346), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3231] = { + [sym__preproc_expression] = STATE(5369), + [sym_preproc_parenthesized_expression] = STATE(5369), + [sym_preproc_defined] = STATE(5369), + [sym_preproc_unary_expression] = STATE(5369), + [sym_preproc_call_expression] = STATE(5369), + [sym_preproc_binary_expression] = STATE(5369), + [sym_number_literal] = STATE(5369), + [sym_string_literal] = STATE(5369), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3232] = { + [sym__preproc_expression] = STATE(5312), + [sym_preproc_parenthesized_expression] = STATE(5312), + [sym_preproc_defined] = STATE(5312), + [sym_preproc_unary_expression] = STATE(5312), + [sym_preproc_call_expression] = STATE(5312), + [sym_preproc_binary_expression] = STATE(5312), + [sym_number_literal] = STATE(5312), + [sym_string_literal] = STATE(5312), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3233] = { + [sym__preproc_expression] = STATE(5323), + [sym_preproc_parenthesized_expression] = STATE(5323), + [sym_preproc_defined] = STATE(5323), + [sym_preproc_unary_expression] = STATE(5323), + [sym_preproc_call_expression] = STATE(5323), + [sym_preproc_binary_expression] = STATE(5323), + [sym_number_literal] = STATE(5323), + [sym_string_literal] = STATE(5323), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3234] = { + [sym__preproc_expression] = STATE(5326), + [sym_preproc_parenthesized_expression] = STATE(5326), + [sym_preproc_defined] = STATE(5326), + [sym_preproc_unary_expression] = STATE(5326), + [sym_preproc_call_expression] = STATE(5326), + [sym_preproc_binary_expression] = STATE(5326), + [sym_number_literal] = STATE(5326), + [sym_string_literal] = STATE(5326), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3235] = { + [sym__preproc_expression] = STATE(5210), + [sym_preproc_parenthesized_expression] = STATE(5210), + [sym_preproc_defined] = STATE(5210), + [sym_preproc_unary_expression] = STATE(5210), + [sym_preproc_call_expression] = STATE(5210), + [sym_preproc_binary_expression] = STATE(5210), + [sym_number_literal] = STATE(5210), + [sym_string_literal] = STATE(5210), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3236] = { + [sym__preproc_expression] = STATE(5211), + [sym_preproc_parenthesized_expression] = STATE(5211), + [sym_preproc_defined] = STATE(5211), + [sym_preproc_unary_expression] = STATE(5211), + [sym_preproc_call_expression] = STATE(5211), + [sym_preproc_binary_expression] = STATE(5211), + [sym_number_literal] = STATE(5211), + [sym_string_literal] = STATE(5211), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3237] = { + [sym__preproc_expression] = STATE(5212), + [sym_preproc_parenthesized_expression] = STATE(5212), + [sym_preproc_defined] = STATE(5212), + [sym_preproc_unary_expression] = STATE(5212), + [sym_preproc_call_expression] = STATE(5212), + [sym_preproc_binary_expression] = STATE(5212), + [sym_number_literal] = STATE(5212), + [sym_string_literal] = STATE(5212), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3238] = { + [sym__preproc_expression] = STATE(5214), + [sym_preproc_parenthesized_expression] = STATE(5214), + [sym_preproc_defined] = STATE(5214), + [sym_preproc_unary_expression] = STATE(5214), + [sym_preproc_call_expression] = STATE(5214), + [sym_preproc_binary_expression] = STATE(5214), + [sym_number_literal] = STATE(5214), + [sym_string_literal] = STATE(5214), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3239] = { + [sym__preproc_expression] = STATE(5337), + [sym_preproc_parenthesized_expression] = STATE(5337), + [sym_preproc_defined] = STATE(5337), + [sym_preproc_unary_expression] = STATE(5337), + [sym_preproc_call_expression] = STATE(5337), + [sym_preproc_binary_expression] = STATE(5337), + [sym_number_literal] = STATE(5337), + [sym_string_literal] = STATE(5337), + [sym_identifier] = STATE(5164), + [anon_sym_LPAREN2] = ACTIONS(7200), + [anon_sym_defined] = ACTIONS(7202), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7204), [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), @@ -461095,292 +459151,2236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_kind] = ACTIONS(7218), [sym__preproc_unary_operator] = ACTIONS(7220), }, + [3240] = { + [sym__preproc_expression] = STATE(5315), + [sym_preproc_parenthesized_expression] = STATE(5315), + [sym_preproc_defined] = STATE(5315), + [sym_preproc_unary_expression] = STATE(5315), + [sym_preproc_call_expression] = STATE(5315), + [sym_preproc_binary_expression] = STATE(5315), + [sym_number_literal] = STATE(5315), + [sym_string_literal] = STATE(5315), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3241] = { + [sym__preproc_expression] = STATE(5224), + [sym_preproc_parenthesized_expression] = STATE(5224), + [sym_preproc_defined] = STATE(5224), + [sym_preproc_unary_expression] = STATE(5224), + [sym_preproc_call_expression] = STATE(5224), + [sym_preproc_binary_expression] = STATE(5224), + [sym_number_literal] = STATE(5224), + [sym_string_literal] = STATE(5224), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3242] = { + [sym__preproc_expression] = STATE(5226), + [sym_preproc_parenthesized_expression] = STATE(5226), + [sym_preproc_defined] = STATE(5226), + [sym_preproc_unary_expression] = STATE(5226), + [sym_preproc_call_expression] = STATE(5226), + [sym_preproc_binary_expression] = STATE(5226), + [sym_number_literal] = STATE(5226), + [sym_string_literal] = STATE(5226), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3243] = { + [sym__preproc_expression] = STATE(5227), + [sym_preproc_parenthesized_expression] = STATE(5227), + [sym_preproc_defined] = STATE(5227), + [sym_preproc_unary_expression] = STATE(5227), + [sym_preproc_call_expression] = STATE(5227), + [sym_preproc_binary_expression] = STATE(5227), + [sym_number_literal] = STATE(5227), + [sym_string_literal] = STATE(5227), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3244] = { + [sym__preproc_expression] = STATE(5228), + [sym_preproc_parenthesized_expression] = STATE(5228), + [sym_preproc_defined] = STATE(5228), + [sym_preproc_unary_expression] = STATE(5228), + [sym_preproc_call_expression] = STATE(5228), + [sym_preproc_binary_expression] = STATE(5228), + [sym_number_literal] = STATE(5228), + [sym_string_literal] = STATE(5228), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3245] = { + [sym__preproc_expression] = STATE(5229), + [sym_preproc_parenthesized_expression] = STATE(5229), + [sym_preproc_defined] = STATE(5229), + [sym_preproc_unary_expression] = STATE(5229), + [sym_preproc_call_expression] = STATE(5229), + [sym_preproc_binary_expression] = STATE(5229), + [sym_number_literal] = STATE(5229), + [sym_string_literal] = STATE(5229), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3246] = { + [sym__preproc_expression] = STATE(5232), + [sym_preproc_parenthesized_expression] = STATE(5232), + [sym_preproc_defined] = STATE(5232), + [sym_preproc_unary_expression] = STATE(5232), + [sym_preproc_call_expression] = STATE(5232), + [sym_preproc_binary_expression] = STATE(5232), + [sym_number_literal] = STATE(5232), + [sym_string_literal] = STATE(5232), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3247] = { + [sym__preproc_expression] = STATE(5238), + [sym_preproc_parenthesized_expression] = STATE(5238), + [sym_preproc_defined] = STATE(5238), + [sym_preproc_unary_expression] = STATE(5238), + [sym_preproc_call_expression] = STATE(5238), + [sym_preproc_binary_expression] = STATE(5238), + [sym_number_literal] = STATE(5238), + [sym_string_literal] = STATE(5238), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3248] = { + [sym__preproc_expression] = STATE(5241), + [sym_preproc_parenthesized_expression] = STATE(5241), + [sym_preproc_defined] = STATE(5241), + [sym_preproc_unary_expression] = STATE(5241), + [sym_preproc_call_expression] = STATE(5241), + [sym_preproc_binary_expression] = STATE(5241), + [sym_number_literal] = STATE(5241), + [sym_string_literal] = STATE(5241), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3249] = { + [sym__preproc_expression] = STATE(5242), + [sym_preproc_parenthesized_expression] = STATE(5242), + [sym_preproc_defined] = STATE(5242), + [sym_preproc_unary_expression] = STATE(5242), + [sym_preproc_call_expression] = STATE(5242), + [sym_preproc_binary_expression] = STATE(5242), + [sym_number_literal] = STATE(5242), + [sym_string_literal] = STATE(5242), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3250] = { + [sym__preproc_expression] = STATE(5247), + [sym_preproc_parenthesized_expression] = STATE(5247), + [sym_preproc_defined] = STATE(5247), + [sym_preproc_unary_expression] = STATE(5247), + [sym_preproc_call_expression] = STATE(5247), + [sym_preproc_binary_expression] = STATE(5247), + [sym_number_literal] = STATE(5247), + [sym_string_literal] = STATE(5247), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3251] = { + [sym__preproc_expression] = STATE(5249), + [sym_preproc_parenthesized_expression] = STATE(5249), + [sym_preproc_defined] = STATE(5249), + [sym_preproc_unary_expression] = STATE(5249), + [sym_preproc_call_expression] = STATE(5249), + [sym_preproc_binary_expression] = STATE(5249), + [sym_number_literal] = STATE(5249), + [sym_string_literal] = STATE(5249), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3252] = { + [sym__preproc_expression] = STATE(5250), + [sym_preproc_parenthesized_expression] = STATE(5250), + [sym_preproc_defined] = STATE(5250), + [sym_preproc_unary_expression] = STATE(5250), + [sym_preproc_call_expression] = STATE(5250), + [sym_preproc_binary_expression] = STATE(5250), + [sym_number_literal] = STATE(5250), + [sym_string_literal] = STATE(5250), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3253] = { + [sym__preproc_expression] = STATE(5255), + [sym_preproc_parenthesized_expression] = STATE(5255), + [sym_preproc_defined] = STATE(5255), + [sym_preproc_unary_expression] = STATE(5255), + [sym_preproc_call_expression] = STATE(5255), + [sym_preproc_binary_expression] = STATE(5255), + [sym_number_literal] = STATE(5255), + [sym_string_literal] = STATE(5255), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3254] = { + [sym__preproc_expression] = STATE(5256), + [sym_preproc_parenthesized_expression] = STATE(5256), + [sym_preproc_defined] = STATE(5256), + [sym_preproc_unary_expression] = STATE(5256), + [sym_preproc_call_expression] = STATE(5256), + [sym_preproc_binary_expression] = STATE(5256), + [sym_number_literal] = STATE(5256), + [sym_string_literal] = STATE(5256), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3255] = { + [sym__preproc_expression] = STATE(5258), + [sym_preproc_parenthesized_expression] = STATE(5258), + [sym_preproc_defined] = STATE(5258), + [sym_preproc_unary_expression] = STATE(5258), + [sym_preproc_call_expression] = STATE(5258), + [sym_preproc_binary_expression] = STATE(5258), + [sym_number_literal] = STATE(5258), + [sym_string_literal] = STATE(5258), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3256] = { + [sym__preproc_expression] = STATE(5259), + [sym_preproc_parenthesized_expression] = STATE(5259), + [sym_preproc_defined] = STATE(5259), + [sym_preproc_unary_expression] = STATE(5259), + [sym_preproc_call_expression] = STATE(5259), + [sym_preproc_binary_expression] = STATE(5259), + [sym_number_literal] = STATE(5259), + [sym_string_literal] = STATE(5259), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3257] = { + [sym__preproc_expression] = STATE(5262), + [sym_preproc_parenthesized_expression] = STATE(5262), + [sym_preproc_defined] = STATE(5262), + [sym_preproc_unary_expression] = STATE(5262), + [sym_preproc_call_expression] = STATE(5262), + [sym_preproc_binary_expression] = STATE(5262), + [sym_number_literal] = STATE(5262), + [sym_string_literal] = STATE(5262), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3258] = { + [sym__preproc_expression] = STATE(5263), + [sym_preproc_parenthesized_expression] = STATE(5263), + [sym_preproc_defined] = STATE(5263), + [sym_preproc_unary_expression] = STATE(5263), + [sym_preproc_call_expression] = STATE(5263), + [sym_preproc_binary_expression] = STATE(5263), + [sym_number_literal] = STATE(5263), + [sym_string_literal] = STATE(5263), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3259] = { + [sym__preproc_expression] = STATE(5268), + [sym_preproc_parenthesized_expression] = STATE(5268), + [sym_preproc_defined] = STATE(5268), + [sym_preproc_unary_expression] = STATE(5268), + [sym_preproc_call_expression] = STATE(5268), + [sym_preproc_binary_expression] = STATE(5268), + [sym_number_literal] = STATE(5268), + [sym_string_literal] = STATE(5268), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3260] = { + [sym__preproc_expression] = STATE(5272), + [sym_preproc_parenthesized_expression] = STATE(5272), + [sym_preproc_defined] = STATE(5272), + [sym_preproc_unary_expression] = STATE(5272), + [sym_preproc_call_expression] = STATE(5272), + [sym_preproc_binary_expression] = STATE(5272), + [sym_number_literal] = STATE(5272), + [sym_string_literal] = STATE(5272), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3261] = { + [sym__preproc_expression] = STATE(5276), + [sym_preproc_parenthesized_expression] = STATE(5276), + [sym_preproc_defined] = STATE(5276), + [sym_preproc_unary_expression] = STATE(5276), + [sym_preproc_call_expression] = STATE(5276), + [sym_preproc_binary_expression] = STATE(5276), + [sym_number_literal] = STATE(5276), + [sym_string_literal] = STATE(5276), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3262] = { + [sym__preproc_expression] = STATE(5279), + [sym_preproc_parenthesized_expression] = STATE(5279), + [sym_preproc_defined] = STATE(5279), + [sym_preproc_unary_expression] = STATE(5279), + [sym_preproc_call_expression] = STATE(5279), + [sym_preproc_binary_expression] = STATE(5279), + [sym_number_literal] = STATE(5279), + [sym_string_literal] = STATE(5279), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3263] = { + [sym__preproc_expression] = STATE(5282), + [sym_preproc_parenthesized_expression] = STATE(5282), + [sym_preproc_defined] = STATE(5282), + [sym_preproc_unary_expression] = STATE(5282), + [sym_preproc_call_expression] = STATE(5282), + [sym_preproc_binary_expression] = STATE(5282), + [sym_number_literal] = STATE(5282), + [sym_string_literal] = STATE(5282), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3264] = { + [sym__preproc_expression] = STATE(5284), + [sym_preproc_parenthesized_expression] = STATE(5284), + [sym_preproc_defined] = STATE(5284), + [sym_preproc_unary_expression] = STATE(5284), + [sym_preproc_call_expression] = STATE(5284), + [sym_preproc_binary_expression] = STATE(5284), + [sym_number_literal] = STATE(5284), + [sym_string_literal] = STATE(5284), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3265] = { + [sym__preproc_expression] = STATE(5287), + [sym_preproc_parenthesized_expression] = STATE(5287), + [sym_preproc_defined] = STATE(5287), + [sym_preproc_unary_expression] = STATE(5287), + [sym_preproc_call_expression] = STATE(5287), + [sym_preproc_binary_expression] = STATE(5287), + [sym_number_literal] = STATE(5287), + [sym_string_literal] = STATE(5287), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, + [3266] = { + [sym__preproc_expression] = STATE(5290), + [sym_preproc_parenthesized_expression] = STATE(5290), + [sym_preproc_defined] = STATE(5290), + [sym_preproc_unary_expression] = STATE(5290), + [sym_preproc_call_expression] = STATE(5290), + [sym_preproc_binary_expression] = STATE(5290), + [sym_number_literal] = STATE(5290), + [sym_string_literal] = STATE(5290), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), + }, [3267] = { - [sym__preproc_expression] = STATE(5312), - [sym_preproc_parenthesized_expression] = STATE(5312), - [sym_preproc_defined] = STATE(5312), - [sym_preproc_unary_expression] = STATE(5312), - [sym_preproc_call_expression] = STATE(5312), - [sym_preproc_binary_expression] = STATE(5312), - [sym_number_literal] = STATE(5312), - [sym_string_literal] = STATE(5312), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [sym__preproc_expression] = STATE(5293), + [sym_preproc_parenthesized_expression] = STATE(5293), + [sym_preproc_defined] = STATE(5293), + [sym_preproc_unary_expression] = STATE(5293), + [sym_preproc_call_expression] = STATE(5293), + [sym_preproc_binary_expression] = STATE(5293), + [sym_number_literal] = STATE(5293), + [sym_string_literal] = STATE(5293), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), }, [3268] = { - [sym__preproc_expression] = STATE(5313), - [sym_preproc_parenthesized_expression] = STATE(5313), - [sym_preproc_defined] = STATE(5313), - [sym_preproc_unary_expression] = STATE(5313), - [sym_preproc_call_expression] = STATE(5313), - [sym_preproc_binary_expression] = STATE(5313), - [sym_number_literal] = STATE(5313), - [sym_string_literal] = STATE(5313), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [sym__preproc_expression] = STATE(5296), + [sym_preproc_parenthesized_expression] = STATE(5296), + [sym_preproc_defined] = STATE(5296), + [sym_preproc_unary_expression] = STATE(5296), + [sym_preproc_call_expression] = STATE(5296), + [sym_preproc_binary_expression] = STATE(5296), + [sym_number_literal] = STATE(5296), + [sym_string_literal] = STATE(5296), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), }, [3269] = { - [sym__preproc_expression] = STATE(5224), - [sym_preproc_parenthesized_expression] = STATE(5224), - [sym_preproc_defined] = STATE(5224), - [sym_preproc_unary_expression] = STATE(5224), - [sym_preproc_call_expression] = STATE(5224), - [sym_preproc_binary_expression] = STATE(5224), - [sym_number_literal] = STATE(5224), - [sym_string_literal] = STATE(5224), - [sym_identifier] = STATE(5171), - [anon_sym_LPAREN2] = ACTIONS(7198), - [anon_sym_defined] = ACTIONS(7200), + [sym__preproc_expression] = STATE(5289), + [sym_preproc_parenthesized_expression] = STATE(5289), + [sym_preproc_defined] = STATE(5289), + [sym_preproc_unary_expression] = STATE(5289), + [sym_preproc_call_expression] = STATE(5289), + [sym_preproc_binary_expression] = STATE(5289), + [sym_number_literal] = STATE(5289), + [sym_string_literal] = STATE(5289), + [sym_identifier] = STATE(5163), + [anon_sym_LPAREN2] = ACTIONS(7226), + [anon_sym_defined] = ACTIONS(7228), [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7204), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7206), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7206), - [aux_sym_procedure_attributes_token3] = ACTIONS(7206), - [aux_sym_use_statement_token2] = ACTIONS(7206), - [aux_sym_implicit_statement_token4] = ACTIONS(7206), - [aux_sym_save_statement_token1] = ACTIONS(7206), - [aux_sym_private_statement_token1] = ACTIONS(7206), - [aux_sym_public_statement_token1] = ACTIONS(7206), - [aux_sym_derived_type_definition_token1] = ACTIONS(7206), - [aux_sym_procedure_attribute_token6] = ACTIONS(7206), - [aux_sym_variable_attributes_token2] = ACTIONS(7206), - [aux_sym_variable_attributes_token3] = ACTIONS(7206), - [aux_sym_variable_attributes_token5] = ACTIONS(7206), - [aux_sym__intrinsic_type_token1] = ACTIONS(7206), - [aux_sym__intrinsic_type_token3] = ACTIONS(7206), - [aux_sym__intrinsic_type_token4] = ACTIONS(7208), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7210), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7206), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7206), - [aux_sym_type_qualifier_token1] = ACTIONS(7206), - [aux_sym_type_qualifier_token2] = ACTIONS(7206), - [aux_sym_stop_statement_token1] = ACTIONS(7206), - [aux_sym_stop_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token2] = ACTIONS(7206), - [aux_sym_keyword_statement_token3] = ACTIONS(7206), - [aux_sym_data_statement_token1] = ACTIONS(7206), - [aux_sym__inline_if_statement_token1] = ACTIONS(7206), - [aux_sym_end_if_statement_token1] = ACTIONS(7206), - [aux_sym_elseif_clause_token2] = ACTIONS(7206), - [aux_sym_select_case_statement_token1] = ACTIONS(7212), - [aux_sym_block_construct_token1] = ACTIONS(7206), - [aux_sym_format_statement_token1] = ACTIONS(7206), - [aux_sym_inquire_statement_token1] = ACTIONS(7206), - [aux_sym_entry_statement_token1] = ACTIONS(7206), - [aux_sym_null_literal_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_statement_token2] = ACTIONS(7206), - [aux_sym_coarray_statement_token6] = ACTIONS(7206), - [aux_sym_coarray_statement_token8] = ACTIONS(7206), - [aux_sym_coarray_statement_token11] = ACTIONS(7206), - [aux_sym_coarray_statement_token12] = ACTIONS(7206), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7206), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7206), - [aux_sym_identifier_token1] = ACTIONS(7206), - [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7214), - [sym__float_literal] = ACTIONS(7214), - [sym__boz_literal] = ACTIONS(7214), - [sym__string_literal] = ACTIONS(7216), - [sym__string_literal_kind] = ACTIONS(7218), - [sym__preproc_unary_operator] = ACTIONS(7220), + [aux_sym_end_program_statement_token1] = ACTIONS(7232), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7234), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7234), + [aux_sym_procedure_attributes_token3] = ACTIONS(7234), + [aux_sym_use_statement_token2] = ACTIONS(7234), + [aux_sym_implicit_statement_token4] = ACTIONS(7234), + [aux_sym_save_statement_token1] = ACTIONS(7234), + [aux_sym_private_statement_token1] = ACTIONS(7234), + [aux_sym_public_statement_token1] = ACTIONS(7234), + [aux_sym_derived_type_definition_token1] = ACTIONS(7234), + [aux_sym_procedure_attribute_token6] = ACTIONS(7234), + [aux_sym_variable_attributes_token2] = ACTIONS(7234), + [aux_sym_variable_attributes_token3] = ACTIONS(7234), + [aux_sym_variable_attributes_token5] = ACTIONS(7234), + [aux_sym__intrinsic_type_token1] = ACTIONS(7234), + [aux_sym__intrinsic_type_token3] = ACTIONS(7234), + [aux_sym__intrinsic_type_token4] = ACTIONS(7236), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7238), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7234), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7234), + [aux_sym_type_qualifier_token1] = ACTIONS(7234), + [aux_sym_type_qualifier_token2] = ACTIONS(7234), + [aux_sym_stop_statement_token1] = ACTIONS(7234), + [aux_sym_stop_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token2] = ACTIONS(7234), + [aux_sym_keyword_statement_token3] = ACTIONS(7234), + [aux_sym_data_statement_token1] = ACTIONS(7234), + [aux_sym__inline_if_statement_token1] = ACTIONS(7234), + [aux_sym_end_if_statement_token1] = ACTIONS(7234), + [aux_sym_elseif_clause_token2] = ACTIONS(7234), + [aux_sym_select_case_statement_token1] = ACTIONS(7240), + [aux_sym_block_construct_token1] = ACTIONS(7234), + [aux_sym_format_statement_token1] = ACTIONS(7234), + [aux_sym_inquire_statement_token1] = ACTIONS(7234), + [aux_sym_entry_statement_token1] = ACTIONS(7234), + [aux_sym_null_literal_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_statement_token2] = ACTIONS(7234), + [aux_sym_coarray_statement_token6] = ACTIONS(7234), + [aux_sym_coarray_statement_token8] = ACTIONS(7234), + [aux_sym_coarray_statement_token11] = ACTIONS(7234), + [aux_sym_coarray_statement_token12] = ACTIONS(7234), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7234), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7234), + [aux_sym_identifier_token1] = ACTIONS(7234), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7242), + [sym__float_literal] = ACTIONS(7242), + [sym__boz_literal] = ACTIONS(7242), + [sym__string_literal] = ACTIONS(7244), + [sym__string_literal_kind] = ACTIONS(7246), + [sym__preproc_unary_operator] = ACTIONS(7248), }, [3270] = { - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_LPAREN2] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5600), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5600), - [aux_sym_use_statement_token2] = ACTIONS(5600), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LPAREN2] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5594), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5594), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5594), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5594), + [aux_sym_use_statement_token2] = ACTIONS(5594), [anon_sym_COLON_COLON] = ACTIONS(6646), - [aux_sym_implicit_statement_token4] = ACTIONS(5600), - [aux_sym_save_statement_token1] = ACTIONS(5600), - [aux_sym_private_statement_token1] = ACTIONS(5600), - [aux_sym_public_statement_token1] = ACTIONS(5600), - [aux_sym_derived_type_definition_token1] = ACTIONS(5600), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5600), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5600), - [aux_sym_variable_attributes_token3] = ACTIONS(5600), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5600), - [aux_sym__intrinsic_type_token1] = ACTIONS(5600), - [aux_sym__intrinsic_type_token3] = ACTIONS(5600), - [aux_sym__intrinsic_type_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5600), - [aux_sym_type_qualifier_token2] = ACTIONS(5600), - [anon_sym_SEMI] = ACTIONS(4325), - [aux_sym_stop_statement_token1] = ACTIONS(5600), - [aux_sym_stop_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token3] = ACTIONS(5600), - [aux_sym_data_statement_token1] = ACTIONS(5600), - [aux_sym__inline_if_statement_token1] = ACTIONS(5600), - [aux_sym_end_if_statement_token1] = ACTIONS(5600), - [aux_sym_elseif_clause_token2] = ACTIONS(5600), - [aux_sym_select_case_statement_token1] = ACTIONS(5600), - [aux_sym_block_construct_token1] = ACTIONS(5600), - [aux_sym_format_statement_token1] = ACTIONS(5600), - [aux_sym_inquire_statement_token1] = ACTIONS(5600), - [aux_sym_entry_statement_token1] = ACTIONS(5600), - [anon_sym_LBRACK] = ACTIONS(4325), - [aux_sym_null_literal_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token2] = ACTIONS(5600), - [aux_sym_coarray_statement_token6] = ACTIONS(5600), - [aux_sym_coarray_statement_token8] = ACTIONS(5600), - [aux_sym_coarray_statement_token11] = ACTIONS(5600), - [aux_sym_coarray_statement_token12] = ACTIONS(5600), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), - [aux_sym_identifier_token1] = ACTIONS(5600), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(4325), + [aux_sym_implicit_statement_token4] = ACTIONS(5594), + [aux_sym_save_statement_token1] = ACTIONS(5594), + [aux_sym_private_statement_token1] = ACTIONS(5594), + [aux_sym_public_statement_token1] = ACTIONS(5594), + [aux_sym_derived_type_definition_token1] = ACTIONS(5594), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5594), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5594), + [aux_sym_variable_attributes_token3] = ACTIONS(5594), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5594), + [aux_sym__intrinsic_type_token1] = ACTIONS(5594), + [aux_sym__intrinsic_type_token3] = ACTIONS(5594), + [aux_sym__intrinsic_type_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5594), + [aux_sym_type_qualifier_token2] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(4257), + [aux_sym_stop_statement_token1] = ACTIONS(5594), + [aux_sym_stop_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token3] = ACTIONS(5594), + [aux_sym_data_statement_token1] = ACTIONS(5594), + [aux_sym__inline_if_statement_token1] = ACTIONS(5594), + [aux_sym_end_if_statement_token1] = ACTIONS(5594), + [aux_sym_elseif_clause_token2] = ACTIONS(5594), + [aux_sym_select_case_statement_token1] = ACTIONS(5594), + [aux_sym_block_construct_token1] = ACTIONS(5594), + [aux_sym_format_statement_token1] = ACTIONS(5594), + [aux_sym_inquire_statement_token1] = ACTIONS(5594), + [aux_sym_entry_statement_token1] = ACTIONS(5594), + [anon_sym_LBRACK] = ACTIONS(4257), + [aux_sym_null_literal_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token2] = ACTIONS(5594), + [aux_sym_coarray_statement_token6] = ACTIONS(5594), + [aux_sym_coarray_statement_token8] = ACTIONS(5594), + [aux_sym_coarray_statement_token11] = ACTIONS(5594), + [aux_sym_coarray_statement_token12] = ACTIONS(5594), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5594), + [aux_sym_identifier_token1] = ACTIONS(5594), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(4257), }, [3271] = { [anon_sym_LPAREN2] = ACTIONS(7364), @@ -461456,7 +461456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [3272] = { [sym_language_binding] = STATE(3272), [sym_variable_attributes] = STATE(3272), - [sym__standalone_type_qualifier] = STATE(3362), + [sym__standalone_type_qualifier] = STATE(3367), [aux_sym_variable_modification_repeat1] = STATE(3272), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(7368), @@ -461523,15 +461523,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3273] = { - [sym_statement_label] = STATE(3920), - [sym_statement_label_reference] = STATE(3870), - [sym_while_statement] = STATE(6552), - [sym_concurrent_statement] = STATE(6552), - [sym_concurrent_header] = STATE(5730), - [sym_loop_control_expression] = STATE(6552), - [sym_identifier] = STATE(8144), - [sym__end_of_statement] = STATE(689), - [anon_sym_COMMA] = ACTIONS(7390), + [anon_sym_LPAREN2] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7392), + [anon_sym_DASH] = ACTIONS(7392), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7390), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7390), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7390), + [aux_sym_procedure_attributes_token3] = ACTIONS(7390), + [aux_sym_use_statement_token2] = ACTIONS(7390), + [aux_sym_implicit_statement_token4] = ACTIONS(7390), + [aux_sym_save_statement_token1] = ACTIONS(7390), + [aux_sym_private_statement_token1] = ACTIONS(7390), + [aux_sym_public_statement_token1] = ACTIONS(7390), + [aux_sym_derived_type_definition_token1] = ACTIONS(7390), + [aux_sym_procedure_attribute_token6] = ACTIONS(7390), + [aux_sym_variable_attributes_token2] = ACTIONS(7390), + [aux_sym_variable_attributes_token3] = ACTIONS(7390), + [aux_sym_variable_attributes_token5] = ACTIONS(7390), + [aux_sym__intrinsic_type_token1] = ACTIONS(7390), + [aux_sym__intrinsic_type_token3] = ACTIONS(7390), + [aux_sym__intrinsic_type_token4] = ACTIONS(7390), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7390), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7390), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7390), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7390), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7390), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7390), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7390), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7390), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7390), + [aux_sym_type_qualifier_token1] = ACTIONS(7390), + [aux_sym_type_qualifier_token2] = ACTIONS(7390), + [aux_sym_stop_statement_token1] = ACTIONS(7390), + [aux_sym_stop_statement_token2] = ACTIONS(7390), + [aux_sym_keyword_statement_token2] = ACTIONS(7390), + [aux_sym_keyword_statement_token3] = ACTIONS(7390), + [aux_sym_data_statement_token1] = ACTIONS(7390), + [aux_sym__inline_if_statement_token1] = ACTIONS(7390), + [aux_sym_end_if_statement_token1] = ACTIONS(7390), + [aux_sym_elseif_clause_token2] = ACTIONS(7390), + [aux_sym_select_case_statement_token1] = ACTIONS(7390), + [aux_sym_block_construct_token1] = ACTIONS(7390), + [aux_sym_format_statement_token1] = ACTIONS(7390), + [aux_sym_inquire_statement_token1] = ACTIONS(7390), + [aux_sym_entry_statement_token1] = ACTIONS(7390), + [aux_sym_logical_expression_token5] = ACTIONS(7392), + [anon_sym_DOT] = ACTIONS(7390), + [anon_sym_LPAREN_SLASH] = ACTIONS(7392), + [anon_sym_LBRACK] = ACTIONS(7392), + [aux_sym_boolean_literal_token1] = ACTIONS(7392), + [aux_sym_boolean_literal_token2] = ACTIONS(7392), + [aux_sym_null_literal_token1] = ACTIONS(7390), + [aux_sym_coarray_statement_token1] = ACTIONS(7390), + [aux_sym_coarray_statement_token2] = ACTIONS(7390), + [aux_sym_coarray_statement_token6] = ACTIONS(7390), + [aux_sym_coarray_statement_token8] = ACTIONS(7390), + [aux_sym_coarray_statement_token11] = ACTIONS(7390), + [aux_sym_coarray_statement_token12] = ACTIONS(7390), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7390), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7390), + [aux_sym_identifier_token1] = ACTIONS(7390), + [sym_comment] = ACTIONS(21), + [sym__integer_literal] = ACTIONS(7392), + [sym__float_literal] = ACTIONS(7392), + [sym__boz_literal] = ACTIONS(7392), + [sym__string_literal] = ACTIONS(7392), + [sym__string_literal_kind] = ACTIONS(7392), + }, + [3274] = { + [sym_statement_label] = STATE(3929), + [sym_statement_label_reference] = STATE(3865), + [sym_while_statement] = STATE(6381), + [sym_concurrent_statement] = STATE(6381), + [sym_concurrent_header] = STATE(5713), + [sym_loop_control_expression] = STATE(6381), + [sym_identifier] = STATE(7725), + [sym__end_of_statement] = STATE(653), + [anon_sym_COMMA] = ACTIONS(7394), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(748), [aux_sym_defined_io_procedure_token1] = ACTIONS(93), @@ -461549,10 +461618,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_attributes_token5] = ACTIONS(93), [aux_sym__intrinsic_type_token1] = ACTIONS(93), [aux_sym__intrinsic_type_token3] = ACTIONS(93), - [aux_sym__intrinsic_type_token4] = ACTIONS(1398), + [aux_sym__intrinsic_type_token4] = ACTIONS(1396), [aux_sym__standalone_type_qualifier_token1] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token2] = ACTIONS(93), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1400), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(1398), [aux_sym__standalone_type_qualifier_token5] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token10] = ACTIONS(93), [aux_sym__standalone_type_qualifier_token11] = ACTIONS(93), @@ -461561,18 +461630,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__standalone_type_qualifier_token15] = ACTIONS(93), [aux_sym_type_qualifier_token1] = ACTIONS(93), [aux_sym_type_qualifier_token2] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(7392), + [anon_sym_SEMI] = ACTIONS(7396), [aux_sym_stop_statement_token1] = ACTIONS(93), [aux_sym_stop_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token2] = ACTIONS(93), [aux_sym_keyword_statement_token3] = ACTIONS(93), [aux_sym_data_statement_token1] = ACTIONS(93), - [aux_sym_while_statement_token1] = ACTIONS(7394), - [aux_sym_concurrent_header_token1] = ACTIONS(7396), + [aux_sym_while_statement_token1] = ACTIONS(7398), + [aux_sym_concurrent_header_token1] = ACTIONS(7400), [aux_sym__inline_if_statement_token1] = ACTIONS(93), [aux_sym_end_if_statement_token1] = ACTIONS(93), [aux_sym_elseif_clause_token2] = ACTIONS(93), - [aux_sym_select_case_statement_token1] = ACTIONS(4685), + [aux_sym_select_case_statement_token1] = ACTIONS(4663), [aux_sym_block_construct_token1] = ACTIONS(93), [aux_sym_format_statement_token1] = ACTIONS(93), [aux_sym_inquire_statement_token1] = ACTIONS(93), @@ -461588,88 +461657,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_coarray_critical_statement_token1] = ACTIONS(93), [aux_sym_identifier_token1] = ACTIONS(93), [sym_comment] = ACTIONS(21), - [sym__integer_literal] = ACTIONS(7398), - [sym__external_end_of_statement] = ACTIONS(7392), - }, - [3274] = { - [anon_sym_LPAREN2] = ACTIONS(7400), - [anon_sym_PLUS] = ACTIONS(7402), - [anon_sym_DASH] = ACTIONS(7402), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7400), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7400), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7400), - [aux_sym_procedure_attributes_token3] = ACTIONS(7400), - [aux_sym_use_statement_token2] = ACTIONS(7400), - [aux_sym_implicit_statement_token4] = ACTIONS(7400), - [aux_sym_save_statement_token1] = ACTIONS(7400), - [aux_sym_private_statement_token1] = ACTIONS(7400), - [aux_sym_public_statement_token1] = ACTIONS(7400), - [aux_sym_derived_type_definition_token1] = ACTIONS(7400), - [aux_sym_procedure_attribute_token6] = ACTIONS(7400), - [aux_sym_variable_attributes_token2] = ACTIONS(7400), - [aux_sym_variable_attributes_token3] = ACTIONS(7400), - [aux_sym_variable_attributes_token5] = ACTIONS(7400), - [aux_sym__intrinsic_type_token1] = ACTIONS(7400), - [aux_sym__intrinsic_type_token3] = ACTIONS(7400), - [aux_sym__intrinsic_type_token4] = ACTIONS(7400), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7400), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7400), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7400), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7400), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7400), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7400), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7400), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7400), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7400), - [aux_sym_type_qualifier_token1] = ACTIONS(7400), - [aux_sym_type_qualifier_token2] = ACTIONS(7400), - [aux_sym_stop_statement_token1] = ACTIONS(7400), - [aux_sym_stop_statement_token2] = ACTIONS(7400), - [aux_sym_keyword_statement_token2] = ACTIONS(7400), - [aux_sym_keyword_statement_token3] = ACTIONS(7400), - [aux_sym_data_statement_token1] = ACTIONS(7400), - [aux_sym__inline_if_statement_token1] = ACTIONS(7400), - [aux_sym_end_if_statement_token1] = ACTIONS(7400), - [aux_sym_elseif_clause_token2] = ACTIONS(7400), - [aux_sym_select_case_statement_token1] = ACTIONS(7400), - [aux_sym_block_construct_token1] = ACTIONS(7400), - [aux_sym_format_statement_token1] = ACTIONS(7400), - [aux_sym_inquire_statement_token1] = ACTIONS(7400), - [aux_sym_entry_statement_token1] = ACTIONS(7400), - [aux_sym_logical_expression_token5] = ACTIONS(7402), - [anon_sym_DOT] = ACTIONS(7400), - [anon_sym_LPAREN_SLASH] = ACTIONS(7402), - [anon_sym_LBRACK] = ACTIONS(7402), - [aux_sym_boolean_literal_token1] = ACTIONS(7402), - [aux_sym_boolean_literal_token2] = ACTIONS(7402), - [aux_sym_null_literal_token1] = ACTIONS(7400), - [aux_sym_coarray_statement_token1] = ACTIONS(7400), - [aux_sym_coarray_statement_token2] = ACTIONS(7400), - [aux_sym_coarray_statement_token6] = ACTIONS(7400), - [aux_sym_coarray_statement_token8] = ACTIONS(7400), - [aux_sym_coarray_statement_token11] = ACTIONS(7400), - [aux_sym_coarray_statement_token12] = ACTIONS(7400), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7400), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7400), - [aux_sym_identifier_token1] = ACTIONS(7400), - [sym_comment] = ACTIONS(21), [sym__integer_literal] = ACTIONS(7402), - [sym__float_literal] = ACTIONS(7402), - [sym__boz_literal] = ACTIONS(7402), - [sym__string_literal] = ACTIONS(7402), - [sym__string_literal_kind] = ACTIONS(7402), + [sym__external_end_of_statement] = ACTIONS(7396), }, [3275] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(6101), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(6101), - [sym_identifier] = STATE(6231), - [aux_sym_procedure_statement_repeat1] = STATE(3278), + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(5935), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(5935), + [sym_identifier] = STATE(6236), + [aux_sym_procedure_statement_repeat1] = STATE(3277), [anon_sym_COMMA] = ACTIONS(7404), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), @@ -461729,152 +461729,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3276] = { - [sym__argument_list] = STATE(2391), - [sym_argument_list] = STATE(3346), - [anon_sym_LPAREN2] = ACTIONS(6644), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(5600), - [aux_sym_defined_io_procedure_token1] = ACTIONS(5600), - [aux_sym_defined_io_procedure_token2] = ACTIONS(5600), - [aux_sym_language_binding_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token1] = ACTIONS(5600), - [aux_sym_procedure_attributes_token3] = ACTIONS(5600), - [aux_sym_use_statement_token2] = ACTIONS(5600), - [anon_sym_COLON_COLON] = ACTIONS(6646), - [aux_sym_implicit_statement_token4] = ACTIONS(5600), - [aux_sym_save_statement_token1] = ACTIONS(5600), - [aux_sym_private_statement_token1] = ACTIONS(5600), - [aux_sym_public_statement_token1] = ACTIONS(5600), - [aux_sym_derived_type_definition_token1] = ACTIONS(5600), - [aux_sym_abstract_specifier_token1] = ACTIONS(5600), - [aux_sym_procedure_attribute_token6] = ACTIONS(5600), - [aux_sym_variable_attributes_token1] = ACTIONS(5600), - [aux_sym_variable_attributes_token2] = ACTIONS(5600), - [aux_sym_variable_attributes_token3] = ACTIONS(5600), - [aux_sym_variable_attributes_token4] = ACTIONS(5600), - [aux_sym_variable_attributes_token5] = ACTIONS(5600), - [aux_sym__intrinsic_type_token1] = ACTIONS(5600), - [aux_sym__intrinsic_type_token3] = ACTIONS(5600), - [aux_sym__intrinsic_type_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5600), - [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5600), - [aux_sym_type_qualifier_token1] = ACTIONS(5600), - [aux_sym_type_qualifier_token2] = ACTIONS(5600), - [aux_sym_stop_statement_token1] = ACTIONS(5600), - [aux_sym_stop_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token2] = ACTIONS(5600), - [aux_sym_keyword_statement_token3] = ACTIONS(5600), - [aux_sym_data_statement_token1] = ACTIONS(5600), - [aux_sym__inline_if_statement_token1] = ACTIONS(5600), - [aux_sym_end_if_statement_token1] = ACTIONS(5600), - [aux_sym_elseif_clause_token2] = ACTIONS(5600), - [aux_sym_select_case_statement_token1] = ACTIONS(5600), - [aux_sym_block_construct_token1] = ACTIONS(5600), - [aux_sym_format_statement_token1] = ACTIONS(5600), - [aux_sym_inquire_statement_token1] = ACTIONS(5600), - [aux_sym_entry_statement_token1] = ACTIONS(5600), - [aux_sym_null_literal_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_statement_token2] = ACTIONS(5600), - [aux_sym_coarray_statement_token6] = ACTIONS(5600), - [aux_sym_coarray_statement_token8] = ACTIONS(5600), - [aux_sym_coarray_statement_token11] = ACTIONS(5600), - [aux_sym_coarray_statement_token12] = ACTIONS(5600), - [aux_sym_coarray_team_statement_token1] = ACTIONS(5600), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(5600), - [aux_sym_identifier_token1] = ACTIONS(5600), - [sym_comment] = ACTIONS(21), - }, - [3277] = { - [sym_character_length] = STATE(3403), - [sym__argument_list] = STATE(3102), - [sym_argument_list] = STATE(3405), - [sym_coarray_index] = STATE(3512), + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(6083), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(6083), + [sym_identifier] = STATE(6236), [anon_sym_COMMA] = ACTIONS(7414), [anon_sym_LPAREN2] = ACTIONS(7416), - [anon_sym_STAR] = ACTIONS(7418), - [anon_sym_SLASH] = ACTIONS(7414), - [anon_sym_AMP] = ACTIONS(21), - [aux_sym_end_program_statement_token1] = ACTIONS(7420), - [anon_sym_EQ] = ACTIONS(7420), - [aux_sym_defined_io_procedure_token1] = ACTIONS(7420), - [aux_sym_defined_io_procedure_token2] = ACTIONS(7420), - [aux_sym_procedure_attributes_token3] = ACTIONS(7420), - [aux_sym_use_statement_token2] = ACTIONS(7420), - [anon_sym_EQ_GT] = ACTIONS(7414), - [aux_sym_implicit_statement_token4] = ACTIONS(7420), - [aux_sym_save_statement_token1] = ACTIONS(7420), - [aux_sym_private_statement_token1] = ACTIONS(7420), - [aux_sym_public_statement_token1] = ACTIONS(7420), - [aux_sym_derived_type_definition_token1] = ACTIONS(7420), - [aux_sym_procedure_attribute_token6] = ACTIONS(7420), - [aux_sym_variable_attributes_token2] = ACTIONS(7420), - [aux_sym_variable_attributes_token3] = ACTIONS(7420), - [aux_sym_variable_attributes_token5] = ACTIONS(7420), - [aux_sym__intrinsic_type_token1] = ACTIONS(7420), - [aux_sym__intrinsic_type_token3] = ACTIONS(7420), - [aux_sym__intrinsic_type_token4] = ACTIONS(7420), - [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7420), - [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7420), - [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7420), - [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7420), - [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7420), - [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7420), - [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7420), - [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7420), - [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7420), - [aux_sym_type_qualifier_token1] = ACTIONS(7420), - [aux_sym_type_qualifier_token2] = ACTIONS(7420), - [anon_sym_SEMI] = ACTIONS(7414), - [aux_sym_stop_statement_token1] = ACTIONS(7420), - [aux_sym_stop_statement_token2] = ACTIONS(7420), - [aux_sym_keyword_statement_token2] = ACTIONS(7420), - [aux_sym_keyword_statement_token3] = ACTIONS(7420), - [aux_sym_data_statement_token1] = ACTIONS(7420), - [aux_sym__inline_if_statement_token1] = ACTIONS(7420), - [aux_sym_end_if_statement_token1] = ACTIONS(7420), - [aux_sym_elseif_clause_token2] = ACTIONS(7420), - [aux_sym_select_case_statement_token1] = ACTIONS(7420), - [aux_sym_block_construct_token1] = ACTIONS(7420), - [aux_sym_format_statement_token1] = ACTIONS(7420), - [aux_sym_inquire_statement_token1] = ACTIONS(7420), - [aux_sym_entry_statement_token1] = ACTIONS(7420), - [anon_sym_LBRACK] = ACTIONS(7422), - [aux_sym_null_literal_token1] = ACTIONS(7420), - [aux_sym_coarray_statement_token1] = ACTIONS(7420), - [aux_sym_coarray_statement_token2] = ACTIONS(7420), - [aux_sym_coarray_statement_token6] = ACTIONS(7420), - [aux_sym_coarray_statement_token8] = ACTIONS(7420), - [aux_sym_coarray_statement_token11] = ACTIONS(7420), - [aux_sym_coarray_statement_token12] = ACTIONS(7420), - [aux_sym_coarray_team_statement_token1] = ACTIONS(7420), - [aux_sym_coarray_critical_statement_token1] = ACTIONS(7420), - [aux_sym_identifier_token1] = ACTIONS(7420), - [sym_comment] = ACTIONS(21), - [sym__external_end_of_statement] = ACTIONS(7414), - }, - [3278] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(6085), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(6085), - [sym_identifier] = STATE(6231), - [aux_sym_procedure_statement_repeat1] = STATE(3631), - [anon_sym_COMMA] = ACTIONS(7404), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_assignment_token1] = ACTIONS(7406), @@ -461883,7 +461747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(7410), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7424), + [anon_sym_COLON_COLON] = ACTIONS(7418), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -461932,17 +461796,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), }, - [3279] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(6102), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(6102), - [sym_identifier] = STATE(6231), - [anon_sym_COMMA] = ACTIONS(7426), - [anon_sym_LPAREN2] = ACTIONS(7428), + [3277] = { + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(5949), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(5949), + [sym_identifier] = STATE(6236), + [aux_sym_procedure_statement_repeat1] = STATE(3729), + [anon_sym_COMMA] = ACTIONS(7404), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_assignment_token1] = ACTIONS(7406), @@ -461951,7 +461815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(7410), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7430), + [anon_sym_COLON_COLON] = ACTIONS(7420), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -462000,17 +461864,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), }, - [3280] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(6111), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(6111), - [sym_identifier] = STATE(6231), - [aux_sym_procedure_statement_repeat1] = STATE(3281), - [anon_sym_COMMA] = ACTIONS(7404), + [3278] = { + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(6088), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(6088), + [sym_identifier] = STATE(6236), + [anon_sym_COMMA] = ACTIONS(7422), + [anon_sym_LPAREN2] = ACTIONS(7424), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_assignment_token1] = ACTIONS(7406), @@ -462019,7 +461883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(7410), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7432), + [anon_sym_COLON_COLON] = ACTIONS(7426), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -462068,16 +461932,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), }, - [3281] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(5914), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(5914), - [sym_identifier] = STATE(6231), - [aux_sym_procedure_statement_repeat1] = STATE(3631), + [3279] = { + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(5978), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(5978), + [sym_identifier] = STATE(6236), + [aux_sym_procedure_statement_repeat1] = STATE(3280), [anon_sym_COMMA] = ACTIONS(7404), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), @@ -462087,7 +461951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(7410), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7434), + [anon_sym_COLON_COLON] = ACTIONS(7428), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -462136,16 +462000,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), }, - [3282] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(5926), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(5926), - [sym_identifier] = STATE(6231), - [aux_sym_procedure_statement_repeat1] = STATE(3631), + [3280] = { + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(6043), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(6043), + [sym_identifier] = STATE(6236), + [aux_sym_procedure_statement_repeat1] = STATE(3729), [anon_sym_COMMA] = ACTIONS(7404), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), @@ -462155,7 +462019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(7410), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7436), + [anon_sym_COLON_COLON] = ACTIONS(7430), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -462204,16 +462068,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), }, - [3283] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(5947), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(5947), - [sym_identifier] = STATE(6231), - [aux_sym_procedure_statement_repeat1] = STATE(3285), + [3281] = { + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(5926), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(5926), + [sym_identifier] = STATE(6236), + [aux_sym_procedure_statement_repeat1] = STATE(3284), [anon_sym_COMMA] = ACTIONS(7404), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), @@ -462223,7 +462087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(7410), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7438), + [anon_sym_COLON_COLON] = ACTIONS(7432), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -462272,16 +462136,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), }, - [3284] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(5923), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(5923), - [sym_identifier] = STATE(6231), - [aux_sym_procedure_statement_repeat1] = STATE(3282), + [3282] = { + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(6102), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(6102), + [sym_identifier] = STATE(6236), + [aux_sym_procedure_statement_repeat1] = STATE(3283), [anon_sym_COMMA] = ACTIONS(7404), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), @@ -462291,7 +462155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(7410), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7440), + [anon_sym_COLON_COLON] = ACTIONS(7434), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -462340,16 +462204,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), }, - [3285] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(5981), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(5981), - [sym_identifier] = STATE(6231), - [aux_sym_procedure_statement_repeat1] = STATE(3631), + [3283] = { + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(5966), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(5966), + [sym_identifier] = STATE(6236), + [aux_sym_procedure_statement_repeat1] = STATE(3729), [anon_sym_COMMA] = ACTIONS(7404), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), @@ -462359,7 +462223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(7410), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7436), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -462408,17 +462272,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), }, - [3286] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(6104), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(6104), - [sym_identifier] = STATE(6231), - [anon_sym_COMMA] = ACTIONS(7444), - [anon_sym_LPAREN2] = ACTIONS(7446), + [3284] = { + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(6006), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(6006), + [sym_identifier] = STATE(6236), + [aux_sym_procedure_statement_repeat1] = STATE(3729), + [anon_sym_COMMA] = ACTIONS(7404), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), [aux_sym_assignment_token1] = ACTIONS(7406), @@ -462427,7 +462291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_defined_io_procedure_token2] = ACTIONS(7410), [aux_sym_procedure_attributes_token3] = ACTIONS(5456), [aux_sym_use_statement_token2] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(7448), + [anon_sym_COLON_COLON] = ACTIONS(7438), [aux_sym_implicit_statement_token4] = ACTIONS(5456), [aux_sym_save_statement_token1] = ACTIONS(5456), [aux_sym_private_statement_token1] = ACTIONS(5456), @@ -462476,15 +462340,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_identifier_token1] = ACTIONS(5456), [sym_comment] = ACTIONS(21), }, + [3285] = { + [sym_character_length] = STATE(3449), + [sym__argument_list] = STATE(3104), + [sym_argument_list] = STATE(3437), + [sym_coarray_index] = STATE(3519), + [anon_sym_COMMA] = ACTIONS(7440), + [anon_sym_LPAREN2] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7444), + [anon_sym_SLASH] = ACTIONS(7440), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(7446), + [anon_sym_EQ] = ACTIONS(7446), + [aux_sym_defined_io_procedure_token1] = ACTIONS(7446), + [aux_sym_defined_io_procedure_token2] = ACTIONS(7446), + [aux_sym_procedure_attributes_token3] = ACTIONS(7446), + [aux_sym_use_statement_token2] = ACTIONS(7446), + [anon_sym_EQ_GT] = ACTIONS(7440), + [aux_sym_implicit_statement_token4] = ACTIONS(7446), + [aux_sym_save_statement_token1] = ACTIONS(7446), + [aux_sym_private_statement_token1] = ACTIONS(7446), + [aux_sym_public_statement_token1] = ACTIONS(7446), + [aux_sym_derived_type_definition_token1] = ACTIONS(7446), + [aux_sym_procedure_attribute_token6] = ACTIONS(7446), + [aux_sym_variable_attributes_token2] = ACTIONS(7446), + [aux_sym_variable_attributes_token3] = ACTIONS(7446), + [aux_sym_variable_attributes_token5] = ACTIONS(7446), + [aux_sym__intrinsic_type_token1] = ACTIONS(7446), + [aux_sym__intrinsic_type_token3] = ACTIONS(7446), + [aux_sym__intrinsic_type_token4] = ACTIONS(7446), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(7446), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(7446), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(7446), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(7446), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(7446), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(7446), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(7446), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(7446), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(7446), + [aux_sym_type_qualifier_token1] = ACTIONS(7446), + [aux_sym_type_qualifier_token2] = ACTIONS(7446), + [anon_sym_SEMI] = ACTIONS(7440), + [aux_sym_stop_statement_token1] = ACTIONS(7446), + [aux_sym_stop_statement_token2] = ACTIONS(7446), + [aux_sym_keyword_statement_token2] = ACTIONS(7446), + [aux_sym_keyword_statement_token3] = ACTIONS(7446), + [aux_sym_data_statement_token1] = ACTIONS(7446), + [aux_sym__inline_if_statement_token1] = ACTIONS(7446), + [aux_sym_end_if_statement_token1] = ACTIONS(7446), + [aux_sym_elseif_clause_token2] = ACTIONS(7446), + [aux_sym_select_case_statement_token1] = ACTIONS(7446), + [aux_sym_block_construct_token1] = ACTIONS(7446), + [aux_sym_format_statement_token1] = ACTIONS(7446), + [aux_sym_inquire_statement_token1] = ACTIONS(7446), + [aux_sym_entry_statement_token1] = ACTIONS(7446), + [anon_sym_LBRACK] = ACTIONS(7448), + [aux_sym_null_literal_token1] = ACTIONS(7446), + [aux_sym_coarray_statement_token1] = ACTIONS(7446), + [aux_sym_coarray_statement_token2] = ACTIONS(7446), + [aux_sym_coarray_statement_token6] = ACTIONS(7446), + [aux_sym_coarray_statement_token8] = ACTIONS(7446), + [aux_sym_coarray_statement_token11] = ACTIONS(7446), + [aux_sym_coarray_statement_token12] = ACTIONS(7446), + [aux_sym_coarray_team_statement_token1] = ACTIONS(7446), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(7446), + [aux_sym_identifier_token1] = ACTIONS(7446), + [sym_comment] = ACTIONS(21), + [sym__external_end_of_statement] = ACTIONS(7440), + }, + [3286] = { + [sym__argument_list] = STATE(2529), + [sym_argument_list] = STATE(3366), + [anon_sym_LPAREN2] = ACTIONS(6644), + [anon_sym_AMP] = ACTIONS(21), + [aux_sym_end_program_statement_token1] = ACTIONS(5594), + [aux_sym_defined_io_procedure_token1] = ACTIONS(5594), + [aux_sym_defined_io_procedure_token2] = ACTIONS(5594), + [aux_sym_language_binding_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token1] = ACTIONS(5594), + [aux_sym_procedure_attributes_token3] = ACTIONS(5594), + [aux_sym_use_statement_token2] = ACTIONS(5594), + [anon_sym_COLON_COLON] = ACTIONS(6646), + [aux_sym_implicit_statement_token4] = ACTIONS(5594), + [aux_sym_save_statement_token1] = ACTIONS(5594), + [aux_sym_private_statement_token1] = ACTIONS(5594), + [aux_sym_public_statement_token1] = ACTIONS(5594), + [aux_sym_derived_type_definition_token1] = ACTIONS(5594), + [aux_sym_abstract_specifier_token1] = ACTIONS(5594), + [aux_sym_procedure_attribute_token6] = ACTIONS(5594), + [aux_sym_variable_attributes_token1] = ACTIONS(5594), + [aux_sym_variable_attributes_token2] = ACTIONS(5594), + [aux_sym_variable_attributes_token3] = ACTIONS(5594), + [aux_sym_variable_attributes_token4] = ACTIONS(5594), + [aux_sym_variable_attributes_token5] = ACTIONS(5594), + [aux_sym__intrinsic_type_token1] = ACTIONS(5594), + [aux_sym__intrinsic_type_token3] = ACTIONS(5594), + [aux_sym__intrinsic_type_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token1] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token2] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token3] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token4] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token5] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token6] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token10] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token11] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token12] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token13] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token14] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token15] = ACTIONS(5594), + [aux_sym__standalone_type_qualifier_token16] = ACTIONS(5594), + [aux_sym_type_qualifier_token1] = ACTIONS(5594), + [aux_sym_type_qualifier_token2] = ACTIONS(5594), + [aux_sym_stop_statement_token1] = ACTIONS(5594), + [aux_sym_stop_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token2] = ACTIONS(5594), + [aux_sym_keyword_statement_token3] = ACTIONS(5594), + [aux_sym_data_statement_token1] = ACTIONS(5594), + [aux_sym__inline_if_statement_token1] = ACTIONS(5594), + [aux_sym_end_if_statement_token1] = ACTIONS(5594), + [aux_sym_elseif_clause_token2] = ACTIONS(5594), + [aux_sym_select_case_statement_token1] = ACTIONS(5594), + [aux_sym_block_construct_token1] = ACTIONS(5594), + [aux_sym_format_statement_token1] = ACTIONS(5594), + [aux_sym_inquire_statement_token1] = ACTIONS(5594), + [aux_sym_entry_statement_token1] = ACTIONS(5594), + [aux_sym_null_literal_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_statement_token2] = ACTIONS(5594), + [aux_sym_coarray_statement_token6] = ACTIONS(5594), + [aux_sym_coarray_statement_token8] = ACTIONS(5594), + [aux_sym_coarray_statement_token11] = ACTIONS(5594), + [aux_sym_coarray_statement_token12] = ACTIONS(5594), + [aux_sym_coarray_team_statement_token1] = ACTIONS(5594), + [aux_sym_coarray_critical_statement_token1] = ACTIONS(5594), + [aux_sym_identifier_token1] = ACTIONS(5594), + [sym_comment] = ACTIONS(21), + }, [3287] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(6091), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(6091), - [sym_identifier] = STATE(6231), + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(5965), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(5965), + [sym_identifier] = STATE(6236), [anon_sym_COMMA] = ACTIONS(7450), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), @@ -462544,14 +462544,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3288] = { - [sym_assignment] = STATE(8039), - [sym_operator] = STATE(8039), - [sym_defined_io_procedure] = STATE(8039), - [sym__generic_procedure] = STATE(8039), - [sym_binding_declarator] = STATE(5916), - [sym_binding_name] = STATE(8238), - [sym_method_name] = STATE(5916), - [sym_identifier] = STATE(6231), + [sym_assignment] = STATE(8355), + [sym_operator] = STATE(8355), + [sym_defined_io_procedure] = STATE(8355), + [sym__generic_procedure] = STATE(8355), + [sym_binding_declarator] = STATE(6045), + [sym_binding_name] = STATE(7482), + [sym_method_name] = STATE(6045), + [sym_identifier] = STATE(6236), [anon_sym_COMMA] = ACTIONS(7454), [anon_sym_AMP] = ACTIONS(21), [aux_sym_end_program_statement_token1] = ACTIONS(5454), @@ -462613,40 +462613,665 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 14, + [0] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(1545), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5592), 2, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + ACTIONS(7458), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6584), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [91] = 14, + ACTIONS(79), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(81), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7460), 1, + anon_sym_STAR, + STATE(6041), 1, + sym__type_name, + STATE(6042), 1, + sym__intrinsic_type, + STATE(6946), 1, + sym_identifier, + STATE(7638), 1, + sym_unlimited_polymorphic, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(75), 2, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + ACTIONS(77), 5, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + ACTIONS(93), 45, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [184] = 14, + ACTIONS(79), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(81), 1, + aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7460), 1, + anon_sym_STAR, + STATE(6059), 1, + sym__type_name, + STATE(6081), 1, + sym__intrinsic_type, + STATE(6946), 1, + sym_identifier, + STATE(7959), 1, + sym_unlimited_polymorphic, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(75), 2, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + ACTIONS(77), 5, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + ACTIONS(93), 45, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [277] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7394), 1, - aux_sym_while_statement_token1, - ACTIONS(7396), 1, - aux_sym_concurrent_header_token1, - ACTIONS(7458), 1, - anon_sym_COMMA, - STATE(672), 1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(4480), 1, sym__end_of_statement, - STATE(5730), 1, - sym_concurrent_header, - STATE(8144), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7460), 2, + ACTIONS(5592), 2, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + ACTIONS(7462), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(7006), 3, - sym_while_statement, - sym_concurrent_statement, - sym_loop_control_expression, - ACTIONS(93), 47, + STATE(6566), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [368] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(1337), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5592), 2, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + ACTIONS(7464), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6343), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [459] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(1163), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5592), 2, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + ACTIONS(7466), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6474), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [550] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(1356), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5592), 2, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + ACTIONS(7468), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6344), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [641] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(2840), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5592), 2, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + ACTIONS(7470), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6618), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [732] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(2855), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + ACTIONS(7472), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6619), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -462692,11 +463317,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [93] = 3, + [823] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 13, + ACTIONS(7474), 14, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -462708,9 +463333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, aux_sym_end_program_statement_token1, + anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(4325), 49, + ACTIONS(7476), 48, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -462720,19 +463346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, + anon_sym_COLON, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - anon_sym_COLON_COLON, + anon_sym_EQ_GT, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -462746,6 +463367,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, + anon_sym_GT_GT_GT, + aux_sym_include_statement_token1, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -462759,8 +463382,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, anon_sym_LBRACK, - [164] = 13, + anon_sym_RBRACK, + [894] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -462769,29 +463394,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - ACTIONS(7462), 1, - anon_sym_COLON_COLON, - STATE(5137), 1, + STATE(905), 1, sym__end_of_statement, + STATE(6091), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7464), 2, + ACTIONS(7478), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5957), 5, + STATE(6771), 5, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, - sym_identifier, + sym__name, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -462838,19 +463463,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [255] = 3, + [985] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + ACTIONS(7480), 1, + anon_sym_COLON_COLON, + STATE(5507), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7466), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7468), 60, - aux_sym_end_program_statement_token1, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - aux_sym_language_binding_token1, - aux_sym_procedure_attributes_token1, + ACTIONS(7482), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(5937), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -462858,29 +463503,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token3, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -462891,7 +463527,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -462906,7 +463541,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [326] = 13, + [1076] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -462915,29 +463550,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(1628), 1, + ACTIONS(7484), 1, + anon_sym_COLON_COLON, + STATE(5508), 1, sym__end_of_statement, - STATE(6084), 1, - sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7470), 2, + ACTIONS(7486), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6318), 5, + STATE(5938), 5, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, - sym__name, + sym_identifier, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -462984,7 +463619,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [417] = 13, + [1167] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -462993,24 +463628,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(1632), 1, + STATE(838), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7472), 2, + ACTIONS(7488), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6319), 5, + STATE(6773), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -463062,42 +463697,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [508] = 14, - ACTIONS(79), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(81), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(748), 1, + [1258] = 13, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7474), 1, - anon_sym_STAR, - STATE(6092), 1, - sym__type_name, - STATE(6093), 1, - sym__intrinsic_type, - STATE(6887), 1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(1486), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, - STATE(8133), 1, - sym_unlimited_polymorphic, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(75), 2, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - ACTIONS(77), 5, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - ACTIONS(93), 45, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + ACTIONS(7490), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(7041), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -463109,6 +463741,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -463141,26 +463775,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [601] = 14, + [1349] = 14, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7474), 1, + ACTIONS(7460), 1, anon_sym_STAR, - STATE(6098), 1, + STATE(5925), 1, sym__type_name, - STATE(6099), 1, + STATE(5928), 1, sym__intrinsic_type, - STATE(6887), 1, + STATE(6946), 1, sym_identifier, - STATE(8150), 1, + STATE(8269), 1, sym_unlimited_polymorphic, ACTIONS(21), 2, anon_sym_AMP, @@ -463220,39 +463854,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [694] = 13, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [1442] = 14, + ACTIONS(79), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(81), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(1388), 1, - sym__end_of_statement, - STATE(6084), 1, + ACTIONS(7460), 1, + anon_sym_STAR, + STATE(5933), 1, + sym__type_name, + STATE(5945), 1, + sym__intrinsic_type, + STATE(6946), 1, sym_identifier, + STATE(8338), 1, + sym_unlimited_polymorphic, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(75), 2, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + ACTIONS(77), 5, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + ACTIONS(93), 45, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7476), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6380), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym__name, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -463264,8 +463901,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -463298,39 +463933,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [785] = 13, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(1396), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, + [1535] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7492), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7494), 60, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7478), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6381), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym__name, - ACTIONS(5456), 45, + aux_sym_language_binding_token1, + aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -463338,20 +463953,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token3, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -463362,6 +463986,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -463376,39 +464001,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [876] = 13, - ACTIONS(5454), 1, + [1606] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4345), 13, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(2806), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, + anon_sym_DOT, + ACTIONS(4347), 49, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + anon_sym_COLON_COLON, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [1677] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7496), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7498), 60, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7480), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6797), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym__name, - ACTIONS(5456), 45, + aux_sym_language_binding_token1, + aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -463416,20 +464089,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token3, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -463440,6 +464122,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -463454,7 +464137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [967] = 13, + [1748] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -463463,24 +464146,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(1370), 1, + STATE(1557), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7482), 2, + ACTIONS(7500), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6630), 5, + STATE(6585), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -463532,79 +464215,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [1058] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7484), 14, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(7486), 48, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - anon_sym_COLON, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - anon_sym_GT_GT_GT, - aux_sym_include_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [1129] = 3, + [1839] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4335), 13, + ACTIONS(4255), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -463618,7 +464233,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(4337), 49, + ACTIONS(4257), 49, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -463637,10 +464252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -463668,110 +464283,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [1200] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4277), 13, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, + [1910] = 13, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(4279), 49, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - anon_sym_COLON_COLON, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [1271] = 14, - ACTIONS(79), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(81), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7474), 1, - anon_sym_STAR, - STATE(5936), 1, - sym__type_name, - STATE(5937), 1, - sym__intrinsic_type, - STATE(6887), 1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(973), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, - STATE(7736), 1, - sym_unlimited_polymorphic, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(75), 2, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - ACTIONS(77), 5, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - ACTIONS(93), 45, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + ACTIONS(7502), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6417), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -463783,6 +464327,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -463815,42 +464361,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [1364] = 14, - ACTIONS(79), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(81), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(748), 1, + [2001] = 13, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7474), 1, - anon_sym_STAR, - STATE(5942), 1, - sym__type_name, - STATE(5943), 1, - sym__intrinsic_type, - STATE(6887), 1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(975), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, - STATE(7793), 1, - sym_unlimited_polymorphic, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(75), 2, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - ACTIONS(77), 5, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - ACTIONS(93), 45, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + ACTIONS(7504), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6418), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -463862,6 +464405,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -463894,7 +464439,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [1457] = 13, + [2092] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -463903,29 +464448,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - ACTIONS(7488), 1, - anon_sym_COLON_COLON, - STATE(5501), 1, + STATE(1064), 1, sym__end_of_statement, + STATE(6091), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7490), 2, + ACTIONS(7506), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6003), 5, + STATE(6527), 5, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, - sym_identifier, + sym__name, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -463972,153 +464517,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [1548] = 3, + [2183] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7492), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7494), 60, - aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_language_binding_token1, - aux_sym_procedure_attributes_token1, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token3, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token6, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [1619] = 13, - ACTIONS(5454), 1, + ACTIONS(4315), 13, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(4501), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(5598), 2, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - ACTIONS(7496), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6724), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym__name, - ACTIONS(5456), 45, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + anon_sym_DOT, + ACTIONS(4317), 49, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + anon_sym_COLON_COLON, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [1710] = 13, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [2254] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -464127,24 +464594,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(947), 1, + STATE(2802), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7498), 2, + ACTIONS(7508), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6503), 5, + STATE(6866), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -464196,7 +464663,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [1801] = 13, + [2345] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -464205,107 +464672,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(1424), 1, + ACTIONS(7510), 1, + anon_sym_COLON_COLON, + STATE(5136), 1, sym__end_of_statement, - STATE(6084), 1, - sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7500), 2, + ACTIONS(7512), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6442), 5, + STATE(6020), 5, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, - sym__name, - ACTIONS(5456), 45, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [1892] = 13, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(1438), 1, - sym__end_of_statement, - STATE(6084), 1, sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(5598), 2, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - ACTIONS(7502), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6443), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym__name, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -464352,11 +464741,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [1983] = 3, + [2436] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 14, + ACTIONS(4255), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -464368,10 +464757,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, aux_sym_end_program_statement_token1, - anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(7506), 48, + ACTIONS(4257), 49, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -464381,14 +464769,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - anon_sym_COLON, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - anon_sym_EQ_GT, + anon_sym_COLON_COLON, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -464402,8 +464795,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - anon_sym_GT_GT_GT, - aux_sym_include_statement_token1, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -464417,10 +464808,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - [2054] = 13, + [2507] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -464429,24 +464818,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(2721), 1, + STATE(1183), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7508), 2, + ACTIONS(7514), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6609), 5, + STATE(6475), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -464498,7 +464887,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2145] = 13, + [2598] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -464507,29 +464896,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(972), 1, + ACTIONS(7516), 1, + anon_sym_COLON_COLON, + STATE(5135), 1, sym__end_of_statement, - STATE(6084), 1, - sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7510), 2, + ACTIONS(7518), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6585), 5, + STATE(6019), 5, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, - sym__name, + sym_identifier, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -464576,7 +464965,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2236] = 13, + [2689] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -464585,24 +464974,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(1548), 1, + STATE(1500), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7512), 2, + ACTIONS(7520), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6659), 5, + STATE(6270), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -464654,7 +465043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2327] = 13, + [2780] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -464663,24 +465052,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(1552), 1, + STATE(2776), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7514), 2, + ACTIONS(7522), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6660), 5, + STATE(6882), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -464732,7 +465121,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2418] = 13, + [2871] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -464741,24 +465130,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(870), 1, + STATE(1025), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7516), 2, + ACTIONS(7524), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6250), 5, + STATE(7038), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -464810,7 +465199,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2509] = 13, + [2962] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -464819,24 +465208,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(906), 1, + STATE(1548), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7518), 2, + ACTIONS(7526), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6251), 5, + STATE(6271), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -464888,42 +465277,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2600] = 14, - ACTIONS(79), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(81), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7474), 1, - anon_sym_STAR, - STATE(6051), 1, - sym__type_name, - STATE(6058), 1, - sym__intrinsic_type, - STATE(6887), 1, - sym_identifier, - STATE(7484), 1, - sym_unlimited_polymorphic, + [3053] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(75), 2, + ACTIONS(7528), 14, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(7530), 48, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + anon_sym_COLON, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - ACTIONS(77), 5, aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - ACTIONS(93), 45, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + anon_sym_GT_GT_GT, + aux_sym_include_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [3124] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(1631), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + ACTIONS(7532), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6931), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -464935,6 +465389,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -464967,7 +465423,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2693] = 13, + [3215] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -464976,29 +465432,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - ACTIONS(7520), 1, - anon_sym_COLON_COLON, - STATE(5510), 1, + STATE(2764), 1, sym__end_of_statement, + STATE(6091), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7522), 2, + ACTIONS(7534), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6004), 5, + STATE(6530), 5, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, - sym_identifier, + sym__name, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -465045,39 +465501,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2784] = 13, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - ACTIONS(7524), 1, + [3306] = 4, + ACTIONS(6646), 1, anon_sym_COLON_COLON, - STATE(5108), 1, - sym__end_of_statement, + ACTIONS(7536), 1, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5594), 60, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7526), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(5958), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, + aux_sym_language_binding_token1, + aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -465085,20 +465522,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token3, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -465109,6 +465555,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -465123,7 +465570,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2875] = 13, + [3379] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -465132,24 +465579,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(3096), 1, + STATE(4449), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7528), 2, + ACTIONS(7538), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6706), 5, + STATE(6390), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -465201,39 +465648,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [2966] = 13, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [3470] = 14, + ACTIONS(79), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(81), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(3093), 1, - sym__end_of_statement, - STATE(6084), 1, + ACTIONS(7460), 1, + anon_sym_STAR, + STATE(6100), 1, + sym__type_name, + STATE(6104), 1, + sym__intrinsic_type, + STATE(6946), 1, sym_identifier, + STATE(8171), 1, + sym_unlimited_polymorphic, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(75), 2, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + ACTIONS(77), 5, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + ACTIONS(93), 45, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7530), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6707), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym__name, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -465245,8 +465695,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -465279,7 +465727,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3057] = 13, + [3563] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -465288,24 +465736,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(4385), 1, + STATE(3066), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7532), 2, + ACTIONS(7540), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6675), 5, + STATE(6636), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -465357,42 +465805,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3148] = 14, - ACTIONS(79), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(81), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(748), 1, + [3654] = 13, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7474), 1, - anon_sym_STAR, - STATE(6000), 1, - sym__type_name, - STATE(6001), 1, - sym__intrinsic_type, - STATE(6887), 1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(3084), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, - STATE(8226), 1, - sym_unlimited_polymorphic, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(75), 2, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - ACTIONS(77), 5, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - ACTIONS(93), 45, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + ACTIONS(7542), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6637), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym__name, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -465404,6 +465849,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -465436,7 +465883,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3241] = 13, + [3745] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -465445,24 +465892,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(1178), 1, + STATE(2746), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7534), 2, + ACTIONS(7544), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6555), 5, + STATE(6531), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -465514,7 +465961,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3332] = 13, + [3836] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -465523,24 +465970,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(1180), 1, + STATE(1638), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7536), 2, + ACTIONS(7546), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6556), 5, + STATE(6921), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -465592,39 +466039,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3423] = 13, - ACTIONS(5454), 1, + [3927] = 14, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(1587), 1, + ACTIONS(7398), 1, + aux_sym_while_statement_token1, + ACTIONS(7400), 1, + aux_sym_concurrent_header_token1, + ACTIONS(7548), 1, + anon_sym_COMMA, + STATE(675), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(5713), 1, + sym_concurrent_header, + STATE(7725), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - ACTIONS(7538), 2, + ACTIONS(7550), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6740), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym__name, - ACTIONS(5456), 45, + STATE(6562), 3, + sym_while_statement, + sym_concurrent_statement, + sym_loop_control_expression, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -465670,7 +466118,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3514] = 13, + [4020] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -465679,24 +466127,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(1589), 1, + STATE(1340), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7540), 2, + ACTIONS(7552), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6741), 5, + STATE(6673), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -465748,7 +466196,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3605] = 13, + [4111] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -465757,24 +466205,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(2828), 1, + STATE(1345), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7542), 2, + ACTIONS(7554), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6856), 5, + STATE(6674), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -465826,75 +466274,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3696] = 3, + [4202] = 14, + ACTIONS(79), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(81), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7460), 1, + anon_sym_STAR, + STATE(6034), 1, + sym__type_name, + STATE(6037), 1, + sym__intrinsic_type, + STATE(6946), 1, + sym_identifier, + STATE(7775), 1, + sym_unlimited_polymorphic, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 13, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(4325), 49, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - anon_sym_COLON_COLON, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + ACTIONS(75), 2, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, + ACTIONS(77), 5, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [3767] = 13, + ACTIONS(93), 45, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [4295] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -465903,24 +466362,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(2856), 1, + STATE(1507), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7544), 2, + ACTIONS(7556), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6899), 5, + STATE(6467), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -465972,7 +466431,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3858] = 13, + [4386] = 15, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -465981,30 +466440,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(994), 1, - sym__end_of_statement, - STATE(6084), 1, + ACTIONS(7558), 1, + anon_sym_COMMA, + ACTIONS(7560), 1, + anon_sym_COLON_COLON, + STATE(3285), 1, sym_identifier, + STATE(3394), 1, + sym_sized_declarator, + STATE(3874), 1, + aux_sym_variable_declaration_repeat1, + STATE(6163), 1, + sym__declaration_assignment, + STATE(6165), 1, + sym__declaration_pointer_association, + STATE(7160), 1, + sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + STATE(5882), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7546), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6605), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym__name, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -466050,7 +466510,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [3949] = 13, + [4480] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -466059,29 +466519,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(7406), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(7408), 1, aux_sym_operator_token1, - STATE(2758), 1, - sym__end_of_statement, - STATE(6084), 1, + STATE(6236), 1, sym_identifier, + STATE(7482), 1, + sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7548), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6608), 5, + STATE(6075), 2, + sym_binding_declarator, + sym_method_name, + STATE(8355), 4, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, - sym__name, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -466128,7 +466587,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [4040] = 13, + [4570] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -466137,29 +466596,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(7406), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(7408), 1, aux_sym_operator_token1, - STATE(949), 1, - sym__end_of_statement, - STATE(6084), 1, + STATE(6236), 1, sym_identifier, + STATE(7482), 1, + sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7550), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6504), 5, + STATE(6001), 2, + sym_binding_declarator, + sym_method_name, + STATE(8355), 4, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, - sym__name, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -466206,20 +466664,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [4131] = 4, - ACTIONS(6646), 1, - anon_sym_COLON_COLON, - ACTIONS(7552), 1, - aux_sym_interface_statement_token1, + [4660] = 13, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7406), 1, + aux_sym_assignment_token1, + ACTIONS(7408), 1, + aux_sym_operator_token1, + STATE(6236), 1, + sym_identifier, + STATE(7482), 1, + sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5600), 60, - aux_sym_end_program_statement_token1, + ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - aux_sym_language_binding_token1, - aux_sym_procedure_attributes_token1, + STATE(5966), 2, + sym_binding_declarator, + sym_method_name, + STATE(8355), 4, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -466227,29 +466703,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token3, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -466260,7 +466727,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -466275,7 +466741,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [4204] = 13, + [4750] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -466284,29 +466750,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(7406), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(7408), 1, aux_sym_operator_token1, - STATE(2819), 1, - sym__end_of_statement, - STATE(6084), 1, + STATE(6236), 1, sym_identifier, + STATE(7482), 1, + sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - ACTIONS(7554), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6798), 5, + STATE(6021), 2, + sym_binding_declarator, + sym_method_name, + STATE(8355), 4, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, - sym__name, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -466353,39 +466818,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [4295] = 13, - ACTIONS(5454), 1, + [4840] = 13, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(1406), 1, + ACTIONS(7398), 1, + aux_sym_while_statement_token1, + ACTIONS(7400), 1, + aux_sym_concurrent_header_token1, + STATE(675), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(5713), 1, + sym_concurrent_header, + STATE(7725), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - ACTIONS(7556), 2, + ACTIONS(7550), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6615), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym__name, - ACTIONS(5456), 45, + STATE(6562), 3, + sym_while_statement, + sym_concurrent_statement, + sym_loop_control_expression, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -466431,11 +466895,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [4386] = 3, + [4930] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 18, + ACTIONS(7474), 18, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -466454,7 +466918,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(7506), 43, + ACTIONS(7476), 43, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PLUS, @@ -466498,36 +466962,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [4456] = 11, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7560), 1, - anon_sym_DOT, - STATE(2986), 1, - sym_user_defined_operator, + [5000] = 3, + ACTIONS(7564), 1, + anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5788), 3, - sym__integer_literal, - sym__float_literal, - sym__boz_literal, - STATE(7539), 3, - sym_unary_expression, - sym_number_literal, - sym_identifier, - ACTIONS(93), 47, + ACTIONS(7562), 60, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + aux_sym_language_binding_token1, + aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -466535,20 +466981,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token3, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -466559,6 +467014,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -466573,95 +467029,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [4542] = 13, - ACTIONS(5454), 1, + [5070] = 15, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7406), 1, - aux_sym_assignment_token1, - ACTIONS(7408), 1, - aux_sym_operator_token1, - STATE(6231), 1, - sym_identifier, - STATE(8238), 1, - sym_binding_name, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7410), 2, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - STATE(5931), 2, - sym_binding_declarator, - sym_method_name, - STATE(8039), 4, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - ACTIONS(5456), 45, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [4632] = 3, - ACTIONS(7112), 1, + ACTIONS(7558), 1, + anon_sym_COMMA, + ACTIONS(7566), 1, anon_sym_COLON_COLON, + STATE(3874), 1, + aux_sym_variable_declaration_repeat1, + STATE(5074), 1, + sym_identifier, + STATE(5162), 1, + sym_sized_declarator, + STATE(5254), 1, + sym__declaration_assignment, + STATE(5304), 1, + sym__declaration_pointer_association, + STATE(5374), 1, + sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7108), 60, - aux_sym_end_program_statement_token1, + STATE(5174), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - aux_sym_language_binding_token1, - aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -466669,29 +467070,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token3, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -466702,7 +467094,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -466717,7 +467108,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [4702] = 13, + [5164] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -466730,9 +467121,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_assignment_token1, ACTIONS(7408), 1, aux_sym_operator_token1, - STATE(6231), 1, + STATE(6236), 1, sym_identifier, - STATE(8238), 1, + STATE(7482), 1, sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, @@ -466740,10 +467131,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5914), 2, + STATE(6006), 2, sym_binding_declarator, sym_method_name, - STATE(8039), 4, + STATE(8355), 4, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -466794,32 +467185,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [4792] = 13, + [5254] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7528), 18, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(7530), 43, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [5324] = 13, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7394), 1, + ACTIONS(7398), 1, aux_sym_while_statement_token1, - ACTIONS(7396), 1, + ACTIONS(7400), 1, aux_sym_concurrent_header_token1, - STATE(675), 1, + STATE(662), 1, sym__end_of_statement, - STATE(5730), 1, + STATE(5713), 1, sym_concurrent_header, - STATE(8144), 1, + STATE(7725), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7568), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6840), 3, + STATE(6577), 3, sym_while_statement, sym_concurrent_statement, sym_loop_control_expression, @@ -466871,7 +467329,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [4882] = 15, + [5414] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -466880,88 +467338,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7564), 1, - anon_sym_COMMA, - ACTIONS(7566), 1, - anon_sym_COLON_COLON, - STATE(3277), 1, + ACTIONS(7406), 1, + aux_sym_assignment_token1, + ACTIONS(7408), 1, + aux_sym_operator_token1, + STATE(6236), 1, sym_identifier, - STATE(3366), 1, - aux_sym_variable_declaration_repeat1, - STATE(3393), 1, - sym_sized_declarator, - STATE(6128), 1, - sym__declaration_assignment, - STATE(6131), 1, - sym__declaration_pointer_association, - STATE(7154), 1, - sym__declaration_targets, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5860), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [4976] = 3, - ACTIONS(7570), 1, - anon_sym_COLON_COLON, + STATE(7482), 1, + sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7568), 60, - aux_sym_end_program_statement_token1, + ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - aux_sym_language_binding_token1, - aux_sym_procedure_attributes_token1, + STATE(5949), 2, + sym_binding_declarator, + sym_method_name, + STATE(8355), 4, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -466969,29 +467368,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token3, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -467002,7 +467392,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -467017,7 +467406,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5046] = 13, + [5504] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -467030,9 +467419,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_assignment_token1, ACTIONS(7408), 1, aux_sym_operator_token1, - STATE(6231), 1, + STATE(6236), 1, sym_identifier, - STATE(8238), 1, + STATE(7482), 1, sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, @@ -467040,10 +467429,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5919), 2, + STATE(6113), 2, sym_binding_declarator, sym_method_name, - STATE(8039), 4, + STATE(8355), 4, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -467094,7 +467483,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5136] = 13, + [5594] = 15, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -467103,29 +467492,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7406), 1, - aux_sym_assignment_token1, - ACTIONS(7408), 1, - aux_sym_operator_token1, - STATE(6231), 1, + ACTIONS(7558), 1, + anon_sym_COMMA, + ACTIONS(7570), 1, + anon_sym_COLON_COLON, + STATE(3285), 1, sym_identifier, - STATE(8238), 1, - sym_binding_name, + STATE(3339), 1, + aux_sym_variable_declaration_repeat1, + STATE(3394), 1, + sym_sized_declarator, + STATE(6163), 1, + sym__declaration_assignment, + STATE(6165), 1, + sym__declaration_pointer_association, + STATE(7149), 1, + sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7410), 2, + STATE(5882), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5920), 2, - sym_binding_declarator, - sym_method_name, - STATE(8039), 4, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -467171,35 +467562,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5226] = 15, + [5688] = 15, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7564), 1, + ACTIONS(7558), 1, anon_sym_COMMA, ACTIONS(7572), 1, anon_sym_COLON_COLON, - STATE(3894), 1, + STATE(3347), 1, aux_sym_variable_declaration_repeat1, - STATE(5077), 1, + STATE(5074), 1, sym_identifier, - STATE(5161), 1, + STATE(5162), 1, sym_sized_declarator, - STATE(5218), 1, + STATE(5254), 1, sym__declaration_assignment, - STATE(5219), 1, + STATE(5304), 1, sym__declaration_pointer_association, - STATE(5385), 1, + STATE(5391), 1, sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5167), 2, + STATE(5174), 2, sym__variable_declarator, sym_coarray_declarator, ACTIONS(93), 47, @@ -467250,7 +467641,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5320] = 13, + [5782] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -467263,9 +467654,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_assignment_token1, ACTIONS(7408), 1, aux_sym_operator_token1, - STATE(6231), 1, + STATE(6236), 1, sym_identifier, - STATE(8238), 1, + STATE(7482), 1, sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, @@ -467273,10 +467664,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6040), 2, + STATE(6071), 2, sym_binding_declarator, sym_method_name, - STATE(8039), 4, + STATE(8355), 4, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -467327,38 +467718,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5410] = 13, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7406), 1, - aux_sym_assignment_token1, - ACTIONS(7408), 1, - aux_sym_operator_token1, - STATE(6231), 1, - sym_identifier, - STATE(8238), 1, - sym_binding_name, + [5872] = 3, + ACTIONS(6646), 1, + anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7410), 2, + ACTIONS(5594), 60, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5926), 2, - sym_binding_declarator, - sym_method_name, - STATE(8039), 4, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - ACTIONS(5456), 45, + aux_sym_language_binding_token1, + aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -467366,20 +467737,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token3, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -467390,6 +467770,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -467404,7 +467785,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5500] = 13, + [5942] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -467417,9 +467798,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_assignment_token1, ACTIONS(7408), 1, aux_sym_operator_token1, - STATE(6231), 1, + STATE(6236), 1, sym_identifier, - STATE(8238), 1, + STATE(7482), 1, sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, @@ -467427,10 +467808,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5981), 2, + STATE(6443), 2, sym_binding_declarator, sym_method_name, - STATE(8039), 4, + STATE(8355), 4, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -467481,13 +467862,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5590] = 3, - ACTIONS(6646), 1, + [6032] = 3, + ACTIONS(7576), 1, anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5600), 60, + ACTIONS(7574), 60, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -467548,18 +467929,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5660] = 3, - ACTIONS(7576), 1, - anon_sym_COLON_COLON, + [6102] = 11, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7580), 1, + anon_sym_DOT, + STATE(2949), 1, + sym_user_defined_operator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7574), 60, - aux_sym_end_program_statement_token1, + ACTIONS(7578), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5782), 3, + sym__integer_literal, + sym__float_literal, + sym__boz_literal, + STATE(8175), 3, + sym_unary_expression, + sym_number_literal, + sym_identifier, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - aux_sym_language_binding_token1, - aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -467567,29 +467966,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token3, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -467600,7 +467990,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -467615,7 +468004,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5730] = 13, + [6188] = 12, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -467624,28 +468013,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7406), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(7408), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, - STATE(6231), 1, + STATE(6096), 1, sym_identifier, - STATE(8238), 1, - sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7410), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6990), 2, - sym_binding_declarator, - sym_method_name, - STATE(8039), 4, + ACTIONS(7582), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6207), 5, sym_assignment, sym_operator, sym_defined_io_procedure, sym__generic_procedure, + sym_use_alias, ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, @@ -467692,7 +468080,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5820] = 13, + [6276] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -467705,9 +468093,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_assignment_token1, ACTIONS(7408), 1, aux_sym_operator_token1, - STATE(6231), 1, + STATE(6236), 1, sym_identifier, - STATE(8238), 1, + STATE(7482), 1, sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, @@ -467715,10 +468103,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5929), 2, + STATE(5921), 2, sym_binding_declarator, sym_method_name, - STATE(8039), 4, + STATE(8355), 4, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -467769,38 +468157,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [5910] = 13, - ACTIONS(5454), 1, + [6366] = 11, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7406), 1, - aux_sym_assignment_token1, - ACTIONS(7408), 1, - aux_sym_operator_token1, - STATE(6231), 1, - sym_identifier, - STATE(8238), 1, - sym_binding_name, + ACTIONS(7580), 1, + anon_sym_DOT, + STATE(2949), 1, + sym_user_defined_operator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7410), 2, + ACTIONS(7578), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5782), 3, + sym__integer_literal, + sym__float_literal, + sym__boz_literal, + STATE(8326), 3, + sym_unary_expression, + sym_number_literal, + sym_identifier, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6037), 2, - sym_binding_declarator, - sym_method_name, - STATE(8039), 4, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -467846,38 +468232,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6000] = 13, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7406), 1, - aux_sym_assignment_token1, - ACTIONS(7408), 1, - aux_sym_operator_token1, - STATE(6231), 1, - sym_identifier, - STATE(8238), 1, - sym_binding_name, + [6452] = 3, + ACTIONS(7586), 1, + anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7410), 2, + ACTIONS(7584), 60, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6036), 2, - sym_binding_declarator, - sym_method_name, - STATE(8039), 4, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - ACTIONS(5456), 45, + aux_sym_language_binding_token1, + aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -467885,20 +468251,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token3, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -467909,6 +468284,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -467923,13 +468299,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6090] = 3, - ACTIONS(7580), 1, + [6522] = 3, + ACTIONS(7590), 1, anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7578), 60, + ACTIONS(7588), 60, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -467990,40 +468366,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6160] = 13, - ACTIONS(79), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(81), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(748), 1, + [6592] = 13, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, - sym__intrinsic_type, - STATE(6452), 1, - sym_concurrent_control, - STATE(8031), 1, - sym_intrinsic_type, - STATE(8072), 1, + ACTIONS(7406), 1, + aux_sym_assignment_token1, + ACTIONS(7408), 1, + aux_sym_operator_token1, + STATE(6236), 1, sym_identifier, + STATE(7482), 1, + sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - ACTIONS(77), 5, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - ACTIONS(93), 45, + ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(5992), 2, + sym_binding_declarator, + sym_method_name, + STATE(8355), 4, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -468035,6 +468409,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -468067,80 +468443,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6250] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7484), 18, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(7486), 43, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [6320] = 3, - ACTIONS(7586), 1, + [6682] = 3, + ACTIONS(7594), 1, anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7584), 60, + ACTIONS(7592), 60, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -468201,40 +468510,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6390] = 15, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7564), 1, - anon_sym_COMMA, - ACTIONS(7588), 1, + [6752] = 3, + ACTIONS(7598), 1, anon_sym_COLON_COLON, - STATE(3349), 1, - aux_sym_variable_declaration_repeat1, - STATE(5077), 1, - sym_identifier, - STATE(5161), 1, - sym_sized_declarator, - STATE(5218), 1, - sym__declaration_assignment, - STATE(5219), 1, - sym__declaration_pointer_association, - STATE(5376), 1, - sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5167), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(93), 47, + ACTIONS(7596), 60, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + aux_sym_language_binding_token1, + aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -468242,20 +468529,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token3, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -468266,6 +468562,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -468280,36 +468577,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6484] = 13, + [6822] = 13, + ACTIONS(79), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(81), 1, + aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7394), 1, - aux_sym_while_statement_token1, - ACTIONS(7396), 1, - aux_sym_concurrent_header_token1, - STATE(672), 1, - sym__end_of_statement, - STATE(5730), 1, - sym_concurrent_header, - STATE(8144), 1, + STATE(5877), 1, + sym__intrinsic_type, + STATE(6726), 1, + sym_concurrent_control, + STATE(7557), 1, + sym_intrinsic_type, + STATE(7564), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7460), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(7006), 3, - sym_while_statement, - sym_concurrent_statement, - sym_loop_control_expression, - ACTIONS(93), 47, + ACTIONS(7600), 2, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + ACTIONS(77), 5, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + ACTIONS(93), 45, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -468323,8 +468622,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -468357,36 +468654,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6574] = 11, - ACTIONS(748), 1, + [6912] = 13, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7560), 1, - anon_sym_DOT, - STATE(2986), 1, - sym_user_defined_operator, + ACTIONS(7406), 1, + aux_sym_assignment_token1, + ACTIONS(7408), 1, + aux_sym_operator_token1, + STATE(6236), 1, + sym_identifier, + STATE(7482), 1, + sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7558), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5788), 3, - sym__integer_literal, - sym__float_literal, - sym__boz_literal, - STATE(8258), 3, - sym_unary_expression, - sym_number_literal, - sym_identifier, - ACTIONS(93), 47, + ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(6043), 2, + sym_binding_declarator, + sym_method_name, + STATE(8355), 4, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -468432,40 +468731,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6660] = 15, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7564), 1, - anon_sym_COMMA, - ACTIONS(7590), 1, + [7002] = 3, + ACTIONS(7118), 1, anon_sym_COLON_COLON, - STATE(3277), 1, - sym_identifier, - STATE(3393), 1, - sym_sized_declarator, - STATE(3894), 1, - aux_sym_variable_declaration_repeat1, - STATE(6128), 1, - sym__declaration_assignment, - STATE(6131), 1, - sym__declaration_pointer_association, - STATE(7447), 1, - sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5860), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(5456), 47, + ACTIONS(7114), 60, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + aux_sym_language_binding_token1, + aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -468473,20 +468750,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token3, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -468497,6 +468783,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -468511,7 +468798,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6754] = 13, + [7072] = 13, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -468524,9 +468811,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_assignment_token1, ACTIONS(7408), 1, aux_sym_operator_token1, - STATE(6231), 1, + STATE(6236), 1, sym_identifier, - STATE(8238), 1, + STATE(7482), 1, sym_binding_name, ACTIONS(21), 2, anon_sym_AMP, @@ -468534,10 +468821,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7410), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6108), 2, + STATE(6074), 2, sym_binding_declarator, sym_method_name, - STATE(8039), 4, + STATE(8355), 4, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -468588,85 +468875,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6844] = 3, - ACTIONS(7594), 1, - anon_sym_COLON_COLON, + [7162] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7592), 60, + ACTIONS(6602), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_language_binding_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(6600), 51, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_module_statement_token1, + anon_sym_COLON, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, - aux_sym_variable_attributes_token5, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token3, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token6, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [6914] = 3, - ACTIONS(7598), 1, - anon_sym_COLON_COLON, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [7231] = 5, + ACTIONS(7604), 1, + anon_sym_LPAREN2, + ACTIONS(7608), 1, + aux_sym_kind_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7596), 60, + ACTIONS(7602), 6, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(7606), 52, aux_sym_end_program_statement_token1, + anon_sym_EQ, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - aux_sym_language_binding_token1, - aux_sym_procedure_attributes_token1, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -468674,29 +468968,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token3, aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token6, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, aux_sym__standalone_type_qualifier_token13, aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, aux_sym_stop_statement_token1, @@ -468722,37 +469009,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [6984] = 12, - ACTIONS(5454), 1, + [7304] = 12, + ACTIONS(7610), 1, + anon_sym_SLASH, + ACTIONS(7612), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(7616), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(7618), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(7622), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(6086), 1, + STATE(3285), 1, sym_identifier, + STATE(3394), 1, + sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - ACTIONS(7600), 2, + ACTIONS(7620), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6200), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_use_alias, - ACTIONS(5456), 45, + STATE(3388), 2, + sym_variable_group, + aux_sym_common_statement_repeat2, + STATE(3625), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(7614), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -468798,38 +469084,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [7072] = 13, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [7391] = 11, + ACTIONS(79), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(81), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7406), 1, - aux_sym_assignment_token1, - ACTIONS(7408), 1, - aux_sym_operator_token1, - STATE(6231), 1, - sym_identifier, - STATE(8238), 1, - sym_binding_name, + STATE(5877), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7410), 2, + ACTIONS(7600), 2, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + STATE(7464), 2, + sym_intrinsic_type, + sym_identifier, + ACTIONS(77), 5, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + ACTIONS(93), 45, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6085), 2, - sym_binding_declarator, - sym_method_name, - STATE(8039), 4, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -468841,8 +469126,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -468875,100 +469158,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [7162] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6600), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6598), 51, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_statement_token1, - anon_sym_COLON, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [7231] = 12, - ACTIONS(7602), 1, - anon_sym_SLASH, - ACTIONS(7604), 1, + [7476] = 14, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(7608), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7610), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7614), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(3277), 1, + ACTIONS(7108), 1, + anon_sym_COMMA, + ACTIONS(7112), 1, + anon_sym_COLON_COLON, + STATE(3285), 1, sym_identifier, - STATE(3393), 1, + STATE(3394), 1, sym_sized_declarator, + STATE(6163), 1, + sym__declaration_assignment, + STATE(6165), 1, + sym__declaration_pointer_association, + STATE(7328), 1, + sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7612), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(3383), 2, - sym_variable_group, - aux_sym_common_statement_repeat2, - STATE(3692), 2, + STATE(5882), 2, sym__variable_declarator, sym_coarray_declarator, - ACTIONS(7606), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -469016,92 +469235,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [7318] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6608), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6606), 51, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_statement_token1, - anon_sym_COLON, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [7387] = 11, + [7567] = 11, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, + STATE(5877), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(7600), 2, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - STATE(7846), 2, + STATE(7468), 2, sym_intrinsic_type, sym_identifier, ACTIONS(77), 5, @@ -469156,113 +469309,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [7472] = 14, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [7652] = 11, + ACTIONS(79), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7114), 1, - anon_sym_COMMA, - ACTIONS(7118), 1, - anon_sym_COLON_COLON, - STATE(3277), 1, - sym_identifier, - STATE(3393), 1, - sym_sized_declarator, - STATE(6128), 1, - sym__declaration_assignment, - STATE(6131), 1, - sym__declaration_pointer_association, - STATE(7437), 1, - sym__declaration_targets, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5860), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [7563] = 14, + ACTIONS(81), 1, + aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7616), 1, - anon_sym_COMMA, - ACTIONS(7618), 1, - anon_sym_COLON_COLON, - STATE(5077), 1, - sym_identifier, - STATE(5161), 1, - sym_sized_declarator, - STATE(5218), 1, - sym__declaration_assignment, - STATE(5219), 1, - sym__declaration_pointer_association, - STATE(5382), 1, - sym__declaration_targets, + STATE(5877), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5167), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(93), 47, + ACTIONS(7600), 2, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + STATE(7993), 2, + sym_intrinsic_type, + sym_identifier, + ACTIONS(77), 5, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + ACTIONS(93), 45, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -469276,8 +469351,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -469310,26 +469383,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [7654] = 11, + [7737] = 11, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, + STATE(5877), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(7600), 2, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - STATE(7992), 2, + STATE(7994), 2, sym_intrinsic_type, sym_identifier, ACTIONS(77), 5, @@ -469384,35 +469457,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [7739] = 11, - ACTIONS(79), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(81), 1, - aux_sym__intrinsic_type_token8, + [7822] = 14, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, - sym__intrinsic_type, + ACTIONS(7624), 1, + anon_sym_COMMA, + ACTIONS(7626), 1, + anon_sym_COLON_COLON, + STATE(5074), 1, + sym_identifier, + STATE(5162), 1, + sym_sized_declarator, + STATE(5254), 1, + sym__declaration_assignment, + STATE(5304), 1, + sym__declaration_pointer_association, + STATE(5388), 1, + sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - STATE(7993), 2, - sym_intrinsic_type, - sym_identifier, - ACTIONS(77), 5, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - ACTIONS(93), 45, + STATE(5174), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -469426,6 +469500,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -469458,26 +469534,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [7824] = 11, + [7913] = 11, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, + STATE(5877), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(7600), 2, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - STATE(7998), 2, + STATE(7999), 2, sym_intrinsic_type, sym_identifier, ACTIONS(77), 5, @@ -469532,94 +469608,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [7909] = 5, - ACTIONS(7622), 1, - anon_sym_LPAREN2, - ACTIONS(7626), 1, - aux_sym_kind_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7620), 6, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(7624), 52, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [7982] = 11, + [7998] = 11, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, + STATE(5877), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(7600), 2, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - STATE(8054), 2, + STATE(8000), 2, sym_intrinsic_type, sym_identifier, ACTIONS(77), 5, @@ -469674,34 +469682,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8067] = 12, - ACTIONS(7628), 1, - anon_sym_SLASH, - ACTIONS(7631), 1, - aux_sym_end_program_statement_token1, - ACTIONS(7637), 1, + [8083] = 11, + ACTIONS(79), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7640), 1, + ACTIONS(81), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7645), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(3277), 1, - sym_identifier, - STATE(3393), 1, - sym_sized_declarator, + STATE(5877), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7643), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(3383), 2, - sym_variable_group, - aux_sym_common_statement_repeat2, - STATE(3692), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(7634), 47, + ACTIONS(7600), 2, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + STATE(8365), 2, + sym_intrinsic_type, + sym_identifier, + ACTIONS(77), 5, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + ACTIONS(93), 45, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -469715,8 +469724,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -469749,26 +469756,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8154] = 11, + [8168] = 11, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, + STATE(5877), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(7600), 2, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - STATE(7836), 2, + STATE(8055), 2, sym_intrinsic_type, sym_identifier, ACTIONS(77), 5, @@ -469823,26 +469830,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8239] = 11, + [8253] = 11, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, + STATE(5877), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(7600), 2, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - STATE(8055), 2, + STATE(8056), 2, sym_intrinsic_type, sym_identifier, ACTIONS(77), 5, @@ -469897,92 +469904,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8324] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6582), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6580), 51, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_statement_token1, - anon_sym_COLON, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [8393] = 11, + [8338] = 11, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, + STATE(5877), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(7600), 2, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - STATE(7999), 2, + STATE(8059), 2, sym_intrinsic_type, sym_identifier, ACTIONS(77), 5, @@ -470037,26 +469978,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8478] = 11, + [8423] = 11, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, + STATE(5877), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(7600), 2, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - STATE(8058), 2, + STATE(8060), 2, sym_intrinsic_type, sym_identifier, ACTIONS(77), 5, @@ -470111,35 +470052,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8563] = 11, - ACTIONS(79), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(81), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(748), 1, + [8508] = 12, + ACTIONS(7628), 1, + anon_sym_SLASH, + ACTIONS(7631), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(7637), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7640), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(7645), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, - sym__intrinsic_type, + STATE(3285), 1, + sym_identifier, + STATE(3394), 1, + sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - STATE(8059), 2, - sym_intrinsic_type, - sym_identifier, - ACTIONS(77), 5, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - ACTIONS(93), 45, + ACTIONS(7643), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(3388), 2, + sym_variable_group, + aux_sym_common_statement_repeat2, + STATE(3625), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(7634), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -470153,6 +470093,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -470185,26 +470127,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8648] = 11, + [8595] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(6584), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(6582), 51, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_module_statement_token1, + anon_sym_COLON, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [8664] = 11, ACTIONS(79), 1, aux_sym__intrinsic_type_token4, ACTIONS(81), 1, aux_sym__intrinsic_type_token8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5872), 1, + STATE(5877), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(7600), 2, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - STATE(8122), 2, + STATE(8366), 2, sym_intrinsic_type, sym_identifier, ACTIONS(77), 5, @@ -470259,37 +470267,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8733] = 11, - ACTIONS(79), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(81), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(5872), 1, - sym__intrinsic_type, + [8749] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7582), 2, + ACTIONS(6552), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(6550), 51, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_module_statement_token1, + anon_sym_COLON, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - STATE(8166), 2, - sym_intrinsic_type, - sym_identifier, - ACTIONS(77), 5, aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - ACTIONS(93), 45, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [8818] = 11, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + STATE(6240), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(6949), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_use_alias, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -470301,6 +470372,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, @@ -470333,7 +470406,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8818] = 4, + [8902] = 4, ACTIONS(7650), 1, anon_sym_LPAREN2, ACTIONS(21), 2, @@ -470399,21 +470472,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8888] = 5, - ACTIONS(7422), 1, + [8972] = 5, + ACTIONS(7448), 1, anon_sym_LBRACK, - STATE(3512), 1, + STATE(3519), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7414), 5, + ACTIONS(7440), 5, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_SLASH, anon_sym_EQ_GT, anon_sym_SEMI, - ACTIONS(7420), 52, + ACTIONS(7446), 52, aux_sym_end_program_statement_token1, anon_sym_EQ, aux_sym_defined_io_procedure_token1, @@ -470466,34 +470539,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [8960] = 11, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, - STATE(6236), 1, - sym_identifier, + [9044] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(4257), 7, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(4255), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6527), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_use_alias, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -470507,8 +470568,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -470525,6 +470588,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -470539,7 +470603,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9044] = 10, + [9111] = 12, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -470548,23 +470612,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + STATE(3285), 1, + sym_identifier, + STATE(3394), 1, + sym_sized_declarator, + STATE(6163), 1, + sym__declaration_assignment, + STATE(6165), 1, + sym__declaration_pointer_association, + STATE(7411), 1, + sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + STATE(5882), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5986), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -470610,22 +470676,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9125] = 3, + [9196] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4325), 7, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(4323), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(6024), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -470639,10 +470715,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -470659,7 +470733,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -470674,22 +470747,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9192] = 3, + [9277] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4279), 7, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(4277), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(6026), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -470703,10 +470786,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -470723,7 +470804,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -470738,20 +470818,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9259] = 3, + [9358] = 12, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(3285), 1, + sym_identifier, + STATE(3394), 1, + sym_sized_declarator, + STATE(6163), 1, + sym__declaration_assignment, + STATE(6165), 1, + sym__declaration_pointer_association, + STATE(7077), 1, + sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4325), 7, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(4323), 51, - aux_sym_end_program_statement_token1, + STATE(5882), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -470767,10 +470859,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -470787,7 +470877,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -470802,32 +470891,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9326] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + [9443] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(4257), 7, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(4255), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6680), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -470841,8 +470920,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -470859,6 +470940,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -470873,32 +470955,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9407] = 12, - ACTIONS(5454), 1, + [9510] = 12, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(3277), 1, + STATE(5074), 1, sym_identifier, - STATE(3393), 1, + STATE(5162), 1, sym_sized_declarator, - STATE(6128), 1, + STATE(5254), 1, sym__declaration_assignment, - STATE(6131), 1, + STATE(5304), 1, sym__declaration_pointer_association, - STATE(7128), 1, + STATE(5375), 1, sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5860), 2, + STATE(5174), 2, sym__variable_declarator, sym_coarray_declarator, - ACTIONS(5456), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -470946,22 +471028,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9492] = 3, + [9595] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4337), 7, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(4335), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(5917), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -470975,10 +471067,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -470995,7 +471085,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -471010,9 +471099,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9559] = 12, - ACTIONS(4279), 1, - anon_sym_LPAREN2, + [9676] = 12, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -471022,13 +471109,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, aux_sym_select_case_statement_token1, ACTIONS(7654), 1, - aux_sym_module_statement_token1, - STATE(1057), 1, + anon_sym_LPAREN2, + STATE(651), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(3650), 1, + sym_parenthesized_expression, + STATE(6732), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6809), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -471083,73 +471172,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9644] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7658), 6, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(7660), 52, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [9711] = 12, - ACTIONS(4279), 1, - anon_sym_LPAREN2, + [9761] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -471158,23 +471181,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7662), 1, - aux_sym_submodule_statement_token1, - STATE(1059), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6826), 1, - sym__name, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7664), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(6047), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -471220,20 +471243,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9796] = 3, + [9842] = 12, + ACTIONS(4347), 1, + anon_sym_LPAREN2, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7658), 1, + aux_sym_module_statement_token1, + STATE(1057), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(7035), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7666), 6, + ACTIONS(7660), 2, sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_EQ_GT, anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(7668), 52, - aux_sym_end_program_statement_token1, - anon_sym_EQ, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -471249,10 +471284,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -471269,7 +471302,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -471284,31 +471316,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9863] = 11, - ACTIONS(7602), 1, - anon_sym_SLASH, - ACTIONS(7604), 1, + [9927] = 12, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(7608), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7610), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7614), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(3277), 1, + ACTIONS(7654), 1, + anon_sym_LPAREN2, + STATE(640), 1, + sym__end_of_statement, + STATE(3608), 1, + sym_parenthesized_expression, + STATE(7028), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(3393), 1, - sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3373), 2, - sym_variable_group, - aux_sym_common_statement_repeat2, - STATE(3692), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(7606), 47, + ACTIONS(7662), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -471356,7 +471389,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [9946] = 12, + [10012] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -471365,23 +471398,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7670), 1, - anon_sym_LPAREN2, - STATE(651), 1, - sym__end_of_statement, - STATE(3700), 1, - sym_parenthesized_expression, - STATE(7016), 1, - sym__block_label, - STATE(7439), 1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5592), 2, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + STATE(6051), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, sym_identifier, + ACTIONS(5456), 45, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [10093] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7672), 2, + ACTIONS(4347), 7, sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_SEMI, - ACTIONS(5456), 47, + anon_sym_LBRACK, + ACTIONS(4345), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -471397,8 +471489,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -471415,6 +471509,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -471429,7 +471524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10031] = 12, + [10160] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -471438,25 +471533,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7670), 1, - anon_sym_LPAREN2, - STATE(652), 1, - sym__end_of_statement, - STATE(3681), 1, - sym_parenthesized_expression, - STATE(6653), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7674), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(5919), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -471502,22 +471595,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10116] = 3, + [10241] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7676), 6, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(7678), 52, - aux_sym_end_program_statement_token1, - anon_sym_EQ, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(6048), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -471531,10 +471634,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -471551,7 +471652,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -471566,7 +471666,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10183] = 12, + [10322] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -471575,25 +471675,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(3847), 1, - sym_argument_list, - STATE(7170), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7680), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(5939), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -471639,7 +471737,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10268] = 12, + [10403] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -471648,25 +471746,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(3277), 1, - sym_identifier, - STATE(3393), 1, - sym_sized_declarator, - STATE(6128), 1, - sym__declaration_assignment, - STATE(6131), 1, - sym__declaration_pointer_association, - STATE(7446), 1, - sym__declaration_targets, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5860), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(5456), 47, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(5941), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -471712,7 +471808,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10353] = 12, + [10484] = 12, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -471721,20 +471817,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7416), 1, + ACTIONS(7442), 1, anon_sym_LPAREN2, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(3738), 1, + STATE(3791), 1, sym_argument_list, - STATE(7420), 1, - sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, + STATE(7248), 1, + sym__block_label, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7682), 2, + ACTIONS(7664), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -471785,7 +471881,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10438] = 10, + [10569] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -471794,17 +471890,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6011), 5, + STATE(5955), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -471856,32 +471952,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10519] = 12, - ACTIONS(4279), 1, - anon_sym_LPAREN2, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7684), 1, - aux_sym_submodule_statement_token1, - STATE(875), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6413), 1, - sym__name, + [10650] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7686), 2, + ACTIONS(4317), 7, sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_SEMI, - ACTIONS(5456), 47, + anon_sym_LBRACK, + ACTIONS(4315), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -471897,8 +471981,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -471915,6 +472001,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -471929,32 +472016,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10604] = 12, - ACTIONS(748), 1, + [10717] = 12, + ACTIONS(4347), 1, + anon_sym_LPAREN2, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5077), 1, + ACTIONS(7666), 1, + aux_sym_submodule_statement_token1, + STATE(1059), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, - STATE(5161), 1, - sym_sized_declarator, - STATE(5218), 1, - sym__declaration_assignment, - STATE(5219), 1, - sym__declaration_pointer_association, - STATE(5378), 1, - sym__declaration_targets, + STATE(7064), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5167), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(93), 47, + ACTIONS(7668), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -472002,34 +472089,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10689] = 12, - ACTIONS(748), 1, + [10802] = 10, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5077), 1, - sym_identifier, - STATE(5161), 1, - sym_sized_declarator, - STATE(5218), 1, - sym__declaration_assignment, - STATE(5219), 1, - sym__declaration_pointer_association, - STATE(5375), 1, - sym__declaration_targets, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5167), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(93), 47, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(5957), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -472075,22 +472160,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10774] = 3, + [10883] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(5588), 1, + aux_sym_assignment_token1, + ACTIONS(5590), 1, + aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7688), 6, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(7690), 52, - aux_sym_end_program_statement_token1, - anon_sym_EQ, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, + STATE(6029), 5, + sym_assignment, + sym_operator, + sym_defined_io_procedure, + sym__generic_procedure, + sym_identifier, + ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -472104,10 +472199,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -472124,7 +472217,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -472139,7 +472231,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10841] = 10, + [10964] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -472148,17 +472240,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6094), 5, + STATE(6085), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -472210,7 +472302,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [10922] = 10, + [11045] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -472219,17 +472311,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6096), 5, + STATE(6031), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -472281,32 +472373,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11003] = 12, - ACTIONS(4279), 1, - anon_sym_LPAREN2, - ACTIONS(5454), 1, + [11126] = 12, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7692), 1, - aux_sym_module_statement_token1, - STATE(904), 1, - sym__end_of_statement, - STATE(6084), 1, + STATE(5074), 1, sym_identifier, - STATE(6600), 1, - sym__name, + STATE(5162), 1, + sym_sized_declarator, + STATE(5254), 1, + sym__declaration_assignment, + STATE(5304), 1, + sym__declaration_pointer_association, + STATE(5386), 1, + sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7694), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + STATE(5174), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -472354,7 +472446,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11088] = 10, + [11211] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -472363,17 +472455,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5938), 5, + STATE(5970), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -472425,7 +472517,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11169] = 10, + [11292] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -472434,17 +472526,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5940), 5, + STATE(6082), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -472496,8 +472588,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11250] = 12, - ACTIONS(4279), 1, + [11373] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4351), 7, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(4349), 51, + aux_sym_end_program_statement_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [11440] = 12, + ACTIONS(4347), 1, anon_sym_LPAREN2, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, @@ -472507,18 +472663,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7696), 1, - aux_sym_submodule_statement_token1, - STATE(1050), 1, + ACTIONS(7670), 1, + aux_sym_module_statement_token1, + STATE(1067), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6868), 1, + STATE(6848), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7698), 2, + ACTIONS(7672), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -472569,7 +472725,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11335] = 10, + [11525] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -472578,17 +472734,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5959), 5, + STATE(5983), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -472640,32 +472796,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11416] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + [11606] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7674), 6, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(7676), 52, + aux_sym_end_program_statement_token1, + anon_sym_EQ, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5961), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -472679,8 +472825,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -472697,6 +472845,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -472711,9 +472860,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11497] = 12, - ACTIONS(4279), 1, - anon_sym_LPAREN2, + [11673] = 12, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -472722,20 +472869,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7700), 1, - aux_sym_module_statement_token1, - STATE(1045), 1, - sym__end_of_statement, - STATE(6084), 1, + STATE(3285), 1, sym_identifier, - STATE(6305), 1, - sym__name, + STATE(3394), 1, + sym_sized_declarator, + STATE(6163), 1, + sym__declaration_assignment, + STATE(6165), 1, + sym__declaration_pointer_association, + STATE(7158), 1, + sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7702), 2, - sym__external_end_of_statement, - anon_sym_SEMI, + STATE(5882), 2, + sym__variable_declarator, + sym_coarray_declarator, ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -472784,32 +472933,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11582] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + [11758] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7678), 6, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(7680), 52, + aux_sym_end_program_statement_token1, + anon_sym_EQ, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5967), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -472823,8 +472962,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -472841,6 +472982,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -472855,7 +472997,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11663] = 10, + [11825] = 12, + ACTIONS(4347), 1, + anon_sym_LPAREN2, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -472864,23 +473008,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + ACTIONS(7682), 1, + aux_sym_module_statement_token1, + STATE(860), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(7030), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7684), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5969), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -472926,32 +473070,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11744] = 12, - ACTIONS(748), 1, + [11910] = 12, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5077), 1, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(3838), 1, + sym_argument_list, + STATE(7146), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(5161), 1, - sym_sized_declarator, - STATE(5218), 1, - sym__declaration_assignment, - STATE(5219), 1, - sym__declaration_pointer_association, - STATE(5374), 1, - sym__declaration_targets, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5167), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(93), 47, + ACTIONS(7686), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -472999,7 +473143,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11829] = 10, + [11995] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473008,17 +473152,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5975), 5, + STATE(5985), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473070,32 +473214,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11910] = 10, - ACTIONS(5454), 1, + [12076] = 11, + ACTIONS(7610), 1, + anon_sym_SLASH, + ACTIONS(7612), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(7616), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(7618), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(7622), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + STATE(3285), 1, + sym_identifier, + STATE(3394), 1, + sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + STATE(3374), 2, + sym_variable_group, + aux_sym_common_statement_repeat2, + STATE(3625), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(7614), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5977), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -473141,7 +473286,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [11991] = 10, + [12159] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473150,17 +473295,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5984), 5, + STATE(6466), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473212,7 +473357,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12072] = 10, + [12240] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473221,17 +473366,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5993), 5, + STATE(5995), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473283,7 +473428,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12153] = 10, + [12321] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473292,17 +473437,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(5995), 5, + STATE(5929), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473354,7 +473499,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12234] = 10, + [12402] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7688), 6, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(7690), 52, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [12469] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473363,17 +473572,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6005), 5, + STATE(5997), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473425,7 +473634,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12315] = 10, + [12550] = 12, + ACTIONS(4347), 1, + anon_sym_LPAREN2, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473434,23 +473645,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + ACTIONS(7692), 1, + aux_sym_submodule_statement_token1, + STATE(942), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6862), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7694), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6007), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -473496,7 +473707,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12396] = 10, + [12635] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473505,17 +473716,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6016), 5, + STATE(6064), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473567,7 +473778,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12477] = 10, + [12716] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473576,17 +473787,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6018), 5, + STATE(6009), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473638,7 +473849,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12558] = 10, + [12797] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473647,17 +473858,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6114), 5, + STATE(6067), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473709,7 +473920,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12639] = 10, + [12878] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473718,17 +473929,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6031), 5, + STATE(6054), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473780,7 +473991,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12720] = 10, + [12959] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473789,17 +474000,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6045), 5, + STATE(5931), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473851,7 +474062,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12801] = 10, + [13040] = 12, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(5074), 1, + sym_identifier, + STATE(5162), 1, + sym_sized_declarator, + STATE(5254), 1, + sym__declaration_assignment, + STATE(5304), 1, + sym__declaration_pointer_association, + STATE(5384), 1, + sym__declaration_targets, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5174), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [13125] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473860,17 +474144,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6047), 5, + STATE(5930), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -473922,7 +474206,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12882] = 10, + [13206] = 12, + ACTIONS(4347), 1, + anon_sym_LPAREN2, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -473931,23 +474217,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + ACTIONS(7696), 1, + aux_sym_submodule_statement_token1, + STATE(862), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(7034), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7698), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6022), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -473993,7 +474279,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [12963] = 10, + [13291] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474002,17 +474288,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6054), 5, + STATE(6011), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -474064,7 +474350,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13044] = 10, + [13372] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7700), 6, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(7702), 52, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [13439] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474073,17 +474423,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6056), 5, + STATE(6066), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -474135,7 +474485,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13125] = 10, + [13520] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474144,17 +474494,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, + ACTIONS(5588), 1, aux_sym_assignment_token1, - ACTIONS(5596), 1, + ACTIONS(5590), 1, aux_sym_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5592), 2, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6063), 5, + STATE(5972), 5, sym_assignment, sym_operator, sym_defined_io_procedure, @@ -474206,7 +474556,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13206] = 10, + [13601] = 11, + ACTIONS(7704), 1, + sym_system_lib_string, + ACTIONS(7706), 1, + aux_sym_end_program_statement_token1, + ACTIONS(7710), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7712), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(7714), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7716), 1, + sym__string_literal, + ACTIONS(7718), 1, + sym__string_literal_kind, + STATE(6933), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(7964), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7708), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [13683] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474215,23 +474636,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + ACTIONS(7076), 1, + aux_sym_module_procedure_statement_token1, + STATE(4909), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6678), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(7078), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6065), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -474277,7 +474698,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13287] = 10, + [13765] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474286,23 +474707,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + ACTIONS(6948), 1, + aux_sym_subroutine_statement_token1, + STATE(1027), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(7067), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(6950), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6071), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -474348,7 +474769,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13368] = 10, + [13847] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474357,23 +474778,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(5594), 1, - aux_sym_assignment_token1, - ACTIONS(5596), 1, - aux_sym_operator_token1, + ACTIONS(6960), 1, + aux_sym_function_statement_token1, + STATE(1035), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6683), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5598), 2, + ACTIONS(6962), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, - STATE(6073), 5, - sym_assignment, - sym_operator, - sym_defined_io_procedure, - sym__generic_procedure, - sym_identifier, - ACTIONS(5456), 45, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -474419,7 +474840,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13449] = 12, + [13929] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474428,22 +474849,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(3277), 1, + ACTIONS(7072), 1, + aux_sym_program_statement_token1, + STATE(1034), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, - STATE(3393), 1, - sym_sized_declarator, - STATE(6128), 1, - sym__declaration_assignment, - STATE(6131), 1, - sym__declaration_pointer_association, - STATE(7113), 1, - sym__declaration_targets, + STATE(6578), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5860), 2, - sym__variable_declarator, - sym_coarray_declarator, + ACTIONS(7074), 2, + sym__external_end_of_statement, + anon_sym_SEMI, ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -474492,19 +474911,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13534] = 3, + [14011] = 7, + ACTIONS(7720), 1, + anon_sym_LPAREN2, + ACTIONS(7722), 1, + anon_sym_STAR, + STATE(3958), 1, + sym_kind, + STATE(3960), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4333), 7, - sym__external_end_of_statement, + ACTIONS(7120), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(4331), 51, + anon_sym_COLON_COLON, + ACTIONS(7126), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -474556,7 +474978,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13601] = 11, + [14085] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474565,18 +474987,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6960), 1, - aux_sym_function_statement_token1, - STATE(5016), 1, + ACTIONS(7658), 1, + aux_sym_module_statement_token1, + STATE(1057), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6298), 1, + STATE(7035), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6962), 2, + ACTIONS(7660), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -474627,7 +475049,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13683] = 11, + [14167] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474636,18 +475058,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7044), 1, - aux_sym_module_procedure_statement_token1, - STATE(4915), 1, + ACTIONS(7724), 1, + aux_sym_implicit_statement_token3, + STATE(1459), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6494), 1, + STATE(6675), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7046), 2, + ACTIONS(7726), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -474698,7 +475120,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13765] = 11, + [14249] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474707,18 +475129,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6968), 1, - aux_sym_module_procedure_statement_token1, - STATE(5033), 1, + ACTIONS(7666), 1, + aux_sym_submodule_statement_token1, + STATE(1059), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6731), 1, + STATE(7064), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6970), 2, + ACTIONS(7668), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -474769,7 +475191,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13847] = 11, + [14331] = 11, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7728), 1, + anon_sym_COLON_COLON, + STATE(5503), 1, + sym_identifier, + STATE(6049), 1, + sym__declaration_assignment, + STATE(6951), 1, + sym_sized_declarator, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(7538), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [14413] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474778,18 +475271,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7048), 1, + ACTIONS(7080), 1, aux_sym_subroutine_statement_token1, - STATE(4986), 1, + STATE(848), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6511), 1, + STATE(6891), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7050), 2, + ACTIONS(7082), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -474840,7 +475333,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [13929] = 11, + [14495] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474849,18 +475342,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7052), 1, + ACTIONS(7084), 1, aux_sym_function_statement_token1, - STATE(4988), 1, + STATE(855), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6513), 1, + STATE(6941), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7054), 2, + ACTIONS(7086), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -474911,7 +475404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14011] = 11, + [14577] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474920,20 +475413,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7704), 1, - aux_sym_implicit_statement_token3, - STATE(1165), 1, - sym__end_of_statement, - STATE(6084), 1, + STATE(3285), 1, sym_identifier, - STATE(6539), 1, - sym__name, + STATE(3394), 1, + sym_sized_declarator, + STATE(6433), 1, + sym__declaration_assignment, + STATE(6442), 1, + sym__declaration_pointer_association, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7706), 2, - sym__external_end_of_statement, - anon_sym_SEMI, + STATE(5990), 2, + sym__variable_declarator, + sym_coarray_declarator, ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -474982,7 +475475,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14093] = 11, + [14659] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -474991,18 +475484,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6964), 1, - aux_sym_program_statement_token1, - STATE(1046), 1, - sym__end_of_statement, - STATE(6084), 1, + ACTIONS(7730), 1, + anon_sym_COMMA, + ACTIONS(7732), 1, + anon_sym_COLON_COLON, + STATE(6182), 1, sym_identifier, - STATE(6651), 1, - sym__name, + STATE(7174), 1, + sym__import_names, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6966), 2, + ACTIONS(7104), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475053,7 +475546,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14175] = 11, + [14741] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475062,18 +475555,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7084), 1, - aux_sym_function_statement_token1, - STATE(980), 1, + ACTIONS(7734), 1, + aux_sym_implicit_statement_token3, + STATE(2830), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6486), 1, + STATE(6795), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7086), 2, + ACTIONS(7736), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475124,7 +475617,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14257] = 11, + [14823] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475133,18 +475626,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7708), 1, - anon_sym_COMMA, - ACTIONS(7710), 1, - anon_sym_COLON_COLON, - STATE(6233), 1, + ACTIONS(7088), 1, + aux_sym_module_procedure_statement_token1, + STATE(4935), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, - STATE(7412), 1, - sym__import_names, + STATE(6646), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7104), 2, + ACTIONS(7090), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475195,7 +475688,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14339] = 11, + [14905] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475204,18 +475697,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7654), 1, - aux_sym_module_statement_token1, - STATE(1057), 1, + ACTIONS(6944), 1, + aux_sym_program_statement_token1, + STATE(1031), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, STATE(6809), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7656), 2, + ACTIONS(6946), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475266,7 +475759,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14421] = 11, + [14987] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475275,18 +475768,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7056), 1, - aux_sym_subroutine_statement_token1, - STATE(5011), 1, + ACTIONS(7670), 1, + aux_sym_module_statement_token1, + STATE(1067), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6565), 1, + STATE(6848), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7058), 2, + ACTIONS(7672), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475337,7 +475830,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14503] = 11, + [15069] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475346,18 +475839,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7700), 1, - aux_sym_module_statement_token1, - STATE(1045), 1, + ACTIONS(7692), 1, + aux_sym_submodule_statement_token1, + STATE(942), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6305), 1, + STATE(6862), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7702), 2, + ACTIONS(7694), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475408,7 +475901,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14585] = 11, + [15151] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475417,18 +475910,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7064), 1, - aux_sym_function_statement_token1, - STATE(5013), 1, + ACTIONS(6936), 1, + aux_sym_subroutine_statement_token1, + STATE(5046), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6569), 1, + STATE(7048), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7066), 2, + ACTIONS(6938), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475479,7 +475972,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14667] = 11, + [15233] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475488,18 +475981,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7662), 1, - aux_sym_submodule_statement_token1, - STATE(1059), 1, + ACTIONS(6940), 1, + aux_sym_function_statement_token1, + STATE(5048), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6826), 1, + STATE(6253), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7664), 2, + ACTIONS(6942), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475550,7 +476043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14749] = 11, + [15315] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475559,18 +476052,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7712), 1, + ACTIONS(7738), 1, aux_sym_implicit_statement_token3, - STATE(2762), 1, + STATE(2787), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6596), 1, + STATE(6403), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7714), 2, + ACTIONS(7740), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475621,23 +476114,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14831] = 7, - ACTIONS(7716), 1, - anon_sym_LPAREN2, - ACTIONS(7718), 1, - anon_sym_STAR, - STATE(3929), 1, - sym_kind, - STATE(3930), 1, - sym__argument_list, + [15397] = 11, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(6952), 1, + aux_sym_module_procedure_statement_token1, + STATE(4896), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6534), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7120), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7126), 51, - aux_sym_end_program_statement_token1, + ACTIONS(6954), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -475653,10 +476153,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -475673,7 +476171,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -475688,7 +476185,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14905] = 11, + [15479] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475697,18 +476194,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6976), 1, + ACTIONS(6956), 1, aux_sym_subroutine_statement_token1, - STATE(1081), 1, + STATE(949), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6813), 1, + STATE(6633), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6978), 2, + ACTIONS(6958), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475759,7 +476256,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [14987] = 11, + [15561] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475768,18 +476265,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6980), 1, + ACTIONS(6964), 1, aux_sym_function_statement_token1, - STATE(1083), 1, + STATE(951), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6820), 1, + STATE(6644), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6982), 2, + ACTIONS(6966), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475830,7 +476327,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15069] = 11, + [15643] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475839,18 +476336,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7692), 1, - aux_sym_module_statement_token1, - STATE(904), 1, + ACTIONS(7036), 1, + aux_sym_program_statement_token1, + STATE(851), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6600), 1, + STATE(6939), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7694), 2, + ACTIONS(7038), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475901,7 +476398,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15151] = 11, + [15725] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475910,18 +476407,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7068), 1, - aux_sym_subroutine_statement_token1, - STATE(4714), 1, + ACTIONS(7742), 1, + aux_sym_implicit_statement_token3, + STATE(1150), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6616), 1, + STATE(6700), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7070), 2, + ACTIONS(7744), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -475972,7 +476469,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15233] = 11, + [15807] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -475981,18 +476478,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7072), 1, - aux_sym_function_statement_token1, - STATE(4663), 1, + ACTIONS(6968), 1, + aux_sym_module_procedure_statement_token1, + STATE(4393), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6619), 1, + STATE(6746), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7074), 2, + ACTIONS(6970), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476043,7 +476540,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15315] = 11, + [15889] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476052,18 +476549,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7720), 1, - aux_sym_implicit_statement_token3, - STATE(1511), 1, + ACTIONS(6972), 1, + aux_sym_subroutine_statement_token1, + STATE(4812), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6644), 1, + STATE(6787), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7722), 2, + ACTIONS(6974), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476114,7 +476611,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15397] = 11, + [15971] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476123,18 +476620,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7724), 1, - aux_sym_implicit_statement_token3, - STATE(1120), 1, + ACTIONS(6976), 1, + aux_sym_function_statement_token1, + STATE(4814), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6910), 1, + STATE(6793), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7726), 2, + ACTIONS(6978), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476185,7 +476682,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15479] = 11, + [16053] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476194,18 +476691,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7076), 1, - aux_sym_subroutine_statement_token1, - STATE(4885), 1, + ACTIONS(7746), 1, + aux_sym_implicit_statement_token3, + STATE(1629), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6666), 1, + STATE(6859), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7078), 2, + ACTIONS(7748), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476256,7 +476753,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15561] = 11, + [16135] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476265,18 +476762,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7080), 1, - aux_sym_function_statement_token1, - STATE(4957), 1, + ACTIONS(6988), 1, + aux_sym_module_procedure_statement_token1, + STATE(5024), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6668), 1, + STATE(6889), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7082), 2, + ACTIONS(6990), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476327,30 +476824,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15643] = 11, - ACTIONS(748), 1, + [16217] = 11, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7728), 1, - anon_sym_COLON_COLON, - STATE(5492), 1, + ACTIONS(6992), 1, + aux_sym_subroutine_statement_token1, + STATE(4903), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, - STATE(6080), 1, - sym__declaration_assignment, - STATE(6889), 1, - sym_sized_declarator, + STATE(6957), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7584), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(93), 47, + ACTIONS(6994), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -476398,7 +476895,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15725] = 11, + [16299] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476407,18 +476904,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7088), 1, - aux_sym_program_statement_token1, - STATE(1040), 1, + ACTIONS(6996), 1, + aux_sym_function_statement_token1, + STATE(4905), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6252), 1, + STATE(6960), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7090), 2, + ACTIONS(6998), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476469,7 +476966,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15807] = 11, + [16381] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476478,18 +476975,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7730), 1, + ACTIONS(7750), 1, aux_sym_implicit_statement_token3, - STATE(3075), 1, + STATE(1380), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6693), 1, + STATE(7036), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7732), 2, + ACTIONS(7752), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476540,7 +477037,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15889] = 11, + [16463] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476549,18 +477046,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6956), 1, - aux_sym_subroutine_statement_token1, - STATE(5010), 1, + ACTIONS(7000), 1, + aux_sym_module_procedure_statement_token1, + STATE(4839), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6287), 1, + STATE(6258), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6958), 2, + ACTIONS(7002), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476611,7 +477108,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [15971] = 11, + [16545] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476620,18 +477117,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7734), 1, - aux_sym_implicit_statement_token3, - STATE(1567), 1, + ACTIONS(7008), 1, + aux_sym_subroutine_statement_token1, + STATE(4616), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6727), 1, + STATE(6281), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7736), 2, + ACTIONS(7010), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476682,7 +477179,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16053] = 11, + [16627] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476691,18 +477188,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6996), 1, + ACTIONS(7012), 1, aux_sym_function_statement_token1, - STATE(4495), 1, + STATE(4618), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6654), 1, + STATE(6285), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6998), 2, + ACTIONS(7014), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476753,7 +477250,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16135] = 11, + [16709] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476762,18 +477259,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6984), 1, - aux_sym_module_procedure_statement_token1, - STATE(4456), 1, + ACTIONS(7754), 1, + aux_sym_implicit_statement_token3, + STATE(1516), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(7037), 1, + STATE(6316), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6986), 2, + ACTIONS(7756), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476824,7 +477321,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16217] = 11, + [16791] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476833,18 +477330,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6940), 1, - aux_sym_subroutine_statement_token1, - STATE(883), 1, + ACTIONS(7020), 1, + aux_sym_module_procedure_statement_token1, + STATE(4650), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6796), 1, + STATE(6333), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6942), 2, + ACTIONS(7022), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476895,7 +477392,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16299] = 11, + [16873] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476904,18 +477401,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7738), 1, - aux_sym_implicit_statement_token3, - STATE(2777), 1, + ACTIONS(7682), 1, + aux_sym_module_statement_token1, + STATE(860), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6995), 1, + STATE(7030), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7740), 2, + ACTIONS(7684), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -476966,7 +477463,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16381] = 11, + [16955] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -476975,18 +477472,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6988), 1, + ACTIONS(7024), 1, aux_sym_subroutine_statement_token1, - STATE(4967), 1, + STATE(4465), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6258), 1, + STATE(6353), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6990), 2, + ACTIONS(7026), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477037,7 +477534,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16463] = 11, + [17037] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477046,18 +477543,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6992), 1, + ACTIONS(7028), 1, aux_sym_function_statement_token1, - STATE(4970), 1, + STATE(4459), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6262), 1, + STATE(6356), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6994), 2, + ACTIONS(7030), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477108,7 +477605,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16545] = 11, + [17119] = 11, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7758), 1, + aux_sym_implicit_statement_token3, + STATE(1214), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6386), 1, + sym__name, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7760), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [17201] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477119,11 +477687,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_case_statement_token1, ACTIONS(7696), 1, aux_sym_submodule_statement_token1, - STATE(1050), 1, + STATE(862), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6868), 1, + STATE(7034), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, @@ -477179,7 +477747,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16627] = 11, + [17283] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477188,18 +477756,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7684), 1, - aux_sym_submodule_statement_token1, - STATE(875), 1, + ACTIONS(7032), 1, + aux_sym_module_procedure_statement_token1, + STATE(5002), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6413), 1, + STATE(6406), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7686), 2, + ACTIONS(7034), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477250,7 +477818,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16709] = 11, + [17365] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477259,18 +477827,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7742), 1, - aux_sym_implicit_statement_token3, - STATE(1642), 1, + ACTIONS(7040), 1, + aux_sym_subroutine_statement_token1, + STATE(4913), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6293), 1, + STATE(6422), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7744), 2, + ACTIONS(7042), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [17447] = 11, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(7044), 1, + aux_sym_function_statement_token1, + STATE(4937), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6426), 1, + sym__name, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7046), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477321,7 +477960,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16791] = 11, + [17529] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477330,89 +477969,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7746), 1, + ACTIONS(7762), 1, aux_sym_implicit_statement_token3, - STATE(1468), 1, + STATE(1155), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6708), 1, - sym__name, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7748), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [16873] = 11, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7032), 1, - aux_sym_module_procedure_statement_token1, - STATE(4655), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6435), 1, + STATE(6456), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7034), 2, + ACTIONS(7764), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477463,30 +478031,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [16955] = 11, - ACTIONS(7750), 1, - sym_system_lib_string, - ACTIONS(7752), 1, + [17611] = 11, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, - sym__string_literal, - ACTIONS(7764), 1, - sym__string_literal_kind, - STATE(6901), 1, + STATE(5074), 1, sym_identifier, + STATE(5162), 1, + sym_sized_declarator, + STATE(5347), 1, + sym__declaration_assignment, + STATE(5357), 1, + sym__declaration_pointer_association, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(8001), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7754), 47, + STATE(5191), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -477534,7 +478102,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17037] = 11, + [17693] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477543,18 +478111,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7766), 1, - aux_sym_implicit_statement_token3, - STATE(2837), 1, + ACTIONS(7048), 1, + aux_sym_subroutine_statement_token1, + STATE(4816), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6580), 1, + STATE(6481), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7768), 2, + ACTIONS(7050), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477605,7 +478173,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17119] = 11, + [17775] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477614,18 +478182,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6944), 1, + ACTIONS(7052), 1, aux_sym_function_statement_token1, - STATE(885), 1, + STATE(4820), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6810), 1, + STATE(6485), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6946), 2, + ACTIONS(7054), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477676,7 +478244,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17201] = 11, + [17857] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477685,18 +478253,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6952), 1, - aux_sym_module_procedure_statement_token1, - STATE(4836), 1, + ACTIONS(7766), 1, + aux_sym_implicit_statement_token3, + STATE(2772), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6761), 1, + STATE(6512), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6954), 2, + ACTIONS(7768), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477747,7 +478315,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17283] = 11, + [17939] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477756,18 +478324,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7000), 1, - aux_sym_module_procedure_statement_token1, - STATE(4872), 1, + ACTIONS(7056), 1, + aux_sym_subroutine_statement_token1, + STATE(4669), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6309), 1, + STATE(6537), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7002), 2, + ACTIONS(7058), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477818,30 +478386,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17365] = 11, - ACTIONS(7752), 1, + [18021] = 11, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, - sym__string_literal, - ACTIONS(7764), 1, - sym__string_literal_kind, - ACTIONS(7770), 1, - sym_system_lib_string, - STATE(6412), 1, + ACTIONS(7060), 1, + aux_sym_function_statement_token1, + STATE(4726), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, + STATE(6541), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7563), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7062), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -477889,7 +478457,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17447] = 11, + [18103] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -477898,18 +478466,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6948), 1, - aux_sym_module_procedure_statement_token1, - STATE(4887), 1, + ACTIONS(7770), 1, + aux_sym_implicit_statement_token3, + STATE(1510), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6634), 1, + STATE(6570), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6950), 2, + ACTIONS(7772), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -477960,30 +478528,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17529] = 11, - ACTIONS(5454), 1, + [18185] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7004), 1, - aux_sym_subroutine_statement_token1, - STATE(4838), 1, - sym__end_of_statement, - STATE(6084), 1, + ACTIONS(7716), 1, + sym__string_literal, + ACTIONS(7718), 1, + sym__string_literal_kind, + ACTIONS(7774), 1, + sym_system_lib_string, + STATE(6826), 1, sym_identifier, - STATE(6324), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7006), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + STATE(7912), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -478031,30 +478599,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17611] = 11, - ACTIONS(7752), 1, + [18267] = 11, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, - sym__string_literal, - ACTIONS(7764), 1, - sym__string_literal_kind, - ACTIONS(7772), 1, - sym_system_lib_string, - STATE(6848), 1, + ACTIONS(7068), 1, + aux_sym_function_statement_token1, + STATE(4872), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, + STATE(6595), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7840), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7070), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -478102,30 +478670,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17693] = 11, - ACTIONS(7752), 1, + [18349] = 11, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, - sym__string_literal, - ACTIONS(7764), 1, - sym__string_literal_kind, - ACTIONS(7774), 1, - sym_system_lib_string, - STATE(6276), 1, + ACTIONS(7776), 1, + aux_sym_implicit_statement_token3, + STATE(3086), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, + STATE(6621), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(8187), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7778), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -478173,7 +478741,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17775] = 11, + [18431] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -478182,18 +478750,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7008), 1, - aux_sym_function_statement_token1, - STATE(4840), 1, + ACTIONS(7780), 1, + aux_sym_implicit_statement_token3, + STATE(1440), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6327), 1, + STATE(6657), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7010), 2, + ACTIONS(7782), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -478244,30 +478812,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17857] = 11, - ACTIONS(7752), 1, + [18513] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7776), 1, + ACTIONS(7784), 1, sym_system_lib_string, - STATE(6340), 1, + STATE(6320), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(8203), 2, + STATE(8232), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -478315,30 +478883,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [17939] = 11, - ACTIONS(7752), 1, + [18595] = 11, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, - sym__string_literal, - ACTIONS(7764), 1, - sym__string_literal_kind, - ACTIONS(7778), 1, - sym_system_lib_string, - STATE(6400), 1, + ACTIONS(7004), 1, + aux_sym_subroutine_statement_token1, + STATE(4510), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, + STATE(6487), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7760), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7006), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -478386,7 +478954,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18021] = 11, + [18677] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -478395,18 +478963,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7036), 1, - aux_sym_subroutine_statement_token1, - STATE(4404), 1, + ACTIONS(7016), 1, + aux_sym_function_statement_token1, + STATE(4513), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6450), 1, + STATE(6693), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7038), 2, + ACTIONS(7018), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -478457,101 +479025,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18103] = 11, - ACTIONS(7752), 1, + [18759] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7780), 1, + ACTIONS(7786), 1, sym_system_lib_string, - STATE(6464), 1, + STATE(6313), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(8116), 2, + STATE(7765), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [18185] = 11, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7782), 1, - aux_sym_implicit_statement_token3, - STATE(1390), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6417), 1, - sym__name, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7784), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -478599,30 +479096,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18267] = 11, - ACTIONS(5454), 1, + [18841] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7040), 1, - aux_sym_function_statement_token1, - STATE(4406), 1, - sym__end_of_statement, - STATE(6084), 1, + ACTIONS(7716), 1, + sym__string_literal, + ACTIONS(7718), 1, + sym__string_literal_kind, + ACTIONS(7788), 1, + sym_system_lib_string, + STATE(6670), 1, sym_identifier, - STATE(6453), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7042), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + STATE(8308), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -478670,30 +479167,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18349] = 11, - ACTIONS(7752), 1, + [18923] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7786), 1, + ACTIONS(7790), 1, sym_system_lib_string, - STATE(6579), 1, + STATE(6823), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(8082), 2, + STATE(7901), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -478741,30 +479238,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18431] = 11, - ACTIONS(7752), 1, + [19005] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7788), 1, + ACTIONS(7792), 1, sym_system_lib_string, - STATE(6628), 1, + STATE(6987), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7726), 2, + STATE(7523), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -478812,17 +479309,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18513] = 3, + [19087] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7790), 5, + ACTIONS(7794), 5, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_SLASH, anon_sym_EQ_GT, anon_sym_SEMI, - ACTIONS(7792), 52, + ACTIONS(7796), 52, aux_sym_end_program_statement_token1, anon_sym_EQ, aux_sym_defined_io_procedure_token1, @@ -478875,101 +479372,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18579] = 11, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7794), 1, - aux_sym_implicit_statement_token3, - STATE(1359), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6356), 1, - sym__name, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7796), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [18661] = 11, - ACTIONS(7752), 1, + [19153] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7798), 1, sym_system_lib_string, - STATE(6679), 1, + STATE(6297), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7955), 2, + STATE(7925), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479017,30 +479443,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18743] = 11, - ACTIONS(5454), 1, + [19235] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, + ACTIONS(7716), 1, + sym__string_literal, + ACTIONS(7718), 1, + sym__string_literal_kind, ACTIONS(7800), 1, - aux_sym_implicit_statement_token3, - STATE(1242), 1, - sym__end_of_statement, - STATE(6084), 1, + sym_system_lib_string, + STATE(6370), 1, sym_identifier, - STATE(6478), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7802), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + STATE(8181), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479088,30 +479514,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18825] = 11, - ACTIONS(7752), 1, + [19317] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7804), 1, + ACTIONS(7802), 1, sym_system_lib_string, - STATE(6714), 1, + STATE(6439), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(8211), 2, + STATE(8392), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479159,30 +479585,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18907] = 11, - ACTIONS(7752), 1, + [19399] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7806), 1, + ACTIONS(7804), 1, sym_system_lib_string, - STATE(6743), 1, + STATE(6498), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7462), 2, + STATE(8206), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479230,30 +479656,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [18989] = 11, - ACTIONS(7752), 1, + [19481] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7808), 1, + ACTIONS(7806), 1, sym_system_lib_string, - STATE(6760), 1, + STATE(6553), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7504), 2, + STATE(7741), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479301,30 +479727,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19071] = 11, - ACTIONS(5454), 1, + [19563] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(6972), 1, - aux_sym_subroutine_statement_token1, - STATE(4489), 1, - sym__end_of_statement, - STATE(6084), 1, + ACTIONS(7716), 1, + sym__string_literal, + ACTIONS(7718), 1, + sym__string_literal_kind, + ACTIONS(7808), 1, + sym_system_lib_string, + STATE(6606), 1, sym_identifier, - STATE(6639), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6974), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + STATE(8042), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479372,30 +479798,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19153] = 11, - ACTIONS(7752), 1, + [19645] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7810), 1, sym_system_lib_string, - STATE(6777), 1, + STATE(6643), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7544), 2, + STATE(8268), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479443,30 +479869,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19235] = 11, - ACTIONS(7752), 1, + [19727] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7812), 1, sym_system_lib_string, - STATE(6783), 1, + STATE(6677), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7576), 2, + STATE(7463), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479514,30 +479940,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19317] = 11, - ACTIONS(7752), 1, + [19809] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7814), 1, sym_system_lib_string, - STATE(6791), 1, + STATE(6702), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7608), 2, + STATE(7505), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479585,30 +480011,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19399] = 11, - ACTIONS(7752), 1, + [19891] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7816), 1, sym_system_lib_string, - STATE(6804), 1, + STATE(6722), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7640), 2, + STATE(7545), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479656,30 +480082,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19481] = 11, - ACTIONS(7752), 1, + [19973] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7818), 1, sym_system_lib_string, - STATE(6815), 1, + STATE(6735), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7671), 2, + STATE(7577), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479727,30 +480153,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19563] = 11, - ACTIONS(7752), 1, + [20055] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7820), 1, sym_system_lib_string, - STATE(6817), 1, + STATE(6748), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7687), 2, + STATE(7609), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479798,30 +480224,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19645] = 11, - ACTIONS(7752), 1, + [20137] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7822), 1, sym_system_lib_string, - STATE(6819), 1, + STATE(6761), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7703), 2, + STATE(7641), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479869,30 +480295,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19727] = 11, - ACTIONS(7752), 1, + [20219] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7824), 1, sym_system_lib_string, - STATE(6821), 1, + STATE(6772), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7719), 2, + STATE(7672), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -479940,30 +480366,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19809] = 11, - ACTIONS(7752), 1, + [20301] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7826), 1, sym_system_lib_string, - STATE(6823), 1, + STATE(6774), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7727), 2, + STATE(7688), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480011,30 +480437,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19891] = 11, - ACTIONS(7752), 1, + [20383] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7828), 1, sym_system_lib_string, - STATE(6825), 1, + STATE(6776), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7735), 2, + STATE(7704), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480082,30 +480508,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [19973] = 11, - ACTIONS(7752), 1, + [20465] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7830), 1, sym_system_lib_string, - STATE(6827), 1, + STATE(6778), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7743), 2, + STATE(7720), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480153,30 +480579,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20055] = 11, - ACTIONS(7752), 1, + [20547] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7832), 1, sym_system_lib_string, - STATE(6829), 1, + STATE(6780), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7751), 2, + STATE(7728), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480224,30 +480650,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20137] = 11, - ACTIONS(7752), 1, + [20629] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7834), 1, sym_system_lib_string, - STATE(6831), 1, + STATE(6782), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7759), 2, + STATE(7736), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480295,30 +480721,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20219] = 11, - ACTIONS(7752), 1, + [20711] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7836), 1, sym_system_lib_string, - STATE(6833), 1, + STATE(6784), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7767), 2, + STATE(7744), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480366,30 +480792,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20301] = 11, - ACTIONS(7752), 1, + [20793] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7838), 1, sym_system_lib_string, - STATE(6835), 1, + STATE(6786), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7775), 2, + STATE(7752), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480437,30 +480863,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20383] = 11, - ACTIONS(7752), 1, + [20875] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7840), 1, sym_system_lib_string, - STATE(6837), 1, + STATE(6788), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7783), 2, + STATE(7760), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480508,101 +480934,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20465] = 11, - ACTIONS(7752), 1, + [20957] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, ACTIONS(7842), 1, sym_system_lib_string, - STATE(6839), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(7791), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7754), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [20547] = 11, - ACTIONS(7752), 1, - aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, - sym__string_literal, - ACTIONS(7764), 1, - sym__string_literal_kind, - ACTIONS(7844), 1, - sym_system_lib_string, - STATE(6841), 1, + STATE(6790), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7799), 2, + STATE(7768), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480650,30 +481005,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20629] = 11, - ACTIONS(7752), 1, + [21039] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7846), 1, + ACTIONS(7844), 1, sym_system_lib_string, - STATE(6843), 1, + STATE(6792), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7807), 2, + STATE(7776), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480721,30 +481076,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20711] = 11, - ACTIONS(7752), 1, + [21121] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7848), 1, + ACTIONS(7846), 1, sym_system_lib_string, - STATE(6845), 1, + STATE(6794), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7815), 2, + STATE(7784), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480792,30 +481147,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20793] = 11, - ACTIONS(7752), 1, + [21203] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7850), 1, + ACTIONS(7848), 1, sym_system_lib_string, - STATE(6847), 1, + STATE(6796), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7823), 2, + STATE(7792), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480863,30 +481218,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20875] = 11, - ACTIONS(7752), 1, + [21285] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7852), 1, + ACTIONS(7850), 1, sym_system_lib_string, - STATE(6849), 1, + STATE(6798), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7831), 2, + STATE(7800), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -480934,30 +481289,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [20957] = 11, - ACTIONS(7752), 1, + [21367] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7854), 1, + ACTIONS(7852), 1, sym_system_lib_string, - STATE(6851), 1, + STATE(6800), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7839), 2, + STATE(7808), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481005,30 +481360,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21039] = 11, - ACTIONS(7752), 1, + [21449] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7856), 1, + ACTIONS(7854), 1, sym_system_lib_string, - STATE(6853), 1, + STATE(6802), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7847), 2, + STATE(7816), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481076,30 +481431,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21121] = 11, - ACTIONS(7752), 1, + [21531] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7858), 1, + ACTIONS(7856), 1, sym_system_lib_string, - STATE(6855), 1, + STATE(6804), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7855), 2, + STATE(7824), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481147,30 +481502,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21203] = 11, - ACTIONS(7752), 1, + [21613] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7860), 1, + ACTIONS(7858), 1, sym_system_lib_string, - STATE(6857), 1, + STATE(6806), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7863), 2, + STATE(7832), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481218,30 +481573,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21285] = 11, - ACTIONS(7752), 1, + [21695] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7862), 1, + ACTIONS(7860), 1, sym_system_lib_string, - STATE(6859), 1, + STATE(6808), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7871), 2, + STATE(7840), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481289,30 +481644,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21367] = 11, - ACTIONS(7752), 1, + [21777] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7864), 1, + ACTIONS(7862), 1, sym_system_lib_string, - STATE(6861), 1, + STATE(6810), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7879), 2, + STATE(7848), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481360,30 +481715,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21449] = 11, - ACTIONS(7752), 1, + [21859] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7866), 1, + ACTIONS(7864), 1, sym_system_lib_string, - STATE(6863), 1, + STATE(6812), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7887), 2, + STATE(7856), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481431,30 +481786,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21531] = 11, - ACTIONS(7752), 1, + [21941] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7868), 1, + ACTIONS(7866), 1, sym_system_lib_string, - STATE(6865), 1, + STATE(6814), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7895), 2, + STATE(7864), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481502,30 +481857,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21613] = 11, - ACTIONS(7752), 1, + [22023] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7870), 1, + ACTIONS(7868), 1, sym_system_lib_string, - STATE(6867), 1, + STATE(6816), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7903), 2, + STATE(7872), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481573,30 +481928,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21695] = 11, - ACTIONS(7752), 1, + [22105] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7872), 1, + ACTIONS(7870), 1, sym_system_lib_string, - STATE(6869), 1, + STATE(6818), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7911), 2, + STATE(7880), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481644,30 +481999,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21777] = 11, - ACTIONS(7752), 1, + [22187] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, + ACTIONS(7716), 1, sym__string_literal, - ACTIONS(7764), 1, + ACTIONS(7718), 1, sym__string_literal_kind, - ACTIONS(7874), 1, + ACTIONS(7872), 1, sym_system_lib_string, - STATE(6789), 1, + STATE(6820), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(8010), 2, + STATE(7888), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7754), 47, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481715,101 +482070,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [21859] = 11, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(3277), 1, - sym_identifier, - STATE(3393), 1, - sym_sized_declarator, - STATE(6748), 1, - sym__declaration_assignment, - STATE(6749), 1, - sym__declaration_pointer_association, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5951), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [21941] = 11, - ACTIONS(748), 1, + [22269] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - STATE(5077), 1, + ACTIONS(7716), 1, + sym__string_literal, + ACTIONS(7718), 1, + sym__string_literal_kind, + ACTIONS(7874), 1, + sym_system_lib_string, + STATE(6822), 1, sym_identifier, - STATE(5161), 1, - sym_sized_declarator, - STATE(5334), 1, - sym__declaration_assignment, - STATE(5335), 1, - sym__declaration_pointer_association, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5176), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(93), 47, + STATE(7896), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481857,30 +482141,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22023] = 11, - ACTIONS(5454), 1, + [22351] = 11, + ACTIONS(7706), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(7710), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(7712), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(7714), 1, aux_sym_select_case_statement_token1, - ACTIONS(7012), 1, - aux_sym_module_procedure_statement_token1, - STATE(4786), 1, - sym__end_of_statement, - STATE(6084), 1, + ACTIONS(7716), 1, + sym__string_literal, + ACTIONS(7718), 1, + sym__string_literal_kind, + ACTIONS(7876), 1, + sym_system_lib_string, + STATE(6824), 1, sym_identifier, - STATE(6371), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7014), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + STATE(7904), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7708), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -481928,7 +482212,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22105] = 11, + [22433] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -481937,18 +482221,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7060), 1, + ACTIONS(7064), 1, aux_sym_subroutine_statement_token1, - STATE(974), 1, + STATE(4867), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6270), 1, + STATE(6590), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7062), 2, + ACTIONS(7066), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -481999,7 +482283,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22187] = 11, + [22515] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482008,18 +482292,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7024), 1, - aux_sym_subroutine_statement_token1, - STATE(4609), 1, + STATE(870), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6385), 1, + STATE(6321), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7026), 2, + ACTIONS(7878), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -482070,7 +482352,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22269] = 11, + [22594] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482079,18 +482361,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7028), 1, - aux_sym_function_statement_token1, - STATE(4611), 1, + STATE(951), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6388), 1, + STATE(6644), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7030), 2, + ACTIONS(6966), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -482141,7 +482421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22351] = 11, + [22673] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482150,18 +482430,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(6936), 1, - aux_sym_program_statement_token1, - STATE(888), 1, + STATE(955), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6881), 1, + STATE(6652), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6938), 2, + ACTIONS(7880), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -482212,78 +482490,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22433] = 11, - ACTIONS(7752), 1, - aux_sym_end_program_statement_token1, - ACTIONS(7756), 1, + [22752] = 30, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7888), 1, + aux_sym_preproc_if_token2, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7900), 1, + sym_preproc_comment, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7758), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(7760), 1, - aux_sym_select_case_statement_token1, - ACTIONS(7762), 1, - sym__string_literal, - ACTIONS(7764), 1, - sym__string_literal_kind, - ACTIONS(7876), 1, - sym_system_lib_string, - STATE(6524), 1, - sym_identifier, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(8391), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7754), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8364), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [22515] = 10, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3808), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [22871] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482292,16 +482588,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1398), 1, + STATE(4909), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6423), 1, + STATE(6678), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7878), 2, + ACTIONS(7078), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -482352,7 +482648,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22594] = 10, + [22950] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482361,16 +482657,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1390), 1, + STATE(958), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6417), 1, + STATE(6654), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7784), 2, + ACTIONS(7924), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -482421,71 +482717,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22673] = 5, - ACTIONS(7880), 1, - anon_sym_COMMA, - STATE(3628), 1, - aux_sym_common_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7882), 3, - sym__external_end_of_statement, - anon_sym_SLASH, - anon_sym_SEMI, - ACTIONS(7884), 51, - aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [22742] = 10, + [23029] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482494,11 +482726,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1120), 1, + STATE(1459), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6910), 1, + STATE(6675), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, @@ -482554,7 +482786,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22821] = 10, + [23108] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482563,16 +482795,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(582), 1, + STATE(732), 1, sym__end_of_statement, - STATE(6604), 1, + STATE(7056), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7886), 2, + ACTIONS(7926), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -482623,117 +482855,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [22900] = 30, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7894), 1, - aux_sym_preproc_if_token2, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7906), 1, - sym_preproc_comment, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, + [23187] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(8309), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3777), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [23019] = 10, - ACTIONS(5454), 1, + ACTIONS(7928), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7930), 53, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(585), 1, - sym__end_of_statement, - STATE(6631), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7930), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + aux_sym_assignment_token1, + aux_sym_operator_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -482749,8 +482882,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -482767,6 +482902,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -482781,7 +482917,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23098] = 10, + [23252] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482790,16 +482926,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1127), 1, + STATE(1150), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6965), 1, + STATE(6700), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7932), 2, + ACTIONS(7744), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -482850,7 +482986,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23177] = 10, + [23331] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482859,16 +482995,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4885), 1, + STATE(1140), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6666), 1, + STATE(6715), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7078), 2, + ACTIONS(7932), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -482919,76 +483055,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23256] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [23410] = 30, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(5010), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6287), 1, - sym__name, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(7934), 1, + aux_sym_preproc_if_token2, + ACTIONS(7936), 1, + sym_preproc_comment, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6958), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8094), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [23335] = 10, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3844), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [23529] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -482997,16 +483153,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4957), 1, + STATE(4393), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6668), 1, + STATE(6746), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7082), 2, + ACTIONS(6970), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483057,7 +483213,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23414] = 10, + [23608] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483066,16 +483222,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4964), 1, + STATE(4404), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6670), 1, + STATE(6764), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7934), 2, + ACTIONS(7938), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483126,7 +483282,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23493] = 10, + [23687] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483135,16 +483291,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4980), 1, + STATE(686), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6263), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6672), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7936), 2, + ACTIONS(7940), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483195,7 +483351,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23572] = 10, + [23766] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483204,16 +483360,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5059), 1, + STATE(4812), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6765), 1, + STATE(6787), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7938), 2, + ACTIONS(6974), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483264,7 +483420,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23651] = 10, + [23845] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483273,16 +483429,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4988), 1, + STATE(4814), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6513), 1, + STATE(6793), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7054), 2, + ACTIONS(6978), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483333,7 +483489,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23730] = 10, + [23924] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483342,16 +483498,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(888), 1, + STATE(4821), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6881), 1, + STATE(6801), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6938), 2, + ACTIONS(7942), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483402,7 +483558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23809] = 10, + [24003] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483411,16 +483567,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(753), 1, + STATE(848), 1, sym__end_of_statement, - STATE(6716), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6891), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7940), 2, + ACTIONS(7082), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483471,7 +483627,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23888] = 10, + [24082] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483480,16 +483636,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1059), 1, + STATE(4826), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6826), 1, + STATE(6805), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7664), 2, + ACTIONS(7944), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483540,7 +483696,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [23967] = 10, + [24161] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483549,16 +483705,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(3075), 1, + STATE(567), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6303), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6693), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7732), 2, + ACTIONS(7946), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483609,7 +483765,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24046] = 10, + [24240] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483618,16 +483774,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(3089), 1, + STATE(544), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6306), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6698), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7942), 2, + ACTIONS(7948), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483678,96 +483834,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24125] = 30, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(7944), 1, - aux_sym_preproc_if_token2, - ACTIONS(7946), 1, - sym_preproc_comment, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(8230), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3750), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [24244] = 10, + [24319] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483776,16 +483843,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5016), 1, + STATE(1629), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6298), 1, + STATE(6859), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6962), 2, + ACTIONS(7748), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483836,7 +483903,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24323] = 10, + [24398] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483845,16 +483912,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(600), 1, + STATE(1626), 1, sym__end_of_statement, - STATE(6593), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6867), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7948), 2, + ACTIONS(7950), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -483905,76 +483972,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24402] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [24477] = 30, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(5065), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6812), 1, - sym__name, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(7952), 1, + aux_sym_preproc_if_token2, + ACTIONS(7954), 1, + sym_preproc_comment, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7950), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8248), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [24481] = 10, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3737), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [24596] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -483983,16 +484070,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(617), 1, + STATE(5024), 1, sym__end_of_statement, - STATE(6549), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6889), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7952), 2, + ACTIONS(6990), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484043,7 +484130,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24560] = 10, + [24675] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484052,16 +484139,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(2902), 1, + STATE(4782), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(7040), 1, + STATE(6906), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7954), 2, + ACTIONS(7956), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484112,7 +484199,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24639] = 10, + [24754] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484121,16 +484208,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4913), 1, + STATE(855), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6307), 1, + STATE(6941), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7956), 2, + ACTIONS(7086), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484181,7 +484268,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24718] = 10, + [24833] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484190,16 +484277,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4991), 1, + STATE(4903), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6516), 1, + STATE(6957), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7958), 2, + ACTIONS(6994), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484250,7 +484337,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24797] = 11, + [24912] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484259,19 +484346,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7960), 1, - anon_sym_COMMA, - ACTIONS(7962), 1, - anon_sym_LPAREN2, - ACTIONS(7964), 1, - anon_sym_COLON_COLON, - STATE(5898), 1, - sym__type_name, - STATE(6571), 1, + STATE(4905), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, + STATE(6960), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, + ACTIONS(6998), 2, + sym__external_end_of_statement, + anon_sym_SEMI, ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -484320,7 +484406,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24878] = 10, + [24991] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484329,16 +484415,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4915), 1, + STATE(4917), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6494), 1, + STATE(6967), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7046), 2, + ACTIONS(7958), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484389,7 +484475,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [24957] = 10, + [25070] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484398,16 +484484,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1567), 1, + STATE(688), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6327), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6727), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7736), 2, + ACTIONS(7960), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484458,7 +484544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25036] = 10, + [25149] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484467,16 +484553,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1576), 1, + STATE(4920), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6733), 1, + STATE(6974), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7966), 2, + ACTIONS(7962), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484527,7 +484613,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25115] = 10, + [25228] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484536,16 +484622,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4976), 1, + STATE(1027), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6341), 1, + STATE(7067), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7968), 2, + ACTIONS(6950), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484596,7 +484682,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25194] = 10, + [25307] = 4, + ACTIONS(7966), 1, + anon_sym_LPAREN2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7964), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7968), 53, + aux_sym_end_program_statement_token1, + aux_sym_assignment_token1, + aux_sym_operator_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [25374] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484605,16 +484754,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4456), 1, + STATE(1035), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(7037), 1, + STATE(6683), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6986), 2, + ACTIONS(6962), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484665,19 +484814,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25273] = 4, - ACTIONS(7972), 1, - anon_sym_LPAREN2, + [25453] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(1380), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(7036), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7970), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7974), 53, - aux_sym_end_program_statement_token1, - aux_sym_assignment_token1, - aux_sym_operator_token1, + ACTIONS(7752), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -484693,10 +484851,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -484713,7 +484869,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -484728,28 +484883,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25340] = 10, - ACTIONS(748), 1, + [25532] = 10, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5517), 1, + STATE(1391), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, - STATE(6220), 1, - sym__declaration_assignment, - STATE(6889), 1, - sym_sized_declarator, + STATE(7055), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7584), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(93), 47, + ACTIONS(7970), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -484797,7 +484952,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25419] = 10, + [25611] = 30, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(7972), 1, + aux_sym_preproc_if_token2, + ACTIONS(7974), 1, + sym_preproc_comment, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(7636), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3748), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [25730] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484806,16 +485050,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(839), 1, + STATE(4839), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6926), 1, + STATE(6258), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7976), 2, + ACTIONS(7002), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484866,7 +485110,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25498] = 10, + [25809] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484875,16 +485119,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(576), 1, + STATE(4861), 1, sym__end_of_statement, - STATE(6674), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6266), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7978), 2, + ACTIONS(7976), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -484935,7 +485179,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25577] = 10, + [25888] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -484944,16 +485188,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4482), 1, + STATE(4862), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(7053), 1, + STATE(6699), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7980), 2, + ACTIONS(7978), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485004,7 +485248,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25656] = 10, + [25967] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485013,16 +485257,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4994), 1, + STATE(4616), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6518), 1, + STATE(6281), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7982), 2, + ACTIONS(7010), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485073,7 +485317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25735] = 10, + [26046] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485082,16 +485326,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1046), 1, + STATE(4618), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6651), 1, + STATE(6285), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6966), 2, + ACTIONS(7014), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485142,7 +485386,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25814] = 10, + [26125] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485151,16 +485395,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4887), 1, + STATE(4622), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6634), 1, + STATE(6287), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6950), 2, + ACTIONS(7980), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485211,7 +485455,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25893] = 10, + [26204] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485220,16 +485464,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(883), 1, + STATE(898), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6796), 1, + STATE(6273), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6942), 2, + ACTIONS(7982), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485280,7 +485524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [25972] = 10, + [26283] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485289,16 +485533,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4967), 1, + STATE(4625), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6258), 1, + STATE(6289), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6990), 2, + ACTIONS(7984), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485349,7 +485593,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26051] = 10, + [26362] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485358,16 +485602,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(750), 1, + STATE(642), 1, sym__end_of_statement, - STATE(6715), 1, + STATE(6319), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7984), 2, + ACTIONS(7986), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485418,7 +485662,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26130] = 10, + [26441] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485427,16 +485671,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4970), 1, + STATE(878), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6262), 1, + STATE(6280), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6994), 2, + ACTIONS(7988), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485487,7 +485731,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26209] = 10, + [26520] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485496,16 +485740,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5050), 1, + STATE(1516), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6266), 1, + STATE(6316), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7986), 2, + ACTIONS(7756), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485556,7 +485800,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26288] = 10, + [26599] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485565,16 +485809,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(720), 1, + STATE(1553), 1, sym__end_of_statement, - STATE(6767), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6322), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7988), 2, + ACTIONS(7990), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485625,76 +485869,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26367] = 10, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + [26678] = 30, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(5493), 1, - sym_identifier, - STATE(5953), 1, - sym__declaration_assignment, - STATE(6889), 1, - sym_sized_declarator, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(7992), 1, + aux_sym_preproc_if_token2, + ACTIONS(7994), 1, + sym_preproc_comment, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7584), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(93), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8040), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [26446] = 10, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3760), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [26797] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485703,16 +485967,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5056), 1, + STATE(4650), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6268), 1, + STATE(6333), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7990), 2, + ACTIONS(7022), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485763,7 +486027,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26525] = 10, + [26876] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485772,16 +486036,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1468), 1, + STATE(4662), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6708), 1, + STATE(6339), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7748), 2, + ACTIONS(7996), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485832,7 +486096,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26604] = 10, + [26955] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485841,16 +486105,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(850), 1, + STATE(1059), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6601), 1, + STATE(7064), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7992), 2, + ACTIONS(7668), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485901,7 +486165,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26683] = 10, + [27034] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485910,16 +486174,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(730), 1, + STATE(1057), 1, sym__end_of_statement, - STATE(6769), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(7035), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7994), 2, + ACTIONS(7660), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -485970,7 +486234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26762] = 10, + [27113] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -485979,16 +486243,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4665), 1, + STATE(4465), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6439), 1, + STATE(6353), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7996), 2, + ACTIONS(7026), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -486039,7 +486303,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26841] = 10, + [27192] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -486048,12 +486312,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(736), 1, + STATE(1366), 1, sym__end_of_statement, - STATE(6770), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6345), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -486108,96 +486372,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [26920] = 30, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8000), 1, - aux_sym_preproc_if_token2, - ACTIONS(8002), 1, - sym_preproc_comment, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(7622), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3737), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [27039] = 10, + [27271] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -486206,16 +486381,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1026), 1, + STATE(4459), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(7025), 1, + STATE(6356), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8004), 2, + ACTIONS(7030), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -486266,7 +486441,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [27118] = 10, + [27350] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -486275,16 +486450,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1642), 1, + STATE(906), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6293), 1, + STATE(6382), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7744), 2, + ACTIONS(8000), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -486335,7 +486510,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [27197] = 10, + [27429] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -486344,16 +486519,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1165), 1, + STATE(4382), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6539), 1, + STATE(6360), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7706), 2, + ACTIONS(8002), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -486404,28 +486579,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [27276] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(2777), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6995), 1, - sym__name, + [27508] = 6, + ACTIONS(7720), 1, + anon_sym_LPAREN2, + STATE(3938), 1, + sym__argument_list, + STATE(3972), 1, + sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7740), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(6646), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(5594), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -486441,8 +486609,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -486459,6 +486629,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -486473,7 +486644,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [27355] = 10, + [27579] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -486482,16 +486653,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1618), 1, + STATE(4478), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6302), 1, + STATE(6362), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8006), 2, + ACTIONS(8004), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -486542,7 +486713,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [27434] = 10, + [27658] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -486551,16 +486722,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1183), 1, + STATE(1052), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6545), 1, + STATE(6493), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8008), 2, + ACTIONS(8006), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -486611,28 +486782,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [27513] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(843), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6940), 1, - sym__name, + [27737] = 5, + ACTIONS(8008), 1, + anon_sym_COMMA, + STATE(3682), 1, + aux_sym_common_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8010), 2, + ACTIONS(8010), 3, sym__external_end_of_statement, + anon_sym_SLASH, anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(8012), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -486648,8 +486811,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -486666,6 +486831,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -486680,160 +486846,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [27592] = 30, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8012), 1, - aux_sym_preproc_if_token2, - ACTIONS(8014), 1, - sym_preproc_comment, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(7761), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3775), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [27711] = 5, - ACTIONS(8020), 1, - anon_sym__, - STATE(3872), 1, - sym__kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8018), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8016), 45, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_GT_GT_GT, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [27780] = 10, + [27806] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -486842,16 +486855,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(738), 1, + STATE(1214), 1, sym__end_of_statement, - STATE(6773), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6386), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8022), 2, + ACTIONS(7760), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -486902,7 +486915,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [27859] = 10, + [27885] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -486911,16 +486924,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(2837), 1, + STATE(1222), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6580), 1, + STATE(6392), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7768), 2, + ACTIONS(8014), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -486971,20 +486984,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [27938] = 5, - ACTIONS(7880), 1, - anon_sym_COMMA, - STATE(3687), 1, - aux_sym_common_statement_repeat1, + [27964] = 30, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8016), 1, + aux_sym_preproc_if_token2, + ACTIONS(8018), 1, + sym_preproc_comment, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8024), 3, - sym__external_end_of_statement, - anon_sym_SLASH, - anon_sym_SEMI, - ACTIONS(8026), 51, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8250), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3780), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [28083] = 11, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8020), 1, + anon_sym_COMMA, + ACTIONS(8022), 1, + anon_sym_LPAREN2, + ACTIONS(8024), 1, + anon_sym_COLON_COLON, + STATE(5911), 1, + sym__type_name, + STATE(6375), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -487000,10 +487111,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -487020,7 +487129,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -487035,7 +487143,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28007] = 10, + [28164] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487044,16 +487152,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1053), 1, + STATE(5002), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6754), 1, + STATE(6406), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8028), 2, + ACTIONS(7034), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487104,7 +487212,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28086] = 10, + [28243] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487113,16 +487221,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4872), 1, + STATE(5011), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6309), 1, + STATE(6412), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7002), 2, + ACTIONS(8026), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487173,20 +487281,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28165] = 5, - ACTIONS(8030), 1, - anon_sym_COMMA, - ACTIONS(8035), 1, - anon_sym_COLON_COLON, - STATE(3631), 1, - aux_sym_procedure_statement_repeat1, + [28322] = 10, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(5500), 1, + sym_identifier, + STATE(6004), 1, + sym__declaration_assignment, + STATE(6951), 1, + sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8033), 53, - aux_sym_end_program_statement_token1, - aux_sym_assignment_token1, - aux_sym_operator_token1, + STATE(7538), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -487202,10 +487318,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [28401] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(4913), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6422), 1, + sym__name, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7042), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -487222,7 +487405,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [28480] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, + STATE(4937), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6426), 1, + sym__name, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7046), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -487237,7 +487488,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28234] = 10, + [28559] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487246,16 +487497,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(562), 1, + STATE(4818), 1, sym__end_of_statement, - STATE(6718), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6429), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8037), 2, + ACTIONS(8028), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487306,7 +487557,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28313] = 10, + [28638] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487315,16 +487566,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(554), 1, + STATE(738), 1, sym__end_of_statement, - STATE(6351), 1, + STATE(6551), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8039), 2, + ACTIONS(8030), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487375,7 +487626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28392] = 10, + [28717] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487384,16 +487635,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4836), 1, + STATE(4510), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6761), 1, + STATE(6487), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6954), 2, + ACTIONS(7006), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487444,7 +487695,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28471] = 10, + [28796] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487453,16 +487704,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(980), 1, + STATE(4852), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6486), 1, + STATE(6431), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7086), 2, + ACTIONS(8032), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487513,7 +487764,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28550] = 10, + [28875] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487522,16 +487773,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4798), 1, + STATE(566), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6602), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6314), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8041), 2, + ACTIONS(8034), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487582,7 +487833,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28629] = 10, + [28954] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487591,16 +487842,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4495), 1, + STATE(561), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6603), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6654), 1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8036), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [29033] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(1155), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6456), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6998), 2, + ACTIONS(7764), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487651,7 +487971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28708] = 10, + [29112] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487660,16 +487980,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4489), 1, + STATE(1174), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6639), 1, + STATE(6461), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6974), 2, + ACTIONS(8038), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487720,7 +488040,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28787] = 10, + [29191] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487729,16 +488049,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4838), 1, + STATE(4513), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6324), 1, + STATE(6693), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7006), 2, + ACTIONS(7018), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487789,7 +488109,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28866] = 10, + [29270] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487798,16 +488118,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4909), 1, + STATE(4816), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6427), 1, + STATE(6481), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8043), 2, + ACTIONS(7050), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487858,7 +488178,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [28945] = 10, + [29349] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487867,16 +488187,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1067), 1, + STATE(4820), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6891), 1, + STATE(6485), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8045), 2, + ACTIONS(7054), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487927,7 +488247,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29024] = 10, + [29428] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -487936,16 +488256,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(685), 1, + STATE(1034), 1, sym__end_of_statement, - STATE(6466), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6578), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8047), 2, + ACTIONS(7074), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -487996,7 +488316,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29103] = 10, + [29507] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488005,16 +488325,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4840), 1, + STATE(4848), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6327), 1, + STATE(6488), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7010), 2, + ACTIONS(8040), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488065,7 +488385,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29182] = 10, + [29586] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488074,16 +488394,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(969), 1, + ACTIONS(8044), 1, + aux_sym__inline_if_statement_token1, + STATE(760), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(7022), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6526), 1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8042), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 46, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [29667] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(4857), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6490), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8049), 2, + ACTIONS(8046), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488134,7 +488524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29261] = 10, + [29746] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488143,16 +488533,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(591), 1, + STATE(652), 1, sym__end_of_statement, - STATE(6475), 1, + STATE(7031), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8051), 2, + ACTIONS(8048), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488203,7 +488593,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29340] = 10, + [29825] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488212,16 +488602,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4842), 1, + STATE(667), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(7051), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6330), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8053), 2, + ACTIONS(8050), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488272,96 +488662,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29419] = 30, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + [29904] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8055), 1, - aux_sym_preproc_if_token2, - ACTIONS(8057), 1, - sym_preproc_comment, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(2772), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6512), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(7926), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7768), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3839), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [29538] = 10, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [29983] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488370,16 +488740,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4404), 1, + STATE(545), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6887), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6450), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7038), 2, + ACTIONS(8052), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488430,20 +488800,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29617] = 5, - ACTIONS(7880), 1, - anon_sym_COMMA, - STATE(3687), 1, - aux_sym_common_statement_repeat1, + [30062] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(4669), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6537), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7643), 3, + ACTIONS(7058), 2, sym__external_end_of_statement, - anon_sym_SLASH, anon_sym_SEMI, - ACTIONS(8059), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -488459,10 +488837,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -488479,7 +488855,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -488494,7 +488869,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29686] = 10, + [30141] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488503,16 +488878,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(904), 1, + STATE(4726), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6600), 1, + STATE(6541), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7694), 2, + ACTIONS(7062), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488563,7 +488938,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29765] = 10, + [30220] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488572,16 +488947,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4406), 1, + STATE(4677), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6453), 1, + STATE(6545), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7042), 2, + ACTIONS(8054), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488632,7 +489007,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29844] = 10, + [30299] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488641,16 +489016,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5033), 1, + STATE(1038), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6731), 1, + STATE(6827), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6970), 2, + ACTIONS(8056), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488701,7 +489076,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [29923] = 10, + [30378] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488710,16 +489085,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(707), 1, + STATE(4742), 1, sym__end_of_statement, - STATE(6784), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6547), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8061), 2, + ACTIONS(8058), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488770,7 +489145,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30002] = 10, + [30457] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488779,16 +489154,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(2860), 1, + STATE(668), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(7060), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6640), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8063), 2, + ACTIONS(8060), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488839,7 +489214,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30081] = 10, + [30536] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488848,16 +489223,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(555), 1, + STATE(851), 1, sym__end_of_statement, - STATE(6355), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6939), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8065), 2, + ACTIONS(7038), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488908,7 +489283,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30160] = 10, + [30615] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488917,16 +489292,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4411), 1, + STATE(1510), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6456), 1, + STATE(6570), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8067), 2, + ACTIONS(7772), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -488977,7 +489352,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30239] = 10, + [30694] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -488986,16 +489361,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1045), 1, + STATE(1518), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6305), 1, + STATE(6575), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7702), 2, + ACTIONS(8062), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489046,7 +489421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30318] = 10, + [30773] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489055,16 +489430,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(708), 1, + STATE(4867), 1, sym__end_of_statement, - STATE(6792), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6590), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8069), 2, + ACTIONS(7066), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489115,7 +489490,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30397] = 10, + [30852] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489124,16 +489499,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5011), 1, + STATE(4872), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6565), 1, + STATE(6595), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7058), 2, + ACTIONS(7070), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489184,7 +489559,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30476] = 10, + [30931] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489193,16 +489568,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4519), 1, + STATE(4907), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6963), 1, + STATE(6598), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8071), 2, + ACTIONS(8064), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489253,7 +489628,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30555] = 10, + [31010] = 30, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8066), 1, + aux_sym_preproc_if_token2, + ACTIONS(8068), 1, + sym_preproc_comment, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(7608), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3829), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [31129] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489262,16 +489726,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(593), 1, + STATE(4911), 1, sym__end_of_statement, - STATE(6493), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6600), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8073), 2, + ACTIONS(8070), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489322,7 +489786,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30634] = 10, + [31208] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489331,16 +489795,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4655), 1, + STATE(2830), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6435), 1, + STATE(6795), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7034), 2, + ACTIONS(7736), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489391,7 +489855,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30713] = 10, + [31287] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489400,16 +489864,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4415), 1, + STATE(2857), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6458), 1, + STATE(6391), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8075), 2, + ACTIONS(8072), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489460,7 +489924,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30792] = 10, + [31366] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489469,16 +489933,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(902), 1, + STATE(3086), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(7041), 1, + STATE(6621), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8077), 2, + ACTIONS(7778), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489529,7 +489993,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30871] = 10, + [31445] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489538,16 +490002,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(594), 1, + STATE(3080), 1, sym__end_of_statement, - STATE(6509), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6626), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8079), 2, + ACTIONS(8074), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489598,7 +490062,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [30950] = 10, + [31524] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489607,16 +490071,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5013), 1, + STATE(615), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6463), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6569), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7066), 2, + ACTIONS(8076), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489667,7 +490131,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31029] = 10, + [31603] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489676,16 +490140,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1057), 1, + STATE(1440), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6809), 1, + STATE(6657), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7656), 2, + ACTIONS(7782), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489736,7 +490200,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31108] = 10, + [31682] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489745,16 +490209,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(595), 1, + STATE(1523), 1, sym__end_of_statement, - STATE(6525), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6663), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8081), 2, + ACTIONS(8078), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489805,28 +490269,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31187] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(974), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6270), 1, - sym__name, + [31761] = 5, + ACTIONS(8080), 1, + anon_sym_COMMA, + STATE(3675), 1, + aux_sym_common_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7062), 2, + ACTIONS(8083), 3, sym__external_end_of_statement, + anon_sym_SLASH, anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(8085), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -489842,8 +490298,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -489860,6 +490318,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -489874,7 +490333,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31266] = 10, + [31830] = 30, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8087), 1, + aux_sym_preproc_if_token2, + ACTIONS(8089), 1, + sym_preproc_comment, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(7863), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3770), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [31949] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -489883,16 +490431,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(676), 1, + STATE(4484), 1, sym__end_of_statement, - STATE(6647), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6900), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8083), 2, + ACTIONS(8091), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -489943,28 +490491,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31345] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(5020), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6572), 1, - sym__name, + [32028] = 5, + ACTIONS(8008), 1, + anon_sym_COMMA, + STATE(3684), 1, + aux_sym_common_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8085), 2, + ACTIONS(8093), 3, sym__external_end_of_statement, + anon_sym_SLASH, anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(8095), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -489980,8 +490520,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -489998,6 +490540,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -490012,7 +490555,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31424] = 10, + [32097] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490021,16 +490564,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1242), 1, + STATE(4390), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6478), 1, + STATE(6252), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7802), 2, + ACTIONS(8097), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490081,7 +490624,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31503] = 10, + [32176] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490090,16 +490633,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5023), 1, + STATE(577), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6556), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6574), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8087), 2, + ACTIONS(8099), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490150,7 +490693,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31582] = 10, + [32255] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490159,16 +490702,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1329), 1, + STATE(621), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6559), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6484), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8089), 2, + ACTIONS(8101), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490219,28 +490762,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31661] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(547), 1, - sym__end_of_statement, - STATE(6317), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, + [32334] = 5, + ACTIONS(8008), 1, + anon_sym_COMMA, + STATE(3675), 1, + aux_sym_common_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8091), 2, + ACTIONS(7643), 3, sym__external_end_of_statement, + anon_sym_SLASH, anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(8103), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -490256,8 +490791,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -490274,6 +490811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -490288,7 +490826,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31740] = 10, + [32403] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490297,16 +490835,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1359), 1, + STATE(4935), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6356), 1, + STATE(6646), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7796), 2, + ACTIONS(7090), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490357,28 +490895,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31819] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(4930), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6500), 1, - sym__name, + [32482] = 5, + ACTIONS(8008), 1, + anon_sym_COMMA, + STATE(3675), 1, + aux_sym_common_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8093), 2, + ACTIONS(8105), 3, sym__external_end_of_statement, + anon_sym_SLASH, anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(8107), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -490394,8 +490924,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -490412,6 +490944,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -490426,96 +490959,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [31898] = 30, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8095), 1, - aux_sym_preproc_if_token2, - ACTIONS(8097), 1, - sym_preproc_comment, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(8188), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3778), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [32017] = 10, + [32551] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490524,16 +490968,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(548), 1, + STATE(4885), 1, sym__end_of_statement, - STATE(6322), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6717), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8099), 2, + ACTIONS(8109), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490584,76 +491028,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32096] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(4515), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6928), 1, - sym__name, + [32630] = 5, + ACTIONS(8115), 1, + anon_sym__, + STATE(3886), 1, + sym__kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8101), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(8113), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8111), 45, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [32175] = 10, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + anon_sym_GT_GT_GT, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [32699] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490662,16 +491101,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(649), 1, + STATE(622), 1, sym__end_of_statement, - STATE(7021), 1, + STATE(6723), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8103), 2, + ACTIONS(8117), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490722,7 +491161,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32254] = 10, + [32778] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490731,16 +491170,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(692), 1, + STATE(599), 1, sym__end_of_statement, - STATE(6482), 1, + STATE(6731), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8105), 2, + ACTIONS(8119), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490791,7 +491230,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32333] = 10, + [32857] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490800,16 +491239,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1070), 1, + STATE(600), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6733), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6892), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8107), 2, + ACTIONS(8121), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490860,7 +491299,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32412] = 10, + [32936] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490869,16 +491308,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1364), 1, + STATE(602), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6736), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6361), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8109), 2, + ACTIONS(8123), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490929,7 +491368,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32491] = 10, + [33015] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -490938,16 +491377,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(580), 1, + STATE(595), 1, sym__end_of_statement, - STATE(7052), 1, + STATE(6756), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8111), 2, + ACTIONS(8125), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -490998,7 +491437,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32570] = 10, + [33094] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491007,16 +491446,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1081), 1, + STATE(601), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6758), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6813), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6978), 2, + ACTIONS(8127), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491067,71 +491506,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32649] = 5, - ACTIONS(8113), 1, - anon_sym_COMMA, - STATE(3687), 1, - aux_sym_common_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8116), 3, - sym__external_end_of_statement, - anon_sym_SLASH, - anon_sym_SEMI, - ACTIONS(8118), 51, - aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [32718] = 10, + [33173] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491140,16 +491515,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(2762), 1, + STATE(1055), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6596), 1, + STATE(6831), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7714), 2, + ACTIONS(8129), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491200,7 +491575,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32797] = 10, + [33252] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491209,16 +491584,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(2726), 1, + STATE(1067), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6602), 1, + STATE(6848), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8120), 2, + ACTIONS(7672), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491269,7 +491644,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32876] = 10, + [33331] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491278,16 +491653,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(742), 1, + STATE(942), 1, sym__end_of_statement, - STATE(6265), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6862), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8122), 2, + ACTIONS(7694), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491338,89 +491713,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [32955] = 10, - ACTIONS(5454), 1, + [33410] = 10, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(1083), 1, - sym__end_of_statement, - STATE(6084), 1, + STATE(5518), 1, sym_identifier, - STATE(6820), 1, - sym__name, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6982), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [33034] = 5, - ACTIONS(7880), 1, - anon_sym_COMMA, - STATE(3649), 1, - aux_sym_common_statement_repeat1, + STATE(6156), 1, + sym__declaration_assignment, + STATE(6951), 1, + sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8124), 3, - sym__external_end_of_statement, - anon_sym_SLASH, - anon_sym_SEMI, - ACTIONS(8126), 51, - aux_sym_end_program_statement_token1, + STATE(7538), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -491436,10 +491750,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -491456,7 +491768,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -491471,7 +491782,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33103] = 10, + [33489] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491480,16 +491791,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(875), 1, + STATE(1080), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6413), 1, + STATE(6878), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7686), 2, + ACTIONS(8131), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491540,7 +491851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33182] = 10, + [33568] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491549,16 +491860,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1050), 1, + STATE(1017), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6868), 1, + STATE(7010), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7698), 2, + ACTIONS(8133), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491609,7 +491920,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33261] = 10, + [33647] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491618,16 +491929,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1087), 1, + STATE(1083), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6828), 1, + STATE(6881), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8128), 2, + ACTIONS(8135), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491678,7 +491989,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33340] = 10, + [33726] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491687,16 +491998,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(966), 1, + STATE(587), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6698), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6299), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8130), 2, + ACTIONS(8137), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491747,7 +492058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33419] = 10, + [33805] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491756,16 +492067,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4714), 1, + STATE(5046), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6616), 1, + STATE(7048), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7070), 2, + ACTIONS(6938), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491816,7 +492127,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33498] = 10, + [33884] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491825,16 +492136,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1090), 1, + STATE(5048), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6832), 1, + STATE(6253), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8132), 2, + ACTIONS(6942), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -491868,77 +492179,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_keyword_statement_token2, aux_sym_keyword_statement_token3, aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [33577] = 11, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8136), 1, - aux_sym__inline_if_statement_token1, - STATE(758), 1, - sym__end_of_statement, - STATE(6903), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8134), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 46, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, aux_sym_block_construct_token1, @@ -491955,7 +492196,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33658] = 10, + [33963] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -491964,16 +492205,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(647), 1, + STATE(4811), 1, sym__end_of_statement, - STATE(6852), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6262), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8138), 2, + ACTIONS(8139), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -492024,28 +492265,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33737] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(4663), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6619), 1, - sym__name, + [34042] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7074), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(8141), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(8143), 53, + aux_sym_end_program_statement_token1, + aux_sym_assignment_token1, + aux_sym_operator_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -492061,8 +492292,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -492079,6 +492312,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -492093,18 +492327,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33816] = 3, + [34107] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(4947), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6265), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8140), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(8142), 53, - aux_sym_end_program_statement_token1, - aux_sym_assignment_token1, - aux_sym_operator_token1, + ACTIONS(8145), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -492120,10 +492364,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -492140,7 +492382,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -492155,7 +492396,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33881] = 10, + [34186] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -492164,16 +492405,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4689), 1, + STATE(571), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6755), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6622), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8144), 2, + ACTIONS(8147), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -492224,96 +492465,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [33960] = 30, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8146), 1, - aux_sym_preproc_if_token2, - ACTIONS(8148), 1, - sym_preproc_comment, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(8377), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3796), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [34079] = 10, + [34265] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -492322,16 +492474,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4706), 1, + STATE(1031), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6624), 1, + STATE(6809), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8150), 2, + ACTIONS(6946), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -492382,7 +492534,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34158] = 10, + [34344] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -492391,16 +492543,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(885), 1, + STATE(943), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6810), 1, + STATE(6478), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6946), 2, + ACTIONS(8149), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -492451,96 +492603,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34237] = 30, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8152), 1, - aux_sym_preproc_if_token2, - ACTIONS(8154), 1, - sym_preproc_comment, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(7486), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3817), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [34356] = 11, + [34423] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -492549,19 +492612,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(7960), 1, - anon_sym_COMMA, - ACTIONS(7964), 1, - anon_sym_COLON_COLON, - ACTIONS(8156), 1, - anon_sym_LPAREN2, - STATE(5898), 1, - sym__type_name, - STATE(6571), 1, + STATE(2787), 1, + sym__end_of_statement, + STATE(6091), 1, sym_identifier, + STATE(6403), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, + ACTIONS(7740), 2, + sym__external_end_of_statement, + anon_sym_SEMI, ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -492610,21 +492672,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34437] = 6, - ACTIONS(7716), 1, - anon_sym_LPAREN2, - STATE(3924), 1, - sym_argument_list, - STATE(3961), 1, - sym__argument_list, + [34502] = 10, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(2818), 1, + sym__end_of_statement, + STATE(6091), 1, + sym_identifier, + STATE(6465), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6646), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(5600), 51, - aux_sym_end_program_statement_token1, + ACTIONS(8151), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -492640,10 +492709,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -492660,7 +492727,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -492675,7 +492741,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34508] = 10, + [34581] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -492684,16 +492750,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1022), 1, + STATE(858), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(7018), 1, + STATE(7015), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8158), 2, + ACTIONS(8153), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -492744,7 +492810,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34587] = 10, + [34660] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -492753,16 +492819,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(713), 1, + STATE(710), 1, sym__end_of_statement, - STATE(6650), 1, + STATE(6482), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8160), 2, + ACTIONS(8155), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -492813,7 +492879,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34666] = 10, + [34739] = 30, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8157), 1, + aux_sym_preproc_if_token2, + ACTIONS(8159), 1, + sym_preproc_comment, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(7826), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3821), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [34858] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -492822,16 +492977,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1372), 1, + STATE(711), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6523), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6722), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8162), 2, + ACTIONS(8161), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -492882,7 +493037,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34745] = 10, + [34937] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -492891,16 +493046,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4786), 1, + STATE(714), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6524), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6371), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7014), 2, + ACTIONS(8163), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -492951,7 +493106,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34824] = 10, + [35016] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -492960,16 +493115,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(747), 1, + STATE(4896), 1, sym__end_of_statement, - STATE(6676), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6534), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8164), 2, + ACTIONS(6954), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493020,7 +493175,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34903] = 10, + [35095] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493029,16 +493184,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4794), 1, + STATE(860), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6377), 1, + STATE(7030), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8166), 2, + ACTIONS(7684), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493089,96 +493244,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [34982] = 30, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8168), 1, - aux_sym_preproc_if_token2, - ACTIONS(8170), 1, - sym_preproc_comment, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(8236), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3848), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [35101] = 10, + [35174] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493187,16 +493253,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(847), 1, + STATE(4929), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6582), 1, + STATE(6580), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8172), 2, + ACTIONS(8165), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493247,7 +493313,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35180] = 10, + [35253] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493256,16 +493322,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4609), 1, + STATE(1020), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6385), 1, + STATE(7018), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7026), 2, + ACTIONS(8167), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493316,7 +493382,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35259] = 10, + [35332] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493325,16 +493391,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4611), 1, + STATE(862), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6388), 1, + STATE(7034), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7030), 2, + ACTIONS(7698), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493385,7 +493451,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35338] = 10, + [35411] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493394,16 +493460,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4615), 1, + STATE(720), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6583), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6391), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8174), 2, + ACTIONS(8169), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493454,7 +493520,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35417] = 10, + [35490] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493463,16 +493529,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4986), 1, + STATE(722), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6593), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6511), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7050), 2, + ACTIONS(8171), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493523,7 +493589,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35496] = 10, + [35569] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493532,16 +493598,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(599), 1, + STATE(723), 1, sym__end_of_statement, - STATE(6590), 1, + STATE(6594), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8176), 2, + ACTIONS(8173), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493592,7 +493658,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35575] = 10, + [35648] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493601,16 +493667,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4618), 1, + STATE(724), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6596), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6393), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8178), 2, + ACTIONS(8175), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493661,7 +493727,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35654] = 10, + [35727] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493670,16 +493736,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1511), 1, + STATE(728), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6610), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6644), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7722), 2, + ACTIONS(8177), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493730,7 +493796,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35733] = 10, + [35806] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493739,16 +493805,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1040), 1, + STATE(755), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6616), 1, + sym__block_label, + STATE(7223), 1, sym_identifier, - STATE(6252), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7090), 2, + ACTIONS(8179), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493799,7 +493865,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35812] = 10, + [35885] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493808,16 +493874,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(653), 1, + STATE(949), 1, sym__end_of_statement, - STATE(7033), 1, - sym__block_label, - STATE(7439), 1, + STATE(6091), 1, sym_identifier, + STATE(6633), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8180), 2, + ACTIONS(6958), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -493868,7 +493934,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35891] = 10, + [35964] = 11, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -493877,18 +493943,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(1011), 1, - sym__end_of_statement, - STATE(6084), 1, + ACTIONS(8020), 1, + anon_sym_COMMA, + ACTIONS(8024), 1, + anon_sym_COLON_COLON, + ACTIONS(8181), 1, + anon_sym_LPAREN2, + STATE(5911), 1, + sym__type_name, + STATE(6375), 1, sym_identifier, - STATE(6297), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8182), 2, - sym__external_end_of_statement, - anon_sym_SEMI, ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -493937,28 +494004,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [35970] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(1524), 1, - sym__end_of_statement, - STATE(6084), 1, - sym_identifier, - STATE(6649), 1, - sym__name, + [36045] = 5, + ACTIONS(8183), 1, + anon_sym_COMMA, + ACTIONS(8188), 1, + anon_sym_COLON_COLON, + STATE(3729), 1, + aux_sym_procedure_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8184), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(8186), 53, + aux_sym_end_program_statement_token1, + aux_sym_assignment_token1, + aux_sym_operator_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -493974,8 +494033,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -493992,6 +494053,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -494006,7 +494068,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [36049] = 10, + [36114] = 10, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -494015,16 +494077,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(4845), 1, + STATE(2732), 1, sym__end_of_statement, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, - STATE(6332), 1, + STATE(6517), 1, sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8186), 2, + ACTIONS(8190), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -494075,72 +494137,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [36128] = 28, - ACTIONS(7910), 1, + [36193] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, sym_preproc_directive, - ACTIONS(8198), 1, + ACTIONS(8202), 1, aux_sym_end_program_statement_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8202), 1, - aux_sym_end_interface_statement_token1, ACTIONS(8206), 1, + aux_sym_end_interface_statement_token1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - STATE(948), 1, + STATE(1466), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -494148,7 +494210,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, + STATE(3754), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -494161,72 +494223,72 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [36242] = 28, - ACTIONS(7910), 1, + [36307] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8208), 1, + ACTIONS(8212), 1, aux_sym_end_program_statement_token1, - ACTIONS(8210), 1, + ACTIONS(8214), 1, aux_sym_end_interface_statement_token1, - STATE(3088), 1, + STATE(904), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -494234,7 +494296,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3812), 12, + STATE(3852), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -494247,7 +494309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [36356] = 9, + [36421] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -494256,16 +494318,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7333), 1, - sym__block_label, - STATE(7439), 1, + STATE(3285), 1, sym_identifier, + STATE(3394), 1, + sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8212), 2, - sym__external_end_of_statement, - anon_sym_SEMI, + STATE(6211), 2, + sym__variable_declarator, + sym_coarray_declarator, ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -494314,191 +494376,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [36432] = 28, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8214), 1, + [36497] = 9, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(8216), 1, - aux_sym_end_interface_statement_token1, - STATE(1005), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6876), 1, - sym_subroutine_statement, - STATE(6877), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8194), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5138), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3871), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [36546] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8218), 1, - aux_sym_preproc_if_token2, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(8213), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(4050), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [36662] = 4, - ACTIONS(5800), 1, - anon_sym_LPAREN2, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7217), 1, + sym__block_label, + STATE(7223), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5798), 3, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(5806), 51, - aux_sym_end_program_statement_token1, + ACTIONS(8216), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -494514,10 +494411,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -494534,7 +494429,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -494549,73 +494443,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [36728] = 29, - ACTIONS(7888), 1, + [36573] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8220), 1, + ACTIONS(8218), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7506), 3, + STATE(8320), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -494623,7 +494517,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3734), 12, + STATE(3738), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -494636,73 +494530,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [36844] = 29, - ACTIONS(7888), 1, + [36689] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, ACTIONS(8220), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7506), 3, + STATE(8328), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -494710,7 +494604,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3740), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -494723,379 +494617,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [36960] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7343), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8222), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [37036] = 28, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(8188), 1, + [36805] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8224), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8226), 1, - aux_sym_end_interface_statement_token1, - STATE(863), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6876), 1, - sym_subroutine_statement, - STATE(6877), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8194), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5138), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3809), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [37150] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7332), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8228), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [37226] = 28, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8198), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8202), 1, - aux_sym_end_interface_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - STATE(946), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6876), 1, - sym_subroutine_statement, - STATE(6877), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8194), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5138), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3730), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [37340] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8230), 1, + ACTIONS(8220), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8384), 3, + STATE(8328), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -495103,7 +494691,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3829), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -495116,140 +494704,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [37456] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(3277), 1, - sym_identifier, - STATE(3393), 1, - sym_sized_declarator, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5999), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [37532] = 29, - ACTIONS(7888), 1, + [36921] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8232), 1, + ACTIONS(8222), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8365), 3, + STATE(8378), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -495257,7 +494778,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3780), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -495270,72 +494791,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [37648] = 28, - ACTIONS(7910), 1, + [37037] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8234), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8236), 1, - aux_sym_end_interface_statement_token1, - STATE(1624), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8222), 1, + aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(8378), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -495343,86 +494865,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3803), 12, + STATE(3741), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, sym_subroutine, + sym_module_procedure, sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [37762] = 29, - ACTIONS(7888), 1, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [37153] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8238), 1, + ACTIONS(8224), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7571), 3, + STATE(8383), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -495430,7 +494952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3849), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -495443,73 +494965,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [37878] = 29, - ACTIONS(7888), 1, + [37269] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8240), 1, + ACTIONS(8226), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8253), 3, + STATE(7992), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -495517,7 +495039,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -495530,26 +495052,103 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [37994] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [37385] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7256), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8228), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8230), 1, + aux_sym_end_interface_statement_token1, + STATE(1640), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6833), 1, + sym_subroutine_statement, + STATE(6834), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8242), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(8198), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5141), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3868), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [37499] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7964), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7968), 53, + aux_sym_end_program_statement_token1, + aux_sym_assignment_token1, + aux_sym_operator_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -495565,8 +495164,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -495583,6 +495184,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -495597,73 +495199,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [38070] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, + [37563] = 28, ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8244), 1, - aux_sym_preproc_if_token2, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8228), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8230), 1, + aux_sym_end_interface_statement_token1, + STATE(1636), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8381), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -495671,86 +495272,149 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3786), 12, + STATE(3742), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, sym_subroutine, - sym_module_procedure, sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [38186] = 29, - ACTIONS(7888), 1, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [37677] = 5, + ACTIONS(8115), 1, + anon_sym__, + STATE(3860), 1, + sym__kind, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5476), 8, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(5478), 45, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + anon_sym_GT_GT_GT, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [37745] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8244), 1, + ACTIONS(8232), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8381), 3, + STATE(7673), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -495758,7 +495422,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3750), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -495771,73 +495435,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [38302] = 29, - ACTIONS(7888), 1, + [37861] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8246), 1, + ACTIONS(8234), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8289), 3, + STATE(7690), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -495845,7 +495509,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3854), 12, + STATE(3752), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -495858,134 +495522,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [38418] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8116), 4, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_SEMI, - ACTIONS(8118), 51, - aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [38482] = 29, - ACTIONS(7888), 1, + [37977] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8248), 1, + ACTIONS(8234), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8299), 3, + STATE(7690), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -495993,7 +495596,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -496006,133 +495609,72 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [38598] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(5798), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(5806), 51, - aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [38662] = 28, - ACTIONS(7910), 1, + [38093] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8250), 1, + ACTIONS(8236), 1, aux_sym_end_program_statement_token1, - ACTIONS(8252), 1, + ACTIONS(8238), 1, aux_sym_end_interface_statement_token1, - STATE(1412), 1, + STATE(1470), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -496140,7 +495682,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3813), 12, + STATE(3836), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -496153,73 +495695,73 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [38776] = 29, - ACTIONS(7888), 1, + [38207] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8254), 1, + ACTIONS(8240), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8008), 3, + STATE(7753), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -496227,7 +495769,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3770), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -496240,134 +495782,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [38892] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8256), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(8258), 53, - aux_sym_end_program_statement_token1, - aux_sym_assignment_token1, - aux_sym_operator_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [38956] = 29, - ACTIONS(7888), 1, + [38323] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, ACTIONS(8240), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8253), 3, + STATE(7753), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -496375,7 +495856,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3793), 12, + STATE(3753), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -496388,136 +495869,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [39072] = 5, - ACTIONS(8020), 1, - anon_sym__, - STATE(3881), 1, - sym__kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(5502), 8, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(5504), 45, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_GT_GT_GT, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [39140] = 29, - ACTIONS(7888), 1, + [38439] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8260), 1, + ACTIONS(8242), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8264), 3, + STATE(7761), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -496525,7 +495943,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -496538,72 +495956,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [39256] = 28, - ACTIONS(7910), 1, + [38555] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8262), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8264), 1, - aux_sym_end_interface_statement_token1, - STATE(1542), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8244), 1, + aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(7777), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -496611,85 +496030,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3841), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, sym_subroutine, + sym_module_procedure, sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [39370] = 28, - ACTIONS(7910), 1, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [38671] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8202), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8266), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8268), 1, aux_sym_end_interface_statement_token1, - STATE(1588), 1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + STATE(1514), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -496697,7 +496116,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -496710,133 +496129,73 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [39484] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8035), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(8033), 53, - aux_sym_end_program_statement_token1, - aux_sym_assignment_token1, - aux_sym_operator_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [39548] = 28, - ACTIONS(7910), 1, + [38785] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8266), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8268), 1, - aux_sym_end_interface_statement_token1, - STATE(1585), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8246), 1, + aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(8039), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -496844,20 +496203,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3762), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, sym_subroutine, + sym_module_procedure, sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [39662] = 9, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [38901] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -496866,14 +496225,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(3277), 1, + STATE(3285), 1, sym_identifier, - STATE(3393), 1, + STATE(3394), 1, sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3752), 2, + STATE(3818), 2, sym__variable_declarator, sym_coarray_declarator, ACTIONS(5456), 47, @@ -496924,17 +496283,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [39738] = 3, + [38977] = 9, + ACTIONS(7612), 1, + aux_sym_end_program_statement_token1, + ACTIONS(7616), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7618), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(7622), 1, + aux_sym_select_case_statement_token1, + STATE(3285), 1, + sym_identifier, + STATE(3394), 1, + sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7970), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7974), 53, - aux_sym_end_program_statement_token1, - aux_sym_assignment_token1, - aux_sym_operator_token1, + STATE(3678), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(7614), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -496950,10 +496318,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -496970,7 +496336,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -496985,73 +496350,160 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [39802] = 29, - ACTIONS(7888), 1, + [39053] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8248), 1, + aux_sym_preproc_if_token2, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8084), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3761), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [39169] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8270), 1, + ACTIONS(8250), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8197), 3, + STATE(8095), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497059,7 +496511,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3858), 12, + STATE(3763), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497072,73 +496524,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [39918] = 29, - ACTIONS(7888), 1, + [39285] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8272), 1, + ACTIONS(8250), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8182), 3, + STATE(8095), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497146,7 +496598,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3852), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497159,73 +496611,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [40034] = 29, - ACTIONS(7888), 1, + [39401] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8274), 1, + ACTIONS(8252), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8392), 3, + STATE(8119), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497233,7 +496685,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3807), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497246,73 +496698,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [40150] = 29, - ACTIONS(7888), 1, + [39517] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8276), 1, + ACTIONS(8252), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8017), 3, + STATE(8119), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497320,7 +496772,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3765), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497333,73 +496785,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [40266] = 29, - ACTIONS(7888), 1, + [39633] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8278), 1, + ACTIONS(8254), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7822), 3, + STATE(8122), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497407,7 +496859,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3789), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497420,73 +496872,140 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [40382] = 29, - ACTIONS(7888), 1, + [39749] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7223), 1, + sym_identifier, + STATE(7348), 1, + sym__block_label, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8256), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [39825] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8280), 1, + ACTIONS(8258), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7969), 3, + STATE(8126), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497494,7 +497013,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3808), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497507,72 +497026,158 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [40498] = 28, - ACTIONS(7910), 1, + [39941] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8260), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8262), 1, + aux_sym_end_interface_statement_token1, + STATE(1339), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6833), 1, + sym_subroutine_statement, + STATE(6834), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8198), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5141), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3868), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [40055] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8282), 1, + ACTIONS(8264), 1, aux_sym_end_program_statement_token1, - ACTIONS(8284), 1, + ACTIONS(8266), 1, aux_sym_end_interface_statement_token1, - STATE(2807), 1, + STATE(1069), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497580,7 +497185,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497593,73 +497198,73 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [40612] = 29, - ACTIONS(7888), 1, + [40169] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8286), 1, + ACTIONS(8268), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7844), 3, + STATE(7560), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497667,7 +497272,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3795), 12, + STATE(3772), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497680,73 +497285,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [40728] = 29, - ACTIONS(7888), 1, + [40285] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8286), 1, + ACTIONS(8270), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7844), 3, + STATE(7590), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497754,7 +497359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3775), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497767,72 +497372,307 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [40844] = 28, - ACTIONS(7910), 1, + [40401] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8270), 1, + aux_sym_preproc_if_token2, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(7590), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4052), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [40517] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(6856), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(6858), 46, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + anon_sym_GT_GT_GT, + aux_sym__block_if_statement_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [40581] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(8196), 1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8272), 1, + aux_sym_preproc_if_token2, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8014), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4052), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [40697] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8288), 1, + ACTIONS(8260), 1, aux_sym_end_program_statement_token1, - ACTIONS(8290), 1, + ACTIONS(8262), 1, aux_sym_end_interface_statement_token1, - STATE(1177), 1, + STATE(1598), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497840,7 +497680,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3857), 12, + STATE(3766), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497853,73 +497693,73 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [40958] = 29, - ACTIONS(7888), 1, + [40811] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8292), 1, + ACTIONS(8272), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7948), 3, + STATE(8014), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -497927,7 +497767,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3789), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -497940,73 +497780,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [41074] = 29, - ACTIONS(7888), 1, + [40927] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8294), 1, + ACTIONS(8274), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8217), 3, + STATE(8049), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -498014,7 +497854,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -498027,17 +497867,26 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [41190] = 3, + [41043] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7197), 1, + sym__block_label, + STATE(7223), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7160), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(7162), 51, - aux_sym_end_program_statement_token1, + ACTIONS(8276), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -498053,10 +497902,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -498073,7 +497920,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -498088,73 +497934,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [41254] = 29, - ACTIONS(7888), 1, + [41119] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8296), 1, + ACTIONS(8278), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7929), 3, + STATE(8323), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -498162,7 +498008,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -498175,73 +498021,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [41370] = 29, - ACTIONS(7888), 1, + [41235] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8296), 1, + ACTIONS(8280), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7929), 3, + STATE(8279), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -498249,7 +498095,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3799), 12, + STATE(3782), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -498262,275 +498108,247 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [41486] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7191), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8298), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [41562] = 10, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [41351] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8300), 1, - anon_sym_COMMA, - ACTIONS(8302), 1, - anon_sym_COLON_COLON, - STATE(5888), 1, - sym__type_name, - STATE(6571), 1, - sym_identifier, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8282), 1, + aux_sym_preproc_if_token2, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8283), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [41640] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3784), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [41467] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7133), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8282), 1, + aux_sym_preproc_if_token2, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8304), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8283), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [41716] = 29, - ACTIONS(7888), 1, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4052), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [41583] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8306), 1, + ACTIONS(8278), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7654), 3, + STATE(8323), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -498538,7 +498356,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3804), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -498551,73 +498369,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [41832] = 29, - ACTIONS(7888), 1, + [41699] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8308), 1, + ACTIONS(8284), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7949), 3, + STATE(8303), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -498625,7 +498443,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -498638,140 +498456,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [41948] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7082), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8310), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [42024] = 29, - ACTIONS(7888), 1, + [41815] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8254), 1, + ACTIONS(8284), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8008), 3, + STATE(8303), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -498779,7 +498530,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3787), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -498792,73 +498543,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [42140] = 29, - ACTIONS(7888), 1, + [41931] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8312), 1, + ACTIONS(8286), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7913), 3, + STATE(8306), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -498866,7 +498617,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -498879,7 +498630,7 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [42256] = 9, + [42047] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -498888,14 +498639,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7335), 1, + STATE(7157), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7092), 2, + ACTIONS(8288), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -498946,73 +498697,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [42332] = 29, - ACTIONS(7888), 1, + [42123] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8312), 1, + ACTIONS(8290), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7913), 3, + STATE(8003), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -499020,7 +498771,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3800), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -499033,159 +498784,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [42448] = 28, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(8188), 1, + [42239] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8314), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8316), 1, - aux_sym_end_interface_statement_token1, - STATE(2763), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6876), 1, - sym_subroutine_statement, - STATE(6877), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8194), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5138), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3871), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [42562] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8318), 1, + ACTIONS(8292), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8275), 3, + STATE(8311), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -499193,7 +498858,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -499206,160 +498871,72 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [42678] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, + [42355] = 28, ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8320), 1, - aux_sym_preproc_if_token2, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(8201), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(4050), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [42794] = 29, - ACTIONS(7888), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(8196), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(8200), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8322), 1, - aux_sym_preproc_if_token2, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8294), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8296), 1, + aux_sym_end_interface_statement_token1, + STATE(974), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7920), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -499367,86 +498944,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, sym_subroutine, - sym_module_procedure, sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [42910] = 29, - ACTIONS(7888), 1, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [42469] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8274), 1, + ACTIONS(8298), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8392), 3, + STATE(8162), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -499454,7 +499031,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -499467,7 +499044,7 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [43026] = 9, + [42585] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -499476,14 +499053,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7403), 1, + STATE(7223), 1, + sym_identifier, + STATE(7347), 1, sym__block_label, - STATE(7439), 1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8300), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [42661] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7223), 1, sym_identifier, + STATE(7364), 1, + sym__block_label, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8324), 2, + ACTIONS(8302), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -499534,26 +499178,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [43102] = 9, - ACTIONS(7604), 1, + [42737] = 10, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(7608), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7610), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7614), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(3277), 1, + ACTIONS(8304), 1, + anon_sym_COMMA, + ACTIONS(8306), 1, + anon_sym_COLON_COLON, + STATE(5871), 1, + sym__type_name, + STATE(6375), 1, sym_identifier, - STATE(3393), 1, - sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3563), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(7606), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -499601,73 +499246,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [43178] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, + [42815] = 28, ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8326), 1, - aux_sym_preproc_if_token2, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8308), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8310), 1, + aux_sym_end_interface_statement_token1, + STATE(2864), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8035), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -499675,86 +499319,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, sym_subroutine, - sym_module_procedure, sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [43294] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [42929] = 28, ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8328), 1, - aux_sym_preproc_if_token2, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8294), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8296), 1, + aux_sym_end_interface_statement_token1, + STATE(972), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7938), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -499762,39 +499405,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3788), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, sym_subroutine, - sym_module_procedure, sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [43410] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7436), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [43043] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8330), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(8312), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(8314), 53, + aux_sym_end_program_statement_token1, + aux_sym_assignment_token1, + aux_sym_operator_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -499810,8 +499444,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -499828,6 +499464,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -499842,159 +499479,563 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [43486] = 29, - ACTIONS(7888), 1, + [43107] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(8196), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(8200), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8316), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8318), 1, + aux_sym_end_interface_statement_token1, + STATE(1166), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6833), 1, + sym_subroutine_statement, + STATE(6834), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8198), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5141), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3868), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [43221] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8316), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8318), 1, + aux_sym_end_interface_statement_token1, + STATE(1160), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6833), 1, + sym_subroutine_statement, + STATE(6834), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8198), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5141), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3796), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [43335] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8320), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8322), 1, + aux_sym_end_interface_statement_token1, + STATE(2743), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6833), 1, + sym_subroutine_statement, + STATE(6834), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8198), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5141), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3868), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [43449] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8308), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8310), 1, + aux_sym_end_interface_statement_token1, + STATE(2871), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6833), 1, + sym_subroutine_statement, + STATE(6834), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8198), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5141), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3793), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [43563] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8332), 1, - aux_sym_preproc_if_token2, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8320), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8322), 1, + aux_sym_end_interface_statement_token1, + STATE(2737), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7965), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3798), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [43677] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5784), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(5792), 51, + aux_sym_end_program_statement_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3788), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [43602] = 28, - ACTIONS(7910), 1, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [43741] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8234), 1, + ACTIONS(8324), 1, aux_sym_end_program_statement_token1, - ACTIONS(8236), 1, + ACTIONS(8326), 1, aux_sym_end_interface_statement_token1, - STATE(1629), 1, + STATE(1550), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500002,7 +500043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -500015,7 +500056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [43716] = 9, + [43855] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -500024,14 +500065,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7111), 1, - sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, + STATE(7432), 1, + sym__block_label, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8334), 2, + ACTIONS(8328), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -500082,73 +500123,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [43792] = 29, - ACTIONS(7888), 1, + [43931] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8336), 1, + ACTIONS(8330), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8225), 3, + STATE(8305), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500156,7 +500197,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3840), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -500169,73 +500210,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [43908] = 29, - ACTIONS(7888), 1, + [44047] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8246), 1, + ACTIONS(8332), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8289), 3, + STATE(7845), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500243,7 +500284,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3850), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -500256,73 +500297,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [44024] = 29, - ACTIONS(7888), 1, + [44163] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8338), 1, + ACTIONS(8334), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8350), 3, + STATE(7470), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500330,7 +500371,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3853), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -500343,73 +500384,72 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [44140] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, + [44279] = 28, ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8340), 1, - aux_sym_preproc_if_token2, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8324), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8326), 1, + aux_sym_end_interface_statement_token1, + STATE(1536), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8011), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500417,85 +500457,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3802), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, sym_subroutine, - sym_module_procedure, sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [44256] = 28, - ACTIONS(7910), 1, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [44393] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8224), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8226), 1, - aux_sym_end_interface_statement_token1, - STATE(872), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8334), 1, + aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(7470), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500503,85 +500544,207 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, sym_subroutine, + sym_module_procedure, sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [44370] = 28, - ACTIONS(7910), 1, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [44509] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7168), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(7170), 51, + aux_sym_end_program_statement_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [44573] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7132), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(7134), 51, + aux_sym_end_program_statement_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [44637] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8282), 1, + ACTIONS(8336), 1, aux_sym_end_program_statement_token1, - ACTIONS(8284), 1, + ACTIONS(8338), 1, aux_sym_end_interface_statement_token1, - STATE(2797), 1, + STATE(3067), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500589,7 +500752,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3773), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -500602,72 +500765,72 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [44484] = 28, - ACTIONS(7910), 1, + [44751] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8342), 1, + ACTIONS(8336), 1, aux_sym_end_program_statement_token1, - ACTIONS(8344), 1, + ACTIONS(8338), 1, aux_sym_end_interface_statement_token1, - STATE(1549), 1, + STATE(3087), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500675,7 +500838,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, + STATE(3811), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -500688,72 +500851,206 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [44598] = 28, - ACTIONS(7910), 1, + [44865] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7200), 1, + sym__block_label, + STATE(7223), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8340), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [44941] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7112), 1, + sym__block_label, + STATE(7223), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8342), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [45017] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8208), 1, + ACTIONS(8344), 1, aux_sym_end_program_statement_token1, - ACTIONS(8210), 1, + ACTIONS(8346), 1, aux_sym_end_interface_statement_token1, - STATE(3097), 1, + STATE(1342), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500761,7 +501058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -500774,72 +501071,72 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [44712] = 28, - ACTIONS(7910), 1, + [45131] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8250), 1, + ACTIONS(8344), 1, aux_sym_end_program_statement_token1, - ACTIONS(8252), 1, + ACTIONS(8346), 1, aux_sym_end_interface_statement_token1, - STATE(1425), 1, + STATE(1333), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500847,7 +501144,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, + STATE(3815), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -500860,73 +501157,201 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [44826] = 29, - ACTIONS(7888), 1, + [45245] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(3285), 1, + sym_identifier, + STATE(3394), 1, + sym_sized_declarator, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5980), 2, + sym__variable_declarator, + sym_coarray_declarator, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [45321] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8083), 4, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_SEMI, + ACTIONS(8085), 51, + aux_sym_end_program_statement_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [45385] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8346), 1, + ACTIONS(8348), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7527), 3, + STATE(7972), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -500934,7 +501359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3826), 12, + STATE(3825), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -500947,73 +501372,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [44942] = 29, - ACTIONS(7888), 1, + [45501] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8348), 1, + ACTIONS(8350), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7534), 3, + STATE(8002), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -501021,7 +501446,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3828), 12, + STATE(3827), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -501034,134 +501459,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [45058] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7136), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(7138), 51, - aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [45122] = 29, - ACTIONS(7888), 1, + [45617] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8348), 1, + ACTIONS(8350), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7534), 3, + STATE(8002), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -501169,7 +501533,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -501182,140 +501546,159 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [45238] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [45733] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(3277), 1, - sym_identifier, - STATE(3393), 1, - sym_sized_declarator, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8264), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8266), 1, + aux_sym_end_interface_statement_token1, + STATE(969), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6833), 1, + sym_subroutine_statement, + STATE(6834), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6119), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(8198), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5141), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [45314] = 29, - ACTIONS(7888), 1, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3767), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [45847] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8350), 1, + ACTIONS(8352), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7932), 3, + STATE(8285), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -501323,7 +501706,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3806), 12, + STATE(3777), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -501336,227 +501719,26 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [45430] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7439), 1, - sym_identifier, - STATE(7451), 1, - sym__block_label, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8352), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [45506] = 9, - ACTIONS(5454), 1, + [45963] = 9, + ACTIONS(7612), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(7616), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(7618), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(7622), 1, aux_sym_select_case_statement_token1, - STATE(3277), 1, + STATE(3285), 1, sym_identifier, - STATE(3393), 1, + STATE(3394), 1, sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(7071), 2, + STATE(3818), 2, sym__variable_declarator, sym_coarray_declarator, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [45582] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7111), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8334), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [45658] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7413), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8354), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, + ACTIONS(7614), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -501604,139 +501786,160 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [45734] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + [46039] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(7230), 1, - sym__block_label, - STATE(7439), 1, - sym_identifier, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8354), 1, + aux_sym_preproc_if_token2, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8356), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(8143), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [45810] = 28, - ACTIONS(7910), 1, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4052), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [46155] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8314), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8316), 1, - aux_sym_end_interface_statement_token1, - STATE(2727), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8354), 1, + aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(8143), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -501744,86 +501947,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3792), 12, + STATE(3830), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, sym_subroutine, + sym_module_procedure, sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [45924] = 29, - ACTIONS(7888), 1, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [46271] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8358), 1, + ACTIONS(8356), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7580), 3, + STATE(8146), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -501831,7 +502034,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -501844,73 +502047,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [46040] = 29, - ACTIONS(7888), 1, + [46387] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, ACTIONS(8358), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7580), 3, + STATE(8356), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -501918,7 +502121,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3833), 12, + STATE(3786), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -501931,73 +502134,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [46156] = 29, - ACTIONS(7888), 1, + [46503] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8360), 1, + ACTIONS(8358), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7598), 3, + STATE(8356), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -502005,7 +502208,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -502018,73 +502221,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [46272] = 29, - ACTIONS(7888), 1, + [46619] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8238), 1, + ACTIONS(8360), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7571), 3, + STATE(8176), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -502092,7 +502295,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -502105,7 +502308,7 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [46388] = 9, + [46735] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -502114,14 +502317,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7436), 1, - sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, + STATE(7386), 1, + sym__block_label, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8330), 2, + ACTIONS(8362), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -502172,7 +502375,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [46464] = 9, + [46811] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8192), 1, + aux_sym_preproc_include_token1, + ACTIONS(8194), 1, + aux_sym_preproc_def_token1, + ACTIONS(8196), 1, + aux_sym_preproc_if_token1, + ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8210), 1, + aux_sym_import_statement_token1, + ACTIONS(8364), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8366), 1, + aux_sym_end_interface_statement_token1, + STATE(2841), 1, + sym_end_interface_statement, + STATE(3276), 1, + sym_procedure_kind, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6833), 1, + sym_subroutine_statement, + STATE(6834), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8198), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5141), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3868), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [46925] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -502181,14 +502470,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7096), 1, - sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, + STATE(7392), 1, + sym__block_label, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8362), 2, + ACTIONS(8368), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -502239,7 +502528,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [46540] = 9, + [47001] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -502248,14 +502537,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7173), 1, + STATE(7177), 1, sym__block_label, - STATE(7439), 1, + STATE(7223), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8364), 2, + ACTIONS(8370), 2, sym__external_end_of_statement, anon_sym_SEMI, ACTIONS(5456), 47, @@ -502306,104 +502595,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [46616] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + [47077] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8366), 1, - aux_sym_preproc_if_token2, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(7609), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(4050), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [46732] = 3, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7080), 1, + sym__block_label, + STATE(7223), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7152), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(7154), 51, - aux_sym_end_program_statement_token1, + ACTIONS(8372), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -502419,10 +502630,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -502439,7 +502648,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -502454,505 +502662,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [46796] = 28, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8368), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8370), 1, - aux_sym_end_interface_statement_token1, - STATE(1389), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6876), 1, - sym_subroutine_statement, - STATE(6877), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8194), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5138), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3871), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [46910] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, + [47153] = 28, ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8292), 1, - aux_sym_preproc_if_token2, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(7948), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3785), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [47026] = 28, ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8342), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8344), 1, - aux_sym_end_interface_statement_token1, - STATE(1541), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6876), 1, - sym_subroutine_statement, - STATE(6877), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8194), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5138), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3811), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [47140] = 28, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8372), 1, + ACTIONS(8236), 1, aux_sym_end_program_statement_token1, - ACTIONS(8374), 1, + ACTIONS(8238), 1, aux_sym_end_interface_statement_token1, - STATE(2829), 1, + STATE(1487), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6876), 1, - sym_subroutine_statement, - STATE(6877), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8194), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5138), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3871), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [47254] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8280), 1, - aux_sym_preproc_if_token2, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(7969), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(4050), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [47370] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8376), 1, - aux_sym_preproc_if_token2, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8158), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -502960,85 +502735,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, sym_subroutine, - sym_module_procedure, sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [47486] = 28, - ACTIONS(7910), 1, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [47267] = 28, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8262), 1, + ACTIONS(8364), 1, aux_sym_end_program_statement_token1, - ACTIONS(8264), 1, + ACTIONS(8366), 1, aux_sym_end_interface_statement_token1, - STATE(1373), 1, + STATE(2833), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -503046,7 +502821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, + STATE(3832), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -503059,7 +502834,141 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [47600] = 9, + [47381] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7223), 1, + sym_identifier, + STATE(7251), 1, + sym__block_label, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8374), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [47457] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7223), 1, + sym_identifier, + STATE(7410), 1, + sym__block_label, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7092), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [47533] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -503068,10 +502977,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7187), 1, + STATE(7223), 1, + sym_identifier, + STATE(7414), 1, sym__block_label, - STATE(7439), 1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8376), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [47609] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7223), 1, sym_identifier, + STATE(7344), 1, + sym__block_label, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -503126,72 +503102,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [47676] = 28, - ACTIONS(7910), 1, + [47685] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8214), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8216), 1, - aux_sym_end_interface_statement_token1, - STATE(1021), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8380), 1, + aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(7506), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -503199,146 +503176,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3733), 12, + STATE(3846), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, sym_subroutine, + sym_module_procedure, sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [47790] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6834), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6836), 46, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [47801] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_GT_GT_GT, - aux_sym__block_if_statement_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [47854] = 28, - ACTIONS(7910), 1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8372), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8374), 1, - aux_sym_end_interface_statement_token1, - STATE(2821), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8382), 1, + aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(7524), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -503346,86 +503263,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3838), 12, + STATE(3848), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, sym_subroutine, + sym_module_procedure, sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [47968] = 29, - ACTIONS(7888), 1, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [47917] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8380), 1, + ACTIONS(8382), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7944), 3, + STATE(7524), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -503433,7 +503350,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3753), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -503446,7 +503363,7 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [48084] = 9, + [48033] = 9, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -503455,16 +503372,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7426), 1, - sym__block_label, - STATE(7439), 1, + STATE(3285), 1, sym_identifier, + STATE(3394), 1, + sym_sized_declarator, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8382), 2, - sym__external_end_of_statement, - anon_sym_SEMI, + STATE(6338), 2, + sym__variable_declarator, + sym_coarray_declarator, ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -503513,73 +503430,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [48160] = 29, - ACTIONS(7888), 1, + [48109] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8380), 1, + ACTIONS(8384), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7944), 3, + STATE(7627), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -503587,7 +503504,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -503600,73 +503517,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [48276] = 29, - ACTIONS(7888), 1, + [48225] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, ACTIONS(8384), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8330), 3, + STATE(7627), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -503674,7 +503591,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3851), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -503687,73 +503604,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [48392] = 29, - ACTIONS(7888), 1, + [48341] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8294), 1, + ACTIONS(8386), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8217), 3, + STATE(7642), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -503761,7 +503678,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3760), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -503774,73 +503691,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [48508] = 29, - ACTIONS(7888), 1, + [48457] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8386), 1, + ACTIONS(8388), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7483), 3, + STATE(7622), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -503848,7 +503765,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3794), 12, + STATE(3755), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -503861,73 +503778,73 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [48624] = 29, - ACTIONS(7888), 1, + [48573] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8388), 1, + ACTIONS(8390), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8250), 3, + STATE(7628), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -503935,7 +503852,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -503948,72 +503865,159 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [48740] = 28, - ACTIONS(7910), 1, + [48689] = 29, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7892), 1, + aux_sym_preproc_else_token1, + ACTIONS(7894), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, ACTIONS(7922), 1, + aux_sym_include_statement_token1, + ACTIONS(8392), 1, + aux_sym_preproc_if_token2, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(7896), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + STATE(7671), 3, + sym_preproc_else_in_internal_procedures, + sym_preproc_elif_in_internal_procedures, + sym_preproc_elifdef_in_internal_procedures, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4052), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [48805] = 28, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8188), 1, + ACTIONS(8192), 1, aux_sym_preproc_include_token1, - ACTIONS(8190), 1, + ACTIONS(8194), 1, aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, ACTIONS(8196), 1, - sym_preproc_directive, + aux_sym_preproc_if_token1, ACTIONS(8200), 1, + sym_preproc_directive, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8206), 1, + ACTIONS(8210), 1, aux_sym_import_statement_token1, - ACTIONS(8368), 1, + ACTIONS(8212), 1, aux_sym_end_program_statement_token1, - ACTIONS(8370), 1, + ACTIONS(8214), 1, aux_sym_end_interface_statement_token1, - STATE(1382), 1, + STATE(873), 1, sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6876), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6877), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, + ACTIONS(8198), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -504021,7 +504025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3835), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -504034,73 +504038,73 @@ static const uint16_t ts_small_parse_table[] = { sym_import_statement, sym_procedure_statement, aux_sym_interface_repeat1, - [48854] = 29, - ACTIONS(7888), 1, + [48919] = 29, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, - ACTIONS(7898), 1, + ACTIONS(7892), 1, aux_sym_preproc_else_token1, - ACTIONS(7900), 1, + ACTIONS(7894), 1, aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, + ACTIONS(7898), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(7922), 1, aux_sym_include_statement_token1, - ACTIONS(8390), 1, + ACTIONS(8394), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, + ACTIONS(7896), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7508), 3, + STATE(7629), 3, sym_preproc_else_in_internal_procedures, sym_preproc_elif_in_internal_procedures, sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -504108,7 +504112,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(4052), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -504121,113 +504125,341 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [48970] = 29, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + [49035] = 4, + ACTIONS(5786), 1, + anon_sym_LPAREN2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5784), 3, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(5792), 51, + aux_sym_end_program_statement_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - ACTIONS(8392), 1, - aux_sym_preproc_if_token2, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [49101] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7080), 1, + sym__block_label, + STATE(7223), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - STATE(8212), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8372), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [49177] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7217), 1, + sym__block_label, + STATE(7223), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8216), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [49253] = 9, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(7090), 1, + sym__block_label, + STATE(7223), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8396), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(5456), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [49329] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8188), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(8186), 53, + aux_sym_end_program_statement_token1, + aux_sym_assignment_token1, + aux_sym_operator_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3747), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [49086] = 9, - ACTIONS(7604), 1, - aux_sym_end_program_statement_token1, - ACTIONS(7608), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7610), 1, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7614), 1, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, aux_sym_select_case_statement_token1, - STATE(3277), 1, - sym_identifier, - STATE(3393), 1, - sym_sized_declarator, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [49393] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3752), 2, - sym__variable_declarator, - sym_coarray_declarator, - ACTIONS(7606), 47, + ACTIONS(7160), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(7162), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -504243,8 +504475,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -504261,6 +504495,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -504275,159 +504510,129 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [49162] = 28, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(8188), 1, - aux_sym_preproc_include_token1, - ACTIONS(8190), 1, - aux_sym_preproc_def_token1, - ACTIONS(8192), 1, - aux_sym_preproc_if_token1, - ACTIONS(8196), 1, - sym_preproc_directive, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8206), 1, - aux_sym_import_statement_token1, - ACTIONS(8288), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8290), 1, - aux_sym_end_interface_statement_token1, - STATE(1179), 1, - sym_end_interface_statement, - STATE(3286), 1, - sym__procedure_kind, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6876), 1, - sym_subroutine_statement, - STATE(6877), 1, - sym_function_statement, + [49457] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8194), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5138), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8204), 5, + ACTIONS(8400), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8398), 45, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(7918), 7, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3871), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [49276] = 29, - ACTIONS(7888), 1, + aux_sym_derived_type_token1, + anon_sym_GT_GT_GT, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [49520] = 26, + ACTIONS(7882), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(7884), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(7886), 1, aux_sym_preproc_if_token1, ACTIONS(7898), 1, - aux_sym_preproc_else_token1, - ACTIONS(7900), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7904), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(7928), 1, + ACTIONS(8404), 1, + aux_sym_end_program_statement_token2, + ACTIONS(8406), 1, aux_sym_include_statement_token1, - ACTIONS(8336), 1, - aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(7890), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(7902), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8225), 3, - sym_preproc_else_in_internal_procedures, - sym_preproc_elif_in_internal_procedures, - sym_preproc_elifdef_in_internal_procedures, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8402), 6, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_end_program_statement_token1, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -504435,7 +504640,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4050), 12, + STATE(3867), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -504448,11 +504653,11 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [49392] = 3, + [49629] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 9, + ACTIONS(8410), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -504462,7 +504667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8394), 45, + ACTIONS(8408), 45, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -504508,249 +504713,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [49455] = 3, + [49692] = 5, + ACTIONS(8412), 1, + anon_sym_COMMA, + ACTIONS(8417), 1, + anon_sym_COLON_COLON, + STATE(3878), 1, + aux_sym_procedure_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8400), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, + ACTIONS(8415), 51, aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8398), 45, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_GT_GT_GT, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [49518] = 3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [49759] = 9, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(6630), 1, + sym_identifier, + STATE(7396), 1, + sym__name, + STATE(7477), 1, + sym_module_name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8404), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [49834] = 9, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - anon_sym_EQ, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8402), 45, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8419), 1, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_GT_GT_GT, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [49581] = 3, + STATE(7142), 1, + sym_loop_control_expression, + STATE(7725), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8408), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [49909] = 9, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - anon_sym_EQ, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8406), 45, - anon_sym_COMMA, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8421), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8423), 1, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, + STATE(6437), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_GT_GT_GT, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [49644] = 26, - ACTIONS(7888), 1, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [49984] = 26, + ACTIONS(8425), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(8428), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(8431), 1, aux_sym_preproc_if_token1, - ACTIONS(7904), 1, + ACTIONS(8439), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(8442), 1, + aux_sym_end_program_statement_token2, + ACTIONS(8444), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(8447), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(8450), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(8453), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(8456), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(8462), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(8465), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(8468), 1, aux_sym_derived_type_token1, - ACTIONS(8412), 1, - aux_sym_end_program_statement_token2, - ACTIONS(8414), 1, + ACTIONS(8474), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, + STATE(6890), 1, sym_module_procedure_statement, - STATE(6981), 1, + STATE(6943), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6944), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(8436), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(8471), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8410), 6, + ACTIONS(8434), 6, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, aux_sym_end_program_statement_token1, - ACTIONS(7918), 7, + ACTIONS(8459), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -504758,7 +505043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3864), 12, + STATE(3867), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -504771,69 +505056,70 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [49753] = 26, - ACTIONS(7888), 1, + [50093] = 27, + ACTIONS(8477), 1, aux_sym_preproc_include_token1, - ACTIONS(7890), 1, + ACTIONS(8480), 1, aux_sym_preproc_def_token1, - ACTIONS(7892), 1, + ACTIONS(8483), 1, aux_sym_preproc_if_token1, - ACTIONS(7904), 1, + ACTIONS(8489), 1, sym_preproc_directive, - ACTIONS(7908), 1, + ACTIONS(8492), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8494), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(8497), 1, + aux_sym_end_interface_statement_token1, + ACTIONS(8499), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(8505), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(8508), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(8511), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(8514), 1, + aux_sym_import_statement_token1, + ACTIONS(8520), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(8523), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(8526), 1, aux_sym_derived_type_token1, - ACTIONS(8414), 1, - aux_sym_include_statement_token1, - ACTIONS(8418), 1, - aux_sym_end_program_statement_token2, + STATE(3276), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, + STATE(6833), 1, sym_subroutine_statement, - STATE(6982), 1, + STATE(6834), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7896), 2, + ACTIONS(8486), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(8529), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8416), 6, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_end_program_statement_token1, - ACTIONS(7918), 7, + ACTIONS(8502), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + ACTIONS(8517), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -504841,107 +505127,401 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3865), 12, + STATE(3868), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, + sym_preproc_if_in_interface, + sym_preproc_ifdef_in_interface, + sym__interface_items, sym_subroutine, - sym_module_procedure, sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [49862] = 26, - ACTIONS(8420), 1, - aux_sym_preproc_include_token1, - ACTIONS(8423), 1, - aux_sym_preproc_def_token1, - ACTIONS(8426), 1, - aux_sym_preproc_if_token1, - ACTIONS(8434), 1, - sym_preproc_directive, - ACTIONS(8437), 1, - aux_sym_end_program_statement_token2, - ACTIONS(8439), 1, - aux_sym_module_statement_token1, - ACTIONS(8442), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(8445), 1, - aux_sym_function_statement_token1, - ACTIONS(8448), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(8451), 1, - aux_sym_implicit_statement_token3, - ACTIONS(8457), 1, + sym_import_statement, + sym_procedure_statement, + aux_sym_interface_repeat1, + [50204] = 4, + ACTIONS(8532), 1, + anon_sym_LPAREN2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7964), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7968), 51, + aux_sym_end_program_statement_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token4, - ACTIONS(8460), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(8463), 1, - aux_sym_derived_type_token1, - ACTIONS(8469), 1, - aux_sym_include_statement_token1, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [50269] = 5, + ACTIONS(8534), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_COLON_COLON, + STATE(3883), 1, + aux_sym_procedure_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8431), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(8466), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8429), 6, + ACTIONS(8537), 51, + aux_sym_end_program_statement_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [50336] = 9, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8541), 1, + aux_sym_included_items_token1, + STATE(6189), 1, + sym_use_alias, + STATE(8272), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [50411] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8545), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8543), 45, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - aux_sym_end_program_statement_token1, - ACTIONS(8454), 7, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(3865), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [49971] = 3, + aux_sym_derived_type_token1, + anon_sym_GT_GT_GT, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [50474] = 9, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8541), 1, + aux_sym_included_items_token1, + STATE(6145), 1, + sym_use_alias, + STATE(8272), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [50549] = 5, + ACTIONS(8547), 1, + anon_sym_COMMA, + ACTIONS(8552), 1, + anon_sym_COLON_COLON, + STATE(3874), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8550), 51, + aux_sym_end_program_statement_token1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [50616] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8474), 9, + ACTIONS(8556), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -504951,7 +505531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8472), 45, + ACTIONS(8554), 45, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -504997,17 +505577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [50034] = 5, - ACTIONS(8476), 1, + [50679] = 5, + ACTIONS(8558), 1, anon_sym_COMMA, - ACTIONS(8481), 1, + ACTIONS(8563), 1, anon_sym_COLON_COLON, - STATE(3891), 1, + STATE(3863), 1, aux_sym_procedure_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8479), 51, + ACTIONS(8561), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -505059,17 +505639,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [50101] = 5, - ACTIONS(8483), 1, + [50746] = 5, + ACTIONS(8565), 1, anon_sym_COMMA, - ACTIONS(8488), 1, + ACTIONS(8568), 1, + anon_sym_LPAREN2, + ACTIONS(8572), 1, anon_sym_COLON_COLON, - STATE(3874), 1, - aux_sym_procedure_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8486), 51, + ACTIONS(8570), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -505121,25 +505701,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [50168] = 9, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8490), 1, - aux_sym_included_items_token1, - STATE(6121), 1, - sym_use_alias, - STATE(8040), 1, - sym_identifier, + [50813] = 5, + ACTIONS(8188), 1, + anon_sym_COLON_COLON, + ACTIONS(8574), 1, + anon_sym_COMMA, + STATE(3878), 1, + aux_sym_procedure_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8186), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -505155,8 +505728,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -505173,6 +505748,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -505187,25 +505763,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [50243] = 9, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8492), 1, + [50880] = 5, + ACTIONS(8577), 1, anon_sym_COMMA, - STATE(7407), 1, - sym_loop_control_expression, - STATE(8144), 1, - sym_identifier, + ACTIONS(8582), 1, + anon_sym_COLON_COLON, + STATE(3895), 1, + aux_sym_procedure_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8580), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -505221,8 +505790,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -505239,6 +505810,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -505253,95 +505825,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [50318] = 27, - ACTIONS(8494), 1, - aux_sym_preproc_include_token1, - ACTIONS(8497), 1, - aux_sym_preproc_def_token1, - ACTIONS(8500), 1, - aux_sym_preproc_if_token1, - ACTIONS(8506), 1, - sym_preproc_directive, - ACTIONS(8509), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8511), 1, - aux_sym_module_statement_token1, - ACTIONS(8514), 1, - aux_sym_end_interface_statement_token1, - ACTIONS(8516), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(8522), 1, - aux_sym_function_statement_token1, - ACTIONS(8525), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(8528), 1, - aux_sym_implicit_statement_token3, - ACTIONS(8531), 1, - aux_sym_import_statement_token1, - ACTIONS(8537), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(8540), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(8543), 1, - aux_sym_derived_type_token1, - STATE(3286), 1, - sym__procedure_kind, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6876), 1, - sym_subroutine_statement, - STATE(6877), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8503), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5138), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(8546), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8519), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - ACTIONS(8534), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(3871), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_interface, - sym_preproc_ifdef_in_interface, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_interface_repeat1, - [50429] = 3, + [50947] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8551), 9, + ACTIONS(8586), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -505351,7 +505839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8549), 45, + ACTIONS(8584), 45, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -505397,11 +505885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [50492] = 3, + [51010] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8555), 9, + ACTIONS(8590), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -505411,7 +505899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8553), 45, + ACTIONS(8588), 45, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -505457,75 +505945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [50555] = 5, - ACTIONS(8557), 1, - anon_sym_COMMA, - ACTIONS(8562), 1, - anon_sym_COLON_COLON, - STATE(3891), 1, - aux_sym_procedure_statement_repeat1, + [51073] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8560), 51, - aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [50622] = 4, - ACTIONS(8564), 1, - anon_sym_LPAREN2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4323), 9, + ACTIONS(8594), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -505535,13 +505959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(4325), 44, + ACTIONS(8592), 45, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -505580,17 +506005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [50687] = 5, - ACTIONS(8566), 1, + [51136] = 5, + ACTIONS(8596), 1, anon_sym_COMMA, - ACTIONS(8571), 1, + ACTIONS(8601), 1, anon_sym_COLON_COLON, - STATE(3891), 1, + STATE(3878), 1, aux_sym_procedure_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8569), 51, + ACTIONS(8599), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -505642,21 +506067,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [50754] = 9, + [51203] = 26, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(8406), 1, + aux_sym_include_statement_token1, + ACTIONS(8605), 1, + aux_sym_end_program_statement_token2, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8603), 6, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_end_program_statement_token1, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(3861), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [51312] = 9, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(8490), 1, - aux_sym_included_items_token1, - STATE(6247), 1, - sym_use_alias, - STATE(8040), 1, + STATE(6630), 1, sym_identifier, + STATE(7395), 1, + sym_module_name, + STATE(7396), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -505708,11 +506216,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [50829] = 3, + [51387] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8575), 9, + ACTIONS(8609), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -505722,7 +506230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8573), 45, + ACTIONS(8607), 45, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -505768,11 +506276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [50892] = 3, + [51450] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8575), 9, + ACTIONS(8613), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -505782,7 +506290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8573), 45, + ACTIONS(8611), 45, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -505828,77 +506336,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [50955] = 9, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8577), 1, - anon_sym_COMMA, - ACTIONS(8579), 1, - anon_sym_COLON_COLON, - STATE(6139), 1, - sym_identifier, + [51513] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + ACTIONS(8613), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8611), 45, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [51030] = 3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + anon_sym_GT_GT_GT, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [51576] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8583), 9, + ACTIONS(8617), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -505908,7 +506410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8581), 45, + ACTIONS(8615), 45, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -505954,11 +506456,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [51093] = 3, + [51639] = 9, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8541), 1, + aux_sym_included_items_token1, + STATE(6216), 1, + sym_use_alias, + STATE(8272), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8587), 9, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [51714] = 4, + ACTIONS(8619), 1, + anon_sym_LPAREN2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4255), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -505968,14 +506538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8585), 45, + ACTIONS(4257), 44, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -506014,11 +506583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [51156] = 3, + [51779] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8591), 9, + ACTIONS(8623), 9, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -506028,7 +506597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8589), 45, + ACTIONS(8621), 45, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -506074,25 +506643,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [51219] = 9, - ACTIONS(748), 1, + [51842] = 9, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(6620), 1, + ACTIONS(8625), 1, + anon_sym_COMMA, + ACTIONS(8627), 1, + anon_sym_COLON_COLON, + STATE(6238), 1, sym_identifier, - STATE(7123), 1, - sym_module_name, - STATE(7124), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -506140,25 +506709,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [51294] = 9, - ACTIONS(748), 1, + [51917] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8631), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + anon_sym_EQ, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8595), 1, + anon_sym_DOT, + ACTIONS(8629), 45, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(6547), 1, - sym_identifier, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + anon_sym_GT_GT_GT, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [51980] = 5, + ACTIONS(8633), 1, + anon_sym_COMMA, + ACTIONS(8638), 1, + anon_sym_COLON_COLON, + STATE(3878), 1, + aux_sym_procedure_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8636), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -506174,8 +506796,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -506192,6 +506816,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -506206,79 +506831,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [51369] = 4, - ACTIONS(8597), 1, - anon_sym_LPAREN2, + [52047] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7970), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7974), 51, + ACTIONS(8642), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8640), 45, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + anon_sym_GT_GT_GT, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [52110] = 8, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [51434] = 5, - ACTIONS(8599), 1, - anon_sym_COMMA, - ACTIONS(8604), 1, - anon_sym_COLON_COLON, - STATE(3876), 1, - aux_sym_procedure_statement_repeat1, + STATE(5904), 1, + sym__type_name, + STATE(6375), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8602), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -506294,10 +506923,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -506314,7 +506941,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -506329,25 +506955,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [51501] = 9, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8490), 1, - aux_sym_included_items_token1, - STATE(6229), 1, - sym_use_alias, - STATE(8040), 1, - sym_identifier, + [52182] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(7222), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7224), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -506363,8 +506979,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -506381,6 +506999,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -506395,137 +507014,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [51576] = 3, + [52244] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8608), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8606), 45, + ACTIONS(7286), 2, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_GT_GT_GT, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [51639] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8612), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8610), 45, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_GT_GT_GT, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [51702] = 5, - ACTIONS(8035), 1, anon_sym_COLON_COLON, - ACTIONS(8614), 1, - anon_sym_COMMA, - STATE(3891), 1, - aux_sym_procedure_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8033), 51, + ACTIONS(7288), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -506577,17 +507073,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [51769] = 5, - ACTIONS(8617), 1, - anon_sym_COMMA, - ACTIONS(8622), 1, - anon_sym_COLON_COLON, - STATE(3867), 1, - aux_sym_procedure_statement_repeat1, + [52306] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8620), 51, + ACTIONS(7290), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7292), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -506639,18 +507132,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [51836] = 5, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8627), 1, - anon_sym_LPAREN2, - ACTIONS(8631), 1, - anon_sym_COLON_COLON, + [52368] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8644), 1, + anon_sym_RPAREN, + STATE(6323), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8629), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -506666,10 +507164,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -506686,7 +507182,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -506701,17 +507196,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [51903] = 5, - ACTIONS(8633), 1, - anon_sym_COMMA, - ACTIONS(8638), 1, - anon_sym_COLON_COLON, - STATE(3894), 1, - aux_sym_variable_declaration_repeat1, + [52440] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8636), 51, + ACTIONS(7964), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7968), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -506763,25 +507255,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [51970] = 9, - ACTIONS(748), 1, + [52502] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7576), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7574), 51, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, aux_sym_select_case_statement_token1, - STATE(6620), 1, - sym_identifier, - STATE(7124), 1, - sym__name, - STATE(7728), 1, - sym_module_name, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [52564] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(7590), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7588), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -506797,8 +507338,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -506815,6 +507358,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -506829,19 +507373,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52045] = 8, + [52626] = 8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(7873), 1, + STATE(6868), 1, + sym_association, + STATE(8029), 1, sym_identifier, - STATE(7896), 1, - sym_keyword_argument, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -506893,23 +507437,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52117] = 8, - ACTIONS(8640), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8644), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(8646), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(8648), 1, - aux_sym_select_case_statement_token1, - STATE(2875), 1, - sym__name, - STATE(2887), 1, - sym_identifier, + [52698] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8642), 47, + ACTIONS(6646), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(5594), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -506925,8 +507461,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -506943,6 +507481,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -506957,23 +507496,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52189] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(6937), 1, - sym_association, - STATE(7788), 1, - sym_identifier, + [52760] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(5474), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5472), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -506989,8 +507520,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -507007,6 +507540,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -507021,23 +507555,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52261] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(6286), 1, - sym_keyword_argument, - STATE(7873), 1, - sym_identifier, + [52822] = 4, + ACTIONS(8539), 1, + anon_sym_COLON_COLON, + ACTIONS(8646), 1, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8537), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507053,8 +507580,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -507071,6 +507600,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -507085,23 +507615,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52333] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(7450), 1, - sym_keyword_argument, - STATE(7873), 1, - sym_identifier, + [52886] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(6578), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(6580), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507117,8 +507639,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -507135,6 +507659,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -507149,23 +507674,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52405] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(7117), 1, - sym_concurrent_control, - STATE(8072), 1, - sym_identifier, + [52948] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8651), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(8649), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507181,8 +507698,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -507199,6 +507718,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -507213,23 +507733,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52477] = 8, - ACTIONS(8650), 1, + [53010] = 8, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8654), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8656), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8658), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(1416), 1, + STATE(6744), 1, + sym_triplet_spec, + STATE(7656), 1, sym_identifier, - STATE(1480), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8652), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507277,23 +507797,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52549] = 8, - ACTIONS(8640), 1, + [53082] = 8, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8644), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8646), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8648), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(2850), 1, - sym__name, - STATE(2887), 1, + STATE(6757), 1, + sym_triplet_spec, + STATE(7656), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8642), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507341,15 +507861,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52621] = 3, + [53154] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(7502), 1, + sym_keyword_argument, + STATE(7735), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8256), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(8258), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507365,10 +507893,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -507385,7 +507911,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -507400,7 +507925,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52683] = 8, + [53226] = 8, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -507409,9 +507934,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5837), 1, - sym__name, - STATE(6084), 1, + ACTIONS(8653), 1, + anon_sym_SLASH, + STATE(6435), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -507464,23 +507989,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52755] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(7296), 1, - sym_keyword_argument, - STATE(7873), 1, - sym_identifier, + [53298] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8655), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(8657), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507496,8 +508013,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -507514,6 +508033,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -507528,7 +508048,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52827] = 8, + [53360] = 8, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -507537,9 +508057,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5600), 1, + STATE(5580), 1, sym__name, - STATE(6084), 1, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -507592,23 +508112,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52899] = 8, - ACTIONS(748), 1, + [53432] = 8, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(6895), 1, - sym_parameter_assignment, - STATE(7972), 1, + STATE(5837), 1, + sym__name, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507656,16 +508176,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [52971] = 4, - ACTIONS(8660), 1, - anon_sym_COMMA, - ACTIONS(8665), 1, - anon_sym_COLON_COLON, + [53504] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(7375), 1, + sym_parameter_assignment, + STATE(8351), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8663), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507681,10 +508208,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -507701,7 +508226,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -507716,23 +508240,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53035] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(7873), 1, - sym_identifier, - STATE(7959), 1, - sym_keyword_argument, + [53576] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8661), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(8659), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507748,8 +508264,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -507766,6 +508284,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -507780,14 +508299,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53107] = 3, + [53638] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7492), 2, + ACTIONS(6564), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(7494), 51, + ACTIONS(6566), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -507839,23 +508358,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53169] = 8, - ACTIONS(5454), 1, + [53700] = 8, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5867), 1, - sym__type_name, - STATE(6571), 1, + STATE(7119), 1, + sym_keyword_argument, + STATE(7735), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507903,15 +508422,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53241] = 3, + [53772] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(7735), 1, + sym_identifier, + STATE(7754), 1, + sym_keyword_argument, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6566), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(6568), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507927,10 +508454,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -507947,7 +508472,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -507962,15 +508486,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53303] = 3, + [53844] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(6423), 1, + sym_parameter_assignment, + STATE(8351), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6602), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(6604), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -507986,10 +508518,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -508006,7 +508536,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -508021,15 +508550,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53365] = 3, + [53916] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(7735), 1, + sym_identifier, + STATE(8011), 1, + sym_keyword_argument, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6606), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(6608), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -508045,10 +508582,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -508065,7 +508600,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -508080,15 +508614,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53427] = 3, + [53988] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(7102), 1, + sym_triplet_spec, + STATE(7656), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7466), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7468), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -508104,10 +508646,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -508124,7 +508664,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -508139,23 +508678,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53489] = 8, - ACTIONS(748), 1, + [54060] = 8, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7444), 1, - sym_parameter_assignment, - STATE(7972), 1, + STATE(5865), 1, + sym__type_name, + STATE(6375), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -508203,14 +508742,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53561] = 3, + [54132] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6646), 2, + ACTIONS(7496), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(5600), 51, + ACTIONS(7498), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -508262,15 +508801,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53623] = 3, + [54194] = 8, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(5868), 1, + sym__type_name, + STATE(6375), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8669), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(8667), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -508286,10 +508833,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -508306,7 +508851,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -508321,14 +508865,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53685] = 3, + [54266] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8671), 2, + ACTIONS(8663), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(8673), 51, + ACTIONS(8665), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -508380,78 +508924,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53747] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(7199), 1, - sym_association, - STATE(7788), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(93), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [53819] = 3, + [54328] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7576), 2, + ACTIONS(8188), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(7574), 51, + ACTIONS(8186), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -508503,23 +508983,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53881] = 8, - ACTIONS(7230), 1, + [54390] = 8, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(7234), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7236), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7238), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(8675), 1, - anon_sym_LPAREN2, - STATE(5243), 1, + ACTIONS(8667), 1, + anon_sym_DOT_DOT_DOT, + STATE(7313), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7232), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -508567,15 +509047,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [53953] = 3, + [54462] = 8, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(6455), 1, + sym_method_name, + STATE(6462), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7570), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7568), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -508591,10 +509079,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -508611,7 +509097,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -508626,14 +509111,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54015] = 3, + [54534] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5500), 2, + ACTIONS(6604), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5498), 51, + anon_sym_COLON_COLON, + ACTIONS(6606), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -508685,82 +509170,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54077] = 8, + [54596] = 8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(6786), 1, - sym_keyword_argument, - STATE(7873), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(93), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [54149] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6787), 1, - sym_keyword_argument, - STATE(7873), 1, + STATE(6962), 1, + sym_use_alias, + STATE(8272), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -508813,23 +509234,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54221] = 8, - ACTIONS(7204), 1, + [54668] = 8, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(7208), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7210), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(7212), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(8677), 1, - anon_sym_LPAREN2, - STATE(5214), 1, + STATE(5866), 1, + sym__type_name, + STATE(6375), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7206), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -508877,15 +509298,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54293] = 3, + [54740] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(7206), 1, + sym_association, + STATE(8029), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7176), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7178), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -508901,10 +509330,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -508921,7 +509348,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -508936,14 +509362,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54355] = 3, + [54812] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7188), 2, + ACTIONS(8669), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(7190), 51, + ACTIONS(8671), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -508995,14 +509421,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54417] = 3, + [54874] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6562), 2, + ACTIONS(6568), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(6564), 51, + ACTIONS(6570), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -509054,76 +509480,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54479] = 5, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(3937), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8681), 8, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, + [54936] = 8, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8679), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [54545] = 3, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(5871), 1, + sym__type_name, + STATE(6375), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7172), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7174), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -509139,10 +509512,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -509159,7 +509530,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -509174,15 +509544,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54607] = 3, + [55008] = 8, + ACTIONS(8673), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8677), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(8679), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(8681), 1, + aux_sym_select_case_statement_token1, + STATE(1335), 1, + sym__name, + STATE(1341), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7184), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7186), 51, - aux_sym_end_program_statement_token1, + ACTIONS(8675), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -509198,10 +509576,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -509218,7 +509594,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -509233,15 +509608,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54669] = 3, + [55080] = 8, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(6091), 1, + sym_identifier, + STATE(7110), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7180), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7182), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -509257,10 +509640,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -509277,7 +509658,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -509292,23 +509672,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54731] = 8, - ACTIONS(5454), 1, + [55152] = 8, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(7001), 1, - sym_method_name, - STATE(7002), 1, + STATE(7404), 1, + sym_concurrent_control, + STATE(7564), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -509356,76 +509736,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54803] = 6, - ACTIONS(8687), 1, + [55224] = 8, + ACTIONS(7204), 1, + aux_sym_end_program_statement_token1, + ACTIONS(7208), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7210), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(7212), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8683), 1, anon_sym_LPAREN2, - STATE(4032), 1, - sym__argument_list, + STATE(5245), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3937), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8685), 8, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8683), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, + ACTIONS(7206), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [54871] = 3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [55296] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6580), 2, + ACTIONS(7180), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(6582), 51, + ACTIONS(7183), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -509477,14 +509859,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54933] = 3, + [55358] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6570), 2, + ACTIONS(6600), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(6572), 51, + ACTIONS(6602), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -509536,15 +509918,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [54995] = 3, + [55420] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(7008), 1, + sym_concurrent_control, + STATE(7564), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7334), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7336), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -509560,10 +509950,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -509580,7 +509968,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -509595,14 +509982,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55057] = 3, + [55492] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7282), 2, + ACTIONS(6582), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(7284), 51, + ACTIONS(6584), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -509654,14 +510041,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55119] = 3, + [55554] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7270), 2, + ACTIONS(8685), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(7272), 51, + ACTIONS(8687), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -509713,74 +510100,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55181] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7322), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7324), 51, + [55616] = 8, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [55243] = 3, + STATE(6709), 1, + sym_association, + STATE(8029), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6598), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(6600), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -509796,10 +510132,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -509816,7 +510150,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -509831,14 +510164,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55305] = 3, + [55688] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7306), 2, + ACTIONS(6550), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(7308), 51, + ACTIONS(6552), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -509890,74 +510223,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55367] = 3, + [55750] = 5, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6588), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(6590), 51, + STATE(3963), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8691), 8, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8689), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [55816] = 8, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [55429] = 3, + ACTIONS(8693), 1, + anon_sym_SLASH, + STATE(6206), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7594), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7592), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -509973,10 +510316,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -509993,7 +510334,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -510008,14 +510348,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55491] = 3, + [55888] = 4, + ACTIONS(8695), 1, + anon_sym_COMMA, + ACTIONS(8700), 1, + anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7580), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7578), 51, + ACTIONS(8698), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -510067,23 +510408,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55553] = 8, - ACTIONS(5454), 1, + [55952] = 8, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6084), 1, + STATE(7063), 1, + sym_keyword_argument, + STATE(7735), 1, sym_identifier, - STATE(7428), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -510131,74 +510472,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55625] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7316), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7318), 51, + [56024] = 8, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [55687] = 3, + STATE(7735), 1, + sym_identifier, + STATE(8354), 1, + sym_keyword_argument, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7266), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7268), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -510214,10 +510504,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -510234,7 +510522,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -510249,14 +510536,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55749] = 3, + [56096] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7302), 2, + ACTIONS(7564), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(7304), 51, + ACTIONS(7562), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -510308,15 +510595,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55811] = 3, + [56158] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(6630), 1, + sym_identifier, + STATE(7974), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7312), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7314), 51, - aux_sym_end_program_statement_token1, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -510332,10 +510627,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -510352,7 +510645,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -510367,14 +510659,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55873] = 3, + [56230] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7598), 2, + ACTIONS(7172), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(7596), 51, + ACTIONS(7174), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -510426,15 +510718,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55935] = 3, + [56292] = 8, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(5873), 1, + sym__type_name, + STATE(6375), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7192), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7195), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -510450,10 +510750,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -510470,7 +510768,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -510485,23 +510782,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [55997] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8690), 1, - anon_sym_RPAREN, - STATE(7485), 1, - sym_identifier, + [56364] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(7186), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7188), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -510517,8 +510806,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -510535,6 +510826,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -510549,23 +510841,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56069] = 8, - ACTIONS(748), 1, + [56426] = 8, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(8692), 1, - anon_sym_DOT_DOT_DOT, - STATE(7227), 1, + STATE(6091), 1, sym_identifier, + STATE(7171), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -510613,7 +510905,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56141] = 8, + [56498] = 8, ACTIONS(5454), 1, aux_sym_end_program_statement_token1, ACTIONS(5458), 1, @@ -510622,9 +510914,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token4, ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(5888), 1, - sym__type_name, - STATE(6571), 1, + STATE(5855), 1, + sym__name, + STATE(6091), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -510677,23 +510969,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56213] = 8, - ACTIONS(748), 1, + [56570] = 6, + ACTIONS(8706), 1, + anon_sym_LPAREN2, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(3963), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8704), 8, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + anon_sym_DOT, + ACTIONS(8702), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [56638] = 8, + ACTIONS(8709), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8713), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(8715), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8717), 1, aux_sym_select_case_statement_token1, - ACTIONS(8694), 1, - anon_sym_RPAREN, - STATE(7036), 1, + STATE(2879), 1, sym_identifier, + STATE(2889), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8711), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -510741,14 +511095,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56285] = 3, + [56710] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7970), 2, + ACTIONS(7492), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(7974), 51, + ACTIONS(7494), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -510800,15 +511154,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56347] = 3, + [56772] = 8, + ACTIONS(5454), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(5462), 1, + aux_sym_select_case_statement_token1, + STATE(5581), 1, + sym__name, + STATE(6091), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6542), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(6544), 51, - aux_sym_end_program_statement_token1, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -510824,10 +511186,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -510844,7 +511204,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -510859,18 +511218,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56409] = 8, + [56844] = 8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(7139), 1, - sym_triplet_spec, - STATE(8361), 1, + ACTIONS(8719), 1, + anon_sym_RPAREN, + STATE(8106), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -510923,16 +511282,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56481] = 4, - ACTIONS(8604), 1, - anon_sym_COLON_COLON, - ACTIONS(8696), 1, - anon_sym_COMMA, + [56916] = 8, + ACTIONS(7232), 1, + aux_sym_end_program_statement_token1, + ACTIONS(7236), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7238), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(7240), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8721), 1, + anon_sym_LPAREN2, + STATE(5265), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8602), 51, - aux_sym_end_program_statement_token1, + ACTIONS(7234), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -510948,10 +511314,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -510968,7 +511332,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -510983,23 +511346,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56545] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(7051), 1, - sym_triplet_spec, - STATE(8361), 1, - sym_identifier, + [56988] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(6560), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(6562), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511015,8 +511370,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -511033,6 +511390,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -511047,23 +511405,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56617] = 8, - ACTIONS(5454), 1, + [57050] = 8, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5591), 1, - sym__name, - STATE(6084), 1, + STATE(7191), 1, + sym_keyword_argument, + STATE(7735), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511111,19 +511469,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56689] = 8, + [57122] = 8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(7059), 1, - sym_association, - STATE(7788), 1, + STATE(6630), 1, sym_identifier, + STATE(7957), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -511175,14 +511533,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56761] = 3, + [57194] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8035), 2, + ACTIONS(7594), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(8033), 51, + ACTIONS(7592), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -511234,14 +511592,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56823] = 3, + [57256] = 8, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(4663), 1, + aux_sym_select_case_statement_token1, + STATE(6254), 1, + sym_keyword_argument, + STATE(7735), 1, + sym_identifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(93), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token3, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [57328] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8699), 2, + ACTIONS(7310), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(8701), 51, + ACTIONS(7312), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -511293,15 +511715,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56885] = 3, + [57390] = 8, + ACTIONS(8709), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8713), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(8715), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(8717), 1, + aux_sym_select_case_statement_token1, + STATE(2879), 1, + sym_identifier, + STATE(2906), 1, + sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8703), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(8705), 51, - aux_sym_end_program_statement_token1, + ACTIONS(8711), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511317,10 +511747,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -511337,7 +511765,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -511352,18 +511779,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [56947] = 8, + [57462] = 8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6905), 1, - sym_use_alias, - STATE(8040), 1, + STATE(6871), 1, + sym_keyword_argument, + STATE(7735), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -511416,23 +511843,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57019] = 8, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(5903), 1, - sym__type_name, - STATE(6571), 1, - sym_identifier, + [57534] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(7194), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7196), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511448,8 +511867,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -511466,6 +511887,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -511480,23 +511902,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57091] = 8, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8707), 1, - anon_sym_SLASH, - STATE(6629), 1, - sym_identifier, + [57596] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(7190), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7192), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511512,8 +511926,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -511530,6 +511946,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -511544,18 +511961,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57163] = 8, + [57658] = 8, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6612), 1, - sym_concurrent_control, - STATE(8072), 1, + STATE(7209), 1, + sym_loop_control_expression, + STATE(7725), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -511608,23 +512025,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57235] = 8, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - ACTIONS(8709), 1, - anon_sym_SLASH, - STATE(6148), 1, - sym_identifier, + [57730] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(7334), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7336), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511640,8 +512049,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -511658,6 +512069,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -511672,14 +512084,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57307] = 3, + [57792] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8713), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(8711), 51, + ACTIONS(7304), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7306), 51, aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, @@ -511731,23 +512143,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57369] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(6620), 1, - sym_identifier, - STATE(7646), 1, - sym__name, + [57854] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8312), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(8314), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511763,8 +512167,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -511781,6 +512187,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -511795,23 +512202,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57441] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(6983), 1, - sym_triplet_spec, - STATE(8361), 1, - sym_identifier, + [57916] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(7294), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7296), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511827,8 +512226,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -511845,6 +512246,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -511859,23 +512261,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57513] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(7873), 1, - sym_identifier, - STATE(8341), 1, - sym_keyword_argument, + [57978] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(7258), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7260), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511891,8 +512285,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -511909,6 +512305,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -511923,23 +512320,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57585] = 8, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(5904), 1, - sym__type_name, - STATE(6571), 1, - sym_identifier, + [58040] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(7268), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7270), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -511955,8 +512344,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -511973,6 +512364,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -511987,23 +512379,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57657] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(7873), 1, - sym_identifier, - STATE(8196), 1, - sym_keyword_argument, + [58102] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(7254), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7256), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512019,8 +512403,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -512037,6 +512423,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -512051,23 +512438,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57729] = 8, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(7372), 1, - sym_loop_control_expression, - STATE(8144), 1, - sym_identifier, + [58164] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(7176), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7178), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512083,8 +512462,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -512101,6 +512482,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -512115,23 +512497,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57801] = 8, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(5850), 1, - sym__name, - STATE(6084), 1, - sym_identifier, + [58226] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(7586), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(7584), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512147,8 +512521,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -512165,6 +512541,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -512179,23 +512556,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57873] = 8, - ACTIONS(5454), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, - aux_sym_select_case_statement_token1, - STATE(6084), 1, - sym_identifier, - STATE(7408), 1, - sym__name, + [58288] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(6574), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + ACTIONS(6576), 51, + aux_sym_end_program_statement_token1, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512211,8 +512580,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -512229,6 +512600,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, + aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -512243,23 +512615,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [57945] = 8, - ACTIONS(748), 1, + [58350] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6620), 1, + STATE(6126), 1, sym_identifier, - STATE(7956), 1, - sym__name, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512307,15 +512677,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58017] = 3, + [58419] = 7, + ACTIONS(6174), 1, + aux_sym_end_program_statement_token1, + ACTIONS(6182), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(6184), 1, + aux_sym_select_case_statement_token1, + ACTIONS(8733), 1, + aux_sym__intrinsic_type_token4, + STATE(4327), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8715), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(8717), 51, - aux_sym_end_program_statement_token1, + ACTIONS(6176), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512331,10 +512707,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -512351,7 +512725,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -512366,23 +512739,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58079] = 8, - ACTIONS(5454), 1, + [58488] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5863), 1, - sym__type_name, - STATE(6571), 1, + STATE(8085), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512430,23 +512801,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58151] = 8, - ACTIONS(5454), 1, + [58557] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5897), 1, - sym__type_name, - STATE(6571), 1, + STATE(4311), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512494,15 +512863,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58223] = 3, + [58626] = 7, + ACTIONS(8735), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8739), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(8741), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(8743), 1, + aux_sym_select_case_statement_token1, + STATE(3666), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7278), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(7280), 51, - aux_sym_end_program_statement_token1, + ACTIONS(8737), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512518,10 +512893,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token4, aux_sym__standalone_type_qualifier_token1, aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token4, aux_sym__standalone_type_qualifier_token5, aux_sym__standalone_type_qualifier_token10, aux_sym__standalone_type_qualifier_token11, @@ -512538,7 +512911,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__inline_if_statement_token1, aux_sym_end_if_statement_token1, aux_sym_elseif_clause_token2, - aux_sym_select_case_statement_token1, aux_sym_block_construct_token1, aux_sym_format_statement_token1, aux_sym_inquire_statement_token1, @@ -512553,21 +512925,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58285] = 7, - ACTIONS(8719), 1, + [58695] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(6606), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + anon_sym_EQ, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + anon_sym_DOT, + ACTIONS(6604), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [58756] = 7, + ACTIONS(8745), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8749), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(6172), 1, + STATE(241), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512615,21 +513045,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58354] = 7, - ACTIONS(748), 1, + [58825] = 7, + ACTIONS(8755), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8759), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8761), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8763), 1, aux_sym_select_case_statement_token1, - STATE(4529), 1, + STATE(914), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8757), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512677,21 +513107,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58423] = 7, - ACTIONS(5926), 1, + [58894] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5934), 1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5936), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(8729), 1, - aux_sym__intrinsic_type_token4, - STATE(4278), 1, + STATE(3882), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5928), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512739,21 +513169,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58492] = 7, - ACTIONS(8731), 1, + [58963] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(59), 1, + STATE(5343), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512801,21 +513231,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58561] = 7, - ACTIONS(5926), 1, + [59032] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5934), 1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5936), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - ACTIONS(8729), 1, - aux_sym__intrinsic_type_token4, - STATE(4311), 1, + STATE(4572), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5928), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512863,21 +513293,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58630] = 7, - ACTIONS(8741), 1, + [59101] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(6576), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - ACTIONS(8745), 1, + anon_sym_EQ, aux_sym__intrinsic_type_token4, - ACTIONS(8747), 1, + anon_sym_DOT, + ACTIONS(6574), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [59162] = 7, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8749), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(2), 1, + STATE(5077), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8743), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512925,21 +513413,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58699] = 7, - ACTIONS(5926), 1, + [59231] = 7, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(5934), 1, + ACTIONS(5458), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5936), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - ACTIONS(8729), 1, - aux_sym__intrinsic_type_token4, - STATE(4290), 1, + STATE(6149), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5928), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -512987,16 +513475,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58768] = 7, + [59300] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(6562), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(6560), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [59361] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(4311), 1, + STATE(8044), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -513049,21 +513595,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58837] = 7, - ACTIONS(8751), 1, + [59430] = 7, + ACTIONS(8765), 1, aux_sym_end_program_statement_token1, - ACTIONS(8755), 1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8757), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8759), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(925), 1, + STATE(73), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8753), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513111,21 +513657,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58906] = 7, - ACTIONS(748), 1, + [59499] = 7, + ACTIONS(8765), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(6726), 1, + STATE(58), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513173,16 +513719,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [58975] = 7, + [59568] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(4168), 1, + STATE(8114), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -513235,21 +513781,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59044] = 7, - ACTIONS(8761), 1, + [59637] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(285), 1, + STATE(6935), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513297,21 +513843,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59113] = 7, - ACTIONS(8731), 1, + [59706] = 7, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(83), 1, + STATE(6964), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513359,21 +513905,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59182] = 7, - ACTIONS(748), 1, + [59775] = 7, + ACTIONS(8775), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8779), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8781), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8783), 1, aux_sym_select_case_statement_token1, - STATE(4564), 1, + STATE(26), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8777), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513421,21 +513967,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59251] = 7, - ACTIONS(748), 1, + [59844] = 7, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(7936), 1, + STATE(6196), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513483,21 +514029,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59320] = 7, - ACTIONS(8731), 1, + [59913] = 7, + ACTIONS(8775), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(8779), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(8781), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(8783), 1, aux_sym_select_case_statement_token1, - STATE(73), 1, + STATE(3), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(8777), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513545,16 +514091,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59389] = 7, + [59982] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(7024), 1, + STATE(7721), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -513607,21 +514153,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59458] = 7, - ACTIONS(8771), 1, + [60051] = 7, + ACTIONS(8785), 1, aux_sym_end_program_statement_token1, - ACTIONS(8775), 1, + ACTIONS(8789), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8777), 1, + ACTIONS(8791), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8779), 1, + ACTIONS(8793), 1, aux_sym_select_case_statement_token1, - STATE(5782), 1, + STATE(5689), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8773), 47, + ACTIONS(8787), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513669,21 +514215,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59527] = 7, - ACTIONS(748), 1, + [60120] = 7, + ACTIONS(8765), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(6465), 1, + STATE(81), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513731,21 +514277,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59596] = 7, - ACTIONS(8761), 1, + [60189] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(242), 1, + STATE(4555), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513793,21 +514339,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59665] = 7, - ACTIONS(8751), 1, + [60258] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8755), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8757), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8759), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(930), 1, + STATE(7020), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8753), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513855,21 +514401,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59734] = 7, - ACTIONS(8781), 1, + [60327] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8785), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8787), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8789), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(3566), 1, + STATE(5069), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8783), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -513917,16 +514463,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59803] = 7, + [60396] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(6566), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(6564), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [60457] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(4556), 1, + STATE(4160), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -513979,21 +514583,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59872] = 7, - ACTIONS(8731), 1, + [60526] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(6580), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(6578), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [60587] = 7, + ACTIONS(748), 1, + aux_sym_end_program_statement_token1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(72), 1, + STATE(7889), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514041,21 +514703,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [59941] = 7, - ACTIONS(748), 1, + [60656] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(6570), 9, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(6568), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [60717] = 7, + ACTIONS(8735), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8739), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8741), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8743), 1, aux_sym_select_case_statement_token1, - STATE(4149), 1, + STATE(3564), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8737), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514103,21 +514823,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60010] = 7, - ACTIONS(8741), 1, - aux_sym_end_program_statement_token1, + [60786] = 7, ACTIONS(8745), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8747), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8749), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(26), 1, + STATE(284), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8743), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514165,21 +514885,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60079] = 7, - ACTIONS(8731), 1, + [60855] = 7, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(80), 1, + STATE(6154), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514227,78 +514947,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60148] = 7, + [60924] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(8293), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(93), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [60217] = 7, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5076), 1, + STATE(4542), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -514351,21 +515009,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60286] = 7, - ACTIONS(8741), 1, + [60993] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8745), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8747), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8749), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(4), 1, + STATE(6203), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8743), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514413,83 +515071,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60355] = 7, - ACTIONS(8761), 1, - aux_sym_end_program_statement_token1, + [61062] = 7, ACTIONS(8765), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, - aux_sym_select_case_statement_token1, - STATE(293), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8763), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [60424] = 7, - ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(7195), 1, + STATE(83), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514537,21 +515133,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60493] = 7, - ACTIONS(748), 1, + [61131] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(7927), 1, + STATE(244), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514599,21 +515195,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60562] = 7, - ACTIONS(5454), 1, + [61200] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(6217), 1, + STATE(283), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514661,21 +515257,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60631] = 7, - ACTIONS(748), 1, + [61269] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(7945), 1, + STATE(6200), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514723,21 +515319,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60700] = 7, - ACTIONS(5454), 1, + [61338] = 7, + ACTIONS(8775), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(8779), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(8781), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(8783), 1, aux_sym_select_case_statement_token1, - STATE(6245), 1, + STATE(4), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(8777), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514785,78 +515381,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60769] = 7, + [61407] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, - aux_sym_select_case_statement_token1, - STATE(8065), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(93), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [60838] = 7, - ACTIONS(748), 1, - aux_sym_end_program_statement_token1, ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5340), 1, + STATE(7104), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -514909,21 +515443,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60907] = 7, - ACTIONS(5454), 1, + [61476] = 7, + ACTIONS(8775), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(8779), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(8781), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(8783), 1, aux_sym_select_case_statement_token1, - STATE(6914), 1, + STATE(7), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(8777), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -514971,21 +515505,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [60976] = 7, - ACTIONS(748), 1, + [61545] = 7, + ACTIONS(8755), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8759), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8761), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8763), 1, aux_sym_select_case_statement_token1, - STATE(8186), 1, + STATE(919), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8757), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515033,21 +515567,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61045] = 7, - ACTIONS(748), 1, + [61614] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(8030), 1, + STATE(285), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515095,16 +515629,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61114] = 7, + [61683] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5067), 1, + STATE(7906), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -515157,16 +515691,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61183] = 7, + [61752] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(8342), 1, + STATE(7371), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -515219,79 +515753,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61252] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6544), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6542), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [61313] = 7, - ACTIONS(5454), 1, + [61821] = 7, + ACTIONS(8765), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(6725), 1, + STATE(57), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515339,21 +515815,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61382] = 7, - ACTIONS(5454), 1, + [61890] = 7, + ACTIONS(8735), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(8739), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(8741), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(8743), 1, aux_sym_select_case_statement_token1, - STATE(6132), 1, + STATE(3676), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(8737), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515401,79 +515877,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61451] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6568), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6566), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [61512] = 7, - ACTIONS(8719), 1, + [61959] = 7, + ACTIONS(8765), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(6205), 1, + STATE(80), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515521,21 +515939,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61581] = 7, - ACTIONS(8741), 1, + [62028] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8745), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8747), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8749), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(5), 1, + STATE(7497), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8743), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515583,16 +516001,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61650] = 7, + [62097] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(7379), 1, + STATE(8358), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -515645,21 +516063,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61719] = 7, - ACTIONS(8761), 1, + [62166] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(241), 1, + STATE(8363), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515707,21 +516125,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61788] = 7, - ACTIONS(8751), 1, + [62235] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8755), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8757), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8759), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(934), 1, + STATE(242), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8753), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515769,21 +516187,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61857] = 7, - ACTIONS(8761), 1, - aux_sym_end_program_statement_token1, + [62304] = 7, ACTIONS(8765), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(289), 1, + STATE(72), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515831,16 +516249,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61926] = 7, + [62373] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(8221), 1, + STATE(6259), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -515893,21 +516311,261 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [61995] = 7, - ACTIONS(8731), 1, + [62442] = 25, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8603), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4051), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [62547] = 25, + ACTIONS(7882), 1, + aux_sym_preproc_include_token1, + ACTIONS(7884), 1, + aux_sym_preproc_def_token1, + ACTIONS(7886), 1, + aux_sym_preproc_if_token1, + ACTIONS(7898), 1, + sym_preproc_directive, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(7906), 1, + aux_sym_function_statement_token1, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(7922), 1, + aux_sym_include_statement_token1, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7890), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8402), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4052), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [62652] = 25, + ACTIONS(8425), 1, + aux_sym_preproc_include_token1, + ACTIONS(8428), 1, + aux_sym_preproc_def_token1, + ACTIONS(8431), 1, + aux_sym_preproc_if_token1, + ACTIONS(8439), 1, + sym_preproc_directive, + ACTIONS(8444), 1, + aux_sym_module_statement_token1, + ACTIONS(8447), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(8450), 1, + aux_sym_function_statement_token1, + ACTIONS(8453), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(8456), 1, + aux_sym_implicit_statement_token3, + ACTIONS(8462), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(8465), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(8468), 1, + aux_sym_derived_type_token1, + ACTIONS(8795), 1, + aux_sym_include_statement_token1, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6890), 1, + sym_module_procedure_statement, + STATE(6943), 1, + sym_subroutine_statement, + STATE(6944), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8436), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(8471), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8434), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(8459), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4052), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [62757] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(57), 1, + STATE(6204), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -515955,21 +516613,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [62064] = 7, - ACTIONS(8781), 1, + [62826] = 7, + ACTIONS(8775), 1, aux_sym_end_program_statement_token1, - ACTIONS(8785), 1, + ACTIONS(8779), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8787), 1, + ACTIONS(8781), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8789), 1, + ACTIONS(8783), 1, aux_sym_select_case_statement_token1, - STATE(3704), 1, + STATE(5), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8783), 47, + ACTIONS(8777), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516017,21 +516675,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [62133] = 7, - ACTIONS(8731), 1, + [62895] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(81), 1, + STATE(7161), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516079,21 +516737,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [62202] = 7, - ACTIONS(748), 1, + [62964] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(7455), 1, + STATE(286), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516141,21 +516799,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [62271] = 7, - ACTIONS(8761), 1, - aux_sym_end_program_statement_token1, + [63033] = 7, ACTIONS(8765), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(244), 1, + STATE(56), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516203,261 +516861,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [62340] = 25, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8410), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(4049), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [62445] = 25, - ACTIONS(7888), 1, - aux_sym_preproc_include_token1, - ACTIONS(7890), 1, - aux_sym_preproc_def_token1, - ACTIONS(7892), 1, - aux_sym_preproc_if_token1, - ACTIONS(7904), 1, - sym_preproc_directive, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(7928), 1, - aux_sym_include_statement_token1, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7896), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8416), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(7918), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(4050), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [62550] = 25, - ACTIONS(8420), 1, - aux_sym_preproc_include_token1, - ACTIONS(8423), 1, - aux_sym_preproc_def_token1, - ACTIONS(8426), 1, - aux_sym_preproc_if_token1, - ACTIONS(8434), 1, - sym_preproc_directive, - ACTIONS(8439), 1, - aux_sym_module_statement_token1, - ACTIONS(8442), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(8445), 1, - aux_sym_function_statement_token1, - ACTIONS(8448), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(8451), 1, - aux_sym_implicit_statement_token3, - ACTIONS(8457), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(8460), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(8463), 1, - aux_sym_derived_type_token1, - ACTIONS(8791), 1, - aux_sym_include_statement_token1, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6938), 1, - sym_module_procedure_statement, - STATE(6981), 1, - sym_subroutine_statement, - STATE(6982), 1, - sym_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8431), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(8466), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8429), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(8454), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - STATE(4050), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [62655] = 7, - ACTIONS(8719), 1, + [63102] = 7, + ACTIONS(8735), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8739), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8741), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8743), 1, aux_sym_select_case_statement_token1, - STATE(6153), 1, + STATE(3713), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8737), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516505,21 +516923,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [62724] = 7, - ACTIONS(8741), 1, + [63171] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8745), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8747), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8749), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6), 1, + STATE(5336), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8743), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516567,21 +516985,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [62793] = 7, - ACTIONS(748), 1, + [63240] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(7242), 1, + STATE(243), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516629,79 +517047,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [62862] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6604), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6602), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [62923] = 7, - ACTIONS(8761), 1, + [63309] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(283), 1, + STATE(6158), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516749,21 +517109,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [62992] = 7, - ACTIONS(8731), 1, + [63378] = 7, + ACTIONS(8775), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(8779), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(8781), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(8783), 1, aux_sym_select_case_statement_token1, - STATE(56), 1, + STATE(6), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(8777), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516811,21 +517171,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63061] = 7, - ACTIONS(8781), 1, + [63447] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8785), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8787), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8789), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(3716), 1, + STATE(7076), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8783), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516873,21 +517233,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63130] = 7, - ACTIONS(8731), 1, + [63516] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(84), 1, + STATE(287), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516935,21 +517295,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63199] = 7, - ACTIONS(748), 1, + [63585] = 7, + ACTIONS(8735), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8739), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8741), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8743), 1, aux_sym_select_case_statement_token1, - STATE(6607), 1, + STATE(3572), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8737), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -516997,21 +517357,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63268] = 7, - ACTIONS(8761), 1, - aux_sym_end_program_statement_token1, + [63654] = 7, ACTIONS(8765), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(243), 1, + STATE(82), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517059,21 +517419,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63337] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [63723] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6234), 1, + STATE(6152), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517121,21 +517481,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63406] = 7, - ACTIONS(8741), 1, + [63792] = 7, + ACTIONS(8775), 1, aux_sym_end_program_statement_token1, - ACTIONS(8745), 1, + ACTIONS(8779), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8747), 1, + ACTIONS(8781), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8749), 1, + ACTIONS(8783), 1, aux_sym_select_case_statement_token1, - STATE(7), 1, + STATE(2), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8743), 47, + ACTIONS(8777), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517183,21 +517543,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63475] = 7, - ACTIONS(748), 1, + [63861] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(7354), 1, + STATE(288), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517245,21 +517605,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63544] = 7, - ACTIONS(8761), 1, + [63930] = 7, + ACTIONS(8735), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8739), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8741), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8743), 1, aux_sym_select_case_statement_token1, - STATE(281), 1, + STATE(3585), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8737), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517307,21 +517667,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63613] = 7, - ACTIONS(8781), 1, + [63999] = 7, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(8785), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8787), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8789), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(3581), 1, + STATE(6219), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8783), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517369,21 +517729,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63682] = 7, - ACTIONS(8731), 1, + [64068] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(82), 1, + STATE(6242), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517431,79 +517791,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63751] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6590), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6588), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [63812] = 7, - ACTIONS(8719), 1, + [64137] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(6141), 1, + STATE(289), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517551,21 +517853,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63881] = 7, - ACTIONS(8741), 1, + [64206] = 7, + ACTIONS(8735), 1, aux_sym_end_program_statement_token1, - ACTIONS(8745), 1, + ACTIONS(8739), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8747), 1, + ACTIONS(8741), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8749), 1, + ACTIONS(8743), 1, aux_sym_select_case_statement_token1, - STATE(3), 1, + STATE(3599), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8743), 47, + ACTIONS(8737), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517613,21 +517915,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [63950] = 7, - ACTIONS(8761), 1, + [64275] = 7, + ACTIONS(8785), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8789), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8791), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8793), 1, aux_sym_select_case_statement_token1, - STATE(294), 1, + STATE(5708), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8787), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517675,21 +517977,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64019] = 7, - ACTIONS(8781), 1, + [64344] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8785), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8787), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8789), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(3624), 1, + STATE(6167), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8783), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517737,21 +518039,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64088] = 7, - ACTIONS(8719), 1, + [64413] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(6166), 1, + STATE(290), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517799,21 +518101,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64157] = 7, - ACTIONS(8761), 1, + [64482] = 7, + ACTIONS(8735), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8739), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8741), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8743), 1, aux_sym_select_case_statement_token1, - STATE(284), 1, + STATE(3612), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8737), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517861,21 +518163,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64226] = 7, - ACTIONS(8781), 1, + [64551] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8785), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8787), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8789), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(3707), 1, + STATE(6247), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8783), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517923,21 +518225,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64295] = 7, - ACTIONS(8719), 1, + [64620] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(6222), 1, + STATE(291), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -517985,21 +518287,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64364] = 7, - ACTIONS(8761), 1, + [64689] = 7, + ACTIONS(8735), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8739), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8741), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8743), 1, aux_sym_select_case_statement_token1, - STATE(291), 1, + STATE(3628), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8737), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518047,21 +518349,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64433] = 7, - ACTIONS(8781), 1, + [64758] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8785), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8787), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8789), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(3647), 1, + STATE(6173), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8783), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518109,21 +518411,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64502] = 7, - ACTIONS(8719), 1, + [64827] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(6117), 1, + STATE(292), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518171,21 +518473,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64571] = 7, - ACTIONS(8761), 1, + [64896] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(290), 1, + STATE(6186), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518233,21 +518535,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64640] = 7, - ACTIONS(8781), 1, + [64965] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8785), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8787), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8789), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(3678), 1, + STATE(293), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8783), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518295,21 +518597,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64709] = 7, - ACTIONS(8719), 1, + [65034] = 7, + ACTIONS(8765), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(6138), 1, + STATE(59), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518357,21 +518659,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64778] = 7, - ACTIONS(8761), 1, + [65103] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(288), 1, + STATE(6180), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518419,21 +518721,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64847] = 7, - ACTIONS(8719), 1, + [65172] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(6152), 1, + STATE(294), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518481,21 +518783,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64916] = 7, - ACTIONS(8761), 1, + [65241] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(282), 1, + STATE(4153), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518543,21 +518845,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [64985] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [65310] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6210), 1, + STATE(6187), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518605,21 +518907,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65054] = 7, - ACTIONS(8761), 1, + [65379] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(287), 1, + STATE(295), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518667,21 +518969,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65123] = 7, - ACTIONS(8719), 1, + [65448] = 7, + ACTIONS(8755), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8759), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8761), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8763), 1, aux_sym_select_case_statement_token1, - STATE(6244), 1, + STATE(937), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8757), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518729,21 +519031,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65192] = 7, - ACTIONS(5454), 1, + [65517] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6186), 1, + STATE(6325), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518791,21 +519093,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65261] = 7, - ACTIONS(8731), 1, + [65586] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8735), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8737), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8739), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(58), 1, + STATE(6184), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8733), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518853,21 +519155,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65330] = 7, - ACTIONS(8761), 1, + [65655] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(292), 1, + STATE(281), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -518915,16 +519217,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65399] = 7, + [65724] = 7, ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6683), 1, + STATE(6689), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, @@ -518977,21 +519279,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65468] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [65793] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6125), 1, + STATE(6229), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519039,21 +519341,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65537] = 7, - ACTIONS(8761), 1, + [65862] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(295), 1, + STATE(296), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519101,21 +519403,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65606] = 7, - ACTIONS(8719), 1, + [65931] = 7, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(6136), 1, + STATE(4590), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519163,79 +519465,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65675] = 3, + [66000] = 7, + ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(8729), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(8731), 1, + aux_sym_select_case_statement_token1, + STATE(6168), 1, + sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6564), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6562), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, + ACTIONS(8725), 47, + aux_sym_defined_io_procedure_token1, + aux_sym_defined_io_procedure_token2, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token5, aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [65736] = 7, - ACTIONS(8761), 1, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + aux_sym_stop_statement_token1, + aux_sym_stop_statement_token2, + aux_sym_keyword_statement_token2, + aux_sym_keyword_statement_token3, + aux_sym_data_statement_token1, + aux_sym__inline_if_statement_token1, + aux_sym_end_if_statement_token1, + aux_sym_elseif_clause_token2, + aux_sym_block_construct_token1, + aux_sym_format_statement_token1, + aux_sym_inquire_statement_token1, + aux_sym_entry_statement_token1, + aux_sym_null_literal_token1, + aux_sym_coarray_statement_token1, + aux_sym_coarray_statement_token2, + aux_sym_coarray_statement_token6, + aux_sym_coarray_statement_token8, + aux_sym_coarray_statement_token11, + aux_sym_coarray_statement_token12, + aux_sym_coarray_team_statement_token1, + aux_sym_coarray_critical_statement_token1, + aux_sym_identifier_token1, + [66069] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(296), 1, + STATE(297), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519283,21 +519589,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65805] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [66138] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6145), 1, + STATE(6249), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519345,21 +519651,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65874] = 7, - ACTIONS(8761), 1, + [66207] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(297), 1, + STATE(298), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519407,21 +519713,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [65943] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [66276] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6156), 1, + STATE(6198), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519469,21 +519775,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66012] = 7, - ACTIONS(8761), 1, + [66345] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(298), 1, + STATE(299), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519531,21 +519837,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66081] = 7, - ACTIONS(8719), 1, + [66414] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6157), 1, + STATE(6835), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519593,21 +519899,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66150] = 7, - ACTIONS(8761), 1, + [66483] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(299), 1, + STATE(6221), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519655,21 +519961,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66219] = 7, - ACTIONS(8719), 1, + [66552] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(6158), 1, + STATE(300), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519717,21 +520023,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66288] = 7, - ACTIONS(8761), 1, + [66621] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(300), 1, + STATE(6234), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519779,21 +520085,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66357] = 7, - ACTIONS(8719), 1, + [66690] = 7, + ACTIONS(8745), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(8749), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8751), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8753), 1, aux_sym_select_case_statement_token1, - STATE(6165), 1, + STATE(282), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8747), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519841,21 +520147,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66426] = 7, - ACTIONS(8761), 1, + [66759] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8765), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8767), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8769), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(286), 1, + STATE(6188), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8763), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -519903,145 +520209,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66495] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [66828] = 7, ACTIONS(8723), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, - aux_sym_select_case_statement_token1, - STATE(6168), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8721), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [66564] = 7, - ACTIONS(8719), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, - aux_sym__standalone_type_qualifier_token4, ACTIONS(8727), 1, - aux_sym_select_case_statement_token1, - STATE(6169), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8721), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [66633] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6170), 1, + STATE(6117), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520089,83 +520271,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66702] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [66897] = 7, ACTIONS(8723), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, - aux_sym_select_case_statement_token1, - STATE(6171), 1, - sym_identifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8721), 47, - aux_sym_defined_io_procedure_token1, - aux_sym_defined_io_procedure_token2, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token5, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token3, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - aux_sym_stop_statement_token1, - aux_sym_stop_statement_token2, - aux_sym_keyword_statement_token2, - aux_sym_keyword_statement_token3, - aux_sym_data_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym_end_if_statement_token1, - aux_sym_elseif_clause_token2, - aux_sym_block_construct_token1, - aux_sym_format_statement_token1, - aux_sym_inquire_statement_token1, - aux_sym_entry_statement_token1, - aux_sym_null_literal_token1, - aux_sym_coarray_statement_token1, - aux_sym_coarray_statement_token2, - aux_sym_coarray_statement_token6, - aux_sym_coarray_statement_token8, - aux_sym_coarray_statement_token11, - aux_sym_coarray_statement_token12, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - aux_sym_identifier_token1, - [66771] = 7, - ACTIONS(8771), 1, aux_sym_end_program_statement_token1, - ACTIONS(8775), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8777), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8779), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(5678), 1, + STATE(6118), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8773), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520213,21 +520333,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66840] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [66966] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6173), 1, + STATE(6119), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520275,21 +520395,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66909] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67035] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6174), 1, + STATE(6120), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520337,21 +520457,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [66978] = 7, - ACTIONS(8719), 1, + [67104] = 7, + ACTIONS(6174), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(6182), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(6184), 1, aux_sym_select_case_statement_token1, - STATE(6175), 1, + ACTIONS(8733), 1, + aux_sym__intrinsic_type_token4, + STATE(4298), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(6176), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520399,21 +520519,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67047] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67173] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6176), 1, + STATE(6121), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520461,21 +520581,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67116] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67242] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6177), 1, + STATE(6122), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520523,21 +520643,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67185] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67311] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6178), 1, + STATE(6123), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520585,21 +520705,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67254] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67380] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6179), 1, + STATE(6124), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520647,21 +520767,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67323] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67449] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6180), 1, + STATE(6125), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520709,21 +520829,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67392] = 7, - ACTIONS(8719), 1, + [67518] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6181), 1, + STATE(8350), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520771,21 +520891,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67461] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67587] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6182), 1, + STATE(6127), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520833,21 +520953,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67530] = 7, - ACTIONS(8781), 1, + [67656] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(8785), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8787), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8789), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(3616), 1, + STATE(6128), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8783), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520895,21 +521015,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67599] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67725] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6183), 1, + STATE(6129), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -520957,21 +521077,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67668] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67794] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6160), 1, + STATE(6130), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521019,21 +521139,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67737] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67863] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6184), 1, + STATE(6131), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521081,21 +521201,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67806] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [67932] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6185), 1, + STATE(6132), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521143,21 +521263,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67875] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [68001] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6115), 1, + STATE(6133), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521205,21 +521325,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [67944] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [68070] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6248), 1, + STATE(6134), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521267,21 +521387,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68013] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [68139] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6188), 1, + STATE(6135), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521329,21 +521449,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68082] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [68208] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6189), 1, + STATE(6136), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521391,21 +521511,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68151] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [68277] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6190), 1, + STATE(6137), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521453,21 +521573,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68220] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [68346] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6191), 1, + STATE(6138), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521515,21 +521635,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68289] = 7, - ACTIONS(8719), 1, + [68415] = 7, + ACTIONS(748), 1, aux_sym_end_program_statement_token1, - ACTIONS(8723), 1, + ACTIONS(1396), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(1398), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(4663), 1, aux_sym_select_case_statement_token1, - STATE(6192), 1, + STATE(7842), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(93), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521577,21 +521697,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68358] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [68484] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6193), 1, + STATE(6139), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521639,21 +521759,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68427] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [68553] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6194), 1, + STATE(6140), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521701,21 +521821,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68496] = 7, - ACTIONS(8719), 1, - aux_sym_end_program_statement_token1, + [68622] = 7, ACTIONS(8723), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8725), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(8727), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6195), 1, + STATE(6141), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8721), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521763,79 +521883,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68565] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6572), 9, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(6570), 43, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - [68626] = 7, - ACTIONS(748), 1, + [68691] = 7, + ACTIONS(6174), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(6182), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(6184), 1, aux_sym_select_case_statement_token1, - STATE(5345), 1, + ACTIONS(8733), 1, + aux_sym__intrinsic_type_token4, + STATE(4311), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(6176), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521883,21 +521945,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68695] = 7, - ACTIONS(748), 1, + [68760] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(6755), 1, + STATE(6142), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -521945,21 +522007,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68764] = 7, - ACTIONS(748), 1, + [68829] = 7, + ACTIONS(8723), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(8727), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(8729), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(8731), 1, aux_sym_select_case_statement_token1, - STATE(3873), 1, + STATE(6143), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(8725), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -522007,21 +522069,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68833] = 7, - ACTIONS(748), 1, + [68898] = 7, + ACTIONS(5454), 1, aux_sym_end_program_statement_token1, - ACTIONS(1398), 1, + ACTIONS(5458), 1, aux_sym__intrinsic_type_token4, - ACTIONS(1400), 1, + ACTIONS(5460), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(4685), 1, + ACTIONS(5462), 1, aux_sym_select_case_statement_token1, - STATE(8349), 1, + STATE(6492), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(93), 47, + ACTIONS(5456), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -522069,21 +522131,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68902] = 7, - ACTIONS(5454), 1, + [68967] = 7, + ACTIONS(8765), 1, aux_sym_end_program_statement_token1, - ACTIONS(5458), 1, + ACTIONS(8769), 1, aux_sym__intrinsic_type_token4, - ACTIONS(5460), 1, + ACTIONS(8771), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(5462), 1, + ACTIONS(8773), 1, aux_sym_select_case_statement_token1, - STATE(4589), 1, + STATE(84), 1, sym_identifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5456), 47, + ACTIONS(8767), 47, aux_sym_defined_io_procedure_token1, aux_sym_defined_io_procedure_token2, aux_sym_procedure_attributes_token3, @@ -522131,65 +522193,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_coarray_team_statement_token1, aux_sym_coarray_critical_statement_token1, aux_sym_identifier_token1, - [68971] = 26, - ACTIONS(7908), 1, + [69036] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8418), 1, + ACTIONS(8404), 1, aux_sym_end_program_statement_token2, - ACTIONS(8794), 1, + ACTIONS(8798), 1, aux_sym_preproc_include_token1, - ACTIONS(8796), 1, + ACTIONS(8800), 1, aux_sym_preproc_def_token1, - ACTIONS(8798), 1, - aux_sym_preproc_if_token1, ACTIONS(8802), 1, + aux_sym_preproc_if_token1, + ACTIONS(8806), 1, sym_preproc_directive, - ACTIONS(8804), 1, + ACTIONS(8808), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6967), 1, + STATE(6923), 1, sym_module_procedure_statement, - STATE(7010), 1, + STATE(6972), 1, sym_subroutine_statement, - STATE(7011), 1, + STATE(6973), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8416), 2, + ACTIONS(8402), 2, aux_sym_preproc_if_token2, aux_sym_end_program_statement_token1, - ACTIONS(8800), 2, + ACTIONS(8804), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -522210,65 +522272,65 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [69076] = 26, - ACTIONS(7908), 1, + [69141] = 26, + ACTIONS(8442), 1, + aux_sym_end_program_statement_token2, + ACTIONS(8444), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(8447), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(8450), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(8453), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(8456), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(8462), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(8465), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(8468), 1, aux_sym_derived_type_token1, - ACTIONS(8412), 1, - aux_sym_end_program_statement_token2, - ACTIONS(8794), 1, + ACTIONS(8810), 1, aux_sym_preproc_include_token1, - ACTIONS(8796), 1, + ACTIONS(8813), 1, aux_sym_preproc_def_token1, - ACTIONS(8798), 1, + ACTIONS(8816), 1, aux_sym_preproc_if_token1, - ACTIONS(8802), 1, + ACTIONS(8822), 1, sym_preproc_directive, - ACTIONS(8804), 1, + ACTIONS(8825), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6967), 1, + STATE(6923), 1, sym_module_procedure_statement, - STATE(7010), 1, + STATE(6972), 1, sym_subroutine_statement, - STATE(7011), 1, + STATE(6973), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8410), 2, + ACTIONS(8434), 2, aux_sym_preproc_if_token2, aux_sym_end_program_statement_token1, - ACTIONS(8800), 2, + ACTIONS(8819), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(8471), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8459), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -522276,7 +522338,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4143), 12, + STATE(4145), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -522289,65 +522351,65 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [69181] = 26, - ACTIONS(8437), 1, - aux_sym_end_program_statement_token2, - ACTIONS(8439), 1, + [69246] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(8442), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(8445), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(8448), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(8451), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(8457), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8460), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(8463), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8806), 1, + ACTIONS(8605), 1, + aux_sym_end_program_statement_token2, + ACTIONS(8798), 1, aux_sym_preproc_include_token1, - ACTIONS(8809), 1, + ACTIONS(8800), 1, aux_sym_preproc_def_token1, - ACTIONS(8812), 1, + ACTIONS(8802), 1, aux_sym_preproc_if_token1, - ACTIONS(8818), 1, + ACTIONS(8806), 1, sym_preproc_directive, - ACTIONS(8821), 1, + ACTIONS(8808), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6967), 1, + STATE(6923), 1, sym_module_procedure_statement, - STATE(7010), 1, + STATE(6972), 1, sym_subroutine_statement, - STATE(7011), 1, + STATE(6973), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8429), 2, + ACTIONS(8603), 2, aux_sym_preproc_if_token2, aux_sym_end_program_statement_token1, - ACTIONS(8815), 2, + ACTIONS(8804), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(8466), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8454), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -522355,7 +522417,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4145), 12, + STATE(4144), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -522368,45 +522430,108 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [69286] = 13, - ACTIONS(8828), 1, + [69351] = 18, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8836), 1, + ACTIONS(8844), 1, + aux_sym_logical_expression_token1, + ACTIONS(8846), 1, + aux_sym_logical_expression_token2, + ACTIONS(8850), 1, anon_sym_SLASH_SLASH, - ACTIONS(8838), 1, + ACTIONS(8852), 1, anon_sym_STAR_STAR, - STATE(2957), 1, + STATE(2914), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8830), 2, + ACTIONS(8834), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8832), 2, + ACTIONS(8836), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3932), 2, + ACTIONS(8842), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8848), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8826), 5, + ACTIONS(8830), 3, aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8840), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + ACTIONS(8828), 17, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + anon_sym_LBRACK, + [69439] = 8, + ACTIONS(8838), 1, + anon_sym_PERCENT, + STATE(2914), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8856), 7, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_GT, anon_sym_LT, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8824), 31, + ACTIONS(8854), 36, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -522432,179 +522557,292 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_LBRACK, - [69364] = 26, - ACTIONS(8429), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8437), 1, - aux_sym_end_function_statement_token1, - ACTIONS(8439), 1, - aux_sym_module_statement_token1, - ACTIONS(8442), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(8445), 1, - aux_sym_function_statement_token1, - ACTIONS(8448), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(8451), 1, - aux_sym_implicit_statement_token3, - ACTIONS(8457), 1, + [69507] = 13, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8850), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8852), 1, + anon_sym_STAR_STAR, + STATE(2914), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8834), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8836), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8860), 5, + aux_sym_preproc_elif_token1, + anon_sym_GT, + anon_sym_LT, aux_sym__intrinsic_type_token4, - ACTIONS(8460), 1, + anon_sym_DOT, + ACTIONS(8858), 31, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token8, - ACTIONS(8463), 1, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - ACTIONS(8840), 1, - aux_sym_preproc_include_token1, - ACTIONS(8843), 1, - aux_sym_preproc_def_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_LBRACK, + [69585] = 16, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, ACTIONS(8846), 1, - aux_sym_preproc_if_token1, + aux_sym_logical_expression_token2, + ACTIONS(8850), 1, + anon_sym_SLASH_SLASH, ACTIONS(8852), 1, - sym_preproc_directive, - ACTIONS(8855), 1, - aux_sym_include_statement_token1, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6956), 1, - sym_module_procedure_statement, - STATE(7003), 1, - sym_subroutine_statement, - STATE(7004), 1, - sym_function_statement, + anon_sym_STAR_STAR, + STATE(2914), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(8466), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(8454), 7, + ACTIONS(8834), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(8842), 2, + anon_sym_GT, + anon_sym_LT, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8864), 3, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8840), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + ACTIONS(8862), 20, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4147), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [69468] = 26, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, - aux_sym_function_statement_token1, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + aux_sym_derived_type_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + [69669] = 15, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8850), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8852), 1, + anon_sym_STAR_STAR, + STATE(2914), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8834), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(8842), 2, + anon_sym_GT, + anon_sym_LT, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8864), 3, + aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + anon_sym_DOT, + ACTIONS(8840), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + ACTIONS(8862), 21, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - ACTIONS(8410), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8412), 1, - aux_sym_end_submodule_statement_token1, - ACTIONS(8858), 1, - aux_sym_preproc_include_token1, - ACTIONS(8860), 1, - aux_sym_preproc_def_token1, - ACTIONS(8862), 1, - aux_sym_preproc_if_token1, - ACTIONS(8866), 1, - sym_preproc_directive, - ACTIONS(8868), 1, - aux_sym_include_statement_token1, - STATE(5157), 1, - sym__intrinsic_type, - STATE(6920), 1, - sym_module_procedure_statement, - STATE(6959), 1, - sym_subroutine_statement, - STATE(6960), 1, - sym_function_statement, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + [69751] = 15, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8850), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8852), 1, + anon_sym_STAR_STAR, + STATE(2914), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8864), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5129), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8834), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(8842), 2, + anon_sym_GT, + anon_sym_LT, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8868), 3, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8840), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + ACTIONS(8866), 21, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4150), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [69572] = 26, - ACTIONS(7910), 1, + aux_sym_derived_type_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + [69833] = 26, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8870), 1, aux_sym_preproc_if_token2, @@ -522614,15 +522852,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(8878), 1, sym_preproc_comment, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -522630,36 +522868,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8248), 3, + STATE(8318), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4184), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4181), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -522667,64 +522905,133 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [69676] = 26, - ACTIONS(7908), 1, + [69937] = 17, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8844), 1, + aux_sym_logical_expression_token1, + ACTIONS(8846), 1, + aux_sym_logical_expression_token2, + ACTIONS(8850), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8852), 1, + anon_sym_STAR_STAR, + STATE(2914), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8834), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(8842), 2, + anon_sym_GT, + anon_sym_LT, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8864), 3, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8840), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + ACTIONS(8862), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + [70023] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8416), 1, + ACTIONS(8603), 1, aux_sym_end_program_statement_token1, - ACTIONS(8418), 1, + ACTIONS(8605), 1, aux_sym_end_submodule_statement_token1, - ACTIONS(8858), 1, + ACTIONS(8882), 1, aux_sym_preproc_include_token1, - ACTIONS(8860), 1, + ACTIONS(8884), 1, aux_sym_preproc_def_token1, - ACTIONS(8862), 1, + ACTIONS(8886), 1, aux_sym_preproc_if_token1, - ACTIONS(8866), 1, + ACTIONS(8890), 1, sym_preproc_directive, - ACTIONS(8868), 1, + ACTIONS(8892), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6920), 1, + STATE(6877), 1, sym_module_procedure_statement, - STATE(6959), 1, + STATE(6916), 1, sym_subroutine_statement, - STATE(6960), 1, + STATE(6917), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8864), 2, + ACTIONS(8888), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -522732,7 +523039,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4152), 12, + STATE(4172), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -522745,64 +523052,64 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [69780] = 26, - ACTIONS(7908), 1, + [70127] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8410), 1, + ACTIONS(8402), 1, aux_sym_end_program_statement_token1, - ACTIONS(8412), 1, + ACTIONS(8404), 1, aux_sym_end_module_procedure_statement_token1, - ACTIONS(8884), 1, + ACTIONS(8894), 1, aux_sym_preproc_include_token1, - ACTIONS(8886), 1, + ACTIONS(8896), 1, aux_sym_preproc_def_token1, - ACTIONS(8888), 1, + ACTIONS(8898), 1, aux_sym_preproc_if_token1, - ACTIONS(8892), 1, + ACTIONS(8902), 1, sym_preproc_directive, - ACTIONS(8894), 1, + ACTIONS(8904), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6977), 1, + STATE(6938), 1, sym_module_procedure_statement, - STATE(7014), 1, + STATE(6982), 1, sym_subroutine_statement, - STATE(7015), 1, + STATE(6983), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8890), 2, + ACTIONS(8900), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -522810,7 +523117,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4154), 12, + STATE(4170), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -522823,64 +523130,129 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [69884] = 26, - ACTIONS(8429), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8437), 1, - aux_sym_end_submodule_statement_token1, - ACTIONS(8439), 1, + [70231] = 13, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8850), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8852), 1, + anon_sym_STAR_STAR, + STATE(2914), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8834), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8836), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8908), 5, + aux_sym_preproc_elif_token1, + anon_sym_GT, + anon_sym_LT, + aux_sym__intrinsic_type_token4, + anon_sym_DOT, + ACTIONS(8906), 31, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_LBRACK, + [70309] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(8442), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(8445), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(8448), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(8451), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(8457), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8460), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(8463), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8896), 1, + ACTIONS(8402), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8404), 1, + aux_sym_end_function_statement_token1, + ACTIONS(8910), 1, aux_sym_preproc_include_token1, - ACTIONS(8899), 1, + ACTIONS(8912), 1, aux_sym_preproc_def_token1, - ACTIONS(8902), 1, + ACTIONS(8914), 1, aux_sym_preproc_if_token1, - ACTIONS(8908), 1, + ACTIONS(8918), 1, sym_preproc_directive, - ACTIONS(8911), 1, + ACTIONS(8920), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6920), 1, + STATE(6912), 1, sym_module_procedure_statement, - STATE(6959), 1, + STATE(6965), 1, sym_subroutine_statement, - STATE(6960), 1, + STATE(6966), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8905), 2, + ACTIONS(8916), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(8466), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8454), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -522888,7 +523260,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4152), 12, + STATE(4178), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -522901,64 +523273,149 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [69988] = 26, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, + [70413] = 20, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8844), 1, + aux_sym_logical_expression_token1, + ACTIONS(8846), 1, + aux_sym_logical_expression_token2, + ACTIONS(8850), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8852), 1, + anon_sym_STAR_STAR, + ACTIONS(8926), 1, + anon_sym_LBRACK, + STATE(2914), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8834), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(8842), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8848), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(8924), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8840), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + ACTIONS(8922), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + [70505] = 26, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8416), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8418), 1, - aux_sym_end_module_statement_token1, - ACTIONS(8914), 1, - aux_sym_preproc_include_token1, - ACTIONS(8916), 1, - aux_sym_preproc_def_token1, - ACTIONS(8918), 1, - aux_sym_preproc_if_token1, - ACTIONS(8922), 1, - sym_preproc_directive, - ACTIONS(8924), 1, - aux_sym_include_statement_token1, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8872), 1, + aux_sym_preproc_else_token1, + ACTIONS(8874), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8880), 1, + aux_sym_import_statement_token1, + ACTIONS(8928), 1, + aux_sym_preproc_if_token2, + ACTIONS(8930), 1, + sym_preproc_comment, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6890), 1, - sym_module_procedure_statement, - STATE(6950), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6951), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8920), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(8876), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(8159), 3, + sym_preproc_else_in_interface, + sym_preproc_elif_in_interface, + sym_preproc_elifdef_in_interface, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4197), 6, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_preproc_if_in_interface_repeat1, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -522966,155 +523423,214 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4170), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [70092] = 26, - ACTIONS(7908), 1, + [70609] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8416), 1, + ACTIONS(8402), 1, aux_sym_end_program_statement_token1, - ACTIONS(8418), 1, - aux_sym_end_module_procedure_statement_token1, - ACTIONS(8884), 1, + ACTIONS(8404), 1, + aux_sym_end_program_statement_token2, + ACTIONS(8932), 1, aux_sym_preproc_include_token1, - ACTIONS(8886), 1, + ACTIONS(8934), 1, aux_sym_preproc_def_token1, - ACTIONS(8888), 1, + ACTIONS(8936), 1, aux_sym_preproc_if_token1, - ACTIONS(8892), 1, + ACTIONS(8940), 1, sym_preproc_directive, - ACTIONS(8894), 1, + ACTIONS(8942), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6977), 1, + STATE(6525), 1, sym_module_procedure_statement, - STATE(7014), 1, + STATE(6884), 1, sym_subroutine_statement, - STATE(7015), 1, + STATE(6885), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8890), 2, + ACTIONS(8938), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4164), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [70713] = 20, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8844), 1, + aux_sym_logical_expression_token1, + ACTIONS(8846), 1, + aux_sym_logical_expression_token2, + ACTIONS(8850), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8852), 1, + anon_sym_STAR_STAR, + ACTIONS(8926), 1, + anon_sym_LBRACK, + STATE(2914), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8834), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(8842), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8848), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(8946), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8840), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + ACTIONS(8944), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4167), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [70196] = 26, - ACTIONS(7908), 1, + aux_sym_derived_type_token1, + [70805] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8410), 1, + ACTIONS(8603), 1, aux_sym_end_program_statement_token1, - ACTIONS(8412), 1, - aux_sym_end_subroutine_statement_token1, - ACTIONS(8926), 1, + ACTIONS(8605), 1, + aux_sym_end_module_procedure_statement_token1, + ACTIONS(8894), 1, aux_sym_preproc_include_token1, - ACTIONS(8928), 1, + ACTIONS(8896), 1, aux_sym_preproc_def_token1, - ACTIONS(8930), 1, + ACTIONS(8898), 1, aux_sym_preproc_if_token1, - ACTIONS(8934), 1, + ACTIONS(8902), 1, sym_preproc_directive, - ACTIONS(8936), 1, + ACTIONS(8904), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6947), 1, + STATE(6938), 1, sym_module_procedure_statement, - STATE(6992), 1, + STATE(6982), 1, sym_subroutine_statement, - STATE(6993), 1, + STATE(6983), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8932), 2, + ACTIONS(8900), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -523122,7 +523638,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4166), 12, + STATE(4156), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -523135,64 +523651,64 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [70300] = 26, - ACTIONS(8429), 1, + [70909] = 26, + ACTIONS(8434), 1, aux_sym_end_program_statement_token1, - ACTIONS(8437), 1, - aux_sym_end_subroutine_statement_token1, - ACTIONS(8439), 1, - aux_sym_module_statement_token1, ACTIONS(8442), 1, + aux_sym_end_program_statement_token2, + ACTIONS(8444), 1, + aux_sym_module_statement_token1, + ACTIONS(8447), 1, aux_sym_subroutine_statement_token1, - ACTIONS(8445), 1, + ACTIONS(8450), 1, aux_sym_function_statement_token1, - ACTIONS(8448), 1, + ACTIONS(8453), 1, aux_sym_procedure_attributes_token1, - ACTIONS(8451), 1, + ACTIONS(8456), 1, aux_sym_implicit_statement_token3, - ACTIONS(8457), 1, + ACTIONS(8462), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8460), 1, + ACTIONS(8465), 1, aux_sym__intrinsic_type_token8, - ACTIONS(8463), 1, + ACTIONS(8468), 1, aux_sym_derived_type_token1, - ACTIONS(8938), 1, + ACTIONS(8948), 1, aux_sym_preproc_include_token1, - ACTIONS(8941), 1, + ACTIONS(8951), 1, aux_sym_preproc_def_token1, - ACTIONS(8944), 1, + ACTIONS(8954), 1, aux_sym_preproc_if_token1, - ACTIONS(8950), 1, + ACTIONS(8960), 1, sym_preproc_directive, - ACTIONS(8953), 1, + ACTIONS(8963), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6947), 1, + STATE(6525), 1, sym_module_procedure_statement, - STATE(6992), 1, + STATE(6884), 1, sym_subroutine_statement, - STATE(6993), 1, + STATE(6885), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8947), 2, + ACTIONS(8957), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(8466), 4, + ACTIONS(8471), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8454), 7, + ACTIONS(8459), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -523200,7 +523716,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4156), 12, + STATE(4164), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -523213,64 +523729,64 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [70404] = 26, - ACTIONS(7908), 1, + [71013] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8410), 1, + ACTIONS(8603), 1, aux_sym_end_program_statement_token1, - ACTIONS(8412), 1, - aux_sym_end_module_statement_token1, - ACTIONS(8914), 1, + ACTIONS(8605), 1, + aux_sym_end_function_statement_token1, + ACTIONS(8910), 1, aux_sym_preproc_include_token1, - ACTIONS(8916), 1, + ACTIONS(8912), 1, aux_sym_preproc_def_token1, - ACTIONS(8918), 1, + ACTIONS(8914), 1, aux_sym_preproc_if_token1, - ACTIONS(8922), 1, + ACTIONS(8918), 1, sym_preproc_directive, - ACTIONS(8924), 1, + ACTIONS(8920), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6890), 1, + STATE(6912), 1, sym_module_procedure_statement, - STATE(6950), 1, + STATE(6965), 1, sym_subroutine_statement, - STATE(6951), 1, + STATE(6966), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8920), 2, + ACTIONS(8916), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -523278,7 +523794,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4153), 12, + STATE(4158), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -523291,387 +523807,42 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [70508] = 20, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8836), 1, - anon_sym_SLASH_SLASH, - ACTIONS(8838), 1, - anon_sym_STAR_STAR, - ACTIONS(8964), 1, - aux_sym_logical_expression_token1, - ACTIONS(8966), 1, - aux_sym_logical_expression_token2, - ACTIONS(8970), 1, - anon_sym_LBRACK, - STATE(2957), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(8958), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(8962), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(8968), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8960), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - ACTIONS(8956), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [70600] = 11, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8838), 1, - anon_sym_STAR_STAR, - STATE(2957), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8832), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8974), 5, - aux_sym_preproc_elif_token1, - anon_sym_GT, - anon_sym_LT, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8972), 34, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_LBRACK, - [70674] = 10, - ACTIONS(8828), 1, + [71117] = 9, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, ACTIONS(8838), 1, - anon_sym_STAR_STAR, - STATE(2957), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8974), 7, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8972), 34, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_LBRACK, - [70746] = 13, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, anon_sym_PERCENT, - ACTIONS(8836), 1, - anon_sym_SLASH_SLASH, - ACTIONS(8838), 1, - anon_sym_STAR_STAR, - STATE(2957), 1, + STATE(2914), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8832), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8978), 5, + ACTIONS(8830), 7, aux_sym_preproc_elif_token1, - anon_sym_GT, - anon_sym_LT, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8976), 31, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_LBRACK, - [70824] = 16, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8836), 1, - anon_sym_SLASH_SLASH, - ACTIONS(8838), 1, - anon_sym_STAR_STAR, - ACTIONS(8966), 1, - aux_sym_logical_expression_token2, - STATE(2957), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8832), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(8962), 2, anon_sym_GT, anon_sym_LT, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8982), 3, - aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8960), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - ACTIONS(8980), 20, + ACTIONS(8828), 35, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_LBRACK, - [70908] = 15, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8836), 1, - anon_sym_SLASH_SLASH, - ACTIONS(8838), 1, - anon_sym_STAR_STAR, - STATE(2957), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(8962), 2, - anon_sym_GT, - anon_sym_LT, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8982), 3, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8960), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - ACTIONS(8980), 21, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, aux_sym_module_procedure_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, @@ -523687,49 +523858,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - anon_sym_LBRACK, - [70990] = 17, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8836), 1, - anon_sym_SLASH_SLASH, - ACTIONS(8838), 1, - anon_sym_STAR_STAR, - ACTIONS(8964), 1, - aux_sym_logical_expression_token1, - ACTIONS(8966), 1, - aux_sym_logical_expression_token2, - STATE(2957), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(8962), 2, - anon_sym_GT, - anon_sym_LT, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8982), 3, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8960), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -523737,154 +523865,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - ACTIONS(8980), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_LBRACK, - [71076] = 18, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8836), 1, anon_sym_SLASH_SLASH, - ACTIONS(8838), 1, anon_sym_STAR_STAR, - ACTIONS(8964), 1, - aux_sym_logical_expression_token1, - ACTIONS(8966), 1, - aux_sym_logical_expression_token2, - STATE(2957), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(8962), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(8968), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8974), 3, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8960), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - ACTIONS(8972), 17, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, anon_sym_LBRACK, - [71164] = 26, - ACTIONS(7908), 1, + [71187] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8416), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8418), 1, - aux_sym_end_subroutine_statement_token1, - ACTIONS(8926), 1, + ACTIONS(8798), 1, aux_sym_preproc_include_token1, - ACTIONS(8928), 1, + ACTIONS(8800), 1, aux_sym_preproc_def_token1, - ACTIONS(8930), 1, + ACTIONS(8802), 1, aux_sym_preproc_if_token1, - ACTIONS(8934), 1, + ACTIONS(8806), 1, sym_preproc_directive, - ACTIONS(8936), 1, + ACTIONS(8808), 1, aux_sym_include_statement_token1, + ACTIONS(8966), 1, + aux_sym_preproc_if_token2, + ACTIONS(8968), 1, + sym_preproc_comment, STATE(5157), 1, sym__intrinsic_type, - STATE(6947), 1, + STATE(6923), 1, sym_module_procedure_statement, - STATE(6992), 1, + STATE(6972), 1, sym_subroutine_statement, - STATE(6993), 1, + STATE(6973), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8932), 2, + ACTIONS(8804), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -523892,7 +523933,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4156), 12, + STATE(4188), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -523905,64 +523946,64 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [71268] = 26, - ACTIONS(8429), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8437), 1, - aux_sym_end_module_procedure_statement_token1, - ACTIONS(8439), 1, + [71291] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(8442), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(8445), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(8448), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(8451), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(8457), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8460), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(8463), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8984), 1, + ACTIONS(8603), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8605), 1, + aux_sym_end_subroutine_statement_token1, + ACTIONS(8970), 1, aux_sym_preproc_include_token1, - ACTIONS(8987), 1, + ACTIONS(8972), 1, aux_sym_preproc_def_token1, - ACTIONS(8990), 1, + ACTIONS(8974), 1, aux_sym_preproc_if_token1, - ACTIONS(8996), 1, + ACTIONS(8978), 1, sym_preproc_directive, - ACTIONS(8999), 1, + ACTIONS(8980), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6977), 1, + STATE(6903), 1, sym_module_procedure_statement, - STATE(7014), 1, + STATE(6954), 1, sym_subroutine_statement, - STATE(7015), 1, + STATE(6955), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8993), 2, + ACTIONS(8976), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(8466), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8454), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -523970,7 +524011,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4167), 12, + STATE(4180), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -523983,77 +524024,64 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [71372] = 26, - ACTIONS(7910), 1, + [71395] = 26, + ACTIONS(8434), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8442), 1, + aux_sym_end_submodule_statement_token1, + ACTIONS(8444), 1, + aux_sym_module_statement_token1, + ACTIONS(8447), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(8450), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(8453), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(8456), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(8462), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(8465), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(8468), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8872), 1, - aux_sym_preproc_else_token1, - ACTIONS(8874), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, - aux_sym_import_statement_token1, - ACTIONS(9002), 1, - aux_sym_preproc_if_token2, - ACTIONS(9004), 1, - sym_preproc_comment, - STATE(3279), 1, - sym__procedure_kind, + ACTIONS(8982), 1, + aux_sym_preproc_include_token1, + ACTIONS(8985), 1, + aux_sym_preproc_def_token1, + ACTIONS(8988), 1, + aux_sym_preproc_if_token1, + ACTIONS(8994), 1, + sym_preproc_directive, + ACTIONS(8997), 1, + aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6877), 1, + sym_module_procedure_statement, + STATE(6916), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6917), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8876), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + ACTIONS(8991), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7931), 3, - sym_preproc_else_in_interface, - sym_preproc_elif_in_interface, - sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(8471), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4190), 6, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(8459), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -524061,64 +524089,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [71476] = 26, - ACTIONS(8429), 1, + STATE(4169), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [71499] = 26, + ACTIONS(8434), 1, aux_sym_end_program_statement_token1, - ACTIONS(8437), 1, - aux_sym_end_program_statement_token2, - ACTIONS(8439), 1, - aux_sym_module_statement_token1, ACTIONS(8442), 1, + aux_sym_end_module_procedure_statement_token1, + ACTIONS(8444), 1, + aux_sym_module_statement_token1, + ACTIONS(8447), 1, aux_sym_subroutine_statement_token1, - ACTIONS(8445), 1, + ACTIONS(8450), 1, aux_sym_function_statement_token1, - ACTIONS(8448), 1, + ACTIONS(8453), 1, aux_sym_procedure_attributes_token1, - ACTIONS(8451), 1, + ACTIONS(8456), 1, aux_sym_implicit_statement_token3, - ACTIONS(8457), 1, + ACTIONS(8462), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8460), 1, + ACTIONS(8465), 1, aux_sym__intrinsic_type_token8, - ACTIONS(8463), 1, + ACTIONS(8468), 1, aux_sym_derived_type_token1, - ACTIONS(9006), 1, + ACTIONS(9000), 1, aux_sym_preproc_include_token1, - ACTIONS(9009), 1, + ACTIONS(9003), 1, aux_sym_preproc_def_token1, - ACTIONS(9012), 1, + ACTIONS(9006), 1, aux_sym_preproc_if_token1, - ACTIONS(9018), 1, + ACTIONS(9012), 1, sym_preproc_directive, - ACTIONS(9021), 1, + ACTIONS(9015), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6611), 1, + STATE(6938), 1, sym_module_procedure_statement, - STATE(6929), 1, + STATE(6982), 1, sym_subroutine_statement, - STATE(6930), 1, + STATE(6983), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9015), 2, + ACTIONS(9009), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(8466), 4, + ACTIONS(8471), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8454), 7, + ACTIONS(8459), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -524126,7 +524167,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4169), 12, + STATE(4170), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -524139,64 +524180,64 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [71580] = 26, - ACTIONS(8429), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8437), 1, - aux_sym_end_module_statement_token1, - ACTIONS(8439), 1, + [71603] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(8442), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(8445), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(8448), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(8451), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(8457), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8460), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(8463), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(9024), 1, + ACTIONS(8603), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8605), 1, + aux_sym_end_program_statement_token2, + ACTIONS(8932), 1, aux_sym_preproc_include_token1, - ACTIONS(9027), 1, + ACTIONS(8934), 1, aux_sym_preproc_def_token1, - ACTIONS(9030), 1, + ACTIONS(8936), 1, aux_sym_preproc_if_token1, - ACTIONS(9036), 1, + ACTIONS(8940), 1, sym_preproc_directive, - ACTIONS(9039), 1, + ACTIONS(8942), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6890), 1, + STATE(6525), 1, sym_module_procedure_statement, - STATE(6950), 1, + STATE(6884), 1, sym_subroutine_statement, - STATE(6951), 1, + STATE(6885), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9033), 2, + ACTIONS(8938), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(8466), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8454), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -524204,7 +524245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4170), 12, + STATE(4161), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -524217,136 +524258,64 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [71684] = 20, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8836), 1, - anon_sym_SLASH_SLASH, - ACTIONS(8838), 1, - anon_sym_STAR_STAR, - ACTIONS(8964), 1, - aux_sym_logical_expression_token1, - ACTIONS(8966), 1, - aux_sym_logical_expression_token2, - ACTIONS(8970), 1, - anon_sym_LBRACK, - STATE(2957), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(8962), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(8968), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9044), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8960), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - ACTIONS(9042), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [71776] = 26, - ACTIONS(7908), 1, + [71707] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8410), 1, + ACTIONS(8402), 1, aux_sym_end_program_statement_token1, - ACTIONS(8412), 1, - aux_sym_end_function_statement_token1, - ACTIONS(9046), 1, + ACTIONS(8404), 1, + aux_sym_end_submodule_statement_token1, + ACTIONS(8882), 1, aux_sym_preproc_include_token1, - ACTIONS(9048), 1, + ACTIONS(8884), 1, aux_sym_preproc_def_token1, - ACTIONS(9050), 1, + ACTIONS(8886), 1, aux_sym_preproc_if_token1, - ACTIONS(9054), 1, + ACTIONS(8890), 1, sym_preproc_directive, - ACTIONS(9056), 1, + ACTIONS(8892), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6956), 1, + STATE(6877), 1, sym_module_procedure_statement, - STATE(7003), 1, + STATE(6916), 1, sym_subroutine_statement, - STATE(7004), 1, + STATE(6917), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9052), 2, + ACTIONS(8888), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -524354,7 +524323,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4174), 12, + STATE(4169), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -524367,64 +524336,64 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [71880] = 26, - ACTIONS(7908), 1, + [71811] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8416), 1, + ACTIONS(8402), 1, aux_sym_end_program_statement_token1, - ACTIONS(8418), 1, - aux_sym_end_program_statement_token2, - ACTIONS(9058), 1, + ACTIONS(8404), 1, + aux_sym_end_module_statement_token1, + ACTIONS(9018), 1, aux_sym_preproc_include_token1, - ACTIONS(9060), 1, + ACTIONS(9020), 1, aux_sym_preproc_def_token1, - ACTIONS(9062), 1, + ACTIONS(9022), 1, aux_sym_preproc_if_token1, - ACTIONS(9066), 1, + ACTIONS(9026), 1, sym_preproc_directive, - ACTIONS(9068), 1, + ACTIONS(9028), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6611), 1, + STATE(6854), 1, sym_module_procedure_statement, - STATE(6929), 1, + STATE(6904), 1, sym_subroutine_statement, - STATE(6930), 1, + STATE(6905), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9064), 2, + ACTIONS(9024), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -524432,7 +524401,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4169), 12, + STATE(4179), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -524445,64 +524414,64 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [71984] = 26, - ACTIONS(7908), 1, + [71915] = 26, + ACTIONS(8434), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8442), 1, + aux_sym_end_subroutine_statement_token1, + ACTIONS(8444), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(8447), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(8450), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(8453), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(8456), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(8462), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(8465), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(8468), 1, aux_sym_derived_type_token1, - ACTIONS(8416), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8418), 1, - aux_sym_end_function_statement_token1, - ACTIONS(9046), 1, + ACTIONS(9030), 1, aux_sym_preproc_include_token1, - ACTIONS(9048), 1, + ACTIONS(9033), 1, aux_sym_preproc_def_token1, - ACTIONS(9050), 1, + ACTIONS(9036), 1, aux_sym_preproc_if_token1, - ACTIONS(9054), 1, + ACTIONS(9042), 1, sym_preproc_directive, - ACTIONS(9056), 1, + ACTIONS(9045), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6956), 1, + STATE(6903), 1, sym_module_procedure_statement, - STATE(7003), 1, + STATE(6954), 1, sym_subroutine_statement, - STATE(7004), 1, + STATE(6955), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9052), 2, + ACTIONS(9039), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(8471), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8459), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -524510,7 +524479,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4147), 12, + STATE(4174), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -524523,36 +524492,40 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [72088] = 8, - ACTIONS(8834), 1, + [72019] = 11, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, anon_sym_PERCENT, - STATE(2957), 1, + ACTIONS(8852), 1, + anon_sym_STAR_STAR, + STATE(2914), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3932), 2, + ACTIONS(8836), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9072), 7, + ACTIONS(8830), 5, aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_GT, anon_sym_LT, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(9070), 36, + ACTIONS(8828), 34, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, @@ -524581,59 +524554,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_LBRACK, - [72156] = 15, - ACTIONS(8828), 1, + [72093] = 10, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8836), 1, - anon_sym_SLASH_SLASH, ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8852), 1, anon_sym_STAR_STAR, - STATE(2957), 1, + STATE(2914), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8832), 2, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8830), 7, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(8962), 2, anon_sym_GT, anon_sym_LT, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9076), 3, - aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(8960), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - ACTIONS(9074), 21, + ACTIONS(8828), 34, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, aux_sym_module_procedure_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, @@ -524649,65 +524608,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, anon_sym_LBRACK, - [72238] = 26, - ACTIONS(7908), 1, + [72165] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8794), 1, + ACTIONS(8603), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8605), 1, + aux_sym_end_module_statement_token1, + ACTIONS(9018), 1, aux_sym_preproc_include_token1, - ACTIONS(8796), 1, + ACTIONS(9020), 1, aux_sym_preproc_def_token1, - ACTIONS(8798), 1, + ACTIONS(9022), 1, aux_sym_preproc_if_token1, - ACTIONS(8802), 1, + ACTIONS(9026), 1, sym_preproc_directive, - ACTIONS(8804), 1, + ACTIONS(9028), 1, aux_sym_include_statement_token1, - ACTIONS(9078), 1, - aux_sym_preproc_if_token2, - ACTIONS(9080), 1, - sym_preproc_comment, STATE(5157), 1, sym__intrinsic_type, - STATE(6967), 1, + STATE(6854), 1, sym_module_procedure_statement, - STATE(7010), 1, + STATE(6904), 1, sym_subroutine_statement, - STATE(7011), 1, + STATE(6905), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8800), 2, + ACTIONS(9024), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -524715,7 +524682,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4195), 12, + STATE(4173), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -524728,125 +524695,220 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [72342] = 9, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - STATE(2957), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, + [72269] = 26, + ACTIONS(8434), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8442), 1, + aux_sym_end_function_statement_token1, + ACTIONS(8444), 1, + aux_sym_module_statement_token1, + ACTIONS(8447), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(8450), 1, + aux_sym_function_statement_token1, + ACTIONS(8453), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(8456), 1, + aux_sym_implicit_statement_token3, + ACTIONS(8462), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(8465), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(8468), 1, + aux_sym_derived_type_token1, + ACTIONS(9048), 1, + aux_sym_preproc_include_token1, + ACTIONS(9051), 1, + aux_sym_preproc_def_token1, + ACTIONS(9054), 1, + aux_sym_preproc_if_token1, + ACTIONS(9060), 1, + sym_preproc_directive, + ACTIONS(9063), 1, + aux_sym_include_statement_token1, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6912), 1, + sym_module_procedure_statement, + STATE(6965), 1, + sym_subroutine_statement, + STATE(6966), 1, + sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8974), 7, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - aux_sym__intrinsic_type_token4, - anon_sym_DOT, - ACTIONS(8972), 35, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, + ACTIONS(9057), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(8471), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8459), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, + STATE(4178), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [72373] = 26, + ACTIONS(8434), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8442), 1, + aux_sym_end_module_statement_token1, + ACTIONS(8444), 1, + aux_sym_module_statement_token1, + ACTIONS(8447), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(8450), 1, + aux_sym_function_statement_token1, + ACTIONS(8453), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(8456), 1, + aux_sym_implicit_statement_token3, + ACTIONS(8462), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(8465), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(8468), 1, aux_sym_derived_type_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [72412] = 26, - ACTIONS(7908), 1, + ACTIONS(9066), 1, + aux_sym_preproc_include_token1, + ACTIONS(9069), 1, + aux_sym_preproc_def_token1, + ACTIONS(9072), 1, + aux_sym_preproc_if_token1, + ACTIONS(9078), 1, + sym_preproc_directive, + ACTIONS(9081), 1, + aux_sym_include_statement_token1, + STATE(5157), 1, + sym__intrinsic_type, + STATE(6854), 1, + sym_module_procedure_statement, + STATE(6904), 1, + sym_subroutine_statement, + STATE(6905), 1, + sym_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9075), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5124), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(8471), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(8459), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + STATE(4179), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [72477] = 26, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8410), 1, + ACTIONS(8402), 1, aux_sym_end_program_statement_token1, - ACTIONS(8412), 1, - aux_sym_end_program_statement_token2, - ACTIONS(9058), 1, + ACTIONS(8404), 1, + aux_sym_end_subroutine_statement_token1, + ACTIONS(8970), 1, aux_sym_preproc_include_token1, - ACTIONS(9060), 1, + ACTIONS(8972), 1, aux_sym_preproc_def_token1, - ACTIONS(9062), 1, + ACTIONS(8974), 1, aux_sym_preproc_if_token1, - ACTIONS(9066), 1, + ACTIONS(8978), 1, sym_preproc_directive, - ACTIONS(9068), 1, + ACTIONS(8980), 1, aux_sym_include_statement_token1, STATE(5157), 1, sym__intrinsic_type, - STATE(6611), 1, + STATE(6903), 1, sym_module_procedure_statement, - STATE(6929), 1, + STATE(6954), 1, sym_subroutine_statement, - STATE(6930), 1, + STATE(6955), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9064), 2, + ACTIONS(8976), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -524854,7 +524916,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4173), 12, + STATE(4174), 12, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -524867,38 +524929,38 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [72516] = 25, - ACTIONS(7910), 1, + [72581] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9082), 1, + ACTIONS(9084), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -524906,36 +524968,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7958), 3, + STATE(8342), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -524943,38 +525005,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [72617] = 25, - ACTIONS(7910), 1, + [72682] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, ACTIONS(9084), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -524982,36 +525044,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8396), 3, + STATE(8342), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4188), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4192), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525019,38 +525081,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [72718] = 25, - ACTIONS(7910), 1, + [72783] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, ACTIONS(9086), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -525058,36 +525120,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7941), 3, + STATE(8192), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4195), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525095,62 +525157,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [72819] = 25, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, + [72884] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8794), 1, - aux_sym_preproc_include_token1, - ACTIONS(8796), 1, - aux_sym_preproc_def_token1, - ACTIONS(8798), 1, - aux_sym_preproc_if_token1, - ACTIONS(8802), 1, - sym_preproc_directive, - ACTIONS(8804), 1, - aux_sym_include_statement_token1, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8872), 1, + aux_sym_preproc_else_token1, + ACTIONS(8874), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8880), 1, + aux_sym_import_statement_token1, ACTIONS(9088), 1, aux_sym_preproc_if_token2, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6967), 1, - sym_module_procedure_statement, - STATE(7010), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(7011), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8800), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(8876), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(8195), 3, + sym_preproc_else_in_interface, + sym_preproc_elif_in_interface, + sym_preproc_elifdef_in_interface, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_preproc_if_in_interface_repeat1, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525158,51 +525233,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4145), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [72920] = 25, - ACTIONS(7910), 1, + [72985] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, ACTIONS(9090), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -525210,36 +525272,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8130), 3, + STATE(8198), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525247,38 +525309,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73021] = 25, - ACTIONS(7910), 1, + [73086] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, ACTIONS(9092), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -525286,36 +525348,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7614), 3, + STATE(7461), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4180), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525323,75 +525385,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73122] = 25, - ACTIONS(7910), 1, + [73187] = 25, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8872), 1, - aux_sym_preproc_else_token1, - ACTIONS(8874), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, - aux_sym_import_statement_token1, + ACTIONS(8798), 1, + aux_sym_preproc_include_token1, + ACTIONS(8800), 1, + aux_sym_preproc_def_token1, + ACTIONS(8802), 1, + aux_sym_preproc_if_token1, + ACTIONS(8806), 1, + sym_preproc_directive, + ACTIONS(8808), 1, + aux_sym_include_statement_token1, ACTIONS(9094), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, - sym_subroutine_statement, + STATE(6923), 1, + sym_module_procedure_statement, STATE(6972), 1, + sym_subroutine_statement, + STATE(6973), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8876), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + ACTIONS(8804), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7564), 3, - sym_preproc_else_in_interface, - sym_preproc_elif_in_interface, - sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525399,75 +525448,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73223] = 25, - ACTIONS(7910), 1, + STATE(4196), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [73288] = 25, + ACTIONS(7902), 1, + aux_sym_module_statement_token1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, - aux_sym_module_statement_token1, - ACTIONS(8872), 1, - aux_sym_preproc_else_token1, - ACTIONS(8874), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, - aux_sym_import_statement_token1, + ACTIONS(8798), 1, + aux_sym_preproc_include_token1, + ACTIONS(8800), 1, + aux_sym_preproc_def_token1, + ACTIONS(8802), 1, + aux_sym_preproc_if_token1, + ACTIONS(8806), 1, + sym_preproc_directive, + ACTIONS(8808), 1, + aux_sym_include_statement_token1, ACTIONS(9094), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, - sym_subroutine_statement, + STATE(6923), 1, + sym_module_procedure_statement, STATE(6972), 1, + sym_subroutine_statement, + STATE(6973), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8876), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + ACTIONS(8804), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7564), 3, - sym_preproc_else_in_interface, - sym_preproc_elif_in_interface, - sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4193), 6, - sym__interface_items, - sym_subroutine, - sym_function, - sym_import_statement, - sym_procedure_statement, - aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525475,38 +525524,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73324] = 25, - ACTIONS(7910), 1, + STATE(4145), 12, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_internal_procedures, + sym_preproc_ifdef_in_internal_procedures, + sym_subroutine, + sym_module_procedure, + sym_function, + sym__internal_procedures, + sym_include_statement, + aux_sym_preproc_if_in_internal_procedures_repeat1, + [73389] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9096), 1, + ACTIONS(9092), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -525514,36 +525576,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7644), 3, + STATE(7461), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4190), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525551,38 +525613,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73425] = 25, - ACTIONS(7910), 1, + [73490] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9098), 1, + ACTIONS(9096), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -525590,36 +525652,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8067), 3, + STATE(7961), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4186), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525627,38 +525689,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73526] = 25, - ACTIONS(7910), 1, + [73591] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9092), 1, + ACTIONS(9098), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -525666,36 +525728,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7614), 3, + STATE(7966), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4184), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525703,38 +525765,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73627] = 25, - ACTIONS(7910), 1, + [73692] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, ACTIONS(9100), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -525742,36 +525804,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7963), 3, + STATE(7581), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525779,38 +525841,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73728] = 25, - ACTIONS(7910), 1, + [73793] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9090), 1, + ACTIONS(9102), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -525818,36 +525880,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(8130), 3, + STATE(8295), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4191), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4186), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525855,38 +525917,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73829] = 25, - ACTIONS(7910), 1, + [73894] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9102), 1, + ACTIONS(9104), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -525894,36 +525956,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7512), 3, + STATE(7970), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4185), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525931,62 +525993,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [73930] = 25, - ACTIONS(7908), 1, - aux_sym_module_statement_token1, - ACTIONS(7910), 1, + [73995] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8794), 1, - aux_sym_preproc_include_token1, - ACTIONS(8796), 1, - aux_sym_preproc_def_token1, - ACTIONS(8798), 1, - aux_sym_preproc_if_token1, - ACTIONS(8802), 1, - sym_preproc_directive, - ACTIONS(8804), 1, - aux_sym_include_statement_token1, - ACTIONS(9104), 1, + ACTIONS(8204), 1, + aux_sym_module_statement_token1, + ACTIONS(8872), 1, + aux_sym_preproc_else_token1, + ACTIONS(8874), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8880), 1, + aux_sym_import_statement_token1, + ACTIONS(9106), 1, aux_sym_preproc_if_token2, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6967), 1, - sym_module_procedure_statement, - STATE(7010), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(7011), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8800), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + ACTIONS(8876), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + STATE(8410), 3, + sym_preproc_else_in_interface, + sym_preproc_elif_in_interface, + sym_preproc_elifdef_in_interface, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, + sym__interface_items, + sym_subroutine, + sym_function, + sym_import_statement, + sym_procedure_statement, + aux_sym_preproc_if_in_interface_repeat1, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -525994,75 +526069,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4183), 12, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_internal_procedures, - sym_preproc_ifdef_in_internal_procedures, - sym_subroutine, - sym_module_procedure, - sym_function, - sym__internal_procedures, - sym_include_statement, - aux_sym_preproc_if_in_internal_procedures_repeat1, - [74031] = 25, - ACTIONS(7908), 1, + [74096] = 25, + ACTIONS(7902), 1, aux_sym_module_statement_token1, - ACTIONS(7910), 1, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8794), 1, + ACTIONS(8798), 1, aux_sym_preproc_include_token1, - ACTIONS(8796), 1, + ACTIONS(8800), 1, aux_sym_preproc_def_token1, - ACTIONS(8798), 1, - aux_sym_preproc_if_token1, ACTIONS(8802), 1, + aux_sym_preproc_if_token1, + ACTIONS(8806), 1, sym_preproc_directive, - ACTIONS(8804), 1, + ACTIONS(8808), 1, aux_sym_include_statement_token1, - ACTIONS(9104), 1, + ACTIONS(9108), 1, aux_sym_preproc_if_token2, STATE(5157), 1, sym__intrinsic_type, - STATE(6967), 1, + STATE(6923), 1, sym_module_procedure_statement, - STATE(7010), 1, + STATE(6972), 1, sym_subroutine_statement, - STATE(7011), 1, + STATE(6973), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8800), 2, + ACTIONS(8804), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5129), 3, + STATE(5124), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526083,38 +526145,38 @@ static const uint16_t ts_small_parse_table[] = { sym__internal_procedures, sym_include_statement, aux_sym_preproc_if_in_internal_procedures_repeat1, - [74132] = 25, - ACTIONS(7910), 1, + [74197] = 25, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, ACTIONS(8872), 1, aux_sym_preproc_else_token1, ACTIONS(8874), 1, aux_sym_preproc_elif_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9106), 1, + ACTIONS(9104), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -526122,36 +526184,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8876), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - STATE(7515), 3, + STATE(7970), 3, sym_preproc_else_in_interface, sym_preproc_elif_in_interface, sym_preproc_elifdef_in_interface, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4182), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526159,69 +526221,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [74233] = 22, - ACTIONS(9110), 1, - aux_sym_preproc_elif_token1, + [74298] = 22, ACTIONS(9112), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9114), 1, aux_sym_module_statement_token1, - ACTIONS(9115), 1, + ACTIONS(9117), 1, aux_sym_subroutine_statement_token1, - ACTIONS(9121), 1, + ACTIONS(9123), 1, aux_sym_function_statement_token1, - ACTIONS(9124), 1, + ACTIONS(9126), 1, aux_sym_procedure_attributes_token1, - ACTIONS(9127), 1, + ACTIONS(9129), 1, aux_sym_implicit_statement_token3, - ACTIONS(9130), 1, + ACTIONS(9132), 1, aux_sym_import_statement_token1, - ACTIONS(9136), 1, + ACTIONS(9138), 1, aux_sym__intrinsic_type_token4, - ACTIONS(9139), 1, + ACTIONS(9141), 1, aux_sym__intrinsic_type_token8, - ACTIONS(9142), 1, + ACTIONS(9144), 1, aux_sym_derived_type_token1, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(9108), 4, + ACTIONS(9110), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - ACTIONS(9145), 4, + ACTIONS(9147), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(9118), 5, + ACTIONS(9120), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(9133), 7, + ACTIONS(9135), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526229,11 +526291,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [74325] = 3, + [74390] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7484), 7, + ACTIONS(7528), 7, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -526241,7 +526303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(7486), 37, + ACTIONS(7530), 37, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -526279,11 +526341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [74378] = 3, + [74443] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 7, + ACTIONS(7474), 7, aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_SLASH, @@ -526291,7 +526353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, aux_sym__intrinsic_type_token4, anon_sym_DOT, - ACTIONS(7506), 37, + ACTIONS(7476), 37, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -526329,61 +526391,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [74431] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [74496] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, - sym_preproc_directive, ACTIONS(9158), 1, - aux_sym_end_program_statement_token1, + sym_preproc_directive, ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, + aux_sym_end_program_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, - aux_sym_derived_type_definition_token1, + aux_sym_public_statement_token1, ACTIONS(9172), 1, + aux_sym_derived_type_definition_token1, + ACTIONS(9174), 1, aux_sym_end_type_statement_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - STATE(2832), 1, + STATE(1478), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6925), 1, + STATE(6725), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526391,7 +526453,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4203), 9, + STATE(4207), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -526401,61 +526463,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [74529] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [74594] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, - aux_sym_include_statement_token1, + aux_sym_derived_type_token1, ACTIONS(9184), 1, - aux_sym_end_program_statement_token1, + aux_sym_include_statement_token1, ACTIONS(9186), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9188), 1, aux_sym_end_type_statement_token1, - STATE(1357), 1, + STATE(1477), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6346), 1, + STATE(6305), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526463,7 +526525,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4225), 9, + STATE(4206), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -526473,61 +526535,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [74627] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [74692] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9188), 1, - aux_sym_end_program_statement_token1, ACTIONS(9190), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9192), 1, aux_sym_end_type_statement_token1, - STATE(1472), 1, + STATE(1157), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(7050), 1, + STATE(6457), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526535,7 +526597,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -526545,61 +526607,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [74725] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [74790] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, - sym_preproc_directive, ACTIONS(9158), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, + sym_preproc_directive, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, - aux_sym_derived_type_definition_token1, + aux_sym_public_statement_token1, ACTIONS(9172), 1, - aux_sym_end_type_statement_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, + aux_sym_derived_type_definition_token1, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - STATE(2780), 1, + ACTIONS(9194), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9196), 1, + aux_sym_end_type_statement_token1, + STATE(1503), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6998), 1, + STATE(6561), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526607,7 +526669,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4205), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -526617,61 +526679,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [74823] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [74888] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9192), 1, - aux_sym_end_program_statement_token1, ACTIONS(9194), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9196), 1, aux_sym_end_type_statement_token1, - STATE(1321), 1, + STATE(1512), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6468), 1, + STATE(6571), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526679,7 +526741,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4205), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -526689,61 +526751,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [74921] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [74986] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9192), 1, + ACTIONS(9186), 1, aux_sym_end_program_statement_token1, - ACTIONS(9194), 1, + ACTIONS(9188), 1, aux_sym_end_type_statement_token1, - STATE(1193), 1, + STATE(1520), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6479), 1, + STATE(6317), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526751,7 +526813,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -526761,61 +526823,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75019] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75084] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, + aux_sym_end_program_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, + ACTIONS(9174), 1, + aux_sym_end_type_statement_token1, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9196), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9198), 1, - aux_sym_end_type_statement_token1, - STATE(1164), 1, + STATE(1464), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6530), 1, + STATE(6886), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526823,7 +526885,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4207), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -526833,61 +526895,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75117] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75182] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9196), 1, - aux_sym_end_program_statement_token1, ACTIONS(9198), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9200), 1, aux_sym_end_type_statement_token1, - STATE(1166), 1, + STATE(1133), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6540), 1, + STATE(6682), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526895,7 +526957,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4214), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -526905,61 +526967,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75215] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75280] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9200), 1, - aux_sym_end_program_statement_token1, ACTIONS(9202), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9204), 1, aux_sym_end_type_statement_token1, - STATE(2896), 1, + STATE(2883), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6448), 1, + STATE(6470), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -526967,7 +527029,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4210), 9, + STATE(4220), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -526977,61 +527039,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75313] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75378] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9188), 1, + ACTIONS(9206), 1, aux_sym_end_program_statement_token1, - ACTIONS(9190), 1, + ACTIONS(9208), 1, aux_sym_end_type_statement_token1, - STATE(1371), 1, + STATE(2792), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6750), 1, + STATE(6409), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527039,7 +527101,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4202), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527049,61 +527111,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75411] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75476] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9200), 1, + ACTIONS(9210), 1, aux_sym_end_program_statement_token1, - ACTIONS(9202), 1, + ACTIONS(9212), 1, aux_sym_end_type_statement_token1, - STATE(2838), 1, + STATE(3074), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6581), 1, + STATE(6613), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527111,7 +527173,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4212), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527121,61 +527183,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75509] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75574] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9204), 1, + ACTIONS(9210), 1, aux_sym_end_program_statement_token1, - ACTIONS(9206), 1, + ACTIONS(9212), 1, aux_sym_end_type_statement_token1, - STATE(2743), 1, + STATE(3093), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6587), 1, + STATE(6622), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527183,7 +527245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4212), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527193,61 +527255,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75607] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75672] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9204), 1, + ACTIONS(9214), 1, aux_sym_end_program_statement_token1, - ACTIONS(9206), 1, + ACTIONS(9216), 1, aux_sym_end_type_statement_token1, - STATE(2766), 1, + STATE(1581), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6597), 1, + STATE(6649), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527255,7 +527317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4216), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527265,61 +527327,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75705] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75770] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9208), 1, + ACTIONS(9198), 1, aux_sym_end_program_statement_token1, - ACTIONS(9210), 1, + ACTIONS(9200), 1, aux_sym_end_type_statement_token1, - STATE(1508), 1, + STATE(1134), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6635), 1, + STATE(6703), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527327,7 +527389,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4214), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527337,61 +527399,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75803] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75868] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9208), 1, + ACTIONS(9218), 1, aux_sym_end_program_statement_token1, - ACTIONS(9210), 1, + ACTIONS(9220), 1, aux_sym_end_type_statement_token1, - STATE(1513), 1, + STATE(1634), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6645), 1, + STATE(6837), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527399,7 +527461,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4218), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527409,61 +527471,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75901] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [75966] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9212), 1, - aux_sym_end_program_statement_token1, ACTIONS(9214), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9216), 1, aux_sym_end_type_statement_token1, - STATE(3073), 1, + STATE(1450), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6685), 1, + STATE(6658), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527471,7 +527533,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4216), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527481,61 +527543,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [75999] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76064] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9212), 1, + ACTIONS(9222), 1, aux_sym_end_program_statement_token1, - ACTIONS(9214), 1, + ACTIONS(9224), 1, aux_sym_end_type_statement_token1, - STATE(3076), 1, + STATE(1382), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6694), 1, + STATE(7037), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527543,7 +527605,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527553,61 +527615,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76097] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76162] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9216), 1, - aux_sym_end_program_statement_token1, ACTIONS(9218), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9220), 1, aux_sym_end_type_statement_token1, - STATE(1384), 1, + STATE(1642), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6408), 1, + STATE(6860), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527615,7 +527677,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4219), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527625,61 +527687,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76195] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76260] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9220), 1, + ACTIONS(9226), 1, aux_sym_end_program_statement_token1, - ACTIONS(9222), 1, + ACTIONS(9228), 1, aux_sym_end_type_statement_token1, - STATE(1141), 1, + STATE(2766), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6866), 1, + STATE(6504), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527687,7 +527749,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4221), 9, + STATE(4222), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527697,61 +527759,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76293] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76358] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9216), 1, + ACTIONS(9202), 1, aux_sym_end_program_statement_token1, - ACTIONS(9218), 1, + ACTIONS(9204), 1, aux_sym_end_type_statement_token1, - STATE(1391), 1, + STATE(2852), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6418), 1, + STATE(6819), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527759,7 +527821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527769,61 +527831,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76391] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76456] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9224), 1, + ACTIONS(9230), 1, aux_sym_end_program_statement_token1, - ACTIONS(9226), 1, + ACTIONS(9232), 1, aux_sym_end_type_statement_token1, - STATE(1560), 1, + STATE(1210), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6719), 1, + STATE(6376), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527831,7 +527893,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4222), 9, + STATE(4224), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527841,61 +527903,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76489] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76554] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9220), 1, + ACTIONS(9226), 1, aux_sym_end_program_statement_token1, - ACTIONS(9222), 1, + ACTIONS(9228), 1, aux_sym_end_type_statement_token1, - STATE(1123), 1, + STATE(2715), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6921), 1, + STATE(6513), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527903,7 +527965,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527913,61 +527975,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76587] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76652] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9224), 1, + ACTIONS(9190), 1, aux_sym_end_program_statement_token1, - ACTIONS(9226), 1, + ACTIONS(9192), 1, aux_sym_end_type_statement_token1, - STATE(1568), 1, + STATE(1152), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6728), 1, + STATE(6446), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -527975,7 +528037,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4203), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -527985,61 +528047,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76685] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76750] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9228), 1, - aux_sym_end_program_statement_token1, ACTIONS(9230), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9232), 1, aux_sym_end_type_statement_token1, - STATE(1639), 1, + STATE(1215), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6281), 1, + STATE(6387), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528047,7 +528109,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4224), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -528057,61 +528119,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76783] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76848] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(9184), 1, aux_sym_include_statement_token1, - ACTIONS(9228), 1, + ACTIONS(9206), 1, aux_sym_end_program_statement_token1, - ACTIONS(9230), 1, + ACTIONS(9208), 1, aux_sym_end_type_statement_token1, - STATE(1636), 1, + STATE(2873), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6294), 1, + STATE(6347), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528119,7 +528181,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4210), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -528129,61 +528191,61 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76881] = 26, - ACTIONS(9148), 1, - aux_sym_preproc_include_token1, + [76946] = 26, ACTIONS(9150), 1, - aux_sym_preproc_def_token1, + aux_sym_preproc_include_token1, ACTIONS(9152), 1, + aux_sym_preproc_def_token1, + ACTIONS(9154), 1, aux_sym_preproc_if_token1, - ACTIONS(9156), 1, + ACTIONS(9158), 1, sym_preproc_directive, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, ACTIONS(9162), 1, - aux_sym_contains_statement_token1, + aux_sym_module_procedure_statement_token1, ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, + aux_sym_contains_statement_token1, ACTIONS(9166), 1, - aux_sym_private_statement_token1, + aux_sym_implicit_statement_token3, ACTIONS(9168), 1, - aux_sym_public_statement_token1, + aux_sym_private_statement_token1, ACTIONS(9170), 1, + aux_sym_public_statement_token1, + ACTIONS(9172), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, - aux_sym_derived_type_token1, + aux_sym__intrinsic_type_token8, ACTIONS(9182), 1, - aux_sym_include_statement_token1, + aux_sym_derived_type_token1, ACTIONS(9184), 1, + aux_sym_include_statement_token1, + ACTIONS(9222), 1, aux_sym_end_program_statement_token1, - ACTIONS(9186), 1, + ACTIONS(9224), 1, aux_sym_end_type_statement_token1, - STATE(1360), 1, + STATE(1529), 1, sym_end_type_statement, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, - STATE(5194), 1, + STATE(5182), 1, sym_contains_statement, - STATE(6357), 1, + STATE(7009), 1, sym_derived_type_procedures, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9154), 2, + ACTIONS(9156), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528191,7 +528253,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4217), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -528201,66 +528263,66 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [76979] = 22, - ACTIONS(7910), 1, + [77044] = 22, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9232), 1, - aux_sym_preproc_if_token2, ACTIONS(9234), 1, + aux_sym_preproc_if_token2, + ACTIONS(9236), 1, sym_preproc_comment, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4228), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4230), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528268,64 +528330,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [77068] = 21, - ACTIONS(7910), 1, + [77133] = 21, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9236), 1, + ACTIONS(9238), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4229), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528333,64 +528395,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [77154] = 21, - ACTIONS(7910), 1, + [77219] = 21, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9236), 1, + ACTIONS(9240), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4228), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528398,64 +528460,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [77240] = 21, - ACTIONS(7910), 1, + [77305] = 21, + ACTIONS(7904), 1, aux_sym_subroutine_statement_token1, - ACTIONS(7912), 1, + ACTIONS(7906), 1, aux_sym_function_statement_token1, - ACTIONS(7914), 1, + ACTIONS(7908), 1, aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, + ACTIONS(7914), 1, aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - ACTIONS(8200), 1, + ACTIONS(8204), 1, aux_sym_module_statement_token1, - ACTIONS(8882), 1, + ACTIONS(8880), 1, aux_sym_import_statement_token1, - ACTIONS(9238), 1, + ACTIONS(9240), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, STATE(5157), 1, sym__intrinsic_type, - STATE(6971), 1, + STATE(6929), 1, sym_subroutine_statement, - STATE(6972), 1, + STATE(6930), 1, sym_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5138), 3, + STATE(5141), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(7926), 4, + ACTIONS(7920), 4, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(4197), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(4198), 6, sym__interface_items, sym_subroutine, sym_function, sym_import_statement, sym_procedure_statement, aux_sym_preproc_if_in_interface_repeat1, - ACTIONS(7918), 7, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528463,54 +528525,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [77326] = 22, - ACTIONS(9240), 1, + [77391] = 22, + ACTIONS(9242), 1, aux_sym_preproc_include_token1, - ACTIONS(9243), 1, + ACTIONS(9245), 1, aux_sym_preproc_def_token1, - ACTIONS(9246), 1, + ACTIONS(9248), 1, aux_sym_preproc_if_token1, - ACTIONS(9252), 1, + ACTIONS(9254), 1, sym_preproc_directive, - ACTIONS(9255), 1, - aux_sym_end_program_statement_token1, ACTIONS(9257), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9259), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9262), 1, + ACTIONS(9264), 1, aux_sym_implicit_statement_token3, - ACTIONS(9265), 1, + ACTIONS(9267), 1, aux_sym_private_statement_token1, - ACTIONS(9268), 1, + ACTIONS(9270), 1, aux_sym_public_statement_token1, - ACTIONS(9271), 1, + ACTIONS(9273), 1, aux_sym_derived_type_definition_token1, - ACTIONS(9277), 1, + ACTIONS(9279), 1, aux_sym__intrinsic_type_token4, - ACTIONS(9280), 1, + ACTIONS(9282), 1, aux_sym__intrinsic_type_token8, - ACTIONS(9283), 1, + ACTIONS(9285), 1, aux_sym_derived_type_token1, - ACTIONS(9286), 1, + ACTIONS(9288), 1, aux_sym_include_statement_token1, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9249), 2, + ACTIONS(9251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(9260), 2, + ACTIONS(9262), 2, aux_sym_contains_statement_token1, aux_sym_end_type_statement_token1, - STATE(6751), 2, + STATE(6752), 2, sym_variable_declaration, sym_include_statement, STATE(3376), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - ACTIONS(9274), 7, + ACTIONS(9276), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528518,7 +528580,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - STATE(4230), 9, + STATE(4231), 9, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -528528,116 +528590,16 @@ static const uint16_t ts_small_parse_table[] = { sym_private_statement, sym_public_statement, aux_sym_derived_type_definition_repeat1, - [77413] = 17, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8982), 1, - anon_sym_DOT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8980), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_GT_GT_GT, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [77487] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9305), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_elif_token1, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9307), 33, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_import_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [77533] = 3, + [77478] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9309), 4, + ACTIONS(9291), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9311), 33, + ACTIONS(9293), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -528654,10 +528616,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528671,85 +528633,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [77579] = 11, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8974), 3, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8972), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_GT_GT_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [77641] = 10, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, + [77524] = 8, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 5, + ACTIONS(8856), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8972), 24, + ACTIONS(8854), 26, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, @@ -528769,19 +528677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [77701] = 3, + [77580] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9313), 4, + ACTIONS(9295), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9315), 33, + ACTIONS(9297), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -528798,10 +528707,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528815,125 +528724,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [77747] = 13, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8978), 3, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8976), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_GT_GT_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [77813] = 16, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8982), 1, - anon_sym_DOT, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, + [77626] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8980), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_GT_GT_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [77885] = 3, + ACTIONS(9299), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_elif_token1, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9301), 33, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_import_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [77672] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9317), 4, + ACTIONS(9303), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9319), 33, + ACTIONS(9305), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -528950,10 +528793,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -528967,39 +528810,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [77931] = 15, + [77718] = 15, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8982), 1, + ACTIONS(8868), 1, anon_sym_DOT, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -529010,7 +528853,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - ACTIONS(8980), 11, + ACTIONS(8866), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -529022,59 +528865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [78001] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9321), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_elif_token1, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9323), 33, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_import_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [78047] = 3, + [77788] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9325), 4, + ACTIONS(9319), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9327), 33, + ACTIONS(9321), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529091,10 +528891,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529108,16 +528908,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78093] = 3, + [77834] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9329), 4, + ACTIONS(9323), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9331), 33, + ACTIONS(9325), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529134,10 +528934,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529151,16 +528951,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78139] = 3, + [77880] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9333), 4, + ACTIONS(9327), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9335), 33, + ACTIONS(9329), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529177,10 +528977,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529194,16 +528994,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78185] = 3, + [77926] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9337), 4, + ACTIONS(9331), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9339), 33, + ACTIONS(9333), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529220,10 +529020,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529237,119 +529037,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78231] = 8, - ACTIONS(8834), 1, - anon_sym_PERCENT, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9072), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9070), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_GT_GT_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [78287] = 15, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9076), 1, - anon_sym_DOT, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - ACTIONS(9074), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_GT_GT_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [78357] = 3, + [77972] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9341), 4, + ACTIONS(9335), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9343), 33, + ACTIONS(9337), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529366,10 +529063,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529383,16 +529080,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78403] = 3, + [78018] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9345), 4, + ACTIONS(9339), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9347), 33, + ACTIONS(9341), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529409,10 +529106,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529426,16 +529123,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78449] = 3, + [78064] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9349), 4, + ACTIONS(9343), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9351), 33, + ACTIONS(9345), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529452,10 +529149,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529469,16 +529166,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78495] = 3, + [78110] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9353), 4, + ACTIONS(9347), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9355), 33, + ACTIONS(9349), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529495,10 +529192,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529512,16 +529209,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78541] = 3, + [78156] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9357), 4, + ACTIONS(9351), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9359), 33, + ACTIONS(9353), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529538,10 +529235,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529555,16 +529252,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78587] = 3, + [78202] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9361), 4, + ACTIONS(9355), 4, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9363), 33, + ACTIONS(9357), 33, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, @@ -529581,10 +529278,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529598,156 +529295,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78633] = 13, + [78248] = 17, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8826), 3, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8824), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_GT_GT_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [78699] = 9, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8974), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, + ACTIONS(8864), 1, anon_sym_DOT, - ACTIONS(8972), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_GT_GT_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [78757] = 18, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8974), 1, - anon_sym_DOT, - ACTIONS(9297), 1, + ACTIONS(9359), 1, aux_sym_logical_expression_token1, - ACTIONS(9299), 1, + ACTIONS(9361), 1, aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8972), 7, + ACTIONS(8862), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_GT_GT_GT, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -529758,7 +529352,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [78833] = 3, + [78322] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9363), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_elif_token1, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9365), 33, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_import_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [78368] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -529784,10 +529421,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529801,7 +529438,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78879] = 3, + [78414] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -529827,10 +529464,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529844,7 +529481,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78925] = 3, + [78460] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -529870,10 +529507,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529887,7 +529524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [78971] = 3, + [78506] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -529913,10 +529550,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529930,7 +529567,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [79017] = 3, + [78552] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -529956,10 +529593,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_public_statement_token1, aux_sym_import_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -529973,30 +529610,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [79063] = 6, - ACTIONS(9387), 1, + [78598] = 11, + ACTIONS(6644), 1, anon_sym_LPAREN2, - STATE(2391), 1, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + STATE(2529), 1, sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(4262), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8685), 6, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8830), 3, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(8683), 26, + ACTIONS(8828), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -530014,33 +529658,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [79114] = 5, - STATE(2391), 1, + [78660] = 10, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + STATE(2529), 1, sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(4262), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8681), 6, + ACTIONS(8830), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(8679), 27, + ACTIONS(8828), 24, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -530058,58 +529708,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [79163] = 17, - ACTIONS(8828), 1, + [78720] = 13, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9398), 1, - aux_sym_logical_expression_token1, - ACTIONS(9400), 1, - aux_sym_logical_expression_token2, - ACTIONS(9402), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9404), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - STATE(3045), 1, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, - sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8982), 2, - aux_sym_end_program_statement_token1, - anon_sym_DOT, - ACTIONS(9390), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9392), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9396), 2, - anon_sym_GT, - anon_sym_LT, - STATE(3932), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8980), 6, + ACTIONS(8860), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8858), 21, anon_sym_COMMA, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_LBRACK, - ACTIONS(9394), 10, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_GT_GT_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -530117,56 +529761,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [79235] = 22, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [78786] = 16, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9406), 1, - anon_sym_COMMA, - ACTIONS(9416), 1, - anon_sym_COLON, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(8864), 1, + anon_sym_DOT, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9428), 1, - anon_sym_RBRACK, - STATE(2972), 1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - STATE(6774), 1, - aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(8862), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_GT_GT_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -530177,49 +529820,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [79317] = 15, - ACTIONS(7416), 1, + [78858] = 15, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(9076), 1, - anon_sym_DOT, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(8864), 1, + anon_sym_DOT, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, + STATE(2529), 1, sym__argument_list, - STATE(4582), 1, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - STATE(4283), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9074), 9, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_LBRACK, - ACTIONS(9436), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -530230,59 +529863,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [79385] = 22, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9416), 1, - anon_sym_COLON, - ACTIONS(9418), 1, + ACTIONS(8862), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_GT_GT_GT, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [78928] = 13, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9444), 1, - anon_sym_COMMA, - ACTIONS(9446), 1, - anon_sym_RBRACK, - STATE(2972), 1, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - STATE(6632), 1, - aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8908), 3, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + anon_sym_DOT, + ACTIONS(8906), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_GT_GT_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [78994] = 9, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(8830), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8828), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_GT_GT_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -530290,56 +529972,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [79467] = 22, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [79052] = 18, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8830), 1, + anon_sym_DOT, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(9450), 1, - anon_sym_RPAREN, - ACTIONS(9452), 1, - anon_sym_COLON, - STATE(2972), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - STATE(6633), 1, - aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(8828), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_GT_GT_GT, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -530350,41 +530035,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [79549] = 11, - ACTIONS(8828), 1, + [79128] = 6, + ACTIONS(9389), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, + STATE(2529), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9410), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(3932), 2, + STATE(4263), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 3, + ACTIONS(8704), 6, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8972), 22, + ACTIONS(8702), 26, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_GT_GT_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -530397,42 +530076,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [79609] = 10, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, + [79179] = 5, + STATE(2529), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3932), 2, + STATE(4263), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 5, + ACTIONS(8691), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8972), 22, + ACTIONS(8689), 27, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_GT_GT_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -530445,50 +530120,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - [79667] = 13, - ACTIONS(8828), 1, + [79228] = 22, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9424), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9392), 1, + anon_sym_COMMA, + ACTIONS(9402), 1, + anon_sym_COLON, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - STATE(2972), 1, + ACTIONS(9414), 1, + anon_sym_RBRACK, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, + STATE(6532), 1, + aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8978), 3, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(8976), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -530496,52 +530184,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_LBRACK, - anon_sym_RBRACK, - [79731] = 16, - ACTIONS(8828), 1, + [79310] = 15, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8982), 1, - anon_sym_DOT, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, ACTIONS(9424), 1, anon_sym_SLASH_SLASH, ACTIONS(9426), 1, anon_sym_STAR_STAR, - STATE(2972), 1, + STATE(3032), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(8868), 2, + aux_sym_end_program_statement_token1, + anon_sym_DOT, + ACTIONS(9416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9422), 2, anon_sym_GT, anon_sym_LT, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8980), 8, + ACTIONS(8866), 8, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(9412), 10, + ACTIONS(9420), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -530552,52 +530237,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [79801] = 15, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8982), 1, - anon_sym_DOT, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, + [79378] = 5, + ACTIONS(9428), 1, + aux_sym__intrinsic_type_token5, + ACTIONS(9430), 1, + aux_sym__intrinsic_type_token7, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(4349), 6, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, anon_sym_GT, anon_sym_LT, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8980), 9, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4351), 27, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_COLON, + anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(9412), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -530605,43 +530275,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [79869] = 17, - ACTIONS(8828), 1, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [79426] = 17, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8982), 1, + ACTIONS(8864), 1, anon_sym_DOT, - ACTIONS(9418), 1, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - STATE(2972), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8980), 7, + ACTIONS(8862), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -530649,7 +530324,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_logical_expression_token4, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(9412), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -530660,38 +530335,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [79941] = 13, - ACTIONS(8828), 1, + [79498] = 13, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9424), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - STATE(2972), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8826), 3, + ACTIONS(8908), 3, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8824), 19, + ACTIONS(8906), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_EQ, @@ -530711,30 +530386,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token6, anon_sym_LBRACK, anon_sym_RBRACK, - [80005] = 9, - ACTIONS(8828), 1, + [79562] = 9, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - STATE(2972), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 5, + ACTIONS(8830), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8972), 23, + ACTIONS(8828), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -530758,55 +530433,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_RBRACK, - [80061] = 18, - ACTIONS(8828), 1, + [79618] = 11, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(9434), 1, anon_sym_PERCENT, - ACTIONS(8974), 1, - anon_sym_DOT, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - STATE(2972), 1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, + STATE(3104), 1, sym__argument_list, + STATE(4580), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8972), 5, + ACTIONS(8830), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8828), 22, + sym__external_end_of_statement, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(9412), 10, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -530814,80 +530480,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [80135] = 5, - ACTIONS(9456), 1, - anon_sym_COMMA, - STATE(4310), 1, - aux_sym_parameters_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9454), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9458), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [80183] = 8, - ACTIONS(8834), 1, + anon_sym_SLASH_SLASH, + anon_sym_LBRACK, + [79678] = 10, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(9434), 1, anon_sym_PERCENT, - STATE(2972), 1, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, + STATE(3104), 1, sym__argument_list, + STATE(4580), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3932), 2, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9072), 5, + ACTIONS(8830), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(9070), 24, + ACTIONS(8828), 22, + sym__external_end_of_statement, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -530900,59 +530529,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, - [80237] = 22, - ACTIONS(161), 1, + [79736] = 18, + ACTIONS(8830), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(9452), 1, - anon_sym_COLON, - ACTIONS(9460), 1, - anon_sym_RPAREN, - STATE(2972), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, - STATE(6961), 1, - aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(8828), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -530963,18 +530586,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [80319] = 11, - ACTIONS(7416), 1, + [79810] = 13, + ACTIONS(7442), 1, anon_sym_LPAREN2, ACTIONS(9434), 1, anon_sym_PERCENT, - ACTIONS(9442), 1, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - STATE(3021), 1, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + STATE(3060), 1, sym_user_defined_operator, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(4582), 1, + STATE(4580), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, @@ -530982,18 +530607,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(4283), 2, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 3, + ACTIONS(8860), 3, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8972), 22, + ACTIONS(8858), 19, sym__external_end_of_statement, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -531010,61 +530636,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, anon_sym_LBRACK, - [80379] = 22, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, + [79874] = 8, + ACTIONS(9434), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(9452), 1, - anon_sym_COLON, - ACTIONS(9462), 1, - anon_sym_RPAREN, - STATE(2972), 1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, + STATE(3104), 1, sym__argument_list, - STATE(7027), 1, - aux_sym__argument_list_repeat1, + STATE(4580), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8856), 5, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + anon_sym_DOT, + ACTIONS(8854), 24, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -531072,23 +530680,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [80461] = 5, - STATE(3102), 1, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [79928] = 5, + STATE(3104), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(4295), 2, + STATE(4297), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8681), 6, + ACTIONS(8691), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(8679), 26, + ACTIONS(8689), 26, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531115,45 +530726,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [80509] = 10, - ACTIONS(7416), 1, + [79976] = 16, + ACTIONS(7442), 1, anon_sym_LPAREN2, + ACTIONS(8864), 1, + anon_sym_DOT, ACTIONS(9434), 1, anon_sym_PERCENT, - ACTIONS(9442), 1, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - STATE(3021), 1, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + STATE(3060), 1, sym_user_defined_operator, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(4582), 1, + STATE(4580), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8974), 5, + ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(8972), 22, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8862), 8, sym__external_end_of_statement, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, + anon_sym_LBRACK, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -531161,56 +530780,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_LBRACK, - [80567] = 20, + [80046] = 20, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8958), 1, + ACTIONS(8924), 1, aux_sym_end_program_statement_token1, - ACTIONS(8970), 1, + ACTIONS(8926), 1, anon_sym_LBRACK, - ACTIONS(9398), 1, - aux_sym_logical_expression_token1, - ACTIONS(9400), 1, - aux_sym_logical_expression_token2, - ACTIONS(9402), 1, + ACTIONS(9424), 1, anon_sym_SLASH_SLASH, - ACTIONS(9404), 1, + ACTIONS(9426), 1, anon_sym_STAR_STAR, - STATE(3045), 1, + ACTIONS(9448), 1, + aux_sym_logical_expression_token1, + ACTIONS(9450), 1, + aux_sym_logical_expression_token2, + STATE(3032), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9390), 2, + ACTIONS(9416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9392), 2, + ACTIONS(9418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9396), 2, + ACTIONS(9422), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9464), 2, + ACTIONS(9452), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8956), 3, + ACTIONS(8922), 3, anon_sym_COMMA, aux_sym_enumerator_statement_token1, aux_sym_end_enum_statement_token1, - ACTIONS(9394), 10, + ACTIONS(9420), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -531221,59 +530838,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [80645] = 22, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, + [80124] = 15, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8864), 1, + anon_sym_DOT, + ACTIONS(9434), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - ACTIONS(9452), 1, - anon_sym_COLON, - ACTIONS(9466), 1, - anon_sym_COMMA, - ACTIONS(9468), 1, - anon_sym_RPAREN, - STATE(2972), 1, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, + STATE(3104), 1, sym__argument_list, - STATE(7047), 1, - aux_sym_case_value_range_list_repeat1, + STATE(4580), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8862), 9, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [80192] = 17, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(8864), 1, + anon_sym_DOT, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8862), 7, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + anon_sym_LBRACK, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [80264] = 13, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(8908), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8906), 19, + sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -531281,59 +530996,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [80727] = 22, + anon_sym_LBRACK, + [80328] = 22, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, + ACTIONS(8926), 1, anon_sym_LBRACK, - ACTIONS(9418), 1, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9448), 1, + ACTIONS(9456), 1, anon_sym_COMMA, - ACTIONS(9452), 1, - anon_sym_COLON, - ACTIONS(9462), 1, + ACTIONS(9458), 1, anon_sym_RPAREN, - STATE(2972), 1, + ACTIONS(9460), 1, + anon_sym_COLON, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, - STATE(6633), 1, + STATE(6576), 1, aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [80410] = 5, + ACTIONS(9464), 1, + anon_sym_COMMA, + STATE(4313), 1, + aux_sym_parameters_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9462), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9466), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [80458] = 9, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(9434), 1, + anon_sym_PERCENT, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(8830), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8828), 23, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -531341,53 +531144,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [80809] = 19, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [80514] = 22, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9299), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, + ACTIONS(9456), 1, + anon_sym_COMMA, + ACTIONS(9460), 1, + anon_sym_COLON, + ACTIONS(9468), 1, + anon_sym_RPAREN, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + STATE(6713), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9470), 4, - anon_sym_COMMA, - anon_sym_GT_GT_GT, - anon_sym_SLASH_RPAREN, - anon_sym_RBRACK, - ACTIONS(9293), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -531398,49 +531207,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [80885] = 13, - ACTIONS(7416), 1, + [80596] = 18, + ACTIONS(7442), 1, anon_sym_LPAREN2, + ACTIONS(8830), 1, + anon_sym_DOT, ACTIONS(9434), 1, anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, ACTIONS(9440), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - STATE(3021), 1, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(4582), 1, + STATE(4580), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8978), 3, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(8976), 19, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8828), 5, sym__external_end_of_statement, anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + anon_sym_LBRACK, + ACTIONS(9442), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -531448,16 +531263,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_LBRACK, - [80949] = 5, - ACTIONS(9456), 1, + [80670] = 5, + ACTIONS(9464), 1, anon_sym_COMMA, - STATE(4313), 1, + STATE(4321), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9474), 8, + ACTIONS(9472), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -531466,7 +531280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9476), 25, + ACTIONS(9474), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -531475,10 +531289,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -531492,50 +531306,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [80997] = 16, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(8982), 1, + [80718] = 21, + ACTIONS(161), 1, anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, ACTIONS(9434), 1, anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, ACTIONS(9440), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, + ACTIONS(9446), 1, aux_sym_logical_expression_token2, - STATE(3021), 1, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + ACTIONS(9476), 1, + anon_sym_COMMA, + STATE(3060), 1, sym_user_defined_operator, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(4582), 1, + STATE(4580), 1, sym_coarray_index, + STATE(6153), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8980), 8, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, + ACTIONS(9470), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - anon_sym_LBRACK, - ACTIONS(9436), 10, + ACTIONS(9478), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -531546,52 +531365,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [81067] = 15, - ACTIONS(7416), 1, + [80798] = 11, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8982), 1, - anon_sym_DOT, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9426), 1, anon_sym_STAR_STAR, - STATE(3021), 1, + STATE(3032), 1, sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, + STATE(3880), 1, sym_coarray_index, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - STATE(4283), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8980), 9, - sym__external_end_of_statement, + ACTIONS(8830), 4, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_DOT, + ACTIONS(8828), 21, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, anon_sym_LBRACK, - ACTIONS(9436), 10, + [80858] = 8, + ACTIONS(8838), 1, + anon_sym_PERCENT, + STATE(2932), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8856), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8854), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -531599,51 +531456,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [81135] = 17, - ACTIONS(7416), 1, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [80912] = 15, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8982), 1, - anon_sym_DOT, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(8868), 1, + anon_sym_DOT, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, + STATE(3880), 1, sym_coarray_index, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - STATE(4283), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8980), 7, - sym__external_end_of_statement, + ACTIONS(8866), 9, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT_LT_LT, + anon_sym_RPAREN, + anon_sym_COLON, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, anon_sym_LBRACK, - ACTIONS(9436), 10, + anon_sym_RBRACK, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -531654,49 +531513,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [81207] = 13, - ACTIONS(7416), 1, + [80980] = 15, + ACTIONS(7442), 1, anon_sym_LPAREN2, + ACTIONS(8868), 1, + anon_sym_DOT, ACTIONS(9434), 1, anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, ACTIONS(9440), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - STATE(3021), 1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(4582), 1, + STATE(4580), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8826), 3, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(8824), 19, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8866), 9, sym__external_end_of_statement, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, + anon_sym_LBRACK, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -531704,37 +531566,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_LBRACK, - [81271] = 6, - ACTIONS(9482), 1, + [81048] = 10, + ACTIONS(8832), 1, anon_sym_LPAREN2, - STATE(3102), 1, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9426), 1, + anon_sym_STAR_STAR, + STATE(3032), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(4295), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8685), 6, + ACTIONS(8830), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, + aux_sym_end_program_statement_token1, anon_sym_DOT, - ACTIONS(8683), 25, - sym__external_end_of_statement, + ACTIONS(8828), 21, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_LT_LT_LT, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -531747,44 +531613,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_LBRACK, - [81321] = 8, - ACTIONS(8834), 1, + [81106] = 22, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, anon_sym_PERCENT, - STATE(3045), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9402), 1, + anon_sym_COLON, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + ACTIONS(9480), 1, + anon_sym_COMMA, + ACTIONS(9482), 1, + anon_sym_RBRACK, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, + STATE(6712), 1, + aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9072), 6, + ACTIONS(9394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_DOT, - ACTIONS(9070), 23, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [81188] = 22, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + ACTIONS(9456), 1, + anon_sym_COMMA, + ACTIONS(9460), 1, + anon_sym_COLON, + ACTIONS(9484), 1, + anon_sym_RPAREN, + STATE(2932), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + STATE(6713), 1, + aux_sym__argument_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9396), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -531792,55 +531734,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [81375] = 15, - ACTIONS(8828), 1, + [81270] = 13, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9402), 1, + ACTIONS(9424), 1, anon_sym_SLASH_SLASH, - ACTIONS(9404), 1, + ACTIONS(9426), 1, anon_sym_STAR_STAR, - STATE(3045), 1, + STATE(3032), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9076), 2, - aux_sym_end_program_statement_token1, - anon_sym_DOT, - ACTIONS(9390), 2, + ACTIONS(9416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9392), 2, + ACTIONS(9418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9396), 2, - anon_sym_GT, - anon_sym_LT, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9074), 8, + ACTIONS(8860), 4, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_DOT, + ACTIONS(8858), 18, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, aux_sym_enumerator_statement_token1, aux_sym_end_enum_statement_token1, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - anon_sym_LBRACK, - ACTIONS(9394), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -531848,37 +531784,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [81443] = 9, - ACTIONS(7416), 1, + anon_sym_LBRACK, + [81334] = 6, + ACTIONS(9486), 1, anon_sym_LPAREN2, - ACTIONS(9434), 1, - anon_sym_PERCENT, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(4582), 1, - sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(4283), 2, + STATE(4297), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 5, + ACTIONS(8704), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8972), 23, + ACTIONS(8702), 25, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_SEMI, anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, @@ -531895,52 +531829,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [81499] = 18, - ACTIONS(7416), 1, + [81384] = 5, + ACTIONS(9464), 1, + anon_sym_COMMA, + STATE(4309), 1, + aux_sym_parameters_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9489), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9491), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [81432] = 16, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8974), 1, - anon_sym_DOT, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(9424), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9426), 1, anon_sym_STAR_STAR, - ACTIONS(9478), 1, + ACTIONS(9450), 1, aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, + STATE(3032), 1, sym_user_defined_operator, - STATE(3102), 1, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, sym__argument_list, - STATE(4582), 1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8864), 2, + aux_sym_end_program_statement_token1, + anon_sym_DOT, + ACTIONS(9416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9418), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9422), 2, + anon_sym_GT, + anon_sym_LT, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8862), 7, + anon_sym_COMMA, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + ACTIONS(9420), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [81502] = 22, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9402), 1, + anon_sym_COLON, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + ACTIONS(9493), 1, + anon_sym_COMMA, + ACTIONS(9495), 1, + anon_sym_RBRACK, + STATE(2932), 1, + sym_user_defined_operator, + STATE(3880), 1, sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + STATE(6453), 1, + aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4283), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8972), 5, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - anon_sym_LBRACK, - ACTIONS(9436), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -531951,52 +531986,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [81573] = 18, - ACTIONS(8828), 1, + [81584] = 15, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9398), 1, - aux_sym_logical_expression_token1, - ACTIONS(9400), 1, - aux_sym_logical_expression_token2, - ACTIONS(9402), 1, + ACTIONS(9424), 1, anon_sym_SLASH_SLASH, - ACTIONS(9404), 1, + ACTIONS(9426), 1, anon_sym_STAR_STAR, - STATE(3045), 1, + STATE(3032), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8974), 2, + ACTIONS(8864), 2, aux_sym_end_program_statement_token1, anon_sym_DOT, - ACTIONS(9390), 2, + ACTIONS(9416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9392), 2, + ACTIONS(9418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9396), 2, + ACTIONS(9422), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9464), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8972), 4, + ACTIONS(8862), 8, anon_sym_COMMA, aux_sym_enumerator_statement_token1, aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, anon_sym_LBRACK, - ACTIONS(9394), 10, + ACTIONS(9420), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -532007,99 +532039,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [81647] = 5, - ACTIONS(9456), 1, - anon_sym_COMMA, - STATE(4314), 1, - aux_sym_parameters_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9454), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9458), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [81695] = 22, + [81652] = 22, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, + ACTIONS(8926), 1, anon_sym_LBRACK, - ACTIONS(9418), 1, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9448), 1, + ACTIONS(9456), 1, anon_sym_COMMA, - ACTIONS(9452), 1, + ACTIONS(9460), 1, anon_sym_COLON, - ACTIONS(9487), 1, + ACTIONS(9497), 1, anon_sym_RPAREN, - STATE(2972), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, - STATE(6961), 1, + STATE(6459), 1, aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -532110,43 +532099,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [81777] = 9, - ACTIONS(8828), 1, + [81734] = 22, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - STATE(3045), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + ACTIONS(9456), 1, + anon_sym_COMMA, + ACTIONS(9460), 1, + anon_sym_COLON, + ACTIONS(9499), 1, + anon_sym_RPAREN, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, + STATE(6865), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8974), 6, + ACTIONS(9394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_DOT, - ACTIONS(8972), 22, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -532154,59 +532159,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [81833] = 22, + [81816] = 22, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, + ACTIONS(8926), 1, anon_sym_LBRACK, - ACTIONS(9418), 1, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(9452), 1, + ACTIONS(9460), 1, anon_sym_COLON, - ACTIONS(9489), 1, + ACTIONS(9501), 1, + anon_sym_COMMA, + ACTIONS(9503), 1, anon_sym_RPAREN, - STATE(2972), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, - STATE(6300), 1, - aux_sym__argument_list_repeat1, + STATE(6373), 1, + aux_sym_case_value_range_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -532217,34 +532219,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [81915] = 11, - ACTIONS(8828), 1, + [81898] = 9, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9404), 1, - anon_sym_STAR_STAR, - STATE(3045), 1, + STATE(3032), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9392), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 4, + ACTIONS(8830), 6, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_GT, anon_sym_LT, aux_sym_end_program_statement_token1, anon_sym_DOT, - ACTIONS(8972), 21, + ACTIONS(8828), 22, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -532265,56 +532264,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_LBRACK, - [81975] = 21, + [81954] = 21, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9491), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9505), 1, anon_sym_COMMA, - STATE(2391), 1, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(6230), 1, + STATE(6224), 1, aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9493), 2, + ACTIONS(9507), 2, anon_sym_SLASH_RPAREN, anon_sym_RBRACK, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -532325,97 +532325,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [82055] = 22, + [82034] = 21, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, + ACTIONS(7448), 1, anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - ACTIONS(9448), 1, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + ACTIONS(9476), 1, anon_sym_COMMA, - ACTIONS(9452), 1, - anon_sym_COLON, - ACTIONS(9495), 1, - anon_sym_RPAREN, - STATE(2972), 1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, + STATE(3104), 1, sym__argument_list, - STATE(7027), 1, - aux_sym__argument_list_repeat1, + STATE(4580), 1, + sym_coarray_index, + STATE(6181), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9470), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + ACTIONS(9511), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [82137] = 5, - ACTIONS(9497), 1, - aux_sym__intrinsic_type_token5, - ACTIONS(9499), 1, - aux_sym__intrinsic_type_token7, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4331), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4333), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(9442), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -532423,61 +532384,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [82185] = 22, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, + [82114] = 17, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9416), 1, - anon_sym_COLON, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, ACTIONS(9424), 1, anon_sym_SLASH_SLASH, ACTIONS(9426), 1, anon_sym_STAR_STAR, - ACTIONS(9501), 1, - anon_sym_COMMA, - ACTIONS(9503), 1, - anon_sym_RBRACK, - STATE(2972), 1, + ACTIONS(9448), 1, + aux_sym_logical_expression_token1, + ACTIONS(9450), 1, + aux_sym_logical_expression_token2, + STATE(3032), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, - STATE(7031), 1, - aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(8864), 2, + aux_sym_end_program_statement_token1, + anon_sym_DOT, + ACTIONS(9416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9418), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9422), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(8862), 6, + anon_sym_COMMA, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + ACTIONS(9420), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -532488,15 +532439,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [82267] = 5, - ACTIONS(9456), 1, + [82186] = 5, + ACTIONS(9464), 1, anon_sym_COMMA, - STATE(4314), 1, + STATE(4313), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9505), 8, + ACTIONS(9513), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -532505,7 +532456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9507), 25, + ACTIONS(9515), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -532514,10 +532465,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -532531,11 +532482,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [82315] = 3, + [82234] = 13, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9424), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9426), 1, + anon_sym_STAR_STAR, + STATE(3032), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9418), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8908), 4, + anon_sym_GT, + anon_sym_LT, + aux_sym_end_program_statement_token1, + anon_sym_DOT, + ACTIONS(8906), 18, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_LBRACK, + [82298] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9509), 8, + ACTIONS(9517), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -532544,7 +532546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9511), 27, + ACTIONS(9519), 27, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_module_statement_token1, @@ -532555,10 +532557,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -532572,49 +532574,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [82359] = 15, - ACTIONS(8828), 1, + [82342] = 21, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9076), 1, - anon_sym_DOT, - ACTIONS(9424), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - STATE(2972), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9505), 1, + anon_sym_COMMA, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, - sym__argument_list, + STATE(6201), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9074), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - anon_sym_LBRACK, + ACTIONS(9521), 2, + anon_sym_SLASH_RPAREN, anon_sym_RBRACK, - ACTIONS(9412), 10, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -532625,15 +532633,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [82427] = 5, - ACTIONS(9456), 1, + [82422] = 5, + ACTIONS(9523), 1, anon_sym_COMMA, - STATE(4314), 1, + STATE(4313), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9513), 8, + ACTIONS(9517), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -532642,7 +532650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9515), 25, + ACTIONS(9519), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -532651,10 +532659,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -532668,99 +532676,218 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [82475] = 5, - ACTIONS(9517), 1, + [82470] = 22, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9402), 1, + anon_sym_COLON, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + ACTIONS(9526), 1, anon_sym_COMMA, - STATE(4314), 1, - aux_sym_parameters_repeat1, + ACTIONS(9528), 1, + anon_sym_RBRACK, + STATE(2932), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + STATE(6355), 1, + aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9509), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(9394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9396), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [82552] = 8, + ACTIONS(8838), 1, + anon_sym_PERCENT, + STATE(3032), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8856), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9511), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [82523] = 22, + anon_sym_DOT, + ACTIONS(8854), 23, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [82606] = 22, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, + ACTIONS(8926), 1, anon_sym_LBRACK, - ACTIONS(9418), 1, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9448), 1, + ACTIONS(9456), 1, anon_sym_COMMA, - ACTIONS(9452), 1, + ACTIONS(9460), 1, anon_sym_COLON, - ACTIONS(9520), 1, + ACTIONS(9530), 1, anon_sym_RPAREN, - STATE(2972), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, - STATE(6300), 1, + STATE(6357), 1, aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [82688] = 18, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9424), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9426), 1, + anon_sym_STAR_STAR, + ACTIONS(9448), 1, + aux_sym_logical_expression_token1, + ACTIONS(9450), 1, + aux_sym_logical_expression_token2, + STATE(3032), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8830), 2, + aux_sym_end_program_statement_token1, + anon_sym_DOT, + ACTIONS(9416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9418), 2, + anon_sym_STAR, + anon_sym_SLASH, ACTIONS(9422), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9452), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(8828), 4, + anon_sym_COMMA, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + anon_sym_LBRACK, + ACTIONS(9420), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -532771,41 +532898,158 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [82605] = 10, - ACTIONS(8828), 1, + [82762] = 22, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, anon_sym_PERCENT, - ACTIONS(9404), 1, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - STATE(3045), 1, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + ACTIONS(9534), 1, + anon_sym_LT_LT_LT, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3104), 1, + sym__argument_list, + STATE(4276), 1, + aux_sym_call_expression_repeat1, + STATE(4580), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4709), 1, + sym_argument_list, + STATE(5952), 1, + sym_cuda_kernel_argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9532), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [82844] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(3932), 2, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 6, + ACTIONS(9536), 4, + anon_sym_COMMA, + anon_sym_GT_GT_GT, + anon_sym_SLASH_RPAREN, + anon_sym_RBRACK, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [82920] = 11, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + STATE(2932), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8830), 3, anon_sym_GT, anon_sym_LT, - aux_sym_end_program_statement_token1, anon_sym_DOT, - ACTIONS(8972), 21, + ACTIONS(8828), 22, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, + anon_sym_COLON, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -532819,15 +533063,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, anon_sym_LBRACK, - [82663] = 5, - ACTIONS(9456), 1, + anon_sym_RBRACK, + [82980] = 5, + ACTIONS(9464), 1, anon_sym_COMMA, - STATE(4301), 1, + STATE(4313), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9522), 8, + ACTIONS(9489), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -532836,7 +533081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9524), 25, + ACTIONS(9491), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -532845,10 +533090,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -532862,45 +533107,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [82711] = 13, - ACTIONS(8828), 1, + [83028] = 10, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9402), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9404), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - STATE(3045), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9390), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9392), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8978), 4, + ACTIONS(8830), 5, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - aux_sym_end_program_statement_token1, anon_sym_DOT, - ACTIONS(8976), 18, + ACTIONS(8828), 22, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, + anon_sym_COLON, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -532912,56 +533152,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, anon_sym_LBRACK, - [82775] = 21, + anon_sym_RBRACK, + [83086] = 22, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9299), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9491), 1, + ACTIONS(9456), 1, anon_sym_COMMA, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, + ACTIONS(9460), 1, + anon_sym_COLON, + ACTIONS(9538), 1, + anon_sym_RPAREN, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(6118), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + STATE(4024), 1, + sym__argument_list, + STATE(6865), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9526), 2, - anon_sym_SLASH_RPAREN, - anon_sym_RBRACK, - STATE(4263), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -532972,58 +533215,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [82855] = 21, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, + [83168] = 13, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - ACTIONS(9528), 1, - anon_sym_COMMA, - STATE(3021), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, + STATE(3880), 1, sym_coarray_index, - STATE(6232), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9530), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, + ACTIONS(8860), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8858), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -533031,50 +533264,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [82935] = 16, - ACTIONS(8828), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + [83232] = 16, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9400), 1, + ACTIONS(8864), 1, + anon_sym_DOT, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9402), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9404), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - STATE(3045), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8982), 2, - aux_sym_end_program_statement_token1, - anon_sym_DOT, - ACTIONS(9390), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9392), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9396), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8980), 7, + ACTIONS(8862), 8, anon_sym_COMMA, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, + anon_sym_RPAREN, + anon_sym_COLON, aux_sym_logical_expression_token1, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, anon_sym_LBRACK, - ACTIONS(9394), 10, + anon_sym_RBRACK, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -533085,49 +533320,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [83005] = 15, - ACTIONS(8828), 1, + [83302] = 15, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9402), 1, + ACTIONS(8864), 1, + anon_sym_DOT, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9404), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - STATE(3045), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8982), 2, - aux_sym_end_program_statement_token1, - anon_sym_DOT, - ACTIONS(9390), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9392), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9396), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8980), 8, + ACTIONS(8862), 9, anon_sym_COMMA, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, + anon_sym_RPAREN, + anon_sym_COLON, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, anon_sym_LBRACK, - ACTIONS(9394), 10, + anon_sym_RBRACK, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -533138,55 +533373,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [83073] = 21, + [83370] = 5, + ACTIONS(9464), 1, + anon_sym_COMMA, + STATE(4283), 1, + aux_sym_parameters_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9540), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9542), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [83418] = 22, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(7416), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - ACTIONS(9528), 1, + ACTIONS(9456), 1, anon_sym_COMMA, - STATE(3021), 1, + ACTIONS(9460), 1, + anon_sym_COLON, + ACTIONS(9544), 1, + anon_sym_RPAREN, + STATE(2932), 1, sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, + STATE(3880), 1, sym_coarray_index, - STATE(6237), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + STATE(4024), 1, + sym__argument_list, + STATE(6459), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9532), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -533197,56 +533476,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [83153] = 22, + [83500] = 22, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(7416), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - ACTIONS(9536), 1, - anon_sym_LT_LT_LT, - STATE(3021), 1, + ACTIONS(9456), 1, + anon_sym_COMMA, + ACTIONS(9460), 1, + anon_sym_COLON, + ACTIONS(9544), 1, + anon_sym_RPAREN, + STATE(2932), 1, sym_user_defined_operator, - STATE(3102), 1, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, sym__argument_list, - STATE(4283), 1, + STATE(6576), 1, + aux_sym__argument_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9396), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(3951), 2, + sym_argument_list, aux_sym_call_expression_repeat1, - STATE(4582), 1, + ACTIONS(9398), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [83582] = 20, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + ACTIONS(9460), 1, + anon_sym_COLON, + STATE(2932), 1, + sym_user_defined_operator, + STATE(3880), 1, sym_coarray_index, - STATE(4752), 1, - sym_argument_list, - STATE(6087), 1, - sym_cuda_kernel_argument_list, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9534), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(9436), 10, + ACTIONS(9546), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -533257,36 +533593,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [83235] = 8, - ACTIONS(9434), 1, + [83659] = 20, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, anon_sym_PERCENT, - STATE(3021), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + ACTIONS(9550), 1, + anon_sym_COLON, + STATE(2932), 1, sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, + STATE(3880), 1, sym_coarray_index, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(4283), 2, + ACTIONS(9394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9396), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9548), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9072), 5, + ACTIONS(9398), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [83736] = 4, + ACTIONS(9554), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9552), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9556), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [83781] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(9070), 24, + ACTIONS(4257), 28, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, + anon_sym_EQ_GT, anon_sym_SEMI, anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, @@ -533303,49 +533731,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [83289] = 13, - ACTIONS(8828), 1, + [83824] = 20, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + ACTIONS(9560), 1, + anon_sym_COLON, + STATE(2932), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9396), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9558), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [83901] = 4, + ACTIONS(9564), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9562), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9566), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [83946] = 20, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6698), 1, + anon_sym_COLON, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9402), 1, - anon_sym_SLASH_SLASH, + ACTIONS(8926), 1, + anon_sym_LBRACK, ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - STATE(3045), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9390), 2, + ACTIONS(6694), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9392), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8826), 4, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - aux_sym_end_program_statement_token1, - anon_sym_DOT, - ACTIONS(8824), 18, - anon_sym_COMMA, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -533353,57 +533886,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_LBRACK, - [83353] = 22, + [84023] = 20, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, + ACTIONS(8926), 1, anon_sym_LBRACK, - ACTIONS(9418), 1, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(9452), 1, + ACTIONS(9570), 1, anon_sym_COLON, - ACTIONS(9538), 1, - anon_sym_RPAREN, - STATE(2972), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, - STATE(7032), 1, - aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + ACTIONS(9568), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -533414,56 +533943,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [83435] = 22, + [84100] = 19, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9416), 1, - anon_sym_COLON, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9540), 1, - anon_sym_COMMA, - ACTIONS(9542), 1, - anon_sym_RBRACK, - STATE(2972), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - STATE(6958), 1, - aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(9572), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -533474,52 +533999,134 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [83517] = 19, + [84175] = 4, + ACTIONS(9576), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9574), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9578), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [84220] = 4, + ACTIONS(9582), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9580), 13, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9584), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [84265] = 19, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(7416), 1, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(7422), 1, + ACTIONS(7448), 1, anon_sym_LBRACK, ACTIONS(9434), 1, anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, ACTIONS(9440), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, + ACTIONS(9446), 1, aux_sym_logical_expression_token2, - ACTIONS(9480), 1, + ACTIONS(9454), 1, aux_sym_logical_expression_token1, - STATE(3021), 1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(4582), 1, + STATE(4580), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, + ACTIONS(9470), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4283), 2, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8956), 3, + ACTIONS(9536), 3, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(9436), 10, + ACTIONS(9442), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -533530,156 +534137,138 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [83592] = 3, + [84340] = 4, + ACTIONS(9588), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4279), 28, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [83635] = 3, + ACTIONS(9586), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9590), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [84385] = 4, + ACTIONS(9594), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4331), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, + ACTIONS(9592), 13, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9596), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [84430] = 20, + ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(4333), 28, - sym__external_end_of_statement, - anon_sym_COMMA, + ACTIONS(8832), 1, anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(8838), 1, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_LT_LT_LT, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9402), 1, + anon_sym_COLON, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - [83678] = 3, + STATE(2932), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4325), 28, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [83721] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4335), 6, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4337), 28, - sym__external_end_of_statement, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9598), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, + anon_sym_RBRACK, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -533687,16 +534276,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [83764] = 4, - ACTIONS(9546), 1, + [84507] = 4, + ACTIONS(9602), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9544), 13, + ACTIONS(9600), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -533710,7 +534296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9548), 20, + ACTIONS(9604), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -533731,13 +534317,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [83809] = 4, - ACTIONS(9552), 1, + [84552] = 4, + ACTIONS(9608), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 13, + ACTIONS(9606), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -533751,7 +534337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(9610), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -533772,69 +534358,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [83854] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, + [84597] = 4, + ACTIONS(9614), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9556), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [83929] = 4, - ACTIONS(9560), 1, + ACTIONS(9612), 13, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9616), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [84642] = 4, + ACTIONS(9620), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9558), 13, + ACTIONS(9618), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -533848,7 +534419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9562), 20, + ACTIONS(9622), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -533869,54 +534440,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [83974] = 21, + [84687] = 20, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9299), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9564), 1, - anon_sym_COMMA, - ACTIONS(9566), 1, - anon_sym_RPAREN, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, + ACTIONS(9460), 1, + anon_sym_COLON, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(7103), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + ACTIONS(9624), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -533927,53 +534497,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [84053] = 20, + [84764] = 21, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(7416), 1, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, + ACTIONS(9359), 1, aux_sym_logical_expression_token1, - ACTIONS(9568), 1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9626), 1, anon_sym_COMMA, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, + ACTIONS(9628), 1, + anon_sym_RPAREN, + STATE(2529), 1, sym__argument_list, - STATE(4582), 1, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, sym_coarray_index, + STATE(7428), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9570), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -533984,113 +534555,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [84130] = 20, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9416), 1, - anon_sym_COLON, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, + [84843] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(4315), 6, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9572), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4317), 28, + sym__external_end_of_statement, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [84207] = 20, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, + anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - ACTIONS(9576), 1, - anon_sym_COLON, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9414), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9422), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9574), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -534098,53 +534592,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [84284] = 20, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [84886] = 21, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9452), 1, - anon_sym_COLON, - STATE(2972), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9628), 1, + anon_sym_RPAREN, + ACTIONS(9630), 1, + anon_sym_COMMA, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, - sym__argument_list, + STATE(7384), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9578), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3932), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -534155,53 +534653,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [84361] = 20, + [84965] = 20, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, + ACTIONS(7448), 1, anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - ACTIONS(9582), 1, - anon_sym_COLON, - STATE(2972), 1, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + ACTIONS(9632), 1, + anon_sym_COMMA, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, + STATE(3104), 1, sym__argument_list, + STATE(4580), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9470), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9580), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3932), 2, + ACTIONS(9634), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(9442), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -534212,33 +534710,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [84438] = 4, - ACTIONS(9586), 1, + [85042] = 4, + ACTIONS(9638), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9584), 13, + ACTIONS(9636), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9588), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9640), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -534252,41 +534751,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [84483] = 7, - ACTIONS(5498), 1, - aux_sym_end_program_statement_token1, - ACTIONS(8020), 1, - anon_sym__, - STATE(3881), 1, - sym__kind, + [85087] = 20, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9412), 1, + anon_sym_STAR_STAR, + ACTIONS(9644), 1, + anon_sym_COLON, + STATE(2932), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5500), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_end_do_loop_statement_token1, - ACTIONS(5502), 6, + ACTIONS(9394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5504), 22, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(9408), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9642), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3951), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -534294,57 +534808,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [84534] = 21, + [85164] = 20, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9564), 1, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + ACTIONS(9646), 1, anon_sym_COMMA, - ACTIONS(9590), 1, - anon_sym_RPAREN, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, sym_coarray_index, - STATE(7103), 1, - aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9470), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + ACTIONS(9648), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9442), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -534355,13 +534865,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [84613] = 4, - ACTIONS(9594), 1, + [85241] = 4, + ACTIONS(9652), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9592), 8, + ACTIONS(9650), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -534370,7 +534880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9596), 25, + ACTIONS(9654), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -534379,10 +534889,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -534396,53 +534906,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [84658] = 20, + [85286] = 20, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(6700), 1, + anon_sym_COMMA, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, + ACTIONS(7448), 1, anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - ACTIONS(9600), 1, - anon_sym_COLON, - STATE(2972), 1, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, + STATE(3104), 1, sym__argument_list, + STATE(4580), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(6702), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9470), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9598), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3932), 2, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(9442), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -534453,53 +534963,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [84735] = 20, + [85363] = 19, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(7416), 1, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(7422), 1, + ACTIONS(7448), 1, anon_sym_LBRACK, ACTIONS(9434), 1, anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, ACTIONS(9440), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, + ACTIONS(9446), 1, aux_sym_logical_expression_token2, - ACTIONS(9480), 1, + ACTIONS(9454), 1, aux_sym_logical_expression_token1, - ACTIONS(9602), 1, - anon_sym_COMMA, - STATE(3021), 1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(4582), 1, + STATE(4580), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, + ACTIONS(9470), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9604), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, + ACTIONS(8922), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(9442), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -534510,13 +535019,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [84812] = 4, - ACTIONS(9608), 1, + [85438] = 4, + ACTIONS(9658), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9606), 13, + ACTIONS(9656), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -534530,7 +535039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9610), 20, + ACTIONS(9660), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -534551,71 +535060,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [84857] = 21, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9566), 1, - anon_sym_RPAREN, - ACTIONS(9612), 1, - anon_sym_COMMA, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(7434), 1, - aux_sym_cuda_kernel_argument_list_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [84936] = 4, - ACTIONS(9616), 1, + [85483] = 4, + ACTIONS(9664), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9614), 8, + ACTIONS(9662), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -534624,7 +535075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9618), 25, + ACTIONS(9666), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -534633,10 +535084,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -534650,18 +535101,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [84981] = 3, + [85528] = 7, + ACTIONS(5472), 1, + aux_sym_end_program_statement_token1, + ACTIONS(8115), 1, + anon_sym__, + STATE(3860), 1, + sym__kind, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(5474), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_end_do_loop_statement_token1, + ACTIONS(5476), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(5478), 22, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [85579] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 28, + ACTIONS(4347), 28, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_LPAREN2, @@ -534690,33 +535185,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [85024] = 4, - ACTIONS(9622), 1, - sym_preproc_comment, + [85622] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 13, + ACTIONS(4349), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4351), 26, + anon_sym_COMMA, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -534730,14 +535225,127 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [85069] = 4, - ACTIONS(9628), 1, + [85665] = 21, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9505), 1, + anon_sym_COMMA, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9668), 1, + anon_sym_GT_GT_GT, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(6632), 1, + aux_sym_cuda_kernel_argument_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [85744] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8944), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [85819] = 4, + ACTIONS(9672), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9626), 8, + ACTIONS(9670), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -534746,7 +535354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9630), 25, + ACTIONS(9674), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -534755,10 +535363,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -534772,34 +535380,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [85114] = 4, - ACTIONS(9634), 1, + [85864] = 4, + ACTIONS(9678), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9632), 8, + ACTIONS(9676), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9636), 25, + ACTIONS(9680), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -534813,37 +535420,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [85159] = 8, - ACTIONS(9638), 1, - anon_sym_LPAREN2, - STATE(664), 1, - sym__end_of_statement, - STATE(3102), 1, - sym__argument_list, - STATE(6278), 1, - sym_argument_list, + aux_sym_include_statement_token1, + [85909] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9641), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(4323), 6, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 22, + ACTIONS(4257), 28, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -534858,96 +535461,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [85212] = 4, - ACTIONS(9645), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9643), 13, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9647), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [85257] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, + [85952] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(4349), 6, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9470), 3, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4351), 28, sym__external_end_of_statement, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(9436), 10, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, + anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -534955,13 +535498,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [85332] = 4, - ACTIONS(9651), 1, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [85995] = 4, + ACTIONS(9684), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9649), 8, + ACTIONS(9682), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -534970,7 +535516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9653), 25, + ACTIONS(9686), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -534979,10 +535525,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -534996,53 +535542,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [85377] = 20, + [86040] = 20, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(6710), 1, - anon_sym_COMMA, - ACTIONS(7416), 1, + ACTIONS(6654), 1, + anon_sym_COLON, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + aux_sym_logical_expression_token1, + ACTIONS(9406), 1, + aux_sym_logical_expression_token2, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, + STATE(3880), 1, sym_coarray_index, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6712), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(9430), 2, + ACTIONS(6652), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4283), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -535053,33 +535599,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [85454] = 4, - ACTIONS(9657), 1, + [86117] = 4, + ACTIONS(9690), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9655), 13, + ACTIONS(9688), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9659), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9692), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535093,14 +535640,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [85499] = 4, - ACTIONS(9663), 1, + [86162] = 4, + ACTIONS(9696), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9661), 8, + ACTIONS(9694), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535109,7 +535655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9665), 25, + ACTIONS(9698), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -535118,10 +535664,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535135,13 +535681,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [85544] = 4, - ACTIONS(9669), 1, + [86207] = 21, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9630), 1, + anon_sym_COMMA, + ACTIONS(9700), 1, + anon_sym_RPAREN, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + STATE(7384), 1, + aux_sym_cuda_kernel_argument_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [86286] = 4, + ACTIONS(9704), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9667), 13, + ACTIONS(9702), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535155,7 +535759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9671), 20, + ACTIONS(9706), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -535176,34 +535780,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [85589] = 4, - ACTIONS(9675), 1, + [86331] = 4, + ACTIONS(9710), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9673), 8, + ACTIONS(9708), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9677), 25, + ACTIONS(9712), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535217,34 +535820,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [85634] = 4, - ACTIONS(9681), 1, + aux_sym_include_statement_token1, + [86376] = 4, + ACTIONS(9716), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9679), 8, + ACTIONS(9714), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9683), 25, + ACTIONS(9718), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535258,13 +535861,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [85679] = 4, - ACTIONS(9687), 1, + aux_sym_include_statement_token1, + [86421] = 8, + ACTIONS(9720), 1, + anon_sym_LPAREN2, + STATE(695), 1, + sym__end_of_statement, + STATE(3104), 1, + sym__argument_list, + STATE(6754), 1, + sym_argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9723), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(4255), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4257), 22, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [86474] = 4, + ACTIONS(9727), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 13, + ACTIONS(9725), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535278,7 +535927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(9729), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -535299,68 +535948,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [85724] = 20, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - ACTIONS(9693), 1, - anon_sym_COLON, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9414), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9691), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [85801] = 3, + [86519] = 4, + ACTIONS(9733), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4331), 8, + ACTIONS(9731), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535369,8 +535963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4333), 26, - anon_sym_COMMA, + ACTIONS(9735), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -535379,10 +535972,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535396,13 +535989,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [85844] = 4, - ACTIONS(9697), 1, - sym_preproc_comment, + [86564] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9695), 13, + ACTIONS(4595), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535416,7 +536007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9699), 20, + ACTIONS(4597), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -535437,70 +536028,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [85889] = 20, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - ACTIONS(9452), 1, - anon_sym_COLON, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9414), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9701), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [85966] = 4, - ACTIONS(9705), 1, - sym_preproc_comment, + [86606] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 13, + ACTIONS(9737), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535514,7 +536046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(9739), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -535535,13 +536067,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [86011] = 4, - ACTIONS(9711), 1, - sym_preproc_comment, + [86648] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9709), 8, + ACTIONS(9741), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535550,7 +536080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9713), 25, + ACTIONS(9743), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -535559,10 +536089,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535576,13 +536106,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [86056] = 4, - ACTIONS(9717), 1, - sym_preproc_comment, + [86690] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9715), 8, + ACTIONS(9351), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535591,7 +536119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9719), 25, + ACTIONS(9353), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -535600,10 +536128,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535617,13 +536145,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [86101] = 4, - ACTIONS(9723), 1, - sym_preproc_comment, + [86732] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9721), 8, + ACTIONS(9355), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535632,7 +536158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9725), 25, + ACTIONS(9357), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -535641,10 +536167,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535658,224 +536184,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [86146] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9042), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [86221] = 20, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6690), 1, - anon_sym_COLON, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, + [86774] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6686), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9414), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [86298] = 20, + ACTIONS(9363), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9365), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [86816] = 20, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(6658), 1, - anon_sym_COLON, - ACTIONS(8828), 1, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(6656), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9414), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [86375] = 21, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, + ACTIONS(9359), 1, aux_sym_logical_expression_token1, - ACTIONS(9299), 1, + ACTIONS(9361), 1, aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9509), 1, anon_sym_LBRACK, - ACTIONS(9491), 1, + ACTIONS(9648), 1, + anon_sym_RPAREN, + ACTIONS(9745), 1, anon_sym_COMMA, - ACTIONS(9727), 1, - anon_sym_GT_GT_GT, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(6546), 1, - aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -535886,13 +536279,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [86454] = 4, - ACTIONS(9731), 1, - sym_preproc_comment, + [86892] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9729), 8, + ACTIONS(4603), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -535901,7 +536292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9733), 25, + ACTIONS(4605), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -535910,10 +536301,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535927,31 +536318,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [86499] = 3, + [86934] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7484), 13, + ACTIONS(4527), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7486), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4529), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -535965,28 +536357,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [86541] = 9, - ACTIONS(9735), 1, + [86976] = 9, + ACTIONS(9747), 1, aux_sym_language_binding_token1, - ACTIONS(9739), 1, + ACTIONS(9751), 1, aux_sym__standalone_type_qualifier_token3, - ACTIONS(9741), 1, + ACTIONS(9753), 1, aux_sym__standalone_type_qualifier_token4, - ACTIONS(9743), 1, + ACTIONS(9755), 1, aux_sym__standalone_type_qualifier_token6, - STATE(3969), 1, + STATE(3915), 1, sym__standalone_type_qualifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9757), 2, aux_sym_type_qualifier_token1, aux_sym_type_qualifier_token2, - STATE(3363), 2, + STATE(3354), 2, sym_language_binding, sym_type_qualifier, - ACTIONS(9737), 24, + ACTIONS(9749), 24, aux_sym_procedure_attributes_token3, aux_sym_use_statement_token2, aux_sym_implicit_statement_token4, @@ -536011,32 +536402,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__standalone_type_qualifier_token14, aux_sym__standalone_type_qualifier_token15, aux_sym__standalone_type_qualifier_token16, - [86595] = 3, + [87030] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4457), 8, + ACTIONS(9600), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4459), 25, + ACTIONS(9604), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -536050,87 +536440,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [86637] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, + aux_sym_include_statement_token1, + [87072] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9580), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [86711] = 3, + ACTIONS(9759), 13, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9761), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [87114] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9747), 8, + ACTIONS(9763), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9749), 25, + ACTIONS(9765), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -536144,11 +536518,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [86753] = 3, + aux_sym_include_statement_token1, + [87156] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 8, + ACTIONS(4541), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -536157,7 +536532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 25, + ACTIONS(4543), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -536166,10 +536541,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -536183,590 +536558,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [86795] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9751), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [86869] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9753), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [86943] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9755), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [87017] = 16, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9765), 1, - aux_sym_logical_expression_token2, - ACTIONS(9767), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8982), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(9757), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9759), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9763), 2, - anon_sym_GT, - anon_sym_LT, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8980), 5, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_LBRACK, - ACTIONS(9761), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [87085] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9771), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [87159] = 15, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9767), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8982), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(9757), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9759), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9763), 2, - anon_sym_GT, - anon_sym_LT, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8980), 6, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_LBRACK, - ACTIONS(9761), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [87225] = 17, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9765), 1, - aux_sym_logical_expression_token2, - ACTIONS(9767), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, - anon_sym_STAR_STAR, - ACTIONS(9773), 1, - aux_sym_logical_expression_token1, - STATE(2391), 1, - sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8982), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(9757), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9759), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9763), 2, - anon_sym_GT, - anon_sym_LT, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8980), 4, - anon_sym_EQ_GT, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - anon_sym_LBRACK, - ACTIONS(9761), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [87295] = 13, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9767), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9757), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9759), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8826), 4, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(8824), 16, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_LBRACK, - [87357] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9775), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [87431] = 9, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - STATE(2391), 1, - sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8974), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(8972), 20, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [87485] = 18, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9765), 1, - aux_sym_logical_expression_token2, - ACTIONS(9767), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, - anon_sym_STAR_STAR, - ACTIONS(9773), 1, - aux_sym_logical_expression_token1, - STATE(2391), 1, - sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8972), 2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - ACTIONS(8974), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(9757), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9759), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9763), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9777), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9761), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [87557] = 3, + [87198] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 8, + ACTIONS(4565), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -536775,7 +536571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 25, + ACTIONS(4567), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -536784,10 +536580,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -536801,32 +536597,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [87599] = 3, + [87240] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9353), 8, + ACTIONS(4607), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9355), 25, + ACTIONS(4609), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -536840,11 +536635,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [87641] = 3, + aux_sym_include_statement_token1, + [87282] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9779), 13, + ACTIONS(9708), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -536858,7 +536654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9781), 20, + ACTIONS(9712), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -536879,11 +536675,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [87683] = 3, + [87324] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9783), 13, + ACTIONS(4451), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -536897,7 +536693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9785), 20, + ACTIONS(4453), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -536918,11 +536714,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [87725] = 3, + [87366] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 13, + ACTIONS(4479), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -536936,7 +536732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 20, + ACTIONS(4481), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -536957,11 +536753,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [87767] = 3, + [87408] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 13, + ACTIONS(9725), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -536975,7 +536771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 20, + ACTIONS(9729), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -536996,11 +536792,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [87809] = 3, + [87450] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4531), 13, + ACTIONS(4523), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537014,7 +536810,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4533), 20, + ACTIONS(4525), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [87492] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9767), 13, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9769), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537035,11 +536870,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [87851] = 3, + [87534] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4535), 13, + ACTIONS(9771), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537053,7 +536888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4537), 20, + ACTIONS(9773), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537074,31 +536909,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [87893] = 3, + [87576] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 13, + ACTIONS(9775), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9777), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -537112,12 +536948,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [87935] = 3, + [87618] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4543), 13, + ACTIONS(9779), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537131,7 +536966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4545), 20, + ACTIONS(9781), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537152,32 +536987,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [87977] = 3, + [87660] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 8, + ACTIONS(9783), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 25, + ACTIONS(9785), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -537191,106 +537025,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [88019] = 19, + aux_sym_include_statement_token1, + [87702] = 19, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9787), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [88093] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, + ACTIONS(9359), 1, aux_sym_logical_expression_token1, - ACTIONS(9299), 1, + ACTIONS(9361), 1, aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9509), 1, anon_sym_LBRACK, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9789), 2, + ACTIONS(9787), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -537301,11 +537081,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [88167] = 3, + [87776] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4383), 13, + ACTIONS(9789), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537319,7 +537099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4385), 20, + ACTIONS(9791), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537340,11 +537120,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [88209] = 3, + [87818] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 13, + ACTIONS(9606), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537358,7 +537138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 20, + ACTIONS(9610), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537379,11 +537159,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [88251] = 3, + [87860] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4387), 13, + ACTIONS(9793), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537397,7 +537177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4389), 20, + ACTIONS(9795), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537418,11 +537198,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [88293] = 3, + [87902] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4391), 13, + ACTIONS(9797), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537436,7 +537216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 20, + ACTIONS(9799), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537457,11 +537237,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [88335] = 3, + [87944] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4395), 13, + ACTIONS(9801), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537475,7 +537255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4397), 20, + ACTIONS(9803), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537496,32 +537276,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [88377] = 3, + [87986] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9791), 8, + ACTIONS(9805), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9793), 25, + ACTIONS(9807), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -537535,11 +537314,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [88419] = 3, + aux_sym_include_statement_token1, + [88028] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9454), 8, + ACTIONS(9694), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537548,7 +537328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9458), 25, + ACTIONS(9698), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -537557,10 +537337,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -537574,11 +537354,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [88461] = 3, + [88070] = 9, + ACTIONS(9747), 1, + aux_sym_language_binding_token1, + ACTIONS(9751), 1, + aux_sym__standalone_type_qualifier_token3, + ACTIONS(9753), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(9755), 1, + aux_sym__standalone_type_qualifier_token6, + STATE(3915), 1, + sym__standalone_type_qualifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4399), 13, + ACTIONS(9757), 2, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + STATE(3937), 2, + sym_language_binding, + sym_type_qualifier, + ACTIONS(9749), 24, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, + aux_sym_variable_attributes_token5, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, + [88124] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9809), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537592,7 +537417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4401), 20, + ACTIONS(9811), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537613,11 +537438,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [88503] = 3, + [88166] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 13, + ACTIONS(9813), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537631,7 +537456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 20, + ACTIONS(9815), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537652,176 +537477,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [88545] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, + [88208] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9795), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [88619] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9797), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [88693] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9799), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [88767] = 3, + ACTIONS(4607), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(4609), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [88250] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4439), 13, + ACTIONS(9817), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537835,7 +537534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4441), 20, + ACTIONS(9819), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537856,11 +537555,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [88809] = 3, + [88292] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4451), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(4453), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [88334] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4457), 13, + ACTIONS(9821), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537874,7 +537612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4459), 20, + ACTIONS(9823), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -537895,11 +537633,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [88851] = 3, + [88376] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9371), 8, + ACTIONS(9335), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537908,7 +537646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9373), 25, + ACTIONS(9337), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -537917,10 +537655,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -537934,11 +537672,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [88893] = 3, + [88418] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 8, + ACTIONS(9291), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -537947,7 +537685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 25, + ACTIONS(9293), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -537956,10 +537694,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -537973,31 +537711,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [88935] = 3, + [88460] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 13, + ACTIONS(4479), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4481), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538011,32 +537750,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [88977] = 3, + [88502] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 13, + ACTIONS(4391), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4393), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538050,12 +537789,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [89019] = 3, + [88544] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 8, + ACTIONS(4523), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538064,7 +537802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 25, + ACTIONS(4525), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538073,10 +537811,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538090,11 +537828,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89061] = 3, + [88586] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9801), 13, + ACTIONS(9825), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538108,7 +537846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9803), 20, + ACTIONS(9827), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -538129,75 +537867,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [89103] = 8, - ACTIONS(8834), 1, - anon_sym_PERCENT, - STATE(2391), 1, - sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9072), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(9070), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [89155] = 3, + [88628] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 13, + ACTIONS(4395), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7506), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4397), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538211,12 +537906,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [89197] = 3, + [88670] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9367), 8, + ACTIONS(4399), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538225,7 +537919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9369), 25, + ACTIONS(4401), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538234,10 +537928,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538251,11 +537945,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89239] = 3, + [88712] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9313), 8, + ACTIONS(9327), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538264,7 +537958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9315), 25, + ACTIONS(9329), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538273,10 +537967,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538290,51 +537984,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89281] = 4, + [88754] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9805), 4, - aux_sym__import_names_token1, - aux_sym_coarray_statement_token3, - aux_sym_coarray_statement_token4, - aux_sym_coarray_statement_token5, - ACTIONS(4323), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4325), 23, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [89325] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4567), 8, + ACTIONS(4403), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538343,7 +537997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4569), 25, + ACTIONS(4405), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538352,10 +538006,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538369,11 +538023,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89367] = 3, + [88796] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9357), 8, + ACTIONS(9323), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538382,7 +538036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9359), 25, + ACTIONS(9325), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538391,10 +538045,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538408,11 +538062,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89409] = 3, + [88838] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 8, + ACTIONS(9319), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538421,7 +538075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 25, + ACTIONS(9321), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538430,10 +538084,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538447,11 +538101,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89451] = 3, + [88880] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 8, + ACTIONS(9331), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538460,7 +538114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 25, + ACTIONS(9333), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538469,10 +538123,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538486,11 +538140,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89493] = 3, + [88922] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9807), 8, + ACTIONS(4407), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538499,7 +538153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9809), 25, + ACTIONS(4409), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538508,10 +538162,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538525,31 +538179,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89535] = 3, + [88964] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4567), 13, + ACTIONS(4411), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4569), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4413), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538563,12 +538218,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [89577] = 3, + [89006] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9729), 8, + ACTIONS(9299), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538577,7 +538231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9733), 25, + ACTIONS(9301), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538586,10 +538240,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538603,31 +538257,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89619] = 3, + [89048] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 13, + ACTIONS(4415), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4417), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538641,32 +538296,307 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [89661] = 3, + [89090] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9829), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [89164] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9831), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [89238] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9833), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [89312] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9835), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [89386] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9837), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [89460] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 13, + ACTIONS(9839), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9841), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538680,12 +538610,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [89703] = 3, + [89502] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9811), 13, + ACTIONS(4447), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538699,7 +538628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9813), 20, + ACTIONS(4449), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -538720,11 +538649,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [89745] = 3, + [89544] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4579), 8, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9843), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [89618] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9845), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [89692] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9847), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538733,7 +538772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4581), 25, + ACTIONS(9849), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538742,10 +538781,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538759,11 +538798,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89787] = 3, + [89734] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9815), 8, + ACTIONS(9552), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538772,7 +538811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9817), 25, + ACTIONS(9556), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538781,10 +538820,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538798,11 +538837,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89829] = 3, + [89776] = 9, + ACTIONS(9747), 1, + aux_sym_language_binding_token1, + ACTIONS(9751), 1, + aux_sym__standalone_type_qualifier_token3, + ACTIONS(9753), 1, + aux_sym__standalone_type_qualifier_token4, + ACTIONS(9755), 1, + aux_sym__standalone_type_qualifier_token6, + STATE(3915), 1, + sym__standalone_type_qualifier, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9757), 2, + aux_sym_type_qualifier_token1, + aux_sym_type_qualifier_token2, + STATE(3353), 2, + sym_language_binding, + sym_type_qualifier, + ACTIONS(9749), 24, + aux_sym_procedure_attributes_token3, + aux_sym_use_statement_token2, + aux_sym_implicit_statement_token4, + aux_sym_save_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_abstract_specifier_token1, + aux_sym_procedure_attribute_token6, + aux_sym_variable_attributes_token1, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, + aux_sym_variable_attributes_token5, + aux_sym__standalone_type_qualifier_token1, + aux_sym__standalone_type_qualifier_token2, + aux_sym__standalone_type_qualifier_token5, + aux_sym__standalone_type_qualifier_token10, + aux_sym__standalone_type_qualifier_token11, + aux_sym__standalone_type_qualifier_token12, + aux_sym__standalone_type_qualifier_token13, + aux_sym__standalone_type_qualifier_token14, + aux_sym__standalone_type_qualifier_token15, + aux_sym__standalone_type_qualifier_token16, + [89830] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9819), 8, + ACTIONS(9731), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538811,7 +538895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9821), 25, + ACTIONS(9735), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538820,10 +538904,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538837,31 +538921,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89871] = 3, + [89872] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9823), 13, + ACTIONS(9851), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9825), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9853), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538875,12 +538960,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [89913] = 3, + [89914] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9383), 8, + ACTIONS(9303), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -538889,7 +538973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9385), 25, + ACTIONS(9305), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -538898,10 +538982,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -538915,51 +538999,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [89955] = 19, + [89956] = 20, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, anon_sym_LBRACK, - STATE(2391), 1, + ACTIONS(9855), 1, + anon_sym_RPAREN, + ACTIONS(9857), 1, + anon_sym_EQ_GT, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - ACTIONS(9827), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -538970,50 +539055,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [90029] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9321), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9323), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [90071] = 3, + [90032] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 8, + ACTIONS(9367), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539022,7 +539068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 25, + ACTIONS(9369), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -539031,10 +539077,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539048,47 +539094,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [90113] = 15, + [90074] = 19, + ACTIONS(161), 1, + anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9767), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - STATE(2391), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, sym__argument_list, - STATE(2959), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9076), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(9757), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9759), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9763), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9074), 6, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - anon_sym_LBRACK, - ACTIONS(9761), 10, + ACTIONS(9859), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -539099,11 +539149,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [90179] = 3, + [90148] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 13, + ACTIONS(7474), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539117,7 +539167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(7476), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -539138,11 +539188,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [90221] = 3, + [90190] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9829), 13, + ACTIONS(4443), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539156,7 +539206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9831), 20, + ACTIONS(4445), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -539177,11 +539227,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [90263] = 3, + [90232] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9649), 8, + ACTIONS(9861), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539190,7 +539240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9653), 25, + ACTIONS(9863), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -539199,10 +539249,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539216,31 +539266,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [90305] = 3, + [90274] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9833), 13, + ACTIONS(9574), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9835), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9578), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539254,89 +539305,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [90347] = 20, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9765), 1, - aux_sym_logical_expression_token2, - ACTIONS(9767), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, - anon_sym_STAR_STAR, - ACTIONS(9773), 1, - aux_sym_logical_expression_token1, - ACTIONS(9837), 1, - anon_sym_EQ, - ACTIONS(9839), 1, - anon_sym_EQ_GT, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9757), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9759), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9763), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9777), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9761), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [90423] = 3, + [90316] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 8, + ACTIONS(4531), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 25, + ACTIONS(4533), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539350,252 +539343,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [90465] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9841), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [90539] = 20, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9570), 1, - anon_sym_RPAREN, - ACTIONS(9843), 1, - anon_sym_COMMA, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [90615] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9845), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [90689] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9847), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [90763] = 3, + aux_sym_include_statement_token1, + [90358] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 13, + ACTIONS(9865), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9867), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539609,12 +539383,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [90805] = 3, + [90400] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9849), 8, + ACTIONS(9869), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539623,7 +539396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9851), 25, + ACTIONS(9871), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -539632,10 +539405,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539649,11 +539422,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [90847] = 3, + [90442] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 13, + ACTIONS(4419), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539667,7 +539440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(4421), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -539688,11 +539461,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [90889] = 3, + [90484] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4579), 13, + ACTIONS(4599), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539706,7 +539479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4581), 20, + ACTIONS(4601), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -539727,31 +539500,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [90931] = 3, + [90526] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9853), 13, + ACTIONS(9371), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9855), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9373), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539765,12 +539539,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [90973] = 3, + [90568] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9679), 8, + ACTIONS(9375), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539779,7 +539552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9683), 25, + ACTIONS(9377), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -539788,10 +539561,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539805,31 +539578,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [91015] = 3, + [90610] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9857), 13, + ACTIONS(9379), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9859), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9381), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539843,52 +539617,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [91057] = 19, - ACTIONS(161), 1, + [90652] = 4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9873), 4, + aux_sym__import_names_token1, + aux_sym_coarray_statement_token3, + aux_sym_coarray_statement_token4, + aux_sym_coarray_statement_token5, + ACTIONS(4255), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7416), 1, + ACTIONS(4257), 23, anon_sym_LPAREN2, - ACTIONS(7422), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(9434), 1, + [90696] = 15, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(9883), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9885), 1, anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, + STATE(2529), 1, sym__argument_list, - STATE(4582), 1, + STATE(2936), 1, + sym_user_defined_operator, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(8868), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(9875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, + ACTIONS(9881), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9861), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, + ACTIONS(8866), 6, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + ACTIONS(9879), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -539899,31 +539708,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [91131] = 3, + [90762] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 13, + ACTIONS(9295), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9297), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539937,12 +539747,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [91173] = 3, + [90804] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9887), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9889), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [90846] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9345), 8, + ACTIONS(9489), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539951,7 +539799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9347), 25, + ACTIONS(9491), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -539960,10 +539808,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -539977,11 +539825,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [91215] = 3, + [90888] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9863), 13, + ACTIONS(4603), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -539995,7 +539843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9865), 20, + ACTIONS(4605), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -540016,66 +539864,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [91257] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, + [90930] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9867), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [91331] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9349), 8, + ACTIONS(4487), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540084,7 +539877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9351), 25, + ACTIONS(4489), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540093,10 +539886,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540110,11 +539903,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [91373] = 3, + [90972] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 13, + ACTIONS(7528), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540128,7 +539921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(7530), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -540149,11 +539942,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [91415] = 3, + [91014] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9869), 13, + ACTIONS(4527), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540167,7 +539960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9871), 20, + ACTIONS(4529), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -540188,31 +539981,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [91457] = 3, + [91056] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 13, + ACTIONS(4531), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4533), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540226,12 +540020,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [91499] = 3, + [91098] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9891), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9893), 25, + aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [91140] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9873), 13, + ACTIONS(4541), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540245,7 +540077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9875), 20, + ACTIONS(4543), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -540266,11 +540098,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [91541] = 3, + [91182] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9877), 13, + ACTIONS(4565), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540284,7 +540116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9879), 20, + ACTIONS(4567), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -540305,11 +540137,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [91583] = 3, + [91224] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9895), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [91298] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9715), 8, + ACTIONS(4595), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540318,7 +540205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9719), 25, + ACTIONS(4597), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540327,10 +540214,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540344,11 +540231,269 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [91625] = 3, + [91340] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9897), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [91414] = 11, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9885), 1, + anon_sym_STAR_STAR, + STATE(2529), 1, + sym__argument_list, + STATE(2936), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9877), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8830), 4, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(8828), 19, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_LBRACK, + [91472] = 10, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9885), 1, + anon_sym_STAR_STAR, + STATE(2529), 1, + sym__argument_list, + STATE(2936), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8830), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(8828), 19, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_LBRACK, + [91528] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9558), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [91602] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9642), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [91676] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9341), 8, + ACTIONS(4599), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540357,7 +540502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9343), 25, + ACTIONS(4601), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540366,10 +540511,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540383,36 +540528,519 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [91667] = 11, + [91718] = 13, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9883), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9885), 1, + anon_sym_STAR_STAR, + STATE(2529), 1, + sym__argument_list, + STATE(2936), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9877), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8860), 4, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(8858), 16, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_LBRACK, + [91780] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9899), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [91854] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9901), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [91928] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9903), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [92002] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9905), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [92076] = 16, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9883), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9885), 1, + anon_sym_STAR_STAR, + ACTIONS(9907), 1, + aux_sym_logical_expression_token2, + STATE(2529), 1, + sym__argument_list, + STATE(2936), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8864), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(9875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9881), 2, + anon_sym_GT, + anon_sym_LT, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8862), 5, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + ACTIONS(9879), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [92144] = 15, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9883), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9885), 1, + anon_sym_STAR_STAR, + STATE(2529), 1, + sym__argument_list, + STATE(2936), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8864), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(9875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9881), 2, + anon_sym_GT, + anon_sym_LT, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8862), 6, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + ACTIONS(9879), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [92210] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9432), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9470), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9909), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9442), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [92284] = 17, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9769), 1, + ACTIONS(9883), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9885), 1, anon_sym_STAR_STAR, - STATE(2391), 1, + ACTIONS(9907), 1, + aux_sym_logical_expression_token2, + ACTIONS(9911), 1, + aux_sym_logical_expression_token1, + STATE(2529), 1, sym__argument_list, - STATE(2959), 1, + STATE(2936), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9759), 2, + ACTIONS(8864), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(9875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9877), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(4263), 2, + ACTIONS(9881), 2, + anon_sym_GT, + anon_sym_LT, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(8862), 4, + anon_sym_EQ_GT, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + anon_sym_LBRACK, + ACTIONS(9879), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [92354] = 13, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9883), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9885), 1, + anon_sym_STAR_STAR, + STATE(2529), 1, + sym__argument_list, + STATE(2936), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9877), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 4, + ACTIONS(8908), 4, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(8972), 19, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(8906), 16, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -540428,113 +541056,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, anon_sym_LBRACK, - [91725] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9881), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9883), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [91767] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9885), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9887), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [91809] = 10, + [92416] = 9, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9769), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2959), 1, + STATE(2936), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(8974), 6, + ACTIONS(8830), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(8972), 19, + ACTIONS(8828), 20, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, @@ -540553,168 +541100,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_LBRACK, - [91865] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4531), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4533), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [91907] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9889), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9891), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [91949] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9893), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9895), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [91991] = 3, + [92470] = 18, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9883), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9885), 1, + anon_sym_STAR_STAR, + ACTIONS(9907), 1, + aux_sym_logical_expression_token2, + ACTIONS(9911), 1, + aux_sym_logical_expression_token1, + STATE(2529), 1, + sym__argument_list, + STATE(2936), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4535), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4537), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [92033] = 3, + ACTIONS(8828), 2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + ACTIONS(8830), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(9875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9881), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9913), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9879), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [92542] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9333), 8, + ACTIONS(9915), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540723,7 +541169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9335), 25, + ACTIONS(9917), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540732,10 +541178,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540749,11 +541195,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92075] = 3, + [92584] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9897), 8, + ACTIONS(9919), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540762,7 +541208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9899), 25, + ACTIONS(9921), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540771,10 +541217,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540788,11 +541234,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92117] = 3, + [92626] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 8, + ACTIONS(9923), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540801,7 +541247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 25, + ACTIONS(9925), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540810,10 +541256,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540827,11 +541273,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92159] = 3, + [92668] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4543), 8, + ACTIONS(9343), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540840,7 +541286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4545), 25, + ACTIONS(9345), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540849,10 +541295,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540866,11 +541312,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92201] = 3, + [92710] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9361), 8, + ACTIONS(9339), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540879,7 +541325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9363), 25, + ACTIONS(9341), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540888,10 +541334,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540905,11 +541351,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92243] = 3, + [92752] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9375), 8, + ACTIONS(9383), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540918,7 +541364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9377), 25, + ACTIONS(9385), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540927,10 +541373,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540944,11 +541390,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92285] = 3, + [92794] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9305), 8, + ACTIONS(9347), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540957,7 +541403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9307), 25, + ACTIONS(9349), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -540966,10 +541412,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -540983,11 +541429,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92327] = 3, + [92836] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9309), 8, + ACTIONS(4419), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -540996,7 +541442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9311), 25, + ACTIONS(4421), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -541005,10 +541451,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541022,11 +541468,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92369] = 3, + [92878] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9901), 8, + ACTIONS(4423), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -541035,7 +541481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9903), 25, + ACTIONS(4425), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -541044,10 +541490,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541061,97 +541507,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92411] = 9, - ACTIONS(9735), 1, - aux_sym_language_binding_token1, - ACTIONS(9739), 1, - aux_sym__standalone_type_qualifier_token3, - ACTIONS(9741), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(9743), 1, - aux_sym__standalone_type_qualifier_token6, - STATE(3969), 1, - sym__standalone_type_qualifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9745), 2, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - STATE(3985), 2, - sym_language_binding, - sym_type_qualifier, - ACTIONS(9737), 24, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, - aux_sym_variable_attributes_token5, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, - [92465] = 20, + [92920] = 19, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(7448), 1, + anon_sym_LBRACK, + ACTIONS(9434), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9436), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9905), 1, - anon_sym_RPAREN, - ACTIONS(9907), 1, - anon_sym_EQ_GT, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9446), 1, + aux_sym_logical_expression_token2, + ACTIONS(9454), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3104), 1, + sym__argument_list, + STATE(4580), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9470), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + ACTIONS(9927), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9442), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -541162,31 +541562,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [92541] = 3, + [92994] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9909), 13, + ACTIONS(4443), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9911), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4445), 25, aux_sym_module_statement_token1, + aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541200,12 +541601,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [92583] = 3, + [93036] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9379), 8, + ACTIONS(4447), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -541214,7 +541614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9381), 25, + ACTIONS(4449), 25, aux_sym_module_statement_token1, aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, @@ -541223,10 +541623,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541240,11 +541640,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [92625] = 3, + [93078] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9913), 13, + ACTIONS(4391), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -541258,7 +541658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9915), 20, + ACTIONS(4393), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -541279,11 +541679,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [92667] = 3, + [93120] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9917), 13, + ACTIONS(4395), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -541297,7 +541697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9919), 20, + ACTIONS(4397), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -541318,447 +541718,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [92709] = 9, - ACTIONS(9735), 1, - aux_sym_language_binding_token1, - ACTIONS(9739), 1, - aux_sym__standalone_type_qualifier_token3, - ACTIONS(9741), 1, - aux_sym__standalone_type_qualifier_token4, - ACTIONS(9743), 1, - aux_sym__standalone_type_qualifier_token6, - STATE(3969), 1, - sym__standalone_type_qualifier, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9745), 2, - aux_sym_type_qualifier_token1, - aux_sym_type_qualifier_token2, - STATE(3345), 2, - sym_language_binding, - sym_type_qualifier, - ACTIONS(9737), 24, - aux_sym_procedure_attributes_token3, - aux_sym_use_statement_token2, - aux_sym_implicit_statement_token4, - aux_sym_save_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_abstract_specifier_token1, - aux_sym_procedure_attribute_token6, - aux_sym_variable_attributes_token1, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, - aux_sym_variable_attributes_token5, - aux_sym__standalone_type_qualifier_token1, - aux_sym__standalone_type_qualifier_token2, - aux_sym__standalone_type_qualifier_token5, - aux_sym__standalone_type_qualifier_token10, - aux_sym__standalone_type_qualifier_token11, - aux_sym__standalone_type_qualifier_token12, - aux_sym__standalone_type_qualifier_token13, - aux_sym__standalone_type_qualifier_token14, - aux_sym__standalone_type_qualifier_token15, - aux_sym__standalone_type_qualifier_token16, - [92763] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4439), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4441), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [92805] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, - anon_sym_PERCENT, - ACTIONS(9440), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, - anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, - aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, - sym__argument_list, - STATE(4582), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9430), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9438), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9485), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9921), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [92879] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9574), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [92953] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9923), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [93027] = 13, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9767), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, - anon_sym_STAR_STAR, - STATE(2391), 1, - sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9757), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9759), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(8978), 4, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(8976), 16, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_LBRACK, - [93089] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9925), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9927), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [93131] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4383), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4385), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [93173] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4387), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4389), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [93215] = 3, + [93162] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4391), 8, + ACTIONS(4423), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 25, + ACTIONS(4425), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541772,32 +541756,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [93257] = 3, + aux_sym_include_statement_token1, + [93204] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9329), 8, + ACTIONS(4399), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9331), 25, + ACTIONS(4401), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541811,32 +541795,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [93299] = 3, + aux_sym_include_statement_token1, + [93246] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4395), 8, + ACTIONS(4403), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4397), 25, + ACTIONS(4405), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541850,32 +541834,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [93341] = 3, + aux_sym_include_statement_token1, + [93288] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4399), 8, + ACTIONS(4407), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4401), 25, + ACTIONS(4409), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541889,32 +541873,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [93383] = 3, + aux_sym_include_statement_token1, + [93330] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 8, + ACTIONS(4411), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 25, + ACTIONS(4413), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541928,32 +541912,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [93425] = 3, + aux_sym_include_statement_token1, + [93372] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9325), 8, + ACTIONS(4415), 13, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9327), 25, + ACTIONS(4417), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -541967,51 +541951,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [93467] = 19, + aux_sym_include_statement_token1, + [93414] = 19, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(7416), 1, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9478), 1, - aux_sym_logical_expression_token2, - ACTIONS(9480), 1, + ACTIONS(9359), 1, aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, sym__argument_list, - STATE(4582), 1, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9438), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9485), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, ACTIONS(9929), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(4283), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9436), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -542022,167 +542007,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [93541] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9337), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9339), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [93583] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9931), 13, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9933), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [93625] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9317), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9319), 25, - aux_sym_module_statement_token1, - aux_sym_end_interface_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [93667] = 19, + [93488] = 19, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, anon_sym_LBRACK, - ACTIONS(9935), 1, - anon_sym_RPAREN, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + ACTIONS(9931), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -542193,50 +542062,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [93740] = 19, + [93562] = 20, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9883), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9885), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9590), 1, - anon_sym_RPAREN, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, + ACTIONS(9907), 1, + aux_sym_logical_expression_token2, + ACTIONS(9911), 1, + aux_sym_logical_expression_token1, + ACTIONS(9933), 1, + anon_sym_EQ, + ACTIONS(9935), 1, + anon_sym_EQ_GT, + STATE(2936), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3104), 1, + sym__argument_list, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9881), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9913), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4276), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9879), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -542247,33 +542118,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [93813] = 5, - ACTIONS(9937), 1, - anon_sym_COMMA, - STATE(4542), 1, - aux_sym_parameters_repeat1, + [93638] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9454), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9458), 28, + ACTIONS(4487), 13, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(4489), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -542287,147 +542156,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [93858] = 5, - ACTIONS(9939), 1, - anon_sym__, - STATE(4581), 1, - sym__kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8018), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8016), 25, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [93903] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, + aux_sym_include_statement_token1, + [93680] = 8, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9941), 1, - anon_sym_COMMA, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(2936), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [93976] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9867), 1, - anon_sym_RPAREN, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(8856), 6, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(8854), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -542435,18 +542198,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [94049] = 5, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [93732] = 5, ACTIONS(9937), 1, anon_sym_COMMA, - STATE(4543), 1, + STATE(4535), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9454), 2, + ACTIONS(9462), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9458), 28, + ACTIONS(9466), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -542458,10 +542224,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -542475,50 +542241,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [94094] = 19, + [93777] = 19, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, anon_sym_LBRACK, - ACTIONS(9943), 1, - anon_sym_RPAREN, - STATE(2391), 1, + ACTIONS(9939), 1, + anon_sym_COMMA, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -542529,50 +542295,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [94167] = 19, + [93850] = 19, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(8828), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(8970), 1, + ACTIONS(8926), 1, anon_sym_LBRACK, - ACTIONS(9418), 1, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9420), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9424), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9945), 1, + ACTIONS(9941), 1, anon_sym_COLON, - STATE(2972), 1, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, - STATE(4032), 1, + STATE(4024), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(3932), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -542583,21 +542349,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [94240] = 5, - ACTIONS(9939), 1, + [93923] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4349), 12, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + aux_sym__intrinsic_type_token4, + ACTIONS(4351), 20, + sym_preproc_comment, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [93964] = 5, + ACTIONS(9943), 1, anon_sym__, - STATE(4625), 1, + STATE(4607), 1, sym__kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5502), 5, + ACTIONS(5476), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(5504), 25, + ACTIONS(5478), 25, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_LPAREN2, @@ -542623,11 +542427,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [94285] = 3, + [94009] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9945), 1, + anon_sym_COMMA, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [94082] = 5, + ACTIONS(9937), 1, + anon_sym_COMMA, + STATE(4535), 1, + aux_sym_parameters_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9513), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9515), 28, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [94127] = 5, + ACTIONS(9947), 1, + anon_sym_COMMA, + STATE(4535), 1, + aux_sym_parameters_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9517), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9519), 28, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [94172] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 12, + ACTIONS(4255), 12, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -542640,7 +542578,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym__intrinsic_type_token4, - ACTIONS(4325), 20, + ACTIONS(4257), 20, sym_preproc_comment, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -542661,11 +542599,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [94326] = 3, + [94213] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 12, + ACTIONS(4345), 12, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -542678,7 +542616,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym__intrinsic_type_token4, - ACTIONS(4279), 20, + ACTIONS(4347), 20, sym_preproc_comment, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -542699,11 +542637,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [94367] = 3, + [94254] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 12, + ACTIONS(4255), 12, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -542716,7 +542654,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym__intrinsic_type_token4, - ACTIONS(4325), 20, + ACTIONS(4257), 20, sym_preproc_comment, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -542737,11 +542675,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [94408] = 3, + [94295] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4335), 12, + ACTIONS(4315), 12, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -542754,7 +542692,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, sym_preproc_directive, aux_sym__intrinsic_type_token4, - ACTIONS(4337), 20, + ACTIONS(4317), 20, sym_preproc_comment, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -542775,50 +542713,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [94449] = 19, + [94336] = 19, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9070), 1, + ACTIONS(8854), 1, anon_sym_RPAREN, - ACTIONS(9297), 1, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, aux_sym_logical_expression_token1, - ACTIONS(9299), 1, + ACTIONS(9361), 1, aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [94409] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, anon_sym_LBRACK, - STATE(2391), 1, + ACTIONS(9700), 1, + anon_sym_RPAREN, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -542829,18 +542821,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [94522] = 5, + [94482] = 5, ACTIONS(9937), 1, anon_sym_COMMA, - STATE(4543), 1, + STATE(4528), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9505), 2, + ACTIONS(9540), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9507), 28, + ACTIONS(9542), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -542852,10 +542844,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -542869,18 +542861,167 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [94567] = 5, - ACTIONS(9947), 1, + [94527] = 6, + ACTIONS(9950), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9952), 1, + aux_sym_select_case_statement_token2, + ACTIONS(9954), 1, + aux_sym_select_rank_statement_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4315), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4317), 23, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [94574] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9956), 1, + anon_sym_RPAREN, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [94647] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9958), 1, + anon_sym_RPAREN, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(9313), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + [94720] = 5, + ACTIONS(9937), 1, anon_sym_COMMA, - STATE(4543), 1, + STATE(4556), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9509), 2, + ACTIONS(9472), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9511), 28, + ACTIONS(9474), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -542892,10 +543033,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -542909,24 +543050,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [94612] = 6, - ACTIONS(9950), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9952), 1, - aux_sym_select_case_statement_token2, - ACTIONS(9954), 1, - aux_sym_select_rank_statement_token1, + [94765] = 5, + STATE(207), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4335), 6, + ACTIONS(9960), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4337), 23, + ACTIONS(4257), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -542950,50 +543090,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [94659] = 19, + [94810] = 19, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, anon_sym_LBRACK, - ACTIONS(9566), 1, + ACTIONS(9903), 1, anon_sym_RPAREN, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -543004,53 +543144,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [94732] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(9418), 1, - aux_sym_logical_expression_token1, - ACTIONS(9420), 1, - aux_sym_logical_expression_token2, - ACTIONS(9424), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9426), 1, - anon_sym_STAR_STAR, - ACTIONS(9956), 1, - anon_sym_COLON, - STATE(2972), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - STATE(4032), 1, - sym__argument_list, + [94883] = 5, + ACTIONS(9943), 1, + anon_sym__, + STATE(4611), 1, + sym__kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9410), 2, + ACTIONS(8113), 5, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9414), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9422), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(3932), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9412), 10, + anon_sym_DOT, + ACTIONS(8111), 25, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -543058,50 +543181,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [94805] = 19, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [94928] = 19, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, anon_sym_LBRACK, - ACTIONS(9958), 1, + ACTIONS(9897), 1, anon_sym_RPAREN, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -543112,50 +543238,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [94878] = 19, + [95001] = 19, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, anon_sym_LBRACK, - ACTIONS(9960), 1, + ACTIONS(9628), 1, anon_sym_RPAREN, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -543166,36 +543292,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [94951] = 5, - STATE(207), 1, - sym__end_of_statement, + [95074] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9962), 1, + anon_sym_RPAREN, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9962), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(4323), 6, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4325), 23, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -543203,93 +543346,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [94996] = 5, - ACTIONS(9937), 1, - anon_sym_COMMA, - STATE(4533), 1, - aux_sym_parameters_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9522), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9524), 28, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [95041] = 19, + [95147] = 19, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, aux_sym_logical_expression_token1, - ACTIONS(9299), 1, + ACTIONS(9406), 1, aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9410), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9412), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, ACTIONS(9964), 1, - anon_sym_RPAREN, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, + anon_sym_COLON, + STATE(2932), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, + STATE(4024), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9408), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(3951), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9398), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -543300,88 +543400,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [95114] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4331), 12, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - aux_sym__intrinsic_type_token4, - ACTIONS(4333), 20, - sym_preproc_comment, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [95155] = 19, + [95220] = 19, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, anon_sym_LBRACK, ACTIONS(9966), 1, - anon_sym_COMMA, - STATE(2391), 1, + anon_sym_RPAREN, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -543392,18 +543454,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [95228] = 5, + [95293] = 5, ACTIONS(9937), 1, anon_sym_COMMA, - STATE(4543), 1, + STATE(4534), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9513), 2, + ACTIONS(9489), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9515), 28, + ACTIONS(9491), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -543415,10 +543477,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -543432,72 +543494,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [95273] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, - anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9755), 1, - anon_sym_RPAREN, - STATE(2391), 1, - sym__argument_list, - STATE(2924), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9291), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - [95346] = 5, + [95338] = 5, ACTIONS(9937), 1, anon_sym_COMMA, - STATE(4554), 1, + STATE(4535), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9474), 2, + ACTIONS(9489), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9476), 28, + ACTIONS(9491), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -543509,10 +543517,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -543526,50 +543534,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [95391] = 19, + [95383] = 19, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9301), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, anon_sym_LBRACK, ACTIONS(9968), 1, anon_sym_RPAREN, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9295), 2, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9365), 2, + ACTIONS(9387), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -543580,36 +543588,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [95464] = 6, - ACTIONS(8020), 1, - anon_sym__, - STATE(3881), 1, - sym__kind, + [95456] = 19, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9315), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9317), 1, + anon_sym_STAR_STAR, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9970), 1, + anon_sym_RPAREN, + STATE(2529), 1, + sym__argument_list, + STATE(3018), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5500), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5502), 5, + ACTIONS(9307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(5504), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -543617,24 +543642,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [95510] = 4, + [95529] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9970), 2, + ACTIONS(9972), 2, aux_sym_coarray_statement_token9, aux_sym_coarray_statement_token10, - ACTIONS(4323), 6, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 23, + ACTIONS(4257), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -543658,22 +543680,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [95552] = 5, - ACTIONS(9972), 1, - aux_sym_do_loop_statement_token1, + [95571] = 5, ACTIONS(9974), 1, - aux_sym__forall_control_expression_token1, + aux_sym_do_loop_statement_token1, + ACTIONS(9976), 1, + aux_sym__inline_if_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4279), 23, + ACTIONS(4347), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -543697,48 +543719,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [95596] = 18, + [95615] = 18, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9297), 1, - aux_sym_logical_expression_token1, - ACTIONS(9299), 1, - aux_sym_logical_expression_token2, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9767), 1, + ACTIONS(9315), 1, anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, + ACTIONS(9317), 1, anon_sym_STAR_STAR, - STATE(2391), 1, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9907), 1, + aux_sym_logical_expression_token2, + ACTIONS(9911), 1, + aux_sym_logical_expression_token1, + STATE(2529), 1, sym__argument_list, - STATE(2959), 1, + STATE(3018), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9295), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9365), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9757), 2, + ACTIONS(9307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9759), 2, + ACTIONS(9309), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(4263), 2, + ACTIONS(9881), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9913), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9293), 10, + ACTIONS(9879), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -543749,21 +543771,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [95666] = 4, - ACTIONS(9976), 1, - anon_sym_EQ, + [95685] = 5, + ACTIONS(9978), 1, + aux_sym__intrinsic_type_token5, + ACTIONS(9980), 1, + aux_sym__intrinsic_type_token7, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(4349), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8394), 25, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4351), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -543772,6 +543795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_COLON, + anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -543786,23 +543810,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, - [95708] = 5, - ACTIONS(9972), 1, - aux_sym_do_loop_statement_token1, - ACTIONS(9978), 1, - aux_sym__inline_if_statement_token1, + [95729] = 6, + ACTIONS(8115), 1, + anon_sym__, + STATE(3860), 1, + sym__kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, + ACTIONS(5474), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5476), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4279), 23, + ACTIONS(5478), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -543810,8 +543836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -543826,85 +543850,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [95752] = 3, + [95775] = 4, + ACTIONS(9982), 1, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9509), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9511), 29, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 25, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [95792] = 18, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + [95817] = 19, ACTIONS(161), 1, anon_sym_DOT, - ACTIONS(7416), 1, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(9434), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9440), 1, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9883), 1, anon_sym_SLASH_SLASH, - ACTIONS(9442), 1, + ACTIONS(9885), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9765), 1, + ACTIONS(9907), 1, aux_sym_logical_expression_token2, - ACTIONS(9773), 1, + ACTIONS(9911), 1, aux_sym_logical_expression_token1, - STATE(3021), 1, - sym_user_defined_operator, - STATE(3102), 1, + STATE(2529), 1, sym__argument_list, - STATE(3882), 1, + STATE(2936), 1, + sym_user_defined_operator, + STATE(4264), 1, + aux_sym_call_expression_repeat1, + STATE(4900), 1, + sym_argument_list, + STATE(4940), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9432), 2, + ACTIONS(9877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9763), 2, + ACTIONS(9881), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9777), 2, + ACTIONS(9913), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4283), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9761), 10, + ACTIONS(9879), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -543915,51 +543941,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [95862] = 18, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, + [95889] = 6, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9765), 1, - aux_sym_logical_expression_token2, - ACTIONS(9767), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, - anon_sym_STAR_STAR, - ACTIONS(9773), 1, - aux_sym_logical_expression_token1, - STATE(2391), 1, + STATE(3104), 1, sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(3882), 1, - sym_coarray_index, + STATE(7332), 1, + sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9757), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9759), 2, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9763), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9777), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - STATE(4263), 2, - sym_argument_list, - aux_sym_call_expression_repeat1, - ACTIONS(9761), 10, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4257), 22, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -543967,52 +543978,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [95932] = 19, - ACTIONS(161), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_PERCENT, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9765), 1, - aux_sym_logical_expression_token2, - ACTIONS(9767), 1, anon_sym_SLASH_SLASH, - ACTIONS(9769), 1, anon_sym_STAR_STAR, - ACTIONS(9773), 1, - aux_sym_logical_expression_token1, - STATE(2391), 1, - sym__argument_list, - STATE(2959), 1, - sym_user_defined_operator, - STATE(4263), 1, - aux_sym_call_expression_repeat1, - STATE(4788), 1, - sym_argument_list, - STATE(4792), 1, - sym_coarray_index, + anon_sym_LBRACK, + [95935] = 5, + ACTIONS(9428), 1, + aux_sym__intrinsic_type_token5, + ACTIONS(9430), 1, + aux_sym__intrinsic_type_token7, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9757), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(9759), 2, + ACTIONS(4349), 5, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9763), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9777), 2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - ACTIONS(9761), 10, + anon_sym_DOT, + ACTIONS(4351), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_COLON_COLON, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -544020,48 +544017,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [96004] = 18, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [95979] = 18, ACTIONS(161), 1, anon_sym_DOT, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(8834), 1, + ACTIONS(8838), 1, anon_sym_PERCENT, - ACTIONS(9301), 1, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9883), 1, anon_sym_SLASH_SLASH, - ACTIONS(9303), 1, + ACTIONS(9885), 1, anon_sym_STAR_STAR, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9765), 1, + ACTIONS(9907), 1, aux_sym_logical_expression_token2, - ACTIONS(9773), 1, + ACTIONS(9911), 1, aux_sym_logical_expression_token1, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(2924), 1, + STATE(2936), 1, sym_user_defined_operator, - STATE(3882), 1, + STATE(3880), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9289), 2, + ACTIONS(9875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(9291), 2, + ACTIONS(9877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(9763), 2, + ACTIONS(9881), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9777), 2, + ACTIONS(9913), 2, aux_sym_logical_expression_token3, aux_sym_logical_expression_token4, - STATE(4263), 2, + STATE(4264), 2, sym_argument_list, aux_sym_call_expression_repeat1, - ACTIONS(9761), 10, + ACTIONS(9879), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -544072,24 +544072,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - [96074] = 6, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(7222), 1, - sym_argument_list, + [96049] = 5, + ACTIONS(9974), 1, + aux_sym_do_loop_statement_token1, + ACTIONS(9984), 1, + aux_sym__forall_control_expression_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 22, + ACTIONS(4347), 23, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -544112,35 +544111,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96120] = 5, - ACTIONS(9980), 1, - aux_sym__intrinsic_type_token5, - ACTIONS(9982), 1, - aux_sym__intrinsic_type_token7, + [96093] = 18, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + ACTIONS(9434), 1, + anon_sym_PERCENT, + ACTIONS(9436), 1, + anon_sym_STAR_STAR, + ACTIONS(9440), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9907), 1, + aux_sym_logical_expression_token2, + ACTIONS(9911), 1, + aux_sym_logical_expression_token1, + STATE(3060), 1, + sym_user_defined_operator, + STATE(3104), 1, + sym__argument_list, + STATE(3880), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4331), 6, + ACTIONS(9432), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4333), 23, - anon_sym_LPAREN2, + ACTIONS(9438), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(9881), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9913), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + STATE(4276), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9879), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -544148,38 +544163,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, + [96163] = 18, + ACTIONS(161), 1, + anon_sym_DOT, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_PERCENT, + ACTIONS(9359), 1, + aux_sym_logical_expression_token1, + ACTIONS(9361), 1, + aux_sym_logical_expression_token2, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(9883), 1, anon_sym_SLASH_SLASH, + ACTIONS(9885), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - [96164] = 5, - ACTIONS(9497), 1, - aux_sym__intrinsic_type_token5, - ACTIONS(9499), 1, - aux_sym__intrinsic_type_token7, + STATE(2529), 1, + sym__argument_list, + STATE(2936), 1, + sym_user_defined_operator, + STATE(3880), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4331), 5, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(9313), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4333), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(9387), 2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + ACTIONS(9875), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, + ACTIONS(9877), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(4264), 2, + sym_argument_list, + aux_sym_call_expression_repeat1, + ACTIONS(9311), 10, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON_COLON, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, aux_sym_relational_expression_token1, aux_sym_relational_expression_token2, aux_sym_relational_expression_token3, @@ -544187,24 +544215,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token5, anon_sym_SLASH_EQ, aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [96208] = 4, - ACTIONS(9984), 1, - aux_sym__inline_where_statement_token1, + [96233] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9517), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9519), 29, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [96273] = 4, + ACTIONS(9986), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9606), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9610), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [96314] = 5, + ACTIONS(9988), 1, + anon_sym_LPAREN2, + STATE(783), 1, + sym_parenthesized_expression, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4279), 23, - anon_sym_LPAREN2, + ACTIONS(4257), 22, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -544227,21 +544327,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96249] = 4, + [96357] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9986), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(8396), 6, + ACTIONS(8617), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(8394), 22, + ACTIONS(8615), 25, + sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -544249,7 +544347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544264,31 +544363,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96290] = 6, - ACTIONS(9988), 1, - anon_sym_LPAREN2, - ACTIONS(9991), 1, - anon_sym_COLON, - STATE(7459), 1, - sym__statement_function_arg_list, + [96396] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 6, + ACTIONS(8623), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8621), 25, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544303,20 +544399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96335] = 4, - ACTIONS(9972), 1, - aux_sym_do_loop_statement_token1, + [96435] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, + ACTIONS(8410), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4279), 23, + ACTIONS(8408), 25, + sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -544324,8 +544419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544340,20 +544435,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96376] = 4, - ACTIONS(9993), 1, - aux_sym_do_loop_statement_token1, + [96474] = 4, + ACTIONS(9990), 1, + aux_sym_coarray_statement_token5, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4279), 23, + ACTIONS(4347), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -544377,29 +544472,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96417] = 6, - ACTIONS(5798), 1, - anon_sym_COLON_COLON, - ACTIONS(5800), 1, - anon_sym_LPAREN2, - ACTIONS(5803), 1, - anon_sym_STAR, + [96515] = 4, + ACTIONS(9992), 1, + aux_sym_associate_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 4, + ACTIONS(4345), 6, + anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 23, - anon_sym_COMMA, + ACTIONS(4347), 23, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544413,20 +544508,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, - anon_sym_SLASH_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - [96462] = 3, + [96556] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(8586), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 25, + ACTIONS(8584), 25, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_LPAREN2, @@ -544452,19 +544545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96501] = 3, + [96595] = 4, + ACTIONS(9984), 1, + aux_sym__forall_control_expression_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8575), 5, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8573), 25, - sym__external_end_of_statement, - anon_sym_COMMA, + ACTIONS(4347), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -544472,8 +544566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, + anon_sym_COLON, + anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544488,19 +544582,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96540] = 3, + [96636] = 4, + ACTIONS(9994), 1, + aux_sym_coarray_statement_token5, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8575), 5, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8573), 25, - sym__external_end_of_statement, - anon_sym_COMMA, + ACTIONS(4257), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -544508,8 +544603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, + anon_sym_COLON, + anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544524,28 +544619,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96579] = 3, + [96677] = 5, + ACTIONS(9996), 1, + anon_sym_LPAREN2, + STATE(2695), 1, + sym__io_arguments, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8551), 5, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8549), 25, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(4257), 22, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, + anon_sym_COLON, + anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544560,19 +544657,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96618] = 3, + [96720] = 4, + ACTIONS(9998), 1, + aux_sym_coarray_critical_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8587), 5, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8585), 25, - sym__external_end_of_statement, - anon_sym_COMMA, + ACTIONS(4347), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -544580,8 +544678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, + anon_sym_COLON, + anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544596,19 +544694,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96657] = 3, + [96761] = 7, + ACTIONS(10000), 1, + anon_sym_COMMA, + ACTIONS(10002), 1, + anon_sym_RPAREN, + ACTIONS(10004), 1, + anon_sym_COLON_COLON, + STATE(6942), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8400), 5, + ACTIONS(8590), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8398), 25, - sym__external_end_of_statement, - anon_sym_COMMA, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -544616,8 +544720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544632,28 +544734,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96696] = 3, + [96808] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8404), 5, + ACTIONS(9839), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9841), 28, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym_import_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [96847] = 6, + ACTIONS(5784), 1, + anon_sym_COLON_COLON, + ACTIONS(5786), 1, + anon_sym_LPAREN2, + ACTIONS(5789), 1, anon_sym_STAR, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4255), 4, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8402), 25, - sym__external_end_of_statement, + ACTIONS(4257), 23, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544667,29 +544806,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relational_expression_token6, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, + anon_sym_SLASH_RPAREN, anon_sym_LBRACK, - [96735] = 3, + anon_sym_RBRACK, + [96892] = 5, + ACTIONS(9996), 1, + anon_sym_LPAREN2, + STATE(2660), 1, + sym__io_arguments, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8408), 5, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8406), 25, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(4257), 22, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, + anon_sym_COLON, + anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544704,25 +544847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96774] = 7, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_RPAREN, - ACTIONS(9999), 1, - anon_sym_COLON_COLON, - STATE(6994), 1, - aux_sym_allocate_statement_repeat1, + [96935] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(8631), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8629), 25, + sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -544730,6 +544867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -544744,21 +544883,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96821] = 4, - ACTIONS(10001), 1, - anon_sym_LPAREN2, + [96974] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 5, + ACTIONS(8594), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(4325), 24, + ACTIONS(8592), 25, sym__external_end_of_statement, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -544781,29 +544919,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96862] = 5, - ACTIONS(10003), 1, + [97013] = 6, + ACTIONS(10006), 1, anon_sym_LPAREN2, - STATE(774), 1, - sym_parenthesized_expression, + ACTIONS(10009), 1, + anon_sym_COLON, + STATE(8160), 1, + sym__statement_function_arg_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, + ACTIONS(8590), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 22, + ACTIONS(8588), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, @@ -544819,49 +544958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [96905] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8555), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8553), 25, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [96944] = 4, - ACTIONS(10005), 1, + [97058] = 4, + ACTIONS(10011), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9655), 9, + ACTIONS(9656), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -544871,7 +544974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9659), 20, + ACTIONS(9660), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -544892,13 +544995,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [96985] = 4, - ACTIONS(10007), 1, + [97099] = 4, + ACTIONS(10013), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9606), 9, + ACTIONS(9592), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -544908,7 +545011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9610), 20, + ACTIONS(9596), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -544929,13 +545032,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97026] = 4, - ACTIONS(10009), 1, + [97140] = 4, + ACTIONS(10015), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 9, + ACTIONS(9600), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -544945,7 +545048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(9604), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -544966,13 +545069,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97067] = 4, - ACTIONS(10011), 1, + [97181] = 4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10017), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(8590), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(8588), 22, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [97222] = 4, + ACTIONS(10019), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9643), 9, + ACTIONS(9612), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -544982,7 +545122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9647), 20, + ACTIONS(9616), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -545003,50 +545143,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97108] = 4, - ACTIONS(9974), 1, - aux_sym__forall_control_expression_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4277), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4279), 23, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [97149] = 4, - ACTIONS(10013), 1, + [97263] = 4, + ACTIONS(10021), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9667), 9, + ACTIONS(9702), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -545056,7 +545159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9671), 20, + ACTIONS(9706), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -545077,13 +545180,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97190] = 4, - ACTIONS(10015), 1, + [97304] = 4, + ACTIONS(10023), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 9, + ACTIONS(9708), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -545093,7 +545196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(9712), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -545114,13 +545217,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97231] = 4, - ACTIONS(10017), 1, + [97345] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 25, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [97384] = 4, + ACTIONS(10025), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9695), 9, + ACTIONS(9714), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -545130,7 +545269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9699), 20, + ACTIONS(9718), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -545151,13 +545290,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97272] = 4, - ACTIONS(10019), 1, + [97425] = 4, + ACTIONS(10027), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 9, + ACTIONS(9725), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -545167,7 +545306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(9729), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -545188,13 +545327,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97313] = 4, - ACTIONS(10021), 1, + [97466] = 4, + ACTIONS(10029), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9544), 9, + ACTIONS(9580), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -545204,7 +545343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9548), 20, + ACTIONS(9584), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -545225,13 +545364,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97354] = 4, - ACTIONS(10023), 1, + [97507] = 4, + ACTIONS(10031), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 9, + ACTIONS(9618), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -545241,7 +545380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(9622), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -545262,13 +545401,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97395] = 4, - ACTIONS(10025), 1, + [97548] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8613), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8611), 25, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [97587] = 4, + ACTIONS(10033), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9558), 9, + ACTIONS(9676), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -545278,7 +545453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9562), 20, + ACTIONS(9680), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -545299,17 +545474,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [97436] = 3, + [97628] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8608), 5, + ACTIONS(8613), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8606), 25, + ACTIONS(8611), 25, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_LPAREN2, @@ -545335,17 +545510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [97475] = 3, + [97667] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8612), 5, + ACTIONS(8400), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8610), 25, + ACTIONS(8398), 25, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_LPAREN2, @@ -545371,51 +545546,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [97514] = 4, - ACTIONS(10027), 1, - sym_preproc_comment, + [97706] = 4, + ACTIONS(10035), 1, + aux_sym_do_loop_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9584), 9, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9588), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [97555] = 3, + ACTIONS(4345), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4347), 23, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [97747] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 2, + ACTIONS(8642), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8640), 25, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [97786] = 4, + ACTIONS(10037), 1, + aux_sym_stop_statement_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4255), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4257), 23, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [97827] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8609), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8607), 25, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LT_LT_LT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [97866] = 4, + ACTIONS(9976), 1, + aux_sym__inline_if_statement_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4345), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4347), 23, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [97907] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4487), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 28, + ACTIONS(4489), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545427,10 +545748,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545444,14 +545765,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [97594] = 3, + [97946] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 2, + ACTIONS(4531), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 28, + ACTIONS(4533), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545463,10 +545784,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545480,57 +545801,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [97633] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7504), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(7506), 25, - sym__external_end_of_statement, - anon_sym_COMMA, + [97985] = 5, + ACTIONS(10039), 1, anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [97672] = 4, - ACTIONS(10029), 1, - aux_sym_associate_statement_token1, + STATE(8297), 1, + sym_parenthesized_expression, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4279), 23, - anon_sym_LPAREN2, + ACTIONS(4257), 22, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -545553,14 +545839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [97713] = 3, + [98028] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4531), 2, + ACTIONS(4419), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4533), 28, + ACTIONS(4421), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545572,10 +545858,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545589,14 +545875,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [97752] = 3, + [98067] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4535), 2, + ACTIONS(4423), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4537), 28, + ACTIONS(4425), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545608,10 +545894,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545625,14 +545911,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [97791] = 3, + [98106] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4443), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 28, + ACTIONS(4445), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545644,10 +545930,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545661,14 +545947,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [97830] = 3, + [98145] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4543), 2, + ACTIONS(4447), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4545), 28, + ACTIONS(4449), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545680,10 +545966,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545697,20 +545983,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [97869] = 4, - ACTIONS(10031), 1, - aux_sym_block_construct_token1, + [98184] = 5, + ACTIONS(8115), 1, + anon_sym__, + STATE(4967), 1, + sym__kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, + ACTIONS(5476), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4279), 23, + ACTIONS(5478), 22, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -545718,7 +546006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, @@ -545734,22 +546021,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [97910] = 5, - ACTIONS(10033), 1, - anon_sym_LPAREN2, - STATE(2655), 1, - sym__io_arguments, + [98227] = 4, + ACTIONS(10042), 1, + aux_sym_coarray_statement_token7, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, + ACTIONS(4255), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 22, + ACTIONS(4257), 23, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -545772,50 +546058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [97953] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4383), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4385), 28, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [97992] = 3, + [98268] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4387), 2, + ACTIONS(4595), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4389), 28, + ACTIONS(4597), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545827,10 +546077,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545844,14 +546094,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98031] = 3, + [98307] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4391), 2, + ACTIONS(4599), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 28, + ACTIONS(4601), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545863,10 +546113,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545880,14 +546130,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98070] = 3, + [98346] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4395), 2, + ACTIONS(4603), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4397), 28, + ACTIONS(4605), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545899,10 +546149,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545916,14 +546166,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98109] = 3, + [98385] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4399), 2, + ACTIONS(4527), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4401), 28, + ACTIONS(4529), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545935,10 +546185,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545952,14 +546202,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98148] = 3, + [98424] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 2, + ACTIONS(4541), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 28, + ACTIONS(4543), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -545971,10 +546221,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -545988,14 +546238,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98187] = 3, + [98463] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4565), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4441), 28, + ACTIONS(4567), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -546007,10 +546257,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -546024,14 +546274,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98226] = 3, + [98502] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4607), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4459), 28, + ACTIONS(4609), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -546043,10 +546293,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -546060,14 +546310,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98265] = 3, + [98541] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 2, + ACTIONS(4451), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 28, + ACTIONS(4453), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -546079,10 +546329,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -546096,14 +546346,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98304] = 3, + [98580] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4479), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 28, + ACTIONS(4481), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -546115,10 +546365,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -546132,50 +546382,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98343] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8583), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8581), 25, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [98382] = 3, + [98619] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9849), 2, + ACTIONS(4523), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9851), 28, + ACTIONS(4525), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -546187,10 +546401,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -546204,92 +546418,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98421] = 4, - ACTIONS(9978), 1, - aux_sym__inline_if_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4277), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4279), 23, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [98462] = 5, - ACTIONS(10035), 1, - anon_sym_LPAREN2, - STATE(8009), 1, - sym_parenthesized_expression, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4323), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4325), 22, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [98505] = 3, + [98658] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8591), 5, + ACTIONS(7474), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8589), 25, + ACTIONS(7476), 25, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_LPAREN2, @@ -546315,14 +546454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [98544] = 3, + [98697] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9791), 2, + ACTIONS(9887), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9793), 28, + ACTIONS(9889), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -546334,10 +546473,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -546351,14 +546490,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98583] = 3, + [98736] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9454), 2, + ACTIONS(9489), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9458), 28, + ACTIONS(9491), 28, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -546370,10 +546509,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym_import_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -546387,93 +546526,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [98622] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7484), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(7486), 25, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [98661] = 4, - ACTIONS(10038), 1, - aux_sym_coarray_critical_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4277), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4279), 23, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [98702] = 4, - ACTIONS(10040), 1, - aux_sym_coarray_statement_token7, + [98775] = 4, + ACTIONS(10044), 1, + aux_sym_block_construct_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 23, + ACTIONS(4347), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -546497,20 +546563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [98743] = 4, - ACTIONS(10042), 1, - aux_sym_coarray_statement_token5, + [98816] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, + ACTIONS(7528), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4279), 23, + ACTIONS(7530), 25, + sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -546518,8 +546583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -546534,30 +546599,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [98784] = 5, - ACTIONS(10033), 1, + [98855] = 4, + ACTIONS(10046), 1, anon_sym_LPAREN2, - STATE(2674), 1, - sym__io_arguments, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, + ACTIONS(4255), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 22, + ACTIONS(4257), 24, + sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -546572,20 +546636,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [98827] = 4, - ACTIONS(10044), 1, - aux_sym_coarray_statement_token5, + [98896] = 4, + ACTIONS(9974), 1, + aux_sym_do_loop_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 23, + ACTIONS(4347), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -546609,20 +546673,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [98868] = 4, - ACTIONS(10046), 1, + [98937] = 4, + ACTIONS(10048), 1, aux_sym_do_loop_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4277), 6, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4279), 23, + ACTIONS(4347), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -546646,22 +546710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [98909] = 5, - ACTIONS(8020), 1, - anon_sym__, - STATE(4871), 1, - sym__kind, + [98978] = 4, + ACTIONS(10050), 1, + aux_sym__inline_where_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5502), 6, + ACTIONS(4345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(5504), 22, + ACTIONS(4347), 23, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -546669,6 +546731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_COLON, anon_sym_EQ_GT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, @@ -546684,20 +546747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [98952] = 4, - ACTIONS(10048), 1, - aux_sym_stop_statement_token2, + [99019] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, + ACTIONS(8556), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(4325), 23, + ACTIONS(8554), 25, + sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -546705,8 +546767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -546721,17 +546783,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [98993] = 3, + [99058] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8474), 5, + ACTIONS(8545), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8472), 25, + ACTIONS(8543), 25, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_LPAREN2, @@ -546757,46 +546819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [99032] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9783), 9, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9785), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [99070] = 3, + [99097] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 9, + ACTIONS(4541), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -546806,7 +546833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7506), 20, + ACTIONS(4543), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -546827,98 +546854,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99108] = 4, - ACTIONS(10050), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9606), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9610), 20, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [99148] = 4, + [99135] = 4, ACTIONS(10052), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9606), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9610), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [99188] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7484), 9, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7486), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9729), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -546934,58 +546890,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99226] = 4, + [99175] = 6, ACTIONS(10054), 1, - sym_preproc_comment, + anon_sym_COMMA, + ACTIONS(10056), 1, + anon_sym_RPAREN, + STATE(7000), 1, + aux_sym_equivalence_set_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [99266] = 4, - ACTIONS(10056), 1, - sym_preproc_comment, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [99219] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9643), 8, + ACTIONS(9600), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9647), 20, + ACTIONS(9604), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547006,13 +546963,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99306] = 4, + [99257] = 4, ACTIONS(10058), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(9714), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547021,10 +546978,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(9718), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -547042,21 +546999,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99346] = 3, + [99297] = 4, + ACTIONS(10060), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9811), 9, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9813), 20, + ACTIONS(9729), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547077,13 +547035,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99384] = 4, - ACTIONS(10060), 1, + [99337] = 4, + ACTIONS(10062), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9643), 8, + ACTIONS(9656), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547092,10 +547050,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9647), 20, + ACTIONS(9660), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -547113,11 +547071,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99424] = 3, + [99377] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 9, + ACTIONS(9759), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547127,7 +547085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(9761), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547148,25 +547106,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99462] = 4, - ACTIONS(10062), 1, - sym_preproc_comment, + [99415] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9667), 8, + ACTIONS(9763), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9671), 20, + ACTIONS(9765), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -547184,25 +547141,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99502] = 4, - ACTIONS(10064), 1, - sym_preproc_comment, + [99453] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(9708), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(9712), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -547220,26 +547176,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99542] = 3, + [99491] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9829), 9, + ACTIONS(10064), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [99531] = 4, + ACTIONS(10066), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9580), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9831), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9584), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -547255,26 +547248,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99580] = 3, + [99571] = 4, + ACTIONS(10068), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9833), 9, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9835), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9610), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -547290,13 +547284,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99618] = 4, - ACTIONS(10066), 1, + [99611] = 4, + ACTIONS(10070), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9695), 8, + ACTIONS(9618), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547305,12 +547299,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9699), 20, + ACTIONS(9622), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -547326,11 +547320,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99658] = 3, + [99651] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 9, + ACTIONS(4523), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547340,7 +547334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(4525), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547361,25 +547355,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99696] = 4, - ACTIONS(10068), 1, - sym_preproc_comment, + [99689] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(9725), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(9729), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -547397,65 +547390,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99736] = 7, - ACTIONS(10070), 1, - anon_sym_COMMA, + [99727] = 4, ACTIONS(10072), 1, - anon_sym_SLASH, - STATE(6225), 1, - aux_sym_data_set_repeat1, - STATE(6979), 1, - sym_data_value, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8396), 4, - anon_sym_STAR, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [99782] = 3, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 9, + ACTIONS(9676), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9680), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -547471,13 +547426,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99820] = 4, + [99767] = 4, ACTIONS(10074), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9544), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547486,10 +547441,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9548), 20, + ACTIONS(9712), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -547507,11 +547462,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99860] = 3, + [99807] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 9, + ACTIONS(9767), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547521,7 +547476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 20, + ACTIONS(9769), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547542,11 +547497,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99898] = 3, + [99845] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9873), 9, + ACTIONS(9771), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547556,7 +547511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9875), 20, + ACTIONS(9773), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547577,11 +547532,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99936] = 3, + [99883] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9877), 9, + ACTIONS(9779), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547591,7 +547546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9879), 20, + ACTIONS(9781), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547612,11 +547567,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [99974] = 3, + [99921] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9913), 9, + ACTIONS(9783), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547626,7 +547581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9915), 20, + ACTIONS(9785), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547647,11 +547602,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100012] = 3, + [99959] = 5, + ACTIONS(9982), 1, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9917), 9, + ACTIONS(10064), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [100001] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9789), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547661,7 +547653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9919), 20, + ACTIONS(9791), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547682,11 +547674,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100050] = 3, + [100039] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9823), 9, + ACTIONS(9606), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547696,7 +547688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9825), 20, + ACTIONS(9610), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547717,11 +547709,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100088] = 3, + [100077] = 6, + ACTIONS(10000), 1, + anon_sym_COMMA, + ACTIONS(10002), 1, + anon_sym_RPAREN, + STATE(6937), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 9, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [100121] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4419), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547731,7 +547761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(4421), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547752,25 +547782,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100126] = 4, - ACTIONS(10076), 1, - sym_preproc_comment, + [100159] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(9793), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(9795), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -547788,25 +547817,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100166] = 4, - ACTIONS(10078), 1, - sym_preproc_comment, + [100197] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9558), 8, + ACTIONS(9797), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9562), 20, + ACTIONS(9799), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -547824,26 +547852,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100206] = 3, + [100235] = 4, + ACTIONS(10076), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9853), 9, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9855), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9604), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -547859,11 +547888,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100244] = 3, + [100275] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9857), 9, + ACTIONS(9801), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547873,7 +547902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9859), 20, + ACTIONS(9803), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547894,25 +547923,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100282] = 4, - ACTIONS(10080), 1, - sym_preproc_comment, + [100313] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9584), 8, + ACTIONS(9805), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9588), 20, + ACTIONS(9807), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -547930,22 +547958,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100322] = 4, - ACTIONS(10082), 1, - sym_preproc_comment, + [100351] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9544), 8, + ACTIONS(4599), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9548), 20, + ACTIONS(4601), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -547966,13 +547993,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100362] = 4, - ACTIONS(10084), 1, + [100389] = 4, + ACTIONS(10078), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(9656), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -547981,9 +548008,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9660), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -548002,11 +548029,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100402] = 3, + [100429] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9863), 9, + ACTIONS(4595), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548016,7 +548043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9865), 20, + ACTIONS(4597), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548037,11 +548064,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100440] = 3, + [100467] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9869), 9, + ACTIONS(9809), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548051,7 +548078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9871), 20, + ACTIONS(9811), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548072,11 +548099,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100478] = 3, + [100505] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9909), 9, + ACTIONS(9813), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548086,7 +548113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9911), 20, + ACTIONS(9815), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548107,21 +548134,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100516] = 3, + [100543] = 4, + ACTIONS(10080), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9931), 9, + ACTIONS(9592), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9933), 20, + ACTIONS(9596), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548142,58 +548170,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100554] = 4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10086), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [100594] = 4, - ACTIONS(10088), 1, - sym_preproc_comment, + [100583] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9558), 8, + ACTIONS(9817), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9562), 20, + ACTIONS(9819), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548214,11 +548205,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100634] = 3, + [100621] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9779), 9, + ACTIONS(9821), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548228,7 +548219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9781), 20, + ACTIONS(9823), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548249,13 +548240,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100672] = 4, - ACTIONS(10090), 1, + [100659] = 4, + ACTIONS(10082), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(9612), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548264,12 +548255,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9616), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -548285,11 +548276,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100712] = 3, + [100699] = 4, + ACTIONS(10084), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9801), 9, + ACTIONS(9676), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9680), 20, + aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [100739] = 4, + ACTIONS(10086), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9612), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9616), 20, + aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [100779] = 4, + ACTIONS(10088), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9714), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9718), 20, + aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [100819] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9825), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548299,7 +548398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9803), 20, + ACTIONS(9827), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548320,11 +548419,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100750] = 3, + [100857] = 4, + ACTIONS(10090), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4543), 9, + ACTIONS(9656), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9660), 20, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [100897] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7528), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548334,7 +548469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4545), 20, + ACTIONS(7530), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548355,13 +548490,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100788] = 4, + [100935] = 4, ACTIONS(10092), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9584), 8, + ACTIONS(9702), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548370,7 +548505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9588), 20, + ACTIONS(9706), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548391,13 +548526,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100828] = 4, + [100975] = 4, ACTIONS(10094), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9655), 8, + ACTIONS(9592), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548406,9 +548541,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9659), 20, + ACTIONS(9596), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -548427,24 +548562,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100868] = 3, + [101015] = 4, + ACTIONS(10096), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4383), 9, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4385), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9604), 20, + aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [101055] = 4, + ACTIONS(10098), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9592), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9596), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -548462,20 +548634,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100906] = 4, - ACTIONS(9991), 1, + [101095] = 4, + ACTIONS(10009), 1, anon_sym_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 6, + ACTIONS(8590), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(8394), 22, + ACTIONS(8588), 22, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -548498,23 +548670,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [100946] = 3, + [101135] = 4, + ACTIONS(10100), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 9, + ACTIONS(9612), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9616), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -548533,21 +548706,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [100984] = 3, + [101175] = 4, + ACTIONS(10102), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4567), 9, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4569), 20, + ACTIONS(9712), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548568,23 +548742,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101022] = 3, + [101215] = 4, + ACTIONS(10104), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 9, + ACTIONS(9580), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9584), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -548603,23 +548778,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101060] = 3, + [101255] = 4, + ACTIONS(10106), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 9, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9610), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -548638,23 +548814,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101098] = 3, + [101295] = 4, + ACTIONS(10108), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4579), 9, + ACTIONS(9618), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4581), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9622), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -548673,24 +548850,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101136] = 3, + [101335] = 4, + ACTIONS(10110), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 9, + ACTIONS(9580), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9584), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -548708,13 +548886,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101174] = 4, - ACTIONS(10096), 1, + [101375] = 4, + ACTIONS(10112), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9606), 8, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548723,10 +548901,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9610), 20, + ACTIONS(9604), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -548744,13 +548922,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101214] = 4, - ACTIONS(10098), 1, + [101415] = 4, + ACTIONS(10114), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(9612), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548759,10 +548937,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(9616), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -548780,13 +548958,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101254] = 4, - ACTIONS(10100), 1, + [101455] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4607), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(4609), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [101493] = 4, + ACTIONS(10116), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9643), 8, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -548795,7 +549008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9647), 20, + ACTIONS(9729), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548816,95 +549029,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101294] = 5, - ACTIONS(9976), 1, - anon_sym_EQ, + [101533] = 4, + ACTIONS(10118), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10086), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [101336] = 5, - ACTIONS(9976), 1, - anon_sym_EQ, + ACTIONS(9618), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9622), 20, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [101573] = 4, + ACTIONS(10120), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10086), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [101378] = 3, + ACTIONS(9656), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9660), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [101613] = 4, + ACTIONS(10122), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 9, + ACTIONS(9676), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 20, + ACTIONS(9680), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548925,21 +549137,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101416] = 3, + [101653] = 4, + ACTIONS(10124), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4387), 9, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4389), 20, + ACTIONS(9604), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -548960,28 +549173,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101454] = 4, - ACTIONS(8564), 1, - anon_sym_LPAREN2, + [101693] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 5, + ACTIONS(10130), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(10128), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(4325), 23, - sym__external_end_of_statement, - anon_sym_COMMA, + ACTIONS(10126), 22, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, + anon_sym_LT_LT_LT, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, @@ -548996,11 +549209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [101494] = 3, + [101733] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4391), 9, + ACTIONS(4565), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549010,7 +549223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 20, + ACTIONS(4567), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -549031,11 +549244,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101532] = 3, + [101771] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4395), 9, + ACTIONS(4447), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549045,7 +549258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4397), 20, + ACTIONS(4449), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -549066,11 +549279,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101570] = 3, + [101809] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4399), 9, + ACTIONS(4603), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549080,7 +549293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4401), 20, + ACTIONS(4605), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -549101,13 +549314,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101608] = 4, - ACTIONS(10102), 1, + [101847] = 7, + ACTIONS(10132), 1, + anon_sym_COMMA, + ACTIONS(10134), 1, + anon_sym_SLASH, + STATE(6116), 1, + aux_sym_data_set_repeat1, + STATE(6558), 1, + sym_data_value, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8590), 4, + anon_sym_STAR, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [101893] = 4, + ACTIONS(10136), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9655), 8, + ACTIONS(9580), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549116,10 +549368,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9659), 20, + ACTIONS(9584), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549137,13 +549389,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101648] = 4, - ACTIONS(10104), 1, + [101933] = 4, + ACTIONS(10138), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9655), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549152,12 +549404,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9659), 20, + ACTIONS(9610), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -549173,13 +549425,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101688] = 4, - ACTIONS(10106), 1, + [101973] = 4, + ACTIONS(10140), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9606), 8, + ACTIONS(9612), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549188,12 +549440,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9610), 20, + ACTIONS(9616), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -549209,23 +549461,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101728] = 3, + [102013] = 4, + ACTIONS(10142), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 9, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9604), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -549244,13 +549497,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101766] = 4, - ACTIONS(10108), 1, + [102053] = 4, + ACTIONS(10144), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(9702), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549259,12 +549512,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(9706), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -549280,13 +549533,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101806] = 4, - ACTIONS(10110), 1, + [102093] = 4, + ACTIONS(10146), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9667), 8, + ACTIONS(9592), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549295,7 +549548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9671), 20, + ACTIONS(9596), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -549316,26 +549569,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101846] = 3, + [102133] = 4, + ACTIONS(10148), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4531), 9, + ACTIONS(9592), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4533), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9596), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -549351,13 +549605,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101884] = 4, - ACTIONS(10112), 1, + [102173] = 4, + ACTIONS(10150), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9695), 8, + ACTIONS(9656), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549366,10 +549620,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9699), 20, + ACTIONS(9660), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549387,13 +549641,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101924] = 4, - ACTIONS(10114), 1, + [102213] = 4, + ACTIONS(10152), 1, + anon_sym_LPAREN2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4255), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(4257), 22, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [102253] = 4, + ACTIONS(10154), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(9702), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549402,12 +549692,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(9706), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -549423,13 +549713,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [101964] = 4, - ACTIONS(10116), 1, + [102293] = 4, + ACTIONS(10156), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9606), 8, + ACTIONS(9676), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549438,10 +549728,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9610), 20, + ACTIONS(9680), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549459,13 +549749,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102004] = 4, - ACTIONS(10118), 1, + [102333] = 4, + ACTIONS(10158), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549474,12 +549764,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(9712), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -549495,25 +549785,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102044] = 4, - ACTIONS(10120), 1, - sym_preproc_comment, + [102373] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9643), 8, + ACTIONS(4443), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9647), 20, + ACTIONS(4445), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549531,13 +549820,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102084] = 4, - ACTIONS(10122), 1, + [102411] = 4, + ACTIONS(10160), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9667), 8, + ACTIONS(9592), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549546,7 +549835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9671), 20, + ACTIONS(9596), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -549567,13 +549856,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102124] = 4, - ACTIONS(10124), 1, + [102451] = 4, + ACTIONS(10162), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(9618), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549582,10 +549871,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(9622), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549603,13 +549892,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102164] = 4, - ACTIONS(10126), 1, + [102491] = 4, + ACTIONS(10164), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9695), 8, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549618,7 +549907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9699), 20, + ACTIONS(9604), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -549639,13 +549928,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102204] = 4, - ACTIONS(10128), 1, + [102531] = 4, + ACTIONS(10166), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(9612), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549654,7 +549943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(9616), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -549675,13 +549964,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102244] = 4, - ACTIONS(10130), 1, + [102571] = 4, + ACTIONS(10168), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9544), 8, + ACTIONS(9702), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549690,10 +549979,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9548), 20, + ACTIONS(9706), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549711,13 +550000,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102284] = 4, - ACTIONS(10132), 1, + [102611] = 4, + ACTIONS(10170), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549726,10 +550015,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(9712), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549747,13 +550036,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102324] = 4, - ACTIONS(10134), 1, + [102651] = 4, + ACTIONS(8619), 1, + anon_sym_LPAREN2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4255), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4257), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COLON_COLON, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [102691] = 4, + ACTIONS(10172), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9558), 8, + ACTIONS(9714), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549762,10 +550087,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9562), 20, + ACTIONS(9718), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549783,13 +550108,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102364] = 4, - ACTIONS(10136), 1, + [102731] = 4, + ACTIONS(10174), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9544), 8, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549798,7 +550123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9548), 20, + ACTIONS(9729), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -549819,25 +550144,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102404] = 4, - ACTIONS(10138), 1, - sym_preproc_comment, + [102771] = 5, + ACTIONS(9982), 1, + anon_sym_EQ, + ACTIONS(10064), 1, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 22, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [102813] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4423), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(4425), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549855,24 +550216,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102444] = 4, - ACTIONS(10140), 1, - sym_preproc_comment, + [102851] = 4, + ACTIONS(8619), 1, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9584), 8, + ACTIONS(4255), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4257), 23, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [102891] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4451), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9588), 20, + ACTIONS(4453), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -549891,13 +550287,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102484] = 4, - ACTIONS(10142), 1, + [102929] = 4, + ACTIONS(10176), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9558), 8, + ACTIONS(9676), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -549906,10 +550302,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9562), 20, + ACTIONS(9680), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -549927,24 +550323,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102524] = 6, - ACTIONS(10144), 1, - anon_sym_COMMA, - ACTIONS(10146), 1, - anon_sym_RPAREN, - STATE(6345), 1, - aux_sym_equivalence_set_repeat1, + [102969] = 5, + ACTIONS(5789), 1, + anon_sym_STAR, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, - anon_sym_STAR, + ACTIONS(5786), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(4255), 4, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, + ACTIONS(4257), 22, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -549965,25 +550360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [102568] = 4, - ACTIONS(10148), 1, - sym_preproc_comment, + [103011] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9584), 8, + ACTIONS(4527), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9588), 20, + ACTIONS(4529), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -550001,49 +550395,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102608] = 4, - ACTIONS(8564), 1, - anon_sym_LPAREN2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4323), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4325), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON_COLON, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [102648] = 4, - ACTIONS(10150), 1, + [103049] = 4, + ACTIONS(10178), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9643), 8, + ACTIONS(9714), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550052,7 +550410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9647), 20, + ACTIONS(9718), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -550073,13 +550431,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102688] = 4, - ACTIONS(10152), 1, + [103089] = 4, + ACTIONS(10180), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9667), 8, + ACTIONS(9580), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550088,12 +550446,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9671), 20, + ACTIONS(9584), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -550109,13 +550467,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102728] = 4, - ACTIONS(10154), 1, + [103129] = 4, + ACTIONS(10182), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550124,12 +550482,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(9610), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -550145,27 +550503,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102768] = 4, - ACTIONS(10156), 1, - sym_preproc_comment, + [103169] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9695), 8, + ACTIONS(7474), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9699), 20, + ACTIONS(7476), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -550181,63 +550538,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102808] = 4, - ACTIONS(10158), 1, - anon_sym_LPAREN2, + [103207] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4323), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4325), 22, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [102848] = 4, - ACTIONS(10160), 1, - sym_preproc_comment, + ACTIONS(4487), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(4489), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [103245] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(4531), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(4533), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -550253,13 +550608,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102888] = 4, - ACTIONS(10162), 1, + [103283] = 4, + ACTIONS(10184), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9584), 8, + ACTIONS(9618), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550268,10 +550623,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9588), 20, + ACTIONS(9622), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -550289,11 +550644,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102928] = 3, + [103323] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4439), 9, + ACTIONS(9737), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550303,7 +550658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4441), 20, + ACTIONS(9739), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -550324,27 +550679,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [102966] = 4, - ACTIONS(10164), 1, - sym_preproc_comment, + [103361] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9544), 8, + ACTIONS(4479), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9548), 20, + ACTIONS(4481), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -550360,13 +550714,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103006] = 4, - ACTIONS(10166), 1, + [103399] = 4, + ACTIONS(10186), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(9702), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550375,12 +550729,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(9706), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -550396,27 +550750,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103046] = 4, - ACTIONS(10168), 1, - sym_preproc_comment, + [103439] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9558), 8, + ACTIONS(4391), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9562), 20, + ACTIONS(4393), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -550432,99 +550785,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103086] = 6, - ACTIONS(10170), 1, - anon_sym_COMMA, - ACTIONS(10172), 1, - anon_sym_RPAREN, - STATE(7057), 1, - aux_sym_allocate_statement_repeat1, + [103477] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [103130] = 5, - ACTIONS(9976), 1, - anon_sym_EQ, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10174), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [103172] = 4, - ACTIONS(10176), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9544), 8, + ACTIONS(4395), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9548), 20, + ACTIONS(4397), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -550543,24 +550820,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103212] = 4, - ACTIONS(10178), 1, - sym_preproc_comment, + [103515] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(4399), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(4401), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -550579,101 +550855,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103252] = 5, - ACTIONS(9976), 1, - anon_sym_EQ, - ACTIONS(10086), 1, - anon_sym_COMMA, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 22, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [103294] = 5, - ACTIONS(5803), 1, - anon_sym_STAR, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(5800), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(4323), 4, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4325), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [103336] = 4, - ACTIONS(10180), 1, - sym_preproc_comment, + [103553] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9584), 8, + ACTIONS(4403), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9588), 20, + ACTIONS(4405), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -550689,60 +550890,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103376] = 4, + [103591] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10186), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(10184), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(10182), 22, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT_LT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [103416] = 4, - ACTIONS(10188), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9655), 8, + ACTIONS(4407), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9659), 20, + ACTIONS(4409), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -550761,24 +550925,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103456] = 4, - ACTIONS(10190), 1, - sym_preproc_comment, + [103629] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9558), 8, + ACTIONS(4411), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9562), 20, + ACTIONS(4413), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -550797,11 +550960,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103496] = 3, + [103667] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4457), 9, + ACTIONS(4415), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550811,7 +550974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4459), 20, + ACTIONS(4417), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -550832,26 +550995,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103534] = 3, + [103705] = 4, + ACTIONS(10188), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 9, + ACTIONS(9656), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9660), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -550867,13 +551031,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103572] = 4, - ACTIONS(10192), 1, + [103745] = 4, + ACTIONS(10190), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9606), 8, + ACTIONS(9580), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550882,9 +551046,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9610), 20, + ACTIONS(9584), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -550903,13 +551067,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103612] = 4, - ACTIONS(10194), 1, + [103785] = 4, + ACTIONS(10192), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550918,9 +551082,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(9610), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -550939,13 +551103,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103652] = 4, - ACTIONS(10196), 1, + [103825] = 4, + ACTIONS(10194), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9643), 8, + ACTIONS(9702), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -550954,7 +551118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9647), 20, + ACTIONS(9706), 20, aux_sym_module_statement_token1, aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, @@ -550975,23 +551139,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103692] = 3, + [103865] = 4, + ACTIONS(10196), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 9, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9712), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -551010,13 +551175,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103730] = 4, + [103905] = 4, ACTIONS(10198), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9655), 8, + ACTIONS(9676), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551025,10 +551190,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9659), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9680), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551046,23 +551211,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103770] = 6, - ACTIONS(9995), 1, + [103945] = 6, + ACTIONS(10200), 1, anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(10202), 1, anon_sym_RPAREN, - STATE(6986), 1, + STATE(7070), 1, aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [103989] = 5, + ACTIONS(9982), 1, + anon_sym_EQ, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10064), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8590), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -551084,49 +551286,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [103814] = 4, - ACTIONS(10200), 1, - sym_preproc_comment, + [104031] = 5, + ACTIONS(9982), 1, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9667), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9671), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [103854] = 4, - ACTIONS(10202), 1, + ACTIONS(10204), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [104073] = 4, + ACTIONS(10206), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(9618), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551135,9 +551338,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9622), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -551156,13 +551359,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103894] = 4, - ACTIONS(10204), 1, + [104113] = 4, + ACTIONS(10208), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9655), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551171,7 +551374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9659), 20, + ACTIONS(9712), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_subroutine_statement_token1, @@ -551192,48 +551395,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [103934] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4535), 9, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4537), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [103972] = 4, - ACTIONS(10206), 1, + [104153] = 4, + ACTIONS(10210), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9695), 8, + ACTIONS(9714), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551242,9 +551410,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9699), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9718), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -551263,23 +551431,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104012] = 3, + [104193] = 4, + ACTIONS(10212), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 9, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9729), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -551298,13 +551467,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104050] = 4, - ACTIONS(10208), 1, + [104233] = 4, + ACTIONS(10214), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9667), 8, + ACTIONS(9714), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551313,10 +551482,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9671), 20, + ACTIONS(9718), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551334,13 +551503,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104090] = 4, - ACTIONS(10210), 1, + [104273] = 4, + ACTIONS(10216), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551349,10 +551518,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(9729), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551370,13 +551539,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104130] = 4, - ACTIONS(10212), 1, + [104313] = 4, + ACTIONS(10218), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9695), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551385,9 +551554,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9699), 20, + ACTIONS(9610), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -551406,60 +551575,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104170] = 4, - ACTIONS(10214), 1, - sym_preproc_comment, + [104353] = 7, + ACTIONS(10220), 1, + anon_sym_COMMA, + ACTIONS(10222), 1, + anon_sym_STAR, + ACTIONS(10224), 1, + anon_sym_SLASH, + STATE(6672), 1, + aux_sym_data_value_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, - aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [104210] = 3, + ACTIONS(8590), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [104398] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 9, + ACTIONS(4391), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4393), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551477,13 +551647,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104248] = 4, - ACTIONS(10216), 1, - sym_preproc_comment, + [104435] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(4395), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551492,10 +551660,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(4397), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551513,11 +551681,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104288] = 3, + [104472] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4391), 8, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551526,10 +551694,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 20, + ACTIONS(9729), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551547,11 +551715,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104325] = 3, + [104509] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9811), 8, + ACTIONS(4411), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551560,12 +551728,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9813), 20, + ACTIONS(4413), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -551581,11 +551749,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104362] = 3, + [104546] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4439), 8, + ACTIONS(9767), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551594,10 +551762,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4441), 20, + ACTIONS(9769), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551615,11 +551783,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104399] = 3, + [104583] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4457), 8, + ACTIONS(9771), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551628,10 +551796,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4459), 20, + ACTIONS(9773), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551649,11 +551817,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104436] = 3, + [104620] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 8, + ACTIONS(9779), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551662,10 +551830,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 20, + ACTIONS(9781), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551683,11 +551851,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104473] = 3, + [104657] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 8, + ACTIONS(9783), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551696,10 +551864,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 20, + ACTIONS(9785), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551717,11 +551885,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104510] = 3, + [104694] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9801), 8, + ACTIONS(7474), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551730,10 +551898,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9803), 20, - aux_sym_end_program_statement_token2, + ACTIONS(7476), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551751,20 +551919,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104547] = 4, + [104731] = 4, + ACTIONS(10227), 1, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10218), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8396), 5, + ACTIONS(8590), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 22, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -551786,11 +551954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [104586] = 3, + [104770] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 8, + ACTIONS(9737), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551799,10 +551967,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 20, + ACTIONS(9739), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551820,11 +551988,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104623] = 3, + [104807] = 4, + ACTIONS(10229), 1, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 8, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 22, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [104846] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9789), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551833,10 +552036,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 20, + ACTIONS(9791), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -551854,11 +552057,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104660] = 3, + [104883] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551867,12 +552070,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(9610), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -551888,11 +552091,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104697] = 3, + [104920] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9829), 8, + ACTIONS(4451), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551901,12 +552104,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9831), 20, + ACTIONS(4453), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -551922,11 +552125,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104734] = 3, + [104957] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9833), 8, + ACTIONS(4479), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -551935,12 +552138,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9835), 20, + ACTIONS(4481), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -551956,46 +552159,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104771] = 4, + [104994] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10220), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(10184), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(10182), 20, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - [104810] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9685), 8, + ACTIONS(9793), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552004,12 +552172,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(9795), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552025,11 +552193,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104847] = 3, + [105031] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(9797), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552038,7 +552206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(9799), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_subroutine_statement_token1, @@ -552059,11 +552227,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104884] = 3, + [105068] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(4523), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552072,12 +552240,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(4525), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552093,46 +552261,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104921] = 4, + [105105] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10222), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8587), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8585), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [104960] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9873), 8, + ACTIONS(9801), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552141,12 +552274,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9875), 20, + ACTIONS(9803), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552162,11 +552295,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [104997] = 3, + [105142] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9877), 8, + ACTIONS(9805), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552175,12 +552308,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9879), 20, + ACTIONS(9807), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552196,11 +552329,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105034] = 3, + [105179] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9913), 8, + ACTIONS(4415), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552209,12 +552342,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9915), 20, + ACTIONS(4417), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552230,11 +552363,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105071] = 3, + [105216] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9917), 8, + ACTIONS(9805), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552243,12 +552376,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9919), 20, + ACTIONS(9807), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552264,11 +552397,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105108] = 3, + [105253] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9873), 8, + ACTIONS(9809), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552277,7 +552410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9875), 20, + ACTIONS(9811), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_subroutine_statement_token1, @@ -552298,11 +552431,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105145] = 3, + [105290] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9877), 8, + ACTIONS(9813), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552311,7 +552444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9879), 20, + ACTIONS(9815), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_subroutine_statement_token1, @@ -552332,11 +552465,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105182] = 3, + [105327] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9779), 8, + ACTIONS(4399), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552345,10 +552478,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9781), 20, + ACTIONS(4401), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -552366,11 +552499,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105219] = 3, + [105364] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9823), 8, + ACTIONS(9817), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552379,12 +552512,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9825), 20, + ACTIONS(9819), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552400,11 +552533,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105256] = 3, + [105401] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(9821), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552413,12 +552546,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(9823), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552434,11 +552567,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105293] = 3, + [105438] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 8, + ACTIONS(7528), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552447,10 +552580,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7506), 20, + ACTIONS(7530), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -552468,11 +552601,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105330] = 3, + [105475] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9913), 8, + ACTIONS(9825), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552481,7 +552614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9915), 20, + ACTIONS(9827), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_subroutine_statement_token1, @@ -552502,11 +552635,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105367] = 3, + [105512] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9853), 8, + ACTIONS(4487), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552515,7 +552648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9855), 20, + ACTIONS(4489), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -552536,11 +552669,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105404] = 3, + [105549] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9857), 8, + ACTIONS(4531), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552549,7 +552682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9859), 20, + ACTIONS(4533), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -552570,11 +552703,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105441] = 3, + [105586] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 8, + ACTIONS(4487), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552583,9 +552716,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4489), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -552604,81 +552737,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105478] = 4, - ACTIONS(10224), 1, - anon_sym_COMMA, + [105623] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 22, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [105517] = 4, - ACTIONS(10218), 1, - anon_sym_COMMA, + ACTIONS(4531), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(4533), 20, + aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [105660] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 22, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [105556] = 3, + ACTIONS(4595), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(4597), 20, + aux_sym_end_program_statement_token2, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [105697] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7484), 8, + ACTIONS(4419), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552687,10 +552818,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7486), 20, + ACTIONS(4421), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -552708,11 +552839,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105593] = 3, + [105734] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9863), 8, + ACTIONS(4423), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552721,12 +552852,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9865), 20, + ACTIONS(4425), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552742,11 +552873,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105630] = 3, + [105771] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9869), 8, + ACTIONS(4443), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(4445), 20, + aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [105808] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4447), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552755,12 +552920,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9871), 20, + ACTIONS(4449), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552776,11 +552941,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105667] = 3, + [105845] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4439), 8, + ACTIONS(4419), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552789,12 +552954,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4441), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4421), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552810,11 +552975,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105704] = 3, + [105882] = 4, + ACTIONS(10231), 1, + anon_sym_COMMA, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 22, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [105921] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9909), 8, + ACTIONS(4595), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552823,12 +553023,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9911), 20, + ACTIONS(4597), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552844,11 +553044,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105741] = 3, + [105958] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9931), 8, + ACTIONS(4423), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552857,7 +553057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9933), 20, + ACTIONS(4425), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -552878,11 +553078,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105778] = 3, + [105995] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4567), 8, + ACTIONS(4443), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552891,12 +553091,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4569), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4445), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552912,11 +553112,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105815] = 3, + [106032] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9779), 8, + ACTIONS(4595), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552925,12 +553125,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9781), 20, + ACTIONS(4597), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -552946,11 +553146,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105852] = 3, + [106069] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 8, + ACTIONS(4599), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552959,9 +553159,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4601), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -552980,11 +553180,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105889] = 3, + [106106] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 8, + ACTIONS(4447), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -552993,12 +553193,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4449), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553014,11 +553214,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105926] = 3, + [106143] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4579), 8, + ACTIONS(4487), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553027,10 +553227,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4581), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4489), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -553048,11 +553248,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [105963] = 3, + [106180] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9783), 8, + ACTIONS(4603), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553061,12 +553261,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9785), 20, + ACTIONS(4605), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553082,11 +553282,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106000] = 3, + [106217] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 8, + ACTIONS(4527), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553095,7 +553295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7506), 20, + ACTIONS(4529), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -553116,11 +553316,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106037] = 3, + [106254] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4457), 8, + ACTIONS(4541), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553129,9 +553329,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4459), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4543), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -553150,11 +553350,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106074] = 3, + [106291] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 8, + ACTIONS(4565), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553163,9 +553363,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4567), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -553184,11 +553384,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106111] = 3, + [106328] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 8, + ACTIONS(9737), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553197,12 +553397,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9739), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553218,11 +553418,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106148] = 3, + [106365] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 8, + ACTIONS(4531), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553231,10 +553431,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4533), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -553252,46 +553452,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106185] = 4, + [106402] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10218), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [106224] = 3, + ACTIONS(9821), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9823), 20, + aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [106439] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9917), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553300,10 +553499,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9919), 20, + ACTIONS(9712), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -553321,11 +553520,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106261] = 3, + [106476] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9801), 8, + ACTIONS(4607), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553334,12 +553533,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9803), 20, + ACTIONS(4609), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553355,11 +553554,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106298] = 3, + [106513] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 8, + ACTIONS(4451), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553368,9 +553567,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4453), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -553389,11 +553588,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106335] = 3, + [106550] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7484), 8, + ACTIONS(4479), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553402,7 +553601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7486), 20, + ACTIONS(4481), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -553423,11 +553622,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106372] = 3, + [106587] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9823), 8, + ACTIONS(4523), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553436,10 +553635,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9825), 20, + ACTIONS(4525), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -553457,11 +553656,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106409] = 3, + [106624] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553470,12 +553669,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9604), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553491,11 +553690,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106446] = 3, + [106661] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 8, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553504,9 +553703,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 20, + ACTIONS(9729), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -553525,11 +553724,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106483] = 3, + [106698] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 8, + ACTIONS(9759), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553538,12 +553737,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 20, + ACTIONS(9761), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553559,11 +553758,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106520] = 3, + [106735] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(9763), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553572,12 +553771,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(9765), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553593,11 +553792,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106557] = 3, + [106772] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9829), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553606,7 +553805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9831), 20, + ACTIONS(9712), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -553627,11 +553826,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106594] = 3, + [106809] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9833), 8, + ACTIONS(9809), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553640,7 +553839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9835), 20, + ACTIONS(9811), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -553661,11 +553860,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106631] = 3, + [106846] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4531), 8, + ACTIONS(4599), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553674,10 +553873,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4533), 20, + ACTIONS(4601), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -553695,11 +553894,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106668] = 3, + [106883] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4535), 8, + ACTIONS(9813), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553708,9 +553907,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4537), 20, + ACTIONS(9815), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -553729,11 +553928,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106705] = 3, + [106920] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 8, + ACTIONS(4603), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553742,10 +553941,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 20, + ACTIONS(4605), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -553763,11 +553962,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106742] = 3, + [106957] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4543), 8, + ACTIONS(4599), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553776,9 +553975,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4545), 20, + ACTIONS(4601), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -553797,11 +553996,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106779] = 3, + [106994] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4383), 8, + ACTIONS(9767), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553810,9 +554009,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4385), 20, + ACTIONS(9769), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -553831,11 +554030,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106816] = 3, + [107031] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4387), 8, + ACTIONS(4595), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553844,12 +554043,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4389), 20, + ACTIONS(4597), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553865,11 +554064,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106853] = 3, + [107068] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9917), 8, + ACTIONS(4599), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553878,12 +554077,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9919), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4601), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553899,11 +554098,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106890] = 3, + [107105] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4395), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553912,12 +554111,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4397), 20, + ACTIONS(9712), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553933,11 +554132,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106927] = 3, + [107142] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4399), 8, + ACTIONS(4603), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553946,12 +554145,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4401), 20, + ACTIONS(4605), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -553967,11 +554166,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [106964] = 3, + [107179] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 8, + ACTIONS(4527), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -553980,10 +554179,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 20, + ACTIONS(4529), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -554001,11 +554200,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107001] = 3, + [107216] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(4541), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554014,7 +554213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(4543), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_subroutine_statement_token1, @@ -554035,11 +554234,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107038] = 3, + [107253] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9853), 8, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554048,12 +554247,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9855), 20, + ACTIONS(9729), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554069,11 +554268,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107075] = 3, + [107290] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4439), 8, + ACTIONS(4565), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554082,10 +554281,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4441), 20, + ACTIONS(4567), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -554103,11 +554302,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107112] = 3, + [107327] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4457), 8, + ACTIONS(9817), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554116,9 +554315,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4459), 20, + ACTIONS(9819), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -554137,11 +554336,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107149] = 3, + [107364] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 8, + ACTIONS(4527), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554150,12 +554349,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 20, + ACTIONS(4529), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554171,11 +554370,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107186] = 3, + [107401] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 8, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554184,9 +554383,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 20, + ACTIONS(9729), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -554205,11 +554404,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107223] = 3, + [107438] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9857), 8, + ACTIONS(9767), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554218,10 +554417,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9859), 20, + ACTIONS(9769), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -554239,11 +554438,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107260] = 3, + [107475] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9863), 8, + ACTIONS(9767), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554252,12 +554451,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9865), 20, + ACTIONS(9769), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554273,11 +554472,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107297] = 3, + [107512] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9869), 8, + ACTIONS(9771), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554286,12 +554485,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9871), 20, + ACTIONS(9773), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554307,11 +554506,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107334] = 3, + [107549] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9909), 8, + ACTIONS(9771), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554320,10 +554519,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9911), 20, + ACTIONS(9773), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -554341,11 +554540,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107371] = 3, + [107586] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9931), 8, + ACTIONS(9779), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554354,12 +554553,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9933), 20, + ACTIONS(9781), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554375,7 +554574,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107408] = 3, + [107623] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -554389,9 +554588,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, ACTIONS(9781), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -554409,7 +554608,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107445] = 3, + [107660] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -554425,9 +554624,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9785), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554443,11 +554642,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107482] = 3, + [107697] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9823), 8, + ACTIONS(9783), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554456,7 +554655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9825), 20, + ACTIONS(9785), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -554477,11 +554676,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107519] = 3, + [107734] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(4419), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554490,10 +554689,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4421), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [107771] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9737), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9739), 20, + aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, + aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -554511,11 +554744,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107556] = 3, + [107808] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 8, + ACTIONS(9789), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554524,12 +554757,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 20, + ACTIONS(9791), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554545,11 +554778,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107593] = 3, + [107845] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9853), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554558,12 +554791,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9855), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9610), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554579,11 +554812,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107630] = 3, + [107882] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9857), 8, + ACTIONS(4423), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554592,10 +554825,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9859), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4425), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -554613,11 +554846,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107667] = 3, + [107919] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 8, + ACTIONS(4443), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554626,7 +554859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 20, + ACTIONS(4445), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -554647,11 +554880,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107704] = 3, + [107956] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9863), 8, + ACTIONS(9793), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554660,12 +554893,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9865), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9795), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554681,11 +554914,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107741] = 3, + [107993] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9869), 8, + ACTIONS(9797), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554694,12 +554927,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9871), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9799), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554715,11 +554948,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107778] = 3, + [108030] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9783), 8, + ACTIONS(4447), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554728,10 +554961,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9785), 20, + ACTIONS(4449), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -554749,7 +554982,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107815] = 3, + [108067] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -554765,9 +554998,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9803), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554783,45 +555016,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107852] = 3, + [108104] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8583), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(8581), 22, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [107889] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9829), 8, + ACTIONS(9805), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554830,12 +555029,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9831), 20, + ACTIONS(9807), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554851,11 +555050,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107926] = 3, + [108141] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 8, + ACTIONS(9809), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554864,12 +555063,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7506), 20, + ACTIONS(9811), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554885,11 +555084,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [107963] = 3, + [108178] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7484), 8, + ACTIONS(9813), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -554898,12 +555097,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7486), 20, + ACTIONS(9815), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -554919,86 +555118,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108000] = 6, - ACTIONS(10227), 1, - anon_sym_COMMA, - ACTIONS(10229), 1, - anon_sym_SLASH, - STATE(6560), 1, - aux_sym_data_value_repeat1, + [108215] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 4, - anon_sym_STAR, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [108043] = 7, - ACTIONS(10227), 1, - anon_sym_COMMA, - ACTIONS(10229), 1, - anon_sym_SLASH, - ACTIONS(10232), 1, - anon_sym_STAR, - STATE(6563), 1, - aux_sym_data_value_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8396), 3, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [108088] = 3, + ACTIONS(9817), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(9819), 20, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [108252] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9811), 8, + ACTIONS(9821), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555007,12 +555165,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9813), 20, + ACTIONS(9823), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -555028,11 +555186,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108125] = 3, + [108289] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 8, + ACTIONS(4541), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555041,12 +555199,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 20, + ACTIONS(4543), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -555062,11 +555220,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108162] = 3, + [108326] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9909), 8, + ACTIONS(7474), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555075,9 +555233,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9911), 20, - aux_sym_end_program_statement_token2, + ACTIONS(7476), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -555096,11 +555254,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108199] = 3, + [108363] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9931), 8, + ACTIONS(4565), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555109,12 +555267,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9933), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4567), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -555130,11 +555288,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108236] = 3, + [108400] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9833), 8, + ACTIONS(9771), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555143,10 +555301,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9835), 20, + ACTIONS(9773), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -555164,7 +555322,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108273] = 3, + [108437] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -555178,8 +555336,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, ACTIONS(9781), 20, - aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -555198,11 +555356,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108310] = 3, + [108474] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 8, + ACTIONS(9783), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555211,7 +555369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 20, + ACTIONS(9785), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -555232,11 +555390,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108347] = 3, + [108511] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(9825), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555245,12 +555403,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(9827), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -555266,11 +555424,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108384] = 3, + [108548] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4531), 8, + ACTIONS(4607), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555279,12 +555437,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4533), 20, + ACTIONS(4609), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -555300,11 +555458,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108421] = 3, + [108585] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 8, + ACTIONS(4451), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555313,12 +555471,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 20, + ACTIONS(4453), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -555334,11 +555492,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108458] = 3, + [108622] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9829), 8, + ACTIONS(4479), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555347,12 +555505,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9831), 20, + ACTIONS(4481), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -555368,11 +555526,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108495] = 3, + [108659] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9833), 8, + ACTIONS(4523), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555381,12 +555539,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9835), 20, + ACTIONS(4525), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -555402,46 +555560,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108532] = 4, + [108696] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10218), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [108571] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4567), 8, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555450,9 +555573,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4569), 20, + ACTIONS(9604), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -555471,11 +555594,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108608] = 3, + [108733] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 8, + ACTIONS(7528), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555484,7 +555607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 20, + ACTIONS(7530), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -555505,48 +555628,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108645] = 6, - ACTIONS(10227), 1, - anon_sym_COMMA, - ACTIONS(10234), 1, - anon_sym_SLASH, - STATE(6717), 1, - aux_sym_data_value_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8396), 4, - anon_sym_STAR, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [108688] = 3, + [108770] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 8, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555555,9 +555641,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 20, + ACTIONS(9604), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -555576,11 +555662,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108725] = 3, + [108807] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4579), 8, + ACTIONS(9759), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555589,9 +555675,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4581), 20, + ACTIONS(9761), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -555610,11 +555696,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108762] = 3, + [108844] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 8, + ACTIONS(9763), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555623,9 +555709,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 20, + ACTIONS(9765), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -555644,11 +555730,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108799] = 3, + [108881] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 8, + ACTIONS(4487), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555657,9 +555743,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 20, + ACTIONS(4489), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -555678,11 +555764,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108836] = 3, + [108918] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 8, + ACTIONS(4531), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555691,7 +555777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 20, + ACTIONS(4533), 20, aux_sym_module_statement_token1, aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, @@ -555712,45 +555798,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108873] = 3, + [108955] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4567), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4569), 20, - aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [108910] = 3, + ACTIONS(10233), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(10128), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(10126), 20, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + [108994] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 8, + ACTIONS(9821), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555759,9 +555846,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 20, + ACTIONS(9823), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -555780,11 +555867,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108947] = 3, + [109031] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9811), 8, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555793,10 +555880,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9813), 20, + ACTIONS(9604), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -555814,11 +555901,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [108984] = 3, + [109068] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 8, + ACTIONS(4419), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555827,7 +555914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 20, + ACTIONS(4421), 20, aux_sym_module_statement_token1, aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, @@ -555848,11 +555935,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109021] = 3, + [109105] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4579), 8, + ACTIONS(4423), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555861,7 +555948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4581), 20, + ACTIONS(4425), 20, aux_sym_module_statement_token1, aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, @@ -555882,11 +555969,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109058] = 3, + [109142] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 8, + ACTIONS(4443), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555895,7 +555982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 20, + ACTIONS(4445), 20, aux_sym_module_statement_token1, aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, @@ -555916,11 +556003,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109095] = 3, + [109179] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 8, + ACTIONS(4447), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555929,7 +556016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 20, + ACTIONS(4449), 20, aux_sym_module_statement_token1, aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, @@ -555950,45 +556037,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109132] = 3, + [109216] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, - aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [109169] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4535), 8, + ACTIONS(4595), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -555997,7 +556050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4537), 20, + ACTIONS(4597), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -556018,11 +556071,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109206] = 3, + [109253] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(4599), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556031,10 +556084,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(4601), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556052,11 +556105,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109243] = 3, + [109290] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9873), 8, + ACTIONS(9759), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556065,9 +556118,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9875), 20, + ACTIONS(9761), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -556086,11 +556139,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109280] = 3, + [109327] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9877), 8, + ACTIONS(4603), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556099,10 +556152,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9879), 20, + ACTIONS(4605), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556120,11 +556173,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109317] = 3, + [109364] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9913), 8, + ACTIONS(4527), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556133,10 +556186,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9915), 20, + ACTIONS(4529), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556154,11 +556207,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109354] = 3, + [109401] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9917), 8, + ACTIONS(4541), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556167,10 +556220,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9919), 20, + ACTIONS(4543), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556188,11 +556241,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109391] = 3, + [109438] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(4419), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556201,10 +556254,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(4421), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556222,11 +556275,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109428] = 3, + [109475] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4383), 8, + ACTIONS(9763), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556235,7 +556288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4385), 20, + ACTIONS(9765), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -556256,11 +556309,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109465] = 3, + [109512] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 8, + ACTIONS(4487), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556269,7 +556322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 20, + ACTIONS(4489), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_subroutine_statement_token1, @@ -556290,11 +556343,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109502] = 3, + [109549] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9829), 8, + ACTIONS(4565), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556303,7 +556356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9831), 20, + ACTIONS(4567), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -556324,11 +556377,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109539] = 3, + [109586] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9833), 8, + ACTIONS(4595), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556337,10 +556390,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9835), 20, + ACTIONS(4597), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556358,11 +556411,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109576] = 3, + [109623] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(4599), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556371,10 +556424,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(4601), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556392,11 +556445,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109613] = 3, + [109660] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4567), 8, + ACTIONS(4603), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556405,10 +556458,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4569), 20, + ACTIONS(4605), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556426,11 +556479,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109650] = 3, + [109697] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 8, + ACTIONS(4527), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556439,10 +556492,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 20, + ACTIONS(4529), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556460,11 +556513,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109687] = 3, + [109734] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(4541), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556473,10 +556526,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(4543), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556494,11 +556547,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109724] = 3, + [109771] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 8, + ACTIONS(4565), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556507,10 +556560,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 20, + ACTIONS(4567), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556528,11 +556581,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109761] = 3, + [109808] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9823), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556541,9 +556594,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9825), 20, + ACTIONS(9712), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -556562,11 +556615,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109798] = 3, + [109845] = 4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10231), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [109884] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556575,9 +556663,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(9729), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -556596,11 +556684,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109835] = 3, + [109921] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 8, + ACTIONS(4607), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556609,10 +556697,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 20, + ACTIONS(4609), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556630,11 +556718,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109872] = 3, + [109958] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9873), 8, + ACTIONS(9767), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556643,10 +556731,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9875), 20, + ACTIONS(9769), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556664,11 +556752,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109909] = 3, + [109995] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 8, + ACTIONS(4451), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556677,10 +556765,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 20, + ACTIONS(4453), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556698,11 +556786,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109946] = 3, + [110032] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9853), 8, + ACTIONS(9771), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556711,9 +556799,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9855), 20, + ACTIONS(9773), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -556732,11 +556820,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [109983] = 3, + [110069] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9857), 8, + ACTIONS(9779), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556745,9 +556833,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9859), 20, + ACTIONS(9781), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -556766,11 +556854,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110020] = 3, + [110106] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 8, + ACTIONS(4479), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556779,12 +556867,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 20, + ACTIONS(4481), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -556800,11 +556888,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110057] = 3, + [110143] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9877), 8, + ACTIONS(4523), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556813,10 +556901,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9879), 20, + ACTIONS(4525), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556834,11 +556922,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110094] = 3, + [110180] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9863), 8, + ACTIONS(9783), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556847,9 +556935,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9865), 20, + ACTIONS(9785), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -556868,11 +556956,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110131] = 3, + [110217] = 4, + ACTIONS(10064), 1, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9869), 8, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 22, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [110256] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9759), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556881,7 +557004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9871), 20, + ACTIONS(9761), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -556902,11 +557025,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110168] = 3, + [110293] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9913), 8, + ACTIONS(4423), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556915,10 +557038,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9915), 20, + ACTIONS(4425), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556936,11 +557059,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110205] = 3, + [110330] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9917), 8, + ACTIONS(4443), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556949,10 +557072,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9919), 20, + ACTIONS(4445), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -556970,11 +557093,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110242] = 3, + [110367] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9823), 8, + ACTIONS(4447), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -556983,10 +557106,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9825), 20, + ACTIONS(4449), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -557004,11 +557127,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110279] = 3, + [110404] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(4607), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557017,7 +557140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(4609), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -557038,11 +557161,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110316] = 3, + [110441] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4567), 8, + ACTIONS(10235), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8586), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8584), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [110480] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4451), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557051,12 +557209,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4569), 20, + ACTIONS(4453), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -557072,11 +557230,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110353] = 3, + [110517] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 8, + ACTIONS(4479), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557085,12 +557243,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 20, + ACTIONS(4481), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -557106,11 +557264,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110390] = 3, + [110554] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9853), 8, + ACTIONS(4523), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557119,7 +557277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9855), 20, + ACTIONS(4525), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -557140,11 +557298,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110427] = 3, + [110591] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9909), 8, + ACTIONS(4603), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557153,9 +557311,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9911), 20, + ACTIONS(4605), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -557174,11 +557332,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110464] = 3, + [110628] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9931), 8, + ACTIONS(9763), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557187,7 +557345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9933), 20, + ACTIONS(9765), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -557208,11 +557366,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110501] = 3, + [110665] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 8, + ACTIONS(9825), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557221,12 +557379,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 20, + ACTIONS(9827), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -557242,11 +557400,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110538] = 3, + [110702] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9779), 8, + ACTIONS(4527), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557255,9 +557413,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9781), 20, + ACTIONS(4529), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -557276,11 +557434,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110575] = 3, + [110739] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9857), 8, + ACTIONS(4607), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557289,10 +557447,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9859), 20, + ACTIONS(4609), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -557310,11 +557468,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110612] = 3, + [110776] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4579), 8, + ACTIONS(4451), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557323,12 +557481,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4581), 20, + ACTIONS(4453), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -557344,11 +557502,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110649] = 3, + [110813] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 8, + ACTIONS(7474), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557357,12 +557515,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 20, + ACTIONS(7476), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -557378,11 +557536,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110686] = 3, + [110850] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9863), 8, + ACTIONS(4479), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557391,10 +557549,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9865), 20, + ACTIONS(4481), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -557412,11 +557570,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110723] = 3, + [110887] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9869), 8, + ACTIONS(4541), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557425,10 +557583,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9871), 20, + ACTIONS(4543), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -557446,11 +557604,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110760] = 3, + [110924] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9801), 8, + ACTIONS(7474), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557459,12 +557617,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9803), 20, + ACTIONS(7476), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -557480,45 +557638,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110797] = 3, + [110961] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9909), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9911), 20, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [110834] = 3, + ACTIONS(10237), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [111000] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9931), 8, + ACTIONS(7528), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557527,10 +557686,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9933), 20, + ACTIONS(7530), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -557548,11 +557707,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110871] = 3, + [111037] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 8, + ACTIONS(4523), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557561,12 +557720,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 20, + ACTIONS(4525), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -557582,11 +557741,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110908] = 3, + [111074] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9779), 8, + ACTIONS(7474), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557595,7 +557754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9781), 20, + ACTIONS(7476), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -557616,11 +557775,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110945] = 3, + [111111] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9783), 8, + ACTIONS(9789), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557629,9 +557788,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9785), 20, + ACTIONS(9791), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -557650,11 +557809,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [110982] = 3, + [111148] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9783), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557663,10 +557822,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9785), 20, + ACTIONS(9610), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -557684,11 +557843,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111019] = 3, + [111185] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9783), 8, + ACTIONS(9793), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557697,9 +557856,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9785), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9795), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -557718,11 +557877,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111056] = 3, + [111222] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 8, + ACTIONS(9797), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557731,10 +557890,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 20, + ACTIONS(9799), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -557752,7 +557911,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111093] = 3, + [111259] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -557767,77 +557926,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token4, ACTIONS(9803), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [111130] = 4, - ACTIONS(10086), 1, - anon_sym_COMMA, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 22, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [111169] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4543), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4545), 20, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -557855,11 +557945,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111206] = 3, + [111296] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9801), 8, + ACTIONS(9805), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557868,9 +557958,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9803), 20, + ACTIONS(9807), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -557889,11 +557979,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111243] = 3, + [111333] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(4531), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557902,7 +557992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(4533), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_subroutine_statement_token1, @@ -557923,20 +558013,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111280] = 4, - ACTIONS(10237), 1, - anon_sym_EQ, + [111370] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(10064), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8590), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 22, - anon_sym_RPAREN, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -557958,11 +558048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [111319] = 3, + [111409] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4383), 8, + ACTIONS(4391), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -557971,10 +558061,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4385), 20, + ACTIONS(4393), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -557992,45 +558082,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111356] = 3, + [111446] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4387), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4389), 20, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [111393] = 3, + ACTIONS(8400), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(8398), 22, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [111483] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4391), 8, + ACTIONS(9789), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558039,10 +558129,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 20, + ACTIONS(9791), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558060,11 +558150,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111430] = 3, + [111520] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4531), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558073,9 +558163,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4533), 20, + ACTIONS(9610), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -558094,11 +558184,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111467] = 3, + [111557] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9823), 8, + ACTIONS(4565), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558107,9 +558197,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9825), 20, + ACTIONS(4567), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -558128,11 +558218,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111504] = 3, + [111594] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4535), 8, + ACTIONS(7528), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558141,12 +558231,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4537), 20, + ACTIONS(7530), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -558162,11 +558252,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111541] = 3, + [111631] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 8, + ACTIONS(4391), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558175,7 +558265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 20, + ACTIONS(4393), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -558196,11 +558286,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111578] = 3, + [111668] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4543), 8, + ACTIONS(9737), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558209,10 +558299,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4545), 20, + ACTIONS(9739), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558230,11 +558320,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111615] = 3, + [111705] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9550), 8, + ACTIONS(4403), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558243,10 +558333,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9554), 20, + ACTIONS(4405), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558264,11 +558354,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111652] = 3, + [111742] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4387), 8, + ACTIONS(4395), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558277,9 +558367,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4389), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4397), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -558298,46 +558388,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111689] = 4, + [111779] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10174), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [111728] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4391), 8, + ACTIONS(9737), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558346,10 +558401,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9739), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558367,11 +558422,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111765] = 3, + [111816] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4395), 8, + ACTIONS(4399), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558380,9 +558435,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4397), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4401), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -558401,46 +558456,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111802] = 4, + [111853] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10239), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [111841] = 3, + ACTIONS(4403), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(4405), 20, + aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + aux_sym_include_statement_token1, + [111890] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 8, + ACTIONS(4407), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558449,9 +558503,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4409), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -558470,11 +558524,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111878] = 3, + [111927] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 8, + ACTIONS(4411), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558483,9 +558537,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4413), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -558504,11 +558558,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111915] = 3, + [111964] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4395), 8, + ACTIONS(4415), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558517,10 +558571,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4397), 20, + ACTIONS(4417), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558538,11 +558592,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111952] = 3, + [112001] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4399), 8, + ACTIONS(4391), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558551,9 +558605,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4401), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4393), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -558572,11 +558626,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [111989] = 3, + [112038] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 8, + ACTIONS(4395), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558585,9 +558639,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 20, - aux_sym_end_program_statement_token2, + ACTIONS(4397), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -558606,11 +558660,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112026] = 3, + [112075] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9853), 8, + ACTIONS(4399), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558619,7 +558673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9855), 20, + ACTIONS(4401), 20, aux_sym_module_statement_token1, aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, @@ -558640,11 +558694,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112063] = 3, + [112112] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 8, + ACTIONS(4403), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558653,10 +558707,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 20, + ACTIONS(4405), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558674,11 +558728,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112100] = 3, + [112149] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 8, + ACTIONS(4407), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558687,10 +558741,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 20, + ACTIONS(4409), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558708,11 +558762,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112137] = 3, + [112186] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4531), 8, + ACTIONS(4411), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558721,10 +558775,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4533), 20, + ACTIONS(4413), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558742,11 +558796,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112174] = 3, + [112223] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4535), 8, + ACTIONS(4415), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558755,10 +558809,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4537), 20, + ACTIONS(4417), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558776,11 +558830,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112211] = 3, + [112260] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 8, + ACTIONS(9793), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558789,10 +558843,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 20, + ACTIONS(9795), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558810,11 +558864,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112248] = 3, + [112297] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4543), 8, + ACTIONS(9797), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558823,10 +558877,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4545), 20, + ACTIONS(9799), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558844,11 +558898,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112285] = 3, + [112334] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9857), 8, + ACTIONS(9809), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558857,7 +558911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9859), 20, + ACTIONS(9811), 20, aux_sym_module_statement_token1, aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, @@ -558878,11 +558932,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112322] = 3, + [112371] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4383), 8, + ACTIONS(9813), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558891,10 +558945,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4385), 20, + ACTIONS(9815), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558912,11 +558966,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112359] = 3, + [112408] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4387), 8, + ACTIONS(7528), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558925,10 +558979,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4389), 20, + ACTIONS(7530), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558946,11 +559000,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112396] = 3, + [112445] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4391), 8, + ACTIONS(9817), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -558959,10 +559013,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 20, + ACTIONS(9819), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -558980,7 +559034,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112433] = 3, + [112482] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -558994,9 +559048,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, ACTIONS(4397), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559014,7 +559068,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112470] = 3, + [112519] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -559028,9 +559082,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, ACTIONS(4401), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559048,11 +559102,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112507] = 3, + [112556] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9811), 8, + ACTIONS(10231), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [112595] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9801), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559061,9 +559150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9813), 20, + ACTIONS(9803), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -559082,11 +559171,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112544] = 3, + [112632] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4399), 8, + ACTIONS(9805), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559095,10 +559184,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4401), 20, + ACTIONS(9807), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559116,11 +559205,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112581] = 3, + [112669] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 8, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559129,10 +559218,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 20, + ACTIONS(9604), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559150,11 +559239,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112618] = 3, + [112706] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4439), 8, + ACTIONS(4403), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559163,10 +559252,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4441), 20, + ACTIONS(4405), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559184,11 +559273,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112655] = 3, + [112743] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4457), 8, + ACTIONS(9759), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559197,10 +559286,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4459), 20, + ACTIONS(9761), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559218,11 +559307,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112692] = 3, + [112780] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 8, + ACTIONS(9763), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559231,10 +559320,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 20, + ACTIONS(9765), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559252,11 +559341,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112729] = 3, + [112817] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 8, + ACTIONS(9821), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559265,10 +559354,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 20, + ACTIONS(9823), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559286,11 +559375,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112766] = 3, + [112854] = 6, + ACTIONS(10220), 1, + anon_sym_COMMA, + ACTIONS(10224), 1, + anon_sym_SLASH, + STATE(6668), 1, + aux_sym_data_value_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8590), 4, + anon_sym_STAR, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [112897] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559299,10 +559425,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7506), 20, + ACTIONS(9712), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559320,11 +559446,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112803] = 3, + [112934] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7484), 8, + ACTIONS(9737), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559333,10 +559459,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7486), 20, + ACTIONS(9739), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559354,11 +559480,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112840] = 3, + [112971] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4523), 8, + ACTIONS(9825), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559367,12 +559493,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4525), 20, + ACTIONS(9827), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -559388,11 +559514,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112877] = 3, + [113008] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4527), 8, + ACTIONS(9725), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559401,12 +559527,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4529), 20, + ACTIONS(9729), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -559422,11 +559548,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112914] = 3, + [113045] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9909), 8, + ACTIONS(9767), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559435,10 +559561,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9911), 20, + ACTIONS(9769), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559456,11 +559582,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112951] = 3, + [113082] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9863), 8, + ACTIONS(9771), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559469,10 +559595,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9865), 20, + ACTIONS(9773), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559490,11 +559616,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [112988] = 3, + [113119] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 8, + ACTIONS(9779), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559503,7 +559629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 20, + ACTIONS(9781), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_end_module_procedure_statement_token1, @@ -559524,11 +559650,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113025] = 3, + [113156] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4531), 8, + ACTIONS(9783), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559537,10 +559663,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4533), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9785), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559558,11 +559684,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113062] = 3, + [113193] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4531), 8, + ACTIONS(10231), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [113232] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4407), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559571,12 +559732,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4533), 20, + ACTIONS(4409), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -559592,11 +559753,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113099] = 3, + [113269] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4535), 8, + ACTIONS(4411), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559605,12 +559766,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4537), 20, + ACTIONS(4413), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -559626,11 +559787,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113136] = 3, + [113306] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 8, + ACTIONS(9600), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559639,12 +559800,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 20, + ACTIONS(9604), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -559660,11 +559821,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113173] = 3, + [113343] = 4, + ACTIONS(10239), 1, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4543), 8, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 22, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [113382] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9789), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559673,12 +559869,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4545), 20, + ACTIONS(9791), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -559694,11 +559890,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113210] = 3, + [113419] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4535), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559707,10 +559903,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4537), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9610), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559728,11 +559924,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113247] = 3, + [113456] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4539), 8, + ACTIONS(9793), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559741,10 +559937,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4541), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9795), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559762,11 +559958,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113284] = 3, + [113493] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4543), 8, + ACTIONS(9825), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559775,9 +559971,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4545), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9827), 20, aux_sym_module_statement_token1, + aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -559796,11 +559992,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113321] = 3, + [113530] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9869), 8, + ACTIONS(9797), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559809,10 +560005,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9871), 20, + ACTIONS(9799), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559830,11 +560026,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113358] = 3, + [113567] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 8, + ACTIONS(9759), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559843,10 +560039,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 20, + ACTIONS(9761), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -559864,11 +560060,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113395] = 3, + [113604] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4383), 8, + ACTIONS(9763), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559877,12 +560073,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4385), 20, + ACTIONS(9765), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -559898,11 +560094,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113432] = 3, + [113641] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4387), 8, + ACTIONS(4391), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559911,12 +560107,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4389), 20, + ACTIONS(4393), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -559932,11 +560128,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113469] = 3, + [113678] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4391), 8, + ACTIONS(4395), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559945,12 +560141,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 20, + ACTIONS(4397), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -559966,11 +560162,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113506] = 3, + [113715] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4395), 8, + ACTIONS(4399), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -559979,12 +560175,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4397), 20, + ACTIONS(4401), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -560000,11 +560196,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113543] = 3, + [113752] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4399), 8, + ACTIONS(4403), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560013,12 +560209,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4401), 20, + ACTIONS(4405), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -560034,11 +560230,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113580] = 3, + [113789] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 8, + ACTIONS(4407), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560047,12 +560243,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 20, + ACTIONS(4409), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -560068,11 +560264,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113617] = 3, + [113826] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4567), 8, + ACTIONS(4411), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560081,10 +560277,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4569), 20, + ACTIONS(4413), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -560102,11 +560298,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113654] = 3, + [113863] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9620), 8, + ACTIONS(4415), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560115,10 +560311,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9624), 20, + ACTIONS(4417), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -560136,11 +560332,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113691] = 3, + [113900] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4439), 8, + ACTIONS(4391), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560149,7 +560345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4441), 20, + ACTIONS(4393), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -560170,11 +560366,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113728] = 3, + [113937] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 8, + ACTIONS(4395), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560183,12 +560379,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 20, + ACTIONS(4397), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -560204,11 +560400,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113765] = 3, + [113974] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4457), 8, + ACTIONS(4399), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560217,7 +560413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4459), 20, + ACTIONS(4401), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -560238,11 +560434,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113802] = 3, + [114011] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 8, + ACTIONS(4403), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560251,12 +560447,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 20, + ACTIONS(4405), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -560272,11 +560468,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113839] = 3, + [114048] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4595), 8, + ACTIONS(4407), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560285,7 +560481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4597), 20, + ACTIONS(4409), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -560306,11 +560502,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113876] = 3, + [114085] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9829), 8, + ACTIONS(4411), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560319,12 +560515,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9831), 20, + ACTIONS(4413), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, + aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -560340,11 +560536,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113913] = 3, + [114122] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4599), 8, + ACTIONS(4415), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560353,7 +560549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4601), 20, + ACTIONS(4417), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -560374,11 +560570,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113950] = 3, + [114159] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9833), 8, + ACTIONS(4487), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560387,9 +560583,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9835), 20, + ACTIONS(4489), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -560408,11 +560604,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [113987] = 3, + [114196] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4579), 8, + ACTIONS(4531), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560421,10 +560617,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4581), 20, + ACTIONS(4533), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -560442,11 +560638,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114024] = 3, + [114233] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 8, + ACTIONS(9789), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560455,10 +560651,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 20, + ACTIONS(9791), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -560476,11 +560672,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114061] = 3, + [114270] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7504), 8, + ACTIONS(4415), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560489,12 +560685,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7506), 20, + ACTIONS(4417), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -560510,46 +560706,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114098] = 4, - ACTIONS(10241), 1, - anon_sym_EQ, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 22, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [114137] = 3, + [114307] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 8, + ACTIONS(9606), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560558,10 +560719,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 20, + ACTIONS(9610), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -560579,11 +560740,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114174] = 3, + [114344] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(9809), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560592,9 +560753,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9811), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -560613,11 +560774,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114211] = 3, + [114381] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9811), 8, + ACTIONS(4419), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560626,7 +560787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9813), 20, + ACTIONS(4421), 20, aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -560647,11 +560808,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114248] = 3, + [114418] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4439), 8, + ACTIONS(4423), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560660,10 +560821,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4441), 20, + ACTIONS(4425), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -560681,11 +560842,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114285] = 3, + [114455] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9931), 8, + ACTIONS(4443), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560694,9 +560855,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9933), 20, + ACTIONS(4445), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -560715,11 +560876,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114322] = 3, + [114492] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9811), 8, + ACTIONS(9801), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560728,10 +560889,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9813), 20, + ACTIONS(9803), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -560749,11 +560910,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114359] = 3, + [114529] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7484), 8, + ACTIONS(4447), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560762,12 +560923,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(7486), 20, + ACTIONS(4449), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, - aux_sym_end_function_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -560783,54 +560944,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114396] = 4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10086), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [114435] = 4, - ACTIONS(10243), 1, + [114566] = 4, + ACTIONS(10242), 1, anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(8590), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 22, + ACTIONS(8588), 22, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PLUS, @@ -560853,45 +560979,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [114474] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9703), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [114511] = 3, + [114605] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4383), 8, + ACTIONS(9793), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560900,7 +560992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4385), 20, + ACTIONS(9795), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -560921,11 +561013,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114548] = 3, + [114642] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9913), 8, + ACTIONS(9805), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560934,10 +561026,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9915), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9807), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -560955,11 +561047,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114585] = 3, + [114679] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9685), 8, + ACTIONS(9809), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -560968,10 +561060,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9689), 20, + ACTIONS(9811), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -560989,11 +561081,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114622] = 3, + [114716] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4387), 8, + ACTIONS(9813), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561002,10 +561094,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4389), 20, + ACTIONS(9815), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -561023,11 +561115,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114659] = 3, + [114753] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4391), 8, + ACTIONS(9813), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561036,7 +561128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4393), 20, + ACTIONS(9815), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -561057,11 +561149,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114696] = 3, + [114790] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9703), 8, + ACTIONS(9817), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561070,10 +561162,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9707), 20, + ACTIONS(9819), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -561091,11 +561183,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114733] = 3, + [114827] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4395), 8, + ACTIONS(9821), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561104,10 +561196,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4397), 20, + ACTIONS(9823), 20, aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -561125,45 +561217,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114770] = 3, + [114864] = 4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4399), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4401), 20, - aux_sym_module_statement_token1, - aux_sym_end_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [114807] = 3, + ACTIONS(10204), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [114903] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9873), 8, + ACTIONS(9825), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561172,10 +561265,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9875), 20, + ACTIONS(9827), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -561193,11 +561286,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114844] = 3, + [114940] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9877), 8, + ACTIONS(4607), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561206,9 +561299,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9879), 20, + ACTIONS(4609), 20, + aux_sym_end_program_statement_token2, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -561227,11 +561320,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114881] = 3, + [114977] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9913), 8, + ACTIONS(9797), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561240,9 +561333,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9915), 20, + ACTIONS(9799), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -561261,11 +561354,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114918] = 3, + [115014] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9917), 8, + ACTIONS(9708), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561274,10 +561367,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9919), 20, + ACTIONS(9712), 20, aux_sym_module_statement_token1, - aux_sym_end_submodule_statement_token1, aux_sym_subroutine_statement_token1, + aux_sym_end_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -561295,11 +561388,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114955] = 3, + [115051] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4427), 8, + ACTIONS(9817), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561308,7 +561401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4429), 20, + ACTIONS(9819), 20, aux_sym_module_statement_token1, aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, @@ -561329,45 +561422,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [114992] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4457), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4459), 20, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_end_module_procedure_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [115029] = 3, + [115088] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9873), 8, + ACTIONS(9801), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561376,9 +561435,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9875), 20, - aux_sym_end_program_statement_token2, + ACTIONS(9803), 20, aux_sym_module_statement_token1, + aux_sym_end_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, @@ -561397,45 +561456,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [115066] = 3, + [115125] = 6, + ACTIONS(10220), 1, + anon_sym_COMMA, + ACTIONS(10245), 1, + anon_sym_SLASH, + STATE(7046), 1, + aux_sym_data_value_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9877), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(9879), 20, - aux_sym_end_program_statement_token2, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - aux_sym_include_statement_token1, - [115103] = 3, + ACTIONS(8590), 4, + anon_sym_STAR, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [115168] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4579), 8, + ACTIONS(4407), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -561444,10 +561506,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4581), 20, + ACTIONS(4409), 20, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, - aux_sym_end_subroutine_statement_token1, + aux_sym_end_module_procedure_statement_token1, aux_sym_function_statement_token1, aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, @@ -561465,66 +561527,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, aux_sym_include_statement_token1, - [115140] = 16, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(9180), 1, - aux_sym_derived_type_token1, - ACTIONS(10246), 1, - aux_sym_preproc_if_token2, + [115205] = 5, ACTIONS(10248), 1, - aux_sym_preproc_else_token1, - ACTIONS(10250), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10254), 1, - sym_preproc_comment, - STATE(3467), 1, - sym__intrinsic_type, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10252), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5080), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - STATE(7456), 3, - sym_preproc_else_in_derived_type, - sym_preproc_elif_in_derived_type, - sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - [115202] = 5, - ACTIONS(10256), 1, anon_sym_COMMA, - ACTIONS(10258), 1, + ACTIONS(10250), 1, anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 4, + ACTIONS(8590), 4, anon_sym_STAR, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -561546,53 +561562,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [115242] = 4, + [115245] = 16, + ACTIONS(9162), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(9166), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9178), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(10253), 1, + aux_sym_preproc_if_token2, + ACTIONS(10255), 1, + aux_sym_preproc_else_token1, + ACTIONS(10257), 1, + aux_sym_preproc_elif_token1, ACTIONS(10261), 1, - anon_sym_RPAREN, + sym_preproc_comment, + STATE(3457), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8394), 21, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_logical_expression_token4, - aux_sym_relational_expression_token1, - aux_sym_relational_expression_token2, - aux_sym_relational_expression_token3, - aux_sym_relational_expression_token4, - aux_sym_relational_expression_token5, - anon_sym_SLASH_EQ, - aux_sym_relational_expression_token6, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - [115280] = 4, + ACTIONS(10259), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5083), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + STATE(8140), 3, + sym_preproc_else_in_derived_type, + sym_preproc_elif_in_derived_type, + sym_preproc_elifdef_in_derived_type, + ACTIONS(9176), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + [115307] = 4, ACTIONS(10263), 1, - anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(8590), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -561614,21 +561642,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [115318] = 6, - ACTIONS(10256), 1, - anon_sym_COMMA, - ACTIONS(10258), 1, - anon_sym_SLASH, + [115345] = 4, ACTIONS(10265), 1, - anon_sym_STAR, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 3, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -561650,20 +561676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [115360] = 5, + [115383] = 4, ACTIONS(10267), 1, - anon_sym_COMMA, - ACTIONS(10269), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 4, + ACTIONS(8590), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -561685,19 +561710,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [115400] = 4, - ACTIONS(10272), 1, - anon_sym_RPAREN, + [115421] = 4, + ACTIONS(10269), 1, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(8590), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -561719,19 +561744,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [115438] = 4, - ACTIONS(10274), 1, + [115459] = 10, + ACTIONS(8832), 1, + anon_sym_LPAREN2, + ACTIONS(8926), 1, + anon_sym_LBRACK, + ACTIONS(10271), 1, + anon_sym_STAR, + STATE(4024), 1, + sym__argument_list, + STATE(5168), 1, + sym_character_length, + STATE(5171), 1, + sym_argument_list, + STATE(5205), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7446), 3, + aux_sym_preproc_elif_token1, anon_sym_EQ, + aux_sym__intrinsic_type_token4, + ACTIONS(7440), 17, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + [115509] = 4, + ACTIONS(10273), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(8590), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -561753,20 +561818,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [115476] = 5, - ACTIONS(10276), 1, + [115547] = 5, + ACTIONS(10275), 1, anon_sym_COMMA, - ACTIONS(10278), 1, + ACTIONS(10277), 1, anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 4, + ACTIONS(8590), 4, anon_sym_STAR, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -561788,45 +561853,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [115516] = 16, - ACTIONS(9160), 1, + [115587] = 16, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10281), 1, + ACTIONS(10280), 1, aux_sym_preproc_if_token2, - ACTIONS(10283), 1, + ACTIONS(10282), 1, sym_preproc_comment, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5091), 2, + STATE(5105), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(7812), 3, + STATE(7810), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -561834,59 +561899,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [115578] = 10, - ACTIONS(8828), 1, - anon_sym_LPAREN2, - ACTIONS(8970), 1, - anon_sym_LBRACK, - ACTIONS(10285), 1, - anon_sym_STAR, - STATE(4032), 1, - sym__argument_list, - STATE(5173), 1, - sym_character_length, - STATE(5174), 1, - sym_argument_list, - STATE(5201), 1, - sym_coarray_index, + [115649] = 4, + ACTIONS(10284), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7420), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - ACTIONS(7414), 17, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [115628] = 4, - ACTIONS(10287), 1, + ACTIONS(8590), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8588), 21, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_logical_expression_token4, + aux_sym_relational_expression_token1, + aux_sym_relational_expression_token2, + aux_sym_relational_expression_token3, + aux_sym_relational_expression_token4, + aux_sym_relational_expression_token5, + anon_sym_SLASH_EQ, + aux_sym_relational_expression_token6, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + [115687] = 5, + ACTIONS(10286), 1, anon_sym_COMMA, + ACTIONS(10288), 1, + anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, + ACTIONS(8590), 4, anon_sym_STAR, - anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -561908,19 +561968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [115666] = 4, - ACTIONS(10289), 1, - anon_sym_RPAREN, + [115727] = 6, + ACTIONS(10286), 1, + anon_sym_COMMA, + ACTIONS(10288), 1, + anon_sym_SLASH, + ACTIONS(10291), 1, + anon_sym_STAR, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8396), 5, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(8590), 3, anon_sym_GT, anon_sym_LT, anon_sym_DOT, - ACTIONS(8394), 21, + ACTIONS(8588), 21, anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, @@ -561942,43 +562004,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, anon_sym_LBRACK, - [115704] = 15, - ACTIONS(9160), 1, + [115769] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10291), 1, + ACTIONS(10293), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5156), 2, + STATE(5092), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(8354), 3, + STATE(7773), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -561986,87 +562048,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [115763] = 15, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(9180), 1, - aux_sym_derived_type_token1, - ACTIONS(10248), 1, - aux_sym_preproc_else_token1, - ACTIONS(10250), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10293), 1, - aux_sym_preproc_if_token2, - STATE(3467), 1, - sym__intrinsic_type, + [115828] = 4, + ACTIONS(10297), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5156), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - STATE(7904), 3, - sym_preproc_else_in_derived_type, - sym_preproc_elif_in_derived_type, - sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(10295), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(10299), 17, + aux_sym_module_procedure_statement_token1, + aux_sym_contains_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_end_type_statement_token1, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [115822] = 15, - ACTIONS(9160), 1, + aux_sym_derived_type_token1, + aux_sym_include_statement_token1, + [115865] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10291), 1, + ACTIONS(10301), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5099), 2, + STATE(5160), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(8354), 3, + STATE(7937), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -562074,13 +562125,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [115881] = 4, - ACTIONS(10297), 1, + [115924] = 4, + ACTIONS(10305), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10295), 8, + ACTIONS(10303), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562089,7 +562140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10299), 17, + ACTIONS(10307), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562107,13 +562158,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [115918] = 4, - ACTIONS(10303), 1, + [115961] = 4, + ACTIONS(10311), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10301), 8, + ACTIONS(10309), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562122,7 +562173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10305), 17, + ACTIONS(10313), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562140,13 +562191,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [115955] = 4, - ACTIONS(10309), 1, + [115998] = 15, + ACTIONS(9162), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(9166), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9178), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(10255), 1, + aux_sym_preproc_else_token1, + ACTIONS(10257), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10315), 1, + aux_sym_preproc_if_token2, + STATE(3457), 1, + sym__intrinsic_type, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10259), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5160), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + STATE(7797), 3, + sym_preproc_else_in_derived_type, + sym_preproc_elif_in_derived_type, + sym_preproc_elifdef_in_derived_type, + ACTIONS(9176), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + [116057] = 4, + ACTIONS(10319), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10307), 8, + ACTIONS(10317), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562155,7 +562250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10311), 17, + ACTIONS(10321), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562173,43 +562268,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [115992] = 15, - ACTIONS(9160), 1, + [116094] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10313), 1, + ACTIONS(10323), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5156), 2, + STATE(5160), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(8247), 3, + STATE(7604), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -562217,43 +562312,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [116051] = 15, - ACTIONS(9160), 1, + [116153] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10315), 1, + ACTIONS(10323), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5156), 2, + STATE(5086), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(7966), 3, + STATE(7604), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -562261,43 +562356,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [116110] = 15, - ACTIONS(9160), 1, + [116212] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10317), 1, + ACTIONS(10325), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5081), 2, + STATE(5088), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(7977), 3, + STATE(7807), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -562305,13 +562400,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [116169] = 4, - ACTIONS(10321), 1, + [116271] = 4, + ACTIONS(10329), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10319), 8, + ACTIONS(10327), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562320,7 +562415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10323), 17, + ACTIONS(10331), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562338,87 +562433,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [116206] = 15, - ACTIONS(9160), 1, + [116308] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(9180), 1, - aux_sym_derived_type_token1, - ACTIONS(10248), 1, - aux_sym_preproc_else_token1, - ACTIONS(10250), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10325), 1, - aux_sym_preproc_if_token2, - STATE(3467), 1, - sym__intrinsic_type, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10252), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5086), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - STATE(7808), 3, - sym_preproc_else_in_derived_type, - sym_preproc_elif_in_derived_type, - sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - [116265] = 15, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, aux_sym__intrinsic_type_token4, - ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10327), 1, + ACTIONS(10333), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5156), 2, + STATE(5160), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(8004), 3, + STATE(7649), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -562426,13 +562477,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [116324] = 4, - ACTIONS(10331), 1, + [116367] = 4, + ACTIONS(10337), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10329), 8, + ACTIONS(10335), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562441,7 +562492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10333), 17, + ACTIONS(10339), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562459,57 +562510,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [116361] = 15, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(9180), 1, - aux_sym_derived_type_token1, - ACTIONS(10248), 1, - aux_sym_preproc_else_token1, - ACTIONS(10250), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10335), 1, - aux_sym_preproc_if_token2, - STATE(3467), 1, - sym__intrinsic_type, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10252), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5156), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - STATE(8287), 3, - sym_preproc_else_in_derived_type, - sym_preproc_elif_in_derived_type, - sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - [116420] = 4, - ACTIONS(10339), 1, + [116404] = 4, + ACTIONS(10343), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10337), 8, + ACTIONS(10341), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562518,7 +562525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10341), 17, + ACTIONS(10345), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562536,57 +562543,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [116457] = 15, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(9180), 1, - aux_sym_derived_type_token1, - ACTIONS(10248), 1, - aux_sym_preproc_else_token1, - ACTIONS(10250), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10335), 1, - aux_sym_preproc_if_token2, - STATE(3467), 1, - sym__intrinsic_type, + [116441] = 4, + ACTIONS(10349), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5087), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - STATE(8287), 3, - sym_preproc_else_in_derived_type, - sym_preproc_elif_in_derived_type, - sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(10347), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(10351), 17, + aux_sym_module_procedure_statement_token1, + aux_sym_contains_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_end_type_statement_token1, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [116516] = 4, - ACTIONS(10345), 1, + aux_sym_derived_type_token1, + aux_sym_include_statement_token1, + [116478] = 4, + ACTIONS(10355), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10343), 8, + ACTIONS(10353), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562595,7 +562591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10347), 17, + ACTIONS(10357), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562613,43 +562609,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [116553] = 15, - ACTIONS(9160), 1, + [116515] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10327), 1, + ACTIONS(10359), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5103), 2, + STATE(5160), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(8004), 3, + STATE(7793), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -562657,76 +562653,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [116612] = 4, - ACTIONS(10351), 1, - sym_preproc_comment, + [116574] = 15, + ACTIONS(9162), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(9166), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9178), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(10255), 1, + aux_sym_preproc_else_token1, + ACTIONS(10257), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10361), 1, + aux_sym_preproc_if_token2, + STATE(3457), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10349), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10353), 17, - aux_sym_module_procedure_statement_token1, - aux_sym_contains_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_end_type_statement_token1, + ACTIONS(10259), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5160), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + STATE(7799), 3, + sym_preproc_else_in_derived_type, + sym_preproc_elif_in_derived_type, + sym_preproc_elifdef_in_derived_type, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_include_statement_token1, - [116649] = 15, - ACTIONS(9160), 1, + [116633] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10355), 1, + ACTIONS(10363), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5156), 2, + STATE(5097), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(7937), 3, + STATE(7834), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -562734,13 +562741,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [116708] = 4, - ACTIONS(10359), 1, + [116692] = 4, + ACTIONS(10367), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10357), 8, + ACTIONS(10365), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562749,7 +562756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10361), 17, + ACTIONS(10369), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562767,13 +562774,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [116745] = 4, - ACTIONS(10365), 1, + [116729] = 4, + ACTIONS(10373), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10363), 8, + ACTIONS(10371), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562782,7 +562789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10367), 17, + ACTIONS(10375), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562800,76 +562807,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [116782] = 4, - ACTIONS(10371), 1, - sym_preproc_comment, + [116766] = 15, + ACTIONS(9162), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(9166), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9178), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(10255), 1, + aux_sym_preproc_else_token1, + ACTIONS(10257), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10301), 1, + aux_sym_preproc_if_token2, + STATE(3457), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10369), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10373), 17, - aux_sym_module_procedure_statement_token1, - aux_sym_contains_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_end_type_statement_token1, + ACTIONS(10259), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5103), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + STATE(7937), 3, + sym_preproc_else_in_derived_type, + sym_preproc_elif_in_derived_type, + sym_preproc_elifdef_in_derived_type, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_include_statement_token1, - [116819] = 15, - ACTIONS(9160), 1, + [116825] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10375), 1, + ACTIONS(10377), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5156), 2, + STATE(5160), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(7925), 3, + STATE(8066), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -562877,43 +562895,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [116878] = 15, - ACTIONS(9160), 1, + [116884] = 15, + ACTIONS(9162), 1, aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, + ACTIONS(9166), 1, aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token4, ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - ACTIONS(10248), 1, + ACTIONS(10255), 1, aux_sym_preproc_else_token1, - ACTIONS(10250), 1, + ACTIONS(10257), 1, aux_sym_preproc_elif_token1, - ACTIONS(10377), 1, + ACTIONS(10379), 1, aux_sym_preproc_if_token2, - STATE(3467), 1, + STATE(3457), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10252), 2, + ACTIONS(10259), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5093), 2, + STATE(5098), 2, sym_variable_declaration, aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, + STATE(3380), 3, sym_procedure_declaration, sym_intrinsic_type, sym_derived_type, - STATE(8331), 3, + STATE(7897), 3, sym_preproc_else_in_derived_type, sym_preproc_elif_in_derived_type, sym_preproc_elifdef_in_derived_type, - ACTIONS(9174), 7, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -562921,44 +562939,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [116937] = 4, - ACTIONS(10381), 1, - sym_preproc_comment, + [116943] = 15, + ACTIONS(9162), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(9166), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9178), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(10255), 1, + aux_sym_preproc_else_token1, + ACTIONS(10257), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10379), 1, + aux_sym_preproc_if_token2, + STATE(3457), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10379), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10383), 17, - aux_sym_module_procedure_statement_token1, - aux_sym_contains_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_end_type_statement_token1, + ACTIONS(10259), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(5160), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + STATE(7897), 3, + sym_preproc_else_in_derived_type, + sym_preproc_elif_in_derived_type, + sym_preproc_elifdef_in_derived_type, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_include_statement_token1, - [116974] = 3, + [117002] = 4, + ACTIONS(10383), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10385), 8, + ACTIONS(10381), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562967,7 +562998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10387), 17, + ACTIONS(10385), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -562985,11 +563016,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117008] = 3, + [117039] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5065), 8, + ACTIONS(4990), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -562998,7 +563029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(5067), 17, + ACTIONS(4992), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563016,11 +563047,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117042] = 3, + [117073] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5033), 8, + ACTIONS(10387), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563029,7 +563060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(5035), 17, + ACTIONS(10389), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563047,11 +563078,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117076] = 3, + [117107] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10389), 8, + ACTIONS(4407), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563060,7 +563091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10391), 17, + ACTIONS(4409), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563078,11 +563109,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117110] = 3, + [117141] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10393), 8, + ACTIONS(4411), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563091,7 +563122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10395), 17, + ACTIONS(4413), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563109,11 +563140,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117144] = 3, + [117175] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5069), 8, + ACTIONS(10391), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563122,7 +563153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(5071), 17, + ACTIONS(10393), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563140,42 +563171,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117178] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4579), 8, + [117209] = 18, + ACTIONS(4665), 1, + sym__integer_literal, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, + ACTIONS(10399), 1, aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, + ACTIONS(10403), 1, sym_preproc_directive, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(4581), 17, - aux_sym_module_procedure_statement_token1, - aux_sym_contains_statement_token1, + ACTIONS(10407), 1, aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_end_type_statement_token1, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, + ACTIONS(10409), 1, aux_sym_derived_type_token1, - aux_sym_include_statement_token1, - [117212] = 3, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + ACTIONS(10413), 1, + aux_sym_type_statement_token2, + ACTIONS(10415), 1, + aux_sym_type_statement_token3, + ACTIONS(10417), 1, + aux_sym__class_default_token1, + STATE(3653), 1, + sym__class_default, + STATE(6779), 1, + sym_statement_label, + STATE(7120), 1, + sym_end_select_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10401), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5159), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_type, + sym_preproc_ifdef_in_select_type, + sym_type_statement, + aux_sym_select_type_statement_repeat1, + [117273] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10397), 8, + ACTIONS(10419), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563184,7 +563230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10399), 17, + ACTIONS(10421), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563202,41 +563248,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117246] = 18, - ACTIONS(4687), 1, + [117307] = 18, + ACTIONS(4665), 1, sym__integer_literal, - ACTIONS(10401), 1, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10405), 1, + ACTIONS(10399), 1, aux_sym_preproc_if_token1, - ACTIONS(10409), 1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10411), 1, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - ACTIONS(10413), 1, + ACTIONS(10407), 1, aux_sym_implicit_statement_token3, - ACTIONS(10415), 1, + ACTIONS(10409), 1, aux_sym_derived_type_token1, - ACTIONS(10417), 1, + ACTIONS(10411), 1, aux_sym_end_select_statement_token1, - ACTIONS(10419), 1, + ACTIONS(10413), 1, aux_sym_type_statement_token2, - ACTIONS(10421), 1, + ACTIONS(10415), 1, aux_sym_type_statement_token3, - ACTIONS(10423), 1, + ACTIONS(10417), 1, aux_sym__class_default_token1, - STATE(3632), 1, + STATE(3653), 1, sym__class_default, - STATE(7062), 1, + STATE(6898), 1, sym_statement_label, - STATE(7449), 1, + STATE(7173), 1, sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10407), 2, + ACTIONS(10401), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, STATE(5159), 8, @@ -563248,11 +563294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_type, sym_type_statement, aux_sym_select_type_statement_repeat1, - [117310] = 3, + [117371] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10425), 8, + ACTIONS(10309), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563261,7 +563307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10427), 17, + ACTIONS(10313), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563279,11 +563325,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117344] = 3, + [117405] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10429), 8, + ACTIONS(10423), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563292,7 +563338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10431), 17, + ACTIONS(10425), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563310,11 +563356,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117378] = 3, + [117439] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10433), 8, + ACTIONS(9257), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563323,7 +563369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10435), 17, + ACTIONS(9262), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563341,11 +563387,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117412] = 3, + [117473] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10437), 8, + ACTIONS(10427), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563354,7 +563400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10439), 17, + ACTIONS(10429), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563372,11 +563418,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117446] = 3, + [117507] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10441), 8, + ACTIONS(10431), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563385,7 +563431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10443), 17, + ACTIONS(10433), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563403,73 +563449,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117480] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(5041), 8, + [117541] = 18, + ACTIONS(4665), 1, + sym__integer_literal, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, + ACTIONS(10399), 1, aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, + ACTIONS(10403), 1, sym_preproc_directive, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(5043), 17, - aux_sym_module_procedure_statement_token1, - aux_sym_contains_statement_token1, + ACTIONS(10407), 1, aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_end_type_statement_token1, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, + ACTIONS(10409), 1, aux_sym_derived_type_token1, - aux_sym_include_statement_token1, - [117514] = 3, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + ACTIONS(10413), 1, + aux_sym_type_statement_token2, + ACTIONS(10415), 1, + aux_sym_type_statement_token3, + ACTIONS(10417), 1, + aux_sym__class_default_token1, + STATE(3653), 1, + sym__class_default, + STATE(7040), 1, + sym_statement_label, + STATE(7422), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10445), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(10401), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10447), 17, - aux_sym_module_procedure_statement_token1, - aux_sym_contains_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_end_type_statement_token1, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_include_statement_token1, - [117548] = 3, + STATE(5159), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_type, + sym_preproc_ifdef_in_select_type, + sym_type_statement, + aux_sym_select_type_statement_repeat1, + [117605] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5045), 8, + ACTIONS(10435), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563478,7 +563508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(5047), 17, + ACTIONS(10437), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563496,11 +563526,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117582] = 3, + [117639] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4583), 8, + ACTIONS(10303), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563509,7 +563539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4585), 17, + ACTIONS(10307), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563527,11 +563557,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117616] = 3, + [117673] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4972), 8, + ACTIONS(4391), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563540,7 +563570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4974), 17, + ACTIONS(4393), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563558,73 +563588,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117650] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10449), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10451), 17, - aux_sym_module_procedure_statement_token1, - aux_sym_contains_statement_token1, + [117707] = 14, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_end_type_statement_token1, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, + ACTIONS(7918), 1, aux_sym_derived_type_token1, - aux_sym_include_statement_token1, - [117684] = 3, + ACTIONS(10439), 1, + aux_sym_module_statement_token1, + ACTIONS(10441), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(10443), 1, + aux_sym_function_statement_token1, + STATE(5157), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10453), 8, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10455), 17, - aux_sym_module_procedure_statement_token1, - aux_sym_contains_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_derived_type_definition_token1, - aux_sym_end_type_statement_token1, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5128), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 4, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_include_statement_token1, - [117718] = 3, + [117763] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10369), 8, + ACTIONS(4415), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563633,7 +563643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10373), 17, + ACTIONS(4417), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563651,11 +563661,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117752] = 3, + [117797] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4559), 8, + ACTIONS(10445), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563664,7 +563674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4561), 17, + ACTIONS(10447), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563682,81 +563692,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117786] = 14, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(10457), 1, - aux_sym_module_statement_token1, - ACTIONS(10459), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(10461), 1, - aux_sym_function_statement_token1, - STATE(5157), 1, - sym__intrinsic_type, + [117831] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5130), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 4, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(10449), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(10451), 17, + aux_sym_module_procedure_statement_token1, + aux_sym_contains_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_end_type_statement_token1, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [117842] = 12, - ACTIONS(10468), 1, + aux_sym_derived_type_token1, + aux_sym_include_statement_token1, + [117865] = 12, + ACTIONS(10458), 1, aux_sym_procedure_attributes_token1, - ACTIONS(10471), 1, + ACTIONS(10461), 1, aux_sym_implicit_statement_token3, - ACTIONS(10477), 1, + ACTIONS(10467), 1, aux_sym__intrinsic_type_token4, - ACTIONS(10480), 1, + ACTIONS(10470), 1, aux_sym__intrinsic_type_token8, - ACTIONS(10483), 1, + ACTIONS(10473), 1, aux_sym_derived_type_token1, STATE(5157), 1, sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10466), 2, + ACTIONS(10456), 2, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, - STATE(5318), 2, + STATE(5329), 2, sym_intrinsic_type, sym_derived_type, - STATE(5130), 3, + STATE(5128), 3, aux_sym__callable_interface_qualifers, sym_procedure_attributes, sym_procedure_qualifier, - ACTIONS(10463), 5, + ACTIONS(10453), 5, aux_sym_module_statement_token1, aux_sym_procedure_qualifier_token1, aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - ACTIONS(10474), 7, + ACTIONS(10464), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -563764,11 +563763,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [117894] = 3, + [117917] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10486), 8, + ACTIONS(10476), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563777,7 +563776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10488), 17, + ACTIONS(10478), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563795,11 +563794,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117928] = 3, + [117951] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10349), 8, + ACTIONS(10480), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563808,7 +563807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10353), 17, + ACTIONS(10482), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563826,11 +563825,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117962] = 3, + [117985] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10363), 8, + ACTIONS(10484), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563839,7 +563838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10367), 17, + ACTIONS(10486), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563857,11 +563856,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [117996] = 3, + [118019] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10490), 8, + ACTIONS(10365), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563870,7 +563869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10492), 17, + ACTIONS(10369), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563888,11 +563887,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118030] = 3, + [118053] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10494), 8, + ACTIONS(4395), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563901,7 +563900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10496), 17, + ACTIONS(4397), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563919,11 +563918,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118064] = 3, + [118087] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10498), 8, + ACTIONS(4399), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563932,7 +563931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10500), 17, + ACTIONS(4401), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563950,11 +563949,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118098] = 3, + [118121] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5029), 8, + ACTIONS(5002), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -563963,7 +563962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(5031), 17, + ACTIONS(5004), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -563981,98 +563980,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118132] = 13, - ACTIONS(7914), 1, - aux_sym_procedure_attributes_token1, - ACTIONS(7916), 1, - aux_sym_implicit_statement_token3, - ACTIONS(7920), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(7922), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(7924), 1, - aux_sym_derived_type_token1, - ACTIONS(10459), 1, - aux_sym_subroutine_statement_token1, - ACTIONS(10461), 1, - aux_sym_function_statement_token1, - STATE(5157), 1, - sym__intrinsic_type, + [118155] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5318), 2, - sym_intrinsic_type, - sym_derived_type, - STATE(5130), 3, - aux_sym__callable_interface_qualifers, - sym_procedure_attributes, - sym_procedure_qualifier, - ACTIONS(7926), 5, - aux_sym_module_statement_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - ACTIONS(7918), 7, + ACTIONS(4998), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(5000), 17, + aux_sym_module_procedure_statement_token1, + aux_sym_contains_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_end_type_statement_token1, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [118186] = 18, - ACTIONS(4687), 1, - sym__integer_literal, - ACTIONS(10401), 1, + aux_sym_derived_type_token1, + aux_sym_include_statement_token1, + [118189] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10488), 8, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, aux_sym_preproc_def_token1, - ACTIONS(10405), 1, aux_sym_preproc_if_token1, - ACTIONS(10409), 1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, sym_preproc_directive, - ACTIONS(10411), 1, aux_sym_end_program_statement_token1, - ACTIONS(10413), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(10490), 17, + aux_sym_module_procedure_statement_token1, + aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, - ACTIONS(10415), 1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_end_type_statement_token1, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - ACTIONS(10419), 1, - aux_sym_type_statement_token2, - ACTIONS(10421), 1, - aux_sym_type_statement_token3, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - STATE(3632), 1, - sym__class_default, - STATE(6737), 1, - sym_statement_label, - STATE(7174), 1, - sym_end_select_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10407), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5159), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_type, - sym_preproc_ifdef_in_select_type, - sym_type_statement, - aux_sym_select_type_statement_repeat1, - [118250] = 3, + aux_sym_include_statement_token1, + [118223] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4567), 8, + ACTIONS(10492), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564081,7 +564055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4569), 17, + ACTIONS(10494), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564099,11 +564073,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118284] = 3, + [118257] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10295), 8, + ACTIONS(10347), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564112,7 +564086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10299), 17, + ACTIONS(10351), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564130,57 +564104,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118318] = 18, - ACTIONS(4687), 1, - sym__integer_literal, - ACTIONS(10401), 1, + [118291] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4403), 8, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, aux_sym_preproc_def_token1, - ACTIONS(10405), 1, aux_sym_preproc_if_token1, - ACTIONS(10409), 1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, sym_preproc_directive, - ACTIONS(10411), 1, aux_sym_end_program_statement_token1, - ACTIONS(10413), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(4405), 17, + aux_sym_module_procedure_statement_token1, + aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, - ACTIONS(10415), 1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_end_type_statement_token1, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - ACTIONS(10419), 1, - aux_sym_type_statement_token2, - ACTIONS(10421), 1, - aux_sym_type_statement_token3, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - STATE(3632), 1, - sym__class_default, - STATE(6999), 1, - sym_statement_label, - STATE(7395), 1, - sym_end_select_statement, + aux_sym_include_statement_token1, + [118325] = 13, + ACTIONS(7908), 1, + aux_sym_procedure_attributes_token1, + ACTIONS(7910), 1, + aux_sym_implicit_statement_token3, + ACTIONS(7914), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(7916), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(7918), 1, + aux_sym_derived_type_token1, + ACTIONS(10441), 1, + aux_sym_subroutine_statement_token1, + ACTIONS(10443), 1, + aux_sym_function_statement_token1, + STATE(5157), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10407), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5159), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_type, - sym_preproc_ifdef_in_select_type, - sym_type_statement, - aux_sym_select_type_statement_repeat1, - [118382] = 3, + STATE(5329), 2, + sym_intrinsic_type, + sym_derived_type, + STATE(5128), 3, + aux_sym__callable_interface_qualifers, + sym_procedure_attributes, + sym_procedure_qualifier, + ACTIONS(7920), 5, + aux_sym_module_statement_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + ACTIONS(7912), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + [118379] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10502), 8, + ACTIONS(10496), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564189,7 +564189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10504), 17, + ACTIONS(10498), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564207,11 +564207,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118416] = 3, + [118413] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10506), 8, + ACTIONS(10500), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564220,7 +564220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10508), 17, + ACTIONS(10502), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564238,57 +564238,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118450] = 18, - ACTIONS(4687), 1, - sym__integer_literal, - ACTIONS(10401), 1, - aux_sym_preproc_include_token1, - ACTIONS(10403), 1, - aux_sym_preproc_def_token1, - ACTIONS(10405), 1, - aux_sym_preproc_if_token1, - ACTIONS(10409), 1, - sym_preproc_directive, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10413), 1, - aux_sym_implicit_statement_token3, - ACTIONS(10415), 1, - aux_sym_derived_type_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - ACTIONS(10419), 1, - aux_sym_type_statement_token2, - ACTIONS(10421), 1, - aux_sym_type_statement_token3, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - STATE(3632), 1, - sym__class_default, - STATE(6730), 1, - sym_statement_label, - STATE(7176), 1, - sym_end_select_statement, + [118447] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10407), 2, + ACTIONS(10504), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5159), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_type, - sym_preproc_ifdef_in_select_type, - sym_type_statement, - aux_sym_select_type_statement_repeat1, - [118514] = 3, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(10506), 17, + aux_sym_module_procedure_statement_token1, + aux_sym_contains_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_end_type_statement_token1, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_include_statement_token1, + [118481] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4571), 8, + ACTIONS(10508), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564297,7 +564282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4573), 17, + ACTIONS(10510), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564315,11 +564300,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118548] = 3, + [118515] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10510), 8, + ACTIONS(5006), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564328,7 +564313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10512), 17, + ACTIONS(5008), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564346,11 +564331,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118582] = 3, + [118549] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4587), 8, + ACTIONS(4994), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564359,7 +564344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4589), 17, + ACTIONS(4996), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564377,11 +564362,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118616] = 3, + [118583] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4575), 8, + ACTIONS(10512), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564390,7 +564375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(4577), 17, + ACTIONS(10514), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564408,11 +564393,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118650] = 3, + [118617] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10514), 8, + ACTIONS(10516), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564421,7 +564406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10516), 17, + ACTIONS(10518), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564439,11 +564424,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118684] = 3, + [118651] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9255), 8, + ACTIONS(5063), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564452,7 +564437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(9260), 17, + ACTIONS(5065), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564470,11 +564455,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118718] = 3, + [118685] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10518), 8, + ACTIONS(4982), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564483,7 +564468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10520), 17, + ACTIONS(4984), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564501,11 +564486,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118752] = 3, + [118719] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10522), 8, + ACTIONS(10520), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564514,7 +564499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10524), 17, + ACTIONS(10522), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564532,11 +564517,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118786] = 3, + [118753] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5053), 8, + ACTIONS(10524), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564545,7 +564530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(5055), 17, + ACTIONS(10526), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564563,11 +564548,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118820] = 3, + [118787] = 18, + ACTIONS(4665), 1, + sym__integer_literal, + ACTIONS(10395), 1, + aux_sym_preproc_include_token1, + ACTIONS(10397), 1, + aux_sym_preproc_def_token1, + ACTIONS(10399), 1, + aux_sym_preproc_if_token1, + ACTIONS(10403), 1, + sym_preproc_directive, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10407), 1, + aux_sym_implicit_statement_token3, + ACTIONS(10409), 1, + aux_sym_derived_type_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + ACTIONS(10413), 1, + aux_sym_type_statement_token2, + ACTIONS(10415), 1, + aux_sym_type_statement_token3, + ACTIONS(10417), 1, + aux_sym__class_default_token1, + STATE(3653), 1, + sym__class_default, + STATE(6441), 1, + sym_statement_label, + STATE(7095), 1, + sym_end_select_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10401), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5159), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_type, + sym_preproc_ifdef_in_select_type, + sym_type_statement, + aux_sym_select_type_statement_repeat1, + [118851] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10526), 8, + ACTIONS(4986), 8, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -564576,7 +564607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, aux_sym_end_program_statement_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10528), 17, + ACTIONS(4988), 17, aux_sym_module_procedure_statement_token1, aux_sym_contains_statement_token1, aux_sym_implicit_statement_token3, @@ -564594,54 +564625,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, aux_sym_include_statement_token1, - [118854] = 12, - ACTIONS(10532), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10534), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(10537), 1, - aux_sym_implicit_statement_token3, - ACTIONS(10543), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(10546), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(10549), 1, - aux_sym_derived_type_token1, - STATE(3467), 1, - sym__intrinsic_type, + [118885] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5156), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - ACTIONS(10530), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(10540), 7, + ACTIONS(10528), 8, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(10530), 17, + aux_sym_module_procedure_statement_token1, + aux_sym_contains_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_derived_type_definition_token1, + aux_sym_end_type_statement_token1, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [118904] = 7, + aux_sym_derived_type_token1, + aux_sym_include_statement_token1, + [118919] = 7, ACTIONS(7126), 1, aux_sym__intrinsic_type_token4, - ACTIONS(8828), 1, + ACTIONS(8832), 1, anon_sym_LPAREN2, - ACTIONS(10552), 1, + ACTIONS(10532), 1, anon_sym_STAR, - STATE(5228), 1, + STATE(5286), 1, sym_kind, - STATE(5229), 1, + STATE(5291), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, @@ -564665,19 +564689,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [118944] = 5, - ACTIONS(10554), 1, + [118959] = 5, + ACTIONS(10534), 1, anon_sym_LPAREN2, - ACTIONS(10556), 1, + ACTIONS(10536), 1, aux_sym_kind_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7624), 3, + ACTIONS(7606), 3, aux_sym_preproc_elif_token1, anon_sym_EQ, aux_sym__intrinsic_type_token4, - ACTIONS(7620), 18, + ACTIONS(7602), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -564696,36 +564720,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, anon_sym_LBRACK, - [118980] = 15, - ACTIONS(10558), 1, + [118995] = 15, + ACTIONS(10538), 1, aux_sym_preproc_include_token1, - ACTIONS(10561), 1, + ACTIONS(10541), 1, aux_sym_preproc_def_token1, - ACTIONS(10564), 1, + ACTIONS(10544), 1, aux_sym_preproc_if_token1, - ACTIONS(10570), 1, + ACTIONS(10550), 1, sym_preproc_directive, - ACTIONS(10573), 1, + ACTIONS(10553), 1, aux_sym_end_program_statement_token1, - ACTIONS(10575), 1, + ACTIONS(10555), 1, aux_sym_implicit_statement_token3, - ACTIONS(10578), 1, + ACTIONS(10558), 1, aux_sym_derived_type_token1, - ACTIONS(10583), 1, + ACTIONS(10563), 1, aux_sym_type_statement_token2, - ACTIONS(10586), 1, + ACTIONS(10566), 1, aux_sym_type_statement_token3, - ACTIONS(10589), 1, + ACTIONS(10569), 1, aux_sym__class_default_token1, - STATE(3632), 1, + STATE(3653), 1, sym__class_default, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10567), 2, + ACTIONS(10547), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(10581), 2, + ACTIONS(10561), 2, sym__integer_literal, aux_sym_end_select_statement_token1, STATE(5159), 8, @@ -564737,48 +564761,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_type, sym_type_statement, aux_sym_select_type_statement_repeat1, - [119036] = 4, - ACTIONS(10592), 1, - anon_sym_LPAREN2, + [119051] = 12, + ACTIONS(10574), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10576), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(10579), 1, + aux_sym_implicit_statement_token3, + ACTIONS(10585), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(10588), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(10591), 1, + aux_sym_derived_type_token1, + STATE(3457), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7652), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - ACTIONS(7648), 18, - anon_sym_COMMA, + STATE(5160), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + ACTIONS(10572), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, + ACTIONS(10582), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_LBRACK, - [119069] = 5, - ACTIONS(8970), 1, - anon_sym_LBRACK, - STATE(5201), 1, - sym_coarray_index, + [119101] = 4, + ACTIONS(10594), 1, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7420), 3, + ACTIONS(7652), 3, aux_sym_preproc_elif_token1, anon_sym_EQ, aux_sym__intrinsic_type_token4, - ACTIONS(7414), 17, + ACTIONS(7648), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -564796,15 +564827,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [119104] = 3, + anon_sym_LBRACK, + [119134] = 5, + ACTIONS(8926), 1, + anon_sym_LBRACK, + STATE(5205), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7678), 3, + ACTIONS(7446), 3, aux_sym_preproc_elif_token1, anon_sym_EQ, aux_sym__intrinsic_type_token4, - ACTIONS(7676), 18, + ACTIONS(7440), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -564822,23 +564858,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - anon_sym_LBRACK, - [119134] = 5, + [119169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10594), 1, - anon_sym__, - STATE(5212), 1, - sym__kind, - ACTIONS(5502), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(5504), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10596), 1, + anon_sym_LF, + ACTIONS(10598), 1, + anon_sym_LPAREN2, + STATE(5283), 1, + sym_preproc_argument_list, + ACTIONS(10600), 19, + sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -564846,23 +564876,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [119168] = 5, + [119203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, - anon_sym_LF, - ACTIONS(10596), 1, - anon_sym__, - STATE(5213), 1, - sym__kind, - ACTIONS(5502), 19, - sym_preproc_comment, + ACTIONS(10602), 1, + anon_sym_LPAREN2, + STATE(5271), 1, + sym_preproc_argument_list, + ACTIONS(10600), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10596), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -564870,58 +564910,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [119202] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7690), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - ACTIONS(7688), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - anon_sym_LBRACK, - [119232] = 5, + [119237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10600), 1, - anon_sym_LPAREN2, - STATE(5231), 1, - sym_preproc_argument_list, - ACTIONS(10602), 5, + ACTIONS(10604), 1, + anon_sym__, + STATE(5275), 1, + sym__kind, + ACTIONS(5476), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(10598), 15, + ACTIONS(5478), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -564937,27 +564945,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [119266] = 7, - ACTIONS(10604), 1, - anon_sym_COMMA, - ACTIONS(10610), 1, - anon_sym_EQ, - ACTIONS(10612), 1, - anon_sym_EQ_GT, - STATE(5317), 1, - aux_sym__declaration_targets_repeat1, + [119271] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10608), 2, + ACTIONS(7676), 3, aux_sym_preproc_elif_token1, + anon_sym_EQ, aux_sym__intrinsic_type_token4, - ACTIONS(10606), 15, + ACTIONS(7674), 18, + anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -564968,19 +564971,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [119304] = 3, - ACTIONS(5806), 1, - aux_sym__intrinsic_type_token4, + anon_sym_LBRACK, + [119301] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5798), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, + ACTIONS(7680), 3, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + ACTIONS(7678), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -564991,23 +564998,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [119334] = 3, - ACTIONS(7154), 1, - aux_sym__intrinsic_type_token4, + anon_sym_LBRACK, + [119331] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7152), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, + ACTIONS(7702), 3, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + ACTIONS(7700), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -565018,17 +565025,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [119364] = 3, - ACTIONS(7162), 1, + anon_sym_LBRACK, + [119361] = 3, + ACTIONS(5792), 1, aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7160), 20, + ACTIONS(5784), 20, anon_sym_LPAREN2, anon_sym_STAR, aux_sym_module_statement_token1, @@ -565049,16 +565053,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [119394] = 5, + [119391] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10598), 1, + ACTIONS(5478), 1, anon_sym_LF, - ACTIONS(10614), 1, - anon_sym_LPAREN2, - STATE(5238), 1, - sym_preproc_argument_list, - ACTIONS(10602), 19, + ACTIONS(10606), 1, + anon_sym__, + STATE(5316), 1, + sym__kind, + ACTIONS(5476), 19, sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, @@ -565078,13 +565082,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [119428] = 3, - ACTIONS(7138), 1, + [119425] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7690), 3, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + aux_sym__intrinsic_type_token4, + ACTIONS(7688), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + anon_sym_LBRACK, + [119455] = 3, + ACTIONS(7170), 1, aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7136), 20, + ACTIONS(7168), 20, anon_sym_LPAREN2, anon_sym_STAR, aux_sym_module_statement_token1, @@ -565105,22 +565136,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [119458] = 3, + [119485] = 3, + ACTIONS(7134), 1, + aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7660), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - ACTIONS(7658), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, + ACTIONS(7132), 20, + anon_sym_LPAREN2, + anon_sym_STAR, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -565131,23 +565159,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - anon_sym_LBRACK, - [119488] = 3, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [119515] = 7, + ACTIONS(10608), 1, + anon_sym_COMMA, + ACTIONS(10614), 1, + anon_sym_EQ, + ACTIONS(10616), 1, + anon_sym_EQ_GT, + STATE(5302), 1, + aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7668), 3, + ACTIONS(10612), 2, aux_sym_preproc_elif_token1, - anon_sym_EQ, aux_sym__intrinsic_type_token4, - ACTIONS(7666), 18, - anon_sym_COMMA, + ACTIONS(10610), 15, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -565158,59 +565194,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - anon_sym_LBRACK, - [119518] = 11, - ACTIONS(10616), 1, - aux_sym_preproc_if_token1, - ACTIONS(10620), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10622), 1, - aux_sym_module_statement_token1, - ACTIONS(10624), 1, - aux_sym_private_statement_token1, - ACTIONS(10626), 1, - aux_sym_public_statement_token1, - ACTIONS(10628), 1, - aux_sym_end_type_statement_token1, - STATE(3279), 1, - sym__procedure_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10618), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(5178), 6, - sym_preproc_if_in_bound_procedures, - sym_preproc_ifdef_in_bound_procedures, - sym_private_statement, - sym_public_statement, - sym_procedure_statement, - aux_sym_derived_type_procedures_repeat1, - [119563] = 5, - ACTIONS(10610), 1, - anon_sym_EQ, - ACTIONS(10612), 1, - anon_sym_EQ_GT, + [119553] = 3, + ACTIONS(7162), 1, + aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10632), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10630), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, + ACTIONS(7160), 20, + anon_sym_LPAREN2, + anon_sym_STAR, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -565221,31 +565217,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [119596] = 13, - ACTIONS(10401), 1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [119583] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10618), 1, + anon_sym_COMMA, + ACTIONS(10620), 1, + anon_sym_RPAREN, + ACTIONS(10626), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10628), 1, + anon_sym_AMP_AMP, + ACTIONS(10630), 1, + anon_sym_PIPE, + ACTIONS(10632), 1, + anon_sym_CARET, + ACTIONS(10634), 1, + anon_sym_AMP, + ACTIONS(10636), 1, + anon_sym_EQ_EQ, + ACTIONS(10638), 1, + anon_sym_BANG_EQ, + STATE(6415), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10624), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [119638] = 13, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10405), 1, + ACTIONS(10399), 1, aux_sym_preproc_if_token1, - ACTIONS(10409), 1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10413), 1, + ACTIONS(10407), 1, aux_sym_implicit_statement_token3, - ACTIONS(10415), 1, + ACTIONS(10409), 1, aux_sym_derived_type_token1, - ACTIONS(10419), 1, + ACTIONS(10413), 1, aux_sym_type_statement_token2, - ACTIONS(10421), 1, + ACTIONS(10415), 1, aux_sym_type_statement_token3, - ACTIONS(10423), 1, + ACTIONS(10417), 1, aux_sym__class_default_token1, - STATE(3632), 1, + STATE(3653), 1, sym__class_default, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10407), 2, + ACTIONS(10401), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, STATE(5114), 8, @@ -565257,104 +565296,138 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_type, sym_type_statement, aux_sym_select_type_statement_repeat1, - [119645] = 11, - ACTIONS(10634), 1, + [119687] = 13, + ACTIONS(4665), 1, + sym__integer_literal, + ACTIONS(10395), 1, + aux_sym_preproc_include_token1, + ACTIONS(10397), 1, + aux_sym_preproc_def_token1, + ACTIONS(10403), 1, + sym_preproc_directive, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + ACTIONS(10646), 1, + aux_sym_preproc_if_token1, + ACTIONS(10650), 1, + aux_sym_select_case_statement_token2, + STATE(6847), 1, + sym_statement_label, + STATE(7154), 1, + sym_end_select_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10648), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5365), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_case, + sym_preproc_ifdef_in_select_case, + sym_case_statement, + aux_sym_select_case_statement_repeat1, + [119736] = 11, + ACTIONS(10652), 1, aux_sym_preproc_if_token1, - ACTIONS(10640), 1, + ACTIONS(10658), 1, aux_sym_end_program_statement_token1, - ACTIONS(10642), 1, + ACTIONS(10660), 1, aux_sym_module_statement_token1, - ACTIONS(10648), 1, + ACTIONS(10666), 1, aux_sym_private_statement_token1, - ACTIONS(10651), 1, + ACTIONS(10669), 1, aux_sym_public_statement_token1, - ACTIONS(10654), 1, + ACTIONS(10672), 1, aux_sym_end_type_statement_token1, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10637), 2, + ACTIONS(10655), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(10645), 5, + ACTIONS(10663), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(5178), 6, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(5179), 6, sym_preproc_if_in_bound_procedures, sym_preproc_ifdef_in_bound_procedures, sym_private_statement, sym_public_statement, sym_procedure_statement, aux_sym_derived_type_procedures_repeat1, - [119690] = 13, - ACTIONS(4687), 1, - sym__integer_literal, - ACTIONS(10401), 1, - aux_sym_preproc_include_token1, - ACTIONS(10403), 1, - aux_sym_preproc_def_token1, - ACTIONS(10409), 1, - sym_preproc_directive, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - ACTIONS(10656), 1, + [119781] = 11, + ACTIONS(10674), 1, aux_sym_preproc_if_token1, - ACTIONS(10660), 1, - aux_sym_select_rank_statement_token1, - STATE(6758), 1, - sym_statement_label, - STATE(7185), 1, - sym_end_select_statement, + ACTIONS(10678), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10680), 1, + aux_sym_module_statement_token1, + ACTIONS(10682), 1, + aux_sym_private_statement_token1, + ACTIONS(10684), 1, + aux_sym_public_statement_token1, + ACTIONS(10686), 1, + aux_sym_end_type_statement_token1, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10658), 2, + ACTIONS(10676), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5336), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_rank, - sym_preproc_ifdef_in_select_rank, - sym_rank_statement, - aux_sym_select_rank_statement_repeat1, - [119739] = 13, - ACTIONS(10401), 1, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(5179), 6, + sym_preproc_if_in_bound_procedures, + sym_preproc_ifdef_in_bound_procedures, + sym_private_statement, + sym_public_statement, + sym_procedure_statement, + aux_sym_derived_type_procedures_repeat1, + [119826] = 13, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10405), 1, + ACTIONS(10399), 1, aux_sym_preproc_if_token1, - ACTIONS(10409), 1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10413), 1, + ACTIONS(10407), 1, aux_sym_implicit_statement_token3, - ACTIONS(10415), 1, + ACTIONS(10409), 1, aux_sym_derived_type_token1, - ACTIONS(10419), 1, + ACTIONS(10413), 1, aux_sym_type_statement_token2, - ACTIONS(10421), 1, + ACTIONS(10415), 1, aux_sym_type_statement_token3, - ACTIONS(10423), 1, + ACTIONS(10417), 1, aux_sym__class_default_token1, - STATE(3632), 1, + STATE(3653), 1, sym__class_default, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10407), 2, + ACTIONS(10401), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5139), 8, + STATE(5120), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -565363,302 +565436,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_type, sym_type_statement, aux_sym_select_type_statement_repeat1, - [119788] = 13, - ACTIONS(4687), 1, - sym__integer_literal, - ACTIONS(10401), 1, - aux_sym_preproc_include_token1, - ACTIONS(10403), 1, - aux_sym_preproc_def_token1, - ACTIONS(10409), 1, - sym_preproc_directive, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - ACTIONS(10656), 1, - aux_sym_preproc_if_token1, - ACTIONS(10660), 1, - aux_sym_select_rank_statement_token1, - STATE(6738), 1, - sym_statement_label, - STATE(7175), 1, - sym_end_select_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10658), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5336), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_rank, - sym_preproc_ifdef_in_select_rank, - sym_rank_statement, - aux_sym_select_rank_statement_repeat1, - [119837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4323), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4325), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [119866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4277), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4279), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [119895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4331), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4333), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [119924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4323), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4325), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [119953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4335), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4337), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [119982] = 13, - ACTIONS(4687), 1, - sym__integer_literal, - ACTIONS(10401), 1, - aux_sym_preproc_include_token1, - ACTIONS(10403), 1, - aux_sym_preproc_def_token1, - ACTIONS(10409), 1, - sym_preproc_directive, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - ACTIONS(10662), 1, + [119875] = 11, + ACTIONS(10674), 1, aux_sym_preproc_if_token1, - ACTIONS(10666), 1, - aux_sym_select_case_statement_token2, - STATE(7005), 1, - sym_statement_label, - STATE(7398), 1, - sym_end_select_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10664), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5360), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_case, - sym_preproc_ifdef_in_select_case, - sym_case_statement, - aux_sym_select_case_statement_repeat1, - [120031] = 13, - ACTIONS(4687), 1, - sym__integer_literal, - ACTIONS(10401), 1, - aux_sym_preproc_include_token1, - ACTIONS(10403), 1, - aux_sym_preproc_def_token1, - ACTIONS(10409), 1, - sym_preproc_directive, - ACTIONS(10411), 1, + ACTIONS(10680), 1, + aux_sym_module_statement_token1, + ACTIONS(10682), 1, + aux_sym_private_statement_token1, + ACTIONS(10684), 1, + aux_sym_public_statement_token1, + ACTIONS(10688), 1, aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - ACTIONS(10656), 1, - aux_sym_preproc_if_token1, - ACTIONS(10660), 1, - aux_sym_select_rank_statement_token1, - STATE(7008), 1, - sym_statement_label, - STATE(7399), 1, - sym_end_select_statement, + ACTIONS(10690), 1, + aux_sym_end_type_statement_token1, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10658), 2, + ACTIONS(10676), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5336), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_rank, - sym_preproc_ifdef_in_select_rank, - sym_rank_statement, - aux_sym_select_rank_statement_repeat1, - [120080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4279), 1, - anon_sym_LF, - ACTIONS(4277), 20, - anon_sym_LPAREN2, - sym_preproc_comment, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4333), 1, - anon_sym_LF, - ACTIONS(4331), 20, - anon_sym_LPAREN2, - sym_preproc_comment, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120138] = 3, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + STATE(5180), 6, + sym_preproc_if_in_bound_procedures, + sym_preproc_ifdef_in_bound_procedures, + sym_private_statement, + sym_public_statement, + sym_procedure_statement, + aux_sym_derived_type_procedures_repeat1, + [119920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, + ACTIONS(4351), 1, anon_sym_LF, - ACTIONS(4323), 20, + ACTIONS(4349), 20, anon_sym_LPAREN2, sym_preproc_comment, anon_sym_PLUS, @@ -565679,12 +565496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [120167] = 3, + [119949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4337), 1, + ACTIONS(4317), 1, anon_sym_LF, - ACTIONS(4335), 20, + ACTIONS(4315), 20, anon_sym_LPAREN2, sym_preproc_comment, anon_sym_PLUS, @@ -565705,182 +565522,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [120196] = 13, - ACTIONS(10401), 1, - aux_sym_preproc_include_token1, - ACTIONS(10403), 1, - aux_sym_preproc_def_token1, - ACTIONS(10405), 1, - aux_sym_preproc_if_token1, - ACTIONS(10409), 1, - sym_preproc_directive, - ACTIONS(10413), 1, - aux_sym_implicit_statement_token3, - ACTIONS(10415), 1, - aux_sym_derived_type_token1, - ACTIONS(10419), 1, - aux_sym_type_statement_token2, - ACTIONS(10421), 1, - aux_sym_type_statement_token3, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - STATE(3632), 1, - sym__class_default, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10407), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5145), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_type, - sym_preproc_ifdef_in_select_type, - sym_type_statement, - aux_sym_select_type_statement_repeat1, - [120245] = 11, - ACTIONS(10616), 1, - aux_sym_preproc_if_token1, - ACTIONS(10622), 1, - aux_sym_module_statement_token1, - ACTIONS(10624), 1, - aux_sym_private_statement_token1, - ACTIONS(10626), 1, - aux_sym_public_statement_token1, - ACTIONS(10668), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10670), 1, - aux_sym_end_type_statement_token1, - STATE(3279), 1, - sym__procedure_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10618), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - STATE(5175), 6, - sym_preproc_if_in_bound_procedures, - sym_preproc_ifdef_in_bound_procedures, - sym_private_statement, - sym_public_statement, - sym_procedure_statement, - aux_sym_derived_type_procedures_repeat1, - [120290] = 16, + [119978] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10672), 1, + ACTIONS(10618), 1, anon_sym_COMMA, - ACTIONS(10674), 1, - anon_sym_RPAREN, - ACTIONS(10680), 1, + ACTIONS(10626), 1, anon_sym_PIPE_PIPE, - ACTIONS(10682), 1, + ACTIONS(10628), 1, anon_sym_AMP_AMP, - ACTIONS(10684), 1, + ACTIONS(10630), 1, anon_sym_PIPE, - ACTIONS(10686), 1, + ACTIONS(10632), 1, anon_sym_CARET, - ACTIONS(10688), 1, + ACTIONS(10634), 1, anon_sym_AMP, - ACTIONS(10690), 1, + ACTIONS(10636), 1, anon_sym_EQ_EQ, - ACTIONS(10692), 1, + ACTIONS(10638), 1, anon_sym_BANG_EQ, - STATE(7043), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10694), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10696), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10698), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10678), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [120345] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10672), 1, - anon_sym_COMMA, - ACTIONS(10680), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10682), 1, - anon_sym_AMP_AMP, - ACTIONS(10684), 1, - anon_sym_PIPE, - ACTIONS(10686), 1, - anon_sym_CARET, - ACTIONS(10688), 1, - anon_sym_AMP, - ACTIONS(10690), 1, - anon_sym_EQ_EQ, ACTIONS(10692), 1, - anon_sym_BANG_EQ, - ACTIONS(10700), 1, anon_sym_RPAREN, - STATE(6642), 1, + STATE(6372), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(10676), 2, + ACTIONS(10622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10694), 2, + ACTIONS(10640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10696), 2, + ACTIONS(10642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10698), 2, + ACTIONS(10644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10678), 3, + ACTIONS(10624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [120400] = 13, - ACTIONS(4687), 1, + [120033] = 13, + ACTIONS(4665), 1, sym__integer_literal, - ACTIONS(10401), 1, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10409), 1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10411), 1, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, + ACTIONS(10411), 1, aux_sym_end_select_statement_token1, - ACTIONS(10662), 1, + ACTIONS(10646), 1, aux_sym_preproc_if_token1, - ACTIONS(10666), 1, + ACTIONS(10650), 1, aux_sym_select_case_statement_token2, - STATE(7072), 1, + STATE(7042), 1, sym_statement_label, - STATE(7306), 1, + STATE(7423), 1, sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10664), 2, + ACTIONS(10648), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5360), 8, + STATE(5365), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -565889,34 +565597,69 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_case, sym_case_statement, aux_sym_select_case_statement_repeat1, - [120449] = 13, - ACTIONS(4687), 1, + [120082] = 12, + ACTIONS(9162), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(9166), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9178), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(10694), 1, + aux_sym_preproc_if_token2, + ACTIONS(10696), 1, + sym_preproc_comment, + STATE(3457), 1, + sym__intrinsic_type, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5278), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + ACTIONS(9176), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + [120129] = 13, + ACTIONS(4665), 1, sym__integer_literal, - ACTIONS(10401), 1, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10409), 1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10411), 1, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, + ACTIONS(10411), 1, aux_sym_end_select_statement_token1, - ACTIONS(10656), 1, + ACTIONS(10698), 1, aux_sym_preproc_if_token1, - ACTIONS(10660), 1, + ACTIONS(10702), 1, aux_sym_select_rank_statement_token1, - STATE(6289), 1, + STATE(6961), 1, sym_statement_label, - STATE(7264), 1, + STATE(7192), 1, sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10658), 2, + ACTIONS(10700), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5336), 8, + STATE(5339), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -565925,99 +565668,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_rank, sym_rank_statement, aux_sym_select_rank_statement_repeat1, - [120498] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10672), 1, - anon_sym_COMMA, - ACTIONS(10680), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10682), 1, - anon_sym_AMP_AMP, - ACTIONS(10684), 1, - anon_sym_PIPE, - ACTIONS(10686), 1, - anon_sym_CARET, - ACTIONS(10688), 1, - anon_sym_AMP, - ACTIONS(10690), 1, - anon_sym_EQ_EQ, - ACTIONS(10692), 1, - anon_sym_BANG_EQ, - ACTIONS(10702), 1, - anon_sym_RPAREN, - STATE(6254), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10694), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10696), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10698), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10678), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [120553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4325), 1, - anon_sym_LF, - ACTIONS(4323), 20, - anon_sym_LPAREN2, - sym_preproc_comment, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [120582] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7792), 3, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - aux_sym__intrinsic_type_token4, - ACTIONS(7790), 17, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - anon_sym_EQ_GT, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [120611] = 4, - ACTIONS(7288), 1, + [120178] = 4, + ACTIONS(7316), 1, aux_sym__intrinsic_type_token4, ACTIONS(10706), 1, aux_sym_module_procedure_statement_token1, @@ -566043,43 +565695,170 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [120642] = 12, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(9180), 1, - aux_sym_derived_type_token1, - ACTIONS(10708), 1, - aux_sym_preproc_if_token2, - ACTIONS(10710), 1, - sym_preproc_comment, - STATE(3467), 1, - sym__intrinsic_type, + [120209] = 13, + ACTIONS(4665), 1, + sym__integer_literal, + ACTIONS(10395), 1, + aux_sym_preproc_include_token1, + ACTIONS(10397), 1, + aux_sym_preproc_def_token1, + ACTIONS(10403), 1, + sym_preproc_directive, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + ACTIONS(10646), 1, + aux_sym_preproc_if_token1, + ACTIONS(10650), 1, + aux_sym_select_case_statement_token2, + STATE(6781), 1, + sym_statement_label, + STATE(7122), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5324), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(10648), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5365), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_case, + sym_preproc_ifdef_in_select_case, + sym_case_statement, + aux_sym_select_case_statement_repeat1, + [120258] = 5, + ACTIONS(10614), 1, + anon_sym_EQ, + ACTIONS(10616), 1, + anon_sym_EQ_GT, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10710), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(10708), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [120689] = 4, - ACTIONS(7288), 1, + aux_sym_derived_type_token1, + [120291] = 13, + ACTIONS(4665), 1, + sym__integer_literal, + ACTIONS(10395), 1, + aux_sym_preproc_include_token1, + ACTIONS(10397), 1, + aux_sym_preproc_def_token1, + ACTIONS(10403), 1, + sym_preproc_directive, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + ACTIONS(10698), 1, + aux_sym_preproc_if_token1, + ACTIONS(10702), 1, + aux_sym_select_rank_statement_token1, + STATE(6785), 1, + sym_statement_label, + STATE(7123), 1, + sym_end_select_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10700), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5339), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_rank, + sym_preproc_ifdef_in_select_rank, + sym_rank_statement, + aux_sym_select_rank_statement_repeat1, + [120340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_LF, + ACTIONS(4255), 20, + anon_sym_LPAREN2, + sym_preproc_comment, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [120369] = 13, + ACTIONS(4665), 1, + sym__integer_literal, + ACTIONS(10395), 1, + aux_sym_preproc_include_token1, + ACTIONS(10397), 1, + aux_sym_preproc_def_token1, + ACTIONS(10403), 1, + sym_preproc_directive, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + ACTIONS(10698), 1, + aux_sym_preproc_if_token1, + ACTIONS(10702), 1, + aux_sym_select_rank_statement_token1, + STATE(6445), 1, + sym_statement_label, + STATE(7101), 1, + sym_end_select_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10700), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5339), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_rank, + sym_preproc_ifdef_in_select_rank, + sym_rank_statement, + aux_sym_select_rank_statement_repeat1, + [120418] = 4, + ACTIONS(7316), 1, aux_sym__intrinsic_type_token4, ACTIONS(10712), 1, aux_sym_module_procedure_statement_token1, @@ -566105,70 +565884,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [120720] = 13, - ACTIONS(4687), 1, - sym__integer_literal, - ACTIONS(10401), 1, + [120449] = 13, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10409), 1, + ACTIONS(10399), 1, + aux_sym_preproc_if_token1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, + ACTIONS(10407), 1, + aux_sym_implicit_statement_token3, + ACTIONS(10409), 1, + aux_sym_derived_type_token1, + ACTIONS(10413), 1, + aux_sym_type_statement_token2, + ACTIONS(10415), 1, + aux_sym_type_statement_token3, ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - ACTIONS(10662), 1, - aux_sym_preproc_if_token1, - ACTIONS(10666), 1, - aux_sym_select_case_statement_token2, - STATE(6699), 1, - sym_statement_label, - STATE(7161), 1, - sym_end_select_statement, + aux_sym__class_default_token1, + STATE(3653), 1, + sym__class_default, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10664), 2, + ACTIONS(10401), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5360), 8, + STATE(5154), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_select_case, - sym_preproc_ifdef_in_select_case, - sym_case_statement, - aux_sym_select_case_statement_repeat1, - [120769] = 13, - ACTIONS(10401), 1, + sym_preproc_if_in_select_type, + sym_preproc_ifdef_in_select_type, + sym_type_statement, + aux_sym_select_type_statement_repeat1, + [120498] = 13, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10405), 1, + ACTIONS(10399), 1, aux_sym_preproc_if_token1, - ACTIONS(10409), 1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10413), 1, + ACTIONS(10407), 1, aux_sym_implicit_statement_token3, - ACTIONS(10415), 1, + ACTIONS(10409), 1, aux_sym_derived_type_token1, - ACTIONS(10419), 1, + ACTIONS(10413), 1, aux_sym_type_statement_token2, - ACTIONS(10421), 1, + ACTIONS(10415), 1, aux_sym_type_statement_token3, - ACTIONS(10423), 1, + ACTIONS(10417), 1, aux_sym__class_default_token1, - STATE(3632), 1, + STATE(3653), 1, sym__class_default, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10407), 2, + ACTIONS(10401), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5142), 8, + STATE(5112), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -566177,8 +565956,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_type, sym_type_statement, aux_sym_select_type_statement_repeat1, - [120818] = 4, - ACTIONS(7288), 1, + [120547] = 4, + ACTIONS(7316), 1, aux_sym__intrinsic_type_token4, ACTIONS(10714), 1, aux_sym_module_procedure_statement_token1, @@ -566204,148 +565983,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [120849] = 10, + [120578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10690), 1, - anon_sym_EQ_EQ, - ACTIONS(10692), 1, - anon_sym_BANG_EQ, - ACTIONS(10676), 2, + ACTIONS(4257), 1, + anon_sym_LF, + ACTIONS(4255), 20, + anon_sym_LPAREN2, + sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10694), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10696), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10698), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10718), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(10678), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10716), 5, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_CARET, - [120891] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10686), 1, - anon_sym_CARET, - ACTIONS(10688), 1, anon_sym_AMP, - ACTIONS(10690), 1, anon_sym_EQ_EQ, - ACTIONS(10692), 1, anon_sym_BANG_EQ, - ACTIONS(10718), 1, - anon_sym_PIPE, - ACTIONS(10676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10694), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(10696), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10698), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10678), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10716), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [120937] = 6, + [120607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10698), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10678), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10718), 5, + ACTIONS(4255), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(10716), 8, + ACTIONS(4257), 16, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [120971] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10680), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10682), 1, - anon_sym_AMP_AMP, - ACTIONS(10684), 1, - anon_sym_PIPE, - ACTIONS(10686), 1, - anon_sym_CARET, - ACTIONS(10688), 1, - anon_sym_AMP, - ACTIONS(10690), 1, - anon_sym_EQ_EQ, - ACTIONS(10692), 1, - anon_sym_BANG_EQ, - ACTIONS(10676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10694), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10696), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10698), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10720), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(10678), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [121021] = 3, + [120636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8583), 5, + ACTIONS(4345), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(8581), 15, + ACTIONS(4347), 16, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -566359,13 +566061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [121049] = 3, + [120665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8581), 1, - anon_sym_LF, - ACTIONS(8583), 19, - sym_preproc_comment, + ACTIONS(4349), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4351), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -566373,24 +566081,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [121077] = 3, + [120694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10722), 1, - anon_sym_LF, - ACTIONS(10724), 19, - sym_preproc_comment, + ACTIONS(4255), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4257), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -566398,173 +566107,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [121105] = 3, - ACTIONS(10728), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10726), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [121133] = 3, - ACTIONS(7110), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10730), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [121161] = 13, + [120723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10732), 1, - anon_sym_LF, - ACTIONS(10734), 1, - sym_preproc_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(4315), 5, anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10736), 2, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4317), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [121209] = 5, - ACTIONS(10604), 1, - anon_sym_COMMA, - STATE(5319), 1, - aux_sym__declaration_targets_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10758), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10756), 15, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [121241] = 5, - ACTIONS(10604), 1, - anon_sym_COMMA, - STATE(5320), 1, - aux_sym__declaration_targets_repeat1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [120752] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10758), 2, + ACTIONS(7796), 3, aux_sym_preproc_elif_token1, + anon_sym_EQ, aux_sym__intrinsic_type_token4, - ACTIONS(10756), 15, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [121273] = 5, - ACTIONS(10760), 1, + ACTIONS(7794), 17, anon_sym_COMMA, - STATE(5220), 1, - aux_sym__declaration_targets_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10765), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10763), 15, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, aux_sym_module_procedure_statement_token1, + anon_sym_EQ_GT, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -566575,12 +566165,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [121305] = 3, + [120781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7506), 1, + ACTIONS(4347), 1, anon_sym_LF, - ACTIONS(7504), 19, + ACTIONS(4345), 20, + anon_sym_LPAREN2, sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, @@ -566600,195 +566191,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [121333] = 3, + [120810] = 13, + ACTIONS(4665), 1, + sym__integer_literal, + ACTIONS(10395), 1, + aux_sym_preproc_include_token1, + ACTIONS(10397), 1, + aux_sym_preproc_def_token1, + ACTIONS(10403), 1, + sym_preproc_directive, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + ACTIONS(10698), 1, + aux_sym_preproc_if_token1, + ACTIONS(10702), 1, + aux_sym_select_rank_statement_token1, + STATE(7043), 1, + sym_statement_label, + STATE(7424), 1, + sym_end_select_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10700), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5339), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_rank, + sym_preproc_ifdef_in_select_rank, + sym_rank_statement, + aux_sym_select_rank_statement_repeat1, + [120859] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10767), 1, - anon_sym_LF, - ACTIONS(10769), 19, - sym_preproc_comment, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10618), 1, + anon_sym_COMMA, + ACTIONS(10626), 1, anon_sym_PIPE_PIPE, + ACTIONS(10628), 1, anon_sym_AMP_AMP, + ACTIONS(10630), 1, anon_sym_PIPE, + ACTIONS(10632), 1, anon_sym_CARET, + ACTIONS(10634), 1, anon_sym_AMP, + ACTIONS(10636), 1, anon_sym_EQ_EQ, + ACTIONS(10638), 1, anon_sym_BANG_EQ, + ACTIONS(10716), 1, + anon_sym_RPAREN, + STATE(6469), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10640), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(10642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [121361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10773), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10771), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(10624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121389] = 13, + [120914] = 3, + ACTIONS(7256), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7254), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [120942] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10718), 1, + anon_sym_LF, + ACTIONS(10720), 1, + sym_preproc_comment, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10775), 1, - anon_sym_LF, - ACTIONS(10777), 1, - sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [121437] = 13, + [120990] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10779), 1, + ACTIONS(10742), 1, anon_sym_LF, - ACTIONS(10781), 1, + ACTIONS(10744), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [121485] = 13, + [121038] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10783), 1, + ACTIONS(10746), 1, anon_sym_LF, - ACTIONS(10785), 1, + ACTIONS(10748), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [121533] = 5, + [121086] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10676), 2, + ACTIONS(10622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10678), 3, + ACTIONS(10640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10718), 5, + ACTIONS(10752), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10716), 10, + ACTIONS(10750), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + [121124] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(10754), 1, + anon_sym_LF, + ACTIONS(10756), 1, + sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [121565] = 3, - ACTIONS(7178), 1, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [121172] = 3, + ACTIONS(7224), 1, aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7176), 18, + ACTIONS(7222), 18, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -566807,13 +566486,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [121593] = 3, - ACTIONS(7190), 1, + [121200] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(10750), 1, + anon_sym_LF, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10752), 2, + sym_preproc_comment, + anon_sym_PIPE_PIPE, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [121246] = 3, + ACTIONS(10760), 1, aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7188), 18, + ACTIONS(10758), 18, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -566832,12 +566545,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [121621] = 3, + [121274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7486), 1, + ACTIONS(10762), 1, anon_sym_LF, - ACTIONS(7484), 19, + ACTIONS(10764), 19, sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, @@ -566857,18 +566570,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [121649] = 3, + [121302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10789), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10787), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8543), 1, + anon_sym_LF, + ACTIONS(8545), 19, + sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -566876,77 +566584,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [121677] = 3, + [121330] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8589), 1, - anon_sym_LF, - ACTIONS(8591), 19, - sym_preproc_comment, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, + ACTIONS(10766), 1, + anon_sym_LF, + ACTIONS(10768), 1, + sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [121705] = 11, + [121378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10688), 1, + ACTIONS(10772), 5, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10690), 1, - anon_sym_EQ_EQ, - ACTIONS(10692), 1, anon_sym_BANG_EQ, - ACTIONS(10718), 1, - anon_sym_PIPE, - ACTIONS(10676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10694), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10696), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10698), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10678), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10716), 5, + ACTIONS(10770), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [121749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10791), 1, - anon_sym_LF, - ACTIONS(10793), 19, - sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -566954,97 +566649,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [121777] = 13, + [121406] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10795), 1, + ACTIONS(10774), 1, anon_sym_LF, - ACTIONS(10797), 1, + ACTIONS(10776), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [121825] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, - anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, - anon_sym_AMP, - ACTIONS(10799), 1, - anon_sym_LF, - ACTIONS(10801), 1, - sym_preproc_comment, ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [121873] = 3, + [121454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8591), 5, + ACTIONS(7474), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(8589), 15, + ACTIONS(7476), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -567060,141 +566715,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [121901] = 3, + [121482] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10787), 1, - anon_sym_LF, - ACTIONS(10789), 19, - sym_preproc_comment, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, + ACTIONS(10778), 1, + anon_sym_LF, + ACTIONS(10780), 1, + sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [121929] = 3, - ACTIONS(7174), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7172), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [121957] = 3, - ACTIONS(7186), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7184), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [121985] = 3, - ACTIONS(7182), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7180), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [122013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10793), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10791), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, + ACTIONS(10738), 4, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122041] = 3, + anon_sym_LT, + [121530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10724), 5, + ACTIONS(10784), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(10722), 15, + ACTIONS(10782), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -567210,137 +566775,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [122069] = 13, + [121558] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10803), 1, + ACTIONS(10786), 1, anon_sym_LF, - ACTIONS(10805), 1, + ACTIONS(10788), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [122117] = 3, + [121606] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10809), 5, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10807), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10790), 1, + anon_sym_LF, + ACTIONS(10792), 1, + sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, + ACTIONS(10738), 4, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122145] = 13, + anon_sym_LT, + [121654] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10811), 1, + ACTIONS(10794), 1, anon_sym_LF, - ACTIONS(10813), 1, + ACTIONS(10796), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [122193] = 13, + [121702] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10815), 1, + ACTIONS(10798), 1, anon_sym_LF, - ACTIONS(10817), 1, + ACTIONS(10800), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [122241] = 3, + [121750] = 3, ACTIONS(7336), 1, aux_sym__intrinsic_type_token4, ACTIONS(21), 2, @@ -567365,176 +566940,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [122269] = 3, - ACTIONS(7284), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7282), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [122297] = 3, - ACTIONS(7272), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7270), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [122325] = 3, - ACTIONS(7324), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7322), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [122353] = 3, - ACTIONS(7280), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7278), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [122381] = 3, - ACTIONS(7308), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7306), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [122409] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, - anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, - anon_sym_AMP, - ACTIONS(10819), 1, - anon_sym_LF, - ACTIONS(10821), 1, - sym_preproc_comment, - ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [122457] = 3, + [121778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7504), 5, + ACTIONS(10804), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(7506), 15, + ACTIONS(10802), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -567550,338 +566965,440 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [122485] = 3, + [121806] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10769), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10767), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10823), 1, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(10806), 1, anon_sym_LF, - ACTIONS(10825), 19, + ACTIONS(10808), 1, sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122541] = 13, + [121854] = 3, + ACTIONS(7306), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7304), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [121882] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10827), 1, + ACTIONS(10750), 1, anon_sym_LF, - ACTIONS(10829), 1, - sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10752), 3, + sym_preproc_comment, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [122589] = 13, + [121926] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10831), 1, + ACTIONS(10810), 1, anon_sym_LF, - ACTIONS(10833), 1, + ACTIONS(10812), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [122637] = 13, + [121974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, - anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, - anon_sym_AMP, - ACTIONS(10835), 1, - anon_sym_LF, - ACTIONS(10837), 1, - sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10752), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_LT, + ACTIONS(10750), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [122685] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [122006] = 3, + ACTIONS(7292), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7290), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [122034] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10839), 1, + ACTIONS(10814), 1, anon_sym_LF, - ACTIONS(10841), 1, + ACTIONS(10816), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [122733] = 13, + [122082] = 3, + ACTIONS(7260), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7258), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [122110] = 3, + ACTIONS(7270), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7268), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [122138] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10843), 1, + ACTIONS(10818), 1, anon_sym_LF, - ACTIONS(10845), 1, + ACTIONS(10820), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [122781] = 13, + [122186] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10847), 1, + ACTIONS(10822), 1, anon_sym_LF, - ACTIONS(10849), 1, + ACTIONS(10824), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [122829] = 13, + [122234] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10626), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10628), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10630), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10632), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10634), 1, anon_sym_AMP, - ACTIONS(10851), 1, - anon_sym_LF, - ACTIONS(10853), 1, - sym_preproc_comment, - ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10636), 1, anon_sym_EQ_EQ, + ACTIONS(10638), 1, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10826), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(10624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [122877] = 8, + [122284] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10676), 2, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(10750), 1, + anon_sym_LF, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10694), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10696), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10698), 2, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10678), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10718), 3, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10752), 5, + sym_preproc_comment, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + [122324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10830), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_BANG_EQ, - ACTIONS(10716), 6, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10828), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, - [122915] = 3, - ACTIONS(7268), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [122352] = 3, + ACTIONS(7178), 1, aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7266), 18, + ACTIONS(7176), 18, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -567900,44 +567417,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [122943] = 4, + [122380] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10716), 1, - anon_sym_LF, - ACTIONS(10738), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10718), 16, - sym_preproc_comment, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, + ACTIONS(10832), 1, + anon_sym_LF, + ACTIONS(10834), 1, + sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [122973] = 3, + [122428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10855), 1, + ACTIONS(10750), 1, anon_sym_LF, - ACTIONS(10857), 19, - sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10752), 12, + sym_preproc_comment, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -567949,74 +567480,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123001] = 3, + [122462] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10716), 1, - anon_sym_LF, - ACTIONS(10718), 19, - sym_preproc_comment, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, + ACTIONS(10836), 1, + anon_sym_LF, + ACTIONS(10838), 1, + sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [123029] = 12, + [122510] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10716), 1, - anon_sym_LF, - ACTIONS(10742), 1, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10718), 2, + ACTIONS(10840), 1, + anon_sym_LF, + ACTIONS(10842), 1, sym_preproc_comment, - anon_sym_PIPE_PIPE, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123075] = 3, - ACTIONS(7304), 1, + [122558] = 3, + ACTIONS(7288), 1, aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7302), 18, + ACTIONS(7286), 18, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -568035,85 +567575,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [123103] = 13, + [122586] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10859), 1, + ACTIONS(10844), 1, anon_sym_LF, - ACTIONS(10861), 1, + ACTIONS(10846), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [123151] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10716), 1, - anon_sym_LF, - ACTIONS(10744), 1, - anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, - anon_sym_AMP, ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10718), 3, - sym_preproc_comment, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123195] = 3, - ACTIONS(7314), 1, + [122634] = 5, + ACTIONS(10848), 1, + anon_sym_COMMA, + STATE(5253), 1, + aux_sym__declaration_targets_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10853), 2, + aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, + ACTIONS(10851), 15, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + [122666] = 5, + ACTIONS(10608), 1, + anon_sym_COMMA, + STATE(5309), 1, + aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7312), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, + ACTIONS(10857), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(10855), 15, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -568124,335 +567664,338 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [123223] = 10, + [122698] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10716), 1, - anon_sym_LF, - ACTIONS(10746), 1, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10736), 2, + ACTIONS(10859), 1, + anon_sym_LF, + ACTIONS(10861), 1, + sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10718), 4, - sym_preproc_comment, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123265] = 13, + [122746] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(10863), 1, anon_sym_LF, ACTIONS(10865), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123313] = 13, + [122794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10782), 1, + anon_sym_LF, + ACTIONS(10784), 19, + sym_preproc_comment, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, anon_sym_PIPE, - ACTIONS(10746), 1, anon_sym_CARET, - ACTIONS(10748), 1, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [122822] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(10867), 1, anon_sym_LF, ACTIONS(10869), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123361] = 13, + [122870] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(10871), 1, anon_sym_LF, ACTIONS(10873), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123409] = 13, + [122918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10877), 5, anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10875), 1, - anon_sym_LF, - ACTIONS(10877), 1, - sym_preproc_comment, - ACTIONS(10736), 2, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10875), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [123457] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [122946] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(10879), 1, anon_sym_LF, ACTIONS(10881), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123505] = 13, + [122994] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(10883), 1, anon_sym_LF, ACTIONS(10885), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123553] = 9, + [123042] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10716), 1, - anon_sym_LF, - ACTIONS(10748), 1, - anon_sym_AMP, - ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10718), 5, - sym_preproc_comment, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, - [123593] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10716), 1, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(10887), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10889), 1, + sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10718), 6, - sym_preproc_comment, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, + [123090] = 3, + ACTIONS(7196), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, anon_sym_AMP, - [123631] = 7, + sym_comment, + ACTIONS(7194), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [123118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10716), 1, + ACTIONS(10828), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10830), 19, + sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10718), 8, - sym_preproc_comment, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -568460,22 +568003,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [123667] = 6, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [123146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10716), 1, + ACTIONS(10750), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10718), 12, + ACTIONS(10752), 14, sym_preproc_comment, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -568488,605 +568034,766 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123701] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [123178] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10887), 1, + ACTIONS(10891), 1, anon_sym_LF, - ACTIONS(10889), 1, + ACTIONS(10893), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123749] = 13, + [123226] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10891), 1, + ACTIONS(10895), 1, anon_sym_LF, - ACTIONS(10893), 1, + ACTIONS(10897), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123797] = 13, + [123274] = 3, + ACTIONS(7116), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10899), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [123302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(7530), 1, + anon_sym_LF, + ACTIONS(7528), 19, + sym_preproc_comment, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, anon_sym_PIPE, - ACTIONS(10746), 1, anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10895), 1, - anon_sym_LF, - ACTIONS(10897), 1, - sym_preproc_comment, - ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + [123330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10903), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10901), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [123845] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [123358] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10899), 1, + ACTIONS(10905), 1, anon_sym_LF, - ACTIONS(10901), 1, + ACTIONS(10907), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123893] = 13, + [123406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(7528), 5, anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10903), 1, - anon_sym_LF, - ACTIONS(10905), 1, - sym_preproc_comment, - ACTIONS(10736), 2, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7530), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [123941] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [123434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(7476), 1, + anon_sym_LF, + ACTIONS(7474), 19, + sym_preproc_comment, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, anon_sym_PIPE, - ACTIONS(10746), 1, anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10907), 1, - anon_sym_LF, - ACTIONS(10909), 1, - sym_preproc_comment, - ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + [123462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8398), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [123989] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [123490] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10911), 1, + ACTIONS(10909), 1, anon_sym_LF, - ACTIONS(10913), 1, + ACTIONS(10911), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124037] = 3, - ACTIONS(7195), 1, + [123538] = 11, + ACTIONS(9162), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(9166), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9178), 1, aux_sym__intrinsic_type_token4, + ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(10913), 1, + aux_sym_preproc_if_token2, + STATE(3457), 1, + sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7192), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, + STATE(5288), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + ACTIONS(9176), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, + [123582] = 11, + ACTIONS(9162), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(9166), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9178), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [124065] = 5, + ACTIONS(10913), 1, + aux_sym_preproc_if_token2, + STATE(3457), 1, + sym__intrinsic_type, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5160), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + ACTIONS(9176), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + [123626] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10716), 1, - anon_sym_LF, - ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10738), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10718), 14, - sym_preproc_comment, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, + ACTIONS(10915), 1, + anon_sym_LF, + ACTIONS(10917), 1, + sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [124097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7484), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7486), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, + ACTIONS(10738), 4, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124125] = 13, + anon_sym_LT, + [123674] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, - anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10915), 1, + ACTIONS(10750), 1, anon_sym_LF, - ACTIONS(10917), 1, - sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124173] = 13, + ACTIONS(10752), 4, + sym_preproc_comment, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + [123716] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(10919), 1, anon_sym_LF, ACTIONS(10921), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124221] = 13, + [123764] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(10923), 1, anon_sym_LF, ACTIONS(10925), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [123812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10901), 1, + anon_sym_LF, + ACTIONS(10903), 19, + sym_preproc_comment, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124269] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [123840] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(10927), 1, anon_sym_LF, ACTIONS(10929), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124317] = 3, + [123888] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10857), 5, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10855), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10931), 1, + anon_sym_LF, + ACTIONS(10933), 1, + sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, + ACTIONS(10738), 4, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [124345] = 13, + anon_sym_LT, + [123936] = 3, + ACTIONS(7174), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7172), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [123964] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10931), 1, + ACTIONS(10935), 1, anon_sym_LF, - ACTIONS(10933), 1, + ACTIONS(10937), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124393] = 13, + [124012] = 11, + ACTIONS(9162), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(9166), 1, + aux_sym_implicit_statement_token3, + ACTIONS(9178), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(9180), 1, + aux_sym__intrinsic_type_token8, + ACTIONS(9182), 1, + aux_sym_derived_type_token1, + ACTIONS(10939), 1, + aux_sym_preproc_if_token2, + STATE(3457), 1, + sym__intrinsic_type, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5160), 2, + sym_variable_declaration, + aux_sym_preproc_if_in_derived_type_repeat1, + STATE(3380), 3, + sym_procedure_declaration, + sym_intrinsic_type, + sym_derived_type, + ACTIONS(9176), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + [124056] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10935), 1, + ACTIONS(10941), 1, anon_sym_LF, - ACTIONS(10937), 1, + ACTIONS(10943), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124441] = 13, + [124104] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10939), 1, + ACTIONS(10945), 1, anon_sym_LF, - ACTIONS(10941), 1, + ACTIONS(10947), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124489] = 3, - ACTIONS(7288), 1, + [124152] = 3, + ACTIONS(7188), 1, aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10704), 18, + ACTIONS(7186), 18, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -569105,438 +568812,365 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [124517] = 13, + [124180] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, - anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, - anon_sym_AMP, - ACTIONS(10943), 1, + ACTIONS(10750), 1, anon_sym_LF, - ACTIONS(10945), 1, - sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124565] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10740), 1, + ACTIONS(10752), 6, + sym_preproc_comment, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, anon_sym_PIPE, - ACTIONS(10746), 1, anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10947), 1, - anon_sym_LF, - ACTIONS(10949), 1, - sym_preproc_comment, - ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [124613] = 13, + [124218] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10951), 1, + ACTIONS(10949), 1, anon_sym_LF, - ACTIONS(10953), 1, + ACTIONS(10951), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124661] = 13, + [124266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, - anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, - anon_sym_AMP, - ACTIONS(10955), 1, + ACTIONS(10953), 1, anon_sym_LF, - ACTIONS(10957), 1, + ACTIONS(10955), 19, sym_preproc_comment, - ACTIONS(10736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [124709] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10740), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, anon_sym_PIPE, - ACTIONS(10746), 1, anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_LF, - ACTIONS(10961), 1, - sym_preproc_comment, - ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10752), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124757] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [124294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(8545), 5, anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10963), 1, - anon_sym_LF, - ACTIONS(10965), 1, - sym_preproc_comment, - ACTIONS(10736), 2, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8543), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [124805] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [124322] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10967), 1, + ACTIONS(10957), 1, anon_sym_LF, - ACTIONS(10969), 1, + ACTIONS(10959), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124853] = 13, + [124370] = 3, + ACTIONS(7316), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10704), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [124398] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10971), 1, + ACTIONS(10961), 1, anon_sym_LF, - ACTIONS(10973), 1, + ACTIONS(10963), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124901] = 13, + [124446] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10975), 1, + ACTIONS(10965), 1, anon_sym_LF, - ACTIONS(10977), 1, + ACTIONS(10967), 1, sym_preproc_comment, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [124949] = 13, + [124494] = 3, + ACTIONS(7183), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(7180), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [124522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, - anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, - anon_sym_AMP, - ACTIONS(10979), 1, + ACTIONS(10802), 1, anon_sym_LF, - ACTIONS(10981), 1, + ACTIONS(10804), 19, sym_preproc_comment, - ACTIONS(10736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [124997] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10740), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, anon_sym_PIPE, - ACTIONS(10746), 1, anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10983), 1, - anon_sym_LF, - ACTIONS(10985), 1, - sym_preproc_comment, - ACTIONS(10736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(10750), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10752), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [125045] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [124550] = 5, + ACTIONS(10608), 1, + anon_sym_COMMA, + STATE(5253), 1, + aux_sym__declaration_targets_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10971), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(10969), 15, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + [124582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, - anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10955), 5, anon_sym_PIPE, - ACTIONS(10746), 1, - anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(10987), 1, - anon_sym_LF, - ACTIONS(10989), 1, - sym_preproc_comment, - ACTIONS(10736), 2, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10953), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10754), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10738), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, - anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [125093] = 5, - ACTIONS(10604), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [124610] = 5, + ACTIONS(10608), 1, anon_sym_COMMA, - STATE(5220), 1, + STATE(5318), 1, aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10993), 2, + ACTIONS(10857), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10991), 15, + ACTIONS(10855), 15, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -569552,13 +569186,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [125125] = 3, - ACTIONS(7116), 1, + [124642] = 3, + ACTIONS(7312), 1, aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10995), 18, + ACTIONS(7310), 18, aux_sym_module_statement_token1, aux_sym_subroutine_statement_token1, aux_sym_function_statement_token1, @@ -569577,23 +569211,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_qualifier_token2, aux_sym_procedure_qualifier_token3, aux_sym_procedure_qualifier_token4, - [125153] = 5, - ACTIONS(10604), 1, + [124670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10770), 1, + anon_sym_LF, + ACTIONS(10772), 19, + sym_preproc_comment, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [124698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10624), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10752), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10750), 12, anon_sym_COMMA, - STATE(5220), 1, - aux_sym__declaration_targets_repeat1, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [124728] = 3, + ACTIONS(7296), 1, + aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10999), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(10997), 15, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, + ACTIONS(7294), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -569604,18 +569283,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [125185] = 5, - ACTIONS(10604), 1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [124756] = 5, + ACTIONS(10608), 1, anon_sym_COMMA, - STATE(5220), 1, + STATE(5253), 1, aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10999), 2, + ACTIONS(10975), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(10997), 15, + ACTIONS(10973), 15, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -569631,47 +569314,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [125217] = 13, + [124788] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11001), 1, + ACTIONS(10977), 1, anon_sym_LF, - ACTIONS(11003), 1, + ACTIONS(10979), 1, sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [124836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10764), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10762), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [124864] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(10981), 1, + anon_sym_LF, + ACTIONS(10983), 1, + sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [125265] = 3, + [124912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10771), 1, + ACTIONS(10875), 1, anon_sym_LF, - ACTIONS(10773), 19, + ACTIONS(10877), 19, sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, @@ -569691,78 +569434,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [125293] = 11, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(9180), 1, - aux_sym_derived_type_token1, - ACTIONS(11005), 1, - aux_sym_preproc_if_token2, - STATE(3467), 1, - sym__intrinsic_type, - ACTIONS(21), 2, - anon_sym_AMP, + [124940] = 7, + ACTIONS(3), 1, sym_comment, - STATE(5328), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - ACTIONS(9174), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - [125337] = 11, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(9180), 1, - aux_sym_derived_type_token1, - ACTIONS(11005), 1, - aux_sym_preproc_if_token2, - STATE(3467), 1, - sym__intrinsic_type, - ACTIONS(21), 2, + ACTIONS(10750), 1, + anon_sym_LF, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10752), 8, + sym_preproc_comment, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [124976] = 13, + ACTIONS(3), 1, sym_comment, - STATE(5156), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - ACTIONS(9174), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - [125381] = 3, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(10985), 1, + anon_sym_LF, + ACTIONS(10987), 1, + sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10807), 1, + ACTIONS(8398), 1, anon_sym_LF, - ACTIONS(10809), 19, + ACTIONS(8400), 19, sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, @@ -569782,49 +569523,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [125409] = 3, + [125052] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10825), 5, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10823), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10989), 1, + anon_sym_LF, + ACTIONS(10991), 1, + sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125100] = 5, + ACTIONS(10608), 1, + anon_sym_COMMA, + STATE(5253), 1, + aux_sym__declaration_targets_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10975), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(10973), 15, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + [125132] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(10993), 1, + anon_sym_LF, + ACTIONS(10995), 1, + sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [125437] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10678), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10718), 5, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10752), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(10716), 12, + ACTIONS(10750), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -569833,229 +569645,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [125467] = 11, - ACTIONS(9160), 1, - aux_sym_module_procedure_statement_token1, - ACTIONS(9164), 1, - aux_sym_implicit_statement_token3, - ACTIONS(9176), 1, + [125208] = 3, + ACTIONS(7192), 1, aux_sym__intrinsic_type_token4, - ACTIONS(9178), 1, - aux_sym__intrinsic_type_token8, - ACTIONS(9180), 1, - aux_sym_derived_type_token1, - ACTIONS(11007), 1, - aux_sym_preproc_if_token2, - STATE(3467), 1, - sym__intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5156), 2, - sym_variable_declaration, - aux_sym_preproc_if_in_derived_type_repeat1, - STATE(3377), 3, - sym_procedure_declaration, - sym_intrinsic_type, - sym_derived_type, - ACTIONS(9174), 7, + ACTIONS(7190), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, + aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, aux_sym__intrinsic_type_token6, aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [125511] = 3, + aux_sym_derived_type_token1, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [125236] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10718), 5, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, anon_sym_AMP, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10716), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10997), 1, + anon_sym_LF, + ACTIONS(10999), 1, + sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125284] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, anon_sym_CARET, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(11001), 1, + anon_sym_LF, + ACTIONS(11003), 1, + sym_preproc_comment, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [125539] = 13, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125332] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10682), 1, + ACTIONS(10628), 1, anon_sym_AMP_AMP, - ACTIONS(10684), 1, + ACTIONS(10630), 1, anon_sym_PIPE, - ACTIONS(10686), 1, + ACTIONS(10632), 1, anon_sym_CARET, - ACTIONS(10688), 1, + ACTIONS(10634), 1, anon_sym_AMP, - ACTIONS(10690), 1, + ACTIONS(10636), 1, anon_sym_EQ_EQ, - ACTIONS(10692), 1, + ACTIONS(10638), 1, anon_sym_BANG_EQ, - ACTIONS(10676), 2, + ACTIONS(10622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10694), 2, + ACTIONS(10640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10696), 2, + ACTIONS(10642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10698), 2, + ACTIONS(10644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10678), 3, + ACTIONS(10624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10716), 3, + ACTIONS(10750), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [125587] = 12, + [125380] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10684), 1, + ACTIONS(10630), 1, anon_sym_PIPE, - ACTIONS(10686), 1, + ACTIONS(10632), 1, anon_sym_CARET, - ACTIONS(10688), 1, + ACTIONS(10634), 1, anon_sym_AMP, - ACTIONS(10690), 1, + ACTIONS(10636), 1, anon_sym_EQ_EQ, - ACTIONS(10692), 1, + ACTIONS(10638), 1, anon_sym_BANG_EQ, - ACTIONS(10676), 2, + ACTIONS(10622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10694), 2, + ACTIONS(10640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10696), 2, + ACTIONS(10642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10698), 2, + ACTIONS(10644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10678), 3, + ACTIONS(10624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10716), 4, + ACTIONS(10750), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [125633] = 3, - ACTIONS(7318), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7316), 18, - aux_sym_module_statement_token1, - aux_sym_subroutine_statement_token1, - aux_sym_function_statement_token1, - aux_sym_procedure_attributes_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - aux_sym_procedure_qualifier_token1, - aux_sym_procedure_qualifier_token2, - aux_sym_procedure_qualifier_token3, - aux_sym_procedure_qualifier_token4, - [125661] = 12, + [125426] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11009), 1, + ACTIONS(11005), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(11007), 1, + sym_preproc_comment, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [125706] = 3, - ACTIONS(21), 2, + [125474] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10632), 1, + anon_sym_CARET, + ACTIONS(10634), 1, anon_sym_AMP, + ACTIONS(10636), 1, + anon_sym_EQ_EQ, + ACTIONS(10638), 1, + anon_sym_BANG_EQ, + ACTIONS(10752), 1, + anon_sym_PIPE, + ACTIONS(10622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10624), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10750), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [125520] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(11013), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(11011), 16, + ACTIONS(10634), 1, + anon_sym_AMP, + ACTIONS(10636), 1, + anon_sym_EQ_EQ, + ACTIONS(10638), 1, + anon_sym_BANG_EQ, + ACTIONS(10752), 1, + anon_sym_PIPE, + ACTIONS(10622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10624), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10750), 5, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [125733] = 3, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [125564] = 3, + ACTIONS(7110), 1, + aux_sym__intrinsic_type_token4, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11013), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(11011), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, + ACTIONS(11009), 18, + aux_sym_module_statement_token1, + aux_sym_subroutine_statement_token1, + aux_sym_function_statement_token1, + aux_sym_procedure_attributes_token1, aux_sym_implicit_statement_token3, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, @@ -570066,1250 +569932,1416 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [125760] = 10, - ACTIONS(11015), 1, - aux_sym_preproc_include_token1, - ACTIONS(11018), 1, - aux_sym_preproc_def_token1, - ACTIONS(11021), 1, - aux_sym_preproc_if_token1, - ACTIONS(11027), 1, - sym_preproc_directive, - ACTIONS(11030), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11032), 1, - aux_sym_select_rank_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, + aux_sym_procedure_qualifier_token1, + aux_sym_procedure_qualifier_token2, + aux_sym_procedure_qualifier_token3, + aux_sym_procedure_qualifier_token4, + [125592] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(11024), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11035), 2, - sym__integer_literal, - aux_sym_end_select_statement_token1, - STATE(5336), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_rank, - sym_preproc_ifdef_in_select_rank, - sym_rank_statement, - aux_sym_select_rank_statement_repeat1, - [125801] = 12, + ACTIONS(10636), 1, + anon_sym_EQ_EQ, + ACTIONS(10638), 1, + anon_sym_BANG_EQ, + ACTIONS(10622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10752), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10624), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10750), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [125634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10750), 1, + anon_sym_LF, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10752), 16, + sym_preproc_comment, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, anon_sym_PIPE, - ACTIONS(10746), 1, anon_sym_CARET, - ACTIONS(10748), 1, anon_sym_AMP, - ACTIONS(11037), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [125664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10750), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10752), 19, + sym_preproc_comment, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [125692] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10752), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_LT, + ACTIONS(10750), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [125846] = 12, + [125726] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11039), 1, + ACTIONS(11011), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [125891] = 12, + [125771] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11041), 1, + ACTIONS(11013), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [125936] = 11, - ACTIONS(10622), 1, + [125816] = 11, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11043), 1, + ACTIONS(11015), 1, aux_sym_preproc_if_token2, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11051), 1, + ACTIONS(11023), 1, sym_preproc_comment, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5371), 2, + STATE(5385), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8369), 3, + STATE(7472), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [125979] = 12, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [125859] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10626), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10628), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10630), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10632), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10634), 1, anon_sym_AMP, - ACTIONS(11053), 1, + ACTIONS(10636), 1, + anon_sym_EQ_EQ, + ACTIONS(10638), 1, + anon_sym_BANG_EQ, + ACTIONS(11025), 1, + anon_sym_RPAREN, + ACTIONS(10622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10624), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [125908] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(11027), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126024] = 12, + [125953] = 10, + ACTIONS(11029), 1, + aux_sym_preproc_include_token1, + ACTIONS(11032), 1, + aux_sym_preproc_def_token1, + ACTIONS(11035), 1, + aux_sym_preproc_if_token1, + ACTIONS(11041), 1, + sym_preproc_directive, + ACTIONS(11044), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11046), 1, + aux_sym_select_rank_statement_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11038), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11049), 2, + sym__integer_literal, + aux_sym_end_select_statement_token1, + STATE(5339), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_rank, + sym_preproc_ifdef_in_select_rank, + sym_rank_statement, + aux_sym_select_rank_statement_repeat1, + [125994] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11055), 1, + ACTIONS(11051), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126069] = 12, + [126039] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11057), 1, + ACTIONS(11053), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126114] = 12, + [126084] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11059), 1, + ACTIONS(11055), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126159] = 11, - ACTIONS(10622), 1, + [126129] = 11, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11061), 1, + ACTIONS(11057), 1, aux_sym_preproc_if_token2, - ACTIONS(11063), 1, + ACTIONS(11059), 1, sym_preproc_comment, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5386), 2, + STATE(5377), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8097), 3, + STATE(8082), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [126202] = 12, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [126172] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11065), 1, + ACTIONS(11061), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126247] = 12, + [126217] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11067), 1, + ACTIONS(11063), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126292] = 12, + [126262] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11069), 1, + ACTIONS(11065), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126337] = 12, + [126307] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11069), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(11067), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + [126334] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11071), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126382] = 12, + [126379] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11073), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126427] = 14, + [126424] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10626), 1, anon_sym_PIPE_PIPE, - ACTIONS(10682), 1, + ACTIONS(10628), 1, anon_sym_AMP_AMP, - ACTIONS(10684), 1, + ACTIONS(10630), 1, anon_sym_PIPE, - ACTIONS(10686), 1, + ACTIONS(10632), 1, anon_sym_CARET, - ACTIONS(10688), 1, + ACTIONS(10634), 1, anon_sym_AMP, - ACTIONS(10690), 1, + ACTIONS(10636), 1, anon_sym_EQ_EQ, - ACTIONS(10692), 1, + ACTIONS(10638), 1, anon_sym_BANG_EQ, ACTIONS(11075), 1, anon_sym_RPAREN, - ACTIONS(10676), 2, + ACTIONS(10622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10694), 2, + ACTIONS(10640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10696), 2, + ACTIONS(10642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10698), 2, + ACTIONS(10644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10678), 3, + ACTIONS(10624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [126476] = 12, + [126473] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11077), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126521] = 12, + [126518] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11079), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126566] = 12, + [126563] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11081), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126611] = 12, + [126608] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11083), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126656] = 14, + [126653] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10680), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10682), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10684), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10686), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10688), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(10690), 1, - anon_sym_EQ_EQ, - ACTIONS(10692), 1, - anon_sym_BANG_EQ, ACTIONS(11085), 1, - anon_sym_RPAREN, - ACTIONS(10676), 2, + anon_sym_LF, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10694), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10696), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10698), 2, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10678), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [126705] = 12, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [126698] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11087), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126750] = 12, + [126743] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11069), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(11067), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + [126770] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11089), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126795] = 12, + [126815] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11091), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126840] = 10, - ACTIONS(11093), 1, - aux_sym_preproc_include_token1, - ACTIONS(11096), 1, - aux_sym_preproc_def_token1, - ACTIONS(11099), 1, - aux_sym_preproc_if_token1, - ACTIONS(11105), 1, - sym_preproc_directive, - ACTIONS(11108), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11110), 1, - aux_sym_select_case_statement_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11102), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11113), 2, - sym__integer_literal, - aux_sym_end_select_statement_token1, - STATE(5360), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_case, - sym_preproc_ifdef_in_select_case, - sym_case_statement, - aux_sym_select_case_statement_repeat1, - [126881] = 12, + [126860] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11115), 1, + ACTIONS(11093), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126926] = 12, + [126905] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11117), 1, + ACTIONS(11095), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [126971] = 12, + [126950] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11119), 1, + ACTIONS(11097), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [127016] = 12, + [126995] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11121), 1, + ACTIONS(11099), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [127061] = 12, + [127040] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, - ACTIONS(11123), 1, + ACTIONS(11101), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [127106] = 12, + [127085] = 10, + ACTIONS(11103), 1, + aux_sym_preproc_include_token1, + ACTIONS(11106), 1, + aux_sym_preproc_def_token1, + ACTIONS(11109), 1, + aux_sym_preproc_if_token1, + ACTIONS(11115), 1, + sym_preproc_directive, + ACTIONS(11118), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11120), 1, + aux_sym_select_case_statement_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11112), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11123), 2, + sym__integer_literal, + aux_sym_end_select_statement_token1, + STATE(5365), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_case, + sym_preproc_ifdef_in_select_case, + sym_case_statement, + aux_sym_select_case_statement_repeat1, + [127126] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11125), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [127151] = 12, + [127171] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11127), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [127196] = 12, + [127216] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11129), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [127241] = 12, + [127261] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11131), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [127286] = 12, + [127306] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10726), 1, anon_sym_PIPE_PIPE, - ACTIONS(10742), 1, + ACTIONS(10728), 1, anon_sym_AMP_AMP, - ACTIONS(10744), 1, + ACTIONS(10730), 1, anon_sym_PIPE, - ACTIONS(10746), 1, + ACTIONS(10732), 1, anon_sym_CARET, - ACTIONS(10748), 1, + ACTIONS(10734), 1, anon_sym_AMP, ACTIONS(11133), 1, anon_sym_LF, - ACTIONS(10736), 2, + ACTIONS(10722), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(10750), 2, + ACTIONS(10736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10754), 2, + ACTIONS(10740), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10738), 3, + ACTIONS(10724), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10752), 4, + ACTIONS(10738), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [127331] = 10, - ACTIONS(10622), 1, - aux_sym_module_statement_token1, - ACTIONS(11045), 1, - aux_sym_preproc_else_token1, - ACTIONS(11047), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11135), 1, - aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, - ACTIONS(21), 2, - anon_sym_AMP, + [127351] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(11049), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(5424), 2, - sym_procedure_statement, - aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(7524), 3, - sym_preproc_else_in_bound_procedures, - sym_preproc_elif_in_bound_procedures, - sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127371] = 10, - ACTIONS(10622), 1, + ACTIONS(10726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10728), 1, + anon_sym_AMP_AMP, + ACTIONS(10730), 1, + anon_sym_PIPE, + ACTIONS(10732), 1, + anon_sym_CARET, + ACTIONS(10734), 1, + anon_sym_AMP, + ACTIONS(11135), 1, + anon_sym_LF, + ACTIONS(10722), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(10736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10724), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10738), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [127396] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, ACTIONS(11137), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5424), 2, + STATE(5456), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8063), 3, + STATE(8041), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127411] = 10, - ACTIONS(10622), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127436] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, ACTIONS(11139), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5424), 2, + STATE(5389), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8120), 3, + STATE(8212), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127451] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127476] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -571332,7 +571364,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [127477] = 3, + [127502] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -571355,263 +571387,254 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [127503] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11151), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(11149), 15, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [127529] = 10, - ACTIONS(10622), 1, + [127528] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11153), 1, + ACTIONS(11149), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5381), 2, + STATE(5378), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8106), 3, + STATE(8368), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127569] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127568] = 10, + ACTIONS(10680), 1, + aux_sym_module_statement_token1, + ACTIONS(11017), 1, + aux_sym_preproc_else_token1, + ACTIONS(11019), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11149), 1, + aux_sym_preproc_if_token2, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11157), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(11155), 15, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + STATE(5456), 2, + sym_procedure_statement, + aux_sym_preproc_if_in_bound_procedures_repeat1, + STATE(8368), 3, + sym_preproc_else_in_bound_procedures, + sym_preproc_elif_in_bound_procedures, + sym_preproc_elifdef_in_bound_procedures, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [127595] = 10, - ACTIONS(10622), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127608] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11159), 1, + ACTIONS(11151), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5384), 2, + STATE(5456), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8280), 3, + STATE(7567), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127635] = 10, - ACTIONS(10622), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127648] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11161), 1, + ACTIONS(11153), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5424), 2, + STATE(5372), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8290), 3, + STATE(7660), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127675] = 10, - ACTIONS(10622), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127688] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11163), 1, + ACTIONS(11155), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5424), 2, + STATE(5456), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8291), 3, + STATE(7663), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127715] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127728] = 10, + ACTIONS(10680), 1, + aux_sym_module_statement_token1, + ACTIONS(11017), 1, + aux_sym_preproc_else_token1, + ACTIONS(11019), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11157), 1, + aux_sym_preproc_if_token2, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11167), 2, - aux_sym_preproc_elif_token1, - aux_sym__intrinsic_type_token4, - ACTIONS(11165), 15, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + STATE(5456), 2, + sym_procedure_statement, + aux_sym_preproc_if_in_bound_procedures_repeat1, + STATE(7667), 3, + sym_preproc_else_in_bound_procedures, + sym_preproc_elif_in_bound_procedures, + sym_preproc_elifdef_in_bound_procedures, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token8, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - aux_sym_derived_type_token1, - [127741] = 10, - ACTIONS(10622), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127768] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11169), 1, + ACTIONS(11159), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5424), 2, + STATE(5383), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8064), 3, + STATE(8102), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127781] = 10, - ACTIONS(10622), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127808] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11171), 1, + ACTIONS(11139), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5424), 2, + STATE(5456), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8346), 3, + STATE(8212), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127821] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127848] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11175), 2, + ACTIONS(11163), 2, aux_sym_preproc_elif_token1, aux_sym__intrinsic_type_token4, - ACTIONS(11173), 15, + ACTIONS(11161), 15, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -571627,183 +571650,200 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [127847] = 10, - ACTIONS(10622), 1, + [127874] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11153), 1, + ACTIONS(11165), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5424), 2, + STATE(5456), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8106), 3, + STATE(7952), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127914] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11169), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(11167), 15, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127887] = 10, - ACTIONS(10622), 1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + [127940] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11177), 1, + ACTIONS(11171), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(5380), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8075), 3, + STATE(7913), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127927] = 10, - ACTIONS(10622), 1, - aux_sym_module_statement_token1, - ACTIONS(11045), 1, - aux_sym_preproc_else_token1, - ACTIONS(11047), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11137), 1, - aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [127980] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11175), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(11173), 15, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5383), 2, - sym_procedure_statement, - aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(8063), 3, - sym_preproc_else_in_bound_procedures, - sym_preproc_elif_in_bound_procedures, - sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [127967] = 10, - ACTIONS(10622), 1, + aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + aux_sym_derived_type_token1, + [128006] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11179), 1, + ACTIONS(11177), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5372), 2, + STATE(5456), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(7673), 3, + STATE(7885), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [128007] = 10, - ACTIONS(10622), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [128046] = 10, + ACTIONS(10680), 1, aux_sym_module_statement_token1, - ACTIONS(11045), 1, + ACTIONS(11017), 1, aux_sym_preproc_else_token1, - ACTIONS(11047), 1, + ACTIONS(11019), 1, aux_sym_preproc_elif_token1, - ACTIONS(11135), 1, + ACTIONS(11165), 1, aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11049), 2, + ACTIONS(11021), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(5373), 2, + STATE(5381), 2, sym_procedure_statement, aux_sym_preproc_if_in_bound_procedures_repeat1, - STATE(7524), 3, + STATE(7952), 3, sym_preproc_else_in_bound_procedures, sym_preproc_elif_in_bound_procedures, sym_preproc_elifdef_in_bound_procedures, - ACTIONS(8880), 5, + ACTIONS(8208), 5, aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [128047] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [128086] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4589), 7, - sym__integer_literal, - aux_sym_select_case_statement_token2, - aux_sym_select_rank_statement_token1, - aux_sym_end_select_statement_token1, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - ACTIONS(4587), 9, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, + ACTIONS(11181), 2, + aux_sym_preproc_elif_token1, + aux_sym__intrinsic_type_token4, + ACTIONS(11179), 15, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + aux_sym_module_procedure_statement_token1, aux_sym_implicit_statement_token3, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token8, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, aux_sym_derived_type_token1, - [128072] = 3, + [128112] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4577), 7, + ACTIONS(4417), 7, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_select_rank_statement_token1, @@ -571811,7 +571851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(4575), 9, + ACTIONS(4415), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -571821,11 +571861,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128097] = 3, + [128137] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4573), 7, + ACTIONS(4413), 7, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_select_rank_statement_token1, @@ -571833,7 +571873,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(4571), 9, + ACTIONS(4411), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -571843,11 +571883,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128122] = 3, + [128162] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4581), 7, + ACTIONS(4397), 7, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_select_rank_statement_token1, @@ -571855,7 +571895,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(4579), 9, + ACTIONS(4395), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -571865,11 +571905,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128147] = 3, + [128187] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4585), 7, + ACTIONS(4401), 7, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_select_rank_statement_token1, @@ -571877,7 +571917,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(4583), 9, + ACTIONS(4399), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -571887,11 +571927,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128172] = 3, + [128212] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4561), 7, + ACTIONS(4393), 7, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_select_rank_statement_token1, @@ -571899,7 +571939,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(4559), 9, + ACTIONS(4391), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -571909,11 +571949,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128197] = 3, + [128237] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4569), 7, + ACTIONS(4405), 7, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_select_rank_statement_token1, @@ -571921,7 +571961,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(4567), 9, + ACTIONS(4403), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -571931,19 +571971,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128222] = 4, - ACTIONS(11183), 1, - sym_preproc_comment, + [128262] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11185), 5, + ACTIONS(4409), 7, sym__integer_literal, + aux_sym_select_case_statement_token2, + aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(11181), 9, + ACTIONS(4407), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -571953,47 +571993,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128248] = 8, - ACTIONS(10401), 1, + [128287] = 8, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10409), 1, - sym_preproc_directive, - ACTIONS(10662), 1, - aux_sym_preproc_if_token1, - ACTIONS(10666), 1, - aux_sym_select_case_statement_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10664), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(5187), 8, - sym_preproc_include, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_select_case, - sym_preproc_ifdef_in_select_case, - sym_case_statement, - aux_sym_select_case_statement_repeat1, - [128282] = 8, - ACTIONS(10401), 1, - aux_sym_preproc_include_token1, ACTIONS(10403), 1, - aux_sym_preproc_def_token1, - ACTIONS(10409), 1, sym_preproc_directive, - ACTIONS(10656), 1, + ACTIONS(10698), 1, aux_sym_preproc_if_token1, - ACTIONS(10660), 1, + ACTIONS(10702), 1, aux_sym_select_rank_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10658), 2, + ACTIONS(10700), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, STATE(5188), 8, @@ -572005,19 +572019,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_rank, sym_rank_statement, aux_sym_select_rank_statement_repeat1, - [128316] = 4, - ACTIONS(11189), 1, + [128321] = 4, + ACTIONS(11185), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11191), 5, + ACTIONS(11187), 5, sym__integer_literal, aux_sym_end_select_statement_token1, aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(11187), 9, + ACTIONS(11183), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -572027,19 +572041,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128342] = 4, - ACTIONS(11195), 1, + [128347] = 8, + ACTIONS(10395), 1, + aux_sym_preproc_include_token1, + ACTIONS(10397), 1, + aux_sym_preproc_def_token1, + ACTIONS(10403), 1, + sym_preproc_directive, + ACTIONS(10698), 1, + aux_sym_preproc_if_token1, + ACTIONS(10702), 1, + aux_sym_select_rank_statement_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10700), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(5207), 8, + sym_preproc_include, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_select_rank, + sym_preproc_ifdef_in_select_rank, + sym_rank_statement, + aux_sym_select_rank_statement_repeat1, + [128381] = 4, + ACTIONS(11191), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11197), 5, + ACTIONS(11193), 5, sym__integer_literal, aux_sym_end_select_statement_token1, aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(11193), 9, + ACTIONS(11189), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -572049,24 +572089,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128368] = 8, - ACTIONS(10401), 1, + [128407] = 8, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10409), 1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10662), 1, + ACTIONS(10646), 1, aux_sym_preproc_if_token1, - ACTIONS(10666), 1, + ACTIONS(10650), 1, aux_sym_select_case_statement_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10664), 2, + ACTIONS(10648), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5197), 8, + STATE(5178), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -572075,24 +572115,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_case, sym_case_statement, aux_sym_select_case_statement_repeat1, - [128402] = 8, - ACTIONS(10401), 1, + [128441] = 8, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10409), 1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10662), 1, + ACTIONS(10646), 1, aux_sym_preproc_if_token1, - ACTIONS(10666), 1, + ACTIONS(10650), 1, aux_sym_select_case_statement_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10664), 2, + ACTIONS(10648), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5205), 8, + STATE(5186), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -572101,72 +572141,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_case, sym_case_statement, aux_sym_select_case_statement_repeat1, - [128436] = 8, - ACTIONS(10401), 1, + [128475] = 8, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, - ACTIONS(10403), 1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - ACTIONS(10409), 1, + ACTIONS(10403), 1, sym_preproc_directive, - ACTIONS(10656), 1, + ACTIONS(10646), 1, aux_sym_preproc_if_token1, - ACTIONS(10660), 1, - aux_sym_select_rank_statement_token1, + ACTIONS(10650), 1, + aux_sym_select_case_statement_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10658), 2, + ACTIONS(10648), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5198), 8, + STATE(5190), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, - sym_preproc_if_in_select_rank, - sym_preproc_ifdef_in_select_rank, - sym_rank_statement, - aux_sym_select_rank_statement_repeat1, - [128470] = 4, - ACTIONS(11201), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11203), 5, - sym__integer_literal, - aux_sym_end_select_statement_token1, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - ACTIONS(11199), 9, + sym_preproc_if_in_select_case, + sym_preproc_ifdef_in_select_case, + sym_case_statement, + aux_sym_select_case_statement_repeat1, + [128509] = 8, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - [128496] = 8, - ACTIONS(10401), 1, - aux_sym_preproc_include_token1, ACTIONS(10403), 1, - aux_sym_preproc_def_token1, - ACTIONS(10409), 1, sym_preproc_directive, - ACTIONS(10656), 1, + ACTIONS(10698), 1, aux_sym_preproc_if_token1, - ACTIONS(10660), 1, + ACTIONS(10702), 1, aux_sym_select_rank_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10658), 2, + ACTIONS(10700), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5179), 8, + STATE(5192), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -572175,46 +572193,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_rank, sym_rank_statement, aux_sym_select_rank_statement_repeat1, - [128530] = 4, - ACTIONS(11207), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11209), 5, - sym__integer_literal, - aux_sym_end_select_statement_token1, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - ACTIONS(11205), 9, + [128543] = 8, + ACTIONS(10395), 1, aux_sym_preproc_include_token1, + ACTIONS(10397), 1, aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - [128556] = 8, - ACTIONS(10401), 1, - aux_sym_preproc_include_token1, ACTIONS(10403), 1, - aux_sym_preproc_def_token1, - ACTIONS(10409), 1, sym_preproc_directive, - ACTIONS(10656), 1, + ACTIONS(10698), 1, aux_sym_preproc_if_token1, - ACTIONS(10660), 1, + ACTIONS(10702), 1, aux_sym_select_rank_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10658), 2, + ACTIONS(10700), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(5181), 8, + STATE(5194), 8, sym_preproc_include, sym_preproc_def, sym_preproc_function_def, @@ -572223,41 +572219,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_ifdef_in_select_rank, sym_rank_statement, aux_sym_select_rank_statement_repeat1, - [128590] = 4, - ACTIONS(11213), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11215), 5, - sym__integer_literal, - aux_sym_end_select_statement_token1, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - ACTIONS(11211), 9, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - [128616] = 4, - ACTIONS(11219), 1, + [128577] = 4, + ACTIONS(11197), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11221), 5, + ACTIONS(11199), 5, sym__integer_literal, aux_sym_end_select_statement_token1, aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(11217), 9, + ACTIONS(11195), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -572267,19 +572241,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128642] = 4, - ACTIONS(11225), 1, + [128603] = 4, + ACTIONS(11203), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11227), 5, + ACTIONS(11205), 5, sym__integer_literal, aux_sym_end_select_statement_token1, aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(11223), 9, + ACTIONS(11201), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -572289,111 +572263,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128668] = 10, - ACTIONS(830), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11229), 1, - aux_sym_preproc_if_token2, - ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - STATE(889), 1, - sym_end_program_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11233), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7588), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8375), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [128705] = 8, - ACTIONS(740), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11239), 1, - aux_sym_preproc_if_token2, - ACTIONS(11241), 1, - aux_sym_preproc_else_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11243), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7521), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(7868), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8113), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [128738] = 4, - ACTIONS(11249), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11245), 2, - aux_sym_preproc_if_token1, - aux_sym_end_program_statement_token1, - ACTIONS(11247), 11, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_module_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [128763] = 4, - ACTIONS(11255), 1, + [128629] = 4, + ACTIONS(11209), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11251), 2, - aux_sym_preproc_if_token1, - aux_sym_end_program_statement_token1, - ACTIONS(11253), 11, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_module_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [128788] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11259), 5, + ACTIONS(11211), 5, sym__integer_literal, aux_sym_end_select_statement_token1, aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(11257), 9, + ACTIONS(11207), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -572403,260 +572285,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [128811] = 4, - ACTIONS(11265), 1, + [128655] = 4, + ACTIONS(11215), 1, sym_preproc_comment, ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11261), 2, - aux_sym_preproc_if_token1, - aux_sym_end_program_statement_token1, - ACTIONS(11263), 11, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_module_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [128836] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11269), 5, - sym__integer_literal, - aux_sym_end_select_statement_token1, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - ACTIONS(11267), 9, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - [128859] = 10, - ACTIONS(830), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11271), 1, - aux_sym_preproc_if_token2, - STATE(903), 1, - sym_end_program_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11233), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8347), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8353), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [128896] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11275), 5, - sym__integer_literal, - aux_sym_end_select_statement_token1, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - ACTIONS(11273), 9, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - [128919] = 10, - ACTIONS(830), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11277), 1, - aux_sym_preproc_if_token2, - STATE(903), 1, - sym_end_program_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11233), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8355), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8371), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [128956] = 8, - ACTIONS(740), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, - aux_sym_preproc_else_token1, - ACTIONS(11279), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11243), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7481), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8096), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8307), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [128989] = 7, - ACTIONS(11283), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11285), 1, - aux_sym_module_statement_token1, - STATE(3279), 1, - sym__procedure_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5424), 2, - sym_procedure_statement, - aux_sym_preproc_if_in_bound_procedures_repeat1, - ACTIONS(11281), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(11288), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [129020] = 8, - ACTIONS(740), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, - aux_sym_preproc_else_token1, - ACTIONS(11291), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11243), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7537), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8337), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8376), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [129053] = 10, - ACTIONS(830), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11293), 1, - aux_sym_preproc_if_token2, - STATE(889), 1, - sym_end_program_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11233), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7702), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8241), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [129090] = 10, - ACTIONS(830), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11295), 1, - aux_sym_preproc_if_token2, - STATE(889), 1, - sym_end_program_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11233), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7702), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8393), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [129127] = 3, + anon_sym_AMP, + sym_comment, + ACTIONS(11217), 5, + sym__integer_literal, + aux_sym_end_select_statement_token1, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + ACTIONS(11213), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + [128681] = 4, + ACTIONS(11221), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11227), 5, + ACTIONS(11223), 5, sym__integer_literal, aux_sym_end_select_statement_token1, aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(11223), 9, + ACTIONS(11219), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -572666,17 +572329,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [129150] = 3, + [128707] = 4, + ACTIONS(11227), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11299), 5, + ACTIONS(11229), 5, sym__integer_literal, aux_sym_end_select_statement_token1, aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(11297), 9, + ACTIONS(11225), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -572686,68 +572351,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [129173] = 10, - ACTIONS(830), 1, + [128733] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11301), 1, aux_sym_preproc_if_token2, - STATE(903), 1, - sym_end_program_statement, + ACTIONS(11233), 1, + aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7704), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8020), 3, + STATE(8035), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [129210] = 8, - ACTIONS(740), 1, + STATE(8036), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8292), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [128766] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, - aux_sym_preproc_else_token1, - ACTIONS(11303), 1, + ACTIONS(11237), 1, aux_sym_preproc_if_token2, + ACTIONS(11239), 1, + aux_sym_preproc_else_token1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + STATE(859), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7528), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8168), 3, + STATE(7510), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8178), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - [129243] = 4, - ACTIONS(11309), 1, + STATE(7762), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [128803] = 4, + ACTIONS(11251), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11305), 2, + ACTIONS(11247), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11307), 11, + ACTIONS(11249), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -572755,989 +572420,1280 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [129268] = 8, - ACTIONS(740), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [128828] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11311), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11253), 1, aux_sym_preproc_if_token2, + STATE(859), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7529), 3, + STATE(7719), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8183), 3, + STATE(8101), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [128865] = 8, + ACTIONS(740), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11233), 1, + aux_sym_preproc_else_token1, + ACTIONS(11255), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11235), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7635), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8204), 3, + STATE(7929), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [129301] = 3, + STATE(8021), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [128898] = 4, + ACTIONS(11261), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11315), 5, - sym__integer_literal, - aux_sym_end_select_statement_token1, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - ACTIONS(11313), 9, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, + ACTIONS(11257), 2, aux_sym_preproc_if_token1, + aux_sym_end_program_statement_token1, + ACTIONS(11259), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - [129324] = 8, + aux_sym_module_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [128923] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11317), 1, + ACTIONS(11263), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7482), 3, + STATE(7668), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8324), 3, + STATE(8070), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8385), 3, + STATE(8267), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [129357] = 8, - ACTIONS(740), 1, + [128956] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11319), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11265), 1, aux_sym_preproc_if_token2, + STATE(859), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7466), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7535), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8312), 3, + STATE(7510), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [129390] = 8, + STATE(7595), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [128993] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11321), 1, + ACTIONS(11267), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7476), 3, + STATE(7525), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - STATE(7536), 3, + STATE(7706), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(7746), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8345), 3, + [129026] = 8, + ACTIONS(740), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11233), 1, + aux_sym_preproc_else_token1, + ACTIONS(11269), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11235), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7905), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [129423] = 10, - ACTIONS(830), 1, + STATE(8080), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8152), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [129059] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11323), 1, + ACTIONS(11271), 1, aux_sym_preproc_if_token2, - STATE(889), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8308), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8375), 3, + STATE(8203), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [129460] = 10, - ACTIONS(830), 1, + STATE(8217), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [129096] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11325), 1, + ACTIONS(11273), 1, aux_sym_preproc_if_token2, - STATE(889), 1, - sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8126), 3, + STATE(7533), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(7934), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8326), 3, + STATE(7938), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [129497] = 10, - ACTIONS(830), 1, + [129129] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11325), 1, + ACTIONS(11275), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(859), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8126), 3, + STATE(7610), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8326), 3, + STATE(7617), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [129534] = 8, + [129166] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11327), 1, + ACTIONS(11277), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7517), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7540), 3, + STATE(7670), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(7623), 3, + STATE(8239), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [129567] = 4, - ACTIONS(11333), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11329), 2, - aux_sym_preproc_if_token1, - aux_sym_end_program_statement_token1, - ACTIONS(11331), 11, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_module_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [129592] = 4, - ACTIONS(11339), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11335), 2, - aux_sym_preproc_if_token1, - aux_sym_end_program_statement_token1, - ACTIONS(11337), 11, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_module_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [129617] = 10, - ACTIONS(830), 1, + STATE(8322), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [129199] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11341), 1, + ACTIONS(11273), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8368), 3, + STATE(7934), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8372), 3, + STATE(7938), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [129654] = 8, + [129236] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11343), 1, + ACTIONS(11279), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7578), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(7934), 3, + STATE(7927), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7947), 3, + STATE(8081), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8156), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [129687] = 8, + [129269] = 10, + ACTIONS(832), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11239), 1, + aux_sym_preproc_else_token1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11281), 1, + aux_sym_preproc_if_token2, + STATE(852), 1, + sym_end_program_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7599), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8076), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [129306] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11345), 1, + ACTIONS(11283), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8005), 3, + STATE(8023), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - STATE(8296), 3, + STATE(8261), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8297), 3, + STATE(8274), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [129720] = 8, + [129339] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11341), 1, + ACTIONS(11285), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8018), 3, + STATE(8024), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - STATE(8368), 3, + STATE(8286), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8372), 3, + STATE(8304), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [129753] = 10, - ACTIONS(830), 1, + [129372] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11347), 1, + ACTIONS(11287), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7594), 3, + STATE(8012), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7924), 3, + STATE(8018), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [129790] = 10, - ACTIONS(830), 1, + [129409] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11347), 1, + ACTIONS(11287), 1, aux_sym_preproc_if_token2, - STATE(889), 1, - sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7594), 3, + STATE(7539), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(8012), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7924), 3, + STATE(8018), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [129827] = 10, - ACTIONS(830), 1, + [129442] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11349), 1, + ACTIONS(11289), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7865), 3, + STATE(7639), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(7872), 3, + STATE(8161), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [129864] = 10, - ACTIONS(830), 1, + [129479] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11345), 1, + ACTIONS(11291), 1, aux_sym_preproc_if_token2, - STATE(889), 1, + STATE(859), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8296), 3, + STATE(8161), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8297), 3, + STATE(8288), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [129901] = 10, - ACTIONS(830), 1, + [129516] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11351), 1, + ACTIONS(11293), 1, aux_sym_preproc_if_token2, - STATE(889), 1, - sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7473), 3, + STATE(7541), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8375), 3, + STATE(7592), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [129938] = 3, + STATE(8183), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [129549] = 10, + ACTIONS(832), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11239), 1, + aux_sym_preproc_else_token1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11295), 1, + aux_sym_preproc_if_token2, + STATE(859), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11355), 5, - sym__integer_literal, - aux_sym_end_select_statement_token1, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - ACTIONS(11353), 9, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - [129961] = 10, - ACTIONS(830), 1, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7510), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(7745), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [129586] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11357), 1, + ACTIONS(11297), 1, aux_sym_preproc_if_token2, - STATE(889), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7596), 3, + STATE(7565), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8126), 3, + STATE(8362), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [129998] = 10, - ACTIONS(830), 1, + [129623] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11357), 1, + ACTIONS(11299), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7596), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8126), 3, + STATE(8161), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [130035] = 10, - ACTIONS(830), 1, + STATE(8191), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [129660] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11359), 1, + ACTIONS(11289), 1, aux_sym_preproc_if_token2, - STATE(889), 1, + STATE(859), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7509), 3, + STATE(7639), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(7702), 3, + STATE(8161), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [130072] = 8, + [129697] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11361), 1, + ACTIONS(11301), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7606), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7888), 3, + STATE(7529), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8139), 3, + STATE(7903), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [130105] = 10, - ACTIONS(830), 1, + STATE(8116), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [129730] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11363), 1, + ACTIONS(11303), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(859), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7594), 3, + STATE(8101), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7933), 3, + STATE(8108), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130142] = 10, - ACTIONS(830), 1, + [129767] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11363), 1, + ACTIONS(11305), 1, aux_sym_preproc_if_token2, - STATE(889), 1, - sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7594), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(7933), 3, + STATE(7530), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130179] = 10, - ACTIONS(830), 1, + STATE(7979), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(8125), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [129800] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11341), 1, + ACTIONS(11307), 1, aux_sym_preproc_if_token2, - STATE(889), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8368), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8372), 3, + STATE(8124), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130216] = 10, - ACTIONS(830), 1, + STATE(8362), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [129837] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11365), 1, + ACTIONS(11309), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(859), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8020), 3, + STATE(7980), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8137), 3, + STATE(8112), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130253] = 10, - ACTIONS(830), 1, + [129874] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11291), 1, + ACTIONS(11309), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8337), 3, + STATE(7980), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(8112), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8376), 3, + [129911] = 8, + ACTIONS(740), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11233), 1, + aux_sym_preproc_else_token1, + ACTIONS(11275), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11235), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7610), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [130290] = 10, - ACTIONS(830), 1, + STATE(7617), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8083), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [129944] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, ACTIONS(11231), 1, + aux_sym_preproc_if_token2, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11367), 1, - aux_sym_preproc_if_token2, - STATE(889), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8126), 3, + STATE(8035), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8173), 3, + STATE(8036), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130327] = 8, - ACTIONS(740), 1, + [129981] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11369), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11287), 1, aux_sym_preproc_if_token2, + STATE(859), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7471), 3, + STATE(8012), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7475), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7921), 3, + STATE(8018), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130360] = 8, - ACTIONS(740), 1, + [130018] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11371), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11291), 1, aux_sym_preproc_if_token2, + STATE(852), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7718), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7768), 3, + STATE(8161), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7922), 3, + STATE(8288), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130393] = 8, - ACTIONS(740), 1, + [130055] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11373), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11285), 1, aux_sym_preproc_if_token2, + STATE(859), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7919), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8316), 3, + STATE(8286), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8318), 3, + STATE(8304), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130426] = 8, - ACTIONS(740), 1, + [130092] = 4, + ACTIONS(11315), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11311), 2, + aux_sym_preproc_if_token1, + aux_sym_end_program_statement_token1, + ACTIONS(11313), 11, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_module_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [130117] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11271), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11317), 1, aux_sym_preproc_if_token2, + STATE(852), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7928), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8347), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8353), 3, + STATE(7733), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130459] = 8, - ACTIONS(740), 1, + STATE(8076), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [130154] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11277), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11319), 1, aux_sym_preproc_if_token2, + STATE(852), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7930), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8355), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8371), 3, + STATE(7606), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130492] = 8, + STATE(8076), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [130191] = 7, + ACTIONS(11323), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11325), 1, + aux_sym_module_statement_token1, + STATE(3278), 1, + sym_procedure_kind, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5456), 2, + sym_procedure_statement, + aux_sym_preproc_if_in_bound_procedures_repeat1, + ACTIONS(11321), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(11328), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [130222] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11375), 1, + ACTIONS(11331), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7463), 3, + STATE(7522), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8240), 3, + STATE(7647), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8366), 3, + STATE(7948), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [130525] = 8, - ACTIONS(740), 1, + [130255] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11377), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11299), 1, aux_sym_preproc_if_token2, + STATE(859), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7620), 3, + STATE(8161), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7923), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7961), 3, + STATE(8191), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [130292] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11335), 5, + sym__integer_literal, + aux_sym_end_select_statement_token1, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + ACTIONS(11333), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + [130315] = 4, + ACTIONS(11341), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11337), 2, + aux_sym_preproc_if_token1, + aux_sym_end_program_statement_token1, + ACTIONS(11339), 11, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_module_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [130340] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11345), 5, + sym__integer_literal, + aux_sym_end_select_statement_token1, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + ACTIONS(11343), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + [130363] = 4, + ACTIONS(11351), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11347), 2, + aux_sym_preproc_if_token1, + aux_sym_end_program_statement_token1, + ACTIONS(11349), 11, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_module_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [130388] = 10, + ACTIONS(832), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11239), 1, + aux_sym_preproc_else_token1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11353), 1, + aux_sym_preproc_if_token2, + STATE(859), 1, + sym_end_program_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7980), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(7985), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130558] = 3, + [130425] = 4, + ACTIONS(11359), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11355), 2, + aux_sym_preproc_if_token1, + aux_sym_end_program_statement_token1, + ACTIONS(11357), 11, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_module_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [130450] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11217), 5, + sym__integer_literal, + aux_sym_end_select_statement_token1, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + ACTIONS(11213), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + [130473] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11199), 5, + sym__integer_literal, + aux_sym_end_select_statement_token1, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + ACTIONS(11195), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + [130496] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11209), 5, + ACTIONS(11363), 5, sym__integer_literal, aux_sym_end_select_statement_token1, aux_sym_type_statement_token2, aux_sym_type_statement_token3, aux_sym__class_default_token1, - ACTIONS(11205), 9, + ACTIONS(11361), 9, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -573747,276 +573703,381 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_end_program_statement_token1, aux_sym_implicit_statement_token3, aux_sym_derived_type_token1, - [130581] = 8, + [130519] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11379), 1, + ACTIONS(11365), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7655), 3, + STATE(8072), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7964), 3, + STATE(8117), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8041), 3, + STATE(8178), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [130614] = 10, - ACTIONS(830), 1, + [130552] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11381), 1, + ACTIONS(11367), 1, aux_sym_preproc_if_token2, - STATE(889), 1, + STATE(859), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7612), 3, + STATE(8101), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7720), 3, + STATE(8282), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130651] = 10, - ACTIONS(830), 1, + [130589] = 4, + ACTIONS(11373), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11369), 2, + aux_sym_preproc_if_token1, + aux_sym_end_program_statement_token1, + ACTIONS(11371), 11, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_module_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [130614] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11377), 5, + sym__integer_literal, + aux_sym_end_select_statement_token1, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + ACTIONS(11375), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + [130637] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11383), 1, + ACTIONS(11283), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(859), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7594), 3, + STATE(8261), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7626), 3, + STATE(8274), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130688] = 8, - ACTIONS(740), 1, + [130674] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11385), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11379), 1, aux_sym_preproc_if_token2, + STATE(859), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7522), 3, + STATE(7705), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(7989), 3, + STATE(7980), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8091), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - [130721] = 8, + [130711] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11387), 1, + ACTIONS(11381), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8006), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8051), 3, + STATE(7722), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8356), 3, + STATE(7936), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [130754] = 8, + STATE(8031), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [130744] = 8, ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11381), 1, + ACTIONS(11383), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7602), 3, + STATE(7483), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - STATE(7612), 3, + STATE(7516), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7720), 3, + STATE(7997), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130787] = 8, - ACTIONS(740), 1, + [130777] = 10, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11241), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11389), 1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11379), 1, aux_sym_preproc_if_token2, + STATE(852), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11243), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7464), 3, + STATE(7705), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(7980), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7523), 3, + [130814] = 4, + ACTIONS(11389), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11385), 2, + aux_sym_preproc_if_token1, + aux_sym_end_program_statement_token1, + ACTIONS(11387), 11, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_module_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [130839] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11393), 5, + sym__integer_literal, + aux_sym_end_select_statement_token1, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + ACTIONS(11391), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + [130862] = 8, + ACTIONS(740), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11233), 1, + aux_sym_preproc_else_token1, + ACTIONS(11395), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11235), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7631), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(7870), 3, + STATE(8199), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [130820] = 10, - ACTIONS(830), 1, + STATE(8215), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [130895] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11391), 1, + ACTIONS(11397), 1, aux_sym_preproc_if_token2, - STATE(903), 1, - sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7872), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8364), 3, + STATE(7630), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130857] = 10, - ACTIONS(830), 1, + STATE(7727), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(8136), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [130928] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11367), 1, + ACTIONS(11399), 1, aux_sym_preproc_if_token2, - STATE(903), 1, - sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8126), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8173), 3, + STATE(7536), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130894] = 10, - ACTIONS(830), 1, + STATE(8163), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(8408), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [130961] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11383), 1, + ACTIONS(11401), 1, aux_sym_preproc_if_token2, - STATE(889), 1, - sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7594), 3, + STATE(7474), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7626), 3, + STATE(7537), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [130931] = 4, - ACTIONS(11397), 1, + STATE(8167), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [130994] = 4, + ACTIONS(11407), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11393), 2, + ACTIONS(11403), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11395), 11, + ACTIONS(11405), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574024,74 +574085,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [130956] = 10, - ACTIONS(830), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131019] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11233), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11399), 1, + ACTIONS(11271), 1, aux_sym_preproc_if_token2, - STATE(903), 1, - sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11235), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(8020), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(8203), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8099), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [130993] = 10, - ACTIONS(830), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - ACTIONS(11373), 1, - aux_sym_preproc_if_token2, - STATE(889), 1, - sym_end_program_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11233), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8316), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8318), 3, + STATE(8217), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [131030] = 4, - ACTIONS(11405), 1, + [131052] = 4, + ACTIONS(11413), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11401), 2, + ACTIONS(11409), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11403), 11, + ACTIONS(11411), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574099,20 +574131,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131055] = 4, - ACTIONS(11411), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131077] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11417), 5, + sym__integer_literal, + aux_sym_end_select_statement_token1, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + ACTIONS(11415), 9, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + [131100] = 4, + ACTIONS(11423), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11407), 2, + ACTIONS(11419), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11409), 11, + ACTIONS(11421), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574120,20 +574172,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131080] = 4, - ACTIONS(11417), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131125] = 4, + ACTIONS(11429), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11413), 2, + ACTIONS(11425), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11415), 11, + ACTIONS(11427), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574141,47 +574193,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131105] = 10, - ACTIONS(830), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131150] = 8, + ACTIONS(740), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11233), 1, + aux_sym_preproc_else_token1, + ACTIONS(11431), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11235), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7602), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8077), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(8123), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [131183] = 10, + ACTIONS(832), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11235), 1, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - ACTIONS(11419), 1, + ACTIONS(11433), 1, aux_sym_preproc_if_token2, - STATE(903), 1, + STATE(852), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7637), 3, + STATE(7509), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(7872), 3, + STATE(8362), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [131142] = 4, - ACTIONS(11425), 1, - sym_preproc_comment, + [131220] = 10, + ACTIONS(832), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11239), 1, + aux_sym_preproc_else_token1, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + ACTIONS(11353), 1, + aux_sym_preproc_if_token2, + STATE(852), 1, + sym_end_program_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7980), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(7985), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [131257] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11421), 2, + ACTIONS(11435), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11423), 11, + ACTIONS(11437), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574189,20 +574291,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131167] = 4, - ACTIONS(11431), 1, - sym_preproc_comment, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131279] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11427), 2, + ACTIONS(11439), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11429), 11, + ACTIONS(11441), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574210,18 +574310,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131192] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131301] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11433), 2, + ACTIONS(11443), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11435), 11, + ACTIONS(11445), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574229,76 +574329,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131214] = 13, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(7414), 1, - anon_sym_EQ, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(10285), 1, - anon_sym_STAR, - ACTIONS(11437), 1, - anon_sym_COMMA, - ACTIONS(11439), 1, - aux_sym_end_program_statement_token1, - STATE(2391), 1, - sym__argument_list, - STATE(5173), 1, - sym_character_length, - STATE(5174), 1, - sym_argument_list, - STATE(5201), 1, - sym_coarray_index, - STATE(5956), 1, - aux_sym_enumerator_statement_repeat1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131323] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11441), 2, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - [131256] = 13, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(7414), 1, - anon_sym_EQ, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(10285), 1, - anon_sym_STAR, - ACTIONS(11437), 1, - anon_sym_COMMA, - ACTIONS(11443), 1, + ACTIONS(4986), 2, + aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - STATE(2391), 1, - sym__argument_list, - STATE(5173), 1, - sym_character_length, - STATE(5174), 1, - sym_argument_list, - STATE(5201), 1, - sym_coarray_index, - STATE(5913), 1, - aux_sym_enumerator_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11445), 2, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - [131298] = 3, + ACTIONS(4988), 11, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_module_statement_token1, + aux_sym_module_procedure_statement_token1, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_end_type_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131345] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5045), 2, + ACTIONS(11447), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(5047), 11, + ACTIONS(11449), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574306,18 +574367,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131320] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131367] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11335), 2, + ACTIONS(11369), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11337), 11, + ACTIONS(11371), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574325,18 +574386,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131342] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131389] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5065), 2, + ACTIONS(11451), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(5067), 11, + ACTIONS(11453), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574344,18 +574405,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131364] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131411] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5069), 2, + ACTIONS(11311), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(5071), 11, + ACTIONS(11313), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574363,18 +574424,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131386] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131433] = 13, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(7440), 1, + anon_sym_EQ, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(10271), 1, + anon_sym_STAR, + ACTIONS(11455), 1, + anon_sym_COMMA, + ACTIONS(11457), 1, + aux_sym_end_program_statement_token1, + STATE(2529), 1, + sym__argument_list, + STATE(5168), 1, + sym_character_length, + STATE(5171), 1, + sym_argument_list, + STATE(5205), 1, + sym_coarray_index, + STATE(6013), 1, + aux_sym_enumerator_statement_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11459), 2, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [131475] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11421), 2, + ACTIONS(11461), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11423), 11, + ACTIONS(11463), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574382,37 +574472,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131408] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131497] = 14, + ACTIONS(9952), 1, + aux_sym_select_case_statement_token3, + ACTIONS(11465), 1, + aux_sym_do_loop_statement_token1, + ACTIONS(11467), 1, + aux_sym__inline_if_statement_token1, + ACTIONS(11469), 1, + aux_sym__inline_where_statement_token1, + ACTIONS(11471), 1, + aux_sym__forall_control_expression_token1, + ACTIONS(11473), 1, + aux_sym_select_case_statement_token1, + ACTIONS(11475), 1, + aux_sym_select_type_statement_token1, + ACTIONS(11477), 1, + aux_sym_select_rank_statement_token2, + ACTIONS(11479), 1, + aux_sym_block_construct_token1, + ACTIONS(11481), 1, + aux_sym_associate_statement_token1, + ACTIONS(11483), 1, + aux_sym_coarray_team_statement_token1, + ACTIONS(11485), 1, + aux_sym_coarray_critical_statement_token1, + STATE(6518), 1, + sym__forall_control_expression, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11447), 2, - aux_sym_preproc_if_token1, + [131541] = 13, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(7440), 1, + anon_sym_EQ, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(10271), 1, + anon_sym_STAR, + ACTIONS(11455), 1, + anon_sym_COMMA, + ACTIONS(11487), 1, aux_sym_end_program_statement_token1, - ACTIONS(11449), 11, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_module_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131430] = 3, + STATE(2529), 1, + sym__argument_list, + STATE(5168), 1, + sym_character_length, + STATE(5171), 1, + sym_argument_list, + STATE(5205), 1, + sym_coarray_index, + STATE(6039), 1, + aux_sym_enumerator_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11451), 2, + ACTIONS(11489), 2, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [131583] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11491), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11453), 11, + ACTIONS(11493), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574420,18 +574550,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131452] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131605] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5029), 2, + ACTIONS(11495), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(5031), 11, + ACTIONS(11497), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574439,18 +574569,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131474] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131627] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11455), 2, + ACTIONS(11425), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11457), 11, + ACTIONS(11427), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574458,18 +574588,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131496] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131649] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11459), 2, + ACTIONS(5002), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11461), 11, + ACTIONS(5004), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574477,18 +574607,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131518] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131671] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5053), 2, + ACTIONS(4998), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(5055), 11, + ACTIONS(5000), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574496,18 +574626,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131540] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131693] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11427), 2, + ACTIONS(11409), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11429), 11, + ACTIONS(11411), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574515,18 +574645,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131562] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131715] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11463), 2, + ACTIONS(4990), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11465), 11, + ACTIONS(4992), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574534,18 +574664,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131584] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131737] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11467), 2, + ACTIONS(4994), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11469), 11, + ACTIONS(4996), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574553,18 +574683,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131606] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131759] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4972), 2, + ACTIONS(5006), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(4974), 11, + ACTIONS(5008), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574572,18 +574702,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131628] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131781] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11471), 2, + ACTIONS(5063), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11473), 11, + ACTIONS(5065), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574591,18 +574721,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131650] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131803] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5033), 2, + ACTIONS(11499), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(5035), 11, + ACTIONS(11501), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574610,18 +574740,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131672] = 3, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131825] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11413), 2, + ACTIONS(4982), 2, aux_sym_preproc_if_token1, aux_sym_end_program_statement_token1, - ACTIONS(11415), 11, + ACTIONS(4984), 11, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, aux_sym_module_statement_token1, @@ -574629,93 +574759,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131694] = 14, - ACTIONS(9952), 1, - aux_sym_select_case_statement_token3, - ACTIONS(11475), 1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [131847] = 3, + ACTIONS(11505), 1, + aux_sym_select_case_statement_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11503), 11, aux_sym_do_loop_statement_token1, - ACTIONS(11477), 1, aux_sym__inline_if_statement_token1, - ACTIONS(11479), 1, aux_sym__inline_where_statement_token1, - ACTIONS(11481), 1, aux_sym__forall_control_expression_token1, - ACTIONS(11483), 1, - aux_sym_select_case_statement_token1, - ACTIONS(11485), 1, + aux_sym_select_case_statement_token3, aux_sym_select_type_statement_token1, - ACTIONS(11487), 1, aux_sym_select_rank_statement_token2, - ACTIONS(11489), 1, aux_sym_block_construct_token1, - ACTIONS(11491), 1, aux_sym_associate_statement_token1, - ACTIONS(11493), 1, aux_sym_coarray_team_statement_token1, - ACTIONS(11495), 1, aux_sym_coarray_critical_statement_token1, - STATE(6534), 1, - sym__forall_control_expression, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [131738] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(5041), 2, - aux_sym_preproc_if_token1, - aux_sym_end_program_statement_token1, - ACTIONS(5043), 11, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_module_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131760] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11497), 2, - aux_sym_preproc_if_token1, - aux_sym_end_program_statement_token1, - ACTIONS(11499), 11, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_module_statement_token1, - aux_sym_module_procedure_statement_token1, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_end_type_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [131782] = 7, - ACTIONS(11501), 1, + [131868] = 7, + ACTIONS(11507), 1, aux_sym_implicit_statement_token2, - ACTIONS(11505), 1, + ACTIONS(11511), 1, aux_sym__intrinsic_type_token4, - ACTIONS(11507), 1, + ACTIONS(11513), 1, aux_sym__intrinsic_type_token8, - STATE(6162), 1, + STATE(6190), 1, sym__intrinsic_type, - STATE(7532), 1, + STATE(8019), 1, sym_intrinsic_type, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11503), 7, + ACTIONS(11509), 7, aux_sym__intrinsic_type_token1, aux_sym__intrinsic_type_token2, aux_sym__intrinsic_type_token3, @@ -574723,205 +574803,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__intrinsic_type_token7, aux_sym__intrinsic_type_token9, aux_sym__intrinsic_type_token10, - [131811] = 3, - ACTIONS(11511), 1, - aux_sym_select_case_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11509), 11, - aux_sym_do_loop_statement_token1, - aux_sym__inline_if_statement_token1, - aux_sym__inline_where_statement_token1, - aux_sym__forall_control_expression_token1, - aux_sym_select_case_statement_token3, - aux_sym_select_type_statement_token1, - aux_sym_select_rank_statement_token2, - aux_sym_block_construct_token1, - aux_sym_associate_statement_token1, - aux_sym_coarray_team_statement_token1, - aux_sym_coarray_critical_statement_token1, - [131832] = 11, + [131897] = 11, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(7414), 1, + ACTIONS(7440), 1, anon_sym_EQ, - ACTIONS(9472), 1, + ACTIONS(9509), 1, anon_sym_LBRACK, - ACTIONS(10285), 1, + ACTIONS(10271), 1, anon_sym_STAR, - ACTIONS(11515), 1, + ACTIONS(11517), 1, aux_sym_end_program_statement_token1, - STATE(2391), 1, + STATE(2529), 1, sym__argument_list, - STATE(5173), 1, + STATE(5168), 1, sym_character_length, - STATE(5174), 1, + STATE(5171), 1, sym_argument_list, - STATE(5201), 1, + STATE(5205), 1, sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11513), 3, + ACTIONS(11515), 3, anon_sym_COMMA, aux_sym_enumerator_statement_token1, aux_sym_end_enum_statement_token1, - [131869] = 7, - ACTIONS(830), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11291), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11233), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8337), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(8376), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [131897] = 7, - ACTIONS(1452), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11517), 1, - aux_sym_preproc_if_token2, - ACTIONS(11519), 1, - aux_sym_preproc_else_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11521), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7928), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8353), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [131925] = 7, - ACTIONS(830), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11341), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11233), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8368), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8372), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [131953] = 4, - ACTIONS(11525), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11527), 3, - sym__integer_literal, - aux_sym_select_case_statement_token2, - aux_sym_end_select_statement_token1, - ACTIONS(11523), 7, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - [131975] = 7, - ACTIONS(830), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11345), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11233), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8296), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8297), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [132003] = 7, + [131934] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, ACTIONS(11519), 1, - aux_sym_preproc_else_token1, - ACTIONS(11529), 1, aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11521), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7930), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8371), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [132031] = 7, - ACTIONS(1452), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11531), 1, - aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7529), 3, + STATE(7602), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8204), 3, + STATE(8077), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [132059] = 4, - ACTIONS(11535), 1, + [131962] = 4, + ACTIONS(11527), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11537), 3, + ACTIONS(11529), 3, sym__integer_literal, - aux_sym_select_rank_statement_token1, + aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11533), 7, + ACTIONS(11525), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -574929,17 +574868,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [132081] = 4, - ACTIONS(11541), 1, + [131984] = 4, + ACTIONS(11533), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11543), 3, + ACTIONS(11535), 3, sym__integer_literal, aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11539), 7, + ACTIONS(11531), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -574947,17 +574886,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [132103] = 4, - ACTIONS(11547), 1, + [132006] = 4, + ACTIONS(11539), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11549), 3, + ACTIONS(11541), 3, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11545), 7, + ACTIONS(11537), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -574965,17 +574904,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [132125] = 4, - ACTIONS(11553), 1, + [132028] = 4, + ACTIONS(11545), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11555), 3, + ACTIONS(11547), 3, sym__integer_literal, - aux_sym_select_rank_statement_token1, + aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11551), 7, + ACTIONS(11543), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -574983,103 +574922,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [132147] = 7, + [132050] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11557), 1, + ACTIONS(11549), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7466), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7535), 3, + STATE(7522), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132175] = 9, - ACTIONS(11559), 1, - anon_sym_COMMA, - ACTIONS(11561), 1, - anon_sym_RPAREN, - ACTIONS(11563), 1, - anon_sym_LPAREN2, - ACTIONS(11565), 1, - sym_edit_descriptor, - ACTIONS(11567), 1, - aux_sym_hollerith_constant_token1, - ACTIONS(11569), 1, - sym__string_literal, - ACTIONS(11571), 1, - sym__string_literal_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5537), 4, - sym__transfer_item, - sym_hollerith_constant, - sym_string_literal, - aux_sym__transfer_items_repeat1, - [132207] = 7, - ACTIONS(1452), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, - aux_sym_preproc_else_token1, - ACTIONS(11573), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11521), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7476), 3, + STATE(7948), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - STATE(7536), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [132235] = 7, - ACTIONS(1452), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, - aux_sym_preproc_else_token1, - ACTIONS(11575), 1, - aux_sym_preproc_if_token2, + [132078] = 4, + ACTIONS(11553), 1, + sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7517), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7540), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [132263] = 4, - ACTIONS(11579), 1, + ACTIONS(11555), 3, + sym__integer_literal, + aux_sym_select_rank_statement_token1, + aux_sym_end_select_statement_token1, + ACTIONS(11551), 7, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + [132100] = 4, + ACTIONS(11559), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11581), 3, + ACTIONS(11561), 3, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11577), 7, + ACTIONS(11557), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -575087,17 +574979,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [132285] = 4, - ACTIONS(11585), 1, + [132122] = 4, + ACTIONS(11565), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11587), 3, + ACTIONS(11567), 3, sym__integer_literal, - aux_sym_select_rank_statement_token1, + aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11583), 7, + ACTIONS(11563), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -575105,38 +574997,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [132307] = 7, - ACTIONS(830), 1, + [132144] = 7, + ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11359), 1, + ACTIONS(11569), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7509), 3, + STATE(7929), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(8021), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(7702), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [132335] = 4, - ACTIONS(11591), 1, + [132172] = 4, + ACTIONS(11573), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11593), 3, + ACTIONS(11575), 3, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11589), 7, + ACTIONS(11571), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -575144,166 +575036,228 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [132357] = 9, - ACTIONS(11595), 1, + [132194] = 7, + ACTIONS(1452), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11521), 1, + aux_sym_preproc_else_token1, + ACTIONS(11577), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11523), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7539), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(8018), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [132222] = 9, + ACTIONS(11579), 1, anon_sym_COMMA, - ACTIONS(11598), 1, + ACTIONS(11582), 1, anon_sym_RPAREN, - ACTIONS(11600), 1, + ACTIONS(11584), 1, anon_sym_LPAREN2, - ACTIONS(11603), 1, + ACTIONS(11587), 1, sym_edit_descriptor, - ACTIONS(11606), 1, + ACTIONS(11590), 1, aux_sym_hollerith_constant_token1, - ACTIONS(11609), 1, + ACTIONS(11593), 1, sym__string_literal, - ACTIONS(11612), 1, + ACTIONS(11596), 1, sym__string_literal_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5537), 4, + STATE(5531), 4, sym__transfer_item, sym_hollerith_constant, sym_string_literal, aux_sym__transfer_items_repeat1, - [132389] = 7, - ACTIONS(830), 1, + [132254] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11271), 1, + ACTIONS(11273), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8347), 3, + STATE(7934), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8353), 3, + STATE(7938), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132417] = 7, - ACTIONS(830), 1, + [132282] = 4, + ACTIONS(11601), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11603), 3, + sym__integer_literal, + aux_sym_select_rank_statement_token1, + aux_sym_end_select_statement_token1, + ACTIONS(11599), 7, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + [132304] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, ACTIONS(11231), 1, - aux_sym_preproc_else_token1, - ACTIONS(11277), 1, aux_sym_preproc_if_token2, + ACTIONS(11239), 1, + aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8355), 3, + STATE(8035), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8371), 3, + STATE(8036), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132445] = 7, - ACTIONS(830), 1, + [132332] = 7, + ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11351), 1, + ACTIONS(11605), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7473), 3, + STATE(8036), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8375), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [132473] = 7, - ACTIONS(830), 1, + STATE(8292), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [132360] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11367), 1, + ACTIONS(11297), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8126), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8173), 3, + STATE(7565), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132501] = 7, + STATE(8362), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [132388] = 9, + ACTIONS(11607), 1, + anon_sym_COMMA, + ACTIONS(11609), 1, + anon_sym_RPAREN, + ACTIONS(11611), 1, + anon_sym_LPAREN2, + ACTIONS(11613), 1, + sym_edit_descriptor, + ACTIONS(11615), 1, + aux_sym_hollerith_constant_token1, + ACTIONS(11617), 1, + sym__string_literal, + ACTIONS(11619), 1, + sym__string_literal_kind, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5531), 4, + sym__transfer_item, + sym_hollerith_constant, + sym_string_literal, + aux_sym__transfer_items_repeat1, + [132420] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11615), 1, + ACTIONS(11621), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7522), 3, + STATE(7617), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8091), 3, + STATE(8083), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [132529] = 7, - ACTIONS(830), 1, + [132448] = 7, + ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11373), 1, + ACTIONS(11623), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8316), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(8318), 3, + STATE(7525), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(7746), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132557] = 4, - ACTIONS(11619), 1, + [132476] = 4, + ACTIONS(11627), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11621), 3, + ACTIONS(11629), 3, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11617), 7, + ACTIONS(11625), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -575311,387 +575265,331 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [132579] = 7, - ACTIONS(830), 1, + [132498] = 7, + ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11381), 1, + ACTIONS(11631), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7612), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - STATE(7720), 3, + STATE(7533), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(7938), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132607] = 6, - ACTIONS(11505), 1, - aux_sym__intrinsic_type_token4, - ACTIONS(11507), 1, - aux_sym__intrinsic_type_token8, - STATE(6162), 1, - sym__intrinsic_type, - STATE(8292), 1, - sym_intrinsic_type, + [132526] = 7, + ACTIONS(1452), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11521), 1, + aux_sym_preproc_else_token1, + ACTIONS(11633), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11503), 7, - aux_sym__intrinsic_type_token1, - aux_sym__intrinsic_type_token2, - aux_sym__intrinsic_type_token3, - aux_sym__intrinsic_type_token6, - aux_sym__intrinsic_type_token7, - aux_sym__intrinsic_type_token9, - aux_sym__intrinsic_type_token10, - [132633] = 7, + ACTIONS(11523), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8080), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8152), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [132554] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11623), 1, + ACTIONS(11635), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7602), 3, + STATE(7936), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - STATE(7720), 3, + STATE(8031), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132661] = 4, - ACTIONS(11627), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11629), 3, - sym__integer_literal, - aux_sym_select_rank_statement_token1, - aux_sym_end_select_statement_token1, - ACTIONS(11625), 7, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - [132683] = 4, - ACTIONS(11633), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11635), 3, - sym__integer_literal, - aux_sym_select_case_statement_token2, - aux_sym_end_select_statement_token1, - ACTIONS(11631), 7, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - [132705] = 7, - ACTIONS(830), 1, + [132582] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11363), 1, + ACTIONS(11299), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7594), 3, + STATE(8161), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(7933), 3, + STATE(8191), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132733] = 7, + [132610] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, ACTIONS(11637), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7523), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(7870), 3, + STATE(8020), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [132761] = 7, - ACTIONS(830), 1, + STATE(8217), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [132638] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11399), 1, + ACTIONS(11265), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8020), 3, + STATE(7510), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8099), 3, + STATE(7595), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132789] = 7, + [132666] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, ACTIONS(11639), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7537), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8337), 3, + STATE(7630), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132817] = 7, + STATE(8136), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [132694] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, ACTIONS(11641), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7606), 3, + STATE(7483), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - STATE(7888), 3, + STATE(7997), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132845] = 7, + [132722] = 4, + ACTIONS(11645), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11647), 3, + sym__integer_literal, + aux_sym_select_case_statement_token2, + aux_sym_end_select_statement_token1, + ACTIONS(11643), 7, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + [132744] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11643), 1, + ACTIONS(11649), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7578), 3, + STATE(7536), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(7947), 3, + STATE(8163), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [132873] = 7, + [132772] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11645), 1, + ACTIONS(11651), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8005), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8297), 3, + STATE(8081), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132901] = 9, - ACTIONS(11559), 1, - anon_sym_COMMA, - ACTIONS(11563), 1, - anon_sym_LPAREN2, - ACTIONS(11567), 1, - aux_sym_hollerith_constant_token1, - ACTIONS(11569), 1, - sym__string_literal, - ACTIONS(11571), 1, - sym__string_literal_kind, - ACTIONS(11647), 1, - anon_sym_RPAREN, - ACTIONS(11649), 1, - sym_edit_descriptor, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5530), 4, - sym__transfer_item, - sym_hollerith_constant, - sym_string_literal, - aux_sym__transfer_items_repeat1, - [132933] = 7, + STATE(8156), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [132800] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11651), 1, + ACTIONS(11653), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7475), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7921), 3, + STATE(7631), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132961] = 7, + STATE(8199), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [132828] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11653), 1, + ACTIONS(11655), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8018), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8372), 3, + STATE(7537), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [132989] = 4, - ACTIONS(11657), 1, - sym_preproc_comment, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11659), 3, - sym__integer_literal, - aux_sym_select_case_statement_token2, - aux_sym_end_select_statement_token1, - ACTIONS(11655), 7, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - [133011] = 7, + STATE(8167), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [132856] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11661), 1, + ACTIONS(11657), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7718), 3, + STATE(8024), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - STATE(7922), 3, + STATE(8304), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [133039] = 7, - ACTIONS(1452), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, - aux_sym_preproc_else_token1, - ACTIONS(11663), 1, - aux_sym_preproc_if_token2, + [132884] = 9, + ACTIONS(11607), 1, + anon_sym_COMMA, + ACTIONS(11611), 1, + anon_sym_LPAREN2, + ACTIONS(11615), 1, + aux_sym_hollerith_constant_token1, + ACTIONS(11617), 1, + sym__string_literal, + ACTIONS(11619), 1, + sym__string_literal_kind, + ACTIONS(11659), 1, + anon_sym_RPAREN, + ACTIONS(11661), 1, + sym_edit_descriptor, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7521), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - STATE(7868), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - [133067] = 4, - ACTIONS(11667), 1, + STATE(5537), 4, + sym__transfer_item, + sym_hollerith_constant, + sym_string_literal, + aux_sym__transfer_items_repeat1, + [132916] = 4, + ACTIONS(11665), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11669), 3, + ACTIONS(11667), 3, sym__integer_literal, - aux_sym_select_case_statement_token2, + aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11665), 7, + ACTIONS(11663), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -575699,164 +575597,182 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133089] = 7, + [132938] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11671), 1, + ACTIONS(11669), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7923), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(7961), 3, + STATE(7670), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [133117] = 7, - ACTIONS(1452), 1, + STATE(8322), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [132966] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11673), 1, + ACTIONS(11285), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7964), 3, + STATE(8286), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(8304), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8041), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - [133145] = 7, - ACTIONS(1452), 1, + [132994] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11675), 1, + ACTIONS(11287), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8006), 3, + STATE(8012), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(8018), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8356), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - [133173] = 7, + [133022] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11677), 1, + ACTIONS(11671), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7463), 3, + STATE(7529), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8366), 3, + STATE(8116), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [133201] = 7, + [133050] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, - ACTIONS(11679), 1, + ACTIONS(11673), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7481), 3, + STATE(7530), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8096), 3, + STATE(8125), 3, sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [133229] = 7, - ACTIONS(1452), 1, + [133078] = 4, + ACTIONS(11677), 1, + sym_preproc_comment, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11679), 3, + sym__integer_literal, + aux_sym_select_rank_statement_token1, + aux_sym_end_select_statement_token1, + ACTIONS(11675), 7, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + [133100] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11681), 1, + ACTIONS(11353), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7482), 3, + STATE(7980), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(7985), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - STATE(8385), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - [133257] = 7, - ACTIONS(1452), 1, + [133128] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11683), 1, + ACTIONS(11271), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7919), 3, - sym_preproc_else_in_procedure_statements, - sym_preproc_elif_in_procedure_statements, - sym_preproc_elifdef_in_procedure_statements, - STATE(8318), 3, + STATE(8203), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(8217), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [133285] = 4, - ACTIONS(11687), 1, + [133156] = 4, + ACTIONS(11683), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11689), 3, + ACTIONS(11685), 3, sym__integer_literal, aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11685), 7, + ACTIONS(11681), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -575864,38 +575780,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133307] = 7, - ACTIONS(10622), 1, - aux_sym_module_statement_token1, - ACTIONS(11691), 1, + [133178] = 7, + ACTIONS(1452), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11521), 1, + aux_sym_preproc_else_token1, + ACTIONS(11687), 1, aux_sym_preproc_if_token2, - ACTIONS(11693), 1, - sym_preproc_comment, - STATE(3279), 1, - sym__procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5581), 2, - sym_procedure_statement, - aux_sym_preproc_if_in_bound_procedures_repeat1, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [133335] = 4, - ACTIONS(11697), 1, + ACTIONS(11523), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7668), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8267), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [133206] = 4, + ACTIONS(11691), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11699), 3, + ACTIONS(11693), 3, sym__integer_literal, aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11695), 7, + ACTIONS(11689), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -575903,17 +575819,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133357] = 4, - ACTIONS(11703), 1, + [133228] = 4, + ACTIONS(11697), 1, sym_preproc_comment, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11705), 3, + ACTIONS(11699), 3, sym__integer_literal, aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11701), 7, + ACTIONS(11695), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -575921,41 +575837,166 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133379] = 7, - ACTIONS(830), 1, + [133250] = 7, + ACTIONS(832), 1, aux_sym_preproc_elif_token1, - ACTIONS(11231), 1, + ACTIONS(11239), 1, aux_sym_preproc_else_token1, - ACTIONS(11391), 1, + ACTIONS(11283), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11233), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7872), 3, + STATE(8261), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - STATE(8364), 3, + STATE(8274), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [133407] = 7, + [133278] = 7, ACTIONS(1452), 1, aux_sym_preproc_elif_token1, - ACTIONS(11519), 1, + ACTIONS(11521), 1, + aux_sym_preproc_else_token1, + ACTIONS(11701), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11523), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7541), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8183), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + [133306] = 7, + ACTIONS(1452), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11521), 1, aux_sym_preproc_else_token1, + ACTIONS(11703), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11523), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8023), 3, + sym_preproc_else_in_procedure_statements, + sym_preproc_elif_in_procedure_statements, + sym_preproc_elifdef_in_procedure_statements, + STATE(8274), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [133334] = 7, + ACTIONS(10680), 1, + aux_sym_module_statement_token1, + ACTIONS(11705), 1, + aux_sym_preproc_if_token2, ACTIONS(11707), 1, + sym_preproc_comment, + STATE(3278), 1, + sym_procedure_kind, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5594), 2, + sym_procedure_statement, + aux_sym_preproc_if_in_bound_procedures_repeat1, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [133362] = 7, + ACTIONS(832), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11239), 1, + aux_sym_preproc_else_token1, + ACTIONS(11275), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7610), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(7617), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [133390] = 7, + ACTIONS(832), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11239), 1, + aux_sym_preproc_else_token1, + ACTIONS(11303), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8101), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + STATE(8108), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [133418] = 6, + ACTIONS(11511), 1, + aux_sym__intrinsic_type_token4, + ACTIONS(11513), 1, + aux_sym__intrinsic_type_token8, + STATE(6190), 1, + sym__intrinsic_type, + STATE(8388), 1, + sym_intrinsic_type, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11509), 7, + aux_sym__intrinsic_type_token1, + aux_sym__intrinsic_type_token2, + aux_sym__intrinsic_type_token3, + aux_sym__intrinsic_type_token6, + aux_sym__intrinsic_type_token7, + aux_sym__intrinsic_type_token9, + aux_sym__intrinsic_type_token10, + [133444] = 7, + ACTIONS(1452), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11521), 1, + aux_sym_preproc_else_token1, + ACTIONS(11709), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11521), 2, + ACTIONS(11523), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7528), 3, + STATE(8117), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, @@ -575963,36 +576004,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_procedure_statements, sym_preproc_elif_in_procedure_statements, sym_preproc_elifdef_in_procedure_statements, - [133435] = 8, - ACTIONS(11709), 1, - aux_sym_language_binding_token1, - ACTIONS(11713), 1, - aux_sym_abstract_specifier_token1, - ACTIONS(11715), 1, - aux_sym_base_type_specifier_token1, - STATE(7391), 1, - sym_access_specifier, - STATE(7393), 1, - sym_base_type_specifier, + [133472] = 7, + ACTIONS(832), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11239), 1, + aux_sym_preproc_else_token1, + ACTIONS(11319), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11711), 2, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - STATE(6487), 3, - sym_language_binding, - sym_abstract_specifier, - sym__derived_type_qualifier, - [133464] = 3, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7606), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + STATE(8076), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [133500] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11719), 3, + ACTIONS(11555), 3, sym__integer_literal, aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11717), 7, + ACTIONS(11551), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576000,22 +576041,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133483] = 10, - ACTIONS(2678), 1, + [133519] = 10, + ACTIONS(2702), 1, aux_sym_elseif_clause_token1, - ACTIONS(11721), 1, + ACTIONS(11711), 1, aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, + ACTIONS(11713), 1, aux_sym_end_if_statement_token1, - ACTIONS(11725), 1, + ACTIONS(11715), 1, aux_sym_elseif_clause_token2, - ACTIONS(11727), 1, + ACTIONS(11717), 1, sym__integer_literal, - STATE(5952), 1, + STATE(6094), 1, sym_else_clause, - STATE(6794), 1, + STATE(6283), 1, sym_statement_label, - STATE(7203), 1, + STATE(7107), 1, sym_end_if_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -576023,81 +576064,62 @@ static const uint16_t ts_small_parse_table[] = { STATE(5851), 2, sym_elseif_clause, aux_sym__block_if_statement_repeat1, - [133516] = 6, - ACTIONS(10622), 1, - aux_sym_module_statement_token1, - ACTIONS(11729), 1, - aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5424), 2, - sym_procedure_statement, - aux_sym_preproc_if_in_bound_procedures_repeat1, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [133541] = 6, - ACTIONS(10622), 1, - aux_sym_module_statement_token1, - ACTIONS(11731), 1, - aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, + [133552] = 7, + ACTIONS(11719), 1, + anon_sym_LPAREN2, + ACTIONS(11721), 1, + aux_sym_language_binding_token1, + ACTIONS(11723), 1, + aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5424), 2, - sym_procedure_statement, - aux_sym_preproc_if_in_bound_procedures_repeat1, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [133566] = 8, - ACTIONS(11709), 1, + ACTIONS(11725), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(5841), 2, + sym__parameters, + sym_parameters, + STATE(5846), 3, + sym_language_binding, + sym_function_result, + aux_sym_function_statement_repeat1, + [133579] = 7, + ACTIONS(11719), 1, + anon_sym_LPAREN2, + ACTIONS(11721), 1, aux_sym_language_binding_token1, - ACTIONS(11713), 1, - aux_sym_abstract_specifier_token1, - ACTIONS(11715), 1, - aux_sym_base_type_specifier_token1, - STATE(7391), 1, - sym_access_specifier, - STATE(7393), 1, - sym_base_type_specifier, + ACTIONS(11723), 1, + aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11711), 2, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - STATE(7362), 3, + ACTIONS(11727), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(5834), 2, + sym__parameters, + sym_parameters, + STATE(5859), 3, sym_language_binding, - sym_abstract_specifier, - sym__derived_type_qualifier, - [133595] = 10, - ACTIONS(2678), 1, + sym_function_result, + aux_sym_function_statement_repeat1, + [133606] = 10, + ACTIONS(2702), 1, aux_sym_elseif_clause_token1, - ACTIONS(11721), 1, + ACTIONS(11711), 1, aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, + ACTIONS(11713), 1, aux_sym_end_if_statement_token1, - ACTIONS(11725), 1, + ACTIONS(11715), 1, aux_sym_elseif_clause_token2, - ACTIONS(11727), 1, + ACTIONS(11717), 1, sym__integer_literal, - STATE(5925), 1, + STATE(6107), 1, sym_else_clause, - STATE(6535), 1, + STATE(7024), 1, sym_statement_label, - STATE(7252), 1, + STATE(7409), 1, sym_end_if_statement, ACTIONS(21), 2, anon_sym_AMP, @@ -576105,38 +576127,52 @@ static const uint16_t ts_small_parse_table[] = { STATE(5851), 2, sym_elseif_clause, aux_sym__block_if_statement_repeat1, - [133628] = 10, - ACTIONS(2678), 1, - aux_sym_elseif_clause_token1, - ACTIONS(11721), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - ACTIONS(11725), 1, - aux_sym_elseif_clause_token2, - ACTIONS(11727), 1, + [133639] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11731), 3, sym__integer_literal, - STATE(6082), 1, - sym_else_clause, - STATE(6927), 1, - sym_statement_label, - STATE(7229), 1, - sym_end_if_statement, + aux_sym_select_rank_statement_token1, + aux_sym_end_select_statement_token1, + ACTIONS(11729), 7, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + [133658] = 8, + ACTIONS(11733), 1, + aux_sym_language_binding_token1, + ACTIONS(11737), 1, + aux_sym_abstract_specifier_token1, + ACTIONS(11739), 1, + aux_sym_base_type_specifier_token1, + STATE(7434), 1, + sym_access_specifier, + STATE(7435), 1, + sym_base_type_specifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5851), 2, - sym_elseif_clause, - aux_sym__block_if_statement_repeat1, - [133661] = 3, + ACTIONS(11735), 2, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + STATE(6680), 3, + sym_language_binding, + sym_abstract_specifier, + sym__derived_type_qualifier, + [133687] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11735), 3, + ACTIONS(11743), 3, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11733), 7, + ACTIONS(11741), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576144,15 +576180,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133680] = 3, + [133706] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11739), 3, + ACTIONS(11685), 3, sym__integer_literal, aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11737), 7, + ACTIONS(11681), 7, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + aux_sym_end_program_statement_token1, + [133725] = 10, + ACTIONS(2702), 1, + aux_sym_elseif_clause_token1, + ACTIONS(11711), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + ACTIONS(11715), 1, + aux_sym_elseif_clause_token2, + ACTIONS(11717), 1, + sym__integer_literal, + STATE(6057), 1, + sym_else_clause, + STATE(6549), 1, + sym_statement_label, + STATE(7117), 1, + sym_end_if_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5851), 2, + sym_elseif_clause, + aux_sym__block_if_statement_repeat1, + [133758] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11547), 3, + sym__integer_literal, + aux_sym_select_case_statement_token2, + aux_sym_end_select_statement_token1, + ACTIONS(11543), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576160,15 +576235,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133699] = 3, + [133777] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11543), 3, + ACTIONS(11747), 3, sym__integer_literal, aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11539), 7, + ACTIONS(11745), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576176,15 +576251,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133718] = 3, + [133796] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11743), 3, + ACTIONS(11629), 3, sym__integer_literal, - aux_sym_select_rank_statement_token1, + aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11741), 7, + ACTIONS(11625), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576192,15 +576267,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133737] = 3, + [133815] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11747), 3, + ACTIONS(11751), 3, sym__integer_literal, aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11745), 7, + ACTIONS(11749), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576208,15 +576283,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133756] = 3, + [133834] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11751), 3, + ACTIONS(11755), 3, sym__integer_literal, - aux_sym_select_rank_statement_token1, + aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11749), 7, + ACTIONS(11753), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576224,35 +576299,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133775] = 7, - ACTIONS(11753), 1, - anon_sym_LPAREN2, - ACTIONS(11755), 1, - aux_sym_language_binding_token1, - ACTIONS(11757), 1, - aux_sym_function_result_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11759), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(5842), 2, - sym__parameters, - sym_parameters, - STATE(5844), 3, - sym_language_binding, - sym_function_result, - aux_sym_function_statement_repeat1, - [133802] = 3, + [133853] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11581), 3, + ACTIONS(11759), 3, sym__integer_literal, - aux_sym_select_case_statement_token2, + aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11577), 7, + ACTIONS(11757), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576260,38 +576315,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133821] = 10, - ACTIONS(2678), 1, - aux_sym_elseif_clause_token1, - ACTIONS(11721), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - ACTIONS(11725), 1, - aux_sym_elseif_clause_token2, - ACTIONS(11727), 1, - sym__integer_literal, - STATE(6002), 1, - sym_else_clause, - STATE(6260), 1, - sym_statement_label, - STATE(7084), 1, - sym_end_if_statement, + [133872] = 6, + ACTIONS(10680), 1, + aux_sym_module_statement_token1, + ACTIONS(11761), 1, + aux_sym_preproc_if_token2, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5851), 2, - sym_elseif_clause, - aux_sym__block_if_statement_repeat1, - [133854] = 3, + STATE(5456), 2, + sym_procedure_statement, + aux_sym_preproc_if_in_bound_procedures_repeat1, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [133897] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11669), 3, + ACTIONS(11765), 3, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11665), 7, + ACTIONS(11763), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576299,15 +576350,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133873] = 3, + [133916] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11763), 3, + ACTIONS(11769), 3, sym__integer_literal, - aux_sym_select_case_statement_token2, + aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11761), 7, + ACTIONS(11767), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576315,15 +576366,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133892] = 3, + [133935] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11767), 3, + ACTIONS(11773), 3, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11765), 7, + ACTIONS(11771), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576331,56 +576382,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133911] = 7, - ACTIONS(11753), 1, - anon_sym_LPAREN2, - ACTIONS(11755), 1, + [133954] = 8, + ACTIONS(11733), 1, aux_sym_language_binding_token1, - ACTIONS(11757), 1, - aux_sym_function_result_token1, + ACTIONS(11737), 1, + aux_sym_abstract_specifier_token1, + ACTIONS(11739), 1, + aux_sym_base_type_specifier_token1, + STATE(7434), 1, + sym_access_specifier, + STATE(7435), 1, + sym_base_type_specifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11769), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(5839), 2, - sym__parameters, - sym_parameters, - STATE(5840), 3, + ACTIONS(11735), 2, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + STATE(6516), 3, sym_language_binding, - sym_function_result, - aux_sym_function_statement_repeat1, - [133938] = 8, - ACTIONS(11709), 1, + sym_abstract_specifier, + sym__derived_type_qualifier, + [133983] = 8, + ACTIONS(11733), 1, aux_sym_language_binding_token1, - ACTIONS(11713), 1, + ACTIONS(11737), 1, aux_sym_abstract_specifier_token1, - ACTIONS(11715), 1, + ACTIONS(11739), 1, aux_sym_base_type_specifier_token1, - STATE(7391), 1, + STATE(7434), 1, sym_access_specifier, - STATE(7393), 1, + STATE(7435), 1, sym_base_type_specifier, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11711), 2, + ACTIONS(11735), 2, aux_sym_private_statement_token1, aux_sym_public_statement_token1, - STATE(6763), 3, + STATE(7258), 3, sym_language_binding, sym_abstract_specifier, sym__derived_type_qualifier, - [133967] = 3, + [134012] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11773), 3, + ACTIONS(11777), 3, sym__integer_literal, - aux_sym_select_case_statement_token2, + aux_sym_select_rank_statement_token1, aux_sym_end_select_statement_token1, - ACTIONS(11771), 7, + ACTIONS(11775), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576388,35 +576440,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [133986] = 7, - ACTIONS(11753), 1, - anon_sym_LPAREN2, - ACTIONS(11755), 1, - aux_sym_language_binding_token1, - ACTIONS(11757), 1, - aux_sym_function_result_token1, + [134031] = 6, + ACTIONS(10680), 1, + aux_sym_module_statement_token1, + ACTIONS(11779), 1, + aux_sym_preproc_if_token2, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11775), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(5854), 2, - sym__parameters, - sym_parameters, - STATE(5836), 3, - sym_language_binding, - sym_function_result, - aux_sym_function_statement_repeat1, - [134013] = 3, + STATE(5456), 2, + sym_procedure_statement, + aux_sym_preproc_if_in_bound_procedures_repeat1, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [134056] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11779), 3, + ACTIONS(11783), 3, sym__integer_literal, aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11777), 7, + ACTIONS(11781), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576424,47 +576475,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [134032] = 3, + [134075] = 7, + ACTIONS(11719), 1, + anon_sym_LPAREN2, + ACTIONS(11721), 1, + aux_sym_language_binding_token1, + ACTIONS(11723), 1, + aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11699), 3, - sym__integer_literal, - aux_sym_select_rank_statement_token1, - aux_sym_end_select_statement_token1, - ACTIONS(11695), 7, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - [134051] = 3, + ACTIONS(11785), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(5848), 2, + sym__parameters, + sym_parameters, + STATE(5849), 3, + sym_language_binding, + sym_function_result, + aux_sym_function_statement_repeat1, + [134102] = 6, + ACTIONS(10680), 1, + aux_sym_module_statement_token1, + ACTIONS(11761), 1, + aux_sym_preproc_if_token2, + STATE(3278), 1, + sym_procedure_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11783), 3, - sym__integer_literal, - aux_sym_select_case_statement_token2, - aux_sym_end_select_statement_token1, - ACTIONS(11781), 7, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - aux_sym_end_program_statement_token1, - [134070] = 3, + STATE(5601), 2, + sym_procedure_statement, + aux_sym_preproc_if_in_bound_procedures_repeat1, + ACTIONS(8208), 5, + aux_sym_module_procedure_statement_token1, + aux_sym_procedure_kind_token1, + aux_sym_procedure_kind_token2, + aux_sym_procedure_kind_token3, + aux_sym_procedure_kind_token4, + [134127] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11787), 3, + ACTIONS(11789), 3, sym__integer_literal, - aux_sym_select_rank_statement_token1, + aux_sym_select_case_statement_token2, aux_sym_end_select_statement_token1, - ACTIONS(11785), 7, + ACTIONS(11787), 7, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, @@ -576472,81 +576530,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, sym_preproc_directive, aux_sym_end_program_statement_token1, - [134089] = 6, - ACTIONS(10622), 1, - aux_sym_module_statement_token1, - ACTIONS(11731), 1, - aux_sym_preproc_if_token2, - STATE(3279), 1, - sym__procedure_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5580), 2, - sym_procedure_statement, - aux_sym_preproc_if_in_bound_procedures_repeat1, - ACTIONS(8880), 5, - aux_sym_module_procedure_statement_token1, - aux_sym__procedure_kind_token1, - aux_sym__procedure_kind_token2, - aux_sym__procedure_kind_token3, - aux_sym__procedure_kind_token4, - [134114] = 4, - ACTIONS(11791), 1, - aux_sym_procedure_attribute_token2, - STATE(3868), 1, - sym_procedure_attribute, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11789), 7, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_procedure_attribute_token1, - aux_sym_procedure_attribute_token3, - aux_sym_procedure_attribute_token4, - aux_sym_procedure_attribute_token5, - aux_sym_procedure_attribute_token6, - [134134] = 4, - ACTIONS(11795), 1, - aux_sym_procedure_attribute_token2, - STATE(3280), 1, - sym_procedure_attribute, + [134146] = 10, + ACTIONS(2702), 1, + aux_sym_elseif_clause_token1, + ACTIONS(11711), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + ACTIONS(11715), 1, + aux_sym_elseif_clause_token2, + ACTIONS(11717), 1, + sym__integer_literal, + STATE(6092), 1, + sym_else_clause, + STATE(7033), 1, + sym_statement_label, + STATE(7208), 1, + sym_end_if_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11793), 7, - aux_sym_private_statement_token1, - aux_sym_public_statement_token1, - aux_sym_procedure_attribute_token1, - aux_sym_procedure_attribute_token3, - aux_sym_procedure_attribute_token4, - aux_sym_procedure_attribute_token5, - aux_sym_procedure_attribute_token6, - [134154] = 8, - ACTIONS(11563), 1, + STATE(5851), 2, + sym_elseif_clause, + aux_sym__block_if_statement_repeat1, + [134179] = 8, + ACTIONS(11611), 1, anon_sym_LPAREN2, - ACTIONS(11567), 1, + ACTIONS(11615), 1, aux_sym_hollerith_constant_token1, - ACTIONS(11569), 1, + ACTIONS(11617), 1, sym__string_literal, - ACTIONS(11571), 1, + ACTIONS(11619), 1, sym__string_literal_kind, - ACTIONS(11797), 1, + ACTIONS(11791), 1, sym_edit_descriptor, - STATE(8048), 1, + STATE(8097), 1, sym__transfer_items, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5557), 3, + STATE(5555), 3, sym__transfer_item, sym_hollerith_constant, sym_string_literal, - [134182] = 4, + [134207] = 4, ACTIONS(11795), 1, aux_sym_procedure_attribute_token2, - STATE(3275), 1, + STATE(3858), 1, sym_procedure_attribute, ACTIONS(21), 2, anon_sym_AMP, @@ -576559,10 +576589,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attribute_token4, aux_sym_procedure_attribute_token5, aux_sym_procedure_attribute_token6, - [134202] = 4, + [134227] = 4, ACTIONS(11795), 1, aux_sym_procedure_attribute_token2, - STATE(3284), 1, + STATE(3275), 1, sym_procedure_attribute, ACTIONS(21), 2, anon_sym_AMP, @@ -576575,15 +576605,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attribute_token4, aux_sym_procedure_attribute_token5, aux_sym_procedure_attribute_token6, - [134222] = 4, - ACTIONS(11791), 1, + [134247] = 4, + ACTIONS(11795), 1, aux_sym_procedure_attribute_token2, - STATE(3967), 1, + STATE(3281), 1, sym_procedure_attribute, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11789), 7, + ACTIONS(11793), 7, aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_procedure_attribute_token1, @@ -576591,35 +576621,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attribute_token4, aux_sym_procedure_attribute_token5, aux_sym_procedure_attribute_token6, - [134242] = 8, - ACTIONS(11563), 1, + [134267] = 8, + ACTIONS(11611), 1, anon_sym_LPAREN2, - ACTIONS(11567), 1, + ACTIONS(11615), 1, aux_sym_hollerith_constant_token1, - ACTIONS(11569), 1, + ACTIONS(11617), 1, sym__string_literal, - ACTIONS(11571), 1, + ACTIONS(11619), 1, sym__string_literal_kind, - ACTIONS(11797), 1, + ACTIONS(11791), 1, sym_edit_descriptor, - STATE(7590), 1, + STATE(8047), 1, sym__transfer_items, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5557), 3, + STATE(5555), 3, sym__transfer_item, sym_hollerith_constant, sym_string_literal, - [134270] = 4, - ACTIONS(11795), 1, + [134295] = 4, + ACTIONS(11799), 1, aux_sym_procedure_attribute_token2, - STATE(3763), 1, + STATE(3876), 1, sym_procedure_attribute, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11793), 7, + ACTIONS(11797), 7, aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_procedure_attribute_token1, @@ -576627,15 +576657,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attribute_token4, aux_sym_procedure_attribute_token5, aux_sym_procedure_attribute_token6, - [134290] = 4, - ACTIONS(11795), 1, + [134315] = 4, + ACTIONS(11799), 1, aux_sym_procedure_attribute_token2, - STATE(3283), 1, + STATE(3870), 1, sym_procedure_attribute, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11793), 7, + ACTIONS(11797), 7, aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_procedure_attribute_token1, @@ -576643,31 +576673,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attribute_token4, aux_sym_procedure_attribute_token5, aux_sym_procedure_attribute_token6, - [134310] = 4, - ACTIONS(11801), 1, + [134335] = 4, + ACTIONS(11803), 1, aux_sym_procedure_attributes_token3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11799), 3, + ACTIONS(11801), 3, aux_sym_procedure_attributes_token2, aux_sym_procedure_attributes_token4, aux_sym_procedure_attributes_token5, - ACTIONS(11803), 5, + ACTIONS(11805), 5, aux_sym_variable_attributes_token1, aux_sym_variable_attributes_token2, aux_sym_variable_attributes_token3, aux_sym_variable_attributes_token4, aux_sym_variable_attributes_token5, - [134330] = 4, - ACTIONS(11791), 1, + [134355] = 4, + ACTIONS(11799), 1, aux_sym_procedure_attribute_token2, - STATE(3887), 1, + STATE(3930), 1, sym_procedure_attribute, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11789), 7, + ACTIONS(11797), 7, aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_procedure_attribute_token1, @@ -576675,15 +576705,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attribute_token4, aux_sym_procedure_attribute_token5, aux_sym_procedure_attribute_token6, - [134350] = 4, - ACTIONS(11791), 1, + [134375] = 4, + ACTIONS(11799), 1, + aux_sym_procedure_attribute_token2, + STATE(3879), 1, + sym_procedure_attribute, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11797), 7, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_procedure_attribute_token1, + aux_sym_procedure_attribute_token3, + aux_sym_procedure_attribute_token4, + aux_sym_procedure_attribute_token5, + aux_sym_procedure_attribute_token6, + [134395] = 4, + ACTIONS(11795), 1, + aux_sym_procedure_attribute_token2, + STATE(3279), 1, + sym_procedure_attribute, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11793), 7, + aux_sym_private_statement_token1, + aux_sym_public_statement_token1, + aux_sym_procedure_attribute_token1, + aux_sym_procedure_attribute_token3, + aux_sym_procedure_attribute_token4, + aux_sym_procedure_attribute_token5, + aux_sym_procedure_attribute_token6, + [134415] = 4, + ACTIONS(11795), 1, aux_sym_procedure_attribute_token2, - STATE(3892), 1, + STATE(3282), 1, sym_procedure_attribute, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11789), 7, + ACTIONS(11793), 7, aux_sym_private_statement_token1, aux_sym_public_statement_token1, aux_sym_procedure_attribute_token1, @@ -576691,4066 +576753,4033 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_procedure_attribute_token4, aux_sym_procedure_attribute_token5, aux_sym_procedure_attribute_token6, - [134370] = 6, + [134435] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11805), 1, - aux_sym_preproc_if_token2, ACTIONS(11807), 1, + aux_sym_preproc_if_token2, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7816), 3, + STATE(7893), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [134393] = 6, - ACTIONS(864), 1, + [134458] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11811), 1, - aux_sym_preproc_if_token2, ACTIONS(11813), 1, + aux_sym_preproc_if_token2, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8324), 3, + STATE(8215), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [134416] = 6, - ACTIONS(1548), 1, + [134481] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, - aux_sym_preproc_else_token1, - ACTIONS(11817), 1, + ACTIONS(11819), 1, aux_sym_preproc_if_token2, + ACTIONS(11821), 1, + aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7680), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134439] = 6, - ACTIONS(1548), 1, + STATE(7687), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [134504] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11819), 1, + ACTIONS(11825), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8241), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134462] = 6, + STATE(8123), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [134527] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11821), 1, + ACTIONS(11827), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7681), 3, + STATE(7518), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [134485] = 6, - ACTIONS(1548), 1, + [134550] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11823), 1, + ACTIONS(11829), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7682), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134508] = 6, - ACTIONS(1548), 1, + STATE(8070), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [134573] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11825), 1, + ACTIONS(11831), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7683), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134531] = 6, - ACTIONS(1548), 1, + STATE(8239), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [134596] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, - ACTIONS(11827), 1, + ACTIONS(11833), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7684), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134554] = 6, - ACTIONS(1548), 1, + STATE(8359), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [134619] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, - ACTIONS(11829), 1, + ACTIONS(11835), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7685), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134577] = 7, - ACTIONS(11563), 1, - anon_sym_LPAREN2, - ACTIONS(11567), 1, - aux_sym_hollerith_constant_token1, - ACTIONS(11569), 1, - sym__string_literal, - ACTIONS(11571), 1, - sym__string_literal_kind, - ACTIONS(11831), 1, - sym_edit_descriptor, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5843), 3, - sym__transfer_item, - sym_hollerith_constant, - sym_string_literal, - [134602] = 6, + STATE(7460), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [134642] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11833), 1, + ACTIONS(11837), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7696), 3, + STATE(7985), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [134625] = 6, - ACTIONS(1548), 1, + [134665] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11835), 1, + ACTIONS(11839), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7697), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134648] = 6, + STATE(7980), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [134688] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11837), 1, + ACTIONS(11841), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7698), 3, + STATE(8036), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [134671] = 6, - ACTIONS(4669), 1, + [134711] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11839), 1, - aux_sym_preproc_if_token2, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, + ACTIONS(11843), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7864), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [134694] = 6, + STATE(7640), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [134734] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(11845), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7699), 3, + STATE(8108), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [134717] = 6, + [134757] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(11847), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7700), 3, + STATE(7729), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [134740] = 6, - ACTIONS(1548), 1, + [134780] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(11849), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7701), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134763] = 6, - ACTIONS(1548), 1, + STATE(7706), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [134803] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(11851), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8140), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134786] = 6, - ACTIONS(864), 1, + STATE(8076), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [134826] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(11853), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7989), 3, + STATE(7770), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [134809] = 6, - ACTIONS(1548), 1, + [134849] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, ACTIONS(11855), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7712), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134832] = 6, - ACTIONS(1548), 1, + STATE(7858), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [134872] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, ACTIONS(11857), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7713), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134855] = 6, - ACTIONS(1548), 1, + STATE(7873), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [134895] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(11859), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7714), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134878] = 6, + STATE(8133), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [134918] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(11861), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7473), 3, + STATE(7914), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [134901] = 6, + [134941] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(11863), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7715), 3, + STATE(7930), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [134924] = 6, - ACTIONS(1548), 1, + [134964] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(11865), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7716), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134947] = 6, - ACTIONS(1548), 1, + STATE(8075), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [134987] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, ACTIONS(11867), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7717), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [134970] = 6, - ACTIONS(864), 1, + STATE(8135), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [135010] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11345), 1, + ACTIONS(11283), 1, aux_sym_preproc_if_token2, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8296), 3, + STATE(8261), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [134993] = 6, - ACTIONS(864), 1, + [135033] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11341), 1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(11869), 1, aux_sym_preproc_if_token2, - ACTIONS(11813), 1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11811), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8096), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [135056] = 6, + ACTIONS(866), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, + ACTIONS(11871), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8368), 3, + STATE(7727), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [135016] = 6, - ACTIONS(864), 1, + [135079] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11373), 1, + ACTIONS(11285), 1, aux_sym_preproc_if_token2, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8316), 3, + STATE(8286), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [135039] = 6, - ACTIONS(11869), 1, - aux_sym_preproc_if_token2, - ACTIONS(11871), 1, + [135102] = 6, + ACTIONS(866), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(11873), 1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11875), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7526), 3, - sym_preproc_else_in_select_rank, - sym_preproc_elif_in_select_rank, - sym_preproc_elifdef_in_select_rank, - [135062] = 6, - ACTIONS(864), 1, + STATE(8101), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [135125] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, - aux_sym_preproc_else_token1, - ACTIONS(11877), 1, + ACTIONS(11273), 1, aux_sym_preproc_if_token2, + ACTIONS(11815), 1, + aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7464), 3, + STATE(7934), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [135085] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + [135148] = 6, + ACTIONS(11875), 1, + aux_sym_preproc_if_token2, + ACTIONS(11877), 1, aux_sym_preproc_else_token1, ACTIONS(11879), 1, - aux_sym_preproc_if_token2, + aux_sym_preproc_elif_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11881), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8172), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135108] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + STATE(7645), 3, + sym_preproc_else_in_select_case, + sym_preproc_elif_in_select_case, + sym_preproc_elifdef_in_select_case, + [135171] = 6, + ACTIONS(11877), 1, aux_sym_preproc_else_token1, - ACTIONS(11881), 1, + ACTIONS(11879), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11883), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11881), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8320), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135131] = 6, - ACTIONS(1548), 1, + STATE(7659), 3, + sym_preproc_else_in_select_case, + sym_preproc_elif_in_select_case, + sym_preproc_elifdef_in_select_case, + [135194] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, - ACTIONS(11883), 1, + ACTIONS(11885), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8358), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135154] = 6, - ACTIONS(11885), 1, - aux_sym_preproc_if_token2, + STATE(7926), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [135217] = 6, ACTIONS(11887), 1, - aux_sym_preproc_else_token1, + aux_sym_preproc_if_token2, ACTIONS(11889), 1, + aux_sym_preproc_else_token1, + ACTIONS(11891), 1, aux_sym_preproc_elif_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11891), 2, + ACTIONS(11893), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8388), 3, + STATE(7817), 3, sym_preproc_else_in_select_type, sym_preproc_elif_in_select_type, sym_preproc_elifdef_in_select_type, - [135177] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + [135240] = 6, + ACTIONS(11889), 1, aux_sym_preproc_else_token1, - ACTIONS(11893), 1, + ACTIONS(11891), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11895), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11893), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8362), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135200] = 6, - ACTIONS(11895), 1, - aux_sym_preproc_if_token2, + STATE(7841), 3, + sym_preproc_else_in_select_type, + sym_preproc_elif_in_select_type, + sym_preproc_elifdef_in_select_type, + [135263] = 9, + ACTIONS(10417), 1, + aux_sym__class_default_token1, ACTIONS(11897), 1, - aux_sym_preproc_else_token1, + sym_preproc_comment, ACTIONS(11899), 1, - aux_sym_preproc_elif_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11901), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7557), 3, - sym_preproc_else_in_select_case, - sym_preproc_elif_in_select_case, - sym_preproc_elifdef_in_select_case, - [135223] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, - aux_sym_preproc_else_token1, + aux_sym_implicit_statement_token3, + ACTIONS(11901), 1, + aux_sym_derived_type_token1, ACTIONS(11903), 1, - aux_sym_preproc_if_token2, + aux_sym_type_statement_token2, + ACTIONS(11905), 1, + aux_sym_type_statement_token3, + STATE(3712), 1, + sym__class_default, + STATE(7866), 1, + sym_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8380), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135246] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, - aux_sym_preproc_else_token1, - ACTIONS(11905), 1, + [135292] = 6, + ACTIONS(11907), 1, aux_sym_preproc_if_token2, + ACTIONS(11909), 1, + aux_sym_preproc_else_token1, + ACTIONS(11911), 1, + aux_sym_preproc_elif_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11913), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8383), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135269] = 6, - ACTIONS(864), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + STATE(8010), 3, + sym_preproc_else_in_select_rank, + sym_preproc_elif_in_select_rank, + sym_preproc_elifdef_in_select_rank, + [135315] = 6, + ACTIONS(11909), 1, aux_sym_preproc_else_token1, - ACTIONS(11907), 1, + ACTIONS(11911), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11915), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11913), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8183), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [135292] = 6, - ACTIONS(864), 1, + STATE(8015), 3, + sym_preproc_else_in_select_rank, + sym_preproc_elif_in_select_rank, + sym_preproc_elifdef_in_select_rank, + [135338] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11909), 1, + ACTIONS(11917), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8124), 3, + STATE(7722), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [135315] = 6, + [135361] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11911), 1, + ACTIONS(11919), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7809), 3, + STATE(7655), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [135338] = 6, - ACTIONS(1548), 1, + [135384] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11913), 1, + ACTIONS(11921), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8326), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135361] = 6, - ACTIONS(1548), 1, + STATE(7905), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [135407] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11915), 1, + ACTIONS(11923), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7933), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135384] = 6, - ACTIONS(4669), 1, + STATE(7927), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [135430] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, - ACTIONS(11917), 1, + ACTIONS(11925), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7634), 3, + STATE(8145), 3, sym_preproc_else_in_module, sym_preproc_elif_in_module, sym_preproc_elifdef_in_module, - [135407] = 6, - ACTIONS(1548), 1, + [135453] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, - ACTIONS(11919), 1, + ACTIONS(11927), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8189), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135430] = 6, - ACTIONS(11887), 1, - aux_sym_preproc_else_token1, - ACTIONS(11889), 1, + STATE(8154), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [135476] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11921), 1, + ACTIONS(11821), 1, + aux_sym_preproc_else_token1, + ACTIONS(11929), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11891), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7558), 3, - sym_preproc_else_in_select_type, - sym_preproc_elif_in_select_type, - sym_preproc_elifdef_in_select_type, - [135453] = 6, + STATE(8157), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [135499] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11923), 1, + ACTIONS(11931), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7670), 3, + STATE(7911), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [135476] = 6, - ACTIONS(4669), 1, + [135522] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11925), 1, + ACTIONS(11933), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7510), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [135499] = 6, - ACTIONS(864), 1, + STATE(7990), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [135545] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11927), 1, + ACTIONS(11935), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8312), 3, + STATE(8072), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [135522] = 6, - ACTIONS(11897), 1, - aux_sym_preproc_else_token1, - ACTIONS(11899), 1, + [135568] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11929), 1, + ACTIONS(11815), 1, + aux_sym_preproc_else_token1, + ACTIONS(11937), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11901), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7892), 3, - sym_preproc_else_in_select_case, - sym_preproc_elif_in_select_case, - sym_preproc_elifdef_in_select_case, - [135545] = 6, + STATE(8098), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [135591] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11931), 1, + ACTIONS(11939), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7480), 3, + STATE(7459), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [135568] = 6, + [135614] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11933), 1, + ACTIONS(11941), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7487), 3, + STATE(7491), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [135591] = 6, - ACTIONS(864), 1, + [135637] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11935), 1, + ACTIONS(11943), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8345), 3, + STATE(8155), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [135614] = 6, + [135660] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11937), 1, + ACTIONS(11945), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7830), 3, + STATE(7607), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [135637] = 6, - ACTIONS(11897), 1, - aux_sym_preproc_else_token1, - ACTIONS(11899), 1, + [135683] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11939), 1, + ACTIONS(11815), 1, + aux_sym_preproc_else_token1, + ACTIONS(11947), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11901), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8281), 3, - sym_preproc_else_in_select_case, - sym_preproc_elif_in_select_case, - sym_preproc_elifdef_in_select_case, - [135660] = 6, + STATE(7979), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [135706] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11941), 1, + ACTIONS(11949), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7832), 3, + STATE(8134), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [135683] = 6, - ACTIONS(1548), 1, + [135729] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11943), 1, + ACTIONS(11951), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7488), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135706] = 6, - ACTIONS(4669), 1, + STATE(8408), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [135752] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11945), 1, + ACTIONS(11953), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8218), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [135729] = 6, + STATE(7474), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [135775] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11947), 1, + ACTIONS(11955), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7924), 3, + STATE(8219), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [135752] = 9, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - ACTIONS(11949), 1, - sym_preproc_comment, - ACTIONS(11951), 1, - aux_sym_implicit_statement_token3, - ACTIONS(11953), 1, - aux_sym_derived_type_token1, - ACTIONS(11955), 1, - aux_sym_type_statement_token2, + [135798] = 6, + ACTIONS(1548), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, ACTIONS(11957), 1, - aux_sym_type_statement_token3, - STATE(3685), 1, - sym__class_default, - STATE(5784), 1, - sym_type_statement, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [135781] = 6, - ACTIONS(1548), 1, + ACTIONS(11811), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8230), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [135821] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(11959), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7748), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135804] = 6, - ACTIONS(1548), 1, + STATE(7592), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [135844] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(11961), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7720), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [135827] = 6, + STATE(7615), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [135867] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(11963), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7750), 3, + STATE(8309), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [135850] = 6, - ACTIONS(864), 1, + [135890] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(11965), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8240), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [135873] = 6, - ACTIONS(864), 1, + STATE(8312), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [135913] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(11967), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7623), 3, + STATE(7666), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [135896] = 6, - ACTIONS(864), 1, + [135936] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(11969), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7768), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [135919] = 6, - ACTIONS(4669), 1, + STATE(8369), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [135959] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(11971), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8154), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [135942] = 6, - ACTIONS(11887), 1, - aux_sym_preproc_else_token1, - ACTIONS(11889), 1, + STATE(7595), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [135982] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11973), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11891), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8028), 3, - sym_preproc_else_in_select_type, - sym_preproc_elif_in_select_type, - sym_preproc_elifdef_in_select_type, - [135965] = 6, - ACTIONS(11887), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11889), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11975), 1, + ACTIONS(11973), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11891), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8074), 3, - sym_preproc_else_in_select_type, - sym_preproc_elif_in_select_type, - sym_preproc_elifdef_in_select_type, - [135988] = 6, - ACTIONS(864), 1, + STATE(7938), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [136005] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11977), 1, + ACTIONS(11975), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7764), 3, + STATE(8161), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [136011] = 6, + [136028] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11979), 1, + ACTIONS(11977), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8364), 3, + STATE(8018), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136034] = 9, - ACTIONS(10423), 1, + [136051] = 9, + ACTIONS(10417), 1, aux_sym__class_default_token1, - ACTIONS(11981), 1, + ACTIONS(11979), 1, sym_preproc_comment, - ACTIONS(11983), 1, + ACTIONS(11981), 1, aux_sym_implicit_statement_token3, - ACTIONS(11985), 1, + ACTIONS(11983), 1, aux_sym_derived_type_token1, - ACTIONS(11987), 1, + ACTIONS(11985), 1, aux_sym_type_statement_token2, - ACTIONS(11989), 1, + ACTIONS(11987), 1, aux_sym_type_statement_token3, - STATE(3714), 1, + STATE(3672), 1, sym__class_default, - STATE(8151), 1, + STATE(5830), 1, sym_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [136063] = 6, + [136080] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11991), 1, + ACTIONS(11989), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7494), 3, + STATE(8227), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136086] = 6, - ACTIONS(4669), 1, + [136103] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, - aux_sym_preproc_else_token1, - ACTIONS(11993), 1, + ACTIONS(11275), 1, aux_sym_preproc_if_token2, + ACTIONS(11815), 1, + aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7659), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [136109] = 6, - ACTIONS(1548), 1, + STATE(7610), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [136126] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11995), 1, + ACTIONS(11991), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7495), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [136132] = 6, + STATE(7623), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [136149] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11997), 1, + ACTIONS(11993), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7509), 3, + STATE(8242), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136155] = 6, - ACTIONS(1548), 1, + [136172] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11999), 1, + ACTIONS(11995), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7499), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [136178] = 6, + STATE(7624), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [136195] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12001), 1, + ACTIONS(11997), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7817), 3, + STATE(8244), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136201] = 6, - ACTIONS(864), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, - aux_sym_preproc_else_token1, - ACTIONS(12003), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11815), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8021), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [136224] = 6, + [136218] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12005), 1, + ACTIONS(11999), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8389), 3, + STATE(8276), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136247] = 6, + [136241] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12007), 1, + ACTIONS(12001), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7902), 3, + STATE(8278), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136270] = 6, - ACTIONS(11897), 1, - aux_sym_preproc_else_token1, - ACTIONS(11899), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12009), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11901), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8304), 3, - sym_preproc_else_in_select_case, - sym_preproc_elif_in_select_case, - sym_preproc_elifdef_in_select_case, - [136293] = 6, - ACTIONS(864), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11291), 1, - aux_sym_preproc_if_token2, - ACTIONS(11813), 1, - aux_sym_preproc_else_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11815), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8376), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [136316] = 6, - ACTIONS(864), 1, + [136264] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, - aux_sym_preproc_else_token1, - ACTIONS(12011), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11815), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8375), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [136339] = 6, - ACTIONS(11871), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(11873), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12013), 1, + ACTIONS(12003), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11875), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7530), 3, - sym_preproc_else_in_select_rank, - sym_preproc_elif_in_select_rank, - sym_preproc_elifdef_in_select_rank, - [136362] = 6, - ACTIONS(11871), 1, - aux_sym_preproc_else_token1, - ACTIONS(11873), 1, + STATE(8301), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [136287] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(12015), 1, + ACTIONS(11271), 1, aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11875), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7491), 3, - sym_preproc_else_in_select_rank, - sym_preproc_elif_in_select_rank, - sym_preproc_elifdef_in_select_rank, - [136385] = 6, - ACTIONS(11871), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(11873), 1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11817), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8203), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [136310] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(12017), 1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(12005), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11875), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7784), 3, - sym_preproc_else_in_select_rank, - sym_preproc_elif_in_select_rank, - sym_preproc_elifdef_in_select_rank, - [136408] = 6, - ACTIONS(4669), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + STATE(7487), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [136333] = 6, + ACTIONS(11877), 1, aux_sym_preproc_else_token1, - ACTIONS(12019), 1, + ACTIONS(11879), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12007), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11881), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8016), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [136431] = 6, + STATE(7847), 3, + sym_preproc_else_in_select_case, + sym_preproc_elif_in_select_case, + sym_preproc_elifdef_in_select_case, + [136356] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12021), 1, + ACTIONS(12009), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8173), 3, + STATE(7513), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136454] = 6, - ACTIONS(4669), 1, + [136379] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12023), 1, + ACTIONS(12011), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8357), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [136477] = 6, + STATE(7517), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [136402] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12025), 1, + ACTIONS(12013), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7848), 3, + STATE(7543), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136500] = 6, - ACTIONS(864), 1, + [136425] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11271), 1, - aux_sym_preproc_if_token2, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, + ACTIONS(12015), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8347), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [136523] = 6, + STATE(7546), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [136448] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12027), 1, + ACTIONS(12017), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7555), 3, + STATE(7566), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136546] = 6, - ACTIONS(11887), 1, - aux_sym_preproc_else_token1, + [136471] = 6, ACTIONS(11889), 1, + aux_sym_preproc_else_token1, + ACTIONS(11891), 1, aux_sym_preproc_elif_token1, - ACTIONS(12029), 1, + ACTIONS(12019), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11891), 2, + ACTIONS(11893), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7841), 3, + STATE(7941), 3, sym_preproc_else_in_select_type, sym_preproc_elif_in_select_type, sym_preproc_elifdef_in_select_type, - [136569] = 6, - ACTIONS(864), 1, + [136494] = 9, + ACTIONS(10417), 1, + aux_sym__class_default_token1, + ACTIONS(11981), 1, + aux_sym_implicit_statement_token3, + ACTIONS(11983), 1, + aux_sym_derived_type_token1, + ACTIONS(11985), 1, + aux_sym_type_statement_token2, + ACTIONS(11987), 1, + aux_sym_type_statement_token3, + ACTIONS(12021), 1, + sym_preproc_comment, + STATE(3672), 1, + sym__class_default, + STATE(5754), 1, + sym_type_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [136523] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(12031), 1, + ACTIONS(12023), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7594), 3, + STATE(7516), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, - [136592] = 6, + [136546] = 6, + ACTIONS(11909), 1, + aux_sym_preproc_else_token1, + ACTIONS(11911), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12025), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11913), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8158), 3, + sym_preproc_else_in_select_rank, + sym_preproc_elif_in_select_rank, + sym_preproc_elifdef_in_select_rank, + [136569] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12033), 1, + ACTIONS(12027), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7474), 3, + STATE(8124), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [136615] = 6, + [136592] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12035), 1, + ACTIONS(12029), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7865), 3, + STATE(7733), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, + [136615] = 6, + ACTIONS(12035), 1, + aux_sym_concurrent_locality_token1, + ACTIONS(12037), 1, + aux_sym_concurrent_locality_token3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12031), 2, + aux_sym_variable_attributes_token3, + aux_sym_concurrent_locality_token2, + ACTIONS(12033), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(5755), 2, + sym_concurrent_locality, + aux_sym_concurrent_statement_repeat1, [136638] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12037), 1, + ACTIONS(12039), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8051), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(8288), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [136661] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12039), 1, + ACTIONS(12041), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8171), 3, + STATE(8112), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [136684] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12041), 1, + ACTIONS(12043), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7560), 3, + STATE(8282), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [136707] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12043), 1, + ACTIONS(12045), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7782), 3, + STATE(7762), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [136730] = 6, - ACTIONS(4669), 1, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, - ACTIONS(12045), 1, + ACTIONS(12047), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8026), 3, + STATE(7809), 3, sym_preproc_else_in_module, sym_preproc_elif_in_module, sym_preproc_elifdef_in_module, [136753] = 6, - ACTIONS(864), 1, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, - ACTIONS(12047), 1, + ACTIONS(12049), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7934), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(8370), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, [136776] = 6, - ACTIONS(11887), 1, - aux_sym_preproc_else_token1, - ACTIONS(11889), 1, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(12049), 1, + ACTIONS(11821), 1, + aux_sym_preproc_else_token1, + ACTIONS(12051), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11891), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7492), 3, - sym_preproc_else_in_select_type, - sym_preproc_elif_in_select_type, - sym_preproc_elifdef_in_select_type, + STATE(8381), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, [136799] = 6, - ACTIONS(11871), 1, - aux_sym_preproc_else_token1, - ACTIONS(11873), 1, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(12051), 1, + ACTIONS(11821), 1, + aux_sym_preproc_else_token1, + ACTIONS(12053), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11875), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7562), 3, - sym_preproc_else_in_select_rank, - sym_preproc_elif_in_select_rank, - sym_preproc_elifdef_in_select_rank, + STATE(8384), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, [136822] = 6, - ACTIONS(1548), 1, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, - ACTIONS(12053), 1, + ACTIONS(12055), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8080), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, + STATE(7982), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, [136845] = 6, - ACTIONS(864), 1, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(12055), 1, + ACTIONS(12057), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8200), 3, + STATE(7635), 3, sym_preproc_else_in_specification_part, sym_preproc_elif_in_specification_part, sym_preproc_elifdef_in_specification_part, [136868] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12057), 1, + ACTIONS(12059), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8139), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(7831), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [136891] = 6, - ACTIONS(1548), 1, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, - ACTIONS(12059), 1, + ACTIONS(12061), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8137), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, + STATE(8373), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, [136914] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12061), 1, + ACTIONS(12063), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8184), 3, + STATE(7855), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [136937] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12063), 1, + ACTIONS(12065), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7991), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(7861), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [136960] = 6, - ACTIONS(12069), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(12071), 1, - aux_sym_concurrent_locality_token3, + ACTIONS(1548), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(12067), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12065), 2, - aux_sym_variable_attributes_token3, - aux_sym_concurrent_locality_token2, - ACTIONS(12067), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(5758), 2, - sym_concurrent_locality, - aux_sym_concurrent_statement_repeat1, + ACTIONS(11811), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7877), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [136983] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12073), 1, + ACTIONS(12069), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8185), 3, + STATE(7879), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137006] = 6, - ACTIONS(4669), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11909), 1, aux_sym_preproc_else_token1, - ACTIONS(12075), 1, + ACTIONS(11911), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12071), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11913), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7501), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, + STATE(7499), 3, + sym_preproc_else_in_select_rank, + sym_preproc_elif_in_select_rank, + sym_preproc_elifdef_in_select_rank, [137029] = 6, - ACTIONS(4669), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12077), 1, + ACTIONS(12073), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8032), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, + STATE(8141), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137052] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12079), 1, + ACTIONS(12075), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7668), 3, + STATE(8187), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137075] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12081), 1, + ACTIONS(12077), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8121), 3, + STATE(8188), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137098] = 6, - ACTIONS(4669), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12083), 1, + ACTIONS(12079), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7756), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, + STATE(8209), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137121] = 6, - ACTIONS(4669), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12085), 1, + ACTIONS(12081), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8141), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, + STATE(8211), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137144] = 6, - ACTIONS(4669), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12087), 1, + ACTIONS(12083), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8152), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, + STATE(8218), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137167] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12089), 1, + ACTIONS(12085), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7852), 3, + STATE(7565), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137190] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12091), 1, + ACTIONS(12087), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8108), 3, + STATE(7599), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137213] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12093), 1, + ACTIONS(12089), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8134), 3, + STATE(8217), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137236] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12095), 1, + ACTIONS(12091), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7561), 3, + STATE(7639), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137259] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11277), 1, - aux_sym_preproc_if_token2, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, + ACTIONS(12093), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8355), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(7705), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137282] = 6, - ACTIONS(11897), 1, - aux_sym_preproc_else_token1, - ACTIONS(11899), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(12097), 1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(12095), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11901), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8378), 3, - sym_preproc_else_in_select_case, - sym_preproc_elif_in_select_case, - sym_preproc_elifdef_in_select_case, + STATE(8274), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137305] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12099), 1, + ACTIONS(12097), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8136), 3, + STATE(7719), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137328] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12101), 1, + ACTIONS(12099), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8156), 3, + STATE(7745), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137351] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12103), 1, + ACTIONS(12101), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8205), 3, + STATE(8304), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137374] = 6, - ACTIONS(1548), 1, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, - ACTIONS(12105), 1, + ACTIONS(12103), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7628), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, + STATE(7935), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, [137397] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12107), 1, + ACTIONS(12105), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8087), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(8353), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137420] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12109), 1, + ACTIONS(12107), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7686), 3, + STATE(8372), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137443] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12111), 1, + ACTIONS(12109), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7620), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(8377), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137466] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12113), 1, + ACTIONS(12111), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7545), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(8385), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137489] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12115), 1, + ACTIONS(12113), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7567), 3, + STATE(8386), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137512] = 6, - ACTIONS(11871), 1, - aux_sym_preproc_else_token1, - ACTIONS(11873), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(12117), 1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(12115), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11875), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7669), 3, - sym_preproc_else_in_select_rank, - sym_preproc_elif_in_select_rank, - sym_preproc_elifdef_in_select_rank, + STATE(8393), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137535] = 6, - ACTIONS(4669), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11877), 1, aux_sym_preproc_else_token1, - ACTIONS(12119), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11843), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7801), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [137558] = 6, - ACTIONS(1548), 1, + ACTIONS(11879), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, - aux_sym_preproc_else_token1, - ACTIONS(12121), 1, + ACTIONS(12117), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11881), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8208), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [137581] = 6, - ACTIONS(11897), 1, + STATE(7962), 3, + sym_preproc_else_in_select_case, + sym_preproc_elif_in_select_case, + sym_preproc_elifdef_in_select_case, + [137558] = 6, + ACTIONS(11889), 1, aux_sym_preproc_else_token1, - ACTIONS(11899), 1, + ACTIONS(11891), 1, aux_sym_preproc_elif_token1, - ACTIONS(12123), 1, + ACTIONS(12119), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11901), 2, + ACTIONS(11893), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8284), 3, - sym_preproc_else_in_select_case, - sym_preproc_elif_in_select_case, - sym_preproc_elifdef_in_select_case, - [137604] = 6, - ACTIONS(12069), 1, + STATE(7973), 3, + sym_preproc_else_in_select_type, + sym_preproc_elif_in_select_type, + sym_preproc_elifdef_in_select_type, + [137581] = 6, + ACTIONS(12035), 1, aux_sym_concurrent_locality_token1, - ACTIONS(12071), 1, + ACTIONS(12037), 1, aux_sym_concurrent_locality_token3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12065), 2, + ACTIONS(12031), 2, aux_sym_variable_attributes_token3, aux_sym_concurrent_locality_token2, - ACTIONS(12125), 2, + ACTIONS(12121), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5766), 2, + STATE(5790), 2, sym_concurrent_locality, aux_sym_concurrent_statement_repeat1, + [137604] = 6, + ACTIONS(1548), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(12123), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11811), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7481), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137627] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12127), 1, + ACTIONS(12125), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8252), 3, + STATE(7488), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137650] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12129), 1, + ACTIONS(12127), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7702), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(7489), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137673] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12131), 1, + ACTIONS(12129), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8307), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(7495), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137696] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11381), 1, - aux_sym_preproc_if_token2, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, + ACTIONS(12131), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7612), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(7496), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137719] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12133), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7568), 3, + STATE(7500), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137742] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11909), 1, aux_sym_preproc_else_token1, + ACTIONS(11911), 1, + aux_sym_preproc_elif_token1, ACTIONS(12135), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11913), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7572), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, + STATE(8001), 3, + sym_preproc_else_in_select_rank, + sym_preproc_elif_in_select_rank, + sym_preproc_elifdef_in_select_rank, [137765] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12137), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8318), 3, + STATE(7556), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137788] = 6, - ACTIONS(12144), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(12147), 1, - aux_sym_concurrent_locality_token3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12139), 2, - aux_sym_variable_attributes_token3, - aux_sym_concurrent_locality_token2, - ACTIONS(12142), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(5766), 2, - sym_concurrent_locality, - aux_sym_concurrent_statement_repeat1, - [137811] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12150), 1, + ACTIONS(12139), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8084), 3, + STATE(7561), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, + [137811] = 6, + ACTIONS(4647), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11821), 1, + aux_sym_preproc_else_token1, + ACTIONS(12141), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11823), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8008), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, [137834] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12152), 1, + ACTIONS(12143), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7587), 3, + STATE(7562), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137857] = 6, - ACTIONS(11897), 1, - aux_sym_preproc_else_token1, - ACTIONS(11899), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(12154), 1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(12145), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11901), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7666), 3, - sym_preproc_else_in_select_case, - sym_preproc_elif_in_select_case, - sym_preproc_elifdef_in_select_case, + STATE(7568), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [137880] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12156), 1, + ACTIONS(12147), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7592), 3, + STATE(7569), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137903] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12158), 1, + ACTIONS(12149), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7593), 3, + STATE(7573), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137926] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12160), 1, + ACTIONS(12151), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7862), 3, + STATE(7588), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137949] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12162), 1, + ACTIONS(12153), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7599), 3, + STATE(7593), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137972] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12164), 1, + ACTIONS(12155), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7600), 3, + STATE(7594), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [137995] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12166), 1, + ACTIONS(12157), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7604), 3, + STATE(7600), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [138018] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12168), 1, + ACTIONS(12159), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8301), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(7601), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [138041] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12170), 1, + ACTIONS(12161), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8020), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(7605), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [138064] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12172), 1, + ACTIONS(12163), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7619), 3, + STATE(7620), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [138087] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12174), 1, + ACTIONS(12165), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7624), 3, + STATE(7625), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, [138110] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12176), 1, + ACTIONS(12167), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8014), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, + STATE(7626), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, [138133] = 6, - ACTIONS(864), 1, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12178), 1, + ACTIONS(12169), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7872), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [138156] = 9, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - ACTIONS(11951), 1, - aux_sym_implicit_statement_token3, - ACTIONS(11953), 1, - aux_sym_derived_type_token1, - ACTIONS(11955), 1, - aux_sym_type_statement_token2, - ACTIONS(11957), 1, - aux_sym_type_statement_token3, - ACTIONS(12180), 1, - sym_preproc_comment, - STATE(3685), 1, - sym__class_default, - STATE(5790), 1, - sym_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [138185] = 6, + STATE(7632), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138156] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12182), 1, + ACTIONS(12171), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7737), 3, + STATE(7633), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138208] = 6, - ACTIONS(11887), 1, - aux_sym_preproc_else_token1, - ACTIONS(11889), 1, + [138179] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(12184), 1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(12173), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11891), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7814), 3, - sym_preproc_else_in_select_type, - sym_preproc_elif_in_select_type, - sym_preproc_elifdef_in_select_type, - [138231] = 6, - ACTIONS(4669), 1, + STATE(7637), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138202] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12186), 1, + ACTIONS(12175), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7610), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [138254] = 6, - ACTIONS(864), 1, + STATE(7652), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138225] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12188), 1, + ACTIONS(12177), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8126), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [138277] = 6, - ACTIONS(864), 1, + STATE(7657), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138248] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12190), 1, + ACTIONS(12179), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7471), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [138300] = 6, + STATE(7658), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138271] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12192), 1, + ACTIONS(12181), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8308), 3, + STATE(7664), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138323] = 6, + [138294] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12194), 1, + ACTIONS(12183), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8353), 3, + STATE(7665), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138346] = 6, - ACTIONS(11887), 1, - aux_sym_preproc_else_token1, - ACTIONS(11889), 1, + [138317] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(12196), 1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(12185), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11891), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7543), 3, - sym_preproc_else_in_select_type, - sym_preproc_elif_in_select_type, - sym_preproc_elifdef_in_select_type, - [138369] = 6, - ACTIONS(11871), 1, - aux_sym_preproc_else_token1, - ACTIONS(11873), 1, + STATE(7669), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138340] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(12198), 1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, + ACTIONS(12187), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11875), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7616), 3, - sym_preproc_else_in_select_rank, - sym_preproc_elif_in_select_rank, - sym_preproc_elifdef_in_select_rank, - [138392] = 6, + STATE(7606), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138363] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12200), 1, + ACTIONS(12189), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7625), 3, + STATE(7681), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138415] = 6, - ACTIONS(4669), 1, + [138386] = 6, + ACTIONS(12196), 1, + aux_sym_concurrent_locality_token1, + ACTIONS(12199), 1, + aux_sym_concurrent_locality_token3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12191), 2, + aux_sym_variable_attributes_token3, + aux_sym_concurrent_locality_token2, + ACTIONS(12194), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(5790), 2, + sym_concurrent_locality, + aux_sym_concurrent_statement_repeat1, + [138409] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12202), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7627), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [138438] = 6, + STATE(7682), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138432] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12204), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7500), 3, + STATE(7683), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138461] = 6, + [138455] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12206), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8099), 3, + STATE(7684), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138484] = 6, - ACTIONS(864), 1, + [138478] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12208), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8168), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [138507] = 6, + STATE(7685), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138501] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12210), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8371), 3, + STATE(7686), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138530] = 6, - ACTIONS(864), 1, + [138524] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12212), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8387), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [138553] = 6, + STATE(7697), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138547] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12214), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7631), 3, + STATE(7698), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138576] = 6, + [138570] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12216), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7516), 3, + STATE(7699), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138599] = 6, + [138593] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12218), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7632), 3, + STATE(7700), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138622] = 6, + [138616] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12220), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8393), 3, + STATE(7701), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138645] = 6, + [138639] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12222), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7636), 3, + STATE(7702), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138668] = 6, + [138662] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12224), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7518), 3, + STATE(8191), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138691] = 6, + [138685] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12226), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8321), 3, + STATE(7713), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138714] = 6, + [138708] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12228), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7588), 3, + STATE(7714), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138737] = 6, + [138731] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12230), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8337), 3, + STATE(7715), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138760] = 6, + [138754] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12232), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7651), 3, + STATE(7716), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138783] = 6, - ACTIONS(11871), 1, - aux_sym_preproc_else_token1, - ACTIONS(11873), 1, + [138777] = 6, + ACTIONS(1548), 1, aux_sym_preproc_elif_token1, + ACTIONS(11809), 1, + aux_sym_preproc_else_token1, ACTIONS(12234), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11875), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8277), 3, - sym_preproc_else_in_select_rank, - sym_preproc_elif_in_select_rank, - sym_preproc_elifdef_in_select_rank, - [138806] = 6, + STATE(7717), 3, + sym_preproc_else_in_statements, + sym_preproc_elif_in_statements, + sym_preproc_elifdef_in_statements, + [138800] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12236), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8351), 3, + STATE(7718), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138829] = 6, - ACTIONS(1548), 1, + [138823] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(12238), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7596), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [138852] = 6, + STATE(8362), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [138846] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, ACTIONS(12240), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7656), 3, + STATE(7617), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [138875] = 6, - ACTIONS(1548), 1, + [138869] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(12242), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7546), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [138898] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + STATE(7647), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [138892] = 6, + ACTIONS(11877), 1, aux_sym_preproc_else_token1, + ACTIONS(11879), 1, + aux_sym_preproc_elif_token1, ACTIONS(12244), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11881), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7550), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [138921] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + STATE(8050), 3, + sym_preproc_else_in_select_case, + sym_preproc_elif_in_select_case, + sym_preproc_elifdef_in_select_case, + [138915] = 6, + ACTIONS(11877), 1, aux_sym_preproc_else_token1, + ACTIONS(11879), 1, + aux_sym_preproc_elif_token1, ACTIONS(12246), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11881), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7574), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [138944] = 6, - ACTIONS(864), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + STATE(8052), 3, + sym_preproc_else_in_select_case, + sym_preproc_elif_in_select_case, + sym_preproc_elifdef_in_select_case, + [138938] = 6, + ACTIONS(11889), 1, aux_sym_preproc_else_token1, + ACTIONS(11891), 1, + aux_sym_preproc_elif_token1, ACTIONS(12248), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11893), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8348), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [138967] = 6, - ACTIONS(4669), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + STATE(8064), 3, + sym_preproc_else_in_select_type, + sym_preproc_elif_in_select_type, + sym_preproc_elifdef_in_select_type, + [138961] = 6, + ACTIONS(11889), 1, aux_sym_preproc_else_token1, + ACTIONS(11891), 1, + aux_sym_preproc_elif_token1, ACTIONS(12250), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11893), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7603), 3, - sym_preproc_else_in_module, - sym_preproc_elif_in_module, - sym_preproc_elifdef_in_module, - [138990] = 6, - ACTIONS(1548), 1, + STATE(8065), 3, + sym_preproc_else_in_select_type, + sym_preproc_elif_in_select_type, + sym_preproc_elifdef_in_select_type, + [138984] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(12252), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7664), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [139013] = 6, - ACTIONS(864), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + STATE(7510), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [139007] = 6, + ACTIONS(11909), 1, aux_sym_preproc_else_token1, + ACTIONS(11911), 1, + aux_sym_preproc_elif_token1, ACTIONS(12254), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11913), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7655), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [139036] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + STATE(8073), 3, + sym_preproc_else_in_select_rank, + sym_preproc_elif_in_select_rank, + sym_preproc_elifdef_in_select_rank, + [139030] = 6, + ACTIONS(11909), 1, aux_sym_preproc_else_token1, + ACTIONS(11911), 1, + aux_sym_preproc_elif_token1, ACTIONS(12256), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11913), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7626), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [139059] = 6, - ACTIONS(1548), 1, + STATE(8074), 3, + sym_preproc_else_in_select_rank, + sym_preproc_elif_in_select_rank, + sym_preproc_elifdef_in_select_rank, + [139053] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11815), 1, aux_sym_preproc_else_token1, ACTIONS(12258), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7657), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [139082] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + STATE(7903), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [139076] = 6, + ACTIONS(11877), 1, aux_sym_preproc_else_token1, + ACTIONS(11879), 1, + aux_sym_preproc_elif_token1, ACTIONS(12260), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11881), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8297), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [139105] = 6, - ACTIONS(1548), 1, + STATE(8088), 3, + sym_preproc_else_in_select_case, + sym_preproc_elif_in_select_case, + sym_preproc_elifdef_in_select_case, + [139099] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11287), 1, + aux_sym_preproc_if_token2, + ACTIONS(11815), 1, + aux_sym_preproc_else_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11817), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8012), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [139122] = 6, + ACTIONS(11889), 1, aux_sym_preproc_else_token1, + ACTIONS(11891), 1, + aux_sym_preproc_elif_token1, ACTIONS(12262), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11893), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8372), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [139128] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + STATE(8090), 3, + sym_preproc_else_in_select_type, + sym_preproc_elif_in_select_type, + sym_preproc_elifdef_in_select_type, + [139145] = 6, + ACTIONS(11909), 1, aux_sym_preproc_else_token1, + ACTIONS(11911), 1, + aux_sym_preproc_elif_token1, ACTIONS(12264), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11913), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7637), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [139151] = 6, - ACTIONS(11897), 1, - aux_sym_preproc_else_token1, - ACTIONS(11899), 1, + STATE(8092), 3, + sym_preproc_else_in_select_rank, + sym_preproc_elif_in_select_rank, + sym_preproc_elifdef_in_select_rank, + [139168] = 7, + ACTIONS(11611), 1, + anon_sym_LPAREN2, + ACTIONS(11615), 1, + aux_sym_hollerith_constant_token1, + ACTIONS(11617), 1, + sym__string_literal, + ACTIONS(11619), 1, + sym__string_literal_kind, + ACTIONS(12266), 1, + sym_edit_descriptor, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + STATE(5844), 3, + sym__transfer_item, + sym_hollerith_constant, + sym_string_literal, + [139193] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(12266), 1, + ACTIONS(11815), 1, + aux_sym_preproc_else_token1, + ACTIONS(12268), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11901), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8379), 3, - sym_preproc_else_in_select_case, - sym_preproc_elif_in_select_case, - sym_preproc_elifdef_in_select_case, - [139174] = 6, - ACTIONS(1548), 1, + STATE(8228), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [139216] = 6, + ACTIONS(866), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, - aux_sym_preproc_else_token1, - ACTIONS(12268), 1, + ACTIONS(11231), 1, aux_sym_preproc_if_token2, + ACTIONS(11815), 1, + aux_sym_preproc_else_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11817), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7704), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [139197] = 6, - ACTIONS(4669), 1, + STATE(8035), 3, + sym_preproc_else_in_specification_part, + sym_preproc_elif_in_specification_part, + sym_preproc_elifdef_in_specification_part, + [139239] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11841), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, ACTIONS(12270), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11843), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7796), 3, + STATE(8257), 3, sym_preproc_else_in_module, sym_preproc_elif_in_module, sym_preproc_elifdef_in_module, - [139220] = 6, - ACTIONS(1548), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + [139262] = 6, + ACTIONS(11877), 1, aux_sym_preproc_else_token1, + ACTIONS(11879), 1, + aux_sym_preproc_elif_token1, ACTIONS(12272), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11881), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(7663), 3, - sym_preproc_else_in_statements, - sym_preproc_elif_in_statements, - sym_preproc_elifdef_in_statements, - [139243] = 6, - ACTIONS(864), 1, + STATE(8068), 3, + sym_preproc_else_in_select_case, + sym_preproc_elif_in_select_case, + sym_preproc_elifdef_in_select_case, + [139285] = 6, + ACTIONS(4647), 1, aux_sym_preproc_elif_token1, - ACTIONS(11813), 1, + ACTIONS(11821), 1, aux_sym_preproc_else_token1, ACTIONS(12274), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11815), 2, + ACTIONS(11823), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8113), 3, - sym_preproc_else_in_specification_part, - sym_preproc_elif_in_specification_part, - sym_preproc_elifdef_in_specification_part, - [139266] = 6, + STATE(7857), 3, + sym_preproc_else_in_module, + sym_preproc_elif_in_module, + sym_preproc_elifdef_in_module, + [139308] = 6, + ACTIONS(11889), 1, + aux_sym_preproc_else_token1, + ACTIONS(11891), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12276), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11893), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7458), 3, + sym_preproc_else_in_select_type, + sym_preproc_elif_in_select_type, + sym_preproc_elifdef_in_select_type, + [139331] = 6, ACTIONS(1548), 1, aux_sym_preproc_elif_token1, - ACTIONS(11807), 1, + ACTIONS(11809), 1, aux_sym_preproc_else_token1, - ACTIONS(12276), 1, + ACTIONS(12278), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11809), 2, + ACTIONS(11811), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8101), 3, + STATE(7509), 3, sym_preproc_else_in_statements, sym_preproc_elif_in_statements, sym_preproc_elifdef_in_statements, - [139289] = 7, - ACTIONS(2529), 1, + [139354] = 8, + ACTIONS(10417), 1, + aux_sym__class_default_token1, + ACTIONS(11981), 1, + aux_sym_implicit_statement_token3, + ACTIONS(11983), 1, + aux_sym_derived_type_token1, + ACTIONS(11985), 1, + aux_sym_type_statement_token2, + ACTIONS(11987), 1, + aux_sym_type_statement_token3, + STATE(3672), 1, + sym__class_default, + STATE(5822), 1, + sym_type_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [139380] = 7, + ACTIONS(2285), 1, aux_sym_elseif_clause_token1, - ACTIONS(12278), 1, - aux_sym_end_program_statement_token1, ACTIONS(12280), 1, - aux_sym_end_where_statement_token1, + aux_sym_end_program_statement_token1, ACTIONS(12282), 1, + aux_sym_end_where_statement_token1, + ACTIONS(12284), 1, aux_sym_elsewhere_clause_token1, - STATE(7390), 1, + STATE(7418), 1, sym_end_where_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5859), 2, + STATE(5872), 2, sym_elsewhere_clause, aux_sym__block_where_statement_repeat1, - [139313] = 8, - ACTIONS(10423), 1, + [139404] = 5, + ACTIONS(11721), 1, + aux_sym_language_binding_token1, + ACTIONS(11723), 1, + aux_sym_function_result_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12286), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(5857), 3, + sym_language_binding, + sym_function_result, + aux_sym_function_statement_repeat1, + [139424] = 8, + ACTIONS(10417), 1, aux_sym__class_default_token1, - ACTIONS(11951), 1, + ACTIONS(11981), 1, aux_sym_implicit_statement_token3, - ACTIONS(11953), 1, + ACTIONS(11983), 1, aux_sym_derived_type_token1, - ACTIONS(11955), 1, + ACTIONS(11985), 1, aux_sym_type_statement_token2, - ACTIONS(11957), 1, + ACTIONS(11987), 1, aux_sym_type_statement_token3, - STATE(3685), 1, + STATE(3672), 1, sym__class_default, - STATE(5686), 1, + STATE(5814), 1, sym_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [139339] = 5, - ACTIONS(11755), 1, - aux_sym_language_binding_token1, - ACTIONS(11757), 1, - aux_sym_function_result_token1, + [139450] = 8, + ACTIONS(10417), 1, + aux_sym__class_default_token1, + ACTIONS(11981), 1, + aux_sym_implicit_statement_token3, + ACTIONS(11983), 1, + aux_sym_derived_type_token1, + ACTIONS(11985), 1, + aux_sym_type_statement_token2, + ACTIONS(11987), 1, + aux_sym_type_statement_token3, + STATE(3672), 1, + sym__class_default, + STATE(5815), 1, + sym_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12284), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(5858), 3, - sym_language_binding, - sym_function_result, - aux_sym_function_statement_repeat1, - [139359] = 5, - ACTIONS(11755), 1, + [139476] = 6, + ACTIONS(11719), 1, + anon_sym_LPAREN2, + ACTIONS(11721), 1, aux_sym_language_binding_token1, - ACTIONS(11757), 1, - aux_sym_function_result_token1, + STATE(7277), 1, + sym_language_binding, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12286), 2, + ACTIONS(12288), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5858), 3, - sym_language_binding, - sym_function_result, - aux_sym_function_statement_repeat1, - [139379] = 8, - ACTIONS(10423), 1, + STATE(6237), 2, + sym__parameters, + sym_parameters, + [139498] = 8, + ACTIONS(10417), 1, aux_sym__class_default_token1, - ACTIONS(11951), 1, + ACTIONS(11981), 1, aux_sym_implicit_statement_token3, - ACTIONS(11953), 1, + ACTIONS(11983), 1, aux_sym_derived_type_token1, - ACTIONS(11955), 1, + ACTIONS(11985), 1, aux_sym_type_statement_token2, - ACTIONS(11957), 1, + ACTIONS(11987), 1, + aux_sym_type_statement_token3, + STATE(3672), 1, + sym__class_default, + STATE(5707), 1, + sym_type_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [139524] = 3, + ACTIONS(12292), 1, + sym_edit_descriptor, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12290), 6, + sym__string_literal, + sym__string_literal_kind, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_hollerith_constant_token1, + [139540] = 8, + ACTIONS(10417), 1, + aux_sym__class_default_token1, + ACTIONS(11899), 1, + aux_sym_implicit_statement_token3, + ACTIONS(11901), 1, + aux_sym_derived_type_token1, + ACTIONS(11903), 1, + aux_sym_type_statement_token2, + ACTIONS(11905), 1, aux_sym_type_statement_token3, - STATE(3685), 1, + STATE(3712), 1, sym__class_default, - STATE(5687), 1, + STATE(7956), 1, sym_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [139405] = 5, - ACTIONS(11755), 1, + [139566] = 5, + ACTIONS(11721), 1, aux_sym_language_binding_token1, - ACTIONS(11757), 1, + ACTIONS(11723), 1, aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12288), 2, + ACTIONS(12294), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5858), 3, + STATE(5842), 3, sym_language_binding, sym_function_result, aux_sym_function_statement_repeat1, - [139425] = 6, - ACTIONS(11753), 1, - anon_sym_LPAREN2, - ACTIONS(11755), 1, + [139586] = 5, + ACTIONS(11721), 1, aux_sym_language_binding_token1, - STATE(7074), 1, - sym_language_binding, + ACTIONS(11723), 1, + aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12290), 2, + ACTIONS(12296), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(6144), 2, - sym__parameters, - sym_parameters, - [139447] = 5, - ACTIONS(11755), 1, + STATE(5845), 3, + sym_language_binding, + sym_function_result, + aux_sym_function_statement_repeat1, + [139606] = 3, + ACTIONS(12300), 1, + sym_edit_descriptor, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12298), 6, + sym__string_literal, + sym__string_literal_kind, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_hollerith_constant_token1, + [139622] = 3, + ACTIONS(12302), 1, + sym_edit_descriptor, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11582), 6, + sym__string_literal, + sym__string_literal_kind, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_hollerith_constant_token1, + [139638] = 5, + ACTIONS(12304), 1, aux_sym_language_binding_token1, - ACTIONS(11757), 1, + ACTIONS(12307), 1, aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12292), 2, + ACTIONS(12310), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5858), 3, + STATE(5845), 3, sym_language_binding, sym_function_result, aux_sym_function_statement_repeat1, - [139467] = 5, - ACTIONS(11755), 1, + [139658] = 5, + ACTIONS(11721), 1, aux_sym_language_binding_token1, - ACTIONS(11757), 1, + ACTIONS(11723), 1, aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12294), 2, + ACTIONS(12312), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5833), 3, + STATE(5845), 3, sym_language_binding, sym_function_result, aux_sym_function_statement_repeat1, - [139487] = 5, - ACTIONS(11755), 1, + [139678] = 5, + ACTIONS(11721), 1, aux_sym_language_binding_token1, - ACTIONS(11757), 1, + ACTIONS(11723), 1, aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12296), 2, + ACTIONS(12314), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5858), 3, + STATE(5845), 3, sym_language_binding, sym_function_result, aux_sym_function_statement_repeat1, - [139507] = 8, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - ACTIONS(11983), 1, - aux_sym_implicit_statement_token3, - ACTIONS(11985), 1, - aux_sym_derived_type_token1, - ACTIONS(11987), 1, - aux_sym_type_statement_token2, - ACTIONS(11989), 1, - aux_sym_type_statement_token3, - STATE(3714), 1, - sym__class_default, - STATE(7876), 1, - sym_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [139533] = 5, - ACTIONS(11755), 1, + [139698] = 5, + ACTIONS(11721), 1, aux_sym_language_binding_token1, - ACTIONS(11757), 1, + ACTIONS(11723), 1, aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12298), 2, + ACTIONS(12316), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5838), 3, + STATE(5847), 3, sym_language_binding, sym_function_result, aux_sym_function_statement_repeat1, - [139553] = 3, - ACTIONS(12300), 1, - sym_edit_descriptor, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11598), 6, - sym__string_literal, - sym__string_literal_kind, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_hollerith_constant_token1, - [139569] = 5, - ACTIONS(11755), 1, + [139718] = 5, + ACTIONS(11721), 1, aux_sym_language_binding_token1, - ACTIONS(11757), 1, + ACTIONS(11723), 1, aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12302), 2, + ACTIONS(12318), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5858), 3, + STATE(5845), 3, sym_language_binding, sym_function_result, aux_sym_function_statement_repeat1, - [139589] = 8, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - ACTIONS(11951), 1, - aux_sym_implicit_statement_token3, - ACTIONS(11953), 1, - aux_sym_derived_type_token1, - ACTIONS(11955), 1, - aux_sym_type_statement_token2, - ACTIONS(11957), 1, - aux_sym_type_statement_token3, - STATE(3685), 1, - sym__class_default, - STATE(5652), 1, - sym_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [139615] = 7, - ACTIONS(2529), 1, + [139738] = 7, + ACTIONS(2285), 1, aux_sym_elseif_clause_token1, - ACTIONS(12278), 1, - aux_sym_end_program_statement_token1, ACTIONS(12280), 1, - aux_sym_end_where_statement_token1, - ACTIONS(12282), 1, - aux_sym_elsewhere_clause_token1, - STATE(7135), 1, - sym_end_where_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(5859), 2, - sym_elsewhere_clause, - aux_sym__block_where_statement_repeat1, - [139639] = 7, - ACTIONS(2529), 1, - aux_sym_elseif_clause_token1, - ACTIONS(12278), 1, aux_sym_end_program_statement_token1, - ACTIONS(12280), 1, - aux_sym_end_where_statement_token1, ACTIONS(12282), 1, + aux_sym_end_where_statement_token1, + ACTIONS(12284), 1, aux_sym_elsewhere_clause_token1, - STATE(7433), 1, + STATE(7118), 1, sym_end_where_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5859), 2, + STATE(5872), 2, sym_elsewhere_clause, aux_sym__block_where_statement_repeat1, - [139663] = 8, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - ACTIONS(11951), 1, - aux_sym_implicit_statement_token3, - ACTIONS(11953), 1, - aux_sym_derived_type_token1, - ACTIONS(11955), 1, - aux_sym_type_statement_token2, - ACTIONS(11957), 1, - aux_sym_type_statement_token3, - STATE(3685), 1, - sym__class_default, - STATE(5712), 1, - sym_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [139689] = 8, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - ACTIONS(11951), 1, - aux_sym_implicit_statement_token3, - ACTIONS(11953), 1, - aux_sym_derived_type_token1, - ACTIONS(11955), 1, - aux_sym_type_statement_token2, - ACTIONS(11957), 1, - aux_sym_type_statement_token3, - STATE(3685), 1, - sym__class_default, - STATE(5722), 1, - sym_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [139715] = 6, - ACTIONS(11753), 1, - anon_sym_LPAREN2, - ACTIONS(11755), 1, - aux_sym_language_binding_token1, - STATE(7168), 1, - sym_language_binding, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12304), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6209), 2, - sym__parameters, - sym_parameters, - [139737] = 6, - ACTIONS(12306), 1, + [139762] = 6, + ACTIONS(12320), 1, aux_sym_end_program_statement_token1, - ACTIONS(12310), 1, + ACTIONS(12324), 1, aux_sym_elseif_clause_token1, - ACTIONS(12313), 1, + ACTIONS(12327), 1, aux_sym_elseif_clause_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12308), 2, + ACTIONS(12322), 2, sym__integer_literal, aux_sym_end_if_statement_token1, STATE(5851), 2, sym_elseif_clause, aux_sym__block_if_statement_repeat1, - [139759] = 3, - ACTIONS(12318), 1, + [139784] = 3, + ACTIONS(7474), 1, sym_edit_descriptor, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12316), 6, + ACTIONS(7476), 6, sym__string_literal, sym__string_literal_kind, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, aux_sym_hollerith_constant_token1, - [139775] = 8, - ACTIONS(10423), 1, - aux_sym__class_default_token1, - ACTIONS(11951), 1, - aux_sym_implicit_statement_token3, - ACTIONS(11953), 1, - aux_sym_derived_type_token1, - ACTIONS(11955), 1, - aux_sym_type_statement_token2, - ACTIONS(11957), 1, - aux_sym_type_statement_token3, - STATE(3685), 1, - sym__class_default, - STATE(5664), 1, - sym_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [139801] = 5, - ACTIONS(11755), 1, - aux_sym_language_binding_token1, - ACTIONS(11757), 1, - aux_sym_function_result_token1, + [139800] = 7, + ACTIONS(2285), 1, + aux_sym_elseif_clause_token1, + ACTIONS(12280), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12282), 1, + aux_sym_end_where_statement_token1, + ACTIONS(12284), 1, + aux_sym_elsewhere_clause_token1, + STATE(7096), 1, + sym_end_where_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12320), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(5834), 3, - sym_language_binding, - sym_function_result, - aux_sym_function_statement_repeat1, - [139821] = 3, - ACTIONS(12324), 1, + STATE(5872), 2, + sym_elsewhere_clause, + aux_sym__block_where_statement_repeat1, + [139824] = 3, + ACTIONS(7528), 1, sym_edit_descriptor, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12322), 6, + ACTIONS(7530), 6, sym__string_literal, sym__string_literal_kind, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, aux_sym_hollerith_constant_token1, - [139837] = 3, - ACTIONS(7504), 1, - sym_edit_descriptor, + [139840] = 6, + ACTIONS(11719), 1, + anon_sym_LPAREN2, + ACTIONS(11721), 1, + aux_sym_language_binding_token1, + STATE(7425), 1, + sym_language_binding, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7506), 6, - sym__string_literal, - sym__string_literal_kind, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_hollerith_constant_token1, - [139853] = 3, - ACTIONS(7484), 1, - sym_edit_descriptor, + ACTIONS(12330), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + STATE(6245), 2, + sym__parameters, + sym_parameters, + [139862] = 8, + ACTIONS(10417), 1, + aux_sym__class_default_token1, + ACTIONS(11981), 1, + aux_sym_implicit_statement_token3, + ACTIONS(11983), 1, + aux_sym_derived_type_token1, + ACTIONS(11985), 1, + aux_sym_type_statement_token2, + ACTIONS(11987), 1, + aux_sym_type_statement_token3, + STATE(3672), 1, + sym__class_default, + STATE(5653), 1, + sym_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7486), 6, - sym__string_literal, - sym__string_literal_kind, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_hollerith_constant_token1, - [139869] = 5, - ACTIONS(12326), 1, + [139888] = 5, + ACTIONS(11721), 1, aux_sym_language_binding_token1, - ACTIONS(12329), 1, + ACTIONS(11723), 1, aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, @@ -580758,135 +580787,132 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(12332), 2, sym__external_end_of_statement, anon_sym_SEMI, - STATE(5858), 3, + STATE(5845), 3, sym_language_binding, sym_function_result, aux_sym_function_statement_repeat1, - [139889] = 6, - ACTIONS(12334), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12336), 1, - aux_sym_elseif_clause_token1, - ACTIONS(12339), 1, - aux_sym_end_where_statement_token1, - ACTIONS(12341), 1, - aux_sym_elsewhere_clause_token1, + [139908] = 8, + ACTIONS(10417), 1, + aux_sym__class_default_token1, + ACTIONS(11981), 1, + aux_sym_implicit_statement_token3, + ACTIONS(11983), 1, + aux_sym_derived_type_token1, + ACTIONS(11985), 1, + aux_sym_type_statement_token2, + ACTIONS(11987), 1, + aux_sym_type_statement_token3, + STATE(3672), 1, + sym__class_default, + STATE(5654), 1, + sym_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5859), 2, - sym_elsewhere_clause, - aux_sym__block_where_statement_repeat1, - [139910] = 6, - ACTIONS(12344), 1, - anon_sym_COMMA, - ACTIONS(12346), 1, - anon_sym_EQ, - ACTIONS(12348), 1, - anon_sym_EQ_GT, - STATE(6167), 1, - aux_sym__declaration_targets_repeat1, + [139934] = 5, + ACTIONS(11721), 1, + aux_sym_language_binding_token1, + ACTIONS(11723), 1, + aux_sym_function_result_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10606), 2, + ACTIONS(12334), 2, sym__external_end_of_statement, anon_sym_SEMI, - [139931] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4335), 2, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - ACTIONS(4337), 4, - sym_preproc_comment, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - [139946] = 6, - ACTIONS(12350), 1, + STATE(5845), 3, + sym_language_binding, + sym_function_result, + aux_sym_function_statement_repeat1, + [139954] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6688), 1, + STATE(6410), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5865), 2, + STATE(6078), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [139967] = 6, - ACTIONS(7416), 1, + [139975] = 6, + ACTIONS(7442), 1, anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(5116), 1, + STATE(684), 1, sym__end_of_statement, - STATE(6969), 1, + STATE(3104), 1, + sym__argument_list, + STATE(6997), 1, sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12356), 2, + ACTIONS(12342), 2, sym__external_end_of_statement, anon_sym_SEMI, - [139988] = 6, - ACTIONS(12350), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, - aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, - aux_sym_end_enum_statement_token1, - STATE(6933), 1, - sym_end_enum_statement, + [139996] = 3, + ACTIONS(12346), 1, + aux_sym_concurrent_locality_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5873), 2, - sym_enumerator_statement, - aux_sym_enum_repeat1, - [140009] = 6, + ACTIONS(12344), 5, + sym__external_end_of_statement, + aux_sym_variable_attributes_token3, + anon_sym_SEMI, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140011] = 3, ACTIONS(12350), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, - aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, - aux_sym_end_enum_statement_token1, - STATE(6695), 1, - sym_end_enum_statement, + aux_sym_concurrent_locality_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, - sym_enumerator_statement, - aux_sym_enum_repeat1, - [140030] = 6, - ACTIONS(12350), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, - aux_sym_enumerator_statement_token1, + ACTIONS(12348), 5, + sym__external_end_of_statement, + aux_sym_variable_attributes_token3, + anon_sym_SEMI, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140026] = 3, ACTIONS(12354), 1, - aux_sym_end_enum_statement_token1, - STATE(6541), 1, - sym_end_enum_statement, + aux_sym_concurrent_locality_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, - sym_enumerator_statement, - aux_sym_enum_repeat1, - [140051] = 6, - ACTIONS(7416), 1, + ACTIONS(12352), 5, + sym__external_end_of_statement, + aux_sym_variable_attributes_token3, + anon_sym_SEMI, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140041] = 6, + ACTIONS(7442), 1, anon_sym_LPAREN2, - STATE(3102), 1, + STATE(3104), 1, sym__argument_list, - STATE(5126), 1, + STATE(5152), 1, sym__end_of_statement, - STATE(7055), 1, + STATE(6762), 1, + sym_argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12356), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [140062] = 6, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(5119), 1, + sym__end_of_statement, + STATE(6980), 1, sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, @@ -580894,7 +580920,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(12358), 2, sym__external_end_of_statement, anon_sym_SEMI, - [140072] = 3, + [140083] = 3, ACTIONS(12362), 1, aux_sym_concurrent_locality_token1, ACTIONS(21), 2, @@ -580906,59 +580932,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_concurrent_locality_token2, aux_sym_concurrent_locality_token3, - [140087] = 6, - ACTIONS(12350), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, - aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, - aux_sym_end_enum_statement_token1, - STATE(6880), 1, - sym_end_enum_statement, + [140098] = 6, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(5138), 1, + sym__end_of_statement, + STATE(6664), 1, + sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5884), 2, - sym_enumerator_statement, - aux_sym_enum_repeat1, - [140108] = 6, - ACTIONS(12350), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, - aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, - aux_sym_end_enum_statement_token1, - STATE(6349), 1, - sym_end_enum_statement, + ACTIONS(12364), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [140119] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5879), 2, - sym_enumerator_statement, - aux_sym_enum_repeat1, - [140129] = 6, - ACTIONS(12350), 1, + ACTIONS(4349), 2, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + ACTIONS(4351), 4, + sym_preproc_comment, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + [140134] = 3, + ACTIONS(12368), 1, + aux_sym_concurrent_locality_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12366), 5, + sym__external_end_of_statement, + aux_sym_variable_attributes_token3, + anon_sym_SEMI, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140149] = 6, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(5148), 1, + sym__end_of_statement, + STATE(6421), 1, + sym_argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12370), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [140170] = 6, + ACTIONS(12372), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, - aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, - aux_sym_end_enum_statement_token1, - STATE(6295), 1, - sym_end_enum_statement, + ACTIONS(12374), 1, + aux_sym_elseif_clause_token1, + ACTIONS(12377), 1, + aux_sym_end_where_statement_token1, + ACTIONS(12379), 1, + aux_sym_elsewhere_clause_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, - sym_enumerator_statement, - aux_sym_enum_repeat1, - [140150] = 6, + STATE(5872), 2, + sym_elsewhere_clause, + aux_sym__block_where_statement_repeat1, + [140191] = 6, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(5131), 1, + sym__end_of_statement, + STATE(6502), 1, + sym_argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12382), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [140212] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4255), 2, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + ACTIONS(4257), 4, + sym_preproc_comment, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + [140227] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4345), 2, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + ACTIONS(4347), 4, + sym_preproc_comment, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + [140242] = 3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4255), 2, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + ACTIONS(4257), 4, + sym_preproc_comment, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + [140257] = 6, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(12364), 1, + ACTIONS(12384), 1, anon_sym_STAR, - STATE(3129), 1, + STATE(3128), 1, sym_kind, - STATE(3132), 1, + STATE(3131), 1, sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, @@ -580966,13550 +581067,13427 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7120), 2, anon_sym_RPAREN, anon_sym_COLON_COLON, - [140171] = 6, - ACTIONS(12350), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, - aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, - aux_sym_end_enum_statement_token1, - STATE(7000), 1, - sym_end_enum_statement, + [140278] = 3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, - sym_enumerator_statement, - aux_sym_enum_repeat1, - [140192] = 6, - ACTIONS(12350), 1, + ACTIONS(4315), 2, + aux_sym_implicit_statement_token3, + aux_sym_derived_type_token1, + ACTIONS(4317), 4, + sym_preproc_comment, + aux_sym_type_statement_token2, + aux_sym_type_statement_token3, + aux_sym__class_default_token1, + [140293] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6285), 1, + STATE(6509), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5871), 2, + STATE(5881), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140213] = 6, - ACTIONS(12350), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, - aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, - aux_sym_end_enum_statement_token1, - STATE(6589), 1, - sym_end_enum_statement, + [140314] = 3, + ACTIONS(12388), 1, + aux_sym_concurrent_locality_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5885), 2, - sym_enumerator_statement, - aux_sym_enum_repeat1, - [140234] = 6, - ACTIONS(12350), 1, + ACTIONS(12386), 5, + sym__external_end_of_statement, + aux_sym_variable_attributes_token3, + anon_sym_SEMI, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140329] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6721), 1, + STATE(6853), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5878), 2, + STATE(6078), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140255] = 6, - ACTIONS(12350), 1, + [140350] = 6, + ACTIONS(12390), 1, + anon_sym_COMMA, + ACTIONS(12392), 1, + anon_sym_EQ, + ACTIONS(12394), 1, + anon_sym_EQ_GT, + STATE(6248), 1, + aux_sym__declaration_targets_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(10610), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [140371] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6474), 1, + STATE(7019), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5912), 2, + STATE(5909), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140276] = 6, - ACTIONS(12350), 1, + [140392] = 3, + ACTIONS(12398), 1, + aux_sym_concurrent_locality_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12396), 5, + sym__external_end_of_statement, + aux_sym_variable_attributes_token3, + anon_sym_SEMI, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140407] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6729), 1, + STATE(6687), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, + STATE(5886), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140297] = 6, - ACTIONS(12350), 1, + [140428] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6358), 1, + STATE(6704), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, + STATE(6078), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140318] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(11803), 6, - aux_sym_procedure_attributes_token3, - aux_sym_variable_attributes_token1, - aux_sym_variable_attributes_token2, - aux_sym_variable_attributes_token3, - aux_sym_variable_attributes_token4, - aux_sym_variable_attributes_token5, - [140331] = 6, - ACTIONS(12350), 1, + [140449] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6808), 1, + STATE(6843), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, + STATE(5888), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140352] = 3, - ACTIONS(12368), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12366), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140367] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4323), 2, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - ACTIONS(4325), 4, - sym_preproc_comment, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - [140382] = 6, - ACTIONS(12350), 1, + [140470] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6924), 1, + STATE(6861), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, + STATE(6078), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140403] = 6, - ACTIONS(12350), 1, + [140491] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6598), 1, + STATE(7016), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, + STATE(5890), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140424] = 3, - ACTIONS(12372), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12370), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140439] = 3, - ACTIONS(12376), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12374), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140454] = 6, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(5134), 1, - sym__end_of_statement, - STATE(6485), 1, - sym_argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12378), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [140475] = 3, - ACTIONS(12382), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12380), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140490] = 6, - ACTIONS(12350), 1, + [140512] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6411), 1, + STATE(7045), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5894), 2, + STATE(6078), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140511] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4323), 2, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - ACTIONS(4325), 4, - sym_preproc_comment, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - [140526] = 3, - ACTIONS(12386), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12384), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140541] = 6, - ACTIONS(12350), 1, + [140533] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6533), 1, + STATE(6309), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5866), 2, + STATE(5892), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140562] = 6, - ACTIONS(12350), 1, + [140554] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6419), 1, + STATE(6318), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, + STATE(6078), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140583] = 6, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(690), 1, - sym__end_of_statement, - STATE(3102), 1, - sym__argument_list, - STATE(6900), 1, - sym_argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12388), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [140604] = 6, - ACTIONS(12350), 1, + [140575] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6638), 1, + STATE(6379), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5901), 2, + STATE(5894), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140625] = 6, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(5150), 1, - sym__end_of_statement, - STATE(6966), 1, - sym_argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12390), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [140646] = 6, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(5117), 1, - sym__end_of_statement, - STATE(6506), 1, - sym_argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12392), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [140667] = 6, - ACTIONS(12350), 1, + [140596] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6736), 1, + STATE(6388), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5881), 2, + STATE(6078), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140688] = 3, - ACTIONS(12396), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12394), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140703] = 6, - ACTIONS(12350), 1, + [140617] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6646), 1, + STATE(6449), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, + STATE(5896), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140724] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4331), 2, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - ACTIONS(4333), 4, - sym_preproc_comment, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - [140739] = 6, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(5118), 1, - sym__end_of_statement, - STATE(6483), 1, - sym_argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12398), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [140760] = 6, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(5153), 1, - sym__end_of_statement, - STATE(7068), 1, - sym_argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12400), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [140781] = 3, - ACTIONS(12404), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12402), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140796] = 3, - ACTIONS(12408), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12406), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140811] = 3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4277), 2, - aux_sym_implicit_statement_token3, - aux_sym_derived_type_token1, - ACTIONS(4279), 4, - sym_preproc_comment, - aux_sym_type_statement_token2, - aux_sym_type_statement_token3, - aux_sym__class_default_token1, - [140826] = 6, - ACTIONS(12350), 1, + [140638] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6472), 1, + STATE(6458), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(5909), 2, + STATE(6078), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140847] = 6, - ACTIONS(12350), 1, + [140659] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6480), 1, + STATE(6506), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, + STATE(5898), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140868] = 3, - ACTIONS(12412), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12410), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140883] = 3, - ACTIONS(12416), 1, - aux_sym_concurrent_locality_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12414), 5, - sym__external_end_of_statement, - aux_sym_variable_attributes_token3, - anon_sym_SEMI, - aux_sym_concurrent_locality_token2, - aux_sym_concurrent_locality_token3, - [140898] = 6, - ACTIONS(12350), 1, + [140680] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(12352), 1, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, - ACTIONS(12354), 1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - STATE(6584), 1, + STATE(6514), 1, sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6081), 2, + STATE(6078), 2, sym_enumerator_statement, aux_sym_enum_repeat1, - [140919] = 5, - ACTIONS(11437), 1, - anon_sym_COMMA, - ACTIONS(12418), 1, + [140701] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - STATE(6044), 1, - aux_sym_enumerator_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12420), 2, + ACTIONS(12338), 1, aux_sym_enumerator_statement_token1, + ACTIONS(12340), 1, aux_sym_end_enum_statement_token1, - [140937] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4261), 1, - sym__end_of_statement, - STATE(5918), 1, - aux_sym_procedure_statement_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12424), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [140955] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4239), 1, - sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12426), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [140973] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4241), 1, - sym__end_of_statement, - STATE(5921), 1, - aux_sym_procedure_statement_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12428), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [140991] = 5, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(7163), 1, - sym_argument_list, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12430), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141009] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4244), 1, - sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12432), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141027] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4253), 1, - sym__end_of_statement, - STATE(5922), 1, - aux_sym_procedure_statement_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12434), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141045] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4232), 1, - sym__end_of_statement, - STATE(5924), 1, - aux_sym_procedure_statement_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12436), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141063] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4233), 1, - sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12438), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141081] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4243), 1, - sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + STATE(6564), 1, + sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12440), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141099] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4242), 1, - sym__end_of_statement, - STATE(5927), 1, - aux_sym_procedure_statement_repeat2, + STATE(5900), 2, + sym_enumerator_statement, + aux_sym_enum_repeat1, + [140722] = 6, + ACTIONS(12336), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12338), 1, + aux_sym_enumerator_statement_token1, + ACTIONS(12340), 1, + aux_sym_end_enum_statement_token1, + STATE(6572), 1, + sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12442), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141117] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4245), 1, - sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + STATE(6078), 2, + sym_enumerator_statement, + aux_sym_enum_repeat1, + [140743] = 6, + ACTIONS(12336), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12338), 1, + aux_sym_enumerator_statement_token1, + ACTIONS(12340), 1, + aux_sym_end_enum_statement_token1, + STATE(6615), 1, + sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12444), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141135] = 6, - ACTIONS(11721), 1, + STATE(5902), 2, + sym_enumerator_statement, + aux_sym_enum_repeat1, + [140764] = 6, + ACTIONS(12336), 1, aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - ACTIONS(11727), 1, - sym__integer_literal, - STATE(6260), 1, - sym_statement_label, - STATE(7084), 1, - sym_end_if_statement, + ACTIONS(12338), 1, + aux_sym_enumerator_statement_token1, + ACTIONS(12340), 1, + aux_sym_end_enum_statement_token1, + STATE(6623), 1, + sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [141155] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4248), 1, - sym__end_of_statement, - STATE(5928), 1, - aux_sym_procedure_statement_repeat2, + STATE(6078), 2, + sym_enumerator_statement, + aux_sym_enum_repeat1, + [140785] = 6, + ACTIONS(12336), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12338), 1, + aux_sym_enumerator_statement_token1, + ACTIONS(12340), 1, + aux_sym_end_enum_statement_token1, + STATE(6651), 1, + sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12446), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141173] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4251), 1, + STATE(5905), 2, + sym_enumerator_statement, + aux_sym_enum_repeat1, + [140806] = 6, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(5108), 1, sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + STATE(6915), 1, + sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12448), 2, + ACTIONS(12400), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141191] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4258), 1, - sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + [140827] = 6, + ACTIONS(12336), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12338), 1, + aux_sym_enumerator_statement_token1, + ACTIONS(12340), 1, + aux_sym_end_enum_statement_token1, + STATE(6659), 1, + sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12450), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141209] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4257), 1, - sym__end_of_statement, - STATE(5930), 1, - aux_sym_procedure_statement_repeat2, + STATE(6078), 2, + sym_enumerator_statement, + aux_sym_enum_repeat1, + [140848] = 3, + ACTIONS(12404), 1, + aux_sym_concurrent_locality_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12452), 2, + ACTIONS(12402), 5, sym__external_end_of_statement, + aux_sym_variable_attributes_token3, anon_sym_SEMI, - [141227] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4252), 1, - sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140863] = 3, + ACTIONS(12408), 1, + aux_sym_concurrent_locality_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12454), 2, + ACTIONS(12406), 5, sym__external_end_of_statement, + aux_sym_variable_attributes_token3, anon_sym_SEMI, - [141245] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4474), 1, - sym__end_of_statement, - STATE(6103), 1, - aux_sym_procedure_statement_repeat2, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140878] = 3, + ACTIONS(12412), 1, + aux_sym_concurrent_locality_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12456), 2, + ACTIONS(12410), 5, sym__external_end_of_statement, + aux_sym_variable_attributes_token3, anon_sym_SEMI, - [141263] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4477), 1, - sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140893] = 6, + ACTIONS(12336), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12338), 1, + aux_sym_enumerator_statement_token1, + ACTIONS(12340), 1, + aux_sym_end_enum_statement_token1, + STATE(6691), 1, + sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12458), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141281] = 5, - ACTIONS(12460), 1, - anon_sym_COMMA, - STATE(2811), 1, - sym__end_of_statement, - STATE(5939), 1, - aux_sym_private_statement_repeat1, + STATE(6078), 2, + sym_enumerator_statement, + aux_sym_enum_repeat1, + [140914] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12462), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141299] = 5, - ACTIONS(12460), 1, - anon_sym_COMMA, - STATE(2775), 1, + ACTIONS(11805), 6, + aux_sym_procedure_attributes_token3, + aux_sym_variable_attributes_token1, + aux_sym_variable_attributes_token2, + aux_sym_variable_attributes_token3, + aux_sym_variable_attributes_token4, + aux_sym_variable_attributes_token5, + [140927] = 6, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(5116), 1, sym__end_of_statement, - STATE(5941), 1, - aux_sym_private_statement_repeat1, + STATE(6718), 1, + sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12464), 2, + ACTIONS(12414), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141317] = 3, - ACTIONS(12466), 1, - anon_sym_LPAREN2, + [140948] = 3, + ACTIONS(12418), 1, + aux_sym_concurrent_locality_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4325), 4, + ACTIONS(12416), 5, sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_EQ_GT, + aux_sym_variable_attributes_token3, anon_sym_SEMI, - [141331] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12468), 1, - anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(8180), 1, - sym_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [141351] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12470), 1, - anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(8192), 1, - sym_kind, + aux_sym_concurrent_locality_token2, + aux_sym_concurrent_locality_token3, + [140963] = 6, + ACTIONS(12336), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12338), 1, + aux_sym_enumerator_statement_token1, + ACTIONS(12340), 1, + aux_sym_end_enum_statement_token1, + STATE(6352), 1, + sym_end_enum_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [141371] = 5, - ACTIONS(12460), 1, + STATE(5860), 2, + sym_enumerator_statement, + aux_sym_enum_repeat1, + [140984] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2851), 1, + STATE(1365), 1, sym__end_of_statement, - STATE(5944), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12472), 2, + ACTIONS(12422), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141389] = 5, - ACTIONS(12460), 1, + [141002] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2851), 1, + STATE(1334), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5918), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12472), 2, + ACTIONS(12424), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141407] = 5, - ACTIONS(12460), 1, + [141020] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2852), 1, + STATE(1336), 1, sym__end_of_statement, - STATE(5945), 1, + STATE(5920), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12474), 2, + ACTIONS(12426), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141425] = 5, - ACTIONS(12460), 1, + [141038] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2852), 1, + STATE(1354), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5922), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12474), 2, + ACTIONS(12428), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141443] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12476), 1, - anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(8268), 1, - sym_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [141463] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12478), 1, - anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(8271), 1, - sym_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [141483] = 5, - ACTIONS(12460), 1, + [141056] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2879), 1, + STATE(1354), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12480), 2, + ACTIONS(12428), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141501] = 5, - ACTIONS(12460), 1, + [141074] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2880), 1, + STATE(1355), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5923), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12482), 2, + ACTIONS(12430), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141519] = 5, - ACTIONS(12422), 1, + [141092] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4518), 1, + STATE(1355), 1, sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12484), 2, + ACTIONS(12430), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141537] = 5, - ACTIONS(12422), 1, + [141110] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4522), 1, + STATE(4240), 1, sym__end_of_statement, - STATE(5990), 1, + STATE(5979), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12486), 2, + ACTIONS(12434), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141555] = 5, - ACTIONS(12460), 1, + [141128] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1431), 1, + STATE(1377), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12488), 2, + ACTIONS(12436), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141573] = 5, - ACTIONS(12422), 1, + [141146] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4524), 1, + STATE(1378), 1, sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12490), 2, + ACTIONS(12438), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141591] = 5, - ACTIONS(12460), 1, + [141164] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1432), 1, + STATE(4385), 1, sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12492), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141609] = 4, - ACTIONS(12346), 1, - anon_sym_EQ, - ACTIONS(12348), 1, - anon_sym_EQ_GT, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10630), 3, + ACTIONS(12440), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [141625] = 6, - ACTIONS(11721), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - ACTIONS(11727), 1, - sym__integer_literal, - STATE(6535), 1, - sym_statement_label, - STATE(7252), 1, - sym_end_if_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [141645] = 5, - ACTIONS(11437), 1, - anon_sym_COMMA, - ACTIONS(12494), 1, - aux_sym_end_program_statement_token1, - STATE(6113), 1, - aux_sym_enumerator_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12496), 2, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - [141663] = 5, - ACTIONS(11437), 1, - anon_sym_COMMA, - ACTIONS(12498), 1, - aux_sym_end_program_statement_token1, - STATE(6044), 1, - aux_sym_enumerator_statement_repeat1, + [141182] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12442), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(7549), 1, + sym_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12500), 2, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - [141681] = 4, - ACTIONS(12502), 1, + [141202] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6107), 1, - aux_sym_common_statement_repeat1, + STATE(4386), 1, + sym__end_of_statement, + STATE(6016), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8024), 3, + ACTIONS(12444), 2, sym__external_end_of_statement, - anon_sym_SLASH, anon_sym_SEMI, - [141697] = 5, - ACTIONS(11437), 1, - anon_sym_COMMA, - ACTIONS(12504), 1, - aux_sym_end_program_statement_token1, - STATE(6044), 1, - aux_sym_enumerator_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12506), 2, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - [141715] = 5, - ACTIONS(12460), 1, + [141220] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(5120), 1, + STATE(4387), 1, sym__end_of_statement, - STATE(5960), 1, - aux_sym_private_statement_repeat1, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12508), 2, + ACTIONS(12446), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141733] = 5, - ACTIONS(12460), 1, + [141238] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12448), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(7558), 1, + sym_kind, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [141258] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5122), 1, + STATE(2827), 1, sym__end_of_statement, STATE(5962), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12510), 2, + ACTIONS(12450), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141751] = 5, - ACTIONS(12460), 1, + [141276] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5154), 1, + STATE(1620), 1, sym__end_of_statement, - STATE(5963), 1, + STATE(5948), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12512), 2, + ACTIONS(12452), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141769] = 5, - ACTIONS(12460), 1, + [141294] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5154), 1, + STATE(2851), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5963), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12512), 2, + ACTIONS(12454), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141787] = 5, - ACTIONS(12460), 1, + [141312] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5124), 1, + STATE(2851), 1, sym__end_of_statement, - STATE(5964), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12514), 2, + ACTIONS(12454), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141805] = 5, - ACTIONS(12460), 1, - anon_sym_COMMA, - STATE(5124), 1, - sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + [141330] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12456), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(7572), 1, + sym_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12514), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [141823] = 5, - ACTIONS(12460), 1, + [141350] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5107), 1, + STATE(1371), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6053), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12516), 2, + ACTIONS(12458), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141841] = 5, - ACTIONS(12460), 1, + [141368] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(5111), 1, + STATE(4454), 1, sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + STATE(5961), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12518), 2, + ACTIONS(12460), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141859] = 5, - ACTIONS(12460), 1, + [141386] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1135), 1, + STATE(4456), 1, sym__end_of_statement, - STATE(5968), 1, - aux_sym_private_statement_repeat1, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12520), 2, + ACTIONS(12462), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141877] = 5, - ACTIONS(12460), 1, + [141404] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1136), 1, + STATE(5512), 1, sym__end_of_statement, - STATE(5970), 1, + STATE(5940), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12522), 2, + ACTIONS(12464), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141895] = 5, - ACTIONS(12460), 1, + [141422] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1140), 1, + STATE(5511), 1, sym__end_of_statement, - STATE(5971), 1, + STATE(5942), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12524), 2, + ACTIONS(12466), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141913] = 5, - ACTIONS(12460), 1, + [141440] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1140), 1, + STATE(5513), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5943), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12524), 2, + ACTIONS(12468), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141931] = 5, - ACTIONS(12460), 1, + [141458] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1119), 1, + STATE(5513), 1, sym__end_of_statement, - STATE(5972), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12526), 2, + ACTIONS(12468), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141949] = 5, - ACTIONS(12460), 1, + [141476] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1119), 1, + STATE(5515), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5944), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12526), 2, + ACTIONS(12470), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141967] = 5, - ACTIONS(12460), 1, + [141494] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1144), 1, + STATE(5515), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12528), 2, + ACTIONS(12470), 2, sym__external_end_of_statement, anon_sym_SEMI, - [141985] = 5, - ACTIONS(12460), 1, + [141512] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1145), 1, + STATE(5495), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12530), 2, + ACTIONS(12472), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142003] = 5, - ACTIONS(12460), 1, + [141530] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1626), 1, + STATE(5510), 1, sym__end_of_statement, - STATE(5976), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12532), 2, + ACTIONS(12474), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142021] = 5, - ACTIONS(12460), 1, - anon_sym_COMMA, - STATE(1627), 1, - sym__end_of_statement, - STATE(5978), 1, - aux_sym_private_statement_repeat1, + [141548] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12476), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(7574), 1, + sym_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12534), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [142039] = 5, - ACTIONS(12460), 1, + [141568] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1630), 1, + STATE(4239), 1, sym__end_of_statement, - STATE(5979), 1, - aux_sym_private_statement_repeat1, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12536), 2, + ACTIONS(12478), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142057] = 5, - ACTIONS(12460), 1, + [141586] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1630), 1, + STATE(1455), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12536), 2, + ACTIONS(12480), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142075] = 5, - ACTIONS(12460), 1, + [141604] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1631), 1, + STATE(1628), 1, sym__end_of_statement, - STATE(5980), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12538), 2, + ACTIONS(12482), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142093] = 5, - ACTIONS(12460), 1, + [141622] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1631), 1, + STATE(4467), 1, sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + STATE(5991), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12538), 2, + ACTIONS(12484), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142111] = 5, - ACTIONS(12460), 1, + [141640] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1634), 1, + STATE(1456), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12540), 2, + ACTIONS(12486), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142129] = 5, - ACTIONS(12460), 1, + [141658] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1635), 1, + STATE(1373), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6056), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12542), 2, + ACTIONS(12488), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142147] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4484), 1, - sym__end_of_statement, - STATE(6039), 1, - aux_sym_procedure_statement_repeat2, + [141676] = 5, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(7153), 1, + sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12544), 2, + ACTIONS(10130), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142165] = 5, - ACTIONS(12460), 1, + [141694] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1386), 1, + STATE(1268), 1, sym__end_of_statement, - STATE(5985), 1, + STATE(5956), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12546), 2, + ACTIONS(12490), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142183] = 5, - ACTIONS(12460), 1, + [141712] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1387), 1, + STATE(1271), 1, sym__end_of_statement, - STATE(5987), 1, + STATE(5958), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12548), 2, + ACTIONS(12492), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142201] = 5, - ACTIONS(12460), 1, + [141730] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1394), 1, + STATE(1279), 1, sym__end_of_statement, - STATE(5988), 1, + STATE(5959), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12550), 2, + ACTIONS(12494), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142219] = 5, - ACTIONS(12460), 1, + [141748] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1394), 1, + STATE(1279), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12550), 2, + ACTIONS(12494), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142237] = 5, - ACTIONS(12460), 1, + [141766] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1395), 1, + STATE(1280), 1, sym__end_of_statement, - STATE(5989), 1, + STATE(5960), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12552), 2, + ACTIONS(12496), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142255] = 5, - ACTIONS(12460), 1, + [141784] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1395), 1, + STATE(1280), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12552), 2, + ACTIONS(12496), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142273] = 5, - ACTIONS(12460), 1, + [141802] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1402), 1, + STATE(1284), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12554), 2, + ACTIONS(12498), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142291] = 5, - ACTIONS(12460), 1, + [141820] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1403), 1, + STATE(1285), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12556), 2, + ACTIONS(12500), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142309] = 5, - ACTIONS(12422), 1, + [141838] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4399), 1, + STATE(4468), 1, sym__end_of_statement, - STATE(6228), 1, + STATE(6194), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12558), 2, + ACTIONS(12502), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142327] = 5, - ACTIONS(12460), 1, + [141856] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1422), 1, + STATE(2903), 1, sym__end_of_statement, - STATE(5994), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12560), 2, + ACTIONS(12504), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142345] = 5, - ACTIONS(12460), 1, + [141874] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1423), 1, + STATE(2904), 1, sym__end_of_statement, - STATE(5996), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12562), 2, + ACTIONS(12506), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142363] = 5, - ACTIONS(12460), 1, + [141892] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1435), 1, + STATE(1627), 1, sym__end_of_statement, - STATE(5997), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12564), 2, + ACTIONS(12508), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142381] = 5, - ACTIONS(12460), 1, + [141910] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1435), 1, + STATE(4469), 1, sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + STATE(6002), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12564), 2, + ACTIONS(12510), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142399] = 5, - ACTIONS(12460), 1, + [141928] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1436), 1, + STATE(4242), 1, sym__end_of_statement, - STATE(5998), 1, - aux_sym_private_statement_repeat1, + STATE(6018), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12566), 2, + ACTIONS(12512), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142417] = 5, - ACTIONS(12460), 1, - anon_sym_COMMA, - STATE(1436), 1, - sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + [141946] = 4, + ACTIONS(12514), 1, + anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12566), 2, + ACTIONS(12516), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142435] = 5, - ACTIONS(12460), 1, + STATE(6063), 2, + sym_variable_group, + aux_sym_namelist_statement_repeat1, + [141962] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1446), 1, + STATE(1181), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5971), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12568), 2, + ACTIONS(12518), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142453] = 5, - ACTIONS(12460), 1, + [141980] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1450), 1, + STATE(1182), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5973), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12570), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [142471] = 4, - ACTIONS(12502), 1, - anon_sym_COMMA, - STATE(5955), 1, - aux_sym_common_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(7882), 3, + ACTIONS(12520), 2, sym__external_end_of_statement, - anon_sym_SLASH, anon_sym_SEMI, - [142487] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12572), 1, - anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(7857), 1, - sym_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [142507] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12574), 1, - anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(8176), 1, - sym_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [142527] = 6, - ACTIONS(11721), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - ACTIONS(11727), 1, - sym__integer_literal, - STATE(6734), 1, - sym_statement_label, - STATE(7076), 1, - sym_end_if_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [142547] = 5, - ACTIONS(12460), 1, + [141998] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5513), 1, + STATE(1151), 1, sym__end_of_statement, - STATE(6006), 1, + STATE(5974), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12576), 2, + ACTIONS(12522), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142565] = 5, - ACTIONS(12460), 1, + [142016] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5494), 1, + STATE(1151), 1, sym__end_of_statement, - STATE(6008), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12578), 2, + ACTIONS(12522), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142583] = 5, - ACTIONS(12460), 1, + [142034] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5504), 1, + STATE(1153), 1, sym__end_of_statement, - STATE(6009), 1, + STATE(5975), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12580), 2, + ACTIONS(12524), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142601] = 5, - ACTIONS(12460), 1, + [142052] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5504), 1, + STATE(1153), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12580), 2, + ACTIONS(12524), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142619] = 5, - ACTIONS(12460), 1, + [142070] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5508), 1, + STATE(1154), 1, sym__end_of_statement, - STATE(6010), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12582), 2, + ACTIONS(12526), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142637] = 5, - ACTIONS(12460), 1, + [142088] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5508), 1, + STATE(1172), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12582), 2, + ACTIONS(12528), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142655] = 5, - ACTIONS(12460), 1, + [142106] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5496), 1, + STATE(2789), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6050), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12584), 2, + ACTIONS(12530), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142673] = 5, - ACTIONS(12460), 1, + [142124] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(5497), 1, + STATE(2794), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6055), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12586), 2, + ACTIONS(12532), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142691] = 5, - ACTIONS(12460), 1, + [142142] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1594), 1, + STATE(4236), 1, sym__end_of_statement, - STATE(5948), 1, - aux_sym_private_statement_repeat1, + STATE(6044), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12588), 2, + ACTIONS(12534), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142709] = 5, - ACTIONS(12460), 1, + [142160] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1282), 1, + STATE(4250), 1, sym__end_of_statement, - STATE(6017), 1, - aux_sym_private_statement_repeat1, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12590), 2, + ACTIONS(12536), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142727] = 5, - ACTIONS(12460), 1, + [142178] = 4, + ACTIONS(12538), 1, anon_sym_COMMA, - STATE(1293), 1, - sym__end_of_statement, - STATE(6019), 1, - aux_sym_private_statement_repeat1, + STATE(6101), 1, + aux_sym_common_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12592), 2, + ACTIONS(8093), 3, sym__external_end_of_statement, + anon_sym_SLASH, anon_sym_SEMI, - [142745] = 5, - ACTIONS(12460), 1, + [142194] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1594), 1, + STATE(2752), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5984), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12588), 2, + ACTIONS(12540), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142763] = 4, - ACTIONS(4325), 1, - anon_sym_EQ, - ACTIONS(5800), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(5798), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - [142779] = 5, - ACTIONS(12460), 1, + [142212] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1311), 1, + STATE(2755), 1, sym__end_of_statement, - STATE(6020), 1, + STATE(5986), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12594), 2, + ACTIONS(12542), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142797] = 5, - ACTIONS(12460), 1, + [142230] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1311), 1, + STATE(2757), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5987), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12594), 2, + ACTIONS(12544), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142815] = 5, - ACTIONS(12460), 1, + [142248] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1312), 1, + STATE(2757), 1, sym__end_of_statement, - STATE(6021), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12596), 2, + ACTIONS(12544), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142833] = 5, - ACTIONS(12460), 1, + [142266] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1312), 1, + STATE(2758), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5988), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12596), 2, + ACTIONS(12546), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142851] = 5, - ACTIONS(12460), 1, + [142284] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1319), 1, + STATE(2758), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12598), 2, + ACTIONS(12546), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142869] = 5, - ACTIONS(12460), 1, + [142302] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1323), 1, + STATE(2760), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12600), 2, + ACTIONS(12548), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142887] = 5, - ACTIONS(12460), 1, + [142320] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1376), 1, + STATE(2761), 1, sym__end_of_statement, - STATE(5950), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12602), 2, + ACTIONS(12550), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142905] = 5, - ACTIONS(12460), 1, - anon_sym_COMMA, - STATE(1376), 1, - sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + [142338] = 5, + ACTIONS(5468), 1, + sym__string_literal, + ACTIONS(5470), 1, + sym__string_literal_kind, + STATE(7369), 1, + sym_string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12602), 2, + ACTIONS(12552), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142923] = 4, - ACTIONS(12604), 1, - anon_sym_SLASH, + [142356] = 4, + ACTIONS(12392), 1, + anon_sym_EQ, + ACTIONS(12394), 1, + anon_sym_EQ_GT, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12607), 2, + ACTIONS(10708), 3, sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6024), 2, - sym_variable_group, - aux_sym_namelist_statement_repeat1, - [142939] = 5, - ACTIONS(12460), 1, anon_sym_COMMA, - STATE(1176), 1, - sym__end_of_statement, - STATE(6030), 1, - aux_sym_private_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12609), 2, - sym__external_end_of_statement, anon_sym_SEMI, - [142957] = 5, - ACTIONS(12460), 1, + [142372] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1160), 1, + STATE(4506), 1, sym__end_of_statement, - STATE(6032), 1, - aux_sym_private_statement_repeat1, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12611), 2, + ACTIONS(12554), 2, sym__external_end_of_statement, anon_sym_SEMI, - [142975] = 6, - ACTIONS(11721), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - ACTIONS(11727), 1, - sym__integer_literal, - STATE(6927), 1, - sym_statement_label, - STATE(7229), 1, - sym_end_if_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [142995] = 6, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_RPAREN, - STATE(6953), 1, - aux_sym_allocate_statement_repeat1, - STATE(7376), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [143015] = 5, - ACTIONS(12422), 1, + [142390] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4493), 1, + STATE(4507), 1, sym__end_of_statement, - STATE(6228), 1, + STATE(5924), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12613), 2, + ACTIONS(12556), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143033] = 5, - ACTIONS(12460), 1, + [142408] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1174), 1, + STATE(1353), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5996), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12615), 2, + ACTIONS(12558), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143051] = 5, - ACTIONS(12460), 1, + [142426] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1157), 1, + STATE(1376), 1, sym__end_of_statement, - STATE(6034), 1, + STATE(5998), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12617), 2, + ACTIONS(12560), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143069] = 5, - ACTIONS(12460), 1, + [142444] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1157), 1, + STATE(1489), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5999), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12617), 2, + ACTIONS(12562), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143087] = 5, - ACTIONS(12460), 1, + [142462] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1161), 1, + STATE(1489), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12619), 2, + ACTIONS(12562), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143105] = 5, - ACTIONS(12460), 1, + [142480] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1162), 1, + STATE(1519), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6000), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12621), 2, + ACTIONS(12564), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143123] = 5, - ACTIONS(12460), 1, + [142498] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1447), 1, + STATE(1519), 1, sym__end_of_statement, - STATE(6014), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12623), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [143141] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4497), 1, - sym__end_of_statement, - STATE(5946), 1, - aux_sym_procedure_statement_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12625), 2, + ACTIONS(12564), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143159] = 5, - ACTIONS(12422), 1, + [142516] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4499), 1, + STATE(1599), 1, sym__end_of_statement, - STATE(5949), 1, - aux_sym_procedure_statement_repeat2, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12627), 2, + ACTIONS(12566), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143177] = 5, - ACTIONS(12460), 1, + [142534] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1448), 1, + STATE(1600), 1, sym__end_of_statement, - STATE(6023), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12629), 2, + ACTIONS(12568), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143195] = 5, - ACTIONS(12422), 1, + [142552] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4425), 1, + STATE(4508), 1, sym__end_of_statement, - STATE(6228), 1, + STATE(5927), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12631), 2, + ACTIONS(12570), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143213] = 5, - ACTIONS(12422), 1, + [142570] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4433), 1, + STATE(4509), 1, sym__end_of_statement, - STATE(6077), 1, + STATE(6194), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12633), 2, + ACTIONS(12572), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143231] = 5, - ACTIONS(12422), 1, + [142588] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4500), 1, + STATE(4232), 1, sym__end_of_statement, - STATE(6228), 1, + STATE(6194), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12635), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [143249] = 5, - ACTIONS(12460), 1, - anon_sym_COMMA, - STATE(2764), 1, - sym__end_of_statement, - STATE(6046), 1, - aux_sym_private_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12637), 2, + ACTIONS(12574), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143267] = 5, - ACTIONS(12460), 1, + [142606] = 5, + ACTIONS(11455), 1, anon_sym_COMMA, - STATE(2765), 1, - sym__end_of_statement, - STATE(6048), 1, - aux_sym_private_statement_repeat1, + ACTIONS(12576), 1, + aux_sym_end_program_statement_token1, + STATE(6005), 1, + aux_sym_enumerator_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12639), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [143285] = 5, - ACTIONS(12641), 1, + ACTIONS(12578), 2, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [142624] = 5, + ACTIONS(11455), 1, anon_sym_COMMA, - ACTIONS(12644), 1, + ACTIONS(12580), 1, aux_sym_end_program_statement_token1, - STATE(6044), 1, + STATE(6017), 1, aux_sym_enumerator_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12646), 2, + ACTIONS(12582), 2, aux_sym_enumerator_statement_token1, aux_sym_end_enum_statement_token1, - [143303] = 5, - ACTIONS(12460), 1, + [142642] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(2708), 1, + STATE(4423), 1, sym__end_of_statement, - STATE(6049), 1, - aux_sym_private_statement_repeat1, + STATE(6070), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12648), 2, + ACTIONS(12584), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143321] = 5, - ACTIONS(12460), 1, + [142660] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2708), 1, + STATE(3072), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6010), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12648), 2, + ACTIONS(12586), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143339] = 5, - ACTIONS(12460), 1, + [142678] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2709), 1, + STATE(3073), 1, sym__end_of_statement, - STATE(6050), 1, + STATE(6012), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12650), 2, + ACTIONS(12588), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143357] = 5, - ACTIONS(12460), 1, + [142696] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2709), 1, + STATE(3075), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6014), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12650), 2, + ACTIONS(12590), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143375] = 5, - ACTIONS(12460), 1, + [142714] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2717), 1, + STATE(3075), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12652), 2, + ACTIONS(12590), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143393] = 5, - ACTIONS(12460), 1, + [142732] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2718), 1, + STATE(3076), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6015), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12654), 2, + ACTIONS(12592), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143411] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12656), 1, - anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(7946), 1, - sym_kind, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [143431] = 5, - ACTIONS(12460), 1, + [142750] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1565), 1, + STATE(3076), 1, sym__end_of_statement, - STATE(6055), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12658), 2, + ACTIONS(12592), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143449] = 5, - ACTIONS(12460), 1, + [142768] = 5, + ACTIONS(11455), 1, anon_sym_COMMA, - STATE(1566), 1, - sym__end_of_statement, - STATE(6057), 1, - aux_sym_private_statement_repeat1, + ACTIONS(12594), 1, + aux_sym_end_program_statement_token1, + STATE(6017), 1, + aux_sym_enumerator_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12660), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [143467] = 5, - ACTIONS(12460), 1, + ACTIONS(12596), 2, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [142786] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1574), 1, + STATE(3077), 1, sym__end_of_statement, - STATE(6059), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12662), 2, + ACTIONS(12598), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143485] = 5, - ACTIONS(12460), 1, + [142804] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1574), 1, + STATE(3078), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12662), 2, + ACTIONS(12600), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143503] = 5, - ACTIONS(12460), 1, + [142822] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1575), 1, + STATE(4424), 1, sym__end_of_statement, - STATE(6060), 1, - aux_sym_private_statement_repeat1, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12664), 2, + ACTIONS(12602), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143521] = 5, - ACTIONS(12460), 1, + [142840] = 5, + ACTIONS(12604), 1, anon_sym_COMMA, - STATE(1575), 1, - sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12664), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [143539] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12666), 1, - anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(8043), 1, - sym_kind, + ACTIONS(12607), 1, + aux_sym_end_program_statement_token1, + STATE(6017), 1, + aux_sym_enumerator_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [143559] = 5, - ACTIONS(12460), 1, + ACTIONS(12609), 2, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [142858] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(1582), 1, + STATE(4238), 1, sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12668), 2, + ACTIONS(12611), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143577] = 5, - ACTIONS(12460), 1, + [142876] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1583), 1, + STATE(5146), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6030), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12670), 2, + ACTIONS(12613), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143595] = 5, - ACTIONS(12460), 1, + [142894] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(3068), 1, + STATE(5147), 1, sym__end_of_statement, - STATE(6064), 1, + STATE(6032), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12672), 2, + ACTIONS(12615), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143613] = 5, - ACTIONS(12460), 1, + [142912] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(3069), 1, + STATE(4241), 1, sym__end_of_statement, - STATE(6066), 1, - aux_sym_private_statement_repeat1, + STATE(6038), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12674), 2, + ACTIONS(12617), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143631] = 5, - ACTIONS(12460), 1, + [142930] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(3070), 1, + STATE(1358), 1, sym__end_of_statement, - STATE(6067), 1, + STATE(6025), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12676), 2, + ACTIONS(12619), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143649] = 5, - ACTIONS(12460), 1, + [142948] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(3070), 1, + STATE(1360), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6027), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12676), 2, + ACTIONS(12621), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143667] = 5, - ACTIONS(12460), 1, + [142966] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(3071), 1, + STATE(1362), 1, sym__end_of_statement, - STATE(6068), 1, + STATE(5914), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12678), 2, + ACTIONS(12623), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143685] = 5, - ACTIONS(12460), 1, + [142984] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(3071), 1, + STATE(1362), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12678), 2, + ACTIONS(12623), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143703] = 5, - ACTIONS(12460), 1, + [143002] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(3079), 1, + STATE(1363), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6028), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12680), 2, + ACTIONS(12625), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143721] = 5, - ACTIONS(12460), 1, + [143020] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(3082), 1, + STATE(1363), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12682), 2, + ACTIONS(12625), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143739] = 5, - ACTIONS(12460), 1, + [143038] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1596), 1, + STATE(1369), 1, sym__end_of_statement, - STATE(6072), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12684), 2, + ACTIONS(12627), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143757] = 5, - ACTIONS(12460), 1, + [143056] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1597), 1, + STATE(5150), 1, sym__end_of_statement, - STATE(6074), 1, + STATE(6035), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12686), 2, + ACTIONS(12629), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143775] = 5, - ACTIONS(12460), 1, + [143074] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1332), 1, + STATE(5150), 1, sym__end_of_statement, - STATE(6075), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12688), 2, + ACTIONS(12629), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143793] = 5, - ACTIONS(12460), 1, + [143092] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1332), 1, + STATE(5151), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6036), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12688), 2, + ACTIONS(12631), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143811] = 5, - ACTIONS(12460), 1, + [143110] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1599), 1, + STATE(5151), 1, sym__end_of_statement, - STATE(6076), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12690), 2, + ACTIONS(12631), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143829] = 5, - ACTIONS(12460), 1, + [143128] = 5, + ACTIONS(11455), 1, anon_sym_COMMA, - STATE(1599), 1, - sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + ACTIONS(12633), 1, + aux_sym_end_program_statement_token1, + STATE(6017), 1, + aux_sym_enumerator_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12690), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [143847] = 5, - ACTIONS(12460), 1, - anon_sym_COMMA, - STATE(1600), 1, - sym__end_of_statement, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + ACTIONS(12635), 2, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [143146] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12637), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(8324), 1, + sym_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12692), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [143865] = 5, - ACTIONS(12460), 1, + [143166] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1601), 1, + STATE(5155), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12694), 2, + ACTIONS(12639), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143883] = 5, - ACTIONS(12422), 1, + [143184] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4437), 1, + STATE(5107), 1, sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12696), 2, + ACTIONS(12641), 2, sym__external_end_of_statement, anon_sym_SEMI, - [143901] = 4, - ACTIONS(12698), 1, - anon_sym_COMMA, - STATE(6078), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + [143202] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12643), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(8327), 1, + sym_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9470), 3, - anon_sym_GT_GT_GT, - anon_sym_SLASH_RPAREN, - anon_sym_RBRACK, - [143917] = 6, - ACTIONS(9472), 1, - anon_sym_LBRACK, - ACTIONS(10170), 1, + [143222] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - ACTIONS(10172), 1, - anon_sym_RPAREN, - STATE(7013), 1, - aux_sym_allocate_statement_repeat1, - STATE(7376), 1, - sym_coarray_index, + STATE(4235), 1, + sym__end_of_statement, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [143937] = 5, - ACTIONS(11437), 1, + ACTIONS(12645), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [143240] = 5, + ACTIONS(11455), 1, anon_sym_COMMA, - ACTIONS(12701), 1, + ACTIONS(12647), 1, aux_sym_end_program_statement_token1, - STATE(5954), 1, + STATE(6017), 1, aux_sym_enumerator_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12703), 2, + ACTIONS(12649), 2, aux_sym_enumerator_statement_token1, aux_sym_end_enum_statement_token1, - [143955] = 5, - ACTIONS(12705), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12707), 1, - aux_sym_enumerator_statement_token1, - ACTIONS(12710), 1, - aux_sym_end_enum_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - STATE(6081), 2, - sym_enumerator_statement, - aux_sym_enum_repeat1, - [143973] = 6, - ACTIONS(11721), 1, + [143258] = 6, + ACTIONS(11711), 1, aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, + ACTIONS(11713), 1, aux_sym_end_if_statement_token1, - ACTIONS(11727), 1, + ACTIONS(11717), 1, sym__integer_literal, - STATE(6794), 1, + STATE(7024), 1, sym_statement_label, - STATE(7203), 1, + STATE(7409), 1, sym_end_if_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [143993] = 4, - ACTIONS(12712), 1, - anon_sym_SLASH, + [143278] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12651), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(8201), 1, + sym_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12714), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - STATE(6024), 2, - sym_variable_group, - aux_sym_namelist_statement_repeat1, - [144009] = 2, + [143298] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12653), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(8216), 1, + sym_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5404), 5, - sym__external_end_of_statement, - anon_sym_LPAREN2, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, - anon_sym_SEMI, - [144021] = 5, - ACTIONS(12422), 1, + [143318] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4450), 1, + STATE(4251), 1, sym__end_of_statement, - STATE(6029), 1, + STATE(6062), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12716), 2, + ACTIONS(12655), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144039] = 5, - ACTIONS(12718), 1, + [143336] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - ACTIONS(12720), 1, - anon_sym_EQ_GT, - STATE(6124), 1, - aux_sym_included_items_repeat1, + STATE(4252), 1, + sym__end_of_statement, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12722), 2, + ACTIONS(12657), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144057] = 5, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(7157), 1, - sym_argument_list, + [143354] = 5, + ACTIONS(12432), 1, + anon_sym_COMMA, + STATE(4253), 1, + sym__end_of_statement, + STATE(6076), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10186), 2, + ACTIONS(12659), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144075] = 5, - ACTIONS(12460), 1, + [143372] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2792), 1, + STATE(1620), 1, sym__end_of_statement, - STATE(6095), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12724), 2, + ACTIONS(12452), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144093] = 5, - ACTIONS(12460), 1, + [143390] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2889), 1, + STATE(2824), 1, sym__end_of_statement, - STATE(6097), 1, + STATE(6099), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12726), 2, + ACTIONS(12661), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144111] = 5, - ACTIONS(12422), 1, + [143408] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4526), 1, + STATE(1472), 1, sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + STATE(5947), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12728), 2, + ACTIONS(12663), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144129] = 5, - ACTIONS(12422), 1, + [143426] = 5, + ACTIONS(11455), 1, + anon_sym_COMMA, + ACTIONS(12665), 1, + aux_sym_end_program_statement_token1, + STATE(6033), 1, + aux_sym_enumerator_statement_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12667), 2, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [143444] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4452), 1, + STATE(2824), 1, sym__end_of_statement, - STATE(6041), 1, - aux_sym_procedure_statement_repeat2, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12730), 2, + ACTIONS(12661), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144147] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12732), 1, - anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(8266), 1, - sym_kind, + [143462] = 5, + ACTIONS(12420), 1, + anon_sym_COMMA, + STATE(2779), 1, + sym__end_of_statement, + STATE(6105), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [144167] = 6, - ACTIONS(6644), 1, - anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12734), 1, + ACTIONS(12669), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [143480] = 6, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_COMMA, + ACTIONS(10202), 1, anon_sym_RPAREN, - STATE(3132), 1, - sym__argument_list, - STATE(8267), 1, - sym_kind, + STATE(7068), 1, + aux_sym_allocate_statement_repeat1, + STATE(7366), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [144187] = 5, - ACTIONS(12460), 1, + [143500] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2901), 1, + STATE(1472), 1, sym__end_of_statement, - STATE(6105), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12736), 2, + ACTIONS(12663), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144205] = 5, - ACTIONS(12460), 1, + [143518] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2901), 1, + STATE(1473), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(5950), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12736), 2, + ACTIONS(12671), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144223] = 5, - ACTIONS(12460), 1, + [143536] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2789), 1, + STATE(2779), 1, sym__end_of_statement, - STATE(6106), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12738), 2, + ACTIONS(12669), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144241] = 5, - ACTIONS(12460), 1, + [143554] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2789), 1, + STATE(1473), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12738), 2, + ACTIONS(12671), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144259] = 6, - ACTIONS(6644), 1, + [143572] = 6, + ACTIONS(11711), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + ACTIONS(11717), 1, + sym__integer_literal, + STATE(6879), 1, + sym_statement_label, + STATE(7312), 1, + sym_end_if_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [143592] = 5, + ACTIONS(7442), 1, anon_sym_LPAREN2, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12740), 1, - anon_sym_RPAREN, - STATE(3132), 1, + STATE(3104), 1, sym__argument_list, - STATE(8278), 1, - sym_kind, + STATE(7399), 1, + sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [144279] = 6, + ACTIONS(12673), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [143610] = 6, ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(12364), 1, + ACTIONS(12384), 1, anon_sym_STAR, - ACTIONS(12742), 1, + ACTIONS(12675), 1, anon_sym_RPAREN, - STATE(3132), 1, + STATE(3131), 1, sym__argument_list, - STATE(8279), 1, + STATE(8233), 1, sym_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [144299] = 5, - ACTIONS(5468), 1, - sym__string_literal, - ACTIONS(5470), 1, - sym__string_literal_kind, - STATE(7137), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12744), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [144317] = 5, - ACTIONS(12422), 1, + [143630] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4498), 1, + STATE(1127), 1, sym__end_of_statement, - STATE(6090), 1, - aux_sym_procedure_statement_repeat2, + STATE(6065), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12746), 2, + ACTIONS(12677), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144335] = 5, - ACTIONS(12422), 1, + [143648] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4236), 1, + STATE(1124), 1, sym__end_of_statement, - STATE(6109), 1, - aux_sym_procedure_statement_repeat2, + STATE(6068), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12748), 2, + ACTIONS(12679), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144353] = 5, - ACTIONS(12422), 1, + [143666] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4505), 1, + STATE(4244), 1, sym__end_of_statement, - STATE(6228), 1, + STATE(6194), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12750), 2, + ACTIONS(12681), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144371] = 5, - ACTIONS(12422), 1, - anon_sym_COMMA, - STATE(4434), 1, - sym__end_of_statement, - STATE(5932), 1, - aux_sym_procedure_statement_repeat2, + [143684] = 4, + ACTIONS(12683), 1, + anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12752), 2, + ACTIONS(12686), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144389] = 5, - ACTIONS(12460), 1, + STATE(6063), 2, + sym_variable_group, + aux_sym_namelist_statement_repeat1, + [143700] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2786), 1, + STATE(1146), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6069), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12754), 2, + ACTIONS(12688), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144407] = 5, - ACTIONS(12460), 1, + [143718] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(2814), 1, + STATE(1146), 1, sym__end_of_statement, - STATE(6202), 1, + STATE(6199), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12756), 2, + ACTIONS(12688), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144425] = 4, - ACTIONS(12758), 1, + [143736] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6107), 1, - aux_sym_common_statement_repeat1, + STATE(1622), 1, + sym__end_of_statement, + STATE(5964), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8116), 3, + ACTIONS(12690), 2, sym__external_end_of_statement, - anon_sym_SLASH, anon_sym_SEMI, - [144441] = 5, - ACTIONS(12422), 1, + [143754] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4249), 1, + STATE(1121), 1, sym__end_of_statement, - STATE(6112), 1, - aux_sym_procedure_statement_repeat2, + STATE(6073), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12761), 2, + ACTIONS(12692), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144459] = 5, - ACTIONS(12422), 1, + [143772] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(4250), 1, + STATE(1121), 1, sym__end_of_statement, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12763), 2, + ACTIONS(12692), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144477] = 3, - ACTIONS(12765), 1, - anon_sym_LPAREN2, + [143790] = 5, + ACTIONS(12420), 1, + anon_sym_COMMA, + STATE(1122), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4325), 4, + ACTIONS(12694), 2, sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_SEMI, - [144491] = 5, - ACTIONS(12422), 1, + [143808] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4259), 1, + STATE(4434), 1, sym__end_of_statement, - STATE(5915), 1, + STATE(6194), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12767), 2, + ACTIONS(12696), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144509] = 5, - ACTIONS(12422), 1, + [143826] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(4260), 1, + STATE(4435), 1, sym__end_of_statement, - STATE(6228), 1, + STATE(6079), 1, aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12769), 2, + ACTIONS(12698), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144527] = 5, - ACTIONS(11437), 1, - anon_sym_COMMA, - ACTIONS(12771), 1, - aux_sym_end_program_statement_token1, - STATE(6044), 1, - aux_sym_enumerator_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12773), 2, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - [144545] = 5, - ACTIONS(12460), 1, + [143844] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(1174), 1, + STATE(1493), 1, sym__end_of_statement, - STATE(6033), 1, + STATE(6084), 1, aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12615), 2, + ACTIONS(12700), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144563] = 5, - ACTIONS(12775), 1, - aux_sym_preproc_def_token2, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12779), 1, - sym_preproc_arg, - STATE(7291), 1, - sym_preproc_params, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [144580] = 4, - ACTIONS(12781), 1, + [143862] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6241), 1, - aux_sym_implicit_statement_repeat2, + STATE(1123), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12783), 2, + ACTIONS(12702), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144595] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12785), 1, - aux_sym_preproc_def_token2, - ACTIONS(12787), 1, - sym_preproc_arg, - STATE(7384), 1, - sym_preproc_params, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [144612] = 4, - ACTIONS(9491), 1, + [143880] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6078), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + STATE(4243), 1, + sym__end_of_statement, + STATE(6098), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12789), 2, - anon_sym_SLASH_RPAREN, - anon_sym_RBRACK, - [144627] = 4, - ACTIONS(12791), 1, + ACTIONS(12704), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [143898] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6134), 1, - aux_sym_variable_modification_repeat2, + STATE(4254), 1, + sym__end_of_statement, + STATE(6103), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12793), 2, + ACTIONS(12706), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144642] = 4, - ACTIONS(12791), 1, + [143916] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6137), 1, - aux_sym_variable_modification_repeat2, + STATE(4245), 1, + sym__end_of_statement, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12795), 2, + ACTIONS(12708), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144657] = 4, - ACTIONS(12797), 1, + [143934] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6203), 1, - aux_sym_use_statement_repeat1, + STATE(1494), 1, + sym__end_of_statement, + STATE(6087), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12799), 2, + ACTIONS(12710), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144672] = 2, + [143952] = 5, + ACTIONS(12712), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12714), 1, + aux_sym_enumerator_statement_token1, + ACTIONS(12717), 1, + aux_sym_end_enum_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12801), 4, - sym__external_end_of_statement, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, - anon_sym_SEMI, - [144683] = 4, - ACTIONS(12803), 1, + STATE(6078), 2, + sym_enumerator_statement, + aux_sym_enum_repeat1, + [143970] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6213), 1, - aux_sym_parameters_repeat1, + STATE(4438), 1, + sym__end_of_statement, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9458), 2, + ACTIONS(12719), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144698] = 4, - ACTIONS(12718), 1, + [143988] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6198), 1, - aux_sym_included_items_repeat1, + STATE(1622), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12805), 2, + ACTIONS(12690), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144713] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12807), 1, - aux_sym_preproc_def_token2, - ACTIONS(12809), 1, - sym_preproc_arg, - STATE(7169), 1, - sym_preproc_params, - ACTIONS(3), 2, + [144006] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12721), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(8263), 1, + sym_kind, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [144730] = 4, - ACTIONS(12344), 1, + [144026] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6221), 1, - aux_sym__declaration_targets_repeat1, + STATE(1540), 1, + sym__end_of_statement, + STATE(6089), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10997), 2, + ACTIONS(12723), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144745] = 4, - ACTIONS(12803), 1, + [144044] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6213), 1, - aux_sym_parameters_repeat1, + STATE(4472), 1, + sym__end_of_statement, + STATE(6114), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9515), 2, + ACTIONS(12725), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144760] = 4, - ACTIONS(12344), 1, + [144062] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6227), 1, - aux_sym__declaration_targets_repeat1, + STATE(1540), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10756), 2, + ACTIONS(12723), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144775] = 4, - ACTIONS(12811), 1, + [144080] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6151), 1, - aux_sym_save_statement_repeat1, + STATE(1547), 1, + sym__end_of_statement, + STATE(6090), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12813), 2, + ACTIONS(12727), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144790] = 4, - ACTIONS(12811), 1, + [144098] = 6, + ACTIONS(9509), 1, + anon_sym_LBRACK, + ACTIONS(10000), 1, anon_sym_COMMA, - STATE(6226), 1, - aux_sym_save_statement_repeat1, + ACTIONS(10002), 1, + anon_sym_RPAREN, + STATE(6922), 1, + aux_sym_allocate_statement_repeat1, + STATE(7366), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12813), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [144805] = 4, - ACTIONS(12344), 1, + [144118] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6126), 1, - aux_sym__declaration_targets_repeat1, + STATE(1547), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10756), 2, + ACTIONS(12727), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144820] = 4, - ACTIONS(12803), 1, + [144136] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6127), 1, - aux_sym_parameters_repeat1, + STATE(4234), 1, + sym__end_of_statement, + STATE(5946), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9476), 2, + ACTIONS(12729), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144835] = 5, - ACTIONS(12815), 1, - anon_sym_LPAREN2, - ACTIONS(12817), 1, - aux_sym_kind_token1, - STATE(3130), 1, - sym__argument_list, - STATE(3131), 1, - sym_parenthesized_expression, + [144154] = 5, + ACTIONS(12420), 1, + anon_sym_COMMA, + STATE(1563), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [144852] = 4, - ACTIONS(12791), 1, + ACTIONS(12731), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [144172] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6137), 1, - aux_sym_variable_modification_repeat2, + STATE(1571), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12819), 2, + ACTIONS(12733), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144867] = 4, - ACTIONS(12821), 1, - anon_sym_COMMA, - STATE(6204), 1, - aux_sym_equivalence_statement_repeat1, + [144190] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12823), 2, + ACTIONS(5408), 5, sym__external_end_of_statement, + anon_sym_LPAREN2, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, anon_sym_SEMI, - [144882] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12825), 1, - aux_sym_preproc_def_token2, - ACTIONS(12827), 1, - sym_preproc_arg, - STATE(7180), 1, - sym_preproc_params, - ACTIONS(3), 2, + [144202] = 6, + ACTIONS(11711), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + ACTIONS(11717), 1, + sym__integer_literal, + STATE(6549), 1, + sym_statement_label, + STATE(7117), 1, + sym_end_if_statement, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [144899] = 4, - ACTIONS(12829), 1, + [144222] = 4, + ACTIONS(12735), 1, anon_sym_COMMA, - STATE(6137), 1, - aux_sym_variable_modification_repeat2, + STATE(6093), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12832), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [144914] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12834), 1, - aux_sym_preproc_def_token2, - ACTIONS(12836), 1, - sym_preproc_arg, - STATE(7075), 1, - sym_preproc_params, - ACTIONS(3), 2, + ACTIONS(9536), 3, + anon_sym_GT_GT_GT, + anon_sym_SLASH_RPAREN, + anon_sym_RBRACK, + [144238] = 6, + ACTIONS(11711), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + ACTIONS(11717), 1, + sym__integer_literal, + STATE(7033), 1, + sym_statement_label, + STATE(7208), 1, + sym_end_if_statement, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [144931] = 4, - ACTIONS(12838), 1, + [144258] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(7219), 1, - sym_included_items, + STATE(2899), 1, + sym__end_of_statement, + STATE(6115), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12840), 2, + ACTIONS(12738), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144946] = 2, + [144276] = 5, + ACTIONS(12740), 1, + anon_sym_COMMA, + ACTIONS(12742), 1, + anon_sym_EQ_GT, + STATE(6148), 1, + aux_sym_included_items_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7466), 4, + ACTIONS(12744), 2, sym__external_end_of_statement, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, anon_sym_SEMI, - [144957] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12842), 1, - aux_sym_preproc_def_token2, - ACTIONS(12844), 1, - sym_preproc_arg, - STATE(7106), 1, - sym_preproc_params, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [144974] = 4, - ACTIONS(12811), 1, + [144294] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6129), 1, - aux_sym_save_statement_repeat1, + STATE(2900), 1, + sym__end_of_statement, + STATE(5932), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12846), 2, + ACTIONS(12746), 2, sym__external_end_of_statement, anon_sym_SEMI, - [144989] = 4, - ACTIONS(12811), 1, + [144312] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6151), 1, - aux_sym_save_statement_repeat1, + STATE(4246), 1, + sym__end_of_statement, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12846), 2, + ACTIONS(12748), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145004] = 4, - ACTIONS(11755), 1, - aux_sym_language_binding_token1, - STATE(7419), 1, - sym_language_binding, + [144330] = 5, + ACTIONS(12420), 1, + anon_sym_COMMA, + STATE(2898), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12848), 2, + ACTIONS(12750), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145019] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12850), 1, - aux_sym_preproc_def_token2, - ACTIONS(12852), 1, - sym_preproc_arg, - STATE(7194), 1, - sym_preproc_params, - ACTIONS(3), 2, + [144348] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12752), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(8294), 1, + sym_kind, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [145036] = 4, - ACTIONS(12791), 1, + [144368] = 4, + ACTIONS(12538), 1, anon_sym_COMMA, - STATE(6120), 1, - aux_sym_variable_modification_repeat2, + STATE(6106), 1, + aux_sym_common_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12854), 2, + ACTIONS(8105), 3, sym__external_end_of_statement, + anon_sym_SLASH, anon_sym_SEMI, - [145051] = 4, - ACTIONS(12856), 1, + [144384] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6147), 1, - aux_sym_implicit_statement_repeat2, + STATE(4247), 1, + sym__end_of_statement, + STATE(6003), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12859), 2, + ACTIONS(12754), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145066] = 4, - ACTIONS(12811), 1, + [144402] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - STATE(6143), 1, - aux_sym_save_statement_repeat1, + STATE(4249), 1, + sym__end_of_statement, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12861), 2, + ACTIONS(12756), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145081] = 4, - ACTIONS(12863), 1, - anon_sym_COMMA, - STATE(6214), 1, - aux_sym_data_statement_repeat1, + [144420] = 6, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(12758), 1, + anon_sym_RPAREN, + STATE(3131), 1, + sym__argument_list, + STATE(7542), 1, + sym_kind, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12865), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [145096] = 4, - ACTIONS(12811), 1, + [144440] = 5, + ACTIONS(12420), 1, anon_sym_COMMA, - STATE(6151), 1, - aux_sym_save_statement_repeat1, + STATE(2775), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12861), 2, + ACTIONS(12760), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145111] = 4, - ACTIONS(12867), 1, + [144458] = 4, + ACTIONS(12762), 1, anon_sym_COMMA, - STATE(6151), 1, - aux_sym_save_statement_repeat1, + STATE(6106), 1, + aux_sym_common_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12870), 2, + ACTIONS(8083), 3, sym__external_end_of_statement, + anon_sym_SLASH, anon_sym_SEMI, - [145126] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12872), 1, - aux_sym_preproc_def_token2, - ACTIONS(12874), 1, - sym_preproc_arg, - STATE(7100), 1, - sym_preproc_params, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [145143] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12876), 1, - aux_sym_preproc_def_token2, - ACTIONS(12878), 1, - sym_preproc_arg, - STATE(7210), 1, - sym_preproc_params, - ACTIONS(3), 2, + [144474] = 6, + ACTIONS(11711), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + ACTIONS(11717), 1, + sym__integer_literal, + STATE(6283), 1, + sym_statement_label, + STATE(7107), 1, + sym_end_if_statement, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [145160] = 4, - ACTIONS(12781), 1, - anon_sym_COMMA, - STATE(6147), 1, - aux_sym_implicit_statement_repeat2, + [144494] = 3, + ACTIONS(12765), 1, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12880), 2, + ACTIONS(4257), 4, sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_SEMI, - [145175] = 5, - ACTIONS(12882), 1, - aux_sym_preproc_if_token2, - ACTIONS(12884), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12886), 1, - aux_sym_end_program_statement_token2, - STATE(1047), 1, - sym_end_program_statement, + [144508] = 4, + ACTIONS(4257), 1, + anon_sym_EQ, + ACTIONS(5786), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [145192] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12888), 1, - aux_sym_preproc_def_token2, - ACTIONS(12890), 1, - sym_preproc_arg, - STATE(7205), 1, - sym_preproc_params, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [145209] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12892), 1, - aux_sym_preproc_def_token2, - ACTIONS(12894), 1, - sym_preproc_arg, - STATE(7211), 1, - sym_preproc_params, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [145226] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12896), 1, - aux_sym_preproc_def_token2, - ACTIONS(12898), 1, - sym_preproc_arg, - STATE(7220), 1, - sym_preproc_params, - ACTIONS(3), 2, + ACTIONS(5784), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_COLON_COLON, + [144524] = 3, + ACTIONS(12767), 1, + anon_sym_LPAREN2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [145243] = 4, - ACTIONS(12900), 1, + ACTIONS(4257), 4, + sym__external_end_of_statement, anon_sym_COMMA, - STATE(6159), 1, - aux_sym_equivalence_statement_repeat1, + anon_sym_EQ_GT, + anon_sym_SEMI, + [144538] = 5, + ACTIONS(12420), 1, + anon_sym_COMMA, + STATE(1621), 1, + sym__end_of_statement, + STATE(6046), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12903), 2, + ACTIONS(12769), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145258] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12905), 1, - aux_sym_preproc_def_token2, - ACTIONS(12907), 1, - sym_preproc_arg, - STATE(7315), 1, - sym_preproc_params, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [145275] = 4, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(7376), 1, - sym_coarray_index, + [144556] = 5, + ACTIONS(12420), 1, + anon_sym_COMMA, + STATE(1639), 1, + sym__end_of_statement, + STATE(6080), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10174), 2, + ACTIONS(12771), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [144574] = 5, + ACTIONS(12432), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [145290] = 5, - ACTIONS(12364), 1, - anon_sym_STAR, - ACTIONS(12909), 1, - anon_sym_LPAREN2, - STATE(3129), 1, - sym_kind, - STATE(3132), 1, - sym__argument_list, + STATE(4431), 1, + sym__end_of_statement, + STATE(5936), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [145307] = 5, - ACTIONS(12882), 1, - aux_sym_preproc_if_token2, - ACTIONS(12884), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12886), 1, - aux_sym_end_program_statement_token2, - STATE(1055), 1, - sym_end_program_statement, + ACTIONS(12773), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [144592] = 5, + ACTIONS(12432), 1, + anon_sym_COMMA, + STATE(4433), 1, + sym__end_of_statement, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [145324] = 2, + ACTIONS(12775), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [144610] = 5, + ACTIONS(12420), 1, + anon_sym_COMMA, + STATE(2827), 1, + sym__end_of_statement, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11799), 4, - aux_sym_procedure_attributes_token2, - aux_sym_procedure_attributes_token3, - aux_sym_procedure_attributes_token4, - aux_sym_procedure_attributes_token5, - [145335] = 5, + ACTIONS(12450), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [144628] = 5, + ACTIONS(10132), 1, + anon_sym_COMMA, ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12912), 1, - aux_sym_preproc_def_token2, - ACTIONS(12914), 1, - sym_preproc_arg, - STATE(7228), 1, - sym_preproc_params, - ACTIONS(3), 2, + anon_sym_SLASH, + STATE(6696), 1, + sym_data_value, + STATE(6711), 1, + aux_sym_data_set_repeat1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [145352] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(12916), 1, + [144645] = 5, + ACTIONS(12779), 1, aux_sym_preproc_def_token2, - ACTIONS(12918), 1, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(12783), 1, sym_preproc_arg, - STATE(7171), 1, + STATE(7239), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145369] = 4, - ACTIONS(12344), 1, - anon_sym_COMMA, - STATE(6221), 1, - aux_sym__declaration_targets_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10991), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [145384] = 5, - ACTIONS(12777), 1, + [144662] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12920), 1, + ACTIONS(12785), 1, aux_sym_preproc_def_token2, - ACTIONS(12922), 1, + ACTIONS(12787), 1, sym_preproc_arg, - STATE(7237), 1, + STATE(7242), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145401] = 5, - ACTIONS(12777), 1, + [144679] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12924), 1, + ACTIONS(12789), 1, aux_sym_preproc_def_token2, - ACTIONS(12926), 1, + ACTIONS(12791), 1, sym_preproc_arg, - STATE(7240), 1, + STATE(7244), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145418] = 5, - ACTIONS(12777), 1, + [144696] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12928), 1, + ACTIONS(12793), 1, aux_sym_preproc_def_token2, - ACTIONS(12930), 1, + ACTIONS(12795), 1, sym_preproc_arg, - STATE(7243), 1, + STATE(7246), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145435] = 5, - ACTIONS(12777), 1, + [144713] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12932), 1, + ACTIONS(12797), 1, aux_sym_preproc_def_token2, - ACTIONS(12934), 1, + ACTIONS(12799), 1, sym_preproc_arg, - STATE(7247), 1, + STATE(7249), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145452] = 5, - ACTIONS(12777), 1, + [144730] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12936), 1, + ACTIONS(12801), 1, aux_sym_preproc_def_token2, - ACTIONS(12938), 1, + ACTIONS(12803), 1, sym_preproc_arg, - STATE(7250), 1, + STATE(7252), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145469] = 5, - ACTIONS(12777), 1, + [144747] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12940), 1, + ACTIONS(12805), 1, aux_sym_preproc_def_token2, - ACTIONS(12942), 1, + ACTIONS(12807), 1, sym_preproc_arg, - STATE(7253), 1, + STATE(7254), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145486] = 5, - ACTIONS(12777), 1, + [144764] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12944), 1, + ACTIONS(12809), 1, aux_sym_preproc_def_token2, - ACTIONS(12946), 1, + ACTIONS(12811), 1, sym_preproc_arg, - STATE(7257), 1, + STATE(7256), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145503] = 5, - ACTIONS(12777), 1, + [144781] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12948), 1, + ACTIONS(12813), 1, aux_sym_preproc_def_token2, - ACTIONS(12950), 1, + ACTIONS(12815), 1, sym_preproc_arg, STATE(7259), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145520] = 5, - ACTIONS(12777), 1, + [144798] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12952), 1, + ACTIONS(12817), 1, aux_sym_preproc_def_token2, - ACTIONS(12954), 1, + ACTIONS(12819), 1, sym_preproc_arg, STATE(7262), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145537] = 5, - ACTIONS(12777), 1, + [144815] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12956), 1, + ACTIONS(12821), 1, aux_sym_preproc_def_token2, - ACTIONS(12958), 1, + ACTIONS(12823), 1, sym_preproc_arg, - STATE(7265), 1, + STATE(7266), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145554] = 5, - ACTIONS(12777), 1, + [144832] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12960), 1, + ACTIONS(12825), 1, aux_sym_preproc_def_token2, - ACTIONS(12962), 1, + ACTIONS(12827), 1, sym_preproc_arg, - STATE(7268), 1, + STATE(7269), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145571] = 5, - ACTIONS(12777), 1, + [144849] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12964), 1, + ACTIONS(12829), 1, aux_sym_preproc_def_token2, - ACTIONS(12966), 1, + ACTIONS(12831), 1, sym_preproc_arg, STATE(7271), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145588] = 5, - ACTIONS(12777), 1, + [144866] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12968), 1, + ACTIONS(12833), 1, aux_sym_preproc_def_token2, - ACTIONS(12970), 1, + ACTIONS(12835), 1, sym_preproc_arg, STATE(7273), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145605] = 5, - ACTIONS(12777), 1, + [144883] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12972), 1, + ACTIONS(12837), 1, aux_sym_preproc_def_token2, - ACTIONS(12974), 1, + ACTIONS(12839), 1, sym_preproc_arg, - STATE(7276), 1, + STATE(7275), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145622] = 5, - ACTIONS(12777), 1, + [144900] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12976), 1, + ACTIONS(12841), 1, aux_sym_preproc_def_token2, - ACTIONS(12978), 1, + ACTIONS(12843), 1, sym_preproc_arg, - STATE(7279), 1, + STATE(7278), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145639] = 5, - ACTIONS(12777), 1, + [144917] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12980), 1, + ACTIONS(12845), 1, aux_sym_preproc_def_token2, - ACTIONS(12982), 1, + ACTIONS(12847), 1, sym_preproc_arg, - STATE(7283), 1, + STATE(7281), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145656] = 5, - ACTIONS(12777), 1, + [144934] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12984), 1, + ACTIONS(12849), 1, aux_sym_preproc_def_token2, - ACTIONS(12986), 1, + ACTIONS(12851), 1, sym_preproc_arg, - STATE(7285), 1, + STATE(7455), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145673] = 5, - ACTIONS(12777), 1, + [144951] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12988), 1, + ACTIONS(12853), 1, aux_sym_preproc_def_token2, - ACTIONS(12990), 1, + ACTIONS(12855), 1, sym_preproc_arg, - STATE(7288), 1, + STATE(7286), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145690] = 4, - ACTIONS(12803), 1, - anon_sym_COMMA, - STATE(6208), 1, - aux_sym_parameters_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(9458), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [145705] = 4, - ACTIONS(12797), 1, - anon_sym_COMMA, - STATE(6206), 1, - aux_sym_use_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(12992), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [145720] = 5, - ACTIONS(12777), 1, + [144968] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12994), 1, + ACTIONS(12857), 1, aux_sym_preproc_def_token2, - ACTIONS(12996), 1, + ACTIONS(12859), 1, sym_preproc_arg, - STATE(7297), 1, + STATE(7288), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145737] = 5, - ACTIONS(12777), 1, + [144985] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(12998), 1, + ACTIONS(12861), 1, aux_sym_preproc_def_token2, - ACTIONS(13000), 1, + ACTIONS(12863), 1, sym_preproc_arg, - STATE(7300), 1, + STATE(7291), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145754] = 5, - ACTIONS(12777), 1, + [145002] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13002), 1, + ACTIONS(12865), 1, aux_sym_preproc_def_token2, - ACTIONS(13004), 1, + ACTIONS(12867), 1, sym_preproc_arg, - STATE(7302), 1, + STATE(7294), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145771] = 5, - ACTIONS(12777), 1, + [145019] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13006), 1, + ACTIONS(12869), 1, aux_sym_preproc_def_token2, - ACTIONS(13008), 1, + ACTIONS(12871), 1, sym_preproc_arg, - STATE(7304), 1, + STATE(7297), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145788] = 5, - ACTIONS(12777), 1, + [145036] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13010), 1, + ACTIONS(12873), 1, aux_sym_preproc_def_token2, - ACTIONS(13012), 1, + ACTIONS(12875), 1, sym_preproc_arg, - STATE(7307), 1, + STATE(7299), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145805] = 5, - ACTIONS(12777), 1, + [145053] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13014), 1, + ACTIONS(12877), 1, aux_sym_preproc_def_token2, - ACTIONS(13016), 1, + ACTIONS(12879), 1, sym_preproc_arg, - STATE(7311), 1, + STATE(7302), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145822] = 5, - ACTIONS(12777), 1, + [145070] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13018), 1, + ACTIONS(12881), 1, aux_sym_preproc_def_token2, - ACTIONS(13020), 1, + ACTIONS(12883), 1, sym_preproc_arg, - STATE(7313), 1, + STATE(7304), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145839] = 5, - ACTIONS(12777), 1, + [145087] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13022), 1, + ACTIONS(12885), 1, aux_sym_preproc_def_token2, - ACTIONS(13024), 1, + ACTIONS(12887), 1, sym_preproc_arg, - STATE(7316), 1, + STATE(7307), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [145856] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13026), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [145867] = 5, - ACTIONS(13028), 1, - anon_sym_LPAREN2, - ACTIONS(13030), 1, - sym__integer_literal, - STATE(6739), 1, - sym_statement_label, - STATE(7355), 1, - sym_statement_label_reference, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [145884] = 4, - ACTIONS(13032), 1, + [145104] = 4, + ACTIONS(12889), 1, anon_sym_COMMA, - STATE(6198), 1, - aux_sym_included_items_repeat1, + STATE(6233), 1, + aux_sym_variable_modification_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13035), 2, + ACTIONS(12891), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145899] = 4, - ACTIONS(12797), 1, + [145119] = 4, + ACTIONS(12893), 1, anon_sym_COMMA, - STATE(6206), 1, + STATE(6239), 1, aux_sym_use_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13037), 2, + ACTIONS(12895), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145914] = 4, - ACTIONS(12718), 1, + [145134] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(12897), 4, anon_sym_COMMA, - STATE(6124), 1, - aux_sym_included_items_repeat1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [145145] = 4, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(7366), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12722), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [145929] = 4, - ACTIONS(13039), 1, - anon_sym_LPAREN2, - STATE(7658), 1, - sym_parenthesized_expression, + ACTIONS(10204), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [145160] = 4, + ACTIONS(12740), 1, + anon_sym_COMMA, + STATE(6241), 1, + aux_sym_included_items_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4325), 2, + ACTIONS(12899), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145944] = 4, - ACTIONS(13041), 1, + [145175] = 4, + ACTIONS(12901), 1, anon_sym_COMMA, - STATE(6202), 1, - aux_sym_private_statement_repeat1, + STATE(6175), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13044), 2, + ACTIONS(9491), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145959] = 4, - ACTIONS(12797), 1, + [145190] = 4, + ACTIONS(12903), 1, anon_sym_COMMA, - STATE(6206), 1, - aux_sym_use_statement_repeat1, + STATE(6150), 1, + aux_sym_implicit_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13046), 2, + ACTIONS(12906), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145974] = 4, - ACTIONS(12821), 1, + [145205] = 4, + ACTIONS(12908), 1, anon_sym_COMMA, - STATE(6159), 1, - aux_sym_equivalence_statement_repeat1, + STATE(6193), 1, + aux_sym_save_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13048), 2, + ACTIONS(12910), 2, sym__external_end_of_statement, anon_sym_SEMI, - [145989] = 5, - ACTIONS(12777), 1, + [145220] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13050), 1, + ACTIONS(12912), 1, aux_sym_preproc_def_token2, - ACTIONS(13052), 1, + ACTIONS(12914), 1, sym_preproc_arg, - STATE(7370), 1, + STATE(7151), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [146006] = 4, - ACTIONS(13054), 1, + [145237] = 4, + ACTIONS(9476), 1, anon_sym_COMMA, - STATE(6206), 1, - aux_sym_use_statement_repeat1, + STATE(6178), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13057), 2, + ACTIONS(12916), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146021] = 3, - ACTIONS(5498), 1, - aux_sym_end_program_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(5500), 3, - aux_sym_implicit_statement_token3, - aux_sym_end_select_statement_token1, - aux_sym_format_statement_token1, - [146034] = 4, - ACTIONS(12803), 1, + [145252] = 4, + ACTIONS(12901), 1, anon_sym_COMMA, - STATE(6213), 1, + STATE(6222), 1, aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9507), 2, + ACTIONS(9542), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146049] = 4, - ACTIONS(11755), 1, - aux_sym_language_binding_token1, - STATE(7423), 1, - sym_language_binding, + [145267] = 4, + ACTIONS(12918), 1, + anon_sym_COMMA, + STATE(6150), 1, + aux_sym_implicit_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13059), 2, + ACTIONS(12920), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146064] = 5, - ACTIONS(12777), 1, - anon_sym_LPAREN, - ACTIONS(13061), 1, - aux_sym_preproc_def_token2, - ACTIONS(13063), 1, - sym_preproc_arg, - STATE(7129), 1, - sym_preproc_params, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [146081] = 5, - ACTIONS(13030), 1, - sym__integer_literal, - ACTIONS(13065), 1, - anon_sym_LPAREN2, - STATE(6739), 1, - sym_statement_label, - STATE(7281), 1, - sym_statement_label_reference, + [145282] = 3, + ACTIONS(12924), 1, + aux_sym_end_program_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146098] = 5, - ACTIONS(12817), 1, - aux_sym_kind_token1, - ACTIONS(13067), 1, - anon_sym_LPAREN2, - STATE(3130), 1, - sym__argument_list, - STATE(3131), 1, - sym_parenthesized_expression, + ACTIONS(12922), 3, + anon_sym_COMMA, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [145295] = 5, + ACTIONS(12926), 1, + aux_sym_preproc_if_token2, + ACTIONS(12928), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12930), 1, + aux_sym_end_program_statement_token2, + STATE(1033), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146115] = 4, - ACTIONS(13069), 1, - anon_sym_COMMA, - STATE(6213), 1, - aux_sym_parameters_repeat1, - ACTIONS(21), 2, + [145312] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(12932), 1, + aux_sym_preproc_def_token2, + ACTIONS(12934), 1, + sym_preproc_arg, + STATE(7448), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(9511), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146130] = 4, - ACTIONS(12863), 1, + [145329] = 4, + ACTIONS(12918), 1, anon_sym_COMMA, - STATE(6218), 1, - aux_sym_data_statement_repeat1, + STATE(6213), 1, + aux_sym_implicit_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13072), 2, + ACTIONS(12936), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146145] = 4, - ACTIONS(13074), 1, + [145344] = 4, + ACTIONS(12390), 1, anon_sym_COMMA, - STATE(6215), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + STATE(6179), 1, + aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9470), 2, + ACTIONS(10973), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146160] = 4, - ACTIONS(12811), 1, - anon_sym_COMMA, - STATE(6150), 1, - aux_sym_save_statement_repeat1, + [145359] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13077), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146175] = 4, - ACTIONS(13079), 1, + ACTIONS(11801), 4, + aux_sym_procedure_attributes_token2, + aux_sym_procedure_attributes_token3, + aux_sym_procedure_attributes_token4, + aux_sym_procedure_attributes_token5, + [145370] = 4, + ACTIONS(12390), 1, anon_sym_COMMA, - STATE(7440), 1, - sym_included_items, + STATE(6179), 1, + aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13081), 2, + ACTIONS(10973), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146190] = 4, - ACTIONS(13083), 1, + [145385] = 4, + ACTIONS(12390), 1, anon_sym_COMMA, - STATE(6218), 1, - aux_sym_data_statement_repeat1, + STATE(6160), 1, + aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13086), 2, + ACTIONS(10855), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146205] = 5, - ACTIONS(12884), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12886), 1, - aux_sym_end_program_statement_token2, - ACTIONS(13088), 1, - aux_sym_preproc_if_token2, - STATE(1047), 1, - sym_end_program_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [146222] = 3, - ACTIONS(13092), 1, - aux_sym_end_program_statement_token1, + [145400] = 5, + ACTIONS(12938), 1, + anon_sym_LPAREN2, + ACTIONS(12940), 1, + sym__integer_literal, + STATE(6507), 1, + sym_statement_label, + STATE(7417), 1, + sym_statement_label_reference, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13090), 3, + [145417] = 4, + ACTIONS(12390), 1, anon_sym_COMMA, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - [146235] = 4, - ACTIONS(13094), 1, - anon_sym_COMMA, - STATE(6221), 1, + STATE(6162), 1, aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10763), 2, + ACTIONS(10855), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146250] = 5, - ACTIONS(12777), 1, + [145432] = 5, + ACTIONS(12942), 1, + anon_sym_LPAREN2, + ACTIONS(12944), 1, + aux_sym_kind_token1, + STATE(5246), 1, + sym__argument_list, + STATE(5321), 1, + sym_parenthesized_expression, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [145449] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13097), 1, + ACTIONS(12946), 1, aux_sym_preproc_def_token2, - ACTIONS(13099), 1, + ACTIONS(12948), 1, sym_preproc_arg, - STATE(7287), 1, + STATE(7315), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [146267] = 2, - ACTIONS(21), 2, + [145466] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(12950), 1, + aux_sym_preproc_def_token2, + ACTIONS(12952), 1, + sym_preproc_arg, + STATE(7198), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(7492), 4, - sym__external_end_of_statement, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, - anon_sym_SEMI, - [146278] = 5, - ACTIONS(13101), 1, + [145483] = 5, + ACTIONS(12954), 1, anon_sym_LPAREN2, - ACTIONS(13103), 1, + ACTIONS(12956), 1, aux_sym_kind_token1, - STATE(3934), 1, - sym_parenthesized_expression, - STATE(3935), 1, + STATE(3129), 1, sym__argument_list, + STATE(3132), 1, + sym_parenthesized_expression, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146295] = 5, - ACTIONS(10070), 1, - anon_sym_COMMA, - ACTIONS(13105), 1, - anon_sym_SLASH, - STATE(6431), 1, - sym_data_value, - STATE(6432), 1, - aux_sym_data_set_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [146312] = 4, - ACTIONS(12811), 1, + [145500] = 4, + ACTIONS(12908), 1, anon_sym_COMMA, - STATE(6151), 1, + STATE(6210), 1, aux_sym_save_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13107), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146327] = 4, - ACTIONS(12344), 1, - anon_sym_COMMA, - STATE(6221), 1, - aux_sym__declaration_targets_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10997), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146342] = 4, - ACTIONS(13109), 1, - anon_sym_COMMA, - STATE(6228), 1, - aux_sym_procedure_statement_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13112), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146357] = 4, - ACTIONS(12797), 1, - anon_sym_COMMA, - STATE(6187), 1, - aux_sym_use_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13114), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146372] = 4, - ACTIONS(9491), 1, - anon_sym_COMMA, - STATE(6078), 1, - aux_sym_cuda_kernel_argument_list_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13116), 2, - anon_sym_SLASH_RPAREN, - anon_sym_RBRACK, - [146387] = 3, - ACTIONS(13120), 1, - anon_sym_EQ_GT, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13118), 3, + ACTIONS(12958), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [146400] = 4, - ACTIONS(9528), 1, + [145515] = 4, + ACTIONS(12960), 1, anon_sym_COMMA, - STATE(6215), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + STATE(6183), 1, + aux_sym_data_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13122), 2, + ACTIONS(12962), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146415] = 4, - ACTIONS(12803), 1, - anon_sym_COMMA, - STATE(6123), 1, - aux_sym_parameters_repeat1, + [145530] = 5, + ACTIONS(12928), 1, + aux_sym_end_program_statement_token1, + ACTIONS(12930), 1, + aux_sym_end_program_statement_token2, + ACTIONS(12964), 1, + aux_sym_preproc_if_token2, + STATE(1066), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9524), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146430] = 5, - ACTIONS(12777), 1, + [145547] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13124), 1, + ACTIONS(12966), 1, aux_sym_preproc_def_token2, - ACTIONS(13126), 1, + ACTIONS(12968), 1, sym_preproc_arg, - STATE(7344), 1, + STATE(7078), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [146447] = 5, - ACTIONS(12884), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12886), 1, - aux_sym_end_program_statement_token2, - ACTIONS(13128), 1, - aux_sym_preproc_if_token2, - STATE(1055), 1, - sym_end_program_statement, + [145564] = 4, + ACTIONS(12960), 1, + anon_sym_COMMA, + STATE(6171), 1, + aux_sym_data_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146464] = 3, - ACTIONS(12720), 1, - anon_sym_EQ_GT, + ACTIONS(12970), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [145579] = 4, + ACTIONS(12901), 1, + anon_sym_COMMA, + STATE(6185), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13035), 3, + ACTIONS(9515), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [146477] = 4, - ACTIONS(9528), 1, + [145594] = 4, + ACTIONS(12889), 1, anon_sym_COMMA, - STATE(6215), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + STATE(6231), 1, + aux_sym_variable_modification_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13130), 2, + ACTIONS(12972), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146492] = 2, + [145609] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13132), 4, + ACTIONS(7492), 4, sym__external_end_of_statement, aux_sym_language_binding_token1, aux_sym_function_result_token1, anon_sym_SEMI, - [146503] = 2, + [145620] = 4, + ACTIONS(12974), 1, + anon_sym_COMMA, + STATE(6178), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13134), 4, + ACTIONS(9536), 2, sym__external_end_of_statement, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, anon_sym_SEMI, - [146514] = 5, - ACTIONS(13136), 1, - anon_sym_LPAREN2, - ACTIONS(13138), 1, - aux_sym_kind_token1, - STATE(5240), 1, - sym_parenthesized_expression, - STATE(5241), 1, - sym__argument_list, + [145635] = 4, + ACTIONS(12977), 1, + anon_sym_COMMA, + STATE(6179), 1, + aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146531] = 4, + ACTIONS(10851), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [145650] = 5, ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(12980), 1, + aux_sym_preproc_def_token2, + ACTIONS(12982), 1, + sym_preproc_arg, + STATE(7128), 1, + sym_preproc_params, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [145667] = 4, + ACTIONS(9476), 1, anon_sym_COMMA, - STATE(6147), 1, - aux_sym_implicit_statement_repeat2, + STATE(6178), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13140), 2, + ACTIONS(12984), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146546] = 2, + [145682] = 4, + ACTIONS(12901), 1, + anon_sym_COMMA, + STATE(6217), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13142), 4, + ACTIONS(9474), 2, sym__external_end_of_statement, - aux_sym_language_binding_token1, - aux_sym_function_result_token1, anon_sym_SEMI, - [146557] = 4, - ACTIONS(12781), 1, + [145697] = 4, + ACTIONS(12986), 1, anon_sym_COMMA, - STATE(6154), 1, - aux_sym_implicit_statement_repeat2, + STATE(6183), 1, + aux_sym_data_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13140), 2, + ACTIONS(12989), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146572] = 5, - ACTIONS(12777), 1, + [145712] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13144), 1, + ACTIONS(12991), 1, aux_sym_preproc_def_token2, - ACTIONS(13146), 1, + ACTIONS(12993), 1, sym_preproc_arg, - STATE(7155), 1, + STATE(7170), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [146589] = 4, - ACTIONS(13148), 1, + [145729] = 4, + ACTIONS(12995), 1, anon_sym_COMMA, - STATE(7212), 1, - sym_included_items, + STATE(6185), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13150), 2, + ACTIONS(9519), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146604] = 2, - ACTIONS(21), 2, + [145744] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(12998), 1, + aux_sym_preproc_def_token2, + ACTIONS(13000), 1, + sym_preproc_arg, + STATE(7097), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(13152), 4, - aux_sym_procedure_attributes_token2, - aux_sym_procedure_attributes_token3, - aux_sym_procedure_attributes_token4, - aux_sym_procedure_attributes_token5, - [146615] = 4, - ACTIONS(12797), 1, - anon_sym_COMMA, - STATE(6199), 1, - aux_sym_use_statement_repeat1, - ACTIONS(21), 2, + [145761] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13002), 1, + aux_sym_preproc_def_token2, + ACTIONS(13004), 1, + sym_preproc_arg, + STATE(7156), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(13154), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146630] = 5, - ACTIONS(12777), 1, + [145778] = 5, + ACTIONS(12781), 1, anon_sym_LPAREN, - ACTIONS(13156), 1, + ACTIONS(13006), 1, aux_sym_preproc_def_token2, - ACTIONS(13158), 1, + ACTIONS(13008), 1, sym_preproc_arg, - STATE(7294), 1, + STATE(7237), 1, sym_preproc_params, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [146647] = 4, - ACTIONS(13160), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13162), 1, - aux_sym_end_subroutine_statement_token1, - STATE(5030), 1, - sym_end_subroutine_statement, + [145795] = 4, + ACTIONS(12893), 1, + anon_sym_COMMA, + STATE(6230), 1, + aux_sym_use_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146661] = 3, - STATE(878), 1, - sym__end_of_statement, + ACTIONS(13010), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [145810] = 5, + ACTIONS(12384), 1, + anon_sym_STAR, + ACTIONS(13012), 1, + anon_sym_LPAREN2, + STATE(3128), 1, + sym_kind, + STATE(3131), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13164), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146673] = 3, - STATE(887), 1, - sym__end_of_statement, + [145827] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13166), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146685] = 3, - STATE(1011), 1, - sym__end_of_statement, + ACTIONS(13015), 4, + aux_sym_procedure_attributes_token2, + aux_sym_procedure_attributes_token3, + aux_sym_procedure_attributes_token4, + aux_sym_procedure_attributes_token5, + [145838] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8182), 2, + ACTIONS(13017), 4, sym__external_end_of_statement, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, anon_sym_SEMI, - [146697] = 4, - ACTIONS(13168), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13170), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4969), 1, - sym_end_subroutine_statement, + [145849] = 4, + ACTIONS(13019), 1, + anon_sym_COMMA, + STATE(6193), 1, + aux_sym_save_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146711] = 4, - ACTIONS(10672), 1, + ACTIONS(13022), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [145864] = 4, + ACTIONS(13024), 1, anon_sym_COMMA, - ACTIONS(13172), 1, - anon_sym_RPAREN, - STATE(6363), 1, - aux_sym_preproc_argument_list_repeat1, + STATE(6194), 1, + aux_sym_procedure_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146725] = 4, - ACTIONS(13174), 1, + ACTIONS(13027), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [145879] = 5, + ACTIONS(12928), 1, aux_sym_end_program_statement_token1, - ACTIONS(13176), 1, - aux_sym_end_function_statement_token1, - STATE(4971), 1, - sym_end_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [146739] = 4, - ACTIONS(13178), 1, - anon_sym_COMMA, - ACTIONS(13180), 1, - anon_sym_RPAREN, - STATE(6389), 1, - aux_sym_preproc_params_repeat1, + ACTIONS(12930), 1, + aux_sym_end_program_statement_token2, + ACTIONS(13029), 1, + aux_sym_preproc_if_token2, + STATE(1033), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146753] = 4, - ACTIONS(13182), 1, + [145896] = 4, + ACTIONS(13031), 1, anon_sym_COMMA, - ACTIONS(13184), 1, - anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [146767] = 3, - STATE(5053), 1, - sym__end_of_statement, + STATE(7376), 1, + sym_included_items, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13186), 2, + ACTIONS(13033), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146779] = 4, - ACTIONS(13168), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13170), 1, - aux_sym_end_subroutine_statement_token1, - STATE(5054), 1, - sym_end_subroutine_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [146793] = 4, - ACTIONS(11721), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - STATE(7076), 1, - sym_end_if_statement, + [145911] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146807] = 4, - ACTIONS(13188), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13190), 1, - aux_sym_end_function_statement_token1, - STATE(5017), 1, - sym_end_function_statement, - ACTIONS(21), 2, + ACTIONS(13035), 4, + sym__external_end_of_statement, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, + anon_sym_SEMI, + [145922] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13037), 1, + aux_sym_preproc_def_token2, + ACTIONS(13039), 1, + sym_preproc_arg, + STATE(7215), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [146821] = 3, - STATE(5057), 1, - sym__end_of_statement, + [145939] = 4, + ACTIONS(13041), 1, + anon_sym_COMMA, + STATE(6199), 1, + aux_sym_private_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13192), 2, + ACTIONS(13044), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146833] = 3, - ACTIONS(13194), 1, - anon_sym_LPAREN2, - ACTIONS(21), 2, + [145954] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13046), 1, + aux_sym_preproc_def_token2, + ACTIONS(13048), 1, + sym_preproc_arg, + STATE(7420), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(13196), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146845] = 4, - ACTIONS(13174), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13176), 1, - aux_sym_end_function_statement_token1, - STATE(5062), 1, - sym_end_function_statement, + [145971] = 4, + ACTIONS(9505), 1, + anon_sym_COMMA, + STATE(6093), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146859] = 3, - STATE(755), 1, - sym__end_of_statement, + ACTIONS(13050), 2, + anon_sym_SLASH_RPAREN, + anon_sym_RBRACK, + [145986] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13198), 2, + ACTIONS(13052), 4, sym__external_end_of_statement, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, anon_sym_SEMI, - [146871] = 3, - STATE(4777), 1, - sym__end_of_statement, - ACTIONS(21), 2, + [145997] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13054), 1, + aux_sym_preproc_def_token2, + ACTIONS(13056), 1, + sym_preproc_arg, + STATE(7134), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(13200), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [146883] = 4, - ACTIONS(13168), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13170), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4778), 1, - sym_end_subroutine_statement, - ACTIONS(21), 2, + [146014] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13058), 1, + aux_sym_preproc_def_token2, + ACTIONS(13060), 1, + sym_preproc_arg, + STATE(7155), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [146897] = 3, - STATE(4779), 1, - sym__end_of_statement, + [146031] = 4, + ACTIONS(12893), 1, + anon_sym_COMMA, + STATE(6209), 1, + aux_sym_use_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13202), 2, + ACTIONS(13062), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146909] = 4, - ACTIONS(13174), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13176), 1, - aux_sym_end_function_statement_token1, - STATE(4780), 1, - sym_end_function_statement, + [146046] = 4, + ACTIONS(12908), 1, + anon_sym_COMMA, + STATE(6151), 1, + aux_sym_save_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146923] = 3, - STATE(1023), 1, - sym__end_of_statement, + ACTIONS(13064), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [146061] = 4, + ACTIONS(12740), 1, + anon_sym_COMMA, + STATE(6148), 1, + aux_sym_included_items_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13204), 2, + ACTIONS(12744), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146935] = 4, - ACTIONS(13206), 1, - sym__string_literal, - ACTIONS(13208), 1, - sym__string_literal_kind, - STATE(4870), 1, - sym_string_literal, + [146076] = 5, + ACTIONS(12956), 1, + aux_sym_kind_token1, + ACTIONS(13066), 1, + anon_sym_LPAREN2, + STATE(3129), 1, + sym__argument_list, + STATE(3132), 1, + sym_parenthesized_expression, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146949] = 3, - STATE(4155), 1, - sym__end_of_statement, + [146093] = 4, + ACTIONS(13068), 1, + anon_sym_COMMA, + STATE(6209), 1, + aux_sym_use_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13210), 2, + ACTIONS(13071), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146961] = 3, - STATE(1638), 1, - sym__end_of_statement, + [146108] = 4, + ACTIONS(12908), 1, + anon_sym_COMMA, + STATE(6193), 1, + aux_sym_save_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13212), 2, + ACTIONS(13064), 2, sym__external_end_of_statement, anon_sym_SEMI, - [146973] = 4, - ACTIONS(13214), 1, + [146123] = 4, + ACTIONS(12889), 1, anon_sym_COMMA, - ACTIONS(13216), 1, - anon_sym_RPAREN, - STATE(6521), 1, - aux_sym_parameter_statement_repeat1, + STATE(6144), 1, + aux_sym_variable_modification_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [146987] = 3, - STATE(2608), 1, - sym__end_of_statement, + ACTIONS(13073), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [146138] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13218), 2, + ACTIONS(13075), 4, sym__external_end_of_statement, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, anon_sym_SEMI, - [146999] = 4, - ACTIONS(13220), 1, - aux_sym_preproc_include_token2, - ACTIONS(13222), 1, - anon_sym_LPAREN2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [147013] = 4, - ACTIONS(9701), 1, - anon_sym_RPAREN, - ACTIONS(13224), 1, + [146149] = 4, + ACTIONS(12918), 1, anon_sym_COMMA, - STATE(6277), 1, - aux_sym_case_value_range_list_repeat1, + STATE(6150), 1, + aux_sym_implicit_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147027] = 3, - STATE(690), 1, - sym__end_of_statement, + ACTIONS(13077), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [146164] = 4, + ACTIONS(12918), 1, + anon_sym_COMMA, + STATE(6155), 1, + aux_sym_implicit_statement_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12388), 2, + ACTIONS(13077), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147039] = 4, - ACTIONS(13227), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13229), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4492), 1, - sym_end_subroutine_statement, + [146179] = 5, + ACTIONS(13079), 1, + anon_sym_LPAREN2, + ACTIONS(13081), 1, + aux_sym_kind_token1, + STATE(3978), 1, + sym_parenthesized_expression, + STATE(3987), 1, + sym__argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147053] = 3, - STATE(1163), 1, - sym__end_of_statement, + [146196] = 4, + ACTIONS(12893), 1, + anon_sym_COMMA, + STATE(6205), 1, + aux_sym_use_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13231), 2, + ACTIONS(13083), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147065] = 4, - ACTIONS(9228), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9230), 1, - aux_sym_end_type_statement_token1, - STATE(1636), 1, - sym_end_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147079] = 4, - ACTIONS(13182), 1, + [146211] = 4, + ACTIONS(12901), 1, anon_sym_COMMA, - ACTIONS(13233), 1, - anon_sym_RPAREN, - STATE(6469), 1, - aux_sym__io_arguments_repeat1, + STATE(6185), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147093] = 3, - STATE(2610), 1, - sym__end_of_statement, + ACTIONS(9491), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [146226] = 4, + ACTIONS(13085), 1, + anon_sym_COMMA, + STATE(6243), 1, + aux_sym_equivalence_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13235), 2, + ACTIONS(13087), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147105] = 3, - STATE(1392), 1, - sym__end_of_statement, + [146241] = 4, + ACTIONS(13089), 1, + anon_sym_COMMA, + STATE(7397), 1, + sym_included_items, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13237), 2, + ACTIONS(13091), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147117] = 3, - STATE(1611), 1, - sym__end_of_statement, + [146256] = 4, + ACTIONS(12908), 1, + anon_sym_COMMA, + STATE(6193), 1, + aux_sym_save_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13239), 2, + ACTIONS(13093), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147129] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13241), 1, - anon_sym_RPAREN, - STATE(6401), 1, - aux_sym__io_arguments_repeat1, - ACTIONS(21), 2, + [146271] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13095), 1, + aux_sym_preproc_def_token2, + ACTIONS(13097), 1, + sym_preproc_arg, + STATE(7222), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [147143] = 3, - STATE(4973), 1, - sym__end_of_statement, + [146288] = 4, + ACTIONS(12901), 1, + anon_sym_COMMA, + STATE(6185), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13243), 2, + ACTIONS(9466), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147155] = 4, - ACTIONS(13245), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13247), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4975), 1, - sym_end_subroutine_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147169] = 4, - ACTIONS(10411), 1, + [146303] = 5, + ACTIONS(12928), 1, aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7378), 1, - sym_end_select_statement, + ACTIONS(12930), 1, + aux_sym_end_program_statement_token2, + ACTIONS(13029), 1, + aux_sym_preproc_if_token2, + STATE(1066), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147183] = 4, - ACTIONS(9448), 1, + [146320] = 4, + ACTIONS(9505), 1, anon_sym_COMMA, - ACTIONS(9520), 1, - anon_sym_RPAREN, - STATE(6300), 1, - aux_sym__argument_list_repeat1, + STATE(6093), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147197] = 3, - STATE(5407), 1, - sym__end_of_statement, + ACTIONS(13099), 2, + anon_sym_SLASH_RPAREN, + anon_sym_RBRACK, + [146335] = 4, + ACTIONS(13085), 1, + anon_sym_COMMA, + STATE(6218), 1, + aux_sym_equivalence_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13249), 2, + ACTIONS(13101), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147209] = 3, - STATE(1167), 1, - sym__end_of_statement, + [146350] = 3, + ACTIONS(5472), 1, + aux_sym_end_program_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13251), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [147221] = 3, - STATE(1619), 1, - sym__end_of_statement, + ACTIONS(5474), 3, + aux_sym_implicit_statement_token3, + aux_sym_end_select_statement_token1, + aux_sym_format_statement_token1, + [146363] = 4, + ACTIONS(12908), 1, + anon_sym_COMMA, + STATE(6193), 1, + aux_sym_save_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13253), 2, + ACTIONS(13103), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147233] = 4, - ACTIONS(9228), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9230), 1, - aux_sym_end_type_statement_token1, - STATE(1620), 1, - sym_end_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147247] = 3, - STATE(1621), 1, - sym__end_of_statement, + [146378] = 4, + ACTIONS(12908), 1, + anon_sym_COMMA, + STATE(6220), 1, + aux_sym_save_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13255), 2, + ACTIONS(13103), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147259] = 4, - ACTIONS(13257), 1, - anon_sym_COMMA, - ACTIONS(13259), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym_coarray_index_repeat2, - ACTIONS(21), 2, + [146393] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13105), 1, + aux_sym_preproc_def_token2, + ACTIONS(13107), 1, + sym_preproc_arg, + STATE(7184), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [147273] = 3, - STATE(997), 1, - sym__end_of_statement, + [146410] = 4, + ACTIONS(12893), 1, + anon_sym_COMMA, + STATE(6209), 1, + aux_sym_use_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13261), 2, + ACTIONS(13109), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147285] = 3, - STATE(4981), 1, - sym__end_of_statement, + [146425] = 4, + ACTIONS(12889), 1, + anon_sym_COMMA, + STATE(6233), 1, + aux_sym_variable_modification_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13263), 2, + ACTIONS(13111), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147297] = 3, - STATE(1018), 1, - sym__end_of_statement, + [146440] = 4, + ACTIONS(13113), 1, + anon_sym_LPAREN2, + STATE(7662), 1, + sym_parenthesized_expression, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13265), 2, + ACTIONS(4257), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147309] = 4, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(13267), 1, - anon_sym_RPAREN, - STATE(6508), 1, - aux_sym__argument_list_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147323] = 4, - ACTIONS(13257), 1, + [146455] = 4, + ACTIONS(13115), 1, anon_sym_COMMA, - ACTIONS(13259), 1, - anon_sym_RBRACK, - STATE(6614), 1, - aux_sym_coarray_index_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147337] = 3, - STATE(1641), 1, - sym__end_of_statement, + STATE(6233), 1, + aux_sym_variable_modification_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13269), 2, + ACTIONS(13118), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147349] = 4, - ACTIONS(13188), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13190), 1, - aux_sym_end_function_statement_token1, - STATE(4982), 1, - sym_end_function_statement, - ACTIONS(21), 2, + [146470] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13120), 1, + aux_sym_preproc_def_token2, + ACTIONS(13122), 1, + sym_preproc_arg, + STATE(7231), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [147363] = 4, - ACTIONS(13271), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13273), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4881), 1, - sym_end_module_procedure_statement, + [146487] = 5, + ACTIONS(12940), 1, + sym__integer_literal, + ACTIONS(13124), 1, + anon_sym_LPAREN2, + STATE(6507), 1, + sym_statement_label, + STATE(7106), 1, + sym_statement_label_reference, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147377] = 3, - STATE(967), 1, - sym__end_of_statement, + [146504] = 3, + ACTIONS(13128), 1, + anon_sym_EQ_GT, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13275), 2, + ACTIONS(13126), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [147389] = 2, + [146517] = 4, + ACTIONS(11721), 1, + aux_sym_language_binding_token1, + STATE(7334), 1, + sym_language_binding, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12903), 3, + ACTIONS(13130), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [147399] = 3, - STATE(4812), 1, - sym__end_of_statement, + [146532] = 4, + ACTIONS(13132), 1, + anon_sym_COMMA, + STATE(7385), 1, + sym_included_items, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13277), 2, + ACTIONS(13134), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147411] = 4, - ACTIONS(13279), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13281), 1, - aux_sym_end_submodule_statement_token1, - STATE(971), 1, - sym_end_submodule_statement, + [146547] = 4, + ACTIONS(12893), 1, + anon_sym_COMMA, + STATE(6209), 1, + aux_sym_use_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147425] = 3, - STATE(4803), 1, - sym__end_of_statement, + ACTIONS(13136), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [146562] = 3, + ACTIONS(12742), 1, + anon_sym_EQ_GT, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13283), 2, + ACTIONS(13138), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [147437] = 4, - ACTIONS(13271), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13273), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4827), 1, - sym_end_module_procedure_statement, + [146575] = 4, + ACTIONS(13140), 1, + anon_sym_COMMA, + STATE(6241), 1, + aux_sym_included_items_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147451] = 4, - ACTIONS(7398), 1, - sym__integer_literal, - STATE(3920), 1, - sym_statement_label, - STATE(6922), 1, - sym_statement_label_reference, - ACTIONS(21), 2, + ACTIONS(13138), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [146590] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13143), 1, + aux_sym_preproc_def_token2, + ACTIONS(13145), 1, + sym_preproc_arg, + STATE(7210), 1, + sym_preproc_params, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [147465] = 2, + [146607] = 4, + ACTIONS(13147), 1, + anon_sym_COMMA, + STATE(6243), 1, + aux_sym_equivalence_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13285), 3, + ACTIONS(13150), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [147475] = 4, - ACTIONS(13182), 1, + [146622] = 4, + ACTIONS(12908), 1, anon_sym_COMMA, - ACTIONS(13287), 1, - anon_sym_RPAREN, - STATE(6481), 1, - aux_sym__io_arguments_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147489] = 3, - STATE(4855), 1, - sym__end_of_statement, + STATE(6227), 1, + aux_sym_save_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13289), 2, + ACTIONS(12910), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147501] = 4, - ACTIONS(13271), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13273), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4856), 1, - sym_end_module_procedure_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147515] = 4, - ACTIONS(13245), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13247), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4822), 1, - sym_end_subroutine_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147529] = 3, - STATE(567), 1, - sym__end_of_statement, + [146637] = 4, + ACTIONS(11721), 1, + aux_sym_language_binding_token1, + STATE(7094), 1, + sym_language_binding, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13291), 2, + ACTIONS(13152), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147541] = 3, - STATE(1633), 1, - sym__end_of_statement, + [146652] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13293), 2, + ACTIONS(7496), 4, sym__external_end_of_statement, + aux_sym_language_binding_token1, + aux_sym_function_result_token1, anon_sym_SEMI, - [147553] = 3, - STATE(1637), 1, - sym__end_of_statement, + [146663] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13154), 1, + aux_sym_preproc_def_token2, + ACTIONS(13156), 1, + sym_preproc_arg, + STATE(7380), 1, + sym_preproc_params, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [146680] = 4, + ACTIONS(12390), 1, + anon_sym_COMMA, + STATE(6179), 1, + aux_sym__declaration_targets_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13295), 2, + ACTIONS(10969), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147565] = 4, - ACTIONS(13182), 1, + [146695] = 5, + ACTIONS(12781), 1, + anon_sym_LPAREN, + ACTIONS(13158), 1, + aux_sym_preproc_def_token2, + ACTIONS(13160), 1, + sym_preproc_arg, + STATE(7207), 1, + sym_preproc_params, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [146712] = 4, + ACTIONS(9501), 1, anon_sym_COMMA, - ACTIONS(13297), 1, + ACTIONS(9503), 1, anon_sym_RPAREN, - STATE(7017), 1, - aux_sym__io_arguments_repeat1, + STATE(6373), 1, + aux_sym_case_value_range_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147579] = 4, - ACTIONS(13299), 1, + [146726] = 4, + ACTIONS(13162), 1, aux_sym_end_program_statement_token1, - ACTIONS(13301), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4839), 1, - sym_end_subroutine_statement, + ACTIONS(13164), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4840), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147593] = 3, - STATE(542), 1, + [146740] = 3, + STATE(4425), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13303), 2, + ACTIONS(13166), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147605] = 4, - ACTIONS(13305), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13307), 1, - aux_sym_end_function_statement_token1, - STATE(4841), 1, - sym_end_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147619] = 3, - STATE(4843), 1, + [146752] = 3, + STATE(4952), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13309), 2, + ACTIONS(13168), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147631] = 4, - ACTIONS(13182), 1, + [146764] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(13311), 1, + ACTIONS(13172), 1, anon_sym_RPAREN, - STATE(6497), 1, + STATE(7066), 1, aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147645] = 4, - ACTIONS(13299), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13301), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4775), 1, - sym_end_subroutine_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147659] = 3, - STATE(4846), 1, + [146778] = 3, + STATE(1399), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13313), 2, + ACTIONS(13174), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147671] = 4, - ACTIONS(13315), 1, - anon_sym_COMMA, - ACTIONS(13317), 1, - anon_sym_RPAREN, - STATE(6550), 1, - aux_sym_keyword_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147685] = 4, - ACTIONS(13305), 1, + [146790] = 4, + ACTIONS(13176), 1, aux_sym_end_program_statement_token1, - ACTIONS(13307), 1, + ACTIONS(13178), 1, aux_sym_end_function_statement_token1, - STATE(4847), 1, + STATE(4970), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147699] = 3, - STATE(4850), 1, - sym__end_of_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13319), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [147711] = 4, - ACTIONS(13299), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13301), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4851), 1, - sym_end_subroutine_statement, + [146804] = 4, + ACTIONS(10200), 1, + anon_sym_COMMA, + ACTIONS(10202), 1, + anon_sym_RPAREN, + STATE(7069), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147725] = 3, - STATE(4852), 1, + [146818] = 3, + STATE(4863), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13321), 2, + ACTIONS(13180), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147737] = 4, - ACTIONS(13305), 1, + [146830] = 4, + ACTIONS(13182), 1, + sym_preproc_comment, + ACTIONS(13184), 1, + aux_sym_select_case_statement_token2, + STATE(5753), 1, + sym_case_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [146844] = 4, + ACTIONS(13162), 1, aux_sym_end_program_statement_token1, - ACTIONS(13307), 1, - aux_sym_end_function_statement_token1, - STATE(4853), 1, - sym_end_function_statement, + ACTIONS(13164), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4865), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147751] = 4, - ACTIONS(13182), 1, + [146858] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(13323), 1, + ACTIONS(13186), 1, anon_sym_RPAREN, - STATE(6499), 1, + STATE(6328), 1, aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147765] = 4, - ACTIONS(13325), 1, - sym__string_literal, - ACTIONS(13327), 1, - sym__string_literal_kind, - STATE(4828), 1, - sym_string_literal, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147779] = 3, - STATE(4172), 1, + [146872] = 3, + STATE(5061), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13329), 2, + ACTIONS(13188), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147791] = 3, - STATE(1356), 1, + [146884] = 3, + STATE(691), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13331), 2, + ACTIONS(13190), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147803] = 4, - ACTIONS(13333), 1, + [146896] = 4, + ACTIONS(13192), 1, aux_sym_end_program_statement_token1, - ACTIONS(13335), 1, - aux_sym_end_function_statement_token1, - STATE(981), 1, - sym_end_function_statement, + ACTIONS(13194), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4791), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147817] = 3, - STATE(2443), 1, + [146910] = 3, + STATE(4792), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13337), 2, + ACTIONS(13196), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147829] = 4, - ACTIONS(13222), 1, - anon_sym_LPAREN2, - ACTIONS(13339), 1, - aux_sym_preproc_include_token2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [147843] = 3, - STATE(4823), 1, + [146922] = 3, + STATE(4876), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13341), 2, + ACTIONS(13198), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147855] = 4, - ACTIONS(13188), 1, + [146934] = 4, + ACTIONS(13162), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13164), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4877), 1, + sym_end_module_procedure_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [146948] = 4, + ACTIONS(13176), 1, aux_sym_end_program_statement_token1, - ACTIONS(13190), 1, + ACTIONS(13178), 1, aux_sym_end_function_statement_token1, - STATE(4824), 1, + STATE(4795), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147869] = 4, - ACTIONS(13343), 1, + [146962] = 4, + ACTIONS(9546), 1, + anon_sym_RPAREN, + ACTIONS(13200), 1, anon_sym_COMMA, - ACTIONS(13345), 1, - anon_sym_COLON_COLON, - STATE(6455), 1, - aux_sym_derived_type_statement_repeat1, + STATE(6269), 1, + aux_sym_case_value_range_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147883] = 3, - STATE(1506), 1, + [146976] = 3, + STATE(1551), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13347), 2, + ACTIONS(13203), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147895] = 4, - ACTIONS(10144), 1, - anon_sym_COMMA, - ACTIONS(13349), 1, - anon_sym_RPAREN, - STATE(6684), 1, - aux_sym_equivalence_set_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147909] = 4, - ACTIONS(9184), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9186), 1, - aux_sym_end_type_statement_token1, - STATE(1360), 1, - sym_end_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147923] = 3, - STATE(2494), 1, + [146988] = 3, + STATE(1577), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13351), 2, + ACTIONS(13205), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147935] = 3, - STATE(1261), 1, - sym__end_of_statement, + [147000] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13353), 2, + ACTIONS(13207), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [147947] = 3, - STATE(1362), 1, + [147010] = 3, + STATE(903), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13355), 2, + ACTIONS(13209), 2, sym__external_end_of_statement, anon_sym_SEMI, - [147959] = 4, - ACTIONS(13357), 1, + [147022] = 4, + ACTIONS(13211), 1, aux_sym_end_program_statement_token1, - ACTIONS(13359), 1, + ACTIONS(13213), 1, aux_sym_end_subroutine_statement_token1, - STATE(975), 1, + STATE(4617), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [147973] = 3, - STATE(552), 1, - sym__end_of_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13361), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [147985] = 4, - ACTIONS(13257), 1, + [147036] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(13363), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym_coarray_index_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [147999] = 4, - ACTIONS(13365), 1, - sym__string_literal, - ACTIONS(13367), 1, - sym__string_literal_kind, - STATE(4949), 1, - sym_string_literal, + ACTIONS(13215), 1, + anon_sym_RPAREN, + STATE(7071), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148013] = 3, - STATE(1625), 1, + [147050] = 3, + STATE(1714), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13369), 2, + ACTIONS(13217), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148025] = 3, - STATE(558), 1, - sym__end_of_statement, + [147062] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13371), 2, + ACTIONS(13219), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [148037] = 3, - STATE(1365), 1, - sym__end_of_statement, + [147072] = 4, + ACTIONS(13221), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13223), 1, + aux_sym_end_function_statement_token1, + STATE(4619), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13373), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [148049] = 4, - ACTIONS(9184), 1, + [147086] = 4, + ACTIONS(13225), 1, aux_sym_end_program_statement_token1, - ACTIONS(9186), 1, - aux_sym_end_type_statement_token1, - STATE(1367), 1, - sym_end_type_statement, + ACTIONS(13227), 1, + aux_sym_end_subroutine_statement_token1, + STATE(857), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148063] = 3, - STATE(1368), 1, + [147100] = 3, + STATE(864), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13375), 2, + ACTIONS(13229), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148075] = 3, - STATE(2149), 1, + [147112] = 3, + STATE(4623), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13377), 2, + ACTIONS(13231), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148087] = 4, - ACTIONS(13357), 1, + [147124] = 4, + ACTIONS(13211), 1, aux_sym_end_program_statement_token1, - ACTIONS(13359), 1, + ACTIONS(13213), 1, aux_sym_end_subroutine_statement_token1, - STATE(1024), 1, + STATE(4624), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148101] = 3, - STATE(1369), 1, - sym__end_of_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13379), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [148113] = 4, - ACTIONS(13381), 1, - sym_preproc_comment, - ACTIONS(13383), 1, - aux_sym_select_rank_statement_token1, - STATE(8160), 1, - sym_rank_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148127] = 4, - ACTIONS(10720), 1, - anon_sym_RPAREN, - ACTIONS(13385), 1, - anon_sym_COMMA, - STATE(6363), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148141] = 4, - ACTIONS(7398), 1, - sym__integer_literal, - STATE(3920), 1, - sym_statement_label, - STATE(7080), 1, - sym_statement_label_reference, + [147138] = 4, + ACTIONS(11711), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + STATE(7208), 1, + sym_end_if_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148155] = 4, - ACTIONS(13388), 1, + [147152] = 4, + ACTIONS(13233), 1, aux_sym_end_program_statement_token1, - ACTIONS(13390), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4787), 1, - sym_end_module_procedure_statement, + ACTIONS(13235), 1, + aux_sym_end_function_statement_token1, + STATE(877), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148169] = 2, + [147166] = 3, + STATE(4626), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13392), 3, + ACTIONS(13237), 2, sym__external_end_of_statement, - anon_sym_LPAREN2, anon_sym_SEMI, - [148179] = 4, - ACTIONS(13394), 1, - anon_sym_COMMA, - ACTIONS(13396), 1, - anon_sym_RPAREN, - STATE(6573), 1, - aux_sym_procedure_attributes_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148193] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13398), 1, - anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148207] = 4, - ACTIONS(13394), 1, - anon_sym_COMMA, - ACTIONS(13400), 1, - anon_sym_RPAREN, - STATE(6573), 1, - aux_sym_procedure_attributes_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148221] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13402), 1, - anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + [147178] = 4, + ACTIONS(13221), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13223), 1, + aux_sym_end_function_statement_token1, + STATE(4627), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148235] = 3, - STATE(4795), 1, + [147192] = 3, + STATE(4628), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13404), 2, + ACTIONS(13239), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148247] = 4, - ACTIONS(13388), 1, + [147204] = 4, + ACTIONS(13211), 1, aux_sym_end_program_statement_token1, - ACTIONS(13390), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4796), 1, - sym_end_module_procedure_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148261] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13406), 1, - anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148275] = 4, - ACTIONS(13315), 1, - anon_sym_COMMA, - ACTIONS(13317), 1, - anon_sym_RPAREN, - STATE(6553), 1, - aux_sym_keyword_statement_repeat1, + ACTIONS(13213), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4629), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148289] = 3, - STATE(2306), 1, + [147218] = 3, + STATE(4630), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13408), 2, + ACTIONS(13241), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148301] = 2, + [147230] = 4, + ACTIONS(13221), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13223), 1, + aux_sym_end_function_statement_token1, + STATE(4631), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13086), 3, - sym__external_end_of_statement, + [147244] = 4, + ACTIONS(13243), 1, anon_sym_COMMA, - anon_sym_SEMI, - [148311] = 3, - STATE(4810), 1, - sym__end_of_statement, + ACTIONS(13246), 1, + anon_sym_RPAREN, + STATE(6291), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13410), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [148323] = 4, - ACTIONS(13388), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13390), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4811), 1, - sym_end_module_procedure_statement, + [147258] = 4, + ACTIONS(13248), 1, + sym__string_literal, + ACTIONS(13250), 1, + sym__string_literal_kind, + STATE(5022), 1, + sym_string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148337] = 4, - ACTIONS(12884), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12886), 1, - aux_sym_end_program_statement_token2, - STATE(1047), 1, - sym_end_program_statement, + [147272] = 4, + ACTIONS(6984), 1, + sym__string_literal, + ACTIONS(6986), 1, + sym__string_literal_kind, + STATE(4428), 1, + sym_string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148351] = 3, - STATE(1397), 1, + [147286] = 3, + STATE(4146), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13412), 2, + ACTIONS(13252), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148363] = 3, - STATE(1404), 1, + [147298] = 3, + STATE(1468), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13414), 2, + ACTIONS(13254), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148375] = 4, - ACTIONS(13416), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13418), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4610), 1, - sym_end_subroutine_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148389] = 4, - ACTIONS(13420), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13422), 1, - aux_sym_end_function_statement_token1, - STATE(4612), 1, - sym_end_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148403] = 3, - STATE(4148), 1, + [147310] = 3, + STATE(1997), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13424), 2, + ACTIONS(13256), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148415] = 3, - STATE(4616), 1, - sym__end_of_statement, + [147322] = 4, + ACTIONS(13258), 1, + aux_sym_preproc_include_token2, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + STATE(8376), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [147336] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13426), 2, + ACTIONS(13262), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [148427] = 3, - STATE(2836), 1, + [147346] = 3, + STATE(854), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13428), 2, + ACTIONS(13264), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148439] = 4, - ACTIONS(13416), 1, + [147358] = 4, + ACTIONS(12928), 1, aux_sym_end_program_statement_token1, - ACTIONS(13418), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4617), 1, - sym_end_subroutine_statement, + ACTIONS(12930), 1, + aux_sym_end_program_statement_token2, + STATE(1033), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148453] = 3, - STATE(4619), 1, + [147372] = 3, + STATE(1575), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13430), 2, + ACTIONS(13266), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148465] = 4, - ACTIONS(13432), 1, - anon_sym_COMMA, - ACTIONS(13435), 1, - anon_sym_RPAREN, - STATE(6389), 1, - aux_sym_preproc_params_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148479] = 4, - ACTIONS(13420), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13422), 1, - aux_sym_end_function_statement_token1, - STATE(4620), 1, - sym_end_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148493] = 3, - STATE(4621), 1, + [147384] = 3, + STATE(4155), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13437), 2, + ACTIONS(13268), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148505] = 4, - ACTIONS(13416), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13418), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4622), 1, - sym_end_subroutine_statement, + [147396] = 3, + STATE(548), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148519] = 3, - STATE(4623), 1, + ACTIONS(13270), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [147408] = 3, + STATE(2872), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13439), 2, + ACTIONS(13272), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148531] = 4, - ACTIONS(13420), 1, + [147420] = 4, + ACTIONS(9186), 1, aux_sym_end_program_statement_token1, - ACTIONS(13422), 1, - aux_sym_end_function_statement_token1, - STATE(4624), 1, - sym_end_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148545] = 4, - ACTIONS(7020), 1, - sym__string_literal, - ACTIONS(7022), 1, - sym__string_literal_kind, - STATE(4430), 1, - sym_string_literal, + ACTIONS(9188), 1, + aux_sym_end_type_statement_token1, + STATE(1520), 1, + sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148559] = 2, + [147434] = 3, + STATE(553), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13441), 3, + ACTIONS(13274), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [148569] = 3, - STATE(4144), 1, + [147446] = 3, + STATE(1880), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13443), 2, + ACTIONS(13276), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148581] = 3, - STATE(1383), 1, + [147458] = 3, + STATE(1168), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13445), 2, + ACTIONS(13278), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148593] = 3, - STATE(1883), 1, + [147470] = 3, + STATE(1535), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13447), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [148605] = 4, - ACTIONS(13222), 1, - anon_sym_LPAREN2, - ACTIONS(13449), 1, - aux_sym_preproc_include_token2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [148619] = 4, - ACTIONS(13182), 1, + ACTIONS(13280), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [147482] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(13451), 1, + ACTIONS(13282), 1, anon_sym_RPAREN, - STATE(6422), 1, + STATE(6940), 1, aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148633] = 3, - STATE(2442), 1, + [147496] = 3, + STATE(2525), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13453), 2, + ACTIONS(13284), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148645] = 3, - STATE(1052), 1, + [147508] = 3, + STATE(1044), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13455), 2, + ACTIONS(13286), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148657] = 3, - STATE(1559), 1, + [147520] = 4, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(13288), 1, + aux_sym_preproc_include_token2, + STATE(8376), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [147534] = 3, + STATE(3096), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13457), 2, + ACTIONS(13290), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148669] = 2, + [147546] = 4, + ACTIONS(13292), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13294), 1, + aux_sym_end_function_statement_token1, + STATE(4427), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13459), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - [148679] = 2, + [147560] = 3, + STATE(1555), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13461), 3, + ACTIONS(13296), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [148689] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13463), 1, - anon_sym_RPAREN, - STATE(6656), 1, - aux_sym__io_arguments_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148703] = 4, - ACTIONS(9216), 1, + [147572] = 4, + ACTIONS(9186), 1, aux_sym_end_program_statement_token1, - ACTIONS(9218), 1, + ACTIONS(9188), 1, aux_sym_end_type_statement_token1, - STATE(1391), 1, + STATE(1558), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148717] = 3, - STATE(1884), 1, - sym__end_of_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13465), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [148729] = 3, - STATE(1167), 1, + [147586] = 3, + STATE(1561), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13251), 2, + ACTIONS(13298), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148741] = 3, - STATE(1393), 1, + [147598] = 3, + STATE(646), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13467), 2, + ACTIONS(13300), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148753] = 4, - ACTIONS(13222), 1, + [147610] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(13469), 1, + ACTIONS(13302), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [148767] = 3, - STATE(852), 1, + [147624] = 3, + STATE(886), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13471), 2, + ACTIONS(13304), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148779] = 2, + [147636] = 3, + STATE(1580), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13473), 3, + ACTIONS(13306), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [148789] = 4, - ACTIONS(9466), 1, + [147648] = 4, + ACTIONS(13308), 1, anon_sym_COMMA, - ACTIONS(9468), 1, + ACTIONS(13310), 1, anon_sym_RPAREN, - STATE(7047), 1, - aux_sym_case_value_range_list_repeat1, + STATE(6359), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148803] = 3, - STATE(3077), 1, - sym__end_of_statement, + [147662] = 4, + ACTIONS(13312), 1, + aux_sym_included_items_token1, + ACTIONS(13314), 1, + aux_sym_implicit_statement_token2, + ACTIONS(13316), 1, + aux_sym__import_names_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13475), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [148815] = 3, - STATE(1399), 1, - sym__end_of_statement, + [147676] = 4, + ACTIONS(13318), 1, + sym_preproc_comment, + ACTIONS(13320), 1, + aux_sym_select_rank_statement_token1, + STATE(5762), 1, + sym_rank_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13477), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [148827] = 4, - ACTIONS(9216), 1, + [147690] = 4, + ACTIONS(13322), 1, aux_sym_end_program_statement_token1, - ACTIONS(9218), 1, - aux_sym_end_type_statement_token1, - STATE(1400), 1, - sym_end_type_statement, + ACTIONS(13324), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4651), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148841] = 3, - STATE(1401), 1, + [147704] = 3, + STATE(693), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13479), 2, + ACTIONS(13326), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148853] = 4, - ACTIONS(13182), 1, + [147716] = 4, + ACTIONS(13328), 1, anon_sym_COMMA, - ACTIONS(13481), 1, + ACTIONS(13331), 1, anon_sym_RPAREN, - STATE(6941), 1, + STATE(6328), 1, aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148867] = 4, - ACTIONS(13483), 1, + [147730] = 4, + ACTIONS(12928), 1, aux_sym_end_program_statement_token1, - ACTIONS(13485), 1, - aux_sym_end_function_statement_token1, - STATE(4496), 1, - sym_end_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [148881] = 4, - ACTIONS(13487), 1, - anon_sym_COMMA, - ACTIONS(13490), 1, - anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + ACTIONS(12930), 1, + aux_sym_end_program_statement_token2, + STATE(1066), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148895] = 3, - STATE(1405), 1, + [147744] = 3, + STATE(1517), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13492), 2, + ACTIONS(13333), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148907] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13494), 3, + [147756] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, + ACTIONS(13335), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [148917] = 4, - ACTIONS(13496), 1, - aux_sym_included_items_token1, - ACTIONS(13498), 1, - aux_sym_implicit_statement_token2, - ACTIONS(13500), 1, - aux_sym__import_names_token1, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148931] = 2, + [147770] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(13337), 1, + anon_sym_RPAREN, + STATE(6647), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9556), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [148941] = 3, - STATE(4931), 1, + [147784] = 3, + STATE(4663), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13502), 2, + ACTIONS(13339), 2, sym__external_end_of_statement, anon_sym_SEMI, - [148953] = 4, - ACTIONS(13504), 1, + [147796] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(13506), 1, + ACTIONS(13341), 1, anon_sym_RPAREN, - STATE(6781), 1, - aux_sym_parameters_repeat1, + STATE(6648), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148967] = 4, - ACTIONS(13508), 1, + [147810] = 4, + ACTIONS(13322), 1, aux_sym_end_program_statement_token1, - ACTIONS(13510), 1, + ACTIONS(13324), 1, aux_sym_end_module_procedure_statement_token1, - STATE(4656), 1, + STATE(4664), 1, sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148981] = 4, - ACTIONS(13182), 1, + [147824] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(13512), 1, + ACTIONS(13343), 1, anon_sym_RPAREN, - STATE(6488), 1, + STATE(6656), 1, aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [148995] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13514), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - [149005] = 4, - ACTIONS(10276), 1, - anon_sym_SLASH, - ACTIONS(13516), 1, - anon_sym_COMMA, - STATE(6432), 1, - aux_sym_data_set_repeat1, + [147838] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149019] = 4, - ACTIONS(13519), 1, + ACTIONS(13345), 3, anon_sym_COMMA, - ACTIONS(13522), 1, anon_sym_RPAREN, - STATE(6433), 1, - aux_sym_procedure_attributes_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [149033] = 4, - ACTIONS(12884), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12886), 1, - aux_sym_end_program_statement_token2, - STATE(1055), 1, - sym_end_program_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [149047] = 3, - STATE(4666), 1, - sym__end_of_statement, + anon_sym_RBRACK, + [147848] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13524), 2, + ACTIONS(13347), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [149059] = 3, - STATE(1356), 1, + [147858] = 3, + STATE(4673), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13331), 2, + ACTIONS(13349), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149071] = 4, - ACTIONS(13508), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13510), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4667), 1, - sym_end_module_procedure_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [149085] = 4, - ACTIONS(13526), 1, + [147870] = 4, + ACTIONS(13322), 1, aux_sym_end_program_statement_token1, - ACTIONS(13528), 1, + ACTIONS(13324), 1, aux_sym_end_module_procedure_statement_token1, - STATE(4932), 1, + STATE(4674), 1, sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149099] = 3, - STATE(4677), 1, - sym__end_of_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13530), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [149111] = 4, - ACTIONS(13508), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13510), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4678), 1, - sym_end_module_procedure_statement, + [147884] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149125] = 3, - ACTIONS(13532), 1, + ACTIONS(9572), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [147894] = 3, + ACTIONS(7494), 1, aux_sym_end_program_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13534), 2, + ACTIONS(7492), 2, aux_sym_enumerator_statement_token1, aux_sym_end_enum_statement_token1, - [149137] = 3, - STATE(1439), 1, + [147906] = 3, + STATE(1357), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13536), 2, + ACTIONS(13351), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149149] = 3, - STATE(1451), 1, + [147918] = 3, + STATE(1379), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13538), 2, + ACTIONS(13353), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149161] = 3, - STATE(2231), 1, + [147930] = 3, + STATE(1505), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13540), 2, + ACTIONS(13355), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149173] = 4, - ACTIONS(13542), 1, + [147942] = 4, + ACTIONS(13357), 1, aux_sym_end_program_statement_token1, - ACTIONS(13544), 1, + ACTIONS(13359), 1, aux_sym_end_subroutine_statement_token1, - STATE(4405), 1, + STATE(4517), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149187] = 4, - ACTIONS(13546), 1, - anon_sym_COMMA, - ACTIONS(13548), 1, - anon_sym_RPAREN, - STATE(6955), 1, - aux_sym_implicit_statement_repeat3, + [147956] = 4, + ACTIONS(9206), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9208), 1, + aux_sym_end_type_statement_token1, + STATE(2792), 1, + sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149201] = 4, - ACTIONS(13550), 1, + [147970] = 3, + STATE(129), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13361), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [147982] = 3, + STATE(2526), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13363), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [147994] = 4, + ACTIONS(13365), 1, aux_sym_end_program_statement_token1, - ACTIONS(13552), 1, + ACTIONS(13367), 1, aux_sym_end_function_statement_token1, - STATE(4407), 1, + STATE(4446), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149215] = 4, - ACTIONS(9200), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9202), 1, - aux_sym_end_type_statement_token1, - STATE(2838), 1, - sym_end_type_statement, + [148008] = 3, + STATE(1615), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149229] = 4, - ACTIONS(13554), 1, - anon_sym_COMMA, - ACTIONS(13556), 1, - anon_sym_RPAREN, - STATE(7054), 1, - aux_sym_implicit_statement_repeat1, + ACTIONS(13369), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [148020] = 3, + STATE(2893), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149243] = 3, - STATE(4413), 1, + ACTIONS(13371), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [148032] = 3, + STATE(4466), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13558), 2, + ACTIONS(13373), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149255] = 4, - ACTIONS(13542), 1, + [148044] = 4, + ACTIONS(13357), 1, aux_sym_end_program_statement_token1, - ACTIONS(13544), 1, + ACTIONS(13359), 1, aux_sym_end_subroutine_statement_token1, - STATE(4414), 1, + STATE(4475), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149269] = 4, - ACTIONS(13560), 1, + [148058] = 4, + ACTIONS(13375), 1, anon_sym_COMMA, - ACTIONS(13562), 1, - anon_sym_RPAREN, - STATE(6595), 1, - aux_sym_concurrent_header_repeat1, + ACTIONS(13377), 1, + anon_sym_RBRACK, + STATE(6555), 1, + aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149283] = 3, - STATE(4418), 1, + [148072] = 3, + STATE(4481), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13564), 2, + ACTIONS(13379), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149295] = 4, - ACTIONS(13550), 1, + [148084] = 4, + ACTIONS(9456), 1, + anon_sym_COMMA, + ACTIONS(13381), 1, + anon_sym_RPAREN, + STATE(6607), 1, + aux_sym__argument_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148098] = 4, + ACTIONS(13365), 1, aux_sym_end_program_statement_token1, - ACTIONS(13552), 1, + ACTIONS(13367), 1, aux_sym_end_function_statement_token1, - STATE(4419), 1, + STATE(4482), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149309] = 4, - ACTIONS(13566), 1, + [148112] = 4, + ACTIONS(13308), 1, anon_sym_COMMA, - ACTIONS(13569), 1, - anon_sym_COLON_COLON, - STATE(6455), 1, - aux_sym_derived_type_statement_repeat1, + ACTIONS(13383), 1, + anon_sym_RPAREN, + STATE(6870), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149323] = 3, - STATE(4423), 1, + [148126] = 3, + STATE(4397), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13571), 2, + ACTIONS(13385), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149335] = 4, - ACTIONS(13542), 1, + [148138] = 4, + ACTIONS(13357), 1, aux_sym_end_program_statement_token1, - ACTIONS(13544), 1, + ACTIONS(13359), 1, aux_sym_end_subroutine_statement_token1, - STATE(4424), 1, + STATE(4399), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149349] = 3, - STATE(4427), 1, + [148152] = 3, + STATE(4400), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13573), 2, + ACTIONS(13387), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149361] = 4, - ACTIONS(13550), 1, + [148164] = 4, + ACTIONS(13365), 1, aux_sym_end_program_statement_token1, - ACTIONS(13552), 1, + ACTIONS(13367), 1, aux_sym_end_function_statement_token1, - STATE(4428), 1, + STATE(4402), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149375] = 4, - ACTIONS(13575), 1, + [148178] = 4, + ACTIONS(9392), 1, + anon_sym_COMMA, + ACTIONS(9414), 1, + anon_sym_RBRACK, + STATE(6532), 1, + aux_sym_coarray_index_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148192] = 4, + ACTIONS(13389), 1, sym__string_literal, - ACTIONS(13577), 1, + ACTIONS(13391), 1, sym__string_literal_kind, - STATE(4685), 1, + STATE(4687), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149389] = 3, - STATE(4151), 1, + [148206] = 3, + STATE(4163), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13579), 2, + ACTIONS(13393), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149401] = 3, - STATE(1201), 1, + [148218] = 3, + STATE(1209), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13581), 2, + ACTIONS(13395), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149413] = 3, - STATE(1751), 1, + [148230] = 4, + ACTIONS(13397), 1, + sym_preproc_comment, + ACTIONS(13399), 1, + aux_sym_select_case_statement_token2, + STATE(7689), 1, + sym_case_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148244] = 3, + STATE(1771), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13583), 2, + ACTIONS(13401), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149425] = 4, - ACTIONS(13222), 1, + [148256] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(13585), 1, + ACTIONS(13403), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [149439] = 4, - ACTIONS(13587), 1, - sym_preproc_comment, - ACTIONS(13589), 1, - aux_sym_select_rank_statement_token1, - STATE(5754), 1, - sym_rank_statement, + [148270] = 4, + ACTIONS(13405), 1, + anon_sym_COMMA, + ACTIONS(13407), 1, + anon_sym_RPAREN, + STATE(6791), 1, + aux_sym__forall_control_expression_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149453] = 3, - STATE(655), 1, + [148284] = 4, + ACTIONS(10618), 1, + anon_sym_COMMA, + ACTIONS(13409), 1, + anon_sym_RPAREN, + STATE(6845), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148298] = 4, + ACTIONS(9501), 1, + anon_sym_COMMA, + ACTIONS(13411), 1, + anon_sym_RPAREN, + STATE(6269), 1, + aux_sym_case_value_range_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148312] = 3, + STATE(133), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13591), 2, + ACTIONS(13413), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149465] = 3, - STATE(2492), 1, - sym__end_of_statement, + [148324] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13593), 2, + ACTIONS(13415), 3, sym__external_end_of_statement, + anon_sym_LPAREN2, anon_sym_SEMI, - [149477] = 4, - ACTIONS(9192), 1, + [148334] = 4, + ACTIONS(9230), 1, aux_sym_end_program_statement_token1, - ACTIONS(9194), 1, + ACTIONS(9232), 1, aux_sym_end_type_statement_token1, - STATE(1193), 1, + STATE(1215), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149491] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13595), 1, - anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + [148348] = 3, + STATE(1772), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149505] = 3, - STATE(1797), 1, + ACTIONS(13417), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [148360] = 3, + STATE(1513), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13597), 2, + ACTIONS(13419), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149517] = 3, - STATE(1516), 1, + [148372] = 3, + STATE(1218), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13599), 2, + ACTIONS(13421), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149529] = 3, - STATE(1315), 1, + [148384] = 4, + ACTIONS(13423), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13425), 1, + aux_sym_end_program_statement_token2, + STATE(1074), 1, + sym_end_program_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148398] = 3, + STATE(675), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13601), 2, + ACTIONS(7550), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149541] = 3, - STATE(1625), 1, + [148410] = 3, + STATE(887), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13369), 2, + ACTIONS(13427), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149553] = 3, - STATE(2841), 1, + [148422] = 3, + STATE(2152), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13603), 2, + ACTIONS(13429), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149565] = 3, - STATE(597), 1, + [148434] = 3, + STATE(1384), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13605), 2, + ACTIONS(13431), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149577] = 4, - ACTIONS(13257), 1, + [148446] = 4, + ACTIONS(13433), 1, anon_sym_COMMA, - ACTIONS(13363), 1, - anon_sym_RBRACK, - STATE(7026), 1, - aux_sym_coarray_index_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [149591] = 3, - STATE(1361), 1, - sym__end_of_statement, + ACTIONS(13435), 1, + anon_sym_RPAREN, + STATE(6414), 1, + aux_sym_procedure_attributes_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13607), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [149603] = 3, - STATE(1209), 1, + [148460] = 3, + STATE(1223), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13609), 2, + ACTIONS(13437), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149615] = 4, - ACTIONS(9192), 1, + [148472] = 4, + ACTIONS(9230), 1, aux_sym_end_program_statement_token1, - ACTIONS(9194), 1, + ACTIONS(9232), 1, aux_sym_end_type_statement_token1, - STATE(1243), 1, + STATE(1226), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149629] = 3, - STATE(1314), 1, + [148486] = 3, + STATE(1228), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13611), 2, + ACTIONS(13439), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149641] = 4, - ACTIONS(13182), 1, + [148498] = 4, + ACTIONS(13441), 1, anon_sym_COMMA, - ACTIONS(13613), 1, + ACTIONS(13443), 1, anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + STATE(6849), 1, + aux_sym_preproc_params_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149655] = 3, - STATE(661), 1, + [148512] = 3, + STATE(4480), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13615), 2, + ACTIONS(7462), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149667] = 3, - STATE(5121), 1, + [148524] = 3, + STATE(2785), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13617), 2, + ACTIONS(13445), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149679] = 3, - STATE(1199), 1, + [148536] = 3, + STATE(1232), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13619), 2, + ACTIONS(13447), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149691] = 3, - STATE(5131), 1, - sym__end_of_statement, + [148548] = 4, + ACTIONS(13449), 1, + aux_sym_included_items_token1, + ACTIONS(13451), 1, + aux_sym_implicit_statement_token2, + ACTIONS(13453), 1, + aux_sym__import_names_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13621), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [149703] = 3, - STATE(1027), 1, + [148562] = 3, + STATE(4171), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13623), 2, + ACTIONS(13455), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149715] = 4, - ACTIONS(13343), 1, + [148574] = 4, + ACTIONS(13457), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13459), 1, + aux_sym_end_function_statement_token1, + STATE(1036), 1, + sym_end_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148588] = 4, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + STATE(859), 1, + sym_end_program_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148602] = 4, + ACTIONS(9493), 1, anon_sym_COMMA, - ACTIONS(13625), 1, - anon_sym_COLON_COLON, - STATE(6343), 1, - aux_sym_derived_type_statement_repeat1, + ACTIONS(9495), 1, + anon_sym_RBRACK, + STATE(6453), 1, + aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149729] = 4, - ACTIONS(13182), 1, + [148616] = 4, + ACTIONS(9456), 1, anon_sym_COMMA, - ACTIONS(13627), 1, + ACTIONS(9497), 1, anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + STATE(6459), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149743] = 4, - ACTIONS(13629), 1, + [148630] = 4, + ACTIONS(13461), 1, aux_sym_end_program_statement_token1, - ACTIONS(13631), 1, + ACTIONS(13463), 1, aux_sym_end_module_procedure_statement_token1, - STATE(4916), 1, + STATE(5003), 1, sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149757] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13633), 1, - anon_sym_RPAREN, - STATE(6368), 1, - aux_sym__io_arguments_repeat1, + [148644] = 3, + STATE(1623), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149771] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13635), 1, - anon_sym_RPAREN, - STATE(6370), 1, - aux_sym__io_arguments_repeat1, + ACTIONS(13465), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [148656] = 3, + STATE(1465), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149785] = 4, - ACTIONS(13257), 1, - anon_sym_COMMA, - ACTIONS(13637), 1, - anon_sym_RBRACK, - STATE(6296), 1, - aux_sym_coarray_index_repeat2, + ACTIONS(13467), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [148668] = 3, + STATE(2295), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149799] = 3, - STATE(601), 1, + ACTIONS(13469), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [148680] = 3, + STATE(2826), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13639), 2, + ACTIONS(13471), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149811] = 3, - STATE(4933), 1, + [148692] = 4, + ACTIONS(13473), 1, + anon_sym_COMMA, + ACTIONS(13475), 1, + anon_sym_RPAREN, + STATE(6444), 1, + aux_sym_implicit_statement_repeat3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148706] = 3, + ACTIONS(13479), 1, + anon_sym_DASH, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13477), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [148718] = 3, + STATE(5012), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13641), 2, + ACTIONS(13481), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149823] = 4, - ACTIONS(9572), 1, - anon_sym_RBRACK, - ACTIONS(13643), 1, + [148730] = 4, + ACTIONS(13483), 1, anon_sym_COMMA, - STATE(6495), 1, - aux_sym_coarray_index_repeat1, + ACTIONS(13485), 1, + anon_sym_RPAREN, + STATE(6464), 1, + aux_sym_implicit_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149837] = 4, - ACTIONS(13629), 1, + [148744] = 4, + ACTIONS(13461), 1, aux_sym_end_program_statement_token1, - ACTIONS(13631), 1, + ACTIONS(13463), 1, aux_sym_end_module_procedure_statement_token1, - STATE(4934), 1, + STATE(5013), 1, sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149851] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13646), 1, - anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + [148758] = 4, + ACTIONS(9206), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9208), 1, + aux_sym_end_type_statement_token1, + STATE(2831), 1, + sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149865] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(13648), 1, - anon_sym_RPAREN, - STATE(6942), 1, - aux_sym__io_arguments_repeat1, + [148772] = 3, + STATE(2843), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149879] = 4, - ACTIONS(13182), 1, + ACTIONS(13487), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [148784] = 4, + ACTIONS(9456), 1, anon_sym_COMMA, - ACTIONS(13650), 1, + ACTIONS(9458), 1, anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + STATE(6576), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149893] = 3, - STATE(4947), 1, + [148798] = 3, + STATE(5049), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13652), 2, + ACTIONS(13489), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149905] = 4, - ACTIONS(13629), 1, + [148810] = 4, + ACTIONS(13461), 1, aux_sym_end_program_statement_token1, - ACTIONS(13631), 1, + ACTIONS(13463), 1, aux_sym_end_module_procedure_statement_token1, - STATE(4948), 1, + STATE(5053), 1, sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149919] = 3, - ACTIONS(9576), 1, - anon_sym_COLON, + [148824] = 4, + ACTIONS(13491), 1, + anon_sym_COMMA, + ACTIONS(13494), 1, + anon_sym_RPAREN, + STATE(6414), 1, + aux_sym_procedure_attributes_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9574), 2, + [148838] = 4, + ACTIONS(10618), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [149931] = 3, - STATE(950), 1, + ACTIONS(13496), 1, + anon_sym_RPAREN, + STATE(6845), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148852] = 4, + ACTIONS(13498), 1, + anon_sym_COMMA, + ACTIONS(13500), 1, + anon_sym_COLON_COLON, + STATE(6494), 1, + aux_sym_derived_type_statement_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [148866] = 3, + STATE(976), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13654), 2, + ACTIONS(13502), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149943] = 3, - STATE(951), 1, + [148878] = 3, + STATE(977), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13656), 2, + ACTIONS(13504), 2, sym__external_end_of_statement, anon_sym_SEMI, - [149955] = 4, - ACTIONS(13658), 1, + [148890] = 4, + ACTIONS(13506), 1, aux_sym_end_program_statement_token1, - ACTIONS(13660), 1, + ACTIONS(13508), 1, aux_sym_end_subroutine_statement_token1, - STATE(4987), 1, + STATE(4936), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149969] = 3, - STATE(5110), 1, - sym__end_of_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13662), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [149981] = 4, - ACTIONS(13664), 1, + [148904] = 4, + ACTIONS(13510), 1, aux_sym_end_program_statement_token1, - ACTIONS(13666), 1, + ACTIONS(13512), 1, aux_sym_end_function_statement_token1, - STATE(4989), 1, + STATE(4938), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [149995] = 4, - ACTIONS(9578), 1, - anon_sym_RPAREN, - ACTIONS(13668), 1, - anon_sym_COMMA, - STATE(6508), 1, - aux_sym__argument_list_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [150009] = 3, - STATE(603), 1, + [148918] = 3, + STATE(5111), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13671), 2, + ACTIONS(13514), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150021] = 3, - ACTIONS(9582), 1, - anon_sym_COLON, + [148930] = 3, + STATE(4843), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9580), 2, + ACTIONS(13516), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [148942] = 4, + ACTIONS(13518), 1, anon_sym_COMMA, + ACTIONS(13520), 1, anon_sym_RPAREN, - [150033] = 3, - STATE(4992), 1, - sym__end_of_statement, + STATE(6587), 1, + aux_sym_parameter_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13673), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [150045] = 4, - ACTIONS(13658), 1, + [148956] = 4, + ACTIONS(13506), 1, aux_sym_end_program_statement_token1, - ACTIONS(13660), 1, + ACTIONS(13508), 1, aux_sym_end_subroutine_statement_token1, - STATE(4993), 1, + STATE(4845), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150059] = 3, - STATE(4997), 1, + [148970] = 3, + STATE(2365), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13675), 2, + ACTIONS(13522), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150071] = 4, - ACTIONS(13677), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13679), 1, - aux_sym_end_module_statement_token1, - STATE(1049), 1, - sym_end_module_statement, + [148982] = 3, + STATE(4853), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150085] = 4, - ACTIONS(13664), 1, + ACTIONS(13524), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [148994] = 4, + ACTIONS(13510), 1, aux_sym_end_program_statement_token1, - ACTIONS(13666), 1, + ACTIONS(13512), 1, aux_sym_end_function_statement_token1, - STATE(4998), 1, + STATE(4855), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150099] = 3, - STATE(4999), 1, + [149008] = 3, + STATE(206), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13681), 2, + ACTIONS(13526), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150111] = 4, - ACTIONS(13658), 1, + [149020] = 3, + STATE(4948), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13528), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [149032] = 4, + ACTIONS(13506), 1, aux_sym_end_program_statement_token1, - ACTIONS(13660), 1, + ACTIONS(13508), 1, aux_sym_end_subroutine_statement_token1, - STATE(5000), 1, + STATE(4949), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150125] = 3, - STATE(5001), 1, + [149046] = 3, + STATE(4951), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13683), 2, + ACTIONS(13530), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150137] = 4, - ACTIONS(13664), 1, + [149058] = 4, + ACTIONS(13510), 1, aux_sym_end_program_statement_token1, - ACTIONS(13666), 1, + ACTIONS(13512), 1, aux_sym_end_function_statement_token1, - STATE(5002), 1, + STATE(4956), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150151] = 4, - ACTIONS(13685), 1, + [149072] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(11067), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [149082] = 4, + ACTIONS(13532), 1, sym__string_literal, - ACTIONS(13687), 1, + ACTIONS(13534), 1, sym__string_literal_kind, - STATE(4958), 1, + STATE(5060), 1, sym_string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150165] = 4, - ACTIONS(13689), 1, - anon_sym_COMMA, - ACTIONS(13692), 1, - anon_sym_RPAREN, - STATE(6521), 1, - aux_sym_parameter_statement_repeat1, + [149096] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150179] = 3, - STATE(1163), 1, + ACTIONS(13022), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [149106] = 3, + STATE(1180), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13231), 2, + ACTIONS(13536), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150191] = 3, - STATE(1878), 1, + [149118] = 4, + ACTIONS(13441), 1, + anon_sym_COMMA, + ACTIONS(13538), 1, + anon_sym_RPAREN, + STATE(6389), 1, + aux_sym_preproc_params_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [149132] = 3, + STATE(2031), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13694), 2, + ACTIONS(13540), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150203] = 4, - ACTIONS(13222), 1, + [149144] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(13696), 1, + ACTIONS(13542), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [150217] = 3, - STATE(605), 1, - sym__end_of_statement, + [149158] = 4, + ACTIONS(13544), 1, + sym_preproc_comment, + ACTIONS(13546), 1, + aux_sym_select_rank_statement_token1, + STATE(8038), 1, + sym_rank_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13698), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [150229] = 3, - STATE(1019), 1, - sym__end_of_statement, + [149172] = 4, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7124), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13700), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [150241] = 2, + [149186] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13035), 3, + ACTIONS(11067), 3, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_SEMI, - [150251] = 2, + [149196] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13702), 3, + ACTIONS(13548), 3, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_SEMI, - [150261] = 4, - ACTIONS(13554), 1, + [149206] = 4, + ACTIONS(13473), 1, anon_sym_COMMA, - ACTIONS(13704), 1, + ACTIONS(13550), 1, anon_sym_RPAREN, - STATE(7054), 1, - aux_sym_implicit_statement_repeat1, + STATE(6970), 1, + aux_sym_implicit_statement_repeat3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150275] = 4, - ACTIONS(9196), 1, + [149220] = 4, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - ACTIONS(9198), 1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7126), 1, + sym_end_select_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [149234] = 4, + ACTIONS(9190), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9192), 1, aux_sym_end_type_statement_token1, - STATE(1166), 1, + STATE(1157), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150289] = 3, - STATE(1879), 1, + [149248] = 3, + STATE(2032), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13706), 2, + ACTIONS(13552), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150301] = 3, - STATE(1569), 1, + [149260] = 3, + STATE(1452), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13708), 2, + ACTIONS(13554), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150313] = 3, - STATE(1168), 1, + [149272] = 3, + STATE(1171), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13710), 2, + ACTIONS(13556), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150325] = 3, - STATE(684), 1, - sym__end_of_statement, + [149284] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(13558), 1, + anon_sym_RPAREN, + STATE(6331), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13712), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [150337] = 4, - ACTIONS(11721), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - STATE(7084), 1, - sym_end_if_statement, + [149298] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13562), 1, + anon_sym_RBRACK, + STATE(6544), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150351] = 4, - ACTIONS(13714), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13716), 1, - aux_sym_end_submodule_statement_token1, - STATE(853), 1, - sym_end_submodule_statement, + [149312] = 3, + STATE(683), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150365] = 4, - ACTIONS(9444), 1, + ACTIONS(13564), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [149324] = 4, + ACTIONS(13566), 1, anon_sym_COMMA, - ACTIONS(9446), 1, + ACTIONS(13568), 1, anon_sym_RBRACK, - STATE(6632), 1, + STATE(6555), 1, aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150379] = 3, - STATE(1392), 1, + [149338] = 3, + STATE(1527), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13237), 2, + ACTIONS(13570), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150391] = 3, - STATE(1169), 1, + [149350] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13572), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [149360] = 3, + STATE(1177), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13718), 2, + ACTIONS(13574), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150403] = 4, - ACTIONS(9196), 1, + [149372] = 4, + ACTIONS(9190), 1, aux_sym_end_program_statement_token1, - ACTIONS(9198), 1, + ACTIONS(9192), 1, aux_sym_end_type_statement_token1, - STATE(1170), 1, + STATE(1178), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150417] = 3, - STATE(1171), 1, + [149386] = 3, + STATE(1179), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13720), 2, + ACTIONS(13576), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150429] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13722), 3, - sym__external_end_of_statement, - anon_sym_LPAREN2, - anon_sym_SEMI, - [150439] = 4, - ACTIONS(13182), 1, + [149398] = 4, + ACTIONS(9456), 1, anon_sym_COMMA, - ACTIONS(13724), 1, + ACTIONS(13578), 1, anon_sym_RPAREN, - STATE(6373), 1, - aux_sym__io_arguments_repeat1, + STATE(6607), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150453] = 4, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(9450), 1, - anon_sym_RPAREN, - STATE(6633), 1, - aux_sym__argument_list_repeat1, + [149412] = 3, + STATE(2304), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150467] = 3, - STATE(1172), 1, + ACTIONS(13580), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [149424] = 3, + STATE(1169), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13726), 2, + ACTIONS(13582), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150479] = 4, - ACTIONS(9491), 1, + [149436] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13126), 3, + sym__external_end_of_statement, anon_sym_COMMA, - ACTIONS(13728), 1, - anon_sym_GT_GT_GT, - STATE(6078), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + anon_sym_SEMI, + [149446] = 3, + STATE(582), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150493] = 4, - ACTIONS(13178), 1, + ACTIONS(13584), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [149458] = 4, + ACTIONS(13483), 1, anon_sym_COMMA, - ACTIONS(13730), 1, + ACTIONS(13586), 1, anon_sym_RPAREN, - STATE(6256), 1, - aux_sym_preproc_params_repeat1, + STATE(6979), 1, + aux_sym_implicit_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150507] = 3, - STATE(1532), 1, + [149472] = 3, + STATE(2786), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13732), 2, + ACTIONS(13588), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150519] = 3, - STATE(576), 1, + [149484] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13044), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [149494] = 3, + STATE(1533), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7978), 2, + ACTIONS(13590), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150531] = 4, - ACTIONS(13315), 1, + [149506] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(13734), 1, + ACTIONS(13592), 1, anon_sym_RPAREN, - STATE(6553), 1, - aux_sym_keyword_statement_repeat1, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150545] = 4, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - STATE(865), 1, - sym_end_program_statement, + [149520] = 4, + ACTIONS(10618), 1, + anon_sym_COMMA, + ACTIONS(13594), 1, + anon_sym_RPAREN, + STATE(6845), 1, + aux_sym_preproc_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150559] = 3, - STATE(672), 1, - sym__end_of_statement, + [149534] = 4, + ACTIONS(9202), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9204), 1, + aux_sym_end_type_statement_token1, + STATE(2852), 1, + sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7460), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [150571] = 4, - ACTIONS(13736), 1, + [149548] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(13739), 1, + ACTIONS(13596), 1, anon_sym_RPAREN, - STATE(6553), 1, - aux_sym_keyword_statement_repeat1, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150585] = 3, - STATE(1532), 1, - sym__end_of_statement, + [149562] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(13598), 1, + anon_sym_RPAREN, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13732), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [150597] = 3, - STATE(1181), 1, - sym__end_of_statement, + [149576] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(13600), 1, + anon_sym_RPAREN, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13741), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [150609] = 3, - STATE(1182), 1, + [149590] = 3, + STATE(1170), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13743), 2, + ACTIONS(13602), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150621] = 2, + [149602] = 3, + STATE(1173), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13745), 3, + ACTIONS(13604), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [150631] = 4, - ACTIONS(13747), 1, - aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, - aux_sym_format_statement_token1, - STATE(6566), 1, - sym_format_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [150645] = 4, - ACTIONS(13160), 1, + [149614] = 4, + ACTIONS(13606), 1, aux_sym_end_program_statement_token1, - ACTIONS(13162), 1, + ACTIONS(13608), 1, aux_sym_end_subroutine_statement_token1, - STATE(5012), 1, + STATE(4819), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150659] = 4, - ACTIONS(10227), 1, - anon_sym_COMMA, - ACTIONS(13751), 1, - anon_sym_SLASH, - STATE(6586), 1, - aux_sym_data_value_repeat1, + [149628] = 4, + ACTIONS(13457), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13459), 1, + aux_sym_end_function_statement_token1, + STATE(1077), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150673] = 3, - STATE(2297), 1, + [149642] = 3, + STATE(1015), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13753), 2, + ACTIONS(13610), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150685] = 4, - ACTIONS(13755), 1, + [149654] = 4, + ACTIONS(13612), 1, aux_sym_end_program_statement_token1, - ACTIONS(13757), 1, + ACTIONS(13614), 1, aux_sym_end_function_statement_token1, - STATE(5014), 1, + STATE(4823), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150699] = 4, - ACTIONS(10227), 1, + [149668] = 4, + ACTIONS(13560), 1, anon_sym_COMMA, - ACTIONS(13759), 1, - anon_sym_SLASH, - STATE(6586), 1, - aux_sym_data_value_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [150713] = 3, - STATE(2291), 1, - sym__end_of_statement, + ACTIONS(13616), 1, + anon_sym_RBRACK, + STATE(6521), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13761), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [150725] = 3, - STATE(5021), 1, + [149682] = 3, + STATE(4849), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13763), 2, + ACTIONS(13618), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150737] = 3, - STATE(2816), 1, + [149694] = 3, + STATE(712), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13765), 2, + ACTIONS(13620), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150749] = 4, - ACTIONS(13160), 1, + [149706] = 4, + ACTIONS(13606), 1, aux_sym_end_program_statement_token1, - ACTIONS(13162), 1, + ACTIONS(13608), 1, aux_sym_end_subroutine_statement_token1, - STATE(5022), 1, + STATE(4851), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150763] = 2, + [149720] = 4, + ACTIONS(13622), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13624), 1, + aux_sym_end_subroutine_statement_token1, + STATE(1016), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13767), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - [150773] = 3, - STATE(5024), 1, + [149734] = 3, + STATE(4882), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13769), 2, + ACTIONS(13626), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150785] = 4, - ACTIONS(13755), 1, + [149746] = 4, + ACTIONS(13612), 1, aux_sym_end_program_statement_token1, - ACTIONS(13757), 1, + ACTIONS(13614), 1, aux_sym_end_function_statement_token1, - STATE(5025), 1, + STATE(4884), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150799] = 2, + [149760] = 3, + STATE(4490), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13771), 3, + ACTIONS(13628), 2, sym__external_end_of_statement, - anon_sym_LPAREN2, anon_sym_SEMI, - [150809] = 3, - STATE(5028), 1, + [149772] = 3, + STATE(4889), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13773), 2, + ACTIONS(13630), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150821] = 4, - ACTIONS(13394), 1, - anon_sym_COMMA, - ACTIONS(13775), 1, - anon_sym_RPAREN, - STATE(6433), 1, - aux_sym_procedure_attributes_repeat1, + [149784] = 4, + ACTIONS(13606), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13608), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4890), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150835] = 3, - STATE(5032), 1, + [149798] = 3, + STATE(4891), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13777), 2, + ACTIONS(13632), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150847] = 4, - ACTIONS(13755), 1, + [149810] = 4, + ACTIONS(13612), 1, aux_sym_end_program_statement_token1, - ACTIONS(13757), 1, + ACTIONS(13614), 1, aux_sym_end_function_statement_token1, - STATE(5034), 1, + STATE(4892), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150861] = 3, - STATE(986), 1, + [149824] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9519), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [149834] = 3, + STATE(1021), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13779), 2, + ACTIONS(13634), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150873] = 3, - STATE(2736), 1, + [149846] = 4, + ACTIONS(13636), 1, + anon_sym_COMMA, + ACTIONS(13639), 1, + anon_sym_COLON_COLON, + STATE(6494), 1, + aux_sym_derived_type_statement_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [149860] = 3, + STATE(2765), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13781), 2, + ACTIONS(13641), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150885] = 3, - STATE(2354), 1, + [149872] = 4, + ACTIONS(5468), 1, + sym__string_literal, + ACTIONS(5470), 1, + sym__string_literal_kind, + STATE(7431), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [149886] = 3, + STATE(2368), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13783), 2, + ACTIONS(13643), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150897] = 4, - ACTIONS(13222), 1, + [149898] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(13785), 1, + ACTIONS(13645), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [150911] = 3, - STATE(2864), 1, + [149912] = 3, + STATE(1666), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13787), 2, + ACTIONS(13647), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150923] = 4, - ACTIONS(9200), 1, + [149924] = 3, + STATE(1135), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13649), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [149936] = 4, + ACTIONS(13651), 1, aux_sym_end_program_statement_token1, - ACTIONS(9202), 1, - aux_sym_end_type_statement_token1, - STATE(2865), 1, - sym_end_type_statement, + ACTIONS(13653), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4897), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150937] = 3, - STATE(866), 1, + [149950] = 3, + STATE(5118), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13789), 2, + ACTIONS(13655), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150949] = 3, - ACTIONS(4323), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [149962] = 4, + ACTIONS(13457), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13459), 1, + aux_sym_end_function_statement_token1, + STATE(1022), 1, + sym_end_function_statement, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4325), 2, - aux_sym_preproc_def_token2, - anon_sym_LPAREN, - [150961] = 3, - STATE(2866), 1, + [149976] = 4, + ACTIONS(9226), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9228), 1, + aux_sym_end_type_statement_token1, + STATE(2715), 1, + sym_end_type_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [149990] = 3, + STATE(2061), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13791), 2, + ACTIONS(13657), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150973] = 3, - STATE(1020), 1, + [150002] = 3, + STATE(2759), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13793), 2, + ACTIONS(13659), 2, sym__external_end_of_statement, anon_sym_SEMI, - [150985] = 4, - ACTIONS(13795), 1, - anon_sym_COMMA, - ACTIONS(13798), 1, - anon_sym_SLASH, - STATE(6586), 1, - aux_sym_data_value_repeat1, + [150014] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [150999] = 4, - ACTIONS(9204), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9206), 1, - aux_sym_end_type_statement_token1, - STATE(2766), 1, - sym_end_type_statement, + ACTIONS(8663), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [150024] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151013] = 3, - STATE(2382), 1, + ACTIONS(13661), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [150034] = 3, + STATE(2803), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13800), 2, + ACTIONS(13663), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151025] = 3, - STATE(2745), 1, + [150046] = 4, + ACTIONS(13665), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13667), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4945), 1, + sym_end_module_procedure_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [150060] = 3, + STATE(1513), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13802), 2, + ACTIONS(13419), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151037] = 3, - STATE(608), 1, + [150072] = 3, + STATE(2740), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13804), 2, + ACTIONS(13669), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151049] = 4, - ACTIONS(13333), 1, + [150084] = 4, + ACTIONS(9226), 1, aux_sym_end_program_statement_token1, - ACTIONS(13335), 1, - aux_sym_end_function_statement_token1, - STATE(1028), 1, - sym_end_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [151063] = 4, - ACTIONS(13806), 1, - anon_sym_COMMA, - ACTIONS(13809), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym_coarray_index_repeat2, + ACTIONS(9228), 1, + aux_sym_end_type_statement_token1, + STATE(2769), 1, + sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151077] = 3, - STATE(610), 1, + [150098] = 3, + STATE(2773), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13811), 2, + ACTIONS(13671), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151089] = 3, - STATE(1516), 1, + [150110] = 3, + STATE(1399), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13599), 2, + ACTIONS(13174), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151101] = 4, - ACTIONS(13813), 1, + [150122] = 4, + ACTIONS(13498), 1, anon_sym_COMMA, - ACTIONS(13815), 1, - anon_sym_RPAREN, - STATE(6712), 1, - aux_sym_concurrent_header_repeat1, + ACTIONS(13673), 1, + anon_sym_COLON_COLON, + STATE(6660), 1, + aux_sym_derived_type_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151115] = 3, - STATE(2739), 1, + [150136] = 3, + STATE(2708), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13817), 2, + ACTIONS(13675), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151127] = 4, - ACTIONS(9204), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9206), 1, - aux_sym_end_type_statement_token1, - STATE(2712), 1, - sym_end_type_statement, + [150148] = 3, + STATE(702), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151141] = 3, - STATE(2715), 1, + ACTIONS(13677), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [150160] = 3, + STATE(5403), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13819), 2, + ACTIONS(13679), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151153] = 4, - ACTIONS(13677), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13679), 1, - aux_sym_end_module_statement_token1, - STATE(968), 1, - sym_end_module_statement, + [150172] = 4, + ACTIONS(7402), 1, + sym__integer_literal, + STATE(3929), 1, + sym_statement_label, + STATE(6612), 1, + sym_statement_label_reference, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151167] = 3, - STATE(848), 1, - sym__end_of_statement, + [150186] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13681), 1, + anon_sym_RBRACK, + STATE(6988), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13821), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [151179] = 3, - STATE(867), 1, + [150200] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13681), 1, + anon_sym_RBRACK, + STATE(6565), 1, + aux_sym_coarray_index_repeat2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [150214] = 3, + STATE(715), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13823), 2, + ACTIONS(13683), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151191] = 3, - STATE(2729), 1, + [150226] = 3, + STATE(718), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13825), 2, + ACTIONS(13685), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151203] = 2, + [150238] = 3, + STATE(122), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13767), 3, + ACTIONS(13687), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [151213] = 3, - STATE(622), 1, + [150250] = 3, + STATE(5177), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13827), 2, + ACTIONS(13689), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151225] = 3, - STATE(973), 1, + [150262] = 3, + STATE(1026), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13829), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [151237] = 4, - ACTIONS(7398), 1, - sym__integer_literal, - STATE(3920), 1, - sym_statement_label, - STATE(7800), 1, - sym_statement_label_reference, + ACTIONS(13691), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [150274] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13693), 1, + anon_sym_RBRACK, + STATE(6993), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151251] = 4, - ACTIONS(13504), 1, + [150288] = 4, + ACTIONS(13695), 1, anon_sym_COMMA, - ACTIONS(13831), 1, + ACTIONS(13697), 1, anon_sym_RPAREN, - STATE(6752), 1, - aux_sym_parameters_repeat1, + STATE(6628), 1, + aux_sym_keyword_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151265] = 3, - STATE(2723), 1, + [150302] = 3, + STATE(2767), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13833), 2, + ACTIONS(13699), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151277] = 3, - STATE(2735), 1, + [150314] = 3, + STATE(2712), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13835), 2, + ACTIONS(13701), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151289] = 4, - ACTIONS(13837), 1, + [150326] = 4, + ACTIONS(13703), 1, + anon_sym_COMMA, + ACTIONS(13705), 1, + anon_sym_RBRACK, + STATE(6555), 1, + aux_sym_coarray_index_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [150340] = 4, + ACTIONS(13707), 1, aux_sym_end_program_statement_token1, - ACTIONS(13839), 1, + ACTIONS(13709), 1, aux_sym_end_subroutine_statement_token1, - STATE(4766), 1, + STATE(4737), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151303] = 3, - STATE(123), 1, + [150354] = 3, + STATE(4930), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13841), 2, + ACTIONS(13711), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151315] = 4, - ACTIONS(13843), 1, - anon_sym_COMMA, - ACTIONS(13845), 1, - anon_sym_RPAREN, - STATE(6744), 1, - aux_sym_concurrent_header_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [151329] = 4, - ACTIONS(13847), 1, + [150366] = 4, + ACTIONS(13713), 1, aux_sym_end_program_statement_token1, - ACTIONS(13849), 1, + ACTIONS(13715), 1, aux_sym_end_function_statement_token1, - STATE(4686), 1, + STATE(4711), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151343] = 4, - ACTIONS(13257), 1, - anon_sym_COMMA, - ACTIONS(13851), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym_coarray_index_repeat2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [151357] = 3, - STATE(1445), 1, - sym__end_of_statement, + [150380] = 3, + ACTIONS(6698), 1, + anon_sym_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13853), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [151369] = 3, - STATE(4703), 1, + ACTIONS(6694), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [150392] = 3, + STATE(4675), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13855), 2, + ACTIONS(13717), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151381] = 4, - ACTIONS(13837), 1, + [150404] = 4, + ACTIONS(13707), 1, aux_sym_end_program_statement_token1, - ACTIONS(13839), 1, + ACTIONS(13709), 1, aux_sym_end_subroutine_statement_token1, - STATE(4705), 1, + STATE(4712), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151395] = 3, - STATE(138), 1, + [150418] = 3, + STATE(5399), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13857), 2, + ACTIONS(13719), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151407] = 3, - STATE(4707), 1, + [150430] = 4, + ACTIONS(13483), 1, + anon_sym_COMMA, + ACTIONS(13721), 1, + anon_sym_RPAREN, + STATE(6842), 1, + aux_sym_implicit_statement_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [150444] = 3, + STATE(4643), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13859), 2, + ACTIONS(13723), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151419] = 2, + [150456] = 4, + ACTIONS(13651), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13653), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4933), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5404), 3, - anon_sym_RPAREN, - anon_sym_SLASH, - anon_sym_COLON, - [151429] = 4, - ACTIONS(13847), 1, + [150470] = 4, + ACTIONS(13713), 1, aux_sym_end_program_statement_token1, - ACTIONS(13849), 1, + ACTIONS(13715), 1, aux_sym_end_function_statement_token1, - STATE(4711), 1, + STATE(4710), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151443] = 3, - STATE(4741), 1, + [150484] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13725), 1, + anon_sym_RBRACK, + STATE(6988), 1, + aux_sym_coarray_index_repeat2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [150498] = 3, + STATE(4703), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13861), 2, + ACTIONS(13727), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151455] = 4, - ACTIONS(13837), 1, + [150510] = 4, + ACTIONS(13707), 1, aux_sym_end_program_statement_token1, - ACTIONS(13839), 1, + ACTIONS(13709), 1, aux_sym_end_subroutine_statement_token1, - STATE(4755), 1, + STATE(4739), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151469] = 3, - STATE(4756), 1, + [150524] = 3, + STATE(4751), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13863), 2, + ACTIONS(13729), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151481] = 4, - ACTIONS(13847), 1, + [150536] = 4, + ACTIONS(13713), 1, aux_sym_end_program_statement_token1, - ACTIONS(13849), 1, + ACTIONS(13715), 1, aux_sym_end_function_statement_token1, - STATE(4760), 1, + STATE(4657), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151495] = 3, - STATE(1506), 1, + [150550] = 4, + ACTIONS(11711), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + STATE(7312), 1, + sym_end_if_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [150564] = 3, + STATE(1502), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13731), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [150576] = 3, + STATE(746), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13347), 2, + ACTIONS(13733), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151507] = 3, - STATE(2481), 1, + [150588] = 3, + STATE(2412), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13865), 2, + ACTIONS(13735), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151519] = 4, - ACTIONS(13222), 1, + [150600] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(13867), 1, + ACTIONS(13737), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [151533] = 2, + [150614] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13725), 1, + anon_sym_RBRACK, + STATE(6684), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12870), 3, - sym__external_end_of_statement, + [150628] = 4, + ACTIONS(9598), 1, + anon_sym_RBRACK, + ACTIONS(13739), 1, anon_sym_COMMA, - anon_sym_SEMI, - [151543] = 3, - STATE(1407), 1, - sym__end_of_statement, + STATE(6555), 1, + aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13869), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [151555] = 3, - STATE(589), 1, + [150642] = 3, + STATE(613), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13871), 2, + ACTIONS(13742), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151567] = 4, - ACTIONS(13873), 1, - anon_sym_COMMA, - ACTIONS(13875), 1, - anon_sym_RBRACK, - STATE(6495), 1, - aux_sym_coarray_index_repeat1, + [150654] = 4, + ACTIONS(13744), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13746), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4914), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151581] = 4, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(13877), 1, - anon_sym_RPAREN, - STATE(6508), 1, - aux_sym__argument_list_repeat1, + [150668] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151595] = 3, - STATE(4910), 1, + ACTIONS(13748), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [150678] = 3, + STATE(590), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13879), 2, + ACTIONS(13750), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151607] = 4, - ACTIONS(9208), 1, + [150690] = 3, + ACTIONS(6654), 1, + anon_sym_COLON, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(6652), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [150702] = 4, + ACTIONS(9194), 1, aux_sym_end_program_statement_token1, - ACTIONS(9210), 1, + ACTIONS(9196), 1, aux_sym_end_type_statement_token1, - STATE(1513), 1, + STATE(1512), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151621] = 3, - STATE(2303), 1, + [150716] = 3, + STATE(662), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13881), 2, + ACTIONS(7568), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151633] = 3, - STATE(2532), 1, + [150728] = 3, + STATE(2431), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13883), 2, + ACTIONS(13752), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151645] = 3, - STATE(1518), 1, + [150740] = 3, + STATE(1515), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13885), 2, + ACTIONS(13754), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151657] = 3, - STATE(4516), 1, - sym__end_of_statement, + [150752] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13756), 1, + anon_sym_RBRACK, + STATE(6988), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13887), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [151669] = 3, - STATE(2891), 1, + [150766] = 3, + STATE(4405), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13889), 2, + ACTIONS(13758), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151681] = 4, - ACTIONS(13227), 1, + [150778] = 4, + ACTIONS(13760), 1, aux_sym_end_program_statement_token1, - ACTIONS(13229), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4517), 1, - sym_end_subroutine_statement, + ACTIONS(13762), 1, + aux_sym_end_module_statement_token1, + STATE(1058), 1, + sym_end_module_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151695] = 4, - ACTIONS(10672), 1, - anon_sym_COMMA, - ACTIONS(13891), 1, - anon_sym_RPAREN, - STATE(6363), 1, - aux_sym_preproc_argument_list_repeat1, + [150792] = 4, + ACTIONS(13764), 1, + aux_sym_implicit_statement_token3, + ACTIONS(13766), 1, + aux_sym_select_case_statement_token2, + ACTIONS(13768), 1, + aux_sym_select_rank_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151709] = 3, - STATE(1569), 1, + [150806] = 3, + STATE(1452), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13708), 2, + ACTIONS(13554), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151721] = 3, - STATE(1526), 1, + [150818] = 3, + STATE(1521), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13893), 2, + ACTIONS(13770), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151733] = 4, - ACTIONS(9208), 1, + [150830] = 4, + ACTIONS(9194), 1, aux_sym_end_program_statement_token1, - ACTIONS(9210), 1, + ACTIONS(9196), 1, aux_sym_end_type_statement_token1, - STATE(1528), 1, + STATE(1522), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151747] = 3, - STATE(1529), 1, + [150844] = 3, + STATE(1526), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13895), 2, + ACTIONS(13772), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151759] = 3, - STATE(657), 1, + [150856] = 4, + ACTIONS(13774), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13776), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4389), 1, + sym_end_subroutine_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [150870] = 3, + ACTIONS(9560), 1, + anon_sym_COLON, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9558), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [150882] = 3, + STATE(1531), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13897), 2, + ACTIONS(13778), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151771] = 4, - ACTIONS(13526), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13528), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4911), 1, - sym_end_module_procedure_statement, + [150894] = 4, + ACTIONS(9456), 1, + anon_sym_COMMA, + ACTIONS(13780), 1, + anon_sym_RPAREN, + STATE(6607), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151785] = 3, - STATE(1535), 1, + [150908] = 3, + STATE(677), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13899), 2, + ACTIONS(13782), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151797] = 3, - STATE(744), 1, + [150920] = 3, + STATE(1038), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13901), 2, + ACTIONS(8056), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151809] = 3, - STATE(1053), 1, + [150932] = 3, + ACTIONS(4255), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4257), 2, + aux_sym_preproc_def_token2, + anon_sym_LPAREN, + [150944] = 3, + STATE(4962), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8028), 2, + ACTIONS(13784), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151821] = 4, - ACTIONS(13279), 1, + [150956] = 4, + ACTIONS(13651), 1, aux_sym_end_program_statement_token1, - ACTIONS(13281), 1, - aux_sym_end_submodule_statement_token1, - STATE(1054), 1, - sym_end_submodule_statement, + ACTIONS(13653), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4963), 1, + sym_end_module_procedure_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [150970] = 3, + STATE(5197), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13786), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [150982] = 3, + STATE(726), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151835] = 3, - STATE(649), 1, + ACTIONS(13788), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [150994] = 3, + STATE(1559), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8103), 2, + ACTIONS(13790), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151847] = 3, - STATE(4520), 1, + [151006] = 3, + STATE(1564), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13903), 2, + ACTIONS(13792), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151859] = 4, - ACTIONS(13905), 1, + [151018] = 4, + ACTIONS(13794), 1, aux_sym_end_program_statement_token1, - ACTIONS(13907), 1, - aux_sym_end_module_statement_token1, - STATE(1058), 1, - sym_end_module_statement, + ACTIONS(13796), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4871), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151873] = 4, - ACTIONS(13182), 1, + [151032] = 4, + ACTIONS(13518), 1, anon_sym_COMMA, - ACTIONS(13909), 1, + ACTIONS(13798), 1, anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + STATE(6617), 1, + aux_sym_parameter_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151887] = 4, - ACTIONS(13911), 1, + [151046] = 4, + ACTIONS(13800), 1, aux_sym_end_program_statement_token1, - ACTIONS(13913), 1, - aux_sym_end_module_statement_token1, - STATE(849), 1, - sym_end_module_statement, + ACTIONS(13802), 1, + aux_sym_end_function_statement_token1, + STATE(4875), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151901] = 2, + [151060] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13915), 3, + ACTIONS(13150), 3, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_SEMI, - [151911] = 3, - STATE(1553), 1, - sym__end_of_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13917), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [151923] = 3, - STATE(1555), 1, + [151070] = 3, + STATE(4908), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13919), 2, + ACTIONS(13804), 2, sym__external_end_of_statement, anon_sym_SEMI, - [151935] = 4, - ACTIONS(13257), 1, + [151082] = 4, + ACTIONS(13433), 1, anon_sym_COMMA, - ACTIONS(13921), 1, - anon_sym_RBRACK, - STATE(6709), 1, - aux_sym_coarray_index_repeat2, + ACTIONS(13806), 1, + anon_sym_RPAREN, + STATE(6385), 1, + aux_sym_procedure_attributes_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151949] = 4, - ACTIONS(13923), 1, + [151096] = 4, + ACTIONS(13794), 1, aux_sym_end_program_statement_token1, - ACTIONS(13925), 1, + ACTIONS(13796), 1, aux_sym_end_subroutine_statement_token1, - STATE(4906), 1, + STATE(4910), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [151963] = 4, - ACTIONS(13927), 1, - anon_sym_COMMA, - ACTIONS(13929), 1, - anon_sym_RPAREN, - STATE(6665), 1, - aux_sym__forall_control_expression_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [151977] = 4, - ACTIONS(13931), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13933), 1, - aux_sym_end_function_statement_token1, - STATE(4960), 1, - sym_end_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [151991] = 4, - ACTIONS(13935), 1, - anon_sym_COMMA, - ACTIONS(13938), 1, - anon_sym_RPAREN, - STATE(6665), 1, - aux_sym__forall_control_expression_repeat1, + [151110] = 3, + STATE(729), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152005] = 3, - STATE(4965), 1, + ACTIONS(13808), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [151122] = 3, + STATE(731), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13940), 2, + ACTIONS(13810), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152017] = 4, - ACTIONS(13923), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13925), 1, - aux_sym_end_subroutine_statement_token1, - STATE(4966), 1, - sym_end_subroutine_statement, + [151134] = 3, + STATE(4912), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152031] = 3, - STATE(4995), 1, + ACTIONS(13812), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [151146] = 3, + STATE(734), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13942), 2, + ACTIONS(13814), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152043] = 4, - ACTIONS(13931), 1, + [151158] = 4, + ACTIONS(13800), 1, aux_sym_end_program_statement_token1, - ACTIONS(13933), 1, + ACTIONS(13802), 1, aux_sym_end_function_statement_token1, - STATE(5009), 1, + STATE(4916), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152057] = 3, - STATE(5043), 1, + [151172] = 3, + STATE(4939), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13944), 2, + ACTIONS(13816), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152069] = 4, - ACTIONS(13923), 1, + [151184] = 4, + ACTIONS(13794), 1, aux_sym_end_program_statement_token1, - ACTIONS(13925), 1, + ACTIONS(13796), 1, aux_sym_end_subroutine_statement_token1, - STATE(5063), 1, + STATE(4941), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152083] = 3, - STATE(4783), 1, + [151198] = 3, + STATE(4942), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13946), 2, + ACTIONS(13818), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152095] = 4, - ACTIONS(13931), 1, + [151210] = 4, + ACTIONS(13800), 1, aux_sym_end_program_statement_token1, - ACTIONS(13933), 1, + ACTIONS(13802), 1, aux_sym_end_function_statement_token1, - STATE(4784), 1, + STATE(4943), 1, sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152109] = 3, - STATE(586), 1, + [151224] = 3, + STATE(560), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13948), 2, + ACTIONS(13820), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152121] = 3, - STATE(4494), 1, + [151236] = 3, + STATE(568), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13950), 2, + ACTIONS(13822), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152133] = 3, - STATE(751), 1, - sym__end_of_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(13952), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [152145] = 3, - STATE(3072), 1, + [151248] = 3, + STATE(3071), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13954), 2, + ACTIONS(13824), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152157] = 3, - STATE(2534), 1, + [151260] = 3, + STATE(2573), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13956), 2, + ACTIONS(13826), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152169] = 4, - ACTIONS(13222), 1, + [151272] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(13958), 1, + ACTIONS(13828), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [152183] = 2, + [151286] = 4, + ACTIONS(9624), 1, + anon_sym_RPAREN, + ACTIONS(13830), 1, + anon_sym_COMMA, + STATE(6607), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13044), 3, - sym__external_end_of_statement, + [151300] = 4, + ACTIONS(13433), 1, anon_sym_COMMA, - anon_sym_SEMI, - [152193] = 4, - ACTIONS(13483), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13485), 1, - aux_sym_end_function_statement_token1, - STATE(4521), 1, - sym_end_function_statement, + ACTIONS(13833), 1, + anon_sym_RPAREN, + STATE(6385), 1, + aux_sym_procedure_attributes_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [151314] = 3, + ACTIONS(9644), 1, + anon_sym_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152207] = 3, - STATE(134), 1, + ACTIONS(9642), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [151326] = 3, + STATE(737), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13960), 2, + ACTIONS(13835), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152219] = 4, - ACTIONS(13962), 1, - sym_preproc_comment, - ACTIONS(13964), 1, - aux_sym_select_case_statement_token2, - STATE(5757), 1, - sym_case_statement, + [151338] = 4, + ACTIONS(13837), 1, + aux_sym_included_items_token1, + ACTIONS(13839), 1, + aux_sym_implicit_statement_token2, + ACTIONS(13841), 1, + aux_sym__import_names_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152233] = 4, - ACTIONS(10239), 1, - anon_sym_RPAREN, - ACTIONS(13966), 1, + [151352] = 4, + ACTIONS(13695), 1, anon_sym_COMMA, - STATE(6684), 1, - aux_sym_equivalence_set_repeat1, + ACTIONS(13843), 1, + anon_sym_RPAREN, + STATE(6639), 1, + aux_sym_keyword_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152247] = 4, - ACTIONS(9212), 1, + [151366] = 4, + ACTIONS(9210), 1, aux_sym_end_program_statement_token1, - ACTIONS(9214), 1, + ACTIONS(9212), 1, aux_sym_end_type_statement_token1, - STATE(3076), 1, + STATE(3093), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152261] = 4, - ACTIONS(13969), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13971), 1, - aux_sym_end_submodule_statement_token1, - STATE(1060), 1, - sym_end_submodule_statement, + [151380] = 3, + STATE(2582), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152275] = 3, - STATE(2549), 1, + ACTIONS(13845), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [151392] = 3, + STATE(3097), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13973), 2, + ACTIONS(13847), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152287] = 3, - STATE(3078), 1, + [151404] = 3, + STATE(742), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13975), 2, + ACTIONS(13849), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152299] = 4, - ACTIONS(13977), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13979), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(5035), 1, - sym_end_module_procedure_statement, + [151416] = 4, + ACTIONS(13851), 1, + anon_sym_COMMA, + ACTIONS(13854), 1, + anon_sym_RPAREN, + STATE(6617), 1, + aux_sym_parameter_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152313] = 4, - ACTIONS(13981), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13983), 1, - aux_sym_end_program_statement_token2, - STATE(1012), 1, - sym_end_program_statement, + [151430] = 3, + STATE(2856), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152327] = 3, - STATE(4179), 1, + ACTIONS(13856), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [151442] = 3, + STATE(2865), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13985), 2, + ACTIONS(13858), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152339] = 2, + [151454] = 4, + ACTIONS(7402), 1, + sym__integer_literal, + STATE(3929), 1, + sym_statement_label, + STATE(7393), 1, + sym_statement_label_reference, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13987), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - [152349] = 3, - STATE(3090), 1, + [151468] = 3, + STATE(3098), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13989), 2, + ACTIONS(13860), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152361] = 4, - ACTIONS(9212), 1, + [151480] = 4, + ACTIONS(9210), 1, aux_sym_end_program_statement_token1, - ACTIONS(9214), 1, + ACTIONS(9212), 1, aux_sym_end_type_statement_token1, - STATE(3091), 1, + STATE(3083), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152375] = 3, - STATE(3092), 1, + [151494] = 3, + STATE(3089), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13991), 2, + ACTIONS(13862), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152387] = 2, + [151506] = 4, + ACTIONS(13864), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13866), 1, + aux_sym_end_subroutine_statement_token1, + STATE(1098), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13993), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - [152397] = 3, - STATE(5404), 1, + [151520] = 3, + STATE(5405), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13995), 2, + ACTIONS(13868), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152409] = 3, - STATE(3095), 1, + [151532] = 3, + STATE(3081), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13997), 2, + ACTIONS(13870), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152421] = 4, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7181), 1, - sym_end_select_statement, + [151544] = 4, + ACTIONS(13872), 1, + aux_sym_implicit_statement_token3, + ACTIONS(13874), 1, + aux_sym_format_statement_token1, + STATE(7058), 1, + sym_format_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152435] = 4, - ACTIONS(13999), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14001), 1, - aux_sym_end_subroutine_statement_token1, - STATE(884), 1, - sym_end_subroutine_statement, + [151558] = 4, + ACTIONS(13695), 1, + anon_sym_COMMA, + ACTIONS(13843), 1, + anon_sym_RPAREN, + STATE(6661), 1, + aux_sym_keyword_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152449] = 3, - STATE(5155), 1, - sym__end_of_statement, + [151572] = 4, + ACTIONS(13876), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13878), 1, + aux_sym_end_function_statement_token1, + STATE(952), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14003), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [152461] = 3, - ACTIONS(14005), 1, - anon_sym_COMMA, + [151586] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14007), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [152473] = 4, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, + ACTIONS(5408), 3, anon_sym_RPAREN, - STATE(6954), 1, - aux_sym_allocate_statement_repeat1, + anon_sym_SLASH, + anon_sym_COLON, + [151596] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152487] = 4, - ACTIONS(14009), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14011), 1, - aux_sym_end_function_statement_token1, - STATE(886), 1, - sym_end_function_statement, + ACTIONS(13880), 3, + sym__external_end_of_statement, + anon_sym_LPAREN2, + anon_sym_SEMI, + [151606] = 4, + ACTIONS(9505), 1, + anon_sym_COMMA, + ACTIONS(13882), 1, + anon_sym_GT_GT_GT, + STATE(6093), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152501] = 3, - STATE(702), 1, + [151620] = 3, + STATE(956), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14013), 2, + ACTIONS(13884), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152513] = 3, - STATE(3094), 1, + [151632] = 4, + ACTIONS(13864), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13866), 1, + aux_sym_end_subroutine_statement_token1, + STATE(957), 1, + sym_end_subroutine_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [151646] = 3, + STATE(5406), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14015), 2, + ACTIONS(13886), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152525] = 3, - STATE(3080), 1, + [151658] = 3, + STATE(3065), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14017), 2, + ACTIONS(13888), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152537] = 3, - STATE(1374), 1, + [151670] = 3, + STATE(3095), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14019), 2, + ACTIONS(13890), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152549] = 4, - ACTIONS(13257), 1, - anon_sym_COMMA, - ACTIONS(14021), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym_coarray_index_repeat2, + [151682] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152563] = 4, - ACTIONS(13257), 1, + ACTIONS(12989), 3, + sym__external_end_of_statement, anon_sym_COMMA, - ACTIONS(14021), 1, - anon_sym_RBRACK, - STATE(6745), 1, - aux_sym_coarray_index_repeat2, + anon_sym_SEMI, + [151692] = 4, + ACTIONS(13695), 1, + anon_sym_COMMA, + ACTIONS(13892), 1, + anon_sym_RPAREN, + STATE(6661), 1, + aux_sym_keyword_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152577] = 3, - STATE(1559), 1, + [151706] = 3, + STATE(5145), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13457), 2, + ACTIONS(13894), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152589] = 4, - ACTIONS(14023), 1, - anon_sym_COMMA, - ACTIONS(14026), 1, - anon_sym_RPAREN, - STATE(6712), 1, - aux_sym_concurrent_header_repeat1, + [151718] = 3, + STATE(1575), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152603] = 3, - STATE(206), 1, + ACTIONS(13266), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [151730] = 3, + STATE(1760), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14028), 2, + ACTIONS(13896), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152615] = 4, - ACTIONS(13222), 1, + [151742] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14030), 1, + ACTIONS(13898), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [152629] = 3, - STATE(709), 1, + [151756] = 3, + STATE(959), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14032), 2, + ACTIONS(13900), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152641] = 3, - STATE(719), 1, + [151768] = 4, + ACTIONS(13876), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13878), 1, + aux_sym_end_function_statement_token1, + STATE(960), 1, + sym_end_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [151782] = 3, + STATE(4886), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14034), 2, + ACTIONS(13902), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152653] = 4, - ACTIONS(10227), 1, + [151794] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(14036), 1, - anon_sym_SLASH, - STATE(6586), 1, - aux_sym_data_value_repeat1, + ACTIONS(13904), 1, + anon_sym_RPAREN, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152667] = 3, - STATE(564), 1, - sym__end_of_statement, + [151808] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(13906), 1, + anon_sym_RPAREN, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14038), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [152679] = 4, - ACTIONS(9224), 1, + [151822] = 4, + ACTIONS(9214), 1, aux_sym_end_program_statement_token1, - ACTIONS(9226), 1, + ACTIONS(9216), 1, aux_sym_end_type_statement_token1, - STATE(1568), 1, + STATE(1450), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152693] = 3, - STATE(1755), 1, + [151836] = 3, + STATE(1761), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14040), 2, + ACTIONS(13908), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152705] = 3, - STATE(1570), 1, + [151848] = 3, + STATE(1454), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14042), 2, + ACTIONS(13910), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152717] = 3, - STATE(1485), 1, + [151860] = 3, + STATE(962), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14044), 2, + ACTIONS(13912), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152729] = 4, - ACTIONS(13546), 1, - anon_sym_COMMA, - ACTIONS(14046), 1, - anon_sym_RPAREN, - STATE(6446), 1, - aux_sym_implicit_statement_repeat3, + [151872] = 4, + ACTIONS(13864), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13866), 1, + aux_sym_end_subroutine_statement_token1, + STATE(963), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152743] = 3, - STATE(4385), 1, + [151886] = 3, + STATE(964), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7532), 2, + ACTIONS(13914), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152755] = 2, + [151898] = 4, + ACTIONS(13876), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13878), 1, + aux_sym_end_function_statement_token1, + STATE(965), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9511), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - [152765] = 4, - ACTIONS(13504), 1, + [151912] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(14048), 1, + ACTIONS(13916), 1, anon_sym_RPAREN, - STATE(7012), 1, - aux_sym_parameters_repeat1, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152779] = 3, - STATE(1577), 1, + [151926] = 3, + STATE(1534), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14050), 2, + ACTIONS(13918), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152791] = 4, - ACTIONS(9224), 1, + [151938] = 4, + ACTIONS(9214), 1, aux_sym_end_program_statement_token1, - ACTIONS(9226), 1, + ACTIONS(9216), 1, aux_sym_end_type_statement_token1, - STATE(1578), 1, + STATE(1544), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152805] = 3, - STATE(1580), 1, + [151952] = 3, + STATE(1570), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14052), 2, + ACTIONS(13920), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152817] = 4, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7149), 1, - sym_end_select_statement, + [151964] = 4, + ACTIONS(13498), 1, + anon_sym_COMMA, + ACTIONS(13922), 1, + anon_sym_COLON_COLON, + STATE(6494), 1, + aux_sym_derived_type_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152831] = 3, - STATE(5060), 1, + [151978] = 4, + ACTIONS(13924), 1, + anon_sym_COMMA, + ACTIONS(13927), 1, + anon_sym_RPAREN, + STATE(6661), 1, + aux_sym_keyword_statement_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [151992] = 4, + ACTIONS(13929), 1, + sym__string_literal, + ACTIONS(13931), 1, + sym__string_literal_kind, + STATE(4428), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152006] = 3, + STATE(1605), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14054), 2, + ACTIONS(13933), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152843] = 4, - ACTIONS(13977), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13979), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(5061), 1, - sym_end_module_procedure_statement, + [152018] = 3, + STATE(5129), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152857] = 3, - STATE(1584), 1, - sym__end_of_statement, + ACTIONS(13935), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152030] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14056), 2, + ACTIONS(13937), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [152869] = 4, - ACTIONS(11721), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - STATE(7206), 1, - sym_end_if_statement, + [152040] = 3, + STATE(3884), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152883] = 2, + ACTIONS(13939), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152052] = 3, + STATE(1132), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14058), 3, + ACTIONS(13941), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [152893] = 3, - STATE(1415), 1, + [152064] = 4, + ACTIONS(10220), 1, + anon_sym_COMMA, + ACTIONS(13943), 1, + anon_sym_SLASH, + STATE(7005), 1, + aux_sym_data_value_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152078] = 3, + STATE(2586), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14060), 2, + ACTIONS(13945), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152905] = 4, - ACTIONS(10411), 1, + [152090] = 4, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(13947), 1, + aux_sym_preproc_include_token2, + STATE(8376), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [152104] = 4, + ACTIONS(13665), 1, aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7401), 1, - sym_end_select_statement, + ACTIONS(13667), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4887), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152919] = 4, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7402), 1, - sym_end_select_statement, + [152118] = 4, + ACTIONS(10220), 1, + anon_sym_COMMA, + ACTIONS(13949), 1, + anon_sym_SLASH, + STATE(7005), 1, + aux_sym_data_value_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [152933] = 2, + [152132] = 3, + STATE(1347), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8671), 3, + ACTIONS(13951), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [152943] = 3, - STATE(1590), 1, + [152144] = 3, + STATE(1348), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14062), 2, + ACTIONS(13953), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152955] = 3, - STATE(1591), 1, + [152156] = 3, + STATE(1367), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14064), 2, + ACTIONS(13955), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152967] = 3, - STATE(2525), 1, + [152168] = 3, + STATE(2456), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14066), 2, + ACTIONS(13957), 2, sym__external_end_of_statement, anon_sym_SEMI, - [152979] = 4, - ACTIONS(13222), 1, + [152180] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14068), 1, + ACTIONS(13959), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [152993] = 4, - ACTIONS(14070), 1, - anon_sym_COMMA, - ACTIONS(14072), 1, - anon_sym_RPAREN, - STATE(6712), 1, - aux_sym_concurrent_header_repeat1, + [152194] = 3, + STATE(4864), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153007] = 4, - ACTIONS(13257), 1, - anon_sym_COMMA, - ACTIONS(14074), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym_coarray_index_repeat2, + ACTIONS(13961), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152206] = 3, + STATE(1468), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153021] = 3, - ACTIONS(14078), 1, - anon_sym_DASH, + ACTIONS(13254), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152218] = 4, + ACTIONS(13498), 1, + anon_sym_COMMA, + ACTIONS(13963), 1, + anon_sym_COLON_COLON, + STATE(6416), 1, + aux_sym_derived_type_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14076), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [153033] = 3, - STATE(2527), 1, + [152232] = 3, + STATE(2459), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14080), 2, + ACTIONS(13965), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153045] = 2, + [152244] = 4, + ACTIONS(9198), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9200), 1, + aux_sym_end_type_statement_token1, + STATE(1134), 1, + sym_end_type_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152258] = 3, + STATE(1053), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11011), 3, + ACTIONS(13967), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [153055] = 2, + [152270] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(13969), 1, + anon_sym_RBRACK, + STATE(6988), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11011), 3, + [152284] = 3, + STATE(2589), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13971), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [153065] = 4, - ACTIONS(9188), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9190), 1, - aux_sym_end_type_statement_token1, - STATE(1472), 1, - sym_end_type_statement, + [152296] = 3, + STATE(1384), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153079] = 3, - STATE(5151), 1, + ACTIONS(13431), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152308] = 3, + STATE(1136), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14082), 2, + ACTIONS(13973), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153091] = 4, - ACTIONS(13504), 1, + [152320] = 4, + ACTIONS(13975), 1, anon_sym_COMMA, - ACTIONS(14084), 1, + ACTIONS(13977), 1, anon_sym_RPAREN, - STATE(6781), 1, - aux_sym_parameters_repeat1, + STATE(7012), 1, + aux_sym_concurrent_header_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153105] = 4, - ACTIONS(13182), 1, + [152334] = 4, + ACTIONS(13308), 1, anon_sym_COMMA, - ACTIONS(14086), 1, + ACTIONS(13979), 1, anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + STATE(7014), 1, + aux_sym_parameters_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152348] = 4, + ACTIONS(13622), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13624), 1, + aux_sym_end_subroutine_statement_token1, + STATE(1028), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153119] = 3, - STATE(1065), 1, + [152362] = 3, + STATE(1370), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14088), 2, + ACTIONS(13981), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153131] = 4, - ACTIONS(13589), 1, - aux_sym_select_rank_statement_token1, - ACTIONS(14090), 1, - sym_preproc_comment, - STATE(5791), 1, - sym_rank_statement, + [152374] = 4, + ACTIONS(13983), 1, + sym__string_literal, + ACTIONS(13985), 1, + sym__string_literal_kind, + STATE(4946), 1, + sym_string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153145] = 3, - STATE(674), 1, + [152388] = 3, + STATE(4395), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14092), 2, + ACTIONS(13987), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153157] = 4, - ACTIONS(9406), 1, + [152400] = 4, + ACTIONS(9480), 1, anon_sym_COMMA, - ACTIONS(9428), 1, + ACTIONS(9482), 1, anon_sym_RBRACK, - STATE(6774), 1, + STATE(6712), 1, aux_sym_coarray_index_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153171] = 4, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7081), 1, - sym_end_select_statement, + [152414] = 4, + ACTIONS(9456), 1, + anon_sym_COMMA, + ACTIONS(9484), 1, + anon_sym_RPAREN, + STATE(6713), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153185] = 3, - STATE(2618), 1, - sym__end_of_statement, + [152428] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14094), 2, + ACTIONS(13989), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [153197] = 4, - ACTIONS(13222), 1, - anon_sym_LPAREN2, - ACTIONS(14096), 1, - aux_sym_preproc_include_token2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, + [152438] = 3, + STATE(2728), 1, + sym__end_of_statement, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153211] = 3, - STATE(5051), 1, + ACTIONS(13991), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152450] = 3, + STATE(584), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14098), 2, + ACTIONS(13993), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153223] = 4, - ACTIONS(13182), 1, - anon_sym_COMMA, - ACTIONS(14100), 1, - anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + [152462] = 3, + STATE(4998), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153237] = 4, - ACTIONS(13343), 1, - anon_sym_COMMA, - ACTIONS(14102), 1, - anon_sym_COLON_COLON, - STATE(7067), 1, - aux_sym_derived_type_statement_repeat1, + ACTIONS(13995), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152474] = 3, + STATE(1119), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153251] = 3, - STATE(2624), 1, + ACTIONS(13997), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152486] = 3, + STATE(2631), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14104), 2, + ACTIONS(13999), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153263] = 3, - STATE(5008), 1, + [152498] = 4, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(14001), 1, + aux_sym_preproc_include_token2, + STATE(8376), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [152512] = 4, + ACTIONS(9198), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9200), 1, + aux_sym_end_type_statement_token1, + STATE(1141), 1, + sym_end_type_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152526] = 3, + STATE(1143), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14106), 2, + ACTIONS(14003), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153275] = 4, - ACTIONS(13977), 1, + [152538] = 4, + ACTIONS(13744), 1, aux_sym_end_program_statement_token1, - ACTIONS(13979), 1, + ACTIONS(13746), 1, aux_sym_end_module_procedure_statement_token1, - STATE(5018), 1, + STATE(4999), 1, sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153289] = 3, - STATE(748), 1, + [152552] = 3, + STATE(2626), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14108), 2, + ACTIONS(14005), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153301] = 2, + [152564] = 4, + ACTIONS(13622), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13624), 1, + aux_sym_end_subroutine_statement_token1, + STATE(1001), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14110), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - [153311] = 3, - STATE(704), 1, + [152578] = 3, + STATE(2067), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14112), 2, + ACTIONS(14007), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153323] = 3, - STATE(712), 1, - sym__end_of_statement, + [152590] = 4, + ACTIONS(14009), 1, + anon_sym_COMMA, + ACTIONS(14011), 1, + anon_sym_RPAREN, + STATE(6728), 1, + aux_sym_associate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14114), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [153335] = 3, - ACTIONS(7494), 1, + [152604] = 4, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + STATE(885), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7492), 2, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - [153347] = 4, - ACTIONS(14116), 1, + [152618] = 4, + ACTIONS(10275), 1, + anon_sym_SLASH, + ACTIONS(14013), 1, + anon_sym_COMMA, + STATE(6711), 1, + aux_sym_data_set_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152632] = 4, + ACTIONS(14016), 1, + anon_sym_COMMA, + ACTIONS(14018), 1, + anon_sym_RBRACK, + STATE(6555), 1, + aux_sym_coarray_index_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152646] = 4, + ACTIONS(9456), 1, anon_sym_COMMA, - ACTIONS(14118), 1, + ACTIONS(14020), 1, anon_sym_RPAREN, - STATE(6780), 1, - aux_sym_associate_statement_repeat1, + STATE(6607), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153361] = 3, - STATE(718), 1, + [152660] = 4, + ACTIONS(14022), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14024), 1, + aux_sym_end_submodule_statement_token1, + STATE(1024), 1, + sym_end_submodule_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152674] = 3, + STATE(1148), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14120), 2, + ACTIONS(14026), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153373] = 4, - ACTIONS(14122), 1, - anon_sym_COMMA, - ACTIONS(14124), 1, - anon_sym_RBRACK, - STATE(6495), 1, - aux_sym_coarray_index_repeat1, + [152686] = 4, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(7399), 1, + sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153387] = 3, - STATE(678), 1, + [152700] = 3, + STATE(5065), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14126), 2, + ACTIONS(14028), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152712] = 3, + STATE(5149), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14030), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153399] = 3, + [152724] = 4, + ACTIONS(13665), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13667), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4799), 1, + sym_end_module_procedure_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152738] = 4, + ACTIONS(9526), 1, + anon_sym_COMMA, + ACTIONS(9528), 1, + anon_sym_RBRACK, + STATE(6355), 1, + aux_sym_coarray_index_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152752] = 3, STATE(2155), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14128), 2, + ACTIONS(14032), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153411] = 4, - ACTIONS(13222), 1, + [152764] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14130), 1, + ACTIONS(14034), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [153425] = 3, - ACTIONS(6690), 1, - anon_sym_COLON, + [152778] = 3, + STATE(579), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6686), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [153437] = 3, - STATE(2157), 1, + ACTIONS(14036), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152790] = 3, + STATE(2158), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14132), 2, + ACTIONS(14038), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153449] = 4, - ACTIONS(14134), 1, + [152802] = 4, + ACTIONS(9160), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9174), 1, + aux_sym_end_type_statement_token1, + STATE(1464), 1, + sym_end_type_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152816] = 4, + ACTIONS(14040), 1, anon_sym_COMMA, - ACTIONS(14137), 1, + ACTIONS(14042), 1, anon_sym_RPAREN, - STATE(6780), 1, - aux_sym_associate_statement_repeat1, + STATE(6688), 1, + aux_sym_concurrent_header_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153463] = 4, - ACTIONS(9511), 1, - anon_sym_RPAREN, - ACTIONS(14139), 1, + [152830] = 4, + ACTIONS(13560), 1, anon_sym_COMMA, - STATE(6781), 1, - aux_sym_parameters_repeat1, + ACTIONS(14044), 1, + anon_sym_RBRACK, + STATE(6741), 1, + aux_sym_coarray_index_repeat2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152844] = 4, + ACTIONS(14009), 1, + anon_sym_COMMA, + ACTIONS(14046), 1, + anon_sym_RPAREN, + STATE(7054), 1, + aux_sym_associate_statement_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152858] = 4, + ACTIONS(13744), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13746), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4866), 1, + sym_end_module_procedure_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152872] = 4, + ACTIONS(14048), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14050), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4394), 1, + sym_end_module_procedure_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152886] = 3, + STATE(614), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14052), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152898] = 3, + STATE(652), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8048), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152910] = 3, + STATE(596), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153477] = 3, - STATE(2176), 1, + ACTIONS(14054), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [152922] = 3, + STATE(2177), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14142), 2, + ACTIONS(14056), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153489] = 4, - ACTIONS(13222), 1, + [152934] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14144), 1, + ACTIONS(14058), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [153503] = 3, - STATE(726), 1, + [152948] = 3, + STATE(583), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14146), 2, + ACTIONS(14060), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153515] = 3, - STATE(2177), 1, + [152960] = 3, + STATE(2178), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14148), 2, + ACTIONS(14062), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153527] = 4, - ACTIONS(13182), 1, + [152972] = 4, + ACTIONS(13225), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13227), 1, + aux_sym_end_subroutine_statement_token1, + STATE(849), 1, + sym_end_subroutine_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [152986] = 4, + ACTIONS(9456), 1, anon_sym_COMMA, - ACTIONS(14150), 1, + ACTIONS(9530), 1, anon_sym_RPAREN, - STATE(6753), 1, - aux_sym__io_arguments_repeat1, + STATE(6357), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153541] = 4, - ACTIONS(13182), 1, + [153000] = 3, + STATE(655), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14064), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [153012] = 4, + ACTIONS(13560), 1, anon_sym_COMMA, - ACTIONS(14152), 1, - anon_sym_RPAREN, - STATE(6762), 1, - aux_sym__io_arguments_repeat1, + ACTIONS(14066), 1, + anon_sym_RBRACK, + STATE(6988), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153555] = 4, - ACTIONS(187), 1, - sym__string_literal, - ACTIONS(189), 1, - sym__string_literal_kind, - STATE(4781), 1, - sym_string_literal, + [153026] = 4, + ACTIONS(8663), 1, + anon_sym_COMMA, + ACTIONS(14068), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14070), 1, + aux_sym_end_do_loop_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153569] = 4, - ACTIONS(13222), 1, - anon_sym_LPAREN2, - ACTIONS(14154), 1, - aux_sym_preproc_include_token2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, + [153040] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(14066), 1, + anon_sym_RBRACK, + STATE(6759), 1, + aux_sym_coarray_index_repeat2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153583] = 3, - STATE(1827), 1, - sym__end_of_statement, + [153054] = 4, + ACTIONS(14072), 1, + anon_sym_COMMA, + ACTIONS(14074), 1, + anon_sym_RPAREN, + STATE(6371), 1, + aux_sym__forall_control_expression_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14156), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [153595] = 4, - ACTIONS(13222), 1, - anon_sym_LPAREN2, - ACTIONS(14158), 1, - aux_sym_preproc_include_token2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, + [153068] = 4, + ACTIONS(11243), 1, + aux_sym_end_program_statement_token1, + ACTIONS(11245), 1, + aux_sym_end_program_statement_token2, + STATE(852), 1, + sym_end_program_statement, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153609] = 3, - STATE(731), 1, + [153082] = 3, + STATE(4406), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14160), 2, + ACTIONS(14076), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153621] = 3, - STATE(1820), 1, + [153094] = 3, + STATE(1830), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14162), 2, + ACTIONS(14078), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153633] = 4, - ACTIONS(11721), 1, + [153106] = 4, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(14080), 1, + aux_sym_preproc_include_token2, + STATE(8376), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [153120] = 4, + ACTIONS(13233), 1, aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, - aux_sym_end_if_statement_token1, - STATE(7252), 1, - sym_end_if_statement, + ACTIONS(13235), 1, + aux_sym_end_function_statement_token1, + STATE(856), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153647] = 4, - ACTIONS(10170), 1, - anon_sym_COMMA, - ACTIONS(10172), 1, - anon_sym_RPAREN, - STATE(7035), 1, - aux_sym_allocate_statement_repeat1, + [153134] = 3, + STATE(1831), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14082), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [153146] = 4, + ACTIONS(14048), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14050), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4407), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153661] = 3, - STATE(841), 1, + [153160] = 3, + STATE(5117), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14164), 2, + ACTIONS(14084), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153673] = 3, - STATE(2820), 1, - sym__end_of_statement, + [153172] = 4, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(7003), 1, + sym_argument_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14166), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [153685] = 3, - STATE(2833), 1, + [153186] = 3, + STATE(684), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14168), 2, + ACTIONS(12342), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153697] = 4, - ACTIONS(14170), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14172), 1, - aux_sym_end_subroutine_statement_token1, - STATE(1082), 1, - sym_end_subroutine_statement, + [153198] = 3, + STATE(587), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153711] = 4, - ACTIONS(12884), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12886), 1, - aux_sym_end_program_statement_token2, - STATE(1066), 1, - sym_end_program_statement, + ACTIONS(8137), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [153210] = 3, + STATE(609), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153725] = 4, - ACTIONS(13182), 1, + ACTIONS(14086), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [153222] = 4, + ACTIONS(14088), 1, anon_sym_COMMA, - ACTIONS(14174), 1, + ACTIONS(14090), 1, anon_sym_RPAREN, - STATE(6257), 1, - aux_sym__io_arguments_repeat1, + STATE(6855), 1, + aux_sym__forall_control_expression_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153739] = 3, - STATE(5193), 1, + [153236] = 3, + STATE(611), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14176), 2, + ACTIONS(14092), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153751] = 3, - STATE(2563), 1, + [153248] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(14094), 1, + anon_sym_RBRACK, + STATE(6988), 1, + aux_sym_coarray_index_repeat2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [153262] = 3, + STATE(2403), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14178), 2, + ACTIONS(14096), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153763] = 4, - ACTIONS(13222), 1, + [153274] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14180), 1, + ACTIONS(14098), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [153777] = 4, - ACTIONS(14182), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14184), 1, - aux_sym_end_function_statement_token1, - STATE(1084), 1, - sym_end_function_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [153791] = 3, - STATE(2567), 1, + [153288] = 3, + STATE(5130), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14186), 2, + ACTIONS(14100), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153803] = 4, - ACTIONS(13999), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14001), 1, - aux_sym_end_subroutine_statement_token1, - STATE(842), 1, - sym_end_subroutine_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [153817] = 3, - STATE(1377), 1, + [153300] = 3, + STATE(2405), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14188), 2, + ACTIONS(14102), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153829] = 3, - STATE(1068), 1, + [153312] = 3, + STATE(4413), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14190), 2, + ACTIONS(14104), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153841] = 3, - STATE(844), 1, - sym__end_of_statement, + [153324] = 4, + ACTIONS(7402), 1, + sym__integer_literal, + STATE(3929), 1, + sym_statement_label, + STATE(8087), 1, + sym_statement_label_reference, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14192), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [153853] = 4, - ACTIONS(14194), 1, - anon_sym_COMMA, - ACTIONS(14197), 1, - anon_sym_RPAREN, - STATE(6811), 1, - aux_sym_allocate_statement_repeat1, + [153338] = 4, + ACTIONS(14048), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14050), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4414), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153867] = 3, - STATE(4867), 1, - sym__end_of_statement, + [153352] = 3, + ACTIONS(14106), 1, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14199), 2, + ACTIONS(14108), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153879] = 3, - STATE(1088), 1, + [153364] = 3, + STATE(2890), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14201), 2, + ACTIONS(14110), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153891] = 3, - ACTIONS(4277), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [153376] = 3, + STATE(4177), 1, + sym__end_of_statement, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4279), 2, - aux_sym_preproc_def_token2, - anon_sym_LPAREN, - [153903] = 4, - ACTIONS(13222), 1, + ACTIONS(14112), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [153388] = 3, + ACTIONS(14114), 1, anon_sym_LPAREN2, - ACTIONS(14203), 1, - aux_sym_preproc_include_token2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153917] = 4, - ACTIONS(14170), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14172), 1, - aux_sym_end_subroutine_statement_token1, - STATE(1089), 1, - sym_end_subroutine_statement, + ACTIONS(14116), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [153400] = 3, + STATE(839), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [153931] = 4, - ACTIONS(13222), 1, + ACTIONS(14118), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [153412] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14205), 1, + ACTIONS(14120), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [153945] = 3, - ACTIONS(14207), 1, - anon_sym_COMMA, + [153426] = 3, + STATE(840), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14209), 2, + ACTIONS(14122), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153957] = 4, - ACTIONS(13222), 1, + [153438] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14211), 1, + ACTIONS(14124), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [153971] = 3, - STATE(1091), 1, + [153452] = 3, + STATE(2064), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14213), 2, + ACTIONS(14126), 2, sym__external_end_of_statement, anon_sym_SEMI, - [153983] = 4, - ACTIONS(13222), 1, + [153464] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14215), 1, + ACTIONS(14128), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [153997] = 4, - ACTIONS(13905), 1, + [153478] = 4, + ACTIONS(14130), 1, aux_sym_end_program_statement_token1, - ACTIONS(13907), 1, - aux_sym_end_module_statement_token1, - STATE(1069), 1, - sym_end_module_statement, + ACTIONS(14132), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4813), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154011] = 4, - ACTIONS(13222), 1, + [153492] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14217), 1, + ACTIONS(14134), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154025] = 4, - ACTIONS(14182), 1, + [153506] = 4, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - ACTIONS(14184), 1, - aux_sym_end_function_statement_token1, - STATE(1092), 1, - sym_end_function_statement, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7098), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154039] = 4, - ACTIONS(13222), 1, + [153520] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14219), 1, + ACTIONS(14136), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154053] = 3, - STATE(1071), 1, - sym__end_of_statement, + [153534] = 4, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7099), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14221), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [154065] = 4, - ACTIONS(13222), 1, + [153548] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14223), 1, + ACTIONS(14138), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154079] = 3, - STATE(1094), 1, - sym__end_of_statement, + [153562] = 4, + ACTIONS(14140), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14142), 1, + aux_sym_end_function_statement_token1, + STATE(4815), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14225), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [154091] = 4, - ACTIONS(13222), 1, + [153576] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14227), 1, + ACTIONS(14144), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154105] = 4, - ACTIONS(14170), 1, + [153590] = 4, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - ACTIONS(14172), 1, - aux_sym_end_subroutine_statement_token1, - STATE(1095), 1, - sym_end_subroutine_statement, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7100), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154119] = 4, - ACTIONS(13222), 1, + [153604] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14229), 1, + ACTIONS(14146), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154133] = 3, - STATE(1096), 1, + [153618] = 3, + STATE(4822), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14231), 2, + ACTIONS(14148), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154145] = 4, - ACTIONS(13222), 1, + [153630] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14233), 1, + ACTIONS(14150), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154159] = 4, - ACTIONS(14182), 1, + [153644] = 4, + ACTIONS(14130), 1, aux_sym_end_program_statement_token1, - ACTIONS(14184), 1, - aux_sym_end_function_statement_token1, - STATE(1097), 1, - sym_end_function_statement, + ACTIONS(14132), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4825), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154173] = 4, - ACTIONS(13222), 1, + [153658] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14235), 1, + ACTIONS(14152), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154187] = 4, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(7163), 1, - sym_argument_list, + [153672] = 4, + ACTIONS(14154), 1, + anon_sym_COMMA, + ACTIONS(14157), 1, + anon_sym_RPAREN, + STATE(6791), 1, + aux_sym__forall_control_expression_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154201] = 4, - ACTIONS(13222), 1, + [153686] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14237), 1, + ACTIONS(14159), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154215] = 4, - ACTIONS(14239), 1, - sym__string_literal, - ACTIONS(14241), 1, - sym__string_literal_kind, - STATE(4430), 1, - sym_string_literal, + [153700] = 3, + STATE(4827), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154229] = 4, - ACTIONS(13222), 1, + ACTIONS(14161), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [153712] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14243), 1, + ACTIONS(14163), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154243] = 3, - STATE(693), 1, + [153726] = 3, + STATE(2858), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14245), 2, + ACTIONS(14165), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154255] = 4, - ACTIONS(13222), 1, + [153738] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14247), 1, + ACTIONS(14167), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154269] = 3, - STATE(3863), 1, - sym__end_of_statement, + [153752] = 4, + ACTIONS(14140), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14142), 1, + aux_sym_end_function_statement_token1, + STATE(4828), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14249), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [154281] = 4, - ACTIONS(13222), 1, + [153766] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14251), 1, + ACTIONS(14169), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154295] = 3, - STATE(1150), 1, - sym__end_of_statement, + [153780] = 4, + ACTIONS(14022), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14024), 1, + aux_sym_end_submodule_statement_token1, + STATE(1061), 1, + sym_end_submodule_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14253), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [154307] = 4, - ACTIONS(13222), 1, + [153794] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14255), 1, + ACTIONS(14171), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154321] = 3, - STATE(2559), 1, + [153808] = 3, + STATE(4833), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14257), 2, + ACTIONS(14173), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154333] = 4, - ACTIONS(13222), 1, - anon_sym_LPAREN2, - ACTIONS(14259), 1, - aux_sym_preproc_include_token2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [154347] = 4, - ACTIONS(13222), 1, - anon_sym_LPAREN2, - ACTIONS(14261), 1, - aux_sym_preproc_include_token2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [154361] = 4, - ACTIONS(13222), 1, + [153820] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14263), 1, + ACTIONS(14175), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154375] = 4, - ACTIONS(13969), 1, + [153834] = 4, + ACTIONS(14130), 1, aux_sym_end_program_statement_token1, - ACTIONS(13971), 1, - aux_sym_end_submodule_statement_token1, - STATE(1072), 1, - sym_end_submodule_statement, + ACTIONS(14132), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4834), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154389] = 4, - ACTIONS(13222), 1, + [153848] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14265), 1, + ACTIONS(14177), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154403] = 3, - STATE(650), 1, + [153862] = 3, + STATE(4835), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14267), 2, + ACTIONS(14179), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154415] = 4, - ACTIONS(13222), 1, + [153874] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14269), 1, + ACTIONS(14181), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154429] = 4, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(6988), 1, - sym_argument_list, + [153888] = 4, + ACTIONS(14140), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14142), 1, + aux_sym_end_function_statement_token1, + STATE(4836), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154443] = 4, - ACTIONS(13222), 1, + [153902] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14271), 1, + ACTIONS(14183), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154457] = 3, - STATE(2857), 1, + [153916] = 3, + STATE(1055), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14273), 2, + ACTIONS(8129), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154469] = 4, - ACTIONS(13222), 1, + [153928] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14275), 1, + ACTIONS(14185), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154483] = 3, - STATE(1383), 1, - sym__end_of_statement, + [153942] = 4, + ACTIONS(14187), 1, + sym__string_literal, + ACTIONS(14189), 1, + sym__string_literal_kind, + STATE(4806), 1, + sym_string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13445), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [154495] = 4, - ACTIONS(13222), 1, + [153956] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14277), 1, + ACTIONS(14191), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154509] = 3, - STATE(5206), 1, - sym__end_of_statement, + [153970] = 3, + ACTIONS(14193), 1, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14279), 2, + ACTIONS(14195), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154521] = 4, - ACTIONS(13222), 1, + [153982] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14281), 1, + ACTIONS(14197), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154535] = 3, - STATE(5399), 1, + [153996] = 3, + STATE(4168), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14283), 2, + ACTIONS(14199), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154547] = 4, - ACTIONS(13222), 1, + [154008] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14285), 1, + ACTIONS(14201), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154561] = 3, - STATE(5400), 1, + [154022] = 3, + STATE(1623), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14287), 2, + ACTIONS(13465), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154573] = 4, - ACTIONS(13222), 1, + [154034] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14289), 1, + ACTIONS(14203), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154587] = 4, - ACTIONS(9220), 1, + [154048] = 4, + ACTIONS(9202), 1, aux_sym_end_program_statement_token1, - ACTIONS(9222), 1, + ACTIONS(9204), 1, aux_sym_end_type_statement_token1, - STATE(1123), 1, + STATE(2863), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154601] = 4, - ACTIONS(13222), 1, + [154062] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14291), 1, + ACTIONS(14205), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154615] = 3, - STATE(970), 1, + [154076] = 3, + STATE(2422), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14293), 2, + ACTIONS(14207), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154627] = 4, - ACTIONS(13222), 1, + [154088] = 4, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(14295), 1, + ACTIONS(14209), 1, aux_sym_preproc_include_token2, - STATE(8329), 1, + STATE(8376), 1, sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154641] = 4, - ACTIONS(12884), 1, - aux_sym_end_program_statement_token1, - ACTIONS(12886), 1, - aux_sym_end_program_statement_token2, - STATE(1009), 1, - sym_end_program_statement, - ACTIONS(21), 2, + [154102] = 4, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(14211), 1, + aux_sym_preproc_include_token2, + STATE(8376), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154655] = 4, - ACTIONS(14009), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14011), 1, - aux_sym_end_function_statement_token1, - STATE(851), 1, - sym_end_function_statement, - ACTIONS(21), 2, + [154116] = 4, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(14213), 1, + aux_sym_preproc_include_token2, + STATE(8376), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [154669] = 3, - ACTIONS(4331), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [154130] = 4, + ACTIONS(14215), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14217), 1, + aux_sym_end_module_statement_token1, + STATE(1068), 1, + sym_end_module_statement, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(4333), 2, - aux_sym_preproc_def_token2, - anon_sym_LPAREN, - [154681] = 3, - ACTIONS(4323), 1, - sym_preproc_arg, + [154144] = 4, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(14219), 1, + aux_sym_preproc_include_token2, + STATE(8376), 1, + sym_preproc_argument_list, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(4325), 2, - aux_sym_preproc_def_token2, - anon_sym_LPAREN, - [154693] = 3, - STATE(2561), 1, + [154158] = 3, + STATE(992), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14297), 2, + ACTIONS(14221), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154705] = 3, - ACTIONS(4335), 1, - sym_preproc_arg, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(4337), 2, - aux_sym_preproc_def_token2, - anon_sym_LPAREN, - [154717] = 3, - STATE(128), 1, + [154170] = 3, + STATE(5181), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14299), 2, + ACTIONS(14223), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154729] = 3, - STATE(129), 1, + [154182] = 3, + STATE(2169), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14301), 2, + ACTIONS(14225), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154741] = 4, - ACTIONS(14303), 1, + [154194] = 4, + ACTIONS(14227), 1, aux_sym_end_program_statement_token1, - ACTIONS(14305), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4868), 1, - sym_end_module_procedure_statement, + ACTIONS(14229), 1, + aux_sym_end_submodule_statement_token1, + STATE(1072), 1, + sym_end_submodule_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154755] = 3, - STATE(1361), 1, + [154208] = 3, + STATE(1078), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13607), 2, + ACTIONS(14231), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154767] = 3, - STATE(1148), 1, + [154220] = 3, + STATE(1180), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14307), 2, + ACTIONS(13536), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154779] = 3, - STATE(902), 1, + [154232] = 3, + STATE(130), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8077), 2, + ACTIONS(14233), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154791] = 4, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(9495), 1, - anon_sym_RPAREN, - STATE(7027), 1, - aux_sym__argument_list_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [154805] = 3, - STATE(1366), 1, + [154244] = 3, + STATE(131), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14309), 2, + ACTIONS(14235), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154817] = 4, - ACTIONS(14311), 1, - aux_sym__standalone_type_qualifier_token7, - ACTIONS(14313), 1, - aux_sym__standalone_type_qualifier_token8, - ACTIONS(14315), 1, - aux_sym__standalone_type_qualifier_token9, + [154256] = 4, + ACTIONS(13184), 1, + aux_sym_select_case_statement_token2, + ACTIONS(14237), 1, + sym_preproc_comment, + STATE(5828), 1, + sym_case_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154831] = 4, - ACTIONS(13981), 1, + [154270] = 4, + ACTIONS(12928), 1, aux_sym_end_program_statement_token1, - ACTIONS(13983), 1, + ACTIONS(12930), 1, aux_sym_end_program_statement_token2, - STATE(1032), 1, + STATE(1079), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154845] = 4, - ACTIONS(13747), 1, - aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, - aux_sym_format_statement_token1, - STATE(6987), 1, - sym_format_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [154859] = 2, + [154284] = 4, + ACTIONS(9218), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9220), 1, + aux_sym_end_type_statement_token1, + STATE(1642), 1, + sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13771), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - [154869] = 4, - ACTIONS(14317), 1, - sym__string_literal, - ACTIONS(14319), 1, - sym__string_literal_kind, - STATE(4961), 1, - sym_string_literal, + [154298] = 3, + STATE(2585), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154883] = 4, - ACTIONS(7414), 1, - anon_sym_EQ, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(5201), 1, - sym_coarray_index, + ACTIONS(14239), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [154310] = 3, + STATE(1527), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154897] = 3, - STATE(144), 1, + ACTIONS(13570), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [154322] = 3, + STATE(5404), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14321), 2, + ACTIONS(14241), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154909] = 3, - STATE(1062), 1, - sym__end_of_statement, + [154334] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14323), 2, + ACTIONS(14243), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [154921] = 3, - STATE(976), 1, + [154344] = 4, + ACTIONS(13483), 1, + anon_sym_COMMA, + ACTIONS(14245), 1, + anon_sym_RPAREN, + STATE(6979), 1, + aux_sym_implicit_statement_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [154358] = 3, + STATE(1617), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14325), 2, + ACTIONS(14247), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154933] = 4, - ACTIONS(11235), 1, + [154370] = 4, + ACTIONS(14249), 1, + aux_sym__standalone_type_qualifier_token7, + ACTIONS(14251), 1, + aux_sym__standalone_type_qualifier_token8, + ACTIONS(14253), 1, + aux_sym__standalone_type_qualifier_token9, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [154384] = 4, + ACTIONS(10826), 1, + anon_sym_RPAREN, + ACTIONS(14255), 1, + anon_sym_COMMA, + STATE(6845), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [154398] = 4, + ACTIONS(13872), 1, + aux_sym_implicit_statement_token3, + ACTIONS(13874), 1, + aux_sym_format_statement_token1, + STATE(6768), 1, + sym_format_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [154412] = 4, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - STATE(889), 1, - sym_end_program_statement, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7433), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154947] = 3, - STATE(4157), 1, + [154426] = 3, + STATE(1081), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14327), 2, + ACTIONS(14258), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154959] = 4, - ACTIONS(13214), 1, + [154438] = 4, + ACTIONS(14260), 1, anon_sym_COMMA, - ACTIONS(14329), 1, + ACTIONS(14263), 1, anon_sym_RPAREN, - STATE(6274), 1, - aux_sym_parameter_statement_repeat1, + STATE(6849), 1, + aux_sym_preproc_params_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [154973] = 3, - STATE(2822), 1, + [154452] = 3, + STATE(5401), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14331), 2, + ACTIONS(14265), 2, sym__external_end_of_statement, anon_sym_SEMI, - [154985] = 3, - STATE(1707), 1, - sym__end_of_statement, + [154464] = 3, + ACTIONS(12514), 1, + anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14333), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [154997] = 3, - STATE(899), 1, - sym__end_of_statement, + STATE(5967), 2, + sym_variable_group, + aux_sym_namelist_statement_repeat1, + [154476] = 4, + ACTIONS(14215), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14217), 1, + aux_sym_end_module_statement_token1, + STATE(1082), 1, + sym_end_module_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14335), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [155009] = 3, - STATE(2888), 1, + [154490] = 3, + STATE(2877), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14337), 2, + ACTIONS(14267), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155021] = 3, - STATE(686), 1, + [154502] = 3, + STATE(144), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14339), 2, + ACTIONS(14269), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155033] = 4, - ACTIONS(13222), 1, - anon_sym_LPAREN2, - ACTIONS(14341), 1, - aux_sym_preproc_include_token2, - STATE(8329), 1, - sym_preproc_argument_list, - ACTIONS(3), 2, + [154514] = 4, + ACTIONS(14271), 1, + anon_sym_COMMA, + ACTIONS(14273), 1, + anon_sym_RPAREN, + STATE(6791), 1, + aux_sym__forall_control_expression_repeat1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155047] = 4, - ACTIONS(9540), 1, + [154528] = 4, + ACTIONS(9456), 1, anon_sym_COMMA, - ACTIONS(9542), 1, - anon_sym_RBRACK, - STATE(6958), 1, - aux_sym_coarray_index_repeat1, + ACTIONS(9499), 1, + anon_sym_RPAREN, + STATE(6865), 1, + aux_sym__argument_list_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [154542] = 3, + ACTIONS(7498), 1, + aux_sym_end_program_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155061] = 3, - STATE(759), 1, + ACTIONS(7496), 2, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [154554] = 3, + STATE(1168), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14343), 2, + ACTIONS(13278), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155073] = 3, - STATE(669), 1, + [154566] = 3, + STATE(1614), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14345), 2, + ACTIONS(14275), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155085] = 2, + [154578] = 4, + ACTIONS(9218), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9220), 1, + aux_sym_end_type_statement_token1, + STATE(1616), 1, + sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13057), 3, - sym__external_end_of_statement, - anon_sym_COMMA, - anon_sym_SEMI, - [155095] = 3, - STATE(1366), 1, + [154592] = 3, + STATE(1630), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14309), 2, + ACTIONS(14277), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155107] = 3, - STATE(4048), 1, + [154604] = 3, + STATE(1084), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14347), 2, + ACTIONS(14279), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155119] = 4, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(9487), 1, - anon_sym_RPAREN, - STATE(6961), 1, - aux_sym__argument_list_repeat1, + [154616] = 4, + ACTIONS(14227), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14229), 1, + aux_sym_end_submodule_statement_token1, + STATE(1085), 1, + sym_end_submodule_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155133] = 3, - STATE(2702), 1, + [154630] = 3, + STATE(543), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14349), 2, + ACTIONS(14281), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155145] = 3, - STATE(1129), 1, - sym__end_of_statement, + [154642] = 4, + ACTIONS(9456), 1, + anon_sym_COMMA, + ACTIONS(14283), 1, + anon_sym_RPAREN, + STATE(6607), 1, + aux_sym__argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14351), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [155157] = 3, - STATE(126), 1, + [154656] = 3, + STATE(2777), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14353), 2, + ACTIONS(14285), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155169] = 3, - STATE(127), 1, + [154668] = 3, + STATE(1635), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14355), 2, + ACTIONS(14287), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155181] = 4, - ACTIONS(14357), 1, - aux_sym_included_items_token1, - ACTIONS(14359), 1, - aux_sym_implicit_statement_token2, - ACTIONS(14361), 1, - aux_sym__import_names_token1, + [154680] = 4, + ACTIONS(14009), 1, + anon_sym_COMMA, + ACTIONS(14289), 1, + anon_sym_RPAREN, + STATE(6894), 1, + aux_sym_associate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155195] = 2, + [154694] = 3, + STATE(4050), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14363), 3, + ACTIONS(14291), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [155205] = 4, - ACTIONS(14365), 1, - aux_sym__standalone_type_qualifier_token7, - ACTIONS(14367), 1, - aux_sym__standalone_type_qualifier_token8, - ACTIONS(14369), 1, - aux_sym__standalone_type_qualifier_token9, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [155219] = 4, - ACTIONS(7398), 1, - sym__integer_literal, - STATE(3920), 1, - sym_statement_label, - STATE(6328), 1, - sym_statement_label_reference, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [155233] = 4, - ACTIONS(13747), 1, - aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, - aux_sym_format_statement_token1, - STATE(6554), 1, - sym_format_statement, + [154706] = 4, + ACTIONS(9519), 1, + anon_sym_RPAREN, + ACTIONS(14293), 1, + anon_sym_COMMA, + STATE(6870), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155247] = 4, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - STATE(903), 1, - sym_end_program_statement, + [154720] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14296), 1, + anon_sym_RPAREN, + STATE(6945), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155261] = 3, - STATE(1638), 1, + [154734] = 3, + STATE(127), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13212), 2, + ACTIONS(14298), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155273] = 3, - STATE(130), 1, + [154746] = 3, + STATE(128), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14371), 2, + ACTIONS(14300), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155285] = 4, - ACTIONS(9220), 1, + [154758] = 4, + ACTIONS(12928), 1, aux_sym_end_program_statement_token1, - ACTIONS(9222), 1, - aux_sym_end_type_statement_token1, - STATE(1133), 1, - sym_end_type_statement, + ACTIONS(12930), 1, + aux_sym_end_program_statement_token2, + STATE(966), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155299] = 4, - ACTIONS(13315), 1, - anon_sym_COMMA, - ACTIONS(14373), 1, - anon_sym_RPAREN, - STATE(6374), 1, - aux_sym_keyword_statement_repeat1, + [154772] = 4, + ACTIONS(13872), 1, + aux_sym_implicit_statement_token3, + ACTIONS(13874), 1, + aux_sym_format_statement_token1, + STATE(6401), 1, + sym_format_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155313] = 4, - ACTIONS(14116), 1, - anon_sym_COMMA, - ACTIONS(14375), 1, - anon_sym_RPAREN, - STATE(6780), 1, - aux_sym_associate_statement_repeat1, + [154786] = 4, + ACTIONS(14302), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14304), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(5025), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155327] = 3, - STATE(1139), 1, + [154800] = 3, + STATE(132), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14377), 2, + ACTIONS(14306), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155339] = 4, - ACTIONS(9158), 1, - aux_sym_end_program_statement_token1, - ACTIONS(9172), 1, - aux_sym_end_type_statement_token1, - STATE(2780), 1, - sym_end_type_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [155353] = 3, - STATE(857), 1, + [154812] = 3, + STATE(967), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14379), 2, + ACTIONS(14308), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155365] = 4, - ACTIONS(11721), 1, + [154824] = 4, + ACTIONS(11711), 1, aux_sym_end_program_statement_token1, - ACTIONS(11723), 1, + ACTIONS(11713), 1, aux_sym_end_if_statement_token1, - STATE(7203), 1, + STATE(7352), 1, sym_end_if_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155379] = 3, - STATE(4509), 1, - sym__end_of_statement, + [154838] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14381), 2, + ACTIONS(14310), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [155391] = 3, - STATE(135), 1, + [154848] = 3, + STATE(968), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14383), 2, + ACTIONS(14312), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155403] = 3, - STATE(136), 1, + [154860] = 3, + STATE(2846), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14385), 2, + ACTIONS(14314), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155415] = 3, - STATE(1732), 1, - sym__end_of_statement, + [154872] = 4, + ACTIONS(13308), 1, + anon_sym_COMMA, + ACTIONS(14316), 1, + anon_sym_RPAREN, + STATE(6870), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14387), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [155427] = 3, - STATE(1146), 1, + [154886] = 3, + STATE(138), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14389), 2, + ACTIONS(14318), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155439] = 3, - STATE(2817), 1, + [154898] = 3, + STATE(139), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14391), 2, + ACTIONS(14320), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155451] = 4, - ACTIONS(13911), 1, + [154910] = 4, + ACTIONS(9160), 1, aux_sym_end_program_statement_token1, - ACTIONS(13913), 1, - aux_sym_end_module_statement_token1, - STATE(905), 1, - sym_end_module_statement, + ACTIONS(9174), 1, + aux_sym_end_type_statement_token1, + STATE(1368), 1, + sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155465] = 4, - ACTIONS(13999), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14001), 1, - aux_sym_end_subroutine_statement_token1, - STATE(862), 1, - sym_end_subroutine_statement, + [154924] = 3, + STATE(557), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155479] = 4, - ACTIONS(13747), 1, + ACTIONS(14322), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [154936] = 4, + ACTIONS(13872), 1, aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, + ACTIONS(13874), 1, aux_sym_format_statement_token1, - STATE(6909), 1, + STATE(6697), 1, sym_format_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155493] = 4, - ACTIONS(14116), 1, - anon_sym_COMMA, - ACTIONS(14375), 1, - anon_sym_RPAREN, - STATE(6772), 1, - aux_sym_associate_statement_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [155507] = 3, - STATE(141), 1, + [154950] = 3, + STATE(4783), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14393), 2, + ACTIONS(14324), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155519] = 4, - ACTIONS(13714), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13716), 1, - aux_sym_end_submodule_statement_token1, - STATE(838), 1, - sym_end_submodule_statement, + [154962] = 3, + STATE(142), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155533] = 3, - STATE(900), 1, + ACTIONS(14326), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [154974] = 3, + STATE(899), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14395), 2, + ACTIONS(14328), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155545] = 4, - ACTIONS(13182), 1, + [154986] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(14397), 1, + ACTIONS(14330), 1, anon_sym_RPAREN, - STATE(6422), 1, + STATE(6910), 1, aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155559] = 4, - ACTIONS(13182), 1, + [155000] = 3, + STATE(699), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14332), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [155012] = 4, + ACTIONS(14009), 1, anon_sym_COMMA, - ACTIONS(14399), 1, + ACTIONS(14011), 1, anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + STATE(7054), 1, + aux_sym_associate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155573] = 3, - STATE(147), 1, + [155026] = 3, + STATE(148), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14401), 2, + ACTIONS(14334), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155585] = 3, - STATE(148), 1, + [155038] = 3, + STATE(149), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14403), 2, + ACTIONS(14336), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155597] = 4, - ACTIONS(14009), 1, + [155050] = 4, + ACTIONS(14302), 1, aux_sym_end_program_statement_token1, - ACTIONS(14011), 1, - aux_sym_end_function_statement_token1, - STATE(901), 1, - sym_end_function_statement, + ACTIONS(14304), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4784), 1, + sym_end_module_procedure_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155064] = 4, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7437), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155611] = 4, - ACTIONS(13747), 1, + [155078] = 4, + ACTIONS(13872), 1, aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, + ACTIONS(13874), 1, aux_sym_format_statement_token1, - STATE(6292), 1, + STATE(6858), 1, sym_format_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155625] = 3, - STATE(150), 1, + [155092] = 3, + STATE(4419), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14338), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [155104] = 3, + STATE(2875), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14405), 2, + ACTIONS(14340), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155637] = 4, - ACTIONS(13981), 1, + [155116] = 3, + ACTIONS(14342), 1, aux_sym_end_program_statement_token1, - ACTIONS(13983), 1, - aux_sym_end_program_statement_token2, - STATE(962), 1, - sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155651] = 3, - STATE(566), 1, + ACTIONS(14344), 2, + aux_sym_enumerator_statement_token1, + aux_sym_end_enum_statement_token1, + [155128] = 3, + STATE(150), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14407), 2, + ACTIONS(14346), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155663] = 3, + [155140] = 3, STATE(154), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14409), 2, + ACTIONS(14348), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155675] = 3, + [155152] = 3, STATE(155), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14411), 2, + ACTIONS(14350), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155687] = 4, - ACTIONS(13747), 1, + [155164] = 3, + STATE(4796), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14352), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [155176] = 4, + ACTIONS(187), 1, + sym__string_literal, + ACTIONS(189), 1, + sym__string_literal_kind, + STATE(5008), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155190] = 4, + ACTIONS(13872), 1, aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, + ACTIONS(13874), 1, aux_sym_format_statement_token1, - STATE(6354), 1, + STATE(7025), 1, sym_format_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155701] = 4, - ACTIONS(14413), 1, - anon_sym_COMMA, - ACTIONS(14415), 1, - anon_sym_RPAREN, - STATE(6811), 1, - aux_sym_allocate_statement_repeat1, + [155204] = 4, + ACTIONS(14302), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14304), 1, + aux_sym_end_module_procedure_statement_token1, + STATE(4797), 1, + sym_end_module_procedure_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155715] = 4, - ACTIONS(14417), 1, + [155218] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(14419), 1, + ACTIONS(14354), 1, anon_sym_RPAREN, - STATE(6811), 1, - aux_sym_allocate_statement_repeat1, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155729] = 4, - ACTIONS(14421), 1, + [155232] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(14424), 1, + ACTIONS(14356), 1, anon_sym_RPAREN, - STATE(6955), 1, - aux_sym_implicit_statement_repeat3, + STATE(6913), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155743] = 3, + [155246] = 3, STATE(156), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14426), 2, + ACTIONS(14358), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155755] = 4, - ACTIONS(13554), 1, + [155258] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(14428), 1, + ACTIONS(14360), 1, anon_sym_RPAREN, - STATE(6449), 1, - aux_sym_implicit_statement_repeat1, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155769] = 4, - ACTIONS(14430), 1, - anon_sym_COMMA, - ACTIONS(14432), 1, - anon_sym_RBRACK, - STATE(6495), 1, - aux_sym_coarray_index_repeat1, + [155272] = 3, + STATE(5196), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155783] = 3, - STATE(160), 1, + ACTIONS(14362), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [155284] = 3, + STATE(5113), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14434), 2, + ACTIONS(14364), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155795] = 3, - STATE(161), 1, + [155296] = 3, + STATE(160), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14436), 2, + ACTIONS(14366), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155807] = 4, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(14438), 1, - anon_sym_RPAREN, - STATE(6508), 1, - aux_sym__argument_list_repeat1, + [155308] = 3, + STATE(161), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155821] = 4, - ACTIONS(13227), 1, + ACTIONS(14368), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [155320] = 4, + ACTIONS(13225), 1, aux_sym_end_program_statement_token1, - ACTIONS(13229), 1, + ACTIONS(13227), 1, aux_sym_end_subroutine_statement_token1, - STATE(4383), 1, + STATE(901), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155835] = 3, - STATE(4386), 1, - sym__end_of_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(14440), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [155847] = 4, - ACTIONS(13747), 1, + [155334] = 4, + ACTIONS(13872), 1, aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, + ACTIONS(13874), 1, aux_sym_format_statement_token1, - STATE(6416), 1, + STATE(6314), 1, sym_format_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155861] = 3, - STATE(1143), 1, + [155348] = 3, + STATE(5407), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14442), 2, + ACTIONS(14370), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155873] = 3, - STATE(5115), 1, + [155360] = 3, + STATE(1633), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14444), 2, + ACTIONS(14372), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155885] = 3, + [155372] = 4, + ACTIONS(14374), 1, + anon_sym_COMMA, + ACTIONS(14376), 1, + anon_sym_RPAREN, + STATE(6291), 1, + aux_sym_allocate_statement_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155386] = 3, STATE(162), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14446), 2, + ACTIONS(14378), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155897] = 4, - ACTIONS(7416), 1, - anon_sym_LPAREN2, - STATE(3102), 1, - sym__argument_list, - STATE(6705), 1, - sym_argument_list, - ACTIONS(21), 2, + [155398] = 3, + ACTIONS(4345), 1, + sym_preproc_arg, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [155911] = 3, - STATE(5109), 1, - sym__end_of_statement, - ACTIONS(21), 2, + ACTIONS(4347), 2, + aux_sym_preproc_def_token2, + anon_sym_LPAREN, + [155410] = 3, + ACTIONS(4349), 1, + sym_preproc_arg, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(14448), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [155923] = 4, - ACTIONS(9501), 1, + ACTIONS(4351), 2, + aux_sym_preproc_def_token2, + anon_sym_LPAREN, + [155422] = 3, + ACTIONS(4255), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4257), 2, + aux_sym_preproc_def_token2, + anon_sym_LPAREN, + [155434] = 3, + ACTIONS(4315), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(4317), 2, + aux_sym_preproc_def_token2, + anon_sym_LPAREN, + [155446] = 4, + ACTIONS(14380), 1, anon_sym_COMMA, - ACTIONS(9503), 1, - anon_sym_RBRACK, - STATE(7031), 1, - aux_sym_coarray_index_repeat1, + ACTIONS(14382), 1, + anon_sym_RPAREN, + STATE(6291), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155937] = 3, + [155460] = 3, STATE(166), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14450), 2, + ACTIONS(14384), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155949] = 3, + [155472] = 3, STATE(167), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14452), 2, + ACTIONS(14386), 2, sym__external_end_of_statement, anon_sym_SEMI, - [155961] = 3, - ACTIONS(12712), 1, - anon_sym_SLASH, + [155484] = 3, + STATE(1632), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - STATE(6083), 2, - sym_variable_group, - aux_sym_namelist_statement_repeat1, - [155973] = 4, - ACTIONS(14303), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14305), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4844), 1, - sym_end_module_procedure_statement, + ACTIONS(14388), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [155496] = 4, + ACTIONS(10000), 1, + anon_sym_COMMA, + ACTIONS(10002), 1, + anon_sym_RPAREN, + STATE(6928), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [155987] = 4, - ACTIONS(13747), 1, + [155510] = 4, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(14390), 1, + aux_sym_preproc_include_token2, + STATE(8376), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [155524] = 4, + ACTIONS(13872), 1, aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, + ACTIONS(13874), 1, aux_sym_format_statement_token1, - STATE(6477), 1, + STATE(6384), 1, sym_format_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156001] = 4, - ACTIONS(9448), 1, + [155538] = 4, + ACTIONS(13320), 1, + aux_sym_select_rank_statement_token1, + ACTIONS(14392), 1, + sym_preproc_comment, + STATE(5730), 1, + sym_rank_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155552] = 4, + ACTIONS(14394), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14396), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4904), 1, + sym_end_subroutine_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155566] = 4, + ACTIONS(14398), 1, anon_sym_COMMA, - ACTIONS(9538), 1, + ACTIONS(14400), 1, anon_sym_RPAREN, - STATE(7032), 1, - aux_sym__argument_list_repeat1, + STATE(6291), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156015] = 3, + [155580] = 3, STATE(168), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14454), 2, + ACTIONS(14402), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156027] = 4, - ACTIONS(13483), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13485), 1, - aux_sym_end_function_statement_token1, - STATE(4398), 1, - sym_end_function_statement, + [155592] = 3, + STATE(858), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(8153), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [155604] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14404), 1, + anon_sym_RPAREN, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156041] = 2, + [155618] = 3, + STATE(881), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14456), 3, + ACTIONS(14406), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [156051] = 4, - ACTIONS(13030), 1, - sym__integer_literal, - STATE(6739), 1, - sym_statement_label, - STATE(7299), 1, - sym_statement_label_reference, + [155630] = 4, + ACTIONS(14408), 1, + anon_sym_COMMA, + ACTIONS(14410), 1, + anon_sym_RPAREN, + STATE(6291), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156065] = 3, + [155644] = 3, STATE(172), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14458), 2, + ACTIONS(14412), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156077] = 3, + [155656] = 3, STATE(173), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14460), 2, + ACTIONS(14414), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156089] = 4, - ACTIONS(14462), 1, + [155668] = 4, + ACTIONS(13170), 1, anon_sym_COMMA, - ACTIONS(14464), 1, + ACTIONS(14416), 1, anon_sym_RPAREN, - STATE(7034), 1, - aux_sym__forall_control_expression_repeat1, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156103] = 4, - ACTIONS(14466), 1, - sym_preproc_comment, - ACTIONS(14468), 1, - aux_sym_select_case_statement_token2, - STATE(7705), 1, - sym_case_statement, + [155682] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13415), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + [155692] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14418), 1, + anon_sym_RPAREN, + STATE(6261), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156117] = 4, - ACTIONS(13747), 1, + [155706] = 4, + ACTIONS(13872), 1, aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, + ACTIONS(13874), 1, aux_sym_format_statement_token1, - STATE(6538), 1, + STATE(6454), 1, sym_format_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156131] = 4, - ACTIONS(14470), 1, + [155720] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13138), 3, + sym__external_end_of_statement, anon_sym_COMMA, - ACTIONS(14472), 1, - anon_sym_RPAREN, - STATE(6811), 1, - aux_sym_allocate_statement_repeat1, + anon_sym_SEMI, + [155730] = 4, + ACTIONS(14420), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14422), 1, + aux_sym_end_function_statement_token1, + STATE(4906), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156145] = 3, - STATE(2840), 1, + [155744] = 4, + ACTIONS(7440), 1, + anon_sym_EQ, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(5205), 1, + sym_coarray_index, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155758] = 4, + ACTIONS(13233), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13235), 1, + aux_sym_end_function_statement_token1, + STATE(890), 1, + sym_end_function_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155772] = 4, + ACTIONS(13192), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13194), 1, + aux_sym_end_subroutine_statement_token1, + STATE(5047), 1, + sym_end_subroutine_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155786] = 3, + STATE(120), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14474), 2, + ACTIONS(14424), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156157] = 3, - STATE(698), 1, + [155798] = 3, + STATE(176), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14476), 2, + ACTIONS(14426), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [155810] = 4, + ACTIONS(7442), 1, + anon_sym_LPAREN2, + STATE(3104), 1, + sym__argument_list, + STATE(6740), 1, + sym_argument_list, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155824] = 3, + STATE(4918), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14428), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [155836] = 4, + ACTIONS(13872), 1, + aux_sym_implicit_statement_token3, + ACTIONS(13874), 1, + aux_sym_format_statement_token1, + STATE(6511), 1, + sym_format_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155850] = 4, + ACTIONS(14394), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14396), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4919), 1, + sym_end_subroutine_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155864] = 3, + STATE(4921), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14430), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156169] = 4, - ACTIONS(13257), 1, + [155876] = 4, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7441), 1, + sym_end_select_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155890] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13071), 3, + sym__external_end_of_statement, anon_sym_COMMA, - ACTIONS(14478), 1, - anon_sym_RBRACK, - STATE(7028), 1, - aux_sym_coarray_index_repeat2, + anon_sym_SEMI, + [155900] = 4, + ACTIONS(14420), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14422), 1, + aux_sym_end_function_statement_token1, + STATE(4922), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156183] = 2, + [155914] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14480), 3, + ACTIONS(14432), 3, sym__external_end_of_statement, anon_sym_COMMA, anon_sym_SEMI, - [156193] = 3, - STATE(2151), 1, + [155924] = 3, + STATE(179), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14482), 2, + ACTIONS(14434), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156205] = 3, - STATE(120), 1, + [155936] = 3, + STATE(180), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14484), 2, + ACTIONS(14436), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156217] = 3, - STATE(177), 1, + [155948] = 3, + STATE(4926), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14486), 2, + ACTIONS(14438), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156229] = 4, - ACTIONS(14488), 1, + [155960] = 4, + ACTIONS(13872), 1, + aux_sym_implicit_statement_token3, + ACTIONS(13874), 1, + aux_sym_format_statement_token1, + STATE(6569), 1, + sym_format_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155974] = 4, + ACTIONS(14394), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14396), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4928), 1, + sym_end_subroutine_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [155988] = 4, + ACTIONS(14440), 1, anon_sym_COMMA, - ACTIONS(14490), 1, + ACTIONS(14443), 1, anon_sym_RPAREN, - STATE(6811), 1, - aux_sym_allocate_statement_repeat1, + STATE(6970), 1, + aux_sym_implicit_statement_repeat3, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [156002] = 4, + ACTIONS(14445), 1, + aux_sym__standalone_type_qualifier_token7, + ACTIONS(14447), 1, + aux_sym__standalone_type_qualifier_token8, + ACTIONS(14449), 1, + aux_sym__standalone_type_qualifier_token9, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [156016] = 3, + STATE(183), 1, + sym__end_of_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14451), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156028] = 3, + STATE(184), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156243] = 3, - STATE(2839), 1, + ACTIONS(14453), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156040] = 3, + STATE(4931), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14492), 2, + ACTIONS(14455), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156255] = 4, - ACTIONS(14494), 1, + [156052] = 4, + ACTIONS(14420), 1, aux_sym_end_program_statement_token1, - ACTIONS(14496), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4458), 1, - sym_end_module_procedure_statement, + ACTIONS(14422), 1, + aux_sym_end_function_statement_token1, + STATE(4932), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156269] = 4, - ACTIONS(13747), 1, - aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, - aux_sym_format_statement_token1, - STATE(6594), 1, - sym_format_statement, + [156066] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156283] = 4, - ACTIONS(9158), 1, + ACTIONS(14457), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [156076] = 4, + ACTIONS(14459), 1, + sym__string_literal, + ACTIONS(14461), 1, + sym__string_literal_kind, + STATE(4888), 1, + sym_string_literal, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [156090] = 4, + ACTIONS(14463), 1, aux_sym_end_program_statement_token1, - ACTIONS(9172), 1, - aux_sym_end_type_statement_token1, - STATE(2846), 1, - sym_end_type_statement, + ACTIONS(14465), 1, + aux_sym_end_module_statement_token1, + STATE(861), 1, + sym_end_module_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156297] = 4, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7394), 1, - sym_end_select_statement, + [156104] = 4, + ACTIONS(14467), 1, + anon_sym_COMMA, + ACTIONS(14470), 1, + anon_sym_RPAREN, + STATE(6979), 1, + aux_sym_implicit_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156311] = 3, - STATE(2906), 1, + [156118] = 3, + STATE(5142), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14498), 2, + ACTIONS(14472), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156323] = 2, + [156130] = 3, + STATE(4165), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14500), 3, + ACTIONS(14474), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [156333] = 2, + [156142] = 3, + STATE(185), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13118), 3, + ACTIONS(14476), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [156343] = 3, - STATE(180), 1, + [156154] = 3, + STATE(186), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14502), 2, + ACTIONS(14478), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156355] = 3, - STATE(181), 1, + [156166] = 3, + STATE(1517), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14504), 2, + ACTIONS(13333), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156367] = 4, - ACTIONS(10411), 1, + [156178] = 4, + ACTIONS(14480), 1, aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7404), 1, - sym_end_select_statement, + ACTIONS(14482), 1, + aux_sym_end_submodule_statement_token1, + STATE(863), 1, + sym_end_submodule_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156381] = 3, - STATE(675), 1, + [156192] = 3, + STATE(2599), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7562), 2, + ACTIONS(14484), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156393] = 4, - ACTIONS(13747), 1, - aux_sym_implicit_statement_token3, - ACTIONS(13749), 1, - aux_sym_format_statement_token1, - STATE(6643), 1, - sym_format_statement, + [156204] = 4, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(14486), 1, + aux_sym_preproc_include_token2, + STATE(8376), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [156218] = 4, + ACTIONS(14488), 1, + anon_sym_COMMA, + ACTIONS(14491), 1, + anon_sym_RBRACK, + STATE(6988), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156407] = 4, - ACTIONS(10411), 1, - aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7406), 1, - sym_end_select_statement, + [156232] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156421] = 4, - ACTIONS(14506), 1, - aux_sym_included_items_token1, - ACTIONS(14508), 1, - aux_sym_implicit_statement_token2, - ACTIONS(14510), 1, - aux_sym__import_names_token1, + ACTIONS(14493), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [156242] = 4, + ACTIONS(13560), 1, + anon_sym_COMMA, + ACTIONS(14495), 1, + anon_sym_RBRACK, + STATE(6988), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156435] = 3, - STATE(184), 1, - sym__end_of_statement, + [156256] = 4, + ACTIONS(13176), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13178), 1, + aux_sym_end_function_statement_token1, + STATE(5050), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14512), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [156447] = 3, - STATE(185), 1, + [156270] = 3, + STATE(1502), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14514), 2, + ACTIONS(13731), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156459] = 4, - ACTIONS(13504), 1, + [156282] = 4, + ACTIONS(13560), 1, anon_sym_COMMA, - ACTIONS(14516), 1, - anon_sym_RPAREN, - STATE(6781), 1, - aux_sym_parameters_repeat1, + ACTIONS(14497), 1, + anon_sym_RBRACK, + STATE(6988), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156473] = 4, - ACTIONS(14518), 1, + [156296] = 4, + ACTIONS(13560), 1, anon_sym_COMMA, - ACTIONS(14520), 1, - anon_sym_RPAREN, - STATE(6811), 1, - aux_sym_allocate_statement_repeat1, + ACTIONS(14497), 1, + anon_sym_RBRACK, + STATE(6990), 1, + aux_sym_coarray_index_repeat2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156487] = 3, - STATE(186), 1, + [156310] = 3, + STATE(2336), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14522), 2, + ACTIONS(14499), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156499] = 3, - STATE(121), 1, + [156322] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14501), 1, + anon_sym_RPAREN, + STATE(6473), 1, + aux_sym__io_arguments_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [156336] = 3, + STATE(673), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14524), 2, + ACTIONS(14503), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156511] = 3, - STATE(647), 1, + [156348] = 3, + STATE(1465), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8138), 2, + ACTIONS(13467), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156523] = 4, - ACTIONS(13182), 1, + [156360] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14505), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [156370] = 4, + ACTIONS(10054), 1, anon_sym_COMMA, - ACTIONS(14526), 1, + ACTIONS(14507), 1, anon_sym_RPAREN, - STATE(6422), 1, - aux_sym__io_arguments_repeat1, + STATE(7017), 1, + aux_sym_equivalence_set_repeat1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [156384] = 4, + ACTIONS(13423), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13425), 1, + aux_sym_end_program_statement_token2, + STATE(1087), 1, + sym_end_program_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [156398] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156537] = 3, - STATE(991), 1, + ACTIONS(14509), 3, + sym__external_end_of_statement, + anon_sym_LPAREN2, + anon_sym_SEMI, + [156408] = 3, + STATE(665), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14528), 2, + ACTIONS(14511), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156549] = 3, - ACTIONS(7468), 1, - aux_sym_end_program_statement_token1, + [156420] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7466), 2, - aux_sym_enumerator_statement_token1, - aux_sym_end_enum_statement_token1, - [156561] = 4, - ACTIONS(5468), 1, - sym__string_literal, - ACTIONS(5470), 1, - sym__string_literal_kind, - STATE(7317), 1, - sym_string_literal, + ACTIONS(14513), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [156430] = 4, + ACTIONS(14515), 1, + anon_sym_COMMA, + ACTIONS(14518), 1, + anon_sym_SLASH, + STATE(7005), 1, + aux_sym_data_value_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156575] = 3, - STATE(643), 1, - sym__end_of_statement, + [156444] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14530), 2, + ACTIONS(14520), 3, sym__external_end_of_statement, + anon_sym_COMMA, anon_sym_SEMI, - [156587] = 3, - ACTIONS(6658), 1, - anon_sym_COLON, + [156454] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6656), 2, + ACTIONS(14513), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [156464] = 4, + ACTIONS(14522), 1, anon_sym_COMMA, + ACTIONS(14524), 1, anon_sym_RPAREN, - [156599] = 4, - ACTIONS(13357), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13359), 1, - aux_sym_end_subroutine_statement_token1, - STATE(992), 1, - sym_end_subroutine_statement, + STATE(7061), 1, + aux_sym_concurrent_header_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156613] = 4, - ACTIONS(13964), 1, - aux_sym_select_case_statement_token2, - ACTIONS(14532), 1, - sym_preproc_comment, - STATE(5700), 1, - sym_case_statement, + [156478] = 4, + ACTIONS(9222), 1, + aux_sym_end_program_statement_token1, + ACTIONS(9224), 1, + aux_sym_end_type_statement_token1, + STATE(1382), 1, + sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156627] = 3, - STATE(995), 1, + [156492] = 3, + STATE(1093), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14534), 2, + ACTIONS(14526), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156639] = 4, - ACTIONS(13257), 1, - anon_sym_COMMA, - ACTIONS(14536), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym_coarray_index_repeat2, + [156504] = 3, + STATE(2389), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156653] = 4, - ACTIONS(9448), 1, + ACTIONS(14528), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156516] = 4, + ACTIONS(14530), 1, anon_sym_COMMA, - ACTIONS(14538), 1, + ACTIONS(14533), 1, anon_sym_RPAREN, - STATE(6508), 1, - aux_sym__argument_list_repeat1, + STATE(7012), 1, + aux_sym_concurrent_header_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156667] = 4, - ACTIONS(13257), 1, - anon_sym_COMMA, - ACTIONS(14540), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym_coarray_index_repeat2, + [156530] = 3, + STATE(1216), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156681] = 4, - ACTIONS(13257), 1, + ACTIONS(14535), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156542] = 4, + ACTIONS(13308), 1, anon_sym_COMMA, - ACTIONS(14540), 1, - anon_sym_RBRACK, - STATE(7044), 1, - aux_sym_coarray_index_repeat2, + ACTIONS(14537), 1, + anon_sym_RPAREN, + STATE(6870), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156695] = 4, - ACTIONS(13333), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13335), 1, - aux_sym_end_function_statement_token1, - STATE(985), 1, - sym_end_function_statement, + [156556] = 3, + STATE(868), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156709] = 4, - ACTIONS(14542), 1, - anon_sym_COMMA, - ACTIONS(14544), 1, - anon_sym_RBRACK, - STATE(6495), 1, - aux_sym_coarray_index_repeat1, + ACTIONS(14539), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156568] = 3, + STATE(1388), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156723] = 4, - ACTIONS(9448), 1, - anon_sym_COMMA, - ACTIONS(14546), 1, + ACTIONS(14541), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156580] = 4, + ACTIONS(10237), 1, anon_sym_RPAREN, - STATE(6508), 1, - aux_sym__argument_list_repeat1, + ACTIONS(14543), 1, + anon_sym_COMMA, + STATE(7017), 1, + aux_sym_equivalence_set_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156737] = 3, - STATE(701), 1, + [156594] = 3, + STATE(1094), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14548), 2, + ACTIONS(14546), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156749] = 4, - ACTIONS(14550), 1, - anon_sym_COMMA, - ACTIONS(14552), 1, - anon_sym_RPAREN, - STATE(6665), 1, - aux_sym__forall_control_expression_repeat1, + [156606] = 3, + STATE(1490), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156763] = 4, - ACTIONS(14554), 1, + ACTIONS(14548), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156618] = 4, + ACTIONS(13308), 1, anon_sym_COMMA, - ACTIONS(14556), 1, + ACTIONS(14550), 1, anon_sym_RPAREN, - STATE(6811), 1, - aux_sym_allocate_statement_repeat1, + STATE(6883), 1, + aux_sym_parameters_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156777] = 4, - ACTIONS(13504), 1, - anon_sym_COMMA, - ACTIONS(14558), 1, - anon_sym_RPAREN, - STATE(6428), 1, - aux_sym_parameters_repeat1, + [156632] = 3, + STATE(996), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156791] = 3, - STATE(4506), 1, + ACTIONS(14552), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156644] = 3, + STATE(758), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14560), 2, + ACTIONS(14554), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156803] = 4, - ACTIONS(14494), 1, + [156656] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14556), 3, + sym__external_end_of_statement, + anon_sym_COMMA, + anon_sym_SEMI, + [156666] = 4, + ACTIONS(11711), 1, aux_sym_end_program_statement_token1, - ACTIONS(14496), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4507), 1, - sym_end_module_procedure_statement, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + STATE(7107), 1, + sym_end_if_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156817] = 3, - STATE(2362), 1, + [156680] = 3, + STATE(1615), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14562), 2, + ACTIONS(13369), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156829] = 3, - STATE(2834), 1, - sym__end_of_statement, + [156692] = 4, + ACTIONS(12940), 1, + sym__integer_literal, + STATE(6507), 1, + sym_statement_label, + STATE(7129), 1, + sym_statement_label_reference, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14564), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [156841] = 3, - STATE(845), 1, + [156706] = 4, + ACTIONS(13423), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13425), 1, + aux_sym_end_program_statement_token2, + STATE(1010), 1, + sym_end_program_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [156720] = 3, + STATE(642), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14566), 2, + ACTIONS(7986), 2, sym__external_end_of_statement, anon_sym_SEMI, - [156853] = 4, - ACTIONS(13981), 1, + [156732] = 4, + ACTIONS(11243), 1, aux_sym_end_program_statement_token1, - ACTIONS(13983), 1, + ACTIONS(11245), 1, aux_sym_end_program_statement_token2, - STATE(1013), 1, + STATE(869), 1, sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156867] = 4, - ACTIONS(10672), 1, - anon_sym_COMMA, - ACTIONS(14568), 1, - anon_sym_RPAREN, - STATE(6363), 1, - aux_sym_preproc_argument_list_repeat1, + [156746] = 3, + STATE(871), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156881] = 4, - ACTIONS(13257), 1, - anon_sym_COMMA, - ACTIONS(14570), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym_coarray_index_repeat2, + ACTIONS(14558), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156758] = 3, + STATE(639), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156895] = 4, - ACTIONS(8671), 1, - anon_sym_COMMA, - ACTIONS(14572), 1, + ACTIONS(14560), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156770] = 4, + ACTIONS(14463), 1, aux_sym_end_program_statement_token1, - ACTIONS(14574), 1, - aux_sym_end_do_loop_statement_token1, + ACTIONS(14465), 1, + aux_sym_end_module_statement_token1, + STATE(872), 1, + sym_end_module_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156909] = 4, - ACTIONS(14303), 1, + [156784] = 4, + ACTIONS(11711), 1, aux_sym_end_program_statement_token1, - ACTIONS(14305), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4837), 1, - sym_end_module_procedure_statement, + ACTIONS(11713), 1, + aux_sym_end_if_statement_token1, + STATE(7117), 1, + sym_end_if_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156923] = 4, - ACTIONS(9466), 1, - anon_sym_COMMA, - ACTIONS(14576), 1, - anon_sym_RPAREN, - STATE(6277), 1, - aux_sym_case_value_range_list_repeat1, + [156798] = 3, + STATE(874), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156937] = 4, - ACTIONS(14578), 1, - aux_sym_implicit_statement_token3, - ACTIONS(14580), 1, - aux_sym_select_case_statement_token2, - ACTIONS(14582), 1, - aux_sym_select_rank_statement_token1, + ACTIONS(14562), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156810] = 3, + STATE(1018), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156951] = 4, - ACTIONS(13257), 1, - anon_sym_COMMA, - ACTIONS(14584), 1, - anon_sym_RBRACK, - STATE(6352), 1, - aux_sym_coarray_index_repeat2, + ACTIONS(14564), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156822] = 3, + STATE(1392), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156965] = 4, - ACTIONS(9188), 1, + ACTIONS(14566), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [156834] = 4, + ACTIONS(9222), 1, aux_sym_end_program_statement_token1, - ACTIONS(9190), 1, + ACTIONS(9224), 1, aux_sym_end_type_statement_token1, - STATE(1375), 1, + STATE(1393), 1, sym_end_type_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [156979] = 4, - ACTIONS(14586), 1, - anon_sym_COMMA, - ACTIONS(14588), 1, - anon_sym_RPAREN, - STATE(6663), 1, - aux_sym__forall_control_expression_repeat1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [156993] = 3, - STATE(583), 1, + [156848] = 3, + STATE(1095), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14590), 2, + ACTIONS(14568), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157005] = 3, - STATE(4475), 1, - sym__end_of_statement, + [156860] = 4, + ACTIONS(14480), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14482), 1, + aux_sym_end_submodule_statement_token1, + STATE(875), 1, + sym_end_submodule_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14592), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157017] = 4, - ACTIONS(14594), 1, - anon_sym_COMMA, - ACTIONS(14597), 1, - anon_sym_RPAREN, - STATE(7054), 1, - aux_sym_implicit_statement_repeat1, + [156874] = 4, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7141), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157031] = 3, - STATE(5106), 1, + [156888] = 3, + STATE(1508), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14599), 2, + ACTIONS(14570), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157043] = 4, - ACTIONS(14494), 1, + [156900] = 4, + ACTIONS(10405), 1, aux_sym_end_program_statement_token1, - ACTIONS(14496), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4479), 1, - sym_end_module_procedure_statement, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7144), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157057] = 4, - ACTIONS(14601), 1, - anon_sym_COMMA, - ACTIONS(14603), 1, - anon_sym_RPAREN, - STATE(6811), 1, - aux_sym_allocate_statement_repeat1, + [156914] = 4, + ACTIONS(10405), 1, + aux_sym_end_program_statement_token1, + ACTIONS(10411), 1, + aux_sym_end_select_statement_token1, + STATE(7145), 1, + sym_end_select_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157071] = 3, - STATE(5177), 1, + [156928] = 4, + ACTIONS(13774), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13776), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4511), 1, + sym_end_subroutine_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [156942] = 3, + STATE(1394), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14605), 2, + ACTIONS(14572), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157083] = 4, - ACTIONS(14116), 1, + [156954] = 4, + ACTIONS(10220), 1, anon_sym_COMMA, - ACTIONS(14607), 1, - anon_sym_RPAREN, - STATE(6923), 1, - aux_sym_associate_statement_repeat1, + ACTIONS(14574), 1, + anon_sym_SLASH, + STATE(7005), 1, + aux_sym_data_value_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157097] = 4, - ACTIONS(13554), 1, - anon_sym_COMMA, - ACTIONS(14609), 1, - anon_sym_RPAREN, - STATE(6529), 1, - aux_sym_implicit_statement_repeat1, + [156968] = 4, + ACTIONS(13423), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13425), 1, + aux_sym_end_program_statement_token2, + STATE(1056), 1, + sym_end_program_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157111] = 3, - STATE(5180), 1, + [156982] = 3, + STATE(4846), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14611), 2, + ACTIONS(14576), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157123] = 4, - ACTIONS(10411), 1, + [156994] = 4, + ACTIONS(13292), 1, aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7374), 1, - sym_end_select_statement, + ACTIONS(13294), 1, + aux_sym_end_function_statement_token1, + STATE(4514), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157137] = 4, - ACTIONS(13526), 1, - aux_sym_end_program_statement_token1, - ACTIONS(13528), 1, - aux_sym_end_module_procedure_statement_token1, - STATE(4888), 1, - sym_end_module_procedure_statement, + [157008] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14578), 1, + anon_sym_RPAREN, + STATE(6472), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157151] = 3, - STATE(5409), 1, + [157022] = 3, + STATE(676), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14613), 2, + ACTIONS(14580), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157163] = 3, - STATE(5403), 1, - sym__end_of_statement, + [157034] = 4, + ACTIONS(7402), 1, + sym__integer_literal, + STATE(3929), 1, + sym_statement_label, + STATE(6529), 1, + sym_statement_label_reference, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14615), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157175] = 3, - STATE(5405), 1, + [157048] = 3, + STATE(670), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14617), 2, + ACTIONS(14582), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157187] = 4, - ACTIONS(13343), 1, + [157060] = 4, + ACTIONS(14584), 1, anon_sym_COMMA, - ACTIONS(14619), 1, - anon_sym_COLON_COLON, - STATE(6455), 1, - aux_sym_derived_type_statement_repeat1, + ACTIONS(14587), 1, + anon_sym_RPAREN, + STATE(7054), 1, + aux_sym_associate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157201] = 3, - STATE(5119), 1, + [157074] = 3, + STATE(1435), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14621), 2, + ACTIONS(14589), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157213] = 4, - ACTIONS(11235), 1, - aux_sym_end_program_statement_token1, - ACTIONS(11237), 1, - aux_sym_end_program_statement_token2, - STATE(846), 1, - sym_end_program_statement, + [157086] = 3, + STATE(739), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157227] = 4, - ACTIONS(13245), 1, + ACTIONS(14591), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157098] = 4, + ACTIONS(13774), 1, aux_sym_end_program_statement_token1, - ACTIONS(13247), 1, + ACTIONS(13776), 1, aux_sym_end_subroutine_statement_token1, - STATE(5015), 1, + STATE(4421), 1, sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157241] = 2, + [157112] = 3, + STATE(2845), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14623), 3, + ACTIONS(14593), 2, sym__external_end_of_statement, - anon_sym_COMMA, anon_sym_SEMI, - [157251] = 4, - ACTIONS(10411), 1, + [157124] = 4, + ACTIONS(13192), 1, aux_sym_end_program_statement_token1, - ACTIONS(10417), 1, - aux_sym_end_select_statement_token1, - STATE(7377), 1, - sym_end_select_statement, + ACTIONS(13194), 1, + aux_sym_end_subroutine_statement_token1, + STATE(4944), 1, + sym_end_subroutine_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157265] = 3, - STATE(1748), 1, + [157138] = 3, + STATE(678), 1, sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14625), 2, + ACTIONS(14595), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157277] = 2, + [157150] = 4, + ACTIONS(14597), 1, + anon_sym_COMMA, + ACTIONS(14599), 1, + anon_sym_RPAREN, + STATE(7012), 1, + aux_sym_concurrent_header_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14627), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157286] = 3, - ACTIONS(14629), 1, - aux_sym_preproc_def_token2, - ACTIONS(14631), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [157164] = 4, + ACTIONS(13760), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13762), 1, + aux_sym_end_module_statement_token1, + STATE(1019), 1, + sym_end_module_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [157178] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14601), 1, + anon_sym_RPAREN, + STATE(7065), 1, + aux_sym__io_arguments_repeat1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157297] = 2, + [157192] = 3, + STATE(1023), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14633), 2, + ACTIONS(14603), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157306] = 3, - ACTIONS(14635), 1, - aux_sym_preproc_def_token2, - ACTIONS(14637), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [157204] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14605), 1, + anon_sym_RPAREN, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157317] = 3, - ACTIONS(14639), 1, - anon_sym_LPAREN2, - STATE(7065), 1, - sym_selector, + [157218] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14607), 1, + anon_sym_RPAREN, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157328] = 2, + [157232] = 3, + STATE(971), 1, + sym__end_of_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14641), 2, + ACTIONS(14609), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157337] = 2, + [157244] = 4, + ACTIONS(14611), 1, + anon_sym_COMMA, + ACTIONS(14613), 1, + anon_sym_RPAREN, + STATE(6291), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13739), 2, + [157258] = 4, + ACTIONS(14615), 1, anon_sym_COMMA, + ACTIONS(14617), 1, anon_sym_RPAREN, - [157346] = 2, + STATE(6291), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14643), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157355] = 2, + [157272] = 4, + ACTIONS(14619), 1, + anon_sym_COMMA, + ACTIONS(14621), 1, + anon_sym_RPAREN, + STATE(6291), 1, + aux_sym_allocate_statement_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14645), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157364] = 3, - ACTIONS(14647), 1, - aux_sym_preproc_def_token2, - ACTIONS(14649), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [157286] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14623), 1, + anon_sym_RPAREN, + STATE(6328), 1, + aux_sym__io_arguments_repeat1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157375] = 2, + [157300] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14625), 1, + anon_sym_RPAREN, + STATE(6468), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14651), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157384] = 2, + [157314] = 4, + ACTIONS(13170), 1, + anon_sym_COMMA, + ACTIONS(14627), 1, + anon_sym_RPAREN, + STATE(6471), 1, + aux_sym__io_arguments_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14653), 2, - aux_sym_use_statement_token2, - aux_sym_use_statement_token3, - [157393] = 3, - ACTIONS(14655), 1, - anon_sym_LPAREN2, - STATE(7459), 1, - sym__statement_function_arg_list, + [157328] = 4, + ACTIONS(13292), 1, + aux_sym_end_program_statement_token1, + ACTIONS(13294), 1, + aux_sym_end_function_statement_token1, + STATE(4396), 1, + sym_end_function_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157404] = 3, - ACTIONS(14657), 1, - aux_sym_preproc_def_token2, - ACTIONS(14659), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [157342] = 3, + ACTIONS(14068), 1, + aux_sym_end_program_statement_token1, + ACTIONS(14070), 1, + aux_sym_end_do_loop_statement_token1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157415] = 3, - ACTIONS(13039), 1, - anon_sym_LPAREN2, - STATE(7658), 1, - sym_parenthesized_expression, + [157353] = 3, + ACTIONS(14629), 1, + anon_sym_COMMA, + ACTIONS(14631), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157426] = 2, + [157364] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14661), 2, + ACTIONS(11161), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157435] = 3, - ACTIONS(14663), 1, + [157373] = 3, + ACTIONS(14633), 1, aux_sym_preproc_def_token2, - ACTIONS(14665), 1, + ACTIONS(14635), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [157446] = 3, - ACTIONS(9497), 1, - aux_sym__intrinsic_type_token5, - ACTIONS(9499), 1, - aux_sym__intrinsic_type_token7, + [157384] = 3, + ACTIONS(14418), 1, + anon_sym_RPAREN, + ACTIONS(14637), 1, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157457] = 3, - ACTIONS(14667), 1, - aux_sym_language_binding_token1, - STATE(6441), 1, - sym_language_binding, + [157395] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157468] = 3, - ACTIONS(14669), 1, - aux_sym_preproc_def_token2, - ACTIONS(14671), 1, - sym_preproc_arg, - ACTIONS(3), 2, + ACTIONS(14639), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157404] = 3, + ACTIONS(14641), 1, + anon_sym_LPAREN2, + STATE(6589), 1, + sym_equivalence_set, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157479] = 2, + [157415] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14673), 2, + ACTIONS(14643), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157488] = 2, + [157424] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14675), 2, + ACTIONS(11463), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157497] = 2, + [157433] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14677), 2, + ACTIONS(14645), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157506] = 3, - ACTIONS(13964), 1, - aux_sym_select_case_statement_token2, - STATE(5654), 1, - sym_case_statement, + [157442] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157517] = 3, - ACTIONS(14639), 1, + ACTIONS(14647), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157451] = 3, + ACTIONS(14649), 1, anon_sym_LPAREN2, - STATE(7066), 1, - sym_selector, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [157528] = 2, + STATE(8160), 1, + sym__statement_function_arg_list, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14679), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157537] = 3, - ACTIONS(14681), 1, + [157462] = 3, + ACTIONS(14651), 1, aux_sym_preproc_def_token2, - ACTIONS(14683), 1, + ACTIONS(14653), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [157548] = 2, + [157473] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11165), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157557] = 2, + ACTIONS(14655), 2, + aux_sym_use_statement_token2, + aux_sym_use_statement_token3, + [157482] = 3, + ACTIONS(14657), 1, + aux_sym__intrinsic_type_token5, + ACTIONS(14659), 1, + aux_sym__intrinsic_type_token7, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6792), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157566] = 3, - ACTIONS(14685), 1, - anon_sym_COMMA, - STATE(6078), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + [157493] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157577] = 2, + ACTIONS(14661), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157502] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14687), 2, - aux_sym__kind_token1, - aux_sym__kind_token2, - [157586] = 2, + ACTIONS(14663), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157511] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14689), 2, + ACTIONS(14665), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157595] = 3, - ACTIONS(14691), 1, + [157520] = 3, + ACTIONS(14667), 1, aux_sym_preproc_def_token2, - ACTIONS(14693), 1, + ACTIONS(14669), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [157606] = 2, + [157531] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14695), 2, + ACTIONS(14671), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157615] = 3, - ACTIONS(4331), 1, - anon_sym_LPAREN2, - ACTIONS(4333), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [157626] = 2, + [157540] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14697), 2, + ACTIONS(14673), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157635] = 2, + [157549] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(7100), 2, + ACTIONS(14675), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157644] = 2, - ACTIONS(21), 2, + [157558] = 3, + ACTIONS(14677), 1, + aux_sym_preproc_def_token2, + ACTIONS(14679), 1, + sym_preproc_arg, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(14699), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157653] = 2, + [157569] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14701), 2, + ACTIONS(14681), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157662] = 2, + [157578] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11141), 2, + ACTIONS(14683), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157671] = 2, + [157587] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14703), 2, + ACTIONS(14685), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157680] = 3, - ACTIONS(7670), 1, - anon_sym_LPAREN2, - STATE(7400), 1, - sym_parenthesized_expression, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [157691] = 3, - ACTIONS(13589), 1, - aux_sym_select_rank_statement_token1, - STATE(5723), 1, - sym_rank_statement, + [157596] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157702] = 2, + ACTIONS(14687), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157605] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14026), 2, + ACTIONS(14157), 2, anon_sym_COMMA, anon_sym_RPAREN, - [157711] = 3, - ACTIONS(14705), 1, + [157614] = 3, + ACTIONS(14689), 1, aux_sym_preproc_def_token2, - ACTIONS(14707), 1, + ACTIONS(14691), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [157722] = 3, - ACTIONS(4323), 1, - anon_sym_LPAREN2, - ACTIONS(4325), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [157625] = 3, + ACTIONS(14693), 1, + anon_sym_COMMA, + ACTIONS(14695), 1, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157733] = 2, + [157636] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14709), 2, + ACTIONS(14697), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157742] = 2, + [157645] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14709), 2, + ACTIONS(14699), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157751] = 2, + [157654] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14709), 2, + ACTIONS(14701), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157760] = 3, - ACTIONS(14711), 1, - anon_sym_RPAREN, - ACTIONS(14713), 1, - anon_sym_COLON, + [157663] = 3, + ACTIONS(7654), 1, + anon_sym_LPAREN2, + STATE(6864), 1, + sym_parenthesized_expression, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [157674] = 3, + ACTIONS(9509), 1, + anon_sym_LBRACK, + STATE(3346), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157771] = 2, + [157685] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14715), 2, + ACTIONS(14703), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157694] = 3, + ACTIONS(13282), 1, anon_sym_RPAREN, - anon_sym_COLON, - [157780] = 2, + ACTIONS(14705), 1, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(5500), 2, + [157705] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14707), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157789] = 2, + [157714] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14717), 2, + ACTIONS(14709), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157798] = 3, - ACTIONS(13964), 1, - aux_sym_select_case_statement_token2, - STATE(5744), 1, - sym_case_statement, + [157723] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157809] = 2, + ACTIONS(14711), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157732] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11145), 2, + ACTIONS(6852), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157818] = 3, - ACTIONS(14719), 1, + [157741] = 3, + ACTIONS(14713), 1, aux_sym_preproc_def_token2, - ACTIONS(14721), 1, + ACTIONS(14715), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [157829] = 2, + [157752] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14723), 2, - aux_sym_defined_io_procedure_token3, - aux_sym_defined_io_procedure_token4, - [157838] = 3, - ACTIONS(13964), 1, - aux_sym_select_case_statement_token2, - STATE(5825), 1, - sym_case_statement, + ACTIONS(14717), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157761] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157849] = 3, - ACTIONS(9980), 1, - aux_sym__intrinsic_type_token5, - ACTIONS(9982), 1, - aux_sym__intrinsic_type_token7, + ACTIONS(14719), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157770] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157860] = 2, + ACTIONS(13331), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [157779] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14725), 2, + ACTIONS(14721), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157869] = 3, - ACTIONS(10033), 1, - anon_sym_LPAREN2, - STATE(2685), 1, - sym__io_arguments, + [157788] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157880] = 2, + ACTIONS(14723), 2, + aux_sym__kind_token1, + aux_sym__kind_token2, + [157797] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14727), 2, + ACTIONS(14725), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157889] = 2, + [157806] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14729), 2, + ACTIONS(14727), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157898] = 2, + [157815] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14731), 2, + ACTIONS(14729), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157907] = 2, + [157824] = 3, + ACTIONS(14731), 1, + anon_sym_LPAREN2, + STATE(6828), 1, + sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12430), 2, + [157835] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14733), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157916] = 2, + [157844] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13938), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [157925] = 3, - ACTIONS(4335), 1, - anon_sym_LPAREN2, - ACTIONS(4337), 1, - aux_sym_preproc_include_token2, + ACTIONS(14735), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [157853] = 3, + ACTIONS(14737), 1, + aux_sym_preproc_def_token2, + ACTIONS(14739), 1, + sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [157936] = 3, - ACTIONS(13589), 1, - aux_sym_select_rank_statement_token1, - STATE(5809), 1, - sym_rank_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [157947] = 2, + [157864] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9793), 2, + ACTIONS(14741), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157956] = 3, - ACTIONS(5498), 1, - aux_sym_end_program_statement_token1, - ACTIONS(5500), 1, - aux_sym_end_if_statement_token1, + [157873] = 3, + ACTIONS(14731), 1, + anon_sym_LPAREN2, + STATE(6840), 1, + sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [157967] = 2, + [157884] = 3, + ACTIONS(9978), 1, + aux_sym__intrinsic_type_token5, + ACTIONS(9980), 1, + aux_sym__intrinsic_type_token7, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14733), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [157976] = 2, + [157895] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14735), 2, + ACTIONS(14743), 2, sym__external_end_of_statement, anon_sym_SEMI, - [157985] = 3, - ACTIONS(13297), 1, - anon_sym_RPAREN, - ACTIONS(14737), 1, - anon_sym_COMMA, - ACTIONS(21), 2, + [157904] = 3, + ACTIONS(14745), 1, + aux_sym_preproc_def_token2, + ACTIONS(14747), 1, + sym_preproc_arg, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [157996] = 3, - ACTIONS(14739), 1, + [157915] = 3, + ACTIONS(14749), 1, aux_sym_preproc_def_token2, - ACTIONS(14741), 1, + ACTIONS(14751), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158007] = 2, + [157926] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14743), 2, + ACTIONS(14753), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158016] = 2, + [157935] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14745), 2, + ACTIONS(14755), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158025] = 3, - ACTIONS(14639), 1, - anon_sym_LPAREN2, - STATE(6697), 1, - sym_selector, + [157944] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158036] = 3, - ACTIONS(14747), 1, + ACTIONS(14757), 2, + aux_sym__kind_token1, + aux_sym__kind_token2, + [157953] = 3, + ACTIONS(13184), 1, + aux_sym_select_case_statement_token2, + STATE(5812), 1, + sym_case_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [157964] = 3, + ACTIONS(13184), 1, + aux_sym_select_case_statement_token2, + STATE(5813), 1, + sym_case_statement, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [157975] = 3, + ACTIONS(14759), 1, anon_sym_LPAREN2, - STATE(6135), 1, - sym_equivalence_set, + STATE(769), 1, + sym_parenthesized_expression, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158047] = 2, + [157986] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9458), 2, + ACTIONS(14761), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158056] = 2, + [157995] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14749), 2, + ACTIONS(14763), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158065] = 2, + [158004] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11149), 2, + ACTIONS(14765), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158074] = 3, - ACTIONS(14751), 1, - aux_sym_preproc_def_token2, - ACTIONS(14753), 1, - sym_preproc_arg, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [158085] = 2, + [158013] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14755), 2, - aux_sym__kind_token1, - aux_sym__kind_token2, - [158094] = 2, + ACTIONS(14767), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158022] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14757), 2, + ACTIONS(14769), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158103] = 2, + [158031] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14759), 2, + ACTIONS(8374), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158112] = 2, + [158040] = 3, + ACTIONS(9428), 1, + aux_sym__intrinsic_type_token5, + ACTIONS(9430), 1, + aux_sym__intrinsic_type_token7, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6718), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158121] = 3, - ACTIONS(13383), 1, - aux_sym_select_rank_statement_token1, - STATE(7467), 1, - sym_rank_statement, + [158051] = 3, + ACTIONS(13184), 1, + aux_sym_select_case_statement_token2, + STATE(5701), 1, + sym_case_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158132] = 2, + [158062] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14761), 2, + ACTIONS(11179), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158141] = 3, - ACTIONS(14763), 1, + [158071] = 3, + ACTIONS(14771), 1, aux_sym_preproc_def_token2, - ACTIONS(14765), 1, + ACTIONS(14773), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158152] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(14767), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158161] = 3, - ACTIONS(14769), 1, + [158082] = 3, + ACTIONS(14775), 1, aux_sym_preproc_def_token2, - ACTIONS(14771), 1, + ACTIONS(14777), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158172] = 3, - ACTIONS(13589), 1, - aux_sym_select_rank_statement_token1, - STATE(5704), 1, - sym_rank_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [158183] = 2, + [158093] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14773), 2, + ACTIONS(6756), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158192] = 2, + [158102] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14775), 2, + ACTIONS(14779), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158201] = 2, + [158111] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14777), 2, + ACTIONS(14781), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158210] = 3, - ACTIONS(14779), 1, + [158120] = 3, + ACTIONS(14783), 1, aux_sym_preproc_def_token2, - ACTIONS(14781), 1, + ACTIONS(14785), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158221] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(8382), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158230] = 3, - ACTIONS(14783), 1, + [158131] = 3, + ACTIONS(14787), 1, aux_sym_preproc_def_token2, - ACTIONS(14785), 1, + ACTIONS(14789), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158241] = 2, + [158142] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14787), 2, + ACTIONS(14791), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158250] = 2, + [158151] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14789), 2, + ACTIONS(11145), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158259] = 2, + [158160] = 3, + ACTIONS(14793), 1, + anon_sym_RPAREN, + ACTIONS(14795), 1, + aux_sym__standalone_type_qualifier_token8, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14791), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158268] = 2, + [158171] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14793), 2, + ACTIONS(11141), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158277] = 2, + [158180] = 3, + ACTIONS(14797), 1, + anon_sym_COMMA, + ACTIONS(14799), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14795), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158286] = 2, + [158191] = 3, + ACTIONS(13320), 1, + aux_sym_select_rank_statement_token1, + STATE(5817), 1, + sym_rank_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14797), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158295] = 3, - ACTIONS(14799), 1, - aux_sym_preproc_def_token2, - ACTIONS(14801), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [158202] = 3, + ACTIONS(13320), 1, + aux_sym_select_rank_statement_token1, + STATE(5818), 1, + sym_rank_statement, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158306] = 2, + [158213] = 3, + ACTIONS(5472), 1, + aux_sym_end_program_statement_token1, + ACTIONS(5474), 1, + aux_sym_end_if_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14803), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158315] = 3, - ACTIONS(14805), 1, + [158224] = 3, + ACTIONS(14801), 1, aux_sym_preproc_def_token2, - ACTIONS(14807), 1, + ACTIONS(14803), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158326] = 2, + [158235] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14809), 2, + ACTIONS(14805), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158335] = 3, - ACTIONS(13589), 1, - aux_sym_select_rank_statement_token1, - STATE(5647), 1, - sym_rank_statement, + [158244] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158346] = 3, - ACTIONS(13589), 1, - aux_sym_select_rank_statement_token1, - STATE(5703), 1, - sym_rank_statement, + ACTIONS(14807), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158253] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158357] = 2, + ACTIONS(14807), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158262] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6862), 2, + ACTIONS(14807), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158366] = 2, + [158271] = 3, + ACTIONS(14809), 1, + aux_sym_preproc_def_token2, + ACTIONS(14811), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [158282] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14811), 2, + ACTIONS(14813), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158375] = 3, - ACTIONS(14813), 1, - anon_sym_LPAREN2, + [158291] = 3, ACTIONS(14815), 1, - aux_sym_concurrent_locality_token3, + anon_sym_LBRACK, + STATE(3956), 1, + sym_coarray_index, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158386] = 2, + [158302] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(14817), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158395] = 2, + [158311] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9841), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158320] = 3, + ACTIONS(14819), 1, + aux_sym_preproc_def_token2, + ACTIONS(14821), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [158331] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(13494), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [158340] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14819), 2, + ACTIONS(14823), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158404] = 2, + [158349] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14821), 2, + ACTIONS(6704), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158413] = 3, - ACTIONS(14823), 1, - aux_sym_preproc_def_token2, - ACTIONS(14825), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [158358] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158424] = 2, + ACTIONS(14825), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158367] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(14827), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158433] = 2, + [158376] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(14829), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158442] = 2, + [158385] = 3, + ACTIONS(14831), 1, + aux_sym_preproc_def_token2, + ACTIONS(14833), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [158396] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14831), 2, + ACTIONS(6794), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158451] = 3, - ACTIONS(14833), 1, - aux_sym_preproc_def_token2, + [158405] = 3, ACTIONS(14835), 1, + aux_sym_preproc_def_token2, + ACTIONS(14837), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158462] = 3, - ACTIONS(14837), 1, - anon_sym_COMMA, - ACTIONS(14839), 1, - anon_sym_RPAREN, + [158416] = 3, + ACTIONS(14731), 1, + anon_sym_LPAREN2, + STATE(6850), 1, + sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158473] = 3, - ACTIONS(13589), 1, + [158427] = 3, + ACTIONS(13320), 1, aux_sym_select_rank_statement_token1, - STATE(5705), 1, + STATE(5710), 1, sym_rank_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158484] = 2, + [158438] = 3, + ACTIONS(14839), 1, + aux_sym_preproc_def_token2, + ACTIONS(14841), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [158449] = 3, + ACTIONS(14843), 1, + aux_sym_implicit_range_token1, + STATE(6540), 1, + sym_implicit_range, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [158460] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14841), 2, + ACTIONS(14845), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158493] = 2, + [158469] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14843), 2, + ACTIONS(14847), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158502] = 2, + [158478] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14137), 2, + ACTIONS(14849), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [158511] = 2, + anon_sym_RBRACK, + [158487] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14845), 2, + ACTIONS(14851), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158520] = 2, + [158496] = 3, + ACTIONS(14853), 1, + aux_sym_preproc_def_token2, + ACTIONS(14855), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [158507] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14831), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158529] = 3, - ACTIONS(14847), 1, + ACTIONS(14857), 2, + aux_sym_implicit_statement_token3, + aux_sym_implicit_statement_token4, + [158516] = 3, + ACTIONS(14859), 1, aux_sym_preproc_def_token2, - ACTIONS(14849), 1, + ACTIONS(14861), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158540] = 2, + [158527] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14851), 2, + ACTIONS(12936), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158549] = 2, + [158536] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14831), 2, + ACTIONS(14863), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158558] = 3, - ACTIONS(14853), 1, + [158545] = 3, + ACTIONS(14865), 1, aux_sym_preproc_def_token2, - ACTIONS(14855), 1, + ACTIONS(14867), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158569] = 2, + [158556] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14857), 2, + ACTIONS(14869), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158578] = 2, + [158565] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14859), 2, + ACTIONS(14871), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158587] = 3, - ACTIONS(14861), 1, - aux_sym_concurrent_locality_token3, - ACTIONS(14863), 1, - aux_sym_type_statement_token1, + [158574] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158598] = 3, - ACTIONS(14865), 1, - aux_sym_preproc_def_token2, - ACTIONS(14867), 1, - sym_preproc_arg, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [158609] = 3, - ACTIONS(14869), 1, - aux_sym_preproc_def_token2, - ACTIONS(14871), 1, - sym_preproc_arg, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [158620] = 3, - ACTIONS(14873), 1, - aux_sym_preproc_def_token2, - ACTIONS(14875), 1, - sym_preproc_arg, - ACTIONS(3), 2, + ACTIONS(14873), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158583] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158631] = 2, + ACTIONS(14875), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158592] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(14877), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158640] = 2, + [158601] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(14879), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158649] = 3, - ACTIONS(4323), 1, - anon_sym_LPAREN2, - ACTIONS(4325), 1, - aux_sym_preproc_include_token2, + [158610] = 3, + ACTIONS(14881), 1, + aux_sym_preproc_def_token2, + ACTIONS(14883), 1, + sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158660] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(14881), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158669] = 2, + [158621] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14883), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [158678] = 3, + ACTIONS(14587), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [158630] = 3, ACTIONS(14885), 1, aux_sym_preproc_def_token2, ACTIONS(14887), 1, @@ -594517,21 +594495,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158689] = 2, + [158641] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(14889), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158698] = 2, + [158650] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(14891), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158707] = 3, + [158659] = 3, ACTIONS(14893), 1, aux_sym_preproc_def_token2, ACTIONS(14895), 1, @@ -594539,59 +594517,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158718] = 3, - ACTIONS(14639), 1, - anon_sym_LPAREN2, - STATE(6802), 1, - sym_selector, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [158729] = 2, + [158670] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12430), 2, + ACTIONS(14897), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158738] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(14897), 2, - aux_sym_implicit_statement_token3, - aux_sym_implicit_statement_token4, - [158747] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(10174), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [158756] = 3, + [158679] = 3, ACTIONS(14899), 1, - aux_sym_implicit_range_token1, - STATE(6957), 1, - sym_implicit_range, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [158767] = 3, - ACTIONS(14901), 1, aux_sym_preproc_def_token2, - ACTIONS(14903), 1, + ACTIONS(14901), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158778] = 2, + [158690] = 3, + ACTIONS(14843), 1, + aux_sym_implicit_range_token1, + STATE(7383), 1, + sym_implicit_range, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [158701] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13435), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [158787] = 3, + ACTIONS(14903), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158710] = 3, ACTIONS(14905), 1, aux_sym_preproc_def_token2, ACTIONS(14907), 1, @@ -594599,89 +594555,116 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158798] = 2, + [158721] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14903), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158730] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(14909), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158807] = 2, + [158739] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14903), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158748] = 3, + ACTIONS(14911), 1, + aux_sym_preproc_def_token2, + ACTIONS(14913), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [158759] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14911), 2, + ACTIONS(14915), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158816] = 2, + [158768] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14913), 2, + ACTIONS(14917), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158825] = 3, - ACTIONS(14915), 1, + [158777] = 3, + ACTIONS(14919), 1, aux_sym_preproc_def_token2, - ACTIONS(14917), 1, + ACTIONS(14921), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158836] = 2, + [158788] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14919), 2, + ACTIONS(14923), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158845] = 2, + [158797] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14913), 2, + ACTIONS(14925), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158854] = 3, - ACTIONS(14468), 1, - aux_sym_select_case_statement_token2, - STATE(7740), 1, - sym_case_statement, + [158806] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158865] = 3, - ACTIONS(14921), 1, - aux_sym_preproc_def_token2, - ACTIONS(14923), 1, - sym_preproc_arg, - ACTIONS(3), 2, + ACTIONS(9889), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158815] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158876] = 3, - ACTIONS(14925), 1, - aux_sym_preproc_def_token2, - ACTIONS(14927), 1, - sym_preproc_arg, - ACTIONS(3), 2, + ACTIONS(14917), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158824] = 3, + ACTIONS(13113), 1, + anon_sym_LPAREN2, + STATE(7662), 1, + sym_parenthesized_expression, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158887] = 3, - ACTIONS(14929), 1, + [158835] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(9491), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158844] = 3, + ACTIONS(14927), 1, aux_sym_preproc_def_token2, - ACTIONS(14931), 1, + ACTIONS(14929), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158898] = 2, + [158855] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6848), 2, + ACTIONS(14931), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158907] = 3, + [158864] = 3, ACTIONS(14933), 1, aux_sym_preproc_def_token2, ACTIONS(14935), 1, @@ -594689,54 +594672,84 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158918] = 3, - ACTIONS(14937), 1, - aux_sym_preproc_def_token2, + [158875] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14917), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158884] = 3, + ACTIONS(14641), 1, + anon_sym_LPAREN2, + STATE(6225), 1, + sym_equivalence_set, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [158895] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(14937), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [158904] = 3, ACTIONS(14939), 1, + aux_sym_preproc_def_token2, + ACTIONS(14941), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158929] = 3, - ACTIONS(14941), 1, - anon_sym_COMMA, - ACTIONS(14943), 1, - anon_sym_RPAREN, + [158915] = 3, + ACTIONS(13399), 1, + aux_sym_select_case_statement_token2, + STATE(7869), 1, + sym_case_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [158940] = 3, - ACTIONS(14945), 1, + [158926] = 3, + ACTIONS(14943), 1, aux_sym_preproc_def_token2, - ACTIONS(14947), 1, + ACTIONS(14945), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158951] = 3, - ACTIONS(14949), 1, + [158937] = 3, + ACTIONS(14947), 1, aux_sym_preproc_def_token2, - ACTIONS(14951), 1, + ACTIONS(14949), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158962] = 3, - ACTIONS(14953), 1, + [158948] = 3, + ACTIONS(14951), 1, aux_sym_preproc_def_token2, + ACTIONS(14953), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [158959] = 3, ACTIONS(14955), 1, + aux_sym_preproc_def_token2, + ACTIONS(14957), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158973] = 2, + [158970] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14957), 2, + ACTIONS(14917), 2, sym__external_end_of_statement, anon_sym_SEMI, - [158982] = 3, + [158979] = 3, ACTIONS(14959), 1, aux_sym_preproc_def_token2, ACTIONS(14961), 1, @@ -594744,7 +594757,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [158993] = 3, + [158990] = 3, ACTIONS(14963), 1, aux_sym_preproc_def_token2, ACTIONS(14965), 1, @@ -594752,15 +594765,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159004] = 3, - ACTIONS(13964), 1, - aux_sym_select_case_statement_token2, - STATE(5668), 1, - sym_case_statement, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [159015] = 3, + [159001] = 3, ACTIONS(14967), 1, aux_sym_preproc_def_token2, ACTIONS(14969), 1, @@ -594768,7 +594773,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159026] = 3, + [159012] = 3, ACTIONS(14971), 1, aux_sym_preproc_def_token2, ACTIONS(14973), 1, @@ -594776,1038 +594781,1050 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159037] = 2, + [159023] = 3, + ACTIONS(14975), 1, + aux_sym_preproc_def_token2, + ACTIONS(14977), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [159034] = 3, + ACTIONS(14979), 1, + aux_sym_preproc_def_token2, + ACTIONS(14981), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [159045] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14975), 2, + ACTIONS(8302), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159046] = 3, - ACTIONS(14977), 1, + [159054] = 3, + ACTIONS(14983), 1, aux_sym_preproc_def_token2, - ACTIONS(14979), 1, + ACTIONS(14985), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159057] = 3, - ACTIONS(14981), 1, + [159065] = 3, + ACTIONS(14987), 1, aux_sym_preproc_def_token2, - ACTIONS(14983), 1, + ACTIONS(14989), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159068] = 3, - ACTIONS(14899), 1, - aux_sym_implicit_range_token1, - STATE(7060), 1, - sym_implicit_range, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [159079] = 2, + [159076] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14985), 2, + ACTIONS(14991), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159088] = 3, - ACTIONS(14987), 1, + [159085] = 3, + ACTIONS(14993), 1, aux_sym_preproc_def_token2, - ACTIONS(14989), 1, + ACTIONS(14995), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [159096] = 3, + ACTIONS(14997), 1, + aux_sym_preproc_def_token2, + ACTIONS(14999), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159099] = 3, - ACTIONS(14991), 1, + [159107] = 3, + ACTIONS(15001), 1, aux_sym_preproc_def_token2, - ACTIONS(14993), 1, + ACTIONS(15003), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159110] = 3, - ACTIONS(14995), 1, + [159118] = 3, + ACTIONS(15005), 1, aux_sym_preproc_def_token2, - ACTIONS(14997), 1, + ACTIONS(15007), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159121] = 3, - ACTIONS(14999), 1, + [159129] = 3, + ACTIONS(15009), 1, aux_sym_preproc_def_token2, - ACTIONS(15001), 1, + ACTIONS(15011), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159132] = 3, - ACTIONS(15003), 1, + [159140] = 3, + ACTIONS(15013), 1, aux_sym_preproc_def_token2, - ACTIONS(15005), 1, + ACTIONS(15015), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159143] = 3, - ACTIONS(15007), 1, + [159151] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(15017), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [159160] = 3, + ACTIONS(15019), 1, aux_sym_preproc_def_token2, - ACTIONS(15009), 1, + ACTIONS(15021), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159154] = 3, - ACTIONS(15011), 1, + [159171] = 3, + ACTIONS(15023), 1, aux_sym_preproc_def_token2, - ACTIONS(15013), 1, + ACTIONS(15025), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159165] = 2, + [159182] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15015), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [159174] = 3, - ACTIONS(15017), 1, + ACTIONS(10204), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159191] = 3, + ACTIONS(15027), 1, aux_sym_preproc_def_token2, - ACTIONS(15019), 1, + ACTIONS(15029), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159185] = 3, - ACTIONS(15021), 1, + [159202] = 3, + ACTIONS(15031), 1, aux_sym_preproc_def_token2, - ACTIONS(15023), 1, + ACTIONS(15033), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159196] = 2, + [159213] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(6746), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [159205] = 3, - ACTIONS(15025), 1, + ACTIONS(9546), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159222] = 3, + ACTIONS(9996), 1, + anon_sym_LPAREN2, + STATE(2689), 1, + sym__io_arguments, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [159233] = 3, + ACTIONS(15035), 1, aux_sym_preproc_def_token2, - ACTIONS(15027), 1, + ACTIONS(15037), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159216] = 3, - ACTIONS(15029), 1, + [159244] = 3, + ACTIONS(15039), 1, aux_sym_preproc_def_token2, - ACTIONS(15031), 1, + ACTIONS(15041), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159227] = 2, + [159255] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10218), 2, + ACTIONS(15043), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159236] = 3, - ACTIONS(15033), 1, + [159264] = 3, + ACTIONS(15045), 1, aux_sym_preproc_def_token2, - ACTIONS(15035), 1, + ACTIONS(15047), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159247] = 3, - ACTIONS(15037), 1, + [159275] = 3, + ACTIONS(15049), 1, aux_sym_preproc_def_token2, - ACTIONS(15039), 1, + ACTIONS(15051), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159258] = 3, - ACTIONS(15041), 1, + [159286] = 3, + ACTIONS(15053), 1, aux_sym_preproc_def_token2, - ACTIONS(15043), 1, + ACTIONS(15055), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159269] = 3, - ACTIONS(15045), 1, + [159297] = 3, + ACTIONS(15057), 1, aux_sym_preproc_def_token2, - ACTIONS(15047), 1, + ACTIONS(15059), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159280] = 3, - ACTIONS(13463), 1, - anon_sym_RPAREN, - ACTIONS(15049), 1, - anon_sym_COMMA, - ACTIONS(21), 2, + [159308] = 3, + ACTIONS(15061), 1, + aux_sym_preproc_def_token2, + ACTIONS(15063), 1, + sym_preproc_arg, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159291] = 3, - ACTIONS(15051), 1, + [159319] = 3, + ACTIONS(15065), 1, aux_sym_preproc_def_token2, - ACTIONS(15053), 1, + ACTIONS(15067), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159302] = 3, - ACTIONS(15055), 1, + [159330] = 3, + ACTIONS(15069), 1, aux_sym_preproc_def_token2, - ACTIONS(15057), 1, + ACTIONS(15071), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [159341] = 3, + ACTIONS(15073), 1, + aux_sym_preproc_def_token2, + ACTIONS(15075), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159313] = 2, + [159352] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15059), 2, + ACTIONS(15077), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159322] = 3, - ACTIONS(15061), 1, + [159361] = 3, + ACTIONS(15079), 1, aux_sym_preproc_def_token2, - ACTIONS(15063), 1, + ACTIONS(15081), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159333] = 3, - ACTIONS(15065), 1, + [159372] = 3, + ACTIONS(15083), 1, aux_sym_preproc_def_token2, - ACTIONS(15067), 1, + ACTIONS(15085), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159344] = 2, + [159383] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15069), 2, + ACTIONS(12673), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159353] = 3, - ACTIONS(14861), 1, - aux_sym_concurrent_locality_token3, - ACTIONS(15071), 1, - aux_sym_type_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [159364] = 3, - ACTIONS(15073), 1, + [159392] = 3, + ACTIONS(15087), 1, aux_sym_preproc_def_token2, - ACTIONS(15075), 1, + ACTIONS(15089), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159375] = 3, - ACTIONS(15077), 1, + [159403] = 3, + ACTIONS(15091), 1, aux_sym_preproc_def_token2, - ACTIONS(15079), 1, + ACTIONS(15093), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159386] = 3, - ACTIONS(15081), 1, + [159414] = 3, + ACTIONS(14731), 1, + anon_sym_LPAREN2, + STATE(6635), 1, + sym_selector, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [159425] = 3, + ACTIONS(15095), 1, aux_sym_preproc_def_token2, - ACTIONS(15083), 1, + ACTIONS(15097), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159397] = 3, - ACTIONS(15085), 1, + [159436] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(15099), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [159445] = 3, + ACTIONS(15101), 1, aux_sym_preproc_def_token2, - ACTIONS(15087), 1, + ACTIONS(15103), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159408] = 3, - ACTIONS(15089), 1, + [159456] = 3, + ACTIONS(15105), 1, aux_sym_preproc_def_token2, - ACTIONS(15091), 1, + ACTIONS(15107), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159419] = 3, - ACTIONS(15093), 1, + [159467] = 3, + ACTIONS(15109), 1, aux_sym_preproc_def_token2, - ACTIONS(15095), 1, + ACTIONS(15111), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159430] = 3, - ACTIONS(15097), 1, + [159478] = 3, + ACTIONS(15113), 1, aux_sym_preproc_def_token2, - ACTIONS(15099), 1, + ACTIONS(15115), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159441] = 3, - ACTIONS(15101), 1, + [159489] = 3, + ACTIONS(14731), 1, anon_sym_LPAREN2, - STATE(768), 1, - sym_parenthesized_expression, + STATE(6914), 1, + sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159452] = 3, - ACTIONS(15103), 1, + [159500] = 3, + ACTIONS(15117), 1, aux_sym_preproc_def_token2, - ACTIONS(15105), 1, + ACTIONS(15119), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159463] = 3, - ACTIONS(15107), 1, + [159511] = 3, + ACTIONS(15121), 1, aux_sym_preproc_def_token2, - ACTIONS(15109), 1, + ACTIONS(15123), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159474] = 2, + [159522] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15111), 2, + ACTIONS(15125), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159483] = 3, - ACTIONS(15113), 1, + [159531] = 3, + ACTIONS(15127), 1, aux_sym_preproc_def_token2, - ACTIONS(15115), 1, + ACTIONS(15129), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159494] = 3, - ACTIONS(15117), 1, + [159542] = 3, + ACTIONS(15131), 1, aux_sym_preproc_def_token2, - ACTIONS(15119), 1, + ACTIONS(15133), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159505] = 2, + [159553] = 3, + ACTIONS(15135), 1, + aux_sym_language_binding_token1, + STATE(6902), 1, + sym_language_binding, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13490), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159514] = 3, - ACTIONS(15121), 1, + [159564] = 3, + ACTIONS(15137), 1, aux_sym_preproc_def_token2, - ACTIONS(15123), 1, + ACTIONS(15139), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159525] = 3, - ACTIONS(15125), 1, + [159575] = 3, + ACTIONS(15141), 1, aux_sym_preproc_def_token2, - ACTIONS(15127), 1, + ACTIONS(15143), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159536] = 2, - ACTIONS(21), 2, + [159586] = 3, + ACTIONS(15145), 1, + aux_sym_preproc_def_token2, + ACTIONS(15147), 1, + sym_preproc_arg, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(15129), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [159545] = 3, - ACTIONS(15131), 1, + [159597] = 3, + ACTIONS(15149), 1, aux_sym_preproc_def_token2, - ACTIONS(15133), 1, + ACTIONS(15151), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159556] = 3, - ACTIONS(15135), 1, + [159608] = 3, + ACTIONS(15153), 1, aux_sym_preproc_def_token2, - ACTIONS(15137), 1, + ACTIONS(15155), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159567] = 3, - ACTIONS(15139), 1, + [159619] = 3, + ACTIONS(15157), 1, aux_sym_preproc_def_token2, - ACTIONS(15141), 1, + ACTIONS(15159), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159578] = 3, - ACTIONS(15143), 1, + [159630] = 3, + ACTIONS(15161), 1, aux_sym_preproc_def_token2, - ACTIONS(15145), 1, + ACTIONS(15163), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159589] = 3, - ACTIONS(15147), 1, + [159641] = 3, + ACTIONS(15165), 1, aux_sym_preproc_def_token2, - ACTIONS(15149), 1, + ACTIONS(15167), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159600] = 3, - ACTIONS(15151), 1, + [159652] = 3, + ACTIONS(15169), 1, aux_sym_preproc_def_token2, - ACTIONS(15153), 1, + ACTIONS(15171), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159611] = 2, + [159663] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15155), 2, + ACTIONS(15173), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159620] = 3, - ACTIONS(15157), 1, + [159672] = 3, + ACTIONS(15175), 1, aux_sym_preproc_def_token2, - ACTIONS(15159), 1, + ACTIONS(15177), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159631] = 3, - ACTIONS(15161), 1, - aux_sym_preproc_def_token2, - ACTIONS(15163), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [159683] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159642] = 3, - ACTIONS(14639), 1, - anon_sym_LPAREN2, - STATE(6291), 1, - sym_selector, + ACTIONS(15125), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [159692] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159653] = 2, + ACTIONS(15179), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [159701] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15165), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [159662] = 3, - ACTIONS(15167), 1, - aux_sym_preproc_def_token2, - ACTIONS(15169), 1, - sym_preproc_arg, - ACTIONS(3), 2, + ACTIONS(15125), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [159710] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159673] = 3, - ACTIONS(15171), 1, - aux_sym_preproc_def_token2, - ACTIONS(15173), 1, - sym_preproc_arg, - ACTIONS(3), 2, + ACTIONS(15181), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [159719] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159684] = 3, - ACTIONS(15175), 1, - aux_sym_preproc_def_token2, - ACTIONS(15177), 1, - sym_preproc_arg, - ACTIONS(3), 2, + ACTIONS(15183), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [159728] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159695] = 3, - ACTIONS(15179), 1, + ACTIONS(14263), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159737] = 3, + ACTIONS(15185), 1, aux_sym_preproc_def_token2, - ACTIONS(15181), 1, + ACTIONS(15187), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159706] = 3, - ACTIONS(15183), 1, + [159748] = 3, + ACTIONS(15189), 1, aux_sym_preproc_def_token2, - ACTIONS(15185), 1, + ACTIONS(15191), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [159717] = 3, - ACTIONS(15187), 1, - aux_sym_preproc_def_token2, - ACTIONS(15189), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [159759] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159728] = 2, + ACTIONS(15193), 2, + aux_sym_defined_io_procedure_token3, + aux_sym_defined_io_procedure_token4, + [159768] = 3, + ACTIONS(13184), 1, + aux_sym_select_case_statement_token2, + STATE(5820), 1, + sym_case_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9803), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [159737] = 2, - ACTIONS(21), 2, + [159779] = 3, + ACTIONS(4345), 1, + anon_sym_LPAREN2, + ACTIONS(4347), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(9701), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159746] = 2, - ACTIONS(21), 2, + [159790] = 3, + ACTIONS(4349), 1, + anon_sym_LPAREN2, + ACTIONS(4351), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(14913), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [159755] = 2, + [159801] = 3, + ACTIONS(15195), 1, + anon_sym_LPAREN2, + ACTIONS(15197), 1, + aux_sym_concurrent_locality_token3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15191), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [159764] = 3, - ACTIONS(15193), 1, + [159812] = 3, + ACTIONS(15199), 1, anon_sym_LPAREN2, - ACTIONS(15195), 1, + ACTIONS(15201), 1, aux_sym_concurrent_locality_token3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159775] = 2, + [159823] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14913), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [159784] = 2, + ACTIONS(9598), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [159832] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15197), 2, + ACTIONS(15203), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159793] = 2, + [159841] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15199), 2, + ACTIONS(15125), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159802] = 2, + [159850] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15201), 2, + ACTIONS(15205), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159811] = 2, + [159859] = 3, + ACTIONS(15207), 1, + anon_sym_LPAREN2, + ACTIONS(15209), 1, + aux_sym_concurrent_locality_token3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15111), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [159820] = 2, + [159870] = 3, + ACTIONS(13320), 1, + aux_sym_select_rank_statement_token1, + STATE(5823), 1, + sym_rank_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15111), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [159829] = 2, + [159881] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15203), 2, + ACTIONS(11173), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159838] = 3, - ACTIONS(15205), 1, - aux_sym_preproc_def_token2, - ACTIONS(15207), 1, - sym_preproc_arg, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [159849] = 2, + [159890] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14110), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159858] = 3, - ACTIONS(4277), 1, - anon_sym_LPAREN2, - ACTIONS(4279), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + ACTIONS(15211), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [159899] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159869] = 2, + ACTIONS(15211), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [159908] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15209), 2, + ACTIONS(15211), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159878] = 2, + [159917] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15211), 2, + ACTIONS(12673), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159887] = 2, + [159926] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(15213), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159896] = 2, + [159935] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(15215), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159905] = 3, + [159944] = 3, ACTIONS(15217), 1, - anon_sym_LBRACK, - STATE(3922), 1, - sym_coarray_index, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [159916] = 2, + aux_sym_concurrent_locality_token3, + ACTIONS(15219), 1, + aux_sym_type_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15219), 2, - aux_sym_defined_io_procedure_token3, - aux_sym_defined_io_procedure_token4, - [159925] = 3, - ACTIONS(15221), 1, - anon_sym_RPAREN, - ACTIONS(15223), 1, - aux_sym__standalone_type_qualifier_token8, + [159955] = 3, + ACTIONS(13546), 1, + aux_sym_select_rank_statement_token1, + STATE(8202), 1, + sym_rank_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159936] = 2, - ACTIONS(21), 2, + [159966] = 3, + ACTIONS(4255), 1, + anon_sym_LPAREN2, + ACTIONS(4257), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(13522), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159945] = 2, + [159977] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15111), 2, + ACTIONS(15221), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159954] = 3, - ACTIONS(15225), 1, + [159986] = 3, + ACTIONS(15223), 1, anon_sym_LPAREN2, - ACTIONS(15227), 1, + ACTIONS(15225), 1, aux_sym_concurrent_locality_token3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159965] = 3, - ACTIONS(15229), 1, + [159997] = 3, + ACTIONS(15227), 1, anon_sym_LPAREN2, - ACTIONS(15231), 1, + ACTIONS(15229), 1, aux_sym_concurrent_locality_token3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159976] = 2, + [160008] = 3, + ACTIONS(4315), 1, + anon_sym_LPAREN2, + ACTIONS(4317), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [160019] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15233), 2, + ACTIONS(15231), 2, sym__external_end_of_statement, anon_sym_SEMI, - [159985] = 3, + [160028] = 3, + ACTIONS(15233), 1, + anon_sym_LPAREN2, ACTIONS(15235), 1, - aux_sym_preproc_def_token2, - ACTIONS(15237), 1, - sym_preproc_arg, - ACTIONS(3), 2, + aux_sym_concurrent_locality_token3, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [159996] = 3, - ACTIONS(14747), 1, - anon_sym_LPAREN2, - STATE(6306), 1, - sym_equivalence_set, + [160039] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(15237), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160048] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160007] = 2, + ACTIONS(11173), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160057] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(15239), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [160016] = 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160066] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(15241), 2, - aux_sym__kind_token1, - aux_sym__kind_token2, - [160025] = 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160075] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(15243), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160034] = 3, - ACTIONS(14639), 1, - anon_sym_LPAREN2, - STATE(7058), 1, - sym_selector, + [160084] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160045] = 3, - ACTIONS(15245), 1, - aux_sym__intrinsic_type_token5, + ACTIONS(15245), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160093] = 3, + ACTIONS(14330), 1, + anon_sym_RPAREN, ACTIONS(15247), 1, - aux_sym__intrinsic_type_token7, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160056] = 2, + [160104] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(15249), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160065] = 3, - ACTIONS(15251), 1, - aux_sym_preproc_def_token2, - ACTIONS(15253), 1, - sym_preproc_arg, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [160076] = 2, + [160113] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15255), 2, + ACTIONS(15251), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160085] = 3, - ACTIONS(15257), 1, - anon_sym_COMMA, - ACTIONS(15259), 1, - anon_sym_RPAREN, + [160122] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160096] = 2, + ACTIONS(15253), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160131] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15261), 2, + ACTIONS(15255), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160105] = 2, + [160140] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10218), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160114] = 2, + ACTIONS(15257), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160149] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15263), 2, - aux_sym_implicit_statement_token3, - aux_sym_implicit_statement_token4, - [160123] = 2, + ACTIONS(15259), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160158] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(12783), 2, + ACTIONS(15261), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160132] = 3, - ACTIONS(15265), 1, - anon_sym_LPAREN2, - ACTIONS(15267), 1, - aux_sym_concurrent_locality_token3, + [160167] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160143] = 3, - ACTIONS(15269), 1, + ACTIONS(15263), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160176] = 3, + ACTIONS(4255), 1, anon_sym_LPAREN2, - ACTIONS(15271), 1, - aux_sym_concurrent_locality_token3, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [160154] = 3, - ACTIONS(14899), 1, - aux_sym_implicit_range_token1, - STATE(7385), 1, - sym_implicit_range, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [160165] = 2, - ACTIONS(21), 2, + ACTIONS(4257), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(15273), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [160174] = 3, - ACTIONS(13039), 1, - anon_sym_LPAREN2, - STATE(8009), 1, - sym_parenthesized_expression, + [160187] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160185] = 2, + ACTIONS(15257), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160196] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15275), 2, + ACTIONS(15265), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160194] = 2, + [160205] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15277), 2, + ACTIONS(15257), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160203] = 2, + [160214] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14424), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160212] = 2, + ACTIONS(15257), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160223] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15279), 2, + ACTIONS(15267), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160221] = 3, - ACTIONS(15281), 1, - aux_sym_preproc_def_token2, - ACTIONS(15283), 1, - sym_preproc_arg, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, [160232] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15285), 2, + ACTIONS(15269), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160241] = 3, - ACTIONS(15287), 1, - aux_sym_preproc_def_token2, - ACTIONS(15289), 1, - sym_preproc_arg, - ACTIONS(3), 2, + [160241] = 2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160252] = 2, + ACTIONS(10235), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160250] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15249), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160261] = 2, + ACTIONS(9624), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160259] = 3, + ACTIONS(14731), 1, + anon_sym_LPAREN2, + STATE(6920), 1, + sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15291), 2, - sym__external_end_of_statement, - anon_sym_SEMI, [160270] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15293), 2, + ACTIONS(15271), 2, sym__external_end_of_statement, anon_sym_SEMI, [160279] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15295), 2, + ACTIONS(10231), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160288] = 2, + [160288] = 3, + ACTIONS(15273), 1, + anon_sym_COMMA, + ACTIONS(15275), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13140), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160297] = 2, + [160299] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(10222), 2, + ACTIONS(13661), 2, anon_sym_COMMA, anon_sym_RPAREN, - [160306] = 2, - ACTIONS(21), 2, + [160308] = 3, + ACTIONS(15277), 1, + aux_sym_preproc_def_token2, + ACTIONS(15279), 1, + sym_preproc_arg, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(15297), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160315] = 2, + [160319] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15299), 2, + ACTIONS(15281), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160324] = 3, - ACTIONS(15301), 1, - anon_sym_COMMA, - ACTIONS(15303), 1, - anon_sym_RPAREN, + [160328] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160335] = 2, + ACTIONS(13854), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160337] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15249), 2, + ACTIONS(15283), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160344] = 2, + [160346] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15305), 2, + ACTIONS(15285), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160353] = 2, + [160355] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15307), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160362] = 2, + ACTIONS(14443), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160364] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15309), 2, + ACTIONS(10231), 2, anon_sym_COMMA, anon_sym_RPAREN, - [160371] = 3, - ACTIONS(15311), 1, + [160373] = 3, + ACTIONS(15287), 1, aux_sym_preproc_def_token2, - ACTIONS(15313), 1, + ACTIONS(15289), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [160382] = 2, + [160384] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(14597), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160391] = 3, - ACTIONS(13964), 1, - aux_sym_select_case_statement_token2, - STATE(5769), 1, - sym_case_statement, + ACTIONS(13077), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160393] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, + ACTIONS(15291), 2, + anon_sym_COMMA, + anon_sym_RPAREN, [160402] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15307), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160411] = 3, - ACTIONS(15315), 1, + ACTIONS(14470), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(15317), 1, - aux_sym__standalone_type_qualifier_token8, + [160411] = 3, + ACTIONS(15293), 1, + anon_sym_COMMA, + STATE(6093), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, @@ -595815,6210 +595832,6255 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15319), 2, + ACTIONS(15295), 2, sym__external_end_of_statement, anon_sym_SEMI, [160431] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15321), 2, + ACTIONS(15297), 2, sym__external_end_of_statement, anon_sym_SEMI, [160440] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15323), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(15299), 2, + aux_sym__kind_token1, + aux_sym__kind_token2, [160449] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15307), 2, - sym__external_end_of_statement, - anon_sym_SEMI, + ACTIONS(15301), 2, + aux_sym_implicit_statement_token3, + aux_sym_implicit_statement_token4, [160458] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15325), 2, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(15303), 2, + sym__external_end_of_statement, + anon_sym_SEMI, [160467] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15327), 2, - sym__external_end_of_statement, - anon_sym_SEMI, + ACTIONS(15305), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, [160476] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15329), 2, + ACTIONS(7100), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160485] = 3, - ACTIONS(14572), 1, - aux_sym_end_program_statement_token1, - ACTIONS(14574), 1, - aux_sym_end_do_loop_statement_token1, + [160485] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160496] = 2, + ACTIONS(15307), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160494] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9572), 2, + ACTIONS(13927), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [160505] = 2, + anon_sym_RPAREN, + [160503] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15331), 2, + ACTIONS(15309), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160514] = 2, + [160512] = 3, + ACTIONS(15311), 1, + anon_sym_RPAREN, + ACTIONS(15313), 1, + anon_sym_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15333), 2, - sym__external_end_of_statement, - anon_sym_SEMI, [160523] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15335), 2, - sym__external_end_of_statement, - anon_sym_SEMI, + ACTIONS(15315), 2, + anon_sym_RPAREN, + anon_sym_COLON, [160532] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15337), 2, + ACTIONS(15317), 2, sym__external_end_of_statement, anon_sym_SEMI, [160541] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15339), 2, + ACTIONS(15319), 2, sym__external_end_of_statement, anon_sym_SEMI, [160550] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15341), 2, + ACTIONS(15321), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160559] = 2, - ACTIONS(21), 2, + [160559] = 3, + ACTIONS(15323), 1, + aux_sym_preproc_def_token2, + ACTIONS(15325), 1, + sym_preproc_arg, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - ACTIONS(15343), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160568] = 2, + [160570] = 3, + ACTIONS(14843), 1, + aux_sym_implicit_range_token1, + STATE(6407), 1, + sym_implicit_range, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15345), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160577] = 2, + [160581] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15347), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160586] = 2, + ACTIONS(15327), 2, + aux_sym_defined_io_procedure_token3, + aux_sym_defined_io_procedure_token4, + [160590] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15349), 2, + ACTIONS(15329), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160595] = 2, + [160599] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15351), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160604] = 2, + ACTIONS(14533), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160608] = 3, + ACTIONS(14731), 1, + anon_sym_LPAREN2, + STATE(6519), 1, + sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15353), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160613] = 2, + [160619] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15355), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160622] = 2, + ACTIONS(15331), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [160628] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15307), 2, + ACTIONS(15333), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160631] = 2, + [160637] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9851), 2, + ACTIONS(15335), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160640] = 2, + [160646] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15357), 2, + ACTIONS(15337), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160649] = 3, - ACTIONS(14639), 1, - anon_sym_LPAREN2, - STATE(6860), 1, - sym_selector, + [160655] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160660] = 2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - ACTIONS(15359), 2, + ACTIONS(15339), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160669] = 2, + [160664] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15361), 2, + ACTIONS(11167), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160678] = 2, + [160673] = 3, + ACTIONS(13113), 1, + anon_sym_LPAREN2, + STATE(8297), 1, + sym_parenthesized_expression, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11499), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160687] = 2, + [160684] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15363), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160696] = 2, + ACTIONS(15341), 2, + aux_sym__kind_token1, + aux_sym__kind_token2, + [160693] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15365), 2, + ACTIONS(15343), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160705] = 2, + [160702] = 3, + ACTIONS(14731), 1, + anon_sym_LPAREN2, + STATE(6526), 1, + sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(8222), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160714] = 3, - ACTIONS(13964), 1, - aux_sym_select_case_statement_token2, - STATE(5673), 1, - sym_case_statement, + [160713] = 3, + ACTIONS(14731), 1, + anon_sym_LPAREN2, + STATE(6539), 1, + sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160725] = 3, - ACTIONS(14639), 1, - anon_sym_LPAREN2, - STATE(6862), 1, - sym_selector, + [160724] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160736] = 2, + ACTIONS(15345), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160733] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15367), 2, + ACTIONS(15347), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160745] = 2, + [160742] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(9578), 2, + ACTIONS(15349), 2, anon_sym_COMMA, + anon_sym_COLON_COLON, + [160751] = 3, + ACTIONS(15351), 1, + aux_sym_preproc_def_token2, + ACTIONS(15353), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [160762] = 3, + ACTIONS(15355), 1, anon_sym_RPAREN, - [160754] = 3, - ACTIONS(14639), 1, - anon_sym_LPAREN2, - STATE(6864), 1, - sym_selector, + ACTIONS(15357), 1, + aux_sym__standalone_type_qualifier_token8, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160765] = 2, + [160773] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15369), 2, + ACTIONS(15359), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160774] = 2, + [160782] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15371), 2, + ACTIONS(15361), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160783] = 2, + [160791] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15373), 2, + ACTIONS(15363), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160792] = 3, - ACTIONS(9472), 1, - anon_sym_LBRACK, - STATE(3354), 1, - sym_coarray_index, + [160800] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160803] = 3, - ACTIONS(13039), 1, - anon_sym_LPAREN2, - STATE(8098), 1, - sym_parenthesized_expression, + ACTIONS(15365), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160809] = 3, + ACTIONS(13184), 1, + aux_sym_select_case_statement_token2, + STATE(5650), 1, + sym_case_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160814] = 2, + [160820] = 3, + ACTIONS(13184), 1, + aux_sym_select_case_statement_token2, + STATE(5651), 1, + sym_case_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15375), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160823] = 3, - ACTIONS(7670), 1, - anon_sym_LPAREN2, - STATE(6949), 1, - sym_parenthesized_expression, + [160831] = 3, + ACTIONS(15367), 1, + anon_sym_COMMA, + STATE(6093), 1, + aux_sym_cuda_kernel_argument_list_repeat1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160834] = 2, + [160842] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15377), 2, + ACTIONS(15369), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160843] = 3, - ACTIONS(15379), 1, - anon_sym_COMMA, - STATE(6078), 1, - aux_sym_cuda_kernel_argument_list_repeat1, + [160851] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160854] = 2, + ACTIONS(5474), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160860] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15381), 2, + ACTIONS(9827), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160863] = 2, + [160869] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15383), 2, + ACTIONS(15371), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160872] = 2, + [160878] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11165), 2, + ACTIONS(15373), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160881] = 2, + [160887] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15385), 2, + ACTIONS(15375), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [160896] = 2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + ACTIONS(15377), 2, anon_sym_COMMA, anon_sym_COLON_COLON, - [160890] = 2, + [160905] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15387), 2, + ACTIONS(6722), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160899] = 2, + [160914] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15389), 2, + ACTIONS(15379), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160908] = 3, - ACTIONS(13481), 1, - anon_sym_RPAREN, - ACTIONS(15391), 1, - anon_sym_COMMA, + [160923] = 3, + ACTIONS(13320), 1, + aux_sym_select_rank_statement_token1, + STATE(5656), 1, + sym_rank_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160919] = 3, - ACTIONS(14639), 1, - anon_sym_LPAREN2, - STATE(7061), 1, - sym_selector, + [160934] = 3, + ACTIONS(13320), 1, + aux_sym_select_rank_statement_token1, + STATE(5657), 1, + sym_rank_statement, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160930] = 3, - ACTIONS(15393), 1, + [160945] = 3, + ACTIONS(15381), 1, aux_sym_preproc_def_token2, - ACTIONS(15395), 1, + ACTIONS(15383), 1, sym_preproc_arg, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [160941] = 2, + [160956] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(13692), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160950] = 2, + ACTIONS(15385), 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [160965] = 3, + ACTIONS(15387), 1, + aux_sym_preproc_def_token2, + ACTIONS(15389), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [160976] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15397), 2, + ACTIONS(15391), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160959] = 2, + [160985] = 3, + ACTIONS(14731), 1, + anon_sym_LPAREN2, + STATE(6582), 1, + sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11155), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [160968] = 2, + [160996] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(11173), 2, + ACTIONS(15393), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160977] = 3, - ACTIONS(14639), 1, + [161005] = 3, + ACTIONS(14731), 1, anon_sym_LPAREN2, - STATE(7064), 1, + STATE(6625), 1, sym_selector, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [160988] = 2, + [161016] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15399), 2, + ACTIONS(15395), 2, sym__external_end_of_statement, anon_sym_SEMI, - [160997] = 2, + [161025] = 3, + ACTIONS(15397), 1, + aux_sym_preproc_def_token2, + ACTIONS(15399), 1, + sym_preproc_arg, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [161036] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(15401), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [161006] = 2, + sym__external_end_of_statement, + anon_sym_SEMI, + [161045] = 3, + ACTIONS(13113), 1, + anon_sym_LPAREN2, + STATE(8316), 1, + sym_parenthesized_expression, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [161056] = 2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, ACTIONS(15403), 2, sym__external_end_of_statement, anon_sym_SEMI, - [161015] = 2, + [161065] = 3, + ACTIONS(7654), 1, + anon_sym_LPAREN2, + STATE(7136), 1, + sym_parenthesized_expression, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15405), 2, - sym__external_end_of_statement, - anon_sym_SEMI, - [161024] = 3, - ACTIONS(14861), 1, + [161076] = 3, + ACTIONS(15217), 1, aux_sym_concurrent_locality_token3, - ACTIONS(15407), 1, + ACTIONS(15405), 1, aux_sym_type_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161035] = 2, + [161087] = 3, + ACTIONS(15217), 1, + aux_sym_concurrent_locality_token3, + ACTIONS(15407), 1, + aux_sym_type_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - ACTIONS(15409), 2, - aux_sym__kind_token1, - aux_sym__kind_token2, - [161044] = 2, + [161098] = 3, + ACTIONS(15409), 1, + aux_sym_preproc_def_token2, ACTIONS(15411), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + sym_preproc_arg, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161052] = 2, + [161109] = 2, ACTIONS(15413), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161060] = 2, + [161117] = 2, ACTIONS(15415), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161068] = 2, + [161125] = 2, ACTIONS(15417), 1, - aux_sym_interface_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161076] = 2, + [161133] = 2, ACTIONS(15419), 1, - anon_sym_EQ, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161084] = 2, + [161141] = 2, ACTIONS(15421), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161092] = 2, + [161149] = 2, ACTIONS(15423), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [161157] = 2, + ACTIONS(15425), 1, sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161100] = 2, - ACTIONS(14068), 1, + [161165] = 2, + ACTIONS(13959), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161108] = 2, - ACTIONS(15425), 1, - aux_sym_preproc_if_token2, + [161173] = 2, + ACTIONS(15427), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161116] = 2, - ACTIONS(15427), 1, + [161181] = 2, + ACTIONS(15429), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161124] = 2, - ACTIONS(15429), 1, + [161189] = 2, + ACTIONS(15431), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161132] = 2, - ACTIONS(15431), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [161140] = 2, + [161197] = 2, ACTIONS(15433), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161148] = 2, + [161205] = 2, ACTIONS(15435), 1, - aux_sym_interface_statement_token1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161156] = 2, - ACTIONS(10855), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [161164] = 2, + [161213] = 2, ACTIONS(15437), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_interface_statement_token1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161172] = 2, + [161221] = 2, ACTIONS(15439), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161180] = 2, + [161229] = 2, ACTIONS(15441), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161188] = 2, + [161237] = 2, ACTIONS(15443), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161196] = 2, + [161245] = 2, ACTIONS(15445), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161204] = 2, + [161253] = 2, ACTIONS(15447), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161212] = 2, + [161261] = 2, ACTIONS(15449), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161220] = 2, + [161269] = 2, + ACTIONS(13029), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [161277] = 2, ACTIONS(15451), 1, - anon_sym_LPAREN2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161228] = 2, + [161285] = 2, ACTIONS(15453), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_COMMA, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161236] = 2, + [161293] = 2, ACTIONS(15455), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161244] = 2, + [161301] = 2, ACTIONS(15457), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161252] = 2, + [161309] = 2, ACTIONS(15459), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161260] = 2, + [161317] = 2, ACTIONS(15461), 1, - aux_sym_preproc_if_token2, + anon_sym_EQ_GT, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161268] = 2, + [161325] = 2, ACTIONS(15463), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161276] = 2, + [161333] = 2, ACTIONS(15465), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161284] = 2, + [161341] = 2, ACTIONS(15467), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161292] = 2, + [161349] = 2, ACTIONS(15469), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161300] = 2, + [161357] = 2, ACTIONS(15471), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161308] = 2, + [161365] = 2, ACTIONS(15473), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161316] = 2, + [161373] = 2, ACTIONS(15475), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [161324] = 2, - ACTIONS(13088), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161332] = 2, + [161381] = 2, ACTIONS(15477), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161340] = 2, + [161389] = 2, ACTIONS(15479), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161348] = 2, + [161397] = 2, ACTIONS(15481), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161356] = 2, + [161405] = 2, ACTIONS(15483), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161364] = 2, + [161413] = 2, ACTIONS(15485), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161372] = 2, + [161421] = 2, ACTIONS(15487), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161380] = 2, + [161429] = 2, ACTIONS(15489), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161388] = 2, + [161437] = 2, ACTIONS(15491), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161396] = 2, + [161445] = 2, ACTIONS(15493), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161404] = 2, + [161453] = 2, ACTIONS(15495), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161412] = 2, + [161461] = 2, ACTIONS(15497), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161420] = 2, + [161469] = 2, ACTIONS(15499), 1, - anon_sym_LPAREN2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161428] = 2, + [161477] = 2, ACTIONS(15501), 1, + anon_sym_RPAREN, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [161485] = 2, + ACTIONS(15503), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [161493] = 2, + ACTIONS(15505), 1, sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161436] = 2, - ACTIONS(14096), 1, + [161501] = 2, + ACTIONS(14001), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161444] = 2, - ACTIONS(15503), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + [161509] = 2, + ACTIONS(15507), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161452] = 2, - ACTIONS(15505), 1, - aux_sym_preproc_if_token2, + [161517] = 2, + ACTIONS(15509), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161460] = 2, - ACTIONS(15507), 1, + [161525] = 2, + ACTIONS(15511), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161468] = 2, - ACTIONS(15509), 1, + [161533] = 2, + ACTIONS(15513), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161476] = 2, - ACTIONS(15511), 1, + [161541] = 2, + ACTIONS(15515), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161484] = 2, - ACTIONS(15513), 1, - aux_sym_preproc_if_token2, + [161549] = 2, + ACTIONS(10050), 1, + aux_sym__inline_where_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161492] = 2, - ACTIONS(15515), 1, + [161557] = 2, + ACTIONS(15517), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161500] = 2, - ACTIONS(15517), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [161508] = 2, + [161565] = 2, ACTIONS(15519), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161516] = 2, + [161573] = 2, ACTIONS(15521), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161524] = 2, + [161581] = 2, ACTIONS(15523), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161532] = 2, + [161589] = 2, ACTIONS(15525), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161540] = 2, + [161597] = 2, ACTIONS(15527), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161548] = 2, + [161605] = 2, ACTIONS(15529), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161556] = 2, + [161613] = 2, ACTIONS(15531), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + sym__string_literal, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161564] = 2, + [161621] = 2, ACTIONS(15533), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161572] = 2, + [161629] = 2, ACTIONS(15535), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161580] = 2, + [161637] = 2, ACTIONS(15537), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161588] = 2, + [161645] = 2, + ACTIONS(14486), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [161653] = 2, ACTIONS(15539), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161596] = 2, + [161661] = 2, ACTIONS(15541), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161604] = 2, + [161669] = 2, ACTIONS(15543), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161612] = 2, + [161677] = 2, ACTIONS(15545), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161620] = 2, + [161685] = 2, ACTIONS(15547), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161628] = 2, + [161693] = 2, ACTIONS(15549), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161636] = 2, + [161701] = 2, ACTIONS(15551), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161644] = 2, + [161709] = 2, ACTIONS(15553), 1, - aux_sym_preproc_if_token2, + aux_sym_implicit_range_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161652] = 2, + [161717] = 2, ACTIONS(15555), 1, - aux_sym_preproc_if_token2, + sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161660] = 2, + [161725] = 2, ACTIONS(15557), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161668] = 2, + [161733] = 2, ACTIONS(15559), 1, anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161676] = 2, + [161741] = 2, ACTIONS(15561), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161684] = 2, + [161749] = 2, ACTIONS(15563), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161692] = 2, + [161757] = 2, ACTIONS(15565), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161700] = 2, + [161765] = 2, ACTIONS(15567), 1, - aux_sym_preproc_if_token2, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161708] = 2, + [161773] = 2, ACTIONS(15569), 1, - anon_sym_COLON_COLON, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161716] = 2, + [161781] = 2, ACTIONS(15571), 1, - anon_sym_RPAREN, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161724] = 2, + [161789] = 2, ACTIONS(15573), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161732] = 2, + [161797] = 2, ACTIONS(15575), 1, - anon_sym_SLASH_RPAREN, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161740] = 2, + [161805] = 2, ACTIONS(15577), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161748] = 2, + [161813] = 2, ACTIONS(15579), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161756] = 2, - ACTIONS(14130), 1, + [161821] = 2, + ACTIONS(14034), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161764] = 2, + [161829] = 2, ACTIONS(15581), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161772] = 2, + [161837] = 2, ACTIONS(15583), 1, - aux_sym_preproc_if_token2, + anon_sym_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161780] = 2, + [161845] = 2, ACTIONS(15585), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161788] = 2, - ACTIONS(9972), 1, - aux_sym_do_loop_statement_token1, + [161853] = 2, + ACTIONS(15587), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161796] = 2, - ACTIONS(15587), 1, + [161861] = 2, + ACTIONS(15589), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161804] = 2, - ACTIONS(15589), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [161812] = 2, + [161869] = 2, ACTIONS(15591), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161820] = 2, - ACTIONS(13441), 1, - anon_sym_EQ_GT, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [161828] = 2, + [161877] = 2, ACTIONS(15593), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161836] = 2, + [161885] = 2, ACTIONS(15595), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161844] = 2, + [161893] = 2, ACTIONS(15597), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161852] = 2, + [161901] = 2, ACTIONS(15599), 1, - sym__string_literal, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161860] = 2, + [161909] = 2, ACTIONS(15601), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161868] = 2, + [161917] = 2, ACTIONS(15603), 1, - aux_sym_preproc_if_token2, + anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161876] = 2, + [161925] = 2, ACTIONS(15605), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161884] = 2, + [161933] = 2, ACTIONS(15607), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161892] = 2, + [161941] = 2, ACTIONS(15609), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161900] = 2, + [161949] = 2, ACTIONS(15611), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161908] = 2, - ACTIONS(13469), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [161916] = 2, + [161957] = 2, ACTIONS(15613), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161924] = 2, + [161965] = 2, ACTIONS(15615), 1, - anon_sym_RBRACK, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [161932] = 2, - ACTIONS(7506), 1, - aux_sym_preproc_include_token2, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [161940] = 2, + [161973] = 2, ACTIONS(15617), 1, - aux_sym_preproc_if_token2, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161948] = 2, + [161981] = 2, ACTIONS(15619), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161956] = 2, + [161989] = 2, ACTIONS(15621), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161964] = 2, + [161997] = 2, ACTIONS(15623), 1, - aux_sym_type_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161972] = 2, + [162005] = 2, ACTIONS(15625), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161980] = 2, + [162013] = 2, ACTIONS(15627), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161988] = 2, + [162021] = 2, ACTIONS(15629), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [161996] = 2, + [162029] = 2, ACTIONS(15631), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162004] = 2, + [162037] = 2, ACTIONS(15633), 1, - aux_sym__inline_where_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [162012] = 2, - ACTIONS(14144), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [162020] = 2, - ACTIONS(13459), 1, - anon_sym_EQ_GT, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162028] = 2, + [162045] = 2, ACTIONS(15635), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162036] = 2, + [162053] = 2, ACTIONS(15637), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162044] = 2, + [162061] = 2, ACTIONS(15639), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162052] = 2, + [162069] = 2, ACTIONS(15641), 1, - aux_sym_preproc_def_token2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [162077] = 2, + ACTIONS(14058), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162060] = 2, + [162085] = 2, ACTIONS(15643), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162068] = 2, + [162093] = 2, ACTIONS(15645), 1, - aux_sym_preproc_if_token2, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162076] = 2, + [162101] = 2, ACTIONS(15647), 1, - anon_sym_EQ, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [162084] = 2, - ACTIONS(15649), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162092] = 2, - ACTIONS(15651), 1, + [162109] = 2, + ACTIONS(15649), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162100] = 2, + [162117] = 2, + ACTIONS(15651), 1, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [162125] = 2, ACTIONS(15653), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162108] = 2, + [162133] = 2, ACTIONS(15655), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162116] = 2, + [162141] = 2, ACTIONS(15657), 1, - anon_sym_LPAREN2, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162124] = 2, + [162149] = 2, ACTIONS(15659), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162132] = 2, + [162157] = 2, ACTIONS(15661), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162140] = 2, + [162165] = 2, ACTIONS(15663), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162148] = 2, + [162173] = 2, ACTIONS(15665), 1, - aux_sym_preproc_if_token2, + aux_sym_implicit_statement_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162156] = 2, + [162181] = 2, ACTIONS(15667), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162164] = 2, - ACTIONS(13088), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [162172] = 2, + [162189] = 2, ACTIONS(15669), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162180] = 2, + [162197] = 2, ACTIONS(15671), 1, - anon_sym_EQ, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162188] = 2, + [162205] = 2, ACTIONS(15673), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162196] = 2, + [162213] = 2, ACTIONS(15675), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162204] = 2, + [162221] = 2, ACTIONS(15677), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162212] = 2, - ACTIONS(13461), 1, - anon_sym_EQ_GT, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [162220] = 2, + [162229] = 2, ACTIONS(15679), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162228] = 2, + [162237] = 2, ACTIONS(15681), 1, - aux_sym_preproc_if_token2, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162236] = 2, + [162245] = 2, ACTIONS(15683), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162244] = 2, - ACTIONS(9905), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [162252] = 2, + [162253] = 2, ACTIONS(15685), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162260] = 2, + [162261] = 2, ACTIONS(15687), 1, - anon_sym_LF, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [162268] = 2, - ACTIONS(14158), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162276] = 2, + [162269] = 2, ACTIONS(15689), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162284] = 2, + [162277] = 2, ACTIONS(15691), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162292] = 2, + [162285] = 2, ACTIONS(15693), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162300] = 2, + [162293] = 2, ACTIONS(15695), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162308] = 2, + [162301] = 2, ACTIONS(15697), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162316] = 2, + [162309] = 2, ACTIONS(15699), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162324] = 2, + [162317] = 2, ACTIONS(15701), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162332] = 2, + [162325] = 2, ACTIONS(15703), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162340] = 2, - ACTIONS(15705), 1, - aux_sym_preproc_def_token2, + [162333] = 2, + ACTIONS(14080), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162348] = 2, - ACTIONS(15707), 1, + [162341] = 2, + ACTIONS(15705), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162356] = 2, - ACTIONS(15709), 1, + [162349] = 2, + ACTIONS(15707), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162364] = 2, + [162357] = 2, + ACTIONS(15709), 1, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [162365] = 2, ACTIONS(15711), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162372] = 2, + [162373] = 2, ACTIONS(15713), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162380] = 2, + [162381] = 2, ACTIONS(15715), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162388] = 2, + [162389] = 2, ACTIONS(15717), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162396] = 2, + [162397] = 2, ACTIONS(15719), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162404] = 2, + [162405] = 2, ACTIONS(15721), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162412] = 2, + [162413] = 2, ACTIONS(15723), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162420] = 2, + [162421] = 2, ACTIONS(15725), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162428] = 2, + [162429] = 2, ACTIONS(15727), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162436] = 2, + [162437] = 2, ACTIONS(15729), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162444] = 2, + [162445] = 2, ACTIONS(15731), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162452] = 2, + [162453] = 2, ACTIONS(15733), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162460] = 2, + [162461] = 2, ACTIONS(15735), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162468] = 2, + [162469] = 2, ACTIONS(15737), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162476] = 2, + [162477] = 2, ACTIONS(15739), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162484] = 2, + [162485] = 2, ACTIONS(15741), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162492] = 2, + [162493] = 2, ACTIONS(15743), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162500] = 2, + [162501] = 2, ACTIONS(15745), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162508] = 2, + [162509] = 2, ACTIONS(15747), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162516] = 2, + [162517] = 2, ACTIONS(15749), 1, - aux_sym_interface_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162524] = 2, - ACTIONS(14180), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [162532] = 2, + [162525] = 2, ACTIONS(15751), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162540] = 2, + [162533] = 2, ACTIONS(15753), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162548] = 2, + [162541] = 2, ACTIONS(15755), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162556] = 2, + [162549] = 2, ACTIONS(15757), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162564] = 2, + [162557] = 2, ACTIONS(15759), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162572] = 2, + [162565] = 2, ACTIONS(15761), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162580] = 2, + [162573] = 2, ACTIONS(15763), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162588] = 2, + [162581] = 2, ACTIONS(15765), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162596] = 2, - ACTIONS(15767), 1, - aux_sym_preproc_def_token2, + [162589] = 2, + ACTIONS(14098), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162604] = 2, - ACTIONS(15769), 1, + [162597] = 2, + ACTIONS(15767), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162612] = 2, - ACTIONS(15771), 1, + [162605] = 2, + ACTIONS(15769), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162620] = 2, + [162613] = 2, + ACTIONS(15771), 1, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [162621] = 2, ACTIONS(15773), 1, - anon_sym_STAR, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162628] = 2, + [162629] = 2, ACTIONS(15775), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162636] = 2, + [162637] = 2, ACTIONS(15777), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162644] = 2, + [162645] = 2, ACTIONS(15779), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162652] = 2, + [162653] = 2, ACTIONS(15781), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162660] = 2, + [162661] = 2, ACTIONS(15783), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162668] = 2, + [162669] = 2, ACTIONS(15785), 1, - aux_sym__block_if_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162676] = 2, + [162677] = 2, ACTIONS(15787), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162684] = 2, + [162685] = 2, + ACTIONS(10714), 1, + aux_sym_module_procedure_statement_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [162693] = 2, ACTIONS(15789), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162692] = 2, + [162701] = 2, ACTIONS(15791), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162700] = 2, + [162709] = 2, ACTIONS(15793), 1, - aux_sym_preproc_if_token2, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162708] = 2, + [162717] = 2, ACTIONS(15795), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162716] = 2, + [162725] = 2, ACTIONS(15797), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162724] = 2, + [162733] = 2, ACTIONS(15799), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162732] = 2, + [162741] = 2, ACTIONS(15801), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162740] = 2, + [162749] = 2, ACTIONS(15803), 1, - aux_sym_stop_statement_token3, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162748] = 2, + [162757] = 2, ACTIONS(15805), 1, - aux_sym_preproc_if_token2, + aux_sym__block_if_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162756] = 2, + [162765] = 2, ACTIONS(15807), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162764] = 2, + [162773] = 2, ACTIONS(15809), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162772] = 2, - ACTIONS(14203), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [162780] = 2, + [162781] = 2, ACTIONS(15811), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162788] = 2, + [162789] = 2, ACTIONS(15813), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162796] = 2, + [162797] = 2, ACTIONS(15815), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162804] = 2, + [162805] = 2, ACTIONS(15817), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162812] = 2, + [162813] = 2, ACTIONS(15819), 1, - anon_sym__, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162820] = 2, + [162821] = 2, ACTIONS(15821), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162828] = 2, + [162829] = 2, ACTIONS(15823), 1, - aux_sym_preproc_def_token2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [162837] = 2, + ACTIONS(14120), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162836] = 2, + [162845] = 2, ACTIONS(15825), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162844] = 2, + [162853] = 2, ACTIONS(15827), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162852] = 2, + [162861] = 2, ACTIONS(15829), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162860] = 2, + [162869] = 2, ACTIONS(15831), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162868] = 2, + [162877] = 2, ACTIONS(15833), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162876] = 2, + [162885] = 2, ACTIONS(15835), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162884] = 2, + [162893] = 2, ACTIONS(15837), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [162892] = 2, + [162901] = 2, ACTIONS(15839), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162900] = 2, - ACTIONS(14205), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [162908] = 2, - ACTIONS(13128), 1, + [162909] = 2, + ACTIONS(15841), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162916] = 2, - ACTIONS(15841), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [162924] = 2, + [162917] = 2, ACTIONS(15843), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162932] = 2, + [162925] = 2, ACTIONS(15845), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [162940] = 2, - ACTIONS(10767), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162948] = 2, + [162933] = 2, ACTIONS(15847), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162956] = 2, + [162941] = 2, ACTIONS(15849), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162964] = 2, + [162949] = 2, ACTIONS(15851), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162972] = 2, + [162957] = 2, ACTIONS(15853), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162980] = 2, + [162965] = 2, + ACTIONS(14124), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [162973] = 2, ACTIONS(15855), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162988] = 2, + [162981] = 2, ACTIONS(15857), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [162996] = 2, + [162989] = 2, ACTIONS(15859), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163004] = 2, + [162997] = 2, ACTIONS(15861), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163012] = 2, - ACTIONS(15863), 1, + [163005] = 2, + ACTIONS(12926), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163020] = 2, - ACTIONS(15865), 1, + [163013] = 2, + ACTIONS(15863), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163028] = 2, - ACTIONS(14211), 1, - aux_sym_preproc_include_token2, + [163021] = 2, + ACTIONS(15865), 1, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163036] = 2, + [163029] = 2, ACTIONS(15867), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163044] = 2, + [163037] = 2, ACTIONS(15869), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163052] = 2, + [163045] = 2, ACTIONS(15871), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163060] = 2, + [163053] = 2, ACTIONS(15873), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163068] = 2, + [163061] = 2, ACTIONS(15875), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163076] = 2, + [163069] = 2, ACTIONS(15877), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163084] = 2, + [163077] = 2, ACTIONS(15879), 1, - aux_sym_preproc_def_token2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [163085] = 2, + ACTIONS(8022), 1, + anon_sym_LPAREN2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [163093] = 2, + ACTIONS(14128), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163092] = 2, + [163101] = 2, ACTIONS(15881), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163100] = 2, + [163109] = 2, ACTIONS(15883), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163108] = 2, + [163117] = 2, ACTIONS(15885), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163116] = 2, + [163125] = 2, ACTIONS(15887), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163124] = 2, + [163133] = 2, ACTIONS(15889), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163132] = 2, + [163141] = 2, ACTIONS(15891), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163140] = 2, + [163149] = 2, ACTIONS(15893), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163148] = 2, + [163157] = 2, ACTIONS(15895), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163156] = 2, - ACTIONS(14215), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [163164] = 2, + [163165] = 2, ACTIONS(15897), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163172] = 2, + [163173] = 2, ACTIONS(15899), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163180] = 2, + [163181] = 2, ACTIONS(15901), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163188] = 2, + [163189] = 2, ACTIONS(15903), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163196] = 2, + [163197] = 2, ACTIONS(15905), 1, - sym__string_literal, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163204] = 2, + [163205] = 2, ACTIONS(15907), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163212] = 2, - ACTIONS(13867), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [163213] = 2, + ACTIONS(15909), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163220] = 2, - ACTIONS(14217), 1, + [163221] = 2, + ACTIONS(14134), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163228] = 2, - ACTIONS(15909), 1, + [163229] = 2, + ACTIONS(15911), 1, anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163236] = 2, - ACTIONS(15911), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [163244] = 2, + [163237] = 2, ACTIONS(15913), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163252] = 2, + [163245] = 2, ACTIONS(15915), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163260] = 2, + [163253] = 2, ACTIONS(15917), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163268] = 2, + [163261] = 2, ACTIONS(15919), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_EQ, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163276] = 2, + [163269] = 2, ACTIONS(15921), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163284] = 2, - ACTIONS(14219), 1, + [163277] = 2, + ACTIONS(15923), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [163285] = 2, + ACTIONS(14136), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163292] = 2, - ACTIONS(15923), 1, - anon_sym_RPAREN, + [163293] = 2, + ACTIONS(15925), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163300] = 2, - ACTIONS(15925), 1, + [163301] = 2, + ACTIONS(15927), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163308] = 2, - ACTIONS(15927), 1, + [163309] = 2, + ACTIONS(15929), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163316] = 2, - ACTIONS(15929), 1, + [163317] = 2, + ACTIONS(15931), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163324] = 2, - ACTIONS(15931), 1, + [163325] = 2, + ACTIONS(15933), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163332] = 2, - ACTIONS(15933), 1, + [163333] = 2, + ACTIONS(15935), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163340] = 2, - ACTIONS(15935), 1, - aux_sym_interface_statement_token1, + [163341] = 2, + ACTIONS(15937), 1, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163348] = 2, - ACTIONS(14223), 1, + [163349] = 2, + ACTIONS(14138), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163356] = 2, - ACTIONS(15937), 1, - anon_sym_LPAREN2, - ACTIONS(21), 2, + [163357] = 2, + ACTIONS(15939), 1, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163364] = 2, - ACTIONS(15939), 1, - anon_sym_COLON, + [163365] = 2, + ACTIONS(15941), 1, + sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163372] = 2, - ACTIONS(15941), 1, + [163373] = 2, + ACTIONS(15943), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163380] = 2, - ACTIONS(15943), 1, + [163381] = 2, + ACTIONS(15945), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163388] = 2, - ACTIONS(15945), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + [163389] = 2, + ACTIONS(13737), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163396] = 2, + [163397] = 2, ACTIONS(15947), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163404] = 2, + [163405] = 2, ACTIONS(15949), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163412] = 2, - ACTIONS(14227), 1, + [163413] = 2, + ACTIONS(14144), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163420] = 2, + [163421] = 2, ACTIONS(15951), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163428] = 2, + [163429] = 2, ACTIONS(15953), 1, - sym__string_literal, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163436] = 2, + [163437] = 2, ACTIONS(15955), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163444] = 2, + [163445] = 2, ACTIONS(15957), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163452] = 2, + [163453] = 2, ACTIONS(15959), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163460] = 2, + [163461] = 2, ACTIONS(15961), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163468] = 2, + [163469] = 2, ACTIONS(15963), 1, - anon_sym_EQ, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163476] = 2, - ACTIONS(14229), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [163484] = 2, - ACTIONS(13449), 1, + [163477] = 2, + ACTIONS(14146), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163492] = 2, + [163485] = 2, ACTIONS(15965), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163500] = 2, + [163493] = 2, ACTIONS(15967), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163508] = 2, + [163501] = 2, ACTIONS(15969), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163516] = 2, + [163509] = 2, ACTIONS(15971), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163524] = 2, + [163517] = 2, ACTIONS(15973), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + sym__string_literal, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163532] = 2, + [163525] = 2, ACTIONS(15975), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163540] = 2, - ACTIONS(14233), 1, + [163533] = 2, + ACTIONS(15977), 1, + aux_sym_interface_statement_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [163541] = 2, + ACTIONS(14150), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163548] = 2, - ACTIONS(15977), 1, + [163549] = 2, + ACTIONS(15979), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163556] = 2, - ACTIONS(15979), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + [163557] = 2, + ACTIONS(15981), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163564] = 2, - ACTIONS(15981), 1, + [163565] = 2, + ACTIONS(15983), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163572] = 2, - ACTIONS(15983), 1, + [163573] = 2, + ACTIONS(15985), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163580] = 2, - ACTIONS(15985), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + [163581] = 2, + ACTIONS(13288), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163588] = 2, + [163589] = 2, ACTIONS(15987), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163596] = 2, + [163597] = 2, ACTIONS(15989), 1, - aux_sym_operator_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163604] = 2, - ACTIONS(14235), 1, + [163605] = 2, + ACTIONS(14152), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163612] = 2, + [163613] = 2, ACTIONS(15991), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163620] = 2, + [163621] = 2, ACTIONS(15993), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163628] = 2, + [163629] = 2, ACTIONS(15995), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163636] = 2, + [163637] = 2, ACTIONS(15997), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163644] = 2, + [163645] = 2, ACTIONS(15999), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163652] = 2, + [163653] = 2, ACTIONS(16001), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163660] = 2, + [163661] = 2, ACTIONS(16003), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163668] = 2, - ACTIONS(14237), 1, + [163669] = 2, + ACTIONS(14159), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163676] = 2, + [163677] = 2, ACTIONS(16005), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163684] = 2, + [163685] = 2, ACTIONS(16007), 1, - aux_sym_interface_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163692] = 2, + [163693] = 2, ACTIONS(16009), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163700] = 2, + [163701] = 2, ACTIONS(16011), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163708] = 2, + [163709] = 2, ACTIONS(16013), 1, - anon_sym_EQ_GT, + aux_sym__inline_if_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163716] = 2, + [163717] = 2, ACTIONS(16015), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163724] = 2, + [163725] = 2, ACTIONS(16017), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163732] = 2, - ACTIONS(14243), 1, + [163733] = 2, + ACTIONS(14163), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163740] = 2, + [163741] = 2, ACTIONS(16019), 1, - anon_sym_LF, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163748] = 2, + [163749] = 2, ACTIONS(16021), 1, - anon_sym_RPAREN, + aux_sym_stop_statement_token3, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163756] = 2, + [163757] = 2, ACTIONS(16023), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163764] = 2, + [163765] = 2, ACTIONS(16025), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163772] = 2, + [163773] = 2, ACTIONS(16027), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163780] = 2, + [163781] = 2, ACTIONS(16029), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163788] = 2, + [163789] = 2, ACTIONS(16031), 1, - anon_sym_LF, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163796] = 2, - ACTIONS(14247), 1, + [163797] = 2, + ACTIONS(14167), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163804] = 2, + [163805] = 2, ACTIONS(16033), 1, - anon_sym_COMMA, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163812] = 2, + [163813] = 2, ACTIONS(16035), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163820] = 2, + [163821] = 2, ACTIONS(16037), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163828] = 2, + [163829] = 2, ACTIONS(16039), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163836] = 2, + [163837] = 2, ACTIONS(16041), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163844] = 2, + [163845] = 2, ACTIONS(16043), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163852] = 2, + [163853] = 2, ACTIONS(16045), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163860] = 2, - ACTIONS(14251), 1, + [163861] = 2, + ACTIONS(14169), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163868] = 2, + [163869] = 2, ACTIONS(16047), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163876] = 2, + [163877] = 2, ACTIONS(16049), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163884] = 2, + [163885] = 2, ACTIONS(16051), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163892] = 2, + [163893] = 2, ACTIONS(16053), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163900] = 2, + [163901] = 2, ACTIONS(16055), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163908] = 2, + [163909] = 2, ACTIONS(16057), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163916] = 2, + [163917] = 2, ACTIONS(16059), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163924] = 2, - ACTIONS(14255), 1, + [163925] = 2, + ACTIONS(14171), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163932] = 2, + [163933] = 2, ACTIONS(16061), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163940] = 2, + [163941] = 2, ACTIONS(16063), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163948] = 2, + [163949] = 2, ACTIONS(16065), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163956] = 2, + [163957] = 2, ACTIONS(16067), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163964] = 2, + [163965] = 2, ACTIONS(16069), 1, - anon_sym_LPAREN2, + anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163972] = 2, + [163973] = 2, ACTIONS(16071), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163980] = 2, + [163981] = 2, ACTIONS(16073), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [163988] = 2, - ACTIONS(14259), 1, + [163989] = 2, + ACTIONS(14175), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [163996] = 2, + [163997] = 2, ACTIONS(16075), 1, - sym__string_literal, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164004] = 2, + [164005] = 2, ACTIONS(16077), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164012] = 2, + [164013] = 2, ACTIONS(16079), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164020] = 2, + [164021] = 2, ACTIONS(16081), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164028] = 2, - ACTIONS(10158), 1, - anon_sym_LPAREN2, + [164029] = 2, + ACTIONS(12926), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164036] = 2, + [164037] = 2, ACTIONS(16083), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164044] = 2, + [164045] = 2, ACTIONS(16085), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164052] = 2, - ACTIONS(14263), 1, + [164053] = 2, + ACTIONS(14177), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164060] = 2, + [164061] = 2, ACTIONS(16087), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164068] = 2, + [164069] = 2, ACTIONS(16089), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164076] = 2, + [164077] = 2, ACTIONS(16091), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164084] = 2, + [164085] = 2, ACTIONS(16093), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164092] = 2, + [164093] = 2, ACTIONS(16095), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164100] = 2, + [164101] = 2, ACTIONS(16097), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164108] = 2, + [164109] = 2, ACTIONS(16099), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164116] = 2, - ACTIONS(14265), 1, + [164117] = 2, + ACTIONS(14181), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164124] = 2, - ACTIONS(14261), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [164132] = 2, + [164125] = 2, ACTIONS(16101), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164140] = 2, + [164133] = 2, ACTIONS(16103), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164148] = 2, + [164141] = 2, ACTIONS(16105), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164156] = 2, + [164149] = 2, ACTIONS(16107), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164164] = 2, + [164157] = 2, ACTIONS(16109), 1, + anon_sym_EQ, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [164165] = 2, + ACTIONS(16111), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164172] = 2, - ACTIONS(16111), 1, - anon_sym_RPAREN, + [164173] = 2, + ACTIONS(16113), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164180] = 2, - ACTIONS(14269), 1, + [164181] = 2, + ACTIONS(14183), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164188] = 2, - ACTIONS(16113), 1, + [164189] = 2, + ACTIONS(16115), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164196] = 2, - ACTIONS(16115), 1, - aux_sym__inline_if_statement_token1, + [164197] = 2, + ACTIONS(16117), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164204] = 2, - ACTIONS(16117), 1, + [164205] = 2, + ACTIONS(16119), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164212] = 2, - ACTIONS(16119), 1, + [164213] = 2, + ACTIONS(16121), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164220] = 2, - ACTIONS(16121), 1, + [164221] = 2, + ACTIONS(16123), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164228] = 2, - ACTIONS(16123), 1, + [164229] = 2, + ACTIONS(16125), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164236] = 2, - ACTIONS(16125), 1, + [164237] = 2, + ACTIONS(16127), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164244] = 2, - ACTIONS(14271), 1, + [164245] = 2, + ACTIONS(14185), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164252] = 2, - ACTIONS(16127), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [164260] = 2, + [164253] = 2, ACTIONS(16129), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164268] = 2, + [164261] = 2, ACTIONS(16131), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_LPAREN2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164276] = 2, + [164269] = 2, ACTIONS(16133), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164284] = 2, + [164277] = 2, ACTIONS(16135), 1, - aux_sym_interface_statement_token1, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164292] = 2, + [164285] = 2, ACTIONS(16137), 1, + anon_sym_STAR, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [164293] = 2, + ACTIONS(16139), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164300] = 2, - ACTIONS(16139), 1, + [164301] = 2, + ACTIONS(16141), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164308] = 2, - ACTIONS(14275), 1, + [164309] = 2, + ACTIONS(14191), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164316] = 2, - ACTIONS(16141), 1, + [164317] = 2, + ACTIONS(16143), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164324] = 2, - ACTIONS(16143), 1, + [164325] = 2, + ACTIONS(16145), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164332] = 2, - ACTIONS(16145), 1, + [164333] = 2, + ACTIONS(16147), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164340] = 2, - ACTIONS(16147), 1, + [164341] = 2, + ACTIONS(16149), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164348] = 2, - ACTIONS(16149), 1, + [164349] = 2, + ACTIONS(16151), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164356] = 2, - ACTIONS(16151), 1, + [164357] = 2, + ACTIONS(16153), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164364] = 2, - ACTIONS(16153), 1, + [164365] = 2, + ACTIONS(16155), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164372] = 2, - ACTIONS(14277), 1, + [164373] = 2, + ACTIONS(14197), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164380] = 2, - ACTIONS(16155), 1, - aux_sym_preproc_if_token2, + [164381] = 2, + ACTIONS(16157), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164388] = 2, - ACTIONS(16157), 1, - anon_sym_EQ, + [164389] = 2, + ACTIONS(16159), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164396] = 2, - ACTIONS(16159), 1, + [164397] = 2, + ACTIONS(16161), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164404] = 2, - ACTIONS(16161), 1, + [164405] = 2, + ACTIONS(16163), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164412] = 2, - ACTIONS(16163), 1, + [164413] = 2, + ACTIONS(16165), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164420] = 2, - ACTIONS(16165), 1, + [164421] = 2, + ACTIONS(16167), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164428] = 2, - ACTIONS(16167), 1, - aux_sym_preproc_if_token2, + [164429] = 2, + ACTIONS(16169), 1, + anon_sym_SLASH_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164436] = 2, - ACTIONS(14281), 1, + [164437] = 2, + ACTIONS(14201), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164444] = 2, - ACTIONS(16169), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [164452] = 2, + [164445] = 2, ACTIONS(16171), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164460] = 2, + [164453] = 2, ACTIONS(16173), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164468] = 2, + [164461] = 2, ACTIONS(16175), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164476] = 2, - ACTIONS(12882), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [164484] = 2, + [164469] = 2, ACTIONS(16177), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164492] = 2, - ACTIONS(9984), 1, - aux_sym__inline_where_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [164500] = 2, - ACTIONS(14285), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [164508] = 2, + [164477] = 2, ACTIONS(16179), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164516] = 2, + [164485] = 2, ACTIONS(16181), 1, - anon_sym_LF, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164524] = 2, + [164493] = 2, ACTIONS(16183), 1, - aux_sym_preproc_def_token2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [164501] = 2, + ACTIONS(14203), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164532] = 2, + [164509] = 2, ACTIONS(16185), 1, - aux_sym_preproc_def_token2, + anon_sym_LF, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164540] = 2, + [164517] = 2, ACTIONS(16187), 1, - aux_sym_preproc_if_token2, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164548] = 2, + [164525] = 2, ACTIONS(16189), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164556] = 2, + [164533] = 2, ACTIONS(16191), 1, - aux_sym_enum_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [164564] = 2, - ACTIONS(14289), 1, - aux_sym_preproc_include_token2, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164572] = 2, + [164541] = 2, ACTIONS(16193), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164580] = 2, + [164549] = 2, ACTIONS(16195), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164588] = 2, + [164557] = 2, ACTIONS(16197), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RBRACK, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164596] = 2, - ACTIONS(16199), 1, - aux_sym_preproc_def_token2, + [164565] = 2, + ACTIONS(14205), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164604] = 2, - ACTIONS(9999), 1, - anon_sym_COLON_COLON, + [164573] = 2, + ACTIONS(16199), 1, + anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164612] = 2, + [164581] = 2, ACTIONS(16201), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164620] = 2, + [164589] = 2, ACTIONS(16203), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [164628] = 2, - ACTIONS(14291), 1, - aux_sym_preproc_include_token2, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164636] = 2, + [164597] = 2, ACTIONS(16205), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164644] = 2, + [164605] = 2, ACTIONS(16207), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164652] = 2, + [164613] = 2, ACTIONS(16209), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164660] = 2, + [164621] = 2, ACTIONS(16211), 1, - aux_sym_preproc_def_token2, + sym__string_literal, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [164629] = 2, + ACTIONS(14209), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164668] = 2, + [164637] = 2, ACTIONS(16213), 1, - anon_sym_COLON, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164676] = 2, + [164645] = 2, ACTIONS(16215), 1, - aux_sym_preproc_def_token2, + anon_sym_LF, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164684] = 2, + [164653] = 2, ACTIONS(16217), 1, - anon_sym_LF, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164692] = 2, - ACTIONS(14295), 1, - aux_sym_preproc_include_token2, + [164661] = 2, + ACTIONS(16219), 1, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164700] = 2, - ACTIONS(16219), 1, - aux_sym_interface_statement_token1, - ACTIONS(21), 2, + [164669] = 2, + ACTIONS(14211), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164708] = 2, + [164677] = 2, ACTIONS(16221), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164716] = 2, + [164685] = 2, ACTIONS(16223), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164724] = 2, - ACTIONS(16225), 1, - aux_sym_preproc_def_token2, + [164693] = 2, + ACTIONS(14213), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164732] = 2, - ACTIONS(12882), 1, + [164701] = 2, + ACTIONS(16225), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164740] = 2, + [164709] = 2, ACTIONS(16227), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164748] = 2, + [164717] = 2, ACTIONS(16229), 1, - anon_sym__, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164756] = 2, + [164725] = 2, ACTIONS(16231), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164764] = 2, + [164733] = 2, ACTIONS(16233), 1, - aux_sym_preproc_if_token2, + anon_sym_SLASH_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164772] = 2, + [164741] = 2, ACTIONS(16235), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164780] = 2, + [164749] = 2, ACTIONS(16237), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164788] = 2, + [164757] = 2, + ACTIONS(14219), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [164765] = 2, ACTIONS(16239), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164796] = 2, + [164773] = 2, ACTIONS(16241), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164804] = 2, + [164781] = 2, ACTIONS(16243), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164812] = 2, + [164789] = 2, ACTIONS(16245), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164820] = 2, + [164797] = 2, ACTIONS(16247), 1, - anon_sym_RPAREN, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164828] = 2, + [164805] = 2, ACTIONS(16249), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164836] = 2, + [164813] = 2, ACTIONS(16251), 1, - aux_sym_preproc_if_token2, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164844] = 2, + [164821] = 2, ACTIONS(16253), 1, - aux_sym_preproc_if_token2, + aux_sym__inline_where_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164852] = 2, + [164829] = 2, ACTIONS(16255), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164860] = 2, + [164837] = 2, ACTIONS(16257), 1, - aux_sym_preproc_if_token2, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164868] = 2, + [164845] = 2, ACTIONS(16259), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164876] = 2, + [164853] = 2, ACTIONS(16261), 1, - aux_sym_preproc_if_token2, + sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164884] = 2, + [164861] = 2, + ACTIONS(13258), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [164869] = 2, ACTIONS(16263), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164892] = 2, + [164877] = 2, ACTIONS(16265), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164900] = 2, + [164885] = 2, ACTIONS(16267), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164908] = 2, + [164893] = 2, ACTIONS(16269), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164916] = 2, + [164901] = 2, ACTIONS(16271), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164924] = 2, + [164909] = 2, ACTIONS(16273), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [164932] = 2, + [164917] = 2, ACTIONS(16275), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164940] = 2, + [164925] = 2, ACTIONS(16277), 1, - aux_sym_preproc_if_token2, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164948] = 2, + [164933] = 2, ACTIONS(16279), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164956] = 2, + [164941] = 2, ACTIONS(16281), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164964] = 2, + [164949] = 2, ACTIONS(16283), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164972] = 2, + [164957] = 2, ACTIONS(16285), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164980] = 2, + [164965] = 2, ACTIONS(16287), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164988] = 2, + [164973] = 2, ACTIONS(16289), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [164996] = 2, + [164981] = 2, ACTIONS(16291), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165004] = 2, + [164989] = 2, ACTIONS(16293), 1, - anon_sym_LF, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [164997] = 2, + ACTIONS(10762), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165012] = 2, + [165005] = 2, ACTIONS(16295), 1, - anon_sym_EQ, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165020] = 2, + [165013] = 2, ACTIONS(16297), 1, - sym__string_literal, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165028] = 2, + [165021] = 2, ACTIONS(16299), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165036] = 2, + [165029] = 2, ACTIONS(16301), 1, - aux_sym_operator_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [165044] = 2, - ACTIONS(13958), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165052] = 2, + [165037] = 2, ACTIONS(16303), 1, - anon_sym_SLASH, + anon_sym_STAR, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165060] = 2, + [165045] = 2, ACTIONS(16305), 1, - anon_sym_COLON, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165068] = 2, + [165053] = 2, ACTIONS(16307), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165076] = 2, + [165061] = 2, ACTIONS(16309), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [165084] = 2, - ACTIONS(15221), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165092] = 2, + [165069] = 2, ACTIONS(16311), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165100] = 2, + [165077] = 2, ACTIONS(16313), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165108] = 2, + [165085] = 2, ACTIONS(16315), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165116] = 2, + [165093] = 2, ACTIONS(16317), 1, - aux_sym_preproc_if_token2, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165124] = 2, + [165101] = 2, ACTIONS(16319), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_operator_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165132] = 2, + [165109] = 2, ACTIONS(16321), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165140] = 2, + [165117] = 2, ACTIONS(16323), 1, - aux_sym_preproc_if_token2, + anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165148] = 2, + [165125] = 2, ACTIONS(16325), 1, - aux_sym_preproc_if_token2, + anon_sym_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165156] = 2, + [165133] = 2, ACTIONS(16327), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165164] = 2, + [165141] = 2, ACTIONS(16329), 1, - anon_sym_STAR, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165172] = 2, + [165149] = 2, ACTIONS(16331), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165180] = 2, + [165157] = 2, ACTIONS(16333), 1, - anon_sym_EQ, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [165165] = 2, + ACTIONS(9855), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165188] = 2, + [165173] = 2, + ACTIONS(14390), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [165181] = 2, ACTIONS(16335), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165196] = 2, + [165189] = 2, ACTIONS(16337), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165204] = 2, + [165197] = 2, + ACTIONS(9974), 1, + aux_sym_do_loop_statement_token1, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [165205] = 2, ACTIONS(16339), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_interface_statement_token1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165212] = 2, + [165213] = 2, ACTIONS(16341), 1, - aux_sym_interface_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165220] = 2, + [165221] = 2, ACTIONS(16343), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165228] = 2, + [165229] = 2, ACTIONS(16345), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_STAR, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165236] = 2, + [165237] = 2, ACTIONS(16347), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165244] = 2, + [165245] = 2, ACTIONS(16349), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165252] = 2, + [165253] = 2, ACTIONS(16351), 1, - aux_sym_keyword_statement_token5, + anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165260] = 2, + [165261] = 2, ACTIONS(16353), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165268] = 2, + [165269] = 2, ACTIONS(16355), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165276] = 2, + [165277] = 2, ACTIONS(16357), 1, - anon_sym_LPAREN2, + anon_sym_RBRACK, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165284] = 2, + [165285] = 2, ACTIONS(16359), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165292] = 2, + [165293] = 2, ACTIONS(16361), 1, - anon_sym_DOT, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165300] = 2, + [165301] = 2, ACTIONS(16363), 1, - aux_sym_stop_statement_token3, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165308] = 2, + [165309] = 2, ACTIONS(16365), 1, anon_sym_LF, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165316] = 2, + [165317] = 2, ACTIONS(16367), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165324] = 2, + [165325] = 2, ACTIONS(16369), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_STAR, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165332] = 2, + [165333] = 2, ACTIONS(16371), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165340] = 2, + [165341] = 2, ACTIONS(16373), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165348] = 2, + [165349] = 2, ACTIONS(16375), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165356] = 2, + [165357] = 2, ACTIONS(16377), 1, - anon_sym_RPAREN, + aux_sym_select_case_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165364] = 2, + [165365] = 2, ACTIONS(16379), 1, - sym__string_literal, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165372] = 2, + [165373] = 2, ACTIONS(16381), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165380] = 2, + [165381] = 2, ACTIONS(16383), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165388] = 2, + [165389] = 2, ACTIONS(16385), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165396] = 2, + [165397] = 2, ACTIONS(16387), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165404] = 2, + [165405] = 2, ACTIONS(16389), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165412] = 2, - ACTIONS(14341), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [165420] = 2, + [165413] = 2, ACTIONS(16391), 1, - anon_sym_LPAREN2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165428] = 2, + [165421] = 2, ACTIONS(16393), 1, - aux_sym_stop_statement_token3, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165436] = 2, + [165429] = 2, ACTIONS(16395), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165444] = 2, + [165437] = 2, ACTIONS(16397), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165452] = 2, + [165445] = 2, ACTIONS(16399), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165460] = 2, + [165453] = 2, ACTIONS(16401), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165468] = 2, + [165461] = 2, ACTIONS(16403), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165476] = 2, + [165469] = 2, ACTIONS(16405), 1, - aux_sym__block_if_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165484] = 2, - ACTIONS(14154), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [165492] = 2, + [165477] = 2, ACTIONS(16407), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165500] = 2, + [165485] = 2, ACTIONS(16409), 1, - anon_sym__, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165508] = 2, + [165493] = 2, ACTIONS(16411), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165516] = 2, + [165501] = 2, ACTIONS(16413), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165524] = 2, + [165509] = 2, ACTIONS(16415), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165532] = 2, + [165517] = 2, ACTIONS(16417), 1, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [165525] = 2, + ACTIONS(16419), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165540] = 2, - ACTIONS(16419), 1, + [165533] = 2, + ACTIONS(12964), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165548] = 2, + [165541] = 2, ACTIONS(16421), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165556] = 2, + [165549] = 2, ACTIONS(16423), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165564] = 2, + [165557] = 2, ACTIONS(16425), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165572] = 2, + [165565] = 2, ACTIONS(16427), 1, - aux_sym_preproc_if_token2, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165580] = 2, + [165573] = 2, ACTIONS(16429), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165588] = 2, - ACTIONS(9978), 1, - aux_sym__inline_if_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [165596] = 2, + [165581] = 2, ACTIONS(16431), 1, - anon_sym_SLASH_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165604] = 2, + [165589] = 2, ACTIONS(16433), 1, - anon_sym_RBRACK, + aux_sym_type_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165612] = 2, + [165597] = 2, ACTIONS(16435), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165620] = 2, + [165605] = 2, ACTIONS(16437), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [165628] = 2, - ACTIONS(16439), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165636] = 2, - ACTIONS(8156), 1, + [165613] = 2, + ACTIONS(16439), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165644] = 2, + [165621] = 2, ACTIONS(16441), 1, - anon_sym_SLASH, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165652] = 2, + [165629] = 2, ACTIONS(16443), 1, - anon_sym_COLON_COLON, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165660] = 2, + [165637] = 2, ACTIONS(16445), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165668] = 2, + [165645] = 2, ACTIONS(16447), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165676] = 2, + [165653] = 2, ACTIONS(16449), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165684] = 2, + [165661] = 2, ACTIONS(16451), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165692] = 2, + [165669] = 2, ACTIONS(16453), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_stop_statement_token3, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165700] = 2, + [165677] = 2, ACTIONS(16455), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165708] = 2, + [165685] = 2, ACTIONS(16457), 1, - aux_sym_interface_statement_token1, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [165716] = 2, - ACTIONS(13120), 1, - anon_sym_EQ_GT, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165724] = 2, - ACTIONS(12720), 1, + [165693] = 2, + ACTIONS(16459), 1, anon_sym_EQ_GT, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165732] = 2, - ACTIONS(16459), 1, - aux_sym_preproc_if_token2, + [165701] = 2, + ACTIONS(8181), 1, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165740] = 2, + [165709] = 2, ACTIONS(16461), 1, - aux_sym_select_case_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165748] = 2, + [165717] = 2, ACTIONS(16463), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165756] = 2, + [165725] = 2, ACTIONS(16465), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165764] = 2, + [165733] = 2, ACTIONS(16467), 1, - aux_sym_implicit_range_token1, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165772] = 2, + [165741] = 2, ACTIONS(16469), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165780] = 2, + [165749] = 2, ACTIONS(16471), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165788] = 2, + [165757] = 2, ACTIONS(16473), 1, - anon_sym_RPAREN, + sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165796] = 2, + [165765] = 2, ACTIONS(16475), 1, - anon_sym_COMMA, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165804] = 2, + [165773] = 2, ACTIONS(16477), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165812] = 2, + [165781] = 2, ACTIONS(16479), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165820] = 2, + [165789] = 2, ACTIONS(16481), 1, - anon_sym_LF, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [165797] = 2, + ACTIONS(13828), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165828] = 2, + [165805] = 2, ACTIONS(16483), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165836] = 2, + [165813] = 2, ACTIONS(16485), 1, anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165844] = 2, + [165821] = 2, ACTIONS(16487), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165852] = 2, + [165829] = 2, ACTIONS(16489), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165860] = 2, + [165837] = 2, ACTIONS(16491), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165868] = 2, + [165845] = 2, ACTIONS(16493), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165876] = 2, + [165853] = 2, ACTIONS(16495), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165884] = 2, + [165861] = 2, ACTIONS(16497), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165892] = 2, + [165869] = 2, ACTIONS(16499), 1, - anon_sym__, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165900] = 2, + [165877] = 2, ACTIONS(16501), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165908] = 2, + [165885] = 2, ACTIONS(16503), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165916] = 2, + [165893] = 2, ACTIONS(16505), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165924] = 2, + [165901] = 2, ACTIONS(16507), 1, anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165932] = 2, + [165909] = 2, ACTIONS(16509), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165940] = 2, + [165917] = 2, ACTIONS(16511), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165948] = 2, + [165925] = 2, ACTIONS(16513), 1, - anon_sym_LPAREN2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165956] = 2, + [165933] = 2, ACTIONS(16515), 1, anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165964] = 2, + [165941] = 2, ACTIONS(16517), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165972] = 2, + [165949] = 2, ACTIONS(16519), 1, - sym__string_literal, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165980] = 2, + [165957] = 2, ACTIONS(16521), 1, - anon_sym_EQ, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [165988] = 2, + [165965] = 2, ACTIONS(16523), 1, anon_sym_LF, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [165996] = 2, + [165973] = 2, ACTIONS(16525), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166004] = 2, + [165981] = 2, ACTIONS(16527), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166012] = 2, + [165989] = 2, ACTIONS(16529), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166020] = 2, + [165997] = 2, ACTIONS(16531), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_LPAREN2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166028] = 2, + [166005] = 2, ACTIONS(16533), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166036] = 2, - ACTIONS(10807), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [166044] = 2, + [166013] = 2, ACTIONS(16535), 1, - aux_sym_preproc_if_token2, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166052] = 2, + [166021] = 2, ACTIONS(16537), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166060] = 2, - ACTIONS(13785), 1, + [166029] = 2, + ACTIONS(10802), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166068] = 2, + [166037] = 2, ACTIONS(16539), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166076] = 2, + [166045] = 2, ACTIONS(16541), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166084] = 2, + [166053] = 2, ACTIONS(16543), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166092] = 2, + [166061] = 2, ACTIONS(16545), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166100] = 2, + [166069] = 2, ACTIONS(16547), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166108] = 2, + [166077] = 2, ACTIONS(16549), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166116] = 2, + [166085] = 2, ACTIONS(16551), 1, - aux_sym_preproc_def_token2, + anon_sym_LF, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166124] = 2, + [166093] = 2, ACTIONS(16553), 1, - anon_sym__, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166132] = 2, + [166101] = 2, ACTIONS(16555), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166140] = 2, + [166109] = 2, ACTIONS(16557), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166148] = 2, + [166117] = 2, ACTIONS(16559), 1, - aux_sym_interface_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166156] = 2, + [166125] = 2, ACTIONS(16561), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166164] = 2, + [166133] = 2, ACTIONS(16563), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166172] = 2, + [166141] = 2, ACTIONS(16565), 1, - aux_sym_preproc_if_token2, + anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166180] = 2, + [166149] = 2, ACTIONS(16567), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166188] = 2, + [166157] = 2, ACTIONS(16569), 1, - aux_sym__block_if_statement_token1, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166196] = 2, + [166165] = 2, ACTIONS(16571), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166204] = 2, + [166173] = 2, ACTIONS(16573), 1, - aux_sym_preproc_def_token2, + anon_sym_LF, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166212] = 2, + [166181] = 2, ACTIONS(16575), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166220] = 2, + [166189] = 2, ACTIONS(16577), 1, - aux_sym_preproc_if_token2, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166228] = 2, + [166197] = 2, ACTIONS(16579), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166236] = 2, + [166205] = 2, ACTIONS(16581), 1, - anon_sym_LF, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166244] = 2, + [166213] = 2, ACTIONS(16583), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166252] = 2, + [166221] = 2, ACTIONS(16585), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166260] = 2, + [166229] = 2, ACTIONS(16587), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166268] = 2, + [166237] = 2, ACTIONS(16589), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166276] = 2, + [166245] = 2, ACTIONS(16591), 1, - anon_sym_LF, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [166253] = 2, + ACTIONS(7476), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166284] = 2, + [166261] = 2, ACTIONS(16593), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_LPAREN2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166292] = 2, + [166269] = 2, ACTIONS(16595), 1, - anon_sym_COMMA, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166300] = 2, + [166277] = 2, ACTIONS(16597), 1, - anon_sym__, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166308] = 2, + [166285] = 2, ACTIONS(16599), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166316] = 2, + [166293] = 2, ACTIONS(16601), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [166324] = 2, - ACTIONS(16603), 1, - sym__string_literal, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166332] = 2, - ACTIONS(13585), 1, - aux_sym_preproc_include_token2, + [166301] = 2, + ACTIONS(16603), 1, + anon_sym_LF, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166340] = 2, + [166309] = 2, ACTIONS(16605), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166348] = 2, + [166317] = 2, ACTIONS(16607), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166356] = 2, + [166325] = 2, ACTIONS(16609), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166364] = 2, - ACTIONS(16611), 1, + [166333] = 2, + ACTIONS(13029), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166372] = 2, + [166341] = 2, + ACTIONS(16611), 1, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [166349] = 2, ACTIONS(16613), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166380] = 2, + [166357] = 2, ACTIONS(16615), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166388] = 2, + [166365] = 2, ACTIONS(16617), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [166396] = 2, - ACTIONS(16619), 1, - aux_sym_preproc_if_token2, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166404] = 2, - ACTIONS(12882), 1, - aux_sym_preproc_if_token2, + [166373] = 2, + ACTIONS(16619), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166412] = 2, + [166381] = 2, ACTIONS(16621), 1, - aux_sym_preproc_if_token2, + anon_sym_COMMA, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166420] = 2, + [166389] = 2, ACTIONS(16623), 1, - aux_sym_interface_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166428] = 2, + [166397] = 2, ACTIONS(16625), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166436] = 2, + [166405] = 2, ACTIONS(16627), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166444] = 2, + [166413] = 2, ACTIONS(16629), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166452] = 2, + [166421] = 2, ACTIONS(16631), 1, - anon_sym__, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166460] = 2, + [166429] = 2, ACTIONS(16633), 1, - sym__string_literal, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166468] = 2, + [166437] = 2, ACTIONS(16635), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166476] = 2, + [166445] = 2, ACTIONS(16637), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166484] = 2, + [166453] = 2, ACTIONS(16639), 1, - aux_sym_implicit_statement_token2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166492] = 2, + [166461] = 2, ACTIONS(16641), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166500] = 2, + [166469] = 2, ACTIONS(16643), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166508] = 2, + [166477] = 2, ACTIONS(16645), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166516] = 2, + [166485] = 2, ACTIONS(16647), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166524] = 2, + [166493] = 2, ACTIONS(16649), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166532] = 2, + [166501] = 2, ACTIONS(16651), 1, - aux_sym_preproc_if_token2, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [166509] = 2, + ACTIONS(10004), 1, + anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166540] = 2, + [166517] = 2, ACTIONS(16653), 1, - anon_sym_COLON, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166548] = 2, + [166525] = 2, ACTIONS(16655), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166556] = 2, + [166533] = 2, ACTIONS(16657), 1, - anon_sym_EQ, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166564] = 2, + [166541] = 2, ACTIONS(16659), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166572] = 2, + [166549] = 2, ACTIONS(16661), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166580] = 2, + [166557] = 2, ACTIONS(16663), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_LPAREN2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166588] = 2, + [166565] = 2, ACTIONS(16665), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166596] = 2, + [166573] = 2, ACTIONS(16667), 1, - anon_sym__, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166604] = 2, + [166581] = 2, ACTIONS(16669), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166612] = 2, + [166589] = 2, ACTIONS(16671), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166620] = 2, + [166597] = 2, ACTIONS(16673), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166628] = 2, + [166605] = 2, ACTIONS(16675), 1, - ts_builtin_sym_end, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166636] = 2, + [166613] = 2, + ACTIONS(13029), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [166621] = 2, ACTIONS(16677), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166644] = 2, + [166629] = 2, ACTIONS(16679), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166652] = 2, + [166637] = 2, ACTIONS(16681), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166660] = 2, + [166645] = 2, ACTIONS(16683), 1, - aux_sym_interface_statement_token1, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166668] = 2, + [166653] = 2, ACTIONS(16685), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166676] = 2, + [166661] = 2, ACTIONS(16687), 1, - anon_sym_RPAREN, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166684] = 2, + [166669] = 2, ACTIONS(16689), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166692] = 2, + [166677] = 2, ACTIONS(16691), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166700] = 2, - ACTIONS(15315), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [166708] = 2, + [166685] = 2, ACTIONS(16693), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166716] = 2, + [166693] = 2, ACTIONS(16695), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166724] = 2, + [166701] = 2, ACTIONS(16697), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166732] = 2, + [166709] = 2, ACTIONS(16699), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166740] = 2, + [166717] = 2, ACTIONS(16701), 1, - anon_sym__, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166748] = 2, + [166725] = 2, ACTIONS(16703), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166756] = 2, + [166733] = 2, ACTIONS(16705), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166764] = 2, + [166741] = 2, ACTIONS(16707), 1, - aux_sym_preproc_if_token2, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166772] = 2, + [166749] = 2, ACTIONS(16709), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166780] = 2, + [166757] = 2, ACTIONS(16711), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166788] = 2, + [166765] = 2, ACTIONS(16713), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166796] = 2, + [166773] = 2, ACTIONS(16715), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166804] = 2, + [166781] = 2, ACTIONS(16717), 1, - anon_sym_LPAREN2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166812] = 2, + [166789] = 2, ACTIONS(16719), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166820] = 2, + [166797] = 2, ACTIONS(16721), 1, - anon_sym_COLON_COLON, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166828] = 2, + [166805] = 2, ACTIONS(16723), 1, - aux_sym_preproc_if_token2, + anon_sym__, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [166813] = 2, + ACTIONS(13207), 1, + anon_sym_EQ_GT, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166836] = 2, + [166821] = 2, ACTIONS(16725), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166844] = 2, + [166829] = 2, ACTIONS(16727), 1, anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166852] = 2, + [166837] = 2, ACTIONS(16729), 1, - anon_sym__, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166860] = 2, + [166845] = 2, ACTIONS(16731), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166868] = 2, + [166853] = 2, ACTIONS(16733), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166876] = 2, + [166861] = 2, ACTIONS(16735), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166884] = 2, + [166869] = 2, ACTIONS(16737), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166892] = 2, + [166877] = 2, ACTIONS(16739), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166900] = 2, - ACTIONS(13220), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [166908] = 2, + [166885] = 2, ACTIONS(16741), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166916] = 2, + [166893] = 2, ACTIONS(16743), 1, - aux_sym_preproc_if_token2, + sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166924] = 2, + [166901] = 2, ACTIONS(16745), 1, - aux_sym_interface_statement_token1, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [166909] = 2, + ACTIONS(13403), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166932] = 2, + [166917] = 2, ACTIONS(16747), 1, - anon_sym_RPAREN, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166940] = 2, + [166925] = 2, ACTIONS(16749), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166948] = 2, + [166933] = 2, ACTIONS(16751), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_LPAREN2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166956] = 2, + [166941] = 2, ACTIONS(16753), 1, - anon_sym_STAR, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166964] = 2, + [166949] = 2, ACTIONS(16755), 1, - anon_sym__, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [166972] = 2, + [166957] = 2, ACTIONS(16757), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166980] = 2, + [166965] = 2, ACTIONS(16759), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166988] = 2, + [166973] = 2, ACTIONS(16761), 1, sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [166996] = 2, + [166981] = 2, ACTIONS(16763), 1, - anon_sym_RPAREN, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167004] = 2, + [166989] = 2, ACTIONS(16765), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167012] = 2, + [166997] = 2, ACTIONS(16767), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167020] = 2, + [167005] = 2, ACTIONS(16769), 1, - anon_sym_LF, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [167028] = 2, - ACTIONS(13339), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167036] = 2, + [167013] = 2, ACTIONS(16771), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167044] = 2, + [167021] = 2, ACTIONS(16773), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167052] = 2, - ACTIONS(13128), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [167060] = 2, + [167029] = 2, ACTIONS(16775), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym__, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167068] = 2, + [167037] = 2, ACTIONS(16777), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167076] = 2, + [167045] = 2, ACTIONS(16779), 1, - anon_sym__, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167084] = 2, + [167053] = 2, ACTIONS(16781), 1, - sym__string_literal, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167092] = 2, - ACTIONS(14030), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [167100] = 2, + [167061] = 2, ACTIONS(16783), 1, - aux_sym_preproc_if_token2, + anon_sym_COLON_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167108] = 2, + [167069] = 2, ACTIONS(16785), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167116] = 2, + [167077] = 2, ACTIONS(16787), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167124] = 2, - ACTIONS(7962), 1, - anon_sym_LPAREN2, + [167085] = 2, + ACTIONS(16789), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167132] = 2, - ACTIONS(16789), 1, + [167093] = 2, + ACTIONS(16791), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167140] = 2, - ACTIONS(16791), 1, - aux_sym_preproc_if_token2, + [167101] = 2, + ACTIONS(14793), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167148] = 2, + [167109] = 2, + ACTIONS(13645), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [167117] = 2, ACTIONS(16793), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167156] = 2, + [167125] = 2, ACTIONS(16795), 1, - aux_sym_preproc_def_token2, + anon_sym_LF, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167164] = 2, + [167133] = 2, ACTIONS(16797), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167172] = 2, + [167141] = 2, ACTIONS(16799), 1, - anon_sym_RPAREN, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167180] = 2, + [167149] = 2, ACTIONS(16801), 1, - anon_sym__, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167188] = 2, + [167157] = 2, ACTIONS(16803), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167196] = 2, + [167165] = 2, ACTIONS(16805), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167204] = 2, + [167173] = 2, ACTIONS(16807), 1, - aux_sym_preproc_if_token2, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167212] = 2, + [167181] = 2, ACTIONS(16809), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167220] = 2, + [167189] = 2, ACTIONS(16811), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167228] = 2, + [167197] = 2, ACTIONS(16813), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167236] = 2, + [167205] = 2, ACTIONS(16815), 1, - aux_sym_interface_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167244] = 2, + [167213] = 2, ACTIONS(16817), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167252] = 2, + [167221] = 2, ACTIONS(16819), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167260] = 2, + [167229] = 2, ACTIONS(16821), 1, - anon_sym_EQ, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167268] = 2, + [167237] = 2, ACTIONS(16823), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167276] = 2, + [167245] = 2, ACTIONS(16825), 1, - anon_sym_COMMA, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167284] = 2, + [167253] = 2, ACTIONS(16827), 1, - anon_sym__, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167292] = 2, + [167261] = 2, ACTIONS(16829), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167300] = 2, + [167269] = 2, ACTIONS(16831), 1, - aux_sym_interface_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167308] = 2, + [167277] = 2, ACTIONS(16833), 1, - anon_sym_EQ_GT, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167316] = 2, + [167285] = 2, ACTIONS(16835), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167324] = 2, + [167293] = 2, ACTIONS(16837), 1, - aux_sym_preproc_if_token2, + sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167332] = 2, + [167301] = 2, ACTIONS(16839), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167340] = 2, + [167309] = 2, ACTIONS(16841), 1, - anon_sym_LF, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [167317] = 2, + ACTIONS(13302), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167348] = 2, + [167325] = 2, ACTIONS(16843), 1, - anon_sym_LPAREN2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167356] = 2, + [167333] = 2, ACTIONS(16845), 1, - anon_sym__, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167364] = 2, + [167341] = 2, ACTIONS(16847), 1, - anon_sym_LPAREN2, + aux_sym_user_defined_operator_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167372] = 2, + [167349] = 2, ACTIONS(16849), 1, - aux_sym_preproc_if_token2, + anon_sym__, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167380] = 2, + [167357] = 2, ACTIONS(16851), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167388] = 2, + [167365] = 2, ACTIONS(16853), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167396] = 2, + [167373] = 2, ACTIONS(16855), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167404] = 2, + [167381] = 2, ACTIONS(16857), 1, + anon_sym_COMMA, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [167389] = 2, + ACTIONS(12964), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167412] = 2, + [167397] = 2, ACTIONS(16859), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167420] = 2, + [167405] = 2, ACTIONS(16861), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167428] = 2, + [167413] = 2, ACTIONS(16863), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167436] = 2, + [167421] = 2, ACTIONS(16865), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym__, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167444] = 2, + [167429] = 2, ACTIONS(16867), 1, - aux_sym_preproc_if_token2, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [167437] = 2, + ACTIONS(13219), 1, + anon_sym_EQ_GT, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167452] = 2, + [167445] = 2, ACTIONS(16869), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167460] = 2, + [167453] = 2, ACTIONS(16871), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_interface_statement_token1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167468] = 2, + [167461] = 2, ACTIONS(16873), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167476] = 2, + [167469] = 2, ACTIONS(16875), 1, anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167484] = 2, + [167477] = 2, ACTIONS(16877), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167492] = 2, + [167485] = 2, ACTIONS(16879), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167500] = 2, + [167493] = 2, ACTIONS(16881), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167508] = 2, + [167501] = 2, ACTIONS(16883), 1, - anon_sym_LF, + aux_sym_operator_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167516] = 2, + [167509] = 2, ACTIONS(16885), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167524] = 2, + [167517] = 2, ACTIONS(16887), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167532] = 2, + [167525] = 2, ACTIONS(16889), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167540] = 2, + [167533] = 2, ACTIONS(16891), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167548] = 2, + [167541] = 2, ACTIONS(16893), 1, - anon_sym_RPAREN, + ts_builtin_sym_end, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167556] = 2, + [167549] = 2, ACTIONS(16895), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167564] = 2, + [167557] = 2, ACTIONS(16897), 1, - sym__string_literal, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167572] = 2, + [167565] = 2, ACTIONS(16899), 1, anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167580] = 2, + [167573] = 2, ACTIONS(16901), 1, - aux_sym_preproc_def_token2, + anon_sym_LF, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167588] = 2, + [167581] = 2, ACTIONS(16903), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167596] = 2, + [167589] = 2, ACTIONS(16905), 1, - anon_sym_LF, - ACTIONS(3), 2, + sym__string_literal, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167604] = 2, + [167597] = 2, ACTIONS(16907), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167612] = 2, + [167605] = 2, + ACTIONS(13898), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [167613] = 2, ACTIONS(16909), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167620] = 2, + [167621] = 2, ACTIONS(16911), 1, + anon_sym_LF, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [167629] = 2, + ACTIONS(16913), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167628] = 2, - ACTIONS(16913), 1, - anon_sym_RPAREN, + [167637] = 2, + ACTIONS(12742), 1, + anon_sym_EQ_GT, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167636] = 2, + [167645] = 2, + ACTIONS(7530), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [167653] = 2, ACTIONS(16915), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167644] = 2, + [167661] = 2, ACTIONS(16917), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167652] = 2, + [167669] = 2, ACTIONS(16919), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167660] = 2, + [167677] = 2, ACTIONS(16921), 1, - anon_sym_RPAREN, + aux_sym_enum_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167668] = 2, + [167685] = 2, ACTIONS(16923), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167676] = 2, + [167693] = 2, ACTIONS(16925), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167684] = 2, - ACTIONS(7486), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, + [167701] = 2, + ACTIONS(12964), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167692] = 2, + [167709] = 2, ACTIONS(16927), 1, - anon_sym_LF, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167700] = 2, + [167717] = 2, ACTIONS(16929), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167708] = 2, + [167725] = 2, ACTIONS(16931), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167716] = 2, + [167733] = 2, ACTIONS(16933), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167724] = 2, + [167741] = 2, ACTIONS(16935), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167732] = 2, + [167749] = 2, ACTIONS(16937), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167740] = 2, + [167757] = 2, ACTIONS(16939), 1, - anon_sym_LPAREN2, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167748] = 2, + [167765] = 2, ACTIONS(16941), 1, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [167773] = 2, + ACTIONS(12926), 1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167756] = 2, + [167781] = 2, ACTIONS(16943), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_coarray_statement_token5, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167764] = 2, + [167789] = 2, ACTIONS(16945), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167772] = 2, + [167797] = 2, ACTIONS(16947), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167780] = 2, + [167805] = 2, ACTIONS(16949), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167788] = 2, + [167813] = 2, ACTIONS(16951), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167796] = 2, + [167821] = 2, ACTIONS(16953), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167804] = 2, + [167829] = 2, ACTIONS(16955), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167812] = 2, + [167837] = 2, ACTIONS(16957), 1, - aux_sym_preproc_if_token2, + aux_sym__block_if_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167820] = 2, + [167845] = 2, ACTIONS(16959), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_stop_statement_token3, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167828] = 2, - ACTIONS(10714), 1, - aux_sym_module_procedure_statement_token1, + [167853] = 2, + ACTIONS(9976), 1, + aux_sym__inline_if_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167836] = 2, + [167861] = 2, ACTIONS(16961), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167844] = 2, + [167869] = 2, ACTIONS(16963), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167852] = 2, + [167877] = 2, ACTIONS(16965), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_RPAREN, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167860] = 2, + [167885] = 2, ACTIONS(16967), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167868] = 2, + [167893] = 2, ACTIONS(16969), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167876] = 2, + [167901] = 2, ACTIONS(16971), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167884] = 2, + [167909] = 2, ACTIONS(16973), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167892] = 2, + [167917] = 2, ACTIONS(16975), 1, - aux_sym_preproc_if_token2, + sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167900] = 2, + [167925] = 2, + ACTIONS(13947), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [167933] = 2, ACTIONS(16977), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167908] = 2, - ACTIONS(16979), 1, - aux_sym_preproc_def_token2, + [167941] = 2, + ACTIONS(10782), 1, + aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167916] = 2, + [167949] = 2, + ACTIONS(16979), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [167957] = 2, ACTIONS(16981), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167924] = 2, + [167965] = 2, ACTIONS(16983), 1, - aux_sym_coarray_statement_token5, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167932] = 2, + [167973] = 2, ACTIONS(16985), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167940] = 2, + [167981] = 2, ACTIONS(16987), 1, - anon_sym_COMMA, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167948] = 2, + [167989] = 2, ACTIONS(16989), 1, - aux_sym_preproc_if_token2, + aux_sym__block_if_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167956] = 2, + [167997] = 2, ACTIONS(16991), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167964] = 2, + [168005] = 2, ACTIONS(16993), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167972] = 2, + [168013] = 2, ACTIONS(16995), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [167980] = 2, - ACTIONS(16997), 1, - anon_sym_LF, + aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [167988] = 2, - ACTIONS(13128), 1, + [168021] = 2, + ACTIONS(16997), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [167996] = 2, + [168029] = 2, ACTIONS(16999), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168004] = 2, + [168037] = 2, ACTIONS(17001), 1, - aux_sym_user_defined_operator_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168012] = 2, + [168045] = 2, ACTIONS(17003), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168020] = 2, + [168053] = 2, ACTIONS(17005), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168028] = 2, - ACTIONS(13088), 1, - aux_sym_preproc_if_token2, + [168061] = 2, + ACTIONS(15355), 1, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168036] = 2, - ACTIONS(10787), 1, - aux_sym_preproc_include_token2, - ACTIONS(3), 2, - anon_sym_AMP, - sym_comment, - [168044] = 2, + [168069] = 2, ACTIONS(17007), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168052] = 2, + [168077] = 2, ACTIONS(17009), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168060] = 2, + [168085] = 2, ACTIONS(17011), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168068] = 2, + [168093] = 2, ACTIONS(17013), 1, anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168076] = 2, + [168101] = 2, ACTIONS(17015), 1, - anon_sym_LPAREN2, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168084] = 2, + [168109] = 2, ACTIONS(17017), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168092] = 2, + [168117] = 2, ACTIONS(17019), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168100] = 2, + [168125] = 2, ACTIONS(17021), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168108] = 2, + [168133] = 2, ACTIONS(17023), 1, - anon_sym_LPAREN2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168116] = 2, + [168141] = 2, ACTIONS(17025), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168124] = 2, + [168149] = 2, ACTIONS(17027), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168132] = 2, + [168157] = 2, ACTIONS(17029), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168140] = 2, + [168165] = 2, ACTIONS(17031), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168148] = 2, + [168173] = 2, ACTIONS(17033), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168156] = 2, + [168181] = 2, ACTIONS(17035), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168164] = 2, + [168189] = 2, ACTIONS(17037), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168172] = 2, + [168197] = 2, ACTIONS(17039), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168180] = 2, + [168205] = 2, ACTIONS(17041), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168188] = 2, + [168213] = 2, ACTIONS(17043), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168196] = 2, + [168221] = 2, + ACTIONS(13262), 1, + anon_sym_EQ_GT, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [168229] = 2, ACTIONS(17045), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168204] = 2, + [168237] = 2, ACTIONS(17047), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168212] = 2, + [168245] = 2, ACTIONS(17049), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168220] = 2, + [168253] = 2, ACTIONS(17051), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168228] = 2, + [168261] = 2, ACTIONS(17053), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168236] = 2, + [168269] = 2, ACTIONS(17055), 1, - aux_sym_preproc_if_token2, + anon_sym_EQ, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168244] = 2, + [168277] = 2, ACTIONS(17057), 1, - aux_sym_preproc_if_token2, + aux_sym_interface_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168252] = 2, + [168285] = 2, ACTIONS(17059), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168260] = 2, + [168293] = 2, ACTIONS(17061), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168268] = 2, + [168301] = 2, + ACTIONS(13128), 1, + anon_sym_EQ_GT, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [168309] = 2, ACTIONS(17063), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168276] = 2, + [168317] = 2, ACTIONS(17065), 1, - anon_sym_LPAREN2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168284] = 2, + [168325] = 2, ACTIONS(17067), 1, - anon_sym_LPAREN2, + anon_sym_SLASH, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168292] = 2, + [168333] = 2, ACTIONS(17069), 1, - anon_sym_EQ, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168300] = 2, + [168341] = 2, ACTIONS(17071), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168308] = 2, + [168349] = 2, ACTIONS(17073), 1, - anon_sym_LF, - ACTIONS(3), 2, + anon_sym_LPAREN2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168316] = 2, + [168357] = 2, ACTIONS(17075), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168324] = 2, + [168365] = 2, ACTIONS(17077), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168332] = 2, + [168373] = 2, ACTIONS(17079), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168340] = 2, + [168381] = 2, ACTIONS(17081), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168348] = 2, + [168389] = 2, ACTIONS(17083), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168356] = 2, + [168397] = 2, + ACTIONS(10152), 1, + anon_sym_LPAREN2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [168405] = 2, ACTIONS(17085), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168364] = 2, + [168413] = 2, ACTIONS(17087), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168372] = 2, + [168421] = 2, ACTIONS(17089), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168380] = 2, + [168429] = 2, ACTIONS(17091), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168388] = 2, + [168437] = 2, ACTIONS(17093), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168396] = 2, + [168445] = 2, ACTIONS(17095), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168404] = 2, + [168453] = 2, ACTIONS(17097), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168412] = 2, + [168461] = 2, ACTIONS(17099), 1, - aux_sym_preproc_if_token2, + anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168420] = 2, + [168469] = 2, + ACTIONS(10901), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [168477] = 2, ACTIONS(17101), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168428] = 2, + [168485] = 2, ACTIONS(17103), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168436] = 2, + [168493] = 2, ACTIONS(17105), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168444] = 2, + [168501] = 2, ACTIONS(17107), 1, - aux_sym_preproc_if_token2, + aux_sym_keyword_statement_token5, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168452] = 2, + [168509] = 2, ACTIONS(17109), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168460] = 2, + [168517] = 2, ACTIONS(17111), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168468] = 2, + [168525] = 2, ACTIONS(17113), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168476] = 2, + [168533] = 2, ACTIONS(17115), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168484] = 2, + [168541] = 2, ACTIONS(17117), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168492] = 2, + [168549] = 2, ACTIONS(17119), 1, - aux_sym_preproc_def_token2, - ACTIONS(3), 2, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168500] = 2, + [168557] = 2, ACTIONS(17121), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168508] = 2, + [168565] = 2, ACTIONS(17123), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168516] = 2, + [168573] = 2, ACTIONS(17125), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168524] = 2, + [168581] = 2, ACTIONS(17127), 1, + aux_sym_preproc_def_token2, + ACTIONS(3), 2, + anon_sym_AMP, + sym_comment, + [168589] = 2, + ACTIONS(17129), 1, sym__string_literal, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168532] = 2, - ACTIONS(13696), 1, + [168597] = 2, + ACTIONS(13542), 1, aux_sym_preproc_include_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168540] = 2, - ACTIONS(17129), 1, - aux_sym_preproc_if_token2, - ACTIONS(21), 2, - anon_sym_AMP, - sym_comment, - [168548] = 2, + [168605] = 2, ACTIONS(17131), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168556] = 2, + [168613] = 2, ACTIONS(17133), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168564] = 2, + [168621] = 2, ACTIONS(17135), 1, aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168572] = 2, + [168629] = 2, ACTIONS(17137), 1, - aux_sym_preproc_if_token2, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168580] = 2, + [168637] = 2, ACTIONS(17139), 1, aux_sym_preproc_def_token2, ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168588] = 2, + [168645] = 2, ACTIONS(17141), 1, - anon_sym_LPAREN2, - ACTIONS(21), 2, + anon_sym_LF, + ACTIONS(3), 2, anon_sym_AMP, sym_comment, - [168596] = 2, + [168653] = 2, ACTIONS(17143), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168604] = 2, + [168661] = 2, ACTIONS(17145), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168612] = 2, + [168669] = 2, ACTIONS(17147), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168620] = 2, + [168677] = 2, ACTIONS(17149), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168628] = 2, + [168685] = 2, ACTIONS(17151), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168636] = 2, + [168693] = 2, ACTIONS(17153), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168644] = 2, + [168701] = 2, ACTIONS(17155), 1, anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168652] = 2, + [168709] = 2, ACTIONS(17157), 1, - aux_sym_type_statement_token1, + anon_sym_LPAREN2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168660] = 2, + [168717] = 2, ACTIONS(17159), 1, - anon_sym_LF, - ACTIONS(3), 2, + aux_sym_type_statement_token1, + ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168668] = 2, + [168725] = 2, ACTIONS(17161), 1, - aux_sym_type_statement_token1, + aux_sym_preproc_if_token2, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168676] = 2, + [168733] = 2, ACTIONS(17163), 1, - aux_sym_preproc_if_token2, + aux_sym_type_statement_token1, ACTIONS(21), 2, anon_sym_AMP, sym_comment, - [168684] = 2, + [168741] = 2, ACTIONS(17165), 1, + aux_sym_preproc_if_token2, + ACTIONS(21), 2, + anon_sym_AMP, + sym_comment, + [168749] = 2, + ACTIONS(17167), 1, anon_sym_RPAREN, ACTIONS(21), 2, anon_sym_AMP, @@ -602027,184 +602089,184 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3289)] = 0, - [SMALL_STATE(3290)] = 93, - [SMALL_STATE(3291)] = 164, - [SMALL_STATE(3292)] = 255, - [SMALL_STATE(3293)] = 326, - [SMALL_STATE(3294)] = 417, - [SMALL_STATE(3295)] = 508, - [SMALL_STATE(3296)] = 601, - [SMALL_STATE(3297)] = 694, - [SMALL_STATE(3298)] = 785, - [SMALL_STATE(3299)] = 876, - [SMALL_STATE(3300)] = 967, - [SMALL_STATE(3301)] = 1058, - [SMALL_STATE(3302)] = 1129, - [SMALL_STATE(3303)] = 1200, - [SMALL_STATE(3304)] = 1271, - [SMALL_STATE(3305)] = 1364, - [SMALL_STATE(3306)] = 1457, - [SMALL_STATE(3307)] = 1548, - [SMALL_STATE(3308)] = 1619, - [SMALL_STATE(3309)] = 1710, - [SMALL_STATE(3310)] = 1801, - [SMALL_STATE(3311)] = 1892, - [SMALL_STATE(3312)] = 1983, - [SMALL_STATE(3313)] = 2054, - [SMALL_STATE(3314)] = 2145, - [SMALL_STATE(3315)] = 2236, - [SMALL_STATE(3316)] = 2327, - [SMALL_STATE(3317)] = 2418, - [SMALL_STATE(3318)] = 2509, - [SMALL_STATE(3319)] = 2600, - [SMALL_STATE(3320)] = 2693, - [SMALL_STATE(3321)] = 2784, - [SMALL_STATE(3322)] = 2875, - [SMALL_STATE(3323)] = 2966, - [SMALL_STATE(3324)] = 3057, - [SMALL_STATE(3325)] = 3148, - [SMALL_STATE(3326)] = 3241, - [SMALL_STATE(3327)] = 3332, - [SMALL_STATE(3328)] = 3423, - [SMALL_STATE(3329)] = 3514, - [SMALL_STATE(3330)] = 3605, - [SMALL_STATE(3331)] = 3696, - [SMALL_STATE(3332)] = 3767, - [SMALL_STATE(3333)] = 3858, - [SMALL_STATE(3334)] = 3949, - [SMALL_STATE(3335)] = 4040, - [SMALL_STATE(3336)] = 4131, - [SMALL_STATE(3337)] = 4204, + [SMALL_STATE(3290)] = 91, + [SMALL_STATE(3291)] = 184, + [SMALL_STATE(3292)] = 277, + [SMALL_STATE(3293)] = 368, + [SMALL_STATE(3294)] = 459, + [SMALL_STATE(3295)] = 550, + [SMALL_STATE(3296)] = 641, + [SMALL_STATE(3297)] = 732, + [SMALL_STATE(3298)] = 823, + [SMALL_STATE(3299)] = 894, + [SMALL_STATE(3300)] = 985, + [SMALL_STATE(3301)] = 1076, + [SMALL_STATE(3302)] = 1167, + [SMALL_STATE(3303)] = 1258, + [SMALL_STATE(3304)] = 1349, + [SMALL_STATE(3305)] = 1442, + [SMALL_STATE(3306)] = 1535, + [SMALL_STATE(3307)] = 1606, + [SMALL_STATE(3308)] = 1677, + [SMALL_STATE(3309)] = 1748, + [SMALL_STATE(3310)] = 1839, + [SMALL_STATE(3311)] = 1910, + [SMALL_STATE(3312)] = 2001, + [SMALL_STATE(3313)] = 2092, + [SMALL_STATE(3314)] = 2183, + [SMALL_STATE(3315)] = 2254, + [SMALL_STATE(3316)] = 2345, + [SMALL_STATE(3317)] = 2436, + [SMALL_STATE(3318)] = 2507, + [SMALL_STATE(3319)] = 2598, + [SMALL_STATE(3320)] = 2689, + [SMALL_STATE(3321)] = 2780, + [SMALL_STATE(3322)] = 2871, + [SMALL_STATE(3323)] = 2962, + [SMALL_STATE(3324)] = 3053, + [SMALL_STATE(3325)] = 3124, + [SMALL_STATE(3326)] = 3215, + [SMALL_STATE(3327)] = 3306, + [SMALL_STATE(3328)] = 3379, + [SMALL_STATE(3329)] = 3470, + [SMALL_STATE(3330)] = 3563, + [SMALL_STATE(3331)] = 3654, + [SMALL_STATE(3332)] = 3745, + [SMALL_STATE(3333)] = 3836, + [SMALL_STATE(3334)] = 3927, + [SMALL_STATE(3335)] = 4020, + [SMALL_STATE(3336)] = 4111, + [SMALL_STATE(3337)] = 4202, [SMALL_STATE(3338)] = 4295, [SMALL_STATE(3339)] = 4386, - [SMALL_STATE(3340)] = 4456, - [SMALL_STATE(3341)] = 4542, - [SMALL_STATE(3342)] = 4632, - [SMALL_STATE(3343)] = 4702, - [SMALL_STATE(3344)] = 4792, - [SMALL_STATE(3345)] = 4882, - [SMALL_STATE(3346)] = 4976, - [SMALL_STATE(3347)] = 5046, - [SMALL_STATE(3348)] = 5136, - [SMALL_STATE(3349)] = 5226, - [SMALL_STATE(3350)] = 5320, - [SMALL_STATE(3351)] = 5410, - [SMALL_STATE(3352)] = 5500, - [SMALL_STATE(3353)] = 5590, - [SMALL_STATE(3354)] = 5660, - [SMALL_STATE(3355)] = 5730, - [SMALL_STATE(3356)] = 5820, - [SMALL_STATE(3357)] = 5910, - [SMALL_STATE(3358)] = 6000, - [SMALL_STATE(3359)] = 6090, - [SMALL_STATE(3360)] = 6160, - [SMALL_STATE(3361)] = 6250, - [SMALL_STATE(3362)] = 6320, - [SMALL_STATE(3363)] = 6390, - [SMALL_STATE(3364)] = 6484, - [SMALL_STATE(3365)] = 6574, - [SMALL_STATE(3366)] = 6660, - [SMALL_STATE(3367)] = 6754, - [SMALL_STATE(3368)] = 6844, - [SMALL_STATE(3369)] = 6914, - [SMALL_STATE(3370)] = 6984, + [SMALL_STATE(3340)] = 4480, + [SMALL_STATE(3341)] = 4570, + [SMALL_STATE(3342)] = 4660, + [SMALL_STATE(3343)] = 4750, + [SMALL_STATE(3344)] = 4840, + [SMALL_STATE(3345)] = 4930, + [SMALL_STATE(3346)] = 5000, + [SMALL_STATE(3347)] = 5070, + [SMALL_STATE(3348)] = 5164, + [SMALL_STATE(3349)] = 5254, + [SMALL_STATE(3350)] = 5324, + [SMALL_STATE(3351)] = 5414, + [SMALL_STATE(3352)] = 5504, + [SMALL_STATE(3353)] = 5594, + [SMALL_STATE(3354)] = 5688, + [SMALL_STATE(3355)] = 5782, + [SMALL_STATE(3356)] = 5872, + [SMALL_STATE(3357)] = 5942, + [SMALL_STATE(3358)] = 6032, + [SMALL_STATE(3359)] = 6102, + [SMALL_STATE(3360)] = 6188, + [SMALL_STATE(3361)] = 6276, + [SMALL_STATE(3362)] = 6366, + [SMALL_STATE(3363)] = 6452, + [SMALL_STATE(3364)] = 6522, + [SMALL_STATE(3365)] = 6592, + [SMALL_STATE(3366)] = 6682, + [SMALL_STATE(3367)] = 6752, + [SMALL_STATE(3368)] = 6822, + [SMALL_STATE(3369)] = 6912, + [SMALL_STATE(3370)] = 7002, [SMALL_STATE(3371)] = 7072, [SMALL_STATE(3372)] = 7162, [SMALL_STATE(3373)] = 7231, - [SMALL_STATE(3374)] = 7318, - [SMALL_STATE(3375)] = 7387, - [SMALL_STATE(3376)] = 7472, - [SMALL_STATE(3377)] = 7563, - [SMALL_STATE(3378)] = 7654, - [SMALL_STATE(3379)] = 7739, - [SMALL_STATE(3380)] = 7824, - [SMALL_STATE(3381)] = 7909, - [SMALL_STATE(3382)] = 7982, - [SMALL_STATE(3383)] = 8067, - [SMALL_STATE(3384)] = 8154, - [SMALL_STATE(3385)] = 8239, - [SMALL_STATE(3386)] = 8324, - [SMALL_STATE(3387)] = 8393, - [SMALL_STATE(3388)] = 8478, - [SMALL_STATE(3389)] = 8563, - [SMALL_STATE(3390)] = 8648, - [SMALL_STATE(3391)] = 8733, + [SMALL_STATE(3374)] = 7304, + [SMALL_STATE(3375)] = 7391, + [SMALL_STATE(3376)] = 7476, + [SMALL_STATE(3377)] = 7567, + [SMALL_STATE(3378)] = 7652, + [SMALL_STATE(3379)] = 7737, + [SMALL_STATE(3380)] = 7822, + [SMALL_STATE(3381)] = 7913, + [SMALL_STATE(3382)] = 7998, + [SMALL_STATE(3383)] = 8083, + [SMALL_STATE(3384)] = 8168, + [SMALL_STATE(3385)] = 8253, + [SMALL_STATE(3386)] = 8338, + [SMALL_STATE(3387)] = 8423, + [SMALL_STATE(3388)] = 8508, + [SMALL_STATE(3389)] = 8595, + [SMALL_STATE(3390)] = 8664, + [SMALL_STATE(3391)] = 8749, [SMALL_STATE(3392)] = 8818, - [SMALL_STATE(3393)] = 8888, - [SMALL_STATE(3394)] = 8960, + [SMALL_STATE(3393)] = 8902, + [SMALL_STATE(3394)] = 8972, [SMALL_STATE(3395)] = 9044, - [SMALL_STATE(3396)] = 9125, - [SMALL_STATE(3397)] = 9192, - [SMALL_STATE(3398)] = 9259, - [SMALL_STATE(3399)] = 9326, - [SMALL_STATE(3400)] = 9407, - [SMALL_STATE(3401)] = 9492, - [SMALL_STATE(3402)] = 9559, - [SMALL_STATE(3403)] = 9644, - [SMALL_STATE(3404)] = 9711, - [SMALL_STATE(3405)] = 9796, - [SMALL_STATE(3406)] = 9863, - [SMALL_STATE(3407)] = 9946, - [SMALL_STATE(3408)] = 10031, - [SMALL_STATE(3409)] = 10116, - [SMALL_STATE(3410)] = 10183, - [SMALL_STATE(3411)] = 10268, - [SMALL_STATE(3412)] = 10353, - [SMALL_STATE(3413)] = 10438, - [SMALL_STATE(3414)] = 10519, - [SMALL_STATE(3415)] = 10604, - [SMALL_STATE(3416)] = 10689, - [SMALL_STATE(3417)] = 10774, - [SMALL_STATE(3418)] = 10841, - [SMALL_STATE(3419)] = 10922, - [SMALL_STATE(3420)] = 11003, - [SMALL_STATE(3421)] = 11088, - [SMALL_STATE(3422)] = 11169, - [SMALL_STATE(3423)] = 11250, - [SMALL_STATE(3424)] = 11335, - [SMALL_STATE(3425)] = 11416, - [SMALL_STATE(3426)] = 11497, - [SMALL_STATE(3427)] = 11582, - [SMALL_STATE(3428)] = 11663, - [SMALL_STATE(3429)] = 11744, - [SMALL_STATE(3430)] = 11829, + [SMALL_STATE(3396)] = 9111, + [SMALL_STATE(3397)] = 9196, + [SMALL_STATE(3398)] = 9277, + [SMALL_STATE(3399)] = 9358, + [SMALL_STATE(3400)] = 9443, + [SMALL_STATE(3401)] = 9510, + [SMALL_STATE(3402)] = 9595, + [SMALL_STATE(3403)] = 9676, + [SMALL_STATE(3404)] = 9761, + [SMALL_STATE(3405)] = 9842, + [SMALL_STATE(3406)] = 9927, + [SMALL_STATE(3407)] = 10012, + [SMALL_STATE(3408)] = 10093, + [SMALL_STATE(3409)] = 10160, + [SMALL_STATE(3410)] = 10241, + [SMALL_STATE(3411)] = 10322, + [SMALL_STATE(3412)] = 10403, + [SMALL_STATE(3413)] = 10484, + [SMALL_STATE(3414)] = 10569, + [SMALL_STATE(3415)] = 10650, + [SMALL_STATE(3416)] = 10717, + [SMALL_STATE(3417)] = 10802, + [SMALL_STATE(3418)] = 10883, + [SMALL_STATE(3419)] = 10964, + [SMALL_STATE(3420)] = 11045, + [SMALL_STATE(3421)] = 11126, + [SMALL_STATE(3422)] = 11211, + [SMALL_STATE(3423)] = 11292, + [SMALL_STATE(3424)] = 11373, + [SMALL_STATE(3425)] = 11440, + [SMALL_STATE(3426)] = 11525, + [SMALL_STATE(3427)] = 11606, + [SMALL_STATE(3428)] = 11673, + [SMALL_STATE(3429)] = 11758, + [SMALL_STATE(3430)] = 11825, [SMALL_STATE(3431)] = 11910, - [SMALL_STATE(3432)] = 11991, - [SMALL_STATE(3433)] = 12072, - [SMALL_STATE(3434)] = 12153, - [SMALL_STATE(3435)] = 12234, - [SMALL_STATE(3436)] = 12315, - [SMALL_STATE(3437)] = 12396, - [SMALL_STATE(3438)] = 12477, - [SMALL_STATE(3439)] = 12558, - [SMALL_STATE(3440)] = 12639, - [SMALL_STATE(3441)] = 12720, - [SMALL_STATE(3442)] = 12801, - [SMALL_STATE(3443)] = 12882, - [SMALL_STATE(3444)] = 12963, - [SMALL_STATE(3445)] = 13044, + [SMALL_STATE(3432)] = 11995, + [SMALL_STATE(3433)] = 12076, + [SMALL_STATE(3434)] = 12159, + [SMALL_STATE(3435)] = 12240, + [SMALL_STATE(3436)] = 12321, + [SMALL_STATE(3437)] = 12402, + [SMALL_STATE(3438)] = 12469, + [SMALL_STATE(3439)] = 12550, + [SMALL_STATE(3440)] = 12635, + [SMALL_STATE(3441)] = 12716, + [SMALL_STATE(3442)] = 12797, + [SMALL_STATE(3443)] = 12878, + [SMALL_STATE(3444)] = 12959, + [SMALL_STATE(3445)] = 13040, [SMALL_STATE(3446)] = 13125, [SMALL_STATE(3447)] = 13206, - [SMALL_STATE(3448)] = 13287, - [SMALL_STATE(3449)] = 13368, - [SMALL_STATE(3450)] = 13449, - [SMALL_STATE(3451)] = 13534, + [SMALL_STATE(3448)] = 13291, + [SMALL_STATE(3449)] = 13372, + [SMALL_STATE(3450)] = 13439, + [SMALL_STATE(3451)] = 13520, [SMALL_STATE(3452)] = 13601, [SMALL_STATE(3453)] = 13683, [SMALL_STATE(3454)] = 13765, [SMALL_STATE(3455)] = 13847, [SMALL_STATE(3456)] = 13929, [SMALL_STATE(3457)] = 14011, - [SMALL_STATE(3458)] = 14093, - [SMALL_STATE(3459)] = 14175, - [SMALL_STATE(3460)] = 14257, - [SMALL_STATE(3461)] = 14339, - [SMALL_STATE(3462)] = 14421, - [SMALL_STATE(3463)] = 14503, - [SMALL_STATE(3464)] = 14585, - [SMALL_STATE(3465)] = 14667, - [SMALL_STATE(3466)] = 14749, - [SMALL_STATE(3467)] = 14831, + [SMALL_STATE(3458)] = 14085, + [SMALL_STATE(3459)] = 14167, + [SMALL_STATE(3460)] = 14249, + [SMALL_STATE(3461)] = 14331, + [SMALL_STATE(3462)] = 14413, + [SMALL_STATE(3463)] = 14495, + [SMALL_STATE(3464)] = 14577, + [SMALL_STATE(3465)] = 14659, + [SMALL_STATE(3466)] = 14741, + [SMALL_STATE(3467)] = 14823, [SMALL_STATE(3468)] = 14905, [SMALL_STATE(3469)] = 14987, [SMALL_STATE(3470)] = 15069, @@ -602250,13 +602312,13 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3510)] = 18349, [SMALL_STATE(3511)] = 18431, [SMALL_STATE(3512)] = 18513, - [SMALL_STATE(3513)] = 18579, - [SMALL_STATE(3514)] = 18661, - [SMALL_STATE(3515)] = 18743, - [SMALL_STATE(3516)] = 18825, - [SMALL_STATE(3517)] = 18907, - [SMALL_STATE(3518)] = 18989, - [SMALL_STATE(3519)] = 19071, + [SMALL_STATE(3513)] = 18595, + [SMALL_STATE(3514)] = 18677, + [SMALL_STATE(3515)] = 18759, + [SMALL_STATE(3516)] = 18841, + [SMALL_STATE(3517)] = 18923, + [SMALL_STATE(3518)] = 19005, + [SMALL_STATE(3519)] = 19087, [SMALL_STATE(3520)] = 19153, [SMALL_STATE(3521)] = 19235, [SMALL_STATE(3522)] = 19317, @@ -602301,4853 +602363,4854 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3561)] = 22515, [SMALL_STATE(3562)] = 22594, [SMALL_STATE(3563)] = 22673, - [SMALL_STATE(3564)] = 22742, - [SMALL_STATE(3565)] = 22821, - [SMALL_STATE(3566)] = 22900, - [SMALL_STATE(3567)] = 23019, - [SMALL_STATE(3568)] = 23098, - [SMALL_STATE(3569)] = 23177, - [SMALL_STATE(3570)] = 23256, - [SMALL_STATE(3571)] = 23335, - [SMALL_STATE(3572)] = 23414, - [SMALL_STATE(3573)] = 23493, - [SMALL_STATE(3574)] = 23572, - [SMALL_STATE(3575)] = 23651, - [SMALL_STATE(3576)] = 23730, - [SMALL_STATE(3577)] = 23809, - [SMALL_STATE(3578)] = 23888, - [SMALL_STATE(3579)] = 23967, - [SMALL_STATE(3580)] = 24046, - [SMALL_STATE(3581)] = 24125, - [SMALL_STATE(3582)] = 24244, - [SMALL_STATE(3583)] = 24323, - [SMALL_STATE(3584)] = 24402, - [SMALL_STATE(3585)] = 24481, - [SMALL_STATE(3586)] = 24560, - [SMALL_STATE(3587)] = 24639, - [SMALL_STATE(3588)] = 24718, - [SMALL_STATE(3589)] = 24797, - [SMALL_STATE(3590)] = 24878, - [SMALL_STATE(3591)] = 24957, - [SMALL_STATE(3592)] = 25036, - [SMALL_STATE(3593)] = 25115, - [SMALL_STATE(3594)] = 25194, - [SMALL_STATE(3595)] = 25273, - [SMALL_STATE(3596)] = 25340, - [SMALL_STATE(3597)] = 25419, - [SMALL_STATE(3598)] = 25498, - [SMALL_STATE(3599)] = 25577, - [SMALL_STATE(3600)] = 25656, - [SMALL_STATE(3601)] = 25735, - [SMALL_STATE(3602)] = 25814, - [SMALL_STATE(3603)] = 25893, - [SMALL_STATE(3604)] = 25972, - [SMALL_STATE(3605)] = 26051, - [SMALL_STATE(3606)] = 26130, - [SMALL_STATE(3607)] = 26209, - [SMALL_STATE(3608)] = 26288, - [SMALL_STATE(3609)] = 26367, - [SMALL_STATE(3610)] = 26446, - [SMALL_STATE(3611)] = 26525, - [SMALL_STATE(3612)] = 26604, - [SMALL_STATE(3613)] = 26683, - [SMALL_STATE(3614)] = 26762, - [SMALL_STATE(3615)] = 26841, - [SMALL_STATE(3616)] = 26920, - [SMALL_STATE(3617)] = 27039, - [SMALL_STATE(3618)] = 27118, - [SMALL_STATE(3619)] = 27197, - [SMALL_STATE(3620)] = 27276, - [SMALL_STATE(3621)] = 27355, - [SMALL_STATE(3622)] = 27434, - [SMALL_STATE(3623)] = 27513, - [SMALL_STATE(3624)] = 27592, - [SMALL_STATE(3625)] = 27711, - [SMALL_STATE(3626)] = 27780, - [SMALL_STATE(3627)] = 27859, - [SMALL_STATE(3628)] = 27938, - [SMALL_STATE(3629)] = 28007, - [SMALL_STATE(3630)] = 28086, - [SMALL_STATE(3631)] = 28165, - [SMALL_STATE(3632)] = 28234, - [SMALL_STATE(3633)] = 28313, - [SMALL_STATE(3634)] = 28392, - [SMALL_STATE(3635)] = 28471, - [SMALL_STATE(3636)] = 28550, - [SMALL_STATE(3637)] = 28629, - [SMALL_STATE(3638)] = 28708, - [SMALL_STATE(3639)] = 28787, - [SMALL_STATE(3640)] = 28866, - [SMALL_STATE(3641)] = 28945, - [SMALL_STATE(3642)] = 29024, - [SMALL_STATE(3643)] = 29103, - [SMALL_STATE(3644)] = 29182, - [SMALL_STATE(3645)] = 29261, - [SMALL_STATE(3646)] = 29340, - [SMALL_STATE(3647)] = 29419, - [SMALL_STATE(3648)] = 29538, - [SMALL_STATE(3649)] = 29617, - [SMALL_STATE(3650)] = 29686, - [SMALL_STATE(3651)] = 29765, - [SMALL_STATE(3652)] = 29844, - [SMALL_STATE(3653)] = 29923, - [SMALL_STATE(3654)] = 30002, - [SMALL_STATE(3655)] = 30081, - [SMALL_STATE(3656)] = 30160, - [SMALL_STATE(3657)] = 30239, - [SMALL_STATE(3658)] = 30318, - [SMALL_STATE(3659)] = 30397, - [SMALL_STATE(3660)] = 30476, - [SMALL_STATE(3661)] = 30555, - [SMALL_STATE(3662)] = 30634, - [SMALL_STATE(3663)] = 30713, - [SMALL_STATE(3664)] = 30792, - [SMALL_STATE(3665)] = 30871, - [SMALL_STATE(3666)] = 30950, - [SMALL_STATE(3667)] = 31029, - [SMALL_STATE(3668)] = 31108, - [SMALL_STATE(3669)] = 31187, - [SMALL_STATE(3670)] = 31266, - [SMALL_STATE(3671)] = 31345, - [SMALL_STATE(3672)] = 31424, - [SMALL_STATE(3673)] = 31503, - [SMALL_STATE(3674)] = 31582, - [SMALL_STATE(3675)] = 31661, - [SMALL_STATE(3676)] = 31740, - [SMALL_STATE(3677)] = 31819, - [SMALL_STATE(3678)] = 31898, - [SMALL_STATE(3679)] = 32017, - [SMALL_STATE(3680)] = 32096, - [SMALL_STATE(3681)] = 32175, - [SMALL_STATE(3682)] = 32254, - [SMALL_STATE(3683)] = 32333, - [SMALL_STATE(3684)] = 32412, - [SMALL_STATE(3685)] = 32491, - [SMALL_STATE(3686)] = 32570, - [SMALL_STATE(3687)] = 32649, - [SMALL_STATE(3688)] = 32718, - [SMALL_STATE(3689)] = 32797, - [SMALL_STATE(3690)] = 32876, - [SMALL_STATE(3691)] = 32955, - [SMALL_STATE(3692)] = 33034, - [SMALL_STATE(3693)] = 33103, - [SMALL_STATE(3694)] = 33182, - [SMALL_STATE(3695)] = 33261, - [SMALL_STATE(3696)] = 33340, - [SMALL_STATE(3697)] = 33419, - [SMALL_STATE(3698)] = 33498, - [SMALL_STATE(3699)] = 33577, - [SMALL_STATE(3700)] = 33658, - [SMALL_STATE(3701)] = 33737, - [SMALL_STATE(3702)] = 33816, - [SMALL_STATE(3703)] = 33881, - [SMALL_STATE(3704)] = 33960, - [SMALL_STATE(3705)] = 34079, - [SMALL_STATE(3706)] = 34158, - [SMALL_STATE(3707)] = 34237, - [SMALL_STATE(3708)] = 34356, - [SMALL_STATE(3709)] = 34437, - [SMALL_STATE(3710)] = 34508, - [SMALL_STATE(3711)] = 34587, - [SMALL_STATE(3712)] = 34666, - [SMALL_STATE(3713)] = 34745, - [SMALL_STATE(3714)] = 34824, - [SMALL_STATE(3715)] = 34903, - [SMALL_STATE(3716)] = 34982, - [SMALL_STATE(3717)] = 35101, - [SMALL_STATE(3718)] = 35180, - [SMALL_STATE(3719)] = 35259, - [SMALL_STATE(3720)] = 35338, - [SMALL_STATE(3721)] = 35417, - [SMALL_STATE(3722)] = 35496, - [SMALL_STATE(3723)] = 35575, - [SMALL_STATE(3724)] = 35654, - [SMALL_STATE(3725)] = 35733, - [SMALL_STATE(3726)] = 35812, - [SMALL_STATE(3727)] = 35891, - [SMALL_STATE(3728)] = 35970, - [SMALL_STATE(3729)] = 36049, - [SMALL_STATE(3730)] = 36128, - [SMALL_STATE(3731)] = 36242, - [SMALL_STATE(3732)] = 36356, - [SMALL_STATE(3733)] = 36432, - [SMALL_STATE(3734)] = 36546, - [SMALL_STATE(3735)] = 36662, - [SMALL_STATE(3736)] = 36728, - [SMALL_STATE(3737)] = 36844, - [SMALL_STATE(3738)] = 36960, - [SMALL_STATE(3739)] = 37036, - [SMALL_STATE(3740)] = 37150, - [SMALL_STATE(3741)] = 37226, - [SMALL_STATE(3742)] = 37340, - [SMALL_STATE(3743)] = 37456, - [SMALL_STATE(3744)] = 37532, - [SMALL_STATE(3745)] = 37648, - [SMALL_STATE(3746)] = 37762, - [SMALL_STATE(3747)] = 37878, - [SMALL_STATE(3748)] = 37994, - [SMALL_STATE(3749)] = 38070, - [SMALL_STATE(3750)] = 38186, - [SMALL_STATE(3751)] = 38302, - [SMALL_STATE(3752)] = 38418, - [SMALL_STATE(3753)] = 38482, - [SMALL_STATE(3754)] = 38598, - [SMALL_STATE(3755)] = 38662, - [SMALL_STATE(3756)] = 38776, - [SMALL_STATE(3757)] = 38892, - [SMALL_STATE(3758)] = 38956, - [SMALL_STATE(3759)] = 39072, - [SMALL_STATE(3760)] = 39140, - [SMALL_STATE(3761)] = 39256, - [SMALL_STATE(3762)] = 39370, - [SMALL_STATE(3763)] = 39484, - [SMALL_STATE(3764)] = 39548, - [SMALL_STATE(3765)] = 39662, - [SMALL_STATE(3766)] = 39738, - [SMALL_STATE(3767)] = 39802, - [SMALL_STATE(3768)] = 39918, - [SMALL_STATE(3769)] = 40034, - [SMALL_STATE(3770)] = 40150, - [SMALL_STATE(3771)] = 40266, - [SMALL_STATE(3772)] = 40382, - [SMALL_STATE(3773)] = 40498, - [SMALL_STATE(3774)] = 40612, - [SMALL_STATE(3775)] = 40728, - [SMALL_STATE(3776)] = 40844, - [SMALL_STATE(3777)] = 40958, - [SMALL_STATE(3778)] = 41074, - [SMALL_STATE(3779)] = 41190, - [SMALL_STATE(3780)] = 41254, - [SMALL_STATE(3781)] = 41370, - [SMALL_STATE(3782)] = 41486, - [SMALL_STATE(3783)] = 41562, - [SMALL_STATE(3784)] = 41640, - [SMALL_STATE(3785)] = 41716, - [SMALL_STATE(3786)] = 41832, - [SMALL_STATE(3787)] = 41948, - [SMALL_STATE(3788)] = 42024, - [SMALL_STATE(3789)] = 42140, - [SMALL_STATE(3790)] = 42256, - [SMALL_STATE(3791)] = 42332, - [SMALL_STATE(3792)] = 42448, - [SMALL_STATE(3793)] = 42562, - [SMALL_STATE(3794)] = 42678, - [SMALL_STATE(3795)] = 42794, - [SMALL_STATE(3796)] = 42910, - [SMALL_STATE(3797)] = 43026, - [SMALL_STATE(3798)] = 43102, - [SMALL_STATE(3799)] = 43178, - [SMALL_STATE(3800)] = 43294, - [SMALL_STATE(3801)] = 43410, - [SMALL_STATE(3802)] = 43486, - [SMALL_STATE(3803)] = 43602, - [SMALL_STATE(3804)] = 43716, - [SMALL_STATE(3805)] = 43792, - [SMALL_STATE(3806)] = 43908, - [SMALL_STATE(3807)] = 44024, - [SMALL_STATE(3808)] = 44140, - [SMALL_STATE(3809)] = 44256, - [SMALL_STATE(3810)] = 44370, - [SMALL_STATE(3811)] = 44484, - [SMALL_STATE(3812)] = 44598, - [SMALL_STATE(3813)] = 44712, - [SMALL_STATE(3814)] = 44826, - [SMALL_STATE(3815)] = 44942, - [SMALL_STATE(3816)] = 45058, - [SMALL_STATE(3817)] = 45122, - [SMALL_STATE(3818)] = 45238, - [SMALL_STATE(3819)] = 45314, - [SMALL_STATE(3820)] = 45430, - [SMALL_STATE(3821)] = 45506, - [SMALL_STATE(3822)] = 45582, - [SMALL_STATE(3823)] = 45658, - [SMALL_STATE(3824)] = 45734, - [SMALL_STATE(3825)] = 45810, - [SMALL_STATE(3826)] = 45924, - [SMALL_STATE(3827)] = 46040, - [SMALL_STATE(3828)] = 46156, - [SMALL_STATE(3829)] = 46272, - [SMALL_STATE(3830)] = 46388, - [SMALL_STATE(3831)] = 46464, - [SMALL_STATE(3832)] = 46540, - [SMALL_STATE(3833)] = 46616, - [SMALL_STATE(3834)] = 46732, - [SMALL_STATE(3835)] = 46796, - [SMALL_STATE(3836)] = 46910, - [SMALL_STATE(3837)] = 47026, - [SMALL_STATE(3838)] = 47140, - [SMALL_STATE(3839)] = 47254, - [SMALL_STATE(3840)] = 47370, - [SMALL_STATE(3841)] = 47486, - [SMALL_STATE(3842)] = 47600, - [SMALL_STATE(3843)] = 47676, - [SMALL_STATE(3844)] = 47790, - [SMALL_STATE(3845)] = 47854, - [SMALL_STATE(3846)] = 47968, - [SMALL_STATE(3847)] = 48084, - [SMALL_STATE(3848)] = 48160, - [SMALL_STATE(3849)] = 48276, - [SMALL_STATE(3850)] = 48392, - [SMALL_STATE(3851)] = 48508, - [SMALL_STATE(3852)] = 48624, - [SMALL_STATE(3853)] = 48740, - [SMALL_STATE(3854)] = 48854, - [SMALL_STATE(3855)] = 48970, - [SMALL_STATE(3856)] = 49086, - [SMALL_STATE(3857)] = 49162, - [SMALL_STATE(3858)] = 49276, - [SMALL_STATE(3859)] = 49392, - [SMALL_STATE(3860)] = 49455, - [SMALL_STATE(3861)] = 49518, - [SMALL_STATE(3862)] = 49581, - [SMALL_STATE(3863)] = 49644, - [SMALL_STATE(3864)] = 49753, - [SMALL_STATE(3865)] = 49862, - [SMALL_STATE(3866)] = 49971, - [SMALL_STATE(3867)] = 50034, - [SMALL_STATE(3868)] = 50101, - [SMALL_STATE(3869)] = 50168, - [SMALL_STATE(3870)] = 50243, - [SMALL_STATE(3871)] = 50318, - [SMALL_STATE(3872)] = 50429, - [SMALL_STATE(3873)] = 50492, - [SMALL_STATE(3874)] = 50555, - [SMALL_STATE(3875)] = 50622, - [SMALL_STATE(3876)] = 50687, - [SMALL_STATE(3877)] = 50754, - [SMALL_STATE(3878)] = 50829, - [SMALL_STATE(3879)] = 50892, - [SMALL_STATE(3880)] = 50955, - [SMALL_STATE(3881)] = 51030, - [SMALL_STATE(3882)] = 51093, - [SMALL_STATE(3883)] = 51156, - [SMALL_STATE(3884)] = 51219, - [SMALL_STATE(3885)] = 51294, - [SMALL_STATE(3886)] = 51369, - [SMALL_STATE(3887)] = 51434, - [SMALL_STATE(3888)] = 51501, + [SMALL_STATE(3564)] = 22752, + [SMALL_STATE(3565)] = 22871, + [SMALL_STATE(3566)] = 22950, + [SMALL_STATE(3567)] = 23029, + [SMALL_STATE(3568)] = 23108, + [SMALL_STATE(3569)] = 23187, + [SMALL_STATE(3570)] = 23252, + [SMALL_STATE(3571)] = 23331, + [SMALL_STATE(3572)] = 23410, + [SMALL_STATE(3573)] = 23529, + [SMALL_STATE(3574)] = 23608, + [SMALL_STATE(3575)] = 23687, + [SMALL_STATE(3576)] = 23766, + [SMALL_STATE(3577)] = 23845, + [SMALL_STATE(3578)] = 23924, + [SMALL_STATE(3579)] = 24003, + [SMALL_STATE(3580)] = 24082, + [SMALL_STATE(3581)] = 24161, + [SMALL_STATE(3582)] = 24240, + [SMALL_STATE(3583)] = 24319, + [SMALL_STATE(3584)] = 24398, + [SMALL_STATE(3585)] = 24477, + [SMALL_STATE(3586)] = 24596, + [SMALL_STATE(3587)] = 24675, + [SMALL_STATE(3588)] = 24754, + [SMALL_STATE(3589)] = 24833, + [SMALL_STATE(3590)] = 24912, + [SMALL_STATE(3591)] = 24991, + [SMALL_STATE(3592)] = 25070, + [SMALL_STATE(3593)] = 25149, + [SMALL_STATE(3594)] = 25228, + [SMALL_STATE(3595)] = 25307, + [SMALL_STATE(3596)] = 25374, + [SMALL_STATE(3597)] = 25453, + [SMALL_STATE(3598)] = 25532, + [SMALL_STATE(3599)] = 25611, + [SMALL_STATE(3600)] = 25730, + [SMALL_STATE(3601)] = 25809, + [SMALL_STATE(3602)] = 25888, + [SMALL_STATE(3603)] = 25967, + [SMALL_STATE(3604)] = 26046, + [SMALL_STATE(3605)] = 26125, + [SMALL_STATE(3606)] = 26204, + [SMALL_STATE(3607)] = 26283, + [SMALL_STATE(3608)] = 26362, + [SMALL_STATE(3609)] = 26441, + [SMALL_STATE(3610)] = 26520, + [SMALL_STATE(3611)] = 26599, + [SMALL_STATE(3612)] = 26678, + [SMALL_STATE(3613)] = 26797, + [SMALL_STATE(3614)] = 26876, + [SMALL_STATE(3615)] = 26955, + [SMALL_STATE(3616)] = 27034, + [SMALL_STATE(3617)] = 27113, + [SMALL_STATE(3618)] = 27192, + [SMALL_STATE(3619)] = 27271, + [SMALL_STATE(3620)] = 27350, + [SMALL_STATE(3621)] = 27429, + [SMALL_STATE(3622)] = 27508, + [SMALL_STATE(3623)] = 27579, + [SMALL_STATE(3624)] = 27658, + [SMALL_STATE(3625)] = 27737, + [SMALL_STATE(3626)] = 27806, + [SMALL_STATE(3627)] = 27885, + [SMALL_STATE(3628)] = 27964, + [SMALL_STATE(3629)] = 28083, + [SMALL_STATE(3630)] = 28164, + [SMALL_STATE(3631)] = 28243, + [SMALL_STATE(3632)] = 28322, + [SMALL_STATE(3633)] = 28401, + [SMALL_STATE(3634)] = 28480, + [SMALL_STATE(3635)] = 28559, + [SMALL_STATE(3636)] = 28638, + [SMALL_STATE(3637)] = 28717, + [SMALL_STATE(3638)] = 28796, + [SMALL_STATE(3639)] = 28875, + [SMALL_STATE(3640)] = 28954, + [SMALL_STATE(3641)] = 29033, + [SMALL_STATE(3642)] = 29112, + [SMALL_STATE(3643)] = 29191, + [SMALL_STATE(3644)] = 29270, + [SMALL_STATE(3645)] = 29349, + [SMALL_STATE(3646)] = 29428, + [SMALL_STATE(3647)] = 29507, + [SMALL_STATE(3648)] = 29586, + [SMALL_STATE(3649)] = 29667, + [SMALL_STATE(3650)] = 29746, + [SMALL_STATE(3651)] = 29825, + [SMALL_STATE(3652)] = 29904, + [SMALL_STATE(3653)] = 29983, + [SMALL_STATE(3654)] = 30062, + [SMALL_STATE(3655)] = 30141, + [SMALL_STATE(3656)] = 30220, + [SMALL_STATE(3657)] = 30299, + [SMALL_STATE(3658)] = 30378, + [SMALL_STATE(3659)] = 30457, + [SMALL_STATE(3660)] = 30536, + [SMALL_STATE(3661)] = 30615, + [SMALL_STATE(3662)] = 30694, + [SMALL_STATE(3663)] = 30773, + [SMALL_STATE(3664)] = 30852, + [SMALL_STATE(3665)] = 30931, + [SMALL_STATE(3666)] = 31010, + [SMALL_STATE(3667)] = 31129, + [SMALL_STATE(3668)] = 31208, + [SMALL_STATE(3669)] = 31287, + [SMALL_STATE(3670)] = 31366, + [SMALL_STATE(3671)] = 31445, + [SMALL_STATE(3672)] = 31524, + [SMALL_STATE(3673)] = 31603, + [SMALL_STATE(3674)] = 31682, + [SMALL_STATE(3675)] = 31761, + [SMALL_STATE(3676)] = 31830, + [SMALL_STATE(3677)] = 31949, + [SMALL_STATE(3678)] = 32028, + [SMALL_STATE(3679)] = 32097, + [SMALL_STATE(3680)] = 32176, + [SMALL_STATE(3681)] = 32255, + [SMALL_STATE(3682)] = 32334, + [SMALL_STATE(3683)] = 32403, + [SMALL_STATE(3684)] = 32482, + [SMALL_STATE(3685)] = 32551, + [SMALL_STATE(3686)] = 32630, + [SMALL_STATE(3687)] = 32699, + [SMALL_STATE(3688)] = 32778, + [SMALL_STATE(3689)] = 32857, + [SMALL_STATE(3690)] = 32936, + [SMALL_STATE(3691)] = 33015, + [SMALL_STATE(3692)] = 33094, + [SMALL_STATE(3693)] = 33173, + [SMALL_STATE(3694)] = 33252, + [SMALL_STATE(3695)] = 33331, + [SMALL_STATE(3696)] = 33410, + [SMALL_STATE(3697)] = 33489, + [SMALL_STATE(3698)] = 33568, + [SMALL_STATE(3699)] = 33647, + [SMALL_STATE(3700)] = 33726, + [SMALL_STATE(3701)] = 33805, + [SMALL_STATE(3702)] = 33884, + [SMALL_STATE(3703)] = 33963, + [SMALL_STATE(3704)] = 34042, + [SMALL_STATE(3705)] = 34107, + [SMALL_STATE(3706)] = 34186, + [SMALL_STATE(3707)] = 34265, + [SMALL_STATE(3708)] = 34344, + [SMALL_STATE(3709)] = 34423, + [SMALL_STATE(3710)] = 34502, + [SMALL_STATE(3711)] = 34581, + [SMALL_STATE(3712)] = 34660, + [SMALL_STATE(3713)] = 34739, + [SMALL_STATE(3714)] = 34858, + [SMALL_STATE(3715)] = 34937, + [SMALL_STATE(3716)] = 35016, + [SMALL_STATE(3717)] = 35095, + [SMALL_STATE(3718)] = 35174, + [SMALL_STATE(3719)] = 35253, + [SMALL_STATE(3720)] = 35332, + [SMALL_STATE(3721)] = 35411, + [SMALL_STATE(3722)] = 35490, + [SMALL_STATE(3723)] = 35569, + [SMALL_STATE(3724)] = 35648, + [SMALL_STATE(3725)] = 35727, + [SMALL_STATE(3726)] = 35806, + [SMALL_STATE(3727)] = 35885, + [SMALL_STATE(3728)] = 35964, + [SMALL_STATE(3729)] = 36045, + [SMALL_STATE(3730)] = 36114, + [SMALL_STATE(3731)] = 36193, + [SMALL_STATE(3732)] = 36307, + [SMALL_STATE(3733)] = 36421, + [SMALL_STATE(3734)] = 36497, + [SMALL_STATE(3735)] = 36573, + [SMALL_STATE(3736)] = 36689, + [SMALL_STATE(3737)] = 36805, + [SMALL_STATE(3738)] = 36921, + [SMALL_STATE(3739)] = 37037, + [SMALL_STATE(3740)] = 37153, + [SMALL_STATE(3741)] = 37269, + [SMALL_STATE(3742)] = 37385, + [SMALL_STATE(3743)] = 37499, + [SMALL_STATE(3744)] = 37563, + [SMALL_STATE(3745)] = 37677, + [SMALL_STATE(3746)] = 37745, + [SMALL_STATE(3747)] = 37861, + [SMALL_STATE(3748)] = 37977, + [SMALL_STATE(3749)] = 38093, + [SMALL_STATE(3750)] = 38207, + [SMALL_STATE(3751)] = 38323, + [SMALL_STATE(3752)] = 38439, + [SMALL_STATE(3753)] = 38555, + [SMALL_STATE(3754)] = 38671, + [SMALL_STATE(3755)] = 38785, + [SMALL_STATE(3756)] = 38901, + [SMALL_STATE(3757)] = 38977, + [SMALL_STATE(3758)] = 39053, + [SMALL_STATE(3759)] = 39169, + [SMALL_STATE(3760)] = 39285, + [SMALL_STATE(3761)] = 39401, + [SMALL_STATE(3762)] = 39517, + [SMALL_STATE(3763)] = 39633, + [SMALL_STATE(3764)] = 39749, + [SMALL_STATE(3765)] = 39825, + [SMALL_STATE(3766)] = 39941, + [SMALL_STATE(3767)] = 40055, + [SMALL_STATE(3768)] = 40169, + [SMALL_STATE(3769)] = 40285, + [SMALL_STATE(3770)] = 40401, + [SMALL_STATE(3771)] = 40517, + [SMALL_STATE(3772)] = 40581, + [SMALL_STATE(3773)] = 40697, + [SMALL_STATE(3774)] = 40811, + [SMALL_STATE(3775)] = 40927, + [SMALL_STATE(3776)] = 41043, + [SMALL_STATE(3777)] = 41119, + [SMALL_STATE(3778)] = 41235, + [SMALL_STATE(3779)] = 41351, + [SMALL_STATE(3780)] = 41467, + [SMALL_STATE(3781)] = 41583, + [SMALL_STATE(3782)] = 41699, + [SMALL_STATE(3783)] = 41815, + [SMALL_STATE(3784)] = 41931, + [SMALL_STATE(3785)] = 42047, + [SMALL_STATE(3786)] = 42123, + [SMALL_STATE(3787)] = 42239, + [SMALL_STATE(3788)] = 42355, + [SMALL_STATE(3789)] = 42469, + [SMALL_STATE(3790)] = 42585, + [SMALL_STATE(3791)] = 42661, + [SMALL_STATE(3792)] = 42737, + [SMALL_STATE(3793)] = 42815, + [SMALL_STATE(3794)] = 42929, + [SMALL_STATE(3795)] = 43043, + [SMALL_STATE(3796)] = 43107, + [SMALL_STATE(3797)] = 43221, + [SMALL_STATE(3798)] = 43335, + [SMALL_STATE(3799)] = 43449, + [SMALL_STATE(3800)] = 43563, + [SMALL_STATE(3801)] = 43677, + [SMALL_STATE(3802)] = 43741, + [SMALL_STATE(3803)] = 43855, + [SMALL_STATE(3804)] = 43931, + [SMALL_STATE(3805)] = 44047, + [SMALL_STATE(3806)] = 44163, + [SMALL_STATE(3807)] = 44279, + [SMALL_STATE(3808)] = 44393, + [SMALL_STATE(3809)] = 44509, + [SMALL_STATE(3810)] = 44573, + [SMALL_STATE(3811)] = 44637, + [SMALL_STATE(3812)] = 44751, + [SMALL_STATE(3813)] = 44865, + [SMALL_STATE(3814)] = 44941, + [SMALL_STATE(3815)] = 45017, + [SMALL_STATE(3816)] = 45131, + [SMALL_STATE(3817)] = 45245, + [SMALL_STATE(3818)] = 45321, + [SMALL_STATE(3819)] = 45385, + [SMALL_STATE(3820)] = 45501, + [SMALL_STATE(3821)] = 45617, + [SMALL_STATE(3822)] = 45733, + [SMALL_STATE(3823)] = 45847, + [SMALL_STATE(3824)] = 45963, + [SMALL_STATE(3825)] = 46039, + [SMALL_STATE(3826)] = 46155, + [SMALL_STATE(3827)] = 46271, + [SMALL_STATE(3828)] = 46387, + [SMALL_STATE(3829)] = 46503, + [SMALL_STATE(3830)] = 46619, + [SMALL_STATE(3831)] = 46735, + [SMALL_STATE(3832)] = 46811, + [SMALL_STATE(3833)] = 46925, + [SMALL_STATE(3834)] = 47001, + [SMALL_STATE(3835)] = 47077, + [SMALL_STATE(3836)] = 47153, + [SMALL_STATE(3837)] = 47267, + [SMALL_STATE(3838)] = 47381, + [SMALL_STATE(3839)] = 47457, + [SMALL_STATE(3840)] = 47533, + [SMALL_STATE(3841)] = 47609, + [SMALL_STATE(3842)] = 47685, + [SMALL_STATE(3843)] = 47801, + [SMALL_STATE(3844)] = 47917, + [SMALL_STATE(3845)] = 48033, + [SMALL_STATE(3846)] = 48109, + [SMALL_STATE(3847)] = 48225, + [SMALL_STATE(3848)] = 48341, + [SMALL_STATE(3849)] = 48457, + [SMALL_STATE(3850)] = 48573, + [SMALL_STATE(3851)] = 48689, + [SMALL_STATE(3852)] = 48805, + [SMALL_STATE(3853)] = 48919, + [SMALL_STATE(3854)] = 49035, + [SMALL_STATE(3855)] = 49101, + [SMALL_STATE(3856)] = 49177, + [SMALL_STATE(3857)] = 49253, + [SMALL_STATE(3858)] = 49329, + [SMALL_STATE(3859)] = 49393, + [SMALL_STATE(3860)] = 49457, + [SMALL_STATE(3861)] = 49520, + [SMALL_STATE(3862)] = 49629, + [SMALL_STATE(3863)] = 49692, + [SMALL_STATE(3864)] = 49759, + [SMALL_STATE(3865)] = 49834, + [SMALL_STATE(3866)] = 49909, + [SMALL_STATE(3867)] = 49984, + [SMALL_STATE(3868)] = 50093, + [SMALL_STATE(3869)] = 50204, + [SMALL_STATE(3870)] = 50269, + [SMALL_STATE(3871)] = 50336, + [SMALL_STATE(3872)] = 50411, + [SMALL_STATE(3873)] = 50474, + [SMALL_STATE(3874)] = 50549, + [SMALL_STATE(3875)] = 50616, + [SMALL_STATE(3876)] = 50679, + [SMALL_STATE(3877)] = 50746, + [SMALL_STATE(3878)] = 50813, + [SMALL_STATE(3879)] = 50880, + [SMALL_STATE(3880)] = 50947, + [SMALL_STATE(3881)] = 51010, + [SMALL_STATE(3882)] = 51073, + [SMALL_STATE(3883)] = 51136, + [SMALL_STATE(3884)] = 51203, + [SMALL_STATE(3885)] = 51312, + [SMALL_STATE(3886)] = 51387, + [SMALL_STATE(3887)] = 51450, + [SMALL_STATE(3888)] = 51513, [SMALL_STATE(3889)] = 51576, [SMALL_STATE(3890)] = 51639, - [SMALL_STATE(3891)] = 51702, - [SMALL_STATE(3892)] = 51769, - [SMALL_STATE(3893)] = 51836, - [SMALL_STATE(3894)] = 51903, - [SMALL_STATE(3895)] = 51970, - [SMALL_STATE(3896)] = 52045, - [SMALL_STATE(3897)] = 52117, - [SMALL_STATE(3898)] = 52189, - [SMALL_STATE(3899)] = 52261, - [SMALL_STATE(3900)] = 52333, - [SMALL_STATE(3901)] = 52405, - [SMALL_STATE(3902)] = 52477, - [SMALL_STATE(3903)] = 52549, - [SMALL_STATE(3904)] = 52621, - [SMALL_STATE(3905)] = 52683, - [SMALL_STATE(3906)] = 52755, - [SMALL_STATE(3907)] = 52827, - [SMALL_STATE(3908)] = 52899, - [SMALL_STATE(3909)] = 52971, - [SMALL_STATE(3910)] = 53035, - [SMALL_STATE(3911)] = 53107, - [SMALL_STATE(3912)] = 53169, - [SMALL_STATE(3913)] = 53241, - [SMALL_STATE(3914)] = 53303, - [SMALL_STATE(3915)] = 53365, - [SMALL_STATE(3916)] = 53427, - [SMALL_STATE(3917)] = 53489, - [SMALL_STATE(3918)] = 53561, - [SMALL_STATE(3919)] = 53623, - [SMALL_STATE(3920)] = 53685, - [SMALL_STATE(3921)] = 53747, - [SMALL_STATE(3922)] = 53819, - [SMALL_STATE(3923)] = 53881, - [SMALL_STATE(3924)] = 53953, - [SMALL_STATE(3925)] = 54015, - [SMALL_STATE(3926)] = 54077, - [SMALL_STATE(3927)] = 54149, - [SMALL_STATE(3928)] = 54221, - [SMALL_STATE(3929)] = 54293, - [SMALL_STATE(3930)] = 54355, - [SMALL_STATE(3931)] = 54417, - [SMALL_STATE(3932)] = 54479, - [SMALL_STATE(3933)] = 54545, - [SMALL_STATE(3934)] = 54607, - [SMALL_STATE(3935)] = 54669, - [SMALL_STATE(3936)] = 54731, - [SMALL_STATE(3937)] = 54803, - [SMALL_STATE(3938)] = 54871, - [SMALL_STATE(3939)] = 54933, - [SMALL_STATE(3940)] = 54995, - [SMALL_STATE(3941)] = 55057, - [SMALL_STATE(3942)] = 55119, - [SMALL_STATE(3943)] = 55181, - [SMALL_STATE(3944)] = 55243, - [SMALL_STATE(3945)] = 55305, - [SMALL_STATE(3946)] = 55367, - [SMALL_STATE(3947)] = 55429, - [SMALL_STATE(3948)] = 55491, - [SMALL_STATE(3949)] = 55553, - [SMALL_STATE(3950)] = 55625, - [SMALL_STATE(3951)] = 55687, - [SMALL_STATE(3952)] = 55749, - [SMALL_STATE(3953)] = 55811, - [SMALL_STATE(3954)] = 55873, - [SMALL_STATE(3955)] = 55935, - [SMALL_STATE(3956)] = 55997, - [SMALL_STATE(3957)] = 56069, - [SMALL_STATE(3958)] = 56141, - [SMALL_STATE(3959)] = 56213, - [SMALL_STATE(3960)] = 56285, - [SMALL_STATE(3961)] = 56347, - [SMALL_STATE(3962)] = 56409, - [SMALL_STATE(3963)] = 56481, - [SMALL_STATE(3964)] = 56545, - [SMALL_STATE(3965)] = 56617, - [SMALL_STATE(3966)] = 56689, - [SMALL_STATE(3967)] = 56761, - [SMALL_STATE(3968)] = 56823, - [SMALL_STATE(3969)] = 56885, - [SMALL_STATE(3970)] = 56947, - [SMALL_STATE(3971)] = 57019, - [SMALL_STATE(3972)] = 57091, - [SMALL_STATE(3973)] = 57163, - [SMALL_STATE(3974)] = 57235, - [SMALL_STATE(3975)] = 57307, - [SMALL_STATE(3976)] = 57369, - [SMALL_STATE(3977)] = 57441, - [SMALL_STATE(3978)] = 57513, - [SMALL_STATE(3979)] = 57585, - [SMALL_STATE(3980)] = 57657, - [SMALL_STATE(3981)] = 57729, - [SMALL_STATE(3982)] = 57801, - [SMALL_STATE(3983)] = 57873, - [SMALL_STATE(3984)] = 57945, - [SMALL_STATE(3985)] = 58017, - [SMALL_STATE(3986)] = 58079, - [SMALL_STATE(3987)] = 58151, - [SMALL_STATE(3988)] = 58223, - [SMALL_STATE(3989)] = 58285, - [SMALL_STATE(3990)] = 58354, - [SMALL_STATE(3991)] = 58423, - [SMALL_STATE(3992)] = 58492, - [SMALL_STATE(3993)] = 58561, - [SMALL_STATE(3994)] = 58630, - [SMALL_STATE(3995)] = 58699, - [SMALL_STATE(3996)] = 58768, - [SMALL_STATE(3997)] = 58837, - [SMALL_STATE(3998)] = 58906, - [SMALL_STATE(3999)] = 58975, - [SMALL_STATE(4000)] = 59044, - [SMALL_STATE(4001)] = 59113, - [SMALL_STATE(4002)] = 59182, - [SMALL_STATE(4003)] = 59251, - [SMALL_STATE(4004)] = 59320, - [SMALL_STATE(4005)] = 59389, - [SMALL_STATE(4006)] = 59458, - [SMALL_STATE(4007)] = 59527, - [SMALL_STATE(4008)] = 59596, - [SMALL_STATE(4009)] = 59665, - [SMALL_STATE(4010)] = 59734, - [SMALL_STATE(4011)] = 59803, - [SMALL_STATE(4012)] = 59872, - [SMALL_STATE(4013)] = 59941, - [SMALL_STATE(4014)] = 60010, - [SMALL_STATE(4015)] = 60079, - [SMALL_STATE(4016)] = 60148, - [SMALL_STATE(4017)] = 60217, - [SMALL_STATE(4018)] = 60286, - [SMALL_STATE(4019)] = 60355, - [SMALL_STATE(4020)] = 60424, - [SMALL_STATE(4021)] = 60493, - [SMALL_STATE(4022)] = 60562, - [SMALL_STATE(4023)] = 60631, - [SMALL_STATE(4024)] = 60700, - [SMALL_STATE(4025)] = 60769, - [SMALL_STATE(4026)] = 60838, - [SMALL_STATE(4027)] = 60907, - [SMALL_STATE(4028)] = 60976, - [SMALL_STATE(4029)] = 61045, - [SMALL_STATE(4030)] = 61114, - [SMALL_STATE(4031)] = 61183, - [SMALL_STATE(4032)] = 61252, - [SMALL_STATE(4033)] = 61313, - [SMALL_STATE(4034)] = 61382, - [SMALL_STATE(4035)] = 61451, - [SMALL_STATE(4036)] = 61512, - [SMALL_STATE(4037)] = 61581, - [SMALL_STATE(4038)] = 61650, - [SMALL_STATE(4039)] = 61719, - [SMALL_STATE(4040)] = 61788, - [SMALL_STATE(4041)] = 61857, - [SMALL_STATE(4042)] = 61926, - [SMALL_STATE(4043)] = 61995, - [SMALL_STATE(4044)] = 62064, - [SMALL_STATE(4045)] = 62133, - [SMALL_STATE(4046)] = 62202, - [SMALL_STATE(4047)] = 62271, - [SMALL_STATE(4048)] = 62340, - [SMALL_STATE(4049)] = 62445, - [SMALL_STATE(4050)] = 62550, - [SMALL_STATE(4051)] = 62655, - [SMALL_STATE(4052)] = 62724, - [SMALL_STATE(4053)] = 62793, - [SMALL_STATE(4054)] = 62862, - [SMALL_STATE(4055)] = 62923, - [SMALL_STATE(4056)] = 62992, - [SMALL_STATE(4057)] = 63061, - [SMALL_STATE(4058)] = 63130, - [SMALL_STATE(4059)] = 63199, - [SMALL_STATE(4060)] = 63268, - [SMALL_STATE(4061)] = 63337, - [SMALL_STATE(4062)] = 63406, - [SMALL_STATE(4063)] = 63475, - [SMALL_STATE(4064)] = 63544, - [SMALL_STATE(4065)] = 63613, - [SMALL_STATE(4066)] = 63682, - [SMALL_STATE(4067)] = 63751, - [SMALL_STATE(4068)] = 63812, - [SMALL_STATE(4069)] = 63881, - [SMALL_STATE(4070)] = 63950, - [SMALL_STATE(4071)] = 64019, - [SMALL_STATE(4072)] = 64088, - [SMALL_STATE(4073)] = 64157, - [SMALL_STATE(4074)] = 64226, - [SMALL_STATE(4075)] = 64295, - [SMALL_STATE(4076)] = 64364, - [SMALL_STATE(4077)] = 64433, - [SMALL_STATE(4078)] = 64502, - [SMALL_STATE(4079)] = 64571, - [SMALL_STATE(4080)] = 64640, - [SMALL_STATE(4081)] = 64709, - [SMALL_STATE(4082)] = 64778, - [SMALL_STATE(4083)] = 64847, - [SMALL_STATE(4084)] = 64916, - [SMALL_STATE(4085)] = 64985, - [SMALL_STATE(4086)] = 65054, - [SMALL_STATE(4087)] = 65123, - [SMALL_STATE(4088)] = 65192, - [SMALL_STATE(4089)] = 65261, - [SMALL_STATE(4090)] = 65330, - [SMALL_STATE(4091)] = 65399, - [SMALL_STATE(4092)] = 65468, - [SMALL_STATE(4093)] = 65537, - [SMALL_STATE(4094)] = 65606, - [SMALL_STATE(4095)] = 65675, - [SMALL_STATE(4096)] = 65736, - [SMALL_STATE(4097)] = 65805, - [SMALL_STATE(4098)] = 65874, - [SMALL_STATE(4099)] = 65943, - [SMALL_STATE(4100)] = 66012, - [SMALL_STATE(4101)] = 66081, - [SMALL_STATE(4102)] = 66150, - [SMALL_STATE(4103)] = 66219, - [SMALL_STATE(4104)] = 66288, - [SMALL_STATE(4105)] = 66357, - [SMALL_STATE(4106)] = 66426, - [SMALL_STATE(4107)] = 66495, - [SMALL_STATE(4108)] = 66564, - [SMALL_STATE(4109)] = 66633, - [SMALL_STATE(4110)] = 66702, - [SMALL_STATE(4111)] = 66771, - [SMALL_STATE(4112)] = 66840, - [SMALL_STATE(4113)] = 66909, - [SMALL_STATE(4114)] = 66978, - [SMALL_STATE(4115)] = 67047, - [SMALL_STATE(4116)] = 67116, - [SMALL_STATE(4117)] = 67185, - [SMALL_STATE(4118)] = 67254, - [SMALL_STATE(4119)] = 67323, - [SMALL_STATE(4120)] = 67392, - [SMALL_STATE(4121)] = 67461, - [SMALL_STATE(4122)] = 67530, - [SMALL_STATE(4123)] = 67599, - [SMALL_STATE(4124)] = 67668, - [SMALL_STATE(4125)] = 67737, - [SMALL_STATE(4126)] = 67806, - [SMALL_STATE(4127)] = 67875, - [SMALL_STATE(4128)] = 67944, - [SMALL_STATE(4129)] = 68013, - [SMALL_STATE(4130)] = 68082, - [SMALL_STATE(4131)] = 68151, - [SMALL_STATE(4132)] = 68220, - [SMALL_STATE(4133)] = 68289, - [SMALL_STATE(4134)] = 68358, - [SMALL_STATE(4135)] = 68427, - [SMALL_STATE(4136)] = 68496, - [SMALL_STATE(4137)] = 68565, - [SMALL_STATE(4138)] = 68626, - [SMALL_STATE(4139)] = 68695, - [SMALL_STATE(4140)] = 68764, - [SMALL_STATE(4141)] = 68833, - [SMALL_STATE(4142)] = 68902, - [SMALL_STATE(4143)] = 68971, - [SMALL_STATE(4144)] = 69076, - [SMALL_STATE(4145)] = 69181, - [SMALL_STATE(4146)] = 69286, - [SMALL_STATE(4147)] = 69364, - [SMALL_STATE(4148)] = 69468, - [SMALL_STATE(4149)] = 69572, - [SMALL_STATE(4150)] = 69676, - [SMALL_STATE(4151)] = 69780, - [SMALL_STATE(4152)] = 69884, - [SMALL_STATE(4153)] = 69988, - [SMALL_STATE(4154)] = 70092, - [SMALL_STATE(4155)] = 70196, - [SMALL_STATE(4156)] = 70300, - [SMALL_STATE(4157)] = 70404, - [SMALL_STATE(4158)] = 70508, - [SMALL_STATE(4159)] = 70600, - [SMALL_STATE(4160)] = 70674, - [SMALL_STATE(4161)] = 70746, - [SMALL_STATE(4162)] = 70824, - [SMALL_STATE(4163)] = 70908, - [SMALL_STATE(4164)] = 70990, - [SMALL_STATE(4165)] = 71076, - [SMALL_STATE(4166)] = 71164, - [SMALL_STATE(4167)] = 71268, - [SMALL_STATE(4168)] = 71372, - [SMALL_STATE(4169)] = 71476, - [SMALL_STATE(4170)] = 71580, - [SMALL_STATE(4171)] = 71684, - [SMALL_STATE(4172)] = 71776, - [SMALL_STATE(4173)] = 71880, - [SMALL_STATE(4174)] = 71984, - [SMALL_STATE(4175)] = 72088, - [SMALL_STATE(4176)] = 72156, - [SMALL_STATE(4177)] = 72238, - [SMALL_STATE(4178)] = 72342, - [SMALL_STATE(4179)] = 72412, - [SMALL_STATE(4180)] = 72516, - [SMALL_STATE(4181)] = 72617, - [SMALL_STATE(4182)] = 72718, - [SMALL_STATE(4183)] = 72819, - [SMALL_STATE(4184)] = 72920, - [SMALL_STATE(4185)] = 73021, - [SMALL_STATE(4186)] = 73122, - [SMALL_STATE(4187)] = 73223, - [SMALL_STATE(4188)] = 73324, - [SMALL_STATE(4189)] = 73425, - [SMALL_STATE(4190)] = 73526, - [SMALL_STATE(4191)] = 73627, - [SMALL_STATE(4192)] = 73728, - [SMALL_STATE(4193)] = 73829, - [SMALL_STATE(4194)] = 73930, - [SMALL_STATE(4195)] = 74031, - [SMALL_STATE(4196)] = 74132, - [SMALL_STATE(4197)] = 74233, - [SMALL_STATE(4198)] = 74325, - [SMALL_STATE(4199)] = 74378, - [SMALL_STATE(4200)] = 74431, - [SMALL_STATE(4201)] = 74529, - [SMALL_STATE(4202)] = 74627, - [SMALL_STATE(4203)] = 74725, - [SMALL_STATE(4204)] = 74823, - [SMALL_STATE(4205)] = 74921, - [SMALL_STATE(4206)] = 75019, - [SMALL_STATE(4207)] = 75117, - [SMALL_STATE(4208)] = 75215, - [SMALL_STATE(4209)] = 75313, - [SMALL_STATE(4210)] = 75411, - [SMALL_STATE(4211)] = 75509, - [SMALL_STATE(4212)] = 75607, - [SMALL_STATE(4213)] = 75705, - [SMALL_STATE(4214)] = 75803, - [SMALL_STATE(4215)] = 75901, - [SMALL_STATE(4216)] = 75999, - [SMALL_STATE(4217)] = 76097, - [SMALL_STATE(4218)] = 76195, - [SMALL_STATE(4219)] = 76293, - [SMALL_STATE(4220)] = 76391, - [SMALL_STATE(4221)] = 76489, - [SMALL_STATE(4222)] = 76587, - [SMALL_STATE(4223)] = 76685, - [SMALL_STATE(4224)] = 76783, - [SMALL_STATE(4225)] = 76881, - [SMALL_STATE(4226)] = 76979, - [SMALL_STATE(4227)] = 77068, - [SMALL_STATE(4228)] = 77154, - [SMALL_STATE(4229)] = 77240, - [SMALL_STATE(4230)] = 77326, - [SMALL_STATE(4231)] = 77413, - [SMALL_STATE(4232)] = 77487, - [SMALL_STATE(4233)] = 77533, - [SMALL_STATE(4234)] = 77579, - [SMALL_STATE(4235)] = 77641, - [SMALL_STATE(4236)] = 77701, - [SMALL_STATE(4237)] = 77747, - [SMALL_STATE(4238)] = 77813, - [SMALL_STATE(4239)] = 77885, - [SMALL_STATE(4240)] = 77931, - [SMALL_STATE(4241)] = 78001, - [SMALL_STATE(4242)] = 78047, - [SMALL_STATE(4243)] = 78093, - [SMALL_STATE(4244)] = 78139, - [SMALL_STATE(4245)] = 78185, - [SMALL_STATE(4246)] = 78231, - [SMALL_STATE(4247)] = 78287, - [SMALL_STATE(4248)] = 78357, - [SMALL_STATE(4249)] = 78403, - [SMALL_STATE(4250)] = 78449, - [SMALL_STATE(4251)] = 78495, - [SMALL_STATE(4252)] = 78541, - [SMALL_STATE(4253)] = 78587, - [SMALL_STATE(4254)] = 78633, - [SMALL_STATE(4255)] = 78699, - [SMALL_STATE(4256)] = 78757, - [SMALL_STATE(4257)] = 78833, - [SMALL_STATE(4258)] = 78879, - [SMALL_STATE(4259)] = 78925, - [SMALL_STATE(4260)] = 78971, - [SMALL_STATE(4261)] = 79017, - [SMALL_STATE(4262)] = 79063, - [SMALL_STATE(4263)] = 79114, - [SMALL_STATE(4264)] = 79163, - [SMALL_STATE(4265)] = 79235, - [SMALL_STATE(4266)] = 79317, - [SMALL_STATE(4267)] = 79385, - [SMALL_STATE(4268)] = 79467, - [SMALL_STATE(4269)] = 79549, - [SMALL_STATE(4270)] = 79609, - [SMALL_STATE(4271)] = 79667, - [SMALL_STATE(4272)] = 79731, - [SMALL_STATE(4273)] = 79801, - [SMALL_STATE(4274)] = 79869, - [SMALL_STATE(4275)] = 79941, - [SMALL_STATE(4276)] = 80005, - [SMALL_STATE(4277)] = 80061, - [SMALL_STATE(4278)] = 80135, - [SMALL_STATE(4279)] = 80183, - [SMALL_STATE(4280)] = 80237, - [SMALL_STATE(4281)] = 80319, - [SMALL_STATE(4282)] = 80379, - [SMALL_STATE(4283)] = 80461, - [SMALL_STATE(4284)] = 80509, - [SMALL_STATE(4285)] = 80567, - [SMALL_STATE(4286)] = 80645, - [SMALL_STATE(4287)] = 80727, - [SMALL_STATE(4288)] = 80809, - [SMALL_STATE(4289)] = 80885, - [SMALL_STATE(4290)] = 80949, - [SMALL_STATE(4291)] = 80997, - [SMALL_STATE(4292)] = 81067, - [SMALL_STATE(4293)] = 81135, - [SMALL_STATE(4294)] = 81207, - [SMALL_STATE(4295)] = 81271, - [SMALL_STATE(4296)] = 81321, - [SMALL_STATE(4297)] = 81375, - [SMALL_STATE(4298)] = 81443, - [SMALL_STATE(4299)] = 81499, - [SMALL_STATE(4300)] = 81573, - [SMALL_STATE(4301)] = 81647, - [SMALL_STATE(4302)] = 81695, - [SMALL_STATE(4303)] = 81777, - [SMALL_STATE(4304)] = 81833, - [SMALL_STATE(4305)] = 81915, - [SMALL_STATE(4306)] = 81975, - [SMALL_STATE(4307)] = 82055, - [SMALL_STATE(4308)] = 82137, - [SMALL_STATE(4309)] = 82185, - [SMALL_STATE(4310)] = 82267, - [SMALL_STATE(4311)] = 82315, - [SMALL_STATE(4312)] = 82359, - [SMALL_STATE(4313)] = 82427, - [SMALL_STATE(4314)] = 82475, - [SMALL_STATE(4315)] = 82523, - [SMALL_STATE(4316)] = 82605, - [SMALL_STATE(4317)] = 82663, - [SMALL_STATE(4318)] = 82711, - [SMALL_STATE(4319)] = 82775, - [SMALL_STATE(4320)] = 82855, - [SMALL_STATE(4321)] = 82935, - [SMALL_STATE(4322)] = 83005, - [SMALL_STATE(4323)] = 83073, - [SMALL_STATE(4324)] = 83153, - [SMALL_STATE(4325)] = 83235, - [SMALL_STATE(4326)] = 83289, - [SMALL_STATE(4327)] = 83353, - [SMALL_STATE(4328)] = 83435, - [SMALL_STATE(4329)] = 83517, - [SMALL_STATE(4330)] = 83592, - [SMALL_STATE(4331)] = 83635, - [SMALL_STATE(4332)] = 83678, - [SMALL_STATE(4333)] = 83721, - [SMALL_STATE(4334)] = 83764, - [SMALL_STATE(4335)] = 83809, - [SMALL_STATE(4336)] = 83854, - [SMALL_STATE(4337)] = 83929, - [SMALL_STATE(4338)] = 83974, - [SMALL_STATE(4339)] = 84053, - [SMALL_STATE(4340)] = 84130, - [SMALL_STATE(4341)] = 84207, - [SMALL_STATE(4342)] = 84284, - [SMALL_STATE(4343)] = 84361, - [SMALL_STATE(4344)] = 84438, - [SMALL_STATE(4345)] = 84483, - [SMALL_STATE(4346)] = 84534, - [SMALL_STATE(4347)] = 84613, - [SMALL_STATE(4348)] = 84658, - [SMALL_STATE(4349)] = 84735, - [SMALL_STATE(4350)] = 84812, - [SMALL_STATE(4351)] = 84857, - [SMALL_STATE(4352)] = 84936, - [SMALL_STATE(4353)] = 84981, - [SMALL_STATE(4354)] = 85024, - [SMALL_STATE(4355)] = 85069, - [SMALL_STATE(4356)] = 85114, - [SMALL_STATE(4357)] = 85159, - [SMALL_STATE(4358)] = 85212, - [SMALL_STATE(4359)] = 85257, - [SMALL_STATE(4360)] = 85332, - [SMALL_STATE(4361)] = 85377, - [SMALL_STATE(4362)] = 85454, - [SMALL_STATE(4363)] = 85499, - [SMALL_STATE(4364)] = 85544, - [SMALL_STATE(4365)] = 85589, - [SMALL_STATE(4366)] = 85634, - [SMALL_STATE(4367)] = 85679, - [SMALL_STATE(4368)] = 85724, - [SMALL_STATE(4369)] = 85801, - [SMALL_STATE(4370)] = 85844, - [SMALL_STATE(4371)] = 85889, - [SMALL_STATE(4372)] = 85966, - [SMALL_STATE(4373)] = 86011, - [SMALL_STATE(4374)] = 86056, - [SMALL_STATE(4375)] = 86101, - [SMALL_STATE(4376)] = 86146, - [SMALL_STATE(4377)] = 86221, - [SMALL_STATE(4378)] = 86298, - [SMALL_STATE(4379)] = 86375, - [SMALL_STATE(4380)] = 86454, - [SMALL_STATE(4381)] = 86499, - [SMALL_STATE(4382)] = 86541, - [SMALL_STATE(4383)] = 86595, - [SMALL_STATE(4384)] = 86637, - [SMALL_STATE(4385)] = 86711, - [SMALL_STATE(4386)] = 86753, - [SMALL_STATE(4387)] = 86795, - [SMALL_STATE(4388)] = 86869, - [SMALL_STATE(4389)] = 86943, - [SMALL_STATE(4390)] = 87017, - [SMALL_STATE(4391)] = 87085, - [SMALL_STATE(4392)] = 87159, - [SMALL_STATE(4393)] = 87225, - [SMALL_STATE(4394)] = 87295, - [SMALL_STATE(4395)] = 87357, - [SMALL_STATE(4396)] = 87431, - [SMALL_STATE(4397)] = 87485, - [SMALL_STATE(4398)] = 87557, - [SMALL_STATE(4399)] = 87599, - [SMALL_STATE(4400)] = 87641, - [SMALL_STATE(4401)] = 87683, - [SMALL_STATE(4402)] = 87725, - [SMALL_STATE(4403)] = 87767, - [SMALL_STATE(4404)] = 87809, - [SMALL_STATE(4405)] = 87851, - [SMALL_STATE(4406)] = 87893, - [SMALL_STATE(4407)] = 87935, - [SMALL_STATE(4408)] = 87977, - [SMALL_STATE(4409)] = 88019, - [SMALL_STATE(4410)] = 88093, - [SMALL_STATE(4411)] = 88167, - [SMALL_STATE(4412)] = 88209, - [SMALL_STATE(4413)] = 88251, - [SMALL_STATE(4414)] = 88293, - [SMALL_STATE(4415)] = 88335, - [SMALL_STATE(4416)] = 88377, - [SMALL_STATE(4417)] = 88419, - [SMALL_STATE(4418)] = 88461, - [SMALL_STATE(4419)] = 88503, - [SMALL_STATE(4420)] = 88545, - [SMALL_STATE(4421)] = 88619, - [SMALL_STATE(4422)] = 88693, - [SMALL_STATE(4423)] = 88767, - [SMALL_STATE(4424)] = 88809, - [SMALL_STATE(4425)] = 88851, - [SMALL_STATE(4426)] = 88893, - [SMALL_STATE(4427)] = 88935, - [SMALL_STATE(4428)] = 88977, - [SMALL_STATE(4429)] = 89019, - [SMALL_STATE(4430)] = 89061, - [SMALL_STATE(4431)] = 89103, - [SMALL_STATE(4432)] = 89155, - [SMALL_STATE(4433)] = 89197, - [SMALL_STATE(4434)] = 89239, - [SMALL_STATE(4435)] = 89281, - [SMALL_STATE(4436)] = 89325, - [SMALL_STATE(4437)] = 89367, - [SMALL_STATE(4438)] = 89409, - [SMALL_STATE(4439)] = 89451, - [SMALL_STATE(4440)] = 89493, - [SMALL_STATE(4441)] = 89535, - [SMALL_STATE(4442)] = 89577, - [SMALL_STATE(4443)] = 89619, - [SMALL_STATE(4444)] = 89661, - [SMALL_STATE(4445)] = 89703, - [SMALL_STATE(4446)] = 89745, - [SMALL_STATE(4447)] = 89787, - [SMALL_STATE(4448)] = 89829, - [SMALL_STATE(4449)] = 89871, - [SMALL_STATE(4450)] = 89913, - [SMALL_STATE(4451)] = 89955, - [SMALL_STATE(4452)] = 90029, - [SMALL_STATE(4453)] = 90071, - [SMALL_STATE(4454)] = 90113, - [SMALL_STATE(4455)] = 90179, - [SMALL_STATE(4456)] = 90221, - [SMALL_STATE(4457)] = 90263, - [SMALL_STATE(4458)] = 90305, - [SMALL_STATE(4459)] = 90347, - [SMALL_STATE(4460)] = 90423, - [SMALL_STATE(4461)] = 90465, - [SMALL_STATE(4462)] = 90539, - [SMALL_STATE(4463)] = 90615, - [SMALL_STATE(4464)] = 90689, - [SMALL_STATE(4465)] = 90763, - [SMALL_STATE(4466)] = 90805, - [SMALL_STATE(4467)] = 90847, - [SMALL_STATE(4468)] = 90889, - [SMALL_STATE(4469)] = 90931, - [SMALL_STATE(4470)] = 90973, - [SMALL_STATE(4471)] = 91015, - [SMALL_STATE(4472)] = 91057, - [SMALL_STATE(4473)] = 91131, - [SMALL_STATE(4474)] = 91173, - [SMALL_STATE(4475)] = 91215, - [SMALL_STATE(4476)] = 91257, - [SMALL_STATE(4477)] = 91331, - [SMALL_STATE(4478)] = 91373, - [SMALL_STATE(4479)] = 91415, - [SMALL_STATE(4480)] = 91457, - [SMALL_STATE(4481)] = 91499, - [SMALL_STATE(4482)] = 91541, - [SMALL_STATE(4483)] = 91583, - [SMALL_STATE(4484)] = 91625, - [SMALL_STATE(4485)] = 91667, - [SMALL_STATE(4486)] = 91725, - [SMALL_STATE(4487)] = 91767, - [SMALL_STATE(4488)] = 91809, - [SMALL_STATE(4489)] = 91865, - [SMALL_STATE(4490)] = 91907, - [SMALL_STATE(4491)] = 91949, - [SMALL_STATE(4492)] = 91991, - [SMALL_STATE(4493)] = 92033, - [SMALL_STATE(4494)] = 92075, - [SMALL_STATE(4495)] = 92117, - [SMALL_STATE(4496)] = 92159, - [SMALL_STATE(4497)] = 92201, - [SMALL_STATE(4498)] = 92243, - [SMALL_STATE(4499)] = 92285, - [SMALL_STATE(4500)] = 92327, - [SMALL_STATE(4501)] = 92369, - [SMALL_STATE(4502)] = 92411, - [SMALL_STATE(4503)] = 92465, - [SMALL_STATE(4504)] = 92541, - [SMALL_STATE(4505)] = 92583, - [SMALL_STATE(4506)] = 92625, - [SMALL_STATE(4507)] = 92667, - [SMALL_STATE(4508)] = 92709, - [SMALL_STATE(4509)] = 92763, - [SMALL_STATE(4510)] = 92805, - [SMALL_STATE(4511)] = 92879, - [SMALL_STATE(4512)] = 92953, - [SMALL_STATE(4513)] = 93027, - [SMALL_STATE(4514)] = 93089, - [SMALL_STATE(4515)] = 93131, - [SMALL_STATE(4516)] = 93173, - [SMALL_STATE(4517)] = 93215, - [SMALL_STATE(4518)] = 93257, - [SMALL_STATE(4519)] = 93299, - [SMALL_STATE(4520)] = 93341, - [SMALL_STATE(4521)] = 93383, - [SMALL_STATE(4522)] = 93425, - [SMALL_STATE(4523)] = 93467, - [SMALL_STATE(4524)] = 93541, - [SMALL_STATE(4525)] = 93583, - [SMALL_STATE(4526)] = 93625, - [SMALL_STATE(4527)] = 93667, - [SMALL_STATE(4528)] = 93740, - [SMALL_STATE(4529)] = 93813, - [SMALL_STATE(4530)] = 93858, - [SMALL_STATE(4531)] = 93903, - [SMALL_STATE(4532)] = 93976, - [SMALL_STATE(4533)] = 94049, - [SMALL_STATE(4534)] = 94094, - [SMALL_STATE(4535)] = 94167, - [SMALL_STATE(4536)] = 94240, - [SMALL_STATE(4537)] = 94285, - [SMALL_STATE(4538)] = 94326, - [SMALL_STATE(4539)] = 94367, - [SMALL_STATE(4540)] = 94408, - [SMALL_STATE(4541)] = 94449, - [SMALL_STATE(4542)] = 94522, - [SMALL_STATE(4543)] = 94567, - [SMALL_STATE(4544)] = 94612, - [SMALL_STATE(4545)] = 94659, - [SMALL_STATE(4546)] = 94732, - [SMALL_STATE(4547)] = 94805, - [SMALL_STATE(4548)] = 94878, - [SMALL_STATE(4549)] = 94951, - [SMALL_STATE(4550)] = 94996, - [SMALL_STATE(4551)] = 95041, - [SMALL_STATE(4552)] = 95114, - [SMALL_STATE(4553)] = 95155, - [SMALL_STATE(4554)] = 95228, - [SMALL_STATE(4555)] = 95273, - [SMALL_STATE(4556)] = 95346, - [SMALL_STATE(4557)] = 95391, - [SMALL_STATE(4558)] = 95464, - [SMALL_STATE(4559)] = 95510, - [SMALL_STATE(4560)] = 95552, - [SMALL_STATE(4561)] = 95596, - [SMALL_STATE(4562)] = 95666, - [SMALL_STATE(4563)] = 95708, - [SMALL_STATE(4564)] = 95752, - [SMALL_STATE(4565)] = 95792, - [SMALL_STATE(4566)] = 95862, - [SMALL_STATE(4567)] = 95932, - [SMALL_STATE(4568)] = 96004, - [SMALL_STATE(4569)] = 96074, - [SMALL_STATE(4570)] = 96120, - [SMALL_STATE(4571)] = 96164, - [SMALL_STATE(4572)] = 96208, - [SMALL_STATE(4573)] = 96249, - [SMALL_STATE(4574)] = 96290, - [SMALL_STATE(4575)] = 96335, - [SMALL_STATE(4576)] = 96376, - [SMALL_STATE(4577)] = 96417, - [SMALL_STATE(4578)] = 96462, - [SMALL_STATE(4579)] = 96501, - [SMALL_STATE(4580)] = 96540, - [SMALL_STATE(4581)] = 96579, - [SMALL_STATE(4582)] = 96618, - [SMALL_STATE(4583)] = 96657, - [SMALL_STATE(4584)] = 96696, - [SMALL_STATE(4585)] = 96735, - [SMALL_STATE(4586)] = 96774, - [SMALL_STATE(4587)] = 96821, - [SMALL_STATE(4588)] = 96862, - [SMALL_STATE(4589)] = 96905, - [SMALL_STATE(4590)] = 96944, - [SMALL_STATE(4591)] = 96985, - [SMALL_STATE(4592)] = 97026, - [SMALL_STATE(4593)] = 97067, - [SMALL_STATE(4594)] = 97108, - [SMALL_STATE(4595)] = 97149, - [SMALL_STATE(4596)] = 97190, - [SMALL_STATE(4597)] = 97231, - [SMALL_STATE(4598)] = 97272, - [SMALL_STATE(4599)] = 97313, - [SMALL_STATE(4600)] = 97354, - [SMALL_STATE(4601)] = 97395, - [SMALL_STATE(4602)] = 97436, - [SMALL_STATE(4603)] = 97475, - [SMALL_STATE(4604)] = 97514, - [SMALL_STATE(4605)] = 97555, - [SMALL_STATE(4606)] = 97594, - [SMALL_STATE(4607)] = 97633, - [SMALL_STATE(4608)] = 97672, - [SMALL_STATE(4609)] = 97713, - [SMALL_STATE(4610)] = 97752, - [SMALL_STATE(4611)] = 97791, - [SMALL_STATE(4612)] = 97830, - [SMALL_STATE(4613)] = 97869, - [SMALL_STATE(4614)] = 97910, - [SMALL_STATE(4615)] = 97953, - [SMALL_STATE(4616)] = 97992, - [SMALL_STATE(4617)] = 98031, - [SMALL_STATE(4618)] = 98070, - [SMALL_STATE(4619)] = 98109, - [SMALL_STATE(4620)] = 98148, - [SMALL_STATE(4621)] = 98187, - [SMALL_STATE(4622)] = 98226, - [SMALL_STATE(4623)] = 98265, - [SMALL_STATE(4624)] = 98304, - [SMALL_STATE(4625)] = 98343, - [SMALL_STATE(4626)] = 98382, - [SMALL_STATE(4627)] = 98421, - [SMALL_STATE(4628)] = 98462, - [SMALL_STATE(4629)] = 98505, - [SMALL_STATE(4630)] = 98544, - [SMALL_STATE(4631)] = 98583, - [SMALL_STATE(4632)] = 98622, - [SMALL_STATE(4633)] = 98661, - [SMALL_STATE(4634)] = 98702, - [SMALL_STATE(4635)] = 98743, - [SMALL_STATE(4636)] = 98784, - [SMALL_STATE(4637)] = 98827, - [SMALL_STATE(4638)] = 98868, - [SMALL_STATE(4639)] = 98909, - [SMALL_STATE(4640)] = 98952, - [SMALL_STATE(4641)] = 98993, - [SMALL_STATE(4642)] = 99032, - [SMALL_STATE(4643)] = 99070, - [SMALL_STATE(4644)] = 99108, - [SMALL_STATE(4645)] = 99148, - [SMALL_STATE(4646)] = 99188, - [SMALL_STATE(4647)] = 99226, - [SMALL_STATE(4648)] = 99266, - [SMALL_STATE(4649)] = 99306, - [SMALL_STATE(4650)] = 99346, - [SMALL_STATE(4651)] = 99384, - [SMALL_STATE(4652)] = 99424, - [SMALL_STATE(4653)] = 99462, - [SMALL_STATE(4654)] = 99502, - [SMALL_STATE(4655)] = 99542, - [SMALL_STATE(4656)] = 99580, - [SMALL_STATE(4657)] = 99618, - [SMALL_STATE(4658)] = 99658, - [SMALL_STATE(4659)] = 99696, - [SMALL_STATE(4660)] = 99736, - [SMALL_STATE(4661)] = 99782, - [SMALL_STATE(4662)] = 99820, - [SMALL_STATE(4663)] = 99860, - [SMALL_STATE(4664)] = 99898, - [SMALL_STATE(4665)] = 99936, - [SMALL_STATE(4666)] = 99974, - [SMALL_STATE(4667)] = 100012, - [SMALL_STATE(4668)] = 100050, - [SMALL_STATE(4669)] = 100088, - [SMALL_STATE(4670)] = 100126, - [SMALL_STATE(4671)] = 100166, - [SMALL_STATE(4672)] = 100206, - [SMALL_STATE(4673)] = 100244, - [SMALL_STATE(4674)] = 100282, - [SMALL_STATE(4675)] = 100322, - [SMALL_STATE(4676)] = 100362, - [SMALL_STATE(4677)] = 100402, - [SMALL_STATE(4678)] = 100440, - [SMALL_STATE(4679)] = 100478, - [SMALL_STATE(4680)] = 100516, - [SMALL_STATE(4681)] = 100554, - [SMALL_STATE(4682)] = 100594, - [SMALL_STATE(4683)] = 100634, - [SMALL_STATE(4684)] = 100672, - [SMALL_STATE(4685)] = 100712, - [SMALL_STATE(4686)] = 100750, - [SMALL_STATE(4687)] = 100788, - [SMALL_STATE(4688)] = 100828, - [SMALL_STATE(4689)] = 100868, - [SMALL_STATE(4690)] = 100906, - [SMALL_STATE(4691)] = 100946, - [SMALL_STATE(4692)] = 100984, - [SMALL_STATE(4693)] = 101022, - [SMALL_STATE(4694)] = 101060, - [SMALL_STATE(4695)] = 101098, - [SMALL_STATE(4696)] = 101136, - [SMALL_STATE(4697)] = 101174, - [SMALL_STATE(4698)] = 101214, - [SMALL_STATE(4699)] = 101254, - [SMALL_STATE(4700)] = 101294, - [SMALL_STATE(4701)] = 101336, - [SMALL_STATE(4702)] = 101378, - [SMALL_STATE(4703)] = 101416, - [SMALL_STATE(4704)] = 101454, - [SMALL_STATE(4705)] = 101494, - [SMALL_STATE(4706)] = 101532, - [SMALL_STATE(4707)] = 101570, - [SMALL_STATE(4708)] = 101608, - [SMALL_STATE(4709)] = 101648, - [SMALL_STATE(4710)] = 101688, - [SMALL_STATE(4711)] = 101728, - [SMALL_STATE(4712)] = 101766, - [SMALL_STATE(4713)] = 101806, - [SMALL_STATE(4714)] = 101846, - [SMALL_STATE(4715)] = 101884, - [SMALL_STATE(4716)] = 101924, - [SMALL_STATE(4717)] = 101964, - [SMALL_STATE(4718)] = 102004, - [SMALL_STATE(4719)] = 102044, - [SMALL_STATE(4720)] = 102084, - [SMALL_STATE(4721)] = 102124, - [SMALL_STATE(4722)] = 102164, - [SMALL_STATE(4723)] = 102204, - [SMALL_STATE(4724)] = 102244, - [SMALL_STATE(4725)] = 102284, - [SMALL_STATE(4726)] = 102324, - [SMALL_STATE(4727)] = 102364, - [SMALL_STATE(4728)] = 102404, - [SMALL_STATE(4729)] = 102444, - [SMALL_STATE(4730)] = 102484, - [SMALL_STATE(4731)] = 102524, - [SMALL_STATE(4732)] = 102568, - [SMALL_STATE(4733)] = 102608, - [SMALL_STATE(4734)] = 102648, - [SMALL_STATE(4735)] = 102688, - [SMALL_STATE(4736)] = 102728, - [SMALL_STATE(4737)] = 102768, - [SMALL_STATE(4738)] = 102808, - [SMALL_STATE(4739)] = 102848, - [SMALL_STATE(4740)] = 102888, - [SMALL_STATE(4741)] = 102928, - [SMALL_STATE(4742)] = 102966, - [SMALL_STATE(4743)] = 103006, - [SMALL_STATE(4744)] = 103046, - [SMALL_STATE(4745)] = 103086, - [SMALL_STATE(4746)] = 103130, - [SMALL_STATE(4747)] = 103172, - [SMALL_STATE(4748)] = 103212, - [SMALL_STATE(4749)] = 103252, - [SMALL_STATE(4750)] = 103294, - [SMALL_STATE(4751)] = 103336, - [SMALL_STATE(4752)] = 103376, - [SMALL_STATE(4753)] = 103416, - [SMALL_STATE(4754)] = 103456, - [SMALL_STATE(4755)] = 103496, - [SMALL_STATE(4756)] = 103534, - [SMALL_STATE(4757)] = 103572, - [SMALL_STATE(4758)] = 103612, - [SMALL_STATE(4759)] = 103652, - [SMALL_STATE(4760)] = 103692, - [SMALL_STATE(4761)] = 103730, - [SMALL_STATE(4762)] = 103770, - [SMALL_STATE(4763)] = 103814, - [SMALL_STATE(4764)] = 103854, - [SMALL_STATE(4765)] = 103894, - [SMALL_STATE(4766)] = 103934, - [SMALL_STATE(4767)] = 103972, - [SMALL_STATE(4768)] = 104012, - [SMALL_STATE(4769)] = 104050, - [SMALL_STATE(4770)] = 104090, - [SMALL_STATE(4771)] = 104130, - [SMALL_STATE(4772)] = 104170, - [SMALL_STATE(4773)] = 104210, - [SMALL_STATE(4774)] = 104248, - [SMALL_STATE(4775)] = 104288, - [SMALL_STATE(4776)] = 104325, - [SMALL_STATE(4777)] = 104362, - [SMALL_STATE(4778)] = 104399, - [SMALL_STATE(4779)] = 104436, - [SMALL_STATE(4780)] = 104473, - [SMALL_STATE(4781)] = 104510, - [SMALL_STATE(4782)] = 104547, - [SMALL_STATE(4783)] = 104586, - [SMALL_STATE(4784)] = 104623, - [SMALL_STATE(4785)] = 104660, - [SMALL_STATE(4786)] = 104697, - [SMALL_STATE(4787)] = 104734, - [SMALL_STATE(4788)] = 104771, - [SMALL_STATE(4789)] = 104810, - [SMALL_STATE(4790)] = 104847, - [SMALL_STATE(4791)] = 104884, - [SMALL_STATE(4792)] = 104921, - [SMALL_STATE(4793)] = 104960, - [SMALL_STATE(4794)] = 104997, - [SMALL_STATE(4795)] = 105034, - [SMALL_STATE(4796)] = 105071, - [SMALL_STATE(4797)] = 105108, - [SMALL_STATE(4798)] = 105145, - [SMALL_STATE(4799)] = 105182, - [SMALL_STATE(4800)] = 105219, - [SMALL_STATE(4801)] = 105256, - [SMALL_STATE(4802)] = 105293, - [SMALL_STATE(4803)] = 105330, - [SMALL_STATE(4804)] = 105367, - [SMALL_STATE(4805)] = 105404, - [SMALL_STATE(4806)] = 105441, - [SMALL_STATE(4807)] = 105478, - [SMALL_STATE(4808)] = 105517, - [SMALL_STATE(4809)] = 105556, - [SMALL_STATE(4810)] = 105593, - [SMALL_STATE(4811)] = 105630, - [SMALL_STATE(4812)] = 105667, - [SMALL_STATE(4813)] = 105704, - [SMALL_STATE(4814)] = 105741, - [SMALL_STATE(4815)] = 105778, - [SMALL_STATE(4816)] = 105815, - [SMALL_STATE(4817)] = 105852, - [SMALL_STATE(4818)] = 105889, - [SMALL_STATE(4819)] = 105926, - [SMALL_STATE(4820)] = 105963, - [SMALL_STATE(4821)] = 106000, - [SMALL_STATE(4822)] = 106037, - [SMALL_STATE(4823)] = 106074, - [SMALL_STATE(4824)] = 106111, - [SMALL_STATE(4825)] = 106148, - [SMALL_STATE(4826)] = 106185, - [SMALL_STATE(4827)] = 106224, - [SMALL_STATE(4828)] = 106261, - [SMALL_STATE(4829)] = 106298, - [SMALL_STATE(4830)] = 106335, - [SMALL_STATE(4831)] = 106372, - [SMALL_STATE(4832)] = 106409, - [SMALL_STATE(4833)] = 106446, - [SMALL_STATE(4834)] = 106483, - [SMALL_STATE(4835)] = 106520, - [SMALL_STATE(4836)] = 106557, - [SMALL_STATE(4837)] = 106594, - [SMALL_STATE(4838)] = 106631, - [SMALL_STATE(4839)] = 106668, - [SMALL_STATE(4840)] = 106705, - [SMALL_STATE(4841)] = 106742, - [SMALL_STATE(4842)] = 106779, - [SMALL_STATE(4843)] = 106816, - [SMALL_STATE(4844)] = 106853, - [SMALL_STATE(4845)] = 106890, - [SMALL_STATE(4846)] = 106927, - [SMALL_STATE(4847)] = 106964, - [SMALL_STATE(4848)] = 107001, - [SMALL_STATE(4849)] = 107038, - [SMALL_STATE(4850)] = 107075, - [SMALL_STATE(4851)] = 107112, - [SMALL_STATE(4852)] = 107149, - [SMALL_STATE(4853)] = 107186, - [SMALL_STATE(4854)] = 107223, - [SMALL_STATE(4855)] = 107260, - [SMALL_STATE(4856)] = 107297, - [SMALL_STATE(4857)] = 107334, - [SMALL_STATE(4858)] = 107371, - [SMALL_STATE(4859)] = 107408, - [SMALL_STATE(4860)] = 107445, - [SMALL_STATE(4861)] = 107482, - [SMALL_STATE(4862)] = 107519, - [SMALL_STATE(4863)] = 107556, - [SMALL_STATE(4864)] = 107593, - [SMALL_STATE(4865)] = 107630, - [SMALL_STATE(4866)] = 107667, - [SMALL_STATE(4867)] = 107704, - [SMALL_STATE(4868)] = 107741, - [SMALL_STATE(4869)] = 107778, - [SMALL_STATE(4870)] = 107815, - [SMALL_STATE(4871)] = 107852, - [SMALL_STATE(4872)] = 107889, - [SMALL_STATE(4873)] = 107926, - [SMALL_STATE(4874)] = 107963, - [SMALL_STATE(4875)] = 108000, - [SMALL_STATE(4876)] = 108043, - [SMALL_STATE(4877)] = 108088, - [SMALL_STATE(4878)] = 108125, - [SMALL_STATE(4879)] = 108162, - [SMALL_STATE(4880)] = 108199, - [SMALL_STATE(4881)] = 108236, - [SMALL_STATE(4882)] = 108273, - [SMALL_STATE(4883)] = 108310, - [SMALL_STATE(4884)] = 108347, - [SMALL_STATE(4885)] = 108384, - [SMALL_STATE(4886)] = 108421, - [SMALL_STATE(4887)] = 108458, - [SMALL_STATE(4888)] = 108495, - [SMALL_STATE(4889)] = 108532, - [SMALL_STATE(4890)] = 108571, - [SMALL_STATE(4891)] = 108608, - [SMALL_STATE(4892)] = 108645, - [SMALL_STATE(4893)] = 108688, - [SMALL_STATE(4894)] = 108725, - [SMALL_STATE(4895)] = 108762, - [SMALL_STATE(4896)] = 108799, - [SMALL_STATE(4897)] = 108836, - [SMALL_STATE(4898)] = 108873, - [SMALL_STATE(4899)] = 108910, - [SMALL_STATE(4900)] = 108947, - [SMALL_STATE(4901)] = 108984, - [SMALL_STATE(4902)] = 109021, - [SMALL_STATE(4903)] = 109058, - [SMALL_STATE(4904)] = 109095, - [SMALL_STATE(4905)] = 109132, - [SMALL_STATE(4906)] = 109169, - [SMALL_STATE(4907)] = 109206, - [SMALL_STATE(4908)] = 109243, - [SMALL_STATE(4909)] = 109280, - [SMALL_STATE(4910)] = 109317, - [SMALL_STATE(4911)] = 109354, - [SMALL_STATE(4912)] = 109391, - [SMALL_STATE(4913)] = 109428, - [SMALL_STATE(4914)] = 109465, - [SMALL_STATE(4915)] = 109502, - [SMALL_STATE(4916)] = 109539, - [SMALL_STATE(4917)] = 109576, - [SMALL_STATE(4918)] = 109613, - [SMALL_STATE(4919)] = 109650, - [SMALL_STATE(4920)] = 109687, - [SMALL_STATE(4921)] = 109724, - [SMALL_STATE(4922)] = 109761, - [SMALL_STATE(4923)] = 109798, - [SMALL_STATE(4924)] = 109835, - [SMALL_STATE(4925)] = 109872, - [SMALL_STATE(4926)] = 109909, - [SMALL_STATE(4927)] = 109946, - [SMALL_STATE(4928)] = 109983, - [SMALL_STATE(4929)] = 110020, - [SMALL_STATE(4930)] = 110057, - [SMALL_STATE(4931)] = 110094, - [SMALL_STATE(4932)] = 110131, - [SMALL_STATE(4933)] = 110168, - [SMALL_STATE(4934)] = 110205, - [SMALL_STATE(4935)] = 110242, - [SMALL_STATE(4936)] = 110279, - [SMALL_STATE(4937)] = 110316, - [SMALL_STATE(4938)] = 110353, - [SMALL_STATE(4939)] = 110390, - [SMALL_STATE(4940)] = 110427, - [SMALL_STATE(4941)] = 110464, - [SMALL_STATE(4942)] = 110501, - [SMALL_STATE(4943)] = 110538, - [SMALL_STATE(4944)] = 110575, - [SMALL_STATE(4945)] = 110612, - [SMALL_STATE(4946)] = 110649, - [SMALL_STATE(4947)] = 110686, - [SMALL_STATE(4948)] = 110723, - [SMALL_STATE(4949)] = 110760, - [SMALL_STATE(4950)] = 110797, - [SMALL_STATE(4951)] = 110834, - [SMALL_STATE(4952)] = 110871, - [SMALL_STATE(4953)] = 110908, - [SMALL_STATE(4954)] = 110945, - [SMALL_STATE(4955)] = 110982, - [SMALL_STATE(4956)] = 111019, - [SMALL_STATE(4957)] = 111056, - [SMALL_STATE(4958)] = 111093, - [SMALL_STATE(4959)] = 111130, - [SMALL_STATE(4960)] = 111169, - [SMALL_STATE(4961)] = 111206, - [SMALL_STATE(4962)] = 111243, - [SMALL_STATE(4963)] = 111280, - [SMALL_STATE(4964)] = 111319, - [SMALL_STATE(4965)] = 111356, - [SMALL_STATE(4966)] = 111393, - [SMALL_STATE(4967)] = 111430, - [SMALL_STATE(4968)] = 111467, - [SMALL_STATE(4969)] = 111504, - [SMALL_STATE(4970)] = 111541, - [SMALL_STATE(4971)] = 111578, - [SMALL_STATE(4972)] = 111615, - [SMALL_STATE(4973)] = 111652, - [SMALL_STATE(4974)] = 111689, - [SMALL_STATE(4975)] = 111728, - [SMALL_STATE(4976)] = 111765, - [SMALL_STATE(4977)] = 111802, - [SMALL_STATE(4978)] = 111841, - [SMALL_STATE(4979)] = 111878, - [SMALL_STATE(4980)] = 111915, - [SMALL_STATE(4981)] = 111952, - [SMALL_STATE(4982)] = 111989, - [SMALL_STATE(4983)] = 112026, - [SMALL_STATE(4984)] = 112063, - [SMALL_STATE(4985)] = 112100, - [SMALL_STATE(4986)] = 112137, - [SMALL_STATE(4987)] = 112174, - [SMALL_STATE(4988)] = 112211, - [SMALL_STATE(4989)] = 112248, - [SMALL_STATE(4990)] = 112285, - [SMALL_STATE(4991)] = 112322, - [SMALL_STATE(4992)] = 112359, - [SMALL_STATE(4993)] = 112396, - [SMALL_STATE(4994)] = 112433, - [SMALL_STATE(4995)] = 112470, - [SMALL_STATE(4996)] = 112507, - [SMALL_STATE(4997)] = 112544, - [SMALL_STATE(4998)] = 112581, - [SMALL_STATE(4999)] = 112618, - [SMALL_STATE(5000)] = 112655, - [SMALL_STATE(5001)] = 112692, - [SMALL_STATE(5002)] = 112729, - [SMALL_STATE(5003)] = 112766, - [SMALL_STATE(5004)] = 112803, - [SMALL_STATE(5005)] = 112840, - [SMALL_STATE(5006)] = 112877, - [SMALL_STATE(5007)] = 112914, - [SMALL_STATE(5008)] = 112951, - [SMALL_STATE(5009)] = 112988, - [SMALL_STATE(5010)] = 113025, - [SMALL_STATE(5011)] = 113062, - [SMALL_STATE(5012)] = 113099, - [SMALL_STATE(5013)] = 113136, - [SMALL_STATE(5014)] = 113173, - [SMALL_STATE(5015)] = 113210, - [SMALL_STATE(5016)] = 113247, - [SMALL_STATE(5017)] = 113284, - [SMALL_STATE(5018)] = 113321, - [SMALL_STATE(5019)] = 113358, - [SMALL_STATE(5020)] = 113395, - [SMALL_STATE(5021)] = 113432, - [SMALL_STATE(5022)] = 113469, - [SMALL_STATE(5023)] = 113506, - [SMALL_STATE(5024)] = 113543, - [SMALL_STATE(5025)] = 113580, - [SMALL_STATE(5026)] = 113617, - [SMALL_STATE(5027)] = 113654, - [SMALL_STATE(5028)] = 113691, - [SMALL_STATE(5029)] = 113728, - [SMALL_STATE(5030)] = 113765, - [SMALL_STATE(5031)] = 113802, - [SMALL_STATE(5032)] = 113839, - [SMALL_STATE(5033)] = 113876, - [SMALL_STATE(5034)] = 113913, - [SMALL_STATE(5035)] = 113950, - [SMALL_STATE(5036)] = 113987, - [SMALL_STATE(5037)] = 114024, - [SMALL_STATE(5038)] = 114061, - [SMALL_STATE(5039)] = 114098, - [SMALL_STATE(5040)] = 114137, - [SMALL_STATE(5041)] = 114174, - [SMALL_STATE(5042)] = 114211, - [SMALL_STATE(5043)] = 114248, - [SMALL_STATE(5044)] = 114285, - [SMALL_STATE(5045)] = 114322, - [SMALL_STATE(5046)] = 114359, - [SMALL_STATE(5047)] = 114396, - [SMALL_STATE(5048)] = 114435, - [SMALL_STATE(5049)] = 114474, - [SMALL_STATE(5050)] = 114511, - [SMALL_STATE(5051)] = 114548, - [SMALL_STATE(5052)] = 114585, - [SMALL_STATE(5053)] = 114622, - [SMALL_STATE(5054)] = 114659, - [SMALL_STATE(5055)] = 114696, - [SMALL_STATE(5056)] = 114733, - [SMALL_STATE(5057)] = 114770, - [SMALL_STATE(5058)] = 114807, - [SMALL_STATE(5059)] = 114844, - [SMALL_STATE(5060)] = 114881, - [SMALL_STATE(5061)] = 114918, - [SMALL_STATE(5062)] = 114955, - [SMALL_STATE(5063)] = 114992, - [SMALL_STATE(5064)] = 115029, - [SMALL_STATE(5065)] = 115066, - [SMALL_STATE(5066)] = 115103, - [SMALL_STATE(5067)] = 115140, - [SMALL_STATE(5068)] = 115202, - [SMALL_STATE(5069)] = 115242, - [SMALL_STATE(5070)] = 115280, - [SMALL_STATE(5071)] = 115318, - [SMALL_STATE(5072)] = 115360, - [SMALL_STATE(5073)] = 115400, - [SMALL_STATE(5074)] = 115438, - [SMALL_STATE(5075)] = 115476, - [SMALL_STATE(5076)] = 115516, - [SMALL_STATE(5077)] = 115578, - [SMALL_STATE(5078)] = 115628, - [SMALL_STATE(5079)] = 115666, - [SMALL_STATE(5080)] = 115704, - [SMALL_STATE(5081)] = 115763, - [SMALL_STATE(5082)] = 115822, - [SMALL_STATE(5083)] = 115881, - [SMALL_STATE(5084)] = 115918, - [SMALL_STATE(5085)] = 115955, - [SMALL_STATE(5086)] = 115992, - [SMALL_STATE(5087)] = 116051, - [SMALL_STATE(5088)] = 116110, - [SMALL_STATE(5089)] = 116169, - [SMALL_STATE(5090)] = 116206, - [SMALL_STATE(5091)] = 116265, - [SMALL_STATE(5092)] = 116324, - [SMALL_STATE(5093)] = 116361, - [SMALL_STATE(5094)] = 116420, - [SMALL_STATE(5095)] = 116457, - [SMALL_STATE(5096)] = 116516, - [SMALL_STATE(5097)] = 116553, - [SMALL_STATE(5098)] = 116612, - [SMALL_STATE(5099)] = 116649, - [SMALL_STATE(5100)] = 116708, - [SMALL_STATE(5101)] = 116745, - [SMALL_STATE(5102)] = 116782, - [SMALL_STATE(5103)] = 116819, - [SMALL_STATE(5104)] = 116878, - [SMALL_STATE(5105)] = 116937, - [SMALL_STATE(5106)] = 116974, - [SMALL_STATE(5107)] = 117008, - [SMALL_STATE(5108)] = 117042, - [SMALL_STATE(5109)] = 117076, - [SMALL_STATE(5110)] = 117110, - [SMALL_STATE(5111)] = 117144, - [SMALL_STATE(5112)] = 117178, - [SMALL_STATE(5113)] = 117212, - [SMALL_STATE(5114)] = 117246, - [SMALL_STATE(5115)] = 117310, - [SMALL_STATE(5116)] = 117344, - [SMALL_STATE(5117)] = 117378, - [SMALL_STATE(5118)] = 117412, - [SMALL_STATE(5119)] = 117446, - [SMALL_STATE(5120)] = 117480, - [SMALL_STATE(5121)] = 117514, - [SMALL_STATE(5122)] = 117548, - [SMALL_STATE(5123)] = 117582, - [SMALL_STATE(5124)] = 117616, - [SMALL_STATE(5125)] = 117650, - [SMALL_STATE(5126)] = 117684, - [SMALL_STATE(5127)] = 117718, - [SMALL_STATE(5128)] = 117752, - [SMALL_STATE(5129)] = 117786, - [SMALL_STATE(5130)] = 117842, - [SMALL_STATE(5131)] = 117894, - [SMALL_STATE(5132)] = 117928, - [SMALL_STATE(5133)] = 117962, - [SMALL_STATE(5134)] = 117996, - [SMALL_STATE(5135)] = 118030, - [SMALL_STATE(5136)] = 118064, - [SMALL_STATE(5137)] = 118098, - [SMALL_STATE(5138)] = 118132, - [SMALL_STATE(5139)] = 118186, - [SMALL_STATE(5140)] = 118250, - [SMALL_STATE(5141)] = 118284, - [SMALL_STATE(5142)] = 118318, - [SMALL_STATE(5143)] = 118382, - [SMALL_STATE(5144)] = 118416, - [SMALL_STATE(5145)] = 118450, - [SMALL_STATE(5146)] = 118514, - [SMALL_STATE(5147)] = 118548, - [SMALL_STATE(5148)] = 118582, - [SMALL_STATE(5149)] = 118616, - [SMALL_STATE(5150)] = 118650, - [SMALL_STATE(5151)] = 118684, - [SMALL_STATE(5152)] = 118718, - [SMALL_STATE(5153)] = 118752, - [SMALL_STATE(5154)] = 118786, - [SMALL_STATE(5155)] = 118820, - [SMALL_STATE(5156)] = 118854, - [SMALL_STATE(5157)] = 118904, - [SMALL_STATE(5158)] = 118944, - [SMALL_STATE(5159)] = 118980, - [SMALL_STATE(5160)] = 119036, - [SMALL_STATE(5161)] = 119069, - [SMALL_STATE(5162)] = 119104, - [SMALL_STATE(5163)] = 119134, - [SMALL_STATE(5164)] = 119168, - [SMALL_STATE(5165)] = 119202, - [SMALL_STATE(5166)] = 119232, - [SMALL_STATE(5167)] = 119266, - [SMALL_STATE(5168)] = 119304, - [SMALL_STATE(5169)] = 119334, - [SMALL_STATE(5170)] = 119364, - [SMALL_STATE(5171)] = 119394, - [SMALL_STATE(5172)] = 119428, - [SMALL_STATE(5173)] = 119458, - [SMALL_STATE(5174)] = 119488, - [SMALL_STATE(5175)] = 119518, - [SMALL_STATE(5176)] = 119563, - [SMALL_STATE(5177)] = 119596, - [SMALL_STATE(5178)] = 119645, - [SMALL_STATE(5179)] = 119690, - [SMALL_STATE(5180)] = 119739, - [SMALL_STATE(5181)] = 119788, - [SMALL_STATE(5182)] = 119837, - [SMALL_STATE(5183)] = 119866, - [SMALL_STATE(5184)] = 119895, - [SMALL_STATE(5185)] = 119924, - [SMALL_STATE(5186)] = 119953, - [SMALL_STATE(5187)] = 119982, - [SMALL_STATE(5188)] = 120031, - [SMALL_STATE(5189)] = 120080, - [SMALL_STATE(5190)] = 120109, - [SMALL_STATE(5191)] = 120138, - [SMALL_STATE(5192)] = 120167, - [SMALL_STATE(5193)] = 120196, - [SMALL_STATE(5194)] = 120245, - [SMALL_STATE(5195)] = 120290, - [SMALL_STATE(5196)] = 120345, - [SMALL_STATE(5197)] = 120400, - [SMALL_STATE(5198)] = 120449, - [SMALL_STATE(5199)] = 120498, - [SMALL_STATE(5200)] = 120553, - [SMALL_STATE(5201)] = 120582, - [SMALL_STATE(5202)] = 120611, - [SMALL_STATE(5203)] = 120642, - [SMALL_STATE(5204)] = 120689, - [SMALL_STATE(5205)] = 120720, - [SMALL_STATE(5206)] = 120769, - [SMALL_STATE(5207)] = 120818, - [SMALL_STATE(5208)] = 120849, - [SMALL_STATE(5209)] = 120891, - [SMALL_STATE(5210)] = 120937, - [SMALL_STATE(5211)] = 120971, - [SMALL_STATE(5212)] = 121021, - [SMALL_STATE(5213)] = 121049, - [SMALL_STATE(5214)] = 121077, - [SMALL_STATE(5215)] = 121105, - [SMALL_STATE(5216)] = 121133, - [SMALL_STATE(5217)] = 121161, - [SMALL_STATE(5218)] = 121209, - [SMALL_STATE(5219)] = 121241, - [SMALL_STATE(5220)] = 121273, - [SMALL_STATE(5221)] = 121305, - [SMALL_STATE(5222)] = 121333, - [SMALL_STATE(5223)] = 121361, - [SMALL_STATE(5224)] = 121389, - [SMALL_STATE(5225)] = 121437, - [SMALL_STATE(5226)] = 121485, - [SMALL_STATE(5227)] = 121533, - [SMALL_STATE(5228)] = 121565, - [SMALL_STATE(5229)] = 121593, - [SMALL_STATE(5230)] = 121621, - [SMALL_STATE(5231)] = 121649, - [SMALL_STATE(5232)] = 121677, - [SMALL_STATE(5233)] = 121705, - [SMALL_STATE(5234)] = 121749, - [SMALL_STATE(5235)] = 121777, - [SMALL_STATE(5236)] = 121825, - [SMALL_STATE(5237)] = 121873, - [SMALL_STATE(5238)] = 121901, - [SMALL_STATE(5239)] = 121929, - [SMALL_STATE(5240)] = 121957, - [SMALL_STATE(5241)] = 121985, - [SMALL_STATE(5242)] = 122013, - [SMALL_STATE(5243)] = 122041, - [SMALL_STATE(5244)] = 122069, - [SMALL_STATE(5245)] = 122117, - [SMALL_STATE(5246)] = 122145, - [SMALL_STATE(5247)] = 122193, - [SMALL_STATE(5248)] = 122241, - [SMALL_STATE(5249)] = 122269, - [SMALL_STATE(5250)] = 122297, - [SMALL_STATE(5251)] = 122325, - [SMALL_STATE(5252)] = 122353, - [SMALL_STATE(5253)] = 122381, - [SMALL_STATE(5254)] = 122409, - [SMALL_STATE(5255)] = 122457, - [SMALL_STATE(5256)] = 122485, - [SMALL_STATE(5257)] = 122513, - [SMALL_STATE(5258)] = 122541, - [SMALL_STATE(5259)] = 122589, - [SMALL_STATE(5260)] = 122637, - [SMALL_STATE(5261)] = 122685, - [SMALL_STATE(5262)] = 122733, - [SMALL_STATE(5263)] = 122781, - [SMALL_STATE(5264)] = 122829, - [SMALL_STATE(5265)] = 122877, - [SMALL_STATE(5266)] = 122915, - [SMALL_STATE(5267)] = 122943, - [SMALL_STATE(5268)] = 122973, - [SMALL_STATE(5269)] = 123001, - [SMALL_STATE(5270)] = 123029, - [SMALL_STATE(5271)] = 123075, - [SMALL_STATE(5272)] = 123103, - [SMALL_STATE(5273)] = 123151, - [SMALL_STATE(5274)] = 123195, - [SMALL_STATE(5275)] = 123223, - [SMALL_STATE(5276)] = 123265, - [SMALL_STATE(5277)] = 123313, - [SMALL_STATE(5278)] = 123361, - [SMALL_STATE(5279)] = 123409, - [SMALL_STATE(5280)] = 123457, - [SMALL_STATE(5281)] = 123505, - [SMALL_STATE(5282)] = 123553, - [SMALL_STATE(5283)] = 123593, - [SMALL_STATE(5284)] = 123631, - [SMALL_STATE(5285)] = 123667, - [SMALL_STATE(5286)] = 123701, - [SMALL_STATE(5287)] = 123749, - [SMALL_STATE(5288)] = 123797, - [SMALL_STATE(5289)] = 123845, - [SMALL_STATE(5290)] = 123893, - [SMALL_STATE(5291)] = 123941, - [SMALL_STATE(5292)] = 123989, - [SMALL_STATE(5293)] = 124037, - [SMALL_STATE(5294)] = 124065, - [SMALL_STATE(5295)] = 124097, - [SMALL_STATE(5296)] = 124125, - [SMALL_STATE(5297)] = 124173, - [SMALL_STATE(5298)] = 124221, - [SMALL_STATE(5299)] = 124269, - [SMALL_STATE(5300)] = 124317, - [SMALL_STATE(5301)] = 124345, - [SMALL_STATE(5302)] = 124393, - [SMALL_STATE(5303)] = 124441, - [SMALL_STATE(5304)] = 124489, - [SMALL_STATE(5305)] = 124517, - [SMALL_STATE(5306)] = 124565, - [SMALL_STATE(5307)] = 124613, - [SMALL_STATE(5308)] = 124661, - [SMALL_STATE(5309)] = 124709, - [SMALL_STATE(5310)] = 124757, - [SMALL_STATE(5311)] = 124805, - [SMALL_STATE(5312)] = 124853, - [SMALL_STATE(5313)] = 124901, - [SMALL_STATE(5314)] = 124949, - [SMALL_STATE(5315)] = 124997, - [SMALL_STATE(5316)] = 125045, - [SMALL_STATE(5317)] = 125093, - [SMALL_STATE(5318)] = 125125, - [SMALL_STATE(5319)] = 125153, - [SMALL_STATE(5320)] = 125185, - [SMALL_STATE(5321)] = 125217, - [SMALL_STATE(5322)] = 125265, - [SMALL_STATE(5323)] = 125293, - [SMALL_STATE(5324)] = 125337, - [SMALL_STATE(5325)] = 125381, - [SMALL_STATE(5326)] = 125409, - [SMALL_STATE(5327)] = 125437, - [SMALL_STATE(5328)] = 125467, - [SMALL_STATE(5329)] = 125511, - [SMALL_STATE(5330)] = 125539, - [SMALL_STATE(5331)] = 125587, - [SMALL_STATE(5332)] = 125633, - [SMALL_STATE(5333)] = 125661, - [SMALL_STATE(5334)] = 125706, - [SMALL_STATE(5335)] = 125733, - [SMALL_STATE(5336)] = 125760, - [SMALL_STATE(5337)] = 125801, - [SMALL_STATE(5338)] = 125846, - [SMALL_STATE(5339)] = 125891, - [SMALL_STATE(5340)] = 125936, - [SMALL_STATE(5341)] = 125979, - [SMALL_STATE(5342)] = 126024, - [SMALL_STATE(5343)] = 126069, - [SMALL_STATE(5344)] = 126114, - [SMALL_STATE(5345)] = 126159, - [SMALL_STATE(5346)] = 126202, - [SMALL_STATE(5347)] = 126247, - [SMALL_STATE(5348)] = 126292, - [SMALL_STATE(5349)] = 126337, - [SMALL_STATE(5350)] = 126382, - [SMALL_STATE(5351)] = 126427, - [SMALL_STATE(5352)] = 126476, - [SMALL_STATE(5353)] = 126521, - [SMALL_STATE(5354)] = 126566, - [SMALL_STATE(5355)] = 126611, - [SMALL_STATE(5356)] = 126656, - [SMALL_STATE(5357)] = 126705, - [SMALL_STATE(5358)] = 126750, - [SMALL_STATE(5359)] = 126795, - [SMALL_STATE(5360)] = 126840, - [SMALL_STATE(5361)] = 126881, - [SMALL_STATE(5362)] = 126926, - [SMALL_STATE(5363)] = 126971, - [SMALL_STATE(5364)] = 127016, - [SMALL_STATE(5365)] = 127061, - [SMALL_STATE(5366)] = 127106, - [SMALL_STATE(5367)] = 127151, - [SMALL_STATE(5368)] = 127196, - [SMALL_STATE(5369)] = 127241, - [SMALL_STATE(5370)] = 127286, - [SMALL_STATE(5371)] = 127331, - [SMALL_STATE(5372)] = 127371, - [SMALL_STATE(5373)] = 127411, - [SMALL_STATE(5374)] = 127451, - [SMALL_STATE(5375)] = 127477, - [SMALL_STATE(5376)] = 127503, - [SMALL_STATE(5377)] = 127529, - [SMALL_STATE(5378)] = 127569, - [SMALL_STATE(5379)] = 127595, - [SMALL_STATE(5380)] = 127635, - [SMALL_STATE(5381)] = 127675, - [SMALL_STATE(5382)] = 127715, - [SMALL_STATE(5383)] = 127741, - [SMALL_STATE(5384)] = 127781, - [SMALL_STATE(5385)] = 127821, - [SMALL_STATE(5386)] = 127847, - [SMALL_STATE(5387)] = 127887, - [SMALL_STATE(5388)] = 127927, - [SMALL_STATE(5389)] = 127967, - [SMALL_STATE(5390)] = 128007, - [SMALL_STATE(5391)] = 128047, - [SMALL_STATE(5392)] = 128072, - [SMALL_STATE(5393)] = 128097, - [SMALL_STATE(5394)] = 128122, - [SMALL_STATE(5395)] = 128147, - [SMALL_STATE(5396)] = 128172, - [SMALL_STATE(5397)] = 128197, - [SMALL_STATE(5398)] = 128222, - [SMALL_STATE(5399)] = 128248, - [SMALL_STATE(5400)] = 128282, - [SMALL_STATE(5401)] = 128316, - [SMALL_STATE(5402)] = 128342, - [SMALL_STATE(5403)] = 128368, - [SMALL_STATE(5404)] = 128402, - [SMALL_STATE(5405)] = 128436, - [SMALL_STATE(5406)] = 128470, - [SMALL_STATE(5407)] = 128496, - [SMALL_STATE(5408)] = 128530, - [SMALL_STATE(5409)] = 128556, - [SMALL_STATE(5410)] = 128590, - [SMALL_STATE(5411)] = 128616, - [SMALL_STATE(5412)] = 128642, - [SMALL_STATE(5413)] = 128668, - [SMALL_STATE(5414)] = 128705, - [SMALL_STATE(5415)] = 128738, - [SMALL_STATE(5416)] = 128763, - [SMALL_STATE(5417)] = 128788, - [SMALL_STATE(5418)] = 128811, - [SMALL_STATE(5419)] = 128836, - [SMALL_STATE(5420)] = 128859, - [SMALL_STATE(5421)] = 128896, - [SMALL_STATE(5422)] = 128919, - [SMALL_STATE(5423)] = 128956, - [SMALL_STATE(5424)] = 128989, - [SMALL_STATE(5425)] = 129020, - [SMALL_STATE(5426)] = 129053, - [SMALL_STATE(5427)] = 129090, - [SMALL_STATE(5428)] = 129127, - [SMALL_STATE(5429)] = 129150, - [SMALL_STATE(5430)] = 129173, - [SMALL_STATE(5431)] = 129210, - [SMALL_STATE(5432)] = 129243, - [SMALL_STATE(5433)] = 129268, - [SMALL_STATE(5434)] = 129301, - [SMALL_STATE(5435)] = 129324, - [SMALL_STATE(5436)] = 129357, - [SMALL_STATE(5437)] = 129390, - [SMALL_STATE(5438)] = 129423, - [SMALL_STATE(5439)] = 129460, - [SMALL_STATE(5440)] = 129497, - [SMALL_STATE(5441)] = 129534, - [SMALL_STATE(5442)] = 129567, - [SMALL_STATE(5443)] = 129592, - [SMALL_STATE(5444)] = 129617, - [SMALL_STATE(5445)] = 129654, - [SMALL_STATE(5446)] = 129687, - [SMALL_STATE(5447)] = 129720, - [SMALL_STATE(5448)] = 129753, - [SMALL_STATE(5449)] = 129790, - [SMALL_STATE(5450)] = 129827, - [SMALL_STATE(5451)] = 129864, - [SMALL_STATE(5452)] = 129901, - [SMALL_STATE(5453)] = 129938, - [SMALL_STATE(5454)] = 129961, - [SMALL_STATE(5455)] = 129998, - [SMALL_STATE(5456)] = 130035, - [SMALL_STATE(5457)] = 130072, - [SMALL_STATE(5458)] = 130105, - [SMALL_STATE(5459)] = 130142, - [SMALL_STATE(5460)] = 130179, - [SMALL_STATE(5461)] = 130216, - [SMALL_STATE(5462)] = 130253, - [SMALL_STATE(5463)] = 130290, - [SMALL_STATE(5464)] = 130327, - [SMALL_STATE(5465)] = 130360, - [SMALL_STATE(5466)] = 130393, - [SMALL_STATE(5467)] = 130426, - [SMALL_STATE(5468)] = 130459, - [SMALL_STATE(5469)] = 130492, - [SMALL_STATE(5470)] = 130525, - [SMALL_STATE(5471)] = 130558, - [SMALL_STATE(5472)] = 130581, - [SMALL_STATE(5473)] = 130614, - [SMALL_STATE(5474)] = 130651, - [SMALL_STATE(5475)] = 130688, - [SMALL_STATE(5476)] = 130721, - [SMALL_STATE(5477)] = 130754, - [SMALL_STATE(5478)] = 130787, - [SMALL_STATE(5479)] = 130820, - [SMALL_STATE(5480)] = 130857, - [SMALL_STATE(5481)] = 130894, - [SMALL_STATE(5482)] = 130931, - [SMALL_STATE(5483)] = 130956, - [SMALL_STATE(5484)] = 130993, - [SMALL_STATE(5485)] = 131030, - [SMALL_STATE(5486)] = 131055, - [SMALL_STATE(5487)] = 131080, - [SMALL_STATE(5488)] = 131105, - [SMALL_STATE(5489)] = 131142, - [SMALL_STATE(5490)] = 131167, - [SMALL_STATE(5491)] = 131192, - [SMALL_STATE(5492)] = 131214, - [SMALL_STATE(5493)] = 131256, - [SMALL_STATE(5494)] = 131298, - [SMALL_STATE(5495)] = 131320, - [SMALL_STATE(5496)] = 131342, - [SMALL_STATE(5497)] = 131364, - [SMALL_STATE(5498)] = 131386, - [SMALL_STATE(5499)] = 131408, - [SMALL_STATE(5500)] = 131430, - [SMALL_STATE(5501)] = 131452, - [SMALL_STATE(5502)] = 131474, - [SMALL_STATE(5503)] = 131496, - [SMALL_STATE(5504)] = 131518, - [SMALL_STATE(5505)] = 131540, - [SMALL_STATE(5506)] = 131562, - [SMALL_STATE(5507)] = 131584, - [SMALL_STATE(5508)] = 131606, - [SMALL_STATE(5509)] = 131628, - [SMALL_STATE(5510)] = 131650, - [SMALL_STATE(5511)] = 131672, - [SMALL_STATE(5512)] = 131694, - [SMALL_STATE(5513)] = 131738, - [SMALL_STATE(5514)] = 131760, - [SMALL_STATE(5515)] = 131782, - [SMALL_STATE(5516)] = 131811, - [SMALL_STATE(5517)] = 131832, - [SMALL_STATE(5518)] = 131869, - [SMALL_STATE(5519)] = 131897, - [SMALL_STATE(5520)] = 131925, - [SMALL_STATE(5521)] = 131953, - [SMALL_STATE(5522)] = 131975, - [SMALL_STATE(5523)] = 132003, - [SMALL_STATE(5524)] = 132031, - [SMALL_STATE(5525)] = 132059, - [SMALL_STATE(5526)] = 132081, - [SMALL_STATE(5527)] = 132103, - [SMALL_STATE(5528)] = 132125, - [SMALL_STATE(5529)] = 132147, - [SMALL_STATE(5530)] = 132175, - [SMALL_STATE(5531)] = 132207, - [SMALL_STATE(5532)] = 132235, - [SMALL_STATE(5533)] = 132263, - [SMALL_STATE(5534)] = 132285, - [SMALL_STATE(5535)] = 132307, - [SMALL_STATE(5536)] = 132335, - [SMALL_STATE(5537)] = 132357, - [SMALL_STATE(5538)] = 132389, - [SMALL_STATE(5539)] = 132417, - [SMALL_STATE(5540)] = 132445, - [SMALL_STATE(5541)] = 132473, - [SMALL_STATE(5542)] = 132501, - [SMALL_STATE(5543)] = 132529, - [SMALL_STATE(5544)] = 132557, - [SMALL_STATE(5545)] = 132579, - [SMALL_STATE(5546)] = 132607, - [SMALL_STATE(5547)] = 132633, - [SMALL_STATE(5548)] = 132661, - [SMALL_STATE(5549)] = 132683, - [SMALL_STATE(5550)] = 132705, - [SMALL_STATE(5551)] = 132733, - [SMALL_STATE(5552)] = 132761, - [SMALL_STATE(5553)] = 132789, - [SMALL_STATE(5554)] = 132817, - [SMALL_STATE(5555)] = 132845, - [SMALL_STATE(5556)] = 132873, - [SMALL_STATE(5557)] = 132901, - [SMALL_STATE(5558)] = 132933, - [SMALL_STATE(5559)] = 132961, - [SMALL_STATE(5560)] = 132989, - [SMALL_STATE(5561)] = 133011, - [SMALL_STATE(5562)] = 133039, - [SMALL_STATE(5563)] = 133067, - [SMALL_STATE(5564)] = 133089, - [SMALL_STATE(5565)] = 133117, - [SMALL_STATE(5566)] = 133145, - [SMALL_STATE(5567)] = 133173, - [SMALL_STATE(5568)] = 133201, - [SMALL_STATE(5569)] = 133229, - [SMALL_STATE(5570)] = 133257, - [SMALL_STATE(5571)] = 133285, - [SMALL_STATE(5572)] = 133307, - [SMALL_STATE(5573)] = 133335, - [SMALL_STATE(5574)] = 133357, - [SMALL_STATE(5575)] = 133379, - [SMALL_STATE(5576)] = 133407, - [SMALL_STATE(5577)] = 133435, - [SMALL_STATE(5578)] = 133464, - [SMALL_STATE(5579)] = 133483, - [SMALL_STATE(5580)] = 133516, - [SMALL_STATE(5581)] = 133541, - [SMALL_STATE(5582)] = 133566, - [SMALL_STATE(5583)] = 133595, - [SMALL_STATE(5584)] = 133628, - [SMALL_STATE(5585)] = 133661, - [SMALL_STATE(5586)] = 133680, - [SMALL_STATE(5587)] = 133699, - [SMALL_STATE(5588)] = 133718, - [SMALL_STATE(5589)] = 133737, - [SMALL_STATE(5590)] = 133756, - [SMALL_STATE(5591)] = 133775, - [SMALL_STATE(5592)] = 133802, - [SMALL_STATE(5593)] = 133821, - [SMALL_STATE(5594)] = 133854, - [SMALL_STATE(5595)] = 133873, - [SMALL_STATE(5596)] = 133892, - [SMALL_STATE(5597)] = 133911, - [SMALL_STATE(5598)] = 133938, - [SMALL_STATE(5599)] = 133967, - [SMALL_STATE(5600)] = 133986, - [SMALL_STATE(5601)] = 134013, - [SMALL_STATE(5602)] = 134032, - [SMALL_STATE(5603)] = 134051, - [SMALL_STATE(5604)] = 134070, - [SMALL_STATE(5605)] = 134089, - [SMALL_STATE(5606)] = 134114, - [SMALL_STATE(5607)] = 134134, - [SMALL_STATE(5608)] = 134154, - [SMALL_STATE(5609)] = 134182, - [SMALL_STATE(5610)] = 134202, - [SMALL_STATE(5611)] = 134222, - [SMALL_STATE(5612)] = 134242, - [SMALL_STATE(5613)] = 134270, - [SMALL_STATE(5614)] = 134290, - [SMALL_STATE(5615)] = 134310, - [SMALL_STATE(5616)] = 134330, - [SMALL_STATE(5617)] = 134350, - [SMALL_STATE(5618)] = 134370, - [SMALL_STATE(5619)] = 134393, - [SMALL_STATE(5620)] = 134416, - [SMALL_STATE(5621)] = 134439, - [SMALL_STATE(5622)] = 134462, - [SMALL_STATE(5623)] = 134485, - [SMALL_STATE(5624)] = 134508, - [SMALL_STATE(5625)] = 134531, - [SMALL_STATE(5626)] = 134554, - [SMALL_STATE(5627)] = 134577, - [SMALL_STATE(5628)] = 134602, - [SMALL_STATE(5629)] = 134625, - [SMALL_STATE(5630)] = 134648, - [SMALL_STATE(5631)] = 134671, - [SMALL_STATE(5632)] = 134694, - [SMALL_STATE(5633)] = 134717, - [SMALL_STATE(5634)] = 134740, - [SMALL_STATE(5635)] = 134763, - [SMALL_STATE(5636)] = 134786, - [SMALL_STATE(5637)] = 134809, - [SMALL_STATE(5638)] = 134832, - [SMALL_STATE(5639)] = 134855, - [SMALL_STATE(5640)] = 134878, - [SMALL_STATE(5641)] = 134901, - [SMALL_STATE(5642)] = 134924, - [SMALL_STATE(5643)] = 134947, - [SMALL_STATE(5644)] = 134970, - [SMALL_STATE(5645)] = 134993, - [SMALL_STATE(5646)] = 135016, - [SMALL_STATE(5647)] = 135039, - [SMALL_STATE(5648)] = 135062, - [SMALL_STATE(5649)] = 135085, - [SMALL_STATE(5650)] = 135108, - [SMALL_STATE(5651)] = 135131, - [SMALL_STATE(5652)] = 135154, - [SMALL_STATE(5653)] = 135177, - [SMALL_STATE(5654)] = 135200, - [SMALL_STATE(5655)] = 135223, - [SMALL_STATE(5656)] = 135246, - [SMALL_STATE(5657)] = 135269, - [SMALL_STATE(5658)] = 135292, - [SMALL_STATE(5659)] = 135315, - [SMALL_STATE(5660)] = 135338, - [SMALL_STATE(5661)] = 135361, - [SMALL_STATE(5662)] = 135384, - [SMALL_STATE(5663)] = 135407, - [SMALL_STATE(5664)] = 135430, - [SMALL_STATE(5665)] = 135453, - [SMALL_STATE(5666)] = 135476, - [SMALL_STATE(5667)] = 135499, - [SMALL_STATE(5668)] = 135522, - [SMALL_STATE(5669)] = 135545, - [SMALL_STATE(5670)] = 135568, - [SMALL_STATE(5671)] = 135591, - [SMALL_STATE(5672)] = 135614, - [SMALL_STATE(5673)] = 135637, - [SMALL_STATE(5674)] = 135660, - [SMALL_STATE(5675)] = 135683, - [SMALL_STATE(5676)] = 135706, - [SMALL_STATE(5677)] = 135729, - [SMALL_STATE(5678)] = 135752, - [SMALL_STATE(5679)] = 135781, - [SMALL_STATE(5680)] = 135804, - [SMALL_STATE(5681)] = 135827, - [SMALL_STATE(5682)] = 135850, - [SMALL_STATE(5683)] = 135873, - [SMALL_STATE(5684)] = 135896, - [SMALL_STATE(5685)] = 135919, - [SMALL_STATE(5686)] = 135942, - [SMALL_STATE(5687)] = 135965, - [SMALL_STATE(5688)] = 135988, - [SMALL_STATE(5689)] = 136011, - [SMALL_STATE(5690)] = 136034, - [SMALL_STATE(5691)] = 136063, - [SMALL_STATE(5692)] = 136086, - [SMALL_STATE(5693)] = 136109, - [SMALL_STATE(5694)] = 136132, - [SMALL_STATE(5695)] = 136155, - [SMALL_STATE(5696)] = 136178, - [SMALL_STATE(5697)] = 136201, - [SMALL_STATE(5698)] = 136224, - [SMALL_STATE(5699)] = 136247, - [SMALL_STATE(5700)] = 136270, - [SMALL_STATE(5701)] = 136293, - [SMALL_STATE(5702)] = 136316, - [SMALL_STATE(5703)] = 136339, - [SMALL_STATE(5704)] = 136362, - [SMALL_STATE(5705)] = 136385, - [SMALL_STATE(5706)] = 136408, - [SMALL_STATE(5707)] = 136431, - [SMALL_STATE(5708)] = 136454, - [SMALL_STATE(5709)] = 136477, - [SMALL_STATE(5710)] = 136500, - [SMALL_STATE(5711)] = 136523, - [SMALL_STATE(5712)] = 136546, - [SMALL_STATE(5713)] = 136569, - [SMALL_STATE(5714)] = 136592, - [SMALL_STATE(5715)] = 136615, - [SMALL_STATE(5716)] = 136638, - [SMALL_STATE(5717)] = 136661, - [SMALL_STATE(5718)] = 136684, - [SMALL_STATE(5719)] = 136707, - [SMALL_STATE(5720)] = 136730, - [SMALL_STATE(5721)] = 136753, - [SMALL_STATE(5722)] = 136776, - [SMALL_STATE(5723)] = 136799, - [SMALL_STATE(5724)] = 136822, - [SMALL_STATE(5725)] = 136845, - [SMALL_STATE(5726)] = 136868, - [SMALL_STATE(5727)] = 136891, - [SMALL_STATE(5728)] = 136914, - [SMALL_STATE(5729)] = 136937, - [SMALL_STATE(5730)] = 136960, - [SMALL_STATE(5731)] = 136983, - [SMALL_STATE(5732)] = 137006, - [SMALL_STATE(5733)] = 137029, - [SMALL_STATE(5734)] = 137052, - [SMALL_STATE(5735)] = 137075, - [SMALL_STATE(5736)] = 137098, - [SMALL_STATE(5737)] = 137121, - [SMALL_STATE(5738)] = 137144, - [SMALL_STATE(5739)] = 137167, - [SMALL_STATE(5740)] = 137190, - [SMALL_STATE(5741)] = 137213, - [SMALL_STATE(5742)] = 137236, - [SMALL_STATE(5743)] = 137259, - [SMALL_STATE(5744)] = 137282, - [SMALL_STATE(5745)] = 137305, - [SMALL_STATE(5746)] = 137328, - [SMALL_STATE(5747)] = 137351, - [SMALL_STATE(5748)] = 137374, - [SMALL_STATE(5749)] = 137397, - [SMALL_STATE(5750)] = 137420, - [SMALL_STATE(5751)] = 137443, - [SMALL_STATE(5752)] = 137466, - [SMALL_STATE(5753)] = 137489, - [SMALL_STATE(5754)] = 137512, - [SMALL_STATE(5755)] = 137535, - [SMALL_STATE(5756)] = 137558, - [SMALL_STATE(5757)] = 137581, - [SMALL_STATE(5758)] = 137604, - [SMALL_STATE(5759)] = 137627, - [SMALL_STATE(5760)] = 137650, - [SMALL_STATE(5761)] = 137673, - [SMALL_STATE(5762)] = 137696, - [SMALL_STATE(5763)] = 137719, - [SMALL_STATE(5764)] = 137742, - [SMALL_STATE(5765)] = 137765, - [SMALL_STATE(5766)] = 137788, - [SMALL_STATE(5767)] = 137811, - [SMALL_STATE(5768)] = 137834, - [SMALL_STATE(5769)] = 137857, - [SMALL_STATE(5770)] = 137880, - [SMALL_STATE(5771)] = 137903, - [SMALL_STATE(5772)] = 137926, - [SMALL_STATE(5773)] = 137949, - [SMALL_STATE(5774)] = 137972, - [SMALL_STATE(5775)] = 137995, - [SMALL_STATE(5776)] = 138018, - [SMALL_STATE(5777)] = 138041, - [SMALL_STATE(5778)] = 138064, - [SMALL_STATE(5779)] = 138087, - [SMALL_STATE(5780)] = 138110, - [SMALL_STATE(5781)] = 138133, - [SMALL_STATE(5782)] = 138156, - [SMALL_STATE(5783)] = 138185, - [SMALL_STATE(5784)] = 138208, - [SMALL_STATE(5785)] = 138231, - [SMALL_STATE(5786)] = 138254, - [SMALL_STATE(5787)] = 138277, - [SMALL_STATE(5788)] = 138300, - [SMALL_STATE(5789)] = 138323, - [SMALL_STATE(5790)] = 138346, - [SMALL_STATE(5791)] = 138369, - [SMALL_STATE(5792)] = 138392, - [SMALL_STATE(5793)] = 138415, - [SMALL_STATE(5794)] = 138438, - [SMALL_STATE(5795)] = 138461, - [SMALL_STATE(5796)] = 138484, - [SMALL_STATE(5797)] = 138507, - [SMALL_STATE(5798)] = 138530, - [SMALL_STATE(5799)] = 138553, - [SMALL_STATE(5800)] = 138576, - [SMALL_STATE(5801)] = 138599, - [SMALL_STATE(5802)] = 138622, - [SMALL_STATE(5803)] = 138645, - [SMALL_STATE(5804)] = 138668, - [SMALL_STATE(5805)] = 138691, - [SMALL_STATE(5806)] = 138714, - [SMALL_STATE(5807)] = 138737, - [SMALL_STATE(5808)] = 138760, - [SMALL_STATE(5809)] = 138783, - [SMALL_STATE(5810)] = 138806, - [SMALL_STATE(5811)] = 138829, - [SMALL_STATE(5812)] = 138852, - [SMALL_STATE(5813)] = 138875, - [SMALL_STATE(5814)] = 138898, - [SMALL_STATE(5815)] = 138921, - [SMALL_STATE(5816)] = 138944, - [SMALL_STATE(5817)] = 138967, - [SMALL_STATE(5818)] = 138990, - [SMALL_STATE(5819)] = 139013, - [SMALL_STATE(5820)] = 139036, - [SMALL_STATE(5821)] = 139059, - [SMALL_STATE(5822)] = 139082, - [SMALL_STATE(5823)] = 139105, - [SMALL_STATE(5824)] = 139128, - [SMALL_STATE(5825)] = 139151, - [SMALL_STATE(5826)] = 139174, - [SMALL_STATE(5827)] = 139197, - [SMALL_STATE(5828)] = 139220, - [SMALL_STATE(5829)] = 139243, - [SMALL_STATE(5830)] = 139266, - [SMALL_STATE(5831)] = 139289, - [SMALL_STATE(5832)] = 139313, - [SMALL_STATE(5833)] = 139339, - [SMALL_STATE(5834)] = 139359, - [SMALL_STATE(5835)] = 139379, - [SMALL_STATE(5836)] = 139405, - [SMALL_STATE(5837)] = 139425, - [SMALL_STATE(5838)] = 139447, - [SMALL_STATE(5839)] = 139467, - [SMALL_STATE(5840)] = 139487, - [SMALL_STATE(5841)] = 139507, - [SMALL_STATE(5842)] = 139533, - [SMALL_STATE(5843)] = 139553, - [SMALL_STATE(5844)] = 139569, - [SMALL_STATE(5845)] = 139589, - [SMALL_STATE(5846)] = 139615, - [SMALL_STATE(5847)] = 139639, - [SMALL_STATE(5848)] = 139663, - [SMALL_STATE(5849)] = 139689, - [SMALL_STATE(5850)] = 139715, - [SMALL_STATE(5851)] = 139737, - [SMALL_STATE(5852)] = 139759, - [SMALL_STATE(5853)] = 139775, - [SMALL_STATE(5854)] = 139801, - [SMALL_STATE(5855)] = 139821, - [SMALL_STATE(5856)] = 139837, - [SMALL_STATE(5857)] = 139853, - [SMALL_STATE(5858)] = 139869, - [SMALL_STATE(5859)] = 139889, - [SMALL_STATE(5860)] = 139910, - [SMALL_STATE(5861)] = 139931, - [SMALL_STATE(5862)] = 139946, - [SMALL_STATE(5863)] = 139967, - [SMALL_STATE(5864)] = 139988, - [SMALL_STATE(5865)] = 140009, - [SMALL_STATE(5866)] = 140030, - [SMALL_STATE(5867)] = 140051, - [SMALL_STATE(5868)] = 140072, - [SMALL_STATE(5869)] = 140087, - [SMALL_STATE(5870)] = 140108, - [SMALL_STATE(5871)] = 140129, - [SMALL_STATE(5872)] = 140150, - [SMALL_STATE(5873)] = 140171, - [SMALL_STATE(5874)] = 140192, - [SMALL_STATE(5875)] = 140213, - [SMALL_STATE(5876)] = 140234, - [SMALL_STATE(5877)] = 140255, - [SMALL_STATE(5878)] = 140276, - [SMALL_STATE(5879)] = 140297, - [SMALL_STATE(5880)] = 140318, - [SMALL_STATE(5881)] = 140331, - [SMALL_STATE(5882)] = 140352, - [SMALL_STATE(5883)] = 140367, - [SMALL_STATE(5884)] = 140382, - [SMALL_STATE(5885)] = 140403, - [SMALL_STATE(5886)] = 140424, - [SMALL_STATE(5887)] = 140439, - [SMALL_STATE(5888)] = 140454, - [SMALL_STATE(5889)] = 140475, - [SMALL_STATE(5890)] = 140490, - [SMALL_STATE(5891)] = 140511, - [SMALL_STATE(5892)] = 140526, - [SMALL_STATE(5893)] = 140541, - [SMALL_STATE(5894)] = 140562, - [SMALL_STATE(5895)] = 140583, - [SMALL_STATE(5896)] = 140604, - [SMALL_STATE(5897)] = 140625, - [SMALL_STATE(5898)] = 140646, - [SMALL_STATE(5899)] = 140667, - [SMALL_STATE(5900)] = 140688, - [SMALL_STATE(5901)] = 140703, - [SMALL_STATE(5902)] = 140724, - [SMALL_STATE(5903)] = 140739, - [SMALL_STATE(5904)] = 140760, - [SMALL_STATE(5905)] = 140781, - [SMALL_STATE(5906)] = 140796, - [SMALL_STATE(5907)] = 140811, - [SMALL_STATE(5908)] = 140826, - [SMALL_STATE(5909)] = 140847, - [SMALL_STATE(5910)] = 140868, - [SMALL_STATE(5911)] = 140883, - [SMALL_STATE(5912)] = 140898, - [SMALL_STATE(5913)] = 140919, - [SMALL_STATE(5914)] = 140937, - [SMALL_STATE(5915)] = 140955, - [SMALL_STATE(5916)] = 140973, - [SMALL_STATE(5917)] = 140991, - [SMALL_STATE(5918)] = 141009, - [SMALL_STATE(5919)] = 141027, - [SMALL_STATE(5920)] = 141045, - [SMALL_STATE(5921)] = 141063, - [SMALL_STATE(5922)] = 141081, - [SMALL_STATE(5923)] = 141099, - [SMALL_STATE(5924)] = 141117, - [SMALL_STATE(5925)] = 141135, - [SMALL_STATE(5926)] = 141155, - [SMALL_STATE(5927)] = 141173, - [SMALL_STATE(5928)] = 141191, - [SMALL_STATE(5929)] = 141209, - [SMALL_STATE(5930)] = 141227, - [SMALL_STATE(5931)] = 141245, - [SMALL_STATE(5932)] = 141263, - [SMALL_STATE(5933)] = 141281, - [SMALL_STATE(5934)] = 141299, - [SMALL_STATE(5935)] = 141317, - [SMALL_STATE(5936)] = 141331, - [SMALL_STATE(5937)] = 141351, - [SMALL_STATE(5938)] = 141371, - [SMALL_STATE(5939)] = 141389, - [SMALL_STATE(5940)] = 141407, - [SMALL_STATE(5941)] = 141425, - [SMALL_STATE(5942)] = 141443, - [SMALL_STATE(5943)] = 141463, - [SMALL_STATE(5944)] = 141483, - [SMALL_STATE(5945)] = 141501, - [SMALL_STATE(5946)] = 141519, - [SMALL_STATE(5947)] = 141537, - [SMALL_STATE(5948)] = 141555, - [SMALL_STATE(5949)] = 141573, - [SMALL_STATE(5950)] = 141591, - [SMALL_STATE(5951)] = 141609, - [SMALL_STATE(5952)] = 141625, - [SMALL_STATE(5953)] = 141645, - [SMALL_STATE(5954)] = 141663, - [SMALL_STATE(5955)] = 141681, - [SMALL_STATE(5956)] = 141697, - [SMALL_STATE(5957)] = 141715, - [SMALL_STATE(5958)] = 141733, - [SMALL_STATE(5959)] = 141751, - [SMALL_STATE(5960)] = 141769, - [SMALL_STATE(5961)] = 141787, - [SMALL_STATE(5962)] = 141805, - [SMALL_STATE(5963)] = 141823, - [SMALL_STATE(5964)] = 141841, - [SMALL_STATE(5965)] = 141859, - [SMALL_STATE(5966)] = 141877, - [SMALL_STATE(5967)] = 141895, - [SMALL_STATE(5968)] = 141913, - [SMALL_STATE(5969)] = 141931, - [SMALL_STATE(5970)] = 141949, - [SMALL_STATE(5971)] = 141967, - [SMALL_STATE(5972)] = 141985, - [SMALL_STATE(5973)] = 142003, - [SMALL_STATE(5974)] = 142021, - [SMALL_STATE(5975)] = 142039, - [SMALL_STATE(5976)] = 142057, - [SMALL_STATE(5977)] = 142075, - [SMALL_STATE(5978)] = 142093, - [SMALL_STATE(5979)] = 142111, - [SMALL_STATE(5980)] = 142129, - [SMALL_STATE(5981)] = 142147, - [SMALL_STATE(5982)] = 142165, - [SMALL_STATE(5983)] = 142183, - [SMALL_STATE(5984)] = 142201, - [SMALL_STATE(5985)] = 142219, - [SMALL_STATE(5986)] = 142237, - [SMALL_STATE(5987)] = 142255, - [SMALL_STATE(5988)] = 142273, - [SMALL_STATE(5989)] = 142291, - [SMALL_STATE(5990)] = 142309, - [SMALL_STATE(5991)] = 142327, - [SMALL_STATE(5992)] = 142345, - [SMALL_STATE(5993)] = 142363, - [SMALL_STATE(5994)] = 142381, - [SMALL_STATE(5995)] = 142399, - [SMALL_STATE(5996)] = 142417, - [SMALL_STATE(5997)] = 142435, - [SMALL_STATE(5998)] = 142453, - [SMALL_STATE(5999)] = 142471, - [SMALL_STATE(6000)] = 142487, - [SMALL_STATE(6001)] = 142507, - [SMALL_STATE(6002)] = 142527, - [SMALL_STATE(6003)] = 142547, - [SMALL_STATE(6004)] = 142565, - [SMALL_STATE(6005)] = 142583, - [SMALL_STATE(6006)] = 142601, - [SMALL_STATE(6007)] = 142619, - [SMALL_STATE(6008)] = 142637, - [SMALL_STATE(6009)] = 142655, - [SMALL_STATE(6010)] = 142673, - [SMALL_STATE(6011)] = 142691, - [SMALL_STATE(6012)] = 142709, - [SMALL_STATE(6013)] = 142727, - [SMALL_STATE(6014)] = 142745, - [SMALL_STATE(6015)] = 142763, - [SMALL_STATE(6016)] = 142779, - [SMALL_STATE(6017)] = 142797, - [SMALL_STATE(6018)] = 142815, - [SMALL_STATE(6019)] = 142833, - [SMALL_STATE(6020)] = 142851, - [SMALL_STATE(6021)] = 142869, - [SMALL_STATE(6022)] = 142887, - [SMALL_STATE(6023)] = 142905, - [SMALL_STATE(6024)] = 142923, - [SMALL_STATE(6025)] = 142939, - [SMALL_STATE(6026)] = 142957, - [SMALL_STATE(6027)] = 142975, - [SMALL_STATE(6028)] = 142995, - [SMALL_STATE(6029)] = 143015, - [SMALL_STATE(6030)] = 143033, - [SMALL_STATE(6031)] = 143051, - [SMALL_STATE(6032)] = 143069, - [SMALL_STATE(6033)] = 143087, - [SMALL_STATE(6034)] = 143105, - [SMALL_STATE(6035)] = 143123, - [SMALL_STATE(6036)] = 143141, - [SMALL_STATE(6037)] = 143159, - [SMALL_STATE(6038)] = 143177, - [SMALL_STATE(6039)] = 143195, - [SMALL_STATE(6040)] = 143213, - [SMALL_STATE(6041)] = 143231, - [SMALL_STATE(6042)] = 143249, - [SMALL_STATE(6043)] = 143267, - [SMALL_STATE(6044)] = 143285, - [SMALL_STATE(6045)] = 143303, - [SMALL_STATE(6046)] = 143321, - [SMALL_STATE(6047)] = 143339, - [SMALL_STATE(6048)] = 143357, - [SMALL_STATE(6049)] = 143375, - [SMALL_STATE(6050)] = 143393, - [SMALL_STATE(6051)] = 143411, - [SMALL_STATE(6052)] = 143431, - [SMALL_STATE(6053)] = 143449, - [SMALL_STATE(6054)] = 143467, - [SMALL_STATE(6055)] = 143485, - [SMALL_STATE(6056)] = 143503, - [SMALL_STATE(6057)] = 143521, - [SMALL_STATE(6058)] = 143539, - [SMALL_STATE(6059)] = 143559, - [SMALL_STATE(6060)] = 143577, - [SMALL_STATE(6061)] = 143595, - [SMALL_STATE(6062)] = 143613, - [SMALL_STATE(6063)] = 143631, - [SMALL_STATE(6064)] = 143649, - [SMALL_STATE(6065)] = 143667, - [SMALL_STATE(6066)] = 143685, - [SMALL_STATE(6067)] = 143703, - [SMALL_STATE(6068)] = 143721, - [SMALL_STATE(6069)] = 143739, - [SMALL_STATE(6070)] = 143757, - [SMALL_STATE(6071)] = 143775, - [SMALL_STATE(6072)] = 143793, - [SMALL_STATE(6073)] = 143811, - [SMALL_STATE(6074)] = 143829, - [SMALL_STATE(6075)] = 143847, - [SMALL_STATE(6076)] = 143865, - [SMALL_STATE(6077)] = 143883, - [SMALL_STATE(6078)] = 143901, - [SMALL_STATE(6079)] = 143917, - [SMALL_STATE(6080)] = 143937, - [SMALL_STATE(6081)] = 143955, - [SMALL_STATE(6082)] = 143973, - [SMALL_STATE(6083)] = 143993, - [SMALL_STATE(6084)] = 144009, - [SMALL_STATE(6085)] = 144021, - [SMALL_STATE(6086)] = 144039, - [SMALL_STATE(6087)] = 144057, - [SMALL_STATE(6088)] = 144075, - [SMALL_STATE(6089)] = 144093, - [SMALL_STATE(6090)] = 144111, - [SMALL_STATE(6091)] = 144129, - [SMALL_STATE(6092)] = 144147, - [SMALL_STATE(6093)] = 144167, - [SMALL_STATE(6094)] = 144187, - [SMALL_STATE(6095)] = 144205, - [SMALL_STATE(6096)] = 144223, - [SMALL_STATE(6097)] = 144241, - [SMALL_STATE(6098)] = 144259, - [SMALL_STATE(6099)] = 144279, - [SMALL_STATE(6100)] = 144299, - [SMALL_STATE(6101)] = 144317, - [SMALL_STATE(6102)] = 144335, - [SMALL_STATE(6103)] = 144353, - [SMALL_STATE(6104)] = 144371, - [SMALL_STATE(6105)] = 144389, - [SMALL_STATE(6106)] = 144407, - [SMALL_STATE(6107)] = 144425, - [SMALL_STATE(6108)] = 144441, - [SMALL_STATE(6109)] = 144459, - [SMALL_STATE(6110)] = 144477, - [SMALL_STATE(6111)] = 144491, - [SMALL_STATE(6112)] = 144509, - [SMALL_STATE(6113)] = 144527, - [SMALL_STATE(6114)] = 144545, - [SMALL_STATE(6115)] = 144563, - [SMALL_STATE(6116)] = 144580, - [SMALL_STATE(6117)] = 144595, - [SMALL_STATE(6118)] = 144612, - [SMALL_STATE(6119)] = 144627, - [SMALL_STATE(6120)] = 144642, - [SMALL_STATE(6121)] = 144657, - [SMALL_STATE(6122)] = 144672, - [SMALL_STATE(6123)] = 144683, - [SMALL_STATE(6124)] = 144698, - [SMALL_STATE(6125)] = 144713, - [SMALL_STATE(6126)] = 144730, - [SMALL_STATE(6127)] = 144745, - [SMALL_STATE(6128)] = 144760, - [SMALL_STATE(6129)] = 144775, - [SMALL_STATE(6130)] = 144790, - [SMALL_STATE(6131)] = 144805, - [SMALL_STATE(6132)] = 144820, - [SMALL_STATE(6133)] = 144835, - [SMALL_STATE(6134)] = 144852, - [SMALL_STATE(6135)] = 144867, - [SMALL_STATE(6136)] = 144882, - [SMALL_STATE(6137)] = 144899, - [SMALL_STATE(6138)] = 144914, - [SMALL_STATE(6139)] = 144931, - [SMALL_STATE(6140)] = 144946, - [SMALL_STATE(6141)] = 144957, - [SMALL_STATE(6142)] = 144974, - [SMALL_STATE(6143)] = 144989, - [SMALL_STATE(6144)] = 145004, - [SMALL_STATE(6145)] = 145019, - [SMALL_STATE(6146)] = 145036, - [SMALL_STATE(6147)] = 145051, - [SMALL_STATE(6148)] = 145066, - [SMALL_STATE(6149)] = 145081, - [SMALL_STATE(6150)] = 145096, - [SMALL_STATE(6151)] = 145111, - [SMALL_STATE(6152)] = 145126, - [SMALL_STATE(6153)] = 145143, - [SMALL_STATE(6154)] = 145160, - [SMALL_STATE(6155)] = 145175, - [SMALL_STATE(6156)] = 145192, - [SMALL_STATE(6157)] = 145209, - [SMALL_STATE(6158)] = 145226, - [SMALL_STATE(6159)] = 145243, - [SMALL_STATE(6160)] = 145258, - [SMALL_STATE(6161)] = 145275, - [SMALL_STATE(6162)] = 145290, - [SMALL_STATE(6163)] = 145307, - [SMALL_STATE(6164)] = 145324, - [SMALL_STATE(6165)] = 145335, - [SMALL_STATE(6166)] = 145352, - [SMALL_STATE(6167)] = 145369, - [SMALL_STATE(6168)] = 145384, - [SMALL_STATE(6169)] = 145401, - [SMALL_STATE(6170)] = 145418, - [SMALL_STATE(6171)] = 145435, - [SMALL_STATE(6172)] = 145452, - [SMALL_STATE(6173)] = 145469, - [SMALL_STATE(6174)] = 145486, - [SMALL_STATE(6175)] = 145503, - [SMALL_STATE(6176)] = 145520, - [SMALL_STATE(6177)] = 145537, - [SMALL_STATE(6178)] = 145554, - [SMALL_STATE(6179)] = 145571, - [SMALL_STATE(6180)] = 145588, - [SMALL_STATE(6181)] = 145605, - [SMALL_STATE(6182)] = 145622, - [SMALL_STATE(6183)] = 145639, - [SMALL_STATE(6184)] = 145656, - [SMALL_STATE(6185)] = 145673, - [SMALL_STATE(6186)] = 145690, - [SMALL_STATE(6187)] = 145705, - [SMALL_STATE(6188)] = 145720, - [SMALL_STATE(6189)] = 145737, - [SMALL_STATE(6190)] = 145754, - [SMALL_STATE(6191)] = 145771, - [SMALL_STATE(6192)] = 145788, - [SMALL_STATE(6193)] = 145805, - [SMALL_STATE(6194)] = 145822, - [SMALL_STATE(6195)] = 145839, - [SMALL_STATE(6196)] = 145856, - [SMALL_STATE(6197)] = 145867, - [SMALL_STATE(6198)] = 145884, - [SMALL_STATE(6199)] = 145899, - [SMALL_STATE(6200)] = 145914, - [SMALL_STATE(6201)] = 145929, - [SMALL_STATE(6202)] = 145944, - [SMALL_STATE(6203)] = 145959, - [SMALL_STATE(6204)] = 145974, - [SMALL_STATE(6205)] = 145989, - [SMALL_STATE(6206)] = 146006, - [SMALL_STATE(6207)] = 146021, - [SMALL_STATE(6208)] = 146034, - [SMALL_STATE(6209)] = 146049, - [SMALL_STATE(6210)] = 146064, - [SMALL_STATE(6211)] = 146081, - [SMALL_STATE(6212)] = 146098, - [SMALL_STATE(6213)] = 146115, - [SMALL_STATE(6214)] = 146130, - [SMALL_STATE(6215)] = 146145, - [SMALL_STATE(6216)] = 146160, - [SMALL_STATE(6217)] = 146175, - [SMALL_STATE(6218)] = 146190, - [SMALL_STATE(6219)] = 146205, - [SMALL_STATE(6220)] = 146222, - [SMALL_STATE(6221)] = 146235, - [SMALL_STATE(6222)] = 146250, - [SMALL_STATE(6223)] = 146267, - [SMALL_STATE(6224)] = 146278, - [SMALL_STATE(6225)] = 146295, - [SMALL_STATE(6226)] = 146312, - [SMALL_STATE(6227)] = 146327, - [SMALL_STATE(6228)] = 146342, - [SMALL_STATE(6229)] = 146357, - [SMALL_STATE(6230)] = 146372, - [SMALL_STATE(6231)] = 146387, - [SMALL_STATE(6232)] = 146400, - [SMALL_STATE(6233)] = 146415, - [SMALL_STATE(6234)] = 146430, - [SMALL_STATE(6235)] = 146447, - [SMALL_STATE(6236)] = 146464, - [SMALL_STATE(6237)] = 146477, - [SMALL_STATE(6238)] = 146492, - [SMALL_STATE(6239)] = 146503, - [SMALL_STATE(6240)] = 146514, - [SMALL_STATE(6241)] = 146531, - [SMALL_STATE(6242)] = 146546, - [SMALL_STATE(6243)] = 146557, - [SMALL_STATE(6244)] = 146572, - [SMALL_STATE(6245)] = 146589, - [SMALL_STATE(6246)] = 146604, - [SMALL_STATE(6247)] = 146615, - [SMALL_STATE(6248)] = 146630, - [SMALL_STATE(6249)] = 146647, - [SMALL_STATE(6250)] = 146661, - [SMALL_STATE(6251)] = 146673, - [SMALL_STATE(6252)] = 146685, - [SMALL_STATE(6253)] = 146697, - [SMALL_STATE(6254)] = 146711, - [SMALL_STATE(6255)] = 146725, - [SMALL_STATE(6256)] = 146739, - [SMALL_STATE(6257)] = 146753, - [SMALL_STATE(6258)] = 146767, - [SMALL_STATE(6259)] = 146779, - [SMALL_STATE(6260)] = 146793, - [SMALL_STATE(6261)] = 146807, - [SMALL_STATE(6262)] = 146821, - [SMALL_STATE(6263)] = 146833, - [SMALL_STATE(6264)] = 146845, - [SMALL_STATE(6265)] = 146859, - [SMALL_STATE(6266)] = 146871, - [SMALL_STATE(6267)] = 146883, - [SMALL_STATE(6268)] = 146897, - [SMALL_STATE(6269)] = 146909, - [SMALL_STATE(6270)] = 146923, - [SMALL_STATE(6271)] = 146935, - [SMALL_STATE(6272)] = 146949, - [SMALL_STATE(6273)] = 146961, - [SMALL_STATE(6274)] = 146973, - [SMALL_STATE(6275)] = 146987, - [SMALL_STATE(6276)] = 146999, - [SMALL_STATE(6277)] = 147013, - [SMALL_STATE(6278)] = 147027, - [SMALL_STATE(6279)] = 147039, - [SMALL_STATE(6280)] = 147053, - [SMALL_STATE(6281)] = 147065, - [SMALL_STATE(6282)] = 147079, - [SMALL_STATE(6283)] = 147093, - [SMALL_STATE(6284)] = 147105, - [SMALL_STATE(6285)] = 147117, - [SMALL_STATE(6286)] = 147129, - [SMALL_STATE(6287)] = 147143, - [SMALL_STATE(6288)] = 147155, - [SMALL_STATE(6289)] = 147169, - [SMALL_STATE(6290)] = 147183, - [SMALL_STATE(6291)] = 147197, - [SMALL_STATE(6292)] = 147209, - [SMALL_STATE(6293)] = 147221, - [SMALL_STATE(6294)] = 147233, - [SMALL_STATE(6295)] = 147247, - [SMALL_STATE(6296)] = 147259, - [SMALL_STATE(6297)] = 147273, - [SMALL_STATE(6298)] = 147285, - [SMALL_STATE(6299)] = 147297, - [SMALL_STATE(6300)] = 147309, - [SMALL_STATE(6301)] = 147323, - [SMALL_STATE(6302)] = 147337, - [SMALL_STATE(6303)] = 147349, - [SMALL_STATE(6304)] = 147363, - [SMALL_STATE(6305)] = 147377, - [SMALL_STATE(6306)] = 147389, - [SMALL_STATE(6307)] = 147399, - [SMALL_STATE(6308)] = 147411, - [SMALL_STATE(6309)] = 147425, - [SMALL_STATE(6310)] = 147437, - [SMALL_STATE(6311)] = 147451, - [SMALL_STATE(6312)] = 147465, - [SMALL_STATE(6313)] = 147475, - [SMALL_STATE(6314)] = 147489, - [SMALL_STATE(6315)] = 147501, - [SMALL_STATE(6316)] = 147515, - [SMALL_STATE(6317)] = 147529, - [SMALL_STATE(6318)] = 147541, - [SMALL_STATE(6319)] = 147553, - [SMALL_STATE(6320)] = 147565, - [SMALL_STATE(6321)] = 147579, - [SMALL_STATE(6322)] = 147593, - [SMALL_STATE(6323)] = 147605, - [SMALL_STATE(6324)] = 147619, - [SMALL_STATE(6325)] = 147631, - [SMALL_STATE(6326)] = 147645, - [SMALL_STATE(6327)] = 147659, - [SMALL_STATE(6328)] = 147671, - [SMALL_STATE(6329)] = 147685, - [SMALL_STATE(6330)] = 147699, - [SMALL_STATE(6331)] = 147711, - [SMALL_STATE(6332)] = 147725, - [SMALL_STATE(6333)] = 147737, - [SMALL_STATE(6334)] = 147751, - [SMALL_STATE(6335)] = 147765, - [SMALL_STATE(6336)] = 147779, - [SMALL_STATE(6337)] = 147791, - [SMALL_STATE(6338)] = 147803, - [SMALL_STATE(6339)] = 147817, - [SMALL_STATE(6340)] = 147829, - [SMALL_STATE(6341)] = 147843, - [SMALL_STATE(6342)] = 147855, - [SMALL_STATE(6343)] = 147869, - [SMALL_STATE(6344)] = 147883, - [SMALL_STATE(6345)] = 147895, - [SMALL_STATE(6346)] = 147909, - [SMALL_STATE(6347)] = 147923, - [SMALL_STATE(6348)] = 147935, - [SMALL_STATE(6349)] = 147947, - [SMALL_STATE(6350)] = 147959, - [SMALL_STATE(6351)] = 147973, - [SMALL_STATE(6352)] = 147985, - [SMALL_STATE(6353)] = 147999, - [SMALL_STATE(6354)] = 148013, - [SMALL_STATE(6355)] = 148025, - [SMALL_STATE(6356)] = 148037, - [SMALL_STATE(6357)] = 148049, - [SMALL_STATE(6358)] = 148063, - [SMALL_STATE(6359)] = 148075, - [SMALL_STATE(6360)] = 148087, - [SMALL_STATE(6361)] = 148101, - [SMALL_STATE(6362)] = 148113, - [SMALL_STATE(6363)] = 148127, - [SMALL_STATE(6364)] = 148141, - [SMALL_STATE(6365)] = 148155, - [SMALL_STATE(6366)] = 148169, - [SMALL_STATE(6367)] = 148179, - [SMALL_STATE(6368)] = 148193, - [SMALL_STATE(6369)] = 148207, - [SMALL_STATE(6370)] = 148221, - [SMALL_STATE(6371)] = 148235, - [SMALL_STATE(6372)] = 148247, - [SMALL_STATE(6373)] = 148261, - [SMALL_STATE(6374)] = 148275, - [SMALL_STATE(6375)] = 148289, - [SMALL_STATE(6376)] = 148301, - [SMALL_STATE(6377)] = 148311, - [SMALL_STATE(6378)] = 148323, - [SMALL_STATE(6379)] = 148337, - [SMALL_STATE(6380)] = 148351, - [SMALL_STATE(6381)] = 148363, - [SMALL_STATE(6382)] = 148375, - [SMALL_STATE(6383)] = 148389, - [SMALL_STATE(6384)] = 148403, - [SMALL_STATE(6385)] = 148415, - [SMALL_STATE(6386)] = 148427, - [SMALL_STATE(6387)] = 148439, - [SMALL_STATE(6388)] = 148453, - [SMALL_STATE(6389)] = 148465, - [SMALL_STATE(6390)] = 148479, - [SMALL_STATE(6391)] = 148493, - [SMALL_STATE(6392)] = 148505, - [SMALL_STATE(6393)] = 148519, - [SMALL_STATE(6394)] = 148531, - [SMALL_STATE(6395)] = 148545, - [SMALL_STATE(6396)] = 148559, - [SMALL_STATE(6397)] = 148569, - [SMALL_STATE(6398)] = 148581, - [SMALL_STATE(6399)] = 148593, - [SMALL_STATE(6400)] = 148605, - [SMALL_STATE(6401)] = 148619, - [SMALL_STATE(6402)] = 148633, - [SMALL_STATE(6403)] = 148645, - [SMALL_STATE(6404)] = 148657, - [SMALL_STATE(6405)] = 148669, - [SMALL_STATE(6406)] = 148679, - [SMALL_STATE(6407)] = 148689, - [SMALL_STATE(6408)] = 148703, - [SMALL_STATE(6409)] = 148717, - [SMALL_STATE(6410)] = 148729, - [SMALL_STATE(6411)] = 148741, - [SMALL_STATE(6412)] = 148753, - [SMALL_STATE(6413)] = 148767, - [SMALL_STATE(6414)] = 148779, - [SMALL_STATE(6415)] = 148789, - [SMALL_STATE(6416)] = 148803, - [SMALL_STATE(6417)] = 148815, - [SMALL_STATE(6418)] = 148827, - [SMALL_STATE(6419)] = 148841, - [SMALL_STATE(6420)] = 148853, - [SMALL_STATE(6421)] = 148867, - [SMALL_STATE(6422)] = 148881, - [SMALL_STATE(6423)] = 148895, - [SMALL_STATE(6424)] = 148907, - [SMALL_STATE(6425)] = 148917, - [SMALL_STATE(6426)] = 148931, - [SMALL_STATE(6427)] = 148941, - [SMALL_STATE(6428)] = 148953, - [SMALL_STATE(6429)] = 148967, - [SMALL_STATE(6430)] = 148981, - [SMALL_STATE(6431)] = 148995, - [SMALL_STATE(6432)] = 149005, - [SMALL_STATE(6433)] = 149019, - [SMALL_STATE(6434)] = 149033, - [SMALL_STATE(6435)] = 149047, - [SMALL_STATE(6436)] = 149059, - [SMALL_STATE(6437)] = 149071, - [SMALL_STATE(6438)] = 149085, - [SMALL_STATE(6439)] = 149099, - [SMALL_STATE(6440)] = 149111, - [SMALL_STATE(6441)] = 149125, - [SMALL_STATE(6442)] = 149137, - [SMALL_STATE(6443)] = 149149, - [SMALL_STATE(6444)] = 149161, - [SMALL_STATE(6445)] = 149173, - [SMALL_STATE(6446)] = 149187, - [SMALL_STATE(6447)] = 149201, - [SMALL_STATE(6448)] = 149215, - [SMALL_STATE(6449)] = 149229, - [SMALL_STATE(6450)] = 149243, - [SMALL_STATE(6451)] = 149255, - [SMALL_STATE(6452)] = 149269, - [SMALL_STATE(6453)] = 149283, - [SMALL_STATE(6454)] = 149295, - [SMALL_STATE(6455)] = 149309, - [SMALL_STATE(6456)] = 149323, - [SMALL_STATE(6457)] = 149335, - [SMALL_STATE(6458)] = 149349, - [SMALL_STATE(6459)] = 149361, - [SMALL_STATE(6460)] = 149375, - [SMALL_STATE(6461)] = 149389, - [SMALL_STATE(6462)] = 149401, - [SMALL_STATE(6463)] = 149413, - [SMALL_STATE(6464)] = 149425, - [SMALL_STATE(6465)] = 149439, - [SMALL_STATE(6466)] = 149453, - [SMALL_STATE(6467)] = 149465, - [SMALL_STATE(6468)] = 149477, - [SMALL_STATE(6469)] = 149491, - [SMALL_STATE(6470)] = 149505, - [SMALL_STATE(6471)] = 149517, - [SMALL_STATE(6472)] = 149529, - [SMALL_STATE(6473)] = 149541, - [SMALL_STATE(6474)] = 149553, - [SMALL_STATE(6475)] = 149565, - [SMALL_STATE(6476)] = 149577, - [SMALL_STATE(6477)] = 149591, - [SMALL_STATE(6478)] = 149603, - [SMALL_STATE(6479)] = 149615, - [SMALL_STATE(6480)] = 149629, - [SMALL_STATE(6481)] = 149641, - [SMALL_STATE(6482)] = 149655, - [SMALL_STATE(6483)] = 149667, - [SMALL_STATE(6484)] = 149679, - [SMALL_STATE(6485)] = 149691, - [SMALL_STATE(6486)] = 149703, - [SMALL_STATE(6487)] = 149715, - [SMALL_STATE(6488)] = 149729, - [SMALL_STATE(6489)] = 149743, - [SMALL_STATE(6490)] = 149757, - [SMALL_STATE(6491)] = 149771, - [SMALL_STATE(6492)] = 149785, - [SMALL_STATE(6493)] = 149799, - [SMALL_STATE(6494)] = 149811, - [SMALL_STATE(6495)] = 149823, - [SMALL_STATE(6496)] = 149837, - [SMALL_STATE(6497)] = 149851, - [SMALL_STATE(6498)] = 149865, - [SMALL_STATE(6499)] = 149879, - [SMALL_STATE(6500)] = 149893, - [SMALL_STATE(6501)] = 149905, - [SMALL_STATE(6502)] = 149919, - [SMALL_STATE(6503)] = 149931, - [SMALL_STATE(6504)] = 149943, - [SMALL_STATE(6505)] = 149955, - [SMALL_STATE(6506)] = 149969, - [SMALL_STATE(6507)] = 149981, - [SMALL_STATE(6508)] = 149995, - [SMALL_STATE(6509)] = 150009, - [SMALL_STATE(6510)] = 150021, - [SMALL_STATE(6511)] = 150033, - [SMALL_STATE(6512)] = 150045, - [SMALL_STATE(6513)] = 150059, - [SMALL_STATE(6514)] = 150071, - [SMALL_STATE(6515)] = 150085, - [SMALL_STATE(6516)] = 150099, - [SMALL_STATE(6517)] = 150111, - [SMALL_STATE(6518)] = 150125, - [SMALL_STATE(6519)] = 150137, - [SMALL_STATE(6520)] = 150151, - [SMALL_STATE(6521)] = 150165, - [SMALL_STATE(6522)] = 150179, - [SMALL_STATE(6523)] = 150191, - [SMALL_STATE(6524)] = 150203, - [SMALL_STATE(6525)] = 150217, - [SMALL_STATE(6526)] = 150229, - [SMALL_STATE(6527)] = 150241, - [SMALL_STATE(6528)] = 150251, - [SMALL_STATE(6529)] = 150261, - [SMALL_STATE(6530)] = 150275, - [SMALL_STATE(6531)] = 150289, - [SMALL_STATE(6532)] = 150301, - [SMALL_STATE(6533)] = 150313, - [SMALL_STATE(6534)] = 150325, - [SMALL_STATE(6535)] = 150337, - [SMALL_STATE(6536)] = 150351, - [SMALL_STATE(6537)] = 150365, - [SMALL_STATE(6538)] = 150379, - [SMALL_STATE(6539)] = 150391, - [SMALL_STATE(6540)] = 150403, - [SMALL_STATE(6541)] = 150417, - [SMALL_STATE(6542)] = 150429, - [SMALL_STATE(6543)] = 150439, - [SMALL_STATE(6544)] = 150453, - [SMALL_STATE(6545)] = 150467, - [SMALL_STATE(6546)] = 150479, - [SMALL_STATE(6547)] = 150493, - [SMALL_STATE(6548)] = 150507, - [SMALL_STATE(6549)] = 150519, - [SMALL_STATE(6550)] = 150531, - [SMALL_STATE(6551)] = 150545, - [SMALL_STATE(6552)] = 150559, - [SMALL_STATE(6553)] = 150571, - [SMALL_STATE(6554)] = 150585, - [SMALL_STATE(6555)] = 150597, - [SMALL_STATE(6556)] = 150609, - [SMALL_STATE(6557)] = 150621, - [SMALL_STATE(6558)] = 150631, - [SMALL_STATE(6559)] = 150645, - [SMALL_STATE(6560)] = 150659, - [SMALL_STATE(6561)] = 150673, - [SMALL_STATE(6562)] = 150685, - [SMALL_STATE(6563)] = 150699, - [SMALL_STATE(6564)] = 150713, - [SMALL_STATE(6565)] = 150725, - [SMALL_STATE(6566)] = 150737, - [SMALL_STATE(6567)] = 150749, - [SMALL_STATE(6568)] = 150763, - [SMALL_STATE(6569)] = 150773, - [SMALL_STATE(6570)] = 150785, - [SMALL_STATE(6571)] = 150799, - [SMALL_STATE(6572)] = 150809, - [SMALL_STATE(6573)] = 150821, - [SMALL_STATE(6574)] = 150835, - [SMALL_STATE(6575)] = 150847, - [SMALL_STATE(6576)] = 150861, - [SMALL_STATE(6577)] = 150873, - [SMALL_STATE(6578)] = 150885, - [SMALL_STATE(6579)] = 150897, - [SMALL_STATE(6580)] = 150911, - [SMALL_STATE(6581)] = 150923, - [SMALL_STATE(6582)] = 150937, - [SMALL_STATE(6583)] = 150949, - [SMALL_STATE(6584)] = 150961, - [SMALL_STATE(6585)] = 150973, - [SMALL_STATE(6586)] = 150985, - [SMALL_STATE(6587)] = 150999, - [SMALL_STATE(6588)] = 151013, - [SMALL_STATE(6589)] = 151025, - [SMALL_STATE(6590)] = 151037, - [SMALL_STATE(6591)] = 151049, - [SMALL_STATE(6592)] = 151063, - [SMALL_STATE(6593)] = 151077, - [SMALL_STATE(6594)] = 151089, - [SMALL_STATE(6595)] = 151101, - [SMALL_STATE(6596)] = 151115, - [SMALL_STATE(6597)] = 151127, - [SMALL_STATE(6598)] = 151141, - [SMALL_STATE(6599)] = 151153, - [SMALL_STATE(6600)] = 151167, - [SMALL_STATE(6601)] = 151179, - [SMALL_STATE(6602)] = 151191, - [SMALL_STATE(6603)] = 151203, - [SMALL_STATE(6604)] = 151213, - [SMALL_STATE(6605)] = 151225, - [SMALL_STATE(6606)] = 151237, - [SMALL_STATE(6607)] = 151251, - [SMALL_STATE(6608)] = 151265, - [SMALL_STATE(6609)] = 151277, - [SMALL_STATE(6610)] = 151289, - [SMALL_STATE(6611)] = 151303, - [SMALL_STATE(6612)] = 151315, - [SMALL_STATE(6613)] = 151329, - [SMALL_STATE(6614)] = 151343, - [SMALL_STATE(6615)] = 151357, - [SMALL_STATE(6616)] = 151369, - [SMALL_STATE(6617)] = 151381, - [SMALL_STATE(6618)] = 151395, - [SMALL_STATE(6619)] = 151407, - [SMALL_STATE(6620)] = 151419, - [SMALL_STATE(6621)] = 151429, - [SMALL_STATE(6622)] = 151443, - [SMALL_STATE(6623)] = 151455, - [SMALL_STATE(6624)] = 151469, - [SMALL_STATE(6625)] = 151481, - [SMALL_STATE(6626)] = 151495, - [SMALL_STATE(6627)] = 151507, - [SMALL_STATE(6628)] = 151519, - [SMALL_STATE(6629)] = 151533, - [SMALL_STATE(6630)] = 151543, - [SMALL_STATE(6631)] = 151555, - [SMALL_STATE(6632)] = 151567, - [SMALL_STATE(6633)] = 151581, - [SMALL_STATE(6634)] = 151595, - [SMALL_STATE(6635)] = 151607, - [SMALL_STATE(6636)] = 151621, - [SMALL_STATE(6637)] = 151633, - [SMALL_STATE(6638)] = 151645, - [SMALL_STATE(6639)] = 151657, - [SMALL_STATE(6640)] = 151669, - [SMALL_STATE(6641)] = 151681, - [SMALL_STATE(6642)] = 151695, - [SMALL_STATE(6643)] = 151709, - [SMALL_STATE(6644)] = 151721, - [SMALL_STATE(6645)] = 151733, - [SMALL_STATE(6646)] = 151747, - [SMALL_STATE(6647)] = 151759, - [SMALL_STATE(6648)] = 151771, - [SMALL_STATE(6649)] = 151785, - [SMALL_STATE(6650)] = 151797, - [SMALL_STATE(6651)] = 151809, - [SMALL_STATE(6652)] = 151821, - [SMALL_STATE(6653)] = 151835, - [SMALL_STATE(6654)] = 151847, - [SMALL_STATE(6655)] = 151859, - [SMALL_STATE(6656)] = 151873, - [SMALL_STATE(6657)] = 151887, - [SMALL_STATE(6658)] = 151901, - [SMALL_STATE(6659)] = 151911, - [SMALL_STATE(6660)] = 151923, - [SMALL_STATE(6661)] = 151935, - [SMALL_STATE(6662)] = 151949, - [SMALL_STATE(6663)] = 151963, - [SMALL_STATE(6664)] = 151977, - [SMALL_STATE(6665)] = 151991, - [SMALL_STATE(6666)] = 152005, - [SMALL_STATE(6667)] = 152017, - [SMALL_STATE(6668)] = 152031, - [SMALL_STATE(6669)] = 152043, - [SMALL_STATE(6670)] = 152057, - [SMALL_STATE(6671)] = 152069, - [SMALL_STATE(6672)] = 152083, - [SMALL_STATE(6673)] = 152095, - [SMALL_STATE(6674)] = 152109, - [SMALL_STATE(6675)] = 152121, - [SMALL_STATE(6676)] = 152133, - [SMALL_STATE(6677)] = 152145, - [SMALL_STATE(6678)] = 152157, - [SMALL_STATE(6679)] = 152169, - [SMALL_STATE(6680)] = 152183, - [SMALL_STATE(6681)] = 152193, - [SMALL_STATE(6682)] = 152207, - [SMALL_STATE(6683)] = 152219, - [SMALL_STATE(6684)] = 152233, - [SMALL_STATE(6685)] = 152247, - [SMALL_STATE(6686)] = 152261, - [SMALL_STATE(6687)] = 152275, - [SMALL_STATE(6688)] = 152287, - [SMALL_STATE(6689)] = 152299, - [SMALL_STATE(6690)] = 152313, - [SMALL_STATE(6691)] = 152327, - [SMALL_STATE(6692)] = 152339, - [SMALL_STATE(6693)] = 152349, - [SMALL_STATE(6694)] = 152361, - [SMALL_STATE(6695)] = 152375, - [SMALL_STATE(6696)] = 152387, - [SMALL_STATE(6697)] = 152397, - [SMALL_STATE(6698)] = 152409, - [SMALL_STATE(6699)] = 152421, - [SMALL_STATE(6700)] = 152435, - [SMALL_STATE(6701)] = 152449, - [SMALL_STATE(6702)] = 152461, - [SMALL_STATE(6703)] = 152473, - [SMALL_STATE(6704)] = 152487, - [SMALL_STATE(6705)] = 152501, - [SMALL_STATE(6706)] = 152513, - [SMALL_STATE(6707)] = 152525, - [SMALL_STATE(6708)] = 152537, - [SMALL_STATE(6709)] = 152549, - [SMALL_STATE(6710)] = 152563, - [SMALL_STATE(6711)] = 152577, - [SMALL_STATE(6712)] = 152589, - [SMALL_STATE(6713)] = 152603, - [SMALL_STATE(6714)] = 152615, - [SMALL_STATE(6715)] = 152629, - [SMALL_STATE(6716)] = 152641, - [SMALL_STATE(6717)] = 152653, - [SMALL_STATE(6718)] = 152667, - [SMALL_STATE(6719)] = 152679, - [SMALL_STATE(6720)] = 152693, - [SMALL_STATE(6721)] = 152705, - [SMALL_STATE(6722)] = 152717, - [SMALL_STATE(6723)] = 152729, - [SMALL_STATE(6724)] = 152743, - [SMALL_STATE(6725)] = 152755, - [SMALL_STATE(6726)] = 152765, - [SMALL_STATE(6727)] = 152779, - [SMALL_STATE(6728)] = 152791, - [SMALL_STATE(6729)] = 152805, - [SMALL_STATE(6730)] = 152817, - [SMALL_STATE(6731)] = 152831, - [SMALL_STATE(6732)] = 152843, - [SMALL_STATE(6733)] = 152857, - [SMALL_STATE(6734)] = 152869, - [SMALL_STATE(6735)] = 152883, - [SMALL_STATE(6736)] = 152893, - [SMALL_STATE(6737)] = 152905, - [SMALL_STATE(6738)] = 152919, - [SMALL_STATE(6739)] = 152933, - [SMALL_STATE(6740)] = 152943, - [SMALL_STATE(6741)] = 152955, - [SMALL_STATE(6742)] = 152967, - [SMALL_STATE(6743)] = 152979, - [SMALL_STATE(6744)] = 152993, - [SMALL_STATE(6745)] = 153007, - [SMALL_STATE(6746)] = 153021, - [SMALL_STATE(6747)] = 153033, - [SMALL_STATE(6748)] = 153045, - [SMALL_STATE(6749)] = 153055, - [SMALL_STATE(6750)] = 153065, - [SMALL_STATE(6751)] = 153079, - [SMALL_STATE(6752)] = 153091, - [SMALL_STATE(6753)] = 153105, - [SMALL_STATE(6754)] = 153119, - [SMALL_STATE(6755)] = 153131, - [SMALL_STATE(6756)] = 153145, - [SMALL_STATE(6757)] = 153157, - [SMALL_STATE(6758)] = 153171, - [SMALL_STATE(6759)] = 153185, - [SMALL_STATE(6760)] = 153197, - [SMALL_STATE(6761)] = 153211, - [SMALL_STATE(6762)] = 153223, - [SMALL_STATE(6763)] = 153237, - [SMALL_STATE(6764)] = 153251, - [SMALL_STATE(6765)] = 153263, - [SMALL_STATE(6766)] = 153275, - [SMALL_STATE(6767)] = 153289, - [SMALL_STATE(6768)] = 153301, - [SMALL_STATE(6769)] = 153311, - [SMALL_STATE(6770)] = 153323, - [SMALL_STATE(6771)] = 153335, - [SMALL_STATE(6772)] = 153347, - [SMALL_STATE(6773)] = 153361, - [SMALL_STATE(6774)] = 153373, - [SMALL_STATE(6775)] = 153387, - [SMALL_STATE(6776)] = 153399, - [SMALL_STATE(6777)] = 153411, - [SMALL_STATE(6778)] = 153425, - [SMALL_STATE(6779)] = 153437, - [SMALL_STATE(6780)] = 153449, - [SMALL_STATE(6781)] = 153463, - [SMALL_STATE(6782)] = 153477, - [SMALL_STATE(6783)] = 153489, - [SMALL_STATE(6784)] = 153503, - [SMALL_STATE(6785)] = 153515, - [SMALL_STATE(6786)] = 153527, - [SMALL_STATE(6787)] = 153541, - [SMALL_STATE(6788)] = 153555, - [SMALL_STATE(6789)] = 153569, - [SMALL_STATE(6790)] = 153583, - [SMALL_STATE(6791)] = 153595, - [SMALL_STATE(6792)] = 153609, - [SMALL_STATE(6793)] = 153621, - [SMALL_STATE(6794)] = 153633, - [SMALL_STATE(6795)] = 153647, - [SMALL_STATE(6796)] = 153661, - [SMALL_STATE(6797)] = 153673, - [SMALL_STATE(6798)] = 153685, - [SMALL_STATE(6799)] = 153697, - [SMALL_STATE(6800)] = 153711, - [SMALL_STATE(6801)] = 153725, - [SMALL_STATE(6802)] = 153739, - [SMALL_STATE(6803)] = 153751, - [SMALL_STATE(6804)] = 153763, - [SMALL_STATE(6805)] = 153777, - [SMALL_STATE(6806)] = 153791, - [SMALL_STATE(6807)] = 153803, - [SMALL_STATE(6808)] = 153817, - [SMALL_STATE(6809)] = 153829, - [SMALL_STATE(6810)] = 153841, - [SMALL_STATE(6811)] = 153853, - [SMALL_STATE(6812)] = 153867, - [SMALL_STATE(6813)] = 153879, - [SMALL_STATE(6814)] = 153891, - [SMALL_STATE(6815)] = 153903, - [SMALL_STATE(6816)] = 153917, - [SMALL_STATE(6817)] = 153931, - [SMALL_STATE(6818)] = 153945, - [SMALL_STATE(6819)] = 153957, - [SMALL_STATE(6820)] = 153971, - [SMALL_STATE(6821)] = 153983, - [SMALL_STATE(6822)] = 153997, - [SMALL_STATE(6823)] = 154011, - [SMALL_STATE(6824)] = 154025, - [SMALL_STATE(6825)] = 154039, - [SMALL_STATE(6826)] = 154053, - [SMALL_STATE(6827)] = 154065, - [SMALL_STATE(6828)] = 154079, - [SMALL_STATE(6829)] = 154091, - [SMALL_STATE(6830)] = 154105, - [SMALL_STATE(6831)] = 154119, - [SMALL_STATE(6832)] = 154133, - [SMALL_STATE(6833)] = 154145, - [SMALL_STATE(6834)] = 154159, - [SMALL_STATE(6835)] = 154173, - [SMALL_STATE(6836)] = 154187, - [SMALL_STATE(6837)] = 154201, - [SMALL_STATE(6838)] = 154215, - [SMALL_STATE(6839)] = 154229, - [SMALL_STATE(6840)] = 154243, - [SMALL_STATE(6841)] = 154255, - [SMALL_STATE(6842)] = 154269, - [SMALL_STATE(6843)] = 154281, - [SMALL_STATE(6844)] = 154295, - [SMALL_STATE(6845)] = 154307, - [SMALL_STATE(6846)] = 154321, - [SMALL_STATE(6847)] = 154333, - [SMALL_STATE(6848)] = 154347, - [SMALL_STATE(6849)] = 154361, - [SMALL_STATE(6850)] = 154375, - [SMALL_STATE(6851)] = 154389, - [SMALL_STATE(6852)] = 154403, - [SMALL_STATE(6853)] = 154415, - [SMALL_STATE(6854)] = 154429, - [SMALL_STATE(6855)] = 154443, - [SMALL_STATE(6856)] = 154457, - [SMALL_STATE(6857)] = 154469, - [SMALL_STATE(6858)] = 154483, - [SMALL_STATE(6859)] = 154495, - [SMALL_STATE(6860)] = 154509, - [SMALL_STATE(6861)] = 154521, - [SMALL_STATE(6862)] = 154535, - [SMALL_STATE(6863)] = 154547, - [SMALL_STATE(6864)] = 154561, - [SMALL_STATE(6865)] = 154573, - [SMALL_STATE(6866)] = 154587, - [SMALL_STATE(6867)] = 154601, - [SMALL_STATE(6868)] = 154615, - [SMALL_STATE(6869)] = 154627, - [SMALL_STATE(6870)] = 154641, - [SMALL_STATE(6871)] = 154655, - [SMALL_STATE(6872)] = 154669, - [SMALL_STATE(6873)] = 154681, - [SMALL_STATE(6874)] = 154693, - [SMALL_STATE(6875)] = 154705, - [SMALL_STATE(6876)] = 154717, - [SMALL_STATE(6877)] = 154729, - [SMALL_STATE(6878)] = 154741, - [SMALL_STATE(6879)] = 154755, - [SMALL_STATE(6880)] = 154767, - [SMALL_STATE(6881)] = 154779, - [SMALL_STATE(6882)] = 154791, - [SMALL_STATE(6883)] = 154805, - [SMALL_STATE(6884)] = 154817, - [SMALL_STATE(6885)] = 154831, - [SMALL_STATE(6886)] = 154845, - [SMALL_STATE(6887)] = 154859, - [SMALL_STATE(6888)] = 154869, - [SMALL_STATE(6889)] = 154883, - [SMALL_STATE(6890)] = 154897, - [SMALL_STATE(6891)] = 154909, - [SMALL_STATE(6892)] = 154921, - [SMALL_STATE(6893)] = 154933, - [SMALL_STATE(6894)] = 154947, - [SMALL_STATE(6895)] = 154959, - [SMALL_STATE(6896)] = 154973, - [SMALL_STATE(6897)] = 154985, - [SMALL_STATE(6898)] = 154997, - [SMALL_STATE(6899)] = 155009, - [SMALL_STATE(6900)] = 155021, - [SMALL_STATE(6901)] = 155033, - [SMALL_STATE(6902)] = 155047, - [SMALL_STATE(6903)] = 155061, - [SMALL_STATE(6904)] = 155073, - [SMALL_STATE(6905)] = 155085, - [SMALL_STATE(6906)] = 155095, - [SMALL_STATE(6907)] = 155107, - [SMALL_STATE(6908)] = 155119, - [SMALL_STATE(6909)] = 155133, - [SMALL_STATE(6910)] = 155145, - [SMALL_STATE(6911)] = 155157, - [SMALL_STATE(6912)] = 155169, - [SMALL_STATE(6913)] = 155181, - [SMALL_STATE(6914)] = 155195, - [SMALL_STATE(6915)] = 155205, - [SMALL_STATE(6916)] = 155219, - [SMALL_STATE(6917)] = 155233, - [SMALL_STATE(6918)] = 155247, - [SMALL_STATE(6919)] = 155261, - [SMALL_STATE(6920)] = 155273, - [SMALL_STATE(6921)] = 155285, - [SMALL_STATE(6922)] = 155299, - [SMALL_STATE(6923)] = 155313, - [SMALL_STATE(6924)] = 155327, - [SMALL_STATE(6925)] = 155339, - [SMALL_STATE(6926)] = 155353, - [SMALL_STATE(6927)] = 155365, - [SMALL_STATE(6928)] = 155379, - [SMALL_STATE(6929)] = 155391, - [SMALL_STATE(6930)] = 155403, - [SMALL_STATE(6931)] = 155415, - [SMALL_STATE(6932)] = 155427, - [SMALL_STATE(6933)] = 155439, - [SMALL_STATE(6934)] = 155451, - [SMALL_STATE(6935)] = 155465, - [SMALL_STATE(6936)] = 155479, - [SMALL_STATE(6937)] = 155493, - [SMALL_STATE(6938)] = 155507, - [SMALL_STATE(6939)] = 155519, - [SMALL_STATE(6940)] = 155533, - [SMALL_STATE(6941)] = 155545, - [SMALL_STATE(6942)] = 155559, - [SMALL_STATE(6943)] = 155573, - [SMALL_STATE(6944)] = 155585, - [SMALL_STATE(6945)] = 155597, - [SMALL_STATE(6946)] = 155611, - [SMALL_STATE(6947)] = 155625, - [SMALL_STATE(6948)] = 155637, - [SMALL_STATE(6949)] = 155651, - [SMALL_STATE(6950)] = 155663, - [SMALL_STATE(6951)] = 155675, - [SMALL_STATE(6952)] = 155687, - [SMALL_STATE(6953)] = 155701, - [SMALL_STATE(6954)] = 155715, - [SMALL_STATE(6955)] = 155729, - [SMALL_STATE(6956)] = 155743, - [SMALL_STATE(6957)] = 155755, - [SMALL_STATE(6958)] = 155769, - [SMALL_STATE(6959)] = 155783, - [SMALL_STATE(6960)] = 155795, - [SMALL_STATE(6961)] = 155807, - [SMALL_STATE(6962)] = 155821, - [SMALL_STATE(6963)] = 155835, - [SMALL_STATE(6964)] = 155847, - [SMALL_STATE(6965)] = 155861, - [SMALL_STATE(6966)] = 155873, - [SMALL_STATE(6967)] = 155885, - [SMALL_STATE(6968)] = 155897, - [SMALL_STATE(6969)] = 155911, - [SMALL_STATE(6970)] = 155923, - [SMALL_STATE(6971)] = 155937, - [SMALL_STATE(6972)] = 155949, - [SMALL_STATE(6973)] = 155961, - [SMALL_STATE(6974)] = 155973, - [SMALL_STATE(6975)] = 155987, - [SMALL_STATE(6976)] = 156001, - [SMALL_STATE(6977)] = 156015, - [SMALL_STATE(6978)] = 156027, - [SMALL_STATE(6979)] = 156041, - [SMALL_STATE(6980)] = 156051, - [SMALL_STATE(6981)] = 156065, - [SMALL_STATE(6982)] = 156077, - [SMALL_STATE(6983)] = 156089, - [SMALL_STATE(6984)] = 156103, - [SMALL_STATE(6985)] = 156117, - [SMALL_STATE(6986)] = 156131, - [SMALL_STATE(6987)] = 156145, - [SMALL_STATE(6988)] = 156157, - [SMALL_STATE(6989)] = 156169, - [SMALL_STATE(6990)] = 156183, - [SMALL_STATE(6991)] = 156193, - [SMALL_STATE(6992)] = 156205, - [SMALL_STATE(6993)] = 156217, - [SMALL_STATE(6994)] = 156229, - [SMALL_STATE(6995)] = 156243, - [SMALL_STATE(6996)] = 156255, - [SMALL_STATE(6997)] = 156269, - [SMALL_STATE(6998)] = 156283, - [SMALL_STATE(6999)] = 156297, - [SMALL_STATE(7000)] = 156311, - [SMALL_STATE(7001)] = 156323, - [SMALL_STATE(7002)] = 156333, - [SMALL_STATE(7003)] = 156343, - [SMALL_STATE(7004)] = 156355, - [SMALL_STATE(7005)] = 156367, - [SMALL_STATE(7006)] = 156381, - [SMALL_STATE(7007)] = 156393, - [SMALL_STATE(7008)] = 156407, - [SMALL_STATE(7009)] = 156421, - [SMALL_STATE(7010)] = 156435, - [SMALL_STATE(7011)] = 156447, - [SMALL_STATE(7012)] = 156459, - [SMALL_STATE(7013)] = 156473, - [SMALL_STATE(7014)] = 156487, - [SMALL_STATE(7015)] = 156499, - [SMALL_STATE(7016)] = 156511, - [SMALL_STATE(7017)] = 156523, - [SMALL_STATE(7018)] = 156537, - [SMALL_STATE(7019)] = 156549, - [SMALL_STATE(7020)] = 156561, - [SMALL_STATE(7021)] = 156575, - [SMALL_STATE(7022)] = 156587, - [SMALL_STATE(7023)] = 156599, - [SMALL_STATE(7024)] = 156613, - [SMALL_STATE(7025)] = 156627, - [SMALL_STATE(7026)] = 156639, - [SMALL_STATE(7027)] = 156653, - [SMALL_STATE(7028)] = 156667, - [SMALL_STATE(7029)] = 156681, - [SMALL_STATE(7030)] = 156695, - [SMALL_STATE(7031)] = 156709, - [SMALL_STATE(7032)] = 156723, - [SMALL_STATE(7033)] = 156737, - [SMALL_STATE(7034)] = 156749, - [SMALL_STATE(7035)] = 156763, - [SMALL_STATE(7036)] = 156777, - [SMALL_STATE(7037)] = 156791, - [SMALL_STATE(7038)] = 156803, - [SMALL_STATE(7039)] = 156817, - [SMALL_STATE(7040)] = 156829, - [SMALL_STATE(7041)] = 156841, - [SMALL_STATE(7042)] = 156853, - [SMALL_STATE(7043)] = 156867, - [SMALL_STATE(7044)] = 156881, - [SMALL_STATE(7045)] = 156895, - [SMALL_STATE(7046)] = 156909, - [SMALL_STATE(7047)] = 156923, - [SMALL_STATE(7048)] = 156937, - [SMALL_STATE(7049)] = 156951, - [SMALL_STATE(7050)] = 156965, - [SMALL_STATE(7051)] = 156979, - [SMALL_STATE(7052)] = 156993, - [SMALL_STATE(7053)] = 157005, - [SMALL_STATE(7054)] = 157017, - [SMALL_STATE(7055)] = 157031, - [SMALL_STATE(7056)] = 157043, - [SMALL_STATE(7057)] = 157057, - [SMALL_STATE(7058)] = 157071, - [SMALL_STATE(7059)] = 157083, - [SMALL_STATE(7060)] = 157097, - [SMALL_STATE(7061)] = 157111, - [SMALL_STATE(7062)] = 157123, - [SMALL_STATE(7063)] = 157137, - [SMALL_STATE(7064)] = 157151, - [SMALL_STATE(7065)] = 157163, - [SMALL_STATE(7066)] = 157175, - [SMALL_STATE(7067)] = 157187, - [SMALL_STATE(7068)] = 157201, - [SMALL_STATE(7069)] = 157213, - [SMALL_STATE(7070)] = 157227, - [SMALL_STATE(7071)] = 157241, - [SMALL_STATE(7072)] = 157251, - [SMALL_STATE(7073)] = 157265, - [SMALL_STATE(7074)] = 157277, - [SMALL_STATE(7075)] = 157286, - [SMALL_STATE(7076)] = 157297, - [SMALL_STATE(7077)] = 157306, - [SMALL_STATE(7078)] = 157317, - [SMALL_STATE(7079)] = 157328, - [SMALL_STATE(7080)] = 157337, - [SMALL_STATE(7081)] = 157346, - [SMALL_STATE(7082)] = 157355, - [SMALL_STATE(7083)] = 157364, - [SMALL_STATE(7084)] = 157375, - [SMALL_STATE(7085)] = 157384, - [SMALL_STATE(7086)] = 157393, - [SMALL_STATE(7087)] = 157404, - [SMALL_STATE(7088)] = 157415, - [SMALL_STATE(7089)] = 157426, - [SMALL_STATE(7090)] = 157435, - [SMALL_STATE(7091)] = 157446, - [SMALL_STATE(7092)] = 157457, - [SMALL_STATE(7093)] = 157468, - [SMALL_STATE(7094)] = 157479, - [SMALL_STATE(7095)] = 157488, - [SMALL_STATE(7096)] = 157497, - [SMALL_STATE(7097)] = 157506, - [SMALL_STATE(7098)] = 157517, - [SMALL_STATE(7099)] = 157528, - [SMALL_STATE(7100)] = 157537, - [SMALL_STATE(7101)] = 157548, - [SMALL_STATE(7102)] = 157557, - [SMALL_STATE(7103)] = 157566, - [SMALL_STATE(7104)] = 157577, - [SMALL_STATE(7105)] = 157586, - [SMALL_STATE(7106)] = 157595, - [SMALL_STATE(7107)] = 157606, - [SMALL_STATE(7108)] = 157615, - [SMALL_STATE(7109)] = 157626, - [SMALL_STATE(7110)] = 157635, - [SMALL_STATE(7111)] = 157644, - [SMALL_STATE(7112)] = 157653, - [SMALL_STATE(7113)] = 157662, - [SMALL_STATE(7114)] = 157671, - [SMALL_STATE(7115)] = 157680, - [SMALL_STATE(7116)] = 157691, - [SMALL_STATE(7117)] = 157702, - [SMALL_STATE(7118)] = 157711, - [SMALL_STATE(7119)] = 157722, - [SMALL_STATE(7120)] = 157733, - [SMALL_STATE(7121)] = 157742, - [SMALL_STATE(7122)] = 157751, - [SMALL_STATE(7123)] = 157760, - [SMALL_STATE(7124)] = 157771, - [SMALL_STATE(7125)] = 157780, - [SMALL_STATE(7126)] = 157789, - [SMALL_STATE(7127)] = 157798, - [SMALL_STATE(7128)] = 157809, - [SMALL_STATE(7129)] = 157818, - [SMALL_STATE(7130)] = 157829, - [SMALL_STATE(7131)] = 157838, - [SMALL_STATE(7132)] = 157849, - [SMALL_STATE(7133)] = 157860, - [SMALL_STATE(7134)] = 157869, - [SMALL_STATE(7135)] = 157880, - [SMALL_STATE(7136)] = 157889, - [SMALL_STATE(7137)] = 157898, - [SMALL_STATE(7138)] = 157907, - [SMALL_STATE(7139)] = 157916, - [SMALL_STATE(7140)] = 157925, - [SMALL_STATE(7141)] = 157936, - [SMALL_STATE(7142)] = 157947, - [SMALL_STATE(7143)] = 157956, - [SMALL_STATE(7144)] = 157967, - [SMALL_STATE(7145)] = 157976, - [SMALL_STATE(7146)] = 157985, - [SMALL_STATE(7147)] = 157996, - [SMALL_STATE(7148)] = 158007, - [SMALL_STATE(7149)] = 158016, - [SMALL_STATE(7150)] = 158025, - [SMALL_STATE(7151)] = 158036, - [SMALL_STATE(7152)] = 158047, - [SMALL_STATE(7153)] = 158056, - [SMALL_STATE(7154)] = 158065, - [SMALL_STATE(7155)] = 158074, - [SMALL_STATE(7156)] = 158085, - [SMALL_STATE(7157)] = 158094, - [SMALL_STATE(7158)] = 158103, - [SMALL_STATE(7159)] = 158112, - [SMALL_STATE(7160)] = 158121, - [SMALL_STATE(7161)] = 158132, - [SMALL_STATE(7162)] = 158141, - [SMALL_STATE(7163)] = 158152, - [SMALL_STATE(7164)] = 158161, - [SMALL_STATE(7165)] = 158172, - [SMALL_STATE(7166)] = 158183, - [SMALL_STATE(7167)] = 158192, - [SMALL_STATE(7168)] = 158201, - [SMALL_STATE(7169)] = 158210, - [SMALL_STATE(7170)] = 158221, - [SMALL_STATE(7171)] = 158230, - [SMALL_STATE(7172)] = 158241, - [SMALL_STATE(7173)] = 158250, - [SMALL_STATE(7174)] = 158259, - [SMALL_STATE(7175)] = 158268, - [SMALL_STATE(7176)] = 158277, - [SMALL_STATE(7177)] = 158286, - [SMALL_STATE(7178)] = 158295, - [SMALL_STATE(7179)] = 158306, - [SMALL_STATE(7180)] = 158315, - [SMALL_STATE(7181)] = 158326, - [SMALL_STATE(7182)] = 158335, - [SMALL_STATE(7183)] = 158346, - [SMALL_STATE(7184)] = 158357, - [SMALL_STATE(7185)] = 158366, - [SMALL_STATE(7186)] = 158375, - [SMALL_STATE(7187)] = 158386, - [SMALL_STATE(7188)] = 158395, - [SMALL_STATE(7189)] = 158404, - [SMALL_STATE(7190)] = 158413, - [SMALL_STATE(7191)] = 158424, - [SMALL_STATE(7192)] = 158433, - [SMALL_STATE(7193)] = 158442, - [SMALL_STATE(7194)] = 158451, - [SMALL_STATE(7195)] = 158462, - [SMALL_STATE(7196)] = 158473, - [SMALL_STATE(7197)] = 158484, - [SMALL_STATE(7198)] = 158493, - [SMALL_STATE(7199)] = 158502, - [SMALL_STATE(7200)] = 158511, - [SMALL_STATE(7201)] = 158520, - [SMALL_STATE(7202)] = 158529, - [SMALL_STATE(7203)] = 158540, - [SMALL_STATE(7204)] = 158549, - [SMALL_STATE(7205)] = 158558, - [SMALL_STATE(7206)] = 158569, - [SMALL_STATE(7207)] = 158578, - [SMALL_STATE(7208)] = 158587, - [SMALL_STATE(7209)] = 158598, - [SMALL_STATE(7210)] = 158609, - [SMALL_STATE(7211)] = 158620, - [SMALL_STATE(7212)] = 158631, - [SMALL_STATE(7213)] = 158640, - [SMALL_STATE(7214)] = 158649, - [SMALL_STATE(7215)] = 158660, - [SMALL_STATE(7216)] = 158669, - [SMALL_STATE(7217)] = 158678, - [SMALL_STATE(7218)] = 158689, - [SMALL_STATE(7219)] = 158698, - [SMALL_STATE(7220)] = 158707, - [SMALL_STATE(7221)] = 158718, - [SMALL_STATE(7222)] = 158729, - [SMALL_STATE(7223)] = 158738, - [SMALL_STATE(7224)] = 158747, - [SMALL_STATE(7225)] = 158756, - [SMALL_STATE(7226)] = 158767, - [SMALL_STATE(7227)] = 158778, - [SMALL_STATE(7228)] = 158787, - [SMALL_STATE(7229)] = 158798, - [SMALL_STATE(7230)] = 158807, - [SMALL_STATE(7231)] = 158816, - [SMALL_STATE(7232)] = 158825, - [SMALL_STATE(7233)] = 158836, - [SMALL_STATE(7234)] = 158845, - [SMALL_STATE(7235)] = 158854, - [SMALL_STATE(7236)] = 158865, - [SMALL_STATE(7237)] = 158876, - [SMALL_STATE(7238)] = 158887, - [SMALL_STATE(7239)] = 158898, - [SMALL_STATE(7240)] = 158907, - [SMALL_STATE(7241)] = 158918, - [SMALL_STATE(7242)] = 158929, - [SMALL_STATE(7243)] = 158940, - [SMALL_STATE(7244)] = 158951, - [SMALL_STATE(7245)] = 158962, - [SMALL_STATE(7246)] = 158973, - [SMALL_STATE(7247)] = 158982, - [SMALL_STATE(7248)] = 158993, - [SMALL_STATE(7249)] = 159004, - [SMALL_STATE(7250)] = 159015, - [SMALL_STATE(7251)] = 159026, - [SMALL_STATE(7252)] = 159037, - [SMALL_STATE(7253)] = 159046, - [SMALL_STATE(7254)] = 159057, - [SMALL_STATE(7255)] = 159068, - [SMALL_STATE(7256)] = 159079, - [SMALL_STATE(7257)] = 159088, - [SMALL_STATE(7258)] = 159099, - [SMALL_STATE(7259)] = 159110, - [SMALL_STATE(7260)] = 159121, - [SMALL_STATE(7261)] = 159132, - [SMALL_STATE(7262)] = 159143, - [SMALL_STATE(7263)] = 159154, - [SMALL_STATE(7264)] = 159165, - [SMALL_STATE(7265)] = 159174, - [SMALL_STATE(7266)] = 159185, - [SMALL_STATE(7267)] = 159196, - [SMALL_STATE(7268)] = 159205, - [SMALL_STATE(7269)] = 159216, - [SMALL_STATE(7270)] = 159227, - [SMALL_STATE(7271)] = 159236, - [SMALL_STATE(7272)] = 159247, - [SMALL_STATE(7273)] = 159258, - [SMALL_STATE(7274)] = 159269, - [SMALL_STATE(7275)] = 159280, - [SMALL_STATE(7276)] = 159291, - [SMALL_STATE(7277)] = 159302, - [SMALL_STATE(7278)] = 159313, - [SMALL_STATE(7279)] = 159322, - [SMALL_STATE(7280)] = 159333, - [SMALL_STATE(7281)] = 159344, - [SMALL_STATE(7282)] = 159353, - [SMALL_STATE(7283)] = 159364, - [SMALL_STATE(7284)] = 159375, - [SMALL_STATE(7285)] = 159386, - [SMALL_STATE(7286)] = 159397, - [SMALL_STATE(7287)] = 159408, - [SMALL_STATE(7288)] = 159419, - [SMALL_STATE(7289)] = 159430, - [SMALL_STATE(7290)] = 159441, - [SMALL_STATE(7291)] = 159452, - [SMALL_STATE(7292)] = 159463, - [SMALL_STATE(7293)] = 159474, - [SMALL_STATE(7294)] = 159483, - [SMALL_STATE(7295)] = 159494, - [SMALL_STATE(7296)] = 159505, - [SMALL_STATE(7297)] = 159514, - [SMALL_STATE(7298)] = 159525, - [SMALL_STATE(7299)] = 159536, - [SMALL_STATE(7300)] = 159545, - [SMALL_STATE(7301)] = 159556, - [SMALL_STATE(7302)] = 159567, - [SMALL_STATE(7303)] = 159578, - [SMALL_STATE(7304)] = 159589, - [SMALL_STATE(7305)] = 159600, - [SMALL_STATE(7306)] = 159611, - [SMALL_STATE(7307)] = 159620, - [SMALL_STATE(7308)] = 159631, - [SMALL_STATE(7309)] = 159642, - [SMALL_STATE(7310)] = 159653, - [SMALL_STATE(7311)] = 159662, - [SMALL_STATE(7312)] = 159673, - [SMALL_STATE(7313)] = 159684, - [SMALL_STATE(7314)] = 159695, - [SMALL_STATE(7315)] = 159706, - [SMALL_STATE(7316)] = 159717, - [SMALL_STATE(7317)] = 159728, - [SMALL_STATE(7318)] = 159737, - [SMALL_STATE(7319)] = 159746, - [SMALL_STATE(7320)] = 159755, - [SMALL_STATE(7321)] = 159764, - [SMALL_STATE(7322)] = 159775, - [SMALL_STATE(7323)] = 159784, - [SMALL_STATE(7324)] = 159793, - [SMALL_STATE(7325)] = 159802, - [SMALL_STATE(7326)] = 159811, - [SMALL_STATE(7327)] = 159820, - [SMALL_STATE(7328)] = 159829, - [SMALL_STATE(7329)] = 159838, - [SMALL_STATE(7330)] = 159849, - [SMALL_STATE(7331)] = 159858, - [SMALL_STATE(7332)] = 159869, - [SMALL_STATE(7333)] = 159878, - [SMALL_STATE(7334)] = 159887, - [SMALL_STATE(7335)] = 159896, - [SMALL_STATE(7336)] = 159905, - [SMALL_STATE(7337)] = 159916, - [SMALL_STATE(7338)] = 159925, - [SMALL_STATE(7339)] = 159936, - [SMALL_STATE(7340)] = 159945, - [SMALL_STATE(7341)] = 159954, - [SMALL_STATE(7342)] = 159965, - [SMALL_STATE(7343)] = 159976, - [SMALL_STATE(7344)] = 159985, - [SMALL_STATE(7345)] = 159996, - [SMALL_STATE(7346)] = 160007, - [SMALL_STATE(7347)] = 160016, - [SMALL_STATE(7348)] = 160025, - [SMALL_STATE(7349)] = 160034, - [SMALL_STATE(7350)] = 160045, - [SMALL_STATE(7351)] = 160056, - [SMALL_STATE(7352)] = 160065, - [SMALL_STATE(7353)] = 160076, - [SMALL_STATE(7354)] = 160085, - [SMALL_STATE(7355)] = 160096, - [SMALL_STATE(7356)] = 160105, - [SMALL_STATE(7357)] = 160114, - [SMALL_STATE(7358)] = 160123, - [SMALL_STATE(7359)] = 160132, - [SMALL_STATE(7360)] = 160143, - [SMALL_STATE(7361)] = 160154, - [SMALL_STATE(7362)] = 160165, - [SMALL_STATE(7363)] = 160174, - [SMALL_STATE(7364)] = 160185, - [SMALL_STATE(7365)] = 160194, - [SMALL_STATE(7366)] = 160203, - [SMALL_STATE(7367)] = 160212, - [SMALL_STATE(7368)] = 160221, - [SMALL_STATE(7369)] = 160232, - [SMALL_STATE(7370)] = 160241, - [SMALL_STATE(7371)] = 160252, - [SMALL_STATE(7372)] = 160261, - [SMALL_STATE(7373)] = 160270, - [SMALL_STATE(7374)] = 160279, - [SMALL_STATE(7375)] = 160288, - [SMALL_STATE(7376)] = 160297, - [SMALL_STATE(7377)] = 160306, - [SMALL_STATE(7378)] = 160315, - [SMALL_STATE(7379)] = 160324, - [SMALL_STATE(7380)] = 160335, - [SMALL_STATE(7381)] = 160344, - [SMALL_STATE(7382)] = 160353, - [SMALL_STATE(7383)] = 160362, - [SMALL_STATE(7384)] = 160371, - [SMALL_STATE(7385)] = 160382, - [SMALL_STATE(7386)] = 160391, - [SMALL_STATE(7387)] = 160402, - [SMALL_STATE(7388)] = 160411, - [SMALL_STATE(7389)] = 160422, - [SMALL_STATE(7390)] = 160431, - [SMALL_STATE(7391)] = 160440, - [SMALL_STATE(7392)] = 160449, - [SMALL_STATE(7393)] = 160458, - [SMALL_STATE(7394)] = 160467, - [SMALL_STATE(7395)] = 160476, - [SMALL_STATE(7396)] = 160485, - [SMALL_STATE(7397)] = 160496, - [SMALL_STATE(7398)] = 160505, - [SMALL_STATE(7399)] = 160514, - [SMALL_STATE(7400)] = 160523, - [SMALL_STATE(7401)] = 160532, - [SMALL_STATE(7402)] = 160541, - [SMALL_STATE(7403)] = 160550, - [SMALL_STATE(7404)] = 160559, - [SMALL_STATE(7405)] = 160568, - [SMALL_STATE(7406)] = 160577, - [SMALL_STATE(7407)] = 160586, - [SMALL_STATE(7408)] = 160595, - [SMALL_STATE(7409)] = 160604, - [SMALL_STATE(7410)] = 160613, - [SMALL_STATE(7411)] = 160622, - [SMALL_STATE(7412)] = 160631, - [SMALL_STATE(7413)] = 160640, - [SMALL_STATE(7414)] = 160649, - [SMALL_STATE(7415)] = 160660, - [SMALL_STATE(7416)] = 160669, - [SMALL_STATE(7417)] = 160678, - [SMALL_STATE(7418)] = 160687, - [SMALL_STATE(7419)] = 160696, - [SMALL_STATE(7420)] = 160705, - [SMALL_STATE(7421)] = 160714, - [SMALL_STATE(7422)] = 160725, - [SMALL_STATE(7423)] = 160736, - [SMALL_STATE(7424)] = 160745, - [SMALL_STATE(7425)] = 160754, - [SMALL_STATE(7426)] = 160765, - [SMALL_STATE(7427)] = 160774, - [SMALL_STATE(7428)] = 160783, - [SMALL_STATE(7429)] = 160792, - [SMALL_STATE(7430)] = 160803, - [SMALL_STATE(7431)] = 160814, - [SMALL_STATE(7432)] = 160823, - [SMALL_STATE(7433)] = 160834, - [SMALL_STATE(7434)] = 160843, - [SMALL_STATE(7435)] = 160854, - [SMALL_STATE(7436)] = 160863, - [SMALL_STATE(7437)] = 160872, - [SMALL_STATE(7438)] = 160881, - [SMALL_STATE(7439)] = 160890, - [SMALL_STATE(7440)] = 160899, - [SMALL_STATE(7441)] = 160908, - [SMALL_STATE(7442)] = 160919, - [SMALL_STATE(7443)] = 160930, - [SMALL_STATE(7444)] = 160941, - [SMALL_STATE(7445)] = 160950, - [SMALL_STATE(7446)] = 160959, - [SMALL_STATE(7447)] = 160968, - [SMALL_STATE(7448)] = 160977, - [SMALL_STATE(7449)] = 160988, - [SMALL_STATE(7450)] = 160997, - [SMALL_STATE(7451)] = 161006, - [SMALL_STATE(7452)] = 161015, - [SMALL_STATE(7453)] = 161024, - [SMALL_STATE(7454)] = 161035, - [SMALL_STATE(7455)] = 161044, - [SMALL_STATE(7456)] = 161052, - [SMALL_STATE(7457)] = 161060, - [SMALL_STATE(7458)] = 161068, - [SMALL_STATE(7459)] = 161076, - [SMALL_STATE(7460)] = 161084, - [SMALL_STATE(7461)] = 161092, - [SMALL_STATE(7462)] = 161100, - [SMALL_STATE(7463)] = 161108, - [SMALL_STATE(7464)] = 161116, - [SMALL_STATE(7465)] = 161124, - [SMALL_STATE(7466)] = 161132, - [SMALL_STATE(7467)] = 161140, - [SMALL_STATE(7468)] = 161148, - [SMALL_STATE(7469)] = 161156, - [SMALL_STATE(7470)] = 161164, - [SMALL_STATE(7471)] = 161172, - [SMALL_STATE(7472)] = 161180, - [SMALL_STATE(7473)] = 161188, - [SMALL_STATE(7474)] = 161196, - [SMALL_STATE(7475)] = 161204, - [SMALL_STATE(7476)] = 161212, - [SMALL_STATE(7477)] = 161220, - [SMALL_STATE(7478)] = 161228, - [SMALL_STATE(7479)] = 161236, - [SMALL_STATE(7480)] = 161244, - [SMALL_STATE(7481)] = 161252, - [SMALL_STATE(7482)] = 161260, - [SMALL_STATE(7483)] = 161268, - [SMALL_STATE(7484)] = 161276, - [SMALL_STATE(7485)] = 161284, - [SMALL_STATE(7486)] = 161292, - [SMALL_STATE(7487)] = 161300, - [SMALL_STATE(7488)] = 161308, - [SMALL_STATE(7489)] = 161316, - [SMALL_STATE(7490)] = 161324, - [SMALL_STATE(7491)] = 161332, - [SMALL_STATE(7492)] = 161340, - [SMALL_STATE(7493)] = 161348, - [SMALL_STATE(7494)] = 161356, - [SMALL_STATE(7495)] = 161364, - [SMALL_STATE(7496)] = 161372, - [SMALL_STATE(7497)] = 161380, - [SMALL_STATE(7498)] = 161388, - [SMALL_STATE(7499)] = 161396, - [SMALL_STATE(7500)] = 161404, - [SMALL_STATE(7501)] = 161412, - [SMALL_STATE(7502)] = 161420, - [SMALL_STATE(7503)] = 161428, - [SMALL_STATE(7504)] = 161436, - [SMALL_STATE(7505)] = 161444, - [SMALL_STATE(7506)] = 161452, - [SMALL_STATE(7507)] = 161460, - [SMALL_STATE(7508)] = 161468, - [SMALL_STATE(7509)] = 161476, - [SMALL_STATE(7510)] = 161484, - [SMALL_STATE(7511)] = 161492, - [SMALL_STATE(7512)] = 161500, - [SMALL_STATE(7513)] = 161508, - [SMALL_STATE(7514)] = 161516, - [SMALL_STATE(7515)] = 161524, - [SMALL_STATE(7516)] = 161532, - [SMALL_STATE(7517)] = 161540, - [SMALL_STATE(7518)] = 161548, - [SMALL_STATE(7519)] = 161556, - [SMALL_STATE(7520)] = 161564, - [SMALL_STATE(7521)] = 161572, - [SMALL_STATE(7522)] = 161580, - [SMALL_STATE(7523)] = 161588, - [SMALL_STATE(7524)] = 161596, - [SMALL_STATE(7525)] = 161604, - [SMALL_STATE(7526)] = 161612, - [SMALL_STATE(7527)] = 161620, - [SMALL_STATE(7528)] = 161628, - [SMALL_STATE(7529)] = 161636, - [SMALL_STATE(7530)] = 161644, - [SMALL_STATE(7531)] = 161652, - [SMALL_STATE(7532)] = 161660, - [SMALL_STATE(7533)] = 161668, - [SMALL_STATE(7534)] = 161676, - [SMALL_STATE(7535)] = 161684, - [SMALL_STATE(7536)] = 161692, - [SMALL_STATE(7537)] = 161700, - [SMALL_STATE(7538)] = 161708, - [SMALL_STATE(7539)] = 161716, - [SMALL_STATE(7540)] = 161724, - [SMALL_STATE(7541)] = 161732, - [SMALL_STATE(7542)] = 161740, - [SMALL_STATE(7543)] = 161748, - [SMALL_STATE(7544)] = 161756, - [SMALL_STATE(7545)] = 161764, - [SMALL_STATE(7546)] = 161772, - [SMALL_STATE(7547)] = 161780, - [SMALL_STATE(7548)] = 161788, - [SMALL_STATE(7549)] = 161796, - [SMALL_STATE(7550)] = 161804, - [SMALL_STATE(7551)] = 161812, - [SMALL_STATE(7552)] = 161820, - [SMALL_STATE(7553)] = 161828, - [SMALL_STATE(7554)] = 161836, - [SMALL_STATE(7555)] = 161844, - [SMALL_STATE(7556)] = 161852, - [SMALL_STATE(7557)] = 161860, - [SMALL_STATE(7558)] = 161868, - [SMALL_STATE(7559)] = 161876, - [SMALL_STATE(7560)] = 161884, - [SMALL_STATE(7561)] = 161892, - [SMALL_STATE(7562)] = 161900, - [SMALL_STATE(7563)] = 161908, - [SMALL_STATE(7564)] = 161916, - [SMALL_STATE(7565)] = 161924, - [SMALL_STATE(7566)] = 161932, - [SMALL_STATE(7567)] = 161940, - [SMALL_STATE(7568)] = 161948, - [SMALL_STATE(7569)] = 161956, - [SMALL_STATE(7570)] = 161964, - [SMALL_STATE(7571)] = 161972, - [SMALL_STATE(7572)] = 161980, - [SMALL_STATE(7573)] = 161988, - [SMALL_STATE(7574)] = 161996, - [SMALL_STATE(7575)] = 162004, - [SMALL_STATE(7576)] = 162012, - [SMALL_STATE(7577)] = 162020, - [SMALL_STATE(7578)] = 162028, - [SMALL_STATE(7579)] = 162036, - [SMALL_STATE(7580)] = 162044, - [SMALL_STATE(7581)] = 162052, - [SMALL_STATE(7582)] = 162060, - [SMALL_STATE(7583)] = 162068, - [SMALL_STATE(7584)] = 162076, - [SMALL_STATE(7585)] = 162084, - [SMALL_STATE(7586)] = 162092, - [SMALL_STATE(7587)] = 162100, - [SMALL_STATE(7588)] = 162108, - [SMALL_STATE(7589)] = 162116, - [SMALL_STATE(7590)] = 162124, - [SMALL_STATE(7591)] = 162132, - [SMALL_STATE(7592)] = 162140, - [SMALL_STATE(7593)] = 162148, - [SMALL_STATE(7594)] = 162156, - [SMALL_STATE(7595)] = 162164, - [SMALL_STATE(7596)] = 162172, - [SMALL_STATE(7597)] = 162180, - [SMALL_STATE(7598)] = 162188, - [SMALL_STATE(7599)] = 162196, - [SMALL_STATE(7600)] = 162204, - [SMALL_STATE(7601)] = 162212, - [SMALL_STATE(7602)] = 162220, - [SMALL_STATE(7603)] = 162228, - [SMALL_STATE(7604)] = 162236, - [SMALL_STATE(7605)] = 162244, - [SMALL_STATE(7606)] = 162252, - [SMALL_STATE(7607)] = 162260, - [SMALL_STATE(7608)] = 162268, - [SMALL_STATE(7609)] = 162276, - [SMALL_STATE(7610)] = 162284, - [SMALL_STATE(7611)] = 162292, - [SMALL_STATE(7612)] = 162300, - [SMALL_STATE(7613)] = 162308, - [SMALL_STATE(7614)] = 162316, - [SMALL_STATE(7615)] = 162324, - [SMALL_STATE(7616)] = 162332, - [SMALL_STATE(7617)] = 162340, - [SMALL_STATE(7618)] = 162348, - [SMALL_STATE(7619)] = 162356, - [SMALL_STATE(7620)] = 162364, - [SMALL_STATE(7621)] = 162372, - [SMALL_STATE(7622)] = 162380, - [SMALL_STATE(7623)] = 162388, - [SMALL_STATE(7624)] = 162396, - [SMALL_STATE(7625)] = 162404, - [SMALL_STATE(7626)] = 162412, - [SMALL_STATE(7627)] = 162420, - [SMALL_STATE(7628)] = 162428, - [SMALL_STATE(7629)] = 162436, - [SMALL_STATE(7630)] = 162444, - [SMALL_STATE(7631)] = 162452, - [SMALL_STATE(7632)] = 162460, - [SMALL_STATE(7633)] = 162468, - [SMALL_STATE(7634)] = 162476, - [SMALL_STATE(7635)] = 162484, - [SMALL_STATE(7636)] = 162492, - [SMALL_STATE(7637)] = 162500, - [SMALL_STATE(7638)] = 162508, - [SMALL_STATE(7639)] = 162516, - [SMALL_STATE(7640)] = 162524, - [SMALL_STATE(7641)] = 162532, - [SMALL_STATE(7642)] = 162540, - [SMALL_STATE(7643)] = 162548, - [SMALL_STATE(7644)] = 162556, - [SMALL_STATE(7645)] = 162564, - [SMALL_STATE(7646)] = 162572, - [SMALL_STATE(7647)] = 162580, - [SMALL_STATE(7648)] = 162588, - [SMALL_STATE(7649)] = 162596, - [SMALL_STATE(7650)] = 162604, - [SMALL_STATE(7651)] = 162612, - [SMALL_STATE(7652)] = 162620, - [SMALL_STATE(7653)] = 162628, - [SMALL_STATE(7654)] = 162636, - [SMALL_STATE(7655)] = 162644, - [SMALL_STATE(7656)] = 162652, - [SMALL_STATE(7657)] = 162660, - [SMALL_STATE(7658)] = 162668, - [SMALL_STATE(7659)] = 162676, - [SMALL_STATE(7660)] = 162684, - [SMALL_STATE(7661)] = 162692, - [SMALL_STATE(7662)] = 162700, - [SMALL_STATE(7663)] = 162708, - [SMALL_STATE(7664)] = 162716, - [SMALL_STATE(7665)] = 162724, - [SMALL_STATE(7666)] = 162732, - [SMALL_STATE(7667)] = 162740, - [SMALL_STATE(7668)] = 162748, - [SMALL_STATE(7669)] = 162756, - [SMALL_STATE(7670)] = 162764, - [SMALL_STATE(7671)] = 162772, - [SMALL_STATE(7672)] = 162780, - [SMALL_STATE(7673)] = 162788, - [SMALL_STATE(7674)] = 162796, - [SMALL_STATE(7675)] = 162804, - [SMALL_STATE(7676)] = 162812, - [SMALL_STATE(7677)] = 162820, - [SMALL_STATE(7678)] = 162828, - [SMALL_STATE(7679)] = 162836, - [SMALL_STATE(7680)] = 162844, - [SMALL_STATE(7681)] = 162852, - [SMALL_STATE(7682)] = 162860, - [SMALL_STATE(7683)] = 162868, - [SMALL_STATE(7684)] = 162876, - [SMALL_STATE(7685)] = 162884, - [SMALL_STATE(7686)] = 162892, - [SMALL_STATE(7687)] = 162900, - [SMALL_STATE(7688)] = 162908, - [SMALL_STATE(7689)] = 162916, - [SMALL_STATE(7690)] = 162924, - [SMALL_STATE(7691)] = 162932, - [SMALL_STATE(7692)] = 162940, - [SMALL_STATE(7693)] = 162948, - [SMALL_STATE(7694)] = 162956, - [SMALL_STATE(7695)] = 162964, - [SMALL_STATE(7696)] = 162972, - [SMALL_STATE(7697)] = 162980, - [SMALL_STATE(7698)] = 162988, - [SMALL_STATE(7699)] = 162996, - [SMALL_STATE(7700)] = 163004, - [SMALL_STATE(7701)] = 163012, - [SMALL_STATE(7702)] = 163020, - [SMALL_STATE(7703)] = 163028, - [SMALL_STATE(7704)] = 163036, - [SMALL_STATE(7705)] = 163044, - [SMALL_STATE(7706)] = 163052, - [SMALL_STATE(7707)] = 163060, - [SMALL_STATE(7708)] = 163068, - [SMALL_STATE(7709)] = 163076, - [SMALL_STATE(7710)] = 163084, - [SMALL_STATE(7711)] = 163092, - [SMALL_STATE(7712)] = 163100, - [SMALL_STATE(7713)] = 163108, - [SMALL_STATE(7714)] = 163116, - [SMALL_STATE(7715)] = 163124, - [SMALL_STATE(7716)] = 163132, - [SMALL_STATE(7717)] = 163140, - [SMALL_STATE(7718)] = 163148, - [SMALL_STATE(7719)] = 163156, - [SMALL_STATE(7720)] = 163164, - [SMALL_STATE(7721)] = 163172, - [SMALL_STATE(7722)] = 163180, - [SMALL_STATE(7723)] = 163188, - [SMALL_STATE(7724)] = 163196, - [SMALL_STATE(7725)] = 163204, - [SMALL_STATE(7726)] = 163212, - [SMALL_STATE(7727)] = 163220, - [SMALL_STATE(7728)] = 163228, - [SMALL_STATE(7729)] = 163236, - [SMALL_STATE(7730)] = 163244, - [SMALL_STATE(7731)] = 163252, - [SMALL_STATE(7732)] = 163260, - [SMALL_STATE(7733)] = 163268, - [SMALL_STATE(7734)] = 163276, - [SMALL_STATE(7735)] = 163284, - [SMALL_STATE(7736)] = 163292, - [SMALL_STATE(7737)] = 163300, - [SMALL_STATE(7738)] = 163308, - [SMALL_STATE(7739)] = 163316, - [SMALL_STATE(7740)] = 163324, - [SMALL_STATE(7741)] = 163332, - [SMALL_STATE(7742)] = 163340, - [SMALL_STATE(7743)] = 163348, - [SMALL_STATE(7744)] = 163356, - [SMALL_STATE(7745)] = 163364, - [SMALL_STATE(7746)] = 163372, - [SMALL_STATE(7747)] = 163380, - [SMALL_STATE(7748)] = 163388, - [SMALL_STATE(7749)] = 163396, - [SMALL_STATE(7750)] = 163404, - [SMALL_STATE(7751)] = 163412, - [SMALL_STATE(7752)] = 163420, - [SMALL_STATE(7753)] = 163428, - [SMALL_STATE(7754)] = 163436, - [SMALL_STATE(7755)] = 163444, - [SMALL_STATE(7756)] = 163452, - [SMALL_STATE(7757)] = 163460, - [SMALL_STATE(7758)] = 163468, - [SMALL_STATE(7759)] = 163476, - [SMALL_STATE(7760)] = 163484, - [SMALL_STATE(7761)] = 163492, - [SMALL_STATE(7762)] = 163500, - [SMALL_STATE(7763)] = 163508, - [SMALL_STATE(7764)] = 163516, - [SMALL_STATE(7765)] = 163524, - [SMALL_STATE(7766)] = 163532, - [SMALL_STATE(7767)] = 163540, - [SMALL_STATE(7768)] = 163548, - [SMALL_STATE(7769)] = 163556, - [SMALL_STATE(7770)] = 163564, - [SMALL_STATE(7771)] = 163572, - [SMALL_STATE(7772)] = 163580, - [SMALL_STATE(7773)] = 163588, - [SMALL_STATE(7774)] = 163596, - [SMALL_STATE(7775)] = 163604, - [SMALL_STATE(7776)] = 163612, - [SMALL_STATE(7777)] = 163620, - [SMALL_STATE(7778)] = 163628, - [SMALL_STATE(7779)] = 163636, - [SMALL_STATE(7780)] = 163644, - [SMALL_STATE(7781)] = 163652, - [SMALL_STATE(7782)] = 163660, - [SMALL_STATE(7783)] = 163668, - [SMALL_STATE(7784)] = 163676, - [SMALL_STATE(7785)] = 163684, - [SMALL_STATE(7786)] = 163692, - [SMALL_STATE(7787)] = 163700, - [SMALL_STATE(7788)] = 163708, - [SMALL_STATE(7789)] = 163716, - [SMALL_STATE(7790)] = 163724, - [SMALL_STATE(7791)] = 163732, - [SMALL_STATE(7792)] = 163740, - [SMALL_STATE(7793)] = 163748, - [SMALL_STATE(7794)] = 163756, - [SMALL_STATE(7795)] = 163764, - [SMALL_STATE(7796)] = 163772, - [SMALL_STATE(7797)] = 163780, - [SMALL_STATE(7798)] = 163788, - [SMALL_STATE(7799)] = 163796, - [SMALL_STATE(7800)] = 163804, - [SMALL_STATE(7801)] = 163812, - [SMALL_STATE(7802)] = 163820, - [SMALL_STATE(7803)] = 163828, - [SMALL_STATE(7804)] = 163836, - [SMALL_STATE(7805)] = 163844, - [SMALL_STATE(7806)] = 163852, - [SMALL_STATE(7807)] = 163860, - [SMALL_STATE(7808)] = 163868, - [SMALL_STATE(7809)] = 163876, - [SMALL_STATE(7810)] = 163884, - [SMALL_STATE(7811)] = 163892, - [SMALL_STATE(7812)] = 163900, - [SMALL_STATE(7813)] = 163908, - [SMALL_STATE(7814)] = 163916, - [SMALL_STATE(7815)] = 163924, - [SMALL_STATE(7816)] = 163932, - [SMALL_STATE(7817)] = 163940, - [SMALL_STATE(7818)] = 163948, - [SMALL_STATE(7819)] = 163956, - [SMALL_STATE(7820)] = 163964, - [SMALL_STATE(7821)] = 163972, - [SMALL_STATE(7822)] = 163980, - [SMALL_STATE(7823)] = 163988, - [SMALL_STATE(7824)] = 163996, - [SMALL_STATE(7825)] = 164004, - [SMALL_STATE(7826)] = 164012, - [SMALL_STATE(7827)] = 164020, - [SMALL_STATE(7828)] = 164028, - [SMALL_STATE(7829)] = 164036, - [SMALL_STATE(7830)] = 164044, - [SMALL_STATE(7831)] = 164052, - [SMALL_STATE(7832)] = 164060, - [SMALL_STATE(7833)] = 164068, - [SMALL_STATE(7834)] = 164076, - [SMALL_STATE(7835)] = 164084, - [SMALL_STATE(7836)] = 164092, - [SMALL_STATE(7837)] = 164100, - [SMALL_STATE(7838)] = 164108, - [SMALL_STATE(7839)] = 164116, - [SMALL_STATE(7840)] = 164124, - [SMALL_STATE(7841)] = 164132, - [SMALL_STATE(7842)] = 164140, - [SMALL_STATE(7843)] = 164148, - [SMALL_STATE(7844)] = 164156, - [SMALL_STATE(7845)] = 164164, - [SMALL_STATE(7846)] = 164172, - [SMALL_STATE(7847)] = 164180, - [SMALL_STATE(7848)] = 164188, - [SMALL_STATE(7849)] = 164196, - [SMALL_STATE(7850)] = 164204, - [SMALL_STATE(7851)] = 164212, - [SMALL_STATE(7852)] = 164220, - [SMALL_STATE(7853)] = 164228, - [SMALL_STATE(7854)] = 164236, - [SMALL_STATE(7855)] = 164244, - [SMALL_STATE(7856)] = 164252, - [SMALL_STATE(7857)] = 164260, - [SMALL_STATE(7858)] = 164268, - [SMALL_STATE(7859)] = 164276, - [SMALL_STATE(7860)] = 164284, - [SMALL_STATE(7861)] = 164292, - [SMALL_STATE(7862)] = 164300, - [SMALL_STATE(7863)] = 164308, - [SMALL_STATE(7864)] = 164316, - [SMALL_STATE(7865)] = 164324, - [SMALL_STATE(7866)] = 164332, - [SMALL_STATE(7867)] = 164340, - [SMALL_STATE(7868)] = 164348, - [SMALL_STATE(7869)] = 164356, - [SMALL_STATE(7870)] = 164364, - [SMALL_STATE(7871)] = 164372, - [SMALL_STATE(7872)] = 164380, - [SMALL_STATE(7873)] = 164388, - [SMALL_STATE(7874)] = 164396, - [SMALL_STATE(7875)] = 164404, - [SMALL_STATE(7876)] = 164412, - [SMALL_STATE(7877)] = 164420, - [SMALL_STATE(7878)] = 164428, - [SMALL_STATE(7879)] = 164436, - [SMALL_STATE(7880)] = 164444, - [SMALL_STATE(7881)] = 164452, - [SMALL_STATE(7882)] = 164460, - [SMALL_STATE(7883)] = 164468, - [SMALL_STATE(7884)] = 164476, - [SMALL_STATE(7885)] = 164484, - [SMALL_STATE(7886)] = 164492, - [SMALL_STATE(7887)] = 164500, - [SMALL_STATE(7888)] = 164508, - [SMALL_STATE(7889)] = 164516, - [SMALL_STATE(7890)] = 164524, - [SMALL_STATE(7891)] = 164532, - [SMALL_STATE(7892)] = 164540, - [SMALL_STATE(7893)] = 164548, - [SMALL_STATE(7894)] = 164556, - [SMALL_STATE(7895)] = 164564, - [SMALL_STATE(7896)] = 164572, - [SMALL_STATE(7897)] = 164580, - [SMALL_STATE(7898)] = 164588, - [SMALL_STATE(7899)] = 164596, - [SMALL_STATE(7900)] = 164604, - [SMALL_STATE(7901)] = 164612, - [SMALL_STATE(7902)] = 164620, - [SMALL_STATE(7903)] = 164628, - [SMALL_STATE(7904)] = 164636, - [SMALL_STATE(7905)] = 164644, - [SMALL_STATE(7906)] = 164652, - [SMALL_STATE(7907)] = 164660, - [SMALL_STATE(7908)] = 164668, - [SMALL_STATE(7909)] = 164676, - [SMALL_STATE(7910)] = 164684, - [SMALL_STATE(7911)] = 164692, - [SMALL_STATE(7912)] = 164700, - [SMALL_STATE(7913)] = 164708, - [SMALL_STATE(7914)] = 164716, - [SMALL_STATE(7915)] = 164724, - [SMALL_STATE(7916)] = 164732, - [SMALL_STATE(7917)] = 164740, - [SMALL_STATE(7918)] = 164748, - [SMALL_STATE(7919)] = 164756, - [SMALL_STATE(7920)] = 164764, - [SMALL_STATE(7921)] = 164772, - [SMALL_STATE(7922)] = 164780, - [SMALL_STATE(7923)] = 164788, - [SMALL_STATE(7924)] = 164796, - [SMALL_STATE(7925)] = 164804, - [SMALL_STATE(7926)] = 164812, - [SMALL_STATE(7927)] = 164820, - [SMALL_STATE(7928)] = 164828, - [SMALL_STATE(7929)] = 164836, - [SMALL_STATE(7930)] = 164844, - [SMALL_STATE(7931)] = 164852, - [SMALL_STATE(7932)] = 164860, - [SMALL_STATE(7933)] = 164868, - [SMALL_STATE(7934)] = 164876, - [SMALL_STATE(7935)] = 164884, - [SMALL_STATE(7936)] = 164892, - [SMALL_STATE(7937)] = 164900, - [SMALL_STATE(7938)] = 164908, - [SMALL_STATE(7939)] = 164916, - [SMALL_STATE(7940)] = 164924, - [SMALL_STATE(7941)] = 164932, - [SMALL_STATE(7942)] = 164940, - [SMALL_STATE(7943)] = 164948, - [SMALL_STATE(7944)] = 164956, - [SMALL_STATE(7945)] = 164964, - [SMALL_STATE(7946)] = 164972, - [SMALL_STATE(7947)] = 164980, - [SMALL_STATE(7948)] = 164988, - [SMALL_STATE(7949)] = 164996, - [SMALL_STATE(7950)] = 165004, - [SMALL_STATE(7951)] = 165012, - [SMALL_STATE(7952)] = 165020, - [SMALL_STATE(7953)] = 165028, - [SMALL_STATE(7954)] = 165036, - [SMALL_STATE(7955)] = 165044, - [SMALL_STATE(7956)] = 165052, - [SMALL_STATE(7957)] = 165060, - [SMALL_STATE(7958)] = 165068, - [SMALL_STATE(7959)] = 165076, - [SMALL_STATE(7960)] = 165084, - [SMALL_STATE(7961)] = 165092, - [SMALL_STATE(7962)] = 165100, - [SMALL_STATE(7963)] = 165108, - [SMALL_STATE(7964)] = 165116, - [SMALL_STATE(7965)] = 165124, - [SMALL_STATE(7966)] = 165132, - [SMALL_STATE(7967)] = 165140, - [SMALL_STATE(7968)] = 165148, - [SMALL_STATE(7969)] = 165156, - [SMALL_STATE(7970)] = 165164, - [SMALL_STATE(7971)] = 165172, - [SMALL_STATE(7972)] = 165180, - [SMALL_STATE(7973)] = 165188, - [SMALL_STATE(7974)] = 165196, - [SMALL_STATE(7975)] = 165204, - [SMALL_STATE(7976)] = 165212, - [SMALL_STATE(7977)] = 165220, - [SMALL_STATE(7978)] = 165228, - [SMALL_STATE(7979)] = 165236, - [SMALL_STATE(7980)] = 165244, - [SMALL_STATE(7981)] = 165252, - [SMALL_STATE(7982)] = 165260, - [SMALL_STATE(7983)] = 165268, - [SMALL_STATE(7984)] = 165276, - [SMALL_STATE(7985)] = 165284, - [SMALL_STATE(7986)] = 165292, - [SMALL_STATE(7987)] = 165300, - [SMALL_STATE(7988)] = 165308, - [SMALL_STATE(7989)] = 165316, - [SMALL_STATE(7990)] = 165324, - [SMALL_STATE(7991)] = 165332, - [SMALL_STATE(7992)] = 165340, - [SMALL_STATE(7993)] = 165348, - [SMALL_STATE(7994)] = 165356, - [SMALL_STATE(7995)] = 165364, - [SMALL_STATE(7996)] = 165372, - [SMALL_STATE(7997)] = 165380, - [SMALL_STATE(7998)] = 165388, - [SMALL_STATE(7999)] = 165396, - [SMALL_STATE(8000)] = 165404, - [SMALL_STATE(8001)] = 165412, - [SMALL_STATE(8002)] = 165420, - [SMALL_STATE(8003)] = 165428, - [SMALL_STATE(8004)] = 165436, - [SMALL_STATE(8005)] = 165444, - [SMALL_STATE(8006)] = 165452, - [SMALL_STATE(8007)] = 165460, - [SMALL_STATE(8008)] = 165468, - [SMALL_STATE(8009)] = 165476, - [SMALL_STATE(8010)] = 165484, - [SMALL_STATE(8011)] = 165492, - [SMALL_STATE(8012)] = 165500, - [SMALL_STATE(8013)] = 165508, - [SMALL_STATE(8014)] = 165516, - [SMALL_STATE(8015)] = 165524, - [SMALL_STATE(8016)] = 165532, - [SMALL_STATE(8017)] = 165540, - [SMALL_STATE(8018)] = 165548, - [SMALL_STATE(8019)] = 165556, - [SMALL_STATE(8020)] = 165564, - [SMALL_STATE(8021)] = 165572, - [SMALL_STATE(8022)] = 165580, - [SMALL_STATE(8023)] = 165588, - [SMALL_STATE(8024)] = 165596, - [SMALL_STATE(8025)] = 165604, - [SMALL_STATE(8026)] = 165612, - [SMALL_STATE(8027)] = 165620, - [SMALL_STATE(8028)] = 165628, - [SMALL_STATE(8029)] = 165636, - [SMALL_STATE(8030)] = 165644, - [SMALL_STATE(8031)] = 165652, - [SMALL_STATE(8032)] = 165660, - [SMALL_STATE(8033)] = 165668, - [SMALL_STATE(8034)] = 165676, - [SMALL_STATE(8035)] = 165684, - [SMALL_STATE(8036)] = 165692, - [SMALL_STATE(8037)] = 165700, - [SMALL_STATE(8038)] = 165708, - [SMALL_STATE(8039)] = 165716, - [SMALL_STATE(8040)] = 165724, - [SMALL_STATE(8041)] = 165732, - [SMALL_STATE(8042)] = 165740, - [SMALL_STATE(8043)] = 165748, - [SMALL_STATE(8044)] = 165756, - [SMALL_STATE(8045)] = 165764, - [SMALL_STATE(8046)] = 165772, - [SMALL_STATE(8047)] = 165780, - [SMALL_STATE(8048)] = 165788, - [SMALL_STATE(8049)] = 165796, - [SMALL_STATE(8050)] = 165804, - [SMALL_STATE(8051)] = 165812, - [SMALL_STATE(8052)] = 165820, - [SMALL_STATE(8053)] = 165828, - [SMALL_STATE(8054)] = 165836, - [SMALL_STATE(8055)] = 165844, - [SMALL_STATE(8056)] = 165852, - [SMALL_STATE(8057)] = 165860, - [SMALL_STATE(8058)] = 165868, - [SMALL_STATE(8059)] = 165876, - [SMALL_STATE(8060)] = 165884, - [SMALL_STATE(8061)] = 165892, - [SMALL_STATE(8062)] = 165900, - [SMALL_STATE(8063)] = 165908, - [SMALL_STATE(8064)] = 165916, - [SMALL_STATE(8065)] = 165924, - [SMALL_STATE(8066)] = 165932, - [SMALL_STATE(8067)] = 165940, - [SMALL_STATE(8068)] = 165948, - [SMALL_STATE(8069)] = 165956, - [SMALL_STATE(8070)] = 165964, - [SMALL_STATE(8071)] = 165972, - [SMALL_STATE(8072)] = 165980, - [SMALL_STATE(8073)] = 165988, - [SMALL_STATE(8074)] = 165996, - [SMALL_STATE(8075)] = 166004, - [SMALL_STATE(8076)] = 166012, - [SMALL_STATE(8077)] = 166020, - [SMALL_STATE(8078)] = 166028, - [SMALL_STATE(8079)] = 166036, - [SMALL_STATE(8080)] = 166044, - [SMALL_STATE(8081)] = 166052, - [SMALL_STATE(8082)] = 166060, - [SMALL_STATE(8083)] = 166068, - [SMALL_STATE(8084)] = 166076, - [SMALL_STATE(8085)] = 166084, - [SMALL_STATE(8086)] = 166092, - [SMALL_STATE(8087)] = 166100, - [SMALL_STATE(8088)] = 166108, - [SMALL_STATE(8089)] = 166116, - [SMALL_STATE(8090)] = 166124, - [SMALL_STATE(8091)] = 166132, - [SMALL_STATE(8092)] = 166140, - [SMALL_STATE(8093)] = 166148, - [SMALL_STATE(8094)] = 166156, - [SMALL_STATE(8095)] = 166164, - [SMALL_STATE(8096)] = 166172, - [SMALL_STATE(8097)] = 166180, - [SMALL_STATE(8098)] = 166188, - [SMALL_STATE(8099)] = 166196, - [SMALL_STATE(8100)] = 166204, - [SMALL_STATE(8101)] = 166212, - [SMALL_STATE(8102)] = 166220, - [SMALL_STATE(8103)] = 166228, - [SMALL_STATE(8104)] = 166236, - [SMALL_STATE(8105)] = 166244, - [SMALL_STATE(8106)] = 166252, - [SMALL_STATE(8107)] = 166260, - [SMALL_STATE(8108)] = 166268, - [SMALL_STATE(8109)] = 166276, - [SMALL_STATE(8110)] = 166284, - [SMALL_STATE(8111)] = 166292, - [SMALL_STATE(8112)] = 166300, - [SMALL_STATE(8113)] = 166308, - [SMALL_STATE(8114)] = 166316, - [SMALL_STATE(8115)] = 166324, - [SMALL_STATE(8116)] = 166332, - [SMALL_STATE(8117)] = 166340, - [SMALL_STATE(8118)] = 166348, - [SMALL_STATE(8119)] = 166356, - [SMALL_STATE(8120)] = 166364, - [SMALL_STATE(8121)] = 166372, - [SMALL_STATE(8122)] = 166380, - [SMALL_STATE(8123)] = 166388, - [SMALL_STATE(8124)] = 166396, - [SMALL_STATE(8125)] = 166404, - [SMALL_STATE(8126)] = 166412, - [SMALL_STATE(8127)] = 166420, - [SMALL_STATE(8128)] = 166428, - [SMALL_STATE(8129)] = 166436, - [SMALL_STATE(8130)] = 166444, - [SMALL_STATE(8131)] = 166452, - [SMALL_STATE(8132)] = 166460, - [SMALL_STATE(8133)] = 166468, - [SMALL_STATE(8134)] = 166476, - [SMALL_STATE(8135)] = 166484, - [SMALL_STATE(8136)] = 166492, - [SMALL_STATE(8137)] = 166500, - [SMALL_STATE(8138)] = 166508, - [SMALL_STATE(8139)] = 166516, - [SMALL_STATE(8140)] = 166524, - [SMALL_STATE(8141)] = 166532, - [SMALL_STATE(8142)] = 166540, - [SMALL_STATE(8143)] = 166548, - [SMALL_STATE(8144)] = 166556, - [SMALL_STATE(8145)] = 166564, - [SMALL_STATE(8146)] = 166572, - [SMALL_STATE(8147)] = 166580, - [SMALL_STATE(8148)] = 166588, - [SMALL_STATE(8149)] = 166596, - [SMALL_STATE(8150)] = 166604, - [SMALL_STATE(8151)] = 166612, - [SMALL_STATE(8152)] = 166620, - [SMALL_STATE(8153)] = 166628, - [SMALL_STATE(8154)] = 166636, - [SMALL_STATE(8155)] = 166644, - [SMALL_STATE(8156)] = 166652, - [SMALL_STATE(8157)] = 166660, - [SMALL_STATE(8158)] = 166668, - [SMALL_STATE(8159)] = 166676, - [SMALL_STATE(8160)] = 166684, - [SMALL_STATE(8161)] = 166692, - [SMALL_STATE(8162)] = 166700, - [SMALL_STATE(8163)] = 166708, - [SMALL_STATE(8164)] = 166716, - [SMALL_STATE(8165)] = 166724, - [SMALL_STATE(8166)] = 166732, - [SMALL_STATE(8167)] = 166740, - [SMALL_STATE(8168)] = 166748, - [SMALL_STATE(8169)] = 166756, - [SMALL_STATE(8170)] = 166764, - [SMALL_STATE(8171)] = 166772, - [SMALL_STATE(8172)] = 166780, - [SMALL_STATE(8173)] = 166788, - [SMALL_STATE(8174)] = 166796, - [SMALL_STATE(8175)] = 166804, - [SMALL_STATE(8176)] = 166812, - [SMALL_STATE(8177)] = 166820, - [SMALL_STATE(8178)] = 166828, - [SMALL_STATE(8179)] = 166836, - [SMALL_STATE(8180)] = 166844, - [SMALL_STATE(8181)] = 166852, - [SMALL_STATE(8182)] = 166860, - [SMALL_STATE(8183)] = 166868, - [SMALL_STATE(8184)] = 166876, - [SMALL_STATE(8185)] = 166884, - [SMALL_STATE(8186)] = 166892, - [SMALL_STATE(8187)] = 166900, - [SMALL_STATE(8188)] = 166908, - [SMALL_STATE(8189)] = 166916, - [SMALL_STATE(8190)] = 166924, - [SMALL_STATE(8191)] = 166932, - [SMALL_STATE(8192)] = 166940, - [SMALL_STATE(8193)] = 166948, - [SMALL_STATE(8194)] = 166956, - [SMALL_STATE(8195)] = 166964, - [SMALL_STATE(8196)] = 166972, - [SMALL_STATE(8197)] = 166980, - [SMALL_STATE(8198)] = 166988, - [SMALL_STATE(8199)] = 166996, - [SMALL_STATE(8200)] = 167004, - [SMALL_STATE(8201)] = 167012, - [SMALL_STATE(8202)] = 167020, - [SMALL_STATE(8203)] = 167028, - [SMALL_STATE(8204)] = 167036, - [SMALL_STATE(8205)] = 167044, - [SMALL_STATE(8206)] = 167052, - [SMALL_STATE(8207)] = 167060, - [SMALL_STATE(8208)] = 167068, - [SMALL_STATE(8209)] = 167076, - [SMALL_STATE(8210)] = 167084, - [SMALL_STATE(8211)] = 167092, - [SMALL_STATE(8212)] = 167100, - [SMALL_STATE(8213)] = 167108, - [SMALL_STATE(8214)] = 167116, - [SMALL_STATE(8215)] = 167124, - [SMALL_STATE(8216)] = 167132, - [SMALL_STATE(8217)] = 167140, - [SMALL_STATE(8218)] = 167148, - [SMALL_STATE(8219)] = 167156, - [SMALL_STATE(8220)] = 167164, - [SMALL_STATE(8221)] = 167172, - [SMALL_STATE(8222)] = 167180, - [SMALL_STATE(8223)] = 167188, - [SMALL_STATE(8224)] = 167196, - [SMALL_STATE(8225)] = 167204, - [SMALL_STATE(8226)] = 167212, - [SMALL_STATE(8227)] = 167220, - [SMALL_STATE(8228)] = 167228, - [SMALL_STATE(8229)] = 167236, - [SMALL_STATE(8230)] = 167244, - [SMALL_STATE(8231)] = 167252, - [SMALL_STATE(8232)] = 167260, - [SMALL_STATE(8233)] = 167268, - [SMALL_STATE(8234)] = 167276, - [SMALL_STATE(8235)] = 167284, - [SMALL_STATE(8236)] = 167292, - [SMALL_STATE(8237)] = 167300, - [SMALL_STATE(8238)] = 167308, - [SMALL_STATE(8239)] = 167316, - [SMALL_STATE(8240)] = 167324, - [SMALL_STATE(8241)] = 167332, - [SMALL_STATE(8242)] = 167340, - [SMALL_STATE(8243)] = 167348, - [SMALL_STATE(8244)] = 167356, - [SMALL_STATE(8245)] = 167364, - [SMALL_STATE(8246)] = 167372, - [SMALL_STATE(8247)] = 167380, - [SMALL_STATE(8248)] = 167388, - [SMALL_STATE(8249)] = 167396, - [SMALL_STATE(8250)] = 167404, - [SMALL_STATE(8251)] = 167412, - [SMALL_STATE(8252)] = 167420, - [SMALL_STATE(8253)] = 167428, - [SMALL_STATE(8254)] = 167436, - [SMALL_STATE(8255)] = 167444, - [SMALL_STATE(8256)] = 167452, - [SMALL_STATE(8257)] = 167460, - [SMALL_STATE(8258)] = 167468, - [SMALL_STATE(8259)] = 167476, - [SMALL_STATE(8260)] = 167484, - [SMALL_STATE(8261)] = 167492, - [SMALL_STATE(8262)] = 167500, - [SMALL_STATE(8263)] = 167508, - [SMALL_STATE(8264)] = 167516, - [SMALL_STATE(8265)] = 167524, - [SMALL_STATE(8266)] = 167532, - [SMALL_STATE(8267)] = 167540, - [SMALL_STATE(8268)] = 167548, - [SMALL_STATE(8269)] = 167556, - [SMALL_STATE(8270)] = 167564, - [SMALL_STATE(8271)] = 167572, - [SMALL_STATE(8272)] = 167580, - [SMALL_STATE(8273)] = 167588, - [SMALL_STATE(8274)] = 167596, - [SMALL_STATE(8275)] = 167604, - [SMALL_STATE(8276)] = 167612, - [SMALL_STATE(8277)] = 167620, - [SMALL_STATE(8278)] = 167628, - [SMALL_STATE(8279)] = 167636, - [SMALL_STATE(8280)] = 167644, - [SMALL_STATE(8281)] = 167652, - [SMALL_STATE(8282)] = 167660, - [SMALL_STATE(8283)] = 167668, - [SMALL_STATE(8284)] = 167676, - [SMALL_STATE(8285)] = 167684, - [SMALL_STATE(8286)] = 167692, - [SMALL_STATE(8287)] = 167700, - [SMALL_STATE(8288)] = 167708, - [SMALL_STATE(8289)] = 167716, - [SMALL_STATE(8290)] = 167724, - [SMALL_STATE(8291)] = 167732, - [SMALL_STATE(8292)] = 167740, - [SMALL_STATE(8293)] = 167748, - [SMALL_STATE(8294)] = 167756, - [SMALL_STATE(8295)] = 167764, - [SMALL_STATE(8296)] = 167772, - [SMALL_STATE(8297)] = 167780, - [SMALL_STATE(8298)] = 167788, - [SMALL_STATE(8299)] = 167796, - [SMALL_STATE(8300)] = 167804, - [SMALL_STATE(8301)] = 167812, - [SMALL_STATE(8302)] = 167820, - [SMALL_STATE(8303)] = 167828, - [SMALL_STATE(8304)] = 167836, - [SMALL_STATE(8305)] = 167844, - [SMALL_STATE(8306)] = 167852, - [SMALL_STATE(8307)] = 167860, - [SMALL_STATE(8308)] = 167868, - [SMALL_STATE(8309)] = 167876, - [SMALL_STATE(8310)] = 167884, - [SMALL_STATE(8311)] = 167892, - [SMALL_STATE(8312)] = 167900, - [SMALL_STATE(8313)] = 167908, - [SMALL_STATE(8314)] = 167916, - [SMALL_STATE(8315)] = 167924, - [SMALL_STATE(8316)] = 167932, - [SMALL_STATE(8317)] = 167940, - [SMALL_STATE(8318)] = 167948, - [SMALL_STATE(8319)] = 167956, - [SMALL_STATE(8320)] = 167964, - [SMALL_STATE(8321)] = 167972, - [SMALL_STATE(8322)] = 167980, - [SMALL_STATE(8323)] = 167988, - [SMALL_STATE(8324)] = 167996, - [SMALL_STATE(8325)] = 168004, - [SMALL_STATE(8326)] = 168012, - [SMALL_STATE(8327)] = 168020, - [SMALL_STATE(8328)] = 168028, - [SMALL_STATE(8329)] = 168036, - [SMALL_STATE(8330)] = 168044, - [SMALL_STATE(8331)] = 168052, - [SMALL_STATE(8332)] = 168060, - [SMALL_STATE(8333)] = 168068, - [SMALL_STATE(8334)] = 168076, - [SMALL_STATE(8335)] = 168084, - [SMALL_STATE(8336)] = 168092, - [SMALL_STATE(8337)] = 168100, - [SMALL_STATE(8338)] = 168108, - [SMALL_STATE(8339)] = 168116, - [SMALL_STATE(8340)] = 168124, - [SMALL_STATE(8341)] = 168132, - [SMALL_STATE(8342)] = 168140, - [SMALL_STATE(8343)] = 168148, - [SMALL_STATE(8344)] = 168156, - [SMALL_STATE(8345)] = 168164, - [SMALL_STATE(8346)] = 168172, - [SMALL_STATE(8347)] = 168180, - [SMALL_STATE(8348)] = 168188, - [SMALL_STATE(8349)] = 168196, - [SMALL_STATE(8350)] = 168204, - [SMALL_STATE(8351)] = 168212, - [SMALL_STATE(8352)] = 168220, - [SMALL_STATE(8353)] = 168228, - [SMALL_STATE(8354)] = 168236, - [SMALL_STATE(8355)] = 168244, - [SMALL_STATE(8356)] = 168252, - [SMALL_STATE(8357)] = 168260, - [SMALL_STATE(8358)] = 168268, - [SMALL_STATE(8359)] = 168276, - [SMALL_STATE(8360)] = 168284, - [SMALL_STATE(8361)] = 168292, - [SMALL_STATE(8362)] = 168300, - [SMALL_STATE(8363)] = 168308, - [SMALL_STATE(8364)] = 168316, - [SMALL_STATE(8365)] = 168324, - [SMALL_STATE(8366)] = 168332, - [SMALL_STATE(8367)] = 168340, - [SMALL_STATE(8368)] = 168348, - [SMALL_STATE(8369)] = 168356, - [SMALL_STATE(8370)] = 168364, - [SMALL_STATE(8371)] = 168372, - [SMALL_STATE(8372)] = 168380, - [SMALL_STATE(8373)] = 168388, - [SMALL_STATE(8374)] = 168396, - [SMALL_STATE(8375)] = 168404, - [SMALL_STATE(8376)] = 168412, - [SMALL_STATE(8377)] = 168420, - [SMALL_STATE(8378)] = 168428, - [SMALL_STATE(8379)] = 168436, - [SMALL_STATE(8380)] = 168444, - [SMALL_STATE(8381)] = 168452, - [SMALL_STATE(8382)] = 168460, - [SMALL_STATE(8383)] = 168468, - [SMALL_STATE(8384)] = 168476, - [SMALL_STATE(8385)] = 168484, - [SMALL_STATE(8386)] = 168492, - [SMALL_STATE(8387)] = 168500, - [SMALL_STATE(8388)] = 168508, - [SMALL_STATE(8389)] = 168516, - [SMALL_STATE(8390)] = 168524, - [SMALL_STATE(8391)] = 168532, - [SMALL_STATE(8392)] = 168540, - [SMALL_STATE(8393)] = 168548, - [SMALL_STATE(8394)] = 168556, - [SMALL_STATE(8395)] = 168564, - [SMALL_STATE(8396)] = 168572, - [SMALL_STATE(8397)] = 168580, - [SMALL_STATE(8398)] = 168588, - [SMALL_STATE(8399)] = 168596, - [SMALL_STATE(8400)] = 168604, - [SMALL_STATE(8401)] = 168612, - [SMALL_STATE(8402)] = 168620, - [SMALL_STATE(8403)] = 168628, - [SMALL_STATE(8404)] = 168636, - [SMALL_STATE(8405)] = 168644, - [SMALL_STATE(8406)] = 168652, - [SMALL_STATE(8407)] = 168660, - [SMALL_STATE(8408)] = 168668, - [SMALL_STATE(8409)] = 168676, - [SMALL_STATE(8410)] = 168684, + [SMALL_STATE(3891)] = 51714, + [SMALL_STATE(3892)] = 51779, + [SMALL_STATE(3893)] = 51842, + [SMALL_STATE(3894)] = 51917, + [SMALL_STATE(3895)] = 51980, + [SMALL_STATE(3896)] = 52047, + [SMALL_STATE(3897)] = 52110, + [SMALL_STATE(3898)] = 52182, + [SMALL_STATE(3899)] = 52244, + [SMALL_STATE(3900)] = 52306, + [SMALL_STATE(3901)] = 52368, + [SMALL_STATE(3902)] = 52440, + [SMALL_STATE(3903)] = 52502, + [SMALL_STATE(3904)] = 52564, + [SMALL_STATE(3905)] = 52626, + [SMALL_STATE(3906)] = 52698, + [SMALL_STATE(3907)] = 52760, + [SMALL_STATE(3908)] = 52822, + [SMALL_STATE(3909)] = 52886, + [SMALL_STATE(3910)] = 52948, + [SMALL_STATE(3911)] = 53010, + [SMALL_STATE(3912)] = 53082, + [SMALL_STATE(3913)] = 53154, + [SMALL_STATE(3914)] = 53226, + [SMALL_STATE(3915)] = 53298, + [SMALL_STATE(3916)] = 53360, + [SMALL_STATE(3917)] = 53432, + [SMALL_STATE(3918)] = 53504, + [SMALL_STATE(3919)] = 53576, + [SMALL_STATE(3920)] = 53638, + [SMALL_STATE(3921)] = 53700, + [SMALL_STATE(3922)] = 53772, + [SMALL_STATE(3923)] = 53844, + [SMALL_STATE(3924)] = 53916, + [SMALL_STATE(3925)] = 53988, + [SMALL_STATE(3926)] = 54060, + [SMALL_STATE(3927)] = 54132, + [SMALL_STATE(3928)] = 54194, + [SMALL_STATE(3929)] = 54266, + [SMALL_STATE(3930)] = 54328, + [SMALL_STATE(3931)] = 54390, + [SMALL_STATE(3932)] = 54462, + [SMALL_STATE(3933)] = 54534, + [SMALL_STATE(3934)] = 54596, + [SMALL_STATE(3935)] = 54668, + [SMALL_STATE(3936)] = 54740, + [SMALL_STATE(3937)] = 54812, + [SMALL_STATE(3938)] = 54874, + [SMALL_STATE(3939)] = 54936, + [SMALL_STATE(3940)] = 55008, + [SMALL_STATE(3941)] = 55080, + [SMALL_STATE(3942)] = 55152, + [SMALL_STATE(3943)] = 55224, + [SMALL_STATE(3944)] = 55296, + [SMALL_STATE(3945)] = 55358, + [SMALL_STATE(3946)] = 55420, + [SMALL_STATE(3947)] = 55492, + [SMALL_STATE(3948)] = 55554, + [SMALL_STATE(3949)] = 55616, + [SMALL_STATE(3950)] = 55688, + [SMALL_STATE(3951)] = 55750, + [SMALL_STATE(3952)] = 55816, + [SMALL_STATE(3953)] = 55888, + [SMALL_STATE(3954)] = 55952, + [SMALL_STATE(3955)] = 56024, + [SMALL_STATE(3956)] = 56096, + [SMALL_STATE(3957)] = 56158, + [SMALL_STATE(3958)] = 56230, + [SMALL_STATE(3959)] = 56292, + [SMALL_STATE(3960)] = 56364, + [SMALL_STATE(3961)] = 56426, + [SMALL_STATE(3962)] = 56498, + [SMALL_STATE(3963)] = 56570, + [SMALL_STATE(3964)] = 56638, + [SMALL_STATE(3965)] = 56710, + [SMALL_STATE(3966)] = 56772, + [SMALL_STATE(3967)] = 56844, + [SMALL_STATE(3968)] = 56916, + [SMALL_STATE(3969)] = 56988, + [SMALL_STATE(3970)] = 57050, + [SMALL_STATE(3971)] = 57122, + [SMALL_STATE(3972)] = 57194, + [SMALL_STATE(3973)] = 57256, + [SMALL_STATE(3974)] = 57328, + [SMALL_STATE(3975)] = 57390, + [SMALL_STATE(3976)] = 57462, + [SMALL_STATE(3977)] = 57534, + [SMALL_STATE(3978)] = 57596, + [SMALL_STATE(3979)] = 57658, + [SMALL_STATE(3980)] = 57730, + [SMALL_STATE(3981)] = 57792, + [SMALL_STATE(3982)] = 57854, + [SMALL_STATE(3983)] = 57916, + [SMALL_STATE(3984)] = 57978, + [SMALL_STATE(3985)] = 58040, + [SMALL_STATE(3986)] = 58102, + [SMALL_STATE(3987)] = 58164, + [SMALL_STATE(3988)] = 58226, + [SMALL_STATE(3989)] = 58288, + [SMALL_STATE(3990)] = 58350, + [SMALL_STATE(3991)] = 58419, + [SMALL_STATE(3992)] = 58488, + [SMALL_STATE(3993)] = 58557, + [SMALL_STATE(3994)] = 58626, + [SMALL_STATE(3995)] = 58695, + [SMALL_STATE(3996)] = 58756, + [SMALL_STATE(3997)] = 58825, + [SMALL_STATE(3998)] = 58894, + [SMALL_STATE(3999)] = 58963, + [SMALL_STATE(4000)] = 59032, + [SMALL_STATE(4001)] = 59101, + [SMALL_STATE(4002)] = 59162, + [SMALL_STATE(4003)] = 59231, + [SMALL_STATE(4004)] = 59300, + [SMALL_STATE(4005)] = 59361, + [SMALL_STATE(4006)] = 59430, + [SMALL_STATE(4007)] = 59499, + [SMALL_STATE(4008)] = 59568, + [SMALL_STATE(4009)] = 59637, + [SMALL_STATE(4010)] = 59706, + [SMALL_STATE(4011)] = 59775, + [SMALL_STATE(4012)] = 59844, + [SMALL_STATE(4013)] = 59913, + [SMALL_STATE(4014)] = 59982, + [SMALL_STATE(4015)] = 60051, + [SMALL_STATE(4016)] = 60120, + [SMALL_STATE(4017)] = 60189, + [SMALL_STATE(4018)] = 60258, + [SMALL_STATE(4019)] = 60327, + [SMALL_STATE(4020)] = 60396, + [SMALL_STATE(4021)] = 60457, + [SMALL_STATE(4022)] = 60526, + [SMALL_STATE(4023)] = 60587, + [SMALL_STATE(4024)] = 60656, + [SMALL_STATE(4025)] = 60717, + [SMALL_STATE(4026)] = 60786, + [SMALL_STATE(4027)] = 60855, + [SMALL_STATE(4028)] = 60924, + [SMALL_STATE(4029)] = 60993, + [SMALL_STATE(4030)] = 61062, + [SMALL_STATE(4031)] = 61131, + [SMALL_STATE(4032)] = 61200, + [SMALL_STATE(4033)] = 61269, + [SMALL_STATE(4034)] = 61338, + [SMALL_STATE(4035)] = 61407, + [SMALL_STATE(4036)] = 61476, + [SMALL_STATE(4037)] = 61545, + [SMALL_STATE(4038)] = 61614, + [SMALL_STATE(4039)] = 61683, + [SMALL_STATE(4040)] = 61752, + [SMALL_STATE(4041)] = 61821, + [SMALL_STATE(4042)] = 61890, + [SMALL_STATE(4043)] = 61959, + [SMALL_STATE(4044)] = 62028, + [SMALL_STATE(4045)] = 62097, + [SMALL_STATE(4046)] = 62166, + [SMALL_STATE(4047)] = 62235, + [SMALL_STATE(4048)] = 62304, + [SMALL_STATE(4049)] = 62373, + [SMALL_STATE(4050)] = 62442, + [SMALL_STATE(4051)] = 62547, + [SMALL_STATE(4052)] = 62652, + [SMALL_STATE(4053)] = 62757, + [SMALL_STATE(4054)] = 62826, + [SMALL_STATE(4055)] = 62895, + [SMALL_STATE(4056)] = 62964, + [SMALL_STATE(4057)] = 63033, + [SMALL_STATE(4058)] = 63102, + [SMALL_STATE(4059)] = 63171, + [SMALL_STATE(4060)] = 63240, + [SMALL_STATE(4061)] = 63309, + [SMALL_STATE(4062)] = 63378, + [SMALL_STATE(4063)] = 63447, + [SMALL_STATE(4064)] = 63516, + [SMALL_STATE(4065)] = 63585, + [SMALL_STATE(4066)] = 63654, + [SMALL_STATE(4067)] = 63723, + [SMALL_STATE(4068)] = 63792, + [SMALL_STATE(4069)] = 63861, + [SMALL_STATE(4070)] = 63930, + [SMALL_STATE(4071)] = 63999, + [SMALL_STATE(4072)] = 64068, + [SMALL_STATE(4073)] = 64137, + [SMALL_STATE(4074)] = 64206, + [SMALL_STATE(4075)] = 64275, + [SMALL_STATE(4076)] = 64344, + [SMALL_STATE(4077)] = 64413, + [SMALL_STATE(4078)] = 64482, + [SMALL_STATE(4079)] = 64551, + [SMALL_STATE(4080)] = 64620, + [SMALL_STATE(4081)] = 64689, + [SMALL_STATE(4082)] = 64758, + [SMALL_STATE(4083)] = 64827, + [SMALL_STATE(4084)] = 64896, + [SMALL_STATE(4085)] = 64965, + [SMALL_STATE(4086)] = 65034, + [SMALL_STATE(4087)] = 65103, + [SMALL_STATE(4088)] = 65172, + [SMALL_STATE(4089)] = 65241, + [SMALL_STATE(4090)] = 65310, + [SMALL_STATE(4091)] = 65379, + [SMALL_STATE(4092)] = 65448, + [SMALL_STATE(4093)] = 65517, + [SMALL_STATE(4094)] = 65586, + [SMALL_STATE(4095)] = 65655, + [SMALL_STATE(4096)] = 65724, + [SMALL_STATE(4097)] = 65793, + [SMALL_STATE(4098)] = 65862, + [SMALL_STATE(4099)] = 65931, + [SMALL_STATE(4100)] = 66000, + [SMALL_STATE(4101)] = 66069, + [SMALL_STATE(4102)] = 66138, + [SMALL_STATE(4103)] = 66207, + [SMALL_STATE(4104)] = 66276, + [SMALL_STATE(4105)] = 66345, + [SMALL_STATE(4106)] = 66414, + [SMALL_STATE(4107)] = 66483, + [SMALL_STATE(4108)] = 66552, + [SMALL_STATE(4109)] = 66621, + [SMALL_STATE(4110)] = 66690, + [SMALL_STATE(4111)] = 66759, + [SMALL_STATE(4112)] = 66828, + [SMALL_STATE(4113)] = 66897, + [SMALL_STATE(4114)] = 66966, + [SMALL_STATE(4115)] = 67035, + [SMALL_STATE(4116)] = 67104, + [SMALL_STATE(4117)] = 67173, + [SMALL_STATE(4118)] = 67242, + [SMALL_STATE(4119)] = 67311, + [SMALL_STATE(4120)] = 67380, + [SMALL_STATE(4121)] = 67449, + [SMALL_STATE(4122)] = 67518, + [SMALL_STATE(4123)] = 67587, + [SMALL_STATE(4124)] = 67656, + [SMALL_STATE(4125)] = 67725, + [SMALL_STATE(4126)] = 67794, + [SMALL_STATE(4127)] = 67863, + [SMALL_STATE(4128)] = 67932, + [SMALL_STATE(4129)] = 68001, + [SMALL_STATE(4130)] = 68070, + [SMALL_STATE(4131)] = 68139, + [SMALL_STATE(4132)] = 68208, + [SMALL_STATE(4133)] = 68277, + [SMALL_STATE(4134)] = 68346, + [SMALL_STATE(4135)] = 68415, + [SMALL_STATE(4136)] = 68484, + [SMALL_STATE(4137)] = 68553, + [SMALL_STATE(4138)] = 68622, + [SMALL_STATE(4139)] = 68691, + [SMALL_STATE(4140)] = 68760, + [SMALL_STATE(4141)] = 68829, + [SMALL_STATE(4142)] = 68898, + [SMALL_STATE(4143)] = 68967, + [SMALL_STATE(4144)] = 69036, + [SMALL_STATE(4145)] = 69141, + [SMALL_STATE(4146)] = 69246, + [SMALL_STATE(4147)] = 69351, + [SMALL_STATE(4148)] = 69439, + [SMALL_STATE(4149)] = 69507, + [SMALL_STATE(4150)] = 69585, + [SMALL_STATE(4151)] = 69669, + [SMALL_STATE(4152)] = 69751, + [SMALL_STATE(4153)] = 69833, + [SMALL_STATE(4154)] = 69937, + [SMALL_STATE(4155)] = 70023, + [SMALL_STATE(4156)] = 70127, + [SMALL_STATE(4157)] = 70231, + [SMALL_STATE(4158)] = 70309, + [SMALL_STATE(4159)] = 70413, + [SMALL_STATE(4160)] = 70505, + [SMALL_STATE(4161)] = 70609, + [SMALL_STATE(4162)] = 70713, + [SMALL_STATE(4163)] = 70805, + [SMALL_STATE(4164)] = 70909, + [SMALL_STATE(4165)] = 71013, + [SMALL_STATE(4166)] = 71117, + [SMALL_STATE(4167)] = 71187, + [SMALL_STATE(4168)] = 71291, + [SMALL_STATE(4169)] = 71395, + [SMALL_STATE(4170)] = 71499, + [SMALL_STATE(4171)] = 71603, + [SMALL_STATE(4172)] = 71707, + [SMALL_STATE(4173)] = 71811, + [SMALL_STATE(4174)] = 71915, + [SMALL_STATE(4175)] = 72019, + [SMALL_STATE(4176)] = 72093, + [SMALL_STATE(4177)] = 72165, + [SMALL_STATE(4178)] = 72269, + [SMALL_STATE(4179)] = 72373, + [SMALL_STATE(4180)] = 72477, + [SMALL_STATE(4181)] = 72581, + [SMALL_STATE(4182)] = 72682, + [SMALL_STATE(4183)] = 72783, + [SMALL_STATE(4184)] = 72884, + [SMALL_STATE(4185)] = 72985, + [SMALL_STATE(4186)] = 73086, + [SMALL_STATE(4187)] = 73187, + [SMALL_STATE(4188)] = 73288, + [SMALL_STATE(4189)] = 73389, + [SMALL_STATE(4190)] = 73490, + [SMALL_STATE(4191)] = 73591, + [SMALL_STATE(4192)] = 73692, + [SMALL_STATE(4193)] = 73793, + [SMALL_STATE(4194)] = 73894, + [SMALL_STATE(4195)] = 73995, + [SMALL_STATE(4196)] = 74096, + [SMALL_STATE(4197)] = 74197, + [SMALL_STATE(4198)] = 74298, + [SMALL_STATE(4199)] = 74390, + [SMALL_STATE(4200)] = 74443, + [SMALL_STATE(4201)] = 74496, + [SMALL_STATE(4202)] = 74594, + [SMALL_STATE(4203)] = 74692, + [SMALL_STATE(4204)] = 74790, + [SMALL_STATE(4205)] = 74888, + [SMALL_STATE(4206)] = 74986, + [SMALL_STATE(4207)] = 75084, + [SMALL_STATE(4208)] = 75182, + [SMALL_STATE(4209)] = 75280, + [SMALL_STATE(4210)] = 75378, + [SMALL_STATE(4211)] = 75476, + [SMALL_STATE(4212)] = 75574, + [SMALL_STATE(4213)] = 75672, + [SMALL_STATE(4214)] = 75770, + [SMALL_STATE(4215)] = 75868, + [SMALL_STATE(4216)] = 75966, + [SMALL_STATE(4217)] = 76064, + [SMALL_STATE(4218)] = 76162, + [SMALL_STATE(4219)] = 76260, + [SMALL_STATE(4220)] = 76358, + [SMALL_STATE(4221)] = 76456, + [SMALL_STATE(4222)] = 76554, + [SMALL_STATE(4223)] = 76652, + [SMALL_STATE(4224)] = 76750, + [SMALL_STATE(4225)] = 76848, + [SMALL_STATE(4226)] = 76946, + [SMALL_STATE(4227)] = 77044, + [SMALL_STATE(4228)] = 77133, + [SMALL_STATE(4229)] = 77219, + [SMALL_STATE(4230)] = 77305, + [SMALL_STATE(4231)] = 77391, + [SMALL_STATE(4232)] = 77478, + [SMALL_STATE(4233)] = 77524, + [SMALL_STATE(4234)] = 77580, + [SMALL_STATE(4235)] = 77626, + [SMALL_STATE(4236)] = 77672, + [SMALL_STATE(4237)] = 77718, + [SMALL_STATE(4238)] = 77788, + [SMALL_STATE(4239)] = 77834, + [SMALL_STATE(4240)] = 77880, + [SMALL_STATE(4241)] = 77926, + [SMALL_STATE(4242)] = 77972, + [SMALL_STATE(4243)] = 78018, + [SMALL_STATE(4244)] = 78064, + [SMALL_STATE(4245)] = 78110, + [SMALL_STATE(4246)] = 78156, + [SMALL_STATE(4247)] = 78202, + [SMALL_STATE(4248)] = 78248, + [SMALL_STATE(4249)] = 78322, + [SMALL_STATE(4250)] = 78368, + [SMALL_STATE(4251)] = 78414, + [SMALL_STATE(4252)] = 78460, + [SMALL_STATE(4253)] = 78506, + [SMALL_STATE(4254)] = 78552, + [SMALL_STATE(4255)] = 78598, + [SMALL_STATE(4256)] = 78660, + [SMALL_STATE(4257)] = 78720, + [SMALL_STATE(4258)] = 78786, + [SMALL_STATE(4259)] = 78858, + [SMALL_STATE(4260)] = 78928, + [SMALL_STATE(4261)] = 78994, + [SMALL_STATE(4262)] = 79052, + [SMALL_STATE(4263)] = 79128, + [SMALL_STATE(4264)] = 79179, + [SMALL_STATE(4265)] = 79228, + [SMALL_STATE(4266)] = 79310, + [SMALL_STATE(4267)] = 79378, + [SMALL_STATE(4268)] = 79426, + [SMALL_STATE(4269)] = 79498, + [SMALL_STATE(4270)] = 79562, + [SMALL_STATE(4271)] = 79618, + [SMALL_STATE(4272)] = 79678, + [SMALL_STATE(4273)] = 79736, + [SMALL_STATE(4274)] = 79810, + [SMALL_STATE(4275)] = 79874, + [SMALL_STATE(4276)] = 79928, + [SMALL_STATE(4277)] = 79976, + [SMALL_STATE(4278)] = 80046, + [SMALL_STATE(4279)] = 80124, + [SMALL_STATE(4280)] = 80192, + [SMALL_STATE(4281)] = 80264, + [SMALL_STATE(4282)] = 80328, + [SMALL_STATE(4283)] = 80410, + [SMALL_STATE(4284)] = 80458, + [SMALL_STATE(4285)] = 80514, + [SMALL_STATE(4286)] = 80596, + [SMALL_STATE(4287)] = 80670, + [SMALL_STATE(4288)] = 80718, + [SMALL_STATE(4289)] = 80798, + [SMALL_STATE(4290)] = 80858, + [SMALL_STATE(4291)] = 80912, + [SMALL_STATE(4292)] = 80980, + [SMALL_STATE(4293)] = 81048, + [SMALL_STATE(4294)] = 81106, + [SMALL_STATE(4295)] = 81188, + [SMALL_STATE(4296)] = 81270, + [SMALL_STATE(4297)] = 81334, + [SMALL_STATE(4298)] = 81384, + [SMALL_STATE(4299)] = 81432, + [SMALL_STATE(4300)] = 81502, + [SMALL_STATE(4301)] = 81584, + [SMALL_STATE(4302)] = 81652, + [SMALL_STATE(4303)] = 81734, + [SMALL_STATE(4304)] = 81816, + [SMALL_STATE(4305)] = 81898, + [SMALL_STATE(4306)] = 81954, + [SMALL_STATE(4307)] = 82034, + [SMALL_STATE(4308)] = 82114, + [SMALL_STATE(4309)] = 82186, + [SMALL_STATE(4310)] = 82234, + [SMALL_STATE(4311)] = 82298, + [SMALL_STATE(4312)] = 82342, + [SMALL_STATE(4313)] = 82422, + [SMALL_STATE(4314)] = 82470, + [SMALL_STATE(4315)] = 82552, + [SMALL_STATE(4316)] = 82606, + [SMALL_STATE(4317)] = 82688, + [SMALL_STATE(4318)] = 82762, + [SMALL_STATE(4319)] = 82844, + [SMALL_STATE(4320)] = 82920, + [SMALL_STATE(4321)] = 82980, + [SMALL_STATE(4322)] = 83028, + [SMALL_STATE(4323)] = 83086, + [SMALL_STATE(4324)] = 83168, + [SMALL_STATE(4325)] = 83232, + [SMALL_STATE(4326)] = 83302, + [SMALL_STATE(4327)] = 83370, + [SMALL_STATE(4328)] = 83418, + [SMALL_STATE(4329)] = 83500, + [SMALL_STATE(4330)] = 83582, + [SMALL_STATE(4331)] = 83659, + [SMALL_STATE(4332)] = 83736, + [SMALL_STATE(4333)] = 83781, + [SMALL_STATE(4334)] = 83824, + [SMALL_STATE(4335)] = 83901, + [SMALL_STATE(4336)] = 83946, + [SMALL_STATE(4337)] = 84023, + [SMALL_STATE(4338)] = 84100, + [SMALL_STATE(4339)] = 84175, + [SMALL_STATE(4340)] = 84220, + [SMALL_STATE(4341)] = 84265, + [SMALL_STATE(4342)] = 84340, + [SMALL_STATE(4343)] = 84385, + [SMALL_STATE(4344)] = 84430, + [SMALL_STATE(4345)] = 84507, + [SMALL_STATE(4346)] = 84552, + [SMALL_STATE(4347)] = 84597, + [SMALL_STATE(4348)] = 84642, + [SMALL_STATE(4349)] = 84687, + [SMALL_STATE(4350)] = 84764, + [SMALL_STATE(4351)] = 84843, + [SMALL_STATE(4352)] = 84886, + [SMALL_STATE(4353)] = 84965, + [SMALL_STATE(4354)] = 85042, + [SMALL_STATE(4355)] = 85087, + [SMALL_STATE(4356)] = 85164, + [SMALL_STATE(4357)] = 85241, + [SMALL_STATE(4358)] = 85286, + [SMALL_STATE(4359)] = 85363, + [SMALL_STATE(4360)] = 85438, + [SMALL_STATE(4361)] = 85483, + [SMALL_STATE(4362)] = 85528, + [SMALL_STATE(4363)] = 85579, + [SMALL_STATE(4364)] = 85622, + [SMALL_STATE(4365)] = 85665, + [SMALL_STATE(4366)] = 85744, + [SMALL_STATE(4367)] = 85819, + [SMALL_STATE(4368)] = 85864, + [SMALL_STATE(4369)] = 85909, + [SMALL_STATE(4370)] = 85952, + [SMALL_STATE(4371)] = 85995, + [SMALL_STATE(4372)] = 86040, + [SMALL_STATE(4373)] = 86117, + [SMALL_STATE(4374)] = 86162, + [SMALL_STATE(4375)] = 86207, + [SMALL_STATE(4376)] = 86286, + [SMALL_STATE(4377)] = 86331, + [SMALL_STATE(4378)] = 86376, + [SMALL_STATE(4379)] = 86421, + [SMALL_STATE(4380)] = 86474, + [SMALL_STATE(4381)] = 86519, + [SMALL_STATE(4382)] = 86564, + [SMALL_STATE(4383)] = 86606, + [SMALL_STATE(4384)] = 86648, + [SMALL_STATE(4385)] = 86690, + [SMALL_STATE(4386)] = 86732, + [SMALL_STATE(4387)] = 86774, + [SMALL_STATE(4388)] = 86816, + [SMALL_STATE(4389)] = 86892, + [SMALL_STATE(4390)] = 86934, + [SMALL_STATE(4391)] = 86976, + [SMALL_STATE(4392)] = 87030, + [SMALL_STATE(4393)] = 87072, + [SMALL_STATE(4394)] = 87114, + [SMALL_STATE(4395)] = 87156, + [SMALL_STATE(4396)] = 87198, + [SMALL_STATE(4397)] = 87240, + [SMALL_STATE(4398)] = 87282, + [SMALL_STATE(4399)] = 87324, + [SMALL_STATE(4400)] = 87366, + [SMALL_STATE(4401)] = 87408, + [SMALL_STATE(4402)] = 87450, + [SMALL_STATE(4403)] = 87492, + [SMALL_STATE(4404)] = 87534, + [SMALL_STATE(4405)] = 87576, + [SMALL_STATE(4406)] = 87618, + [SMALL_STATE(4407)] = 87660, + [SMALL_STATE(4408)] = 87702, + [SMALL_STATE(4409)] = 87776, + [SMALL_STATE(4410)] = 87818, + [SMALL_STATE(4411)] = 87860, + [SMALL_STATE(4412)] = 87902, + [SMALL_STATE(4413)] = 87944, + [SMALL_STATE(4414)] = 87986, + [SMALL_STATE(4415)] = 88028, + [SMALL_STATE(4416)] = 88070, + [SMALL_STATE(4417)] = 88124, + [SMALL_STATE(4418)] = 88166, + [SMALL_STATE(4419)] = 88208, + [SMALL_STATE(4420)] = 88250, + [SMALL_STATE(4421)] = 88292, + [SMALL_STATE(4422)] = 88334, + [SMALL_STATE(4423)] = 88376, + [SMALL_STATE(4424)] = 88418, + [SMALL_STATE(4425)] = 88460, + [SMALL_STATE(4426)] = 88502, + [SMALL_STATE(4427)] = 88544, + [SMALL_STATE(4428)] = 88586, + [SMALL_STATE(4429)] = 88628, + [SMALL_STATE(4430)] = 88670, + [SMALL_STATE(4431)] = 88712, + [SMALL_STATE(4432)] = 88754, + [SMALL_STATE(4433)] = 88796, + [SMALL_STATE(4434)] = 88838, + [SMALL_STATE(4435)] = 88880, + [SMALL_STATE(4436)] = 88922, + [SMALL_STATE(4437)] = 88964, + [SMALL_STATE(4438)] = 89006, + [SMALL_STATE(4439)] = 89048, + [SMALL_STATE(4440)] = 89090, + [SMALL_STATE(4441)] = 89164, + [SMALL_STATE(4442)] = 89238, + [SMALL_STATE(4443)] = 89312, + [SMALL_STATE(4444)] = 89386, + [SMALL_STATE(4445)] = 89460, + [SMALL_STATE(4446)] = 89502, + [SMALL_STATE(4447)] = 89544, + [SMALL_STATE(4448)] = 89618, + [SMALL_STATE(4449)] = 89692, + [SMALL_STATE(4450)] = 89734, + [SMALL_STATE(4451)] = 89776, + [SMALL_STATE(4452)] = 89830, + [SMALL_STATE(4453)] = 89872, + [SMALL_STATE(4454)] = 89914, + [SMALL_STATE(4455)] = 89956, + [SMALL_STATE(4456)] = 90032, + [SMALL_STATE(4457)] = 90074, + [SMALL_STATE(4458)] = 90148, + [SMALL_STATE(4459)] = 90190, + [SMALL_STATE(4460)] = 90232, + [SMALL_STATE(4461)] = 90274, + [SMALL_STATE(4462)] = 90316, + [SMALL_STATE(4463)] = 90358, + [SMALL_STATE(4464)] = 90400, + [SMALL_STATE(4465)] = 90442, + [SMALL_STATE(4466)] = 90484, + [SMALL_STATE(4467)] = 90526, + [SMALL_STATE(4468)] = 90568, + [SMALL_STATE(4469)] = 90610, + [SMALL_STATE(4470)] = 90652, + [SMALL_STATE(4471)] = 90696, + [SMALL_STATE(4472)] = 90762, + [SMALL_STATE(4473)] = 90804, + [SMALL_STATE(4474)] = 90846, + [SMALL_STATE(4475)] = 90888, + [SMALL_STATE(4476)] = 90930, + [SMALL_STATE(4477)] = 90972, + [SMALL_STATE(4478)] = 91014, + [SMALL_STATE(4479)] = 91056, + [SMALL_STATE(4480)] = 91098, + [SMALL_STATE(4481)] = 91140, + [SMALL_STATE(4482)] = 91182, + [SMALL_STATE(4483)] = 91224, + [SMALL_STATE(4484)] = 91298, + [SMALL_STATE(4485)] = 91340, + [SMALL_STATE(4486)] = 91414, + [SMALL_STATE(4487)] = 91472, + [SMALL_STATE(4488)] = 91528, + [SMALL_STATE(4489)] = 91602, + [SMALL_STATE(4490)] = 91676, + [SMALL_STATE(4491)] = 91718, + [SMALL_STATE(4492)] = 91780, + [SMALL_STATE(4493)] = 91854, + [SMALL_STATE(4494)] = 91928, + [SMALL_STATE(4495)] = 92002, + [SMALL_STATE(4496)] = 92076, + [SMALL_STATE(4497)] = 92144, + [SMALL_STATE(4498)] = 92210, + [SMALL_STATE(4499)] = 92284, + [SMALL_STATE(4500)] = 92354, + [SMALL_STATE(4501)] = 92416, + [SMALL_STATE(4502)] = 92470, + [SMALL_STATE(4503)] = 92542, + [SMALL_STATE(4504)] = 92584, + [SMALL_STATE(4505)] = 92626, + [SMALL_STATE(4506)] = 92668, + [SMALL_STATE(4507)] = 92710, + [SMALL_STATE(4508)] = 92752, + [SMALL_STATE(4509)] = 92794, + [SMALL_STATE(4510)] = 92836, + [SMALL_STATE(4511)] = 92878, + [SMALL_STATE(4512)] = 92920, + [SMALL_STATE(4513)] = 92994, + [SMALL_STATE(4514)] = 93036, + [SMALL_STATE(4515)] = 93078, + [SMALL_STATE(4516)] = 93120, + [SMALL_STATE(4517)] = 93162, + [SMALL_STATE(4518)] = 93204, + [SMALL_STATE(4519)] = 93246, + [SMALL_STATE(4520)] = 93288, + [SMALL_STATE(4521)] = 93330, + [SMALL_STATE(4522)] = 93372, + [SMALL_STATE(4523)] = 93414, + [SMALL_STATE(4524)] = 93488, + [SMALL_STATE(4525)] = 93562, + [SMALL_STATE(4526)] = 93638, + [SMALL_STATE(4527)] = 93680, + [SMALL_STATE(4528)] = 93732, + [SMALL_STATE(4529)] = 93777, + [SMALL_STATE(4530)] = 93850, + [SMALL_STATE(4531)] = 93923, + [SMALL_STATE(4532)] = 93964, + [SMALL_STATE(4533)] = 94009, + [SMALL_STATE(4534)] = 94082, + [SMALL_STATE(4535)] = 94127, + [SMALL_STATE(4536)] = 94172, + [SMALL_STATE(4537)] = 94213, + [SMALL_STATE(4538)] = 94254, + [SMALL_STATE(4539)] = 94295, + [SMALL_STATE(4540)] = 94336, + [SMALL_STATE(4541)] = 94409, + [SMALL_STATE(4542)] = 94482, + [SMALL_STATE(4543)] = 94527, + [SMALL_STATE(4544)] = 94574, + [SMALL_STATE(4545)] = 94647, + [SMALL_STATE(4546)] = 94720, + [SMALL_STATE(4547)] = 94765, + [SMALL_STATE(4548)] = 94810, + [SMALL_STATE(4549)] = 94883, + [SMALL_STATE(4550)] = 94928, + [SMALL_STATE(4551)] = 95001, + [SMALL_STATE(4552)] = 95074, + [SMALL_STATE(4553)] = 95147, + [SMALL_STATE(4554)] = 95220, + [SMALL_STATE(4555)] = 95293, + [SMALL_STATE(4556)] = 95338, + [SMALL_STATE(4557)] = 95383, + [SMALL_STATE(4558)] = 95456, + [SMALL_STATE(4559)] = 95529, + [SMALL_STATE(4560)] = 95571, + [SMALL_STATE(4561)] = 95615, + [SMALL_STATE(4562)] = 95685, + [SMALL_STATE(4563)] = 95729, + [SMALL_STATE(4564)] = 95775, + [SMALL_STATE(4565)] = 95817, + [SMALL_STATE(4566)] = 95889, + [SMALL_STATE(4567)] = 95935, + [SMALL_STATE(4568)] = 95979, + [SMALL_STATE(4569)] = 96049, + [SMALL_STATE(4570)] = 96093, + [SMALL_STATE(4571)] = 96163, + [SMALL_STATE(4572)] = 96233, + [SMALL_STATE(4573)] = 96273, + [SMALL_STATE(4574)] = 96314, + [SMALL_STATE(4575)] = 96357, + [SMALL_STATE(4576)] = 96396, + [SMALL_STATE(4577)] = 96435, + [SMALL_STATE(4578)] = 96474, + [SMALL_STATE(4579)] = 96515, + [SMALL_STATE(4580)] = 96556, + [SMALL_STATE(4581)] = 96595, + [SMALL_STATE(4582)] = 96636, + [SMALL_STATE(4583)] = 96677, + [SMALL_STATE(4584)] = 96720, + [SMALL_STATE(4585)] = 96761, + [SMALL_STATE(4586)] = 96808, + [SMALL_STATE(4587)] = 96847, + [SMALL_STATE(4588)] = 96892, + [SMALL_STATE(4589)] = 96935, + [SMALL_STATE(4590)] = 96974, + [SMALL_STATE(4591)] = 97013, + [SMALL_STATE(4592)] = 97058, + [SMALL_STATE(4593)] = 97099, + [SMALL_STATE(4594)] = 97140, + [SMALL_STATE(4595)] = 97181, + [SMALL_STATE(4596)] = 97222, + [SMALL_STATE(4597)] = 97263, + [SMALL_STATE(4598)] = 97304, + [SMALL_STATE(4599)] = 97345, + [SMALL_STATE(4600)] = 97384, + [SMALL_STATE(4601)] = 97425, + [SMALL_STATE(4602)] = 97466, + [SMALL_STATE(4603)] = 97507, + [SMALL_STATE(4604)] = 97548, + [SMALL_STATE(4605)] = 97587, + [SMALL_STATE(4606)] = 97628, + [SMALL_STATE(4607)] = 97667, + [SMALL_STATE(4608)] = 97706, + [SMALL_STATE(4609)] = 97747, + [SMALL_STATE(4610)] = 97786, + [SMALL_STATE(4611)] = 97827, + [SMALL_STATE(4612)] = 97866, + [SMALL_STATE(4613)] = 97907, + [SMALL_STATE(4614)] = 97946, + [SMALL_STATE(4615)] = 97985, + [SMALL_STATE(4616)] = 98028, + [SMALL_STATE(4617)] = 98067, + [SMALL_STATE(4618)] = 98106, + [SMALL_STATE(4619)] = 98145, + [SMALL_STATE(4620)] = 98184, + [SMALL_STATE(4621)] = 98227, + [SMALL_STATE(4622)] = 98268, + [SMALL_STATE(4623)] = 98307, + [SMALL_STATE(4624)] = 98346, + [SMALL_STATE(4625)] = 98385, + [SMALL_STATE(4626)] = 98424, + [SMALL_STATE(4627)] = 98463, + [SMALL_STATE(4628)] = 98502, + [SMALL_STATE(4629)] = 98541, + [SMALL_STATE(4630)] = 98580, + [SMALL_STATE(4631)] = 98619, + [SMALL_STATE(4632)] = 98658, + [SMALL_STATE(4633)] = 98697, + [SMALL_STATE(4634)] = 98736, + [SMALL_STATE(4635)] = 98775, + [SMALL_STATE(4636)] = 98816, + [SMALL_STATE(4637)] = 98855, + [SMALL_STATE(4638)] = 98896, + [SMALL_STATE(4639)] = 98937, + [SMALL_STATE(4640)] = 98978, + [SMALL_STATE(4641)] = 99019, + [SMALL_STATE(4642)] = 99058, + [SMALL_STATE(4643)] = 99097, + [SMALL_STATE(4644)] = 99135, + [SMALL_STATE(4645)] = 99175, + [SMALL_STATE(4646)] = 99219, + [SMALL_STATE(4647)] = 99257, + [SMALL_STATE(4648)] = 99297, + [SMALL_STATE(4649)] = 99337, + [SMALL_STATE(4650)] = 99377, + [SMALL_STATE(4651)] = 99415, + [SMALL_STATE(4652)] = 99453, + [SMALL_STATE(4653)] = 99491, + [SMALL_STATE(4654)] = 99531, + [SMALL_STATE(4655)] = 99571, + [SMALL_STATE(4656)] = 99611, + [SMALL_STATE(4657)] = 99651, + [SMALL_STATE(4658)] = 99689, + [SMALL_STATE(4659)] = 99727, + [SMALL_STATE(4660)] = 99767, + [SMALL_STATE(4661)] = 99807, + [SMALL_STATE(4662)] = 99845, + [SMALL_STATE(4663)] = 99883, + [SMALL_STATE(4664)] = 99921, + [SMALL_STATE(4665)] = 99959, + [SMALL_STATE(4666)] = 100001, + [SMALL_STATE(4667)] = 100039, + [SMALL_STATE(4668)] = 100077, + [SMALL_STATE(4669)] = 100121, + [SMALL_STATE(4670)] = 100159, + [SMALL_STATE(4671)] = 100197, + [SMALL_STATE(4672)] = 100235, + [SMALL_STATE(4673)] = 100275, + [SMALL_STATE(4674)] = 100313, + [SMALL_STATE(4675)] = 100351, + [SMALL_STATE(4676)] = 100389, + [SMALL_STATE(4677)] = 100429, + [SMALL_STATE(4678)] = 100467, + [SMALL_STATE(4679)] = 100505, + [SMALL_STATE(4680)] = 100543, + [SMALL_STATE(4681)] = 100583, + [SMALL_STATE(4682)] = 100621, + [SMALL_STATE(4683)] = 100659, + [SMALL_STATE(4684)] = 100699, + [SMALL_STATE(4685)] = 100739, + [SMALL_STATE(4686)] = 100779, + [SMALL_STATE(4687)] = 100819, + [SMALL_STATE(4688)] = 100857, + [SMALL_STATE(4689)] = 100897, + [SMALL_STATE(4690)] = 100935, + [SMALL_STATE(4691)] = 100975, + [SMALL_STATE(4692)] = 101015, + [SMALL_STATE(4693)] = 101055, + [SMALL_STATE(4694)] = 101095, + [SMALL_STATE(4695)] = 101135, + [SMALL_STATE(4696)] = 101175, + [SMALL_STATE(4697)] = 101215, + [SMALL_STATE(4698)] = 101255, + [SMALL_STATE(4699)] = 101295, + [SMALL_STATE(4700)] = 101335, + [SMALL_STATE(4701)] = 101375, + [SMALL_STATE(4702)] = 101415, + [SMALL_STATE(4703)] = 101455, + [SMALL_STATE(4704)] = 101493, + [SMALL_STATE(4705)] = 101533, + [SMALL_STATE(4706)] = 101573, + [SMALL_STATE(4707)] = 101613, + [SMALL_STATE(4708)] = 101653, + [SMALL_STATE(4709)] = 101693, + [SMALL_STATE(4710)] = 101733, + [SMALL_STATE(4711)] = 101771, + [SMALL_STATE(4712)] = 101809, + [SMALL_STATE(4713)] = 101847, + [SMALL_STATE(4714)] = 101893, + [SMALL_STATE(4715)] = 101933, + [SMALL_STATE(4716)] = 101973, + [SMALL_STATE(4717)] = 102013, + [SMALL_STATE(4718)] = 102053, + [SMALL_STATE(4719)] = 102093, + [SMALL_STATE(4720)] = 102133, + [SMALL_STATE(4721)] = 102173, + [SMALL_STATE(4722)] = 102213, + [SMALL_STATE(4723)] = 102253, + [SMALL_STATE(4724)] = 102293, + [SMALL_STATE(4725)] = 102333, + [SMALL_STATE(4726)] = 102373, + [SMALL_STATE(4727)] = 102411, + [SMALL_STATE(4728)] = 102451, + [SMALL_STATE(4729)] = 102491, + [SMALL_STATE(4730)] = 102531, + [SMALL_STATE(4731)] = 102571, + [SMALL_STATE(4732)] = 102611, + [SMALL_STATE(4733)] = 102651, + [SMALL_STATE(4734)] = 102691, + [SMALL_STATE(4735)] = 102731, + [SMALL_STATE(4736)] = 102771, + [SMALL_STATE(4737)] = 102813, + [SMALL_STATE(4738)] = 102851, + [SMALL_STATE(4739)] = 102891, + [SMALL_STATE(4740)] = 102929, + [SMALL_STATE(4741)] = 102969, + [SMALL_STATE(4742)] = 103011, + [SMALL_STATE(4743)] = 103049, + [SMALL_STATE(4744)] = 103089, + [SMALL_STATE(4745)] = 103129, + [SMALL_STATE(4746)] = 103169, + [SMALL_STATE(4747)] = 103207, + [SMALL_STATE(4748)] = 103245, + [SMALL_STATE(4749)] = 103283, + [SMALL_STATE(4750)] = 103323, + [SMALL_STATE(4751)] = 103361, + [SMALL_STATE(4752)] = 103399, + [SMALL_STATE(4753)] = 103439, + [SMALL_STATE(4754)] = 103477, + [SMALL_STATE(4755)] = 103515, + [SMALL_STATE(4756)] = 103553, + [SMALL_STATE(4757)] = 103591, + [SMALL_STATE(4758)] = 103629, + [SMALL_STATE(4759)] = 103667, + [SMALL_STATE(4760)] = 103705, + [SMALL_STATE(4761)] = 103745, + [SMALL_STATE(4762)] = 103785, + [SMALL_STATE(4763)] = 103825, + [SMALL_STATE(4764)] = 103865, + [SMALL_STATE(4765)] = 103905, + [SMALL_STATE(4766)] = 103945, + [SMALL_STATE(4767)] = 103989, + [SMALL_STATE(4768)] = 104031, + [SMALL_STATE(4769)] = 104073, + [SMALL_STATE(4770)] = 104113, + [SMALL_STATE(4771)] = 104153, + [SMALL_STATE(4772)] = 104193, + [SMALL_STATE(4773)] = 104233, + [SMALL_STATE(4774)] = 104273, + [SMALL_STATE(4775)] = 104313, + [SMALL_STATE(4776)] = 104353, + [SMALL_STATE(4777)] = 104398, + [SMALL_STATE(4778)] = 104435, + [SMALL_STATE(4779)] = 104472, + [SMALL_STATE(4780)] = 104509, + [SMALL_STATE(4781)] = 104546, + [SMALL_STATE(4782)] = 104583, + [SMALL_STATE(4783)] = 104620, + [SMALL_STATE(4784)] = 104657, + [SMALL_STATE(4785)] = 104694, + [SMALL_STATE(4786)] = 104731, + [SMALL_STATE(4787)] = 104770, + [SMALL_STATE(4788)] = 104807, + [SMALL_STATE(4789)] = 104846, + [SMALL_STATE(4790)] = 104883, + [SMALL_STATE(4791)] = 104920, + [SMALL_STATE(4792)] = 104957, + [SMALL_STATE(4793)] = 104994, + [SMALL_STATE(4794)] = 105031, + [SMALL_STATE(4795)] = 105068, + [SMALL_STATE(4796)] = 105105, + [SMALL_STATE(4797)] = 105142, + [SMALL_STATE(4798)] = 105179, + [SMALL_STATE(4799)] = 105216, + [SMALL_STATE(4800)] = 105253, + [SMALL_STATE(4801)] = 105290, + [SMALL_STATE(4802)] = 105327, + [SMALL_STATE(4803)] = 105364, + [SMALL_STATE(4804)] = 105401, + [SMALL_STATE(4805)] = 105438, + [SMALL_STATE(4806)] = 105475, + [SMALL_STATE(4807)] = 105512, + [SMALL_STATE(4808)] = 105549, + [SMALL_STATE(4809)] = 105586, + [SMALL_STATE(4810)] = 105623, + [SMALL_STATE(4811)] = 105660, + [SMALL_STATE(4812)] = 105697, + [SMALL_STATE(4813)] = 105734, + [SMALL_STATE(4814)] = 105771, + [SMALL_STATE(4815)] = 105808, + [SMALL_STATE(4816)] = 105845, + [SMALL_STATE(4817)] = 105882, + [SMALL_STATE(4818)] = 105921, + [SMALL_STATE(4819)] = 105958, + [SMALL_STATE(4820)] = 105995, + [SMALL_STATE(4821)] = 106032, + [SMALL_STATE(4822)] = 106069, + [SMALL_STATE(4823)] = 106106, + [SMALL_STATE(4824)] = 106143, + [SMALL_STATE(4825)] = 106180, + [SMALL_STATE(4826)] = 106217, + [SMALL_STATE(4827)] = 106254, + [SMALL_STATE(4828)] = 106291, + [SMALL_STATE(4829)] = 106328, + [SMALL_STATE(4830)] = 106365, + [SMALL_STATE(4831)] = 106402, + [SMALL_STATE(4832)] = 106439, + [SMALL_STATE(4833)] = 106476, + [SMALL_STATE(4834)] = 106513, + [SMALL_STATE(4835)] = 106550, + [SMALL_STATE(4836)] = 106587, + [SMALL_STATE(4837)] = 106624, + [SMALL_STATE(4838)] = 106661, + [SMALL_STATE(4839)] = 106698, + [SMALL_STATE(4840)] = 106735, + [SMALL_STATE(4841)] = 106772, + [SMALL_STATE(4842)] = 106809, + [SMALL_STATE(4843)] = 106846, + [SMALL_STATE(4844)] = 106883, + [SMALL_STATE(4845)] = 106920, + [SMALL_STATE(4846)] = 106957, + [SMALL_STATE(4847)] = 106994, + [SMALL_STATE(4848)] = 107031, + [SMALL_STATE(4849)] = 107068, + [SMALL_STATE(4850)] = 107105, + [SMALL_STATE(4851)] = 107142, + [SMALL_STATE(4852)] = 107179, + [SMALL_STATE(4853)] = 107216, + [SMALL_STATE(4854)] = 107253, + [SMALL_STATE(4855)] = 107290, + [SMALL_STATE(4856)] = 107327, + [SMALL_STATE(4857)] = 107364, + [SMALL_STATE(4858)] = 107401, + [SMALL_STATE(4859)] = 107438, + [SMALL_STATE(4860)] = 107475, + [SMALL_STATE(4861)] = 107512, + [SMALL_STATE(4862)] = 107549, + [SMALL_STATE(4863)] = 107586, + [SMALL_STATE(4864)] = 107623, + [SMALL_STATE(4865)] = 107660, + [SMALL_STATE(4866)] = 107697, + [SMALL_STATE(4867)] = 107734, + [SMALL_STATE(4868)] = 107771, + [SMALL_STATE(4869)] = 107808, + [SMALL_STATE(4870)] = 107845, + [SMALL_STATE(4871)] = 107882, + [SMALL_STATE(4872)] = 107919, + [SMALL_STATE(4873)] = 107956, + [SMALL_STATE(4874)] = 107993, + [SMALL_STATE(4875)] = 108030, + [SMALL_STATE(4876)] = 108067, + [SMALL_STATE(4877)] = 108104, + [SMALL_STATE(4878)] = 108141, + [SMALL_STATE(4879)] = 108178, + [SMALL_STATE(4880)] = 108215, + [SMALL_STATE(4881)] = 108252, + [SMALL_STATE(4882)] = 108289, + [SMALL_STATE(4883)] = 108326, + [SMALL_STATE(4884)] = 108363, + [SMALL_STATE(4885)] = 108400, + [SMALL_STATE(4886)] = 108437, + [SMALL_STATE(4887)] = 108474, + [SMALL_STATE(4888)] = 108511, + [SMALL_STATE(4889)] = 108548, + [SMALL_STATE(4890)] = 108585, + [SMALL_STATE(4891)] = 108622, + [SMALL_STATE(4892)] = 108659, + [SMALL_STATE(4893)] = 108696, + [SMALL_STATE(4894)] = 108733, + [SMALL_STATE(4895)] = 108770, + [SMALL_STATE(4896)] = 108807, + [SMALL_STATE(4897)] = 108844, + [SMALL_STATE(4898)] = 108881, + [SMALL_STATE(4899)] = 108918, + [SMALL_STATE(4900)] = 108955, + [SMALL_STATE(4901)] = 108994, + [SMALL_STATE(4902)] = 109031, + [SMALL_STATE(4903)] = 109068, + [SMALL_STATE(4904)] = 109105, + [SMALL_STATE(4905)] = 109142, + [SMALL_STATE(4906)] = 109179, + [SMALL_STATE(4907)] = 109216, + [SMALL_STATE(4908)] = 109253, + [SMALL_STATE(4909)] = 109290, + [SMALL_STATE(4910)] = 109327, + [SMALL_STATE(4911)] = 109364, + [SMALL_STATE(4912)] = 109401, + [SMALL_STATE(4913)] = 109438, + [SMALL_STATE(4914)] = 109475, + [SMALL_STATE(4915)] = 109512, + [SMALL_STATE(4916)] = 109549, + [SMALL_STATE(4917)] = 109586, + [SMALL_STATE(4918)] = 109623, + [SMALL_STATE(4919)] = 109660, + [SMALL_STATE(4920)] = 109697, + [SMALL_STATE(4921)] = 109734, + [SMALL_STATE(4922)] = 109771, + [SMALL_STATE(4923)] = 109808, + [SMALL_STATE(4924)] = 109845, + [SMALL_STATE(4925)] = 109884, + [SMALL_STATE(4926)] = 109921, + [SMALL_STATE(4927)] = 109958, + [SMALL_STATE(4928)] = 109995, + [SMALL_STATE(4929)] = 110032, + [SMALL_STATE(4930)] = 110069, + [SMALL_STATE(4931)] = 110106, + [SMALL_STATE(4932)] = 110143, + [SMALL_STATE(4933)] = 110180, + [SMALL_STATE(4934)] = 110217, + [SMALL_STATE(4935)] = 110256, + [SMALL_STATE(4936)] = 110293, + [SMALL_STATE(4937)] = 110330, + [SMALL_STATE(4938)] = 110367, + [SMALL_STATE(4939)] = 110404, + [SMALL_STATE(4940)] = 110441, + [SMALL_STATE(4941)] = 110480, + [SMALL_STATE(4942)] = 110517, + [SMALL_STATE(4943)] = 110554, + [SMALL_STATE(4944)] = 110591, + [SMALL_STATE(4945)] = 110628, + [SMALL_STATE(4946)] = 110665, + [SMALL_STATE(4947)] = 110702, + [SMALL_STATE(4948)] = 110739, + [SMALL_STATE(4949)] = 110776, + [SMALL_STATE(4950)] = 110813, + [SMALL_STATE(4951)] = 110850, + [SMALL_STATE(4952)] = 110887, + [SMALL_STATE(4953)] = 110924, + [SMALL_STATE(4954)] = 110961, + [SMALL_STATE(4955)] = 111000, + [SMALL_STATE(4956)] = 111037, + [SMALL_STATE(4957)] = 111074, + [SMALL_STATE(4958)] = 111111, + [SMALL_STATE(4959)] = 111148, + [SMALL_STATE(4960)] = 111185, + [SMALL_STATE(4961)] = 111222, + [SMALL_STATE(4962)] = 111259, + [SMALL_STATE(4963)] = 111296, + [SMALL_STATE(4964)] = 111333, + [SMALL_STATE(4965)] = 111370, + [SMALL_STATE(4966)] = 111409, + [SMALL_STATE(4967)] = 111446, + [SMALL_STATE(4968)] = 111483, + [SMALL_STATE(4969)] = 111520, + [SMALL_STATE(4970)] = 111557, + [SMALL_STATE(4971)] = 111594, + [SMALL_STATE(4972)] = 111631, + [SMALL_STATE(4973)] = 111668, + [SMALL_STATE(4974)] = 111705, + [SMALL_STATE(4975)] = 111742, + [SMALL_STATE(4976)] = 111779, + [SMALL_STATE(4977)] = 111816, + [SMALL_STATE(4978)] = 111853, + [SMALL_STATE(4979)] = 111890, + [SMALL_STATE(4980)] = 111927, + [SMALL_STATE(4981)] = 111964, + [SMALL_STATE(4982)] = 112001, + [SMALL_STATE(4983)] = 112038, + [SMALL_STATE(4984)] = 112075, + [SMALL_STATE(4985)] = 112112, + [SMALL_STATE(4986)] = 112149, + [SMALL_STATE(4987)] = 112186, + [SMALL_STATE(4988)] = 112223, + [SMALL_STATE(4989)] = 112260, + [SMALL_STATE(4990)] = 112297, + [SMALL_STATE(4991)] = 112334, + [SMALL_STATE(4992)] = 112371, + [SMALL_STATE(4993)] = 112408, + [SMALL_STATE(4994)] = 112445, + [SMALL_STATE(4995)] = 112482, + [SMALL_STATE(4996)] = 112519, + [SMALL_STATE(4997)] = 112556, + [SMALL_STATE(4998)] = 112595, + [SMALL_STATE(4999)] = 112632, + [SMALL_STATE(5000)] = 112669, + [SMALL_STATE(5001)] = 112706, + [SMALL_STATE(5002)] = 112743, + [SMALL_STATE(5003)] = 112780, + [SMALL_STATE(5004)] = 112817, + [SMALL_STATE(5005)] = 112854, + [SMALL_STATE(5006)] = 112897, + [SMALL_STATE(5007)] = 112934, + [SMALL_STATE(5008)] = 112971, + [SMALL_STATE(5009)] = 113008, + [SMALL_STATE(5010)] = 113045, + [SMALL_STATE(5011)] = 113082, + [SMALL_STATE(5012)] = 113119, + [SMALL_STATE(5013)] = 113156, + [SMALL_STATE(5014)] = 113193, + [SMALL_STATE(5015)] = 113232, + [SMALL_STATE(5016)] = 113269, + [SMALL_STATE(5017)] = 113306, + [SMALL_STATE(5018)] = 113343, + [SMALL_STATE(5019)] = 113382, + [SMALL_STATE(5020)] = 113419, + [SMALL_STATE(5021)] = 113456, + [SMALL_STATE(5022)] = 113493, + [SMALL_STATE(5023)] = 113530, + [SMALL_STATE(5024)] = 113567, + [SMALL_STATE(5025)] = 113604, + [SMALL_STATE(5026)] = 113641, + [SMALL_STATE(5027)] = 113678, + [SMALL_STATE(5028)] = 113715, + [SMALL_STATE(5029)] = 113752, + [SMALL_STATE(5030)] = 113789, + [SMALL_STATE(5031)] = 113826, + [SMALL_STATE(5032)] = 113863, + [SMALL_STATE(5033)] = 113900, + [SMALL_STATE(5034)] = 113937, + [SMALL_STATE(5035)] = 113974, + [SMALL_STATE(5036)] = 114011, + [SMALL_STATE(5037)] = 114048, + [SMALL_STATE(5038)] = 114085, + [SMALL_STATE(5039)] = 114122, + [SMALL_STATE(5040)] = 114159, + [SMALL_STATE(5041)] = 114196, + [SMALL_STATE(5042)] = 114233, + [SMALL_STATE(5043)] = 114270, + [SMALL_STATE(5044)] = 114307, + [SMALL_STATE(5045)] = 114344, + [SMALL_STATE(5046)] = 114381, + [SMALL_STATE(5047)] = 114418, + [SMALL_STATE(5048)] = 114455, + [SMALL_STATE(5049)] = 114492, + [SMALL_STATE(5050)] = 114529, + [SMALL_STATE(5051)] = 114566, + [SMALL_STATE(5052)] = 114605, + [SMALL_STATE(5053)] = 114642, + [SMALL_STATE(5054)] = 114679, + [SMALL_STATE(5055)] = 114716, + [SMALL_STATE(5056)] = 114753, + [SMALL_STATE(5057)] = 114790, + [SMALL_STATE(5058)] = 114827, + [SMALL_STATE(5059)] = 114864, + [SMALL_STATE(5060)] = 114903, + [SMALL_STATE(5061)] = 114940, + [SMALL_STATE(5062)] = 114977, + [SMALL_STATE(5063)] = 115014, + [SMALL_STATE(5064)] = 115051, + [SMALL_STATE(5065)] = 115088, + [SMALL_STATE(5066)] = 115125, + [SMALL_STATE(5067)] = 115168, + [SMALL_STATE(5068)] = 115205, + [SMALL_STATE(5069)] = 115245, + [SMALL_STATE(5070)] = 115307, + [SMALL_STATE(5071)] = 115345, + [SMALL_STATE(5072)] = 115383, + [SMALL_STATE(5073)] = 115421, + [SMALL_STATE(5074)] = 115459, + [SMALL_STATE(5075)] = 115509, + [SMALL_STATE(5076)] = 115547, + [SMALL_STATE(5077)] = 115587, + [SMALL_STATE(5078)] = 115649, + [SMALL_STATE(5079)] = 115687, + [SMALL_STATE(5080)] = 115727, + [SMALL_STATE(5081)] = 115769, + [SMALL_STATE(5082)] = 115828, + [SMALL_STATE(5083)] = 115865, + [SMALL_STATE(5084)] = 115924, + [SMALL_STATE(5085)] = 115961, + [SMALL_STATE(5086)] = 115998, + [SMALL_STATE(5087)] = 116057, + [SMALL_STATE(5088)] = 116094, + [SMALL_STATE(5089)] = 116153, + [SMALL_STATE(5090)] = 116212, + [SMALL_STATE(5091)] = 116271, + [SMALL_STATE(5092)] = 116308, + [SMALL_STATE(5093)] = 116367, + [SMALL_STATE(5094)] = 116404, + [SMALL_STATE(5095)] = 116441, + [SMALL_STATE(5096)] = 116478, + [SMALL_STATE(5097)] = 116515, + [SMALL_STATE(5098)] = 116574, + [SMALL_STATE(5099)] = 116633, + [SMALL_STATE(5100)] = 116692, + [SMALL_STATE(5101)] = 116729, + [SMALL_STATE(5102)] = 116766, + [SMALL_STATE(5103)] = 116825, + [SMALL_STATE(5104)] = 116884, + [SMALL_STATE(5105)] = 116943, + [SMALL_STATE(5106)] = 117002, + [SMALL_STATE(5107)] = 117039, + [SMALL_STATE(5108)] = 117073, + [SMALL_STATE(5109)] = 117107, + [SMALL_STATE(5110)] = 117141, + [SMALL_STATE(5111)] = 117175, + [SMALL_STATE(5112)] = 117209, + [SMALL_STATE(5113)] = 117273, + [SMALL_STATE(5114)] = 117307, + [SMALL_STATE(5115)] = 117371, + [SMALL_STATE(5116)] = 117405, + [SMALL_STATE(5117)] = 117439, + [SMALL_STATE(5118)] = 117473, + [SMALL_STATE(5119)] = 117507, + [SMALL_STATE(5120)] = 117541, + [SMALL_STATE(5121)] = 117605, + [SMALL_STATE(5122)] = 117639, + [SMALL_STATE(5123)] = 117673, + [SMALL_STATE(5124)] = 117707, + [SMALL_STATE(5125)] = 117763, + [SMALL_STATE(5126)] = 117797, + [SMALL_STATE(5127)] = 117831, + [SMALL_STATE(5128)] = 117865, + [SMALL_STATE(5129)] = 117917, + [SMALL_STATE(5130)] = 117951, + [SMALL_STATE(5131)] = 117985, + [SMALL_STATE(5132)] = 118019, + [SMALL_STATE(5133)] = 118053, + [SMALL_STATE(5134)] = 118087, + [SMALL_STATE(5135)] = 118121, + [SMALL_STATE(5136)] = 118155, + [SMALL_STATE(5137)] = 118189, + [SMALL_STATE(5138)] = 118223, + [SMALL_STATE(5139)] = 118257, + [SMALL_STATE(5140)] = 118291, + [SMALL_STATE(5141)] = 118325, + [SMALL_STATE(5142)] = 118379, + [SMALL_STATE(5143)] = 118413, + [SMALL_STATE(5144)] = 118447, + [SMALL_STATE(5145)] = 118481, + [SMALL_STATE(5146)] = 118515, + [SMALL_STATE(5147)] = 118549, + [SMALL_STATE(5148)] = 118583, + [SMALL_STATE(5149)] = 118617, + [SMALL_STATE(5150)] = 118651, + [SMALL_STATE(5151)] = 118685, + [SMALL_STATE(5152)] = 118719, + [SMALL_STATE(5153)] = 118753, + [SMALL_STATE(5154)] = 118787, + [SMALL_STATE(5155)] = 118851, + [SMALL_STATE(5156)] = 118885, + [SMALL_STATE(5157)] = 118919, + [SMALL_STATE(5158)] = 118959, + [SMALL_STATE(5159)] = 118995, + [SMALL_STATE(5160)] = 119051, + [SMALL_STATE(5161)] = 119101, + [SMALL_STATE(5162)] = 119134, + [SMALL_STATE(5163)] = 119169, + [SMALL_STATE(5164)] = 119203, + [SMALL_STATE(5165)] = 119237, + [SMALL_STATE(5166)] = 119271, + [SMALL_STATE(5167)] = 119301, + [SMALL_STATE(5168)] = 119331, + [SMALL_STATE(5169)] = 119361, + [SMALL_STATE(5170)] = 119391, + [SMALL_STATE(5171)] = 119425, + [SMALL_STATE(5172)] = 119455, + [SMALL_STATE(5173)] = 119485, + [SMALL_STATE(5174)] = 119515, + [SMALL_STATE(5175)] = 119553, + [SMALL_STATE(5176)] = 119583, + [SMALL_STATE(5177)] = 119638, + [SMALL_STATE(5178)] = 119687, + [SMALL_STATE(5179)] = 119736, + [SMALL_STATE(5180)] = 119781, + [SMALL_STATE(5181)] = 119826, + [SMALL_STATE(5182)] = 119875, + [SMALL_STATE(5183)] = 119920, + [SMALL_STATE(5184)] = 119949, + [SMALL_STATE(5185)] = 119978, + [SMALL_STATE(5186)] = 120033, + [SMALL_STATE(5187)] = 120082, + [SMALL_STATE(5188)] = 120129, + [SMALL_STATE(5189)] = 120178, + [SMALL_STATE(5190)] = 120209, + [SMALL_STATE(5191)] = 120258, + [SMALL_STATE(5192)] = 120291, + [SMALL_STATE(5193)] = 120340, + [SMALL_STATE(5194)] = 120369, + [SMALL_STATE(5195)] = 120418, + [SMALL_STATE(5196)] = 120449, + [SMALL_STATE(5197)] = 120498, + [SMALL_STATE(5198)] = 120547, + [SMALL_STATE(5199)] = 120578, + [SMALL_STATE(5200)] = 120607, + [SMALL_STATE(5201)] = 120636, + [SMALL_STATE(5202)] = 120665, + [SMALL_STATE(5203)] = 120694, + [SMALL_STATE(5204)] = 120723, + [SMALL_STATE(5205)] = 120752, + [SMALL_STATE(5206)] = 120781, + [SMALL_STATE(5207)] = 120810, + [SMALL_STATE(5208)] = 120859, + [SMALL_STATE(5209)] = 120914, + [SMALL_STATE(5210)] = 120942, + [SMALL_STATE(5211)] = 120990, + [SMALL_STATE(5212)] = 121038, + [SMALL_STATE(5213)] = 121086, + [SMALL_STATE(5214)] = 121124, + [SMALL_STATE(5215)] = 121172, + [SMALL_STATE(5216)] = 121200, + [SMALL_STATE(5217)] = 121246, + [SMALL_STATE(5218)] = 121274, + [SMALL_STATE(5219)] = 121302, + [SMALL_STATE(5220)] = 121330, + [SMALL_STATE(5221)] = 121378, + [SMALL_STATE(5222)] = 121406, + [SMALL_STATE(5223)] = 121454, + [SMALL_STATE(5224)] = 121482, + [SMALL_STATE(5225)] = 121530, + [SMALL_STATE(5226)] = 121558, + [SMALL_STATE(5227)] = 121606, + [SMALL_STATE(5228)] = 121654, + [SMALL_STATE(5229)] = 121702, + [SMALL_STATE(5230)] = 121750, + [SMALL_STATE(5231)] = 121778, + [SMALL_STATE(5232)] = 121806, + [SMALL_STATE(5233)] = 121854, + [SMALL_STATE(5234)] = 121882, + [SMALL_STATE(5235)] = 121926, + [SMALL_STATE(5236)] = 121974, + [SMALL_STATE(5237)] = 122006, + [SMALL_STATE(5238)] = 122034, + [SMALL_STATE(5239)] = 122082, + [SMALL_STATE(5240)] = 122110, + [SMALL_STATE(5241)] = 122138, + [SMALL_STATE(5242)] = 122186, + [SMALL_STATE(5243)] = 122234, + [SMALL_STATE(5244)] = 122284, + [SMALL_STATE(5245)] = 122324, + [SMALL_STATE(5246)] = 122352, + [SMALL_STATE(5247)] = 122380, + [SMALL_STATE(5248)] = 122428, + [SMALL_STATE(5249)] = 122462, + [SMALL_STATE(5250)] = 122510, + [SMALL_STATE(5251)] = 122558, + [SMALL_STATE(5252)] = 122586, + [SMALL_STATE(5253)] = 122634, + [SMALL_STATE(5254)] = 122666, + [SMALL_STATE(5255)] = 122698, + [SMALL_STATE(5256)] = 122746, + [SMALL_STATE(5257)] = 122794, + [SMALL_STATE(5258)] = 122822, + [SMALL_STATE(5259)] = 122870, + [SMALL_STATE(5260)] = 122918, + [SMALL_STATE(5261)] = 122946, + [SMALL_STATE(5262)] = 122994, + [SMALL_STATE(5263)] = 123042, + [SMALL_STATE(5264)] = 123090, + [SMALL_STATE(5265)] = 123118, + [SMALL_STATE(5266)] = 123146, + [SMALL_STATE(5267)] = 123178, + [SMALL_STATE(5268)] = 123226, + [SMALL_STATE(5269)] = 123274, + [SMALL_STATE(5270)] = 123302, + [SMALL_STATE(5271)] = 123330, + [SMALL_STATE(5272)] = 123358, + [SMALL_STATE(5273)] = 123406, + [SMALL_STATE(5274)] = 123434, + [SMALL_STATE(5275)] = 123462, + [SMALL_STATE(5276)] = 123490, + [SMALL_STATE(5277)] = 123538, + [SMALL_STATE(5278)] = 123582, + [SMALL_STATE(5279)] = 123626, + [SMALL_STATE(5280)] = 123674, + [SMALL_STATE(5281)] = 123716, + [SMALL_STATE(5282)] = 123764, + [SMALL_STATE(5283)] = 123812, + [SMALL_STATE(5284)] = 123840, + [SMALL_STATE(5285)] = 123888, + [SMALL_STATE(5286)] = 123936, + [SMALL_STATE(5287)] = 123964, + [SMALL_STATE(5288)] = 124012, + [SMALL_STATE(5289)] = 124056, + [SMALL_STATE(5290)] = 124104, + [SMALL_STATE(5291)] = 124152, + [SMALL_STATE(5292)] = 124180, + [SMALL_STATE(5293)] = 124218, + [SMALL_STATE(5294)] = 124266, + [SMALL_STATE(5295)] = 124294, + [SMALL_STATE(5296)] = 124322, + [SMALL_STATE(5297)] = 124370, + [SMALL_STATE(5298)] = 124398, + [SMALL_STATE(5299)] = 124446, + [SMALL_STATE(5300)] = 124494, + [SMALL_STATE(5301)] = 124522, + [SMALL_STATE(5302)] = 124550, + [SMALL_STATE(5303)] = 124582, + [SMALL_STATE(5304)] = 124610, + [SMALL_STATE(5305)] = 124642, + [SMALL_STATE(5306)] = 124670, + [SMALL_STATE(5307)] = 124698, + [SMALL_STATE(5308)] = 124728, + [SMALL_STATE(5309)] = 124756, + [SMALL_STATE(5310)] = 124788, + [SMALL_STATE(5311)] = 124836, + [SMALL_STATE(5312)] = 124864, + [SMALL_STATE(5313)] = 124912, + [SMALL_STATE(5314)] = 124940, + [SMALL_STATE(5315)] = 124976, + [SMALL_STATE(5316)] = 125024, + [SMALL_STATE(5317)] = 125052, + [SMALL_STATE(5318)] = 125100, + [SMALL_STATE(5319)] = 125132, + [SMALL_STATE(5320)] = 125180, + [SMALL_STATE(5321)] = 125208, + [SMALL_STATE(5322)] = 125236, + [SMALL_STATE(5323)] = 125284, + [SMALL_STATE(5324)] = 125332, + [SMALL_STATE(5325)] = 125380, + [SMALL_STATE(5326)] = 125426, + [SMALL_STATE(5327)] = 125474, + [SMALL_STATE(5328)] = 125520, + [SMALL_STATE(5329)] = 125564, + [SMALL_STATE(5330)] = 125592, + [SMALL_STATE(5331)] = 125634, + [SMALL_STATE(5332)] = 125664, + [SMALL_STATE(5333)] = 125692, + [SMALL_STATE(5334)] = 125726, + [SMALL_STATE(5335)] = 125771, + [SMALL_STATE(5336)] = 125816, + [SMALL_STATE(5337)] = 125859, + [SMALL_STATE(5338)] = 125908, + [SMALL_STATE(5339)] = 125953, + [SMALL_STATE(5340)] = 125994, + [SMALL_STATE(5341)] = 126039, + [SMALL_STATE(5342)] = 126084, + [SMALL_STATE(5343)] = 126129, + [SMALL_STATE(5344)] = 126172, + [SMALL_STATE(5345)] = 126217, + [SMALL_STATE(5346)] = 126262, + [SMALL_STATE(5347)] = 126307, + [SMALL_STATE(5348)] = 126334, + [SMALL_STATE(5349)] = 126379, + [SMALL_STATE(5350)] = 126424, + [SMALL_STATE(5351)] = 126473, + [SMALL_STATE(5352)] = 126518, + [SMALL_STATE(5353)] = 126563, + [SMALL_STATE(5354)] = 126608, + [SMALL_STATE(5355)] = 126653, + [SMALL_STATE(5356)] = 126698, + [SMALL_STATE(5357)] = 126743, + [SMALL_STATE(5358)] = 126770, + [SMALL_STATE(5359)] = 126815, + [SMALL_STATE(5360)] = 126860, + [SMALL_STATE(5361)] = 126905, + [SMALL_STATE(5362)] = 126950, + [SMALL_STATE(5363)] = 126995, + [SMALL_STATE(5364)] = 127040, + [SMALL_STATE(5365)] = 127085, + [SMALL_STATE(5366)] = 127126, + [SMALL_STATE(5367)] = 127171, + [SMALL_STATE(5368)] = 127216, + [SMALL_STATE(5369)] = 127261, + [SMALL_STATE(5370)] = 127306, + [SMALL_STATE(5371)] = 127351, + [SMALL_STATE(5372)] = 127396, + [SMALL_STATE(5373)] = 127436, + [SMALL_STATE(5374)] = 127476, + [SMALL_STATE(5375)] = 127502, + [SMALL_STATE(5376)] = 127528, + [SMALL_STATE(5377)] = 127568, + [SMALL_STATE(5378)] = 127608, + [SMALL_STATE(5379)] = 127648, + [SMALL_STATE(5380)] = 127688, + [SMALL_STATE(5381)] = 127728, + [SMALL_STATE(5382)] = 127768, + [SMALL_STATE(5383)] = 127808, + [SMALL_STATE(5384)] = 127848, + [SMALL_STATE(5385)] = 127874, + [SMALL_STATE(5386)] = 127914, + [SMALL_STATE(5387)] = 127940, + [SMALL_STATE(5388)] = 127980, + [SMALL_STATE(5389)] = 128006, + [SMALL_STATE(5390)] = 128046, + [SMALL_STATE(5391)] = 128086, + [SMALL_STATE(5392)] = 128112, + [SMALL_STATE(5393)] = 128137, + [SMALL_STATE(5394)] = 128162, + [SMALL_STATE(5395)] = 128187, + [SMALL_STATE(5396)] = 128212, + [SMALL_STATE(5397)] = 128237, + [SMALL_STATE(5398)] = 128262, + [SMALL_STATE(5399)] = 128287, + [SMALL_STATE(5400)] = 128321, + [SMALL_STATE(5401)] = 128347, + [SMALL_STATE(5402)] = 128381, + [SMALL_STATE(5403)] = 128407, + [SMALL_STATE(5404)] = 128441, + [SMALL_STATE(5405)] = 128475, + [SMALL_STATE(5406)] = 128509, + [SMALL_STATE(5407)] = 128543, + [SMALL_STATE(5408)] = 128577, + [SMALL_STATE(5409)] = 128603, + [SMALL_STATE(5410)] = 128629, + [SMALL_STATE(5411)] = 128655, + [SMALL_STATE(5412)] = 128681, + [SMALL_STATE(5413)] = 128707, + [SMALL_STATE(5414)] = 128733, + [SMALL_STATE(5415)] = 128766, + [SMALL_STATE(5416)] = 128803, + [SMALL_STATE(5417)] = 128828, + [SMALL_STATE(5418)] = 128865, + [SMALL_STATE(5419)] = 128898, + [SMALL_STATE(5420)] = 128923, + [SMALL_STATE(5421)] = 128956, + [SMALL_STATE(5422)] = 128993, + [SMALL_STATE(5423)] = 129026, + [SMALL_STATE(5424)] = 129059, + [SMALL_STATE(5425)] = 129096, + [SMALL_STATE(5426)] = 129129, + [SMALL_STATE(5427)] = 129166, + [SMALL_STATE(5428)] = 129199, + [SMALL_STATE(5429)] = 129236, + [SMALL_STATE(5430)] = 129269, + [SMALL_STATE(5431)] = 129306, + [SMALL_STATE(5432)] = 129339, + [SMALL_STATE(5433)] = 129372, + [SMALL_STATE(5434)] = 129409, + [SMALL_STATE(5435)] = 129442, + [SMALL_STATE(5436)] = 129479, + [SMALL_STATE(5437)] = 129516, + [SMALL_STATE(5438)] = 129549, + [SMALL_STATE(5439)] = 129586, + [SMALL_STATE(5440)] = 129623, + [SMALL_STATE(5441)] = 129660, + [SMALL_STATE(5442)] = 129697, + [SMALL_STATE(5443)] = 129730, + [SMALL_STATE(5444)] = 129767, + [SMALL_STATE(5445)] = 129800, + [SMALL_STATE(5446)] = 129837, + [SMALL_STATE(5447)] = 129874, + [SMALL_STATE(5448)] = 129911, + [SMALL_STATE(5449)] = 129944, + [SMALL_STATE(5450)] = 129981, + [SMALL_STATE(5451)] = 130018, + [SMALL_STATE(5452)] = 130055, + [SMALL_STATE(5453)] = 130092, + [SMALL_STATE(5454)] = 130117, + [SMALL_STATE(5455)] = 130154, + [SMALL_STATE(5456)] = 130191, + [SMALL_STATE(5457)] = 130222, + [SMALL_STATE(5458)] = 130255, + [SMALL_STATE(5459)] = 130292, + [SMALL_STATE(5460)] = 130315, + [SMALL_STATE(5461)] = 130340, + [SMALL_STATE(5462)] = 130363, + [SMALL_STATE(5463)] = 130388, + [SMALL_STATE(5464)] = 130425, + [SMALL_STATE(5465)] = 130450, + [SMALL_STATE(5466)] = 130473, + [SMALL_STATE(5467)] = 130496, + [SMALL_STATE(5468)] = 130519, + [SMALL_STATE(5469)] = 130552, + [SMALL_STATE(5470)] = 130589, + [SMALL_STATE(5471)] = 130614, + [SMALL_STATE(5472)] = 130637, + [SMALL_STATE(5473)] = 130674, + [SMALL_STATE(5474)] = 130711, + [SMALL_STATE(5475)] = 130744, + [SMALL_STATE(5476)] = 130777, + [SMALL_STATE(5477)] = 130814, + [SMALL_STATE(5478)] = 130839, + [SMALL_STATE(5479)] = 130862, + [SMALL_STATE(5480)] = 130895, + [SMALL_STATE(5481)] = 130928, + [SMALL_STATE(5482)] = 130961, + [SMALL_STATE(5483)] = 130994, + [SMALL_STATE(5484)] = 131019, + [SMALL_STATE(5485)] = 131052, + [SMALL_STATE(5486)] = 131077, + [SMALL_STATE(5487)] = 131100, + [SMALL_STATE(5488)] = 131125, + [SMALL_STATE(5489)] = 131150, + [SMALL_STATE(5490)] = 131183, + [SMALL_STATE(5491)] = 131220, + [SMALL_STATE(5492)] = 131257, + [SMALL_STATE(5493)] = 131279, + [SMALL_STATE(5494)] = 131301, + [SMALL_STATE(5495)] = 131323, + [SMALL_STATE(5496)] = 131345, + [SMALL_STATE(5497)] = 131367, + [SMALL_STATE(5498)] = 131389, + [SMALL_STATE(5499)] = 131411, + [SMALL_STATE(5500)] = 131433, + [SMALL_STATE(5501)] = 131475, + [SMALL_STATE(5502)] = 131497, + [SMALL_STATE(5503)] = 131541, + [SMALL_STATE(5504)] = 131583, + [SMALL_STATE(5505)] = 131605, + [SMALL_STATE(5506)] = 131627, + [SMALL_STATE(5507)] = 131649, + [SMALL_STATE(5508)] = 131671, + [SMALL_STATE(5509)] = 131693, + [SMALL_STATE(5510)] = 131715, + [SMALL_STATE(5511)] = 131737, + [SMALL_STATE(5512)] = 131759, + [SMALL_STATE(5513)] = 131781, + [SMALL_STATE(5514)] = 131803, + [SMALL_STATE(5515)] = 131825, + [SMALL_STATE(5516)] = 131847, + [SMALL_STATE(5517)] = 131868, + [SMALL_STATE(5518)] = 131897, + [SMALL_STATE(5519)] = 131934, + [SMALL_STATE(5520)] = 131962, + [SMALL_STATE(5521)] = 131984, + [SMALL_STATE(5522)] = 132006, + [SMALL_STATE(5523)] = 132028, + [SMALL_STATE(5524)] = 132050, + [SMALL_STATE(5525)] = 132078, + [SMALL_STATE(5526)] = 132100, + [SMALL_STATE(5527)] = 132122, + [SMALL_STATE(5528)] = 132144, + [SMALL_STATE(5529)] = 132172, + [SMALL_STATE(5530)] = 132194, + [SMALL_STATE(5531)] = 132222, + [SMALL_STATE(5532)] = 132254, + [SMALL_STATE(5533)] = 132282, + [SMALL_STATE(5534)] = 132304, + [SMALL_STATE(5535)] = 132332, + [SMALL_STATE(5536)] = 132360, + [SMALL_STATE(5537)] = 132388, + [SMALL_STATE(5538)] = 132420, + [SMALL_STATE(5539)] = 132448, + [SMALL_STATE(5540)] = 132476, + [SMALL_STATE(5541)] = 132498, + [SMALL_STATE(5542)] = 132526, + [SMALL_STATE(5543)] = 132554, + [SMALL_STATE(5544)] = 132582, + [SMALL_STATE(5545)] = 132610, + [SMALL_STATE(5546)] = 132638, + [SMALL_STATE(5547)] = 132666, + [SMALL_STATE(5548)] = 132694, + [SMALL_STATE(5549)] = 132722, + [SMALL_STATE(5550)] = 132744, + [SMALL_STATE(5551)] = 132772, + [SMALL_STATE(5552)] = 132800, + [SMALL_STATE(5553)] = 132828, + [SMALL_STATE(5554)] = 132856, + [SMALL_STATE(5555)] = 132884, + [SMALL_STATE(5556)] = 132916, + [SMALL_STATE(5557)] = 132938, + [SMALL_STATE(5558)] = 132966, + [SMALL_STATE(5559)] = 132994, + [SMALL_STATE(5560)] = 133022, + [SMALL_STATE(5561)] = 133050, + [SMALL_STATE(5562)] = 133078, + [SMALL_STATE(5563)] = 133100, + [SMALL_STATE(5564)] = 133128, + [SMALL_STATE(5565)] = 133156, + [SMALL_STATE(5566)] = 133178, + [SMALL_STATE(5567)] = 133206, + [SMALL_STATE(5568)] = 133228, + [SMALL_STATE(5569)] = 133250, + [SMALL_STATE(5570)] = 133278, + [SMALL_STATE(5571)] = 133306, + [SMALL_STATE(5572)] = 133334, + [SMALL_STATE(5573)] = 133362, + [SMALL_STATE(5574)] = 133390, + [SMALL_STATE(5575)] = 133418, + [SMALL_STATE(5576)] = 133444, + [SMALL_STATE(5577)] = 133472, + [SMALL_STATE(5578)] = 133500, + [SMALL_STATE(5579)] = 133519, + [SMALL_STATE(5580)] = 133552, + [SMALL_STATE(5581)] = 133579, + [SMALL_STATE(5582)] = 133606, + [SMALL_STATE(5583)] = 133639, + [SMALL_STATE(5584)] = 133658, + [SMALL_STATE(5585)] = 133687, + [SMALL_STATE(5586)] = 133706, + [SMALL_STATE(5587)] = 133725, + [SMALL_STATE(5588)] = 133758, + [SMALL_STATE(5589)] = 133777, + [SMALL_STATE(5590)] = 133796, + [SMALL_STATE(5591)] = 133815, + [SMALL_STATE(5592)] = 133834, + [SMALL_STATE(5593)] = 133853, + [SMALL_STATE(5594)] = 133872, + [SMALL_STATE(5595)] = 133897, + [SMALL_STATE(5596)] = 133916, + [SMALL_STATE(5597)] = 133935, + [SMALL_STATE(5598)] = 133954, + [SMALL_STATE(5599)] = 133983, + [SMALL_STATE(5600)] = 134012, + [SMALL_STATE(5601)] = 134031, + [SMALL_STATE(5602)] = 134056, + [SMALL_STATE(5603)] = 134075, + [SMALL_STATE(5604)] = 134102, + [SMALL_STATE(5605)] = 134127, + [SMALL_STATE(5606)] = 134146, + [SMALL_STATE(5607)] = 134179, + [SMALL_STATE(5608)] = 134207, + [SMALL_STATE(5609)] = 134227, + [SMALL_STATE(5610)] = 134247, + [SMALL_STATE(5611)] = 134267, + [SMALL_STATE(5612)] = 134295, + [SMALL_STATE(5613)] = 134315, + [SMALL_STATE(5614)] = 134335, + [SMALL_STATE(5615)] = 134355, + [SMALL_STATE(5616)] = 134375, + [SMALL_STATE(5617)] = 134395, + [SMALL_STATE(5618)] = 134415, + [SMALL_STATE(5619)] = 134435, + [SMALL_STATE(5620)] = 134458, + [SMALL_STATE(5621)] = 134481, + [SMALL_STATE(5622)] = 134504, + [SMALL_STATE(5623)] = 134527, + [SMALL_STATE(5624)] = 134550, + [SMALL_STATE(5625)] = 134573, + [SMALL_STATE(5626)] = 134596, + [SMALL_STATE(5627)] = 134619, + [SMALL_STATE(5628)] = 134642, + [SMALL_STATE(5629)] = 134665, + [SMALL_STATE(5630)] = 134688, + [SMALL_STATE(5631)] = 134711, + [SMALL_STATE(5632)] = 134734, + [SMALL_STATE(5633)] = 134757, + [SMALL_STATE(5634)] = 134780, + [SMALL_STATE(5635)] = 134803, + [SMALL_STATE(5636)] = 134826, + [SMALL_STATE(5637)] = 134849, + [SMALL_STATE(5638)] = 134872, + [SMALL_STATE(5639)] = 134895, + [SMALL_STATE(5640)] = 134918, + [SMALL_STATE(5641)] = 134941, + [SMALL_STATE(5642)] = 134964, + [SMALL_STATE(5643)] = 134987, + [SMALL_STATE(5644)] = 135010, + [SMALL_STATE(5645)] = 135033, + [SMALL_STATE(5646)] = 135056, + [SMALL_STATE(5647)] = 135079, + [SMALL_STATE(5648)] = 135102, + [SMALL_STATE(5649)] = 135125, + [SMALL_STATE(5650)] = 135148, + [SMALL_STATE(5651)] = 135171, + [SMALL_STATE(5652)] = 135194, + [SMALL_STATE(5653)] = 135217, + [SMALL_STATE(5654)] = 135240, + [SMALL_STATE(5655)] = 135263, + [SMALL_STATE(5656)] = 135292, + [SMALL_STATE(5657)] = 135315, + [SMALL_STATE(5658)] = 135338, + [SMALL_STATE(5659)] = 135361, + [SMALL_STATE(5660)] = 135384, + [SMALL_STATE(5661)] = 135407, + [SMALL_STATE(5662)] = 135430, + [SMALL_STATE(5663)] = 135453, + [SMALL_STATE(5664)] = 135476, + [SMALL_STATE(5665)] = 135499, + [SMALL_STATE(5666)] = 135522, + [SMALL_STATE(5667)] = 135545, + [SMALL_STATE(5668)] = 135568, + [SMALL_STATE(5669)] = 135591, + [SMALL_STATE(5670)] = 135614, + [SMALL_STATE(5671)] = 135637, + [SMALL_STATE(5672)] = 135660, + [SMALL_STATE(5673)] = 135683, + [SMALL_STATE(5674)] = 135706, + [SMALL_STATE(5675)] = 135729, + [SMALL_STATE(5676)] = 135752, + [SMALL_STATE(5677)] = 135775, + [SMALL_STATE(5678)] = 135798, + [SMALL_STATE(5679)] = 135821, + [SMALL_STATE(5680)] = 135844, + [SMALL_STATE(5681)] = 135867, + [SMALL_STATE(5682)] = 135890, + [SMALL_STATE(5683)] = 135913, + [SMALL_STATE(5684)] = 135936, + [SMALL_STATE(5685)] = 135959, + [SMALL_STATE(5686)] = 135982, + [SMALL_STATE(5687)] = 136005, + [SMALL_STATE(5688)] = 136028, + [SMALL_STATE(5689)] = 136051, + [SMALL_STATE(5690)] = 136080, + [SMALL_STATE(5691)] = 136103, + [SMALL_STATE(5692)] = 136126, + [SMALL_STATE(5693)] = 136149, + [SMALL_STATE(5694)] = 136172, + [SMALL_STATE(5695)] = 136195, + [SMALL_STATE(5696)] = 136218, + [SMALL_STATE(5697)] = 136241, + [SMALL_STATE(5698)] = 136264, + [SMALL_STATE(5699)] = 136287, + [SMALL_STATE(5700)] = 136310, + [SMALL_STATE(5701)] = 136333, + [SMALL_STATE(5702)] = 136356, + [SMALL_STATE(5703)] = 136379, + [SMALL_STATE(5704)] = 136402, + [SMALL_STATE(5705)] = 136425, + [SMALL_STATE(5706)] = 136448, + [SMALL_STATE(5707)] = 136471, + [SMALL_STATE(5708)] = 136494, + [SMALL_STATE(5709)] = 136523, + [SMALL_STATE(5710)] = 136546, + [SMALL_STATE(5711)] = 136569, + [SMALL_STATE(5712)] = 136592, + [SMALL_STATE(5713)] = 136615, + [SMALL_STATE(5714)] = 136638, + [SMALL_STATE(5715)] = 136661, + [SMALL_STATE(5716)] = 136684, + [SMALL_STATE(5717)] = 136707, + [SMALL_STATE(5718)] = 136730, + [SMALL_STATE(5719)] = 136753, + [SMALL_STATE(5720)] = 136776, + [SMALL_STATE(5721)] = 136799, + [SMALL_STATE(5722)] = 136822, + [SMALL_STATE(5723)] = 136845, + [SMALL_STATE(5724)] = 136868, + [SMALL_STATE(5725)] = 136891, + [SMALL_STATE(5726)] = 136914, + [SMALL_STATE(5727)] = 136937, + [SMALL_STATE(5728)] = 136960, + [SMALL_STATE(5729)] = 136983, + [SMALL_STATE(5730)] = 137006, + [SMALL_STATE(5731)] = 137029, + [SMALL_STATE(5732)] = 137052, + [SMALL_STATE(5733)] = 137075, + [SMALL_STATE(5734)] = 137098, + [SMALL_STATE(5735)] = 137121, + [SMALL_STATE(5736)] = 137144, + [SMALL_STATE(5737)] = 137167, + [SMALL_STATE(5738)] = 137190, + [SMALL_STATE(5739)] = 137213, + [SMALL_STATE(5740)] = 137236, + [SMALL_STATE(5741)] = 137259, + [SMALL_STATE(5742)] = 137282, + [SMALL_STATE(5743)] = 137305, + [SMALL_STATE(5744)] = 137328, + [SMALL_STATE(5745)] = 137351, + [SMALL_STATE(5746)] = 137374, + [SMALL_STATE(5747)] = 137397, + [SMALL_STATE(5748)] = 137420, + [SMALL_STATE(5749)] = 137443, + [SMALL_STATE(5750)] = 137466, + [SMALL_STATE(5751)] = 137489, + [SMALL_STATE(5752)] = 137512, + [SMALL_STATE(5753)] = 137535, + [SMALL_STATE(5754)] = 137558, + [SMALL_STATE(5755)] = 137581, + [SMALL_STATE(5756)] = 137604, + [SMALL_STATE(5757)] = 137627, + [SMALL_STATE(5758)] = 137650, + [SMALL_STATE(5759)] = 137673, + [SMALL_STATE(5760)] = 137696, + [SMALL_STATE(5761)] = 137719, + [SMALL_STATE(5762)] = 137742, + [SMALL_STATE(5763)] = 137765, + [SMALL_STATE(5764)] = 137788, + [SMALL_STATE(5765)] = 137811, + [SMALL_STATE(5766)] = 137834, + [SMALL_STATE(5767)] = 137857, + [SMALL_STATE(5768)] = 137880, + [SMALL_STATE(5769)] = 137903, + [SMALL_STATE(5770)] = 137926, + [SMALL_STATE(5771)] = 137949, + [SMALL_STATE(5772)] = 137972, + [SMALL_STATE(5773)] = 137995, + [SMALL_STATE(5774)] = 138018, + [SMALL_STATE(5775)] = 138041, + [SMALL_STATE(5776)] = 138064, + [SMALL_STATE(5777)] = 138087, + [SMALL_STATE(5778)] = 138110, + [SMALL_STATE(5779)] = 138133, + [SMALL_STATE(5780)] = 138156, + [SMALL_STATE(5781)] = 138179, + [SMALL_STATE(5782)] = 138202, + [SMALL_STATE(5783)] = 138225, + [SMALL_STATE(5784)] = 138248, + [SMALL_STATE(5785)] = 138271, + [SMALL_STATE(5786)] = 138294, + [SMALL_STATE(5787)] = 138317, + [SMALL_STATE(5788)] = 138340, + [SMALL_STATE(5789)] = 138363, + [SMALL_STATE(5790)] = 138386, + [SMALL_STATE(5791)] = 138409, + [SMALL_STATE(5792)] = 138432, + [SMALL_STATE(5793)] = 138455, + [SMALL_STATE(5794)] = 138478, + [SMALL_STATE(5795)] = 138501, + [SMALL_STATE(5796)] = 138524, + [SMALL_STATE(5797)] = 138547, + [SMALL_STATE(5798)] = 138570, + [SMALL_STATE(5799)] = 138593, + [SMALL_STATE(5800)] = 138616, + [SMALL_STATE(5801)] = 138639, + [SMALL_STATE(5802)] = 138662, + [SMALL_STATE(5803)] = 138685, + [SMALL_STATE(5804)] = 138708, + [SMALL_STATE(5805)] = 138731, + [SMALL_STATE(5806)] = 138754, + [SMALL_STATE(5807)] = 138777, + [SMALL_STATE(5808)] = 138800, + [SMALL_STATE(5809)] = 138823, + [SMALL_STATE(5810)] = 138846, + [SMALL_STATE(5811)] = 138869, + [SMALL_STATE(5812)] = 138892, + [SMALL_STATE(5813)] = 138915, + [SMALL_STATE(5814)] = 138938, + [SMALL_STATE(5815)] = 138961, + [SMALL_STATE(5816)] = 138984, + [SMALL_STATE(5817)] = 139007, + [SMALL_STATE(5818)] = 139030, + [SMALL_STATE(5819)] = 139053, + [SMALL_STATE(5820)] = 139076, + [SMALL_STATE(5821)] = 139099, + [SMALL_STATE(5822)] = 139122, + [SMALL_STATE(5823)] = 139145, + [SMALL_STATE(5824)] = 139168, + [SMALL_STATE(5825)] = 139193, + [SMALL_STATE(5826)] = 139216, + [SMALL_STATE(5827)] = 139239, + [SMALL_STATE(5828)] = 139262, + [SMALL_STATE(5829)] = 139285, + [SMALL_STATE(5830)] = 139308, + [SMALL_STATE(5831)] = 139331, + [SMALL_STATE(5832)] = 139354, + [SMALL_STATE(5833)] = 139380, + [SMALL_STATE(5834)] = 139404, + [SMALL_STATE(5835)] = 139424, + [SMALL_STATE(5836)] = 139450, + [SMALL_STATE(5837)] = 139476, + [SMALL_STATE(5838)] = 139498, + [SMALL_STATE(5839)] = 139524, + [SMALL_STATE(5840)] = 139540, + [SMALL_STATE(5841)] = 139566, + [SMALL_STATE(5842)] = 139586, + [SMALL_STATE(5843)] = 139606, + [SMALL_STATE(5844)] = 139622, + [SMALL_STATE(5845)] = 139638, + [SMALL_STATE(5846)] = 139658, + [SMALL_STATE(5847)] = 139678, + [SMALL_STATE(5848)] = 139698, + [SMALL_STATE(5849)] = 139718, + [SMALL_STATE(5850)] = 139738, + [SMALL_STATE(5851)] = 139762, + [SMALL_STATE(5852)] = 139784, + [SMALL_STATE(5853)] = 139800, + [SMALL_STATE(5854)] = 139824, + [SMALL_STATE(5855)] = 139840, + [SMALL_STATE(5856)] = 139862, + [SMALL_STATE(5857)] = 139888, + [SMALL_STATE(5858)] = 139908, + [SMALL_STATE(5859)] = 139934, + [SMALL_STATE(5860)] = 139954, + [SMALL_STATE(5861)] = 139975, + [SMALL_STATE(5862)] = 139996, + [SMALL_STATE(5863)] = 140011, + [SMALL_STATE(5864)] = 140026, + [SMALL_STATE(5865)] = 140041, + [SMALL_STATE(5866)] = 140062, + [SMALL_STATE(5867)] = 140083, + [SMALL_STATE(5868)] = 140098, + [SMALL_STATE(5869)] = 140119, + [SMALL_STATE(5870)] = 140134, + [SMALL_STATE(5871)] = 140149, + [SMALL_STATE(5872)] = 140170, + [SMALL_STATE(5873)] = 140191, + [SMALL_STATE(5874)] = 140212, + [SMALL_STATE(5875)] = 140227, + [SMALL_STATE(5876)] = 140242, + [SMALL_STATE(5877)] = 140257, + [SMALL_STATE(5878)] = 140278, + [SMALL_STATE(5879)] = 140293, + [SMALL_STATE(5880)] = 140314, + [SMALL_STATE(5881)] = 140329, + [SMALL_STATE(5882)] = 140350, + [SMALL_STATE(5883)] = 140371, + [SMALL_STATE(5884)] = 140392, + [SMALL_STATE(5885)] = 140407, + [SMALL_STATE(5886)] = 140428, + [SMALL_STATE(5887)] = 140449, + [SMALL_STATE(5888)] = 140470, + [SMALL_STATE(5889)] = 140491, + [SMALL_STATE(5890)] = 140512, + [SMALL_STATE(5891)] = 140533, + [SMALL_STATE(5892)] = 140554, + [SMALL_STATE(5893)] = 140575, + [SMALL_STATE(5894)] = 140596, + [SMALL_STATE(5895)] = 140617, + [SMALL_STATE(5896)] = 140638, + [SMALL_STATE(5897)] = 140659, + [SMALL_STATE(5898)] = 140680, + [SMALL_STATE(5899)] = 140701, + [SMALL_STATE(5900)] = 140722, + [SMALL_STATE(5901)] = 140743, + [SMALL_STATE(5902)] = 140764, + [SMALL_STATE(5903)] = 140785, + [SMALL_STATE(5904)] = 140806, + [SMALL_STATE(5905)] = 140827, + [SMALL_STATE(5906)] = 140848, + [SMALL_STATE(5907)] = 140863, + [SMALL_STATE(5908)] = 140878, + [SMALL_STATE(5909)] = 140893, + [SMALL_STATE(5910)] = 140914, + [SMALL_STATE(5911)] = 140927, + [SMALL_STATE(5912)] = 140948, + [SMALL_STATE(5913)] = 140963, + [SMALL_STATE(5914)] = 140984, + [SMALL_STATE(5915)] = 141002, + [SMALL_STATE(5916)] = 141020, + [SMALL_STATE(5917)] = 141038, + [SMALL_STATE(5918)] = 141056, + [SMALL_STATE(5919)] = 141074, + [SMALL_STATE(5920)] = 141092, + [SMALL_STATE(5921)] = 141110, + [SMALL_STATE(5922)] = 141128, + [SMALL_STATE(5923)] = 141146, + [SMALL_STATE(5924)] = 141164, + [SMALL_STATE(5925)] = 141182, + [SMALL_STATE(5926)] = 141202, + [SMALL_STATE(5927)] = 141220, + [SMALL_STATE(5928)] = 141238, + [SMALL_STATE(5929)] = 141258, + [SMALL_STATE(5930)] = 141276, + [SMALL_STATE(5931)] = 141294, + [SMALL_STATE(5932)] = 141312, + [SMALL_STATE(5933)] = 141330, + [SMALL_STATE(5934)] = 141350, + [SMALL_STATE(5935)] = 141368, + [SMALL_STATE(5936)] = 141386, + [SMALL_STATE(5937)] = 141404, + [SMALL_STATE(5938)] = 141422, + [SMALL_STATE(5939)] = 141440, + [SMALL_STATE(5940)] = 141458, + [SMALL_STATE(5941)] = 141476, + [SMALL_STATE(5942)] = 141494, + [SMALL_STATE(5943)] = 141512, + [SMALL_STATE(5944)] = 141530, + [SMALL_STATE(5945)] = 141548, + [SMALL_STATE(5946)] = 141568, + [SMALL_STATE(5947)] = 141586, + [SMALL_STATE(5948)] = 141604, + [SMALL_STATE(5949)] = 141622, + [SMALL_STATE(5950)] = 141640, + [SMALL_STATE(5951)] = 141658, + [SMALL_STATE(5952)] = 141676, + [SMALL_STATE(5953)] = 141694, + [SMALL_STATE(5954)] = 141712, + [SMALL_STATE(5955)] = 141730, + [SMALL_STATE(5956)] = 141748, + [SMALL_STATE(5957)] = 141766, + [SMALL_STATE(5958)] = 141784, + [SMALL_STATE(5959)] = 141802, + [SMALL_STATE(5960)] = 141820, + [SMALL_STATE(5961)] = 141838, + [SMALL_STATE(5962)] = 141856, + [SMALL_STATE(5963)] = 141874, + [SMALL_STATE(5964)] = 141892, + [SMALL_STATE(5965)] = 141910, + [SMALL_STATE(5966)] = 141928, + [SMALL_STATE(5967)] = 141946, + [SMALL_STATE(5968)] = 141962, + [SMALL_STATE(5969)] = 141980, + [SMALL_STATE(5970)] = 141998, + [SMALL_STATE(5971)] = 142016, + [SMALL_STATE(5972)] = 142034, + [SMALL_STATE(5973)] = 142052, + [SMALL_STATE(5974)] = 142070, + [SMALL_STATE(5975)] = 142088, + [SMALL_STATE(5976)] = 142106, + [SMALL_STATE(5977)] = 142124, + [SMALL_STATE(5978)] = 142142, + [SMALL_STATE(5979)] = 142160, + [SMALL_STATE(5980)] = 142178, + [SMALL_STATE(5981)] = 142194, + [SMALL_STATE(5982)] = 142212, + [SMALL_STATE(5983)] = 142230, + [SMALL_STATE(5984)] = 142248, + [SMALL_STATE(5985)] = 142266, + [SMALL_STATE(5986)] = 142284, + [SMALL_STATE(5987)] = 142302, + [SMALL_STATE(5988)] = 142320, + [SMALL_STATE(5989)] = 142338, + [SMALL_STATE(5990)] = 142356, + [SMALL_STATE(5991)] = 142372, + [SMALL_STATE(5992)] = 142390, + [SMALL_STATE(5993)] = 142408, + [SMALL_STATE(5994)] = 142426, + [SMALL_STATE(5995)] = 142444, + [SMALL_STATE(5996)] = 142462, + [SMALL_STATE(5997)] = 142480, + [SMALL_STATE(5998)] = 142498, + [SMALL_STATE(5999)] = 142516, + [SMALL_STATE(6000)] = 142534, + [SMALL_STATE(6001)] = 142552, + [SMALL_STATE(6002)] = 142570, + [SMALL_STATE(6003)] = 142588, + [SMALL_STATE(6004)] = 142606, + [SMALL_STATE(6005)] = 142624, + [SMALL_STATE(6006)] = 142642, + [SMALL_STATE(6007)] = 142660, + [SMALL_STATE(6008)] = 142678, + [SMALL_STATE(6009)] = 142696, + [SMALL_STATE(6010)] = 142714, + [SMALL_STATE(6011)] = 142732, + [SMALL_STATE(6012)] = 142750, + [SMALL_STATE(6013)] = 142768, + [SMALL_STATE(6014)] = 142786, + [SMALL_STATE(6015)] = 142804, + [SMALL_STATE(6016)] = 142822, + [SMALL_STATE(6017)] = 142840, + [SMALL_STATE(6018)] = 142858, + [SMALL_STATE(6019)] = 142876, + [SMALL_STATE(6020)] = 142894, + [SMALL_STATE(6021)] = 142912, + [SMALL_STATE(6022)] = 142930, + [SMALL_STATE(6023)] = 142948, + [SMALL_STATE(6024)] = 142966, + [SMALL_STATE(6025)] = 142984, + [SMALL_STATE(6026)] = 143002, + [SMALL_STATE(6027)] = 143020, + [SMALL_STATE(6028)] = 143038, + [SMALL_STATE(6029)] = 143056, + [SMALL_STATE(6030)] = 143074, + [SMALL_STATE(6031)] = 143092, + [SMALL_STATE(6032)] = 143110, + [SMALL_STATE(6033)] = 143128, + [SMALL_STATE(6034)] = 143146, + [SMALL_STATE(6035)] = 143166, + [SMALL_STATE(6036)] = 143184, + [SMALL_STATE(6037)] = 143202, + [SMALL_STATE(6038)] = 143222, + [SMALL_STATE(6039)] = 143240, + [SMALL_STATE(6040)] = 143258, + [SMALL_STATE(6041)] = 143278, + [SMALL_STATE(6042)] = 143298, + [SMALL_STATE(6043)] = 143318, + [SMALL_STATE(6044)] = 143336, + [SMALL_STATE(6045)] = 143354, + [SMALL_STATE(6046)] = 143372, + [SMALL_STATE(6047)] = 143390, + [SMALL_STATE(6048)] = 143408, + [SMALL_STATE(6049)] = 143426, + [SMALL_STATE(6050)] = 143444, + [SMALL_STATE(6051)] = 143462, + [SMALL_STATE(6052)] = 143480, + [SMALL_STATE(6053)] = 143500, + [SMALL_STATE(6054)] = 143518, + [SMALL_STATE(6055)] = 143536, + [SMALL_STATE(6056)] = 143554, + [SMALL_STATE(6057)] = 143572, + [SMALL_STATE(6058)] = 143592, + [SMALL_STATE(6059)] = 143610, + [SMALL_STATE(6060)] = 143630, + [SMALL_STATE(6061)] = 143648, + [SMALL_STATE(6062)] = 143666, + [SMALL_STATE(6063)] = 143684, + [SMALL_STATE(6064)] = 143700, + [SMALL_STATE(6065)] = 143718, + [SMALL_STATE(6066)] = 143736, + [SMALL_STATE(6067)] = 143754, + [SMALL_STATE(6068)] = 143772, + [SMALL_STATE(6069)] = 143790, + [SMALL_STATE(6070)] = 143808, + [SMALL_STATE(6071)] = 143826, + [SMALL_STATE(6072)] = 143844, + [SMALL_STATE(6073)] = 143862, + [SMALL_STATE(6074)] = 143880, + [SMALL_STATE(6075)] = 143898, + [SMALL_STATE(6076)] = 143916, + [SMALL_STATE(6077)] = 143934, + [SMALL_STATE(6078)] = 143952, + [SMALL_STATE(6079)] = 143970, + [SMALL_STATE(6080)] = 143988, + [SMALL_STATE(6081)] = 144006, + [SMALL_STATE(6082)] = 144026, + [SMALL_STATE(6083)] = 144044, + [SMALL_STATE(6084)] = 144062, + [SMALL_STATE(6085)] = 144080, + [SMALL_STATE(6086)] = 144098, + [SMALL_STATE(6087)] = 144118, + [SMALL_STATE(6088)] = 144136, + [SMALL_STATE(6089)] = 144154, + [SMALL_STATE(6090)] = 144172, + [SMALL_STATE(6091)] = 144190, + [SMALL_STATE(6092)] = 144202, + [SMALL_STATE(6093)] = 144222, + [SMALL_STATE(6094)] = 144238, + [SMALL_STATE(6095)] = 144258, + [SMALL_STATE(6096)] = 144276, + [SMALL_STATE(6097)] = 144294, + [SMALL_STATE(6098)] = 144312, + [SMALL_STATE(6099)] = 144330, + [SMALL_STATE(6100)] = 144348, + [SMALL_STATE(6101)] = 144368, + [SMALL_STATE(6102)] = 144384, + [SMALL_STATE(6103)] = 144402, + [SMALL_STATE(6104)] = 144420, + [SMALL_STATE(6105)] = 144440, + [SMALL_STATE(6106)] = 144458, + [SMALL_STATE(6107)] = 144474, + [SMALL_STATE(6108)] = 144494, + [SMALL_STATE(6109)] = 144508, + [SMALL_STATE(6110)] = 144524, + [SMALL_STATE(6111)] = 144538, + [SMALL_STATE(6112)] = 144556, + [SMALL_STATE(6113)] = 144574, + [SMALL_STATE(6114)] = 144592, + [SMALL_STATE(6115)] = 144610, + [SMALL_STATE(6116)] = 144628, + [SMALL_STATE(6117)] = 144645, + [SMALL_STATE(6118)] = 144662, + [SMALL_STATE(6119)] = 144679, + [SMALL_STATE(6120)] = 144696, + [SMALL_STATE(6121)] = 144713, + [SMALL_STATE(6122)] = 144730, + [SMALL_STATE(6123)] = 144747, + [SMALL_STATE(6124)] = 144764, + [SMALL_STATE(6125)] = 144781, + [SMALL_STATE(6126)] = 144798, + [SMALL_STATE(6127)] = 144815, + [SMALL_STATE(6128)] = 144832, + [SMALL_STATE(6129)] = 144849, + [SMALL_STATE(6130)] = 144866, + [SMALL_STATE(6131)] = 144883, + [SMALL_STATE(6132)] = 144900, + [SMALL_STATE(6133)] = 144917, + [SMALL_STATE(6134)] = 144934, + [SMALL_STATE(6135)] = 144951, + [SMALL_STATE(6136)] = 144968, + [SMALL_STATE(6137)] = 144985, + [SMALL_STATE(6138)] = 145002, + [SMALL_STATE(6139)] = 145019, + [SMALL_STATE(6140)] = 145036, + [SMALL_STATE(6141)] = 145053, + [SMALL_STATE(6142)] = 145070, + [SMALL_STATE(6143)] = 145087, + [SMALL_STATE(6144)] = 145104, + [SMALL_STATE(6145)] = 145119, + [SMALL_STATE(6146)] = 145134, + [SMALL_STATE(6147)] = 145145, + [SMALL_STATE(6148)] = 145160, + [SMALL_STATE(6149)] = 145175, + [SMALL_STATE(6150)] = 145190, + [SMALL_STATE(6151)] = 145205, + [SMALL_STATE(6152)] = 145220, + [SMALL_STATE(6153)] = 145237, + [SMALL_STATE(6154)] = 145252, + [SMALL_STATE(6155)] = 145267, + [SMALL_STATE(6156)] = 145282, + [SMALL_STATE(6157)] = 145295, + [SMALL_STATE(6158)] = 145312, + [SMALL_STATE(6159)] = 145329, + [SMALL_STATE(6160)] = 145344, + [SMALL_STATE(6161)] = 145359, + [SMALL_STATE(6162)] = 145370, + [SMALL_STATE(6163)] = 145385, + [SMALL_STATE(6164)] = 145400, + [SMALL_STATE(6165)] = 145417, + [SMALL_STATE(6166)] = 145432, + [SMALL_STATE(6167)] = 145449, + [SMALL_STATE(6168)] = 145466, + [SMALL_STATE(6169)] = 145483, + [SMALL_STATE(6170)] = 145500, + [SMALL_STATE(6171)] = 145515, + [SMALL_STATE(6172)] = 145530, + [SMALL_STATE(6173)] = 145547, + [SMALL_STATE(6174)] = 145564, + [SMALL_STATE(6175)] = 145579, + [SMALL_STATE(6176)] = 145594, + [SMALL_STATE(6177)] = 145609, + [SMALL_STATE(6178)] = 145620, + [SMALL_STATE(6179)] = 145635, + [SMALL_STATE(6180)] = 145650, + [SMALL_STATE(6181)] = 145667, + [SMALL_STATE(6182)] = 145682, + [SMALL_STATE(6183)] = 145697, + [SMALL_STATE(6184)] = 145712, + [SMALL_STATE(6185)] = 145729, + [SMALL_STATE(6186)] = 145744, + [SMALL_STATE(6187)] = 145761, + [SMALL_STATE(6188)] = 145778, + [SMALL_STATE(6189)] = 145795, + [SMALL_STATE(6190)] = 145810, + [SMALL_STATE(6191)] = 145827, + [SMALL_STATE(6192)] = 145838, + [SMALL_STATE(6193)] = 145849, + [SMALL_STATE(6194)] = 145864, + [SMALL_STATE(6195)] = 145879, + [SMALL_STATE(6196)] = 145896, + [SMALL_STATE(6197)] = 145911, + [SMALL_STATE(6198)] = 145922, + [SMALL_STATE(6199)] = 145939, + [SMALL_STATE(6200)] = 145954, + [SMALL_STATE(6201)] = 145971, + [SMALL_STATE(6202)] = 145986, + [SMALL_STATE(6203)] = 145997, + [SMALL_STATE(6204)] = 146014, + [SMALL_STATE(6205)] = 146031, + [SMALL_STATE(6206)] = 146046, + [SMALL_STATE(6207)] = 146061, + [SMALL_STATE(6208)] = 146076, + [SMALL_STATE(6209)] = 146093, + [SMALL_STATE(6210)] = 146108, + [SMALL_STATE(6211)] = 146123, + [SMALL_STATE(6212)] = 146138, + [SMALL_STATE(6213)] = 146149, + [SMALL_STATE(6214)] = 146164, + [SMALL_STATE(6215)] = 146179, + [SMALL_STATE(6216)] = 146196, + [SMALL_STATE(6217)] = 146211, + [SMALL_STATE(6218)] = 146226, + [SMALL_STATE(6219)] = 146241, + [SMALL_STATE(6220)] = 146256, + [SMALL_STATE(6221)] = 146271, + [SMALL_STATE(6222)] = 146288, + [SMALL_STATE(6223)] = 146303, + [SMALL_STATE(6224)] = 146320, + [SMALL_STATE(6225)] = 146335, + [SMALL_STATE(6226)] = 146350, + [SMALL_STATE(6227)] = 146363, + [SMALL_STATE(6228)] = 146378, + [SMALL_STATE(6229)] = 146393, + [SMALL_STATE(6230)] = 146410, + [SMALL_STATE(6231)] = 146425, + [SMALL_STATE(6232)] = 146440, + [SMALL_STATE(6233)] = 146455, + [SMALL_STATE(6234)] = 146470, + [SMALL_STATE(6235)] = 146487, + [SMALL_STATE(6236)] = 146504, + [SMALL_STATE(6237)] = 146517, + [SMALL_STATE(6238)] = 146532, + [SMALL_STATE(6239)] = 146547, + [SMALL_STATE(6240)] = 146562, + [SMALL_STATE(6241)] = 146575, + [SMALL_STATE(6242)] = 146590, + [SMALL_STATE(6243)] = 146607, + [SMALL_STATE(6244)] = 146622, + [SMALL_STATE(6245)] = 146637, + [SMALL_STATE(6246)] = 146652, + [SMALL_STATE(6247)] = 146663, + [SMALL_STATE(6248)] = 146680, + [SMALL_STATE(6249)] = 146695, + [SMALL_STATE(6250)] = 146712, + [SMALL_STATE(6251)] = 146726, + [SMALL_STATE(6252)] = 146740, + [SMALL_STATE(6253)] = 146752, + [SMALL_STATE(6254)] = 146764, + [SMALL_STATE(6255)] = 146778, + [SMALL_STATE(6256)] = 146790, + [SMALL_STATE(6257)] = 146804, + [SMALL_STATE(6258)] = 146818, + [SMALL_STATE(6259)] = 146830, + [SMALL_STATE(6260)] = 146844, + [SMALL_STATE(6261)] = 146858, + [SMALL_STATE(6262)] = 146872, + [SMALL_STATE(6263)] = 146884, + [SMALL_STATE(6264)] = 146896, + [SMALL_STATE(6265)] = 146910, + [SMALL_STATE(6266)] = 146922, + [SMALL_STATE(6267)] = 146934, + [SMALL_STATE(6268)] = 146948, + [SMALL_STATE(6269)] = 146962, + [SMALL_STATE(6270)] = 146976, + [SMALL_STATE(6271)] = 146988, + [SMALL_STATE(6272)] = 147000, + [SMALL_STATE(6273)] = 147010, + [SMALL_STATE(6274)] = 147022, + [SMALL_STATE(6275)] = 147036, + [SMALL_STATE(6276)] = 147050, + [SMALL_STATE(6277)] = 147062, + [SMALL_STATE(6278)] = 147072, + [SMALL_STATE(6279)] = 147086, + [SMALL_STATE(6280)] = 147100, + [SMALL_STATE(6281)] = 147112, + [SMALL_STATE(6282)] = 147124, + [SMALL_STATE(6283)] = 147138, + [SMALL_STATE(6284)] = 147152, + [SMALL_STATE(6285)] = 147166, + [SMALL_STATE(6286)] = 147178, + [SMALL_STATE(6287)] = 147192, + [SMALL_STATE(6288)] = 147204, + [SMALL_STATE(6289)] = 147218, + [SMALL_STATE(6290)] = 147230, + [SMALL_STATE(6291)] = 147244, + [SMALL_STATE(6292)] = 147258, + [SMALL_STATE(6293)] = 147272, + [SMALL_STATE(6294)] = 147286, + [SMALL_STATE(6295)] = 147298, + [SMALL_STATE(6296)] = 147310, + [SMALL_STATE(6297)] = 147322, + [SMALL_STATE(6298)] = 147336, + [SMALL_STATE(6299)] = 147346, + [SMALL_STATE(6300)] = 147358, + [SMALL_STATE(6301)] = 147372, + [SMALL_STATE(6302)] = 147384, + [SMALL_STATE(6303)] = 147396, + [SMALL_STATE(6304)] = 147408, + [SMALL_STATE(6305)] = 147420, + [SMALL_STATE(6306)] = 147434, + [SMALL_STATE(6307)] = 147446, + [SMALL_STATE(6308)] = 147458, + [SMALL_STATE(6309)] = 147470, + [SMALL_STATE(6310)] = 147482, + [SMALL_STATE(6311)] = 147496, + [SMALL_STATE(6312)] = 147508, + [SMALL_STATE(6313)] = 147520, + [SMALL_STATE(6314)] = 147534, + [SMALL_STATE(6315)] = 147546, + [SMALL_STATE(6316)] = 147560, + [SMALL_STATE(6317)] = 147572, + [SMALL_STATE(6318)] = 147586, + [SMALL_STATE(6319)] = 147598, + [SMALL_STATE(6320)] = 147610, + [SMALL_STATE(6321)] = 147624, + [SMALL_STATE(6322)] = 147636, + [SMALL_STATE(6323)] = 147648, + [SMALL_STATE(6324)] = 147662, + [SMALL_STATE(6325)] = 147676, + [SMALL_STATE(6326)] = 147690, + [SMALL_STATE(6327)] = 147704, + [SMALL_STATE(6328)] = 147716, + [SMALL_STATE(6329)] = 147730, + [SMALL_STATE(6330)] = 147744, + [SMALL_STATE(6331)] = 147756, + [SMALL_STATE(6332)] = 147770, + [SMALL_STATE(6333)] = 147784, + [SMALL_STATE(6334)] = 147796, + [SMALL_STATE(6335)] = 147810, + [SMALL_STATE(6336)] = 147824, + [SMALL_STATE(6337)] = 147838, + [SMALL_STATE(6338)] = 147848, + [SMALL_STATE(6339)] = 147858, + [SMALL_STATE(6340)] = 147870, + [SMALL_STATE(6341)] = 147884, + [SMALL_STATE(6342)] = 147894, + [SMALL_STATE(6343)] = 147906, + [SMALL_STATE(6344)] = 147918, + [SMALL_STATE(6345)] = 147930, + [SMALL_STATE(6346)] = 147942, + [SMALL_STATE(6347)] = 147956, + [SMALL_STATE(6348)] = 147970, + [SMALL_STATE(6349)] = 147982, + [SMALL_STATE(6350)] = 147994, + [SMALL_STATE(6351)] = 148008, + [SMALL_STATE(6352)] = 148020, + [SMALL_STATE(6353)] = 148032, + [SMALL_STATE(6354)] = 148044, + [SMALL_STATE(6355)] = 148058, + [SMALL_STATE(6356)] = 148072, + [SMALL_STATE(6357)] = 148084, + [SMALL_STATE(6358)] = 148098, + [SMALL_STATE(6359)] = 148112, + [SMALL_STATE(6360)] = 148126, + [SMALL_STATE(6361)] = 148138, + [SMALL_STATE(6362)] = 148152, + [SMALL_STATE(6363)] = 148164, + [SMALL_STATE(6364)] = 148178, + [SMALL_STATE(6365)] = 148192, + [SMALL_STATE(6366)] = 148206, + [SMALL_STATE(6367)] = 148218, + [SMALL_STATE(6368)] = 148230, + [SMALL_STATE(6369)] = 148244, + [SMALL_STATE(6370)] = 148256, + [SMALL_STATE(6371)] = 148270, + [SMALL_STATE(6372)] = 148284, + [SMALL_STATE(6373)] = 148298, + [SMALL_STATE(6374)] = 148312, + [SMALL_STATE(6375)] = 148324, + [SMALL_STATE(6376)] = 148334, + [SMALL_STATE(6377)] = 148348, + [SMALL_STATE(6378)] = 148360, + [SMALL_STATE(6379)] = 148372, + [SMALL_STATE(6380)] = 148384, + [SMALL_STATE(6381)] = 148398, + [SMALL_STATE(6382)] = 148410, + [SMALL_STATE(6383)] = 148422, + [SMALL_STATE(6384)] = 148434, + [SMALL_STATE(6385)] = 148446, + [SMALL_STATE(6386)] = 148460, + [SMALL_STATE(6387)] = 148472, + [SMALL_STATE(6388)] = 148486, + [SMALL_STATE(6389)] = 148498, + [SMALL_STATE(6390)] = 148512, + [SMALL_STATE(6391)] = 148524, + [SMALL_STATE(6392)] = 148536, + [SMALL_STATE(6393)] = 148548, + [SMALL_STATE(6394)] = 148562, + [SMALL_STATE(6395)] = 148574, + [SMALL_STATE(6396)] = 148588, + [SMALL_STATE(6397)] = 148602, + [SMALL_STATE(6398)] = 148616, + [SMALL_STATE(6399)] = 148630, + [SMALL_STATE(6400)] = 148644, + [SMALL_STATE(6401)] = 148656, + [SMALL_STATE(6402)] = 148668, + [SMALL_STATE(6403)] = 148680, + [SMALL_STATE(6404)] = 148692, + [SMALL_STATE(6405)] = 148706, + [SMALL_STATE(6406)] = 148718, + [SMALL_STATE(6407)] = 148730, + [SMALL_STATE(6408)] = 148744, + [SMALL_STATE(6409)] = 148758, + [SMALL_STATE(6410)] = 148772, + [SMALL_STATE(6411)] = 148784, + [SMALL_STATE(6412)] = 148798, + [SMALL_STATE(6413)] = 148810, + [SMALL_STATE(6414)] = 148824, + [SMALL_STATE(6415)] = 148838, + [SMALL_STATE(6416)] = 148852, + [SMALL_STATE(6417)] = 148866, + [SMALL_STATE(6418)] = 148878, + [SMALL_STATE(6419)] = 148890, + [SMALL_STATE(6420)] = 148904, + [SMALL_STATE(6421)] = 148918, + [SMALL_STATE(6422)] = 148930, + [SMALL_STATE(6423)] = 148942, + [SMALL_STATE(6424)] = 148956, + [SMALL_STATE(6425)] = 148970, + [SMALL_STATE(6426)] = 148982, + [SMALL_STATE(6427)] = 148994, + [SMALL_STATE(6428)] = 149008, + [SMALL_STATE(6429)] = 149020, + [SMALL_STATE(6430)] = 149032, + [SMALL_STATE(6431)] = 149046, + [SMALL_STATE(6432)] = 149058, + [SMALL_STATE(6433)] = 149072, + [SMALL_STATE(6434)] = 149082, + [SMALL_STATE(6435)] = 149096, + [SMALL_STATE(6436)] = 149106, + [SMALL_STATE(6437)] = 149118, + [SMALL_STATE(6438)] = 149132, + [SMALL_STATE(6439)] = 149144, + [SMALL_STATE(6440)] = 149158, + [SMALL_STATE(6441)] = 149172, + [SMALL_STATE(6442)] = 149186, + [SMALL_STATE(6443)] = 149196, + [SMALL_STATE(6444)] = 149206, + [SMALL_STATE(6445)] = 149220, + [SMALL_STATE(6446)] = 149234, + [SMALL_STATE(6447)] = 149248, + [SMALL_STATE(6448)] = 149260, + [SMALL_STATE(6449)] = 149272, + [SMALL_STATE(6450)] = 149284, + [SMALL_STATE(6451)] = 149298, + [SMALL_STATE(6452)] = 149312, + [SMALL_STATE(6453)] = 149324, + [SMALL_STATE(6454)] = 149338, + [SMALL_STATE(6455)] = 149350, + [SMALL_STATE(6456)] = 149360, + [SMALL_STATE(6457)] = 149372, + [SMALL_STATE(6458)] = 149386, + [SMALL_STATE(6459)] = 149398, + [SMALL_STATE(6460)] = 149412, + [SMALL_STATE(6461)] = 149424, + [SMALL_STATE(6462)] = 149436, + [SMALL_STATE(6463)] = 149446, + [SMALL_STATE(6464)] = 149458, + [SMALL_STATE(6465)] = 149472, + [SMALL_STATE(6466)] = 149484, + [SMALL_STATE(6467)] = 149494, + [SMALL_STATE(6468)] = 149506, + [SMALL_STATE(6469)] = 149520, + [SMALL_STATE(6470)] = 149534, + [SMALL_STATE(6471)] = 149548, + [SMALL_STATE(6472)] = 149562, + [SMALL_STATE(6473)] = 149576, + [SMALL_STATE(6474)] = 149590, + [SMALL_STATE(6475)] = 149602, + [SMALL_STATE(6476)] = 149614, + [SMALL_STATE(6477)] = 149628, + [SMALL_STATE(6478)] = 149642, + [SMALL_STATE(6479)] = 149654, + [SMALL_STATE(6480)] = 149668, + [SMALL_STATE(6481)] = 149682, + [SMALL_STATE(6482)] = 149694, + [SMALL_STATE(6483)] = 149706, + [SMALL_STATE(6484)] = 149720, + [SMALL_STATE(6485)] = 149734, + [SMALL_STATE(6486)] = 149746, + [SMALL_STATE(6487)] = 149760, + [SMALL_STATE(6488)] = 149772, + [SMALL_STATE(6489)] = 149784, + [SMALL_STATE(6490)] = 149798, + [SMALL_STATE(6491)] = 149810, + [SMALL_STATE(6492)] = 149824, + [SMALL_STATE(6493)] = 149834, + [SMALL_STATE(6494)] = 149846, + [SMALL_STATE(6495)] = 149860, + [SMALL_STATE(6496)] = 149872, + [SMALL_STATE(6497)] = 149886, + [SMALL_STATE(6498)] = 149898, + [SMALL_STATE(6499)] = 149912, + [SMALL_STATE(6500)] = 149924, + [SMALL_STATE(6501)] = 149936, + [SMALL_STATE(6502)] = 149950, + [SMALL_STATE(6503)] = 149962, + [SMALL_STATE(6504)] = 149976, + [SMALL_STATE(6505)] = 149990, + [SMALL_STATE(6506)] = 150002, + [SMALL_STATE(6507)] = 150014, + [SMALL_STATE(6508)] = 150024, + [SMALL_STATE(6509)] = 150034, + [SMALL_STATE(6510)] = 150046, + [SMALL_STATE(6511)] = 150060, + [SMALL_STATE(6512)] = 150072, + [SMALL_STATE(6513)] = 150084, + [SMALL_STATE(6514)] = 150098, + [SMALL_STATE(6515)] = 150110, + [SMALL_STATE(6516)] = 150122, + [SMALL_STATE(6517)] = 150136, + [SMALL_STATE(6518)] = 150148, + [SMALL_STATE(6519)] = 150160, + [SMALL_STATE(6520)] = 150172, + [SMALL_STATE(6521)] = 150186, + [SMALL_STATE(6522)] = 150200, + [SMALL_STATE(6523)] = 150214, + [SMALL_STATE(6524)] = 150226, + [SMALL_STATE(6525)] = 150238, + [SMALL_STATE(6526)] = 150250, + [SMALL_STATE(6527)] = 150262, + [SMALL_STATE(6528)] = 150274, + [SMALL_STATE(6529)] = 150288, + [SMALL_STATE(6530)] = 150302, + [SMALL_STATE(6531)] = 150314, + [SMALL_STATE(6532)] = 150326, + [SMALL_STATE(6533)] = 150340, + [SMALL_STATE(6534)] = 150354, + [SMALL_STATE(6535)] = 150366, + [SMALL_STATE(6536)] = 150380, + [SMALL_STATE(6537)] = 150392, + [SMALL_STATE(6538)] = 150404, + [SMALL_STATE(6539)] = 150418, + [SMALL_STATE(6540)] = 150430, + [SMALL_STATE(6541)] = 150444, + [SMALL_STATE(6542)] = 150456, + [SMALL_STATE(6543)] = 150470, + [SMALL_STATE(6544)] = 150484, + [SMALL_STATE(6545)] = 150498, + [SMALL_STATE(6546)] = 150510, + [SMALL_STATE(6547)] = 150524, + [SMALL_STATE(6548)] = 150536, + [SMALL_STATE(6549)] = 150550, + [SMALL_STATE(6550)] = 150564, + [SMALL_STATE(6551)] = 150576, + [SMALL_STATE(6552)] = 150588, + [SMALL_STATE(6553)] = 150600, + [SMALL_STATE(6554)] = 150614, + [SMALL_STATE(6555)] = 150628, + [SMALL_STATE(6556)] = 150642, + [SMALL_STATE(6557)] = 150654, + [SMALL_STATE(6558)] = 150668, + [SMALL_STATE(6559)] = 150678, + [SMALL_STATE(6560)] = 150690, + [SMALL_STATE(6561)] = 150702, + [SMALL_STATE(6562)] = 150716, + [SMALL_STATE(6563)] = 150728, + [SMALL_STATE(6564)] = 150740, + [SMALL_STATE(6565)] = 150752, + [SMALL_STATE(6566)] = 150766, + [SMALL_STATE(6567)] = 150778, + [SMALL_STATE(6568)] = 150792, + [SMALL_STATE(6569)] = 150806, + [SMALL_STATE(6570)] = 150818, + [SMALL_STATE(6571)] = 150830, + [SMALL_STATE(6572)] = 150844, + [SMALL_STATE(6573)] = 150856, + [SMALL_STATE(6574)] = 150870, + [SMALL_STATE(6575)] = 150882, + [SMALL_STATE(6576)] = 150894, + [SMALL_STATE(6577)] = 150908, + [SMALL_STATE(6578)] = 150920, + [SMALL_STATE(6579)] = 150932, + [SMALL_STATE(6580)] = 150944, + [SMALL_STATE(6581)] = 150956, + [SMALL_STATE(6582)] = 150970, + [SMALL_STATE(6583)] = 150982, + [SMALL_STATE(6584)] = 150994, + [SMALL_STATE(6585)] = 151006, + [SMALL_STATE(6586)] = 151018, + [SMALL_STATE(6587)] = 151032, + [SMALL_STATE(6588)] = 151046, + [SMALL_STATE(6589)] = 151060, + [SMALL_STATE(6590)] = 151070, + [SMALL_STATE(6591)] = 151082, + [SMALL_STATE(6592)] = 151096, + [SMALL_STATE(6593)] = 151110, + [SMALL_STATE(6594)] = 151122, + [SMALL_STATE(6595)] = 151134, + [SMALL_STATE(6596)] = 151146, + [SMALL_STATE(6597)] = 151158, + [SMALL_STATE(6598)] = 151172, + [SMALL_STATE(6599)] = 151184, + [SMALL_STATE(6600)] = 151198, + [SMALL_STATE(6601)] = 151210, + [SMALL_STATE(6602)] = 151224, + [SMALL_STATE(6603)] = 151236, + [SMALL_STATE(6604)] = 151248, + [SMALL_STATE(6605)] = 151260, + [SMALL_STATE(6606)] = 151272, + [SMALL_STATE(6607)] = 151286, + [SMALL_STATE(6608)] = 151300, + [SMALL_STATE(6609)] = 151314, + [SMALL_STATE(6610)] = 151326, + [SMALL_STATE(6611)] = 151338, + [SMALL_STATE(6612)] = 151352, + [SMALL_STATE(6613)] = 151366, + [SMALL_STATE(6614)] = 151380, + [SMALL_STATE(6615)] = 151392, + [SMALL_STATE(6616)] = 151404, + [SMALL_STATE(6617)] = 151416, + [SMALL_STATE(6618)] = 151430, + [SMALL_STATE(6619)] = 151442, + [SMALL_STATE(6620)] = 151454, + [SMALL_STATE(6621)] = 151468, + [SMALL_STATE(6622)] = 151480, + [SMALL_STATE(6623)] = 151494, + [SMALL_STATE(6624)] = 151506, + [SMALL_STATE(6625)] = 151520, + [SMALL_STATE(6626)] = 151532, + [SMALL_STATE(6627)] = 151544, + [SMALL_STATE(6628)] = 151558, + [SMALL_STATE(6629)] = 151572, + [SMALL_STATE(6630)] = 151586, + [SMALL_STATE(6631)] = 151596, + [SMALL_STATE(6632)] = 151606, + [SMALL_STATE(6633)] = 151620, + [SMALL_STATE(6634)] = 151632, + [SMALL_STATE(6635)] = 151646, + [SMALL_STATE(6636)] = 151658, + [SMALL_STATE(6637)] = 151670, + [SMALL_STATE(6638)] = 151682, + [SMALL_STATE(6639)] = 151692, + [SMALL_STATE(6640)] = 151706, + [SMALL_STATE(6641)] = 151718, + [SMALL_STATE(6642)] = 151730, + [SMALL_STATE(6643)] = 151742, + [SMALL_STATE(6644)] = 151756, + [SMALL_STATE(6645)] = 151768, + [SMALL_STATE(6646)] = 151782, + [SMALL_STATE(6647)] = 151794, + [SMALL_STATE(6648)] = 151808, + [SMALL_STATE(6649)] = 151822, + [SMALL_STATE(6650)] = 151836, + [SMALL_STATE(6651)] = 151848, + [SMALL_STATE(6652)] = 151860, + [SMALL_STATE(6653)] = 151872, + [SMALL_STATE(6654)] = 151886, + [SMALL_STATE(6655)] = 151898, + [SMALL_STATE(6656)] = 151912, + [SMALL_STATE(6657)] = 151926, + [SMALL_STATE(6658)] = 151938, + [SMALL_STATE(6659)] = 151952, + [SMALL_STATE(6660)] = 151964, + [SMALL_STATE(6661)] = 151978, + [SMALL_STATE(6662)] = 151992, + [SMALL_STATE(6663)] = 152006, + [SMALL_STATE(6664)] = 152018, + [SMALL_STATE(6665)] = 152030, + [SMALL_STATE(6666)] = 152040, + [SMALL_STATE(6667)] = 152052, + [SMALL_STATE(6668)] = 152064, + [SMALL_STATE(6669)] = 152078, + [SMALL_STATE(6670)] = 152090, + [SMALL_STATE(6671)] = 152104, + [SMALL_STATE(6672)] = 152118, + [SMALL_STATE(6673)] = 152132, + [SMALL_STATE(6674)] = 152144, + [SMALL_STATE(6675)] = 152156, + [SMALL_STATE(6676)] = 152168, + [SMALL_STATE(6677)] = 152180, + [SMALL_STATE(6678)] = 152194, + [SMALL_STATE(6679)] = 152206, + [SMALL_STATE(6680)] = 152218, + [SMALL_STATE(6681)] = 152232, + [SMALL_STATE(6682)] = 152244, + [SMALL_STATE(6683)] = 152258, + [SMALL_STATE(6684)] = 152270, + [SMALL_STATE(6685)] = 152284, + [SMALL_STATE(6686)] = 152296, + [SMALL_STATE(6687)] = 152308, + [SMALL_STATE(6688)] = 152320, + [SMALL_STATE(6689)] = 152334, + [SMALL_STATE(6690)] = 152348, + [SMALL_STATE(6691)] = 152362, + [SMALL_STATE(6692)] = 152374, + [SMALL_STATE(6693)] = 152388, + [SMALL_STATE(6694)] = 152400, + [SMALL_STATE(6695)] = 152414, + [SMALL_STATE(6696)] = 152428, + [SMALL_STATE(6697)] = 152438, + [SMALL_STATE(6698)] = 152450, + [SMALL_STATE(6699)] = 152462, + [SMALL_STATE(6700)] = 152474, + [SMALL_STATE(6701)] = 152486, + [SMALL_STATE(6702)] = 152498, + [SMALL_STATE(6703)] = 152512, + [SMALL_STATE(6704)] = 152526, + [SMALL_STATE(6705)] = 152538, + [SMALL_STATE(6706)] = 152552, + [SMALL_STATE(6707)] = 152564, + [SMALL_STATE(6708)] = 152578, + [SMALL_STATE(6709)] = 152590, + [SMALL_STATE(6710)] = 152604, + [SMALL_STATE(6711)] = 152618, + [SMALL_STATE(6712)] = 152632, + [SMALL_STATE(6713)] = 152646, + [SMALL_STATE(6714)] = 152660, + [SMALL_STATE(6715)] = 152674, + [SMALL_STATE(6716)] = 152686, + [SMALL_STATE(6717)] = 152700, + [SMALL_STATE(6718)] = 152712, + [SMALL_STATE(6719)] = 152724, + [SMALL_STATE(6720)] = 152738, + [SMALL_STATE(6721)] = 152752, + [SMALL_STATE(6722)] = 152764, + [SMALL_STATE(6723)] = 152778, + [SMALL_STATE(6724)] = 152790, + [SMALL_STATE(6725)] = 152802, + [SMALL_STATE(6726)] = 152816, + [SMALL_STATE(6727)] = 152830, + [SMALL_STATE(6728)] = 152844, + [SMALL_STATE(6729)] = 152858, + [SMALL_STATE(6730)] = 152872, + [SMALL_STATE(6731)] = 152886, + [SMALL_STATE(6732)] = 152898, + [SMALL_STATE(6733)] = 152910, + [SMALL_STATE(6734)] = 152922, + [SMALL_STATE(6735)] = 152934, + [SMALL_STATE(6736)] = 152948, + [SMALL_STATE(6737)] = 152960, + [SMALL_STATE(6738)] = 152972, + [SMALL_STATE(6739)] = 152986, + [SMALL_STATE(6740)] = 153000, + [SMALL_STATE(6741)] = 153012, + [SMALL_STATE(6742)] = 153026, + [SMALL_STATE(6743)] = 153040, + [SMALL_STATE(6744)] = 153054, + [SMALL_STATE(6745)] = 153068, + [SMALL_STATE(6746)] = 153082, + [SMALL_STATE(6747)] = 153094, + [SMALL_STATE(6748)] = 153106, + [SMALL_STATE(6749)] = 153120, + [SMALL_STATE(6750)] = 153134, + [SMALL_STATE(6751)] = 153146, + [SMALL_STATE(6752)] = 153160, + [SMALL_STATE(6753)] = 153172, + [SMALL_STATE(6754)] = 153186, + [SMALL_STATE(6755)] = 153198, + [SMALL_STATE(6756)] = 153210, + [SMALL_STATE(6757)] = 153222, + [SMALL_STATE(6758)] = 153236, + [SMALL_STATE(6759)] = 153248, + [SMALL_STATE(6760)] = 153262, + [SMALL_STATE(6761)] = 153274, + [SMALL_STATE(6762)] = 153288, + [SMALL_STATE(6763)] = 153300, + [SMALL_STATE(6764)] = 153312, + [SMALL_STATE(6765)] = 153324, + [SMALL_STATE(6766)] = 153338, + [SMALL_STATE(6767)] = 153352, + [SMALL_STATE(6768)] = 153364, + [SMALL_STATE(6769)] = 153376, + [SMALL_STATE(6770)] = 153388, + [SMALL_STATE(6771)] = 153400, + [SMALL_STATE(6772)] = 153412, + [SMALL_STATE(6773)] = 153426, + [SMALL_STATE(6774)] = 153438, + [SMALL_STATE(6775)] = 153452, + [SMALL_STATE(6776)] = 153464, + [SMALL_STATE(6777)] = 153478, + [SMALL_STATE(6778)] = 153492, + [SMALL_STATE(6779)] = 153506, + [SMALL_STATE(6780)] = 153520, + [SMALL_STATE(6781)] = 153534, + [SMALL_STATE(6782)] = 153548, + [SMALL_STATE(6783)] = 153562, + [SMALL_STATE(6784)] = 153576, + [SMALL_STATE(6785)] = 153590, + [SMALL_STATE(6786)] = 153604, + [SMALL_STATE(6787)] = 153618, + [SMALL_STATE(6788)] = 153630, + [SMALL_STATE(6789)] = 153644, + [SMALL_STATE(6790)] = 153658, + [SMALL_STATE(6791)] = 153672, + [SMALL_STATE(6792)] = 153686, + [SMALL_STATE(6793)] = 153700, + [SMALL_STATE(6794)] = 153712, + [SMALL_STATE(6795)] = 153726, + [SMALL_STATE(6796)] = 153738, + [SMALL_STATE(6797)] = 153752, + [SMALL_STATE(6798)] = 153766, + [SMALL_STATE(6799)] = 153780, + [SMALL_STATE(6800)] = 153794, + [SMALL_STATE(6801)] = 153808, + [SMALL_STATE(6802)] = 153820, + [SMALL_STATE(6803)] = 153834, + [SMALL_STATE(6804)] = 153848, + [SMALL_STATE(6805)] = 153862, + [SMALL_STATE(6806)] = 153874, + [SMALL_STATE(6807)] = 153888, + [SMALL_STATE(6808)] = 153902, + [SMALL_STATE(6809)] = 153916, + [SMALL_STATE(6810)] = 153928, + [SMALL_STATE(6811)] = 153942, + [SMALL_STATE(6812)] = 153956, + [SMALL_STATE(6813)] = 153970, + [SMALL_STATE(6814)] = 153982, + [SMALL_STATE(6815)] = 153996, + [SMALL_STATE(6816)] = 154008, + [SMALL_STATE(6817)] = 154022, + [SMALL_STATE(6818)] = 154034, + [SMALL_STATE(6819)] = 154048, + [SMALL_STATE(6820)] = 154062, + [SMALL_STATE(6821)] = 154076, + [SMALL_STATE(6822)] = 154088, + [SMALL_STATE(6823)] = 154102, + [SMALL_STATE(6824)] = 154116, + [SMALL_STATE(6825)] = 154130, + [SMALL_STATE(6826)] = 154144, + [SMALL_STATE(6827)] = 154158, + [SMALL_STATE(6828)] = 154170, + [SMALL_STATE(6829)] = 154182, + [SMALL_STATE(6830)] = 154194, + [SMALL_STATE(6831)] = 154208, + [SMALL_STATE(6832)] = 154220, + [SMALL_STATE(6833)] = 154232, + [SMALL_STATE(6834)] = 154244, + [SMALL_STATE(6835)] = 154256, + [SMALL_STATE(6836)] = 154270, + [SMALL_STATE(6837)] = 154284, + [SMALL_STATE(6838)] = 154298, + [SMALL_STATE(6839)] = 154310, + [SMALL_STATE(6840)] = 154322, + [SMALL_STATE(6841)] = 154334, + [SMALL_STATE(6842)] = 154344, + [SMALL_STATE(6843)] = 154358, + [SMALL_STATE(6844)] = 154370, + [SMALL_STATE(6845)] = 154384, + [SMALL_STATE(6846)] = 154398, + [SMALL_STATE(6847)] = 154412, + [SMALL_STATE(6848)] = 154426, + [SMALL_STATE(6849)] = 154438, + [SMALL_STATE(6850)] = 154452, + [SMALL_STATE(6851)] = 154464, + [SMALL_STATE(6852)] = 154476, + [SMALL_STATE(6853)] = 154490, + [SMALL_STATE(6854)] = 154502, + [SMALL_STATE(6855)] = 154514, + [SMALL_STATE(6856)] = 154528, + [SMALL_STATE(6857)] = 154542, + [SMALL_STATE(6858)] = 154554, + [SMALL_STATE(6859)] = 154566, + [SMALL_STATE(6860)] = 154578, + [SMALL_STATE(6861)] = 154592, + [SMALL_STATE(6862)] = 154604, + [SMALL_STATE(6863)] = 154616, + [SMALL_STATE(6864)] = 154630, + [SMALL_STATE(6865)] = 154642, + [SMALL_STATE(6866)] = 154656, + [SMALL_STATE(6867)] = 154668, + [SMALL_STATE(6868)] = 154680, + [SMALL_STATE(6869)] = 154694, + [SMALL_STATE(6870)] = 154706, + [SMALL_STATE(6871)] = 154720, + [SMALL_STATE(6872)] = 154734, + [SMALL_STATE(6873)] = 154746, + [SMALL_STATE(6874)] = 154758, + [SMALL_STATE(6875)] = 154772, + [SMALL_STATE(6876)] = 154786, + [SMALL_STATE(6877)] = 154800, + [SMALL_STATE(6878)] = 154812, + [SMALL_STATE(6879)] = 154824, + [SMALL_STATE(6880)] = 154838, + [SMALL_STATE(6881)] = 154848, + [SMALL_STATE(6882)] = 154860, + [SMALL_STATE(6883)] = 154872, + [SMALL_STATE(6884)] = 154886, + [SMALL_STATE(6885)] = 154898, + [SMALL_STATE(6886)] = 154910, + [SMALL_STATE(6887)] = 154924, + [SMALL_STATE(6888)] = 154936, + [SMALL_STATE(6889)] = 154950, + [SMALL_STATE(6890)] = 154962, + [SMALL_STATE(6891)] = 154974, + [SMALL_STATE(6892)] = 154986, + [SMALL_STATE(6893)] = 155000, + [SMALL_STATE(6894)] = 155012, + [SMALL_STATE(6895)] = 155026, + [SMALL_STATE(6896)] = 155038, + [SMALL_STATE(6897)] = 155050, + [SMALL_STATE(6898)] = 155064, + [SMALL_STATE(6899)] = 155078, + [SMALL_STATE(6900)] = 155092, + [SMALL_STATE(6901)] = 155104, + [SMALL_STATE(6902)] = 155116, + [SMALL_STATE(6903)] = 155128, + [SMALL_STATE(6904)] = 155140, + [SMALL_STATE(6905)] = 155152, + [SMALL_STATE(6906)] = 155164, + [SMALL_STATE(6907)] = 155176, + [SMALL_STATE(6908)] = 155190, + [SMALL_STATE(6909)] = 155204, + [SMALL_STATE(6910)] = 155218, + [SMALL_STATE(6911)] = 155232, + [SMALL_STATE(6912)] = 155246, + [SMALL_STATE(6913)] = 155258, + [SMALL_STATE(6914)] = 155272, + [SMALL_STATE(6915)] = 155284, + [SMALL_STATE(6916)] = 155296, + [SMALL_STATE(6917)] = 155308, + [SMALL_STATE(6918)] = 155320, + [SMALL_STATE(6919)] = 155334, + [SMALL_STATE(6920)] = 155348, + [SMALL_STATE(6921)] = 155360, + [SMALL_STATE(6922)] = 155372, + [SMALL_STATE(6923)] = 155386, + [SMALL_STATE(6924)] = 155398, + [SMALL_STATE(6925)] = 155410, + [SMALL_STATE(6926)] = 155422, + [SMALL_STATE(6927)] = 155434, + [SMALL_STATE(6928)] = 155446, + [SMALL_STATE(6929)] = 155460, + [SMALL_STATE(6930)] = 155472, + [SMALL_STATE(6931)] = 155484, + [SMALL_STATE(6932)] = 155496, + [SMALL_STATE(6933)] = 155510, + [SMALL_STATE(6934)] = 155524, + [SMALL_STATE(6935)] = 155538, + [SMALL_STATE(6936)] = 155552, + [SMALL_STATE(6937)] = 155566, + [SMALL_STATE(6938)] = 155580, + [SMALL_STATE(6939)] = 155592, + [SMALL_STATE(6940)] = 155604, + [SMALL_STATE(6941)] = 155618, + [SMALL_STATE(6942)] = 155630, + [SMALL_STATE(6943)] = 155644, + [SMALL_STATE(6944)] = 155656, + [SMALL_STATE(6945)] = 155668, + [SMALL_STATE(6946)] = 155682, + [SMALL_STATE(6947)] = 155692, + [SMALL_STATE(6948)] = 155706, + [SMALL_STATE(6949)] = 155720, + [SMALL_STATE(6950)] = 155730, + [SMALL_STATE(6951)] = 155744, + [SMALL_STATE(6952)] = 155758, + [SMALL_STATE(6953)] = 155772, + [SMALL_STATE(6954)] = 155786, + [SMALL_STATE(6955)] = 155798, + [SMALL_STATE(6956)] = 155810, + [SMALL_STATE(6957)] = 155824, + [SMALL_STATE(6958)] = 155836, + [SMALL_STATE(6959)] = 155850, + [SMALL_STATE(6960)] = 155864, + [SMALL_STATE(6961)] = 155876, + [SMALL_STATE(6962)] = 155890, + [SMALL_STATE(6963)] = 155900, + [SMALL_STATE(6964)] = 155914, + [SMALL_STATE(6965)] = 155924, + [SMALL_STATE(6966)] = 155936, + [SMALL_STATE(6967)] = 155948, + [SMALL_STATE(6968)] = 155960, + [SMALL_STATE(6969)] = 155974, + [SMALL_STATE(6970)] = 155988, + [SMALL_STATE(6971)] = 156002, + [SMALL_STATE(6972)] = 156016, + [SMALL_STATE(6973)] = 156028, + [SMALL_STATE(6974)] = 156040, + [SMALL_STATE(6975)] = 156052, + [SMALL_STATE(6976)] = 156066, + [SMALL_STATE(6977)] = 156076, + [SMALL_STATE(6978)] = 156090, + [SMALL_STATE(6979)] = 156104, + [SMALL_STATE(6980)] = 156118, + [SMALL_STATE(6981)] = 156130, + [SMALL_STATE(6982)] = 156142, + [SMALL_STATE(6983)] = 156154, + [SMALL_STATE(6984)] = 156166, + [SMALL_STATE(6985)] = 156178, + [SMALL_STATE(6986)] = 156192, + [SMALL_STATE(6987)] = 156204, + [SMALL_STATE(6988)] = 156218, + [SMALL_STATE(6989)] = 156232, + [SMALL_STATE(6990)] = 156242, + [SMALL_STATE(6991)] = 156256, + [SMALL_STATE(6992)] = 156270, + [SMALL_STATE(6993)] = 156282, + [SMALL_STATE(6994)] = 156296, + [SMALL_STATE(6995)] = 156310, + [SMALL_STATE(6996)] = 156322, + [SMALL_STATE(6997)] = 156336, + [SMALL_STATE(6998)] = 156348, + [SMALL_STATE(6999)] = 156360, + [SMALL_STATE(7000)] = 156370, + [SMALL_STATE(7001)] = 156384, + [SMALL_STATE(7002)] = 156398, + [SMALL_STATE(7003)] = 156408, + [SMALL_STATE(7004)] = 156420, + [SMALL_STATE(7005)] = 156430, + [SMALL_STATE(7006)] = 156444, + [SMALL_STATE(7007)] = 156454, + [SMALL_STATE(7008)] = 156464, + [SMALL_STATE(7009)] = 156478, + [SMALL_STATE(7010)] = 156492, + [SMALL_STATE(7011)] = 156504, + [SMALL_STATE(7012)] = 156516, + [SMALL_STATE(7013)] = 156530, + [SMALL_STATE(7014)] = 156542, + [SMALL_STATE(7015)] = 156556, + [SMALL_STATE(7016)] = 156568, + [SMALL_STATE(7017)] = 156580, + [SMALL_STATE(7018)] = 156594, + [SMALL_STATE(7019)] = 156606, + [SMALL_STATE(7020)] = 156618, + [SMALL_STATE(7021)] = 156632, + [SMALL_STATE(7022)] = 156644, + [SMALL_STATE(7023)] = 156656, + [SMALL_STATE(7024)] = 156666, + [SMALL_STATE(7025)] = 156680, + [SMALL_STATE(7026)] = 156692, + [SMALL_STATE(7027)] = 156706, + [SMALL_STATE(7028)] = 156720, + [SMALL_STATE(7029)] = 156732, + [SMALL_STATE(7030)] = 156746, + [SMALL_STATE(7031)] = 156758, + [SMALL_STATE(7032)] = 156770, + [SMALL_STATE(7033)] = 156784, + [SMALL_STATE(7034)] = 156798, + [SMALL_STATE(7035)] = 156810, + [SMALL_STATE(7036)] = 156822, + [SMALL_STATE(7037)] = 156834, + [SMALL_STATE(7038)] = 156848, + [SMALL_STATE(7039)] = 156860, + [SMALL_STATE(7040)] = 156874, + [SMALL_STATE(7041)] = 156888, + [SMALL_STATE(7042)] = 156900, + [SMALL_STATE(7043)] = 156914, + [SMALL_STATE(7044)] = 156928, + [SMALL_STATE(7045)] = 156942, + [SMALL_STATE(7046)] = 156954, + [SMALL_STATE(7047)] = 156968, + [SMALL_STATE(7048)] = 156982, + [SMALL_STATE(7049)] = 156994, + [SMALL_STATE(7050)] = 157008, + [SMALL_STATE(7051)] = 157022, + [SMALL_STATE(7052)] = 157034, + [SMALL_STATE(7053)] = 157048, + [SMALL_STATE(7054)] = 157060, + [SMALL_STATE(7055)] = 157074, + [SMALL_STATE(7056)] = 157086, + [SMALL_STATE(7057)] = 157098, + [SMALL_STATE(7058)] = 157112, + [SMALL_STATE(7059)] = 157124, + [SMALL_STATE(7060)] = 157138, + [SMALL_STATE(7061)] = 157150, + [SMALL_STATE(7062)] = 157164, + [SMALL_STATE(7063)] = 157178, + [SMALL_STATE(7064)] = 157192, + [SMALL_STATE(7065)] = 157204, + [SMALL_STATE(7066)] = 157218, + [SMALL_STATE(7067)] = 157232, + [SMALL_STATE(7068)] = 157244, + [SMALL_STATE(7069)] = 157258, + [SMALL_STATE(7070)] = 157272, + [SMALL_STATE(7071)] = 157286, + [SMALL_STATE(7072)] = 157300, + [SMALL_STATE(7073)] = 157314, + [SMALL_STATE(7074)] = 157328, + [SMALL_STATE(7075)] = 157342, + [SMALL_STATE(7076)] = 157353, + [SMALL_STATE(7077)] = 157364, + [SMALL_STATE(7078)] = 157373, + [SMALL_STATE(7079)] = 157384, + [SMALL_STATE(7080)] = 157395, + [SMALL_STATE(7081)] = 157404, + [SMALL_STATE(7082)] = 157415, + [SMALL_STATE(7083)] = 157424, + [SMALL_STATE(7084)] = 157433, + [SMALL_STATE(7085)] = 157442, + [SMALL_STATE(7086)] = 157451, + [SMALL_STATE(7087)] = 157462, + [SMALL_STATE(7088)] = 157473, + [SMALL_STATE(7089)] = 157482, + [SMALL_STATE(7090)] = 157493, + [SMALL_STATE(7091)] = 157502, + [SMALL_STATE(7092)] = 157511, + [SMALL_STATE(7093)] = 157520, + [SMALL_STATE(7094)] = 157531, + [SMALL_STATE(7095)] = 157540, + [SMALL_STATE(7096)] = 157549, + [SMALL_STATE(7097)] = 157558, + [SMALL_STATE(7098)] = 157569, + [SMALL_STATE(7099)] = 157578, + [SMALL_STATE(7100)] = 157587, + [SMALL_STATE(7101)] = 157596, + [SMALL_STATE(7102)] = 157605, + [SMALL_STATE(7103)] = 157614, + [SMALL_STATE(7104)] = 157625, + [SMALL_STATE(7105)] = 157636, + [SMALL_STATE(7106)] = 157645, + [SMALL_STATE(7107)] = 157654, + [SMALL_STATE(7108)] = 157663, + [SMALL_STATE(7109)] = 157674, + [SMALL_STATE(7110)] = 157685, + [SMALL_STATE(7111)] = 157694, + [SMALL_STATE(7112)] = 157705, + [SMALL_STATE(7113)] = 157714, + [SMALL_STATE(7114)] = 157723, + [SMALL_STATE(7115)] = 157732, + [SMALL_STATE(7116)] = 157741, + [SMALL_STATE(7117)] = 157752, + [SMALL_STATE(7118)] = 157761, + [SMALL_STATE(7119)] = 157770, + [SMALL_STATE(7120)] = 157779, + [SMALL_STATE(7121)] = 157788, + [SMALL_STATE(7122)] = 157797, + [SMALL_STATE(7123)] = 157806, + [SMALL_STATE(7124)] = 157815, + [SMALL_STATE(7125)] = 157824, + [SMALL_STATE(7126)] = 157835, + [SMALL_STATE(7127)] = 157844, + [SMALL_STATE(7128)] = 157853, + [SMALL_STATE(7129)] = 157864, + [SMALL_STATE(7130)] = 157873, + [SMALL_STATE(7131)] = 157884, + [SMALL_STATE(7132)] = 157895, + [SMALL_STATE(7133)] = 157904, + [SMALL_STATE(7134)] = 157915, + [SMALL_STATE(7135)] = 157926, + [SMALL_STATE(7136)] = 157935, + [SMALL_STATE(7137)] = 157944, + [SMALL_STATE(7138)] = 157953, + [SMALL_STATE(7139)] = 157964, + [SMALL_STATE(7140)] = 157975, + [SMALL_STATE(7141)] = 157986, + [SMALL_STATE(7142)] = 157995, + [SMALL_STATE(7143)] = 158004, + [SMALL_STATE(7144)] = 158013, + [SMALL_STATE(7145)] = 158022, + [SMALL_STATE(7146)] = 158031, + [SMALL_STATE(7147)] = 158040, + [SMALL_STATE(7148)] = 158051, + [SMALL_STATE(7149)] = 158062, + [SMALL_STATE(7150)] = 158071, + [SMALL_STATE(7151)] = 158082, + [SMALL_STATE(7152)] = 158093, + [SMALL_STATE(7153)] = 158102, + [SMALL_STATE(7154)] = 158111, + [SMALL_STATE(7155)] = 158120, + [SMALL_STATE(7156)] = 158131, + [SMALL_STATE(7157)] = 158142, + [SMALL_STATE(7158)] = 158151, + [SMALL_STATE(7159)] = 158160, + [SMALL_STATE(7160)] = 158171, + [SMALL_STATE(7161)] = 158180, + [SMALL_STATE(7162)] = 158191, + [SMALL_STATE(7163)] = 158202, + [SMALL_STATE(7164)] = 158213, + [SMALL_STATE(7165)] = 158224, + [SMALL_STATE(7166)] = 158235, + [SMALL_STATE(7167)] = 158244, + [SMALL_STATE(7168)] = 158253, + [SMALL_STATE(7169)] = 158262, + [SMALL_STATE(7170)] = 158271, + [SMALL_STATE(7171)] = 158282, + [SMALL_STATE(7172)] = 158291, + [SMALL_STATE(7173)] = 158302, + [SMALL_STATE(7174)] = 158311, + [SMALL_STATE(7175)] = 158320, + [SMALL_STATE(7176)] = 158331, + [SMALL_STATE(7177)] = 158340, + [SMALL_STATE(7178)] = 158349, + [SMALL_STATE(7179)] = 158358, + [SMALL_STATE(7180)] = 158367, + [SMALL_STATE(7181)] = 158376, + [SMALL_STATE(7182)] = 158385, + [SMALL_STATE(7183)] = 158396, + [SMALL_STATE(7184)] = 158405, + [SMALL_STATE(7185)] = 158416, + [SMALL_STATE(7186)] = 158427, + [SMALL_STATE(7187)] = 158438, + [SMALL_STATE(7188)] = 158449, + [SMALL_STATE(7189)] = 158460, + [SMALL_STATE(7190)] = 158469, + [SMALL_STATE(7191)] = 158478, + [SMALL_STATE(7192)] = 158487, + [SMALL_STATE(7193)] = 158496, + [SMALL_STATE(7194)] = 158507, + [SMALL_STATE(7195)] = 158516, + [SMALL_STATE(7196)] = 158527, + [SMALL_STATE(7197)] = 158536, + [SMALL_STATE(7198)] = 158545, + [SMALL_STATE(7199)] = 158556, + [SMALL_STATE(7200)] = 158565, + [SMALL_STATE(7201)] = 158574, + [SMALL_STATE(7202)] = 158583, + [SMALL_STATE(7203)] = 158592, + [SMALL_STATE(7204)] = 158601, + [SMALL_STATE(7205)] = 158610, + [SMALL_STATE(7206)] = 158621, + [SMALL_STATE(7207)] = 158630, + [SMALL_STATE(7208)] = 158641, + [SMALL_STATE(7209)] = 158650, + [SMALL_STATE(7210)] = 158659, + [SMALL_STATE(7211)] = 158670, + [SMALL_STATE(7212)] = 158679, + [SMALL_STATE(7213)] = 158690, + [SMALL_STATE(7214)] = 158701, + [SMALL_STATE(7215)] = 158710, + [SMALL_STATE(7216)] = 158721, + [SMALL_STATE(7217)] = 158730, + [SMALL_STATE(7218)] = 158739, + [SMALL_STATE(7219)] = 158748, + [SMALL_STATE(7220)] = 158759, + [SMALL_STATE(7221)] = 158768, + [SMALL_STATE(7222)] = 158777, + [SMALL_STATE(7223)] = 158788, + [SMALL_STATE(7224)] = 158797, + [SMALL_STATE(7225)] = 158806, + [SMALL_STATE(7226)] = 158815, + [SMALL_STATE(7227)] = 158824, + [SMALL_STATE(7228)] = 158835, + [SMALL_STATE(7229)] = 158844, + [SMALL_STATE(7230)] = 158855, + [SMALL_STATE(7231)] = 158864, + [SMALL_STATE(7232)] = 158875, + [SMALL_STATE(7233)] = 158884, + [SMALL_STATE(7234)] = 158895, + [SMALL_STATE(7235)] = 158904, + [SMALL_STATE(7236)] = 158915, + [SMALL_STATE(7237)] = 158926, + [SMALL_STATE(7238)] = 158937, + [SMALL_STATE(7239)] = 158948, + [SMALL_STATE(7240)] = 158959, + [SMALL_STATE(7241)] = 158970, + [SMALL_STATE(7242)] = 158979, + [SMALL_STATE(7243)] = 158990, + [SMALL_STATE(7244)] = 159001, + [SMALL_STATE(7245)] = 159012, + [SMALL_STATE(7246)] = 159023, + [SMALL_STATE(7247)] = 159034, + [SMALL_STATE(7248)] = 159045, + [SMALL_STATE(7249)] = 159054, + [SMALL_STATE(7250)] = 159065, + [SMALL_STATE(7251)] = 159076, + [SMALL_STATE(7252)] = 159085, + [SMALL_STATE(7253)] = 159096, + [SMALL_STATE(7254)] = 159107, + [SMALL_STATE(7255)] = 159118, + [SMALL_STATE(7256)] = 159129, + [SMALL_STATE(7257)] = 159140, + [SMALL_STATE(7258)] = 159151, + [SMALL_STATE(7259)] = 159160, + [SMALL_STATE(7260)] = 159171, + [SMALL_STATE(7261)] = 159182, + [SMALL_STATE(7262)] = 159191, + [SMALL_STATE(7263)] = 159202, + [SMALL_STATE(7264)] = 159213, + [SMALL_STATE(7265)] = 159222, + [SMALL_STATE(7266)] = 159233, + [SMALL_STATE(7267)] = 159244, + [SMALL_STATE(7268)] = 159255, + [SMALL_STATE(7269)] = 159264, + [SMALL_STATE(7270)] = 159275, + [SMALL_STATE(7271)] = 159286, + [SMALL_STATE(7272)] = 159297, + [SMALL_STATE(7273)] = 159308, + [SMALL_STATE(7274)] = 159319, + [SMALL_STATE(7275)] = 159330, + [SMALL_STATE(7276)] = 159341, + [SMALL_STATE(7277)] = 159352, + [SMALL_STATE(7278)] = 159361, + [SMALL_STATE(7279)] = 159372, + [SMALL_STATE(7280)] = 159383, + [SMALL_STATE(7281)] = 159392, + [SMALL_STATE(7282)] = 159403, + [SMALL_STATE(7283)] = 159414, + [SMALL_STATE(7284)] = 159425, + [SMALL_STATE(7285)] = 159436, + [SMALL_STATE(7286)] = 159445, + [SMALL_STATE(7287)] = 159456, + [SMALL_STATE(7288)] = 159467, + [SMALL_STATE(7289)] = 159478, + [SMALL_STATE(7290)] = 159489, + [SMALL_STATE(7291)] = 159500, + [SMALL_STATE(7292)] = 159511, + [SMALL_STATE(7293)] = 159522, + [SMALL_STATE(7294)] = 159531, + [SMALL_STATE(7295)] = 159542, + [SMALL_STATE(7296)] = 159553, + [SMALL_STATE(7297)] = 159564, + [SMALL_STATE(7298)] = 159575, + [SMALL_STATE(7299)] = 159586, + [SMALL_STATE(7300)] = 159597, + [SMALL_STATE(7301)] = 159608, + [SMALL_STATE(7302)] = 159619, + [SMALL_STATE(7303)] = 159630, + [SMALL_STATE(7304)] = 159641, + [SMALL_STATE(7305)] = 159652, + [SMALL_STATE(7306)] = 159663, + [SMALL_STATE(7307)] = 159672, + [SMALL_STATE(7308)] = 159683, + [SMALL_STATE(7309)] = 159692, + [SMALL_STATE(7310)] = 159701, + [SMALL_STATE(7311)] = 159710, + [SMALL_STATE(7312)] = 159719, + [SMALL_STATE(7313)] = 159728, + [SMALL_STATE(7314)] = 159737, + [SMALL_STATE(7315)] = 159748, + [SMALL_STATE(7316)] = 159759, + [SMALL_STATE(7317)] = 159768, + [SMALL_STATE(7318)] = 159779, + [SMALL_STATE(7319)] = 159790, + [SMALL_STATE(7320)] = 159801, + [SMALL_STATE(7321)] = 159812, + [SMALL_STATE(7322)] = 159823, + [SMALL_STATE(7323)] = 159832, + [SMALL_STATE(7324)] = 159841, + [SMALL_STATE(7325)] = 159850, + [SMALL_STATE(7326)] = 159859, + [SMALL_STATE(7327)] = 159870, + [SMALL_STATE(7328)] = 159881, + [SMALL_STATE(7329)] = 159890, + [SMALL_STATE(7330)] = 159899, + [SMALL_STATE(7331)] = 159908, + [SMALL_STATE(7332)] = 159917, + [SMALL_STATE(7333)] = 159926, + [SMALL_STATE(7334)] = 159935, + [SMALL_STATE(7335)] = 159944, + [SMALL_STATE(7336)] = 159955, + [SMALL_STATE(7337)] = 159966, + [SMALL_STATE(7338)] = 159977, + [SMALL_STATE(7339)] = 159986, + [SMALL_STATE(7340)] = 159997, + [SMALL_STATE(7341)] = 160008, + [SMALL_STATE(7342)] = 160019, + [SMALL_STATE(7343)] = 160028, + [SMALL_STATE(7344)] = 160039, + [SMALL_STATE(7345)] = 160048, + [SMALL_STATE(7346)] = 160057, + [SMALL_STATE(7347)] = 160066, + [SMALL_STATE(7348)] = 160075, + [SMALL_STATE(7349)] = 160084, + [SMALL_STATE(7350)] = 160093, + [SMALL_STATE(7351)] = 160104, + [SMALL_STATE(7352)] = 160113, + [SMALL_STATE(7353)] = 160122, + [SMALL_STATE(7354)] = 160131, + [SMALL_STATE(7355)] = 160140, + [SMALL_STATE(7356)] = 160149, + [SMALL_STATE(7357)] = 160158, + [SMALL_STATE(7358)] = 160167, + [SMALL_STATE(7359)] = 160176, + [SMALL_STATE(7360)] = 160187, + [SMALL_STATE(7361)] = 160196, + [SMALL_STATE(7362)] = 160205, + [SMALL_STATE(7363)] = 160214, + [SMALL_STATE(7364)] = 160223, + [SMALL_STATE(7365)] = 160232, + [SMALL_STATE(7366)] = 160241, + [SMALL_STATE(7367)] = 160250, + [SMALL_STATE(7368)] = 160259, + [SMALL_STATE(7369)] = 160270, + [SMALL_STATE(7370)] = 160279, + [SMALL_STATE(7371)] = 160288, + [SMALL_STATE(7372)] = 160299, + [SMALL_STATE(7373)] = 160308, + [SMALL_STATE(7374)] = 160319, + [SMALL_STATE(7375)] = 160328, + [SMALL_STATE(7376)] = 160337, + [SMALL_STATE(7377)] = 160346, + [SMALL_STATE(7378)] = 160355, + [SMALL_STATE(7379)] = 160364, + [SMALL_STATE(7380)] = 160373, + [SMALL_STATE(7381)] = 160384, + [SMALL_STATE(7382)] = 160393, + [SMALL_STATE(7383)] = 160402, + [SMALL_STATE(7384)] = 160411, + [SMALL_STATE(7385)] = 160422, + [SMALL_STATE(7386)] = 160431, + [SMALL_STATE(7387)] = 160440, + [SMALL_STATE(7388)] = 160449, + [SMALL_STATE(7389)] = 160458, + [SMALL_STATE(7390)] = 160467, + [SMALL_STATE(7391)] = 160476, + [SMALL_STATE(7392)] = 160485, + [SMALL_STATE(7393)] = 160494, + [SMALL_STATE(7394)] = 160503, + [SMALL_STATE(7395)] = 160512, + [SMALL_STATE(7396)] = 160523, + [SMALL_STATE(7397)] = 160532, + [SMALL_STATE(7398)] = 160541, + [SMALL_STATE(7399)] = 160550, + [SMALL_STATE(7400)] = 160559, + [SMALL_STATE(7401)] = 160570, + [SMALL_STATE(7402)] = 160581, + [SMALL_STATE(7403)] = 160590, + [SMALL_STATE(7404)] = 160599, + [SMALL_STATE(7405)] = 160608, + [SMALL_STATE(7406)] = 160619, + [SMALL_STATE(7407)] = 160628, + [SMALL_STATE(7408)] = 160637, + [SMALL_STATE(7409)] = 160646, + [SMALL_STATE(7410)] = 160655, + [SMALL_STATE(7411)] = 160664, + [SMALL_STATE(7412)] = 160673, + [SMALL_STATE(7413)] = 160684, + [SMALL_STATE(7414)] = 160693, + [SMALL_STATE(7415)] = 160702, + [SMALL_STATE(7416)] = 160713, + [SMALL_STATE(7417)] = 160724, + [SMALL_STATE(7418)] = 160733, + [SMALL_STATE(7419)] = 160742, + [SMALL_STATE(7420)] = 160751, + [SMALL_STATE(7421)] = 160762, + [SMALL_STATE(7422)] = 160773, + [SMALL_STATE(7423)] = 160782, + [SMALL_STATE(7424)] = 160791, + [SMALL_STATE(7425)] = 160800, + [SMALL_STATE(7426)] = 160809, + [SMALL_STATE(7427)] = 160820, + [SMALL_STATE(7428)] = 160831, + [SMALL_STATE(7429)] = 160842, + [SMALL_STATE(7430)] = 160851, + [SMALL_STATE(7431)] = 160860, + [SMALL_STATE(7432)] = 160869, + [SMALL_STATE(7433)] = 160878, + [SMALL_STATE(7434)] = 160887, + [SMALL_STATE(7435)] = 160896, + [SMALL_STATE(7436)] = 160905, + [SMALL_STATE(7437)] = 160914, + [SMALL_STATE(7438)] = 160923, + [SMALL_STATE(7439)] = 160934, + [SMALL_STATE(7440)] = 160945, + [SMALL_STATE(7441)] = 160956, + [SMALL_STATE(7442)] = 160965, + [SMALL_STATE(7443)] = 160976, + [SMALL_STATE(7444)] = 160985, + [SMALL_STATE(7445)] = 160996, + [SMALL_STATE(7446)] = 161005, + [SMALL_STATE(7447)] = 161016, + [SMALL_STATE(7448)] = 161025, + [SMALL_STATE(7449)] = 161036, + [SMALL_STATE(7450)] = 161045, + [SMALL_STATE(7451)] = 161056, + [SMALL_STATE(7452)] = 161065, + [SMALL_STATE(7453)] = 161076, + [SMALL_STATE(7454)] = 161087, + [SMALL_STATE(7455)] = 161098, + [SMALL_STATE(7456)] = 161109, + [SMALL_STATE(7457)] = 161117, + [SMALL_STATE(7458)] = 161125, + [SMALL_STATE(7459)] = 161133, + [SMALL_STATE(7460)] = 161141, + [SMALL_STATE(7461)] = 161149, + [SMALL_STATE(7462)] = 161157, + [SMALL_STATE(7463)] = 161165, + [SMALL_STATE(7464)] = 161173, + [SMALL_STATE(7465)] = 161181, + [SMALL_STATE(7466)] = 161189, + [SMALL_STATE(7467)] = 161197, + [SMALL_STATE(7468)] = 161205, + [SMALL_STATE(7469)] = 161213, + [SMALL_STATE(7470)] = 161221, + [SMALL_STATE(7471)] = 161229, + [SMALL_STATE(7472)] = 161237, + [SMALL_STATE(7473)] = 161245, + [SMALL_STATE(7474)] = 161253, + [SMALL_STATE(7475)] = 161261, + [SMALL_STATE(7476)] = 161269, + [SMALL_STATE(7477)] = 161277, + [SMALL_STATE(7478)] = 161285, + [SMALL_STATE(7479)] = 161293, + [SMALL_STATE(7480)] = 161301, + [SMALL_STATE(7481)] = 161309, + [SMALL_STATE(7482)] = 161317, + [SMALL_STATE(7483)] = 161325, + [SMALL_STATE(7484)] = 161333, + [SMALL_STATE(7485)] = 161341, + [SMALL_STATE(7486)] = 161349, + [SMALL_STATE(7487)] = 161357, + [SMALL_STATE(7488)] = 161365, + [SMALL_STATE(7489)] = 161373, + [SMALL_STATE(7490)] = 161381, + [SMALL_STATE(7491)] = 161389, + [SMALL_STATE(7492)] = 161397, + [SMALL_STATE(7493)] = 161405, + [SMALL_STATE(7494)] = 161413, + [SMALL_STATE(7495)] = 161421, + [SMALL_STATE(7496)] = 161429, + [SMALL_STATE(7497)] = 161437, + [SMALL_STATE(7498)] = 161445, + [SMALL_STATE(7499)] = 161453, + [SMALL_STATE(7500)] = 161461, + [SMALL_STATE(7501)] = 161469, + [SMALL_STATE(7502)] = 161477, + [SMALL_STATE(7503)] = 161485, + [SMALL_STATE(7504)] = 161493, + [SMALL_STATE(7505)] = 161501, + [SMALL_STATE(7506)] = 161509, + [SMALL_STATE(7507)] = 161517, + [SMALL_STATE(7508)] = 161525, + [SMALL_STATE(7509)] = 161533, + [SMALL_STATE(7510)] = 161541, + [SMALL_STATE(7511)] = 161549, + [SMALL_STATE(7512)] = 161557, + [SMALL_STATE(7513)] = 161565, + [SMALL_STATE(7514)] = 161573, + [SMALL_STATE(7515)] = 161581, + [SMALL_STATE(7516)] = 161589, + [SMALL_STATE(7517)] = 161597, + [SMALL_STATE(7518)] = 161605, + [SMALL_STATE(7519)] = 161613, + [SMALL_STATE(7520)] = 161621, + [SMALL_STATE(7521)] = 161629, + [SMALL_STATE(7522)] = 161637, + [SMALL_STATE(7523)] = 161645, + [SMALL_STATE(7524)] = 161653, + [SMALL_STATE(7525)] = 161661, + [SMALL_STATE(7526)] = 161669, + [SMALL_STATE(7527)] = 161677, + [SMALL_STATE(7528)] = 161685, + [SMALL_STATE(7529)] = 161693, + [SMALL_STATE(7530)] = 161701, + [SMALL_STATE(7531)] = 161709, + [SMALL_STATE(7532)] = 161717, + [SMALL_STATE(7533)] = 161725, + [SMALL_STATE(7534)] = 161733, + [SMALL_STATE(7535)] = 161741, + [SMALL_STATE(7536)] = 161749, + [SMALL_STATE(7537)] = 161757, + [SMALL_STATE(7538)] = 161765, + [SMALL_STATE(7539)] = 161773, + [SMALL_STATE(7540)] = 161781, + [SMALL_STATE(7541)] = 161789, + [SMALL_STATE(7542)] = 161797, + [SMALL_STATE(7543)] = 161805, + [SMALL_STATE(7544)] = 161813, + [SMALL_STATE(7545)] = 161821, + [SMALL_STATE(7546)] = 161829, + [SMALL_STATE(7547)] = 161837, + [SMALL_STATE(7548)] = 161845, + [SMALL_STATE(7549)] = 161853, + [SMALL_STATE(7550)] = 161861, + [SMALL_STATE(7551)] = 161869, + [SMALL_STATE(7552)] = 161877, + [SMALL_STATE(7553)] = 161885, + [SMALL_STATE(7554)] = 161893, + [SMALL_STATE(7555)] = 161901, + [SMALL_STATE(7556)] = 161909, + [SMALL_STATE(7557)] = 161917, + [SMALL_STATE(7558)] = 161925, + [SMALL_STATE(7559)] = 161933, + [SMALL_STATE(7560)] = 161941, + [SMALL_STATE(7561)] = 161949, + [SMALL_STATE(7562)] = 161957, + [SMALL_STATE(7563)] = 161965, + [SMALL_STATE(7564)] = 161973, + [SMALL_STATE(7565)] = 161981, + [SMALL_STATE(7566)] = 161989, + [SMALL_STATE(7567)] = 161997, + [SMALL_STATE(7568)] = 162005, + [SMALL_STATE(7569)] = 162013, + [SMALL_STATE(7570)] = 162021, + [SMALL_STATE(7571)] = 162029, + [SMALL_STATE(7572)] = 162037, + [SMALL_STATE(7573)] = 162045, + [SMALL_STATE(7574)] = 162053, + [SMALL_STATE(7575)] = 162061, + [SMALL_STATE(7576)] = 162069, + [SMALL_STATE(7577)] = 162077, + [SMALL_STATE(7578)] = 162085, + [SMALL_STATE(7579)] = 162093, + [SMALL_STATE(7580)] = 162101, + [SMALL_STATE(7581)] = 162109, + [SMALL_STATE(7582)] = 162117, + [SMALL_STATE(7583)] = 162125, + [SMALL_STATE(7584)] = 162133, + [SMALL_STATE(7585)] = 162141, + [SMALL_STATE(7586)] = 162149, + [SMALL_STATE(7587)] = 162157, + [SMALL_STATE(7588)] = 162165, + [SMALL_STATE(7589)] = 162173, + [SMALL_STATE(7590)] = 162181, + [SMALL_STATE(7591)] = 162189, + [SMALL_STATE(7592)] = 162197, + [SMALL_STATE(7593)] = 162205, + [SMALL_STATE(7594)] = 162213, + [SMALL_STATE(7595)] = 162221, + [SMALL_STATE(7596)] = 162229, + [SMALL_STATE(7597)] = 162237, + [SMALL_STATE(7598)] = 162245, + [SMALL_STATE(7599)] = 162253, + [SMALL_STATE(7600)] = 162261, + [SMALL_STATE(7601)] = 162269, + [SMALL_STATE(7602)] = 162277, + [SMALL_STATE(7603)] = 162285, + [SMALL_STATE(7604)] = 162293, + [SMALL_STATE(7605)] = 162301, + [SMALL_STATE(7606)] = 162309, + [SMALL_STATE(7607)] = 162317, + [SMALL_STATE(7608)] = 162325, + [SMALL_STATE(7609)] = 162333, + [SMALL_STATE(7610)] = 162341, + [SMALL_STATE(7611)] = 162349, + [SMALL_STATE(7612)] = 162357, + [SMALL_STATE(7613)] = 162365, + [SMALL_STATE(7614)] = 162373, + [SMALL_STATE(7615)] = 162381, + [SMALL_STATE(7616)] = 162389, + [SMALL_STATE(7617)] = 162397, + [SMALL_STATE(7618)] = 162405, + [SMALL_STATE(7619)] = 162413, + [SMALL_STATE(7620)] = 162421, + [SMALL_STATE(7621)] = 162429, + [SMALL_STATE(7622)] = 162437, + [SMALL_STATE(7623)] = 162445, + [SMALL_STATE(7624)] = 162453, + [SMALL_STATE(7625)] = 162461, + [SMALL_STATE(7626)] = 162469, + [SMALL_STATE(7627)] = 162477, + [SMALL_STATE(7628)] = 162485, + [SMALL_STATE(7629)] = 162493, + [SMALL_STATE(7630)] = 162501, + [SMALL_STATE(7631)] = 162509, + [SMALL_STATE(7632)] = 162517, + [SMALL_STATE(7633)] = 162525, + [SMALL_STATE(7634)] = 162533, + [SMALL_STATE(7635)] = 162541, + [SMALL_STATE(7636)] = 162549, + [SMALL_STATE(7637)] = 162557, + [SMALL_STATE(7638)] = 162565, + [SMALL_STATE(7639)] = 162573, + [SMALL_STATE(7640)] = 162581, + [SMALL_STATE(7641)] = 162589, + [SMALL_STATE(7642)] = 162597, + [SMALL_STATE(7643)] = 162605, + [SMALL_STATE(7644)] = 162613, + [SMALL_STATE(7645)] = 162621, + [SMALL_STATE(7646)] = 162629, + [SMALL_STATE(7647)] = 162637, + [SMALL_STATE(7648)] = 162645, + [SMALL_STATE(7649)] = 162653, + [SMALL_STATE(7650)] = 162661, + [SMALL_STATE(7651)] = 162669, + [SMALL_STATE(7652)] = 162677, + [SMALL_STATE(7653)] = 162685, + [SMALL_STATE(7654)] = 162693, + [SMALL_STATE(7655)] = 162701, + [SMALL_STATE(7656)] = 162709, + [SMALL_STATE(7657)] = 162717, + [SMALL_STATE(7658)] = 162725, + [SMALL_STATE(7659)] = 162733, + [SMALL_STATE(7660)] = 162741, + [SMALL_STATE(7661)] = 162749, + [SMALL_STATE(7662)] = 162757, + [SMALL_STATE(7663)] = 162765, + [SMALL_STATE(7664)] = 162773, + [SMALL_STATE(7665)] = 162781, + [SMALL_STATE(7666)] = 162789, + [SMALL_STATE(7667)] = 162797, + [SMALL_STATE(7668)] = 162805, + [SMALL_STATE(7669)] = 162813, + [SMALL_STATE(7670)] = 162821, + [SMALL_STATE(7671)] = 162829, + [SMALL_STATE(7672)] = 162837, + [SMALL_STATE(7673)] = 162845, + [SMALL_STATE(7674)] = 162853, + [SMALL_STATE(7675)] = 162861, + [SMALL_STATE(7676)] = 162869, + [SMALL_STATE(7677)] = 162877, + [SMALL_STATE(7678)] = 162885, + [SMALL_STATE(7679)] = 162893, + [SMALL_STATE(7680)] = 162901, + [SMALL_STATE(7681)] = 162909, + [SMALL_STATE(7682)] = 162917, + [SMALL_STATE(7683)] = 162925, + [SMALL_STATE(7684)] = 162933, + [SMALL_STATE(7685)] = 162941, + [SMALL_STATE(7686)] = 162949, + [SMALL_STATE(7687)] = 162957, + [SMALL_STATE(7688)] = 162965, + [SMALL_STATE(7689)] = 162973, + [SMALL_STATE(7690)] = 162981, + [SMALL_STATE(7691)] = 162989, + [SMALL_STATE(7692)] = 162997, + [SMALL_STATE(7693)] = 163005, + [SMALL_STATE(7694)] = 163013, + [SMALL_STATE(7695)] = 163021, + [SMALL_STATE(7696)] = 163029, + [SMALL_STATE(7697)] = 163037, + [SMALL_STATE(7698)] = 163045, + [SMALL_STATE(7699)] = 163053, + [SMALL_STATE(7700)] = 163061, + [SMALL_STATE(7701)] = 163069, + [SMALL_STATE(7702)] = 163077, + [SMALL_STATE(7703)] = 163085, + [SMALL_STATE(7704)] = 163093, + [SMALL_STATE(7705)] = 163101, + [SMALL_STATE(7706)] = 163109, + [SMALL_STATE(7707)] = 163117, + [SMALL_STATE(7708)] = 163125, + [SMALL_STATE(7709)] = 163133, + [SMALL_STATE(7710)] = 163141, + [SMALL_STATE(7711)] = 163149, + [SMALL_STATE(7712)] = 163157, + [SMALL_STATE(7713)] = 163165, + [SMALL_STATE(7714)] = 163173, + [SMALL_STATE(7715)] = 163181, + [SMALL_STATE(7716)] = 163189, + [SMALL_STATE(7717)] = 163197, + [SMALL_STATE(7718)] = 163205, + [SMALL_STATE(7719)] = 163213, + [SMALL_STATE(7720)] = 163221, + [SMALL_STATE(7721)] = 163229, + [SMALL_STATE(7722)] = 163237, + [SMALL_STATE(7723)] = 163245, + [SMALL_STATE(7724)] = 163253, + [SMALL_STATE(7725)] = 163261, + [SMALL_STATE(7726)] = 163269, + [SMALL_STATE(7727)] = 163277, + [SMALL_STATE(7728)] = 163285, + [SMALL_STATE(7729)] = 163293, + [SMALL_STATE(7730)] = 163301, + [SMALL_STATE(7731)] = 163309, + [SMALL_STATE(7732)] = 163317, + [SMALL_STATE(7733)] = 163325, + [SMALL_STATE(7734)] = 163333, + [SMALL_STATE(7735)] = 163341, + [SMALL_STATE(7736)] = 163349, + [SMALL_STATE(7737)] = 163357, + [SMALL_STATE(7738)] = 163365, + [SMALL_STATE(7739)] = 163373, + [SMALL_STATE(7740)] = 163381, + [SMALL_STATE(7741)] = 163389, + [SMALL_STATE(7742)] = 163397, + [SMALL_STATE(7743)] = 163405, + [SMALL_STATE(7744)] = 163413, + [SMALL_STATE(7745)] = 163421, + [SMALL_STATE(7746)] = 163429, + [SMALL_STATE(7747)] = 163437, + [SMALL_STATE(7748)] = 163445, + [SMALL_STATE(7749)] = 163453, + [SMALL_STATE(7750)] = 163461, + [SMALL_STATE(7751)] = 163469, + [SMALL_STATE(7752)] = 163477, + [SMALL_STATE(7753)] = 163485, + [SMALL_STATE(7754)] = 163493, + [SMALL_STATE(7755)] = 163501, + [SMALL_STATE(7756)] = 163509, + [SMALL_STATE(7757)] = 163517, + [SMALL_STATE(7758)] = 163525, + [SMALL_STATE(7759)] = 163533, + [SMALL_STATE(7760)] = 163541, + [SMALL_STATE(7761)] = 163549, + [SMALL_STATE(7762)] = 163557, + [SMALL_STATE(7763)] = 163565, + [SMALL_STATE(7764)] = 163573, + [SMALL_STATE(7765)] = 163581, + [SMALL_STATE(7766)] = 163589, + [SMALL_STATE(7767)] = 163597, + [SMALL_STATE(7768)] = 163605, + [SMALL_STATE(7769)] = 163613, + [SMALL_STATE(7770)] = 163621, + [SMALL_STATE(7771)] = 163629, + [SMALL_STATE(7772)] = 163637, + [SMALL_STATE(7773)] = 163645, + [SMALL_STATE(7774)] = 163653, + [SMALL_STATE(7775)] = 163661, + [SMALL_STATE(7776)] = 163669, + [SMALL_STATE(7777)] = 163677, + [SMALL_STATE(7778)] = 163685, + [SMALL_STATE(7779)] = 163693, + [SMALL_STATE(7780)] = 163701, + [SMALL_STATE(7781)] = 163709, + [SMALL_STATE(7782)] = 163717, + [SMALL_STATE(7783)] = 163725, + [SMALL_STATE(7784)] = 163733, + [SMALL_STATE(7785)] = 163741, + [SMALL_STATE(7786)] = 163749, + [SMALL_STATE(7787)] = 163757, + [SMALL_STATE(7788)] = 163765, + [SMALL_STATE(7789)] = 163773, + [SMALL_STATE(7790)] = 163781, + [SMALL_STATE(7791)] = 163789, + [SMALL_STATE(7792)] = 163797, + [SMALL_STATE(7793)] = 163805, + [SMALL_STATE(7794)] = 163813, + [SMALL_STATE(7795)] = 163821, + [SMALL_STATE(7796)] = 163829, + [SMALL_STATE(7797)] = 163837, + [SMALL_STATE(7798)] = 163845, + [SMALL_STATE(7799)] = 163853, + [SMALL_STATE(7800)] = 163861, + [SMALL_STATE(7801)] = 163869, + [SMALL_STATE(7802)] = 163877, + [SMALL_STATE(7803)] = 163885, + [SMALL_STATE(7804)] = 163893, + [SMALL_STATE(7805)] = 163901, + [SMALL_STATE(7806)] = 163909, + [SMALL_STATE(7807)] = 163917, + [SMALL_STATE(7808)] = 163925, + [SMALL_STATE(7809)] = 163933, + [SMALL_STATE(7810)] = 163941, + [SMALL_STATE(7811)] = 163949, + [SMALL_STATE(7812)] = 163957, + [SMALL_STATE(7813)] = 163965, + [SMALL_STATE(7814)] = 163973, + [SMALL_STATE(7815)] = 163981, + [SMALL_STATE(7816)] = 163989, + [SMALL_STATE(7817)] = 163997, + [SMALL_STATE(7818)] = 164005, + [SMALL_STATE(7819)] = 164013, + [SMALL_STATE(7820)] = 164021, + [SMALL_STATE(7821)] = 164029, + [SMALL_STATE(7822)] = 164037, + [SMALL_STATE(7823)] = 164045, + [SMALL_STATE(7824)] = 164053, + [SMALL_STATE(7825)] = 164061, + [SMALL_STATE(7826)] = 164069, + [SMALL_STATE(7827)] = 164077, + [SMALL_STATE(7828)] = 164085, + [SMALL_STATE(7829)] = 164093, + [SMALL_STATE(7830)] = 164101, + [SMALL_STATE(7831)] = 164109, + [SMALL_STATE(7832)] = 164117, + [SMALL_STATE(7833)] = 164125, + [SMALL_STATE(7834)] = 164133, + [SMALL_STATE(7835)] = 164141, + [SMALL_STATE(7836)] = 164149, + [SMALL_STATE(7837)] = 164157, + [SMALL_STATE(7838)] = 164165, + [SMALL_STATE(7839)] = 164173, + [SMALL_STATE(7840)] = 164181, + [SMALL_STATE(7841)] = 164189, + [SMALL_STATE(7842)] = 164197, + [SMALL_STATE(7843)] = 164205, + [SMALL_STATE(7844)] = 164213, + [SMALL_STATE(7845)] = 164221, + [SMALL_STATE(7846)] = 164229, + [SMALL_STATE(7847)] = 164237, + [SMALL_STATE(7848)] = 164245, + [SMALL_STATE(7849)] = 164253, + [SMALL_STATE(7850)] = 164261, + [SMALL_STATE(7851)] = 164269, + [SMALL_STATE(7852)] = 164277, + [SMALL_STATE(7853)] = 164285, + [SMALL_STATE(7854)] = 164293, + [SMALL_STATE(7855)] = 164301, + [SMALL_STATE(7856)] = 164309, + [SMALL_STATE(7857)] = 164317, + [SMALL_STATE(7858)] = 164325, + [SMALL_STATE(7859)] = 164333, + [SMALL_STATE(7860)] = 164341, + [SMALL_STATE(7861)] = 164349, + [SMALL_STATE(7862)] = 164357, + [SMALL_STATE(7863)] = 164365, + [SMALL_STATE(7864)] = 164373, + [SMALL_STATE(7865)] = 164381, + [SMALL_STATE(7866)] = 164389, + [SMALL_STATE(7867)] = 164397, + [SMALL_STATE(7868)] = 164405, + [SMALL_STATE(7869)] = 164413, + [SMALL_STATE(7870)] = 164421, + [SMALL_STATE(7871)] = 164429, + [SMALL_STATE(7872)] = 164437, + [SMALL_STATE(7873)] = 164445, + [SMALL_STATE(7874)] = 164453, + [SMALL_STATE(7875)] = 164461, + [SMALL_STATE(7876)] = 164469, + [SMALL_STATE(7877)] = 164477, + [SMALL_STATE(7878)] = 164485, + [SMALL_STATE(7879)] = 164493, + [SMALL_STATE(7880)] = 164501, + [SMALL_STATE(7881)] = 164509, + [SMALL_STATE(7882)] = 164517, + [SMALL_STATE(7883)] = 164525, + [SMALL_STATE(7884)] = 164533, + [SMALL_STATE(7885)] = 164541, + [SMALL_STATE(7886)] = 164549, + [SMALL_STATE(7887)] = 164557, + [SMALL_STATE(7888)] = 164565, + [SMALL_STATE(7889)] = 164573, + [SMALL_STATE(7890)] = 164581, + [SMALL_STATE(7891)] = 164589, + [SMALL_STATE(7892)] = 164597, + [SMALL_STATE(7893)] = 164605, + [SMALL_STATE(7894)] = 164613, + [SMALL_STATE(7895)] = 164621, + [SMALL_STATE(7896)] = 164629, + [SMALL_STATE(7897)] = 164637, + [SMALL_STATE(7898)] = 164645, + [SMALL_STATE(7899)] = 164653, + [SMALL_STATE(7900)] = 164661, + [SMALL_STATE(7901)] = 164669, + [SMALL_STATE(7902)] = 164677, + [SMALL_STATE(7903)] = 164685, + [SMALL_STATE(7904)] = 164693, + [SMALL_STATE(7905)] = 164701, + [SMALL_STATE(7906)] = 164709, + [SMALL_STATE(7907)] = 164717, + [SMALL_STATE(7908)] = 164725, + [SMALL_STATE(7909)] = 164733, + [SMALL_STATE(7910)] = 164741, + [SMALL_STATE(7911)] = 164749, + [SMALL_STATE(7912)] = 164757, + [SMALL_STATE(7913)] = 164765, + [SMALL_STATE(7914)] = 164773, + [SMALL_STATE(7915)] = 164781, + [SMALL_STATE(7916)] = 164789, + [SMALL_STATE(7917)] = 164797, + [SMALL_STATE(7918)] = 164805, + [SMALL_STATE(7919)] = 164813, + [SMALL_STATE(7920)] = 164821, + [SMALL_STATE(7921)] = 164829, + [SMALL_STATE(7922)] = 164837, + [SMALL_STATE(7923)] = 164845, + [SMALL_STATE(7924)] = 164853, + [SMALL_STATE(7925)] = 164861, + [SMALL_STATE(7926)] = 164869, + [SMALL_STATE(7927)] = 164877, + [SMALL_STATE(7928)] = 164885, + [SMALL_STATE(7929)] = 164893, + [SMALL_STATE(7930)] = 164901, + [SMALL_STATE(7931)] = 164909, + [SMALL_STATE(7932)] = 164917, + [SMALL_STATE(7933)] = 164925, + [SMALL_STATE(7934)] = 164933, + [SMALL_STATE(7935)] = 164941, + [SMALL_STATE(7936)] = 164949, + [SMALL_STATE(7937)] = 164957, + [SMALL_STATE(7938)] = 164965, + [SMALL_STATE(7939)] = 164973, + [SMALL_STATE(7940)] = 164981, + [SMALL_STATE(7941)] = 164989, + [SMALL_STATE(7942)] = 164997, + [SMALL_STATE(7943)] = 165005, + [SMALL_STATE(7944)] = 165013, + [SMALL_STATE(7945)] = 165021, + [SMALL_STATE(7946)] = 165029, + [SMALL_STATE(7947)] = 165037, + [SMALL_STATE(7948)] = 165045, + [SMALL_STATE(7949)] = 165053, + [SMALL_STATE(7950)] = 165061, + [SMALL_STATE(7951)] = 165069, + [SMALL_STATE(7952)] = 165077, + [SMALL_STATE(7953)] = 165085, + [SMALL_STATE(7954)] = 165093, + [SMALL_STATE(7955)] = 165101, + [SMALL_STATE(7956)] = 165109, + [SMALL_STATE(7957)] = 165117, + [SMALL_STATE(7958)] = 165125, + [SMALL_STATE(7959)] = 165133, + [SMALL_STATE(7960)] = 165141, + [SMALL_STATE(7961)] = 165149, + [SMALL_STATE(7962)] = 165157, + [SMALL_STATE(7963)] = 165165, + [SMALL_STATE(7964)] = 165173, + [SMALL_STATE(7965)] = 165181, + [SMALL_STATE(7966)] = 165189, + [SMALL_STATE(7967)] = 165197, + [SMALL_STATE(7968)] = 165205, + [SMALL_STATE(7969)] = 165213, + [SMALL_STATE(7970)] = 165221, + [SMALL_STATE(7971)] = 165229, + [SMALL_STATE(7972)] = 165237, + [SMALL_STATE(7973)] = 165245, + [SMALL_STATE(7974)] = 165253, + [SMALL_STATE(7975)] = 165261, + [SMALL_STATE(7976)] = 165269, + [SMALL_STATE(7977)] = 165277, + [SMALL_STATE(7978)] = 165285, + [SMALL_STATE(7979)] = 165293, + [SMALL_STATE(7980)] = 165301, + [SMALL_STATE(7981)] = 165309, + [SMALL_STATE(7982)] = 165317, + [SMALL_STATE(7983)] = 165325, + [SMALL_STATE(7984)] = 165333, + [SMALL_STATE(7985)] = 165341, + [SMALL_STATE(7986)] = 165349, + [SMALL_STATE(7987)] = 165357, + [SMALL_STATE(7988)] = 165365, + [SMALL_STATE(7989)] = 165373, + [SMALL_STATE(7990)] = 165381, + [SMALL_STATE(7991)] = 165389, + [SMALL_STATE(7992)] = 165397, + [SMALL_STATE(7993)] = 165405, + [SMALL_STATE(7994)] = 165413, + [SMALL_STATE(7995)] = 165421, + [SMALL_STATE(7996)] = 165429, + [SMALL_STATE(7997)] = 165437, + [SMALL_STATE(7998)] = 165445, + [SMALL_STATE(7999)] = 165453, + [SMALL_STATE(8000)] = 165461, + [SMALL_STATE(8001)] = 165469, + [SMALL_STATE(8002)] = 165477, + [SMALL_STATE(8003)] = 165485, + [SMALL_STATE(8004)] = 165493, + [SMALL_STATE(8005)] = 165501, + [SMALL_STATE(8006)] = 165509, + [SMALL_STATE(8007)] = 165517, + [SMALL_STATE(8008)] = 165525, + [SMALL_STATE(8009)] = 165533, + [SMALL_STATE(8010)] = 165541, + [SMALL_STATE(8011)] = 165549, + [SMALL_STATE(8012)] = 165557, + [SMALL_STATE(8013)] = 165565, + [SMALL_STATE(8014)] = 165573, + [SMALL_STATE(8015)] = 165581, + [SMALL_STATE(8016)] = 165589, + [SMALL_STATE(8017)] = 165597, + [SMALL_STATE(8018)] = 165605, + [SMALL_STATE(8019)] = 165613, + [SMALL_STATE(8020)] = 165621, + [SMALL_STATE(8021)] = 165629, + [SMALL_STATE(8022)] = 165637, + [SMALL_STATE(8023)] = 165645, + [SMALL_STATE(8024)] = 165653, + [SMALL_STATE(8025)] = 165661, + [SMALL_STATE(8026)] = 165669, + [SMALL_STATE(8027)] = 165677, + [SMALL_STATE(8028)] = 165685, + [SMALL_STATE(8029)] = 165693, + [SMALL_STATE(8030)] = 165701, + [SMALL_STATE(8031)] = 165709, + [SMALL_STATE(8032)] = 165717, + [SMALL_STATE(8033)] = 165725, + [SMALL_STATE(8034)] = 165733, + [SMALL_STATE(8035)] = 165741, + [SMALL_STATE(8036)] = 165749, + [SMALL_STATE(8037)] = 165757, + [SMALL_STATE(8038)] = 165765, + [SMALL_STATE(8039)] = 165773, + [SMALL_STATE(8040)] = 165781, + [SMALL_STATE(8041)] = 165789, + [SMALL_STATE(8042)] = 165797, + [SMALL_STATE(8043)] = 165805, + [SMALL_STATE(8044)] = 165813, + [SMALL_STATE(8045)] = 165821, + [SMALL_STATE(8046)] = 165829, + [SMALL_STATE(8047)] = 165837, + [SMALL_STATE(8048)] = 165845, + [SMALL_STATE(8049)] = 165853, + [SMALL_STATE(8050)] = 165861, + [SMALL_STATE(8051)] = 165869, + [SMALL_STATE(8052)] = 165877, + [SMALL_STATE(8053)] = 165885, + [SMALL_STATE(8054)] = 165893, + [SMALL_STATE(8055)] = 165901, + [SMALL_STATE(8056)] = 165909, + [SMALL_STATE(8057)] = 165917, + [SMALL_STATE(8058)] = 165925, + [SMALL_STATE(8059)] = 165933, + [SMALL_STATE(8060)] = 165941, + [SMALL_STATE(8061)] = 165949, + [SMALL_STATE(8062)] = 165957, + [SMALL_STATE(8063)] = 165965, + [SMALL_STATE(8064)] = 165973, + [SMALL_STATE(8065)] = 165981, + [SMALL_STATE(8066)] = 165989, + [SMALL_STATE(8067)] = 165997, + [SMALL_STATE(8068)] = 166005, + [SMALL_STATE(8069)] = 166013, + [SMALL_STATE(8070)] = 166021, + [SMALL_STATE(8071)] = 166029, + [SMALL_STATE(8072)] = 166037, + [SMALL_STATE(8073)] = 166045, + [SMALL_STATE(8074)] = 166053, + [SMALL_STATE(8075)] = 166061, + [SMALL_STATE(8076)] = 166069, + [SMALL_STATE(8077)] = 166077, + [SMALL_STATE(8078)] = 166085, + [SMALL_STATE(8079)] = 166093, + [SMALL_STATE(8080)] = 166101, + [SMALL_STATE(8081)] = 166109, + [SMALL_STATE(8082)] = 166117, + [SMALL_STATE(8083)] = 166125, + [SMALL_STATE(8084)] = 166133, + [SMALL_STATE(8085)] = 166141, + [SMALL_STATE(8086)] = 166149, + [SMALL_STATE(8087)] = 166157, + [SMALL_STATE(8088)] = 166165, + [SMALL_STATE(8089)] = 166173, + [SMALL_STATE(8090)] = 166181, + [SMALL_STATE(8091)] = 166189, + [SMALL_STATE(8092)] = 166197, + [SMALL_STATE(8093)] = 166205, + [SMALL_STATE(8094)] = 166213, + [SMALL_STATE(8095)] = 166221, + [SMALL_STATE(8096)] = 166229, + [SMALL_STATE(8097)] = 166237, + [SMALL_STATE(8098)] = 166245, + [SMALL_STATE(8099)] = 166253, + [SMALL_STATE(8100)] = 166261, + [SMALL_STATE(8101)] = 166269, + [SMALL_STATE(8102)] = 166277, + [SMALL_STATE(8103)] = 166285, + [SMALL_STATE(8104)] = 166293, + [SMALL_STATE(8105)] = 166301, + [SMALL_STATE(8106)] = 166309, + [SMALL_STATE(8107)] = 166317, + [SMALL_STATE(8108)] = 166325, + [SMALL_STATE(8109)] = 166333, + [SMALL_STATE(8110)] = 166341, + [SMALL_STATE(8111)] = 166349, + [SMALL_STATE(8112)] = 166357, + [SMALL_STATE(8113)] = 166365, + [SMALL_STATE(8114)] = 166373, + [SMALL_STATE(8115)] = 166381, + [SMALL_STATE(8116)] = 166389, + [SMALL_STATE(8117)] = 166397, + [SMALL_STATE(8118)] = 166405, + [SMALL_STATE(8119)] = 166413, + [SMALL_STATE(8120)] = 166421, + [SMALL_STATE(8121)] = 166429, + [SMALL_STATE(8122)] = 166437, + [SMALL_STATE(8123)] = 166445, + [SMALL_STATE(8124)] = 166453, + [SMALL_STATE(8125)] = 166461, + [SMALL_STATE(8126)] = 166469, + [SMALL_STATE(8127)] = 166477, + [SMALL_STATE(8128)] = 166485, + [SMALL_STATE(8129)] = 166493, + [SMALL_STATE(8130)] = 166501, + [SMALL_STATE(8131)] = 166509, + [SMALL_STATE(8132)] = 166517, + [SMALL_STATE(8133)] = 166525, + [SMALL_STATE(8134)] = 166533, + [SMALL_STATE(8135)] = 166541, + [SMALL_STATE(8136)] = 166549, + [SMALL_STATE(8137)] = 166557, + [SMALL_STATE(8138)] = 166565, + [SMALL_STATE(8139)] = 166573, + [SMALL_STATE(8140)] = 166581, + [SMALL_STATE(8141)] = 166589, + [SMALL_STATE(8142)] = 166597, + [SMALL_STATE(8143)] = 166605, + [SMALL_STATE(8144)] = 166613, + [SMALL_STATE(8145)] = 166621, + [SMALL_STATE(8146)] = 166629, + [SMALL_STATE(8147)] = 166637, + [SMALL_STATE(8148)] = 166645, + [SMALL_STATE(8149)] = 166653, + [SMALL_STATE(8150)] = 166661, + [SMALL_STATE(8151)] = 166669, + [SMALL_STATE(8152)] = 166677, + [SMALL_STATE(8153)] = 166685, + [SMALL_STATE(8154)] = 166693, + [SMALL_STATE(8155)] = 166701, + [SMALL_STATE(8156)] = 166709, + [SMALL_STATE(8157)] = 166717, + [SMALL_STATE(8158)] = 166725, + [SMALL_STATE(8159)] = 166733, + [SMALL_STATE(8160)] = 166741, + [SMALL_STATE(8161)] = 166749, + [SMALL_STATE(8162)] = 166757, + [SMALL_STATE(8163)] = 166765, + [SMALL_STATE(8164)] = 166773, + [SMALL_STATE(8165)] = 166781, + [SMALL_STATE(8166)] = 166789, + [SMALL_STATE(8167)] = 166797, + [SMALL_STATE(8168)] = 166805, + [SMALL_STATE(8169)] = 166813, + [SMALL_STATE(8170)] = 166821, + [SMALL_STATE(8171)] = 166829, + [SMALL_STATE(8172)] = 166837, + [SMALL_STATE(8173)] = 166845, + [SMALL_STATE(8174)] = 166853, + [SMALL_STATE(8175)] = 166861, + [SMALL_STATE(8176)] = 166869, + [SMALL_STATE(8177)] = 166877, + [SMALL_STATE(8178)] = 166885, + [SMALL_STATE(8179)] = 166893, + [SMALL_STATE(8180)] = 166901, + [SMALL_STATE(8181)] = 166909, + [SMALL_STATE(8182)] = 166917, + [SMALL_STATE(8183)] = 166925, + [SMALL_STATE(8184)] = 166933, + [SMALL_STATE(8185)] = 166941, + [SMALL_STATE(8186)] = 166949, + [SMALL_STATE(8187)] = 166957, + [SMALL_STATE(8188)] = 166965, + [SMALL_STATE(8189)] = 166973, + [SMALL_STATE(8190)] = 166981, + [SMALL_STATE(8191)] = 166989, + [SMALL_STATE(8192)] = 166997, + [SMALL_STATE(8193)] = 167005, + [SMALL_STATE(8194)] = 167013, + [SMALL_STATE(8195)] = 167021, + [SMALL_STATE(8196)] = 167029, + [SMALL_STATE(8197)] = 167037, + [SMALL_STATE(8198)] = 167045, + [SMALL_STATE(8199)] = 167053, + [SMALL_STATE(8200)] = 167061, + [SMALL_STATE(8201)] = 167069, + [SMALL_STATE(8202)] = 167077, + [SMALL_STATE(8203)] = 167085, + [SMALL_STATE(8204)] = 167093, + [SMALL_STATE(8205)] = 167101, + [SMALL_STATE(8206)] = 167109, + [SMALL_STATE(8207)] = 167117, + [SMALL_STATE(8208)] = 167125, + [SMALL_STATE(8209)] = 167133, + [SMALL_STATE(8210)] = 167141, + [SMALL_STATE(8211)] = 167149, + [SMALL_STATE(8212)] = 167157, + [SMALL_STATE(8213)] = 167165, + [SMALL_STATE(8214)] = 167173, + [SMALL_STATE(8215)] = 167181, + [SMALL_STATE(8216)] = 167189, + [SMALL_STATE(8217)] = 167197, + [SMALL_STATE(8218)] = 167205, + [SMALL_STATE(8219)] = 167213, + [SMALL_STATE(8220)] = 167221, + [SMALL_STATE(8221)] = 167229, + [SMALL_STATE(8222)] = 167237, + [SMALL_STATE(8223)] = 167245, + [SMALL_STATE(8224)] = 167253, + [SMALL_STATE(8225)] = 167261, + [SMALL_STATE(8226)] = 167269, + [SMALL_STATE(8227)] = 167277, + [SMALL_STATE(8228)] = 167285, + [SMALL_STATE(8229)] = 167293, + [SMALL_STATE(8230)] = 167301, + [SMALL_STATE(8231)] = 167309, + [SMALL_STATE(8232)] = 167317, + [SMALL_STATE(8233)] = 167325, + [SMALL_STATE(8234)] = 167333, + [SMALL_STATE(8235)] = 167341, + [SMALL_STATE(8236)] = 167349, + [SMALL_STATE(8237)] = 167357, + [SMALL_STATE(8238)] = 167365, + [SMALL_STATE(8239)] = 167373, + [SMALL_STATE(8240)] = 167381, + [SMALL_STATE(8241)] = 167389, + [SMALL_STATE(8242)] = 167397, + [SMALL_STATE(8243)] = 167405, + [SMALL_STATE(8244)] = 167413, + [SMALL_STATE(8245)] = 167421, + [SMALL_STATE(8246)] = 167429, + [SMALL_STATE(8247)] = 167437, + [SMALL_STATE(8248)] = 167445, + [SMALL_STATE(8249)] = 167453, + [SMALL_STATE(8250)] = 167461, + [SMALL_STATE(8251)] = 167469, + [SMALL_STATE(8252)] = 167477, + [SMALL_STATE(8253)] = 167485, + [SMALL_STATE(8254)] = 167493, + [SMALL_STATE(8255)] = 167501, + [SMALL_STATE(8256)] = 167509, + [SMALL_STATE(8257)] = 167517, + [SMALL_STATE(8258)] = 167525, + [SMALL_STATE(8259)] = 167533, + [SMALL_STATE(8260)] = 167541, + [SMALL_STATE(8261)] = 167549, + [SMALL_STATE(8262)] = 167557, + [SMALL_STATE(8263)] = 167565, + [SMALL_STATE(8264)] = 167573, + [SMALL_STATE(8265)] = 167581, + [SMALL_STATE(8266)] = 167589, + [SMALL_STATE(8267)] = 167597, + [SMALL_STATE(8268)] = 167605, + [SMALL_STATE(8269)] = 167613, + [SMALL_STATE(8270)] = 167621, + [SMALL_STATE(8271)] = 167629, + [SMALL_STATE(8272)] = 167637, + [SMALL_STATE(8273)] = 167645, + [SMALL_STATE(8274)] = 167653, + [SMALL_STATE(8275)] = 167661, + [SMALL_STATE(8276)] = 167669, + [SMALL_STATE(8277)] = 167677, + [SMALL_STATE(8278)] = 167685, + [SMALL_STATE(8279)] = 167693, + [SMALL_STATE(8280)] = 167701, + [SMALL_STATE(8281)] = 167709, + [SMALL_STATE(8282)] = 167717, + [SMALL_STATE(8283)] = 167725, + [SMALL_STATE(8284)] = 167733, + [SMALL_STATE(8285)] = 167741, + [SMALL_STATE(8286)] = 167749, + [SMALL_STATE(8287)] = 167757, + [SMALL_STATE(8288)] = 167765, + [SMALL_STATE(8289)] = 167773, + [SMALL_STATE(8290)] = 167781, + [SMALL_STATE(8291)] = 167789, + [SMALL_STATE(8292)] = 167797, + [SMALL_STATE(8293)] = 167805, + [SMALL_STATE(8294)] = 167813, + [SMALL_STATE(8295)] = 167821, + [SMALL_STATE(8296)] = 167829, + [SMALL_STATE(8297)] = 167837, + [SMALL_STATE(8298)] = 167845, + [SMALL_STATE(8299)] = 167853, + [SMALL_STATE(8300)] = 167861, + [SMALL_STATE(8301)] = 167869, + [SMALL_STATE(8302)] = 167877, + [SMALL_STATE(8303)] = 167885, + [SMALL_STATE(8304)] = 167893, + [SMALL_STATE(8305)] = 167901, + [SMALL_STATE(8306)] = 167909, + [SMALL_STATE(8307)] = 167917, + [SMALL_STATE(8308)] = 167925, + [SMALL_STATE(8309)] = 167933, + [SMALL_STATE(8310)] = 167941, + [SMALL_STATE(8311)] = 167949, + [SMALL_STATE(8312)] = 167957, + [SMALL_STATE(8313)] = 167965, + [SMALL_STATE(8314)] = 167973, + [SMALL_STATE(8315)] = 167981, + [SMALL_STATE(8316)] = 167989, + [SMALL_STATE(8317)] = 167997, + [SMALL_STATE(8318)] = 168005, + [SMALL_STATE(8319)] = 168013, + [SMALL_STATE(8320)] = 168021, + [SMALL_STATE(8321)] = 168029, + [SMALL_STATE(8322)] = 168037, + [SMALL_STATE(8323)] = 168045, + [SMALL_STATE(8324)] = 168053, + [SMALL_STATE(8325)] = 168061, + [SMALL_STATE(8326)] = 168069, + [SMALL_STATE(8327)] = 168077, + [SMALL_STATE(8328)] = 168085, + [SMALL_STATE(8329)] = 168093, + [SMALL_STATE(8330)] = 168101, + [SMALL_STATE(8331)] = 168109, + [SMALL_STATE(8332)] = 168117, + [SMALL_STATE(8333)] = 168125, + [SMALL_STATE(8334)] = 168133, + [SMALL_STATE(8335)] = 168141, + [SMALL_STATE(8336)] = 168149, + [SMALL_STATE(8337)] = 168157, + [SMALL_STATE(8338)] = 168165, + [SMALL_STATE(8339)] = 168173, + [SMALL_STATE(8340)] = 168181, + [SMALL_STATE(8341)] = 168189, + [SMALL_STATE(8342)] = 168197, + [SMALL_STATE(8343)] = 168205, + [SMALL_STATE(8344)] = 168213, + [SMALL_STATE(8345)] = 168221, + [SMALL_STATE(8346)] = 168229, + [SMALL_STATE(8347)] = 168237, + [SMALL_STATE(8348)] = 168245, + [SMALL_STATE(8349)] = 168253, + [SMALL_STATE(8350)] = 168261, + [SMALL_STATE(8351)] = 168269, + [SMALL_STATE(8352)] = 168277, + [SMALL_STATE(8353)] = 168285, + [SMALL_STATE(8354)] = 168293, + [SMALL_STATE(8355)] = 168301, + [SMALL_STATE(8356)] = 168309, + [SMALL_STATE(8357)] = 168317, + [SMALL_STATE(8358)] = 168325, + [SMALL_STATE(8359)] = 168333, + [SMALL_STATE(8360)] = 168341, + [SMALL_STATE(8361)] = 168349, + [SMALL_STATE(8362)] = 168357, + [SMALL_STATE(8363)] = 168365, + [SMALL_STATE(8364)] = 168373, + [SMALL_STATE(8365)] = 168381, + [SMALL_STATE(8366)] = 168389, + [SMALL_STATE(8367)] = 168397, + [SMALL_STATE(8368)] = 168405, + [SMALL_STATE(8369)] = 168413, + [SMALL_STATE(8370)] = 168421, + [SMALL_STATE(8371)] = 168429, + [SMALL_STATE(8372)] = 168437, + [SMALL_STATE(8373)] = 168445, + [SMALL_STATE(8374)] = 168453, + [SMALL_STATE(8375)] = 168461, + [SMALL_STATE(8376)] = 168469, + [SMALL_STATE(8377)] = 168477, + [SMALL_STATE(8378)] = 168485, + [SMALL_STATE(8379)] = 168493, + [SMALL_STATE(8380)] = 168501, + [SMALL_STATE(8381)] = 168509, + [SMALL_STATE(8382)] = 168517, + [SMALL_STATE(8383)] = 168525, + [SMALL_STATE(8384)] = 168533, + [SMALL_STATE(8385)] = 168541, + [SMALL_STATE(8386)] = 168549, + [SMALL_STATE(8387)] = 168557, + [SMALL_STATE(8388)] = 168565, + [SMALL_STATE(8389)] = 168573, + [SMALL_STATE(8390)] = 168581, + [SMALL_STATE(8391)] = 168589, + [SMALL_STATE(8392)] = 168597, + [SMALL_STATE(8393)] = 168605, + [SMALL_STATE(8394)] = 168613, + [SMALL_STATE(8395)] = 168621, + [SMALL_STATE(8396)] = 168629, + [SMALL_STATE(8397)] = 168637, + [SMALL_STATE(8398)] = 168645, + [SMALL_STATE(8399)] = 168653, + [SMALL_STATE(8400)] = 168661, + [SMALL_STATE(8401)] = 168669, + [SMALL_STATE(8402)] = 168677, + [SMALL_STATE(8403)] = 168685, + [SMALL_STATE(8404)] = 168693, + [SMALL_STATE(8405)] = 168701, + [SMALL_STATE(8406)] = 168709, + [SMALL_STATE(8407)] = 168717, + [SMALL_STATE(8408)] = 168725, + [SMALL_STATE(8409)] = 168733, + [SMALL_STATE(8410)] = 168741, + [SMALL_STATE(8411)] = 168749, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -607155,2344 +607218,2344 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7820), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8086), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7429), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8256), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8314), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7823), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8380), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7744), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8037), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8396), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8321), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8331), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_specification_part, 2, 0, 15), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_specification_part, 3, 0, 15), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 4, 0, 130), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 3, 0, 68), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_specification_part, 2, 0, 15), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 3, 0, 68), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_specification_part, 3, 0, 15), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 4, 0, 130), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 15), [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 5, 0, 130), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 130), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 15), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 68), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 4, 0, 15), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 68), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3507), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4078), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3247), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 15), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 68), + [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 4, 0, 15), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 68), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 5, 0, 130), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 130), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3521), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4079), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3246), [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4062), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7368), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2995), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3056), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3902), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3576), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3159), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7820), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3308), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7373), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2941), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2996), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2993), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7709), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3328), [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4614), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8044), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7660), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2661), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7417), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3880), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6973), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4308), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3123), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8086), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7429), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4588), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3917), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3916), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8256), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8382), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7083), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6851), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3327), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4267), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3124), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8314), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7109), [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2647), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2659), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7151), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(620), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4640), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7110), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3104), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6211), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7020), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7823), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7233), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4610), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2945), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7391), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8380), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6496), [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4588), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7290), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7744), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4544), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7150), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7221), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7309), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4549), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8037), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4738), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3274), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4574), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7140), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8137), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7405), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7416), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8396), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2652), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7134), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7525), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8049), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6100), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8265), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3110), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2977), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8325), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4435), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4634), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7265), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8321), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4583), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7478), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5989), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8331), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3109), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8235), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4470), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4621), [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4559), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4569), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4637), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4357), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4639), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7676), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4566), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4582), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4379), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7922), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_specification_part, 1, 0, 0), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_specification_part, 2, 0, 0), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_specification_part, 2, 0, 0), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4124), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3227), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3994), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7087), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3055), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3725), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4029), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3228), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7175), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3646), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(578), [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 3, 0, 0), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4099), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4069), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7202), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2962), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3601), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4102), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3250), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4068), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7205), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(616), [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8335), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 4, 0, 68), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 130), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 4, 0, 68), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 130), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_specification_part, 4, 0, 15), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_specification_part, 3, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 2, 0, 15), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 2, 0, 15), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 130), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_procedure_statements, 3, 0, 68), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 3, 0, 15), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_procedure_statements, 4, 0, 130), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_procedure_statements, 4, 0, 68), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 4, 0, 15), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 130), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_statements, 2, 0, 15), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_statements, 3, 0, 68), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_statements, 3, 0, 15), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 68), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_specification_part, 5, 0, 15), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_statements, 4, 0, 130), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_procedure_statements, 3, 0, 68), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 3, 0, 15), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_procedure_statements, 4, 0, 130), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_procedure_statements, 4, 0, 68), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 4, 0, 15), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_statements, 2, 0, 15), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_statements, 4, 0, 68), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_statements, 4, 0, 15), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 130), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 130), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_statements, 3, 0, 68), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_statements, 3, 0, 15), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 68), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_specification_part, 5, 0, 15), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_statements, 4, 0, 130), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_statements, 4, 0, 68), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_statements, 4, 0, 15), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 130), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 130), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3522), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4103), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3256), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4107), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3255), [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7217), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(2995), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3056), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4077), + [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7219), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(2941), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(2996), [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4614), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4588), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3135), - [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3134), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(525), - [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4640), - [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), - [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7110), - [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3104), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(6211), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7020), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4588), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7290), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7744), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4544), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7150), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7221), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7309), - [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4549), - [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(8037), - [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4738), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4610), + [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(2945), + [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7391), + [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(8380), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(6496), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3274), + [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4574), + [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7140), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(8137), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7405), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7416), + [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(8396), + [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(2652), - [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7134), - [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7525), - [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(6100), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(8265), - [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3110), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(2977), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(8325), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4435), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4634), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7265), + [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(8321), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4583), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(5989), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(8331), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3109), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(8235), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4470), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4621), [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4559), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4569), - [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4637), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4357), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4566), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4582), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4379), [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4639), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7676), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4128), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3264), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4093), - [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7292), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(3543), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(4128), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(3264), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(4093), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(7292), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(3136), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(1647), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(3543), - [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(4128), - [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(3264), - [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(4093), - [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(7292), - [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(3136), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(1647), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(3543), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(4128), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(3264), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(4093), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(7292), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(3136), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), - [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(1647), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(3543), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(4128), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(3264), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(4093), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(7292), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(3136), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(1647), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(3543), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(4128), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(3264), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(4093), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(7292), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(3136), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(1647), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4114), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3254), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4073), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7258), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(3543), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(4128), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(3264), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(4093), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(7292), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(3136), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(1647), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(3543), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(4128), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(3264), - [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(4093), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(7292), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(3136), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(1647), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(3543), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(4128), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(3264), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(4093), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(7292), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(3136), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(1647), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(3543), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(4128), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(3264), - [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(4093), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(7292), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(3136), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(1647), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(3543), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(4128), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(3264), - [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(4093), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(7292), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(3136), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(1647), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7575), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(3543), - [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(4128), - [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(3264), - [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(4093), - [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(7292), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(3136), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(1647), - [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(3543), - [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(4128), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(3264), - [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(4093), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(7292), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(3136), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), - [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(1647), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(3543), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(4128), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(3264), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(4093), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(7292), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(3136), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(1647), - [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(3543), - [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(4128), - [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(3264), - [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(4093), - [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(7292), - [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(3136), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(1647), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(3543), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(4128), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(3264), - [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(4093), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(7292), - [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(3136), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(1647), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_statements, 1, 0, 0), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3550), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4135), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4104), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7312), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(619), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_procedure_statements, 1, 0, 0), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_procedure_statements, 2, 0, 0), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_statements, 3, 0, 0), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_specification_part, 4, 0, 0), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4112), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4008), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(2995), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3056), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4614), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7922), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(3552), + [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(4131), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(3263), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(4095), + [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(7284), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(3136), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 195), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 7, 0, 195), SHIFT(1647), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(3552), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(4131), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(3263), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(4095), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(7284), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(3136), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 4, 0, 0), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 4, 0, 0), SHIFT(1647), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7920), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(3552), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(4131), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(3263), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(4095), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(7284), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(3136), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 183), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 5, 0, 183), SHIFT(1647), + [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(3552), + [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(4131), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(3263), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(4095), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(7284), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(3136), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 2, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 2, 0, 0), SHIFT(1647), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(3552), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(4131), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(3263), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(4095), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(7284), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(3136), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 182), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 7, 0, 182), SHIFT(1647), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(3552), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(4131), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(3263), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(4095), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(7284), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(3136), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 3, 0, 0), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 3, 0, 0), SHIFT(1647), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(3552), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(4131), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(3263), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(4095), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(7284), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(3136), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 182), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 6, 0, 182), SHIFT(1647), + [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(3552), + [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(4131), + [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(3263), + [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(4095), + [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(7284), + [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(3136), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 183), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 7, 0, 183), SHIFT(1647), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(3552), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(4131), + [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(3263), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(4095), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(7284), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(3136), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 183), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 6, 0, 183), SHIFT(1647), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(3552), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(4131), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(3263), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(4095), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(7284), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(3136), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 194), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 8, 0, 194), SHIFT(1647), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(3552), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(4131), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(3263), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(4095), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(7284), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(3136), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 8, 0, 195), + [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 8, 0, 195), SHIFT(1647), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(3552), + [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(4131), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(3263), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(4095), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(7284), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(3136), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 7, 0, 194), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 7, 0, 194), SHIFT(1647), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(3552), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(4131), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(3263), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(4095), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(7284), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(3136), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 195), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 6, 0, 195), SHIFT(1647), + [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4131), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3263), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4095), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4119), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3253), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4073), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7253), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(3552), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(4131), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(3263), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(4095), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(7284), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(3136), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 6, 0, 194), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 6, 0, 194), SHIFT(1647), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(3552), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(4131), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(3263), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(4095), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(7284), + [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(3136), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_statement, 5, 0, 182), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_statement, 5, 0, 182), SHIFT(1647), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_statements, 1, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3559), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4140), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3268), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7303), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_procedure_statements, 1, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_statements, 3, 0, 0), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4117), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7247), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(2941), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(2996), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4588), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), + [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3135), [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), - [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3135), - [2856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3134), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4640), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7110), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3104), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), - [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(6211), - [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7020), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4588), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7290), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7744), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4544), - [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7150), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7221), - [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7309), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4549), - [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(8037), - [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4738), - [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(2652), - [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7134), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7525), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(6100), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(8265), - [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3110), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(2977), - [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(8325), - [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4435), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4634), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4559), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4569), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4637), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4357), - [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4639), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7676), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4047), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7254), - [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), - [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4130), - [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7298), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(630), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_statements, 2, 0, 0), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [2856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4610), + [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(2945), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7391), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(8380), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(6496), + [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3274), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4574), + [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7140), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(8137), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7405), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7416), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(8396), + [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), + [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(2652), + [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7265), + [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(8321), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4583), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(5989), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(8331), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3109), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(8235), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), + [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4470), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4621), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4559), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4566), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4582), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4379), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), + [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7922), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_statements, 2, 0, 0), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_specification_part, 4, 0, 0), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_procedure_statements, 2, 0, 0), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), + [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4133), + [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7289), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3539), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4118), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(3238), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(4047), + [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(7250), + [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(636), [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_procedure_statements, 3, 0, 0), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), - [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4105), - [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3258), - [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4079), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7226), - [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 6, 0, 139), SHIFT(3136), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 6, 0, 139), - [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), - [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4116), - [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3261), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), - [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7263), - [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 5, 0, 0), SHIFT(3136), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 5, 0, 0), - [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 4, 0, 0), SHIFT(3136), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 4, 0, 0), - [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 5, 0, 139), SHIFT(3136), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 5, 0, 139), - [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 3, 0, 0), SHIFT(3136), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 3, 0, 0), - [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 4, 0, 139), SHIFT(3136), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 4, 0, 139), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 3, 0, 139), SHIFT(3136), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 3, 0, 139), - [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 2, 0, 0), SHIFT(3136), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 2, 0, 0), - [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(3547), - [3124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(4132), - [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(3267), - [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(4100), - [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(7303), - [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(3136), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(1647), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7443), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(3547), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(4132), - [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(3267), - [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(4100), - [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(7303), - [3175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(3136), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(1647), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(3548), - [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(4133), - [3191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(3268), - [3194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(4102), - [3197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(7305), - [3200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(3136), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(1647), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(3548), - [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(4133), - [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(3268), - [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(4102), - [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(7305), - [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(3136), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(1647), - [3265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), - [3268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4126), - [3271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), - [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4082), - [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7286), - [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(663), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(3547), - [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(4132), - [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(3267), - [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(4100), - [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(7303), - [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(3136), - [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(1647), - [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4132), - [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), - [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4100), - [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7303), - [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), - [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4133), - [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3268), - [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4102), - [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7305), - [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(3548), - [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(4133), - [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(3268), - [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(4102), - [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(7305), - [3359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(3136), - [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(1647), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(3548), - [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(4133), - [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(3268), - [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(4102), - [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(7305), - [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(3136), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(1647), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(3547), - [3413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(4132), - [3416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(3267), - [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(4100), - [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(7303), - [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(3136), - [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(1647), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(3547), - [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(4132), - [3467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(3267), - [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(4100), - [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(7303), - [3476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(3136), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(1647), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(3547), - [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(4132), - [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(3267), - [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(4100), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(7303), - [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(3136), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(1647), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(3548), - [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(4133), - [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(3268), - [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(4102), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(7305), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(3136), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(1647), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(3548), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(4133), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(3268), - [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(4102), - [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(7305), - [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(3136), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(1647), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3505), - [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4075), - [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), - [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4000), - [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7245), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), - [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4119), - [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3263), - [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4090), - [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7272), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), - [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4070), - [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7190), - [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 4, 0, 181), SHIFT(3136), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 4, 0, 181), SHIFT(3138), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 4, 0, 181), - [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 4, 0, 181), SHIFT(1647), - [3654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), - [3657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4129), - [3660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3265), - [3663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4096), - [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7295), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3511), - [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4085), - [3678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4064), - [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7118), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(717), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), - [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), - [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3252), - [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), - [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7314), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(721), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 7, 0, 193), SHIFT(3136), - [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 7, 0, 193), SHIFT(3138), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 7, 0, 193), - [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 7, 0, 193), SHIFT(1647), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3535), - [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4118), - [3733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), - [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4086), - [3739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7269), - [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 193), SHIFT(3136), - [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 193), SHIFT(3138), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 193), - [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 6, 0, 193), SHIFT(1647), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4081), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3235), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7443), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(741), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 193), SHIFT(3136), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 193), SHIFT(3138), - [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 193), - [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 5, 0, 193), SHIFT(1647), - [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 181), SHIFT(3136), - [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 181), SHIFT(3138), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 181), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 6, 0, 181), SHIFT(1647), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 181), SHIFT(3136), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 181), SHIFT(3138), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 181), - [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 5, 0, 181), SHIFT(1647), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), - [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), - [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4055), - [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7238), - [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(749), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 138), SHIFT(3136), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 138), SHIFT(3138), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 138), SHIFT(1647), - [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 138), SHIFT(3136), - [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 138), SHIFT(3138), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 138), SHIFT(1647), - [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 138), SHIFT(3136), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 138), SHIFT(3138), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 138), SHIFT(1647), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), - [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4131), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3266), - [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4098), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7301), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3521), - [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), + [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 4, 0, 0), SHIFT(3136), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 4, 0, 0), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 3, 0, 139), SHIFT(3136), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 3, 0, 139), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 4, 0, 139), SHIFT(3136), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 4, 0, 139), + [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 3, 0, 0), SHIFT(3136), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 3, 0, 0), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4121), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), + [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4085), + [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7257), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(644), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 5, 0, 139), SHIFT(3136), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 5, 0, 139), + [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 5, 0, 0), SHIFT(3136), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 5, 0, 0), + [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 6, 0, 139), SHIFT(3136), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 6, 0, 139), + [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), + [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4109), + [3100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), + [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4080), + [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7229), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elsewhere_clause, 2, 0, 0), SHIFT(3136), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsewhere_clause, 2, 0, 0), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), + [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), + [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3229), + [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7301), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3550), + [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4129), + [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7279), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3556), + [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), + [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3266), + [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4103), + [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7295), + [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3557), + [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4137), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), + [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4105), + [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7298), + [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(3556), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(4136), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(3266), + [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(4103), + [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(7295), + [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(3136), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 143), SHIFT(1647), + [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(3557), + [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(4137), + [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(3267), + [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(4105), + [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(7298), + [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(3136), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 3, 0, 143), SHIFT(1647), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(3556), + [3348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(4136), + [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(3266), + [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(4103), + [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(7295), + [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(3136), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 143), SHIFT(1647), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(3557), + [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(4137), + [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(3267), + [3379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(4105), + [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(7298), + [3385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(3136), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 4, 0, 143), SHIFT(1647), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(3556), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(4136), + [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(3266), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(4103), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(7295), + [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(3136), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), SHIFT(1647), + [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(3556), + [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(4136), + [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(3266), + [3431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(4103), + [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(7295), + [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(3136), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 143), SHIFT(1647), + [3445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(3557), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(4137), + [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(3267), + [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(4105), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(7298), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(3136), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 5, 0, 0), SHIFT(1647), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(3557), + [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(4137), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(3267), + [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(4105), + [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(7298), + [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(3136), + [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 5, 0, 143), SHIFT(1647), + [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(3556), + [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(4136), + [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(3266), + [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(4103), + [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(7295), + [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(3136), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), SHIFT(1647), + [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(3557), + [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(4137), + [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(3267), + [3521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(4105), + [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(7298), + [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(3136), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 6, 0, 0), SHIFT(1647), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(3556), + [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(4136), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(3266), + [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(4103), + [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(7295), + [3552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(3136), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 0), SHIFT(1647), + [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(3557), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(4137), + [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(3267), + [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(4105), + [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(7298), + [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(3136), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rank_statement, 7, 0, 0), SHIFT(1647), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3522), + [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4082), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3234), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4038), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7440), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4100), + [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), + [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4069), + [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7193), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4123), + [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3261), + [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4088), + [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7263), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), + [3640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4124), + [3643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), + [3646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4091), + [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7267), + [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [3655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), + [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4132), + [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3264), + [3664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4098), + [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7287), + [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [3673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3508), + [3676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4141), + [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), + [3682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4110), + [3685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7305), + [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 4, 0, 181), SHIFT(3136), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 4, 0, 181), SHIFT(3137), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 4, 0, 181), + [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 4, 0, 181), SHIFT(1647), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 193), SHIFT(3136), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 193), SHIFT(3137), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 193), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 5, 0, 193), SHIFT(1647), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 181), SHIFT(3136), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 181), SHIFT(3137), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 181), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 5, 0, 181), SHIFT(1647), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 193), SHIFT(3136), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 193), SHIFT(3137), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 193), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 6, 0, 193), SHIFT(1647), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 181), SHIFT(3136), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 181), SHIFT(3137), + [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 6, 0, 181), + [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 6, 0, 181), SHIFT(1647), + [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 7, 0, 193), SHIFT(3136), + [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elseif_clause, 7, 0, 193), SHIFT(3137), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 7, 0, 193), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_elseif_clause, 7, 0, 193), SHIFT(1647), + [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3534), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4112), + [3817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), + [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7238), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), + [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4087), + [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3247), + [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4064), + [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7116), + [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), + [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(3265), + [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), + [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(7292), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 138), SHIFT(3136), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 138), SHIFT(3137), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 138), SHIFT(1647), + [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 138), SHIFT(3136), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 138), SHIFT(3137), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 138), SHIFT(1647), + [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 138), SHIFT(3136), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 138), SHIFT(3137), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 138), SHIFT(1647), + [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4104), [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), - [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7209), + [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7212), [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), - [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3308), - [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), - [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), - [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8044), - [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7984), - [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2661), - [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3880), - [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), - [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3708), - [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), - [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), - [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), - [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6973), - [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), - [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), - [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), - [3983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4570), - [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3834), - [3989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8334), - [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7429), + [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3328), + [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), + [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), + [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8256), + [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7743), + [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6851), + [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), + [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), + [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3327), + [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), + [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3854), + [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3801), + [3983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4562), + [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), + [3989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), + [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7109), [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2647), - [3998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), - [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2659), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7151), - [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7020), - [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), - [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), - [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8049), - [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6207), - [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3493), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), - [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), - [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4001), - [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7329), + [3998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7823), + [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), + [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7233), + [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6496), + [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3134), + [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7478), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6226), + [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), + [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4090), + [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3237), + [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), + [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7150), [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), - [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3308), - [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), - [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), - [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8044), - [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7984), - [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2661), - [4062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3880), - [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), - [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3708), - [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), - [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6973), - [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [4095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), - [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), - [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4570), - [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3834), - [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8334), - [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7429), + [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3328), + [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), + [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), + [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8256), + [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7743), + [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [4062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), + [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), + [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), + [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6851), + [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), + [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), + [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3327), + [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), + [4095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3854), + [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3801), + [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4562), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), + [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), + [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7109), [4113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2647), - [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), - [4119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2659), - [4122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7151), - [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7020), - [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), - [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), - [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8049), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6207), - [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), - [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), - [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3250), - [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), - [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), - [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), - [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), - [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4087), - [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3238), - [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4045), - [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7147), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), - [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), - [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3516), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4092), - [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3244), - [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), - [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7164), - [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), - [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4115), - [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7260), - [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), - [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), - [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7093), - [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 4, 0, 15), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 15), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 4, 0, 15), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 15), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 3, 0, 15), - [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 3, 0, 15), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 3, 0, 15), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 15), - [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 2), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 2), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 99), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 99), - [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 68), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 68), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 5, 0, 68), - [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 5, 0, 68), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 5, 0, 68), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 100), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 100), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 15), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 15), - [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 4, 0, 68), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 4, 0, 68), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 4, 0, 68), - [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 68), - [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 4, 0, 15), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 3), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 3), - [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 5), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 5), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 129), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 129), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 68), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 68), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 6, 0, 131), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 6, 0, 131), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 69), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 69), - [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 7, 0, 155), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 7, 0, 155), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 69), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 69), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule, 3, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule, 3, 0, 0), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_subroutine_statement, 3, 0, 122), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_subroutine_statement, 3, 0, 122), - [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_subroutine_statement, 3, 0, 88), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_subroutine_statement, 3, 0, 88), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 5, 0, 0), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 5, 0, 0), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_function_statement, 3, 0, 123), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_function_statement, 3, 0, 123), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_function_statement, 3, 0, 89), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_function_statement, 3, 0, 89), - [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_program_statement, 4, 0, 0), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_program_statement, 4, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 4, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 4, 0, 0), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_statement, 3, 0, 85), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_statement, 3, 0, 85), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_statement, 3, 0, 45), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_statement, 3, 0, 45), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, 0, 0), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_submodule_statement, 3, 0, 86), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_submodule_statement, 3, 0, 86), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, 0, 0), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 0), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_submodule_statement, 3, 0, 46), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_submodule_statement, 3, 0, 46), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule, 4, 0, 0), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule, 4, 0, 0), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_subroutine_statement, 4, 0, 122), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_subroutine_statement, 4, 0, 122), - [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 15), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 15), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 15), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 68), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 68), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 1, 0, 0), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 6, 0, 0), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 6, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface, 2, 0, 0), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 2, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 5, 0, 0), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 5, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_statement, 4, 0, 85), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_statement, 4, 0, 85), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_submodule_statement, 4, 0, 86), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_submodule_statement, 4, 0, 86), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 99), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 99), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_interface_statement, 2, 0, 47), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_interface_statement, 2, 0, 47), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 68), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface, 3, 0, 0), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 3, 0, 0), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 6, 0, 100), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 6, 0, 100), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 6, 0, 15), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 6, 0, 15), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_submodule_statement, 2, 0, 46), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_submodule_statement, 2, 0, 46), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 7, 0, 129), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 7, 0, 129), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 7, 0, 68), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 7, 0, 68), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_interface_statement, 3, 0, 47), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_interface_statement, 3, 0, 47), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 7, 0, 131), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 7, 0, 131), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 8, 0, 155), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 8, 0, 155), - [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 3, 0, 0), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 3, 0, 0), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, 0, 0), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 0), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_subroutine_statement, 2, 0, 88), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_subroutine_statement, 2, 0, 88), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 0), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 0), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_function_statement, 2, 0, 89), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_function_statement, 2, 0, 89), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 0), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 0), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_interface_statement, 4, 0, 87), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_interface_statement, 4, 0, 87), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_program_statement, 2, 0, 0), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_program_statement, 2, 0, 0), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 2, 0, 0), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 10), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 10), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 0), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 32), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 32), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 15), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 15), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 34), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 34), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 67), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 67), - [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 35), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 35), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 98), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 98), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule, 2, 0, 0), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule, 2, 0, 0), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_function_statement, 4, 0, 123), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_function_statement, 4, 0, 123), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, 0, 0), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 0), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_program_statement, 3, 0, 0), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_program_statement, 3, 0, 0), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 3, 0, 0), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, 0, 0), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_statement, 2, 0, 45), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_statement, 2, 0, 45), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, 0, 0), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_interface_statement, 3, 0, 87), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_interface_statement, 3, 0, 87), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 15), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_module, 2, 0, 15), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 68), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7823), + [4119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), + [4122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7233), + [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6496), + [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3134), + [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7478), + [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6226), + [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), + [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), + [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3244), + [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4143), + [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7165), + [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), + [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4128), + [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3249), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7276), + [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1743), + [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), + [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3512), + [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4033), + [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3195), + [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4030), + [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7093), + [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), + [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), + [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4120), + [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7255), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), + [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), + [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7087), + [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 99), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 99), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 68), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 68), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 5, 0, 68), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 5, 0, 68), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 5, 0, 68), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 100), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 100), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 15), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 15), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 129), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 129), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 68), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 68), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 6, 0, 131), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 6, 0, 131), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 7, 0, 155), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 7, 0, 155), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 5), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 5), + [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 3, 0, 15), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 15), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 3, 0, 15), + [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 4, 0, 68), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 68), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 4, 0, 68), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 4, 0, 15), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 15), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 4, 0, 15), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 2), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 2), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 3), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 3), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 3, 0, 15), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 4, 0, 68), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 4, 0, 15), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 69), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 69), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 15), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 0), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_interface_statement, 3, 0, 87), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_interface_statement, 3, 0, 87), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_interface_statement, 3, 0, 47), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_interface_statement, 3, 0, 47), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_interface_statement, 4, 0, 87), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_interface_statement, 4, 0, 87), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 10), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 10), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 32), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 32), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 15), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 15), + [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 34), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 34), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 67), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 67), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 35), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 35), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 98), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 98), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_subroutine_statement, 2, 0, 88), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_subroutine_statement, 2, 0, 88), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 0), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 0), + [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 1, 0, 0), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_program_statement, 2, 0, 0), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_program_statement, 2, 0, 0), + [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 2, 0, 0), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule, 2, 0, 0), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule, 2, 0, 0), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_function_statement, 2, 0, 89), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_function_statement, 2, 0, 89), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 0), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 0), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 6, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 6, 0, 0), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_program_statement, 3, 0, 0), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_program_statement, 3, 0, 0), + [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 3, 0, 0), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, 0, 0), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_statement, 2, 0, 45), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_statement, 2, 0, 45), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, 0, 0), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_submodule_statement, 2, 0, 46), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_submodule_statement, 2, 0, 46), + [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule, 3, 0, 0), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule, 3, 0, 0), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_function_statement, 4, 0, 123), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_function_statement, 4, 0, 123), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 8, 0, 155), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 8, 0, 155), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 3, 0, 0), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 3, 0, 0), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_program_statement, 4, 0, 0), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_program_statement, 4, 0, 0), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 4, 0, 0), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 4, 0, 0), + [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_statement, 3, 0, 85), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_statement, 3, 0, 85), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_statement, 3, 0, 45), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_statement, 3, 0, 45), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, 0, 0), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface, 3, 0, 0), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 3, 0, 0), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_submodule_statement, 3, 0, 46), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_submodule_statement, 3, 0, 46), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule, 4, 0, 0), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule, 4, 0, 0), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, 0, 0), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 0), + [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_function_statement, 3, 0, 123), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_function_statement, 3, 0, 123), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, 0, 0), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 0), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 15), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 15), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 15), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_function_statement, 3, 0, 89), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_function_statement, 3, 0, 89), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 69), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 69), + [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program, 5, 0, 0), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 5, 0, 0), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_statement, 4, 0, 85), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_statement, 4, 0, 85), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_submodule_statement, 4, 0, 86), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_submodule_statement, 4, 0, 86), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 99), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 99), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, 0, 0), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 0), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 68), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 68), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 68), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 6, 0, 100), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 6, 0, 100), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 6, 0, 15), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 6, 0, 15), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 7, 0, 129), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 7, 0, 129), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 7, 0, 68), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 7, 0, 68), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 7, 0, 131), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 7, 0, 131), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_subroutine_statement, 3, 0, 122), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_subroutine_statement, 3, 0, 122), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_subroutine_statement, 3, 0, 88), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_subroutine_statement, 3, 0, 88), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 5, 0, 0), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 5, 0, 0), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_subroutine_statement, 4, 0, 122), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_subroutine_statement, 4, 0, 122), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface, 2, 0, 0), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 2, 0, 0), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_interface_statement, 2, 0, 47), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_interface_statement, 2, 0, 47), + [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_submodule_statement, 3, 0, 86), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_submodule_statement, 3, 0, 86), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 68), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_module, 2, 0, 15), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 15), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_module, 4, 0, 130), - [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_module, 4, 0, 68), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_module, 4, 0, 15), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_module, 3, 0, 68), - [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_module, 3, 0, 15), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 130), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 15), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 15), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 15), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 68), - [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 68), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 68), - [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), - [4836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4051), - [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3183), - [4842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), - [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7077), - [4848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [4853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3308), - [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), - [4859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), - [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8044), - [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7984), - [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2661), - [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3880), - [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), - [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3708), - [4880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), - [4883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3126), - [4886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), - [4889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6973), - [4892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [4895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), - [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), - [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), - [4910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4570), - [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3834), - [4916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8334), - [4919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7429), - [4922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2647), - [4925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), - [4928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2659), - [4931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7151), - [4934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7020), - [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), - [4940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), - [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8049), - [4946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6207), - [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4061), - [4955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3234), - [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4040), - [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7261), - [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [4967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3120), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_statement, 4, 0, 0), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_statement, 4, 0, 0), - [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_type_statement, 2, 0, 50), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_type_statement, 2, 0, 50), - [4980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 1, 0, 0), - [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_definition, 3, 0, 0), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, 0, 0), - [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 7, 0, 15), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 15), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 7, 0, 15), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 8, 0, 68), - [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 68), - [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 8, 0, 68), - [5006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), - [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4109), - [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7241), - [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3124), - [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3127), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_type_statement, 3, 0, 91), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_type_statement, 3, 0, 91), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_type_statement, 3, 0, 50), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_type_statement, 3, 0, 50), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_statement, 2, 0, 0), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_statement, 2, 0, 0), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_statement, 2, 0, 0), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_statement, 2, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_definition, 4, 0, 0), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, 0, 0), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_statement, 3, 0, 0), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_statement, 3, 0, 0), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_statement, 3, 0, 0), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_statement, 3, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_statement, 4, 0, 0), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_statement, 4, 0, 0), - [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_definition, 2, 0, 0), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, 0, 0), - [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_type_statement, 4, 0, 91), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_type_statement, 4, 0, 91), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_statement, 5, 0, 0), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_statement, 5, 0, 0), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_statement, 5, 0, 0), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_statement, 5, 0, 0), - [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__specification_part, 3, 0, 0), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__specification_part, 3, 0, 0), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__specification_part, 2, 0, 0), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__specification_part, 2, 0, 0), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_module, 3, 0, 68), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_module, 3, 0, 15), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_module, 4, 0, 130), + [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_module, 4, 0, 68), + [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_module, 4, 0, 15), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 130), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3516), + [4816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4061), + [4819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), + [4825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7400), + [4828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), + [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3328), + [4836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), + [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), + [4842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8256), + [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7743), + [4848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), + [4854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), + [4857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [4860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [4863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), + [4866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3118), + [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6851), + [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), + [4875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), + [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3327), + [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), + [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3854), + [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3801), + [4890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4562), + [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), + [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), + [4899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7109), + [4902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2647), + [4905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7823), + [4908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), + [4911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7233), + [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6496), + [4917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [4920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3134), + [4923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7478), + [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(6226), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 15), + [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 15), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 15), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 68), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 68), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 68), + [4951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3515), + [4954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4053), + [4957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3197), + [4960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4092), + [4963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7103), + [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3126), + [4969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_type_statement, 3, 0, 50), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_type_statement, 3, 0, 50), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 7, 0, 15), + [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 15), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 7, 0, 15), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_statement, 4, 0, 0), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_statement, 4, 0, 0), + [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_statement, 5, 0, 0), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_statement, 5, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_statement, 5, 0, 0), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_statement, 5, 0, 0), + [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_statement, 3, 0, 0), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_statement, 3, 0, 0), + [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_statement, 2, 0, 0), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_statement, 2, 0, 0), + [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_statement, 2, 0, 0), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_statement, 2, 0, 0), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_statement, 3, 0, 0), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_statement, 3, 0, 0), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__specification_part, 2, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__specification_part, 2, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_definition, 2, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, 0, 0), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_definition, 3, 0, 0), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, 0, 0), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__specification_part, 3, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__specification_part, 3, 0, 0), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), + [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 8, 0, 68), + [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 68), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 8, 0, 68), + [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3535), + [5039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), + [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7240), + [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3120), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), + [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_type_statement, 3, 0, 91), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_type_statement, 3, 0, 91), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_definition, 4, 0, 0), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, 0, 0), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), + [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_statement, 4, 0, 0), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_statement, 4, 0, 0), + [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_type_statement, 4, 0, 91), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_type_statement, 4, 0, 91), + [5071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 1, 0, 0), + [5076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_type_statement, 2, 0, 50), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_type_statement, 2, 0, 50), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_module, 1, 0, 0), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_module, 3, 0, 0), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_module, 2, 0, 0), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 7, 0, 157), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 7, 0, 157), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 8, 0, 174), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 8, 0, 174), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 4, 0, 69), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 4, 0, 69), - [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 8, 0, 176), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 8, 0, 176), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 129), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 129), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 190), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 190), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 155), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 155), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 131), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 131), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 100), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 100), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [5321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [5324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4120), - [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7274), - [5330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), - [5333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3122), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 5, 0, 99), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 5, 0, 99), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_module, 2, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_module, 3, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 131), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 131), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 129), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 129), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), + [5138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), + [5141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7270), + [5144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3122), + [5147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3123), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 155), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 155), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 7, 0, 157), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 7, 0, 157), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 8, 0, 174), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 8, 0, 174), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 5, 0, 99), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 5, 0, 99), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 8, 0, 176), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 8, 0, 176), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 100), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 100), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 190), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 190), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 4, 0, 69), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 4, 0, 69), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), [5394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 100), [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 6, 0, 100), - [5398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 68), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 68), - [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1, 0, 13), - [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1, 0, 13), - [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 69), - [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 69), + [5398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_statement, 2, 0, 12), + [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_statement, 2, 0, 12), + [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 99), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 99), + [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1, 0, 13), + [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1, 0, 13), [5410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 129), [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 7, 0, 129), [5414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 8, 0, 155), @@ -609505,5747 +609568,5748 @@ static const TSParseActionEntry ts_parse_actions[] = { [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 8, 0, 15), [5430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 174), [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 174), - [5434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 9, 0, 176), - [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 9, 0, 176), - [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 10, 0, 190), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 10, 0, 190), - [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 99), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 6, 0, 99), - [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_statement, 2, 0, 12), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_statement, 2, 0, 12), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(3048), - [5477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(3025), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 1, 0, 0), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(8325), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(1795), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [5498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_label, 1, 0, 1), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_label, 1, 0, 1), - [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1, 0, 0), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 68), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 15), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 68), - [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 131), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 131), - [5526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 5, 0, 99), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 5, 0, 99), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 4, 0, 68), - [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 4, 0, 69), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 4, 0, 69), - [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 174), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 174), - [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 129), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 129), - [5554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 155), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 155), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 4, 0, 15), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 5, 0, 68), - [5568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 157), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 157), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 3, 0, 15), - [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 100), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 100), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 15), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 155), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 155), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8068), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 1, 0, 0), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 8, 0, 157), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 8, 0, 157), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 15), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 68), - [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 129), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 129), - [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 9, 0, 174), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 9, 0, 174), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 131), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 131), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 99), - [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 99), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 3, 0, 0), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 3, 0, 0), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 100), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 100), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 69), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 69), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__intrinsic_type, 1, 0, 0), - [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__intrinsic_type, 1, 0, 0), REDUCE(sym_identifier, 1, 0, 0), - [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__intrinsic_type, 1, 0, 0), REDUCE(sym_identifier, 1, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__intrinsic_type, 1, 0, 0), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 68), + [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 9, 0, 68), + [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 9, 0, 176), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 9, 0, 176), + [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 69), + [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_specification_part, 5, 0, 69), + [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_specification_part, 10, 0, 190), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_specification_part, 10, 0, 190), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_label, 1, 0, 1), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_label, 1, 0, 1), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1, 0, 0), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1, 0, 0), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), + [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(3042), + [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(3034), + [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 1, 0, 0), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [5494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(8235), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(1815), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 15), + [5512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 129), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 129), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 68), + [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 131), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 131), + [5528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 5, 0, 99), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 5, 0, 99), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 5, 0, 68), + [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 155), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 155), + [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 157), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 157), + [5550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 4, 0, 69), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 4, 0, 69), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 4, 0, 68), + [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 174), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 174), + [5566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 100), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 100), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 15), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 3, 0, 15), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 68), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 4, 0, 15), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7850), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 1, 0, 0), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 3, 0, 0), + [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 3, 0, 0), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 69), + [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 5, 0, 69), + [5624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 99), + [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 6, 0, 99), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 15), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 68), + [5632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 100), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 6, 0, 100), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 129), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 7, 0, 129), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 131), + [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 7, 0, 131), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 155), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 8, 0, 155), + [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_statements, 8, 0, 157), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_statements, 8, 0, 157), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_statements, 9, 0, 174), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_statements, 9, 0, 174), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_specification_part_repeat1, 2, 0, 0), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__intrinsic_type, 1, 0, 0), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__intrinsic_type, 1, 0, 0), REDUCE(sym_identifier, 1, 0, 0), + [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__intrinsic_type, 1, 0, 0), REDUCE(sym_identifier, 1, 0, 0), + [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__intrinsic_type, 1, 0, 0), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 68), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 68), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 4, 0, 69), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 4, 0, 69), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 3, 0, 15), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 3, 0, 15), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 5, 0, 99), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 5, 0, 99), - [6004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 100), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 100), - [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 4, 0, 68), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 4, 0, 68), - [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 4, 0, 15), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 4, 0, 15), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 15), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 15), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 129), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 129), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 131), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 131), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 5, 0, 68), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 5, 0, 68), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 15), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 15), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 174), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 174), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 155), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 155), - [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 157), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 157), - [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 68), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 68), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 68), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 68), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 69), - [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 69), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 3, 0, 0), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 3, 0, 0), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), - [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 99), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 99), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 100), - [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 100), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 129), - [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 129), - [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 131), - [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 131), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 155), - [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 155), - [6446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 8, 0, 157), - [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 8, 0, 157), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 5, 0, 68), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 5, 0, 68), + [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 68), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 68), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 15), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 15), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 4, 0, 69), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 4, 0, 69), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 3, 0, 15), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 3, 0, 15), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 5, 0, 99), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 5, 0, 99), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 100), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 100), + [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 4, 0, 68), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 4, 0, 68), + [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 4, 0, 15), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 4, 0, 15), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 129), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 129), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 131), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 131), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 15), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 15), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [6092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 174), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 174), + [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 68), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 68), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 155), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 155), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 157), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 157), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 69), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 5, 0, 69), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 99), + [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 6, 0, 99), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 100), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 6, 0, 100), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 129), + [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 7, 0, 129), + [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 3, 0, 0), + [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 3, 0, 0), + [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 131), + [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 131), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 155), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 155), + [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 8, 0, 157), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 8, 0, 157), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 15), [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_procedure_statements, 7, 0, 15), [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 9, 0, 174), [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 9, 0, 174), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 1, 0, 0), - [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 1, 0, 0), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 5, 0, 0), - [6564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 5, 0, 0), - [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 3, 0, 0), - [6568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 3, 0, 0), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 6, 0, 0), - [6572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 6, 0, 0), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 3, 1, 0), - [6582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_list, 3, 1, 0), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 7, 0, 0), - [6590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 7, 0, 0), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 2, 1, 0), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_list, 2, 1, 0), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 4, 0, 0), - [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 4, 0, 0), - [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 4, 1, 0), - [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_list, 4, 1, 0), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 68), + [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_procedure_statements, 8, 0, 68), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 3, 1, 0), + [6552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_list, 3, 1, 0), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 5, 0, 0), + [6562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 5, 0, 0), + [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 6, 0, 0), + [6566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 6, 0, 0), + [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 1, 0, 0), + [6570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 1, 0, 0), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 4, 0, 0), + [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 4, 0, 0), + [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 7, 0, 0), + [6580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 7, 0, 0), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 4, 1, 0), + [6584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_list, 4, 1, 0), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 2, 1, 0), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_list, 2, 1, 0), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_index, 3, 0, 0), + [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_index, 3, 0, 0), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 1, 0, 0), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 1, 0, 0), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 1, 0, 0), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 2, 0, 0), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 1, 0, 0), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 2, 0, 0), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 2, 0, 0), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_read_statement, 2, 0, 0), - [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inquire_statement, 2, 0, 0), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 2, 0, 0), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), - [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 2, 0, 0), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 3, 0, 0), - [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 6, 0, 129), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 6, 0, 129), - [6726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 6, 0, 68), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 6, 0, 68), - [6732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 131), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 131), - [6738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 15), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 15), - [6744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forall_control_expression, 5, 0, 0), - [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forall_control_expression, 5, 0, 0), - [6748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 5, 0, 99), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 5, 0, 99), - [6754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 100), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 100), - [6760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 15), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 15), - [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 1, 0, 6), - [6768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 7, 0, 155), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 7, 0, 155), - [6774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 5, 0, 68), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 5, 0, 68), - [6780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 3, 0, 15), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 3, 0, 15), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forall_control_expression, 6, 0, 0), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forall_control_expression, 6, 0, 0), - [6794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 8, 0, 174), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 8, 0, 174), - [6800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 4, 0, 15), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 4, 0, 15), - [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 4, 0, 68), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [6810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 4, 0, 68), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 4, 0, 69), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 4, 0, 69), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 7, 0, 68), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 7, 0, 68), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 157), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 157), - [6846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forall_control_expression, 4, 0, 0), - [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forall_control_expression, 4, 0, 0), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [6860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forall_control_expression, 7, 0, 0), - [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forall_control_expression, 7, 0, 0), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 9, 0, 174), - [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 9, 0, 174), - [6874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 7, 0, 129), - [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 7, 0, 129), - [6878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 131), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 131), - [6882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 15), - [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 15), - [6886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 100), - [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 100), - [6890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 6, 0, 99), - [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 6, 0, 99), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 2, 0, 0), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 1, 0, 0), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 1, 0, 0), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 2, 0, 0), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 2, 0, 0), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 2, 0, 0), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 3, 0, 0), + [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_read_statement, 2, 0, 0), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 2, 0, 0), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inquire_statement, 2, 0, 0), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forall_control_expression, 7, 0, 0), + [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forall_control_expression, 7, 0, 0), + [6724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 15), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 15), + [6730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 5, 0, 99), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 5, 0, 99), + [6736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 6, 0, 68), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 6, 0, 68), + [6742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 5, 0, 68), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 5, 0, 68), + [6748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 3, 0, 15), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 3, 0, 15), + [6754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forall_control_expression, 6, 0, 0), + [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forall_control_expression, 6, 0, 0), + [6758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 4, 0, 69), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 4, 0, 69), + [6764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 7, 0, 155), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 7, 0, 155), + [6770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 7, 0, 68), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 7, 0, 68), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 100), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 100), + [6784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 157), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 157), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forall_control_expression, 5, 0, 0), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forall_control_expression, 5, 0, 0), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 6, 0, 129), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 6, 0, 129), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 15), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 15), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [6814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 131), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 131), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 4, 0, 68), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 4, 0, 68), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 1, 0, 6), + [6834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 8, 0, 174), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 8, 0, 174), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [6842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 4, 0, 15), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 4, 0, 15), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forall_control_expression, 4, 0, 0), + [6852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forall_control_expression, 4, 0, 0), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [6856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [6870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 8, 0, 155), + [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 8, 0, 155), + [6874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 8, 0, 68), + [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 8, 0, 68), + [6878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 8, 0, 157), + [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 8, 0, 157), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [6884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 6, 0, 99), + [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 6, 0, 99), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [6890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 7, 0, 129), + [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 7, 0, 129), [6894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 69), [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 5, 0, 69), - [6898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule_statement, 5, 0, 101), - [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule_statement, 5, 0, 101), - [6902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 8, 0, 155), - [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 8, 0, 155), - [6906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 8, 0, 68), - [6908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 8, 0, 68), - [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 8, 0, 157), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 8, 0, 157), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [6916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule_statement, 7, 0, 158), - [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule_statement, 7, 0, 158), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_statement, 2, 0, 0), - [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_statement, 2, 0, 0), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 100), + [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 6, 0, 100), + [6902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_statement, 2, 0, 0), + [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_statement, 2, 0, 0), + [6906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 131), + [6908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 131), + [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_module, 9, 0, 174), + [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_module, 9, 0, 174), + [6914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 15), + [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_module, 7, 0, 15), + [6918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule_statement, 5, 0, 101), + [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule_statement, 5, 0, 101), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_submodule_statement, 7, 0, 158), + [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_submodule_statement, 7, 0, 158), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if_statement, 1, 0, 112), [7094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 1, 0, 0), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 1, 0, 0), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 1, 0, 0), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_attributes, 4, 0, 0), - [7110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_attributes, 4, 0, 0), - [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_attributes, 4, 0, 0), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [7116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__callable_interface_qualifers, 1, 0, 6), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__callable_interface_qualifers, 1, 0, 6), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_attributes, 4, 0, 0), + [7116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_attributes, 4, 0, 0), + [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_attributes, 4, 0, 0), [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_type, 1, 0, 0), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), [7126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_type, 1, 0, 0), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__intrinsic_type, 2, 0, 18), - [7138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__intrinsic_type, 2, 0, 18), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__intrinsic_type, 1, 0, 4), - [7154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__intrinsic_type, 1, 0, 4), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__intrinsic_type, 2, 0, 0), - [7162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__intrinsic_type, 2, 0, 0), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kind, 2, 0, 56), - [7174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kind, 2, 0, 56), - [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_type, 2, 0, 26), - [7178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_type, 2, 0, 26), - [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kind, 2, 0, 57), - [7182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kind, 2, 0, 57), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kind, 2, 0, 0), - [7186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kind, 2, 0, 0), - [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kind, 1, 0, 0), - [7190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kind, 1, 0, 0), - [7192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), REDUCE(sym__argument_list, 3, 1, 0), - [7195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), REDUCE(sym__argument_list, 3, 1, 0), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__intrinsic_type, 2, 0, 18), + [7134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__intrinsic_type, 2, 0, 18), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__intrinsic_type, 1, 0, 4), + [7162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__intrinsic_type, 1, 0, 4), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__intrinsic_type, 2, 0, 0), + [7170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__intrinsic_type, 2, 0, 0), + [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_type, 2, 0, 26), + [7174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_type, 2, 0, 26), + [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kind, 2, 0, 57), + [7178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kind, 2, 0, 57), + [7180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), REDUCE(sym__argument_list, 3, 1, 0), + [7183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), REDUCE(sym__argument_list, 3, 1, 0), + [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kind, 1, 0, 0), + [7188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kind, 1, 0, 0), + [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kind, 2, 0, 0), + [7192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kind, 2, 0, 0), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kind, 2, 0, 56), + [7196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kind, 2, 0, 56), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 5, 1, 107), - [7268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 5, 1, 107), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 0, 0), - [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 0, 0), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 1, 75), - [7280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 1, 75), - [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 1, 72), - [7284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 1, 72), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [7288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_qualifier, 1, 0, 0), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [7292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_procedure_qualifier, 1, 0, 0), SHIFT(2825), - [7295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_procedure_qualifier, 1, 0, 0), SHIFT(2803), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [7302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 5, 0, 109), - [7304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 5, 0, 109), - [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 0, 76), - [7308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 0, 76), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 5, 1, 110), - [7314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 5, 1, 110), - [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 5, 0, 106), - [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 5, 0, 106), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 0, 74), - [7324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 0, 74), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 0, 71), - [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 0, 71), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 5, 0, 0), - [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 5, 0, 0), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 0, 74), + [7224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 0, 74), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 0, 0), + [7256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 0, 0), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 5, 0, 109), + [7260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 5, 0, 109), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 5, 1, 110), + [7270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 5, 1, 110), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 1, 75), + [7288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 1, 75), + [7290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 0, 76), + [7292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 0, 76), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 1, 72), + [7296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 1, 72), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 5, 1, 107), + [7306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 5, 1, 107), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [7310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 4, 0, 71), + [7312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 4, 0, 71), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [7316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_qualifier, 1, 0, 0), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [7320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_procedure_qualifier, 1, 0, 0), SHIFT(2781), + [7323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_procedure_qualifier, 1, 0, 0), SHIFT(2796), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type, 5, 0, 106), + [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type, 5, 0, 106), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 7, 0, 0), + [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 7, 0, 0), [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 6, 0, 0), [7346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 6, 0, 0), - [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 8, 0, 0), - [7350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 8, 0, 0), - [7352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 3, 0, 0), - [7354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 3, 0, 0), - [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 4, 0, 0), - [7358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 4, 0, 0), - [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 7, 0, 0), - [7362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 7, 0, 0), + [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 3, 0, 0), + [7350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 3, 0, 0), + [7352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 4, 0, 0), + [7354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 4, 0, 0), + [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 8, 0, 0), + [7358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 8, 0, 0), + [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_arguments, 5, 0, 0), + [7362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__io_arguments, 5, 0, 0), [7364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_spec, 2, 0, 0), [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_spec, 2, 0, 0), [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), - [7370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(8044), - [7373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(7984), - [7376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), + [7370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(8256), + [7373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(7743), + [7376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), - [7381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(7429), - [7384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(3276), - [7387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_operator, 3, 0, 0), - [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_operator, 3, 0, 0), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8338), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8339), + [7381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(7109), + [7384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), + [7387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 2, 0, 0), SHIFT_REPEAT(7823), + [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_operator, 3, 0, 0), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_operator, 3, 0, 0), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8339), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8340), [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator, 1, 0, 0), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_declarator, 1, 0, 0), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_binding, 6, 0, 0), - [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_binding, 6, 0, 0), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 31), - [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 31), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_binding, 4, 0, 0), - [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_binding, 4, 0, 0), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_specifier, 1, 0, 0), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [7568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 2, 0, 0), - [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 2, 0, 0), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 2, 0, 19), - [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 2, 0, 19), - [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 4, 0, 77), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 4, 0, 77), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [7584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 1, 0, 7), - [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_modification_repeat1, 1, 0, 7), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 4, 0, 0), - [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 4, 0, 0), - [7596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 5, 0, 111), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 5, 0, 111), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_included_items, 3, 0, 0), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_common_statement, 2, 0, 0), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_length, 1, 0, 0), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_length, 1, 0, 0), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3984), - [7631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3397), - [7634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3396), - [7637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3451), - [7640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3398), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator, 1, 0, 0), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [7446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_declarator, 1, 0, 0), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), + [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_binding, 6, 0, 0), + [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_binding, 6, 0, 0), + [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_binding, 4, 0, 0), + [7498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_binding, 4, 0, 0), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [7528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 31), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 31), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_specifier, 1, 0, 0), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [7562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 2, 0, 19), + [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 2, 0, 19), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 4, 0, 0), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 4, 0, 0), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_included_items, 3, 0, 0), + [7584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 5, 0, 111), + [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 5, 0, 111), + [7588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 4, 0, 77), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 4, 0, 77), + [7592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__standalone_type_qualifier, 2, 0, 0), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__standalone_type_qualifier, 2, 0, 0), + [7596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_modification_repeat1, 1, 0, 7), + [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_modification_repeat1, 1, 0, 7), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_length, 1, 0, 0), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [7606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_length, 1, 0, 0), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_common_statement, 2, 0, 0), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3971), + [7631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3408), + [7634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3400), + [7637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3424), + [7640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3395), [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), - [7645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3401), + [7645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3415), [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_length, 2, 0, 0), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_length, 2, 0, 0), - [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_declarator, 2, 0, 0), - [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_declarator, 2, 0, 0), - [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [7666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_declarator, 2, 0, 39), - [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_declarator, 2, 0, 39), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_length, 4, 0, 0), - [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_length, 4, 0, 0), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 1, 0, 121), - [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 2, 0, 147), - [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_length, 5, 0, 0), - [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_length, 5, 0, 0), - [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), - [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_declarator, 2, 0, 19), - [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_declarator, 2, 0, 19), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_group, 4, 0, 0), - [7884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_group, 4, 0, 0), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_attribute, 1, 0, 0), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_attribute, 1, 0, 0), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [8000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 2, 0, 15), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [8018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_group, 5, 0, 0), - [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_group, 5, 0, 0), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5613), - [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_procedure_statement_repeat1, 2, 0, 0), - [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat1, 2, 0, 0), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [8059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [8113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3856), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat1, 2, 0, 0), - [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat1, 2, 0, 0), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat2, 1, 0, 0), - [8126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 1, 0, 0), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_kind, 2, 0, 0), - [8142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_kind, 2, 0, 0), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), - [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block_construct_statement, 1, 0, 42), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [8218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 4, 0, 15), - [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 3, 0, 15), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 3, 0, 147), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_critical_statement, 2, 0, 84), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8237), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_associate_statement, 1, 0, 145), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_attribute, 4, 0, 0), - [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_attribute, 4, 0, 0), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_internal_procedures, 4, 0, 130), - [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7912), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_associate_statement, 2, 0, 164), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [8304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_where_statement, 1, 0, 80), - [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_select_statement, 2, 0, 144), - [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [8320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_internal_procedures, 4, 0, 68), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_where_statement, 2, 0, 113), - [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_loop_statement, 1, 0, 41), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [8334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_loop_statement, 2, 0, 78), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_forall_statement, 2, 0, 94), - [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_critical_statement, 1, 0, 44), - [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if_statement, 2, 0, 137), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_select_statement, 1, 0, 114), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_forall_statement, 1, 0, 59), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8093), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block_construct_statement, 2, 0, 81), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 2, 0, 121), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_internal_procedures, 3, 0, 68), - [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_internal_procedures, 5, 0, 130), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_constructor_legacy, 3, 0, 43), - [8400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_constructor_legacy, 3, 0, 43), - [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_constructor_f2003, 3, 0, 43), - [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_constructor_f2003, 3, 0, 43), - [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_literal, 3, 0, 0), - [8408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_literal, 3, 0, 0), - [8410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_procedures, 2, 0, 0), - [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_procedures, 2, 0, 0), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [8416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_procedures, 3, 0, 0), - [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_procedures, 3, 0, 0), - [8420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3534), - [8423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4117), - [8426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3249), - [8429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), - [8431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), - [8434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7266), - [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), - [8439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(5204), - [8442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), - [8445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [8448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(8344), - [8451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7943), - [8454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(5168), - [8457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7350), - [8460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(5169), - [8463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(8360), - [8466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), - [8469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6838), - [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implied_do_loop_expression, 6, 0, 0), - [8474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implied_do_loop_expression, 6, 0, 0), - [8476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 6, 0, 0), SHIFT(5611), - [8479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 6, 0, 0), - [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 6, 0, 0), - [8483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 6, 0, 70), SHIFT(5611), - [8486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 6, 0, 70), - [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 6, 0, 70), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [8494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3502), - [8497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(4068), - [8500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), - [8503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(4013), - [8506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7090), - [8509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), - [8511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5207), - [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), - [8516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), - [8519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), - [8522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [8525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(8344), - [8528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7943), - [8531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3074), - [8534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5168), - [8537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7350), - [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5169), - [8543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(8360), - [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 2, 0, 9), - [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 2, 0, 9), - [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_member_expression, 3, 0, 63), - [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_member_expression, 3, 0, 63), - [8557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 7, 0, 70), SHIFT(5611), - [8560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 7, 0, 70), - [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 7, 0, 70), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [8566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 4, 0, 0), SHIFT(5611), - [8569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 4, 0, 0), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 4, 0, 0), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 1, 0, 8), - [8575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 1, 0, 8), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 2, 0, 9), - [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 2, 0, 9), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_expression, 2, 0, 0), - [8587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_expression, 2, 0, 0), - [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__kind, 2, 0, 26), - [8591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__kind, 2, 0, 26), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [8599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 3, 0, 0), SHIFT(5611), - [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 3, 0, 0), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 3, 0, 0), - [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implied_do_loop_expression, 5, 0, 0), - [8608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implied_do_loop_expression, 5, 0, 0), - [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_literal, 5, 0, 0), - [8612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_literal, 5, 0, 0), - [8614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5611), - [8617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 5, 0, 0), SHIFT(5611), - [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 5, 0, 0), - [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 5, 0, 0), - [8624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 1, 0, 0), SHIFT(5616), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [8629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 1, 0, 0), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 1, 0, 0), - [8633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 127), SHIFT_REPEAT(4502), - [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 127), - [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 127), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 4, 0, 70), SHIFT(5606), - [8663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 4, 0, 70), - [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 4, 0, 70), - [8667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_default, 1, 0, 0), - [8669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_default, 1, 0, 0), - [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_label_reference, 1, 0, 14), - [8673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_label_reference, 1, 0, 14), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 0), - [8681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 0), - [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), - [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), - [8687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2646), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [8696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 3, 0, 0), SHIFT(5617), - [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 52), - [8701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 52), - [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [8705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [8711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_default, 2, 0, 0), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_default, 2, 0, 0), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 124), - [8717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 124), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), - [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), - [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), - [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), - [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 2, 0, 147), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_length, 4, 0, 0), + [7676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_length, 4, 0, 0), + [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_length, 5, 0, 0), + [7680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_length, 5, 0, 0), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 1, 0, 121), + [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_declarator, 2, 0, 39), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_declarator, 2, 0, 39), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_declarator, 2, 0, 0), + [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_declarator, 2, 0, 0), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_declarator, 2, 0, 19), + [7796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_declarator, 2, 0, 19), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [7888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 2, 0, 15), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_kind, 2, 0, 0), + [7930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_kind, 2, 0, 0), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_attribute, 1, 0, 0), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_attribute, 1, 0, 0), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat2, 1, 0, 0), + [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 1, 0, 0), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [8080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat1, 2, 0, 0), + [8085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat1, 2, 0, 0), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_group, 4, 0, 0), + [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_group, 4, 0, 0), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [8103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_common_statement_repeat2, 2, 0, 0), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_group, 5, 0, 0), + [8107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_group, 5, 0, 0), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [8113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_kind, 1, 0, 0), + [8143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_kind, 1, 0, 0), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [8183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), + [8186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_procedure_statement_repeat1, 2, 0, 0), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat1, 2, 0, 0), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_loop_statement, 1, 0, 41), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8330), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_internal_procedures, 5, 0, 130), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block_construct_statement, 1, 0, 42), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block_construct_statement, 2, 0, 81), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_select_statement, 2, 0, 144), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7917), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_associate_statement, 2, 0, 164), + [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 3, 0, 147), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_attribute, 4, 0, 0), + [8314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_attribute, 4, 0, 0), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_select_statement, 1, 0, 114), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [8332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_internal_procedures, 3, 0, 68), + [8334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 3, 0, 15), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8287), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_associate_statement, 1, 0, 145), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if_statement, 2, 0, 137), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7469), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_forall_statement, 1, 0, 59), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_critical_statement, 1, 0, 44), + [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_forall_statement, 2, 0, 94), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_loop_statement, 2, 0, 78), + [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 2, 0, 121), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_where_statement, 2, 0, 113), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_critical_statement, 2, 0, 84), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_internal_procedures, 4, 0, 130), + [8390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_internal_procedures, 4, 0, 68), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 4, 0, 15), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_where_statement, 1, 0, 80), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 2, 0, 9), + [8400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 2, 0, 9), + [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_procedures, 3, 0, 0), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_procedures, 3, 0, 0), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_literal, 3, 0, 0), + [8410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_literal, 3, 0, 0), + [8412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 7, 0, 70), SHIFT(5615), + [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 7, 0, 70), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 7, 0, 70), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [8425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), + [8428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), + [8431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), + [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), + [8436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), + [8439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7260), + [8442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), + [8444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(5189), + [8447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3917), + [8450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3916), + [8453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(8045), + [8456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7944), + [8459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(5169), + [8462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7089), + [8465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(5175), + [8468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(8361), + [8471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), + [8474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6662), + [8477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3517), + [8480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(4067), + [8483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3211), + [8486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), + [8489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7133), + [8492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), + [8494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [8497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), + [8499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3917), + [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [8505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3916), + [8508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(8045), + [8511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7944), + [8514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3082), + [8517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5169), + [8520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7089), + [8523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5175), + [8526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(8361), + [8529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [8534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 3, 0, 0), SHIFT(5615), + [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 3, 0, 0), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 3, 0, 0), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8254), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__kind, 2, 0, 26), + [8545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__kind, 2, 0, 26), + [8547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 127), SHIFT_REPEAT(4416), + [8550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 127), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 127), + [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implied_do_loop_expression, 5, 0, 0), + [8556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implied_do_loop_expression, 5, 0, 0), + [8558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 6, 0, 70), SHIFT(5615), + [8561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 6, 0, 70), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 6, 0, 70), + [8565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 1, 0, 0), SHIFT(5613), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [8570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 1, 0, 0), + [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 1, 0, 0), + [8574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), + [8577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 5, 0, 0), SHIFT(5615), + [8580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 5, 0, 0), + [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 5, 0, 0), + [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_expression, 2, 0, 0), + [8586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coarray_expression, 2, 0, 0), + [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [8590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_member_expression, 3, 0, 63), + [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_member_expression, 3, 0, 63), + [8596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 4, 0, 0), SHIFT(5615), + [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 4, 0, 0), + [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 4, 0, 0), + [8603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_procedures, 2, 0, 0), + [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_procedures, 2, 0, 0), + [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 2, 0, 9), + [8609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 2, 0, 9), + [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 1, 0, 8), + [8613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 1, 0, 8), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_constructor_legacy, 3, 0, 43), + [8617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_constructor_legacy, 3, 0, 43), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_constructor_f2003, 3, 0, 43), + [8623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_constructor_f2003, 3, 0, 43), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implied_do_loop_expression, 6, 0, 0), + [8631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implied_do_loop_expression, 6, 0, 0), + [8633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 6, 0, 0), SHIFT(5615), + [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 6, 0, 0), + [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 6, 0, 0), + [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_literal, 5, 0, 0), + [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_literal, 5, 0, 0), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [8646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 3, 0, 0), SHIFT(5616), + [8649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_default, 2, 0, 0), + [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_default, 2, 0, 0), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [8655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [8657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [8659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_default, 1, 0, 0), + [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_default, 1, 0, 0), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_label_reference, 1, 0, 14), + [8665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_label_reference, 1, 0, 14), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [8669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 124), + [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 124), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 52), + [8687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 52), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 0), + [8691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 0), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_declaration, 4, 0, 70), SHIFT(5612), + [8698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_declaration, 4, 0, 70), + [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_declaration, 4, 0, 70), + [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), + [8704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), + [8706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2615), + [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6395), - [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [8806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), - [8809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4127), - [8812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [8815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4077), - [8818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7289), - [8821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6460), - [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation_expression, 3, 0, 62), - [8826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation_expression, 3, 0, 62), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3539), - [8843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4123), - [8846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3255), - [8849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4074), - [8852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7280), - [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6335), - [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [8896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), - [8899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3989), - [8902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3243), - [8905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4057), - [8908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7248), - [8911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6353), - [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [8938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), - [8941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4121), - [8944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3253), - [8947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4071), - [8950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7277), - [8953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6271), - [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_assignment, 3, 0, 64), - [8958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_assignment, 3, 0, 64), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_expression, 3, 0, 62), - [8974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_expression, 3, 0, 62), - [8976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_expression, 3, 0, 62), - [8978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_expression, 3, 0, 62), - [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3, 0, 62), - [8982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3, 0, 62), - [8984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), - [8987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), - [8990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), - [8993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4080), - [8996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7308), - [8999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6520), - [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 2, 0, 15), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [9006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3517), - [9009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), - [9012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [9015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4010), - [9018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7178), - [9021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6788), - [9024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), - [9027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4110), - [9030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3237), - [9033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), - [9036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7244), - [9039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6888), - [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_pointer_association, 3, 0, 64), - [9044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_pointer_association, 3, 0, 64), - [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), - [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 11), - [9072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 11), - [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 2, 0, 0), - [9076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 2, 0, 0), - [9078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_internal_procedures, 1, 0, 0), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 4, 0, 15), - [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 4, 0, 130), - [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 4, 0, 68), - [9088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_internal_procedures, 3, 0, 0), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [9092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 3, 0, 15), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [9096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 5, 0, 130), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [9104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_internal_procedures, 2, 0, 0), - [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 3, 0, 68), - [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), - [9110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), - [9112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5207), - [9115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), - [9118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3279), - [9121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [9124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(8344), - [9127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7943), - [9130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3111), - [9133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5168), - [9136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7350), - [9139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5169), - [9142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(8360), - [9145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), - [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), - [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [9232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_interface, 1, 0, 0), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [9236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_interface, 2, 0, 0), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [8795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6293), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [8810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), + [8813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4130), + [8816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3256), + [8819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4078), + [8822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7282), + [8825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6365), + [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_expression, 3, 0, 62), + [8830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_expression, 3, 0, 62), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 11), + [8856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 11), + [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_expression, 3, 0, 62), + [8860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_expression, 3, 0, 62), + [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3, 0, 62), + [8864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3, 0, 62), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 2, 0, 0), + [8868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 2, 0, 0), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [8906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation_expression, 3, 0, 62), + [8908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation_expression, 3, 0, 62), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_assignment, 3, 0, 64), + [8924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_assignment, 3, 0, 64), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 2, 0, 15), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_pointer_association, 3, 0, 64), + [8946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_pointer_association, 3, 0, 64), + [8948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), + [8951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), + [8954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3240), + [8957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3994), + [8960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7182), + [8963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6907), + [8966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_internal_procedures, 1, 0, 0), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [8982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [8985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4115), + [8988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3243), + [8991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), + [8994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7245), + [8997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6292), + [9000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), + [9003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4138), + [9006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3258), + [9009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4081), + [9012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7300), + [9015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6434), + [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [9024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [9030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), + [9033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4126), + [9036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3252), + [9039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4070), + [9042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7272), + [9045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6811), + [9048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), + [9051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4127), + [9054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3254), + [9057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4074), + [9060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7274), + [9063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6977), + [9066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), + [9069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4114), + [9072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), + [9075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), + [9078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7243), + [9081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_internal_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(6692), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 4, 0, 130), + [9088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 4, 0, 68), + [9090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 4, 0, 15), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [9094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_internal_procedures, 2, 0, 0), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [9098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 3, 0, 68), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [9104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 3, 0, 15), + [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 5, 0, 130), + [9108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_internal_procedures, 3, 0, 0), + [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), + [9112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), + [9114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [9117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3917), + [9120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [9123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3916), + [9126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(8045), + [9129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7944), + [9132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(3111), + [9135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5169), + [9138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(7089), + [9141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5175), + [9144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(8361), + [9147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_interface_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_interface, 1, 0, 0), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), [9238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_interface, 3, 0, 0), - [9240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3504), - [9243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4072), - [9246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), - [9249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4030), - [9252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7162), - [9255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), - [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), - [9260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), - [9262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8029), - [9265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3291), - [9268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), - [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6701), - [9274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), - [9277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7132), - [9280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3834), - [9283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8334), - [9286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7020), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [9305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 7, 0, 186), - [9307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 7, 0, 186), - [9309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 7, 0, 187), - [9311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 7, 0, 187), - [9313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 3, 0, 30), - [9315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 3, 0, 30), - [9317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6, 0, 167), - [9319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6, 0, 167), - [9321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6, 0, 168), - [9323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6, 0, 168), - [9325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 8, 0, 197), - [9327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 8, 0, 197), - [9329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 8, 0, 196), - [9331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 8, 0, 196), - [9333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 7, 0, 184), - [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 7, 0, 184), - [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 8, 0, 198), - [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 8, 0, 198), - [9341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 9, 0, 203), - [9343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 9, 0, 203), - [9345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4, 0, 65), - [9347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4, 0, 65), - [9349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4, 0, 66), - [9351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4, 0, 66), - [9353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 9, 0, 204), - [9355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 9, 0, 204), - [9357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 11, 0, 207), - [9359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 11, 0, 207), - [9361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 7, 0, 185), - [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 7, 0, 185), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [9367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 10, 0, 206), - [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 10, 0, 206), - [9371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 10, 0, 205), - [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 10, 0, 205), - [9375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5, 0, 148), - [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5, 0, 148), - [9379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5, 0, 97), - [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5, 0, 97), - [9383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6, 0, 166), - [9385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6, 0, 166), - [9387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2613), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [9454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 2, 0, 0), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 2, 0, 0), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_value_range_list, 1, 0, 0), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cuda_kernel_argument_list_repeat1, 2, 0, 0), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [9474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 4, 0, 0), - [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 4, 0, 0), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [9482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [9493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 2, 0, 6), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [9505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 3, 0, 0), - [9507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 3, 0, 0), - [9509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [9511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [9513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 5, 0, 0), - [9515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 5, 0, 0), - [9517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3993), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [9522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 1, 0, 0), - [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 1, 0, 0), - [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 1, 0, 0), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_item_list, 1, 0, 0), - [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_item_list, 1, 0, 0), - [9534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_call, 2, 0, 20), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [9544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 129), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 129), - [9550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 68), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [9554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 68), - [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 102), - [9558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 131), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [9562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 131), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [9570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_control_expression, 5, 0, 0), - [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat1, 2, 0, 0), - [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 3, 0, 0), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat1, 2, 0, 0), - [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 3, 0, 0), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [9584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 155), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 155), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [9592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 3, 0, 15), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [9596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 3, 0, 15), - [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triplet_spec, 5, 0, 0), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 3, 0, 0), - [9606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 4, 0, 68), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 4, 0, 68), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 129), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 129), - [9620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 4, 0, 15), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [9624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 4, 0, 15), - [9626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 131), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [9630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 131), - [9632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 4, 0, 68), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [9636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 4, 0, 68), - [9638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(2625), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [9643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 4, 0, 69), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [9647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 4, 0, 69), - [9649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 4, 0, 15), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 4, 0, 15), - [9655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 3, 0, 15), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 3, 0, 15), - [9661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 4, 0, 69), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [9665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 4, 0, 69), - [9667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 5, 0, 99), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [9671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 5, 0, 99), - [9673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 5, 0, 99), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [9677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 5, 0, 99), - [9679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 5, 0, 68), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [9683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 5, 0, 68), - [9685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 5, 0, 68), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [9689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 5, 0, 68), - [9691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_control, 5, 0, 180), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 100), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [9699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 100), - [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_value_range_list_repeat1, 2, 0, 0), - [9703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 15), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [9707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 15), - [9709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 100), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 100), - [9715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 15), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [9719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 15), - [9721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 155), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [9725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 155), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [9729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 68), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [9733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 68), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [9747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 3, 0, 0), - [9749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 3, 0, 0), - [9751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 64), - [9753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_assignment, 3, 0, 0), - [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_association_statement, 3, 0, 0), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 5, 0, 0), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [9775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 5, 0, 0), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [9779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 7, 0, 131), - [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 7, 0, 131), - [9783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 8, 0, 155), - [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 8, 0, 155), - [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 5, 0, 0), - [9789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 5, 0, 0), - [9791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 2, 0, 40), - [9793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 2, 0, 40), - [9795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 7, 0, 0), - [9797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association, 3, 0, 117), - [9799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 7, 0, 0), - [9801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 2, 0, 21), - [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 21), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [9807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 99), - [9809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 99), - [9811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_procedure, 3, 0, 0), - [9813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure, 3, 0, 0), - [9815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 100), - [9817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 100), - [9819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 15), - [9821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 15), - [9823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 99), - [9825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 99), - [9827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_control, 7, 0, 202), - [9829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_procedure_statement, 2, 0, 149), - [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_procedure_statement, 2, 0, 149), - [9833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_procedure, 4, 0, 0), - [9835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure, 4, 0, 0), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 4, 0, 0), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 4, 0, 0), - [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 6, 0, 0), - [9849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 2, 0, 0), - [9851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 0), - [9853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 100), - [9855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 100), - [9857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 15), - [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 15), - [9861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 8, 0, 0), - [9863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_procedure_statement, 4, 0, 169), - [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_procedure_statement, 4, 0, 169), - [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_control_expression, 7, 0, 0), - [9869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_procedure, 6, 0, 0), - [9871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure, 6, 0, 0), - [9873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 69), - [9875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 69), - [9877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_procedure_statement, 3, 0, 169), - [9879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_procedure_statement, 3, 0, 169), - [9881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 129), - [9883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 129), - [9885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 68), - [9887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 68), - [9889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 69), - [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 69), - [9893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 7, 0, 131), - [9895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 7, 0, 131), - [9897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 4, 0, 0), - [9899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 4, 0, 0), - [9901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 2, 0, 0), - [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 2, 0, 0), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [9909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 129), - [9911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 129), - [9913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_procedure_statement, 3, 0, 149), - [9915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_procedure_statement, 3, 0, 149), - [9917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_procedure, 5, 0, 0), - [9919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure, 5, 0, 0), - [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 6, 0, 0), - [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triplet_spec, 7, 0, 0), - [9925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 8, 0, 155), - [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 8, 0, 155), - [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function, 4, 0, 0), - [9931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 68), - [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 68), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [9947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4002), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [9986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), - [9988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(3998), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [10035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(2914), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_expressions, 1, 0, 0), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), - [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_allocate_statement_repeat1, 2, 0, 118), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 1, 0, 0), - [10184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_expression_repeat1, 1, 0, 0), - [10186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_call, 3, 0, 20), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_identifier, 1, 0, 0), - [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_allocation, 2, 0, 39), - [10222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_allocation, 2, 0, 19), - [10224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(3340), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [10229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(6557), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [10234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(6692), - [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [10239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_equivalence_set_repeat1, 2, 0, 0), - [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [10243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(3365), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [10256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_value_repeat1, 2, 0, 0), - [10258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(aux_sym_data_value_repeat1, 2, 0, 0), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_value_repeat1, 4, 0, 161), - [10269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(aux_sym_data_value_repeat1, 4, 0, 161), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [10276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_set_repeat1, 2, 0, 0), - [10278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(aux_sym_data_set_repeat1, 2, 0, 0), - [10281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 2, 0, 15), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [10293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 4, 0, 68), - [10295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 68), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [10299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 68), - [10301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 129), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [10305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 129), - [10307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 155), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [10311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 155), - [10313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 5, 0, 130), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 3, 0, 68), - [10319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 131), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [10323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 131), - [10325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 4, 0, 130), - [10327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 3, 0, 15), - [10329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 4, 0, 68), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [10333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 4, 0, 68), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [10337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 100), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [10341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 100), - [10343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 5, 0, 99), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [10347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 5, 0, 99), - [10349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 4, 0, 15), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [10353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 4, 0, 15), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [10357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 4, 0, 69), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [10361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 4, 0, 69), - [10363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 5, 0, 68), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [10367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 5, 0, 68), - [10369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 15), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [10373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 15), - [10375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 4, 0, 15), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [10379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 3, 0, 15), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [10383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 3, 0, 15), - [10385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 7, 0, 159), - [10387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 7, 0, 159), - [10389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 9, 0, 199), - [10391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 9, 0, 199), - [10393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 4, 0, 73), - [10395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 4, 0, 73), - [10397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 7, 0, 131), - [10399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 7, 0, 131), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7236), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [10425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 8, 0, 188), - [10427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 8, 0, 188), - [10429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 8, 0, 189), - [10431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 8, 0, 189), - [10433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 3, 0, 0), - [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 3, 0, 0), - [10437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 7, 0, 160), - [10439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 7, 0, 160), - [10441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 6, 0, 152), - [10443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 6, 0, 152), - [10445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 8, 0, 177), - [10447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 8, 0, 177), - [10449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 100), - [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 100), - [10453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 6, 0, 133), - [10455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 6, 0, 133), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [10463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(5304), - [10466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), - [10468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(8344), - [10471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(7943), - [10474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(5168), - [10477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(7350), - [10480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(5169), - [10483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(8360), - [10486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 5, 0, 108), - [10488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 5, 0, 108), - [10490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 4, 0, 0), - [10492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 4, 0, 0), - [10494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 15), - [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 15), - [10498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 8, 0, 155), - [10500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 8, 0, 155), - [10502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 99), - [10504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 99), - [10506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 129), - [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 129), - [10510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 69), - [10512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 69), - [10514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 7, 0, 170), - [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 7, 0, 170), - [10518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 68), - [10520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 68), - [10522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 5, 0, 0), - [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 5, 0, 0), - [10526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 51), - [10528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 51), - [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), - [10532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), - [10534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), - [10537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8029), - [10540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), - [10543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7132), - [10546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3834), - [10549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8334), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [10558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), - [10561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4107), - [10564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3206), - [10567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), - [10570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7236), - [10573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), - [10575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7570), - [10578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7208), - [10581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), - [10583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7589), - [10586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7591), - [10589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3919), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [10602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [10606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_targets, 1, 0, 23), - [10608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_targets, 1, 0, 23), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [10620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_procedures, 2, 0, 0), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [10628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_procedures, 2, 0, 0), - [10630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 30), - [10632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 30), - [10634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3269), - [10637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), - [10640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), - [10642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(8303), - [10645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3279), - [10648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3306), - [10651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3320), - [10654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [10668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_procedures, 1, 0, 0), - [10670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_procedures, 1, 0, 0), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [9240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_interface, 2, 0, 0), + [9242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [9245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4072), + [9248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3180), + [9251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4019), + [9254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7195), + [9257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), + [9259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), + [9264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8030), + [9267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), + [9270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3316), + [9273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6640), + [9276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3801), + [9279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7131), + [9282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), + [9285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), + [9288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6496), + [9291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 9, 0, 204), + [9293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 9, 0, 204), + [9295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 3, 0, 30), + [9297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 3, 0, 30), + [9299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 11, 0, 207), + [9301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 11, 0, 207), + [9303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5, 0, 148), + [9305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5, 0, 148), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [9319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 10, 0, 205), + [9321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 10, 0, 205), + [9323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4, 0, 66), + [9325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4, 0, 66), + [9327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4, 0, 65), + [9329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4, 0, 65), + [9331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 10, 0, 206), + [9333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 10, 0, 206), + [9335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 9, 0, 203), + [9337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 9, 0, 203), + [9339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 7, 0, 185), + [9341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 7, 0, 185), + [9343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 7, 0, 184), + [9345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 7, 0, 184), + [9347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 7, 0, 187), + [9349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 7, 0, 187), + [9351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 8, 0, 196), + [9353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 8, 0, 196), + [9355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 8, 0, 197), + [9357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 8, 0, 197), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 8, 0, 198), + [9365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 8, 0, 198), + [9367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5, 0, 97), + [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5, 0, 97), + [9371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6, 0, 166), + [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6, 0, 166), + [9375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6, 0, 167), + [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6, 0, 167), + [9379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6, 0, 168), + [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6, 0, 168), + [9383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 7, 0, 186), + [9385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 7, 0, 186), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2621), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [9462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 5, 0, 0), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 5, 0, 0), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [9472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 1, 0, 0), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 1, 0, 0), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_item_list, 1, 0, 0), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2628), + [9489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 2, 0, 0), + [9491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 2, 0, 0), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [9503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_value_range_list, 1, 0, 0), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [9507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 1, 0, 0), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [9511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_item_list, 1, 0, 0), + [9513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 3, 0, 0), + [9515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 3, 0, 0), + [9517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [9519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 2, 0, 6), + [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4139), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_call, 2, 0, 20), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cuda_kernel_argument_list_repeat1, 2, 0, 0), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [9540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 4, 0, 0), + [9542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 4, 0, 0), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [9546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_value_range_list_repeat1, 2, 0, 0), + [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_control, 5, 0, 180), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 5, 0, 68), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 5, 0, 68), + [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 3, 0, 0), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 129), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [9566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 129), + [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triplet_spec, 5, 0, 0), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 102), + [9574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 68), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 68), + [9580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 129), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [9584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 129), + [9586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 4, 0, 69), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 4, 0, 69), + [9592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 4, 0, 68), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [9596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 4, 0, 68), + [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat1, 2, 0, 0), + [9600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 4, 0, 15), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 4, 0, 15), + [9606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 68), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [9610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 68), + [9612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 4, 0, 69), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [9616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 4, 0, 69), + [9618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 131), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 131), + [9624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat1, 2, 0, 0), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [9634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 3, 0, 0), + [9636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 155), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [9640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 155), + [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 3, 0, 0), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [9648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_control_expression, 5, 0, 0), + [9650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 3, 0, 15), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [9654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 3, 0, 15), + [9656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 3, 0, 15), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 3, 0, 15), + [9662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 5, 0, 99), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 5, 0, 99), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [9670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 100), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 100), + [9676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 155), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [9680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 155), + [9682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 4, 0, 68), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [9686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 4, 0, 68), + [9688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 131), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 131), + [9694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 4, 0, 15), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 4, 0, 15), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [9702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 5, 0, 99), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 5, 0, 99), + [9708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 5, 0, 68), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 5, 0, 68), + [9714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 100), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 100), + [9720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(2628), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [9725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 15), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [9729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 15), + [9731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 15), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [9735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 15), + [9737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_procedure, 3, 0, 0), + [9739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure, 3, 0, 0), + [9741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 8, 0, 155), + [9743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 8, 0, 155), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [9759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_procedure_statement, 2, 0, 149), + [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_procedure_statement, 2, 0, 149), + [9763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_procedure, 4, 0, 0), + [9765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure, 4, 0, 0), + [9767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 69), + [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 5, 0, 69), + [9771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_procedure_statement, 3, 0, 169), + [9773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_procedure_statement, 3, 0, 169), + [9775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 4, 0, 0), + [9777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 4, 0, 0), + [9779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_procedure_statement, 3, 0, 149), + [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_procedure_statement, 3, 0, 149), + [9783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_procedure, 5, 0, 0), + [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure, 5, 0, 0), + [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_control, 7, 0, 202), + [9789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 99), + [9791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 6, 0, 99), + [9793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 100), + [9795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 100), + [9797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 15), + [9799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 6, 0, 15), + [9801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_module_procedure_statement, 4, 0, 169), + [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_module_procedure_statement, 4, 0, 169), + [9805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_procedure, 6, 0, 0), + [9807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure, 6, 0, 0), + [9809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 129), + [9811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 129), + [9813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 68), + [9815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 7, 0, 68), + [9817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 7, 0, 131), + [9819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_internal_procedures, 7, 0, 131), + [9821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_internal_procedures, 8, 0, 155), + [9823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_internal_procedures, 8, 0, 155), + [9825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 2, 0, 21), + [9827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 21), + [9829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function, 4, 0, 0), + [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 5, 0, 0), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 5, 0, 0), + [9835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 7, 0, 0), + [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 7, 0, 0), + [9839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 2, 0, 0), + [9841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 0), + [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 6, 0, 0), + [9845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__coarray_extent_specifier, 4, 0, 0), + [9847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 2, 0, 0), + [9849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 2, 0, 0), + [9851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 69), + [9853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 5, 0, 69), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extent_specifier, 4, 0, 0), + [9861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 99), + [9863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 6, 0, 99), + [9865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 100), + [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 100), + [9869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 15), + [9871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 6, 0, 15), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_names, 2, 0, 40), + [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_names, 2, 0, 40), + [9891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 3, 0, 0), + [9893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 3, 0, 0), + [9895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 8, 0, 0), + [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_control_expression, 7, 0, 0), + [9899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 64), + [9901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_assignment, 3, 0, 0), + [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_association_statement, 3, 0, 0), + [9905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 5, 0, 0), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 5, 0, 0), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [9915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 129), + [9917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 129), + [9919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 68), + [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_interface, 7, 0, 68), + [9923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_interface, 7, 0, 131), + [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_interface, 7, 0, 131), + [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_statement, 6, 0, 0), + [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triplet_spec, 7, 0, 0), + [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association, 3, 0, 117), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4000), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(4018), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [10017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [10039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), SHIFT(3001), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__io_expressions, 1, 0, 0), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [10126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_expression_repeat1, 1, 0, 0), + [10128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_expression_repeat1, 1, 0, 0), + [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_call, 3, 0, 20), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_allocate_statement_repeat1, 2, 0, 118), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [10224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(6665), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_identifier, 1, 0, 0), + [10233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_allocation, 2, 0, 39), + [10235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_allocation, 2, 0, 19), + [10237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_equivalence_set_repeat1, 2, 0, 0), + [10239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(3362), + [10242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(3359), + [10245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7023), + [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_value_repeat1, 4, 0, 161), + [10250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(aux_sym_data_value_repeat1, 4, 0, 161), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_set_repeat1, 2, 0, 0), + [10277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(aux_sym_data_set_repeat1, 2, 0, 0), + [10280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 2, 0, 15), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [10286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_value_repeat1, 2, 0, 0), + [10288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(aux_sym_data_value_repeat1, 2, 0, 0), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [10293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 4, 0, 130), + [10295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 100), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [10299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 100), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [10303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 5, 0, 68), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [10307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 5, 0, 68), + [10309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 15), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [10313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 15), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [10317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 4, 0, 68), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [10321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 4, 0, 68), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [10327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 155), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [10331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 155), + [10333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 5, 0, 130), + [10335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 3, 0, 15), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [10339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 3, 0, 15), + [10341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 129), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [10345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 129), + [10347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 68), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [10351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 68), + [10353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 4, 0, 69), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [10357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 4, 0, 69), + [10359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 4, 0, 68), + [10361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 4, 0, 15), + [10363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 3, 0, 68), + [10365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 4, 0, 15), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [10369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 4, 0, 15), + [10371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 131), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [10375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 131), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [10379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 3, 0, 15), + [10381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 5, 0, 99), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [10385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 5, 0, 99), + [10387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 7, 0, 160), + [10389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 7, 0, 160), + [10391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 5, 0, 108), + [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 5, 0, 108), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7987), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [10419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 8, 0, 177), + [10421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 8, 0, 177), + [10423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 3, 0, 0), + [10425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 3, 0, 0), + [10427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 9, 0, 199), + [10429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 9, 0, 199), + [10431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 6, 0, 133), + [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 6, 0, 133), + [10435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 69), + [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 5, 0, 69), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [10445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 129), + [10447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 129), + [10449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 68), + [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 7, 0, 68), + [10453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(5297), + [10456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), + [10458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(8045), + [10461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(7944), + [10464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(5169), + [10467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(7089), + [10470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(5175), + [10473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 2, 0, 22), SHIFT_REPEAT(8361), + [10476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 6, 0, 152), + [10478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 6, 0, 152), + [10480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 8, 0, 188), + [10482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 8, 0, 188), + [10484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 8, 0, 189), + [10486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 8, 0, 189), + [10488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 99), + [10490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 6, 0, 99), + [10492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 5, 0, 0), + [10494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 5, 0, 0), + [10496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 7, 0, 159), + [10498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 7, 0, 159), + [10500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 100), + [10502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 100), + [10504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 15), + [10506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 6, 0, 15), + [10508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 51), + [10510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_definition_repeat1, 2, 0, 51), + [10512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 4, 0, 0), + [10514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 4, 0, 0), + [10516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 4, 0, 73), + [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 4, 0, 73), + [10520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_statement, 7, 0, 170), + [10522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_statement, 7, 0, 170), + [10524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_derived_type, 8, 0, 155), + [10526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_derived_type, 8, 0, 155), + [10528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_derived_type, 7, 0, 131), + [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_derived_type, 7, 0, 131), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [10538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), + [10541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [10544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3269), + [10547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4015), + [10550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7235), + [10553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), + [10555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8016), + [10558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7335), + [10561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), + [10563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8027), + [10566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8028), + [10569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3919), + [10572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), + [10574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), + [10576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), + [10579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8030), + [10582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3801), + [10585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7131), + [10588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), + [10591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_derived_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), + [10596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [10600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_targets, 1, 0, 23), + [10612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_targets, 1, 0, 23), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [10652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3176), + [10655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [10658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), + [10660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7653), + [10663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [10666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), + [10669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3301), + [10672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_procedures_repeat1, 2, 0, 0), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [10678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_procedures, 2, 0, 0), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [10686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_procedures, 2, 0, 0), + [10688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_derived_type_procedures, 1, 0, 0), + [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_procedures, 1, 0, 0), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [10694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_derived_type, 1, 0, 0), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_qualifier, 1, 0, 0), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_derived_type, 1, 0, 0), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 62), - [10718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 62), - [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [10722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [10724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [10726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_attributes, 5, 0, 0), - [10728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_attributes, 5, 0, 0), - [10730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_attributes, 4, 0, 0), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [10756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_targets, 1, 0, 24), - [10758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_targets, 1, 0, 24), - [10760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 93), SHIFT_REPEAT(3554), - [10763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 93), - [10765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 93), - [10767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [10769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [10773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8363), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), - [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 33), - [10789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 33), - [10791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 11), - [10793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 11), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), - [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [10809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8407), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7950), - [10823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [10825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7997), - [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [10857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8047), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8077), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8088), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8128), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8164), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8179), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8207), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8242), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8251), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8274), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), - [10991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_targets, 2, 0, 54), - [10993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_targets, 2, 0, 54), - [10995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 1, 0, 6), - [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_targets, 2, 0, 55), - [10999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_targets, 2, 0, 55), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), - [11005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_derived_type, 2, 0, 0), - [11007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_derived_type, 3, 0, 0), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [11011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 61), - [11013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 61), - [11015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), - [11018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4107), - [11021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3208), - [11024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4139), - [11027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7236), - [11030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), - [11032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7321), - [11035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [11061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 2, 0, 15), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [11093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), - [11096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4107), - [11099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3180), - [11102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4091), - [11105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7236), - [11108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), - [11110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7186), - [11113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 151), - [11143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 151), - [11145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 53), - [11147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 53), - [11149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 92), - [11151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 92), - [11153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 3, 0, 15), - [11155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 125), - [11157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 125), - [11159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 4, 0, 130), - [11161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 4, 0, 68), - [11163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 4, 0, 15), - [11165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 25), - [11167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, 0, 25), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [11171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 5, 0, 130), - [11173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 126), - [11175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 126), - [11177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 3, 0, 68), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [11181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 155), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [11185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 155), - [11187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 5, 0, 100), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [11191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 5, 0, 100), - [11193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 4, 0, 15), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [11197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 4, 0, 15), - [11199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 5, 0, 68), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [11203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 5, 0, 68), - [11205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 5, 0, 15), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [11209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 5, 0, 15), - [11211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 131), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [11215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 131), - [11217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 6, 0, 129), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [11221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 6, 0, 129), - [11223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 6, 0, 68), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [11227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 6, 0, 68), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [11245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 131), - [11247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 131), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [11251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 4, 0, 68), - [11253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 4, 0, 68), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [11257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 129), - [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 129), - [11261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 4, 0, 69), - [11263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 4, 0, 69), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [11267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 68), - [11269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 68), - [11271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 68), - [11273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 7, 0, 131), - [11275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 7, 0, 131), - [11277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 5, 0, 15), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [11281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_bound_procedures_repeat1, 2, 0, 0), - [11283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_bound_procedures_repeat1, 2, 0, 0), - [11285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_bound_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(8303), - [11288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_bound_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3279), - [11291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 130), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 30), + [10710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 30), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8063), + [10750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 62), + [10752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 62), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7998), + [10758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_attributes, 5, 0, 0), + [10760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_attributes, 5, 0, 0), + [10762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8300), + [10770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 11), + [10772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 11), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8048), + [10782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7898), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), + [10802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8086), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8398), + [10826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [10828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8105), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), + [10848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 93), SHIFT_REPEAT(3501), + [10851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 93), + [10853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 93), + [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_targets, 1, 0, 24), + [10857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_targets, 1, 0, 24), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8148), + [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7881), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), + [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_attributes, 4, 0, 0), + [10901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 33), + [10903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 33), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8194), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8208), + [10913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_derived_type, 2, 0, 0), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8221), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), + [10939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_derived_type, 3, 0, 0), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8258), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8264), + [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8371), + [10969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_targets, 2, 0, 54), + [10971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_targets, 2, 0, 54), + [10973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_targets, 2, 0, 55), + [10975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_targets, 2, 0, 55), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8349), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8246), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [11009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__callable_interface_qualifers, 1, 0, 6), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [11015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 2, 0, 15), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [11029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), + [11032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [11035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), + [11038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [11041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7235), + [11044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), + [11046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7343), + [11049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_rank_statement_repeat1, 2, 0, 0), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [11067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 61), + [11069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 61), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [11103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), + [11106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [11109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3225), + [11112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), + [11115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7235), + [11118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), + [11120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7326), + [11123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_case_statement_repeat1, 2, 0, 0), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [11137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 5, 0, 130), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 126), + [11143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 126), + [11145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 125), + [11147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 125), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [11153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 4, 0, 130), + [11155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 4, 0, 68), + [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 4, 0, 15), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [11161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 151), + [11163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 151), + [11165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 3, 0, 15), + [11167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 53), + [11169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 53), + [11171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 3, 0, 68), + [11173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 25), + [11175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, 0, 25), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [11179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 92), + [11181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 92), + [11183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 5, 0, 100), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [11187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 5, 0, 100), + [11189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 4, 0, 15), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [11193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 4, 0, 15), + [11195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 5, 0, 15), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [11199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 5, 0, 15), + [11201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 155), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [11205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 155), + [11207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 6, 0, 129), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [11211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 6, 0, 129), + [11213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 6, 0, 68), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [11217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 6, 0, 68), + [11219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 131), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [11223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 131), + [11225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 5, 0, 68), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [11229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 5, 0, 68), + [11231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 3, 0, 15), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [11247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 4, 0, 69), + [11249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 4, 0, 69), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [11257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 131), + [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 131), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [11271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 130), + [11273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 4, 0, 68), + [11275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 130), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [11283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 68), + [11285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 5, 0, 15), + [11287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 4, 0, 15), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [11297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 15), - [11299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 15), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [11305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 5, 0, 99), - [11307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 5, 0, 99), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [11313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 100), - [11315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 100), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [11329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 100), - [11331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 100), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [11335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 15), - [11337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 15), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [11341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 4, 0, 15), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [11345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 4, 0, 68), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [11353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 8, 0, 155), - [11355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 8, 0, 155), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [11373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 130), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [11381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 3, 0, 15), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [11393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 155), - [11395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 155), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [11401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 3, 0, 15), - [11403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 3, 0, 15), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [11407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 129), - [11409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 129), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [11413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 68), - [11415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 68), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [11421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 4, 0, 15), - [11423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 4, 0, 15), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [11427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 5, 0, 68), - [11429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 5, 0, 68), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [11433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 100), - [11435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 100), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [11439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 2, 0, 30), - [11441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 2, 0, 30), - [11443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 3, 0, 65), - [11445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 3, 0, 65), - [11447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 15), - [11449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 15), - [11451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 8, 0, 155), - [11453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 8, 0, 155), - [11455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 129), - [11457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 129), - [11459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 68), - [11461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 68), - [11463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 7, 0, 131), - [11465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 7, 0, 131), - [11467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 69), - [11469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 69), - [11471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 99), - [11473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 99), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [11497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_contains_statement, 1, 0, 0), - [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contains_statement, 1, 0, 0), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_label_start_expression, 2, 0, 29), - [11511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_label_start_expression, 2, 0, 29), - [11513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 30), - [11515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 30), - [11517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 68), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [11523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 5, 0, 100), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [11527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 5, 0, 100), - [11529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 5, 0, 15), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [11533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 6, 0, 129), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [11537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 6, 0, 129), - [11539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 6, 0, 68), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [11543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 6, 0, 68), - [11545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 6, 0, 129), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [11549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 6, 0, 129), - [11551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 131), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [11555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 131), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [11561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__transfer_items, 2, 0, 0), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [11577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 6, 0, 68), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 6, 0, 68), - [11583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 155), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [11587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 155), - [11589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 131), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [11593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 131), - [11595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5627), - [11598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), - [11600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), - [11603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5537), - [11606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5855), - [11609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5856), - [11612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(8112), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [11617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 4, 0, 15), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [11621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 4, 0, 15), - [11623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 3, 0, 15), - [11625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 4, 0, 15), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [11629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 4, 0, 15), - [11631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 155), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [11635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 155), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [11639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 6, 0, 130), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [11645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 4, 0, 68), - [11647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__transfer_items, 1, 0, 0), - [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [11653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 4, 0, 15), - [11655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 5, 0, 68), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [11659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 5, 0, 68), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [11665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 5, 0, 15), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [11669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 5, 0, 15), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [11683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 130), - [11685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 5, 0, 68), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [11689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 5, 0, 68), - [11691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_bound_procedures, 1, 0, 0), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [11695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 5, 0, 15), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [11699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 5, 0, 15), - [11701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 5, 0, 100), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [11705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 5, 0, 100), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), - [11717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 8, 0, 155), - [11719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 8, 0, 155), - [11721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [11729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_bound_procedures, 3, 0, 0), - [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_bound_procedures, 2, 0, 0), - [11733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 129), - [11735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 129), - [11737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 15), - [11739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 15), - [11741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 129), - [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 129), - [11745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 100), - [11747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 100), - [11749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 68), - [11751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 68), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [11759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 2, 0, 15), - [11761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 100), - [11763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 100), - [11765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 68), - [11767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 68), - [11769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_statement, 2, 0, 15), - [11771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 15), - [11773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 15), - [11775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 3, 0, 49), - [11777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 8, 0, 155), - [11779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 8, 0, 155), - [11781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 7, 0, 131), - [11783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 7, 0, 131), - [11785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 7, 0, 131), - [11787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 7, 0, 131), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [11311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 4, 0, 15), + [11313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 4, 0, 15), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [11321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_bound_procedures_repeat1, 2, 0, 0), + [11323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_bound_procedures_repeat1, 2, 0, 0), + [11325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_bound_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(7653), + [11328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_bound_procedures_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [11333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 129), + [11335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 129), + [11337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 4, 0, 68), + [11339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 4, 0, 68), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [11343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 68), + [11345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 7, 0, 68), + [11347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 5, 0, 99), + [11349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 5, 0, 99), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [11355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 155), + [11357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 155), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [11361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 15), + [11363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 15), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [11369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 5, 0, 68), + [11371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 5, 0, 68), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [11375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_type, 8, 0, 155), + [11377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_type, 8, 0, 155), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [11385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 3, 0, 15), + [11387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 3, 0, 15), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [11391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 100), + [11393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 6, 0, 100), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [11403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 100), + [11405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 100), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [11409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 15), + [11411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 15), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [11415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_type, 7, 0, 131), + [11417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_type, 7, 0, 131), + [11419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 129), + [11421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 129), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [11425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 68), + [11427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 68), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [11435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 100), + [11437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 100), + [11439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 15), + [11441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 6, 0, 15), + [11443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 8, 0, 155), + [11445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 8, 0, 155), + [11447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 129), + [11449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 129), + [11451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 68), + [11453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 7, 0, 68), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [11457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 3, 0, 65), + [11459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 3, 0, 65), + [11461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_contains_statement, 1, 0, 0), + [11463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contains_statement, 1, 0, 0), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [11487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 2, 0, 30), + [11489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 2, 0, 30), + [11491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 7, 0, 131), + [11493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 7, 0, 131), + [11495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 99), + [11497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_bound_procedures, 6, 0, 99), + [11499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 69), + [11501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_bound_procedures, 5, 0, 69), + [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_label_start_expression, 2, 0, 29), + [11505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_label_start_expression, 2, 0, 29), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [11515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 30), + [11517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 30), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [11525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 5, 0, 68), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [11529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 5, 0, 68), + [11531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 5, 0, 100), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [11535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 5, 0, 100), + [11537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 6, 0, 129), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [11541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 6, 0, 129), + [11543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 6, 0, 68), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [11547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 6, 0, 68), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [11551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 5, 0, 15), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [11555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 5, 0, 15), + [11557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 155), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [11561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 155), + [11563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 4, 0, 15), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [11567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 4, 0, 15), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [11571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 131), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 131), + [11577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 4, 0, 15), + [11579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5824), + [11582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), + [11584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5607), + [11587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5531), + [11590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5839), + [11593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(5852), + [11596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), SHIFT_REPEAT(8113), + [11599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 4, 0, 15), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [11603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 4, 0, 15), + [11605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 3, 0, 15), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [11609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__transfer_items, 2, 0, 0), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [11621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 6, 0, 130), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [11625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 5, 0, 15), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [11629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 5, 0, 15), + [11631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 4, 0, 68), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [11637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 130), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [11643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 5, 0, 100), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [11647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 5, 0, 100), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [11657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 5, 0, 15), + [11659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__transfer_items, 1, 0, 0), + [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [11663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 155), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [11667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 155), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [11675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 6, 0, 129), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [11679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 6, 0, 129), + [11681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 6, 0, 68), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [11685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 6, 0, 68), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [11689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 5, 0, 68), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [11693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 5, 0, 68), + [11695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 131), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [11699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 131), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [11703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 68), + [11705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_bound_procedures, 1, 0, 0), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [11725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 2, 0, 15), + [11727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 3, 0, 49), + [11729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 8, 0, 155), + [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 8, 0, 155), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [11741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 100), + [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 100), + [11745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 7, 0, 131), + [11747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 7, 0, 131), + [11749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 15), + [11751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 15), + [11753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 68), + [11755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 68), + [11757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 129), + [11759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 129), + [11761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_bound_procedures, 2, 0, 0), + [11763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 15), + [11765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 6, 0, 15), + [11767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 100), + [11769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_rank, 6, 0, 100), + [11771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_select_case, 7, 0, 131), + [11773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_select_case, 7, 0, 131), + [11775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 68), + [11777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_rank, 7, 0, 68), + [11779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_bound_procedures, 3, 0, 0), + [11781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 129), + [11783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 7, 0, 129), + [11785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_statement, 2, 0, 15), + [11787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_select_case, 8, 0, 155), + [11789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_select_case, 8, 0, 155), + [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [11839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 6, 0, 130), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [11869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_rank, 4, 0, 68), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [11885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_type, 4, 0, 68), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [11889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [11895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_case, 5, 0, 130), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [11899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [11917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 5, 0, 15), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [11921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_type, 5, 0, 130), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [11951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), - [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [11961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 3, 0, 15), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [11983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8408), - [11985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [12009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_case, 3, 0, 15), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [12013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_rank, 4, 0, 15), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_type, 4, 0, 15), - [12051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_rank, 5, 0, 130), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [12063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 68), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), - [12067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_statement, 1, 0, 0), - [12069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [12085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 4, 0, 68), - [12087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 4, 0, 15), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [12097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_case, 4, 0, 68), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [12117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_rank, 3, 0, 15), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [12125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_statement, 2, 0, 0), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [12137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 130), - [12139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concurrent_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8243), - [12142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concurrent_statement_repeat1, 2, 0, 0), - [12144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concurrent_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8243), - [12147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concurrent_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8245), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [12176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 6, 0, 15), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [12186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 130), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [12194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 68), - [12196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_type, 3, 0, 15), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [12202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 68), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [12210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 5, 0, 15), - [12212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 7, 0, 130), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [12230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 6, 0, 130), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [12260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 4, 0, 68), - [12262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 4, 0, 15), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [12266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_case, 4, 0, 15), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [12270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 3, 0, 15), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [12278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7886), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [12284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_statement, 4, 0, 35), - [12286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 5, 0, 90), - [12288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, 0, 49), - [12290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 3, 0, 49), - [12292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, 0, 35), - [12294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_statement, 3, 0, 35), - [12296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_statement, 3, 0, 15), - [12298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 3, 0, 35), - [12300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), - [12302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 3, 0, 15), - [12304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 2, 0, 15), - [12306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_if_statement_repeat1, 2, 0, 0), - [12308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_if_statement_repeat1, 2, 0, 0), - [12310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7849), - [12313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7363), - [12316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__transfer_item, 3, 0, 0), - [12318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__transfer_item, 3, 0, 0), - [12320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, 0, 90), - [12322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hollerith_constant, 1, 0, 0), - [12324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hollerith_constant, 1, 0, 0), - [12326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8332), - [12329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7502), - [12332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2, 0, 0), - [12334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_where_statement_repeat1, 2, 0, 0), - [12336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_where_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7575), - [12339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_where_statement_repeat1, 2, 0, 0), - [12341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_where_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [12346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [12350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7894), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [12360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 6, 0, 162), - [12362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 6, 0, 162), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [11841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 3, 0, 15), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [11891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [11899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8409), + [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [11911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [11927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 4, 0, 68), + [11929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 4, 0, 15), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [11973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 4, 0, 68), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [11977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 4, 0, 15), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [11981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8407), + [11983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [11991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 68), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [11995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 6, 0, 15), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [12033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_statement, 1, 0, 0), + [12035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7939), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 130), + [12051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 68), + [12053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 5, 0, 15), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [12089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 130), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [12095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 68), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [12101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 5, 0, 15), + [12103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 7, 0, 130), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [12117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_case, 3, 0, 15), + [12119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_type, 3, 0, 15), + [12121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_statement, 2, 0, 0), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [12135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_rank, 3, 0, 15), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [12141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 6, 0, 130), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [12191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concurrent_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7939), + [12194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concurrent_statement_repeat1, 2, 0, 0), + [12196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concurrent_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7939), + [12199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concurrent_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7949), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [12240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 6, 0, 130), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [12244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_case, 4, 0, 68), + [12246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_case, 4, 0, 15), + [12248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_type, 4, 0, 68), + [12250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_type, 4, 0, 15), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [12254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_rank, 4, 0, 68), + [12256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_rank, 4, 0, 15), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [12260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_case, 5, 0, 130), + [12262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_type, 5, 0, 130), + [12264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_rank, 5, 0, 130), + [12266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [12274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 3, 0, 15), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [12280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [12286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, 0, 90), + [12288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 2, 0, 15), + [12290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hollerith_constant, 1, 0, 0), + [12292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hollerith_constant, 1, 0, 0), + [12294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 3, 0, 35), + [12296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, 0, 35), + [12298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__transfer_item, 3, 0, 0), + [12300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__transfer_item, 3, 0, 0), + [12302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__transfer_items_repeat1, 2, 0, 0), + [12304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8333), + [12307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8128), + [12310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2, 0, 0), + [12312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 3, 0, 15), + [12314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_statement, 4, 0, 35), + [12316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_statement, 3, 0, 35), + [12318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_statement, 3, 0, 15), + [12320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_if_statement_repeat1, 2, 0, 0), + [12322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_if_statement_repeat1, 2, 0, 0), + [12324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7781), + [12327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7412), + [12330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 3, 0, 49), + [12332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 5, 0, 90), + [12334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, 0, 49), + [12336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [12344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 6, 0, 162), + [12346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 6, 0, 162), + [12348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 6, 0, 163), + [12350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 6, 0, 163), + [12352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_locality, 5, 0, 0), + [12354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_locality, 5, 0, 0), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [12360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 8, 0, 192), + [12362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 8, 0, 192), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), [12366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 4, 0, 0), [12368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 4, 0, 0), - [12370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 9, 0, 201), - [12372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 9, 0, 201), - [12374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_locality, 4, 0, 0), - [12376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_locality, 4, 0, 0), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [12380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_locality, 5, 0, 0), - [12382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_locality, 5, 0, 0), - [12384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 7, 0, 162), - [12386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 7, 0, 162), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [12394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 5, 0, 0), - [12396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 5, 0, 0), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [12402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 6, 0, 163), - [12404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 6, 0, 163), - [12406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 7, 0, 179), - [12408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 7, 0, 179), - [12410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 8, 0, 192), - [12412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 8, 0, 192), - [12414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_locality, 4, 0, 136), - [12416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_locality, 4, 0, 136), - [12418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 4, 0, 97), - [12420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 4, 0, 97), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [12430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_statement, 2, 0, 0), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [12372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_where_statement_repeat1, 2, 0, 0), + [12374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_where_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7920), + [12377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_where_statement_repeat1, 2, 0, 0), + [12379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_where_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [12386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 9, 0, 201), + [12388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 9, 0, 201), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [12392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [12396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 7, 0, 179), + [12398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 7, 0, 179), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [12402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 5, 0, 0), + [12404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 5, 0, 0), + [12406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_locality, 4, 0, 0), + [12408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_locality, 4, 0, 0), + [12410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_locality, 4, 0, 136), + [12412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_locality, 4, 0, 136), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [12416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_header, 7, 0, 162), + [12418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_header, 7, 0, 162), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [12494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 3, 0, 95), - [12496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 3, 0, 95), - [12498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 3, 0, 96), - [12500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 3, 0, 96), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [12504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 3, 0, 66), - [12506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 3, 0, 66), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [12604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namelist_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [12607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namelist_statement_repeat1, 2, 0, 0), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [12641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 93), SHIFT_REPEAT(3596), - [12644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 93), - [12646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 93), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [12698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cuda_kernel_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), - [12701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 2, 0, 61), - [12703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 2, 0, 61), - [12705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_repeat1, 2, 0, 0), - [12707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [12710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_repeat1, 2, 0, 0), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [12714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namelist_statement, 2, 0, 0), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [12722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_included_items, 4, 0, 0), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [12744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_position_statement, 1, 0, 0), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [12758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3765), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [12771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 4, 0, 128), - [12773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 4, 0, 128), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [12779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [12783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_statement, 5, 0, 0), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [12787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), - [12789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 2, 0, 0), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [12793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_modification, 3, 0, 65), - [12795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_modification, 3, 0, 66), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [12799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 7, 0, 103), - [12801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_result, 4, 0, 0), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [12805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_included_items, 5, 0, 0), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [12809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8272), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [12813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 5, 0, 0), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [12819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_modification, 4, 0, 97), - [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [12823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equivalence_statement, 2, 0, 0), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [12827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [12829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_modification_repeat2, 2, 0, 93), SHIFT_REPEAT(3821), - [12832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_modification_repeat2, 2, 0, 93), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [12836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [12840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 2, 0, 16), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [12844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), - [12846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 4, 0, 0), - [12848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 4, 0, 90), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [12852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), - [12854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_modification, 2, 0, 30), - [12856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5546), - [12859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat2, 2, 0, 0), - [12861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 3, 0, 0), - [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [12865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_statement, 2, 0, 0), - [12867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_save_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3972), - [12870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_save_statement_repeat1, 2, 0, 0), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [12874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8386), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), - [12880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_statement, 7, 0, 0), - [12882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_specification_part, 3, 0, 0), - [12884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [12890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [12894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [12898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7613), - [12900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_equivalence_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7345), - [12903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_equivalence_statement_repeat1, 2, 0, 0), - [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [12907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), - [12909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intrinsic_type, 1, 0, 0), SHIFT(2613), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [12914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [12922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [12926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [12930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [12934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [12938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [12942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [12946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [12950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [12954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [12958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [12962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [12966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [12970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [12974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [12978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [12982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [12986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [12990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), - [12992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5, 0, 16), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [12996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [13000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7867), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [13004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [13008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [13012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [13016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [13020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [13024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), - [13026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assumed_size, 1, 0, 0), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [13032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_included_items_repeat1, 2, 0, 0), SHIFT_REPEAT(3394), - [13035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_included_items_repeat1, 2, 0, 0), - [13037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 6, 0, 36), - [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [13041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_private_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3399), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [12516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namelist_statement, 2, 0, 0), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [12552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_position_statement, 1, 0, 0), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [12576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 3, 0, 95), + [12578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 3, 0, 95), + [12580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 4, 0, 128), + [12582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 4, 0, 128), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [12594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 4, 0, 97), + [12596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 4, 0, 97), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [12604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 93), SHIFT_REPEAT(3696), + [12607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 93), + [12609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 93), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [12633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 3, 0, 96), + [12635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 3, 0, 96), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [12647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 3, 0, 66), + [12649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 3, 0, 66), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [12665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_statement, 2, 0, 61), + [12667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_statement, 2, 0, 61), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [12673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_statement, 2, 0, 0), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [12683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namelist_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), + [12686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namelist_statement_repeat1, 2, 0, 0), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [12712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_repeat1, 2, 0, 0), + [12714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), + [12717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_repeat1, 2, 0, 0), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cuda_kernel_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3046), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [12744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_included_items, 4, 0, 0), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [12762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_common_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3756), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [12783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [12787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [12791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [12795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [12799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7740), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [12803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [12807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [12811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [12815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [12823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [12827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7796), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [12831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [12835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [12839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7820), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [12843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [12847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [12851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [12855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [12859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [12863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [12867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [12871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7884), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [12875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7892), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [12879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7900), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [12883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7908), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [12887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7916), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [12891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_modification, 4, 0, 97), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [12895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 7, 0, 103), + [12897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assumed_size, 1, 0, 0), + [12899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_included_items, 5, 0, 0), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [12903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5575), + [12906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat2, 2, 0, 0), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [12910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 4, 0, 0), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [12914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), + [12916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_item_list, 2, 0, 0), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [12920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_statement, 7, 0, 0), + [12922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 61), + [12924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 61), + [12926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_specification_part, 2, 0, 0), + [12928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [12934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), + [12936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_statement, 5, 0, 0), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [12948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7950), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [12952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [12958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 2, 0, 0), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [12962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_statement, 3, 0, 0), + [12964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_specification_part, 4, 0, 0), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [12968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), + [12970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_statement, 2, 0, 0), + [12972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_modification, 2, 0, 30), + [12974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cuda_kernel_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [12977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 93), SHIFT_REPEAT(3464), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [12982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), + [12984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_item_list, 2, 0, 0), + [12986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2854), + [12989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_statement_repeat1, 2, 0, 0), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [12993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), + [12995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4142), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [13000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [13004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8093), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [13008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [13010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 4, 0, 16), + [13012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intrinsic_type, 1, 0, 0), SHIFT(2621), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [13017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [13019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_save_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3914), + [13022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_save_statement_repeat1, 2, 0, 0), + [13024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat2, 2, 0, 93), SHIFT_REPEAT(3357), + [13027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat2, 2, 0, 93), + [13029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_specification_part, 3, 0, 0), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [13033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5, 0, 103), + [13035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [13039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), + [13041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_private_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3434), [13044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_private_statement_repeat1, 2, 0, 0), - [13046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 8, 0, 103), - [13048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equivalence_statement, 3, 0, 0), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), - [13054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [13057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2, 0, 0), - [13059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 3, 0, 35), - [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [13063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), - [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [13069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4033), - [13072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_statement, 3, 0, 0), - [13074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cuda_kernel_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2909), - [13077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 2, 0, 0), - [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [13081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 3, 0, 36), - [13083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), - [13086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_statement_repeat1, 2, 0, 0), - [13088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_specification_part, 2, 0, 0), - [13090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 61), - [13092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_statement_repeat1, 2, 0, 61), - [13094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_targets_repeat1, 2, 0, 93), SHIFT_REPEAT(3553), - [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [13099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), - [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [13107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 6, 0, 0), - [13109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat2, 2, 0, 93), SHIFT_REPEAT(3355), - [13112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat2, 2, 0, 93), - [13114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 4, 0, 16), - [13116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 3, 0, 6), - [13118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_name, 1, 0, 48), - [13120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_name, 1, 0, 0), - [13122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_item_list, 2, 0, 0), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [13126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), - [13128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_specification_part, 4, 0, 0), - [13130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_item_list, 2, 0, 0), - [13132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [13134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [13140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_statement, 6, 0, 0), - [13142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [13146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8019), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [13150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5, 0, 103), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [13154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5, 0, 36), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [13158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), - [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [13174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [13188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [13196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_statement, 2, 0, 0), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [13222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [13224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_value_range_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [13227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [13245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), - [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [13271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [13279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [13285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equivalence_set, 5, 0, 0), - [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [13299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [13305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), - [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [13333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [13357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [13385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3213), - [13388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [13392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cuda_kernel_argument_list, 4, 0, 0), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [13416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [13420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [13432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [13435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [13441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, 0, 0), - [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [13459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 4, 0, 0), - [13461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_io_procedure, 4, 0, 0), - [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [13473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_value, 6, 0, 178), - [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [13483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [13487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__io_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(3906), - [13490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__io_arguments_repeat1, 2, 0, 0), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [13494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assumed_shape, 1, 0, 0), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [13514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_set, 3, 0, 0), - [13516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_set_repeat1, 2, 0, 0), SHIFT_REPEAT(3028), - [13519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_procedure_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(6246), - [13522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_procedure_attributes_repeat1, 2, 0, 0), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [13532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_statement, 3, 0, 0), - [13534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_statement, 3, 0, 0), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [13542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [13566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(5582), - [13569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_statement_repeat1, 2, 0, 105), - [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), - [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [13629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [13643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), - [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [13658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [13668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2649), - [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [13677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), - [13689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3917), - [13692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_statement_repeat1, 2, 0, 0), - [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [13702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat2, 5, 0, 0), - [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [13714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [13722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cuda_kernel_argument_list, 3, 0, 0), - [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [13736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_keyword_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6364), - [13739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keyword_statement_repeat1, 2, 0, 0), - [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [13745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_value, 3, 0, 0), - [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), - [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [13755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [13767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_value, 4, 0, 134), - [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [13771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_name, 1, 0, 17), - [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [13795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_value_repeat1, 2, 0, 135), SHIFT_REPEAT(3061), - [13798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_value_repeat1, 2, 0, 135), - [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [13806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat2, 2, 0, 0), SHIFT_REPEAT(8234), - [13809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat2, 2, 0, 0), - [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [13837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [13847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [13905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [13911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [13915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equivalence_set, 6, 0, 0), - [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [13923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [13931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [13935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__forall_control_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3962), - [13938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__forall_control_expression_repeat1, 2, 0, 0), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [13966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_equivalence_set_repeat1, 2, 0, 0), SHIFT_REPEAT(2927), - [13969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [13977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [13981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [13987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_value, 5, 0, 161), - [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [13993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_save_statement_repeat1, 4, 0, 0), - [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [13999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [14007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [14009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [14023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concurrent_header_repeat1, 2, 0, 0), SHIFT_REPEAT(3901), - [14026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concurrent_header_repeat1, 2, 0, 0), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), - [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [14058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat2, 6, 0, 0), - [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [14076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_range, 1, 0, 0), - [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [14110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_identifier, 1, 0, 0), - [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [14134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_associate_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), - [14137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_associate_statement_repeat1, 2, 0, 0), - [14139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), - [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [14170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [14182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [14194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_allocate_statement_repeat1, 2, 0, 120), SHIFT_REPEAT(2716), - [14197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_allocate_statement_repeat1, 2, 0, 120), - [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [14209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_read_statement, 2, 0, 0), - [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [14303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [14311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), - [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), - [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [14363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_alias, 3, 0, 132), - [14365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), - [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), - [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), - [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [14421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(7357), - [14424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat3, 2, 0, 0), - [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [14456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_set, 2, 0, 0), - [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [14480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat2, 2, 0, 30), - [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [14494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [14500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_declarator, 3, 0, 0), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), - [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), - [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [14572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), - [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [14576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_value_range_list, 2, 0, 0), - [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [14594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7361), - [14597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat1, 2, 0, 0), - [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [14623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_modification_repeat2, 2, 0, 30), - [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [14627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 4, 0, 49), - [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [14631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), - [14633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 10, 0, 0), - [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [14637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), - [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [14641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 6, 0, 83), - [14643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 6, 0, 116), - [14645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_select_statement, 3, 0, 144), - [14647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [14649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [14651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 9, 0, 0), - [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [14659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8254), - [14661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 5, 0, 0), - [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [14665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), - [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), - [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [14671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8114), - [14673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_statement, 4, 0, 0), - [14675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 1, 0, 0), - [14677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_select_statement, 2, 0, 114), - [14679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associate_statement, 6, 0, 0), - [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [14683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), - [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [14689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_label_statement, 3, 0, 58), - [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [14693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), - [14695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 6, 0, 0), - [14697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_forall_statement, 2, 0, 0), - [14699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_loop_statement, 3, 0, 78), - [14701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_where_statement, 4, 0, 0), - [14703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 6, 0, 0), - [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [14707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), - [14709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 10, 0, 165), - [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [14715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), - [14717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 5, 0, 0), - [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [14721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), - [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [14725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_where_statement, 2, 0, 80), - [14727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_where_statement, 5, 0, 0), - [14729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_construct, 3, 0, 0), - [14731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_position_statement, 2, 0, 0), - [14733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 7, 0, 0), - [14735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_enum_statement, 1, 0, 28), - [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [14741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), - [14743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_statement, 1, 0, 0), - [14745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 6, 0, 115), - [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [14749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_read_statement, 3, 0, 0), - [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [14753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8076), - [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [14757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_call, 4, 0, 20), - [14759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector, 3, 0, 0), - [14761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 5, 0, 0), - [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [14765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8214), - [14767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_statement, 3, 0, 0), - [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [14771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), - [14773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__file_position_spec, 5, 0, 0), - [14775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall_statement, 1, 0, 0), - [14777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 3, 0, 15), - [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [14781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), - [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [14785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), - [14787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_statement, 1, 0, 0), - [14789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_forall_statement, 2, 0, 59), - [14791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 6, 0, 153), - [14793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 6, 0, 154), - [14795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 5, 0, 115), - [14797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_team_statement, 6, 0, 0), - [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [14801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), - [14803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_construct, 6, 0, 0), - [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [14807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), - [14809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 6, 0, 0), - [14811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 5, 0, 116), - [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [14817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block_construct_statement, 3, 0, 81), - [14819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_forall_statement, 3, 0, 0), - [14821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_critical_statement, 6, 0, 0), - [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [14825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), - [14827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_associate_statement, 3, 0, 164), - [14829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 9, 0, 146), - [14831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 9, 0, 165), - [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [14835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7519), - [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [14841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associate_statement, 8, 0, 0), - [14843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_construct, 5, 0, 0), - [14845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_forall_statement, 6, 0, 0), - [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [14849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), - [14851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 7, 0, 0), - [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [14855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), - [14857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 11, 0, 0), - [14859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_enum_statement, 2, 0, 60), - [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), - [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [14867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), - [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [14871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), - [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [14875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), - [14877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 6, 0, 103), - [14879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 5, 0, 0), - [14881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__file_position_spec, 4, 0, 0), - [14883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 8, 0, 146), - [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [14887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7611), - [14889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_forall_statement, 4, 0, 0), - [14891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 3, 0, 16), - [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [14895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), - [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [14903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), - [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [14907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), - [14909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 6, 0, 0), - [14911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if_statement, 3, 0, 137), - [14913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 5, 0, 119), - [14915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [14917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [14919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_critical_statement, 3, 0, 0), - [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [14923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [14927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), - [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [14931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), - [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [14935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), - [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [14939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), - [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [14947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), - [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [14951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), - [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [14955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), - [14957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inquire_statement, 3, 0, 0), - [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [14961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), - [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [14965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), - [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [14969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), - [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [14973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), - [14975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 8, 0, 0), - [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [14979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), - [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [14983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7746), - [14985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_associate_statement, 2, 0, 145), - [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [14989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), - [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [14993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [14997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), - [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [15001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), - [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [15005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), - [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [15009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [15013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), - [15015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 6, 0, 142), - [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [15019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), - [15021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [15023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), - [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [15027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), - [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [15031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), - [15033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [15035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), - [15037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [15039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), - [15041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [15043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), - [15045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [15047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), - [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [15053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7805), - [15055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [15057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), - [15059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associate_statement, 7, 0, 0), - [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [15063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), - [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [15067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7818), - [15069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 2, 0, 0), - [15071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), - [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [15075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), - [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [15079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), - [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [15083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), - [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [15087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7834), - [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [15091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7880), - [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [15095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), - [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [15099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), - [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [15105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), - [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [15109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7850), - [15111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 8, 0, 119), - [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [15115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), - [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [15119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7858), - [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [15123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7861), - [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [15127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), - [15129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_if_statement, 7, 0, 0), - [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [15133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7869), - [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [15137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), - [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [15141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7877), - [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [15145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), - [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [15149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7885), - [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [15153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7890), - [15155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 6, 0, 141), - [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [15159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), - [15161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [15163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7898), - [15165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), - [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [15169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7901), - [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [15173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7906), - [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [15177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), - [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [15181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), - [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [15185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), - [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [15189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7917), - [15191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 7, 0, 0), - [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [15197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__file_position_spec, 6, 0, 0), - [15199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 3, 0, 0), - [15201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_team_statement, 5, 0, 0), - [15203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_critical_statement, 5, 0, 0), - [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [15207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), - [15209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_critical_statement, 3, 0, 84), - [15211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block_construct_statement, 2, 0, 42), - [15213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_construct, 4, 0, 0), - [15215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if_statement, 2, 0, 112), - [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [15233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 4, 0, 147), - [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [15237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), - [15239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_specifier, 1, 0, 0), - [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [15243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_label_statement, 2, 0, 27), - [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [15249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 7, 0, 165), - [15251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [15253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [15255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 4, 0, 0), - [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [15261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 3, 0, 0), - [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [15273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_statement_repeat1, 2, 0, 104), - [15275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_statement, 4, 0, 82), - [15277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 0), - [15279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 4, 0, 0), - [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [15283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), - [15285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__file_position_spec, 3, 0, 0), - [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [15289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), - [15291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_label_statement, 4, 0, 0), - [15293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 4, 0, 83), - [15295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 7, 0, 140), - [15297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 7, 0, 141), - [15299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 7, 0, 142), - [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [15305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 7, 0, 83), - [15307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 7, 0, 119), - [15309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_range, 3, 0, 0), - [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [15313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), - [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), - [15319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 8, 0, 0), - [15321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_where_statement, 7, 0, 0), - [15323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__derived_type_qualifier, 1, 0, 37), - [15325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__derived_type_qualifier, 1, 0, 38), - [15327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 8, 0, 171), - [15329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 7, 0, 171), - [15331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 7, 0, 172), - [15333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 7, 0, 173), - [15335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 0), - [15337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 7, 0, 153), - [15339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 7, 0, 154), - [15341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_where_statement, 3, 0, 113), - [15343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 8, 0, 172), - [15345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_team_statement, 7, 0, 0), - [15347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 8, 0, 173), - [15349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_label_statement, 3, 0, 0), - [15351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure_statement, 4, 0, 150), - [15353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_critical_statement, 4, 0, 0), - [15355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 6, 0, 146), - [15357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_critical_statement, 2, 0, 44), - [15359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 3, 0, 0), - [15361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_read_statement, 4, 0, 0), - [15363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 4, 0, 0), - [15365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 5, 0, 90), - [15367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 4, 0, 35), - [15369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 3, 0, 121), - [15371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_if_statement, 3, 0, 0), - [15373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure_statement, 3, 0, 71), - [15375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_where_statement, 3, 0, 0), - [15377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_where_statement, 6, 0, 0), - [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [15381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associate_statement, 9, 0, 0), - [15383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_loop_statement, 2, 0, 41), - [15385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type_specifier, 4, 0, 0), - [15387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_label, 1, 0, 79), - [15389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 4, 0, 36), - [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [15395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8397), - [15397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_statement, 5, 0, 0), - [15399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 6, 0, 140), - [15401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat2, 3, 0, 0), - [15403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_forall_statement, 3, 0, 94), - [15405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_forall_statement, 5, 0, 0), - [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), - [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [15433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_rank, 3, 0, 0), - [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [15463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_internal_procedures, 4, 0, 99), - [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [15479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_type, 5, 0, 131), - [15481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_procedure_statements, 2, 0, 0), - [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [15505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 4, 0, 100), - [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [15523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 4, 0, 99), - [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [15545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_rank, 5, 0, 129), - [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [15553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_rank, 5, 0, 131), - [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [15567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 7, 0, 191), - [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [15579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_type, 4, 0, 100), - [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [15601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_case, 6, 0, 175), - [15603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_type, 6, 0, 175), - [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [15611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_rank, 6, 0, 175), - [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [15621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_statements, 3, 0, 0), - [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [15629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_module, 3, 0, 0), - [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [15679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 4, 0, 100), - [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [15691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 6, 0, 175), - [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [15695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 4, 0, 100), - [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [15699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 4, 0, 100), - [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [15715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 3, 0, 69), - [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [15725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 6, 0, 155), - [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [15739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 6, 0, 157), - [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [15757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 6, 0, 175), - [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), - [15775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_module, 4, 0, 0), - [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [15807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_rank, 4, 0, 100), - [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), - [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [15869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_case, 2, 0, 0), - [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [15875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 4, 0, 99), - [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [15897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 4, 0, 100), - [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [15931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_case, 3, 0, 0), - [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [15989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), - [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [16017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 4, 0, 99), - [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [16027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 4, 0, 100), - [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [16047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 5, 0, 156), - [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [16055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 3, 0, 69), - [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [16125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 3, 0, 69), - [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [16141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 7, 0, 191), - [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [16163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_type, 3, 0, 0), - [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [16205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 5, 0, 129), - [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [16231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 6, 0, 175), - [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [16243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 5, 0, 131), - [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [16249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 6, 0, 155), - [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [16253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 6, 0, 157), - [16255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 3, 0, 69), - [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [16263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_statements, 2, 0, 0), - [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [16275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 5, 0, 129), - [16277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_procedure_statements, 3, 0, 0), - [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [16301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), - [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [16307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 5, 0, 131), - [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [16325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 156), - [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), - [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [16335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 69), - [16337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 3, 0, 69), - [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [16343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 4, 0, 99), - [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), - [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [16359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 3, 0, 69), - [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [16371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 7, 0, 174), - [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), - [16381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_module, 2, 0, 0), - [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [16395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 4, 0, 100), - [16397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 129), - [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [16413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 7, 0, 176), - [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [16421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 5, 0, 131), - [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [16469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 156), - [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [16527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 4, 0, 99), - [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), - [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [16561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_procedure_statements, 4, 0, 0), - [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [16567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 3, 0, 69), - [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [16577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_specification_part, 5, 0, 0), - [16579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 156), - [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [16583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 156), - [16585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 4, 0, 100), - [16587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 156), - [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), - [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [16651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 129), - [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [16671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_type, 2, 0, 0), - [16673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 5, 0, 131), - [16675] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [16679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 4, 0, 99), - [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [16689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_rank, 2, 0, 0), - [16691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 99), - [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), - [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [16731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_internal_procedures, 5, 0, 156), - [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [16763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlimited_polymorphic, 1, 0, 0), - [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [16767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_internal_procedures, 5, 0, 129), - [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [16785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 5, 0, 131), - [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [16817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [16819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 3, 0, 69), - [16821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_function_arg_list, 4, 0, 0), - [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [16829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [16849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_statements, 4, 0, 0), - [16851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 6, 0, 175), - [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [16857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_internal_procedures, 6, 0, 175), - [16859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [16869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [16875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_function_arg_list, 3, 0, 0), - [16877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [16883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [16893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [16895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [16903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [16913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [16915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [16917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 5, 0, 156), - [16919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [16921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [16923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [16925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [16929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [16933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [16935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 5, 0, 129), - [16937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 5, 0, 131), - [16939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [16941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [16943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [16945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [16947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 129), - [16949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 129), - [16951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 129), - [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [16955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [16961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_case, 4, 0, 100), - [16963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 100), - [16965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [16985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 175), - [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [16989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 6, 0, 175), - [16991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 6, 0, 175), - [16993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [16999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [17001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), - [17003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [17005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [17007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [17009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [17011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [17015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [17021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 7, 0, 191), - [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), - [17025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), - [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [17033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [17037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [17039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 6, 0, 175), - [17041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 155), - [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [17049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [17053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 6, 0, 155), - [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [17057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 6, 0, 157), - [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [17065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [17077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [17081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 4, 0, 99), - [17083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 5, 0, 131), - [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [17089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 6, 0, 157), - [17091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 5, 0, 131), - [17093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [17095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 5, 0, 131), - [17097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [17099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 7, 0, 191), - [17101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [17103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_case, 5, 0, 129), - [17105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_case, 5, 0, 131), - [17107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [17109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [17113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [17115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [17117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [17121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 8, 0, 200), - [17123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_type, 5, 0, 129), - [17125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [17133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [17137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 5, 0, 156), - [17139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [17141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [17143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [17145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [17147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [13048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), + [13050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 3, 0, 6), + [13052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_result, 4, 0, 0), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [13056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8390), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [13062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 6, 0, 36), + [13064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 3, 0, 0), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [13068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [13071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2, 0, 0), + [13073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_modification, 3, 0, 65), + [13075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [13077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_statement, 6, 0, 0), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [13083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5, 0, 36), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [13087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equivalence_statement, 3, 0, 0), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [13091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 3, 0, 36), + [13093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 6, 0, 0), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [13097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), + [13099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ac_value_list, 2, 0, 0), + [13101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equivalence_statement, 2, 0, 0), + [13103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_save_statement, 5, 0, 0), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [13107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7471), + [13109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5, 0, 16), + [13111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_modification, 3, 0, 66), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [13115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_modification_repeat2, 2, 0, 93), SHIFT_REPEAT(3845), + [13118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_modification_repeat2, 2, 0, 93), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [13126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_name, 1, 0, 48), + [13128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_name, 1, 0, 0), + [13130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 3, 0, 35), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [13134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 2, 0, 16), + [13136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 8, 0, 103), + [13138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_included_items_repeat1, 2, 0, 0), + [13140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_included_items_repeat1, 2, 0, 0), SHIFT_REPEAT(3392), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [13145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), + [13147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_equivalence_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7081), + [13150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_equivalence_statement_repeat1, 2, 0, 0), + [13152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 4, 0, 90), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [13156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), + [13162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [13176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [13192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [13200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_value_range_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2702), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [13207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, 0, 0), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [13211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [13219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 4, 0, 0), + [13221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [13225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [13233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [13243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_allocate_statement_repeat1, 2, 0, 120), SHIFT_REPEAT(2735), + [13246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_allocate_statement_repeat1, 2, 0, 120), + [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [13260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [13262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_io_procedure, 4, 0, 0), + [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [13292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [13322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [13328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__io_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), + [13331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__io_arguments_repeat1, 2, 0, 0), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [13345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assumed_shape, 1, 0, 0), + [13347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_modification_repeat2, 2, 0, 30), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [13357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [13365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [13411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_value_range_list, 2, 0, 0), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [13415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_name, 1, 0, 17), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [13423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [13457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [13461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [13477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_range, 1, 0, 0), + [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [13491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_procedure_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(6191), + [13494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_procedure_attributes_repeat1, 2, 0, 0), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [13548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_procedure_statement_repeat2, 2, 0, 30), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [13572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_declarator, 3, 0, 0), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [13612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [13622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [13636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_derived_type_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(5599), + [13639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_statement_repeat1, 2, 0, 105), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [13651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [13661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_identifier, 1, 0, 0), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [13665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [13707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [13713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [13739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), + [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [13748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_set, 2, 0, 0), + [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [13760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [13774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [13830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2648), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [13851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [13854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_statement_repeat1, 2, 0, 0), + [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [13864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [13876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [13880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cuda_kernel_argument_list, 3, 0, 0), + [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [13924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_keyword_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6620), + [13927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keyword_statement_repeat1, 2, 0, 0), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [13937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_value, 3, 0, 0), + [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [13989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_set, 3, 0, 0), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [14013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_set_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [14022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [14048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [14068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), + [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [14108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [14116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_statement, 2, 0, 0), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [14130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [14140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [14154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__forall_control_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3925), + [14157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__forall_control_expression_repeat1, 2, 0, 0), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [14195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_read_statement, 2, 0, 0), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [14215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [14227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [14243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat2, 5, 0, 0), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [14249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [14255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [14260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(3931), + [14263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [14293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3993), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [14302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [14310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat2, 6, 0, 0), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [14342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_statement, 3, 0, 0), + [14344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_statement, 3, 0, 0), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [14394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [14420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [14432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_alias, 3, 0, 132), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [14440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(7194), + [14443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat3, 2, 0, 0), + [14445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), + [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [14457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_value, 6, 0, 178), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [14463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [14467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7213), + [14470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_statement_repeat1, 2, 0, 0), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [14480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [14488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat2, 2, 0, 0), SHIFT_REPEAT(8240), + [14491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat2, 2, 0, 0), + [14493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_save_statement_repeat1, 4, 0, 0), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [14505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equivalence_set, 5, 0, 0), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [14509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cuda_kernel_argument_list, 4, 0, 0), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [14513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_value, 4, 0, 134), + [14515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_value_repeat1, 2, 0, 135), SHIFT_REPEAT(2958), + [14518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_value_repeat1, 2, 0, 135), + [14520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equivalence_set, 6, 0, 0), + [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [14530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concurrent_header_repeat1, 2, 0, 0), SHIFT_REPEAT(3942), + [14533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concurrent_header_repeat1, 2, 0, 0), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [14543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_equivalence_set_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [14556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_value, 5, 0, 161), + [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [14584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_associate_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3936), + [14587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_associate_statement_repeat1, 2, 0, 0), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [14635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [14639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_loop_statement, 3, 0, 78), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [14643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_read_statement, 3, 0, 0), + [14645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 5, 0, 0), + [14647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 7, 0, 0), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [14653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), + [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [14661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_where_statement, 2, 0, 80), + [14663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_statement, 1, 0, 0), + [14665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 8, 0, 0), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [14669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), + [14671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 5, 0, 90), + [14673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 6, 0, 153), + [14675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_where_statement, 5, 0, 0), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [14679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), + [14681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 8, 0, 171), + [14683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 8, 0, 172), + [14685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 8, 0, 173), + [14687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 6, 0, 154), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [14691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [14697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_construct, 6, 0, 0), + [14699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 3, 0, 0), + [14701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 7, 0, 0), + [14703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure_statement, 3, 0, 71), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [14707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if_statement, 3, 0, 137), + [14709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_critical_statement, 6, 0, 0), + [14711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_forall_statement, 6, 0, 0), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [14715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), + [14717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 9, 0, 0), + [14719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_where_statement, 7, 0, 0), + [14721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 7, 0, 171), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [14725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 7, 0, 172), + [14727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 7, 0, 173), + [14729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 7, 0, 153), + [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [14733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 7, 0, 154), + [14735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_team_statement, 7, 0, 0), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [14739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), + [14741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_if_statement, 7, 0, 0), + [14743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 1, 0, 0), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [14747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [14751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [14753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_label_statement, 3, 0, 58), + [14755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 0), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [14761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 7, 0, 140), + [14763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_label_statement, 3, 0, 0), + [14765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_statement, 4, 0, 0), + [14767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 7, 0, 141), + [14769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 7, 0, 142), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [14773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8046), + [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [14777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), + [14779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_call, 4, 0, 20), + [14781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 5, 0, 0), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [14785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), + [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [14789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), + [14791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_select_statement, 3, 0, 144), + [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [14803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8281), + [14805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 9, 0, 146), + [14807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 9, 0, 165), + [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [14811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), + [14813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_procedure_statement, 4, 0, 150), + [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [14817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 5, 0, 115), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [14821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7613), + [14823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_forall_statement, 3, 0, 94), + [14825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_team_statement, 6, 0, 0), + [14827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_forall_statement, 5, 0, 0), + [14829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_forall_statement, 3, 0, 0), + [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [14833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7466), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [14837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [14839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [14841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [14845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_enum_statement, 2, 0, 60), + [14847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 3, 0, 0), + [14849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_coarray_index_repeat2, 3, 0, 0), + [14851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 5, 0, 116), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [14855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7508), + [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [14861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), + [14863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block_construct_statement, 3, 0, 81), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [14867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), + [14869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_construct, 5, 0, 0), + [14871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_associate_statement, 2, 0, 145), + [14873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associate_statement, 7, 0, 0), + [14875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 7, 0, 0), + [14877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 4, 0, 0), + [14879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__file_position_spec, 6, 0, 0), + [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [14883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [14887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), + [14889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 8, 0, 0), + [14891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_label_statement, 4, 0, 0), + [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [14895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), + [14897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_if_statement, 3, 0, 0), + [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [14901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7580), + [14903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 7, 0, 165), + [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [14907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), + [14909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_loop_statement, 2, 0, 41), + [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [14913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [14915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 7, 0, 83), + [14917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 7, 0, 119), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [14921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [14923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_label, 1, 0, 79), + [14925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_where_statement, 3, 0, 0), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [14929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), + [14931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 5, 0, 0), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [14935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), + [14937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__file_position_spec, 4, 0, 0), + [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [14941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [14945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [14949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [14953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [14957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [14961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), + [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [14965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [14969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [14973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [14977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [14981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [14985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [14989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [14991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 3, 0, 121), + [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [14995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [14999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [15003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7758), + [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [15007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), + [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [15011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [15015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), + [15017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_derived_type_statement_repeat1, 2, 0, 104), + [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [15021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), + [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [15025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [15029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [15033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), + [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [15037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), + [15039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [15041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), + [15043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_statement, 1, 0, 0), + [15045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [15047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), + [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [15051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), + [15053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [15055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), + [15057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [15059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), + [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [15063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), + [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [15067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), + [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [15071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7822), + [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [15075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [15077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 3, 0, 15), + [15079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [15081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), + [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [15085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [15087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [15089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), + [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [15093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), + [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [15097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), + [15099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_read_statement, 4, 0, 0), + [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [15103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [15107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [15111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7862), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [15115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7867), + [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [15119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), + [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [15123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), + [15125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 5, 0, 119), + [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [15129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), + [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [15133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), + [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [15139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7886), + [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [15143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), + [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [15147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7894), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [15151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), + [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [15155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), + [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [15159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7902), + [15161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [15163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), + [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [15167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), + [15169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [15171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), + [15173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 4, 0, 0), + [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [15177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), + [15179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associate_statement, 9, 0, 0), + [15181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_where_statement, 4, 0, 0), + [15183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 10, 0, 0), + [15185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [15187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [15191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [15203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector, 3, 0, 0), + [15205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_construct, 3, 0, 0), + [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [15211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 10, 0, 165), + [15213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall_statement, 1, 0, 0), + [15215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 4, 0, 35), + [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [15221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_team_statement, 5, 0, 0), + [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [15231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_critical_statement, 5, 0, 0), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [15237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_critical_statement, 3, 0, 84), + [15239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 3, 0, 0), + [15241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_associate_statement, 3, 0, 164), + [15243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block_construct_statement, 2, 0, 42), + [15245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_construct, 4, 0, 0), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [15249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associate_statement, 8, 0, 0), + [15251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 11, 0, 0), + [15253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 8, 0, 146), + [15255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inquire_statement, 3, 0, 0), + [15257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 8, 0, 119), + [15259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_statement, 4, 0, 82), + [15261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 0), + [15263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 4, 0, 0), + [15265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__file_position_spec, 3, 0, 0), + [15267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_team_statement, 4, 0, 147), + [15269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 4, 0, 83), + [15271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_position_statement, 2, 0, 0), + [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [15279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [15281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_critical_statement, 4, 0, 0), + [15283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 6, 0, 103), + [15285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_statement, 5, 0, 0), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [15289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), + [15291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_range, 3, 0, 0), + [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [15295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 3, 0, 16), + [15297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_forall_statement, 2, 0, 59), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [15303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_forall_statement, 4, 0, 0), + [15305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type_specifier, 4, 0, 0), + [15307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_coarray_critical_statement, 2, 0, 44), + [15309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_do_label_statement, 2, 0, 27), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [15315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), + [15317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 4, 0, 36), + [15319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_forall_statement, 2, 0, 0), + [15321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_statement, 3, 0, 0), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [15325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8319), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [15329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 6, 0, 0), + [15331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), + [15333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coarray_critical_statement, 3, 0, 0), + [15335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_enum_statement, 1, 0, 28), + [15337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_if_statement, 6, 0, 0), + [15339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if_statement, 2, 0, 112), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [15343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_where_statement, 3, 0, 113), + [15345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_statement, 2, 0, 0), + [15347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_where_statement, 6, 0, 0), + [15349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_specifier, 1, 0, 0), + [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [15353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7890), + [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [15359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 6, 0, 140), + [15361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 6, 0, 141), + [15363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 6, 0, 142), + [15365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine_statement, 4, 0, 49), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [15369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_loop_statement, 5, 0, 0), + [15371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_select_statement, 2, 0, 114), + [15373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_case_statement, 6, 0, 0), + [15375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__derived_type_qualifier, 1, 0, 37), + [15377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__derived_type_qualifier, 1, 0, 38), + [15379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_type_statement, 6, 0, 115), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [15383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8397), + [15385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_rank_statement, 6, 0, 116), + [15387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [15389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [15391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associate_statement, 6, 0, 0), + [15393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 6, 0, 0), + [15395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__file_position_spec, 5, 0, 0), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [15399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), + [15401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 6, 0, 146), + [15403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocate_statement, 6, 0, 83), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [15411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7846), + [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [15429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 3, 0, 69), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [15439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 4, 0, 100), + [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [15443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 3, 0, 69), + [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [15543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 156), + [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [15557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 5, 0, 129), + [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [15569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 5, 0, 131), + [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [15579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 69), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [15607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 3, 0, 69), + [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [15631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_procedure_statements, 4, 0, 0), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [15639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_module, 3, 0, 0), + [15641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 3, 0, 69), + [15643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_function_arg_list, 3, 0, 0), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [15657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_function_arg_list, 4, 0, 0), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [15693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_statements, 2, 0, 0), + [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [15705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 7, 0, 191), + [15707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_specification_part, 5, 0, 0), + [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [15719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 7, 0, 191), + [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [15729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_internal_procedures, 5, 0, 156), + [15731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 7, 0, 174), + [15733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 7, 0, 176), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [15741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_internal_procedures, 5, 0, 129), + [15743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 5, 0, 131), + [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [15753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 156), + [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [15781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 6, 0, 175), + [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [15789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 156), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [15801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 5, 0, 156), + [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [15807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 5, 0, 129), + [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [15815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 5, 0, 131), + [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [15827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlimited_polymorphic, 1, 0, 0), + [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [15855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_case, 2, 0, 0), + [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [15999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 5, 0, 156), + [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [16033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 5, 0, 129), + [16035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 156), + [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [16045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 5, 0, 131), + [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [16063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 3, 0, 69), + [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [16073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_statements, 3, 0, 0), + [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [16077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_module, 4, 0, 0), + [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [16101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 4, 0, 99), + [16103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_derived_type, 4, 0, 99), + [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [16113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_statements, 4, 0, 0), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [16123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_internal_procedures, 4, 0, 99), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [16143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 4, 0, 100), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [16159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_type, 2, 0, 0), + [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [16165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_case, 3, 0, 0), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [16213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_derived_type, 4, 0, 100), + [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [16239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 4, 0, 99), + [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [16279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 5, 0, 129), + [16281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 8, 0, 200), + [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [16287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 5, 0, 129), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [16295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 129), + [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [16313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_bound_procedures, 4, 0, 100), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [16319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [16321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_type, 3, 0, 0), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [16333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_case, 4, 0, 100), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [16337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 4, 0, 99), + [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [16343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 4, 0, 100), + [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [16349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_type, 4, 0, 100), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [16405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_rank, 4, 0, 100), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [16419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 7, 0, 191), + [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [16425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 5, 0, 131), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [16435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 99), + [16437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 5, 0, 131), + [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [16441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 6, 0, 175), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [16445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 4, 0, 99), + [16447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 6, 0, 155), + [16449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 6, 0, 157), + [16451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 4, 0, 99), + [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [16465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 100), + [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [16469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 4, 0, 100), + [16471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 4, 0, 100), + [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [16475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_rank, 2, 0, 0), + [16477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_internal_procedures, 6, 0, 175), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [16481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_bound_procedures, 6, 0, 175), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [16497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_case, 5, 0, 129), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [16501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_case, 5, 0, 131), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [16525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_type, 5, 0, 129), + [16527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_type, 5, 0, 131), + [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [16541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_rank, 5, 0, 129), + [16543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_select_rank, 5, 0, 131), + [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [16561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 7, 0, 191), + [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [16571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_case, 6, 0, 175), + [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [16575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_type, 6, 0, 175), + [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [16579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_select_rank, 6, 0, 175), + [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [16599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 5, 0, 131), + [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [16685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 156), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [16695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 5, 0, 129), + [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [16701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 5, 0, 131), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [16705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 3, 0, 69), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [16731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 3, 0, 69), + [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [16767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 5, 0, 156), + [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [16773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 5, 0, 129), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [16779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_interface, 5, 0, 131), + [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [16787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_select_rank, 3, 0, 0), + [16789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 175), + [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [16813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 6, 0, 175), + [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [16817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [16819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [16821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [16827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_procedure_statements, 2, 0, 0), + [16829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [16841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_module, 2, 0, 0), + [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [16851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 6, 0, 175), + [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [16859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [16869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [16877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [16883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [16893] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [16895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_specification_part, 6, 0, 155), + [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [16903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [16913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [16915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_statements, 6, 0, 155), + [16917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [16919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [16921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [16923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [16925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [16929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [16933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_procedure_statements, 4, 0, 99), + [16935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [16937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_specification_part, 6, 0, 157), + [16939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [16941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [16943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [16945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [16947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_procedure_statements, 4, 0, 100), + [16949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [16951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [16955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [16961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [16963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [16965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [16969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_statements, 6, 0, 157), + [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [16985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [16989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [16993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [16999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [17001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [17003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [17005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [17007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [17009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [17011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [17015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [17021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [17025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [17033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [17037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_procedure_statements, 3, 0, 0), + [17039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [17049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [17053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [17057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [17065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [17077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [17079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_internal_procedures, 3, 0, 69), + [17081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [17089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 6, 0, 175), + [17091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [17093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [17095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [17097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [17099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [17101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [17105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [17107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [17109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_module, 6, 0, 155), + [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [17113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [17115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_module, 6, 0, 157), + [17117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [17121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [17125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [17133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [17137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [17139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [17141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [17143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [17145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [17147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), [17149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [17151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [17153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [17155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [17157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), - [17159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [17161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), - [17163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [17165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [17151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [17153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [17155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [17157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [17159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [17161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [17163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), + [17165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_interface, 6, 0, 175), + [17167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/constructs.txt b/test/corpus/constructs.txt index 89cb8d0..bf49e85 100644 --- a/test/corpus/constructs.txt +++ b/test/corpus/constructs.txt @@ -80,8 +80,10 @@ end module (interface_statement (name)) (procedure_statement + (procedure_kind) (method_name)) (procedure_statement + (procedure_kind) (method_name)) (end_interface_statement)) (variable_declaration @@ -325,8 +327,10 @@ end interface (interface_statement (name)) (procedure_statement + (procedure_kind) (method_name)) (procedure_statement + (procedure_kind) (method_name)) (end_interface_statement))) @@ -354,8 +358,10 @@ end interface operator (.not.) (interface_statement (operator)) (procedure_statement + (procedure_kind) (method_name)) (procedure_statement + (procedure_kind) (method_name)) (end_interface_statement (operator))) @@ -363,6 +369,7 @@ end interface operator (.not.) (interface_statement (operator)) (procedure_statement + (procedure_kind) (method_name)) (function (function_statement @@ -395,6 +402,7 @@ end interface assignment (=) (interface_statement (assignment)) (procedure_statement + (procedure_kind) (method_name)) (end_interface_statement (assignment)))) @@ -412,6 +420,7 @@ interface operator(+) ; module procedure test_plus ; end interface (interface_statement (operator)) (procedure_statement + (procedure_kind) (method_name)) (end_interface_statement))) @@ -851,19 +860,23 @@ end program (derived_type_procedures (contains_statement) (procedure_statement + (procedure_kind) (procedure_attribute) (procedure_attribute) (method_name)) (comment) (procedure_statement + (procedure_kind) (method_name)) (comment) (procedure_statement + (procedure_kind) (procedure_attribute) (procedure_attribute (identifier)) (method_name)) (procedure_statement + (procedure_kind) (procedure_attribute) (binding_declarator (binding_name @@ -871,24 +884,28 @@ end program (method_name)) (method_name)) (procedure_statement + (procedure_kind) (procedure_attribute) (binding_declarator (binding_name (assignment)) (method_name))) (procedure_statement + (procedure_kind) (procedure_attribute) (binding_declarator (binding_name (operator)) (method_name))) (procedure_statement + (procedure_kind) (method_name) (binding_declarator (binding_name (identifier)) (method_name))) (procedure_statement + (procedure_kind) (method_name))) (end_type_statement (name))) @@ -990,6 +1007,7 @@ end program (derived_type_procedures (contains_statement) (procedure_statement + (procedure_kind) (procedure_interface) (procedure_attribute) (method_name))) @@ -1030,8 +1048,10 @@ end program test (contains_statement) (private_statement) (procedure_statement + (procedure_kind) (method_name)) (procedure_statement + (procedure_kind) (procedure_attribute) (method_name))) (end_type_statement diff --git a/test/corpus/preprocessor.txt b/test/corpus/preprocessor.txt index ef88678..b5d0b34 100644 --- a/test/corpus/preprocessor.txt +++ b/test/corpus/preprocessor.txt @@ -490,6 +490,7 @@ end module foo (preproc_if (identifier) (procedure_statement + (procedure_kind) (method_name)))) (end_type_statement (name))) @@ -762,11 +763,12 @@ end module (interface_statement (name)) (procedure_statement + (procedure_kind) (method_name)) (preproc_ifdef (identifier) (procedure_statement + (procedure_kind) (method_name))) (end_interface_statement)) (end_module_statement))) - diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index fcd02a6..5b84bec 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -2263,12 +2263,14 @@ end module (interface_statement (defined_io_procedure)) (procedure_statement + (procedure_kind) (method_name)) (end_interface_statement)) (interface (interface_statement (defined_io_procedure)) (procedure_statement + (procedure_kind) (method_name)) (end_interface_statement (defined_io_procedure))) @@ -2279,6 +2281,7 @@ end module (contains_statement) (comment) (procedure_statement + (procedure_kind) (procedure_attribute) (binding_declarator (binding_name @@ -2286,6 +2289,7 @@ end module (method_name))) (comment) (procedure_statement + (procedure_kind) (procedure_attribute) (binding_declarator (binding_name